From b52e8a0a8d3a40036261d9c72f23c5a767fd222d Mon Sep 17 00:00:00 2001
From: Adry_85 <Adrya85@hotmail.it>
Date: Thu, 6 Sep 2012 18:05:02 +0000
Subject: [PATCH] BETA: '''Dragon Valley''' and '''Antharas' Lair''' base
 implementation:
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

	- Antharas' Lair and Dragon Valley have been revamped. New Separated Soul NPCs live in Hunter's Village, Dragon Valley, and Antharas' Lair that can teleport characters level 80 and above between each of these areas.
	- Separated Soul NPCs can synthesize certain items into Antharas Blood Crystals:
		- Will of Antharas: Can be obtained from the Raid Boss monsters in Antharas' Lair.
    	- Sealed Blood Crystal: Can be obtained from the raid boss monster in Dragon Valley.
	- Certain older monsters in Dragon Valley have been moved to Watcher's Tomb.
	- The Large Dragon Bone item, which you can obtain in this zone, summons particular raid boss monsters. Use the item on a Dragon Vortex found in four places inside Dragon Valley to summon and hunt the following raid boss monsters:
	   	- Emerald Horn
    	- Bleeding Fly
    	- Blackdagger Wing
    	- Shadow Summoner
    	- Spike Slasher
    	- Muscle Bomber
    	- Dust Rider
    - Antharas’ overall stats have been reduced.
    - Some monsters in Dragon Valley are running called Trackers(Howl, Mesmer Drake, Dragon Tracker of the Valley, etc).
    - Antharas' Lair new RBs and Knoriks can see you through Silent Move.

	'''NOTE:''' Remember to run the SQL update queries to delete old raid bosses.

    Patch by: Adry_85
    Review by: Adry_85, nonom, !UnAfraid
    Tested by: Adry_85, !MELERIX, nonom, !UnAfraid

    Special thanks for corbin12, goncafa, !MELERIX, Michalis, Micr0, u3games and !UnAfraid for the other support and features.
---
 L2J_DataPack_BETA/dist/game/data/Routes.xml   |    265 +
 .../html/admin/teleports/raid/raid_50.htm     |      2 -
 .../html/admin/teleports/raid/raid_60.htm     |      3 -
 .../html/admin/teleports/raid/raid_70.htm     |      1 -
 .../dist/game/data/html/merchant/31045-1.htm  |      7 +
 .../dist/game/data/html/merchant/31045-2.htm  |      7 +
 .../dist/game/data/html/merchant/31045-3.htm  |      6 +
 .../dist/game/data/html/merchant/31045-4.htm  |      6 +
 .../dist/game/data/html/merchant/31045-5.htm  |      6 +
 .../dist/game/data/html/merchant/31045.htm    |      8 +-
 .../dist/game/data/html/teleporter/32864.htm  |     15 +
 .../dist/game/data/html/teleporter/32865.htm  |     15 +
 .../dist/game/data/html/teleporter/32866.htm  |     15 +
 .../dist/game/data/html/teleporter/32867.htm  |     15 +
 .../dist/game/data/html/teleporter/32868.htm  |     15 +
 .../dist/game/data/html/teleporter/32869.htm  |     15 +
 .../dist/game/data/html/teleporter/32870.htm  |     15 +
 .../dist/game/data/html/teleporter/32891.htm  |     15 +
 .../data/html/teleporter/separatedsoul.htm    |      4 +
 .../dist/game/data/html/warehouse/32890-1.htm |      6 +
 .../dist/game/data/html/warehouse/32890-2.htm |      6 +
 .../dist/game/data/html/warehouse/32890.htm   |      5 +
 L2J_DataPack_BETA/dist/game/data/scripts.cfg  |     11 +
 .../group_template/SeeThroughSilentMove.java  |      6 +-
 .../scripts/ai/individual/DragonScout.java    |     69 +
 .../scripts/ai/individual/DragonTracker.java  |     62 +
 .../scripts/ai/individual/DrakeWalkers.java   |     76 +
 .../scripts/ai/individual/DustDragon.java     |     72 +
 .../game/data/scripts/ai/individual/Howl.java |     70 +
 .../data/scripts/ai/individual/Knoriks.java   |     98 +
 .../scripts/ai/individual/MesmerDrake.java    |     70 +
 .../ai/individual/NecromancerValley.java      |     87 +
 .../data/scripts/ai/individual/SandDrake.java |     69 +
 .../scripts/ai/npc/DragonVortex/32871-no.html |      5 +
 .../scripts/ai/npc/DragonVortex/32871.html    |      6 +
 .../ai/npc/DragonVortex/DragonVortex.java     |     81 +
 .../SeparatedSoul/SeparatedSoul.java          |    111 +
 .../npc/Teleports/SeparatedSoul/no-items.htm  |      3 +
 .../npc/Teleports/SeparatedSoul/no-level.htm  |      5 +
 .../game/data/stats/skills/06700-06799.xml    |    681 +-
 .../game/data/stats/skills/06800-06899.xml    |    918 +-
 L2J_DataPack_BETA/dist/sql/game/droplist.sql  |   1058 +
 .../dist/sql/game/grandboss_data.sql          |      2 +-
 .../dist/sql/game/merchant_buylists.sql       |     76 -
 .../dist/sql/game/merchant_shopids.sql        |      1 -
 L2J_DataPack_BETA/dist/sql/game/minions.sql   |     24 +-
 L2J_DataPack_BETA/dist/sql/game/npc.sql       |    156 +-
 .../dist/sql/game/npc_elementals.sql          |    120 +-
 L2J_DataPack_BETA/dist/sql/game/npcaidata.sql |    104 +-
 L2J_DataPack_BETA/dist/sql/game/npcskills.sql | 200184 ++++++++-------
 .../dist/sql/game/raidboss_spawnlist.sql      |     19 +-
 L2J_DataPack_BETA/dist/sql/game/spawnlist.sql |   3687 +-
 .../dist/sql/game/updates/20120906update.sql  |      1 +
 53 files changed, 106068 insertions(+), 102316 deletions(-)
 create mode 100644 L2J_DataPack_BETA/dist/game/data/html/merchant/31045-1.htm
 create mode 100644 L2J_DataPack_BETA/dist/game/data/html/merchant/31045-2.htm
 create mode 100644 L2J_DataPack_BETA/dist/game/data/html/merchant/31045-3.htm
 create mode 100644 L2J_DataPack_BETA/dist/game/data/html/merchant/31045-4.htm
 create mode 100644 L2J_DataPack_BETA/dist/game/data/html/merchant/31045-5.htm
 create mode 100644 L2J_DataPack_BETA/dist/game/data/html/teleporter/32864.htm
 create mode 100644 L2J_DataPack_BETA/dist/game/data/html/teleporter/32865.htm
 create mode 100644 L2J_DataPack_BETA/dist/game/data/html/teleporter/32866.htm
 create mode 100644 L2J_DataPack_BETA/dist/game/data/html/teleporter/32867.htm
 create mode 100644 L2J_DataPack_BETA/dist/game/data/html/teleporter/32868.htm
 create mode 100644 L2J_DataPack_BETA/dist/game/data/html/teleporter/32869.htm
 create mode 100644 L2J_DataPack_BETA/dist/game/data/html/teleporter/32870.htm
 create mode 100644 L2J_DataPack_BETA/dist/game/data/html/teleporter/32891.htm
 create mode 100644 L2J_DataPack_BETA/dist/game/data/html/teleporter/separatedsoul.htm
 create mode 100644 L2J_DataPack_BETA/dist/game/data/html/warehouse/32890-1.htm
 create mode 100644 L2J_DataPack_BETA/dist/game/data/html/warehouse/32890-2.htm
 create mode 100644 L2J_DataPack_BETA/dist/game/data/html/warehouse/32890.htm
 create mode 100644 L2J_DataPack_BETA/dist/game/data/scripts/ai/individual/DragonScout.java
 create mode 100644 L2J_DataPack_BETA/dist/game/data/scripts/ai/individual/DragonTracker.java
 create mode 100644 L2J_DataPack_BETA/dist/game/data/scripts/ai/individual/DrakeWalkers.java
 create mode 100644 L2J_DataPack_BETA/dist/game/data/scripts/ai/individual/DustDragon.java
 create mode 100644 L2J_DataPack_BETA/dist/game/data/scripts/ai/individual/Howl.java
 create mode 100644 L2J_DataPack_BETA/dist/game/data/scripts/ai/individual/Knoriks.java
 create mode 100644 L2J_DataPack_BETA/dist/game/data/scripts/ai/individual/MesmerDrake.java
 create mode 100644 L2J_DataPack_BETA/dist/game/data/scripts/ai/individual/NecromancerValley.java
 create mode 100644 L2J_DataPack_BETA/dist/game/data/scripts/ai/individual/SandDrake.java
 create mode 100644 L2J_DataPack_BETA/dist/game/data/scripts/ai/npc/DragonVortex/32871-no.html
 create mode 100644 L2J_DataPack_BETA/dist/game/data/scripts/ai/npc/DragonVortex/32871.html
 create mode 100644 L2J_DataPack_BETA/dist/game/data/scripts/ai/npc/DragonVortex/DragonVortex.java
 create mode 100644 L2J_DataPack_BETA/dist/game/data/scripts/ai/npc/Teleports/SeparatedSoul/SeparatedSoul.java
 create mode 100644 L2J_DataPack_BETA/dist/game/data/scripts/ai/npc/Teleports/SeparatedSoul/no-items.htm
 create mode 100644 L2J_DataPack_BETA/dist/game/data/scripts/ai/npc/Teleports/SeparatedSoul/no-level.htm
 create mode 100644 L2J_DataPack_BETA/dist/sql/game/updates/20120906update.sql

diff --git a/L2J_DataPack_BETA/dist/game/data/Routes.xml b/L2J_DataPack_BETA/dist/game/data/Routes.xml
index 2217a99ecd..741262e50e 100644
--- a/L2J_DataPack_BETA/dist/game/data/Routes.xml
+++ b/L2J_DataPack_BETA/dist/game/data/Routes.xml
@@ -93,4 +93,269 @@
 		<point string="" X="24560" Y="254414" Z="-1984" delay="0" run="true" />
 		<point string="" X="25392" Y="255459" Z="-1992" delay="0" run="true" />
 	</route>
+	<!-- Cycle runner dragons at center of antharas layer path 1 -->
+	<route id="11" repeat="true" repeatStyle="cycle">
+		<point string="" X="146113" Y="112674" Z="-3725" delay="0" run="true" />
+		<point string="" X="146634" Y="112759" Z="-3725" delay="0" run="true" />
+		<point string="" X="147332" Y="112618" Z="-3725" delay="0" run="true" />
+		<point string="" X="147820" Y="112655" Z="-3725" delay="0" run="true" />
+		<point string="" X="148288" Y="112699" Z="-3725" delay="0" run="true" />
+		<point string="" X="148740" Y="112875" Z="-3725" delay="0" run="true" />
+		<point string="" X="149104" Y="113514" Z="-3725" delay="0" run="true" />
+		<point string="" X="149236" Y="114026" Z="-3725" delay="0" run="true" />
+		<point string="" X="149223" Y="114779" Z="-3725" delay="0" run="true" />
+		<point string="" X="148894" Y="115438" Z="-3725" delay="0" run="true" />
+		<point string="" X="148331" Y="115916" Z="-3725" delay="0" run="true" />
+		<point string="" X="147622" Y="116163" Z="-3725" delay="0" run="true" />
+		<point string="" X="146952" Y="116346" Z="-3725" delay="0" run="true" />
+		<point string="" X="146345" Y="116140" Z="-3721" delay="0" run="true" />
+		<point string="" X="145653" Y="115676" Z="-3725" delay="0" run="true" />
+		<point string="" X="145106" Y="115136" Z="-3725" delay="0" run="true" />
+		<point string="" X="145104" Y="114397" Z="-3725" delay="0" run="true" />
+		<point string="" X="145083" Y="113773" Z="-3725" delay="0" run="true" />
+		<point string="" X="145387" Y="113077" Z="-3725" delay="0" run="true" />
+		<point string="" X="145711" Y="112843" Z="-3725" delay="0" run="true" />
+	</route>
+	<!-- Cycle runner dragons at center of antharas layer path 2 -->
+	<route id="12" repeat="true" repeatStyle="cycle">
+		<point string="" X="145663" Y="112880" Z="-3725" delay="0" run="true" />
+		<point string="" X="146119" Y="112677" Z="-3725" delay="0" run="true" />
+		<point string="" X="146607" Y="112628" Z="-3725" delay="0" run="true" />
+		<point string="" X="147323" Y="112403" Z="-3725" delay="0" run="true" />
+		<point string="" X="147829" Y="112273" Z="-3725" delay="0" run="true" />
+		<point string="" X="148592" Y="112210" Z="-3725" delay="0" run="true" />
+		<point string="" X="148864" Y="112788" Z="-3725" delay="0" run="true" />
+		<point string="" X="149054" Y="113411" Z="-3725" delay="0" run="true" />
+		<point string="" X="149193" Y="114021" Z="-3725" delay="0" run="true" />
+		<point string="" X="149199" Y="114819" Z="-3725" delay="0" run="true" />
+		<point string="" X="148948" Y="115477" Z="-3725" delay="0" run="true" />
+		<point string="" X="148324" Y="115937" Z="-3725" delay="0" run="true" />
+		<point string="" X="147706" Y="116099" Z="-3725" delay="0" run="true" />
+		<point string="" X="146939" Y="116255" Z="-3725" delay="0" run="true" />
+		<point string="" X="146328" Y="116274" Z="-3725" delay="0" run="true" />
+		<point string="" X="145676" Y="115748" Z="-3725" delay="0" run="true" />
+		<point string="" X="145206" Y="115149" Z="-3725" delay="0" run="true" />
+		<point string="" X="145105" Y="114461" Z="-3725" delay="0" run="true" />
+		<point string="" X="145073" Y="113796" Z="-3725" delay="0" run="true" />
+		<point string="" X="145372" Y="113245" Z="-3725" delay="0" run="true" />
+	</route>
+	<!-- Cycle runner dragons at center of antharas layer path 3 -->
+	<route id="13" repeat="true" repeatStyle="cycle">
+		<point string="" X="145602" Y="112763" Z="-3725" delay="0" run="true" />
+		<point string="" X="146136" Y="112555" Z="-3725" delay="0" run="true" />
+		<point string="" X="146573" Y="112475" Z="-3725" delay="0" run="true" />
+		<point string="" X="147277" Y="112201" Z="-3725" delay="0" run="true" />
+		<point string="" X="147888" Y="112035" Z="-3725" delay="0" run="true" />
+		<point string="" X="148629" Y="112028" Z="-3725" delay="0" run="true" />
+		<point string="" X="149092" Y="112613" Z="-3725" delay="0" run="true" />
+		<point string="" X="149294" Y="113356" Z="-3725" delay="0" run="true" />
+		<point string="" X="149387" Y="114003" Z="-3725" delay="0" run="true" />
+		<point string="" X="149352" Y="114831" Z="-3725" delay="0" run="true" />
+		<point string="" X="149073" Y="115565" Z="-3725" delay="0" run="true" />
+		<point string="" X="148409" Y="116094" Z="-3725" delay="0" run="true" />
+		<point string="" X="147777" Y="116253" Z="-3725" delay="0" run="true" />
+		<point string="" X="146884" Y="116410" Z="-3725" delay="0" run="true" />
+		<point string="" X="146266" Y="116378" Z="-3725" delay="0" run="true" />
+		<point string="" X="145553" Y="115888" Z="-3725" delay="0" run="true" />
+		<point string="" X="145085" Y="115225" Z="-3725" delay="0" run="true" />
+		<point string="" X="144950" Y="114466" Z="-3725" delay="0" run="true" />
+		<point string="" X="144967" Y="113785" Z="-3725" delay="0" run="true" />
+		<point string="" X="145235" Y="113171" Z="-3725" delay="0" run="true" />
+	</route>
+	<!-- Tracker Howl -->
+	<route id="14" repeat="true" repeatStyle="back">
+		<point string="" X="86101" Y="107610" Z="-3192" delay="0" run="true" />
+		<point string="" X="81900" Y="109310" Z="-3128" delay="0" run="true" />
+		<point string="" X="80917" Y="109419" Z="-3056" delay="0" run="true" />
+	</route>
+	<route id="15" repeat="true" repeatStyle="back">
+		<point string="" X="86093" Y="112083" Z="-3107" delay="0" run="true" />
+		<point string="" X="87807" Y="112301" Z="-3304" delay="0" run="true" />
+		<point string="" X="89399" Y="112616" Z="-3115" delay="0" run="true" />
+	</route>
+	<route id="16" repeat="true" repeatStyle="back">
+		<point string="" X="88157" Y="120566" Z="-3056" delay="0" run="true" />
+		<point string="" X="87409" Y="120446" Z="-3056" delay="0" run="true" />
+		<point string="" X="85980" Y="119904" Z="-2992" delay="0" run="true" />
+		<point string="" X="84962" Y="118423" Z="-3032" delay="0" run="true" />
+		<point string="" X="84089" Y="118048" Z="-2984" delay="0" run="true" />
+		<point string="" X="82864" Y="117680" Z="-3032" delay="0" run="true" />
+	</route>
+	<!-- Mesmer Drake -->
+	<route id="17" repeat="true" repeatStyle="back">
+		<point string="" X="80896" Y="109746" Z="-3056" delay="0" run="true" />
+		<point string="" X="86646" Y="108280" Z="-3136" delay="0" run="true" />
+	</route>
+	<route id="18" repeat="true" repeatStyle="back">
+		<point string="" X="88293" Y="119300" Z="-3056" delay="0" run="true" />
+		<point string="" X="88038" Y="120205" Z="-3056" delay="0" run="true" />
+		<point string="" X="86980" Y="120910" Z="-3040" delay="0" run="true" />
+		<point string="" X="84562" Y="120451" Z="-2976" delay="0" run="true" />
+		<point string="" X="83436" Y="119239" Z="-2984" delay="0" run="true" />
+	</route>
+	<route id="19" repeat="true" repeatStyle="back">
+		<point string="" X="85127" Y="111670" Z="-3168" delay="0" run="true" />
+		<point string="" X="83587" Y="112855" Z="-3056" delay="0" run="true" />
+		<point string="" X="82065" Y="113903" Z="-3155" delay="0" run="true" />
+	</route>
+	<!-- Dust Dragon Tracker -->
+	<route id="20" repeat="true" repeatStyle="back">
+		<point string="" X="90646" Y="107968" Z="-3056" delay="0" run="true" />
+		<point string="" X="89632" Y="108234" Z="-3032" delay="0" run="true" />
+		<point string="" X="88634" Y="107866" Z="-3056" delay="0" run="true" />
+		<point string="" X="88139" Y="106812" Z="-3160" delay="0" run="true" />
+	</route>
+	<route id="21" repeat="true" repeatStyle="back">
+		<point string="" X="93889" Y="107662" Z="-3030" delay="0" run="true" />
+		<point string="" X="91776" Y="107693" Z="-3061" delay="0" run="true" />
+		<point string="" X="90142" Y="106656" Z="-3190" delay="0" run="true" />
+	</route>
+	<route id="22" repeat="true" repeatStyle="back">
+		<point string="" X="108493" Y="117187" Z="-3056" delay="0" run="true" />
+		<point string="" X="109107" Y="116739" Z="-3056" delay="0" run="true" />
+		<point string="" X="109580" Y="113966" Z="-3040" delay="0" run="true" />
+		<point string="" X="109514" Y="113270" Z="-3064" delay="0" run="true" />
+	</route>
+	<route id="23" repeat="true" repeatStyle="back">
+		<point string="" X="111962" Y="111711" Z="-2760" delay="0" run="true" />
+		<point string="" X="111828" Y="112545" Z="-2776" delay="0" run="true" />
+		<point string="" X="112962" Y="113160" Z="-2839" delay="0" run="true" />
+		<point string="" X="113644" Y="113171" Z="-3008" delay="0" run="true" />
+		<point string="" X="114414" Y="112105" Z="-3104" delay="0" run="true" />
+		<point string="" X="113963" Y="110748" Z="-3080" delay="0" run="true" />
+		<point string="" X="114352" Y="110043" Z="-3008" delay="0" run="true" />
+	</route>
+	<route id="24" repeat="true" repeatStyle="back">
+		<point string="" X="120152" Y="109087" Z="-2936" delay="0" run="true" />
+		<point string="" X="118556" Y="109787" Z="-2952" delay="0" run="true" />
+		<point string="" X="116791" Y="110044" Z="-3008" delay="0" run="true" />
+		<point string="" X="115114" Y="109809" Z="-3024" delay="0" run="true" />
+		<point string="" X="111735" Y="110191" Z="-3008" delay="0" run="true" />
+	</route>
+	<!-- Dragon Tracker of the Valley -->
+	<route id="25" repeat="true" repeatStyle="back">
+		<point string="" X="110591" Y="111250" Z="-3144" delay="0" run="true" />
+		<point string="" X="111760" Y="110583" Z="-3032" delay="0" run="true" />
+		<point string="" X="113311" Y="110284" Z="-3000" delay="0" run="true" />
+		<point string="" X="115233" Y="110150" Z="-3032" delay="0" run="true" />
+		<point string="" X="116432" Y="110344" Z="-2984" delay="0" run="true" />
+	</route>
+	<!-- Dragon Scout of the Valley -->
+	<route id="26" repeat="true" repeatStyle="back">
+		<point string="" X="122159" Y="108862" Z="-2952" delay="0" run="true" />
+		<point string="" X="121475" Y="109471" Z="-2912" delay="0" run="true" />
+		<point string="" X="120869" Y="109733" Z="-3000" delay="0" run="true" />
+		<point string="" X="119996" Y="110576" Z="-3056" delay="0" run="true" />
+		<point string="" X="119489" Y="110677" Z="-3056" delay="0" run="true" />
+		<point string="" X="118896" Y="110587" Z="-3000" delay="0" run="true" />
+		<point string="" X="118132" Y="110786" Z="-3016" delay="0" run="true" />
+		<point string="" X="116854" Y="110209" Z="-2992" delay="0" run="true" />
+	</route>
+	<route id="27" repeat="true" repeatStyle="back">
+		<point string="" X="111754" Y="117413" Z="-3008" delay="0" run="true" />
+		<point string="" X="111850" Y="116609" Z="-3024" delay="0" run="true" />
+		<point string="" X="112105" Y="115698" Z="-3184" delay="0" run="true" />
+		<point string="" X="115638" Y="114525" Z="-3096" delay="0" run="true" />
+	</route>
+	<!-- Sand Drake Tracker -->
+	<route id="28" repeat="true" repeatStyle="back">
+		<point string="" X="124404" Y="109398" Z="-3112" delay="0" run="true" />
+		<point string="" X="122726" Y="108027" Z="-3000" delay="0" run="true" />
+		<point string="" X="120859" Y="108421" Z="-2960" delay="0" run="true" />
+	</route>
+	<route id="29" repeat="true" repeatStyle="back">
+		<point string="" X="115708" Y="115130" Z="-3112" delay="0" run="true" />
+		<point string="" X="113822" Y="115981" Z="-3224" delay="0" run="true" />
+		<point string="" X="112598" Y="118103" Z="-3064" delay="0" run="true" />
+	</route>
+	<!-- Knoriks -->
+	<route id="30" repeat="true" repeatStyle="back">
+		<point string="" X="140639" Y="114460" Z="-3729" delay="0" run="true" />
+		<point string="" X="142095" Y="114336" Z="-3729" delay="0" run="true" />
+		<point string="" X="142664" Y="113707" Z="-3720" delay="0" run="true" />
+		<point string="" X="143831" Y="114596" Z="-3720" delay="0" run="true" />
+		<point string="" X="144783" Y="114876" Z="-3720" delay="0" run="true" />
+		<point string="" X="147197" Y="116761" Z="-3704" delay="0" run="true" />
+		<point string="" X="148227" Y="117724" Z="-3712" delay="0" run="true" />
+	</route>
+	<route id="31" repeat="true" repeatStyle="back">
+		<point string="" X="143007" Y="108951" Z="-3953" delay="0" run="true" />
+		<point string="" X="141716" Y="109380" Z="-3953" delay="0" run="true" />
+		<point string="" X="140653" Y="112072" Z="-3720" delay="0" run="true" />
+		<point string="" X="141162" Y="113050" Z="-3729" delay="0" run="true" />
+		<point string="" X="141877" Y="112263" Z="-3720" delay="0" run="true" />
+		<point string="" X="142752" Y="111555" Z="-3953" delay="0" run="true" />
+		<point string="" X="142114" Y="109445" Z="-3953" delay="0" run="true" />
+		<point string="" X="140890" Y="109445" Z="-3953" delay="0" run="true" />
+	</route>
+	<route id="32" repeat="true" repeatStyle="back">
+		<point string="" X="147895" Y="110043" Z="-3946" delay="0" run="true" />
+		<point string="" X="145685" Y="109132" Z="-3953" delay="0" run="true" />
+		<point string="" X="144924" Y="108192" Z="-3928" delay="0" run="true" />
+		<point string="" X="144558" Y="107723" Z="-3953" delay="0" run="true" />
+	</route>
+	<route id="33" repeat="true" repeatStyle="back">
+		<point string="" X="142480" Y="119635" Z="-3921" delay="0" run="true" />
+		<point string="" X="142960" Y="117501" Z="-3921" delay="0" run="true" />
+		<point string="" X="142026" Y="117331" Z="-3912" delay="0" run="true" />
+		<point string="" X="141238" Y="117792" Z="-3912" delay="0" run="true" />
+		<point string="" X="140220" Y="119893" Z="-3912" delay="0" run="true" />
+		<point string="" X="140697" Y="120780" Z="-3896" delay="0" run="true" />
+		<point string="" X="141939" Y="121539" Z="-3921" delay="0" run="true" />
+		<point string="" X="143250" Y="121372" Z="-3921" delay="0" run="true" />
+		<point string="" X="145334" Y="121799" Z="-3921" delay="0" run="true" />
+		<point string="" X="146081" Y="121987" Z="-3921" delay="0" run="true" />
+		<point string="" X="146278" Y="121463" Z="-3912" delay="0" run="true" />
+		<point string="" X="145785" Y="120344" Z="-3912" delay="0" run="true" />
+	</route>
+	<route id="34" repeat="true" repeatStyle="back">
+		<point string="" X="152585" Y="110480" Z="-5529" delay="0" run="true" />
+		<point string="" X="153524" Y="110822" Z="-5529" delay="0" run="true" />
+		<point string="" X="153325" Y="111607" Z="-5529" delay="0" run="true" />
+		<point string="" X="150988" Y="111181" Z="-5520" delay="0" run="true" />
+		<point string="" X="149511" Y="111160" Z="-5496" delay="0" run="true" />
+		<point string="" X="149330" Y="110708" Z="-5448" delay="0" run="true" />
+		<point string="" X="150386" Y="109580" Z="-5136" delay="0" run="true" />
+		<point string="" X="152942" Y="109299" Z="-5161" delay="0" run="true" />
+		<point string="" X="153303" Y="108403" Z="-5152" delay="0" run="true" />
+		<point string="" X="152669" Y="107732" Z="-5120" delay="0" run="true" />
+		<point string="" X="150735" Y="107365" Z="-4776" delay="0" run="true" />
+		<point string="" X="149713" Y="108362" Z="-4536" delay="0" run="true" />
+		<point string="" X="148849" Y="108131" Z="-4312" delay="0" run="true" />
+		<point string="" X="147699" Y="107247" Z="-4056" delay="0" run="true" />
+		<point string="" X="146847" Y="107845" Z="-3872" delay="0" run="true" />
+		<point string="" X="146442" Y="109417" Z="-3432" delay="0" run="true" />
+	</route>
+	<route id="35" repeat="true" repeatStyle="cycle">
+		<point string="" X="146901" Y="116472" Z="-3703" delay="0" run="true" />
+		<point string="" X="148652" Y="115744" Z="-3721" delay="0" run="true" />
+		<point string="" X="149213" Y="114571" Z="-3721" delay="0" run="true" />
+		<point string="" X="148744" Y="112355" Z="-3721" delay="0" run="true" />
+		<point string="" X="148104" Y="112099" Z="-3721" delay="0" run="true" />
+		<point string="" X="145757" Y="112813" Z="-3721" delay="0" run="true" />
+		<point string="" X="145688" Y="112943" Z="-3721" delay="0" run="true" />
+		<point string="" X="144569" Y="114637" Z="-3711" delay="0" run="true" />
+		<point string="" X="143071" Y="114050" Z="-3721" delay="0" run="true" />
+		<point string="" X="142351" Y="113780" Z="-3721" delay="0" run="true" />
+		<point string="" X="141899" Y="114565" Z="-3721" delay="0" run="true" />
+		<point string="" X="140915" Y="114253" Z="-3708" delay="0" run="true" />
+		<point string="" X="140743" Y="112383" Z="-3721" delay="0" run="true" />
+		<point string="" X="140476" Y="111103" Z="-3945" delay="0" run="true" />
+		<point string="" X="141182" Y="109756" Z="-3945" delay="0" run="true" />
+		<point string="" X="142932" Y="108579" Z="-3945" delay="0" run="true" />
+		<point string="" X="142620" Y="107144" Z="-3945" delay="0" run="true" />
+		<point string="" X="144119" Y="107449" Z="-3945" delay="0" run="true" />
+		<point string="" X="145247" Y="108941" Z="-3945" delay="0" run="true" />
+		<point string="" X="147232" Y="109791" Z="-3948" delay="0" run="true" />
+		<point string="" X="145501" Y="109010" Z="-3945" delay="0" run="true" />
+		<point string="" X="143502" Y="107242" Z="-3945" delay="0" run="true" />
+		<point string="" X="142311" Y="107213" Z="-3945" delay="0" run="true" />
+		<point string="" X="140624" Y="107331" Z="-3945" delay="0" run="true" />
+		<point string="" X="140784" Y="109603" Z="-3945" delay="0" run="true" />
+		<point string="" X="140540" Y="111948" Z="-3721" delay="0" run="true" />
+		<point string="" X="140845" Y="114262" Z="-3707" delay="0" run="true" />
+		<point string="" X="142023" Y="114407" Z="-3721" delay="0" run="true" />
+		<point string="" X="142449" Y="113612" Z="-3703" delay="0" run="true" />
+		<point string="" X="145190" Y="115247" Z="-3721" delay="0" run="true" />
+	</route>
 </routes>
\ No newline at end of file
diff --git a/L2J_DataPack_BETA/dist/game/data/html/admin/teleports/raid/raid_50.htm b/L2J_DataPack_BETA/dist/game/data/html/admin/teleports/raid/raid_50.htm
index 632f9ad057..5309fed64c 100644
--- a/L2J_DataPack_BETA/dist/game/data/html/admin/teleports/raid/raid_50.htm
+++ b/L2J_DataPack_BETA/dist/game/data/html/admin/teleports/raid/raid_50.htm
@@ -14,7 +14,6 @@
 <button action="bypass -h admin_move_to 169744 11920 -2732" value="Ghost of Peasant Leader (50)" width=240 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"><br1>
 <button action="bypass -h admin_move_to 121872 64032 -3536" value="Messenger of Fairy Queen Berun (50)" width=240 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"><br1>
 <button action="bypass -h admin_move_to 75488 -9360 -2720" value="Carnage Lord Gato (50)" width=240 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"><br1>
-<button action="bypass -h admin_move_to 89904 105712 -3292" value="Cursed Clara (50)" width=240 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"><br1>
 <button action="bypass -h admin_move_to 54651 180269 -4976" value="Lilith's Witch Marilion (50)" width=240 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"><br1>
 <button action="bypass -h admin_move_to 43160 220463 -3680" value="Zaken's Chief Mate Tillion (50)" width=240 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"><br1>
 <button action="bypass -h admin_move_to 125520 27216 -3632" value="Verfa (51)" width=240 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"><br1>
@@ -30,7 +29,6 @@
 <button action="bypass -h admin_move_to 125600 50100 -3600" value="Enchanted Forest Watcher Ruell (55)" width=240 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"><br1>
 <button action="bypass -h admin_move_to 135872 94592 -3735" value="Sorcerer Isirr (55)" width=240 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"><br1>
 <button action="bypass -h admin_move_to 125280 102576 -3305" value="Beleth's Seer Sephia (55)" width=240 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"><br1>
-<button action="bypass -h admin_move_to 92544 115232 -3200" value="Black Lily (55)" width=240 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"><br1>
 <button action="bypass -h admin_move_to 165984 88048 -2384" value="Harit Hero Tamash (55)" width=240 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"><br1>
 <button action="bypass -h admin_move_to 42050 208107 -3752" value="Zaken's Butcher Krantz (55)" width=240 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"><br1>
 <button action="bypass -h admin_move_to 85622 88766 -5120" value="Pagan Watcher Cerberon (55)" width=240 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"><br1>
diff --git a/L2J_DataPack_BETA/dist/game/data/html/admin/teleports/raid/raid_60.htm b/L2J_DataPack_BETA/dist/game/data/html/admin/teleports/raid/raid_60.htm
index 5f14c82377..d6a2cb874d 100644
--- a/L2J_DataPack_BETA/dist/game/data/html/admin/teleports/raid/raid_60.htm
+++ b/L2J_DataPack_BETA/dist/game/data/html/admin/teleports/raid/raid_60.htm
@@ -13,7 +13,6 @@
 <button action="bypass -h admin_move_to 76787 245775 -10376" value="The 3rd Underwater Guardian (60)" width=240 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"><br1>
 <button action="bypass -h admin_move_to 167152 53120 -4148" value="Guardian of the Statue of Giant Karum (60)" width=240 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"><br1>
 <button action="bypass -h admin_move_to 170320 42640 -4832" value="Taik High Prefect Arak (60)" width=240 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"><br1>
-<button action="bypass -h admin_move_to 115072 112272 -3018" value="Lord Ishka (60)" width=240 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"><br1>
 <button action="bypass -h admin_move_to 113600 47120 -4640" value="Fairy Queen Timiniel (60)" width=240 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"><br1>
 <button action="bypass -h admin_move_to 104240 -3664 -3392" value="Roaring Lord Kastor (62)" width=240 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"><br1>
 <button action="bypass -h admin_move_to 173880 -11412 -2880" value="Ghost of the Well Lidia (63)" width=240 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"><br1>
@@ -21,13 +20,11 @@
 <button action="bypass -h admin_move_to 117232 -9476 -3320" value="Rahha (65)" width=240 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"><br1>
 <button action="bypass -h admin_move_to 170656 85184 -2000" value="Fierce Tiger King Angel (65)" width=240 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"><br1>
 <button action="bypass -h admin_move_to 41966 215417 -3728" value="Demon Kurikups (65)" width=240 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"><br1>
-<button action="bypass -h admin_move_to 120080 111248 -3047" value="Ancient Weird Drake (65)" width=240 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"><br1>
 <button action="bypass -h admin_move_to 170048 -24896 -3440" value="Gargoyle Lord Tiphon (65)" width=240 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"><br1>
 <button action="bypass -h admin_move_to 113232 17456 -4384" value="Enmity Ghost Ramdal (65)" width=240 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"><br1>
 <button action="bypass -h admin_move_to 168288 28368 -3632" value="Shilen's Priest Hisilrome (65)" width=240 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"><br1>
 <button action="bypass -h admin_move_to 93296 -75104 -1824" value="Demon's Agent Falston (66)" width=240 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"><br1>
 <button action="bypass -h admin_move_to 155000 85400 -3200" value="Abyss Brukunt (67)" width=240 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"><br1>
 <button action="bypass -h admin_move_to 144400 -28192 -1920" value="Kernon's Faithful Servant Kelone (67)" width=240 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"><br1>
-<button action="bypass -h admin_move_to 143265 110044 -3944" value="Bloody Priest Rudelto (69)" width=240 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"><br1>
 <button action="bypass -h admin_move_to 185800 -26500 -2000" value="Spirit of Andras, The Betrayer (69)" width=240 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"><br1>
 </center></body></html>
\ No newline at end of file
diff --git a/L2J_DataPack_BETA/dist/game/data/html/admin/teleports/raid/raid_70.htm b/L2J_DataPack_BETA/dist/game/data/html/admin/teleports/raid/raid_70.htm
index e273d126b6..e4bbea06ea 100644
--- a/L2J_DataPack_BETA/dist/game/data/html/admin/teleports/raid/raid_70.htm
+++ b/L2J_DataPack_BETA/dist/game/data/html/admin/teleports/raid/raid_70.htm
@@ -26,7 +26,6 @@
 <button action="bypass -h admin_move_to 127903 -13399 -3720" value="Doom Blade Tanatos (72)" width=240 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"><br1>
 <button action="bypass -h admin_move_to 113551 17083 -2120" value="Death Lord Hallate (73)" width=240 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"><br1>
 <button action="bypass -h admin_move_to 170000 -60000 -3500" value="Plague Golem (73)" width=240 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"><br1>
-<button action="bypass -h admin_move_to 152660 110387 -5520" value="Antharas Priest Cloe (74)" width=240 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"><br1>
 <button action="bypass -h admin_move_to 119760 157392 -3744" value="Krokian Padisha Sobekk (74)" width=240 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"><br1>
 <button action="bypass -h admin_move_to 158352 -121088 -2240" value="Icicle Emperor Bumbalump (74)" width=240 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"><br1>
 <button action="bypass -h admin_move_to 113432 16403 3960" value="Kernon (75)" width=240 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"><br1>
diff --git a/L2J_DataPack_BETA/dist/game/data/html/merchant/31045-1.htm b/L2J_DataPack_BETA/dist/game/data/html/merchant/31045-1.htm
new file mode 100644
index 0000000000..44031e0c91
--- /dev/null
+++ b/L2J_DataPack_BETA/dist/game/data/html/merchant/31045-1.htm
@@ -0,0 +1,7 @@
+<html><body>Kitzka:<br>
+According to my report, the following three items can only be obtained in Antharas' Cave in Dragon Valley.<br><br>
+<a action="bypass -h npc_%objectId%_Chat 3">Large Dragon Bone</a><br>
+<a action="bypass -h npc_%objectId%_Chat 4">Sealed Blood Crystal</a><br>
+<a action="bypass -h npc_%objectId%_Chat 5">Will of Antharas</a><br><br>
+<a action="bypass -h npc_%objectId%_Chat 0">Back</a>
+</body></html>
\ No newline at end of file
diff --git a/L2J_DataPack_BETA/dist/game/data/html/merchant/31045-2.htm b/L2J_DataPack_BETA/dist/game/data/html/merchant/31045-2.htm
new file mode 100644
index 0000000000..66ac023c6f
--- /dev/null
+++ b/L2J_DataPack_BETA/dist/game/data/html/merchant/31045-2.htm
@@ -0,0 +1,7 @@
+<html><body>Kitzka:<br>
+<font color="LEVEL">Dragon Valley</font> is an enormous canyon ruled by the dragons and drakes. The souls of those who resisted Antharas and fought against him turned into the undead there - they are bound there and left to await their end.<br>
+The monsters become stronger as you get deeper into the valley, so you MUST proceed with caution!<br>
+There has been some severe crust movement lately in the Dragon Valley, so the dragons and their hatchlings are frequently moving their nests. If you see a <font color="LEVEL">Shiny Dragon Herd</font> during an earthquake, be sure to grab hold! The dragons carry gold and valuables in their bodies when they move their nest - if you are lucky, you might be able to obtain some rare items!<br>
+<br>
+<a action="bypass -h npc_%objectId%_Chat 0">Back</a>
+</body></html>
\ No newline at end of file
diff --git a/L2J_DataPack_BETA/dist/game/data/html/merchant/31045-3.htm b/L2J_DataPack_BETA/dist/game/data/html/merchant/31045-3.htm
new file mode 100644
index 0000000000..5374cba850
--- /dev/null
+++ b/L2J_DataPack_BETA/dist/game/data/html/merchant/31045-3.htm
@@ -0,0 +1,6 @@
+<html><body>Kitzka:<br>
+The <font color="LEVEL">Large Dragon Bone</font> is an item for calling forth a powerful dragon. <br>
+In Dragon Valley, there are 4 Dragon Vortexes. If you use the item there, you can summon one of the following raid monsters: <font color="LEVEL">Emerald Horn, Dust Rider, Bloody Fly, Black Dagger Wing, Shadow Summoner, Spike Slasher, Muscle Bomber</font>. <br>
+Monsters that drop: In Dragon Valley, it is the <font color="LEVEL">Drakos Guardians, Drakos Warriors, Drakos Hunters, Drakos Assassins, Giant Noxious Scorpion, Hard Noxious Scorpion, Noxious Scorpion, Batwing Drakes, Parasitic Leeches, Emerald Drakes, Hungry Parasitic Leeches, Gem Dragons, Dragon Trackers of the Valley, Dragon Scouts of the Valley, Sand Drake Trackers, and Dust Dragon Trackers.</font><br><br>
+<a action="bypass -h npc_%objectId%_Chat 1">Back</a>
+</body></html>
\ No newline at end of file
diff --git a/L2J_DataPack_BETA/dist/game/data/html/merchant/31045-4.htm b/L2J_DataPack_BETA/dist/game/data/html/merchant/31045-4.htm
new file mode 100644
index 0000000000..3bbba9295f
--- /dev/null
+++ b/L2J_DataPack_BETA/dist/game/data/html/merchant/31045-4.htm
@@ -0,0 +1,6 @@
+<html><body>Kitzka:<br>
+<font color="LEVEL">The Sealed Blood Crystal</font> is Antharas' crystallized spilled blood.<br>
+It has lost the original magic power of Antharas' blood, but if you combine it with <font color="LEVEL">Will of Antharas</font>, you can obtain an item with tremendous magic power. If you use it, you can <font color="LEVEL">resurrect numerous people simultaneously</font>.<br>
+This Sealed Blood Crystal can be obtained by hunting the <font color="LEVEL">Emerald Horn, Dust Rider, Bloody Fly, Black Dagger Wing, Shadow Summoner, Spike Slasher, and Muscle Bomber</font> that can be summoned from the Dragon Vortex in Dragon Valley.<br><br>
+<a action="bypass -h npc_%objectId%_Chat 1">Back</a>
+</body></html>
\ No newline at end of file
diff --git a/L2J_DataPack_BETA/dist/game/data/html/merchant/31045-5.htm b/L2J_DataPack_BETA/dist/game/data/html/merchant/31045-5.htm
new file mode 100644
index 0000000000..7ed96e43a1
--- /dev/null
+++ b/L2J_DataPack_BETA/dist/game/data/html/merchant/31045-5.htm
@@ -0,0 +1,6 @@
+<html><body>Kitzka:<br>
+<font color="LEVEL">Will of Antharas</font> is a command stone that Antharas has implanted into its subordinates in order to command their actions.<br>
+It is a tool that maximizes the magic power of Antharas' subordinates. If you combine it with the <font color="LEVEL">Sealed Blood Crystal</font>, you can obtain an item with incredible magic power that, when used, can <font color="LEVEL">resurrect numerous people simultaneously</font>.<br>
+This Sealed Blood Crystal can be obtained by hunting the <font color="LEVEL">Drake Lord, Behemoth Leader, and Dragon Beast</font> inside Antharas' Cave.<br><br>
+<a action="bypass -h npc_%objectId%_Chat 1">Back</a>
+</body></html>
\ No newline at end of file
diff --git a/L2J_DataPack_BETA/dist/game/data/html/merchant/31045.htm b/L2J_DataPack_BETA/dist/game/data/html/merchant/31045.htm
index 75d964f53c..a45ccce747 100644
--- a/L2J_DataPack_BETA/dist/game/data/html/merchant/31045.htm
+++ b/L2J_DataPack_BETA/dist/game/data/html/merchant/31045.htm
@@ -1,5 +1,7 @@
-<html><body>Valley Trader Kitzka:<br>
-Well, now! No need to take the long trip to Giran for supplies now that we've made our way here. You've come to the right place, brave adventurer! How can I help you today?<br>
-<a action="bypass -h npc_%objectId%_Buy 3104500">Buy/Sell/Refund General.</a><br>
+<html><body>Kitzka:<br>
+Well, OK! Now, you don't have to make a long trip to Giran just for supplies! Brave merchants aren't picky about trading places. Welcome to Dragon Valley, where only the brave dare to enter!<br>
+<a action="bypass -h npc_%objectId%_Buy 3104500">Trade supplies and minerals</a><br>
+<a action="bypass -h npc_%objectId%_Chat 1">"I want to ask about the special items of this place."</a><br>
+<a action="bypass -h npc_%objectId%_Chat 2">"I want to ask about the geography of the Valley."</a><br>
 <a action="bypass -h npc_%objectId%_Quest">Quest</a>
 </body></html>
\ No newline at end of file
diff --git a/L2J_DataPack_BETA/dist/game/data/html/teleporter/32864.htm b/L2J_DataPack_BETA/dist/game/data/html/teleporter/32864.htm
new file mode 100644
index 0000000000..7be689329b
--- /dev/null
+++ b/L2J_DataPack_BETA/dist/game/data/html/teleporter/32864.htm
@@ -0,0 +1,15 @@
+<html><body>Separated Soul:<br>
+The Claw of Antharas barely touched me, but even so, my soul was ripped from my body!<br>
+I can not gather the souls scattered in the area, but I can sense them. If you desire, I can send you to the location where the separated souls are located.<br>
+I can also release the <font color="LEVEL">Sealed Blood Crystal</font> using the <font color="LEVEL">Will of Antharas</font> you possess. What say you?<br>
+<a action="bypass -h Quest SeparatedSoul DragonValley">Entrance to Dragon Valley</a><br>
+<a action="bypass -h Quest SeparatedSoul DragonValleyCenter">The Center of Dragon Valley</a><br>
+<a action="bypass -h Quest SeparatedSoul DragonValleyNorth">Deep inside Dragon Valley (North)</a><br>
+<a action="bypass -h Quest SeparatedSoul DragonValleySouth">Deep inside Dragon Valley (South)</a><br>
+<a action="bypass -h Quest SeparatedSoul AntharasLair">Entrance of Antharas' Lair</a><br>
+<a action="bypass -h Quest SeparatedSoul AntharasLairMagicForceFieldBridge">Antharas' Lair - Magic Force Field Bridge</a><br>
+<a action="bypass -h Quest SeparatedSoul AntharasLairDeep">Deep inside Antharas' Lair</a><br>
+<a action="bypass -h npc_%objectId%_Link teleporter/separatedsoul.htm">Hear about Blood Crystal of Antharas.</a><br>
+<a action="bypass -h Quest SeparatedSoul Synthesis">Request item synthesis.</a><br>
+<a action="bypass -h npc_%objectId%_Quest">Quest</a>
+</body></html>
\ No newline at end of file
diff --git a/L2J_DataPack_BETA/dist/game/data/html/teleporter/32865.htm b/L2J_DataPack_BETA/dist/game/data/html/teleporter/32865.htm
new file mode 100644
index 0000000000..856fdf1846
--- /dev/null
+++ b/L2J_DataPack_BETA/dist/game/data/html/teleporter/32865.htm
@@ -0,0 +1,15 @@
+<html><body>Separated Soul:<br>
+The Claw of Antharas barely touched me, but even so, my soul was ripped from my body!<br>
+I can not gather the souls scattered in the area, but I can sense them. If you desire, I can send you to the location where the separated souls are located.<br>
+I can also release the <font color="LEVEL">Sealed Blood Crystal</font> using the <font color="LEVEL">Will of Antharas</font> you possess. What say you?<br>
+<a action="bypass -h Quest SeparatedSoul HuntersVillage">Hunter's Village</a><br>
+<a action="bypass -h Quest SeparatedSoul DragonValley">Entrance to Dragon Valley</a><br>
+<a action="bypass -h Quest SeparatedSoul DragonValleyNorth">Deep inside Dragon Valley (North)</a><br>
+<a action="bypass -h Quest SeparatedSoul DragonValleySouth">Deep inside Dragon Valley (South)</a><br>
+<a action="bypass -h Quest SeparatedSoul AntharasLair">Entrance of Antharas' Lair</a><br>
+<a action="bypass -h Quest SeparatedSoul AntharasLairMagicForceFieldBridge">Antharas' Lair -  Magic Force Field Bridge</a><br>
+<a action="bypass -h Quest SeparatedSoul AntharasLairDeep">Deep inside Antharas' Lair</a><br>
+<a action="bypass -h npc_%objectId%_Link teleporter/separatedsoul.htm">Hear about Blood Crystal of Antharas.</a><br>
+<a action="bypass -h Quest SeparatedSoul Synthesis">Request item synthesis.</a><br>
+<a action="bypass -h npc_%objectId%_Quest">Quest</a>
+</body></html>
\ No newline at end of file
diff --git a/L2J_DataPack_BETA/dist/game/data/html/teleporter/32866.htm b/L2J_DataPack_BETA/dist/game/data/html/teleporter/32866.htm
new file mode 100644
index 0000000000..3770f95031
--- /dev/null
+++ b/L2J_DataPack_BETA/dist/game/data/html/teleporter/32866.htm
@@ -0,0 +1,15 @@
+<html><body>Separated Soul:<br>
+The Claw of Antharas barely touched me, but even so, my soul was ripped from my body!<br>
+I can not gather the souls scattered in the area, but I can sense them. If you desire, I can send you to the location where the separated souls are located.<br>
+I can also release the <font color="LEVEL">Sealed Blood Crystal</font> using the <font color="LEVEL">Will of Antharas</font> you possess. What say you?<br>
+<a action="bypass -h Quest SeparatedSoul HuntersVillage">Hunter's Village</a><br>
+<a action="bypass -h Quest SeparatedSoul DragonValley">Entrance of Dragon Valley</a><br>
+<a action="bypass -h Quest SeparatedSoul DragonValleyCenter">The Center of Dragon Valley</a><br>
+<a action="bypass -h Quest SeparatedSoul DragonValleySouth">Deep inside Dragon Valley (South)</a><br>
+<a action="bypass -h Quest SeparatedSoul AntharasLair">Entrance of Antharas' Lair</a><br>
+<a action="bypass -h Quest SeparatedSoul AntharasLairMagicForceFieldBridge">Antharas' Lair -  Magic Force Field Bridge</a><br>
+<a action="bypass -h Quest SeparatedSoul AntharasLairDeep">Deep inside Antharas' Lair</a><br>
+<a action="bypass -h npc_%objectId%_Link teleporter/separatedsoul.htm">Hear about Blood Crystal of Antharas.</a><br>
+<a action="bypass -h Quest SeparatedSoul Synthesis">Request item synthesis.</a><br>
+<a action="bypass -h npc_%objectId%_Quest">Quest</a>
+</body></html>
\ No newline at end of file
diff --git a/L2J_DataPack_BETA/dist/game/data/html/teleporter/32867.htm b/L2J_DataPack_BETA/dist/game/data/html/teleporter/32867.htm
new file mode 100644
index 0000000000..ec72ee9265
--- /dev/null
+++ b/L2J_DataPack_BETA/dist/game/data/html/teleporter/32867.htm
@@ -0,0 +1,15 @@
+<html><body>Separated Soul:<br>
+The Claw of Antharas barely touched me, but even so, my soul was ripped from my body!<br>
+I can not gather the souls scattered in the area, but I can sense them. If you desire, I can send you to the location where the separated souls are located.<br>
+I can also release the <font color="LEVEL">Sealed Blood Crystal</font> using the <font color="LEVEL">Will of Antharas</font> you possess. What say you?<br>
+<a action="bypass -h Quest SeparatedSoul HuntersVillage">Hunter's Village</a><br>
+<a action="bypass -h Quest SeparatedSoul DragonValley">Entrance of Dragon Valley</a><br>
+<a action="bypass -h Quest SeparatedSoul DragonValleyCenter">The Center of Dragon Valley</a><br>
+<a action="bypass -h Quest SeparatedSoul DragonValleyNorth">Deep inside Dragon Valley (North)</a><br>
+<a action="bypass -h Quest SeparatedSoul AntharasLair">Entrance of Antharas' Lair</a><br>
+<a action="bypass -h Quest SeparatedSoul AntharasLairMagicForceFieldBridge">Antharas' Lair -  Magic Force Field Bridge</a><br>
+<a action="bypass -h Quest SeparatedSoul AntharasLairDeep">Deep inside Antharas' Lair</a><br>
+<a action="bypass -h npc_%objectId%_Link teleporter/separatedsoul.htm">Hear about Blood Crystal of Antharas.</a><br>
+<a action="bypass -h Quest SeparatedSoul Synthesis">Request item synthesis.</a><br>
+<a action="bypass -h npc_%objectId%_Quest">Quest</a>
+</body></html>
\ No newline at end of file
diff --git a/L2J_DataPack_BETA/dist/game/data/html/teleporter/32868.htm b/L2J_DataPack_BETA/dist/game/data/html/teleporter/32868.htm
new file mode 100644
index 0000000000..077c5a1443
--- /dev/null
+++ b/L2J_DataPack_BETA/dist/game/data/html/teleporter/32868.htm
@@ -0,0 +1,15 @@
+<html><body>Separated Soul:<br>
+The Claw of Antharas barely touched me, but even so, my soul was ripped from my body!<br>
+I can not gather the souls scattered in the area, but I can sense them. If you desire, I can send you to the location where the separated souls are located.<br>
+I can also release the <font color="LEVEL">Sealed Blood Crystal</font> using the <font color="LEVEL">Will of Antharas</font> you possess. What say you?<br>
+<a action="bypass -h Quest SeparatedSoul HuntersVillage">Hunter's Village</a><br>
+<a action="bypass -h Quest SeparatedSoul DragonValley">Entrance to Dragon Valley</a><br>
+<a action="bypass -h Quest SeparatedSoul DragonValleyCenter">The Center of Dragon Valley</a><br>
+<a action="bypass -h Quest SeparatedSoul DragonValleyNorth">Deep inside Dragon Valley (North)</a><br>
+<a action="bypass -h Quest SeparatedSoul DragonValleySouth">Deep inside Dragon Valley (South)</a><br>
+<a action="bypass -h Quest SeparatedSoul AntharasLair">Entrance of Antharas' Lair</a><br>
+<a action="bypass -h Quest SeparatedSoul AntharasLairMagicForceFieldBridge">Antharas' Lair - Magic Force Field Bridge</a><br>
+<a action="bypass -h npc_%objectId%_Link teleporter/separatedsoul.htm">Hear about Blood Crystal of Antharas.</a><br>
+<a action="bypass -h Quest SeparatedSoul Synthesis">Request item synthesis.</a><br>
+<a action="bypass -h npc_%objectId%_Quest">Quest</a>
+</body></html>
\ No newline at end of file
diff --git a/L2J_DataPack_BETA/dist/game/data/html/teleporter/32869.htm b/L2J_DataPack_BETA/dist/game/data/html/teleporter/32869.htm
new file mode 100644
index 0000000000..da4b369a1f
--- /dev/null
+++ b/L2J_DataPack_BETA/dist/game/data/html/teleporter/32869.htm
@@ -0,0 +1,15 @@
+<html><body>Separated Soul:<br>
+The Claw of Antharas barely touched me, but even so, my soul was ripped from my body!<br>
+I can not gather the souls scattered in the area, but I can sense them. If you desire, I can send you to the location where the separated souls are located.<br>
+I can also release the <font color="LEVEL">Sealed Blood Crystal</font> using the <font color="LEVEL">Will of Antharas</font> you possess. What say you?<br>
+<a action="bypass -h Quest SeparatedSoul HuntersVillage">Hunter's Village</a><br>
+<a action="bypass -h Quest SeparatedSoul DragonValley">Entrance to Dragon Valley</a><br>
+<a action="bypass -h Quest SeparatedSoul DragonValleyCenter">The Center of Dragon Valley</a><br>
+<a action="bypass -h Quest SeparatedSoul DragonValleyNorth">Deep inside Dragon Valley (North)</a><br>
+<a action="bypass -h Quest SeparatedSoul DragonValleySouth">Deep inside Dragon Valley (South)</a><br>
+<a action="bypass -h Quest SeparatedSoul AntharasLair">Entrance of Antharas' Lair</a><br>
+<a action="bypass -h Quest SeparatedSoul AntharasLairDeep">Deep inside Antharas' Lair</a><br>
+<a action="bypass -h npc_%objectId%_Link teleporter/separatedsoul.htm">Hear about Blood Crystal of Antharas.</a><br>
+<a action="bypass -h Quest SeparatedSoul Synthesis">Request item synthesis.</a><br>
+<a action="bypass -h npc_%objectId%_Quest">Quest</a>
+</body></html>
\ No newline at end of file
diff --git a/L2J_DataPack_BETA/dist/game/data/html/teleporter/32870.htm b/L2J_DataPack_BETA/dist/game/data/html/teleporter/32870.htm
new file mode 100644
index 0000000000..d6d6efefb6
--- /dev/null
+++ b/L2J_DataPack_BETA/dist/game/data/html/teleporter/32870.htm
@@ -0,0 +1,15 @@
+<html><body>Separated Soul:<br>
+Antharas' claws covered my face for only a moment, but it ripped my soul to pieces.<br>
+The torn souls have been scattered all over, but I can feel all the pieces are connected. If you wish, I can send you to where each of my torn souls is.<br>
+I can also use your <font color="LEVEL">Will of Antharas</font> to unseal the <font color="LEVEL">Sealed Blood Crystal</font>. What do you think?<br>
+<a action="bypass -h Quest SeparatedSoul HuntersVillage">Hunters Village</a><br>
+<a action="bypass -h Quest SeparatedSoul DragonValleyCenter">The Center of Dragon Valley</a><br>
+<a action="bypass -h Quest SeparatedSoul DragonValleyNorth">Deep in the Dragon Valley (North)</a><br>
+<a action="bypass -h Quest SeparatedSoul DragonValleySouth">Deep in the Dragon Valley (South)</a><br>
+<a action="bypass -h Quest SeparatedSoul AntharasLair">Entrance to Antharas' Lair</a><br>
+<a action="bypass -h Quest SeparatedSoul AntharasLairMagicForceFieldBridge">Antharas' Lair - Barrier Bridge</a><br>
+<a action="bypass -h Quest SeparatedSoul AntharasLairDeep">Deep in Antharas' Lair</a><br>
+<a action="bypass -h npc_%objectId%_Link teleporter/separatedsoul.htm">Hear about the Antharas Blood Crystal.</a><br>
+<a action="bypass -h Quest SeparatedSoul Synthesis">Request item combination.</a><br>
+<a action="bypass -h npc_%objectId%_Quest">Quest</a>
+</body></html>
\ No newline at end of file
diff --git a/L2J_DataPack_BETA/dist/game/data/html/teleporter/32891.htm b/L2J_DataPack_BETA/dist/game/data/html/teleporter/32891.htm
new file mode 100644
index 0000000000..4a0dbbfa73
--- /dev/null
+++ b/L2J_DataPack_BETA/dist/game/data/html/teleporter/32891.htm
@@ -0,0 +1,15 @@
+<html><body>Separated Soul:<br>
+The Claw of Antharas barely touched me, but even so, my soul was ripped from my body!<br>
+I can not gather the souls scattered in the area, but I can sense them. If you desire, I can send you to the location where the separated souls are located.<br>
+I can also release the <font color="LEVEL">Sealed Blood Crystal</font> using the <font color="LEVEL">Will of Antharas</font> you possess. What say you?<br>
+<a action="bypass -h Quest SeparatedSoul HuntersVillage">Hunter's Village</a><br>
+<a action="bypass -h Quest SeparatedSoul DragonValley">Entrance to Dragon Valley</a><br>
+<a action="bypass -h Quest SeparatedSoul DragonValleyCenter">The Center of Dragon Valley</a><br>
+<a action="bypass -h Quest SeparatedSoul DragonValleyNorth">Deep inside Dragon Valley (North)</a><br>
+<a action="bypass -h Quest SeparatedSoul DragonValleySouth">Deep inside Dragon Valley (South)</a><br>
+<a action="bypass -h Quest SeparatedSoul AntharasLairMagicForceFieldBridge">Antharas' Lair - Magic Force Field Bridge</a><br>
+<a action="bypass -h Quest SeparatedSoul AntharasLairDeep">Deep inside Antharas' Lair</a><br>
+<a action="bypass -h npc_%objectId%_Link teleporter/separatedsoul.htm">Hear about Blood Crystal of Antharas.</a><br>
+<a action="bypass -h Quest SeparatedSoul Synthesis">Request item synthesis.</a><br>
+<a action="bypass -h npc_%objectId%_Quest">Quest</a>
+</body></html>
\ No newline at end of file
diff --git a/L2J_DataPack_BETA/dist/game/data/html/teleporter/separatedsoul.htm b/L2J_DataPack_BETA/dist/game/data/html/teleporter/separatedsoul.htm
new file mode 100644
index 0000000000..55776b5697
--- /dev/null
+++ b/L2J_DataPack_BETA/dist/game/data/html/teleporter/separatedsoul.htm
@@ -0,0 +1,4 @@
+<html><body>Separated Soul:<br>
+The <font color="LEVEL">Will of Antharas</font> is a command stone that Antharas embedded into his high commanding minions. With this stone Antharas has the ability to control these creatures to do his bidding. It is a required ingredient for creating an Antharas Blood Crystal.<br>
+A long time ago when Antharas' blood was split on the ground the poison in the blood corrupted the land. However, over time land acted as a filter separating the poison from the blood. The result was a pure form of Antharas blood that crystallized over time into small <font color="LEVEL">Sealed Blood Crystals</font>. The power in Antharas' blood has a high concentration of regenaration and restoration power. Enough that it even has the power to bring back the dead. It is a required ingredient for creating an Antharas Blood Crystal.<br>
+</body></html>
\ No newline at end of file
diff --git a/L2J_DataPack_BETA/dist/game/data/html/warehouse/32890-1.htm b/L2J_DataPack_BETA/dist/game/data/html/warehouse/32890-1.htm
new file mode 100644
index 0000000000..91a0cbbfea
--- /dev/null
+++ b/L2J_DataPack_BETA/dist/game/data/html/warehouse/32890-1.htm
@@ -0,0 +1,6 @@
+<html><body>Warehouse Keeper Ruiman:<br>
+<font color="LEVEL">[ Private Warehouse ]</font><br>
+<a action="bypass -h npc_%objectId%_DepositP">Store Item (Personal Warehouse)</a><br>
+<a action="bypass -h npc_%objectId%_WithdrawP">Withdraw an item. (Private Warehouse)</a><br>
+<a action="bypass -h npc_%objectId%_Chat 0">Back</a>
+</body></html>
\ No newline at end of file
diff --git a/L2J_DataPack_BETA/dist/game/data/html/warehouse/32890-2.htm b/L2J_DataPack_BETA/dist/game/data/html/warehouse/32890-2.htm
new file mode 100644
index 0000000000..22e13e3525
--- /dev/null
+++ b/L2J_DataPack_BETA/dist/game/data/html/warehouse/32890-2.htm
@@ -0,0 +1,6 @@
+<html><body>Warehouse Keeper Ruiman:<br>
+<font color="LEVEL">[ Clan Warehouse]</font><br>
+<a action="bypass -h npc_%objectId%_DepositC" msg="1039">Store Item (Clan Warehouse)</a><br>
+<a action="bypass -h npc_%objectId%_WithdrawC">Get Item (Clan Warehouse)</a><br>
+<a action="bypass -h npc_%objectId%_Chat 0">Back</a>
+</body></html>
\ No newline at end of file
diff --git a/L2J_DataPack_BETA/dist/game/data/html/warehouse/32890.htm b/L2J_DataPack_BETA/dist/game/data/html/warehouse/32890.htm
new file mode 100644
index 0000000000..e4e5eba198
--- /dev/null
+++ b/L2J_DataPack_BETA/dist/game/data/html/warehouse/32890.htm
@@ -0,0 +1,5 @@
+<html><body>Warehouse Keeper Ruiman:<br>
+Welcome! You've had a long journey, eh? How about storing some of your belongings here, eh?<br>
+<a action="bypass -h npc_%objectId%_Chat 1">Use private warehouse</a><br>
+<a action="bypass -h npc_%objectId%_Chat 2">Use clan warehouse</a><br>
+</body></html>
\ No newline at end of file
diff --git a/L2J_DataPack_BETA/dist/game/data/scripts.cfg b/L2J_DataPack_BETA/dist/game/data/scripts.cfg
index 671f08057b..2ded593a62 100644
--- a/L2J_DataPack_BETA/dist/game/data/scripts.cfg
+++ b/L2J_DataPack_BETA/dist/game/data/scripts.cfg
@@ -11,6 +11,7 @@ handlers/MasterHandler.java
 # AI Section
 
 # Npc
+ai/npc/DragonVortex/DragonVortex.java
 ai/npc/NpcBuffers/BirthdayCake.java
 ai/npc/NpcBuffers/CabaleBuffer.java
 ai/npc/NpcBuffers/Totems.java
@@ -25,6 +26,7 @@ ai/npc/Teleports/NewbieTravelToken/NewbieTravelToken.java
 ai/npc/Teleports/NoblesseTeleport/NoblesseTeleport.java
 ai/npc/Teleports/OracleTeleport/OracleTeleport.java
 ai/npc/Teleports/PaganTeleporters/PaganTeleporters.java
+ai/npc/Teleports/SeparatedSoul/SeparatedSoul.java
 ai/npc/Teleports/StakatoNestTeleporter/StakatoNestTeleporter.java
 ai/npc/Teleports/SteelCitadelTeleport/SteelCitadelTeleport.java
 ai/npc/Teleports/StrongholdsTeleports/StrongholdsTeleports.java
@@ -75,19 +77,28 @@ ai/individual/Beleth.java
 ai/individual/Core.java
 ai/individual/DarkWaterDragon.java
 ai/individual/DemonPrince.java
+ai/individual/DragonScout.java
+ai/individual/DragonTracker.java
+ai/individual/DrakeWalkers.java
 ai/individual/DrChaos.java
+ai/individual/DustDragon.java
 ai/individual/Epidos.java
 ai/individual/FleeNpc.java
 ai/individual/GeneralDilios.java
 ai/individual/Gordon.java
 ai/individual/HellboundCore.java
+ai/individual/Howl.java
 ai/individual/Keltas.java
+ai/individual/Knoriks.java
 ai/individual/Lindvior.java
+ai/individual/MesmerDrake.java
 ai/individual/NaiaLock.java
+ai/individual/NecromancerValley.java
 ai/individual/Orfen.java
 ai/individual/OutpostCaptain.java
 ai/individual/QueenAnt.java
 ai/individual/Ranku.java
+ai/individual/SandDrake.java
 ai/individual/SinWardens.java
 ai/individual/Typhoon.java
 ai/individual/Valakas.java
diff --git a/L2J_DataPack_BETA/dist/game/data/scripts/ai/group_template/SeeThroughSilentMove.java b/L2J_DataPack_BETA/dist/game/data/scripts/ai/group_template/SeeThroughSilentMove.java
index c6477936cc..a26a79b8b2 100644
--- a/L2J_DataPack_BETA/dist/game/data/scripts/ai/group_template/SeeThroughSilentMove.java
+++ b/L2J_DataPack_BETA/dist/game/data/scripts/ai/group_template/SeeThroughSilentMove.java
@@ -42,8 +42,10 @@ public class SeeThroughSilentMove extends AbstractNpcAI
 		22763, 22764, 22765,
 		22794, 22795, 22796,
 		22797, 22798, 22799,
-		22800, 29009, 29010,
-		29011, 29012, 29013
+		22800, 22843, 22857,
+		25725, 25726, 25727,
+		29009, 29010, 29011,
+		29012, 29013
 	};
 	//@formatter:on
 	
diff --git a/L2J_DataPack_BETA/dist/game/data/scripts/ai/individual/DragonScout.java b/L2J_DataPack_BETA/dist/game/data/scripts/ai/individual/DragonScout.java
new file mode 100644
index 0000000000..184841327f
--- /dev/null
+++ b/L2J_DataPack_BETA/dist/game/data/scripts/ai/individual/DragonScout.java
@@ -0,0 +1,69 @@
+/*
+ * This program is free software: you can redistribute it and/or modify it under
+ * the terms of the GNU General Public License as published by the Free Software
+ * Foundation, either version 3 of the License, or (at your option) any later
+ * version.
+ * 
+ * This program is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+ * details.
+ * 
+ * You should have received a copy of the GNU General Public License along with
+ * this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+package ai.individual;
+
+import javolution.util.FastSet;
+import ai.npc.AbstractNpcAI;
+
+import com.l2jserver.gameserver.datatables.SpawnTable;
+import com.l2jserver.gameserver.instancemanager.WalkingManager;
+import com.l2jserver.gameserver.model.L2Spawn;
+import com.l2jserver.gameserver.model.actor.L2Npc;
+
+/**
+ * Dragon Scout of the Valley AI.
+ * @author Adry_85
+ */
+public class DragonScout extends AbstractNpcAI
+{
+	private static final int DRAGON_SCOUT_ID = 22832;
+	
+	private static final int[] ROUTE_ID =
+	{
+		26,
+		27
+	};
+	
+	private DragonScout(String name, String descr)
+	{
+		super(name, descr);
+		addSpawnId(DRAGON_SCOUT_ID);
+		
+		FastSet<L2Spawn> spawns = SpawnTable.getInstance().getSpawnTable();
+		for (L2Spawn spawn : spawns)
+		{
+			if (spawn.getNpcid() == DRAGON_SCOUT_ID)
+			{
+				onSpawn(spawn.getLastSpawn());
+			}
+		}
+	}
+	
+	@Override
+	public String onSpawn(L2Npc npc)
+	{
+		for (int route : ROUTE_ID)
+		{
+			WalkingManager.getInstance().startMoving(npc, route);
+		}
+		
+		return super.onSpawn(npc);
+	}
+	
+	public static void main(String[] args)
+	{
+		new DragonScout(DragonScout.class.getSimpleName(), "ai");
+	}
+}
diff --git a/L2J_DataPack_BETA/dist/game/data/scripts/ai/individual/DragonTracker.java b/L2J_DataPack_BETA/dist/game/data/scripts/ai/individual/DragonTracker.java
new file mode 100644
index 0000000000..a80e8c1c9f
--- /dev/null
+++ b/L2J_DataPack_BETA/dist/game/data/scripts/ai/individual/DragonTracker.java
@@ -0,0 +1,62 @@
+/*
+ * This program is free software: you can redistribute it and/or modify it under
+ * the terms of the GNU General Public License as published by the Free Software
+ * Foundation, either version 3 of the License, or (at your option) any later
+ * version.
+ * 
+ * This program is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+ * details.
+ * 
+ * You should have received a copy of the GNU General Public License along with
+ * this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+package ai.individual;
+
+import javolution.util.FastSet;
+import ai.npc.AbstractNpcAI;
+
+import com.l2jserver.gameserver.datatables.SpawnTable;
+import com.l2jserver.gameserver.instancemanager.WalkingManager;
+import com.l2jserver.gameserver.model.L2Spawn;
+import com.l2jserver.gameserver.model.actor.L2Npc;
+
+/**
+ * Dragon Tracker of the Valley AI.
+ * @author Adry_85
+ */
+public class DragonTracker extends AbstractNpcAI
+{
+	private static final int DRAGON_TRACKER_ID = 22831;
+	
+	private static final int ROUTE_ID = 25;
+	
+	private DragonTracker(String name, String descr)
+	{
+		super(name, descr);
+		addSpawnId(DRAGON_TRACKER_ID);
+		
+		FastSet<L2Spawn> spawns = SpawnTable.getInstance().getSpawnTable();
+		for (L2Spawn spawn : spawns)
+		{
+			if (spawn.getNpcid() == DRAGON_TRACKER_ID)
+			{
+				onSpawn(spawn.getLastSpawn());
+			}
+		}
+	}
+	
+	@Override
+	public String onSpawn(L2Npc npc)
+	{
+		WalkingManager.getInstance().startMoving(npc, ROUTE_ID);
+		
+		return super.onSpawn(npc);
+	}
+	
+	public static void main(String[] args)
+	{
+		new DragonTracker(DragonTracker.class.getSimpleName(), "ai");
+	}
+}
diff --git a/L2J_DataPack_BETA/dist/game/data/scripts/ai/individual/DrakeWalkers.java b/L2J_DataPack_BETA/dist/game/data/scripts/ai/individual/DrakeWalkers.java
new file mode 100644
index 0000000000..6718741b70
--- /dev/null
+++ b/L2J_DataPack_BETA/dist/game/data/scripts/ai/individual/DrakeWalkers.java
@@ -0,0 +1,76 @@
+/*
+ * This program is free software: you can redistribute it and/or modify it under
+ * the terms of the GNU General Public License as published by the Free Software
+ * Foundation, either version 3 of the License, or (at your option) any later
+ * version.
+ * 
+ * This program is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+ * details.
+ * 
+ * You should have received a copy of the GNU General Public License along with
+ * this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+package ai.individual;
+
+import java.util.Arrays;
+
+import javolution.util.FastSet;
+import ai.npc.AbstractNpcAI;
+
+import com.l2jserver.gameserver.datatables.SpawnTable;
+import com.l2jserver.gameserver.instancemanager.WalkingManager;
+import com.l2jserver.gameserver.model.L2Spawn;
+import com.l2jserver.gameserver.model.actor.L2Npc;
+import com.l2jserver.util.Rnd;
+
+/**
+ * Drake Walkers AI.
+ * @author UnAfraid
+ */
+public class DrakeWalkers extends AbstractNpcAI
+{
+	private static final int[] DRAKES =
+	{
+		22848,
+		22849,
+		22850,
+		22851,
+		22857
+	};
+	
+	private static final int[] ROUTE_ID =
+	{
+		11,
+		12,
+		13
+	};
+	
+	private DrakeWalkers(String name, String descr)
+	{
+		super(name, descr);
+		addSpawnId(DRAKES);
+		
+		FastSet<L2Spawn> spawns = SpawnTable.getInstance().getSpawnTable();
+		for (L2Spawn spawn : spawns)
+		{
+			if (Arrays.binarySearch(DRAKES, spawn.getNpcid()) >= 0)
+			{
+				onSpawn(spawn.getLastSpawn());
+			}
+		}
+	}
+	
+	@Override
+	public String onSpawn(L2Npc npc)
+	{
+		WalkingManager.getInstance().startMoving(npc, ROUTE_ID[Rnd.get(ROUTE_ID.length)]);
+		return super.onSpawn(npc);
+	}
+	
+	public static void main(String[] args)
+	{
+		new DrakeWalkers(DrakeWalkers.class.getSimpleName(), "ai");
+	}
+}
diff --git a/L2J_DataPack_BETA/dist/game/data/scripts/ai/individual/DustDragon.java b/L2J_DataPack_BETA/dist/game/data/scripts/ai/individual/DustDragon.java
new file mode 100644
index 0000000000..c71a448733
--- /dev/null
+++ b/L2J_DataPack_BETA/dist/game/data/scripts/ai/individual/DustDragon.java
@@ -0,0 +1,72 @@
+/*
+ * This program is free software: you can redistribute it and/or modify it under
+ * the terms of the GNU General Public License as published by the Free Software
+ * Foundation, either version 3 of the License, or (at your option) any later
+ * version.
+ * 
+ * This program is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+ * details.
+ * 
+ * You should have received a copy of the GNU General Public License along with
+ * this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+package ai.individual;
+
+import javolution.util.FastSet;
+import ai.npc.AbstractNpcAI;
+
+import com.l2jserver.gameserver.datatables.SpawnTable;
+import com.l2jserver.gameserver.instancemanager.WalkingManager;
+import com.l2jserver.gameserver.model.L2Spawn;
+import com.l2jserver.gameserver.model.actor.L2Npc;
+
+/**
+ * Dust Dragon Tracker AI.
+ * @author Adry_85
+ */
+public class DustDragon extends AbstractNpcAI
+{
+	private static final int DUST_DRAGON_ID = 22834;
+	
+	private static final int[] ROUTE_ID =
+	{
+		20,
+		21,
+		22,
+		23,
+		24
+	};
+	
+	private DustDragon(String name, String descr)
+	{
+		super(name, descr);
+		addSpawnId(DUST_DRAGON_ID);
+		
+		FastSet<L2Spawn> spawns = SpawnTable.getInstance().getSpawnTable();
+		for (L2Spawn spawn : spawns)
+		{
+			if (spawn.getNpcid() == DUST_DRAGON_ID)
+			{
+				onSpawn(spawn.getLastSpawn());
+			}
+		}
+	}
+	
+	@Override
+	public String onSpawn(L2Npc npc)
+	{
+		for (int route : ROUTE_ID)
+		{
+			WalkingManager.getInstance().startMoving(npc, route);
+		}
+		
+		return super.onSpawn(npc);
+	}
+	
+	public static void main(String[] args)
+	{
+		new DustDragon(DustDragon.class.getSimpleName(), "ai");
+	}
+}
diff --git a/L2J_DataPack_BETA/dist/game/data/scripts/ai/individual/Howl.java b/L2J_DataPack_BETA/dist/game/data/scripts/ai/individual/Howl.java
new file mode 100644
index 0000000000..372bf3010f
--- /dev/null
+++ b/L2J_DataPack_BETA/dist/game/data/scripts/ai/individual/Howl.java
@@ -0,0 +1,70 @@
+/*
+ * This program is free software: you can redistribute it and/or modify it under
+ * the terms of the GNU General Public License as published by the Free Software
+ * Foundation, either version 3 of the License, or (at your option) any later
+ * version.
+ * 
+ * This program is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+ * details.
+ * 
+ * You should have received a copy of the GNU General Public License along with
+ * this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+package ai.individual;
+
+import javolution.util.FastSet;
+import ai.npc.AbstractNpcAI;
+
+import com.l2jserver.gameserver.datatables.SpawnTable;
+import com.l2jserver.gameserver.instancemanager.WalkingManager;
+import com.l2jserver.gameserver.model.L2Spawn;
+import com.l2jserver.gameserver.model.actor.L2Npc;
+
+/**
+ * Tracker Howl AI.
+ * @author Adry_85
+ */
+public class Howl extends AbstractNpcAI
+{
+	private static final int HOWL_ID = 22859;
+	
+	private static final int[] ROUTE_ID =
+	{
+		14,
+		15,
+		16
+	};
+	
+	private Howl(String name, String descr)
+	{
+		super(name, descr);
+		addSpawnId(HOWL_ID);
+		
+		FastSet<L2Spawn> spawns = SpawnTable.getInstance().getSpawnTable();
+		for (L2Spawn spawn : spawns)
+		{
+			if (spawn.getNpcid() == HOWL_ID)
+			{
+				onSpawn(spawn.getLastSpawn());
+			}
+		}
+	}
+	
+	@Override
+	public String onSpawn(L2Npc npc)
+	{
+		for (int route : ROUTE_ID)
+		{
+			WalkingManager.getInstance().startMoving(npc, route);
+		}
+		
+		return super.onSpawn(npc);
+	}
+	
+	public static void main(String[] args)
+	{
+		new Howl(Howl.class.getSimpleName(), "ai");
+	}
+}
diff --git a/L2J_DataPack_BETA/dist/game/data/scripts/ai/individual/Knoriks.java b/L2J_DataPack_BETA/dist/game/data/scripts/ai/individual/Knoriks.java
new file mode 100644
index 0000000000..ac6a3b4e29
--- /dev/null
+++ b/L2J_DataPack_BETA/dist/game/data/scripts/ai/individual/Knoriks.java
@@ -0,0 +1,98 @@
+/*
+ * This program is free software: you can redistribute it and/or modify it under
+ * the terms of the GNU General Public License as published by the Free Software
+ * Foundation, either version 3 of the License, or (at your option) any later
+ * version.
+ * 
+ * This program is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+ * details.
+ * 
+ * You should have received a copy of the GNU General Public License along with
+ * this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+package ai.individual;
+
+import javolution.util.FastSet;
+import ai.npc.AbstractNpcAI;
+
+import com.l2jserver.gameserver.datatables.SpawnTable;
+import com.l2jserver.gameserver.instancemanager.WalkingManager;
+import com.l2jserver.gameserver.model.L2Spawn;
+import com.l2jserver.gameserver.model.actor.L2Npc;
+import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
+import com.l2jserver.gameserver.network.NpcStringId;
+import com.l2jserver.gameserver.network.clientpackets.Say2;
+import com.l2jserver.gameserver.network.serverpackets.NpcSay;
+import com.l2jserver.util.Rnd;
+
+/**
+ * Knoriks AI.
+ * @author UnAfraid
+ */
+public class Knoriks extends AbstractNpcAI
+{
+	private static final int KNORIKS_ID = 22857;
+	private static final int[] ROUTE_ID =
+	{
+		30,
+		31,
+		32,
+		33,
+		34,
+		35
+	};
+	private long CAN_TALK = 0;
+	
+	private Knoriks(String name, String descr)
+	{
+		super(name, descr);
+		addSpawnId(KNORIKS_ID);
+		addAggroRangeEnterId(KNORIKS_ID);
+		
+		FastSet<L2Spawn> spawns = SpawnTable.getInstance().getSpawnTable();
+		for (L2Spawn spawn : spawns)
+		{
+			if (spawn.getNpcid() == KNORIKS_ID)
+			{
+				onSpawn(spawn.getLastSpawn());
+			}
+		}
+	}
+	
+	@Override
+	public String onSpawn(L2Npc npc)
+	{
+		for (int element : ROUTE_ID)
+		{
+			WalkingManager.getInstance().startMoving(npc, element);
+			if ((CAN_TALK & npc.getObjectId()) < 1)
+			{
+				CAN_TALK |= npc.getObjectId();
+			}
+		}
+		
+		return super.onSpawn(npc);
+	}
+	
+	@Override
+	public String onAggroRangeEnter(L2Npc npc, L2PcInstance player, boolean isPet)
+	{
+		if (((CAN_TALK & npc.getObjectId()) > 0) && (Rnd.get(100) < 60))
+		{
+			if (Rnd.get(100) < 50)
+			{
+				CAN_TALK &= ~npc.getObjectId();
+			}
+			npc.broadcastPacket(new NpcSay(npc.getObjectId(), Say2.SHOUT, npc.getNpcId(), NpcStringId.WHOS_THERE_IF_YOU_DISTURB_THE_TEMPER_OF_THE_GREAT_LAND_DRAGON_ANTHARAS_I_WILL_NEVER_FORGIVE_YOU), 1000);
+		}
+		
+		return super.onAggroRangeEnter(npc, player, isPet);
+	}
+	
+	public static void main(String[] args)
+	{
+		new Knoriks(Knoriks.class.getSimpleName(), "ai");
+	}
+}
diff --git a/L2J_DataPack_BETA/dist/game/data/scripts/ai/individual/MesmerDrake.java b/L2J_DataPack_BETA/dist/game/data/scripts/ai/individual/MesmerDrake.java
new file mode 100644
index 0000000000..8a5c8f9827
--- /dev/null
+++ b/L2J_DataPack_BETA/dist/game/data/scripts/ai/individual/MesmerDrake.java
@@ -0,0 +1,70 @@
+/*
+ * This program is free software: you can redistribute it and/or modify it under
+ * the terms of the GNU General Public License as published by the Free Software
+ * Foundation, either version 3 of the License, or (at your option) any later
+ * version.
+ * 
+ * This program is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+ * details.
+ * 
+ * You should have received a copy of the GNU General Public License along with
+ * this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+package ai.individual;
+
+import javolution.util.FastSet;
+import ai.npc.AbstractNpcAI;
+
+import com.l2jserver.gameserver.datatables.SpawnTable;
+import com.l2jserver.gameserver.instancemanager.WalkingManager;
+import com.l2jserver.gameserver.model.L2Spawn;
+import com.l2jserver.gameserver.model.actor.L2Npc;
+
+/**
+ * Mesmer Drake AI.
+ * @author Adry_85
+ */
+public class MesmerDrake extends AbstractNpcAI
+{
+	private static final int MESMER_DRAKE_ID = 22820;
+	
+	private static final int[] ROUTE_ID =
+	{
+		17,
+		18,
+		19
+	};
+	
+	private MesmerDrake(String name, String descr)
+	{
+		super(name, descr);
+		addSpawnId(MESMER_DRAKE_ID);
+		
+		FastSet<L2Spawn> spawns = SpawnTable.getInstance().getSpawnTable();
+		for (L2Spawn spawn : spawns)
+		{
+			if (spawn.getNpcid() == MESMER_DRAKE_ID)
+			{
+				onSpawn(spawn.getLastSpawn());
+			}
+		}
+	}
+	
+	@Override
+	public String onSpawn(L2Npc npc)
+	{
+		for (int route : ROUTE_ID)
+		{
+			WalkingManager.getInstance().startMoving(npc, route);
+		}
+		
+		return super.onSpawn(npc);
+	}
+	
+	public static void main(String[] args)
+	{
+		new MesmerDrake(MesmerDrake.class.getSimpleName(), "ai");
+	}
+}
diff --git a/L2J_DataPack_BETA/dist/game/data/scripts/ai/individual/NecromancerValley.java b/L2J_DataPack_BETA/dist/game/data/scripts/ai/individual/NecromancerValley.java
new file mode 100644
index 0000000000..2e320ec713
--- /dev/null
+++ b/L2J_DataPack_BETA/dist/game/data/scripts/ai/individual/NecromancerValley.java
@@ -0,0 +1,87 @@
+/*
+ * This program is free software: you can redistribute it and/or modify it under
+ * the terms of the GNU General Public License as published by the Free Software
+ * Foundation, either version 3 of the License, or (at your option) any later
+ * version.
+ * 
+ * This program is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+ * details.
+ * 
+ * You should have received a copy of the GNU General Public License along with
+ * this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+package ai.individual;
+
+import ai.npc.AbstractNpcAI;
+
+import com.l2jserver.gameserver.ai.CtrlIntention;
+import com.l2jserver.gameserver.model.actor.L2Attackable;
+import com.l2jserver.gameserver.model.actor.L2Character;
+import com.l2jserver.gameserver.model.actor.L2Npc;
+import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
+import com.l2jserver.util.Rnd;
+
+/**
+ * Necromancer of the Valley AI.
+ * @author Micr0, improved by Adry_85
+ */
+public class NecromancerValley extends AbstractNpcAI
+{
+	private static final int NECROMANCER = 22858;
+	private static final int EXPLODING_ORC_GHOST = 22818;
+	private static final int WRATHFUL_ORC_GHOST = 22819;
+	
+	private NecromancerValley(String name, String descr)
+	{
+		super(name, descr);
+		addAttackId(NECROMANCER);
+		addKillId(NECROMANCER);
+	}
+	
+	@Override
+	public String onKill(L2Npc npc, L2PcInstance killer, boolean isPet)
+	{
+		if (Rnd.get(100) < 20)
+		{
+			L2Character attacker = isPet ? killer.getPet() : killer;
+			L2Attackable Orc = (L2Attackable) addSpawn(EXPLODING_ORC_GHOST, npc.getX(), npc.getY(), npc.getZ() + 10, npc.getHeading(), false, 0, true);
+			Orc.setRunning();
+			Orc.addDamageHate(attacker, 0, 600);
+			Orc.getAI().setIntention(CtrlIntention.AI_INTENTION_ATTACK, attacker);
+			L2Attackable Ork2 = (L2Attackable) addSpawn(WRATHFUL_ORC_GHOST, npc.getX(), npc.getY(), npc.getZ() + 20, npc.getHeading(), false, 0, false);
+			Ork2.setRunning();
+			Ork2.addDamageHate(attacker, 0, 600);
+			Ork2.getAI().setIntention(CtrlIntention.AI_INTENTION_ATTACK, attacker);
+			
+		}
+		
+		return super.onKill(npc, killer, isPet);
+	}
+	
+	@Override
+	public String onAttack(L2Npc npc, L2PcInstance attacker, int damage, boolean isPet)
+	{
+		if (Rnd.get(100) < 1)
+		{
+			L2Character player = isPet ? attacker.getPet() : attacker;
+			L2Attackable Orc = (L2Attackable) addSpawn(EXPLODING_ORC_GHOST, npc.getX(), npc.getY(), npc.getZ() + 10, npc.getHeading(), false, 0, true);
+			Orc.setRunning();
+			Orc.addDamageHate(player, 0, 600);
+			Orc.getAI().setIntention(CtrlIntention.AI_INTENTION_ATTACK, player);
+			L2Attackable Ork2 = (L2Attackable) addSpawn(WRATHFUL_ORC_GHOST, npc.getX(), npc.getY(), npc.getZ() + 20, npc.getHeading(), false, 0, false);
+			Ork2.setRunning();
+			Ork2.addDamageHate(player, 0, 600);
+			Ork2.getAI().setIntention(CtrlIntention.AI_INTENTION_ATTACK, player);
+			
+		}
+		
+		return super.onAttack(npc, attacker, damage, isPet);
+	}
+	
+	public static void main(String[] args)
+	{
+		new NecromancerValley(NecromancerValley.class.getSimpleName(), "ai");
+	}
+}
diff --git a/L2J_DataPack_BETA/dist/game/data/scripts/ai/individual/SandDrake.java b/L2J_DataPack_BETA/dist/game/data/scripts/ai/individual/SandDrake.java
new file mode 100644
index 0000000000..0a8dbe44b4
--- /dev/null
+++ b/L2J_DataPack_BETA/dist/game/data/scripts/ai/individual/SandDrake.java
@@ -0,0 +1,69 @@
+/*
+ * This program is free software: you can redistribute it and/or modify it under
+ * the terms of the GNU General Public License as published by the Free Software
+ * Foundation, either version 3 of the License, or (at your option) any later
+ * version.
+ * 
+ * This program is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+ * details.
+ * 
+ * You should have received a copy of the GNU General Public License along with
+ * this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+package ai.individual;
+
+import javolution.util.FastSet;
+import ai.npc.AbstractNpcAI;
+
+import com.l2jserver.gameserver.datatables.SpawnTable;
+import com.l2jserver.gameserver.instancemanager.WalkingManager;
+import com.l2jserver.gameserver.model.L2Spawn;
+import com.l2jserver.gameserver.model.actor.L2Npc;
+
+/**
+ * Sand Drake AI.
+ * @author Adry_85
+ */
+public class SandDrake extends AbstractNpcAI
+{
+	private static final int SAND_DRAKE_ID = 22833;
+	
+	private static final int[] ROUTE_ID =
+	{
+		28,
+		29
+	};
+	
+	private SandDrake(String name, String descr)
+	{
+		super(name, descr);
+		addSpawnId(SAND_DRAKE_ID);
+		
+		FastSet<L2Spawn> spawns = SpawnTable.getInstance().getSpawnTable();
+		for (L2Spawn spawn : spawns)
+		{
+			if (spawn.getNpcid() == SAND_DRAKE_ID)
+			{
+				onSpawn(spawn.getLastSpawn());
+			}
+		}
+	}
+	
+	@Override
+	public String onSpawn(L2Npc npc)
+	{
+		for (int element : ROUTE_ID)
+		{
+			WalkingManager.getInstance().startMoving(npc, element);
+		}
+		
+		return super.onSpawn(npc);
+	}
+	
+	public static void main(String[] args)
+	{
+		new SandDrake(SandDrake.class.getSimpleName(), "ai");
+	}
+}
diff --git a/L2J_DataPack_BETA/dist/game/data/scripts/ai/npc/DragonVortex/32871-no.html b/L2J_DataPack_BETA/dist/game/data/scripts/ai/npc/DragonVortex/32871-no.html
new file mode 100644
index 0000000000..bce75ec38c
--- /dev/null
+++ b/L2J_DataPack_BETA/dist/game/data/scripts/ai/npc/DragonVortex/32871-no.html
@@ -0,0 +1,5 @@
+<html><body>
+Dragon Vortex:<br>
+You do not possess a <font color="LEVEL">Large Dragon Bone</font> and
+cannot summon a dragon to fight.
+</body></html>
\ No newline at end of file
diff --git a/L2J_DataPack_BETA/dist/game/data/scripts/ai/npc/DragonVortex/32871.html b/L2J_DataPack_BETA/dist/game/data/scripts/ai/npc/DragonVortex/32871.html
new file mode 100644
index 0000000000..be74f855a0
--- /dev/null
+++ b/L2J_DataPack_BETA/dist/game/data/scripts/ai/npc/DragonVortex/32871.html
@@ -0,0 +1,6 @@
+<html><body>
+Dragon Vortex:<br>
+A mysterious vortex which has the power to summon one of Antharas's high commanding dragons. To call forth one of these creatures you must use a <font color="LEVEL">Large Dragon Bone</font> to entice it.<br>
+Summoned Dragons: <font color="LEVEL">Emerald Horn, Dust Rider, Bleeding Fly, Blackdagger Wing, Shadow Summoner, Spike Slasher, & Muscle Bomber</font><br>
+<a action="bypass -h Quest DragonVortex Spawn">Use a Large Dragon Bone</a>
+</body></html>
\ No newline at end of file
diff --git a/L2J_DataPack_BETA/dist/game/data/scripts/ai/npc/DragonVortex/DragonVortex.java b/L2J_DataPack_BETA/dist/game/data/scripts/ai/npc/DragonVortex/DragonVortex.java
new file mode 100644
index 0000000000..f3d13e7457
--- /dev/null
+++ b/L2J_DataPack_BETA/dist/game/data/scripts/ai/npc/DragonVortex/DragonVortex.java
@@ -0,0 +1,81 @@
+/*
+ * This program is free software: you can redistribute it and/or modify it under
+ * the terms of the GNU General Public License as published by the Free Software
+ * Foundation, either version 3 of the License, or (at your option) any later
+ * version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+ * details.
+ *
+ * You should have received a copy of the GNU General Public License along with
+ * this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+package ai.npc.DragonVortex;
+
+import ai.npc.AbstractNpcAI;
+
+import com.l2jserver.gameserver.model.Location;
+import com.l2jserver.gameserver.model.actor.L2Npc;
+import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
+
+/**
+ * Dragon Vortex AI
+ * @author UnAfraid, improved by Adry_85
+ */
+public class DragonVortex extends AbstractNpcAI
+{
+	private static final int VORTEX = 32871;
+	
+	private static final int[] RAIDS =
+	{
+		25724, // Muscle Bomber
+		25723, // Spike Slasher
+		25722, // Shadow Summoner
+		25721, // Blackdagger Wing
+		25720, // Bleeding Fly
+		25719, // Dust Rider
+		25718, // Emerald Horn
+	};
+	
+	private static final int LARGE_DRAGON_BONE = 17248;
+	
+	private static final int DESPAWN_DELAY = 108000; // 30min
+	
+	private DragonVortex(String name, String descr)
+	{
+		super(name, descr);
+		
+		addStartNpc(VORTEX);
+		addFirstTalkId(VORTEX);
+		addTalkId(VORTEX);
+		addKillId(RAIDS);
+	}
+	
+	@Override
+	public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
+	{
+		if ("Spawn".equals(event))
+		{
+			int raid = RAIDS[getRandom(RAIDS.length)];
+			
+			if (hasQuestItems(player, LARGE_DRAGON_BONE))
+			{
+				takeItems(player, LARGE_DRAGON_BONE, 1);
+				addSpawn(raid, new Location(player.getX() + getRandom(100), player.getY() + getRandom(100), player.getZ(), player.getHeading()), true, DESPAWN_DELAY);
+			}
+			else
+			{
+				return "32871-no.html";
+			}
+		}
+		
+		return super.onAdvEvent(event, npc, player);
+	}
+	
+	public static void main(String[] args)
+	{
+		new DragonVortex(DragonVortex.class.getSimpleName(), "ai/npc/");
+	}
+}
\ No newline at end of file
diff --git a/L2J_DataPack_BETA/dist/game/data/scripts/ai/npc/Teleports/SeparatedSoul/SeparatedSoul.java b/L2J_DataPack_BETA/dist/game/data/scripts/ai/npc/Teleports/SeparatedSoul/SeparatedSoul.java
new file mode 100644
index 0000000000..49976c9205
--- /dev/null
+++ b/L2J_DataPack_BETA/dist/game/data/scripts/ai/npc/Teleports/SeparatedSoul/SeparatedSoul.java
@@ -0,0 +1,111 @@
+/*
+ /*
+ * This program is free software: you can redistribute it and/or modify it under
+ * the terms of the GNU General Public License as published by the Free Software
+ * Foundation, either version 3 of the License, or (at your option) any later
+ * version.
+ * 
+ * This program is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+ * details.
+ * 
+ * You should have received a copy of the GNU General Public License along with
+ * this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+package ai.npc.Teleports.SeparatedSoul;
+
+import java.util.HashMap;
+import java.util.Map;
+
+import ai.npc.AbstractNpcAI;
+
+import com.l2jserver.gameserver.model.Location;
+import com.l2jserver.gameserver.model.actor.L2Npc;
+import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
+
+/**
+ * Separated Soul teleport AI.
+ * @author UnAfraid, improved by Adry_85
+ */
+public class SeparatedSoul extends AbstractNpcAI
+{
+	// NPCs
+	private static final int[] SEPARATED_SOULS =
+	{
+		32864,
+		32865,
+		32866,
+		32867,
+		32868,
+		32869,
+		32870,
+		32891
+	};
+	
+	// Items
+	private static final int WILL_OF_ANTHARAS = 17266;
+	private static final int SEALED_BLOOD_CRYSTAL = 17267;
+	private static final int ANTHARAS_BLOOD_CRYSTAL = 17268;
+	
+	// Misc
+	private static final int MIN_LEVEL = 80;
+	
+	// Locations
+	private static final Map<String, Location> LOCATIONS = new HashMap<>();
+	static
+	{
+		LOCATIONS.put("HuntersVillage", new Location(117031, 76769, -2696));
+		LOCATIONS.put("AntharasLair", new Location(131116, 114333, -3704));
+		LOCATIONS.put("AntharasLairDeep", new Location(148447, 110582, -3944));
+		LOCATIONS.put("AntharasLairMagicForceFieldBridge", new Location(146129, 111232, -3568));
+		LOCATIONS.put("DragonValley", new Location(73122, 118351, -3714));
+		LOCATIONS.put("DragonValleyCenter", new Location(99218, 110283, -3696));
+		LOCATIONS.put("DragonValleyNorth", new Location(116992, 113716, -3056));
+		LOCATIONS.put("DragonValleySouth", new Location(113203, 121063, -3712));
+	}
+	
+	@Override
+	public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
+	{
+		if (LOCATIONS.containsKey(event))
+		{
+			if (player.getLevel() >= MIN_LEVEL)
+			{
+				player.teleToLocation(LOCATIONS.get(event), true);
+			}
+			else
+			{
+				return "no-level.htm";
+			}
+		}
+		else if ("Synthesis".equals(event)) // Request Item Synthesis
+		{
+			if (hasQuestItems(player, WILL_OF_ANTHARAS) && hasQuestItems(player, SEALED_BLOOD_CRYSTAL))
+			{
+				takeItems(player, WILL_OF_ANTHARAS, 1);
+				takeItems(player, SEALED_BLOOD_CRYSTAL, 1);
+				giveItems(player, ANTHARAS_BLOOD_CRYSTAL, 1);
+			}
+			else
+			{
+				return "no-items.htm";
+			}
+		}
+		
+		return super.onAdvEvent(event, npc, player);
+	}
+	
+	private SeparatedSoul(String name, String descr)
+	{
+		super(name, descr);
+		
+		addStartNpc(SEPARATED_SOULS);
+		addTalkId(SEPARATED_SOULS);
+	}
+	
+	public static void main(String[] args)
+	{
+		new SeparatedSoul(SeparatedSoul.class.getSimpleName(), "ai/npc/Teleports/");
+	}
+}
\ No newline at end of file
diff --git a/L2J_DataPack_BETA/dist/game/data/scripts/ai/npc/Teleports/SeparatedSoul/no-items.htm b/L2J_DataPack_BETA/dist/game/data/scripts/ai/npc/Teleports/SeparatedSoul/no-items.htm
new file mode 100644
index 0000000000..2b0a9c970c
--- /dev/null
+++ b/L2J_DataPack_BETA/dist/game/data/scripts/ai/npc/Teleports/SeparatedSoul/no-items.htm
@@ -0,0 +1,3 @@
+<html><body>Separated Soul:<br>
+In order for me to create a <font color="LEVEL">Blood Crystal of Antharas</font> you will need to bring me the <font color="LEVEL">Will of Antharas</font> and a <font color="LEVEL">Sealed Blood Crystal</font>. You can acquire these items from his commanders in either Antharas' Lair or Dragon Valley.<br>
+</body></html>
\ No newline at end of file
diff --git a/L2J_DataPack_BETA/dist/game/data/scripts/ai/npc/Teleports/SeparatedSoul/no-level.htm b/L2J_DataPack_BETA/dist/game/data/scripts/ai/npc/Teleports/SeparatedSoul/no-level.htm
new file mode 100644
index 0000000000..a5b33702bb
--- /dev/null
+++ b/L2J_DataPack_BETA/dist/game/data/scripts/ai/npc/Teleports/SeparatedSoul/no-level.htm
@@ -0,0 +1,5 @@
+<html><body>Separated Soul:<br>
+The claw of Antharas barely touched my face,but my soul was still ripped apart!<br>
+I can't gather the scattered souls in the area, but I can sense them. I could send you to the location of the souls, but you don't look capable yet of combining my ripped soul.<br>
+(Moving to the location of the other separated souls requires the character to be at <font color="LEVEL">level 80 or above</font>.)
+</body></html>
\ No newline at end of file
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/06700-06799.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/06700-06799.xml
index 6affedb4d1..8276398905 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/06700-06799.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/06700-06799.xml
@@ -345,10 +345,18 @@
 		<set name="operateType" val="P" />
 	</skill>
 	<skill id="6732" levels="1" name="Mirage">
-		<!-- none -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="hitTime" val="3000" />
+		<set name="magicLvl" val="85" />
+		<set name="operateType" val="A1" />
+		<set name="power" val="100" /> <!-- Base Land Rate -->
+		<set name="skillRadius" val="300" />
+		<set name="skillType" val="DEBUFF" />
+		<set name="target" val="TARGET_AURA" />
+		<for>
+			<effect name="RemoveTarget" noicon="1" val="0" />
+		</for>
 	</skill>
 	<skill id="6733" levels="1" name="Antharas's Stigma">
 		<!-- "Antharas's stigma. After 10 seconds, spreads the Stigma Aftermath nearby, which decreases 400 HP per second and 150 MP." -->
@@ -369,16 +377,34 @@
 		<set name="operateType" val="P" />
 	</skill>
 	<skill id="6736" levels="1" name="Fierce Attack">
-		<!-- none -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="baseCritRate" val="20" />
+		<set name="castRange" val="2000" />
+		<set name="effectRange" val="2200" />
+		<set name="hitTime" val="2000" />
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="79" />
+		<set name="operateType" val="A1" />
+		<set name="power" val="15000" />
+		<set name="reuseDelay" val="3000" />
+		<set name="skillType" val="PDAM" />
+		<set name="target" val="TARGET_ONE" />
 	</skill>
 	<skill id="6737" levels="1" name="Heal">
-		<!-- none -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="hitTime" val="900" />
+		<set name="isMagic" val="1" /> <!-- Magic Skill -->
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="130" />
+		<set name="operateType" val="A1" />
+		<set name="skillRadius" val="900" />
+		<set name="skillType" val="HEAL" />
+		<set name="target" val="TARGET_SELF" />
+		<for>
+			<effect name="Heal" noicon="1" val="800" />
+		</for>
 	</skill>
 	<skill id="6738" levels="1" name="Hold">
 		<!-- Temporarily inflicted with hold and unable to move. -->
@@ -411,10 +437,30 @@
 		<set name="operateType" val="P" />
 	</skill>
 	<skill id="6743" levels="1" name="Dark Wind">
-		<!-- Darkness attribute is weakened -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="abnormalLvl" val="1" />
+		<set name="abnormalType" val="bleeding" />
+		<set name="castRange" val="1500" />
+		<set name="effectRange" val="2000" />
+		<set name="hitTime" val="2000" />
+		<set name="isMagic" val="1" /> <!-- Magic Skill -->
+		<set name="isDebuff" val="true" />
+		<set name="lvlDepend" val="1" />
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="25" />
+		<set name="operateType" val="A2" />
+		<set name="power" val="40" /> <!-- Base Land Rate -->
+		<set name="reuseDelay" val="5000" />
+		<set name="saveVs" val="CON" />
+		<set name="skillType" val="BLEED" />
+		<set name="target" val="TARGET_ONE" />
+		<set name="trait" val="BLEED" />
+		<for>
+			<effect count="20" name="DamOverTime" abnormalTime="1" val="200" abnormalLvl="1" abnormalType="bleeding" abnormalVisualEffect="bleed">
+				<sub order="0x40" stat="darkRes" val="60" />
+			</effect>
+		</for>
 	</skill>
 	<skill id="6744" levels="1" name="Dark Storm">
 		<!-- Casting Spd. decreases by 90% and Atk. Spd. decreases by 30%. -->
@@ -441,22 +487,62 @@
 		<set name="operateType" val="P" />
 	</skill>
 	<skill id="6748" levels="1" name="Stun Attack">
-		<!-- Inflicts stun for 5 seconds. -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="abnormalLvl" val="1" />
+		<set name="abnormalType" val="stun" />
+		<set name="baseCritRate" val="20" />
+		<set name="castRange" val="150" />
+		<set name="effectRange" val="300" />
+		<set name="element" val="5" /> <!-- Dark -->
+		<set name="elementPower" val="20" />
+		<set name="hitTime" val="1500" />
+		<set name="isDebuff" val="true" />
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="33" />
+		<set name="operateType" val="A2" />
+		<set name="power" val="15000" />
+		<set name="reuseDelay" val="3000" />
+		<set name="skillType" val="PDAM" />
+		<set name="target" val="TARGET_ONE" />
+		<set name="trait" val="SHOCK" />
+		<for>
+			<effect name="Stun" abnormalTime="9" val="0" abnormalLvl="1" abnormalType="stun" effectPower="80" effectType="STUN" />
+		</for>
 	</skill>
 	<skill id="6749" levels="1" name="Death Strike">
-		<!-- none -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="baseCritRate" val="20" />
+		<set name="castRange" val="150" />
+		<set name="effectRange" val="300" />
+		<set name="element" val="5" /> <!-- Dark -->
+		<set name="elementPower" val="20" />
+		<set name="hitTime" val="1500" />
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="79" />
+		<set name="operateType" val="A1" />
+		<set name="power" val="15000" />
+		<set name="reuseDelay" val="3000" />
+		<set name="skillType" val="PDAM" />
+		<set name="target" val="TARGET_ONE" />
 	</skill>
 	<skill id="6750" levels="1" name="Power Strike">
-		<!-- none -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="baseCritRate" val="20" />
+		<set name="castRange" val="150" />
+		<set name="effectRange" val="300" />
+		<set name="element" val="5" /> <!-- Dark -->
+		<set name="elementPower" val="20" />
+		<set name="hitTime" val="1500" />
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="33" />
+		<set name="operateType" val="A1" />
+		<set name="power" val="15000" />
+		<set name="reuseDelay" val="3000" />
+		<set name="skillType" val="PDAM" />
+		<set name="target" val="TARGET_ONE" />
 	</skill>
 	<skill id="6751" levels="1" name="Blow Attack">
 		<!-- none -->
@@ -465,46 +551,136 @@
 		<set name="operateType" val="P" />
 	</skill>
 	<skill id="6752" levels="1" name="Revival">
-		<!-- none -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="hitTime" val="2000" />
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="158" />
+		<set name="operateType" val="A1" />
+		<set name="power" val="100" />
+		<set name="reuseDelay" val="900000" />
+		<set name="target" val="TARGET_SELF" />
+		<for>
+			<effect name="HealPercent" noicon="1" val="100" />
+		</for>
 	</skill>
 	<skill id="6753" levels="1" name="Death Blow">
-		<!-- none -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="baseCritRate" val="20" />
+		<set name="castRange" val="150" />
+		<set name="effectRange" val="300" />
+		<set name="element" val="5" /> <!-- Dark -->
+		<set name="elementPower" val="20" />
+		<set name="hitTime" val="1500" />
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="77" />
+		<set name="operateType" val="A1" />
+		<set name="power" val="15000" />
+		<set name="reuseDelay" val="3000" />
+		<set name="skillType" val="PDAM" />
+		<set name="target" val="TARGET_ONE" />
 	</skill>
 	<skill id="6754" levels="1" name="Bleed">
-		<!-- Inflicted with bleed and 200 HP decreases every second. -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="abnormalLvl" val="1" />
+		<set name="abnormalType" val="bleeding" />
+		<set name="hitTime" val="1500" />
+		<set name="isDebuff" val="true" />
+		<set name="lvlDepend" val="1" />
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="100" />
+		<set name="operateType" val="A2" />
+		<set name="power" val="50" /> <!-- Base Land Rate -->
+		<set name="reuseDelay" val="3000" />
+		<set name="skillRadius" val="150" />
+		<set name="skillType" val="BLEED" />
+		<set name="target" val="TARGET_AURA" />
+		<set name="trait" val="BLEED" />
+		<for>
+			<effect count="20" name="DamOverTime" val="200" abnormalLvl="1" abnormalType="bleeding" abnormalVisualEffect="bleed" />
+		</for>
 	</skill>
 	<skill id="6755" levels="1" name="Death Strike">
-		<!-- none -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="castRange" val="900" />
+		<set name="effectRange" val="1400" />
+		<set name="element" val="5" /> <!-- Dark -->
+		<set name="elementPower" val="20" />
+		<set name="hitTime" val="2500" />
+		<set name="isMagic" val="1" /> <!-- Magic Skill -->
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="78" />
+		<set name="operateType" val="A1" />
+		<set name="power" val="100" />
+		<set name="reuseDelay" val="3000" />
+		<set name="skillType" val="MDAM" />
+		<set name="target" val="TARGET_ONE" />
 	</skill>
 	<skill id="6756" levels="1" name="Death Talon">
-		<!-- none -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="element" val="5" /> <!-- Dark -->
+		<set name="elementPower" val="20" />
+		<set name="hitTime" val="3000" />
+		<set name="isMagic" val="1" /> <!-- Magic Skill -->
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="155" />
+		<set name="operateType" val="A1" />
+		<set name="power" val="15000" />
+		<set name="reuseDelay" val="3000" />
+		<set name="skillRadius" val="150" />
+		<set name="skillType" val="MDAM" />
+		<set name="target" val="TARGET_AURA" />
 	</skill>
 	<skill id="6757" levels="1" name="Slow">
-		<!-- Decreases an enemy's Speed by 30% for 15 seconds. -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="abnormalLvl" val="3" />
+		<set name="abnormalType" val="speed_down" />
+		<set name="castRange" val="900" />
+		<set name="effectRange" val="1400" />
+		<set name="hitTime" val="1500"/>
+		<set name="isDebuff" val="true" />
+		<set name="isMagic" val="1" /> <!-- Magic Skill -->
+		<set name="lvlDepend" val="2" />
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="69" />
+		<set name="operateType" val="A2" />
+		<set name="power" val="80" /> <!-- Base Land Rate -->
+		<set name="reuseDelay" val="3000" />
+		<set name="saveVs" val="MEN" />
+		<set name="skillType" val="DEBUFF"/>
+		<set name="target" val="TARGET_ONE" />
+		<for>
+			<effect name="Debuff" abnormalTime="60" val="0" abnormalLvl="3" abnormalType="speed_down">
+				<mul order="0x30" stat="runSpd" val="0.7" />
+			</effect>
+		</for>
 	</skill>
 	<skill id="6758" levels="1" name="Rage">
-		<!-- none -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="abnormalLvl" val="1" />
+		<set name="abnormalType" val="pa_up" />
+		<set name="hitTime" val="1500" />
+		<set name="isMagic" val="1" /> <!-- Magic Skill -->
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="69" />
+		<set name="operateType" val="A2" />
+		<set name="reuseDelay" val="8000" />
+		<set name="skillType" val="BUFF" />
+		<set name="target" val="TARGET_SELF" />
+		<for>
+			<effect name="Buff" abnormalTime="60" val="0" abnormalLvl="1" abnormalType="pa_up">
+				<mul order="0x30" stat="pAtk" val="1.1" />
+				<mul order="0x30" stat="pAtkSpd" val="1.3" />
+				<basemul order="0x30" stat="rCrit" val="0.3" />
+				<mul order="0x30" stat="cAtk" val="1.35" />
+			</effect>
+		</for>
 	</skill>
 	<skill id="6759" levels="1" name="Death Shot">
 		<!-- none -->
@@ -513,46 +689,120 @@
 		<set name="operateType" val="P" />
 	</skill>
 	<skill id="6760" levels="1" name="Dragon Strike">
-		<!-- none -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="baseCritRate" val="20" />
+		<set name="castRange" val="150" />
+		<set name="effectRange" val="650" />
+		<set name="hitTime" val="1500" />
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="79" />
+		<set name="operateType" val="A1" />
+		<set name="power" val="15000" />
+		<set name="reuseDelay" val="3000" />
+		<set name="skillType" val="PDAM" />
+		<set name="target" val="TARGET_ONE" />
 	</skill>
 	<skill id="6761" levels="1" name="Dragon Blow Strike">
-		<!-- none -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="baseCritRate" val="20" />
+		<set name="hitTime" val="1500" />
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="158" />
+		<set name="operateType" val="A1" />
+		<set name="power" val="10000" />
+		<set name="reuseDelay" val="3000" />
+		<set name="skillRadius" val="200" />
+		<set name="skillType" val="PDAM" />
+		<set name="target" val="TARGET_AURA" />
 	</skill>
 	<skill id="6762" levels="1" name="Rage">
-		<!-- none -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="abnormalLvl" val="1" />
+		<set name="abnormalType" val="pa_up" />
+		<set name="hitTime" val="1500" />
+		<set name="isMagic" val="1" /> <!-- Magic Skill -->
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="69" />
+		<set name="operateType" val="A2" />
+		<set name="reuseDelay" val="8000" />
+		<set name="skillType" val="BUFF" />
+		<set name="target" val="TARGET_SELF" />
+		<for>
+			<effect name="Buff" abnormalTime="60" val="0" abnormalLvl="1" abnormalType="pa_up">
+				<mul order="0x30" stat="pAtk" val="1.1" />
+				<mul order="0x30" stat="pAtkSpd" val="1.3" />
+				<basemul order="0x30" stat="rCrit" val="0.3" />
+				<mul order="0x30" stat="cAtk" val="1.35" />
+			</effect>
+		</for>
 	</skill>
 	<skill id="6763" levels="1" name="Dragon Earth Strike">
-		<!-- none -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="baseCritRate" val="20" />
+		<set name="castRange" val="150" />
+		<set name="effectRange" val="650" />
+		<set name="element" val="3" /> <!-- Earth -->
+		<set name="elementPower" val="20" />
+		<set name="hitTime" val="1500" />
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="79" />
+		<set name="operateType" val="A1" />
+		<set name="power" val="15000" />
+		<set name="reuseDelay" val="3000" />
+		<set name="skillType" val="PDAM" />
+		<set name="target" val="TARGET_ONE" />
 	</skill>
 	<skill id="6764" levels="1" name="Dragon Earth Shot">
-		<!-- none -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="baseCritRate" val="20" />
+		<set name="castRange" val="900" />
+		<set name="effectRange" val="1400" />
+		<set name="element" val="3" /> <!-- Earth -->
+		<set name="elementPower" val="20" />
+		<set name="hitTime" val="1500" />
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="79" />
+		<set name="operateType" val="A1" />
+		<set name="power" val="15000" />
+		<set name="reuseDelay" val="3000" />
+		<set name="skillType" val="PDAM" />
+		<set name="target" val="TARGET_ONE" />
 	</skill>
 	<skill id="6765" levels="1" name="Complete Recovery">
-		<!-- none -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="hitTime" val="2500" />
+		<set name="magicLvl" val="85" />
+		<set name="operateType" val="A1" />
+		<set name="power" val="100" />
+		<set name="reuseDelay" val="900000" />
+		<set name="target" val="TARGET_SELF" />
+		<for>
+			<effect name="HealPercent" noicon="1" val="100" />
+		</for>
 	</skill>
 	<skill id="6766" levels="1" name="Earth Tremor">
-		<!-- none -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="baseCritRate" val="20" />
+		<set name="castRange" val="900" />
+		<set name="effectRange" val="1400" />
+		<set name="element" val="3" /> <!-- Earth -->
+		<set name="elementPower" val="20" />
+		<set name="hitTime" val="2500" />
+		<set name="isMagic" val="1" /> <!-- Magic Skill -->
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="78" />
+		<set name="operateType" val="A1" />
+		<set name="power" val="150" />
+		<set name="reuseDelay" val="3000" />
+		<set name="skillType" val="MDAM" />
+		<set name="target" val="TARGET_ONE" />
 	</skill>
 	<skill id="6767" levels="1" name="Earthquake">
 		<!-- none -->
@@ -561,76 +811,243 @@
 		<set name="operateType" val="P" />
 	</skill>
 	<skill id="6768" levels="1" name="Stun Attack">
-		<!-- Inflicts stun for 5 seconds. -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="abnormalLvl" val="1" />
+		<set name="abnormalType" val="stun" />
+		<set name="baseCritRate" val="20" />
+		<set name="castRange" val="150" />
+		<set name="effectRange" val="300" />
+		<set name="hitTime" val="1500" />
+		<set name="isDebuff" val="true" />
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="158" />
+		<set name="operateType" val="A2" />
+		<set name="power" val="15000" />
+		<set name="reuseDelay" val="3000" />
+		<set name="skillType" val="PDAM" />
+		<set name="target" val="TARGET_ONE" />
+		<set name="trait" val="SHOCK" />
+		<for>
+			<effect name="Stun" abnormalTime="5" val="0" abnormalLvl="1" abnormalType="stun" effectPower="80" effectType="STUN" />
+		</for>
 	</skill>
 	<skill id="6769" levels="1" name="Petrify">
-		<!-- "Inflicted with petrification, the body is rigid like stone." -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="abnormalLvl" val="1" />
+		<set name="abnormalType" val="turn_stone" />
+		<set name="castRange" val="900" />
+		<set name="effectRange" val="1400" />
+		<set name="hitTime" val="2500"/>
+		<set name="isDebuff" val="true" />
+		<set name="isMagic" val="1" /> <!-- Magic Skill -->
+		<set name="lvlDepend" val="1" />
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="155" />
+		<set name="operateType" val="A2" />
+		<set name="power" val="40" /> <!-- Base Land Rate -->
+		<set name="reuseDelay" val="5000" />
+		<set name="saveVs" val="MEN" />
+		<set name="skillType" val="PARALYZE" />
+		<set name="target" val="TARGET_ONE"/>
+		<for>
+			<effect name="Petrification" abnormalTime="10" val="0" abnormalLvl="1" abnormalType="turn_stone" />
+		</for>
 	</skill>
 	<skill id="6770" levels="1" name="Heal">
-		<!-- none -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="hitTime" val="1500" />
+		<set name="isMagic" val="1" /> <!-- Magic Skill -->
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="130" />
+		<set name="operateType" val="A1" />
+		<set name="skillRadius" val="900" />
+		<set name="skillType" val="HEAL" />
+		<set name="target" val="TARGET_CLAN" />
+		<for>
+			<effect name="Heal" noicon="1" val="800" />
+		</for>
 	</skill>
 	<skill id="6771" levels="1" name="Death Strike">
-		<!-- none -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="baseCritRate" val="20" />
+		<set name="castRange" val="150" />
+		<set name="effectRange" val="300" />
+		<set name="element" val="5" /> <!-- Dark -->
+		<set name="elementPower" val="20" />
+		<set name="hitTime" val="1500" />
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="79" />
+		<set name="operateType" val="A1" />
+		<set name="power" val="15000" />
+		<set name="reuseDelay" val="3000" />
+		<set name="skillType" val="PDAM" />
+		<set name="target" val="TARGET_ONE" />
 	</skill>
 	<skill id="6772" levels="1" name="Power Strike">
-		<!-- none -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="baseCritRate" val="20" />
+		<set name="castRange" val="150" />
+		<set name="effectRange" val="300" />
+		<set name="element" val="5" /> <!-- Dark -->
+		<set name="elementPower" val="20" />
+		<set name="hitTime" val="1500" />
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="33" />
+		<set name="operateType" val="A1" />
+		<set name="power" val="15000" />
+		<set name="reuseDelay" val="3000" />
+		<set name="skillType" val="PDAM" />
+		<set name="target" val="TARGET_ONE" />
 	</skill>
 	<skill id="6773" levels="1" name="Rage">
-		<!-- none -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="abnormalLvl" val="1" />
+		<set name="abnormalType" val="pa_up" />
+		<set name="hitTime" val="1500" />
+		<set name="isMagic" val="1" /> <!-- Magic Skill -->
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="69" />
+		<set name="operateType" val="A2" />
+		<set name="reuseDelay" val="8000" />
+		<set name="skillType" val="BUFF" />
+		<set name="target" val="TARGET_SELF" />
+		<for>
+			<effect name="Buff" abnormalTime="60" val="0" abnormalLvl="1" abnormalType="pa_up">
+				<mul order="0x30" stat="pAtk" val="1.1" />
+				<mul order="0x30" stat="pAtkSpd" val="1.3" />
+				<basemul order="0x30" stat="rCrit" val="0.3" />
+				<mul order="0x30" stat="cAtk" val="1.35" />
+			</effect>
+		</for>
 	</skill>
 	<skill id="6774" levels="1" name="Stun Attack">
-		<!-- Inflicts stun for 10 seconds. -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="abnormalLvl" val="1" />
+		<set name="abnormalType" val="stun" />
+		<set name="baseCritRate" val="20" />
+		<set name="castRange" val="150" />
+		<set name="effectRange" val="300" />
+		<set name="hitTime" val="1500" />
+		<set name="isDebuff" val="true" />
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="85" />
+		<set name="operateType" val="A2" />
+		<set name="power" val="15000" />
+		<set name="reuseDelay" val="3000" />
+		<set name="skillType" val="PDAM" />
+		<set name="target" val="TARGET_ONE" />
+		<set name="trait" val="SHOCK" />
+		<for>
+			<effect name="Stun" abnormalTime="10" val="0" abnormalLvl="1" abnormalType="stun" effectPower="80" effectType="STUN" />
+		</for>
 	</skill>
 	<skill id="6775" levels="1" name="Soul Breath">
-		<!-- none -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="baseCritRate" val="20" />
+		<set name="castRange" val="150" />
+		<set name="effectRange" val="300" />
+		<set name="element" val="5" /> <!-- Dark -->
+		<set name="elementPower" val="20" />
+		<set name="hitTime" val="1500" />
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="85" />
+		<set name="operateType" val="A1" />
+		<set name="power" val="15000" />
+		<set name="reuseDelay" val="3000" />
+		<set name="skillType" val="PDAM" />
+		<set name="target" val="TARGET_ONE" />
 	</skill>
 	<skill id="6776" levels="1" name="Paralysis">
-		<!-- Causes an enemy's body to go completely rigid for 10 seconds and causes paralysis for 15 seconds. -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="castRange" val="900" />
+		<set name="effectRange" val="1400" />
+		<set name="hitTime" val="2500" />
+		<set name="isMagic" val="1" /> <!-- Magic Skill -->
+		<set name="isDebuff" val="true" />
+		<set name="lvlDepend" val="1" />
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="69" />
+		<set name="operateType" val="A2" />
+		<set name="power" val="40" /> <!-- Base Land Rate -->
+		<set name="reuseDelay" val="5000" />
+		<set name="saveVs" val="MEN" />
+		<set name="skillType" val="PARALYZE" />
+		<set name="target" val="TARGET_ONE" />
+		<for>
+			<effect name="ChanceSkillTrigger" abnormalTime="10" val="0" chanceType="ON_EXIT" triggeredId="6779">
+				<mul order="0x30" stat="pAtkSpd" val="0.5" />
+				<mul order="0x30" stat="runSpd" val="0.5" />
+				<mul order="0x30" stat="mAtkSpd" val="0.5" />
+			</effect>
+		</for>
 	</skill>
 	<skill id="6777" levels="1" name="Bleeding Gash">
-		<!-- "For 20 seconds, slows down Speed and inflicts bleed so that 200 HP is decreased every second. Inflicted with paralysis for 10 seconds." -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="abnormalLvl" val="1" />
+		<set name="abnormalType" val="bleeding" />
+		<set name="hitTime" val="1500" />
+		<set name="isDebuff" val="true" />
+		<set name="lvlDepend" val="1" />
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="89" />
+		<set name="operateType" val="A2" />
+		<set name="power" val="40" /> <!-- Base Land Rate -->
+		<set name="reuseDelay" val="5000" />
+		<set name="saveVs" val="CON" />
+		<set name="skillRadius" val="300" />
+		<set name="skillType" val="BLEED" />
+		<set name="target" val="TARGET_AURA" />
+		<set name="trait" val="BLEED" />
+		<for>
+			<effect count="20" name="DamOverTime" abnormalTime="1" val="200" abnormalLvl="1" abnormalType="bleeding" abnormalVisualEffect="bleed">
+				<mul order="0x30" stat="runSpd" val="0.8" />
+			</effect>
+			<effect name="Petrification" abnormalTime="10" val="0" abnormalLvl="1" abnormalType="turn_stone" noicon="1" />
+		</for>
 	</skill>
 	<skill id="6778" levels="1" name="Death Strike">
-		<!-- none -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="baseCritRate" val="20" />
+		<set name="castRange" val="150" />
+		<set name="effectRange" val="300" />
+		<set name="element" val="5" /> <!-- Dark -->
+		<set name="elementPower" val="20" />
+		<set name="hitTime" val="1500" />
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="89" />
+		<set name="operateType" val="A1" />
+		<set name="power" val="15000" />
+		<set name="reuseDelay" val="3000" />
+		<set name="skillType" val="PDAM" />
+		<set name="target" val="TARGET_ONE" />
 	</skill>
 	<skill id="6779" levels="1" name="Paralysis">
-		<!-- Body is rigid and paralyzed. -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="abnormalLvl" val="1" />
+		<set name="abnormalType" val="paralyze" />
+		<set name="isMagic" val="2" /> <!-- Static Skill -->
+		<set name="isDebuff" val="true" />
+		<set name="isTriggeredSkill" val="true" />
+		<set name="operateType" val="A2" />
+		<set name="power" val="-1" /> <!-- Land Always -->
+		<set name="skillType" val="PARALYZE" />
+		<set name="target" val="TARGET_ONE" />
+		<set name="trait" val="PARALYZE" />
+		<for>
+			<effect name="Paralyze" abnormalTime="15" val="0" abnormalLvl="1" abnormalType="paralyze" />
+		</for>
 	</skill>
 	<skill id="6780" levels="1" name="Presentation - Portal Ray Combined Light Maintenance">
 		<!-- none -->
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/06800-06899.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/06800-06899.xml
index 3ad4ddf1aa..3633c51c92 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/06800-06899.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/06800-06899.xml
@@ -229,10 +229,26 @@
 		</for>
 	</skill>
 	<skill id="6818" levels="1" name="Powerful Rage">
-		<!-- none -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="abnormalLvl" val="1" />
+		<set name="abnormalType" val="pa_up" />
+		<set name="hitTime" val="1500" />
+		<set name="isMagic" val="1" /> <!-- Magic Skill -->
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="75" />
+		<set name="operateType" val="A2" />
+		<set name="reuseDelay" val="8000" />
+		<set name="skillType" val="BUFF" />
+		<set name="target" val="TARGET_SELF" />
+		<for>
+			<effect name="Buff" abnormalTime="60" val="0" abnormalLvl="1" abnormalType="pa_up">
+				<mul order="0x30" stat="pAtk" val="1.1" />
+				<mul order="0x30" stat="pAtkSpd" val="1.3" />
+				<basemul order="0x30" stat="rCrit" val="0.3" />
+				<mul order="0x30" stat="cAtk" val="1.35" />
+			</effect>
+		</for>
 	</skill>
 	<skill id="6819" levels="1" name="Banshee's Curse">
 		<!-- "For 15 seconds, Atk. Spd. is decreased by 20%." -->
@@ -241,10 +257,22 @@
 		<set name="operateType" val="P" />
 	</skill>
 	<skill id="6820" levels="1" name="P. Def. Enhance">
-		<!-- none -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="abnormalLvl" val="4" />
+		<set name="abnormalType" val="pd_up" />
+		<set name="hitTime" val="1800" />
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="30" />
+		<set name="operateType" val="A2" />
+		<set name="reuseDelay" val="6000" />
+		<set name="skillType" val="BUFF" />
+		<set name="target" val="TARGET_SELF" />
+		<for>
+			<effect name="Buff" abnormalTime="60" val="0" abnormalLvl="4" abnormalType="pd_up">
+				<mul order="0x30" stat="pDef" val="1.2" />
+			</effect>
+		</for>
 	</skill>
 	<skill id="6821" levels="1" name="P. Def. Decrease">
 		<!-- "For 4 seconds, P. Def. decreases by 23%." -->
@@ -373,10 +401,29 @@
 		<set name="operateType" val="P" />
 	</skill>
 	<skill id="6842" levels="2" name="Enhance">
-		<!-- Atk. Spd. is increased by 40%. -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<table name="#pAtk"> 1.12 1 </table>
+		<table name="#pAtkSpd"> 1.15 1.4 </table>
+		<table name="#abnormalLvl"> 2 3 </table>
+		<table name="#abnormalLvls"> 2 3 </table>
+		<set name="abnormalLvl" val="#abnormalLvls" />
+		<set name="abnormalType" val="pa_up" />
+		<set name="hitTime" val="3000" />
+		<set name="isMagic" val="1" /> <!-- Magic Skill -->
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="75" />
+		<set name="operateType" val="A2" />
+		<set name="reuseDelay" val="30000" />
+		<set name="skillRadius" val="600" />
+		<set name="skillType" val="BUFF" />
+		<set name="target" val="TARGET_CLAN" />
+		<for>
+			<effect name="Buff" abnormalTime="15" val="0" abnormalLvl="#abnormalLvl" abnormalType="pa_up">
+				<mul order="0x30" stat="pAtk" val="#pAtk" />
+				<mul order="0x30" stat="pAtkSpd" val="#pAtkSpd" />
+			</effect>
+		</for>
 	</skill>
 	<skill id="6843" levels="1" name="Enhance">
 		<!-- Atk. Spd. is increased by 33%. -->
@@ -385,22 +432,55 @@
 		<set name="operateType" val="P" />
 	</skill>
 	<skill id="6844" levels="1" name="Power Strike">
-		<!-- none -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="baseCritRate" val="20" />
+		<set name="castRange" val="300" />
+		<set name="effectRange" val="500" />
+		<set name="element" val="0" /> <!-- Fire -->
+		<set name="elementPower" val="20" />
+		<set name="hitTime" val="3000" />
+		<set name="magicLvl" val="85" />
+		<set name="operateType" val="A1" />
+		<set name="power" val="15000" />
+		<set name="reuseDelay" val="5000" />
+		<set name="skillType" val="PDAM" />
+		<set name="target" val="TARGET_ONE" />
 	</skill>
 	<skill id="6845" levels="1" name="Power Strike">
-		<!-- none -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="baseCritRate" val="20" />
+		<set name="castRange" val="40" />
+		<set name="effectRange" val="400" />
+		<set name="element" val="5" /> <!-- Dark -->
+		<set name="elementPower" val="20" />
+		<set name="hitTime" val="2500" />
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="80" />
+		<set name="operateType" val="A1" />
+		<set name="power" val="3000" />
+		<set name="reuseDelay" val="3000" />
+		<set name="skillType" val="PDAM" />
+		<set name="target" val="TARGET_ONE" />
 	</skill>
 	<skill id="6846" levels="1" name="Vampiric Claw">
-		<!-- none -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="absorbPart" val="1.0" />
+		<set name="castRange" val="800" />
+		<set name="effectRange" val="1300" />
+		<set name="element" val="5" /> <!-- Dark -->
+		<set name="elementPower" val="20" />
+		<set name="hitTime" val="3000" />
+		<set name="isMagic" val="1" /> <!-- Magic Skill -->
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="123" />
+		<set name="operateType" val="A1" />
+		<set name="power" val="300" />
+		<set name="reuseDelay" val="3000" />
+		<set name="skillType" val="DRAIN" />
+		<set name="target" val="TARGET_ONE" />
 	</skill>
 	<skill id="6847" levels="1" name="Self Heal">
 		<!-- none -->
@@ -415,46 +495,130 @@
 		<set name="operateType" val="P" />
 	</skill>
 	<skill id="6849" levels="1" name="Summoner Strike">
-		<!-- none -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="baseCritRate" val="20" />
+		<set name="castRange" val="40" />
+		<set name="effectRange" val="400" />
+		<set name="element" val="5" /> <!-- Dark -->
+		<set name="elementPower" val="20" />
+		<set name="hitTime" val="3000" />
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="100" />
+		<set name="operateType" val="A1" />
+		<set name="power" val="3000" />
+		<set name="reuseDelay" val="3000" />
+		<set name="skillType" val="PDAM" />
+		<set name="target" val="TARGET_ONE" />
 	</skill>
 	<skill id="6850" levels="1" name="Self-destruction">
-		<!-- none -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="hitTime" val="3000" />
+		<set name="isSuicideAttack" val="true" />
+		<set name="magicLvl" val="81" />
+		<set name="operateType" val="A1" />
+		<set name="power" val="3000" />
+		<set name="skillRadius" val="200" />
+		<set name="skillType" val="PDAM" />
+		<set name="target" val="TARGET_AURA" />
 	</skill>
 	<skill id="6851" levels="1" name="Power Strike">
-		<!-- none -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="baseCritRate" val="20" />
+		<set name="castRange" val="40" />
+		<set name="effectRange" val="400" />
+		<set name="element" val="5" /> <!-- Dark -->
+		<set name="elementPower" val="20" />
+		<set name="hitTime" val="3000" />
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="80" />
+		<set name="operateType" val="A1" />
+		<set name="power" val="3000" />
+		<set name="reuseDelay" val="3000" />
+		<set name="skillType" val="PDAM" />
+		<set name="target" val="TARGET_ONE" />
 	</skill>
 	<skill id="6852" levels="1" name="Magic Strike">
-		<!-- none -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="baseCritRate" val="20" />
+		<set name="castRange" val="600" />
+		<set name="effectRange" val="1100" />
+		<set name="element" val="5" /> <!-- Dark -->
+		<set name="elementPower" val="20" />
+		<set name="hitTime" val="4000" />
+		<set name="isMagic" val="1" /> <!-- Magic Skill -->
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="80" />
+		<set name="operateType" val="A1" />
+		<set name="power" val="100" />
+		<set name="reuseDelay" val="3000" />
+		<set name="skillType" val="MDAM" />
+		<set name="target" val="TARGET_ONE" />
 	</skill>
 	<skill id="6853" levels="1" name="Sleep">
-		<!-- Inflicts sleep for 6 seconds. -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="abnormalLvl" val="1" />
+		<set name="abnormalType" val="sleep" />
+		<set name="castRange" val="600" />
+		<set name="effectRange" val="1100" />
+		<set name="hitTime" val="3000" />
+		<set name="isDebuff" val="true" />
+		<set name="isMagic" val="1" /> <!-- Magic Skill -->
+		<set name="lvlDepend" val="2" />
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="80" />
+		<set name="operateType" val="A2" />
+		<set name="power" val="80" /> <!-- Base Land Rate -->
+		<set name="reuseDelay" val="1000" />
+		<set name="saveVs" val="MEN" />
+		<set name="skillType" val="SLEEP" />
+		<set name="target" val="TARGET_ONE" />
+		<for>
+			<effect name="Sleep" abnormalTime="6" val="0" abnormalLvl="1" abnormalType="sleep" />
+		</for>
 	</skill>
 	<skill id="6854" levels="1" name="Hold">
-		<!-- Temporarily inflicted with hold and unable to move. -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="abnormalLvl" val="1" />
+		<set name="abnormalType" val="root_magically" />
+		<set name="castRange" val="600" />
+		<set name="effectRange" val="1100" />
+		<set name="hitTime" val="3000" />
+		<set name="isDebuff" val="true" />
+		<set name="isMagic" val="1" /> <!-- Magic Skill -->
+		<set name="lvlDepend" val="2" />
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="73" />
+		<set name="operateType" val="A2" />
+		<set name="power" val="80" /> <!-- Base Land Rate -->
+		<set name="reuseDelay" val="1000" />
+		<set name="saveVs" val="MEN" />
+		<set name="skillType" val="ROOT" />
+		<set name="target" val="TARGET_ONE" />
+		<for>
+			<effect name="Root" abnormalTime="8" val="0" abnormalLvl="1" abnormalType="root_magically" />
+		</for>
 	</skill>
 	<skill id="6855" levels="1" name="Magic Strike">
-		<!-- none -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="castRange" val="600" />
+		<set name="effectRange" val="1100" />
+		<set name="element" val="5" /> <!-- Dark -->
+		<set name="elementPower" val="20" />
+		<set name="hitTime" val="4000" />
+		<set name="isMagic" val="1" /> <!-- Magic Skill -->
+		<set name="magicLvl" val="85" />
+		<set name="operateType" val="A1" />
+		<set name="power" val="150" />
+		<set name="reuseDelay" val="1000" />
+		<set name="skillType" val="MDAM" />
+		<set name="target" val="TARGET_ONE" />
 	</skill>
 	<skill id="6856" levels="1" name="Heal">
 		<!-- none -->
@@ -463,10 +627,21 @@
 		<set name="operateType" val="P" />
 	</skill>
 	<skill id="6857" levels="1" name="Power Strike">
-		<!-- none -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="baseCritRate" val="20" />
+		<set name="castRange" val="80" />
+		<set name="effectRange" val="400" />
+		<set name="element" val="5" /> <!-- Dark -->
+		<set name="elementPower" val="20" />
+		<set name="hitTime" val="2500" />
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="80" />
+		<set name="operateType" val="A1" />
+		<set name="power" val="15000" />
+		<set name="reuseDelay" val="3000" />
+		<set name="skillType" val="PDAM" />
+		<set name="target" val="TARGET_ONE" />
 	</skill>
 	<skill id="6858" levels="1" name="Summon">
 		<!-- none -->
@@ -475,34 +650,103 @@
 		<set name="operateType" val="P" />
 	</skill>
 	<skill id="6859" levels="1" name="Power Strike">
-		<!-- none -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="baseCritRate" val="20" />
+		<set name="castRange" val="80" />
+		<set name="effectRange" val="400" />
+		<set name="element" val="5" /> <!-- Dark -->
+		<set name="elementPower" val="20" />
+		<set name="hitTime" val="2500" />
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="80" />
+		<set name="operateType" val="A1" />
+		<set name="power" val="15000" />
+		<set name="reuseDelay" val="3000" />
+		<set name="skillType" val="PDAM" />
+		<set name="target" val="TARGET_ONE" />
 	</skill>
 	<skill id="6860" levels="1" name="Power Strike">
-		<!-- none -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="baseCritRate" val="20" />
+		<set name="castRange" val="80" />
+		<set name="effectRange" val="400" />
+		<set name="element" val="5" /> <!-- Dark -->
+		<set name="elementPower" val="20" />
+		<set name="hitTime" val="2000" />
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="80" />
+		<set name="operateType" val="A1" />
+		<set name="power" val="15000" />
+		<set name="reuseDelay" val="3000" />
+		<set name="skillType" val="PDAM" />
+		<set name="target" val="TARGET_ONE" />
 	</skill>
 	<skill id="6861" levels="1" name="Enhance">
-		<!-- Increases P. Atk. by 20% and Atk. Spd. by 30%. -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="abnormalLvl" val="3" />
+		<set name="abnormalType" val="pa_up" />
+		<set name="hitTime" val="2000" />
+		<set name="isMagic" val="1" /> <!-- Magic Skill -->
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="75" />
+		<set name="operateType" val="A2" />
+		<set name="reuseDelay" val="30000" />
+		<set name="skillRadius" val="600" />
+		<set name="skillType" val="BUFF" />
+		<set name="target" val="TARGET_CLAN" />
+		<for>
+			<effect name="Buff" abnormalTime="15" val="0" abnormalLvl="3" abnormalType="pa_up">
+				<mul order="0x30" stat="pAtk" val="1.2" />
+				<mul order="0x30" stat="pAtkSpd" val="1.3" />
+			</effect>
+		</for>
 	</skill>
 	<skill id="6862" levels="1" name="Poison">
-		<!-- "For 6 seconds, inflicts poison and decreases 100 HP every second." -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="abnormalLvl" val="1" />
+		<set name="abnormalType" val="poison" />
+		<set name="castRange" val="100" />
+		<set name="effectRange" val="400" />
+		<set name="hitTime" val="2500" />
+		<set name="isDebuff" val="true" />
+		<set name="lvlDepend" val="1" />
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="80" />
+		<set name="operateType" val="A2" />
+		<set name="power" val="80" /> <!-- Base Land Rate -->
+		<set name="reuseDelay" val="3000" />
+		<set name="skillType" val="POISON" />
+		<set name="target" val="TARGET_ONE" />
+		<set name="trait" val="POISON" />
+		<for>
+			<effect count="6" name="DamOverTime" abnormalTime="1" val="100" abnormalLvl="1" abnormalType="poison" abnormalVisualEffect="poison" />
+		</for>
 	</skill>
 	<skill id="6863" levels="1" name="Poison">
-		<!-- "For 10 seconds, inflicts poison and decreases 120 HP every second." -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="abnormalLvl" val="1" />
+		<set name="abnormalType" val="poison" />
+		<set name="castRange" val="150" />
+		<set name="effectRange" val="650" />
+		<set name="hitTime" val="3000" />
+		<set name="isDebuff" val="true" />
+		<set name="lvlDepend" val="1" />
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="80" />
+		<set name="operateType" val="A2" />
+		<set name="power" val="80" /> <!-- Base Land Rate -->
+		<set name="reuseDelay" val="3000" />
+		<set name="skillType" val="POISON" />
+		<set name="target" val="TARGET_ONE" />
+		<set name="trait" val="POISON" />
+		<for>
+			<effect count="10" name="DamOverTime" abnormalTime="1" val="120" abnormalLvl="1" abnormalType="poison" abnormalVisualEffect="poison" />
+		</for>
 	</skill>
 	<skill id="6864" levels="1" name="Summon">
 		<!-- none -->
@@ -511,22 +755,59 @@
 		<set name="operateType" val="P" />
 	</skill>
 	<skill id="6865" levels="1" name="Poison">
-		<!-- "For 8 seconds, inflicts bleed and decreases 100 HP every second." -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="abnormalLvl" val="1" />
+		<set name="abnormalType" val="poison" />
+		<set name="castRange" val="100" />
+		<set name="effectRange" val="400" />
+		<set name="hitTime" val="2500" />
+		<set name="isDebuff" val="true" />
+		<set name="lvlDepend" val="1" />
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="80" />
+		<set name="operateType" val="A2" />
+		<set name="power" val="80" /> <!-- Base Land Rate -->
+		<set name="reuseDelay" val="3000" />
+		<set name="skillType" val="POISON" />
+		<set name="target" val="TARGET_ONE" />
+		<set name="trait" val="POISON" />
+		<for>
+			<effect count="8" name="DamOverTime" abnormalTime="1" val="100" abnormalLvl="1" abnormalType="poison" abnormalVisualEffect="poison" />
+		</for>
 	</skill>
 	<skill id="6866" levels="1" name="Vampiric Claw">
-		<!-- none -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="absorbPart" val="1.0" />
+		<set name="castRange" val="800" />
+		<set name="effectRange" val="1300" />
+		<set name="element" val="5" /> <!-- Dark -->
+		<set name="elementPower" val="20" />
+		<set name="hitTime" val="3000" />
+		<set name="isMagic" val="1" /> <!-- Magic Skill -->
+		<set name="magicLvl" val="85" />
+		<set name="operateType" val="A1" />
+		<set name="power" val="200" />
+		<set name="reuseDelay" val="3000" />
+		<set name="skillType" val="DRAIN" />
+		<set name="target" val="TARGET_ONE" />
 	</skill>
 	<skill id="6867" levels="1" name="Magic Strike">
-		<!-- none -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="castRange" val="900" />
+		<set name="effectRange" val="1400" />
+		<set name="element" val="5" /> <!-- Dark -->
+		<set name="elementPower" val="20" />
+		<set name="hitTime" val="3000" />
+		<set name="isMagic" val="1" /> <!-- Magic Skill -->
+		<set name="magicLvl" val="85" />
+		<set name="operateType" val="A1" />
+		<set name="power" val="150" />
+		<set name="reuseDelay" val="3000" />
+		<set name="skillType" val="MDAM" />
+		<set name="target" val="TARGET_ONE" />
 	</skill>
 	<skill id="6868" levels="1" name="Summon">
 		<!-- none -->
@@ -535,88 +816,269 @@
 		<set name="operateType" val="P" />
 	</skill>
 	<skill id="6869" levels="1" name="Detonate">
-		<!-- none -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="castRange" val="900" />
+		<set name="effectRange" val="1400" />
+		<set name="element" val="5" /> <!-- Dark -->
+		<set name="elementPower" val="20" />
+		<set name="hitTime" val="3000" />
+		<set name="isMagic" val="1" /> <!-- Magic Skill -->
+		<set name="isSuicideAttack" val="true" />
+		<set name="magicLvl" val="85" />
+		<set name="operateType" val="A1" />
+		<set name="power" val="300" />
+		<set name="skillType" val="MDAM" />
+		<set name="target" val="TARGET_ONE" />
 	</skill>
 	<skill id="6870" levels="1" name="Vampiric Claw">
-		<!-- none -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="absorbPart" val="1.0" />
+		<set name="castRange" val="800" />
+		<set name="effectRange" val="1300" />
+		<set name="element" val="5" /> <!-- Dark -->
+		<set name="elementPower" val="20" />
+		<set name="hitTime" val="2000" />
+		<set name="isMagic" val="1" /> <!-- Magic Skill -->
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="123" />
+		<set name="operateType" val="A1" />
+		<set name="power" val="100" />
+		<set name="reuseDelay" val="3000" />
+		<set name="skillType" val="DRAIN" />
+		<set name="target" val="TARGET_ONE" />
 	</skill>
 	<skill id="6871" levels="1" name="Range Magic Attack">
-		<!-- none -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="castRange" val="800" />
+		<set name="effectRange" val="1400" />
+		<set name="element" val="5" /> <!-- Dark -->
+		<set name="elementPower" val="20" />
+		<set name="hitTime" val="2500" />
+		<set name="isMagic" val="1" /> <!-- Magic Skill -->
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="122" />
+		<set name="operateType" val="A1" />
+		<set name="power" val="100" />
+		<set name="reuseDelay" val="3000" />
+		<set name="skillRadius" val="150" />
+		<set name="skillType" val="MDAM" />
+		<set name="target" val="TARGET_AREA" />
 	</skill>
 	<skill id="6872" levels="1" name="Self-destruction">
-		<!-- none -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="element" val="5" /> <!-- Dark -->
+		<set name="elementPower" val="20" />
+		<set name="hitTime" val="5000" />
+		<set name="isSuicideAttack" val="true" />
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="80" />
+		<set name="operateType" val="A1" />
+		<set name="power" val="300" />
+		<set name="skillRadius" val="200" />
+		<set name="skillType" val="MDAM" />
+		<set name="target" val="TARGET_AURA" />
 	</skill>
 	<skill id="6873" levels="2" name="Hex">
-		<!-- P. Def. is decreased by 33%. -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<table name="#pDef"> 0.77 0.67 </table>
+		<table name="#abnormalLvl"> 3 4 </table>
+		<table name="#abnormalLvls"> 3 4 </table>
+		<set name="abnormalLvl" val="#abnormalLvls" />
+		<set name="abnormalType" val="pd_down" />
+		<set name="castRange" val="150" />
+		<set name="effectRange" val="650" />
+		<set name="hitTime" val="1500" />
+		<set name="isDebuff" val="true" />
+		<set name="lvlDepend" val="2" />
+		<set name="magicLvl" val="85" />
+		<set name="operateType" val="A1" />
+		<set name="power" val="80" /> <!-- Base Land Rate -->
+		<set name="reuseDelay" val="2000" />
+		<set name="saveVs" val="MEN" />
+		<set name="skillType" val="DEBUFF" />
+		<set name="target" val="TARGET_ONE" />
+		<for>
+			<effect name="Debuff" abnormalTime="30" val="0" abnormalLvl="#abnormalLvl" abnormalType="pd_down">
+				<mul order="0x30" stat="pDef" val="#pDef" />
+			</effect>
+		</for>
 	</skill>
 	<skill id="6874" levels="1" name="Range Magic Attack">
-		<!-- none -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="element" val="5" /> <!-- Dark -->
+		<set name="elementPower" val="20" />
+		<set name="hitTime" val="2500" />
+		<set name="isMagic" val="1" /> <!-- Magic Skill -->
+		<set name="magicLvl" val="85" />
+		<set name="operateType" val="A1" />
+		<set name="power" val="150" />
+		<set name="reuseDelay" val="3000" />
+		<set name="skillRadius" val="300" />
+		<set name="skillType" val="MDAM" />
+		<set name="target" val="TARGET_AURA" />
 	</skill>
 	<skill id="6875" levels="2" name="Poison">
-		<!-- "For 8 seconds, inflicts bleed and decreases 140 HP every second." -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<table name="#dmg"> 120 140 </table>
+		<set name="abnormalLvl" val="1" />
+		<set name="abnormalType" val="poison" />
+		<set name="castRange" val="300" />
+		<set name="effectRange" val="600" />
+		<set name="hitTime" val="2500" />
+		<set name="isDebuff" val="true" />
+		<set name="isMagic" val="1" /> <!-- Magic Skill -->
+		<set name="magicLvl" val="85" />
+		<set name="operateType" val="A2" />
+		<set name="power" val="80" /> <!-- Base Land Rate -->
+		<set name="reuseDelay" val="3000" />
+		<set name="skillType" val="POISON" />
+		<set name="target" val="TARGET_ONE" />
+		<for>
+			<effect count="8" name="DamOverTime" abnormalTime="1" val="#dmg" abnormalLvl="1" abnormalType="poison" abnormalVisualEffect="poison" />
+		</for>
 	</skill>
 	<skill id="6876" levels="1" name="Power Strike">
-		<!-- none -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="baseCritRate" val="20" />
+		<set name="castRange" val="80" />
+		<set name="effectRange" val="400" />
+		<set name="element" val="5" /> <!-- Dark -->
+		<set name="elementPower" val="20" />
+		<set name="hitTime" val="2000" />
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="80" />
+		<set name="operateType" val="A1" />
+		<set name="power" val="15000" />
+		<set name="reuseDelay" val="3000" />
+		<set name="skillType" val="PDAM" />
+		<set name="target" val="TARGET_ONE" />
 	</skill>
 	<skill id="6877" levels="1" name="Power Strike">
-		<!-- none -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="baseCritRate" val="20" />
+		<set name="castRange" val="80" />
+		<set name="effectRange" val="400" />
+		<set name="element" val="5" /> <!-- Dark -->
+		<set name="elementPower" val="20" />
+		<set name="hitTime" val="2000" />
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="80" />
+		<set name="operateType" val="A1" />
+		<set name="power" val="15000" />
+		<set name="reuseDelay" val="3000" />
+		<set name="skillType" val="PDAM" />
+		<set name="target" val="TARGET_ONE" />
 	</skill>
 	<skill id="6878" levels="1" name="Paralysis">
-		<!-- Temporarily inflicted with paralysis and cannot move. -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="abnormalLvl" val="1" />
+		<set name="abnormalType" val="paralyze" />
+		<set name="castRange" val="80" />
+		<set name="effectRange" val="400" />
+		<set name="hitTime" val="6000" />
+		<set name="isDebuff" val="true" />
+		<set name="isMagic" val="1" /> <!-- Magic Skill -->
+		<set name="lvlDepend" val="1" />
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="78" />
+		<set name="operateType" val="A2" />
+		<set name="power" val="40" /> <!-- Base Land Rate -->
+		<set name="reuseDelay" val="5000" />
+		<set name="saveVs" val="MEN" />
+		<set name="skillType" val="PARALYZE" />
+		<set name="target" val="TARGET_ONE" />
+		<set name="trait" val="PARALYZE" />
+		<for>
+			<effect name="Paralyze" abnormalTime="10" val="0" abnormalLvl="1" abnormalType="paralyze" />
+		</for>
 	</skill>
 	<skill id="6879" levels="1" name="Vampiric Claw">
-		<!-- none -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="absorbPart" val="1.0" />
+		<set name="castRange" val="300" />
+		<set name="effectRange" val="600" />
+		<set name="element" val="5" /> <!-- Dark -->
+		<set name="elementPower" val="20" />
+		<set name="hitTime" val="3000" />
+		<set name="isMagic" val="1" /> <!-- Magic Skill -->
+		<set name="magicLvl" val="85" />
+		<set name="operateType" val="A1" />
+		<set name="power" val="100" />
+		<set name="reuseDelay" val="3000" />
+		<set name="skillType" val="DRAIN" />
+		<set name="target" val="TARGET_ONE" />
 	</skill>
 	<skill id="6880" levels="1" name="Silence">
-		<!-- Magic skills are blocked. -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="abnormalLvl" val="1" />
+		<set name="abnormalType" val="silence" />
+		<set name="castRange" val="300" />
+		<set name="effectRange" val="600" />
+		<set name="hitTime" val="3000" />
+		<set name="isDebuff" val="true" />
+		<set name="isMagic" val="1" /> <!-- Magic Skill -->
+		<set name="lvlDepend" val="2" />
+		<set name="magicLvl" val="85" />
+		<set name="operateType" val="A2" />
+		<set name="power" val="80" /> <!-- Base Land Rate -->
+		<set name="reuseDelay" val="4000" />
+		<set name="saveVs" val="MEN" />
+		<set name="skillType" val="MUTE" />
+		<set name="target" val="TARGET_ONE" />
+		<set name="trait" val="DERANGEMENT" />
+		<for>
+			<effect name="Mute" abnormalTime="60" val="0" abnormalLvl="1" abnormalType="silence" />
+		</for>
 	</skill>
 	<skill id="6881" levels="1" name="Critical Strike">
-		<!-- none -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="baseCritRate" val="20" />
+		<set name="castRange" val="40" />
+		<set name="effectRange" val="400" />
+		<set name="element" val="5" /> <!-- Dark -->
+		<set name="elementPower" val="20" />
+		<set name="hitTime" val="2500" />
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="89" />
+		<set name="operateType" val="A1" />
+		<set name="power" val="15000" />
+		<set name="reuseDelay" val="3000" />
+		<set name="skillType" val="PDAM" />
+		<set name="target" val="TARGET_ONE" />
 	</skill>
 	<skill id="6882" levels="1" name="Petrify">
-		<!-- "Inflicted with petrification, the body is rigid like stone temporarily." -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="abnormalLvl" val="1" />
+		<set name="abnormalType" val="turn_stone" />
+		<set name="castRange" val="40" />
+		<set name="effectRange" val="400" />
+		<set name="hitTime" val="2500" />
+		<set name="isDebuff" val="true" />
+		<set name="lvlDepend" val="1" />
+		<set name="magicLvl" val="85" />
+		<set name="operateType" val="A2" />
+		<set name="power" val="40" /> <!-- Base Land Rate -->
+		<set name="reuseDelay" val="5000" />
+		<set name="saveVs" val="MEN" />
+		<set name="skillType" val="PARALYZE" />
+		<set name="target" val="TARGET_ONE" />
+		<for>
+			<effect name="Petrification" abnormalTime="10" val="0" abnormalLvl="1" abnormalType="turn_stone" />
+		</for>
 	</skill>
 	<skill id="6883" levels="1" name="Energy Abundance Effect">
 		<!-- "For 5 minutes, energy is filled to stage 4. Returns to before as time goes on." -->
@@ -660,28 +1122,62 @@
 		</for>
 	</skill>
 	<skill id="6886" levels="1" name="Complete Recovery">
-		<!-- none -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="hitTime" val="2500" />
+		<set name="magicLvl" val="85" />
+		<set name="operateType" val="A1" />
+		<set name="power" val="100" />
+		<set name="reuseDelay" val="900000" />
+		<set name="target" val="TARGET_SELF" />
+		<for>
+			<effect name="HealPercent" noicon="1" val="100" />
+		</for>
 	</skill>
 	<skill id="6887" levels="1" name="Fatal Strike">
-		<!-- none -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="baseCritRate" val="20" />
+		<set name="castRange" val="100" />
+		<set name="effectRange" val="400" />
+		<set name="hitTime" val="3000" />
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="80" />
+		<set name="operateType" val="A1" />
+		<set name="power" val="15000" />
+		<set name="reuseDelay" val="3000" />
+		<set name="skillType" val="PDAM" />
+		<set name="target" val="TARGET_ONE" />
 	</skill>
 	<skill id="6888" levels="1" name="Fatal Shot">
-		<!-- none -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="baseCritRate" val="20" />
+		<set name="castRange" val="2000" />
+		<set name="effectRange" val="2200" />
+		<set name="hitTime" val="1000" />
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="80" />
+		<set name="operateType" val="A1" />
+		<set name="power" val="15000" />
+		<set name="reuseDelay" val="3000" />
+		<set name="skillType" val="PDAM" />
+		<set name="target" val="TARGET_ONE" />
 	</skill>
 	<skill id="6889" levels="1" name="Range Attack">
-		<!-- none -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="baseCritRate" val="20" />
+		<set name="castRange" val="40" />
+		<set name="effectRange" val="400" />
+		<set name="hitTime" val="1000" />
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="80" />
+		<set name="operateType" val="A1" />
+		<set name="power" val="15000" />
+		<set name="reuseDelay" val="3000" />
+		<set name="skillType" val="PDAM" />
+		<set name="target" val="TARGET_ONE" />
 	</skill>
 	<skill id="6890" levels="1" name="Bleed">
 		<!-- "For 10 seconds, inflicts bleed and decreases 100 HP every second." -->
@@ -690,40 +1186,94 @@
 		<set name="operateType" val="P" />
 	</skill>
 	<skill id="6891" levels="1" name="Power Attack">
-		<!-- none -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="baseCritRate" val="20" />
+		<set name="castRange" val="200" />
+		<set name="effectRange" val="400" />
+		<set name="hitTime" val="2000" />
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="80" />
+		<set name="operateType" val="A1" />
+		<set name="power" val="15000" />
+		<set name="reuseDelay" val="3000" />
+		<set name="skillType" val="PDAM" />
+		<set name="target" val="TARGET_ONE" />
 	</skill>
 	<skill id="6892" levels="1" name="Power Shot">
-		<!-- none -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="baseCritRate" val="20" />
+		<set name="castRange" val="2000" />
+		<set name="effectRange" val="2200" />
+		<set name="hitTime" val="1000" />
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="80" />
+		<set name="operateType" val="A1" />
+		<set name="power" val="15000" />
+		<set name="reuseDelay" val="3000" />
+		<set name="skillType" val="PDAM" />
+		<set name="target" val="TARGET_ONE" />
 	</skill>
 	<skill id="6893" levels="1" name="Power Attack">
-		<!-- none -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="baseCritRate" val="20" />
+		<set name="castRange" val="200" />
+		<set name="effectRange" val="400" />
+		<set name="hitTime" val="2000" />
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="80" />
+		<set name="operateType" val="A1" />
+		<set name="power" val="15000" />
+		<set name="reuseDelay" val="3000" />
+		<set name="skillType" val="PDAM" />
+		<set name="target" val="TARGET_ONE" />
 	</skill>
 	<skill id="6894" levels="1" name="Power Shot">
-		<!-- none -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="baseCritRate" val="20" />
+		<set name="castRange" val="2000" />
+		<set name="effectRange" val="2200" />
+		<set name="hitTime" val="1000" />
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="80" />
+		<set name="operateType" val="A1" />
+		<set name="power" val="15000" />
+		<set name="reuseDelay" val="3000" />
+		<set name="skillType" val="PDAM" />
+		<set name="target" val="TARGET_ONE" />
 	</skill>
 	<skill id="6895" levels="1" name="Power Attack">
-		<!-- none -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="baseCritRate" val="20" />
+		<set name="castRange" val="200" />
+		<set name="effectRange" val="400" />
+		<set name="hitTime" val="2000" />
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="80" />
+		<set name="operateType" val="A1" />
+		<set name="power" val="15000" />
+		<set name="reuseDelay" val="3000" />
+		<set name="skillType" val="PDAM" />
+		<set name="target" val="TARGET_ONE" />
 	</skill>
 	<skill id="6896" levels="1" name="Power Shot">
-		<!-- none -->
-		<set name="target" val="TARGET_NONE" />
-		<set name="skillType" val="NOTDONE" />
-		<set name="operateType" val="P" />
+		<!-- High Five Skill -->
+		<!-- FIXME: value unconfirmed -->
+		<set name="baseCritRate" val="20" />
+		<set name="castRange" val="2000" />
+		<set name="effectRange" val="2200" />
+		<set name="hitTime" val="1000" />
+		<set name="magicLvl" val="85" />
+		<set name="mpConsume" val="80" />
+		<set name="operateType" val="A1" />
+		<set name="power" val="15000" />
+		<set name="reuseDelay" val="3000" />
+		<set name="skillType" val="PDAM" />
+		<set name="target" val="TARGET_ONE" />
 	</skill>
 	<skill id="6897" levels="12" name="Shock">
 		<!-- Temporarily in shock and unable to move. -->
diff --git a/L2J_DataPack_BETA/dist/sql/game/droplist.sql b/L2J_DataPack_BETA/dist/sql/game/droplist.sql
index c646bd44f8..250f1171b8 100644
--- a/L2J_DataPack_BETA/dist/sql/game/droplist.sql
+++ b/L2J_DataPack_BETA/dist/sql/game/droplist.sql
@@ -40055,6 +40055,1064 @@ INSERT INTO `droplist` VALUES
 (22812, 4040, 1, 1, 2, 7942.512175), -- Mold Lubricant
 (22812, 4042, 1, 1, 2, 6618.736602), -- Enria
 (22812, 4043, 1, 1, 2, 13237.473204), -- Asofe
+-- Drakos
+(22815, 4039, 1, 1, -1, 171240), -- Mold Glue
+(22815, 9628, 1, 1, -1, 40292), -- Leonard
+(22815, 10403, 1, 1, -1, 2195), -- Icarus Hand Piece
+(22815, 15778, 1, 1, -1, 1526), -- Recipe - Sealed Moirai Breastplate (60%)
+(22815, 10218, 1, 1, -1, 7), -- Icarus Heavy Arms
+(22815, 57, 2710, 6322, 0, 700000), -- Adena
+(22815, 9442, 1, 1, 1, 1), -- Dynasty Sword
+(22815, 9443, 1, 1, 1, 1), -- Dynasty Blade
+(22815, 9444, 1, 1, 1, 1), -- Dynasty Phantom
+(22815, 9445, 1, 1, 1, 1), -- Dynasty Bow
+(22815, 9446, 1, 1, 1, 1), -- Dynasty Knife
+(22815, 9447, 1, 1, 1, 1), -- Dynasty Halberd
+(22815, 9448, 1, 1, 1, 1), -- Dynasty Cudgel
+(22815, 9449, 1, 1, 1, 1), -- Dynasty Mace
+(22815, 9450, 1, 1, 1, 1), -- Dynasty Bagh-Nakh
+(22815, 10252, 1, 1, 1, 1), -- Dynasty Staff
+(22815, 10253, 1, 1, 1, 1), -- Dynasty Crusher
+(22815, 9550, 1, 1, 2, 6749), -- Dark Stone
+(22815, 9573, 1, 1, 2, 5858), -- Life Stone - Level 80
+(22815, 6622, 1, 1, 2, 3374), -- Giant's Codex
+(22815, 9574, 1, 1, 2, 1465), -- Mid-Grade Life Stone - Level 80
+(22815, 9575, 1, 1, 2, 146), -- High-Grade Life Stone - Level 80
+-- Exploding Orc Ghost
+(22818, 4040, 1, 1, -1, 61669), -- Mold Lubricant
+(22818, 9630, 1, 1, -1, 16229), -- Orichalcum
+(22818, 15781, 1, 1, -1, 1465), -- Recipe - Sealed Moirai Gaiter (60%)
+(22818, 10402, 1, 1, -1, 1318), -- Icarus Hammer Piece
+(22818, 10219, 1, 1, -1, 4), -- Icarus Trident
+(22818, 57, 1624, 3794, 0, 700000), -- Adena
+(22818, 15703, 1, 1, 1, 15), -- Sealed Moirai Gauntlet
+(22818, 15704, 1, 1, 1, 15), -- Sealed Moirai Leather Gloves
+(22818, 15705, 1, 1, 1, 15), -- Sealed Moirai Gloves
+(22818, 15695, 1, 1, 1, 15), -- Sealed Moirai Leather Helmet
+(22818, 1879, 1, 1, 2, 42193), -- Cokes
+(22818, 1885, 1, 1, 2, 21097), -- High-Grade Suede
+(22818, 9628, 1, 1, 2, 1986), -- Leonard
+(22818, 9573, 1, 1, 2, 1758), -- Life Stone - Level 80
+(22818, 9630, 1, 1, 2, 1332), -- Orichalcum
+(22818, 9629, 1, 1, 2, 1101), -- Adamantine
+(22818, 9550, 1, 1, 2, 2025), -- Dark Stone
+(22818, 6622, 1, 1, 2, 1013), -- Giant's Codex
+(22818, 9574, 1, 1, 2, 440), -- Mid-Grade Life Stone - Level 80
+(22818, 9575, 1, 1, 2, 44), -- High-Grade Life Stone - Level 80
+-- Wrathful Orc Ghost
+(22819, 10403, 1, 1, -1, 2196), -- Icarus Hand Piece
+(22819, 15778, 1, 1, -1, 1526), -- Recipe - Sealed Moirai Breastplate (60%)
+(22819, 10218, 1, 1, -1, 7), -- Icarus Heavy Arms
+(22819, 57, 1624, 3794, 0, 700000), -- Adena
+(22819, 15706, 1, 1, 1, 15), -- Sealed Moirai Boots
+(22819, 15707, 1, 1, 1, 15), -- Sealed Moirai Leather Boots
+(22819, 15708, 1, 1, 1, 15), -- Sealed Moirai Shoes
+(22819, 15768, 1, 1, 1, 12), -- Sealed Moirai Necklace
+(22819, 1895, 1, 1, 2, 80368), -- Metallic Fiber
+(22819, 4040, 1, 1, 2, 5626), -- Mold Lubricant
+(22819, 9550, 1, 1, 2, 2250), -- Dark Stone
+(22819, 9628, 1, 1, 2, 2206), -- Leonard
+(22819, 9573, 1, 1, 2, 1953), -- Life Stone - Level 80
+(22819, 9630, 1, 1, 2, 1480), -- Orichalcum
+(22819, 6622, 1, 1, 2, 1125), -- Giant's Codex
+(22819, 9574, 1, 1, 2, 488), -- Mid-Grade Life Stone - Level 80
+(22819, 9575, 1, 1, 2, 49), -- High-Grade Life Stone - Level 80
+-- Mesmer Drake
+(22820, 4041, 1, 1, -1, 35561), -- Mold Hardener
+(22820, 9629, 1, 1, -1, 17780), -- Adamantine
+(22820, 10404, 1, 1, -1, 1748), -- Icarus Hall Piece
+(22820, 15780, 1, 1, -1, 1619), -- Recipe - Sealed Moirai Tunic (60%)
+(22820, 57, 1724, 4029, 0, 700000), -- Adena
+(22820, 15709, 1, 1, 1, 15), -- Sealed Moirai Sigil
+(22820, 15710, 1, 1, 1, 15), -- Sealed Moirai Shield
+(22820, 13893, 1, 1, 1, 5), -- Sealed Holy Spirit's Cloak
+(22820, 10215, 1, 1, 1, 1), -- Icarus Sawsword
+(22820, 1879, 1, 1, 2, 44767), -- Cokes
+(22820, 1885, 1, 1, 2, 22384), -- High-Grade Suede
+(22820, 9550, 1, 1, 2, 2149), -- Dark Stone
+(22820, 9628, 1, 1, 2, 2107), -- Leonard
+(22820, 9573, 1, 1, 2, 1865), -- Life Stone - Level 80
+(22820, 9630, 1, 1, 2, 1414), -- Orichalcum
+(22820, 9629, 1, 1, 2, 1168), -- Adamantine
+(22820, 6622, 1, 1, 2, 1074), -- Giant's Codex
+(22820, 9574, 1, 1, 2, 466), -- Mid-Grade Life Stone - Level 80
+(22820, 9575, 1, 1, 2, 47), -- High-Grade Life Stone - Level 80
+-- Immortal Necromancer
+(22821, 57, 1724, 4029, 0, 700000), -- Adena
+(22821, 15703, 1, 1, 1, 16), -- Sealed Moirai Gauntlet
+(22821, 15704, 1, 1, 1, 16), -- Sealed Moirai Leather Gloves
+(22821, 15705, 1, 1, 1, 16), -- Sealed Moirai Gloves
+(22821, 15695, 1, 1, 1, 11), -- Sealed Moirai Leather Helmet
+(22821, 1879, 1, 1, 2, 44767), -- Cokes
+(22821, 1885, 1, 1, 2, 22384), -- High-Grade Suede
+(22821, 9550, 1, 1, 2, 2149), -- Dark Stone
+(22821, 9628, 1, 1, 2, 2107), -- Leonard
+(22821, 9573, 1, 1, 2, 1865), -- Life Stone - Level 80
+(22821, 9630, 1, 1, 2, 1414), -- Orichalcum
+(22821, 9629, 1, 1, 2, 1168), -- Adamantine
+(22821, 6622, 1, 1, 2, 1074), -- Giant's Codex
+(22821, 9574, 1, 1, 2, 466), -- Mid-Grade Life Stone - Level 80
+(22821, 9575, 1, 1, 2, 47), -- High-Grade Life Stone - Level 80
+-- Drakos Warrior
+(22822, 4042, 1, 1, -1, 420375), -- Enria
+(22822, 9628, 1, 1, -1, 197823), -- Leonard
+(22822, 10397, 1, 1, -1, 10813), -- Icarus Sawsword Piece
+(22822, 10401, 1, 1, -1, 10779), -- Icarus Trident Piece
+(22822, 15780, 1, 1, -1, 9987), -- Recipe - Sealed Moirai Tunic (60%)
+(22822, 10373, 1, 1, -1, 1626), -- Recipe - Icarus Sawsword (60%)
+(22822, 15697, 1, 1, -1, 150), -- Sealed Moirai Breastplate
+(22822, 57, 18619, 43478, 0, 700000), -- Adena
+(22822, 15697, 1, 1, 1, 86), -- Sealed Moirai Breastplate
+(22822, 10221, 1, 1, 1, 19), -- Icarus Hand
+(22822, 1879, 1, 3, 2, 201329), -- Cokes
+(22822, 1885, 1, 1, 2, 201329), -- High-Grade Suede
+(22822, 9546, 1, 1, 2, 19328), -- Fire Stone
+(22822, 9628, 1, 1, 2, 18948), -- Leonard
+(22822, 10483, 1, 1, 2, 16778), -- Life Stone - Level 82
+(22822, 9630, 1, 1, 2, 12716), -- Orichalcum
+(22822, 9629, 1, 1, 2, 10504), -- Adamantine
+(22822, 6622, 1, 1, 2, 9664), -- Giant's Codex
+(22822, 10484, 1, 1, 2, 4194), -- Mid-Grade Life Stone - Level 82
+(22822, 17248, 1, 1, 2, 1421), -- Large Dragon Bone
+(22822, 9552, 1, 1, 2, 483), -- Fire Crystal
+(22822, 10485, 1, 1, 2, 420), -- High-Grade Life Stone - Level 82
+-- Drakos Assassin
+(22823, 4043, 1, 1, -1, 457741), -- Asofe
+(22823, 9630, 1, 1, -1, 72275), -- Orichalcum
+(22823, 15806, 1, 1, -1, 11770), -- Recipe - Sealed Vesper Shoes (60%)
+(22823, 15805, 1, 1, -1, 11770), -- Recipe - Sealed Vesper Leather Boots (60%)
+(22823, 15804, 1, 1, -1, 11770), -- Recipe - Sealed Vesper Boots (60%)
+(22823, 10402, 1, 1, -1, 5868), -- Icarus Hammer Piece
+(22823, 959, 1, 1, -1, 549), -- Scroll: Enchant Weapon (S-Grade)
+(22823, 10220, 1, 1, -1, 18), -- Icarus Hammer
+(22823, 10223, 1, 1, -1, 18), -- Icarus Spitter
+(22823, 57, 13033, 30434, 0, 700000), -- Adena
+(22823, 15706, 1, 1, 1, 161), -- Sealed Moirai Boots
+(22823, 15699, 1, 1, 1, 54), -- Sealed Moirai Tunic
+(22823, 10223, 1, 1, 1, 9), -- Icarus Spitter
+(22823, 1894, 1, 1, 2, 71207), -- Crafted Leather
+(22823, 4044, 1, 1, 2, 67646), -- Thons
+(22823, 4039, 1, 1, 2, 67646), -- Mold Glue
+(22823, 4041, 1, 1, 2, 17647), -- Mold Hardener
+(22823, 9546, 1, 1, 2, 16235), -- Fire Stone
+(22823, 10483, 1, 1, 2, 14093), -- Life Stone - Level 82
+(22823, 6622, 1, 1, 2, 8118), -- Giant's Codex
+(22823, 10484, 1, 1, 2, 3523), -- Mid-Grade Life Stone - Level 82
+(22823, 17248, 1, 1, 2, 1194), -- Large Dragon Bone
+(22823, 10485, 1, 1, 2, 352), -- High-Grade Life Stone - Level 82
+-- Drakos Guardian
+(22824, 4044, 1, 3, -1, 509098), -- Thons
+(22824, 9629, 1, 1, -1, 132808), -- Adamantine
+(22824, 15794, 1, 1, -1, 17455), -- Recipe - Sealed Vesper Circlet (60%)
+(22824, 15800, 1, 1, -1, 13963), -- Recipe - Sealed Vesper Stockings (60%)
+(22824, 10403, 1, 1, -1, 13054), -- Icarus Hand Piece
+(22824, 15778, 1, 1, -1, 9071), -- Recipe - Sealed Moirai Breastplate (60%)
+(22824, 15797, 1, 1, -1, 8727), -- Recipe - Sealed Vesper Tunic (60%)
+(22824, 10216, 1, 1, -1, 39), -- Icarus Disperser
+(22824, 57, 25780, 60169, 0, 700000), -- Adena
+(22824, 15697, 1, 1, 1, 119), -- Sealed Moirai Breastplate
+(22824, 10216, 1, 1, 1, 26), -- Icarus Disperser
+(22824, 1888, 1, 1, 2, 75996), -- Synthetic Cokes
+(22824, 1879, 3, 9, 2, 69663), -- Cokes
+(22824, 1885, 2, 6, 2, 52247), -- High-Grade Suede
+(22824, 1890, 1, 1, 2, 38288), -- Mithril Alloy
+(22824, 5550, 1, 1, 2, 33438), -- Durable Metal Plate
+(22824, 9546, 1, 1, 2, 20063), -- Fire Stone
+(22824, 9628, 1, 1, 2, 19670), -- Leonard
+(22824, 10483, 1, 1, 2, 17416), -- Life Stone - Level 82
+(22824, 9630, 1, 1, 2, 13199), -- Orichalcum
+(22824, 9629, 1, 1, 2, 10904), -- Adamantine
+(22824, 6622, 1, 1, 2, 10032), -- Giant's Codex
+(22824, 17248, 1, 1, 2, 1475), -- Large Dragon Bone
+(22824, 10484, 1, 1, 2, 4354), -- Mid-Grade Life Stone - Level 82
+(22824, 9552, 1, 1, 2, 502), -- Fire Crystal
+(22824, 10485, 1, 1, 2, 436), -- High-Grade Life Stone - Level 82
+(22824, 9627, 1, 1, 2, 167), -- Giant's Codex - Mastery
+-- Giant Noxious Scorpion
+(22825, 4039, 1, 3, -1, 555068), -- Mold Glue
+(22825, 9628, 1, 1, -1, 261209), -- Leonard
+(22825, 15801, 1, 1, -1, 28546), -- Recipe - Sealed Vesper Gauntlet (60%)
+(22825, 15802, 1, 1, -1, 28546), -- Recipe - Sealed Vesper Leather Gloves (60%)
+(22825, 15803, 1, 1, -1, 28546), -- Recipe - Sealed Vesper Gloves (60%)
+(22825, 10404, 1, 1, -1, 14233), -- Icarus Hall Piece
+(22825, 15780, 1, 1, -1, 13187), -- Recipe - Sealed Moirai Tunic (60%)
+(22825, 57, 24584, 57408, 0, 700000), -- Adena
+(22825, 15710, 1, 1, 1, 433), -- Sealed Moirai Shield
+(22825, 10215, 1, 1, 1, 25), -- Icarus Sawsword
+(22825, 1895, 3, 9, 2, 165717), -- Metallic Fiber
+(22825, 4043, 1, 1, 2, 116002), -- Asofe
+(22825, 4040, 1, 1, 2, 69601), -- Mold Lubricant
+(22825, 4042, 1, 1, 2, 58001), -- Enria
+(22825, 9549, 1, 1, 2, 27840), -- Wind Stone
+(22825, 10483, 1, 1, 2, 24167), -- Life Stone - Level 82
+(22825, 6622, 1, 1, 2, 13920), -- Giant's Codex
+(22825, 10484, 1, 1, 2, 6042), -- Mid-Grade Life Stone - Level 82
+(22825, 17248, 1, 1, 2, 2047), -- Large Dragon Bone
+(22825, 10485, 1, 1, 2, 604), -- High-Grade Life Stone - Level 82
+(22825, 959, 1, 1, 2, 139), -- Scroll: Enchant Weapon (S-Grade)
+-- Noxious Scorpion
+(22826, 4040, 1, 1, -1, 367895), -- Mold Lubricant
+(22826, 9630, 1, 1, -1, 96814), -- Orichalcum
+(22826, 10398, 1, 1, -1, 7886), -- Icarus Disperser Piece
+(22826, 10397, 1, 1, -1, 7886), -- Icarus Sawsword Piece
+(22826, 10399, 1, 1, -1, 7886), -- Icarus Spirit Piece
+(22826, 10402, 1, 1, -1, 7861), -- Icarus Hammer Piece
+(22826, 15778, 1, 1, -1, 5463), -- Recipe - Sealed Moirai Breastplate (60%)
+(22826, 57, 13579, 31708, 0, 700000), -- Adena
+(22826, 15703, 1, 1, 1, 251), -- Sealed Moirai Gauntlet
+(22826, 10216, 1, 1, 1, 14), -- Icarus Disperser
+(22826, 1895, 1, 3, 2, 274590), -- Metallic Fiber
+(22826, 4040, 1, 1, 2, 38433), -- Mold Lubricant
+(22826, 9549, 1, 1, 2, 15377), -- Wind Stone
+(22826, 9628, 1, 1, 2, 15076), -- Leonard
+(22826, 10483, 1, 1, 2, 13348), -- Life Stone - Level 82
+(22826, 9630, 1, 1, 2, 10116), -- Orichalcum
+(22826, 6622, 1, 1, 2, 7689), -- Giant's Codex
+(22826, 10484, 1, 1, 2, 3337), -- Mid-Grade Life Stone - Level 82
+(22826, 17248, 1, 1, 2, 1131), -- Large Dragon Bone
+(22826, 10485, 1, 1, 2, 334), -- High-Grade Life Stone - Level 82
+(22826, 959, 1, 1, 2, 77), -- Scroll: Enchant Weapon (S-Grade)
+-- Batwing Drake
+(22827, 9629, 1, 1, -1, 177959), -- Adamantine
+(22827, 10399, 1, 1, -1, 17548), -- Icarus Spirit Piece
+(22827, 10402, 1, 1, -1, 17492), -- Icarus Hammer Piece
+(22827, 15778, 1, 1, -1, 12155), -- Recipe - Sealed Moirai Breastplate (60%)
+(22827, 10216, 1, 1, -1, 53), -- Icarus Disperser
+(22827, 10215, 1, 1, -1, 53), -- Icarus Sawsword
+(22827, 57, 25908, 60468, 0, 700000), -- Adena
+(22827, 15709, 1, 1, 1, 456), -- Sealed Moirai Sigil
+(22827, 10217, 1, 1, 1, 26), -- Icarus Spirit
+(22827, 1879, 3, 9, 2, 101833), -- Cokes
+(22827, 1885, 2, 6, 2, 76374), -- High-Grade Suede
+(22827, 9548, 1, 1, 2, 29328), -- Earth Stone
+(22827, 9628, 1, 1, 2, 28753), -- Leonard
+(22827, 10483, 1, 1, 2, 25458), -- Life Stone - Level 82
+(22827, 9630, 1, 1, 2, 19295), -- Orichalcum
+(22827, 9629, 1, 1, 2, 15939), -- Adamantine
+(22827, 6622, 1, 1, 2, 14664), -- Giant's Codex
+(22827, 10484, 1, 1, 2, 6365), -- Mid-Grade Life Stone - Level 82
+(22827, 17248, 1, 1, 2, 2156), -- Large Dragon Bone
+(22827, 10485, 1, 1, 2, 636), -- High-Grade Life Stone - Level 82
+-- Parasitic Leech
+(22828, 4042, 1, 1, -1, 307717), -- Enria
+(22828, 9628, 1, 1, -1, 144808), -- Leonard
+(22828, 15781, 1, 1, -1, 8773), -- Recipe - Sealed Moirai Gaiter (60%)
+(22828, 10397, 1, 1, -1, 7916), -- Icarus Sawsword Piece
+(22828, 10401, 1, 1, -1, 7890), -- Icarus Trident Piece
+(22828, 13893, 1, 1, -1, 129), -- Sealed Holy Spirit's Cloak
+(22828, 10218, 1, 1, -1, 24), -- Icarus Heavy Arms
+(22828, 57, 13629, 31826, 0, 700000), -- Adena
+(22828, 15704, 1, 1, 1, 252), -- Sealed Moirai Leather Gloves
+(22828, 10218, 1, 1, 1, 14), -- Icarus Heavy Arms
+(22828, 1879, 1, 3, 2, 147374), -- Cokes
+(22828, 1885, 1, 1, 2, 147374), -- High-Grade Suede
+(22828, 9547, 1, 1, 2, 14148), -- Water Stone
+(22828, 9628, 1, 1, 2, 13870), -- Leonard
+(22828, 10483, 1, 1, 2, 12281), -- Life Stone - Level 82
+(22828, 9630, 1, 1, 2, 9308), -- Orichalcum
+(22828, 9629, 1, 1, 2, 7689), -- Adamantine
+(22828, 6622, 1, 1, 2, 7074), -- Giant's Codex
+(22828, 10484, 1, 1, 2, 3070), -- Mid-Grade Life Stone - Level 82
+(22828, 17248, 1, 1, 2, 1040), -- Large Dragon Bone
+(22828, 9553, 1, 1, 2, 354), -- Water Crystal
+(22828, 10485, 1, 1, 2, 307), -- High-Grade Life Stone - Level 82
+-- Emerald Drake
+(22829, 9630, 1, 1, -1, 257365), -- Orichalcum
+(22829, 10403, 1, 1, -1, 20897), -- Icarus Hand Piece
+(22829, 15780, 1, 1, -1, 19362), -- Recipe - Sealed Moirai Tunic (60%)
+(22829, 959, 1, 1, -1, 1956), -- Scroll: Enchant Weapon (S-Grade)
+(22829, 10217, 1, 1, -1, 63), -- Icarus Spirit
+(22829, 57, 25783, 60208, 0, 700000), -- Adena
+(22829, 15697, 1, 1, 1, 119), -- Sealed Moirai Breastplate
+(22829, 10219, 1, 1, 1, 26), -- Icarus Trident
+(22829, 1895, 3, 9, 2, 173798), -- Metallic Fiber
+(22829, 4040, 1, 1, 2, 72995), -- Mold Lubricant
+(22829, 9547, 1, 1, 2, 29198), -- Water Stone
+(22829, 9628, 1, 1, 2, 28625), -- Leonard
+(22829, 10483, 1, 1, 2, 25345), -- Life Stone - Level 82
+(22829, 9630, 1, 1, 2, 19209), -- Orichalcum
+(22829, 6622, 1, 1, 2, 14599), -- Giant's Codex
+(22829, 10484, 1, 1, 2, 6337), -- Mid-Grade Life Stone - Level 82
+(22829, 17248, 1, 1, 2, 2147), -- Large Dragon Bone
+(22829, 9555, 1, 1, 2, 730), -- Wind Crystal
+(22829, 10485, 1, 1, 2, 634), -- High-Grade Life Stone - Level 82
+-- Gem Dragon
+(22830, 4044, 1, 1, -1, 677865), -- Thons
+(22830, 9629, 1, 1, -1, 88417), -- Adamantine
+(22830, 15781, 1, 1, -1, 9663), -- Recipe - Sealed Moirai Gaiter (60%)
+(22830, 10397, 1, 1, -1, 8719), -- Icarus Sawsword Piece
+(22830, 10404, 1, 1, -1, 8691), -- Icarus Hall Piece
+(22830, 10215, 1, 1, -1, 26), -- Icarus Sawsword
+(22830, 57, 12867, 30047, 0, 700000), -- Adena
+(22830, 15703, 1, 1, 1, 238), -- Sealed Moirai Gauntlet
+(22830, 10220, 1, 1, 1, 13), -- Icarus Hammer
+(22830, 1879, 1, 1, 2, 222616), -- Cokes
+(22830, 1885, 1, 1, 2, 111308), -- High-Grade Suede
+(22830, 1888, 1, 1, 2, 40476), -- Synthetic Cokes
+(22830, 1890, 1, 1, 2, 20392), -- Mithril Alloy
+(22830, 5550, 1, 1, 2, 17809), -- Durable Metal Plate
+(22830, 9546, 1, 1, 2, 10686), -- Fire Stone
+(22830, 9628, 1, 1, 2, 10476), -- Leonard
+(22830, 10483, 1, 1, 2, 9275), -- Life Stone - Level 82
+(22830, 9630, 1, 1, 2, 7030), -- Orichalcum
+(22830, 9629, 1, 1, 2, 5807), -- Adamantine
+(22830, 6622, 1, 1, 2, 5343), -- Giant's Codex
+(22830, 10484, 1, 1, 2, 2319), -- Mid-Grade Life Stone - Level 82
+(22830, 17248, 1, 1, 2, 786), -- Large Dragon Bone
+(22830, 10485, 1, 1, 2, 232), -- High-Grade Life Stone - Level 82
+(22830, 959, 1, 1, 2, 53), -- Scroll: Enchant Weapon (S-Grade)
+-- Dragon Tracker of the Valley
+(22831, 14052, 1, 3, -1, 642917), -- Noble Enhancement Stone
+(22831, 10398, 1, 1, -1, 22051), -- Icarus Disperser Piece
+(22831, 10397, 1, 1, -1, 22051), -- Icarus Sawsword Piece
+(22831, 13893, 1, 1, -1, 359), -- Sealed Holy Spirit's Cloak
+(22831, 10218, 1, 1, -1, 66), -- Icarus Heavy Arms
+(22831, 57, 27119, 63328, 0, 700000), -- Adena
+(22831, 15699, 1, 1, 1, 112), -- Sealed Moirai Tunic
+(22831, 13893, 1, 1, 1, 98), -- Sealed Holy Spirit's Cloak
+(22831, 10221, 1, 1, 1, 18), -- Icarus Hand
+(22831, 1895, 3, 9, 2, 154680), -- Metallic Fiber
+(22831, 4040, 1, 1, 2, 64966), -- Mold Lubricant
+(22831, 9546, 1, 1, 2, 25986), -- Fire Stone
+(22831, 9628, 1, 1, 2, 25477), -- Leonard
+(22831, 10483, 1, 1, 2, 22558), -- Life Stone - Level 82
+(22831, 9630, 1, 1, 2, 17096), -- Orichalcum
+(22831, 6622, 1, 1, 2, 12993), -- Giant's Codex
+(22831, 10484, 1, 1, 2, 5639), -- Mid-Grade Life Stone - Level 82
+(22831, 17248, 1, 1, 2, 1911), -- Large Dragon Bone
+(22831, 9554, 1, 1, 2, 650), -- Earth Crystal
+(22831, 10384, 1, 1, 2, 609), -- Recipe - Icarus Shooter (60%)
+(22831, 10485, 1, 1, 2, 564), -- High-Grade Life Stone - Level 82
+(22831, 10383, 1, 1, 2, 209), -- Recipe - Icarus Wingblade (60%)
+-- Dragon Scout of the Valley
+(22832, 14052, 1, 3, -1, 631109), -- Noble Enhancement Stone
+(22832, 10399, 1, 1, -1, 21646), -- Icarus Spirit Piece
+(22832, 10401, 1, 1, -1, 21576), -- Icarus Trident Piece
+(22832, 15778, 1, 1, -1, 14994), -- Recipe - Sealed Moirai Breastplate (60%)
+(22832, 10217, 1, 1, -1, 65), -- Icarus Spirit
+(22832, 57, 26621, 62165, 0, 700000), -- Adena
+(22832, 15709, 1, 1, 1, 312), -- Sealed Moirai Sigil
+(22832, 15694, 1, 1, 1, 219), -- Sealed Moirai Helmet
+(22832, 10222, 1, 1, 1, 18), -- Icarus Hall
+(22832, 1885, 1, 1, 2, 215897), -- High-Grade Suede
+(22832, 1879, 3, 9, 2, 71965), -- Cokes
+(22832, 9546, 1, 1, 2, 20726), -- Fire Stone
+(22832, 9628, 1, 1, 2, 20320), -- Leonard
+(22832, 10483, 1, 1, 2, 17991), -- Life Stone - Level 82
+(22832, 9630, 1, 1, 2, 13636), -- Orichalcum
+(22832, 9629, 1, 1, 2, 11264), -- Adamantine
+(22832, 6622, 1, 1, 2, 10364), -- Giant's Codex
+(22832, 10484, 1, 1, 2, 4498), -- Mid-Grade Life Stone - Level 82
+(22832, 17248, 1, 1, 2, 1524), -- Large Dragon Bone
+(22832, 9554, 1, 1, 2, 518), -- Earth Crystal
+(22832, 10485, 1, 1, 2, 450), -- High-Grade Life Stone - Level 82
+(22832, 10374, 1, 1, 2, 167), -- Recipe - Icarus Disperser (60%)
+(22832, 10378, 1, 1, 2, 167), -- Recipe - Icarus Hammer (60%)
+(22832, 10373, 1, 1, 2, 167), -- Recipe - Icarus Sawsword (60%)
+(22832, 10377, 1, 1, 2, 167), -- Recipe - Icarus Trident (60%)
+-- Sand Drake Tracker
+(22833, 14052, 1, 1, -1, 839493), -- Noble Enhancement Stone
+(22833, 15792, 1, 1, -1, 19188), -- Recipe - Sealed Vesper Helmet (60%)
+(22833, 10402, 1, 1, -1, 14350), -- Icarus Hammer Piece
+(22833, 15780, 1, 1, -1, 13296), -- Recipe - Sealed Moirai Tunic (60%)
+(22833, 15798, 1, 1, -1, 11513), -- Recipe - Sealed Vesper Gaiter (60%)
+(22833, 15795, 1, 1, -1, 7195), -- Recipe - Sealed Vesper Breastplate (60%)
+(22833, 13893, 1, 1, -1, 234), -- Sealed Holy Spirit's Cloak
+(22833, 10219, 1, 1, -1, 43), -- Icarus Trident
+(22833, 57, 28329, 66153, 0, 700000), -- Adena
+(22833, 15706, 1, 1, 1, 262), -- Sealed Moirai Boots
+(22833, 15699, 1, 1, 1, 87), -- Sealed Moirai Tunic
+(22833, 13893, 1, 1, 1, 77), -- Sealed Holy Spirit's Cloak
+(22833, 10223, 1, 1, 1, 14), -- Icarus Spitter
+(22833, 1885, 1, 1, 2, 229747), -- High-Grade Suede
+(22833, 1879, 3, 9, 2, 76582), -- Cokes
+(22833, 9549, 1, 1, 2, 22056), -- Wind Stone
+(22833, 9628, 1, 1, 2, 21623), -- Leonard
+(22833, 10483, 1, 1, 2, 19146), -- Life Stone - Level 82
+(22833, 9630, 1, 1, 2, 14510), -- Orichalcum
+(22833, 9629, 1, 1, 2, 11987), -- Adamantine
+(22833, 6622, 1, 1, 2, 11029), -- Giant's Codex
+(22833, 10484, 1, 1, 2, 4786), -- Mid-Grade Life Stone - Level 82
+(22833, 17248, 1, 1, 2, 1622), -- Large Dragon Bone
+(22833, 9555, 1, 1, 2, 551), -- Wind Crystal
+(22833, 10485, 1, 1, 2, 479), -- High-Grade Life Stone - Level 82
+(22833, 10380, 1, 1, 2, 178), -- Recipe - Icarus Hall (60%)
+(22833, 10379, 1, 1, 2, 178), -- Recipe - Icarus Hand (60%)
+(22833, 10376, 1, 1, 2, 178), -- Recipe - Icarus Heavy Arms (60%)
+(22833, 10375, 1, 1, 2, 178), -- Recipe - Icarus Spirit (60%)
+-- Dust Dragon Tracker
+(22834, 14052, 1, 3, -1, 575321), -- Noble Enhancement Stone
+(22834, 15808, 1, 1, -1, 37572), -- Recipe - Sealed Vesper Shield (60%)
+(22834, 15807, 1, 1, -1, 37572), -- Recipe - Sealed Vesper Sigil (60%)
+(22834, 15781, 1, 1, -1, 21869), -- Recipe - Sealed Moirai Gaiter (60%)
+(22834, 10403, 1, 1, -1, 19669), -- Icarus Hand Piece
+(22834, 10217, 1, 1, -1, 59), -- Icarus Spirit
+(22834, 57, 29134, 67996, 0, 700000), -- Adena
+(22834, 15710, 1, 1, 1, 342), -- Sealed Moirai Shield
+(22834, 10218, 1, 1, 1, 19), -- Icarus Heavy Arms
+(22834, 10217, 1, 1, 1, 19), -- Icarus Spirit
+(22834, 1895, 3, 9, 2, 143954), -- Metallic Fiber
+(22834, 4040, 1, 1, 2, 60461), -- Mold Lubricant
+(22834, 9549, 1, 1, 2, 24184), -- Wind Stone
+(22834, 9628, 1, 1, 2, 23710), -- Leonard
+(22834, 10483, 1, 1, 2, 20993), -- Life Stone - Level 82
+(22834, 9630, 1, 1, 2, 15911), -- Orichalcum
+(22834, 6622, 1, 1, 2, 12092), -- Giant's Codex
+(22834, 10484, 1, 1, 2, 5248), -- Mid-Grade Life Stone - Level 82
+(22834, 17248, 1, 1, 2, 1778), -- Large Dragon Bone
+(22834, 9555, 1, 1, 2, 605), -- Wind Crystal
+(22834, 10485, 1, 1, 2, 525), -- High-Grade Life Stone - Level 82
+(22834, 10384, 1, 1, 2, 195), -- Recipe - Icarus Shooter (60%)
+(22834, 10381, 1, 1, 2, 195), -- Recipe - Icarus Spitter (60%)
+(22834, 10382, 1, 1, 2, 195), -- Recipe - Icarus Stinger (60%)
+(22834, 10383, 1, 1, 2, 195), -- Recipe - Icarus Wingblade (60%)
+-- Magma Drake Mother
+(22835, 6578, 1, 1, 1, 4298), -- Blessed Scroll: Enchant Armor (S-Grade)
+(22835, 6578, 1, 1, 2, 4298), -- Blessed Scroll: Enchant Armor (S-Grade)
+(22835, 6577, 1, 1, 1, 645), -- Blessed Scroll: Enchant Weapon (S-Grade)
+(22835, 6577, 1, 1, 2, 645), -- Blessed Scroll: Enchant Weapon (S-Grade)
+-- Magma Drake Hatchling
+(22836, 6578, 1, 1, 1, 1611), -- Blessed Scroll: Enchant Armor (S-Grade)
+(22836, 6578, 1, 1, 2, 1611), -- Blessed Scroll: Enchant Armor (S-Grade)
+(22836, 6577, 1, 1, 1, 242), -- Blessed Scroll: Enchant Weapon (S-Grade)
+(22836, 6577, 1, 1, 2, 242), -- Blessed Scroll: Enchant Weapon (S-Grade)
+-- Gem Dragon Hatchling
+(22837, 6578, 1, 1, 1, 2149), -- Blessed Scroll: Enchant Armor (S-Grade)
+(22837, 6578, 1, 1, 2, 2149), -- Blessed Scroll: Enchant Armor (S-Grade)
+(22837, 6577, 1, 1, 1, 322), -- Blessed Scroll: Enchant Weapon (S-Grade)
+(22837, 6577, 1, 1, 2, 322), -- Blessed Scroll: Enchant Weapon (S-Grade)
+-- Maluk Leader
+(22838, 4039, 1, 3, -1, 652980), -- Mold Glue
+(22838, 9630, 1, 1, -1, 206204), -- Orichalcum
+(22838, 15634, 1, 1, -1, 23272), -- Vesper Cutter Piece
+(22838, 15636, 1, 1, -1, 23272), -- Vesper Buster Piece
+(22838, 15635, 1, 1, -1, 23231), -- Vesper Slasher Piece
+(22838, 15638, 1, 1, -1, 23073), -- Vesper Fighter Piece
+(22838, 57, 24809, 57874, 0, 700000), -- Adena
+(22838, 15669, 1, 1, 1, 17446), -- Sealed Vesper Verteidiger Piece
+(22838, 14113, 1, 1, 1, 132), -- Sealed Vesper Leather Gloves
+(22838, 14116, 1, 1, 1, 132), -- Sealed Vesper Gloves
+(22838, 14111, 1, 1, 1, 126), -- Sealed Vesper Shield
+(22838, 14105, 1, 1, 1, 33), -- Sealed Vesper Breastplate
+(22838, 13457, 1, 1, 1, 11), -- Vesper Cutter
+(22838, 1885, 1, 1, 2, 214443), -- High-Grade Suede
+(22838, 1879, 3, 9, 2, 71481), -- Cokes
+(22838, 9549, 1, 1, 2, 20587), -- Wind Stone
+(22838, 9628, 1, 1, 2, 20183), -- Leonard
+(22838, 9630, 1, 1, 2, 13544), -- Orichalcum
+(22838, 14166, 1, 1, 2, 12432), -- Life Stone - Level 84
+(22838, 9629, 1, 1, 2, 11189), -- Adamantine
+(22838, 14167, 1, 1, 2, 3104), -- Mid-Grade Life Stone - Level 84
+(22838, 9556, 1, 1, 2, 515), -- Dark Crystal
+(22838, 14168, 1, 1, 2, 310), -- High-Grade Life Stone - Level 84
+(22838, 9627, 1, 1, 2, 171), -- Giant's Codex - Mastery
+(22838, 6578, 1, 1, 2, 115), -- Blessed Scroll: Enchant Armor (S-Grade)
+(22838, 14169, 1, 1, 2, 62), -- Top-Grade Life Stone - Level 84
+(22838, 6577, 1, 1, 2, 17), -- Blessed Scroll: Enchant Weapon (S-Grade)
+-- Maluk Warlord
+(22839, 4040, 1, 1, -1, 757926), -- Mold Lubricant
+(22839, 9628, 1, 1, -1, 297226), -- Leonard
+(22839, 15669, 1, 1, -1, 256924), -- Sealed Vesper Verteidiger Piece
+(22839, 15640, 1, 1, -1, 22318), -- Vesper Avenger Piece
+(22839, 15642, 1, 1, -1, 22318), -- Vesper Caster Piece
+(22839, 15825, 1, 1, -1, 2644), -- Recipe - Vesper Thrower (60%)
+(22839, 57, 23997, 55980, 0, 700000), -- Adena
+(22839, 15669, 1, 1, 1, 13323), -- Sealed Vesper Verteidiger Piece
+(22839, 15691, 1, 1, 1, 13323), -- Sealed Vesper Sigil Piece
+(22839, 15660, 1, 1, 1, 9014), -- Sealed Vesper Helmet Piece
+(22839, 15661, 1, 1, 1, 9014), -- Sealed Vesper Leather Helmet Piece
+(22839, 15662, 1, 1, 1, 9014), -- Sealed Vesper Circlet Piece
+(22839, 14111, 1, 1, 1, 102), -- Sealed Vesper Shield
+(22839, 13887, 1, 1, 1, 102), -- Sealed Vesper Sigil
+(22839, 13143, 1, 1, 1, 71), -- Sealed Vesper Helmet
+(22839, 13144, 1, 1, 1, 71), -- Sealed Vesper Leather Helmet
+(22839, 13145, 1, 1, 1, 71), -- Sealed Vesper Circlet
+(22839, 13467, 1, 1, 1, 9), -- Vesper Thrower
+(22839, 1885, 1, 1, 2, 163755), -- High-Grade Suede
+(22839, 1888, 1, 1, 2, 59547), -- Synthetic Cokes
+(22839, 1879, 3, 9, 2, 54585), -- Cokes
+(22839, 1890, 1, 1, 2, 30001), -- Mithril Alloy
+(22839, 5550, 1, 1, 2, 26201), -- Durable Metal Plate
+(22839, 9549, 1, 1, 2, 15720), -- Wind Stone
+(22839, 9628, 1, 1, 2, 15412), -- Leonard
+(22839, 9630, 1, 1, 2, 10343), -- Orichalcum
+(22839, 14166, 1, 1, 2, 9493), -- Life Stone - Level 84
+(22839, 9629, 1, 1, 2, 8544), -- Adamantine
+(22839, 14167, 1, 1, 2, 2370), -- Mid-Grade Life Stone - Level 84
+(22839, 14168, 1, 1, 2, 237), -- High-Grade Life Stone - Level 84
+(22839, 9627, 1, 1, 2, 130), -- Giant's Codex - Mastery
+(22839, 959, 1, 1, 2, 79), -- Scroll: Enchant Weapon (S-Grade)
+-- Maluk Hunter
+(22840, 4041, 1, 1, -1, 101365), -- Mold Hardener
+(22840, 9628, 1, 1, -1, 91427), -- Leonard
+(22840, 15644, 1, 1, -1, 6953), -- Vesper Thrower Piece
+(22840, 15637, 1, 1, -1, 6924), -- Vesper Shaper Piece
+(22840, 15819, 1, 1, -1, 813), -- Recipe - Vesper Fighter (60%)
+(22840, 6578, 1, 1, -1, 518), -- Blessed Scroll: Enchant Armor (S-Grade)
+(22840, 13458, 1, 1, -1, 16), -- Vesper Slasher
+(22840, 57, 8612, 20089, 0, 700000), -- Adena
+(22840, 15668, 1, 1, 1, 6417), -- Sealed Vesper Boots Piece
+(22840, 15667, 1, 1, 1, 6417), -- Sealed Vesper Gauntlet Piece
+(22840, 15674, 1, 1, 1, 6417), -- Sealed Vesper Gloves Piece
+(22840, 15672, 1, 1, 1, 6417), -- Sealed Vesper Leather Boots Piece
+(22840, 15671, 1, 1, 1, 6417), -- Sealed Vesper Leather Gloves Piece
+(22840, 15675, 1, 1, 1, 6417), -- Sealed Vesper Shoes Piece
+(22840, 14110, 1, 1, 1, 38), -- Sealed Vesper Boots
+(22840, 14109, 1, 1, 1, 38), -- Sealed Vesper Gauntlet
+(22840, 14116, 1, 1, 1, 38), -- Sealed Vesper Gloves
+(22840, 14114, 1, 1, 1, 38), -- Sealed Vesper Leather Boots
+(22840, 14113, 1, 1, 1, 38), -- Sealed Vesper Leather Gloves
+(22840, 14117, 1, 1, 1, 38), -- Sealed Vesper Shoes
+(22840, 1895, 1, 1, 2, 239265), -- Metallic Fiber
+(22840, 4040, 1, 1, 2, 16749), -- Mold Lubricant
+(22840, 9549, 1, 1, 2, 6700), -- Wind Stone
+(22840, 9628, 1, 1, 2, 6568), -- Leonard
+(22840, 9630, 1, 1, 2, 4407), -- Orichalcum
+(22840, 14166, 1, 1, 2, 4046); -- Life Stone - Level 84
+
+INSERT INTO `droplist` VALUES
+(22840, 14167, 1, 1, 2, 1010), -- Mid-Grade Life Stone - Level 84
+(22840, 14168, 1, 1, 2, 101), -- High-Grade Life Stone - Level 84
+(22840, 9627, 1, 1, 2, 56), -- Giant's Codex - Mastery
+(22840, 14169, 1, 1, 2, 20), -- Top-Grade Life Stone - Level 84
+-- Maluk Princess
+(22841, 4042, 1, 1, -1, 389273), -- Enria
+(22841, 9629, 1, 1, -1, 101550), -- Adamantine
+(22841, 15644, 1, 1, -1, 13932), -- Vesper Thrower Piece
+(22841, 15639, 1, 1, -1, 13915), -- Vesper Stormer Piece
+(22841, 15637, 1, 1, -1, 13874), -- Vesper Shaper Piece
+(22841, 13459, 1, 1, -1, 33), -- Vesper Buster
+(22841, 57, 14790, 34502, 0, 700000), -- Adena
+(22841, 15673, 1, 1, 1, 6010), -- Sealed Vesper Stockings Piece
+(22841, 15665, 1, 1, 1, 3899), -- Sealed Vesper Tunic Piece
+(22841, 14115, 1, 1, 1, 105), -- Sealed Vesper Stockings
+(22841, 14107, 1, 1, 1, 66), -- Sealed Vesper Tunic
+(22841, 1879, 1, 1, 2, 273943), -- Cokes
+(22841, 1885, 1, 1, 2, 136972), -- High-Grade Suede
+(22841, 9549, 1, 1, 2, 13149), -- Wind Stone
+(22841, 9628, 1, 1, 2, 12892), -- Leonard
+(22841, 9630, 1, 1, 2, 8651), -- Orichalcum
+(22841, 14166, 1, 1, 2, 7940), -- Life Stone - Level 84
+(22841, 9629, 1, 1, 2, 7147), -- Adamantine
+(22841, 14167, 1, 1, 2, 1983), -- Mid-Grade Life Stone - Level 84
+(22841, 14168, 1, 1, 2, 198), -- High-Grade Life Stone - Level 84
+(22841, 9627, 1, 1, 2, 109), -- Giant's Codex - Mastery
+(22841, 959, 1, 1, 2, 66), -- Scroll: Enchant Weapon (S-Grade)
+(22841, 14169, 1, 1, 2, 40), -- Top-Grade Life Stone - Level 84
+-- Maluk Banshee
+(22842, 4043, 1, 1, -1, 667326), -- Asofe
+(22842, 9629, 1, 1, -1, 87042), -- Adamantine
+(22842, 15642, 1, 1, -1, 11790), -- Vesper Caster Piece
+(22842, 15640, 1, 1, -1, 11790), -- Vesper Avenger Piece
+(22842, 959, 1, 1, -1, 801), -- Scroll: Enchant Weapon (S-Grade)
+(22842, 13459, 1, 1, -1, 28), -- Vesper Buster
+(22842, 13458, 1, 1, -1, 28), -- Vesper Slasher
+(22842, 57, 14790, 34502, 0, 700000), -- Adena
+(22842, 15670, 1, 1, 1, 6472), -- Sealed Vesper Leather Legging Piece
+(22842, 15664, 1, 1, 1, 4199), -- Sealed Vesper Leather Breastplate Piece
+(22842, 14112, 1, 1, 1, 105), -- Sealed Vesper Leather Leggings
+(22842, 14106, 1, 1, 1, 66), -- Sealed Vesper Leather Breastplate
+(22842, 1895, 1, 3, 2, 252871), -- Metallic Fiber
+(22842, 4040, 1, 1, 2, 35402), -- Mold Lubricant
+(22842, 9549, 1, 1, 2, 14161), -- Wind Stone
+(22842, 9628, 1, 1, 2, 13883), -- Leonard
+(22842, 9630, 1, 1, 2, 9316), -- Orichalcum
+(22842, 14166, 1, 1, 2, 8551), -- Life Stone - Level 84
+(22842, 14167, 1, 1, 2, 2135), -- Mid-Grade Life Stone - Level 84
+(22842, 9556, 1, 1, 2, 354), -- Dark Crystal
+(22842, 14168, 1, 1, 2, 213), -- High-Grade Life Stone - Level 84
+(22842, 9627, 1, 1, 2, 118), -- Giant's Codex - Mastery
+(22842, 14169, 1, 1, 2, 43), -- Top-Grade Life Stone - Level 84
+-- Maluk Sniper 
+(22843, 4044, 1, 1, -1, 444872), -- Thons
+(22843, 9630, 1, 1, -1, 70243), -- Orichalcum
+(22843, 15634, 1, 1, -1, 7928), -- Vesper Cutter Piece
+(22843, 15636, 1, 1, -1, 7928), -- Vesper Buster Piece
+(22843, 15635, 1, 1, -1, 7914), -- Vesper Slasher Piece
+(22843, 15638, 1, 1, -1, 786), -- Vesper Fighter Piece
+(22843, 57, 8451, 19715, 0, 700000), -- Adena
+(22843, 15666, 1, 1, 1, 2738), -- Sealed Vesper Gaiter Piece
+(22843, 15663, 1, 1, 1, 1700), -- Sealed Vesper Breastplate Piece
+(22843, 14160, 1, 1, 1, 77), -- Sealed Vesper Earring
+(22843, 14161, 1, 1, 1, 58), -- Sealed Vesper Necklace
+(22843, 14105, 1, 1, 1, 19), -- Sealed Vesper Breastplate
+(22843, 1895, 1, 1, 2, 268345), -- Metallic Fiber
+(22843, 4040, 1, 1, 2, 18784), -- Mold Lubricant
+(22843, 9549, 1, 1, 2, 7514), -- Wind Stone
+(22843, 9628, 1, 1, 2, 7366), -- Leonard
+(22843, 9630, 1, 1, 2, 4943), -- Orichalcum
+(22843, 14166, 1, 1, 2, 4537), -- Life Stone - Level 84
+(22843, 14167, 1, 1, 2, 1133), -- Mid-Grade Life Stone - Level 84
+(22843, 14168, 1, 1, 2, 113), -- High-Grade Life Stone - Level 84
+(22843, 9627, 1, 1, 2, 63), -- Giant's Codex - Mastery
+(22843, 6578, 1, 1, 2, 42), -- Blessed Scroll: Enchant Armor (S-Grade)
+(22843, 959, 1, 1, 2, 37), -- Scroll: Enchant Weapon (S-Grade)
+(22843, 6577, 1, 1, 2, 6), -- Blessed Scroll: Enchant Weapon (S-Grade)
+-- Dragon Knight
+(22844, 4039, 1, 3, -1, 690623), -- Mold Glue
+(22844, 9630, 1, 1, -1, 218092), -- Orichalcum
+(22844, 2134, 1, 1, -1, 82875), -- Gemstone S
+(22844, 6578, 1, 1, -1, 1842), -- Blessed Scroll: Enchant Armor (S-Grade)
+(22844, 6577, 1, 1, -1, 276), -- Blessed Scroll: Enchant Weapon (S-Grade)
+(22844, 13457, 1, 1, -1, 58), -- Vesper Cutter
+(22844, 57, 26239, 61210, 0, 700000), -- Adena
+(22844, 15637, 1, 1, 1, 1617), -- Vesper Shaper Piece
+(22844, 15635, 1, 1, 1, 1614), -- Vesper Slasher Piece
+(22844, 14162, 1, 1, 1, 268), -- Sealed Vesper Ring
+(22844, 13893, 1, 1, 1, 71), -- Sealed Holy Spirit's Cloak
+(22844, 13462, 1, 1, 1, 14), -- Vesper Stormer
+(22844, 13461, 1, 1, 1, 14), -- Vesper Fighter
+(22844, 1885, 1, 1, 2, 226806), -- High-Grade Suede
+(22844, 1879, 3, 9, 2, 75602), -- Cokes
+(22844, 9548, 1, 1, 2, 21774), -- Earth Stone
+(22844, 9628, 1, 1, 2, 21346), -- Leonard
+(22844, 9630, 1, 1, 2, 14325), -- Orichalcum
+(22844, 14166, 1, 1, 2, 13148), -- Life Stone - Level 84
+(22844, 9629, 1, 1, 2, 11833), -- Adamantine
+(22844, 14167, 1, 1, 2, 3283), -- Mid-Grade Life Stone - Level 84
+(22844, 9625, 1, 1, 2, 545), -- Giant's Codex - Oblivion
+(22844, 9554, 1, 1, 2, 544), -- Earth Crystal
+(22844, 14168, 1, 1, 2, 328), -- High-Grade Life Stone - Level 84
+(22844, 959, 1, 1, 2, 109), -- Scroll: Enchant Weapon (S-Grade)
+(22844, 14169, 1, 1, 2, 66), -- Top-Grade Life Stone - Level 84
+-- Dragon Knight
+(22845, 4040, 1, 1, -1, 730488), -- Mold Lubricant
+(22845, 9628, 1, 1, -1, 286466), -- Leonard
+(22845, 2134, 1, 1, -1, 73049), -- Gemstone S
+(22845, 15818, 1, 1, -1, 2548), -- Recipe - Vesper Shaper (60%)
+(22845, 959, 1, 1, -1, 1461), -- Scroll: Enchant Weapon (S-Grade)
+(22845, 13467, 1, 1, -1, 51), -- Vesper Thrower
+(22845, 13457, 1, 1, -1, 51), -- Vesper Cutter
+(22845, 57, 26983, 62945, 0, 700000), -- Adena
+(22845, 15638, 1, 1, 1, 1648), -- Vesper Fighter Piece
+(22845, 14111, 1, 1, 1, 229), -- Sealed Vesper Shield
+(22845, 13458, 1, 1, 1, 20), -- Vesper Slasher
+(22845, 13467, 1, 1, 1, 20), -- Vesper Thrower
+(22845, 1894, 1, 1, 2, 98204), -- Crafted Leather
+(22845, 4039, 1, 1, 2, 93294), -- Mold Glue
+(22845, 4044, 1, 1, 2, 93294), -- Thons
+(22845, 14052, 1, 1, 2, 69971), -- Noble Enhancement Stone
+(22845, 4041, 1, 1, 2, 24337), -- Mold Hardener
+(22845, 9548, 1, 1, 2, 22390), -- Earth Stone
+(22845, 14166, 1, 1, 2, 13521), -- Life Stone - Level 84
+(22845, 2134, 1, 1, 2, 5598), -- Gemstone S
+(22845, 14167, 1, 1, 2, 3376), -- Mid-Grade Life Stone - Level 84
+(22845, 9625, 1, 1, 2, 561), -- Giant's Codex - Oblivion
+(22845, 9554, 1, 1, 2, 560), -- Earth Crystal
+(22845, 14168, 1, 1, 2, 338), -- High-Grade Life Stone - Level 84
+(22845, 6578, 1, 1, 2, 124), -- Blessed Scroll: Enchant Armor (S-Grade)
+(22845, 6577, 1, 1, 2, 19), -- Blessed Scroll: Enchant Weapon (S-Grade)
+-- Elite Dragon Knight
+(22846, 14052, 1, 3, -1, 604730), -- Noble Enhancement Stone
+(22846, 9628, 1, 1, -1, 379439), -- Leonard
+(22846, 2134, 1, 1, -1, 96757), -- Gemstone S
+(22846, 9554, 1, 1, -1, 9876), -- Earth Crystal
+(22846, 15820, 1, 1, -1, 3375), -- Recipe - Vesper Stormer (60%)
+(22846, 959, 1, 1, -1, 1935), -- Scroll: Enchant Weapon (S-Grade)
+(22846, 13893, 1, 1, -1, 337), -- Sealed Holy Spirit's Cloak
+(22846, 57, 35741, 83374, 0, 700000), -- Adena
+(22846, 15639, 1, 1, 1, 2366), -- Vesper Stormer Piece
+(22846, 15640, 1, 1, 1, 2339), -- Vesper Avenger Piece
+(22846, 13893, 1, 1, 1, 129), -- Sealed Holy Spirit's Cloak
+(22846, 13463, 1, 1, 1, 26), -- Vesper Avenger
+(22846, 13460, 1, 1, 1, 26), -- Vesper Shaper
+(22846, 1879, 3, 9, 2, 110332), -- Cokes
+(22846, 1885, 2, 6, 2, 82749), -- High-Grade Suede
+(22846, 9548, 1, 1, 2, 31776), -- Earth Stone
+(22846, 9628, 1, 1, 2, 31153), -- Leonard
+(22846, 9630, 1, 1, 2, 20905), -- Orichalcum
+(22846, 14166, 1, 1, 2, 19188), -- Life Stone - Level 84
+(22846, 9629, 1, 1, 2, 17269), -- Adamantine
+(22846, 14167, 1, 1, 2, 4791), -- Mid-Grade Life Stone - Level 84
+(22846, 9554, 1, 1, 2, 794), -- Earth Crystal
+(22846, 9625, 1, 1, 2, 794), -- Giant's Codex - Oblivion
+(22846, 14168, 1, 1, 2, 479), -- High-Grade Life Stone - Level 84
+(22846, 14169, 1, 1, 2, 96), -- Top-Grade Life Stone - Level 84
+-- Dragon Knight Warrior 
+(22847, 4044, 1, 1, -1, 697851), -- Thons
+(22847, 14052, 1, 1, -1, 523388), -- Noble Enhancement Stone
+(22847, 9630, 1, 1, -1, 110187), -- Orichalcum
+(22847, 15634, 1, 1, -1, 12436), -- Vesper Cutter Piece
+(22847, 9554, 1, 1, -1, 4187), -- Earth Crystal
+(22847, 6578, 1, 1, -1, 930), -- Blessed Scroll: Enchant Armor (S-Grade)
+(22847, 6577, 1, 1, -1, 140), -- Blessed Scroll: Enchant Weapon (S-Grade)
+(22847, 13467, 1, 1, -1, 29), -- Vesper Thrower
+(22847, 57, 17676, 41234, 0, 700000), -- Adena
+(22847, 15669, 1, 1, 1, 12430), -- Sealed Vesper Verteidiger Piece
+(22847, 15634, 1, 1, 1, 1089), -- Vesper Cutter Piece
+(22847, 14111, 1, 1, 1, 225), -- Sealed Vesper Shield
+(22847, 13467, 1, 1, 1, 19), -- Vesper Thrower
+(22847, 1895, 1, 3, 2, 261919), -- Metallic Fiber
+(22847, 4040, 1, 1, 2, 36669), -- Mold Lubricant
+(22847, 9548, 1, 1, 2, 14667), -- Earth Stone
+(22847, 9628, 1, 1, 2, 14380), -- Leonard
+(22847, 9630, 1, 1, 2, 9650), -- Orichalcum
+(22847, 14166, 1, 1, 2, 8857), -- Life Stone - Level 84
+(22847, 14167, 1, 1, 2, 2212), -- Mid-Grade Life Stone - Level 84
+(22847, 9554, 1, 1, 2, 367), -- Earth Crystal
+(22847, 9625, 1, 1, 2, 367), -- Giant's Codex - Oblivion
+(22847, 14168, 1, 1, 2, 221), -- High-Grade Life Stone - Level 84
+(22847, 6578, 1, 1, 2, 82), -- Blessed Scroll: Enchant Armor (S-Grade)
+(22847, 14169, 1, 1, 2, 44), -- Top-Grade Life Stone - Level 84
+(22847, 6577, 1, 1, 2, 12), -- Blessed Scroll: Enchant Weapon (S-Grade)
+-- Drake Leader
+(22848, 9629, 1, 1, -1, 254558), -- Adamantine
+(22848, 2134, 1, 1, -1, 117097), -- Gemstone S
+(22848, 15642, 1, 1, -1, 34481), -- Vesper Caster Piece
+(22848, 13893, 1, 1, -1, 408), -- Sealed Holy Spirit's Cloak
+(22848, 13459, 1, 1, -1, 82), -- Vesper Buster
+(22848, 57, 30896, 72072, 0, 700000), -- Adena
+(22848, 15644, 1, 1, 1, 2048), -- Vesper Thrower Piece
+(22848, 15642, 1, 1, 1, 2022), -- Vesper Caster Piece
+(22848, 13893, 1, 1, 1, 168), -- Sealed Holy Spirit's Cloak
+(22848, 13459, 1, 1, 1, 33), -- Vesper Buster
+(22848, 1895, 3, 9, 2, 163501), -- Metallic Fiber
+(22848, 4040, 1, 1, 2, 68670), -- Mold Lubricant
+(22848, 9548, 1, 1, 2, 27468), -- Earth Stone
+(22848, 9628, 1, 1, 2, 26929), -- Leonard
+(22848, 9630, 1, 1, 2, 18071), -- Orichalcum
+(22848, 14166, 1, 1, 2, 16587), -- Life Stone - Level 84
+(22848, 14167, 1, 1, 2, 4142), -- Mid-Grade Life Stone - Level 84
+(22848, 9554, 1, 1, 2, 687), -- Earth Crystal
+(22848, 9625, 1, 1, 2, 687), -- Giant's Codex - Oblivion
+(22848, 14168, 1, 1, 2, 414), -- High-Grade Life Stone - Level 84
+(22848, 6578, 1, 1, 2, 152), -- Blessed Scroll: Enchant Armor (S-Grade)
+(22848, 6577, 1, 1, 2, 23), -- Blessed Scroll: Enchant Weapon (S-Grade)
+-- Drake Warrior
+(22849, 14052, 1, 1, -1, 600050), -- Noble Enhancement Stone
+(22849, 4042, 1, 1, -1, 400033), -- Enria
+(22849, 15669, 1, 1, -1, 162725), -- Sealed Vesper Verteidiger Piece
+(22849, 9629, 1, 1, -1, 104356), -- Adamantine
+(22849, 15817, 1, 1, -1, 1674), -- Recipe - Vesper Buster (60%)
+(22849, 959, 1, 1, -1, 960), -- Scroll: Enchant Weapon (S-Grade)
+(22849, 13457, 1, 1, -1, 33), -- Vesper Cutter
+(22849, 57, 17732, 41364, 0, 700000), -- Adena
+(22849, 15644, 1, 1, 1, 1266), -- Vesper Thrower Piece
+(22849, 15642, 1, 1, 1, 1250), -- Vesper Caster Piece
+(22849, 13465, 1, 1, 1, 13), -- Vesper Caster
+(22849, 13457, 1, 1, 1, 13), -- Vesper Cutter
+(22849, 13461, 1, 1, 1, 13), -- Vesper Fighter
+(22849, 1895, 1, 3, 2, 303170), -- Metallic Fiber
+(22849, 4040, 1, 1, 2, 42444), -- Mold Lubricant
+(22849, 9548, 1, 1, 2, 16978), -- Earth Stone
+(22849, 9628, 1, 1, 2, 16644), -- Leonard
+(22849, 9630, 1, 1, 2, 11169), -- Orichalcum
+(22849, 14166, 1, 1, 2, 10252), -- Life Stone - Level 84
+(22849, 14167, 1, 1, 2, 2560), -- Mid-Grade Life Stone - Level 84
+(22849, 9626, 1, 1, 2, 283), -- Giant's Codex - Discipline
+(22849, 14168, 1, 1, 2, 256), -- High-Grade Life Stone - Level 84
+(22849, 959, 1, 1, 2, 85), -- Scroll: Enchant Weapon (S-Grade)
+(22849, 14169, 1, 1, 2, 51), -- Top-Grade Life Stone - Level 84
+-- Drake Scout
+(22850, 4041, 1, 1, -1, 98412), -- Mold Hardener
+(22850, 9628, 1, 1, -1, 88764), -- Leonard
+(22850, 2134, 1, 1, -1, 22635), -- Gemstone S
+(22850, 9554, 1, 1, -1, 2263), -- Earth Crystal
+(22850, 6578, 1, 1, -1, 503), -- Blessed Scroll: Enchant Armor (S-Grade)
+(22850, 6577, 1, 1, -1, 75), -- Blessed Scroll: Enchant Weapon (S-Grade)
+(22850, 13459, 1, 1, -1, 16), -- Vesper Buster
+(22850, 57, 8361, 19504, 0, 700000), -- Adena
+(22850, 15638, 1, 1, 1, 511), -- Vesper Fighter Piece
+(22850, 13458, 1, 1, 1, 9), -- Vesper Slasher
+(22850, 13467, 1, 1, 1, 9), -- Vesper Thrower
+(22850, 1879, 1, 1, 2, 144538), -- Cokes
+(22850, 1885, 1, 1, 2, 72269), -- High-Grade Suede
+(22850, 14052, 1, 1, 2, 21681), -- Noble Enhancement Stone
+(22850, 9548, 1, 1, 2, 6938), -- Earth Stone
+(22850, 9628, 1, 1, 2, 6802), -- Leonard
+(22850, 9630, 1, 1, 2, 4564), -- Orichalcum
+(22850, 14166, 1, 1, 2, 4190), -- Life Stone - Level 84
+(22850, 9629, 1, 1, 2, 3770), -- Adamantine
+(22850, 2134, 1, 1, 2, 1735), -- Gemstone S
+(22850, 14167, 1, 1, 2, 1046), -- Mid-Grade Life Stone - Level 84
+(22850, 9554, 1, 1, 2, 173), -- Earth Crystal
+(22850, 9626, 1, 1, 2, 115), -- Giant's Codex - Discipline
+(22850, 14168, 1, 1, 2, 105), -- High-Grade Life Stone - Level 84
+(22850, 14169, 1, 1, 2, 21), -- Top-Grade Life Stone - Level 84
+-- Drake Mage
+(22851, 4042, 1, 1, -1, 575431), -- Enria
+(22851, 9629, 1, 1, -1, 150112), -- Adamantine
+(22851, 15815, 1, 1, -1, 2408), -- Recipe - Sealed Vesper Cutter (60%)
+(22851, 959, 1, 1, -1, 1381), -- Scroll: Enchant Weapon (S-Grade)
+(22851, 13458, 1, 1, -1, 48), -- Vesper Slasher
+(22851, 57, 18219, 42501, 0, 700000), -- Adena
+(22851, 15644, 1, 1, 1, 1409), -- Vesper Thrower Piece
+(22851, 15642, 1, 1, 1, 1391), -- Vesper Caster Piece
+(22851, 13465, 1, 1, 1, 13), -- Vesper Caster
+(22851, 13457, 1, 1, 1, 13), -- Vesper Cutter
+(22851, 13461, 1, 1, 1, 13), -- Vesper Fighter
+(22851, 1895, 1, 3, 2, 337457), -- Metallic Fiber
+(22851, 4040, 1, 1, 2, 47244), -- Mold Lubricant
+(22851, 9548, 1, 1, 2, 18897), -- Earth Stone
+(22851, 9628, 1, 1, 2, 18527), -- Leonard
+(22851, 9630, 1, 1, 2, 12433), -- Orichalcum
+(22851, 14166, 1, 1, 2, 11411), -- Life Stone - Level 84
+(22851, 14167, 1, 1, 2, 2849), -- Mid-Grade Life Stone - Level 84
+(22851, 9626, 1, 1, 2, 316), -- Giant's Codex - Discipline
+(22851, 14168, 1, 1, 2, 285), -- High-Grade Life Stone - Level 84
+(22851, 14169, 1, 1, 2, 57), -- Top-Grade Life Stone - Level 84
+-- Dragon Guard
+(22852, 9628, 1, 1, -1, 841937), -- Leonard
+(22852, 15669, 1, 1, -1, 727776), -- Sealed Vesper Verteidiger Piece
+(22852, 2134, 1, 1, -1, 214694), -- Gemstone S
+(22852, 13459, 1, 1, -1, 150), -- Vesper Buster
+(22852, 57, 45317, 105714, 0, 700000), -- Adena
+(22852, 15644, 1, 1, 1, 3235), -- Vesper Thrower Piece
+(22852, 15642, 1, 1, 1, 3194), -- Vesper Caster Piece
+(22852, 13893, 1, 1, 1, 123), -- Sealed Holy Spirit's Cloak
+(22852, 14108, 1, 1, 1, 121), -- Sealed Vesper Gaiters
+(22852, 13461, 1, 1, 1, 25), -- Vesper Fighter
+(22852, 13462, 1, 1, 1, 25), -- Vesper Stormer
+(22852, 1879, 3, 9, 2, 150656), -- Cokes
+(22852, 1885, 2, 6, 2, 112992), -- High-Grade Suede
+(22852, 9548, 1, 1, 2, 43389), -- Earth Stone
+(22852, 9628, 1, 1, 2, 42538), -- Leonard
+(22852, 9630, 1, 1, 2, 28546), -- Orichalcum
+(22852, 14166, 1, 1, 2, 26201), -- Life Stone - Level 84
+(22852, 9629, 1, 1, 2, 23581), -- Adamantine
+(22852, 14167, 1, 1, 2, 6542), -- Mid-Grade Life Stone - Level 84
+(22852, 9554, 1, 1, 2, 1085), -- Earth Crystal
+(22852, 9626, 1, 1, 2, 723), -- Giant's Codex - Discipline
+(22852, 14168, 1, 1, 2, 654), -- High-Grade Life Stone - Level 84
+-- Dragon Mage
+(22853, 4044, 1, 3, -1, 773710), -- Thons
+(22853, 9630, 1, 1, -1, 244330), -- Orichalcum
+(22853, 15816, 1, 1, -1, 3238), -- Recipe - Sealed Vesper Slasher (60%)
+(22853, 6578, 1, 1, -1, 2063), -- Blessed Scroll: Enchant Armor (S-Grade)
+(22853, 13460, 1, 1, -1, 65), -- Vesper Shaper
+(22853, 57, 24497, 57145, 0, 700000), -- Adena
+(22853, 15636, 1, 1, 1, 1741), -- Vesper Buster Piece
+(22853, 15637, 1, 1, 1, 1741), -- Vesper Shaper Piece
+(22853, 14111, 1, 1, 1, 208), -- Sealed Vesper Shield
+(22853, 13463, 1, 1, 1, 18), -- Vesper Avenger
+(22853, 13460, 1, 1, 1, 18), -- Vesper Shaper
+(22853, 1895, 3, 9, 2, 139611), -- Metallic Fiber
+(22853, 4040, 1, 1, 2, 58637), -- Mold Lubricant
+(22853, 9548, 1, 1, 2, 23455), -- Earth Stone
+(22853, 9628, 1, 1, 2, 22995), -- Leonard
+(22853, 9630, 1, 1, 2, 15431), -- Orichalcum
+(22853, 14166, 1, 1, 2, 14164), -- Life Stone - Level 84
+(22853, 14167, 1, 1, 2, 3537), -- Mid-Grade Life Stone - Level 84
+(22853, 9626, 1, 1, 2, 391), -- Giant's Codex - Discipline
+(22853, 14168, 1, 1, 2, 354), -- High-Grade Life Stone - Level 84
+(22853, 959, 1, 1, 2, 117), -- Scroll: Enchant Weapon (S-Grade)
+(22853, 14169, 1, 1, 2, 71), -- Top-Grade Life Stone - Level 84
+-- Bloody Karik
+(22854, 9630, 1, 3, -1, 574512), -- Orichalcum
+(22854, 14166, 1, 3, -1, 527329), -- Life Stone - Level 84
+(22854, 14167, 1, 1, -1, 263347), -- Mid-Grade Life Stone - Level 84
+(22854, 14168, 1, 1, -1, 26335), -- High-Grade Life Stone - Level 84
+(22854, 14169, 1, 1, -1, 5266), -- Top-Grade Life Stone - Level 84
+(22854, 57, 115052, 268713, 0, 700000), -- Adena
+(22854, 15764, 1, 1, 1, 648), -- Sealed Vorpal Earring
+(22854, 15755, 1, 1, 1, 428), -- Sealed Vorpal Boots
+(22854, 15743, 1, 1, 1, 285), -- Sealed Vorpal Helmet
+(22854, 15745, 1, 1, 1, 285), -- Sealed Vorpal Circlet
+(22854, 15751, 1, 1, 1, 228), -- Sealed Vorpal Stockings
+(22854, 15750, 1, 1, 1, 228), -- Sealed Vorpal Leather Legging
+(22854, 9630, 1, 1, 2, 117922), -- Orichalcum
+(22854, 14166, 1, 1, 2, 108237), -- Life Stone - Level 84
+(22854, 4040, 2, 6, 2, 89620), -- Mold Lubricant
+(22854, 1895, 72, 216, 2, 44454), -- Metallic Fiber
+(22854, 14167, 1, 1, 2, 27027), -- Mid-Grade Life Stone - Level 84
+(22854, 9549, 3, 9, 2, 25606), -- Wind Stone
+(22854, 9628, 4, 12, 2, 21966), -- Leonard
+(22854, 14168, 1, 1, 2, 2703), -- High-Grade Life Stone - Level 84
+-- Bloody Berserker
+(22855, 14166, 1, 1, -1, 599284), -- Life Stone - Level 84
+(22855, 9628, 1, 3, -1, 486477), -- Leonard
+(22855, 14167, 1, 1, -1, 149640), -- Mid-Grade Life Stone - Level 84
+(22855, 14168, 1, 1, -1, 14964), -- High-Grade Life Stone - Level 84
+(22855, 14169, 1, 1, -1, 2992), -- Top-Grade Life Stone - Level 84
+(22855, 57, 65375, 152689, 0, 700000), -- Adena
+(22855, 15763, 1, 1, 1, 552), -- Sealed Vorpal Ring
+(22855, 15765, 1, 1, 1, 276), -- Sealed Vorpal Necklace
+(22855, 15753, 1, 1, 1, 243), -- Sealed Vorpal Leather Gloves
+(22855, 15754, 1, 1, 1, 243), -- Sealed Vorpal Gloves
+(22855, 15748, 1, 1, 1, 81), -- Sealed Vorpal Tunic
+(22855, 15746, 1, 1, 1, 61), -- Sealed Vorpal Breastplate
+(22855, 1895, 12, 36, 2, 121248), -- Metallic Fiber
+(22855, 9549, 1, 1, 2, 81479), -- Wind Stone
+(22855, 9628, 1, 1, 2, 79881), -- Leonard
+(22855, 9630, 1, 1, 2, 53604), -- Orichalcum
+(22855, 14166, 1, 1, 2, 49202), -- Life Stone - Level 84
+(22855, 4040, 2, 6, 2, 40739), -- Mold Lubricant
+(22855, 14167, 1, 1, 2, 12286), -- Mid-Grade Life Stone - Level 84
+(22855, 14168, 1, 1, 2, 1228), -- High-Grade Life Stone - Level 84
+(22855, 959, 1, 1, 2, 407), -- Scroll: Enchant Weapon (S-Grade)
+(22855, 14169, 1, 1, 2, 246), -- Top-Grade Life Stone - Level 84
+-- Bloody Karinness
+(22856, 14166, 1, 1, -1, 599284), -- Life Stone - Level 84
+(22856, 9629, 1, 1, -1, 539355), -- Adamantine
+(22856, 14167, 1, 1, -1, 149640), -- Mid-Grade Life Stone - Level 84
+(22856, 14168, 1, 1, -1, 14964), -- High-Grade Life Stone - Level 84
+(22856, 14169, 1, 1, -1, 2992), -- Top-Grade Life Stone - Level 84
+(22856, 57, 65375, 152689, 0, 700000), -- Adena
+(22856, 15756, 1, 1, 1, 182), -- Sealed Vorpal Leather Boots
+(22856, 15752, 1, 1, 1, 182), -- Sealed Vorpal Gauntlet
+(22856, 15759, 1, 1, 1, 174), -- Sealed Vorpal Sigil
+(22856, 15758, 1, 1, 1, 174), -- Sealed Vorpal Shield
+(22856, 15744, 1, 1, 1, 122), -- Sealed Vorpal Leather Helmet
+(22856, 13893, 1, 1, 1, 89), -- Sealed Holy Spirit's Cloak
+(22856, 15749, 1, 1, 1, 73), -- Sealed Vorpal Gaiter
+(22856, 15747, 1, 1, 1, 61), -- Sealed Vorpal Leather Breastplate
+(22856, 9549, 1, 1, 2, 74071), -- Wind Stone
+(22856, 9628, 1, 1, 2, 72620), -- Leonard
+(22856, 1879, 15, 45, 2, 51439), -- Cokes
+(22856, 9630, 1, 1, 2, 48732), -- Orichalcum
+(22856, 14166, 1, 1, 2, 44730), -- Life Stone - Level 84
+(22856, 9629, 1, 1, 2, 40256), -- Adamantine
+(22856, 1885, 12, 36, 2, 32149), -- High-Grade Suede
+(22856, 14167, 1, 1, 2, 11169), -- Mid-Grade Life Stone - Level 84
+(22856, 14168, 1, 1, 2, 1117), -- High-Grade Life Stone - Level 84
+(22856, 959, 1, 1, 2, 370), -- Scroll: Enchant Weapon (S-Grade)
+(22856, 14169, 1, 1, 2, 223), -- Top-Grade Life Stone - Level 84
+-- Knoriks
+(22857, 2134, 1, 1, -1, 927842), -- Gemstone S
+(22857, 14052, 1, 25, -1, 892155), -- Noble Enhancement Stone
+(22857, 6578, 1, 1, -1, 20619), -- Blessed Scroll: Enchant Armor (S-Grade)
+(22857, 6577, 1, 1, -1, 3093), -- Blessed Scroll: Enchant Weapon (S-Grade)
+(22857, 57, 195846, 456862, 0, 700000), -- Adena
+(22857, 13893, 1, 1, 1, 142), -- Sealed Holy Spirit's Cloak
+(22857, 15558, 1, 1, 1, 24), -- Periel Sword
+(22857, 15567, 1, 1, 1, 24), -- Veniplant Sword
+(22857, 15562, 1, 1, 1, 24), -- Feather Eye Blade
+(22857, 15559, 1, 1, 1, 24), -- Skull Edge
+(22857, 15570, 1, 1, 1, 24), -- Finale Blade
+(22857, 15563, 1, 1, 1, 24), -- Octo Claw
+(22857, 15566, 1, 1, 1, 24), -- Black Visage
+(22857, 15568, 1, 1, 1, 24), -- Skull Carnium Bow
+(22857, 15564, 1, 1, 1, 24), -- Doubletop Spear
+(22857, 15560, 1, 1, 1, 24), -- Vigwik Axe
+(22857, 15569, 1, 1, 1, 24), -- Gemtail Rapier
+(22857, 15565, 1, 1, 1, 24), -- Rising Star
+(22857, 15561, 1, 1, 1, 24), -- Devilish Maul
+(22857, 15571, 1, 1, 1, 24), -- Dominion Crossbow
+(22857, 14052, 3, 9, 2, 105803), -- Noble Enhancement Stone
+(22857, 4040, 3, 9, 2, 72550), -- Mold Lubricant
+(22857, 4042, 4, 12, 2, 52901), -- Enria
+(22857, 2134, 1, 1, 2, 50785), -- Gemstone S
+(22857, 1895, 108, 324, 2, 33588), -- Metallic Fiber
+(22857, 14167, 1, 1, 2, 30630), -- Mid-Grade Life Stone - Level 84
+(22857, 9549, 5, 15, 2, 20314), -- Wind Stone
+(22857, 4043, 27, 81, 2, 15390), -- Asofe
+(22857, 14166, 6, 18, 2, 10222), -- Life Stone - Level 84
+(22857, 14168, 1, 1, 2, 3063), -- High-Grade Life Stone - Level 84
+(22857, 959, 1, 1, 2, 1016), -- Scroll: Enchant Weapon (S-Grade)
+(22857, 14169, 1, 1, 2, 612), -- Top-Grade Life Stone - Level 84
+-- Necromancer of the Valley
+(22858, 4039, 1, 1, -1, 135339), -- Mold Glue
+(22858, 9628, 1, 1, -1, 31844), -- Leonard
+(22858, 10404, 1, 1, -1, 1735), -- Icarus Hall Piece
+(22858, 15780, 1, 1, -1, 1608), -- Recipe - Sealed Moirai Tunic (60%)
+(22858, 57, 1712, 4000, 0, 700000), -- Adena
+(22858, 15767, 1, 1, 1, 22), -- Sealed Moirai Earring
+(22858, 15696, 1, 1, 1, 14), -- Sealed Moirai Circlet
+(22858, 15697, 1, 1, 1, 5), -- Sealed Moirai Breastplate
+(22858, 1895, 1, 1, 2, 95242), -- Metallic Fiber
+(22858, 4040, 1, 1, 2, 6667), -- Mold Lubricant
+(22858, 9549, 1, 1, 2, 2667), -- Wind Stone
+(22858, 9628, 1, 1, 2, 2614), -- Leonard
+(22858, 14166, 1, 1, 2, 2315), -- Life Stone - Level 84
+(22858, 9630, 1, 1, 2, 1754), -- Orichalcum
+(22858, 14167, 1, 1, 2, 579), -- Mid-Grade Life Stone - Level 84
+(22858, 14168, 1, 1, 2, 58), -- High-Grade Life Stone - Level 84
+-- Howl
+(22859, 4042, 1, 1, -1, 70373), -- Enria
+(22859, 9628, 1, 1, -1, 33117), -- Leonard
+(22859, 10398, 1, 1, -1, 1810), -- Icarus Disperser Piece
+(22859, 959, 1, 1, -1, 169), -- Scroll: Enchant Weapon (S-Grade)
+(22859, 57, 1780, 4157, 0, 700000), -- Adena
+(22859, 15766, 1, 1, 1, 25), -- Sealed Moirai Ring
+(22859, 15709, 1, 1, 1, 16), -- Sealed Moirai Sigil
+(22859, 15710, 1, 1, 1, 16), -- Sealed Moirai Shield
+(22859, 10215, 1, 1, 1, 1), -- Icarus Sawsword
+(22859, 1895, 1, 1, 2, 99047), -- Metallic Fiber
+(22859, 4043, 1, 1, 2, 11555), -- Asofe
+(22859, 4040, 1, 1, 2, 6933), -- Mold Lubricant
+(22859, 4042, 1, 1, 2, 5778), -- Enria
+(22859, 9549, 1, 1, 2, 2773), -- Wind Stone
+(22859, 9573, 1, 1, 2, 2407), -- Life Stone - Level 80
+(22859, 9574, 1, 1, 2, 602), -- Mid-Grade Life Stone - Level 80
+(22859, 9575, 1, 1, 2, 60), -- High-Grade Life Stone - Level 80
+-- Hungry Parasitic Leech
+(22860, 4044, 1, 1, -1, 610646), -- Thons
+(22860, 9629, 1, 1, -1, 79649), -- Adamantine
+(22860, 15794, 1, 1, -1, 10468), -- Recipe - Sealed Vesper Circlet (60%)
+(22860, 15800, 1, 1, -1, 8374), -- Recipe - Sealed Vesper Stockings (60%)
+(22860, 10401, 1, 1, -1, 7829), -- Icarus Trident Piece
+(22860, 15778, 1, 1, -1, 5440), -- Recipe - Sealed Moirai Breastplate (60%)
+(22860, 15797, 1, 1, -1, 5234), -- Recipe - Sealed Vesper Tunic (60%)
+(22860, 57, 13523, 31578, 0, 700000), -- Adena
+(22860, 15706, 1, 1, 1, 72), -- Sealed Moirai Boots
+(22860, 15703, 1, 1, 1, 72), -- Sealed Moirai Gauntlet
+(22860, 15705, 1, 1, 1, 72), -- Sealed Moirai Gloves
+(22860, 15707, 1, 1, 1, 72), -- Sealed Moirai Leather Boots
+(22860, 15704, 1, 1, 1, 72), -- Sealed Moirai Leather Gloves
+(22860, 15708, 1, 1, 1, 72), -- Sealed Moirai Shoes
+(22860, 15768, 1, 1, 1, 55), -- Sealed Moirai Necklace
+(22860, 1879, 1, 3, 2, 125338), -- Cokes
+(22860, 1885, 1, 1, 2, 125338), -- High-Grade Suede
+(22860, 1888, 1, 1, 2, 45577), -- Synthetic Cokes
+(22860, 1890, 1, 1, 2, 22963), -- Mithril Alloy
+(22860, 5550, 1, 1, 2, 20054), -- Durable Metal Plate
+(22860, 9549, 1, 1, 2, 12032), -- Wind Stone
+(22860, 9628, 1, 1, 2, 11796), -- Leonard
+(22860, 10483, 1, 1, 2, 10445), -- Life Stone - Level 82
+(22860, 9630, 1, 1, 2, 7916), -- Orichalcum
+(22860, 9629, 1, 1, 2, 6539), -- Adamantine
+(22860, 10484, 1, 1, 2, 2611), -- Mid-Grade Life Stone - Level 82
+(22860, 17248, 1, 1, 2, 886), -- Large Dragon Bone
+(22860, 10485, 1, 1, 2, 261), -- High-Grade Life Stone - Level 82
+(22860, 959, 1, 1, 2, 60), -- Scroll: Enchant Weapon (S-Grade)
+-- Hard Noxious Scorpion
+(22861, 4040, 1, 1, -1, 602703), -- Mold Lubricant
+(22861, 9630, 1, 1, -1, 158606), -- Orichalcum
+(22861, 15793, 1, 1, -1, 17220), -- Recipe - Sealed Vesper Leather Helmet (60%)
+(22861, 15799, 1, 1, -1, 13775), -- Recipe - Sealed Vesper Leather Legging (60%)
+(22861, 10402, 1, 1, -1, 12878), -- Icarus Hammer Piece
+(22861, 15796, 1, 1, -1, 8610), -- Recipe - Sealed Vesper Leather Breastplate (60%)
+(22861, 959, 1, 1, -1, 1205), -- Scroll: Enchant Weapon (S-Grade)
+(22861, 57, 22245, 51946, 0, 700000), -- Adena
+(22861, 15766, 1, 1, 1, 180), -- Sealed Moirai Ring
+(22861, 15710, 1, 1, 1, 112), -- Sealed Moirai Shield
+(22861, 15709, 1, 1, 1, 112), -- Sealed Moirai Sigil
+(22861, 15701, 1, 1, 1, 63), -- Sealed Moirai Leather Legging
+(22861, 15702, 1, 1, 1, 63), -- Sealed Moirai Stockings
+(22861, 15699, 1, 1, 1, 39), -- Sealed Moirai Tunic
+(22861, 10215, 1, 1, 1, 6), -- Icarus Sawsword
+(22861, 1895, 3, 9, 2, 164943), -- Metallic Fiber
+(22861, 4040, 1, 1, 2, 69276), -- Mold Lubricant
+(22861, 9546, 1, 1, 2, 27710), -- Fire Stone
+(22861, 9628, 1, 1, 2, 27167), -- Leonard
+(22861, 10483, 1, 1, 2, 24054), -- Life Stone - Level 82
+(22861, 9630, 1, 1, 2, 18231), -- Orichalcum
+(22861, 10484, 1, 1, 2, 6013), -- Mid-Grade Life Stone - Level 82
+(22861, 17248, 1, 1, 2, 2038), -- Large Dragon Bone
+(22861, 9552, 1, 1, 2, 693), -- Fire Crystal
+(22861, 10485, 1, 1, 2, 601), -- High-Grade Life Stone - Level 82
+-- Drakos Hunter
+(22862, 4043, 1, 1, -1, 751200), -- Asofe
+(22862, 9630, 1, 1, -1, 114500), -- Orichalcum
+(22862, 10403, 1, 1, -1, 7633), -- Icarus Hand Piece
+(22862, 15778, 1, 1, -1, 4000), -- Recipe - Sealed Moirai Breastplate (60%)
+(22862, 15792, 1, 1, -1, 1652), -- Recipe - Sealed Vesper Helmet (60%)
+(22862, 15795, 1, 1, -1, 625), -- Recipe - Sealed Vesper Breastplate (60%)
+(22862, 15798, 1, 1, -1, 625), -- Recipe - Sealed Vesper Gaiter (60%)
+(22862, 57, 18307, 42751, 0, 700000), -- Adena
+(22862, 15706, 1, 1, 1, 25), -- Sealed Moirai Boots
+(22862, 15707, 1, 1, 1, 25), -- Sealed Moirai Leather Boots
+(22862, 15768, 1, 1, 1, 25), -- Sealed Moirai Necklace
+(22862, 15708, 1, 1, 1, 25), -- Sealed Moirai Shoes
+(22862, 13893, 1, 1, 1, 10), -- Sealed Holy Spirit's Cloak
+(22862, 1885, 1, 1, 2, 187499), -- High-Grade Suede
+(22862, 1879, 3, 9, 2, 66666), -- Cokes
+(22862, 9628, 1, 1, 2, 18868), -- Leonard
+(22862, 9630, 1, 1, 2, 12820), -- Orichalcum
+(22862, 9629, 1, 1, 2, 9524), -- Adamantine
+(22862, 9549, 1, 1, 2, 5000), -- Wind Stone
+(22862, 9555, 1, 1, 2, 500), -- Wind Crystal
+(22862, 17248, 1, 1, 2, 133), -- Large Dragon Bone
 -- Greyclaw Kutus
 (25001, 348, 1, 1, 0, 272693.767227), -- Scale Mail
 (25001, 377, 4, 12, 0, 54506.950827), -- Scale Gaiters
diff --git a/L2J_DataPack_BETA/dist/sql/game/grandboss_data.sql b/L2J_DataPack_BETA/dist/sql/game/grandboss_data.sql
index c2225e26e2..0376d4f457 100644
--- a/L2J_DataPack_BETA/dist/sql/game/grandboss_data.sql
+++ b/L2J_DataPack_BETA/dist/sql/game/grandboss_data.sql
@@ -22,7 +22,7 @@ INSERT IGNORE INTO `grandboss_data` (`boss_id`,`loc_x`,`loc_y`,`loc_z`,`heading`
 (29028, -105200, -253104, -15264, 0, 223107426.1796109, 4497143.692870192), -- Valakas (85)
 (29066, 185708, 114298, -8221,32768, 14518000, 3996000), -- Antharas Weak (79)
 (29067, 185708, 114298, -8221,32768, 16184000, 3996000), -- Antharas Normal (79)
-(29068, 185708, 114298, -8221,32768, 204677324.07859, 3996000), -- Antharas Strong (85)
+(29068, 185708, 114298, -8221,32768, 62802301, 1998000), -- Antharas Strong (85)
 (29118, 0, 0, 0, 0, 4109288, 1220547); -- Beleth (83)
 -- (29045, -87780, -155086, -9080, 16384, 1018821.42723286, 52001.06567747795), -- Frintezza (85)
 -- (29046, -87789, -153295, -9176, 16384, 1824900, 23310), -- Scarlet Van Halisha (85)
diff --git a/L2J_DataPack_BETA/dist/sql/game/merchant_buylists.sql b/L2J_DataPack_BETA/dist/sql/game/merchant_buylists.sql
index 39113f4993..e91e5bf086 100644
--- a/L2J_DataPack_BETA/dist/sql/game/merchant_buylists.sql
+++ b/L2J_DataPack_BETA/dist/sql/game/merchant_buylists.sql
@@ -7405,82 +7405,6 @@ INSERT INTO `merchant_buylists` (`item_id`,`price`,`shop_id`,`order`) VALUES
 (4586,-1,3089301,117),
 (4587,-1,3089301,118),
 (4588,-1,3089301,119),
--- Galman (Dragon Valley's Grocer)
-(1835,-1,3104400,0), -- Soulshot: No Grade
-(2509,-1,3104400,1), -- Spiritshot: No Grade
-(1463,-1,3104400,2), -- Soulshot (D-Grade)
-(1464,-1,3104400,3), -- Soulshot (C-Grade)
-(3947,-1,3104400,4), -- Blessed Spiritshot: No Grade
-(3948,-1,3104400,5), -- Blessed Spiritshot (D-Grade)
-(3949,-1,3104400,6), -- Blessed Spiritshot (C-Grade)
-(5146,-1,3104400,7), -- Compressed Package of Blessed Spiritshots: No Grade
-(5140,-1,3104400,8), -- Compressed Package of Spiritshots: No Grade
-(5134,-1,3104400,9), -- Compressed Package of Soulshots: No Grade
-(5262,-1,3104400,10), -- Greater Compressed Package of Blessed Spiritshots (No-Grade)
-(5256,-1,3104400,11), -- Greater Compressed Package of Spiritshots (No-Grade)
-(5250,-1,3104400,12), -- Greater Compressed Package of Soulshots (No-Grade)
-(17,-1,3104400,13), -- Wooden Arrow
-(1341,-1,3104400,14), -- Bone Arrow
-(1342,-1,3104400,15), -- Steel Arrow
-(1343,-1,3104400,16), -- Silver Arrow
-(1344,-1,3104400,17), -- Mithril Arrow
-(1060,-1,3104400,18), -- Lesser Healing Potion
-(1061,-1,3104400,19), -- Greater Healing Potion
-(1831,-1,3104400,20), -- Antidote
-(1832,-1,3104400,21), -- Greater Antidote
-(1833,-1,3104400,22), -- Bandage
-(1834,-1,3104400,23), -- Emergency Dressing
-(734,-1,3104400,24), -- Haste Potion
-(735,-1,3104400,25), -- Alacrity Potion
-(6035,-1,3104400,26), -- Magic Haste Potion
-(6037,-1,3104400,27), -- Waking Scroll
-(736,-1,3104400,28), -- Scroll of Escape
-(737,-1,3104400,29), -- Scroll of Resurrection
-(1829,-1,3104400,30), -- Scroll of Escape: Clan Hall
-(1830,-1,3104400,31), -- Scroll of Escape: Castle
-(3031,-1,3104400,32), -- Spirit Ore
-(1785,-1,3104400,33), -- Soul Ore
-(5589,-1,3104400,34), -- Energy Stone
-(1661,-1,3104400,35), -- Thief Key
-(5192,-1,3104400,36), -- Rope of Magic (D-Grade)
-(5193,-1,3104400,37), -- Rope of Magic (C-Grade)
-(5194,-1,3104400,38), -- Rope of Magic (B-Grade)
-(5195,-1,3104400,39), -- Rope of Magic (A-Grade)
-(5196,-1,3104400,40), -- Rope of Magic (S-Grade)
-(2130,-1,3104400,41), -- Gemstone D
-(2131,-1,3104400,42), -- Gemstone C
-(2132,-1,3104400,43), -- Gemstone B
-(4679,-1,3104400,44), -- Bless of Eva
-(9633,-1,3104400,45), -- Bone Bolt
-(9634,-1,3104400,46), -- Steel Bolt
-(9635,-1,3104400,47), -- Silver Bolt
-(9636,-1,3104400,48), -- Mithril Bolt
-(8594,-1,3104400,49), -- Scroll: Recovery (No Grade)
-(8595,-1,3104400,50), -- Scroll: Recovery (Grade D)
-(8596,-1,3104400,51), -- Scroll: Recovery (Grade C)
-(8597,-1,3104400,52), -- Scroll: Recovery (Grade B)
-(8598,-1,3104400,53), -- Scroll: Recovery (Grade A)
-(8599,-1,3104400,54), -- Scroll: Recovery (Grade S)
-(8622,-1,3104400,55), -- Elixir of Life (No Grade)
-(8623,-1,3104400,56), -- Elixir of Life (D-Grade)
-(8624,-1,3104400,57), -- Elixir of Life (C-Grade)
-(8634,-1,3104400,58), -- Elixir of CP (No Grade)
-(8635,-1,3104400,59), -- Elixir of CP (D-Grade)
-(8636,-1,3104400,60), -- Elixir of CP (C-Grade)
-(8637,-1,3104400,61), -- Elixir of CP (B-Grade)
-(8638,-1,3104400,62), -- Elixir of CP (A-Grade)
-(8639,-1,3104400,63), -- Elixir of CP (S-Grade)
-(8615,-1,3104400,64), -- Summoning Crystal
-(8658,-1,3104400,65), -- Mysterious Solvent
-(8871,-1,3104400,66), -- Strategy Guide
-(10409,-1,3104400,67), -- A Bottle of Souls
-(4625,-1,3104400,68), -- Dice (Heart)
-(4626,-1,3104400,69), -- Dice (Spade)
-(4627,-1,3104400,70), -- Dice (Clover)
-(4628,-1,3104400,71), -- Dice (Diamond)
-(8872,-1,3104400,72), -- Flash Gunpowder
-(8629,-1,3104400,73), -- Elixir of Mental Strength (D-Grade)
-(21746,-1,3104400,74), -- Maestro's Key
 -- Kitzka (Dragon Valley's Grocer)
 (1835,-1,3104500,0), -- Soulshot: No Grade
 (2509,-1,3104500,1), -- Spiritshot: No Grade
diff --git a/L2J_DataPack_BETA/dist/sql/game/merchant_shopids.sql b/L2J_DataPack_BETA/dist/sql/game/merchant_shopids.sql
index 416ce12702..c8f598da8c 100644
--- a/L2J_DataPack_BETA/dist/sql/game/merchant_shopids.sql
+++ b/L2J_DataPack_BETA/dist/sql/game/merchant_shopids.sql
@@ -181,7 +181,6 @@ INSERT INTO `merchant_shopids` VALUES
 (3089202,'30892'),
 (3089300,'30893'),
 (3089301,'30893'),
-(3104400,'31044'),
 (3104500,'31045'),
 (3106700,'31067'),
 (3125600,'31256'),
diff --git a/L2J_DataPack_BETA/dist/sql/game/minions.sql b/L2J_DataPack_BETA/dist/sql/game/minions.sql
index a3f7e89fa5..4b25b6557b 100644
--- a/L2J_DataPack_BETA/dist/sql/game/minions.sql
+++ b/L2J_DataPack_BETA/dist/sql/game/minions.sql
@@ -24,7 +24,6 @@ INSERT INTO `minions` VALUES
 (20753,21040,4,4), 
 (20758,20759,1,1), 
 (20758,20760,1,1), 
-(20761,20762,2,3), 
 (20763,20764,1,1),
 (20763,20765,1,1),
 (20763,20766,1,1),
@@ -72,8 +71,6 @@ INSERT INTO `minions` VALUES
 (21078,21080,1,2), 
 (21081,21082,1,1), 
 (21081,21083,1,3),
-(21090,21091,1,1),
-(21090,21092,1,1),
 (21312,21313,2,2),
 (21343,21344,2,2),
 (21345,21346,2,2),
@@ -178,8 +175,6 @@ INSERT INTO `minions` VALUES
 (25067,25069,2,2),
 (25070,25071,3,3),
 (25070,25072,1,1),
-(25073,25074,2,2),
-(25073,25075,2,2),
 (25076,25077,1,1),
 (25076,25078,4,4),
 (25079,25080,2,2),
@@ -200,8 +195,6 @@ INSERT INTO `minions` VALUES
 (25103,25105,4,4),
 (25106,25107,3,3),
 (25106,25108,2,2),
-(25109,25110,3,3),
-(25109,25111,1,1),
 (25112,25113,3,3),
 (25112,25114,1,1),
 (25115,25116,3,3),
@@ -238,8 +231,6 @@ INSERT INTO `minions` VALUES
 (25170,25172,2,2),
 (25173,25174,2,2),
 (25173,25175,2,2),
-(25176,25177,1,1),
-(25176,25178,4,4),
 (25179,25180,3,3),
 (25179,25181,1,1),
 (25182,25183,2,2),
@@ -262,8 +253,6 @@ INSERT INTO `minions` VALUES
 (25211,25213,2,2),
 (25214,25215,3,3),
 (25214,25216,1,1),
-(25217,25218,3,3),
-(25217,25219,2,2),
 (25220,25221,3,3),
 (25220,25222,1,1),
 (25223,25224,3,3),
@@ -372,8 +361,6 @@ INSERT INTO `minions` VALUES
 (25401,25403,3,3),
 (25404,25405,2,2),
 (25404,25406,1,1),
-(25407,25408,1,1),
-(25407,25409,2,2),
 (25410,25411,3,3),
 (25412,25413,3,3),
 (25412,25414,2,2),
@@ -608,4 +595,13 @@ INSERT INTO `minions` VALUES
 
 -- Adolph + Linda
 INSERT INTO `minions` VALUES
-(32070,32071,1,1);
\ No newline at end of file
+(32070,32071,1,1);
+
+-- Dragon Valley
+INSERT INTO `minions` VALUES
+-- Emerald Drake
+(22829,22860,1,12),
+-- Batwing Drake
+(22827,22828,1,8),
+-- Hard Noxious Scorpion
+(22861,22826,1,4);
diff --git a/L2J_DataPack_BETA/dist/sql/game/npc.sql b/L2J_DataPack_BETA/dist/sql/game/npc.sql
index 5cebf7cfb4..4ab1b627c9 100644
--- a/L2J_DataPack_BETA/dist/sql/game/npc.sql
+++ b/L2J_DataPack_BETA/dist/sql/game/npc.sql
@@ -4913,56 +4913,56 @@ INSERT INTO `npc` VALUES
 (22810, 22810, "Micro Scout Golem", 0, "", 0, "LineageMonster3.golem_microscout_a_e", 12, 43.5, 72, "male", "L2Monster", 40, 2540.15331, 1410, 8.5, 3, 40, 43, 30, 21, 20, 20, 17331, 1676, 731.52506, 305.35947, 499.53679, 223.44881, 253, 4, 333, 0, 0, 0, 30, 180, 1, 1), 
 (22811, 22811, "Great Chaos Golem", 0, "", 0, "LineageMonster3.Steel_Trapper_e", 35, 46.38, 73, "male", "L2Monster", 40, 2586.66898, 1442.4, 8.5, 3, 40, 43, 30, 21, 20, 20, 30036, 2962, 752.73928, 310.02959, 514.02335, 226.8662, 253, 4, 333, 0, 0, 0, 60, 160, 1, 1), 
 (22812, 22812, "Boom Golem", 0, "", 0, "LineageMonster.big_boom_e", 6, 13, 72, "male", "L2Monster", 40, 2540.15331, 1410, 8.5, 3, 40, 43, 30, 21, 20, 20, 17281, 1671, 731.52506, 305.35947, 499.53679, 223.44881, 253, 4, 333, 0, 0, 0, 48, 160, 1, 1), 
-(22813, 22813, "Demon's Banquet", 0, "", 0, "LineageMonster.skeleton", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(22814, 22814, "Demon's Banquet", 0, "", 0, "LineageMonster.skeleton", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(22815, 22815, "Drakos", 0, "", 0, "LineageMonster4.Death_slayer_080p", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(22816, 22816, "Maluk Maiden of the Valley", 0, "", 0, "LineageMonster3.Succubus_Raid_a", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(22817, 22817, "Maluk Summoner of the Valley", 0, "", 0, "LineageMonster4.death_scout_110p_a", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(22818, 22818, "Exploding Orc Ghost", 0, "", 0, "LineageMonster3.zombie_enlisted_man", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(22819, 22819, "Wrathful Orc Ghost", 0, "", 0, "LineageMonster3.zombie_laborer", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(22820, 22820, "Mesmer Drake", 0, "Scout", 0, "LineageMonster4.dragon_shadow_80p", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(22821, 22821, "Immortal Necromancer", 0, "Scout", 0, "LineageMonster4.floating_skeleton_50p", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(22822, 22822, "Drakos Warrior", 0, "", 0, "LineageMonster4.dragon_berserker_090p", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(22823, 22823, "Drakos Assassin", 0, "", 0, "LineageMonster4.Death_slayer_080p", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(22824, 22824, "Drakos Guardian", 0, "", 0, "LineageMonster4.dragon_berserker_090p", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(22825, 22825, "Giant Scorpion Bones", 0, "", 0, "LineageMonster2.scorpion", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(22826, 22826, "Scorpion Bones", 0, "", 0, "LineageMonster2.scorpion_a_40p", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(22827, 22827, "Batwing Drake", 0, "", 0, "LineageMonster4.mutant_drake_wing_50p", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(22828, 22828, "Parasitic Leech", 0, "", 0, "LineageMonster.giant_leech_60p", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(22829, 22829, "Emerald Drake", 0, "", 0, "LineageMonster4.drac_50p", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(22830, 22830, "Gem Dragon", 0, "", 0, "LineageMonster3.antaras_ex_b_tr", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(22831, 22831, "Dragon Tracker of the Valley", 0, "Tracker", 0, "LineageMonster3.antaras_ex_a_70p", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(22832, 22832, "Dragon Scout of the Valley", 0, "Scout", 0, "LineageMonster3.antaras_ex_b_80p_a", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(22833, 22833, "Sand Drake Tracker", 0, "Tracker", 0, "LineageMonster4.m_drake_wing_knave_50p", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(22834, 22834, "Dust Dragon Tracker", 0, "Tracker", 0, "LineageMonster4.Mutant_drake_50p", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(22835, 22835, "Magma Drake Mother", 0, "", 0, "LineageMonster2.inferno_drake_120p", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(22836, 22836, "Magma Drake Hatchling", 0, "", 0, "LineageMonster2.inferno_drake_50p", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(22837, 22837, "Gem Dragon Hatchling", 0, "", 0, "LineageMonster3.antaras_ex_b_tr_70p", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(22838, 22838, "Maluk Leader", 0, "", 0, "LineageMonster5.leader_mind_of_silen_a", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(22839, 22839, "Maluk Warlord", 0, "", 0, "LineageMonster5.dimension_caller_a", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(22840, 22840, "Maluk Hunter", 0, "", 0, "LineageMonster5.vicious_mind_of_silen_a", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(22841, 22841, "Maluk Princess", 0, "", 0, "LineageMonster5.bloody_princess_a", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(22842, 22842, "Maluk Banshee", 0, "", 0, "LineageMonster5.twisted_banshee_a", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(22843, 22843, "Maluk Sniper ", 0, "", 0, "LineageMonster5.skeleton_sniper_80p", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(22844, 22844, "Dragon Knight", 0, "", 0, "LineageMonster4.Dragon_archmage_100p", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(22845, 22845, "Dragon Knight", 0, "", 0, "LineageMonster4.Dragon_archmage_135p_a", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(22846, 22846, "Elite Dragon Knight", 0, "", 0, "LineageMonster4.Dragon_archmage_135p_a", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(22847, 22847, "Dragon Knight Warrior ", 0, "", 0, "LineageMonster4.Dragon_centurion_100p", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(22848, 22848, "Drake Leader", 0, "", 0, "LineageMonster4.Dragon_archmage_135p_a", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(22849, 22849, "Drake Warrior", 0, "", 0, "LineageMonster4.Dragon_centurion_120p_b", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(22850, 22850, "Drake Scout", 0, "", 0, "LineageMonster4.dragon_peltast_80p", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(22851, 22851, "Drake Mage", 0, "", 0, "LineageMonster4.dragon_mage_075p_b", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(22852, 22852, "Dragon Guard", 0, "", 0, "LineageMonster4.Dragon_eliteguard_075p_a", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(22853, 22853, "Dragon Mage", 0, "", 0, "LineageMonster4.dragon_mage_065p_a", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(22854, 22854, "Bloody Karik", 0, "", 0, "LineageMonster5.leader_anakazel_high_a_140p", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(22855, 22855, "Bloody Berserker", 0, "", 0, "LineageMonster5.leader_anakazel_low_a_130p", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(22856, 22856, "Bloody Karinness", 0, "", 0, "LineageMonster5.leader_anakazel_mid_a_130p", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(22857, 22857, "Knoriks", 0, "Land Dragon's Patroller", 0, "LineageMonster6.transform_clanicus", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(22858, 22858, "Necromancer of the Valley", 0, "", 0, "LineageMonster4.floating_skeleton_50p", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(22859, 22859, "Howl", 0, "Tracker", 0, "LineageMonster2.eligor", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(22860, 22860, "Hungry Parasitic Leech", 0, "", 0, "LineageMonster.giant_leech_60p", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(22861, 22861, "Hard Scorpion Bones", 0, "", 0, "LineageMonster2.scorpion", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(22862, 22862, "Drakos Hunter", 0, "", 0, "LineageMonster4.dragon_berserker_090p", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
+(22813, 22813, "Demon's Banquet", 0, "", 0, "LineageMonster.skeleton", 11, 25, 80, "male", "L2Monster", 40, 3289.87341, 1523.77049, 8.5, 3, 40, 43, 30, 21, 20, 20, 0, 0, 962.52465, 341.42011, 482.95329, 227.47114, 253, 4, 333, 946, 945, 0, 110, 180, 0, 1), 
+(22814, 22814, "Demon's Banquet", 0, "", 0, "LineageMonster.skeleton", 11, 25, 80, "male", "L2Monster", 40, 3289.87341, 1523.77049, 8.5, 3, 40, 43, 30, 21, 20, 20, 0, 0, 962.52465, 341.42011, 482.95329, 227.47114, 253, 4, 333, 946, 945, 0, 110, 180, 0, 1), 
+(22815, 22815, "Drakos", 0, "", 0, "LineageMonster4.Death_slayer_080p", 16, 27.2, 80, "male", "L2Monster", 40, 3289.87341, 1523.77049, 8.5, 3, 40, 43, 30, 21, 20, 20, 41310, 4436, 962.52465, 341.42011, 482.95329, 227.47114, 253, 4, 333, 13985, 13986, 0, 110, 180, 0, 1), 
+(22816, 22816, "Maluk Maiden of the Valley", 0, "", 0, "LineageMonster3.Succubus_Raid_a", 12, 30.7, 81, "female", "L2Monster", 40, 3462.02531, 1554.91803, 8.5, 3, 40, 43, 30, 21, 20, 20, 25215, 2792, 1003.92156, 345.88235, 500.49337, 229.99035, 253, 4, 333, 0, 0, 0, 110, 180, 0, 1), 
+(22817, 22817, "Maluk Summoner of the Valley", 0, "", 0, "LineageMonster4.death_scout_110p_a", 18, 27.5, 82, "female", "L2Monster", 40, 3643.67088, 1586.06557, 8.5, 3, 40, 43, 30, 21, 20, 20, 26483, 2895, 1046.29629, 349.70760, 519.15504, 232.95944, 253, 4, 333, 0, 0, 0, 110, 180, 0, 1), 
+(22818, 22818, "Exploding Orc Ghost", 0, "", 0, "LineageMonster3.zombie_enlisted_man", 17, 22.3, 81, "male", "L2Monster", 40, 3462.02531, 1554.91803, 8.5, 3, 40, 43, 30, 21, 20, 20, 25020, 2771, 1003.92156, 345.88235, 500.49337, 229.99035, 253, 4, 333, 0, 0, 0, 110, 180, 0, 1), 
+(22819, 22819, "Wrathful Orc Ghost", 0, "", 0, "LineageMonster3.zombie_laborer", 11, 24.6, 81, "male", "L2Monster", 40, 3462.02531, 1554.91803, 8.5, 3, 40, 43, 30, 21, 20, 20, 25020, 2771, 1003.92156, 345.88235, 500.49337, 229.99035, 253, 4, 333, 123, 0, 0, 110, 180, 0, 1), 
+(22820, 22820, "Mesmer Drake", 0, "Scout", 0, "LineageMonster4.dragon_shadow_80p", 40, 44, 82, "male", "L2Monster", 40, 3643.67088, 1586.06557, 8.5, 3, 40, 43, 30, 21, 20, 20, 27169, 2971, 1046.29629, 349.70760, 519.15504, 232.95944, 253, 4, 333, 0, 0, 0, 140, 200, 0, 1), 
+(22821, 22821, "Immortal Necromancer", 0, "Scout", 0, "LineageMonster4.floating_skeleton_50p", 16, 45, 82, "male", "L2Monster", 40, 364367088, 1586.06557, 8.5, 3, 40, 43, 30, 21, 20, 20, 27169, 2971, 1046.29629, 349.70760, 519.15504, 232.95944, 253, 4, 333, 0, 0, 0, 140, 200, 0, 1), 
+(22822, 22822, "Drakos Warrior", 0, "", 0, "LineageMonster4.dragon_berserker_090p", 50, 55, 83, "male", "L2Monster", 40, 18734.17721, 1617.21311, 8.5, 3, 40, 43, 30, 21, 20, 20, 417476, 42928, 10162.79069, 566.27906, 5023.68297, 565.19252, 253, 4, 333, 0, 0, 0, 100, 200, 0, 1), 
+(22823, 22823, "Drakos Assassin", 0, "", 0, "LineageMonster4.Death_slayer_080p", 16, 27.2, 83, "male", "L2Monster", 40, 18734.17721, 1617.21311, 8.5, 3, 40, 43, 30, 21, 20, 20, 289444, 29772, 10162.79069, 566.27906, 5023.68297, 565.19252, 253, 4, 333, 13984, 0, 0, 64, 200, 0, 1), 
+(22824, 22824, "Drakos Guardian", 0, "", 0, "LineageMonster4.dragon_berserker_090p", 50, 55, 84, "male", "L2Monster", 40, 18684.81012, 1648.36065, 8.5, 3, 40, 43, 30, 21, 20, 20, 573020, 58196, 10202.79383, 572.83236, 5014.66232, 571.87529, 253, 4, 333, 0, 0, 0, 110, 180, 0, 1), 
+(22825, 22825, "Giant Scorpion Bones", 0, "", 0, "LineageMonster2.scorpion", 28, 66, 83, "male", "L2Monster", 40, 56202.53164, 1617.21311, 8.5, 3, 40, 43, 30, 21, 20, 20, 494068, 53357, 10551.35658, 566.27906, 5640.88861, 565.19252, 253, 4, 333, 0, 0, 0, 110, 180, 0, 1), 
+(22826, 22826, "Scorpion Bones", 0, "", 0, "LineageMonster2.scorpion_a_40p", 16, 24, 83, "male", "L2Monster", 40, 18734.17721, 1617.21311, 8.5, 3, 40, 43, 30, 21, 20, 20, 286890, 29496, 10162.79069, 566.27906, 5023.68297, 565.19252, 253, 4, 333, 0, 0, 0, 110, 180, 0, 1), 
+(22827, 22827, "Batwing Drake", 0, "", 0, "LineageMonster4.mutant_drake_wing_50p", 24, 90, 84, "male", "L2Monster", 40, 56055.06329, 1648.36065, 8.5, 3, 40, 43, 30, 21, 20, 20, 529071, 56448, 11247.59152, 572.83236, 5889.0581, 571.87529, 253, 4, 333, 0, 0, 0, 110, 180, 0, 1), 
+(22828, 22828, "Parasitic Leech", 0, "", 0, "LineageMonster.giant_leech_60p", 30, 16, 83, "male", "L2Monster", 40, 18734.17721, 1617.21311, 8.5, 3, 40, 43, 30, 21, 20, 20, 287945, 29610, 10162.79069, 566.27906, 5023.68297, 565.19252, 253, 4, 333, 0, 0, 0, 110, 180, 0, 1), 
+(22829, 22829, "Emerald Drake", 0, "", 0, "LineageMonster4.drac_50p", 30, 75, 82, "male", "L2Monster", 40, 56403.16455, 1586.06557, 8.5, 3, 40, 43, 30, 21, 20, 20, 500143, 54691, 10184.69785, 559.64912, 5405.7801, 558.91093, 253, 4, 333, 0, 0, 0, 110, 180, 0, 1), 
+(22830, 22830, "Gem Dragon", 0, "", 0, "LineageMonster3.antaras_ex_b_tr", 16, 24, 83, "male", "L2Monster", 40, 18734.17721, 1617.21311, 8.5, 3, 40, 43, 30, 21, 20, 20, 285853, 29384, 10162.79069, 566.27906, 5023.68297, 565.19252, 253, 4, 333, 0, 0, 0, 110, 180, 0, 1), 
+(22831, 22831, "Dragon Tracker of the Valley", 0, "Tracker", 0, "LineageMonster3.antaras_ex_a_70p", 32, 36, 83, "male", "L2Monster", 40, 56202.53164, 1617.21311, 8.5, 3, 40, 43, 30, 21, 20, 20, 593073, 64049, 10551.35658, 566.27906, 5640.88861, 565.19252, 253, 4, 333, 0, 0, 0, 140, 200, 0, 1), 
+(22832, 22832, "Dragon Scout of the Valley", 0, "Scout", 0, "LineageMonster3.antaras_ex_b_80p_a", 37, 28, 83, "male", "L2Monster", 40, 56202.53164, 1617.21311, 8.5, 3, 40, 43, 30, 21, 20, 20, 582118, 62866, 10551.35658, 566.27906, 5640.88861, 565.19252, 253, 4, 333, 0, 0, 0, 140, 200, 0, 1), 
+(22833, 22833, "Sand Drake Tracker", 0, "Tracker", 0, "LineageMonster4.m_drake_wing_knave_50p", 38, 63, 83, "male", "L2Monster", 40, 56202.53164, 1617.21311, 8.5, 3, 40, 43, 30, 21, 20, 20, 619381, 66891, 10551.35658, 566.27606, 5640.88861, 565.19252, 253, 4, 333, 0, 0, 0, 140, 200, 0, 1), 
+(22834, 22834, "Dust Dragon Tracker", 0, "Tracker", 0, "LineageMonster4.Mutant_drake_50p", 33, 45, 84, "male", "L2Monster", 40, 56055.06329, 1648.36065, 8.5, 3, 40, 43, 30, 21, 20, 20, 644700, 68785, 11247.59152, 572.83236, 5889.0581, 571.87529, 253, 4, 333, 0, 0, 0, 140, 200, 0, 1), 
+(22835, 22835, "Magma Drake Mother", 0, "", 0, "LineageMonster2.inferno_drake_120p", 29, 42, 83, "male", "L2Monster", 40, 3835.44303, 1617.21311, 8.5, 3, 40, 43, 30, 21, 20, 20, 0, 0, 1090.11627, 354.06976, 539.41093, 235.41746, 253, 4, 333, 0, 0, 0, 110, 180, 0, 1), 
+(22836, 22836, "Magma Drake Hatchling", 0, "", 0, "LineageMonster2.inferno_drake_50p", 18, 15.5, 83, "male", "L2Monster", 40, 3835.44303, 1617.21311, 8.5, 3, 40, 43, 30, 21, 20, 20, 0, 0, 1090.11627, 354.06976, 539.41093, 235.41746, 253, 4, 333, 0, 0, 0, 110, 180, 0, 1), 
+(22837, 22837, "Gem Dragon Hatchling", 0, "", 0, "LineageMonster3.antaras_ex_b_tr_70p", 16, 16.5, 83, "male", "L2Monster", 40, 3835.44303, 1617.21311, 8.5, 3, 40, 43, 30, 21, 20, 20, 0, 0, 1090.11627, 354.06976, 539.41093, 235.41746, 253, 4, 333, 0, 0, 0, 110, 180, 0, 1), 
+(22838, 22838, "Maluk Leader", 0, "", 0, "LineageMonster5.leader_mind_of_silen_a", 27, 45, 85, "male", "L2Monster", 40, 55817.72151, 1680.32786, 8.5, 3, 40, 43, 30, 21, 20, 20, 555716, 58594, 11908.04597, 578.73563, 6178.99131, 578.01017, 253, 4, 333, 0, 0, 0, 110, 180, 0, 1), 
+(22839, 22839, "Maluk Warlord", 0, "", 0, "LineageMonster5.dimension_caller_a", 25, 60, 85, "male", "L2Monster", 40, 55817.72151, 1680.32786, 8.5, 3, 40, 43, 30, 21, 20, 20, 537433, 56666, 11908.04597, 578.73563, 6178.99131, 578.01017, 253, 4, 333, 0, 0, 0, 110, 180, 0, 1), 
+(22840, 22840, "Maluk Hunter", 0, "", 0, "LineageMonster5.vicious_mind_of_silen_a", 14, 34, 85, "male", "L2Monster", 40, 55817.72151, 1680.32786, 8.5, 3, 40, 43, 30, 21, 20, 20, 203619, 20360, 11908.04597, 578.73563, 6178.99131, 578.01017, 253, 4, 333, 0, 0, 0, 110, 180, 0, 1), 
+(22841, 22841, "Maluk Princess", 0, "", 0, "LineageMonster5.bloody_princess_a", 18, 41, 85, "female", "L2Monster", 40, 18605.69620, 1680.32786, 8.5, 3, 40, 43, 30, 21, 20, 20, 336705, 33738, 10241.37931, 578.73563, 5002.49606, 578.01017, 253, 4, 333, 0, 0, 0, 110, 180, 0, 1), 
+(22842, 22842, "Maluk Banshee", 0, "", 0, "LineageMonster5.twisted_banshee_a", 15, 32, 85, "female", "L2Monster", 40, 18605.69620, 1680.32786, 8.5, 3, 40, 43, 30, 21, 20, 20, 336705, 33738, 10241.37931, 578.73563, 5002.49606, 578.01017, 253, 4, 333, 0, 0, 0, 110, 180, 0, 1), 
+(22843, 22843, "Maluk Sniper ", 0, "", 0, "LineageMonster5.skeleton_sniper_80p", 15, 26, 85, "male", "L2Monster", 1100, 55817.72151, 1680.32786, 8.5, 3, 40, 43, 30, 21, 20, 20, 200088, 19988, 11908.04597, 578.73563, 6178.99131, 578.01017, 253, 4, 333, 15302, 0, 0, 110, 180, 0, 1), 
+(22844, 22844, "Dragon Knight", 0, "", 0, "LineageMonster4.Dragon_archmage_100p", 20, 36, 85, "male", "L2Monster", 40, 18605.69620, 1680.32786, 8.5, 3, 40, 43, 30, 21, 20, 20, 585225, 58916, 10241.37931, 578.73563, 5002.49606, 578.01017, 253, 4, 333, 0, 0, 0, 140, 200, 0, 1), 
+(22845, 22845, "Dragon Knight", 0, "", 0, "LineageMonster4.Dragon_archmage_135p_a", 25, 49.9, 85, "male", "L2Monster", 40, 18605.69620, 1680.32786, 8.5, 3, 40, 43, 30, 21, 20, 20, 589013, 59033, 10241.37931, 578.73563, 5002.49606, 578.01017, 253, 4, 333, 0, 0, 0, 140, 200, 0, 1), 
+(22846, 22846, "Elite Dragon Knight", 0, "", 0, "LineageMonster4.Dragon_archmage_135p_a", 25, 49.9, 85, "male", "L2Monster", 40, 18605.69620, 1680.32786, 8.5, 3, 40, 43, 30, 21, 20, 20, 765812, 76753, 10241.37931, 578.73563, 5002.49606, 578.01017, 253, 4, 333, 0, 0, 0, 140, 200, 0, 1), 
+(22847, 22847, "Dragon Knight Warrior ", 0, "", 0, "LineageMonster4.Dragon_centurion_100p", 20, 33, 85, "male", "L2Monster", 40, 32596.20253, 1680.32786, 8.5, 3, 40, 43, 30, 21, 20, 20, 361543, 38120, 5809.38697, 578.73563, 2837.28165, 578.01017, 253, 4, 333, 13978, 0, 0, 140, 200, 0, 1), 
+(22848, 22848, "Drake Leader", 0, "", 0, "LineageMonster4.Dragon_archmage_135p_a", 29, 49.9, 85, "male", "L2Monster", 40, 55817.72151, 1680.32786, 8.5, 3, 40, 43, 30, 21, 20, 20, 600571, 63323, 11908.04597, 578.73563, 6178.99131, 578.01017, 253, 4, 333, 0, 0, 0, 43, 170, 0, 1), 
+(22849, 22849, "Drake Warrior", 0, "", 0, "LineageMonster4.Dragon_centurion_120p_b", 22, 42, 85, "male", "L2Monster", 40, 18605.69620, 1680.32786, 8.5, 3, 40, 43, 30, 21, 20, 20, 372672, 37354, 10241.37931, 578.73563, 5002.49606, 578.01017, 253, 4, 333, 13979, 13980, 0, 56, 210, 0, 1), 
+(22850, 22850, "Drake Scout", 0, "", 0, "LineageMonster4.dragon_peltast_80p", 18, 36, 85, "male", "L2Monster", 1100, 32596.20253, 1680.32786, 8.5, 3, 40, 43, 30, 21, 20, 20, 135650, 13605, 5809.38697, 578.73563, 2837.28165, 578.01017, 253, 4, 333, 13843, 0, 0, 89, 220, 0, 1), 
+(22851, 22851, "Drake Mage", 0, "", 0, "LineageMonster4.dragon_mage_075p_b", 28, 39.5, 85, "male", "L2Monster", 40, 32596.20253, 1680.32786, 8.5, 3, 40, 43, 30, 21, 20, 20, 342513, 36114, 5809.38697, 578.73563, 2837.28165, 578.01017, 253, 4, 333, 0, 0, 0, 92, 170, 0, 1), 
+(22852, 22852, "Dragon Guard", 0, "", 0, "LineageMonster4.Dragon_eliteguard_075p_a", 40, 55, 85, "male", "L2Monster", 40, 55817.72151, 1680.32786, 8.5, 3, 40, 43, 30, 21, 20, 20, 1031278, 103445, 11908.04597, 578.73563, 6178.99131, 578.01017, 253, 4, 333, 0, 0, 0, 110, 180, 0, 1), 
+(22853, 22853, "Dragon Mage", 0, "", 0, "LineageMonster4.dragon_mage_065p_a", 25, 34.5, 85, "male", "L2Monster", 40, 55817.72151, 1680.32786, 8.5, 3, 40, 43, 30, 21, 20, 20, 548640, 57848, 11908.04597, 578.73563, 6178.99131, 578.01017, 253, 4, 333, 13981, 0, 0, 110, 180, 0, 1), 
+(22854, 22854, "Bloody Karik", 0, "", 0, "LineageMonster5.leader_anakazel_high_a_140p", 24, 57, 86, "male", "L2Monster", 40, 333456.32911, 1712.29508, 8.5, 3, 40, 43, 30, 21, 20, 20, 868728, 88089, 10625.23809, 585.14285, 5160.4876, 584.07494, 253, 4, 333, 0, 0, 0, 110, 180, 0, 1), 
+(22855, 22855, "Bloody Berserker", 0, "", 0, "LineageMonster5.leader_anakazel_low_a_130p", 30, 43, 86, "male", "L2Monster", 40, 333456.32911, 1712.29508, 8.5, 3, 40, 43, 30, 21, 20, 20, 614011, 62855, 10625.23809, 585.14285, 5160.4876, 584.07494, 253, 4, 333, 0, 0, 0, 110, 180, 0, 1), 
+(22856, 22856, "Bloody Karinness", 0, "", 0, "LineageMonster5.leader_anakazel_mid_a_130p", 18, 38, 86, "female", "L2Monster", 40, 333456.32911, 1712.29508, 8.5, 3, 40, 43, 30, 21, 20, 20, 614011, 62855, 10625.23809, 585.14285, 5160.4876, 584.07494, 253, 4, 333, 0, 0, 0, 110, 180, 0, 1), 
+(22857, 22857, "Knoriks", 0, "Land Dragon's Patroller", 0, "LineageMonster6.transform_clanicus", 20, 42, 85, "male", "L2Monster", 40, 334639.87341, 1680.32786, 8.5, 3, 40, 43, 30, 21, 20, 20, 3301929, 348153, 10023.46743, 578.73563, 4898.28788, 578.01017, 253, 4, 333, 0, 0, 0, 54, 180, 0, 1), 
+(22858, 22858, "Necromancer of the Valley", 0, "", 0, "LineageMonster4.floating_skeleton_50p", 16, 45, 82, "male", "L2Monster", 40, 3643.67088, 1586.06557, 8.5, 3, 40, 43, 30, 21, 20, 20, 26974, 2949, 1046.29629, 349.70760, 519.15504, 232.95944, 253, 4, 333, 0, 0, 0, 110, 180, 0, 1), 
+(22859, 22859, "Howl", 0, "Tracker", 0, "LineageMonster2.eligor", 21, 35, 81, "male", "L2Monster", 40, 3462.02531, 1554.91803, 8.5, 3, 40, 43, 30, 21, 20, 20, 25020, 2771, 1003.92156, 345.88235, 500.49337, 229.99035, 253, 4, 333, 0, 0, 0, 140, 200, 0, 1), 
+(22860, 22860, "Hungry Parasitic Leech", 0, "", 0, "LineageMonster.giant_leech_60p", 30, 16, 82, "male", "L2Monster", 40, 18801.26582, 1586.06557, 8.5, 3, 40, 43, 30, 21, 20, 20, 289372, 30117, 10122.31968, 559.64912, 5031.00854, 558.91093, 253, 4, 333, 0, 0, 0, 110, 180, 0, 1), 
+(22861, 22861, "Hard Scorpion Bones", 0, "", 0, "LineageMonster2.scorpion", 28, 66, 83, "male", "L2Monster", 40, 56202.53164, 1617.21311, 8.5, 3, 40, 43, 30, 21, 20, 20, 486444, 52534, 10551.35658, 566.27906, 5640.88861, 565.19252, 253, 4, 333, 0, 0, 0, 110, 180, 0, 1), 
+(22862, 22862, "Drakos Hunter", 0, "", 0, "LineageMonster4.dragon_berserker_090p", 50, 55, 83, "male", "L2Monster", 40, 18734.17721, 1617.21311, 8.5, 3, 40, 43, 30, 21, 20, 20, 410695, 42195, 10162.79069, 566.27906, 5023.68297, 565.19252, 253, 4, 333, 0, 0, 0, 110, 180, 0, 1), 
 (25001, 25001, "Greyclaw Kutus", 0, "Raid Boss", 0, "LineageMonster.ol_mahum_champion_50_bi", 21, 43.5, 23, "male", "L2RaidBoss", 40, 40330.259723, 231.96, 17.534747, 1.5, 60, 57, 73, 76, 70, 80, 2690117, 69902, 62.85328, 286.94928, 3.96218, 139.98, 253, 4, 333, 67, 633, 0, 50, 170, 0, 1), 
 (25002, 25002, "Guard of Kutus", 0, "Raid Fighter", 0, "LineageMonster.ol_mahum", 13.5, 25, 22, "male", "L2Monster", 40, 4185.613808, 218.52, 17.157688, 1.5, 40, 43, 30, 21, 20, 20, 0, 0, 154.1203, 138.98541, 25.8557, 135.6, 253, 4, 333, 7, 0, 0, 50, 170, 0, 1), 
 (25003, 25003, "Pawn of Kutus", 0, "Raid Fighter", 0, "LineageMonster.ol_mahum", 13.5, 25, 22, "male", "L2Monster", 40, 6247.184788, 218.52, 17.157688, 1.5, 40, 43, 30, 21, 20, 20, 0, 0, 231.18622, 138.98541, 58.17787, 135.6, 253, 4, 333, 123, 0, 0, 50, 170, 0, 1), 
@@ -5668,23 +5668,23 @@ INSERT INTO `npc` VALUES
 (25715, 25715, "Kietch's Subordinate", 0, "", 0, "LineageMonster3.Death_Blader_Raid", 15, 32.5, 84, "male", "L2Monster", 40, 19178.966176, 1812, 196.571121, 3, 40, 43, 30, 21, 20, 20, 0, 0, 2181.2414, 644.16101, 1494.87319, 628.49211, 253, 4, 333, 0, 0, 0, 60, 170, 0, 1), 
 (25716, 25716, "Tears", 0, "Ice", 0, "LineageMonster4.tears", 20, 27.5, 84, "female", "L2RaidBoss", 40, 1360985.813638, 18120, 154.089581, 30, 60, 57, 73, 76, 70, 80, 2039317, 1217980, 5380.73978, 644.16101, 3682.33073, 345.95343, 253, 4, 333, 9638, 9638, 0, 60, 180, 0, 1), 
 (25717, 25717, "Tears", 0, "Ice", 0, "LineageMonster4.tears", 20, 27.5, 84, "female", "L2Monster", 40, 1360985.813638, 18120, 154.089581, 30, 40, 43, 30, 21, 20, 20, 0, 0, 215.22959, 644.16101, 147.29323, 345.95343, 253, 4, 333, 9638, 9638, 0, 60, 180, 0, 1), 
-(25718, 25718, "Emerald Horn", 0, "Raid Boss", 0, "LineageMonster4.drac_raid", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(25719, 25719, "Dust Rider", 0, "Raid Boss", 0, "LineageMonster4.Mutant_drake_raid", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(25720, 25720, "Bleeding Fly", 0, "Raid Boss", 0, "LineageMonster4.m_drake_wing_knave_raid", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(25721, 25721, "Blackdagger Wing", 0, "Raid Boss", 0, "LineageMonster4.mutant_drake_wing_raid", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(25722, 25722, "Shadow Summoner", 0, "Raid Boss", 0, "LineageMonster4.dragon_shadow_raid", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(25723, 25723, "Spike Slasher", 0, "Raid Boss", 0, "LineageMonster3.antaras_ex_b_tr_raid", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(25724, 25724, "Muscle Bomber", 0, "Raid Boss", 0, "LineageMonster4.dragon_berserker_raid", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(25725, 25725, "Drake Lord", 0, "Raid Boss", 0, "LineageMonster6.transform_clodecus", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(25726, 25726, "Behemoth Leader", 0, "Raid Boss", 0, "LineageMonster3.antaras_ex_a_raid", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(25727, 25727, "Dragon Beast", 0, "Raid Boss", 0, "LineageMonster.kaim_vanul_50_bi_a", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(25728, 25728, "Death Knight", 0, "", 0, "LineageMonster.death_knight", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(25729, 25729, "Death Knight", 0, "", 0, "LineageMonster.death_knight", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(25730, 25730, "Demon's Banquet", 0, "", 0, "LineageMonster.skeleton", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(25731, 25731, "Demon's Banquet", 0, "", 0, "LineageMonster.skeleton", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(25732, 25732, "Dragon Beast", 0, "Raid Boss", 0, "LineageMonster.kaim_vanul_50_bi_a", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(25733, 25733, "Gem Dragon", 0, "", 0, "LineageMonster3.antaras_ex_b_tr", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(25734, 25734, "Parasitic Leech", 0, "", 0, "LineageMonster.giant_leech_60p", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
+(25718, 25718, "Emerald Horn", 0, "Raid Boss", 0, "LineageMonster4.drac_raid", 60, 77, 84, "male", "L2RaidBoss", 40, 3750258.22784, 16486.06557, 186.305573, 30, 40, 43, 30, 21, 20, 20, 14073898, 1903975, 17804.43159, 1073.4104, 20748.69371, 476.64171, 253, 4, 333, 0, 0, 0, 110, 180, 0, 1), 
+(25719, 25719, "Dust Rider", 0, "Raid Boss", 0, "LineageMonster4.Mutant_drake_raid", 48, 53.5, 84, "male", "L2RaidBoss", 40, 3187719.62025, 16486.06557, 186.305573, 30, 40, 43, 30, 21, 20, 20, 17240525, 2332370, 19782.75529, 1073.4104, 20748.69371, 476.64171, 253, 4, 333, 0, 0, 0, 110, 180, 0, 1), 
+(25720, 25720, "Bleeding Fly", 0, "Raid Boss", 0, "LineageMonster4.m_drake_wing_knave_raid", 70, 150, 84, "male", "L2RaidBoss", 40, 3750258.22784, 16486.06557, 186.305573, 30, 40, 43, 30, 21, 20, 20, 19351609, 2617966, 19782.75529, 1073.4104, 23054.10413, 476.64171, 253, 4, 333, 0, 0, 0, 110, 180, 0, 1), 
+(25721, 25721, "Blackdagger Wing", 0, "Raid Boss", 0, "LineageMonster4.mutant_drake_wing_raid", 112, 150, 84, "male", "L2RaidBoss", 40, 3750258.22784, 16486.06557, 186.305573, 30, 40, 43, 30, 21, 20, 20, 21110846, 2855963, 19782.75529, 1073.4104, 18441.75553, 476.64171, 253, 4, 333, 0, 0, 0, 110, 180, 0, 1), 
+(25722, 25722, "Shadow Summoner", 0, "Raid Boss", 0, "LineageMonster4.dragon_shadow_raid", 60, 80, 84, "male", "L2RaidBoss", 40, 3750258.22784, 16486.06557, 186.305573, 30, 40, 43, 30, 21, 20, 20, 22870084, 3093960, 17804.43159, 1073.4104, 20748.69371, 476.64171, 253, 4, 333, 0, 0, 0, 110, 180, 0, 1), 
+(25723, 25723, "Spike Slasher", 0, "Raid Boss", 0, "LineageMonster3.antaras_ex_b_tr_raid", 55, 55, 84, "male", "L2RaidBoss", 40, 2625181.01265, 16486.06557, 186.305573, 30, 40, 43, 30, 21, 20, 20, 24629321, 3331957, 17804.43159, 1073.4104, 18441.75553, 476.64171, 253, 4, 333, 0, 0, 0, 110, 180, 0, 1), 
+(25724, 25724, "Muscle Bomber", 0, "Raid Boss", 0, "LineageMonster4.dragon_berserker_raid", 60, 80, 84, "male", "L2RaidBoss", 40, 3750258.22784, 16486.06557, 186.305573, 30, 40, 43, 30, 21, 20, 20, 26388558, 3569954, 23738.921, 1288.4393, 22130.31034, 571.87529, 253, 4, 333, 0, 0, 0, 110, 180, 0, 1), 
+(25725, 25725, "Drake Lord", 0, "Raid Boss", 0, "LineageMonster6.transform_clodecus", 20, 51, 85, "male", "L2RaidBoss", 40, 3902308.86075, 16802.45901, 186.305573, 30, 40, 43, 30, 21, 20, 20, 0, 0, 15217.43295, 1875.86206, 16503.65587, 483.32391, 253, 4, 333, 0, 0, 0, 110, 180, 0, 1), 
+(25726, 25726, "Behemoth Leader", 0, "Raid Boss", 0, "LineageMonster3.antaras_ex_a_raid", 63, 54, 85, "male", "L2RaidBoss", 40, 3902308.86075, 16802.45901, 186.305573, 30, 40, 43, 30, 21, 20, 20, 0, 0, 15217.43295, 1875.86206, 16503.65587, 483.32391, 253, 4, 333, 0, 0, 0, 110, 180, 0, 1), 
+(25727, 25727, "Dragon Beast", 0, "Raid Boss", 0, "LineageMonster.kaim_vanul_50_bi_a", 50, 84, 85, "male", "L2RaidBoss", 40, 3902308.86075, 16802.45901, 186.305573, 30, 40, 43, 30, 21, 20, 20, 0, 0, 11412.83524, 1875.86206, 10315.09955, 483.32391, 253, 4, 333, 0, 0, 0, 110, 180, 0, 1), 
+(25728, 25728, "Death Knight", 0, "", 0, "LineageMonster.death_knight", 12, 30, 40, "male", "L2Monster", 40, 2444, 2444, 0, 0, 40, 43, 30, 21, 20, 20, 0, 0, 500, 500, 500, 500, 278, 1, 333, 127, 0, 0, 70, 120, 0, 1), 
+(25729, 25729, "Death Knight", 0, "", 0, "LineageMonster.death_knight", 12, 30, 40, "male", "L2Monster", 40, 2444, 2444, 0, 0, 40, 43, 30, 21, 20, 20, 0, 0, 500, 500, 500, 500, 278, 1, 333, 127, 0, 0, 70, 120, 0, 1), 
+(25730, 25730, "Demon's Banquet", 0, "", 0, "LineageMonster.skeleton", 11, 25, 40, "male", "L2Monster", 40, 2444, 2444, 0, 0, 40, 43, 30, 21, 20, 20, 0, 0, 500, 500, 500, 500, 278, 1, 333, 946, 945, 0, 90, 110, 0, 1), 
+(25731, 25731, "Demon's Banquet", 0, "", 0, "LineageMonster.skeleton", 11, 25, 40, "male", "L2Monster", 40, 2444, 2444, 0, 0, 40, 43, 30, 21, 20, 20, 0, 0, 500, 500, 500, 500, 278, 1, 333, 946, 945, 0, 90, 110, 0, 1), 
+(25732, 25732, "Dragon Beast", 0, "Raid Boss", 0, "LineageMonster.kaim_vanul_50_bi_a", 50, 84, 40, "male", "L2Monster", 40, 2444, 2444, 0, 0, 40, 43, 30, 21, 20, 20, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 30, 90, 0, 1), 
+(25733, 25733, "Gem Dragon", 0, "", 0, "LineageMonster3.antaras_ex_b_tr", 16, 24, 83, "male", "L2Monster", 40, 93670, 1777, 0, 0, 40, 43, 30, 21, 20, 20, 285853, 29384, 12502, 548, 8624, 728, 278, 1, 333, 0, 0, 0, 60, 200, 0, 1), 
+(25734, 25734, "Parasitic Leech", 0, "", 0, "LineageMonster.giant_leech_60p", 30, 16, 83, "male", "L2Monster", 40, 93670, 1777, 0, 0, 40, 43, 30, 21, 20, 20, 287945, 29610, 12052, 548, 8624, 728, 278, 1, 333, 0, 0, 0, 110, 180, 0, 1), 
 (25735, 25735, "Greyclaw Kutus", 0, "Lord of Destruction", 0, "LineageMonster.ol_mahum_champion_50_bi", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
 (25736, 25736, "Kutus' Guard", 0, "Follower of Destruction", 0, "LineageMonster.ol_mahum", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
 (25737, 25737, "Kutus' Pawn", 0, "Follower of Destruction", 0, "LineageMonster.ol_mahum", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
@@ -6218,7 +6218,7 @@ INSERT INTO `npc` VALUES
 (29065, 29065, "Sailren", 0, "Sealed Evil Power", 0, "LineageMonster3.sailren", 100, 82.1, 80, "male", "L2RaidBoss", 40, 689061.278162, 2051.19, 264.82407, 3.21, 60, 57, 73, 76, 70, 80, 4569145, 592766, 3316.12759, 1185.644, 1426.64875, 578.3992, 253, 1, 333, 0, 0, 0, 41, 185, 0, 1), 
 (29066, 29066, "Antharas", 0, "", 0, "LineageMonster.antaras", 300, 300, 79, "male", "L2GrandBoss", 40, 6100000, 1800000, 1100, 1000, 60, 57, 73, 76, 70, 80, 262720918, 29116376, 4900, 3456, 2550, 862.5, 253, 4, 333, 0, 0, 0, 50, 186, 0, 1), 
 (29067, 29067, "Antharas", 0, "", 0, "LineageMonster.antaras", 300, 300, 79, "male", "L2GrandBoss", 40, 6800000, 1800000, 1100, 1000, 60, 57, 73, 76, 70, 80, 354676030, 39307416, 4900, 3456, 2550, 862.5, 253, 4, 333, 0, 0, 0, 50, 186, 0, 1), 
-(29068, 29068, "Antharas", 0, "Earth Dragon", 0, "LineageMonster.antaras", 300, 300, 85, "male", "L2GrandBoss", 40, 85998875.663273, 1800000, 1830, 1000, 60, 57, 73, 76, 70, 80, 538538585, 52769503, 13352.75508, 4748.07779, 4596.82031, 1184.95863, 253, 4, 333, 0, 0, 0, 50, 186, 0, 1), 
+(29068, 29068, "Antharas", 0, "Earth Dragon", 0, "LineageMonster.antaras", 300, 300, 85, "male", "L2GrandBoss", 40, 26387521.42857, 900000, 1830, 1000, 60, 57, 73, 76, 70, 80, 538538585, 63323403, 4799.20533, 3974.13793, 263.60854, 496.01325, 253, 4, 333, 0, 0, 0, 50, 186, 0, 1), 
 (29069, 29069, "Behemoth Dragon", 0, "", 0, "LineageMonster3.antaras_ex_a", 63, 54, 85, "male", "L2Monster", 40, 401551.69672, 1809, 76.71, 3, 60, 57, 73, 76, 70, 80, 0, 0, 3584.56902, 1071.29474, 1386.66, 522.62686, 253, 4, 333, 0, 0, 0, 180, 180, 0, 1), 
 (29070, 29070, "Dragon Bomber", 0, "", 0, "LineageMonster3.antaras_ex_b_80p", 37, 28, 85, "male", "L2Monster", 40, 1353.6766, 1809, 8.5, 3, 60, 57, 73, 76, 70, 80, 0, 0, 1094.11758, 357.09825, 4902.24, 261.309, 253, 4, 333, 0, 0, 0, 200, 250, 0, 1), 
 (29071, 29071, "Dragon Bomber", 0, "", 0, "LineageMonster3.antaras_ex_b_80p", 37, 28, 78, "male", "L2Monster", 40, 1000, 1607.4, 8.5, 3, 60, 57, 73, 76, 70, 80, 0, 0, 855.81387, 332.70061, 584.40994, 243.45587, 253, 4, 333, 0, 0, 0, 200, 245, 0, 1), 
@@ -8895,14 +8895,14 @@ INSERT INTO `npc` VALUES
 (32861, 32861, "Sophia", 0, "Library Director of Saints", 0, "LineageNPC.a_mageguild_teacher_FElf", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
 (32862, 32862, "Gruff-looking Man", 0, "", 0, "LineageNPC.a_mageguild_teacher_MDarkElf", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
 (32863, 32863, "Sophia", 0, "Library Director of Saints", 0, "LineageNPC.a_mageguild_teacher_FElf", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(32864, 32864, "Separated Soul", 0, "", 0, "LineageNPC.a_temple_master_Mhuman", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(32865, 32865, "Separated Soul", 0, "", 0, "LineageNPC.a_temple_master_Mhuman", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(32866, 32866, "Separated Soul", 0, "", 0, "LineageNPC.a_temple_master_Mhuman", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(32867, 32867, "Separated Soul", 0, "", 0, "LineageNPC.a_temple_master_Mhuman", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(32868, 32868, "Separated Soul", 0, "", 0, "LineageNPC.a_temple_master_Mhuman", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(32869, 32869, "Separated Soul", 0, "", 0, "LineageNPC.a_temple_master_Mhuman", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(32870, 32870, "Separated Soul", 0, "", 0, "LineageNPC.a_temple_master_Mhuman", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(32871, 32871, "Dragon Vortex", 0, "", 0, "LineageNPC.collision_dummy_dragon", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
+(32864, 32864, "Separated Soul", 0, "", 0, "LineageNPC.a_temple_master_Mhuman", 8, 22.5, 80, "male", "L2Teleporter", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
+(32865, 32865, "Separated Soul", 0, "", 0, "LineageNPC.a_temple_master_Mhuman", 8, 22.5, 80, "male", "L2Teleporter", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
+(32866, 32866, "Separated Soul", 0, "", 0, "LineageNPC.a_temple_master_Mhuman", 8, 22.5, 80, "male", "L2Teleporter", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
+(32867, 32867, "Separated Soul", 0, "", 0, "LineageNPC.a_temple_master_Mhuman", 8, 22.5, 80, "male", "L2Teleporter", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
+(32868, 32868, "Separated Soul", 0, "", 0, "LineageNPC.a_temple_master_Mhuman", 8, 22.5, 80, "male", "L2Teleporter", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
+(32869, 32869, "Separated Soul", 0, "", 0, "LineageNPC.a_temple_master_Mhuman", 8, 22.5, 80, "male", "L2Teleporter", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
+(32870, 32870, "Separated Soul", 0, "", 0, "LineageNPC.a_temple_master_Mhuman", 8, 22.5, 80, "male", "L2Teleporter", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
+(32871, 32871, "Dragon Vortex", 0, "", 0, "LineageNPC.collision_dummy_dragon", 120, 50, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 1, 1, 0, 1), 
 (32872, 32872, "Tightly Shut Door", 0, "", 0, "LineageNPC.camera_target_dummy", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
 (32873, 32873, "Cracked Wall", 0, "", 0, "LineageNPC.camera_target_dummy", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
 (32874, 32874, "Lyann", 0, "Recipe Merchant", 0, "LineageNPC.e_traderA_FDwarf", 7, 18.5, 70, "female", "L2Merchant", 40, 2444.46819, 1345.8, 7.5, 2.7, 40, 43, 30, 21, 20, 20, 0, 0, 688.86373, 295.91597, 470.40463, 216.53847, 253, 4, 333, 0, 0, 0, 50, 120, 0, 1), 
@@ -8921,8 +8921,8 @@ INSERT INTO `npc` VALUES
 (32887, 32887, "Metar", 0, "Recipe Merchant", 0, "LineageNPC.e_traderB_master_MDwarf", 8, 17, 70, "male", "L2Merchant", 40, 2444.46819, 1345.8, 7.5, 2.7, 40, 43, 30, 21, 20, 20, 0, 0, 688.86373, 295.91597, 470.40463, 216.53847, 253, 4, 333, 0, 0, 0, 50, 120, 0, 1), 
 (32888, 32888, "Jude van Etina's Evil Thoughts", 0, "Solina's Disciple", 0, "LineageNpc2.udit_van_etina", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
 (32889, 32889, "Jude van Etina's Evil Thoughts", 0, "Solina's Disciple", 0, "LineageNpc2.udit_van_etina", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(32890, 32890, "Ruiman", 0, "Warehouse Keeper of the Valley", 0, "LineageNPC.e_warehouse_master_MDwarf", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
-(32891, 32891, "Separated Soul", 0, "", 0, "LineageNPC.a_temple_master_Mhuman", 25, 35, 80, "male", "L2Npc", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
+(32890, 32890, "Ruiman", 0, "Warehouse Keeper of the Valley", 0, "LineageNPC.e_warehouse_master_MDwarf", 8, 17.5, 80, "male", "L2Warehouse", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
+(32891, 32891, "Separated Soul", 0, "", 0, "LineageNPC.a_temple_master_Mhuman", 8, 22.5, 80, "male", "L2Teleporter", 40, 2444, 2444, 0, 0, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 1, 333, 0, 0, 0, 60, 160, 0, 1), 
 (35010, 35010, "Mercenary", 0, "", 0, "LineageNPC.a_guard_MHuman", 8, 24, 67, "male", "L2Defender", 40, 2295.48154, 1251, 7.5, 2.7, 40, 43, 30, 21, 20, 20, 449, 1, 624.93199, 281.55251, 426.74754, 206.02791, 253, 4, 333, 128, 628, 0, 50, 195, 0, 1), 
 (35011, 35011, "Mercenary", 0, "", 0, "LineageNPC.a_guard_MHuman", 8, 24, 67, "male", "L2Defender", 80, 2295.48154, 1251, 7.5, 2.7, 40, 43, 30, 21, 20, 20, 449, 1, 624.93199, 281.55251, 426.74754, 206.02791, 253, 4, 333, 93, 0, 0, 50, 195, 0, 1), 
 (35012, 35012, "Mercenary", 0, "", 0, "LineageNPC.a_guard_MHuman", 8, 24, 67, "male", "L2Defender", 1100, 2295.48154, 1251, 7.5, 2.7, 40, 43, 30, 21, 20, 20, 449, 1, 624.93199, 281.55251, 426.74754, 206.02791, 253, 8, 333, 280, 0, 0, 50, 195, 0, 1), 
diff --git a/L2J_DataPack_BETA/dist/sql/game/npc_elementals.sql b/L2J_DataPack_BETA/dist/sql/game/npc_elementals.sql
index fbc68029ce..a6db295176 100644
--- a/L2J_DataPack_BETA/dist/sql/game/npc_elementals.sql
+++ b/L2J_DataPack_BETA/dist/sql/game/npc_elementals.sql
@@ -4883,56 +4883,56 @@ INSERT INTO `npc_elementals` VALUES
 (22810, 0, 0, 20, 20, 20, 20, 20, 20), -- Micro Scout Golem
 (22811, 0, 0, 20, 20, 20, 20, 20, 20), -- Great Chaos Golem
 (22812, 0, 0, 20, 20, 20, 20, 20, 20), -- Boom Golem
-(22813, 0, 0, 20, 20, 20, 20, 20, 20), -- Demon's Banquet
-(22814, 0, 0, 20, 20, 20, 20, 20, 20), -- Demon's Banquet
-(22815, 0, 0, 20, 20, 20, 20, 20, 20), -- Drakos
-(22816, 0, 0, 20, 20, 20, 20, 20, 20), -- Maluk Maiden of the Valley
-(22817, 0, 0, 20, 20, 20, 20, 20, 20), -- Maluk Summoner of the Valley
-(22818, 0, 0, 20, 20, 20, 20, 20, 20), -- Exploding Orc Ghost
-(22819, 0, 0, 20, 20, 20, 20, 20, 20), -- Wrathful Orc Ghost
-(22820, 0, 0, 20, 20, 20, 20, 20, 20), -- Mesmer Drake
-(22821, 0, 0, 20, 20, 20, 20, 20, 20), -- Immortal Necromancer
-(22822, 0, 0, 20, 20, 20, 20, 20, 20), -- Drakos Warrior
-(22823, 0, 0, 20, 20, 20, 20, 20, 20), -- Drakos Assassin
-(22824, 0, 0, 20, 20, 20, 20, 20, 20), -- Drakos Guardian
-(22825, 0, 0, 20, 20, 20, 20, 20, 20), -- Giant Noxious Scorpion
-(22826, 0, 0, 20, 20, 20, 20, 20, 20), -- Noxious Scorpion
-(22827, 0, 0, 20, 20, 20, 20, 20, 20), -- Batwing Drake
-(22828, 0, 0, 20, 20, 20, 20, 20, 20), -- Parasitic Leech
-(22829, 0, 0, 20, 20, 20, 20, 20, 20), -- Emerald Drake
-(22830, 0, 0, 20, 20, 20, 20, 20, 20), -- Gem Dragon
-(22831, 0, 0, 20, 20, 20, 20, 20, 20), -- Dragon Tracker of the Valley
-(22832, 0, 0, 20, 20, 20, 20, 20, 20), -- Dragon Scout of the Valley
-(22833, 0, 0, 20, 20, 20, 20, 20, 20), -- Sand Drake Tracker
-(22834, 0, 0, 20, 20, 20, 20, 20, 20), -- Dust Dragon Tracker
-(22835, 0, 0, 20, 20, 20, 20, 20, 20), -- Magma Drake Mother
-(22836, 0, 0, 20, 20, 20, 20, 20, 20), -- Magma Drake Hatchling
-(22837, 0, 0, 20, 20, 20, 20, 20, 20), -- Gem Dragon Hatchling
-(22838, 0, 0, 20, 20, 20, 20, 20, 20), -- Maluk Leader
-(22839, 0, 0, 20, 20, 20, 20, 20, 20), -- Maluk Warlord
-(22840, 0, 0, 20, 20, 20, 20, 20, 20), -- Maluk Hunter
-(22841, 0, 0, 20, 20, 20, 20, 20, 20), -- Maluk Princess
-(22842, 0, 0, 20, 20, 20, 20, 20, 20), -- Maluk Banshee
-(22843, 0, 0, 20, 20, 20, 20, 20, 20), -- Maluk Sniper 
-(22844, 0, 0, 20, 20, 20, 20, 20, 20), -- Dragon Knight
-(22845, 0, 0, 20, 20, 20, 20, 20, 20), -- Dragon Knight
-(22846, 0, 0, 20, 20, 20, 20, 20, 20), -- Elite Dragon Knight
-(22847, 0, 0, 20, 20, 20, 20, 20, 20), -- Dragon Knight Warrior 
-(22848, 0, 0, 20, 20, 20, 20, 20, 20), -- Drake Leader
-(22849, 0, 0, 20, 20, 20, 20, 20, 20), -- Drake Warrior
-(22850, 0, 0, 20, 20, 20, 20, 20, 20), -- Drake Scout
-(22851, 0, 0, 20, 20, 20, 20, 20, 20), -- Drake Mage
-(22852, 0, 0, 20, 20, 20, 20, 20, 20), -- Dragon Guard
-(22853, 0, 0, 20, 20, 20, 20, 20, 20), -- Dragon Mage
-(22854, 0, 0, 20, 20, 20, 20, 20, 20), -- Bloody Karik
-(22855, 0, 0, 20, 20, 20, 20, 20, 20), -- Bloody Berserker
-(22856, 0, 0, 20, 20, 20, 20, 20, 20), -- Bloody Karinness
-(22857, 0, 0, 20, 20, 20, 20, 20, 20), -- Knoriks
-(22858, 0, 0, 20, 20, 20, 20, 20, 20), -- Necromancer of the Valley
-(22859, 0, 0, 20, 20, 20, 20, 20, 20), -- Howl
-(22860, 0, 0, 20, 20, 20, 20, 20, 20), -- Hungry Parasitic Leech
-(22861, 0, 0, 20, 20, 20, 20, 20, 20), -- Hard Noxious Scorpion
-(22862, 0, 0, 20, 20, 20, 20, 20, 20), -- Drakos Hunter
+(22813, 5, 100, 100, 100, 100, 100, 60, 140), -- Demon's Banquet
+(22814, 5, 100, 100, 100, 100, 100, 60, 140), -- Demon's Banquet
+(22815, 5, 100, 100, 100, 100, 100, 60, 140), -- Drakos
+(22816, 5, 100, 100, 100, 100, 100, 60, 140), -- Maluk Maiden of the Valley
+(22817, 5, 100, 100, 100, 100, 100, 60, 140), -- Maluk Summoner of the Valley
+(22818, 5, 110, 110, 110, 110, 110, 70, 150), -- Exploding Orc Ghost
+(22819, 5, 110, 110, 110, 110, 110, 70, 150), -- Wrathful Orc Ghost
+(22820, 5, 120, 120, 120, 120, 120, 80, 160), -- Mesmer Drake
+(22821, 5, 120, 120, 120, 120, 120, 80, 160), -- Immortal Necromancer
+(22822, 0, 130, 170, 90, 130, 130, 130, 130), -- Drakos Warrior
+(22823, 0, 130, 170, 90, 130, 130, 130, 130), -- Drakos Assassin
+(22824, 0, 140, 180, 100, 140, 140, 140, 140), -- Drakos Guardian
+(22825, 5, 130, 130, 130, 130, 130, 90, 170), -- Giant Noxious Scorpion
+(22826, 5, 130, 130, 130, 130, 130, 90, 170), -- Noxious Scorpion
+(22827, 3, 140, 140, 140, 100, 180, 140, 140), -- Batwing Drake
+(22828, 1, 130, 90, 170, 130, 130, 130, 130), -- Parasitic Leech
+(22829, 2, 120, 120, 120, 160, 80, 120, 120), -- Emerald Drake
+(22830, 1, 130, 90, 170, 130, 130, 130, 130), -- Gem Dragon
+(22831, 1, 130, 90, 170, 130, 130, 130, 130), -- Dragon Tracker of the Valley
+(22832, 1, 130, 90, 170, 130, 130, 130, 130), -- Dragon Scout of the Valley
+(22833, 3, 130, 130, 130, 90, 170, 130, 130), -- Sand Drake Tracker
+(22834, 3, 140, 140, 140, 100, 180, 140, 140), -- Dust Dragon Tracker
+(22835, 0, 130, 170, 90, 130, 130, 130, 130), -- Magma Drake Mother
+(22836, 0, 130, 170, 90, 130, 130, 130, 130), -- Magma Drake Hatchling
+(22837, 1, 130, 90, 170, 130, 130, 130, 130), -- Gem Dragon Hatchling
+(22838, 5, 150, 150, 150, 150, 150, 110, 190), -- Maluk Leader
+(22839, 5, 150, 150, 150, 150, 150, 110, 190), -- Maluk Warlord
+(22840, 5, 150, 150, 150, 150, 150, 110, 190), -- Maluk Hunter
+(22841, 5, 150, 150, 150, 150, 150, 110, 190), -- Maluk Princess
+(22842, 5, 150, 150, 150, 150, 150, 110, 190), -- Maluk Banshee
+(22843, 5, 150, 150, 150, 150, 150, 110, 190), -- Maluk Sniper 
+(22844, 2, 150, 150, 150, 190, 110, 150, 150), -- Dragon Knight
+(22845, 2, 150, 150, 150, 190, 110, 150, 150), -- Dragon Knight
+(22846, 2, 150, 150, 150, 190, 110, 150, 150), -- Elite Dragon Knight
+(22847, 2, 150, 150, 150, 190, 110, 150, 150), -- Dragon Knight Warrior 
+(22848, 2, 150, 150, 150, 190, 110, 150, 150), -- Drake Leader
+(22849, 2, 150, 150, 150, 190, 110, 150, 150), -- Drake Warrior
+(22850, 2, 150, 150, 150, 190, 110, 150, 150), -- Drake Scout
+(22851, 2, 150, 150, 150, 190, 110, 150, 150), -- Drake Mage
+(22852, 2, 150, 150, 150, 190, 110, 150, 150), -- Dragon Guard
+(22853, 2, 150, 150, 150, 190, 110, 150, 150), -- Dragon Mage
+(22854, 5, 160, 160, 160, 160, 160, 120, 190), -- Bloody Karik
+(22855, 5, 160, 160, 160, 160, 160, 120, 200), -- Bloody Berserker
+(22856, 5, 160, 160, 160, 160, 160, 120, 200), -- Bloody Karinness
+(22857, 5, 180, 180, 180, 180, 180, 140, 220), -- Knoriks
+(22858, 5, 120, 120, 120, 120, 120, 80, 160), -- Necromancer of the Valley
+(22859, 0, 110, 150, 70, 110, 110, 110, 110), -- Howl
+(22860, 1, 120, 80, 160, 120, 120, 120, 120), -- Hungry Parasitic Leech
+(22861, 5, 130, 130, 130, 130, 130, 90, 170), -- Hard Noxious Scorpion
+(22862, 0, 130, 170, 90, 130, 130, 130, 130), -- Drakos Hunter
 (25001, 0, 0, 20, 20, 20, 20, 20, 20), -- Greyclaw Kutus
 (25002, 0, 0, 20, 20, 20, 20, 20, 20), -- Guard of Kutus
 (25003, 0, 0, 20, 20, 20, 20, 20, 20), -- Pawn of Kutus
@@ -5638,16 +5638,16 @@ INSERT INTO `npc_elementals` VALUES
 (25715, 0, 250, 250, 150, 200, 200, 200, 200), -- Kechi's Subordinate
 (25716, 1, 250, 150, 250, 200, 200, 200, 200), -- Tears
 (25717, 1, 250, 150, 250, 200, 200, 200, 200), -- Tears
-(25718, 0, 0, 20, 20, 20, 20, 20, 20), -- Emerald Horn
-(25719, 0, 0, 20, 20, 20, 20, 20, 20), -- Dust Rider
-(25720, 0, 0, 20, 20, 20, 20, 20, 20), -- Bleeding Fly
-(25721, 0, 0, 20, 20, 20, 20, 20, 20), -- Blackdagger Wing
-(25722, 0, 0, 20, 20, 20, 20, 20, 20), -- Shadow Summoner
-(25723, 0, 0, 20, 20, 20, 20, 20, 20), -- Spike Slasher
-(25724, 0, 0, 20, 20, 20, 20, 20, 20), -- Muscle Bomber
-(25725, 0, 0, 20, 20, 20, 20, 20, 20), -- Drake Lord
-(25726, 0, 0, 20, 20, 20, 20, 20, 20), -- Behemoth Leader
-(25727, 0, 0, 20, 20, 20, 20, 20, 20), -- Dragon Beast
+(25718, 2, 300, 240, 240, 290, 190, 240, 240), -- Emerald Horn
+(25719, 3, 300, 240, 240, 190, 290, 240, 240), -- Dust Rider
+(25720, 3, 300, 240, 240, 190, 290, 240, 240), -- Bleeding Fly
+(25721, 5, 300, 240, 240, 240, 240, 190, 290), -- Blackdagger Wing
+(25722, 5, 300, 240, 240, 240, 240, 190, 290), -- Shadow Summoner
+(25723, 1, 300, 190, 290, 240, 240, 240, 240), -- Spike Slasher
+(25724, 0, 300, 290, 190, 240, 240, 240, 240), -- Muscle Bomber
+(25725, 5, 300, 250, 250, 250, 250, 200, 300), -- Drake Lord
+(25726, 2, 300, 250, 250, 300, 200, 250, 250), -- Behemoth Leader
+(25727, 2, 300, 250, 250, 300, 200, 250, 250), -- Dragon Beast
 (25728, 0, 0, 20, 20, 20, 20, 20, 20), -- Death Knight
 (25729, 0, 0, 20, 20, 20, 20, 20, 20), -- Death Knight
 (25730, 0, 0, 20, 20, 20, 20, 20, 20), -- Demon's Banquet
diff --git a/L2J_DataPack_BETA/dist/sql/game/npcaidata.sql b/L2J_DataPack_BETA/dist/sql/game/npcaidata.sql
index c7e100a7ca..0f50c09af8 100644
--- a/L2J_DataPack_BETA/dist/sql/game/npcaidata.sql
+++ b/L2J_DataPack_BETA/dist/sql/game/npcaidata.sql
@@ -4900,54 +4900,54 @@ INSERT INTO `npcaidata` VALUES
 (22812, 7, 15, 0, 300, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 400, 0, "golem_p_clan", 300, "null", 0, 0, "fighter"), -- Boom Golem
 (22813, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Demon's Banquet
 (22814, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Demon's Banquet
-(22815, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Drakos
-(22816, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Maluk Maiden of the Valley
-(22817, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Maluk Summoner of the Valley
-(22818, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Exploding Orc Ghost
-(22819, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Wrathful Orc Ghost
-(22820, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Mesmer Drake
-(22821, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Immortal Necromancer
-(22822, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Drakos Warrior
-(22823, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Drakos Assassin
-(22824, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Drakos Guardian
-(22825, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Giant Noxious Scorpion
-(22826, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Noxious Scorpion
-(22827, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Batwing Drake
-(22828, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Parasitic Leech
-(22829, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Emerald Drake
-(22830, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Gem Dragon
-(22831, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Dragon Tracker of the Valley
-(22832, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Dragon Scout of the Valley
-(22833, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Sand Drake Tracker
-(22834, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Dust Dragon Tracker
-(22835, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Magma Drake Mother
-(22836, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Magma Drake Hatchling
-(22837, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Gem Dragon Hatchling
-(22838, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Maluk Leader
-(22839, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Maluk Warlord
-(22840, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Maluk Hunter
-(22841, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Maluk Princess
-(22842, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Maluk Banshee
-(22843, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Maluk Sniper 
-(22844, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Dragon Knight
-(22845, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Dragon Knight
-(22846, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Elite Dragon Knight
-(22847, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Dragon Knight Warrior 
-(22848, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Drake Leader
-(22849, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Drake Warrior
-(22850, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Drake Scout
-(22851, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Drake Mage
-(22852, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Dragon Guard
-(22853, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Dragon Mage
-(22854, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Bloody Karik
-(22855, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Bloody Berserker
-(22856, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Bloody Karinness
-(22857, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Knoriks
-(22858, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Necromancer of the Valley
-(22859, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Howl
-(22860, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Hungry Parasitic Leech
-(22861, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Hard Noxious Scorpion
-(22862, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Drakos Hunter
+(22815, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 400, 0, "null", 0, "null", 0, 0, "balanced"), -- Drakos
+(22816, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 400, 0, "null", 0, "null", 0, 0, "balanced"), -- Maluk Maiden of the Valley
+(22817, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 400, 0, "null", 0, "null", 0, 0, "balanced"), -- Maluk Summoner of the Valley
+(22818, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 400, 0, "null", 0, "null", 0, 0, "balanced"), -- Exploding Orc Ghost
+(22819, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 400, 0, "null", 0, "null", 0, 0, "balanced"), -- Wrathful Orc Ghost
+(22820, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 400, 0, "null", 0, "null", 0, 0, "balanced"), -- Mesmer Drake
+(22821, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 400, 0, "null", 0, "null", 0, 0, "balanced"), -- Immortal Necromancer
+(22822, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 400, 0, "null", 0, "null", 0, 0, "balanced"), -- Drakos Warrior
+(22823, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 400, 0, "null", 0, "null", 0, 0, "balanced"), -- Drakos Assassin
+(22824, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 400, 0, "null", 0, "null", 0, 0, "balanced"), -- Drakos Guardian
+(22825, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 400, 0, "null", 0, "null", 0, 0, "balanced"), -- Giant Noxious Scorpion
+(22826, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 400, 0, "null", 0, "null", 0, 0, "balanced"), -- Noxious Scorpion
+(22827, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 400, 0, "null", 0, "null", 0, 0, "balanced"), -- Batwing Drake
+(22828, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 400, 0, "null", 0, "null", 0, 0, "balanced"), -- Parasitic Leech
+(22829, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 400, 0, "null", 0, "null", 0, 0, "balanced"), -- Emerald Drake
+(22830, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 400, 0, "null", 0, "null", 0, 0, "balanced"), -- Gem Dragon
+(22831, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 400, 0, "null", 0, "null", 0, 0, "balanced"), -- Dragon Tracker of the Valley
+(22832, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 400, 0, "null", 0, "null", 0, 0, "balanced"), -- Dragon Scout of the Valley
+(22833, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 400, 0, "null", 0, "null", 0, 0, "balanced"), -- Sand Drake Tracker
+(22834, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 400, 0, "null", 0, "null", 0, 0, "balanced"), -- Dust Dragon Tracker
+(22835, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 400, 0, "null", 0, "null", 0, 0, "balanced"), -- Magma Drake Mother
+(22836, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 400, 0, "null", 0, "null", 0, 0, "balanced"), -- Magma Drake Hatchling
+(22837, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 400, 0, "null", 0, "null", 0, 0, "balanced"), -- Gem Dragon Hatchling
+(22838, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 400, 0, "null", 0, "null", 0, 0, "balanced"), -- Maluk Leader
+(22839, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 400, 0, "null", 0, "null", 0, 0, "balanced"), -- Maluk Warlord
+(22840, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 400, 0, "null", 0, "null", 0, 0, "balanced"), -- Maluk Hunter
+(22841, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 400, 0, "null", 0, "null", 0, 0, "balanced"), -- Maluk Princess
+(22842, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 400, 0, "null", 0, "null", 0, 0, "balanced"), -- Maluk Banshee
+(22843, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 400, 0, "null", 0, "null", 0, 0, "balanced"), -- Maluk Sniper 
+(22844, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 400, 0, "null", 0, "null", 0, 0, "balanced"), -- Dragon Knight
+(22845, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 400, 0, "null", 0, "null", 0, 0, "balanced"), -- Dragon Knight
+(22846, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 400, 0, "null", 0, "null", 0, 0, "balanced"), -- Elite Dragon Knight
+(22847, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 400, 0, "null", 0, "null", 0, 0, "balanced"), -- Dragon Knight Warrior 
+(22848, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 400, 0, "null", 0, "null", 0, 0, "balanced"), -- Drake Leader
+(22849, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 400, 0, "null", 0, "null", 0, 0, "balanced"), -- Drake Warrior
+(22850, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 400, 0, "null", 0, "null", 0, 0, "balanced"), -- Drake Scout
+(22851, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 400, 0, "null", 0, "null", 0, 0, "balanced"), -- Drake Mage
+(22852, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 400, 0, "null", 0, "null", 0, 0, "balanced"), -- Dragon Guard
+(22853, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 400, 0, "null", 0, "null", 0, 0, "balanced"), -- Dragon Mage
+(22854, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 400, 0, "null", 0, "null", 0, 0, "balanced"), -- Bloody Karik
+(22855, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 400, 0, "null", 0, "null", 0, 0, "balanced"), -- Bloody Berserker
+(22856, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 400, 0, "null", 0, "null", 0, 0, "balanced"), -- Bloody Karinness
+(22857, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 400, 0, "null", 0, "null", 0, 0, "balanced"), -- Knoriks
+(22858, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 400, 0, "null", 0, "null", 0, 0, "mage"), -- Necromancer of the Valley
+(22859, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 400, 0, "null", 0, "null", 0, 0, "balanced"), -- Howl
+(22860, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 400, 0, "null", 0, "null", 0, 0, "balanced"), -- Hungry Parasitic Leech
+(22861, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 400, 0, "null", 0, "null", 0, 0, "balanced"), -- Hard Noxious Scorpion
+(22862, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 400, 0, "null", 0, "null", 0, 0, "balanced"), -- Drakos Hunter
 (25001, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 0, "balanced"), -- Greyclaw Kutus
 (25002, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 0, "fighter"), -- Guard of Kutus
 (25003, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 300, "null", 0, 0, "fighter"), -- Pawn of Kutus
@@ -5660,9 +5660,9 @@ INSERT INTO `npcaidata` VALUES
 (25722, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Shadow Summoner
 (25723, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Spike Slasher
 (25724, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Muscle Bomber
-(25725, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Drake Lord
-(25726, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Behemoth Leader
-(25727, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Dragon Beast
+(25725, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 400, 0, "null", 0, "null", 0, 0, "fighter"), -- Drake Lord
+(25726, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 400, 0, "null", 0, "null", 0, 0, "fighter"), -- Behemoth Leader
+(25727, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 400, 0, "null", 0, "null", 0, 0, "fighter"), -- Dragon Beast
 (25728, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Death Knight
 (25729, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Death Knight
 (25730, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Demon's Banquet
@@ -8887,7 +8887,7 @@ INSERT INTO `npcaidata` VALUES
 (32868, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Separated Soul
 (32869, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Separated Soul
 (32870, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Separated Soul
-(32871, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Dragon Vortex
+(32871, 7, 15, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Dragon Vortex
 (32872, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Tightly Shut Door
 (32873, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Cracked Wall
 (32874, 7, 15, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "null", 0, "null", 0, 0, "fighter"), -- Lyann
diff --git a/L2J_DataPack_BETA/dist/sql/game/npcskills.sql b/L2J_DataPack_BETA/dist/sql/game/npcskills.sql
index 84f690c889..75ac4b645c 100644
--- a/L2J_DataPack_BETA/dist/sql/game/npcskills.sql
+++ b/L2J_DataPack_BETA/dist/sql/game/npcskills.sql
@@ -8,1013 +8,1013 @@ CREATE TABLE `npcskills` (
 
 INSERT INTO `npcskills` VALUES
 -- Thomas D. Turkey
-(100, 4390, 1), -- Mystic Immunity
-(100, 4408, 1), -- HP Increase (1x)
-(100, 4409, 1), -- MP Increase (1x)
-(100, 4410, 11), -- Average P. Atk.
-(100, 4411, 11), -- Average M. Atk.
-(100, 4412, 11), -- Average P. Def.
-(100, 4413, 11), -- Average M. Def.
-(100, 4414, 2), -- Standard Type
-(100, 4415, 5), -- Blunt Weapons
-(100, 4416, 4), -- Animals
+(100, 4390, 1), -- NPC Abnormal Immunity
+(100, 4408, 1), -- HP Modifiers
+(100, 4409, 1), -- MP Modifiers
+(100, 4410, 11), -- P. Atk. Modifiers
+(100, 4411, 11), -- M. Atk. Modifiers
+(100, 4412, 11), -- P. Def. Modifiers
+(100, 4413, 11), -- M. Def. Modifiers
+(100, 4414, 2), -- Armor Type
+(100, 4415, 5), -- Weapon Type
+(100, 4416, 4), -- Races
 -- 
-(101, 4390, 1), -- Mystic Immunity
-(101, 4408, 1), -- HP Increase (1x)
-(101, 4409, 1), -- MP Increase (1x)
-(101, 4410, 11), -- Average P. Atk.
-(101, 4411, 11), -- Average M. Atk.
-(101, 4412, 11), -- Average P. Def.
-(101, 4413, 11), -- Average M. Def.
-(101, 4414, 2), -- Standard Type
-(101, 4415, 5), -- Blunt Weapons
-(101, 4416, 4), -- Animals
+(101, 4390, 1), -- NPC Abnormal Immunity
+(101, 4408, 1), -- HP Modifiers
+(101, 4409, 1), -- MP Modifiers
+(101, 4410, 11), -- P. Atk. Modifiers
+(101, 4411, 11), -- M. Atk. Modifiers
+(101, 4412, 11), -- P. Def. Modifiers
+(101, 4413, 11), -- M. Def. Modifiers
+(101, 4414, 2), -- Armor Type
+(101, 4415, 5), -- Weapon Type
+(101, 4416, 4), -- Races
 -- Santa Trainee
 (102, 4045, 1), -- Resist Full Magic Attack
-(102, 4408, 1), -- HP Increase (1x)
-(102, 4409, 1), -- MP Increase (1x)
-(102, 4410, 11), -- Average P. Atk.
-(102, 4411, 11), -- Average M. Atk.
-(102, 4412, 11), -- Average P. Def.
-(102, 4413, 11), -- Average M. Def.
-(102, 4414, 2), -- Standard Type
-(102, 4415, 3), -- One-handed Sword
-(102, 4416, 18), -- Dwarves
+(102, 4408, 1), -- HP Modifiers
+(102, 4409, 1), -- MP Modifiers
+(102, 4410, 11), -- P. Atk. Modifiers
+(102, 4411, 11), -- M. Atk. Modifiers
+(102, 4412, 11), -- P. Def. Modifiers
+(102, 4413, 11), -- M. Def. Modifiers
+(102, 4414, 2), -- Armor Type
+(102, 4415, 3), -- Weapon Type
+(102, 4416, 18), -- Races
 -- Christmas Santa
 (103, 4045, 1), -- Resist Full Magic Attack
-(103, 4408, 1), -- HP Increase (1x)
-(103, 4409, 1), -- MP Increase (1x)
-(103, 4410, 11), -- Average P. Atk.
-(103, 4411, 11), -- Average M. Atk.
-(103, 4412, 11), -- Average P. Def.
-(103, 4413, 11), -- Average M. Def.
-(103, 4414, 2), -- Standard Type
-(103, 4415, 3), -- One-handed Sword
-(103, 4416, 18), -- Dwarves
+(103, 4408, 1), -- HP Modifiers
+(103, 4409, 1), -- MP Modifiers
+(103, 4410, 11), -- P. Atk. Modifiers
+(103, 4411, 11), -- M. Atk. Modifiers
+(103, 4412, 11), -- P. Def. Modifiers
+(103, 4413, 11), -- M. Def. Modifiers
+(103, 4414, 2), -- Armor Type
+(103, 4415, 3), -- Weapon Type
+(103, 4416, 18), -- Races
 -- Christmas Santa
 (104, 4045, 1), -- Resist Full Magic Attack
-(104, 4408, 1), -- HP Increase (1x)
-(104, 4409, 1), -- MP Increase (1x)
-(104, 4410, 11), -- Average P. Atk.
-(104, 4411, 11), -- Average M. Atk.
-(104, 4412, 11), -- Average P. Def.
-(104, 4413, 11), -- Average M. Def.
-(104, 4414, 2), -- Standard Type
-(104, 4415, 3), -- One-handed Sword
-(104, 4416, 18), -- Dwarves
+(104, 4408, 1), -- HP Modifiers
+(104, 4409, 1), -- MP Modifiers
+(104, 4410, 11), -- P. Atk. Modifiers
+(104, 4411, 11), -- M. Atk. Modifiers
+(104, 4412, 11), -- P. Def. Modifiers
+(104, 4413, 11), -- M. Def. Modifiers
+(104, 4414, 2), -- Armor Type
+(104, 4415, 3), -- Weapon Type
+(104, 4416, 18), -- Races
 -- Christmas Sled
 (105, 4045, 1), -- Resist Full Magic Attack
-(105, 4408, 1), -- HP Increase (1x)
-(105, 4409, 1), -- MP Increase (1x)
-(105, 4410, 11), -- Average P. Atk.
-(105, 4411, 11), -- Average M. Atk.
-(105, 4412, 11), -- Average P. Def.
-(105, 4413, 11), -- Average M. Def.
-(105, 4414, 2), -- Standard Type
-(105, 4415, 3), -- One-handed Sword
-(105, 4416, 19), -- Others
+(105, 4408, 1), -- HP Modifiers
+(105, 4409, 1), -- MP Modifiers
+(105, 4410, 11), -- P. Atk. Modifiers
+(105, 4411, 11), -- M. Atk. Modifiers
+(105, 4412, 11), -- P. Def. Modifiers
+(105, 4413, 11), -- M. Def. Modifiers
+(105, 4414, 2), -- Armor Type
+(105, 4415, 3), -- Weapon Type
+(105, 4416, 19), -- Races
 -- Birthday Cake
 (106, 4045, 1), -- Resist Full Magic Attack
-(106, 4408, 1), -- HP Increase (1x)
-(106, 4409, 1), -- MP Increase (1x)
-(106, 4410, 11), -- Average P. Atk.
-(106, 4411, 11), -- Average M. Atk.
-(106, 4412, 11), -- Average P. Def.
-(106, 4413, 11), -- Average M. Def.
-(106, 4414, 2), -- Standard Type
-(106, 4415, 3), -- One-handed Sword
-(106, 4416, 19), -- Others
+(106, 4408, 1), -- HP Modifiers
+(106, 4409, 1), -- MP Modifiers
+(106, 4410, 11), -- P. Atk. Modifiers
+(106, 4411, 11), -- M. Atk. Modifiers
+(106, 4412, 11), -- P. Def. Modifiers
+(106, 4413, 11), -- M. Def. Modifiers
+(106, 4414, 2), -- Armor Type
+(106, 4415, 3), -- Weapon Type
+(106, 4416, 19), -- Races
 -- Spirit of Fire
-(107, 4390, 1), -- Mystic Immunity
-(107, 4408, 1), -- HP Increase (1x)
-(107, 4409, 1), -- MP Increase (1x)
-(107, 4410, 11), -- Average P. Atk.
-(107, 4411, 11), -- Average M. Atk.
-(107, 4412, 11), -- Average P. Def.
-(107, 4413, 11), -- Average M. Def.
-(107, 4414, 2), -- Standard Type
-(107, 4415, 5), -- Blunt Weapons
-(107, 4416, 4), -- Animals
+(107, 4390, 1), -- NPC Abnormal Immunity
+(107, 4408, 1), -- HP Modifiers
+(107, 4409, 1), -- MP Modifiers
+(107, 4410, 11), -- P. Atk. Modifiers
+(107, 4411, 11), -- M. Atk. Modifiers
+(107, 4412, 11), -- P. Def. Modifiers
+(107, 4413, 11), -- M. Def. Modifiers
+(107, 4414, 2), -- Armor Type
+(107, 4415, 5), -- Weapon Type
+(107, 4416, 4), -- Races
 -- Reckless Spirit of Fire
-(108, 4390, 1), -- Mystic Immunity
-(108, 4408, 1), -- HP Increase (1x)
-(108, 4409, 1), -- MP Increase (1x)
-(108, 4410, 11), -- Average P. Atk.
-(108, 4411, 11), -- Average M. Atk.
-(108, 4412, 11), -- Average P. Def.
-(108, 4413, 11), -- Average M. Def.
-(108, 4414, 2), -- Standard Type
-(108, 4415, 5), -- Blunt Weapons
-(108, 4416, 4), -- Animals
+(108, 4390, 1), -- NPC Abnormal Immunity
+(108, 4408, 1), -- HP Modifiers
+(108, 4409, 1), -- MP Modifiers
+(108, 4410, 11), -- P. Atk. Modifiers
+(108, 4411, 11), -- M. Atk. Modifiers
+(108, 4412, 11), -- P. Def. Modifiers
+(108, 4413, 11), -- M. Def. Modifiers
+(108, 4414, 2), -- Armor Type
+(108, 4415, 5), -- Weapon Type
+(108, 4416, 4), -- Races
 -- Steve Shyagel
 (109, 4045, 1), -- Resist Full Magic Attack
-(109, 4408, 1), -- HP Increase (1x)
-(109, 4409, 1), -- MP Increase (1x)
-(109, 4410, 11), -- Average P. Atk.
-(109, 4411, 11), -- Average M. Atk.
-(109, 4412, 11), -- Average P. Def.
-(109, 4413, 11), -- Average M. Def.
-(109, 4414, 2), -- Standard Type
-(109, 4415, 3), -- One-handed Sword
-(109, 4416, 18), -- Dwarves
+(109, 4408, 1), -- HP Modifiers
+(109, 4409, 1), -- MP Modifiers
+(109, 4410, 11), -- P. Atk. Modifiers
+(109, 4411, 11), -- M. Atk. Modifiers
+(109, 4412, 11), -- P. Def. Modifiers
+(109, 4413, 11), -- M. Def. Modifiers
+(109, 4414, 2), -- Armor Type
+(109, 4415, 3), -- Weapon Type
+(109, 4416, 18), -- Races
 -- Eva's Obelisk
 (110, 4045, 1), -- Resist Full Magic Attack
-(110, 4408, 1), -- HP Increase (1x)
-(110, 4409, 1), -- MP Increase (1x)
-(110, 4410, 11), -- Average P. Atk.
-(110, 4411, 11), -- Average M. Atk.
-(110, 4412, 11), -- Average P. Def.
-(110, 4413, 11), -- Average M. Def.
-(110, 4414, 2), -- Standard Type
-(110, 4415, 3), -- One-handed Sword
-(110, 4416, 19), -- Others
+(110, 4408, 1), -- HP Modifiers
+(110, 4409, 1), -- MP Modifiers
+(110, 4410, 11), -- P. Atk. Modifiers
+(110, 4411, 11), -- M. Atk. Modifiers
+(110, 4412, 11), -- P. Def. Modifiers
+(110, 4413, 11), -- M. Def. Modifiers
+(110, 4414, 2), -- Armor Type
+(110, 4415, 3), -- Weapon Type
+(110, 4416, 19), -- Races
 -- 
-(111, 4390, 1), -- Mystic Immunity
-(111, 4408, 1), -- HP Increase (1x)
-(111, 4409, 1), -- MP Increase (1x)
-(111, 4410, 11), -- Average P. Atk.
-(111, 4411, 11), -- Average M. Atk.
-(111, 4412, 11), -- Average P. Def.
-(111, 4413, 11), -- Average M. Def.
-(111, 4414, 2), -- Standard Type
-(111, 4415, 5), -- Blunt Weapons
-(111, 4416, 4), -- Animals
+(111, 4390, 1), -- NPC Abnormal Immunity
+(111, 4408, 1), -- HP Modifiers
+(111, 4409, 1), -- MP Modifiers
+(111, 4410, 11), -- P. Atk. Modifiers
+(111, 4411, 11), -- M. Atk. Modifiers
+(111, 4412, 11), -- P. Def. Modifiers
+(111, 4413, 11), -- M. Def. Modifiers
+(111, 4414, 2), -- Armor Type
+(111, 4415, 5), -- Weapon Type
+(111, 4416, 4), -- Races
 -- Friendly Sno
-(112, 4408, 1), -- HP Increase (1x)
-(112, 4409, 1), -- MP Increase (1x)
-(112, 4410, 11), -- Average P. Atk.
-(112, 4411, 11), -- Average M. Atk.
-(112, 4412, 11), -- Average P. Def.
-(112, 4413, 11), -- Average M. Def.
-(112, 4414, 2), -- Standard Type
-(112, 4415, 1), -- Bare Hands
-(112, 4416, 7), -- Spirits
+(112, 4408, 1), -- HP Modifiers
+(112, 4409, 1), -- MP Modifiers
+(112, 4410, 11), -- P. Atk. Modifiers
+(112, 4411, 11), -- M. Atk. Modifiers
+(112, 4412, 11), -- P. Def. Modifiers
+(112, 4413, 11), -- M. Def. Modifiers
+(112, 4414, 2), -- Armor Type
+(112, 4415, 1), -- Weapon Type
+(112, 4416, 7), -- Races
 -- Friendly Sno
-(113, 4408, 1), -- HP Increase (1x)
-(113, 4409, 1), -- MP Increase (1x)
-(113, 4410, 11), -- Average P. Atk.
-(113, 4411, 11), -- Average M. Atk.
-(113, 4412, 11), -- Average P. Def.
-(113, 4413, 11), -- Average M. Def.
-(113, 4414, 2), -- Standard Type
-(113, 4415, 1), -- Bare Hands
-(113, 4416, 7), -- Spirits
+(113, 4408, 1), -- HP Modifiers
+(113, 4409, 1), -- MP Modifiers
+(113, 4410, 11), -- P. Atk. Modifiers
+(113, 4411, 11), -- M. Atk. Modifiers
+(113, 4412, 11), -- P. Def. Modifiers
+(113, 4413, 11), -- M. Def. Modifiers
+(113, 4414, 2), -- Armor Type
+(113, 4415, 1), -- Weapon Type
+(113, 4416, 7), -- Races
 -- Friendly Sno
-(114, 4408, 1), -- HP Increase (1x)
-(114, 4409, 1), -- MP Increase (1x)
-(114, 4410, 11), -- Average P. Atk.
-(114, 4411, 11), -- Average M. Atk.
-(114, 4412, 11), -- Average P. Def.
-(114, 4413, 11), -- Average M. Def.
-(114, 4414, 2), -- Standard Type
-(114, 4415, 1), -- Bare Hands
-(114, 4416, 7), -- Spirits
+(114, 4408, 1), -- HP Modifiers
+(114, 4409, 1), -- MP Modifiers
+(114, 4410, 11), -- P. Atk. Modifiers
+(114, 4411, 11), -- M. Atk. Modifiers
+(114, 4412, 11), -- P. Def. Modifiers
+(114, 4413, 11), -- M. Def. Modifiers
+(114, 4414, 2), -- Armor Type
+(114, 4415, 1), -- Weapon Type
+(114, 4416, 7), -- Races
 -- Friendly Sno
-(115, 4408, 1), -- HP Increase (1x)
-(115, 4409, 1), -- MP Increase (1x)
-(115, 4410, 11), -- Average P. Atk.
-(115, 4411, 11), -- Average M. Atk.
-(115, 4412, 11), -- Average P. Def.
-(115, 4413, 11), -- Average M. Def.
-(115, 4414, 2), -- Standard Type
-(115, 4415, 1), -- Bare Hands
-(115, 4416, 7), -- Spirits
+(115, 4408, 1), -- HP Modifiers
+(115, 4409, 1), -- MP Modifiers
+(115, 4410, 11), -- P. Atk. Modifiers
+(115, 4411, 11), -- M. Atk. Modifiers
+(115, 4412, 11), -- P. Def. Modifiers
+(115, 4413, 11), -- M. Def. Modifiers
+(115, 4414, 2), -- Armor Type
+(115, 4415, 1), -- Weapon Type
+(115, 4416, 7), -- Races
 -- Friendly Sno
-(116, 4408, 1), -- HP Increase (1x)
-(116, 4409, 1), -- MP Increase (1x)
-(116, 4410, 11), -- Average P. Atk.
-(116, 4411, 11), -- Average M. Atk.
-(116, 4412, 11), -- Average P. Def.
-(116, 4413, 11), -- Average M. Def.
-(116, 4414, 2), -- Standard Type
-(116, 4415, 1), -- Bare Hands
-(116, 4416, 7), -- Spirits
+(116, 4408, 1), -- HP Modifiers
+(116, 4409, 1), -- MP Modifiers
+(116, 4410, 11), -- P. Atk. Modifiers
+(116, 4411, 11), -- M. Atk. Modifiers
+(116, 4412, 11), -- P. Def. Modifiers
+(116, 4413, 11), -- M. Def. Modifiers
+(116, 4414, 2), -- Armor Type
+(116, 4415, 1), -- Weapon Type
+(116, 4416, 7), -- Races
 -- Friendly Sno
-(117, 4408, 1), -- HP Increase (1x)
-(117, 4409, 1), -- MP Increase (1x)
-(117, 4410, 11), -- Average P. Atk.
-(117, 4411, 11), -- Average M. Atk.
-(117, 4412, 11), -- Average P. Def.
-(117, 4413, 11), -- Average M. Def.
-(117, 4414, 2), -- Standard Type
-(117, 4415, 1), -- Bare Hands
-(117, 4416, 7), -- Spirits
+(117, 4408, 1), -- HP Modifiers
+(117, 4409, 1), -- MP Modifiers
+(117, 4410, 11), -- P. Atk. Modifiers
+(117, 4411, 11), -- M. Atk. Modifiers
+(117, 4412, 11), -- P. Def. Modifiers
+(117, 4413, 11), -- M. Def. Modifiers
+(117, 4414, 2), -- Armor Type
+(117, 4415, 1), -- Weapon Type
+(117, 4416, 7), -- Races
 -- Uldie
 (118, 4045, 1), -- Resist Full Magic Attack
-(118, 4390, 1), -- Mystic Immunity
-(118, 4408, 1), -- HP Increase (1x)
-(118, 4409, 1), -- MP Increase (1x)
-(118, 4410, 11), -- Average P. Atk.
-(118, 4411, 11), -- Average M. Atk.
-(118, 4412, 11), -- Average P. Def.
-(118, 4413, 11), -- Average M. Def.
-(118, 4414, 2), -- Standard Type
-(118, 4415, 1), -- Bare Hands
-(118, 4416, 7), -- Spirits
+(118, 4390, 1), -- NPC Abnormal Immunity
+(118, 4408, 1), -- HP Modifiers
+(118, 4409, 1), -- MP Modifiers
+(118, 4410, 11), -- P. Atk. Modifiers
+(118, 4411, 11), -- M. Atk. Modifiers
+(118, 4412, 11), -- P. Def. Modifiers
+(118, 4413, 11), -- M. Def. Modifiers
+(118, 4414, 2), -- Armor Type
+(118, 4415, 1), -- Weapon Type
+(118, 4416, 7), -- Races
 -- Belldandy
 (119, 4045, 1), -- Resist Full Magic Attack
-(119, 4390, 1), -- Mystic Immunity
-(119, 4408, 1), -- HP Increase (1x)
-(119, 4409, 1), -- MP Increase (1x)
-(119, 4410, 11), -- Average P. Atk.
-(119, 4411, 11), -- Average M. Atk.
-(119, 4412, 11), -- Average P. Def.
-(119, 4413, 11), -- Average M. Def.
-(119, 4414, 2), -- Standard Type
-(119, 4415, 1), -- Bare Hands
-(119, 4416, 7), -- Spirits
+(119, 4390, 1), -- NPC Abnormal Immunity
+(119, 4408, 1), -- HP Modifiers
+(119, 4409, 1), -- MP Modifiers
+(119, 4410, 11), -- P. Atk. Modifiers
+(119, 4411, 11), -- M. Atk. Modifiers
+(119, 4412, 11), -- P. Def. Modifiers
+(119, 4413, 11), -- M. Def. Modifiers
+(119, 4414, 2), -- Armor Type
+(119, 4415, 1), -- Weapon Type
+(119, 4416, 7), -- Races
 -- Skooldie
 (120, 4045, 1), -- Resist Full Magic Attack
-(120, 4390, 1), -- Mystic Immunity
-(120, 4408, 1), -- HP Increase (1x)
-(120, 4409, 1), -- MP Increase (1x)
-(120, 4410, 11), -- Average P. Atk.
-(120, 4411, 11), -- Average M. Atk.
-(120, 4412, 11), -- Average P. Def.
-(120, 4413, 11), -- Average M. Def.
-(120, 4414, 2), -- Standard Type
-(120, 4415, 1), -- Bare Hands
-(120, 4416, 7), -- Spirits
+(120, 4390, 1), -- NPC Abnormal Immunity
+(120, 4408, 1), -- HP Modifiers
+(120, 4409, 1), -- MP Modifiers
+(120, 4410, 11), -- P. Atk. Modifiers
+(120, 4411, 11), -- M. Atk. Modifiers
+(120, 4412, 11), -- P. Def. Modifiers
+(120, 4413, 11), -- M. Def. Modifiers
+(120, 4414, 2), -- Armor Type
+(120, 4415, 1), -- Weapon Type
+(120, 4416, 7), -- Races
 -- Lucky Lamp
 (121, 4045, 1), -- Resist Full Magic Attack
-(121, 4408, 1), -- HP Increase (1x)
-(121, 4409, 1), -- MP Increase (1x)
-(121, 4410, 11), -- Average P. Atk.
-(121, 4411, 11), -- Average M. Atk.
-(121, 4412, 11), -- Average P. Def.
-(121, 4413, 11), -- Average M. Def.
-(121, 4414, 2), -- Standard Type
-(121, 4415, 3), -- One-handed Sword
-(121, 4416, 19), -- Others
+(121, 4408, 1), -- HP Modifiers
+(121, 4409, 1), -- MP Modifiers
+(121, 4410, 11), -- P. Atk. Modifiers
+(121, 4411, 11), -- M. Atk. Modifiers
+(121, 4412, 11), -- P. Def. Modifiers
+(121, 4413, 11), -- M. Def. Modifiers
+(121, 4414, 2), -- Armor Type
+(121, 4415, 3), -- Weapon Type
+(121, 4416, 19), -- Races
 -- Environment Lamp
 (122, 4045, 1), -- Resist Full Magic Attack
-(122, 4408, 1), -- HP Increase (1x)
-(122, 4409, 1), -- MP Increase (1x)
-(122, 4410, 11), -- Average P. Atk.
-(122, 4411, 11), -- Average M. Atk.
-(122, 4412, 11), -- Average P. Def.
-(122, 4413, 11), -- Average M. Def.
-(122, 4414, 2), -- Standard Type
-(122, 4415, 3), -- One-handed Sword
-(122, 4416, 19), -- Others
+(122, 4408, 1), -- HP Modifiers
+(122, 4409, 1), -- MP Modifiers
+(122, 4410, 11), -- P. Atk. Modifiers
+(122, 4411, 11), -- M. Atk. Modifiers
+(122, 4412, 11), -- P. Def. Modifiers
+(122, 4413, 11), -- M. Def. Modifiers
+(122, 4414, 2), -- Armor Type
+(122, 4415, 3), -- Weapon Type
+(122, 4416, 19), -- Races
 -- Rolling Lamp
 (123, 4045, 1), -- Resist Full Magic Attack
-(123, 4408, 1), -- HP Increase (1x)
-(123, 4409, 1), -- MP Increase (1x)
-(123, 4410, 11), -- Average P. Atk.
-(123, 4411, 11), -- Average M. Atk.
-(123, 4412, 11), -- Average P. Def.
-(123, 4413, 11), -- Average M. Def.
-(123, 4414, 2), -- Standard Type
-(123, 4415, 3), -- One-handed Sword
-(123, 4416, 19), -- Others
+(123, 4408, 1), -- HP Modifiers
+(123, 4409, 1), -- MP Modifiers
+(123, 4410, 11), -- P. Atk. Modifiers
+(123, 4411, 11), -- M. Atk. Modifiers
+(123, 4412, 11), -- P. Def. Modifiers
+(123, 4413, 11), -- M. Def. Modifiers
+(123, 4414, 2), -- Armor Type
+(123, 4415, 3), -- Weapon Type
+(123, 4416, 19), -- Races
 -- Peace Lamp
 (124, 4045, 1), -- Resist Full Magic Attack
-(124, 4408, 1), -- HP Increase (1x)
-(124, 4409, 1), -- MP Increase (1x)
-(124, 4410, 11), -- Average P. Atk.
-(124, 4411, 11), -- Average M. Atk.
-(124, 4412, 11), -- Average P. Def.
-(124, 4413, 11), -- Average M. Def.
-(124, 4414, 2), -- Standard Type
-(124, 4415, 3), -- One-handed Sword
-(124, 4416, 19), -- Others
+(124, 4408, 1), -- HP Modifiers
+(124, 4409, 1), -- MP Modifiers
+(124, 4410, 11), -- P. Atk. Modifiers
+(124, 4411, 11), -- M. Atk. Modifiers
+(124, 4412, 11), -- P. Def. Modifiers
+(124, 4413, 11), -- M. Def. Modifiers
+(124, 4414, 2), -- Armor Type
+(124, 4415, 3), -- Weapon Type
+(124, 4416, 19), -- Races
 -- Halloween Event Manager
-(125, 4390, 1), -- Mystic Immunity
-(125, 4408, 1), -- HP Increase (1x)
-(125, 4409, 1), -- MP Increase (1x)
-(125, 4410, 11), -- Average P. Atk.
-(125, 4411, 11), -- Average M. Atk.
-(125, 4412, 11), -- Average P. Def.
-(125, 4413, 11), -- Average M. Def.
-(125, 4414, 2), -- Standard Type
-(125, 4415, 5), -- Blunt Weapons
-(125, 4416, 4), -- Animals
+(125, 4390, 1), -- NPC Abnormal Immunity
+(125, 4408, 1), -- HP Modifiers
+(125, 4409, 1), -- MP Modifiers
+(125, 4410, 11), -- P. Atk. Modifiers
+(125, 4411, 11), -- M. Atk. Modifiers
+(125, 4412, 11), -- P. Def. Modifiers
+(125, 4413, 11), -- M. Def. Modifiers
+(125, 4414, 2), -- Armor Type
+(125, 4415, 5), -- Weapon Type
+(125, 4416, 4), -- Races
 -- Kadomas
-(126, 4390, 1), -- Mystic Immunity
-(126, 4408, 1), -- HP Increase (1x)
-(126, 4409, 1), -- MP Increase (1x)
-(126, 4410, 11), -- Average P. Atk.
-(126, 4411, 11), -- Average M. Atk.
-(126, 4412, 11), -- Average P. Def.
-(126, 4413, 11), -- Average M. Def.
-(126, 4414, 2), -- Standard Type
-(126, 4415, 5), -- Blunt Weapons
-(126, 4416, 4), -- Animals
+(126, 4390, 1), -- NPC Abnormal Immunity
+(126, 4408, 1), -- HP Modifiers
+(126, 4409, 1), -- MP Modifiers
+(126, 4410, 11), -- P. Atk. Modifiers
+(126, 4411, 11), -- M. Atk. Modifiers
+(126, 4412, 11), -- P. Def. Modifiers
+(126, 4413, 11), -- M. Def. Modifiers
+(126, 4414, 2), -- Armor Type
+(126, 4415, 5), -- Weapon Type
+(126, 4416, 4), -- Races
 -- Kotatz
 (127, 4045, 1), -- Resist Full Magic Attack
-(127, 4408, 1), -- HP Increase (1x)
-(127, 4409, 1), -- MP Increase (1x)
-(127, 4410, 11), -- Average P. Atk.
-(127, 4411, 11), -- Average M. Atk.
-(127, 4412, 11), -- Average P. Def.
-(127, 4413, 11), -- Average M. Def.
-(127, 4414, 2), -- Standard Type
-(127, 4415, 3), -- One-handed Sword
-(127, 4416, 19), -- Others
+(127, 4408, 1), -- HP Modifiers
+(127, 4409, 1), -- MP Modifiers
+(127, 4410, 11), -- P. Atk. Modifiers
+(127, 4411, 11), -- M. Atk. Modifiers
+(127, 4412, 11), -- P. Def. Modifiers
+(127, 4413, 11), -- M. Def. Modifiers
+(127, 4414, 2), -- Armor Type
+(127, 4415, 3), -- Weapon Type
+(127, 4416, 19), -- Races
 -- Flame Box
 (128, 4045, 1), -- Resist Full Magic Attack
-(128, 4408, 1), -- HP Increase (1x)
-(128, 4409, 1), -- MP Increase (1x)
-(128, 4410, 11), -- Average P. Atk.
-(128, 4411, 11), -- Average M. Atk.
-(128, 4412, 11), -- Average P. Def.
-(128, 4413, 11), -- Average M. Def.
-(128, 4414, 2), -- Standard Type
-(128, 4415, 3), -- One-handed Sword
-(128, 4416, 19), -- Others
+(128, 4408, 1), -- HP Modifiers
+(128, 4409, 1), -- MP Modifiers
+(128, 4410, 11), -- P. Atk. Modifiers
+(128, 4411, 11), -- M. Atk. Modifiers
+(128, 4412, 11), -- P. Def. Modifiers
+(128, 4413, 11), -- M. Def. Modifiers
+(128, 4414, 2), -- Armor Type
+(128, 4415, 3), -- Weapon Type
+(128, 4416, 19), -- Races
 -- White-Bearded Santa
 (129, 4045, 1), -- Resist Full Magic Attack
-(129, 4408, 1), -- HP Increase (1x)
-(129, 4409, 1), -- MP Increase (1x)
-(129, 4410, 11), -- Average P. Atk.
-(129, 4411, 11), -- Average M. Atk.
-(129, 4412, 11), -- Average P. Def.
-(129, 4413, 11), -- Average M. Def.
-(129, 4414, 2), -- Standard Type
-(129, 4415, 3), -- One-handed Sword
-(129, 4416, 18), -- Dwarves
+(129, 4408, 1), -- HP Modifiers
+(129, 4409, 1), -- MP Modifiers
+(129, 4410, 11), -- P. Atk. Modifiers
+(129, 4411, 11), -- M. Atk. Modifiers
+(129, 4412, 11), -- P. Def. Modifiers
+(129, 4413, 11), -- M. Def. Modifiers
+(129, 4414, 2), -- Armor Type
+(129, 4415, 3), -- Weapon Type
+(129, 4416, 18), -- Races
 -- 
-(130, 4390, 1), -- Mystic Immunity
-(130, 4408, 1), -- HP Increase (1x)
-(130, 4409, 1), -- MP Increase (1x)
-(130, 4410, 11), -- Average P. Atk.
-(130, 4411, 11), -- Average M. Atk.
-(130, 4412, 11), -- Average P. Def.
-(130, 4413, 11), -- Average M. Def.
-(130, 4414, 2), -- Standard Type
-(130, 4415, 5), -- Blunt Weapons
-(130, 4416, 4), -- Animals
+(130, 4390, 1), -- NPC Abnormal Immunity
+(130, 4408, 1), -- HP Modifiers
+(130, 4409, 1), -- MP Modifiers
+(130, 4410, 11), -- P. Atk. Modifiers
+(130, 4411, 11), -- M. Atk. Modifiers
+(130, 4412, 11), -- P. Def. Modifiers
+(130, 4413, 11), -- M. Def. Modifiers
+(130, 4414, 2), -- Armor Type
+(130, 4415, 5), -- Weapon Type
+(130, 4416, 4), -- Races
 -- Jetbike
-(131, 4390, 1), -- Mystic Immunity
-(131, 4408, 1), -- HP Increase (1x)
-(131, 4409, 1), -- MP Increase (1x)
-(131, 4410, 11), -- Average P. Atk.
-(131, 4411, 11), -- Average M. Atk.
-(131, 4412, 11), -- Average P. Def.
-(131, 4413, 11), -- Average M. Def.
-(131, 4414, 2), -- Standard Type
-(131, 4415, 5), -- Blunt Weapons
-(131, 4416, 4), -- Animals
+(131, 4390, 1), -- NPC Abnormal Immunity
+(131, 4408, 1), -- HP Modifiers
+(131, 4409, 1), -- MP Modifiers
+(131, 4410, 11), -- P. Atk. Modifiers
+(131, 4411, 11), -- M. Atk. Modifiers
+(131, 4412, 11), -- P. Def. Modifiers
+(131, 4413, 11), -- M. Def. Modifiers
+(131, 4414, 2), -- Armor Type
+(131, 4415, 5), -- Weapon Type
+(131, 4416, 4), -- Races
 -- Trejuo
-(132, 4408, 1), -- HP Increase (1x)
-(132, 4409, 1), -- MP Increase (1x)
-(132, 4410, 11), -- Average P. Atk.
-(132, 4411, 11), -- Average M. Atk.
-(132, 4412, 11), -- Average P. Def.
-(132, 4413, 11), -- Average M. Def.
-(132, 4414, 2), -- Standard Type
-(132, 4415, 3), -- One-handed Sword
-(132, 4416, 14), -- Humans
+(132, 4408, 1), -- HP Modifiers
+(132, 4409, 1), -- MP Modifiers
+(132, 4410, 11), -- P. Atk. Modifiers
+(132, 4411, 11), -- M. Atk. Modifiers
+(132, 4412, 11), -- P. Def. Modifiers
+(132, 4413, 11), -- M. Def. Modifiers
+(132, 4414, 2), -- Armor Type
+(132, 4415, 3), -- Weapon Type
+(132, 4416, 14), -- Races
 -- Sujin
-(133, 4408, 1), -- HP Increase (1x)
-(133, 4409, 1), -- MP Increase (1x)
-(133, 4410, 11), -- Average P. Atk.
-(133, 4411, 11), -- Average M. Atk.
-(133, 4412, 11), -- Average P. Def.
-(133, 4413, 11), -- Average M. Def.
-(133, 4414, 2), -- Standard Type
-(133, 4415, 3), -- One-handed Sword
-(133, 4416, 14), -- Humans
+(133, 4408, 1), -- HP Modifiers
+(133, 4409, 1), -- MP Modifiers
+(133, 4410, 11), -- P. Atk. Modifiers
+(133, 4411, 11), -- M. Atk. Modifiers
+(133, 4412, 11), -- P. Def. Modifiers
+(133, 4413, 11), -- M. Def. Modifiers
+(133, 4414, 2), -- Armor Type
+(133, 4415, 3), -- Weapon Type
+(133, 4416, 14), -- Races
 -- Block Checker Blue
-(140, 4416, 4), -- Animals
+(140, 4416, 4), -- Races
 -- Dimensional Door
-(141, 4416, 18), -- Dwarves
+(141, 4416, 18), -- Races
 -- Dimensional Door
-(142, 4416, 18), -- Dwarves
+(142, 4416, 18), -- Races
 -- Bad Bunny
-(149, 4416, 4), -- Animals
+(149, 4416, 4), -- Races
 (149, 6133, 1), -- Effect of Doubt
 -- Bad Bunny Captain
-(150, 4416, 4), -- Animals
-(150, 6135, 1), -- Mutant Curse
+(150, 4416, 4), -- Races
+(150, 6135, 1), -- Cow Basic Attack
 -- Liverless Bunny
-(151, 4416, 4), -- Animals
+(151, 4416, 4), -- Races
 (151, 6133, 1), -- Effect of Doubt
 -- Liverless Bunny Captain
-(152, 4416, 4), -- Animals
-(152, 6135, 1), -- Mutant Curse
+(152, 4416, 4), -- Races
+(152, 6135, 1), -- Cow Basic Attack
 -- 
-(154, 4416, 4), -- Animals
+(154, 4416, 4), -- Races
 -- 
-(155, 4416, 4), -- Animals
+(155, 4416, 4), -- Races
 -- Big Liver Bunny
-(156, 4416, 4), -- Animals
+(156, 4416, 4), -- Races
 (156, 6133, 1), -- Effect of Doubt
 -- Big Liver Bunny Captain
-(157, 4416, 4), -- Animals
-(157, 6135, 1), -- Mutant Curse
+(157, 4416, 4), -- Races
+(157, 6135, 1), -- Cow Basic Attack
 -- Majo Agathion
-(1501, 4408, 1), -- HP Increase (1x)
-(1501, 4409, 1), -- MP Increase (1x)
-(1501, 4410, 11), -- Average P. Atk.
-(1501, 4411, 11), -- Average M. Atk.
-(1501, 4412, 11), -- Average P. Def.
-(1501, 4413, 11), -- Average M. Def.
-(1501, 4414, 2), -- Standard Type
-(1501, 4415, 1), -- Bare Hands
-(1501, 4416, 19), -- Others
+(1501, 4408, 1), -- HP Modifiers
+(1501, 4409, 1), -- MP Modifiers
+(1501, 4410, 11), -- P. Atk. Modifiers
+(1501, 4411, 11), -- M. Atk. Modifiers
+(1501, 4412, 11), -- P. Def. Modifiers
+(1501, 4413, 11), -- M. Def. Modifiers
+(1501, 4414, 2), -- Armor Type
+(1501, 4415, 1), -- Weapon Type
+(1501, 4416, 19), -- Races
 -- Gold Crown Agathion
-(1502, 4408, 1), -- HP Increase (1x)
-(1502, 4409, 1), -- MP Increase (1x)
-(1502, 4410, 11), -- Average P. Atk.
-(1502, 4411, 11), -- Average M. Atk.
-(1502, 4412, 11), -- Average P. Def.
-(1502, 4413, 11), -- Average M. Def.
-(1502, 4414, 2), -- Standard Type
-(1502, 4415, 1), -- Bare Hands
-(1502, 4416, 19), -- Others
+(1502, 4408, 1), -- HP Modifiers
+(1502, 4409, 1), -- MP Modifiers
+(1502, 4410, 11), -- P. Atk. Modifiers
+(1502, 4411, 11), -- M. Atk. Modifiers
+(1502, 4412, 11), -- P. Def. Modifiers
+(1502, 4413, 11), -- M. Def. Modifiers
+(1502, 4414, 2), -- Armor Type
+(1502, 4415, 1), -- Weapon Type
+(1502, 4416, 19), -- Races
 -- Black Crown Agathion
-(1503, 4408, 1), -- HP Increase (1x)
-(1503, 4409, 1), -- MP Increase (1x)
-(1503, 4410, 11), -- Average P. Atk.
-(1503, 4411, 11), -- Average M. Atk.
-(1503, 4412, 11), -- Average P. Def.
-(1503, 4413, 11), -- Average M. Def.
-(1503, 4414, 2), -- Standard Type
-(1503, 4415, 1), -- Bare Hands
-(1503, 4416, 19), -- Others
+(1503, 4408, 1), -- HP Modifiers
+(1503, 4409, 1), -- MP Modifiers
+(1503, 4410, 11), -- P. Atk. Modifiers
+(1503, 4411, 11), -- M. Atk. Modifiers
+(1503, 4412, 11), -- P. Def. Modifiers
+(1503, 4413, 11), -- M. Def. Modifiers
+(1503, 4414, 2), -- Armor Type
+(1503, 4415, 1), -- Weapon Type
+(1503, 4416, 19), -- Races
 -- Plaipitak Agathion
-(1504, 4408, 1), -- HP Increase (1x)
-(1504, 4409, 1), -- MP Increase (1x)
-(1504, 4410, 11), -- Average P. Atk.
-(1504, 4411, 11), -- Average M. Atk.
-(1504, 4412, 11), -- Average P. Def.
-(1504, 4413, 11), -- Average M. Def.
-(1504, 4414, 2), -- Standard Type
-(1504, 4415, 1), -- Bare Hands
-(1504, 4416, 19), -- Others
+(1504, 4408, 1), -- HP Modifiers
+(1504, 4409, 1), -- MP Modifiers
+(1504, 4410, 11), -- P. Atk. Modifiers
+(1504, 4411, 11), -- M. Atk. Modifiers
+(1504, 4412, 11), -- P. Def. Modifiers
+(1504, 4413, 11), -- M. Def. Modifiers
+(1504, 4414, 2), -- Armor Type
+(1504, 4415, 1), -- Weapon Type
+(1504, 4416, 19), -- Races
 -- Baby Panda Agathion
-(1505, 4408, 1), -- HP Increase (1x)
-(1505, 4409, 1), -- MP Increase (1x)
-(1505, 4410, 11), -- Average P. Atk.
-(1505, 4411, 11), -- Average M. Atk.
-(1505, 4412, 11), -- Average P. Def.
-(1505, 4413, 11), -- Average M. Def.
-(1505, 4414, 2), -- Standard Type
-(1505, 4415, 1), -- Bare Hands
-(1505, 4416, 19), -- Others
+(1505, 4408, 1), -- HP Modifiers
+(1505, 4409, 1), -- MP Modifiers
+(1505, 4410, 11), -- P. Atk. Modifiers
+(1505, 4411, 11), -- M. Atk. Modifiers
+(1505, 4412, 11), -- P. Def. Modifiers
+(1505, 4413, 11), -- M. Def. Modifiers
+(1505, 4414, 2), -- Armor Type
+(1505, 4415, 1), -- Weapon Type
+(1505, 4416, 19), -- Races
 -- Bamboo Panda Agathion
-(1506, 4408, 1), -- HP Increase (1x)
-(1506, 4409, 1), -- MP Increase (1x)
-(1506, 4410, 11), -- Average P. Atk.
-(1506, 4411, 11), -- Average M. Atk.
-(1506, 4412, 11), -- Average P. Def.
-(1506, 4413, 11), -- Average M. Def.
-(1506, 4414, 2), -- Standard Type
-(1506, 4415, 1), -- Bare Hands
-(1506, 4416, 19), -- Others
+(1506, 4408, 1), -- HP Modifiers
+(1506, 4409, 1), -- MP Modifiers
+(1506, 4410, 11), -- P. Atk. Modifiers
+(1506, 4411, 11), -- M. Atk. Modifiers
+(1506, 4412, 11), -- P. Def. Modifiers
+(1506, 4413, 11), -- M. Def. Modifiers
+(1506, 4414, 2), -- Armor Type
+(1506, 4415, 1), -- Weapon Type
+(1506, 4416, 19), -- Races
 -- Sexy Panda Agathion
-(1507, 4408, 1), -- HP Increase (1x)
-(1507, 4409, 1), -- MP Increase (1x)
-(1507, 4410, 11), -- Average P. Atk.
-(1507, 4411, 11), -- Average M. Atk.
-(1507, 4412, 11), -- Average P. Def.
-(1507, 4413, 11), -- Average M. Def.
-(1507, 4414, 2), -- Standard Type
-(1507, 4415, 1), -- Bare Hands
-(1507, 4416, 19), -- Others
+(1507, 4408, 1), -- HP Modifiers
+(1507, 4409, 1), -- MP Modifiers
+(1507, 4410, 11), -- P. Atk. Modifiers
+(1507, 4411, 11), -- M. Atk. Modifiers
+(1507, 4412, 11), -- P. Def. Modifiers
+(1507, 4413, 11), -- M. Def. Modifiers
+(1507, 4414, 2), -- Armor Type
+(1507, 4415, 1), -- Weapon Type
+(1507, 4416, 19), -- Races
 -- White Cupid Agathion
-(1508, 4408, 1), -- HP Increase (1x)
-(1508, 4409, 1), -- MP Increase (1x)
-(1508, 4410, 11), -- Average P. Atk.
-(1508, 4411, 11), -- Average M. Atk.
-(1508, 4412, 11), -- Average P. Def.
-(1508, 4413, 11), -- Average M. Def.
-(1508, 4414, 2), -- Standard Type
-(1508, 4415, 1), -- Bare Hands
-(1508, 4416, 19), -- Others
+(1508, 4408, 1), -- HP Modifiers
+(1508, 4409, 1), -- MP Modifiers
+(1508, 4410, 11), -- P. Atk. Modifiers
+(1508, 4411, 11), -- M. Atk. Modifiers
+(1508, 4412, 11), -- P. Def. Modifiers
+(1508, 4413, 11), -- M. Def. Modifiers
+(1508, 4414, 2), -- Armor Type
+(1508, 4415, 1), -- Weapon Type
+(1508, 4416, 19), -- Races
 -- Dark Cupid Agathion
-(1509, 4408, 1), -- HP Increase (1x)
-(1509, 4409, 1), -- MP Increase (1x)
-(1509, 4410, 11), -- Average P. Atk.
-(1509, 4411, 11), -- Average M. Atk.
-(1509, 4412, 11), -- Average P. Def.
-(1509, 4413, 11), -- Average M. Def.
-(1509, 4414, 2), -- Standard Type
-(1509, 4415, 1), -- Bare Hands
-(1509, 4416, 19), -- Others
+(1509, 4408, 1), -- HP Modifiers
+(1509, 4409, 1), -- MP Modifiers
+(1509, 4410, 11), -- P. Atk. Modifiers
+(1509, 4411, 11), -- M. Atk. Modifiers
+(1509, 4412, 11), -- P. Def. Modifiers
+(1509, 4413, 11), -- M. Def. Modifiers
+(1509, 4414, 2), -- Armor Type
+(1509, 4415, 1), -- Weapon Type
+(1509, 4416, 19), -- Races
 -- White Maneki Neko Agathion
-(1510, 4408, 1), -- HP Increase (1x)
-(1510, 4409, 1), -- MP Increase (1x)
-(1510, 4410, 11), -- Average P. Atk.
-(1510, 4411, 11), -- Average M. Atk.
-(1510, 4412, 11), -- Average P. Def.
-(1510, 4413, 11), -- Average M. Def.
-(1510, 4414, 2), -- Standard Type
-(1510, 4415, 1), -- Bare Hands
-(1510, 4416, 19), -- Others
+(1510, 4408, 1), -- HP Modifiers
+(1510, 4409, 1), -- MP Modifiers
+(1510, 4410, 11), -- P. Atk. Modifiers
+(1510, 4411, 11), -- M. Atk. Modifiers
+(1510, 4412, 11), -- P. Def. Modifiers
+(1510, 4413, 11), -- M. Def. Modifiers
+(1510, 4414, 2), -- Armor Type
+(1510, 4415, 1), -- Weapon Type
+(1510, 4416, 19), -- Races
 -- Black Maneki Neko Agathion
-(1511, 4408, 1), -- HP Increase (1x)
-(1511, 4409, 1), -- MP Increase (1x)
-(1511, 4410, 11), -- Average P. Atk.
-(1511, 4411, 11), -- Average M. Atk.
-(1511, 4412, 11), -- Average P. Def.
-(1511, 4413, 11), -- Average M. Def.
-(1511, 4414, 2), -- Standard Type
-(1511, 4415, 1), -- Bare Hands
-(1511, 4416, 19), -- Others
+(1511, 4408, 1), -- HP Modifiers
+(1511, 4409, 1), -- MP Modifiers
+(1511, 4410, 11), -- P. Atk. Modifiers
+(1511, 4411, 11), -- M. Atk. Modifiers
+(1511, 4412, 11), -- P. Def. Modifiers
+(1511, 4413, 11), -- M. Def. Modifiers
+(1511, 4414, 2), -- Armor Type
+(1511, 4415, 1), -- Weapon Type
+(1511, 4416, 19), -- Races
 -- Brown Maneki Neko Agathion
-(1512, 4408, 1), -- HP Increase (1x)
-(1512, 4409, 1), -- MP Increase (1x)
-(1512, 4410, 11), -- Average P. Atk.
-(1512, 4411, 11), -- Average M. Atk.
-(1512, 4412, 11), -- Average P. Def.
-(1512, 4413, 11), -- Average M. Def.
-(1512, 4414, 2), -- Standard Type
-(1512, 4415, 1), -- Bare Hands
-(1512, 4416, 19), -- Others
+(1512, 4408, 1), -- HP Modifiers
+(1512, 4409, 1), -- MP Modifiers
+(1512, 4410, 11), -- P. Atk. Modifiers
+(1512, 4411, 11), -- M. Atk. Modifiers
+(1512, 4412, 11), -- P. Def. Modifiers
+(1512, 4413, 11), -- M. Def. Modifiers
+(1512, 4414, 2), -- Armor Type
+(1512, 4415, 1), -- Weapon Type
+(1512, 4416, 19), -- Races
 -- One-eyed Bat Drove Agathion
-(1513, 4408, 1), -- HP Increase (1x)
-(1513, 4409, 1), -- MP Increase (1x)
-(1513, 4410, 11), -- Average P. Atk.
-(1513, 4411, 11), -- Average M. Atk.
-(1513, 4412, 11), -- Average P. Def.
-(1513, 4413, 11), -- Average M. Def.
-(1513, 4414, 2), -- Standard Type
-(1513, 4415, 1), -- Bare Hands
-(1513, 4416, 19), -- Others
+(1513, 4408, 1), -- HP Modifiers
+(1513, 4409, 1), -- MP Modifiers
+(1513, 4410, 11), -- P. Atk. Modifiers
+(1513, 4411, 11), -- M. Atk. Modifiers
+(1513, 4412, 11), -- P. Def. Modifiers
+(1513, 4413, 11), -- M. Def. Modifiers
+(1513, 4414, 2), -- Armor Type
+(1513, 4415, 1), -- Weapon Type
+(1513, 4416, 19), -- Races
 -- Pegasus Agathion
-(1514, 4408, 1), -- HP Increase (1x)
-(1514, 4409, 1), -- MP Increase (1x)
-(1514, 4410, 11), -- Average P. Atk.
-(1514, 4411, 11), -- Average M. Atk.
-(1514, 4412, 11), -- Average P. Def.
-(1514, 4413, 11), -- Average M. Def.
-(1514, 4414, 2), -- Standard Type
-(1514, 4415, 1), -- Bare Hands
-(1514, 4416, 19), -- Others
+(1514, 4408, 1), -- HP Modifiers
+(1514, 4409, 1), -- MP Modifiers
+(1514, 4410, 11), -- P. Atk. Modifiers
+(1514, 4411, 11), -- M. Atk. Modifiers
+(1514, 4412, 11), -- P. Def. Modifiers
+(1514, 4413, 11), -- M. Def. Modifiers
+(1514, 4414, 2), -- Armor Type
+(1514, 4415, 1), -- Weapon Type
+(1514, 4416, 19), -- Races
 -- Yellow-robed Tojigong Agathion
-(1515, 4408, 1), -- HP Increase (1x)
-(1515, 4409, 1), -- MP Increase (1x)
-(1515, 4410, 11), -- Average P. Atk.
-(1515, 4411, 11), -- Average M. Atk.
-(1515, 4412, 11), -- Average P. Def.
-(1515, 4413, 11), -- Average M. Def.
-(1515, 4414, 2), -- Standard Type
-(1515, 4415, 1), -- Bare Hands
-(1515, 4416, 19), -- Others
+(1515, 4408, 1), -- HP Modifiers
+(1515, 4409, 1), -- MP Modifiers
+(1515, 4410, 11), -- P. Atk. Modifiers
+(1515, 4411, 11), -- M. Atk. Modifiers
+(1515, 4412, 11), -- P. Def. Modifiers
+(1515, 4413, 11), -- M. Def. Modifiers
+(1515, 4414, 2), -- Armor Type
+(1515, 4415, 1), -- Weapon Type
+(1515, 4416, 19), -- Races
 -- Blue-robed Tojigong Agathion
-(1516, 4408, 1), -- HP Increase (1x)
-(1516, 4409, 1), -- MP Increase (1x)
-(1516, 4410, 11), -- Average P. Atk.
-(1516, 4411, 11), -- Average M. Atk.
-(1516, 4412, 11), -- Average P. Def.
-(1516, 4413, 11), -- Average M. Def.
-(1516, 4414, 2), -- Standard Type
-(1516, 4415, 1), -- Bare Hands
-(1516, 4416, 19), -- Others
+(1516, 4408, 1), -- HP Modifiers
+(1516, 4409, 1), -- MP Modifiers
+(1516, 4410, 11), -- P. Atk. Modifiers
+(1516, 4411, 11), -- M. Atk. Modifiers
+(1516, 4412, 11), -- P. Def. Modifiers
+(1516, 4413, 11), -- M. Def. Modifiers
+(1516, 4414, 2), -- Armor Type
+(1516, 4415, 1), -- Weapon Type
+(1516, 4416, 19), -- Races
 -- Green-robed Tojigong Agathion
-(1517, 4408, 1), -- HP Increase (1x)
-(1517, 4409, 1), -- MP Increase (1x)
-(1517, 4410, 11), -- Average P. Atk.
-(1517, 4411, 11), -- Average M. Atk.
-(1517, 4412, 11), -- Average P. Def.
-(1517, 4413, 11), -- Average M. Def.
-(1517, 4414, 2), -- Standard Type
-(1517, 4415, 1), -- Bare Hands
-(1517, 4416, 19), -- Others
+(1517, 4408, 1), -- HP Modifiers
+(1517, 4409, 1), -- MP Modifiers
+(1517, 4410, 11), -- P. Atk. Modifiers
+(1517, 4411, 11), -- M. Atk. Modifiers
+(1517, 4412, 11), -- P. Def. Modifiers
+(1517, 4413, 11), -- M. Def. Modifiers
+(1517, 4414, 2), -- Armor Type
+(1517, 4415, 1), -- Weapon Type
+(1517, 4416, 19), -- Races
 -- Bugbear Agathion
-(1518, 4408, 1), -- HP Increase (1x)
-(1518, 4409, 1), -- MP Increase (1x)
-(1518, 4410, 11), -- Average P. Atk.
-(1518, 4411, 11), -- Average M. Atk.
-(1518, 4412, 11), -- Average P. Def.
-(1518, 4413, 11), -- Average M. Def.
-(1518, 4414, 2), -- Standard Type
-(1518, 4415, 1), -- Bare Hands
-(1518, 4416, 19), -- Others
+(1518, 4408, 1), -- HP Modifiers
+(1518, 4409, 1), -- MP Modifiers
+(1518, 4410, 11), -- P. Atk. Modifiers
+(1518, 4411, 11), -- M. Atk. Modifiers
+(1518, 4412, 11), -- P. Def. Modifiers
+(1518, 4413, 11), -- M. Def. Modifiers
+(1518, 4414, 2), -- Armor Type
+(1518, 4415, 1), -- Weapon Type
+(1518, 4416, 19), -- Races
 -- Red Sumo Wrestler Agathion
-(1519, 4408, 1), -- HP Increase (1x)
-(1519, 4409, 1), -- MP Increase (1x)
-(1519, 4410, 11), -- Average P. Atk.
-(1519, 4411, 11), -- Average M. Atk.
-(1519, 4412, 11), -- Average P. Def.
-(1519, 4413, 11), -- Average M. Def.
-(1519, 4414, 2), -- Standard Type
-(1519, 4415, 1), -- Bare Hands
-(1519, 4416, 19), -- Others
+(1519, 4408, 1), -- HP Modifiers
+(1519, 4409, 1), -- MP Modifiers
+(1519, 4410, 11), -- P. Atk. Modifiers
+(1519, 4411, 11), -- M. Atk. Modifiers
+(1519, 4412, 11), -- P. Def. Modifiers
+(1519, 4413, 11), -- M. Def. Modifiers
+(1519, 4414, 2), -- Armor Type
+(1519, 4415, 1), -- Weapon Type
+(1519, 4416, 19), -- Races
 -- Blue Sumo Wrestler Agathion
-(1520, 4408, 1), -- HP Increase (1x)
-(1520, 4409, 1), -- MP Increase (1x)
-(1520, 4410, 11), -- Average P. Atk.
-(1520, 4411, 11), -- Average M. Atk.
-(1520, 4412, 11), -- Average P. Def.
-(1520, 4413, 11), -- Average M. Def.
-(1520, 4414, 2), -- Standard Type
-(1520, 4415, 1), -- Bare Hands
-(1520, 4416, 19), -- Others
+(1520, 4408, 1), -- HP Modifiers
+(1520, 4409, 1), -- MP Modifiers
+(1520, 4410, 11), -- P. Atk. Modifiers
+(1520, 4411, 11), -- M. Atk. Modifiers
+(1520, 4412, 11), -- P. Def. Modifiers
+(1520, 4413, 11), -- M. Def. Modifiers
+(1520, 4414, 2), -- Armor Type
+(1520, 4415, 1), -- Weapon Type
+(1520, 4416, 19), -- Races
 -- Great Sumo Match Agathion
-(1521, 4408, 1), -- HP Increase (1x)
-(1521, 4409, 1), -- MP Increase (1x)
-(1521, 4410, 11), -- Average P. Atk.
-(1521, 4411, 11), -- Average M. Atk.
-(1521, 4412, 11), -- Average P. Def.
-(1521, 4413, 11), -- Average M. Def.
-(1521, 4414, 2), -- Standard Type
-(1521, 4415, 1), -- Bare Hands
-(1521, 4416, 19), -- Others
+(1521, 4408, 1), -- HP Modifiers
+(1521, 4409, 1), -- MP Modifiers
+(1521, 4410, 11), -- P. Atk. Modifiers
+(1521, 4411, 11), -- M. Atk. Modifiers
+(1521, 4412, 11), -- P. Def. Modifiers
+(1521, 4413, 11), -- M. Def. Modifiers
+(1521, 4414, 2), -- Armor Type
+(1521, 4415, 1), -- Weapon Type
+(1521, 4416, 19), -- Races
 -- Button-Eyed Bear Doll
-(1522, 4408, 1), -- HP Increase (1x)
-(1522, 4409, 1), -- MP Increase (1x)
-(1522, 4410, 11), -- Average P. Atk.
-(1522, 4411, 11), -- Average M. Atk.
-(1522, 4412, 11), -- Average P. Def.
-(1522, 4413, 11), -- Average M. Def.
-(1522, 4414, 2), -- Standard Type
-(1522, 4415, 1), -- Bare Hands
-(1522, 4416, 19), -- Others
+(1522, 4408, 1), -- HP Modifiers
+(1522, 4409, 1), -- MP Modifiers
+(1522, 4410, 11), -- P. Atk. Modifiers
+(1522, 4411, 11), -- M. Atk. Modifiers
+(1522, 4412, 11), -- P. Def. Modifiers
+(1522, 4413, 11), -- M. Def. Modifiers
+(1522, 4414, 2), -- Armor Type
+(1522, 4415, 1), -- Weapon Type
+(1522, 4416, 19), -- Races
 -- God of Fortune
-(1523, 4408, 1), -- HP Increase (1x)
-(1523, 4409, 1), -- MP Increase (1x)
-(1523, 4410, 11), -- Average P. Atk.
-(1523, 4411, 11), -- Average M. Atk.
-(1523, 4412, 11), -- Average P. Def.
-(1523, 4413, 11), -- Average M. Def.
-(1523, 4414, 2), -- Standard Type
-(1523, 4415, 1), -- Bare Hands
-(1523, 4416, 19), -- Others
+(1523, 4408, 1), -- HP Modifiers
+(1523, 4409, 1), -- MP Modifiers
+(1523, 4410, 11), -- P. Atk. Modifiers
+(1523, 4411, 11), -- M. Atk. Modifiers
+(1523, 4412, 11), -- P. Def. Modifiers
+(1523, 4413, 11), -- M. Def. Modifiers
+(1523, 4414, 2), -- Armor Type
+(1523, 4415, 1), -- Weapon Type
+(1523, 4416, 19), -- Races
 -- Dryad Agathion
-(1524, 4408, 1), -- HP Increase (1x)
-(1524, 4409, 1), -- MP Increase (1x)
-(1524, 4410, 11), -- Average P. Atk.
-(1524, 4411, 11), -- Average M. Atk.
-(1524, 4412, 11), -- Average P. Def.
-(1524, 4413, 11), -- Average M. Def.
-(1524, 4414, 2), -- Standard Type
-(1524, 4415, 1), -- Bare Hands
-(1524, 4416, 19), -- Others
+(1524, 4408, 1), -- HP Modifiers
+(1524, 4409, 1), -- MP Modifiers
+(1524, 4410, 11), -- P. Atk. Modifiers
+(1524, 4411, 11), -- M. Atk. Modifiers
+(1524, 4412, 11), -- P. Def. Modifiers
+(1524, 4413, 11), -- M. Def. Modifiers
+(1524, 4414, 2), -- Armor Type
+(1524, 4415, 1), -- Weapon Type
+(1524, 4416, 19), -- Races
 -- Wonboso Agathion
-(1525, 4408, 1), -- HP Increase (1x)
-(1525, 4409, 1), -- MP Increase (1x)
-(1525, 4410, 11), -- Average P. Atk.
-(1525, 4411, 11), -- Average M. Atk.
-(1525, 4412, 11), -- Average P. Def.
-(1525, 4413, 11), -- Average M. Def.
-(1525, 4414, 2), -- Standard Type
-(1525, 4415, 1), -- Bare Hands
-(1525, 4416, 19), -- Others
+(1525, 4408, 1), -- HP Modifiers
+(1525, 4409, 1), -- MP Modifiers
+(1525, 4410, 11), -- P. Atk. Modifiers
+(1525, 4411, 11), -- M. Atk. Modifiers
+(1525, 4412, 11), -- P. Def. Modifiers
+(1525, 4413, 11), -- M. Def. Modifiers
+(1525, 4414, 2), -- Armor Type
+(1525, 4415, 1), -- Weapon Type
+(1525, 4416, 19), -- Races
 -- Daewoonso Agathion
-(1526, 4408, 1), -- HP Increase (1x)
-(1526, 4409, 1), -- MP Increase (1x)
-(1526, 4410, 11), -- Average P. Atk.
-(1526, 4411, 11), -- Average M. Atk.
-(1526, 4412, 11), -- Average P. Def.
-(1526, 4413, 11), -- Average M. Def.
-(1526, 4414, 2), -- Standard Type
-(1526, 4415, 1), -- Bare Hands
-(1526, 4416, 19), -- Others
+(1526, 4408, 1), -- HP Modifiers
+(1526, 4409, 1), -- MP Modifiers
+(1526, 4410, 11), -- P. Atk. Modifiers
+(1526, 4411, 11), -- M. Atk. Modifiers
+(1526, 4412, 11), -- P. Def. Modifiers
+(1526, 4413, 11), -- M. Def. Modifiers
+(1526, 4414, 2), -- Armor Type
+(1526, 4415, 1), -- Weapon Type
+(1526, 4416, 19), -- Races
 -- Pomona Agathion
-(1527, 4408, 1), -- HP Increase (1x)
-(1527, 4409, 1), -- MP Increase (1x)
-(1527, 4410, 11), -- Average P. Atk.
-(1527, 4411, 11), -- Average M. Atk.
-(1527, 4412, 11), -- Average P. Def.
-(1527, 4413, 11), -- Average M. Def.
-(1527, 4414, 2), -- Standard Type
-(1527, 4415, 1), -- Bare Hands
-(1527, 4416, 19), -- Others
+(1527, 4408, 1), -- HP Modifiers
+(1527, 4409, 1), -- MP Modifiers
+(1527, 4410, 11), -- P. Atk. Modifiers
+(1527, 4411, 11), -- M. Atk. Modifiers
+(1527, 4412, 11), -- P. Def. Modifiers
+(1527, 4413, 11), -- M. Def. Modifiers
+(1527, 4414, 2), -- Armor Type
+(1527, 4415, 1), -- Weapon Type
+(1527, 4416, 19), -- Races
 -- Weaver Agathion
-(1528, 4408, 1), -- HP Increase (1x)
-(1528, 4409, 1), -- MP Increase (1x)
-(1528, 4410, 11), -- Average P. Atk.
-(1528, 4411, 11), -- Average M. Atk.
-(1528, 4412, 11), -- Average P. Def.
-(1528, 4413, 11), -- Average M. Def.
-(1528, 4414, 2), -- Standard Type
-(1528, 4415, 1), -- Bare Hands
-(1528, 4416, 19), -- Others
+(1528, 4408, 1), -- HP Modifiers
+(1528, 4409, 1), -- MP Modifiers
+(1528, 4410, 11), -- P. Atk. Modifiers
+(1528, 4411, 11), -- M. Atk. Modifiers
+(1528, 4412, 11), -- P. Def. Modifiers
+(1528, 4413, 11), -- M. Def. Modifiers
+(1528, 4414, 2), -- Armor Type
+(1528, 4415, 1), -- Weapon Type
+(1528, 4416, 19), -- Races
 -- Slow Agathion
-(1529, 4408, 1), -- HP Increase (1x)
-(1529, 4409, 1), -- MP Increase (1x)
-(1529, 4410, 11), -- Average P. Atk.
-(1529, 4411, 11), -- Average M. Atk.
-(1529, 4412, 11), -- Average P. Def.
-(1529, 4413, 11), -- Average M. Def.
-(1529, 4414, 2), -- Standard Type
-(1529, 4415, 1), -- Bare Hands
-(1529, 4416, 19), -- Others
+(1529, 4408, 1), -- HP Modifiers
+(1529, 4409, 1), -- MP Modifiers
+(1529, 4410, 11), -- P. Atk. Modifiers
+(1529, 4411, 11), -- M. Atk. Modifiers
+(1529, 4412, 11), -- P. Def. Modifiers
+(1529, 4413, 11), -- M. Def. Modifiers
+(1529, 4414, 2), -- Armor Type
+(1529, 4415, 1), -- Weapon Type
+(1529, 4416, 19), -- Races
 -- Noisy Agathion
-(1530, 4408, 1), -- HP Increase (1x)
-(1530, 4409, 1), -- MP Increase (1x)
-(1530, 4410, 11), -- Average P. Atk.
-(1530, 4411, 11), -- Average M. Atk.
-(1530, 4412, 11), -- Average P. Def.
-(1530, 4413, 11), -- Average M. Def.
-(1530, 4414, 2), -- Standard Type
-(1530, 4415, 1), -- Bare Hands
-(1530, 4416, 19), -- Others
+(1530, 4408, 1), -- HP Modifiers
+(1530, 4409, 1), -- MP Modifiers
+(1530, 4410, 11), -- P. Atk. Modifiers
+(1530, 4411, 11), -- M. Atk. Modifiers
+(1530, 4412, 11), -- P. Def. Modifiers
+(1530, 4413, 11), -- M. Def. Modifiers
+(1530, 4414, 2), -- Armor Type
+(1530, 4415, 1), -- Weapon Type
+(1530, 4416, 19), -- Races
 -- Dancing Child of Fortune Agathion
-(1531, 4408, 1), -- HP Increase (1x)
-(1531, 4409, 1), -- MP Increase (1x)
-(1531, 4410, 11), -- Average P. Atk.
-(1531, 4411, 11), -- Average M. Atk.
-(1531, 4412, 11), -- Average P. Def.
-(1531, 4413, 11), -- Average M. Def.
-(1531, 4414, 2), -- Standard Type
-(1531, 4415, 1), -- Bare Hands
-(1531, 4416, 19), -- Others
+(1531, 4408, 1), -- HP Modifiers
+(1531, 4409, 1), -- MP Modifiers
+(1531, 4410, 11), -- P. Atk. Modifiers
+(1531, 4411, 11), -- M. Atk. Modifiers
+(1531, 4412, 11), -- P. Def. Modifiers
+(1531, 4413, 11), -- M. Def. Modifiers
+(1531, 4414, 2), -- Armor Type
+(1531, 4415, 1), -- Weapon Type
+(1531, 4416, 19), -- Races
 -- Son-o-gong Agathion
-(1532, 4408, 1), -- HP Increase (1x)
-(1532, 4409, 1), -- MP Increase (1x)
-(1532, 4410, 11), -- Average P. Atk.
-(1532, 4411, 11), -- Average M. Atk.
-(1532, 4412, 11), -- Average P. Def.
-(1532, 4413, 11), -- Average M. Def.
-(1532, 4414, 2), -- Standard Type
-(1532, 4415, 1), -- Bare Hands
-(1532, 4416, 19), -- Others
+(1532, 4408, 1), -- HP Modifiers
+(1532, 4409, 1), -- MP Modifiers
+(1532, 4410, 11), -- P. Atk. Modifiers
+(1532, 4411, 11), -- M. Atk. Modifiers
+(1532, 4412, 11), -- P. Def. Modifiers
+(1532, 4413, 11), -- M. Def. Modifiers
+(1532, 4414, 2), -- Armor Type
+(1532, 4415, 1), -- Weapon Type
+(1532, 4416, 19), -- Races
 -- Wutangka Agathion
-(1533, 4408, 1), -- HP Increase (1x)
-(1533, 4409, 1), -- MP Increase (1x)
-(1533, 4410, 11), -- Average P. Atk.
-(1533, 4411, 11), -- Average M. Atk.
-(1533, 4412, 11), -- Average P. Def.
-(1533, 4413, 11), -- Average M. Def.
-(1533, 4414, 2), -- Standard Type
-(1533, 4415, 1), -- Bare Hands
-(1533, 4416, 19), -- Others
+(1533, 4408, 1), -- HP Modifiers
+(1533, 4409, 1), -- MP Modifiers
+(1533, 4410, 11), -- P. Atk. Modifiers
+(1533, 4411, 11), -- M. Atk. Modifiers
+(1533, 4412, 11), -- P. Def. Modifiers
+(1533, 4413, 11), -- M. Def. Modifiers
+(1533, 4414, 2), -- Armor Type
+(1533, 4415, 1), -- Weapon Type
+(1533, 4416, 19), -- Races
 -- Bonus B Agathion
-(1534, 4408, 1), -- HP Increase (1x)
-(1534, 4409, 1), -- MP Increase (1x)
-(1534, 4410, 11), -- Average P. Atk.
-(1534, 4411, 11), -- Average M. Atk.
-(1534, 4412, 11), -- Average P. Def.
-(1534, 4413, 11), -- Average M. Def.
-(1534, 4414, 2), -- Standard Type
-(1534, 4415, 1), -- Bare Hands
-(1534, 4416, 19), -- Others
+(1534, 4408, 1), -- HP Modifiers
+(1534, 4409, 1), -- MP Modifiers
+(1534, 4410, 11), -- P. Atk. Modifiers
+(1534, 4411, 11), -- M. Atk. Modifiers
+(1534, 4412, 11), -- P. Def. Modifiers
+(1534, 4413, 11), -- M. Def. Modifiers
+(1534, 4414, 2), -- Armor Type
+(1534, 4415, 1), -- Weapon Type
+(1534, 4416, 19), -- Races
 -- Frozen Corpse Agathion
-(1535, 4408, 1), -- HP Increase (1x)
-(1535, 4409, 1), -- MP Increase (1x)
-(1535, 4410, 11), -- Average P. Atk.
-(1535, 4411, 11), -- Average M. Atk.
-(1535, 4412, 11), -- Average P. Def.
-(1535, 4413, 11), -- Average M. Def.
-(1535, 4414, 2), -- Standard Type
-(1535, 4415, 1), -- Bare Hands
-(1535, 4416, 19), -- Others
+(1535, 4408, 1), -- HP Modifiers
+(1535, 4409, 1), -- MP Modifiers
+(1535, 4410, 11), -- P. Atk. Modifiers
+(1535, 4411, 11), -- M. Atk. Modifiers
+(1535, 4412, 11), -- P. Def. Modifiers
+(1535, 4413, 11), -- M. Def. Modifiers
+(1535, 4414, 2), -- Armor Type
+(1535, 4415, 1), -- Weapon Type
+(1535, 4416, 19), -- Races
 -- Bluebird Agathion
-(1536, 4408, 1), -- HP Increase (1x)
-(1536, 4409, 1), -- MP Increase (1x)
-(1536, 4410, 11), -- Average P. Atk.
-(1536, 4411, 11), -- Average M. Atk.
-(1536, 4412, 11), -- Average P. Def.
-(1536, 4413, 11), -- Average M. Def.
-(1536, 4414, 2), -- Standard Type
-(1536, 4415, 1), -- Bare Hands
-(1536, 4416, 19), -- Others
+(1536, 4408, 1), -- HP Modifiers
+(1536, 4409, 1), -- MP Modifiers
+(1536, 4410, 11), -- P. Atk. Modifiers
+(1536, 4411, 11), -- M. Atk. Modifiers
+(1536, 4412, 11), -- P. Def. Modifiers
+(1536, 4413, 11), -- M. Def. Modifiers
+(1536, 4414, 2), -- Armor Type
+(1536, 4415, 1), -- Weapon Type
+(1536, 4416, 19), -- Races
 -- Hatbird Agathion
-(1537, 4408, 1), -- HP Increase (1x)
-(1537, 4409, 1), -- MP Increase (1x)
-(1537, 4410, 11), -- Average P. Atk.
-(1537, 4411, 11), -- Average M. Atk.
-(1537, 4412, 11), -- Average P. Def.
-(1537, 4413, 11), -- Average M. Def.
-(1537, 4414, 2), -- Standard Type
-(1537, 4415, 1), -- Bare Hands
-(1537, 4416, 19), -- Others
+(1537, 4408, 1), -- HP Modifiers
+(1537, 4409, 1), -- MP Modifiers
+(1537, 4410, 11), -- P. Atk. Modifiers
+(1537, 4411, 11), -- M. Atk. Modifiers
+(1537, 4412, 11), -- P. Def. Modifiers
+(1537, 4413, 11), -- M. Def. Modifiers
+(1537, 4414, 2), -- Armor Type
+(1537, 4415, 1), -- Weapon Type
+(1537, 4416, 19), -- Races
 -- Baby Rudolph
-(1538, 4408, 1), -- HP Increase (1x)
-(1538, 4409, 1), -- MP Increase (1x)
-(1538, 4410, 11), -- Average P. Atk.
-(1538, 4411, 11), -- Average M. Atk.
-(1538, 4412, 11), -- Average P. Def.
-(1538, 4413, 11), -- Average M. Def.
-(1538, 4414, 2), -- Standard Type
-(1538, 4415, 1), -- Bare Hands
-(1538, 4416, 19), -- Others
+(1538, 4408, 1), -- HP Modifiers
+(1538, 4409, 1), -- MP Modifiers
+(1538, 4410, 11), -- P. Atk. Modifiers
+(1538, 4411, 11), -- M. Atk. Modifiers
+(1538, 4412, 11), -- P. Def. Modifiers
+(1538, 4413, 11), -- M. Def. Modifiers
+(1538, 4414, 2), -- Armor Type
+(1538, 4415, 1), -- Weapon Type
+(1538, 4416, 19), -- Races
 (1538, 4679, 1), -- Valakas
 -- Iken Agathion
-(1539, 4408, 1), -- HP Increase (1x)
-(1539, 4409, 1), -- MP Increase (1x)
-(1539, 4410, 11), -- Average P. Atk.
-(1539, 4411, 11), -- Average M. Atk.
-(1539, 4412, 11), -- Average P. Def.
-(1539, 4413, 11), -- Average M. Def.
-(1539, 4414, 2), -- Standard Type
-(1539, 4415, 1), -- Bare Hands
-(1539, 4416, 19), -- Others
+(1539, 4408, 1), -- HP Modifiers
+(1539, 4409, 1), -- MP Modifiers
+(1539, 4410, 11), -- P. Atk. Modifiers
+(1539, 4411, 11), -- M. Atk. Modifiers
+(1539, 4412, 11), -- P. Def. Modifiers
+(1539, 4413, 11), -- M. Def. Modifiers
+(1539, 4414, 2), -- Armor Type
+(1539, 4415, 1), -- Weapon Type
+(1539, 4416, 19), -- Races
 -- Lana Agathion
-(1540, 4408, 1), -- HP Increase (1x)
-(1540, 4409, 1), -- MP Increase (1x)
-(1540, 4410, 11), -- Average P. Atk.
-(1540, 4411, 11), -- Average M. Atk.
-(1540, 4412, 11), -- Average P. Def.
-(1540, 4413, 11), -- Average M. Def.
-(1540, 4414, 2), -- Standard Type
-(1540, 4415, 1), -- Bare Hands
-(1540, 4416, 19), -- Others
+(1540, 4408, 1), -- HP Modifiers
+(1540, 4409, 1), -- MP Modifiers
+(1540, 4410, 11), -- P. Atk. Modifiers
+(1540, 4411, 11), -- M. Atk. Modifiers
+(1540, 4412, 11), -- P. Def. Modifiers
+(1540, 4413, 11), -- M. Def. Modifiers
+(1540, 4414, 2), -- Armor Type
+(1540, 4415, 1), -- Weapon Type
+(1540, 4416, 19), -- Races
 -- Gnosian Agathion
-(1541, 4408, 1), -- HP Increase (1x)
-(1541, 4409, 1), -- MP Increase (1x)
-(1541, 4410, 11), -- Average P. Atk.
-(1541, 4411, 11), -- Average M. Atk.
-(1541, 4412, 11), -- Average P. Def.
-(1541, 4413, 11), -- Average M. Def.
-(1541, 4414, 2), -- Standard Type
-(1541, 4415, 1), -- Bare Hands
-(1541, 4416, 19), -- Others
+(1541, 4408, 1), -- HP Modifiers
+(1541, 4409, 1), -- MP Modifiers
+(1541, 4410, 11), -- P. Atk. Modifiers
+(1541, 4411, 11), -- M. Atk. Modifiers
+(1541, 4412, 11), -- P. Def. Modifiers
+(1541, 4413, 11), -- M. Def. Modifiers
+(1541, 4414, 2), -- Armor Type
+(1541, 4415, 1), -- Weapon Type
+(1541, 4416, 19), -- Races
 -- Orodriel Agathion
-(1542, 4408, 1), -- HP Increase (1x)
-(1542, 4409, 1), -- MP Increase (1x)
-(1542, 4410, 11), -- Average P. Atk.
-(1542, 4411, 11), -- Average M. Atk.
-(1542, 4412, 11), -- Average P. Def.
-(1542, 4413, 11), -- Average M. Def.
-(1542, 4414, 2), -- Standard Type
-(1542, 4415, 1), -- Bare Hands
-(1542, 4416, 19), -- Others
+(1542, 4408, 1), -- HP Modifiers
+(1542, 4409, 1), -- MP Modifiers
+(1542, 4410, 11), -- P. Atk. Modifiers
+(1542, 4411, 11), -- M. Atk. Modifiers
+(1542, 4412, 11), -- P. Def. Modifiers
+(1542, 4413, 11), -- M. Def. Modifiers
+(1542, 4414, 2), -- Armor Type
+(1542, 4415, 1), -- Weapon Type
+(1542, 4416, 19), -- Races
 -- Lakinos Agathion
-(1543, 4408, 1), -- HP Increase (1x)
-(1543, 4409, 1), -- MP Increase (1x)
-(1543, 4410, 11), -- Average P. Atk.
-(1543, 4411, 11), -- Average M. Atk.
-(1543, 4412, 11), -- Average P. Def.
-(1543, 4413, 11), -- Average M. Def.
-(1543, 4414, 2), -- Standard Type
-(1543, 4415, 1), -- Bare Hands
-(1543, 4416, 19), -- Others
+(1543, 4408, 1), -- HP Modifiers
+(1543, 4409, 1), -- MP Modifiers
+(1543, 4410, 11), -- P. Atk. Modifiers
+(1543, 4411, 11), -- M. Atk. Modifiers
+(1543, 4412, 11), -- P. Def. Modifiers
+(1543, 4413, 11), -- M. Def. Modifiers
+(1543, 4414, 2), -- Armor Type
+(1543, 4415, 1), -- Weapon Type
+(1543, 4416, 19), -- Races
 -- Mortia Agathion
-(1544, 4408, 1), -- HP Increase (1x)
-(1544, 4409, 1), -- MP Increase (1x)
-(1544, 4410, 11), -- Average P. Atk.
-(1544, 4411, 11), -- Average M. Atk.
-(1544, 4412, 11), -- Average P. Def.
-(1544, 4413, 11), -- Average M. Def.
-(1544, 4414, 2), -- Standard Type
-(1544, 4415, 1), -- Bare Hands
-(1544, 4416, 19), -- Others
+(1544, 4408, 1), -- HP Modifiers
+(1544, 4409, 1), -- MP Modifiers
+(1544, 4410, 11), -- P. Atk. Modifiers
+(1544, 4411, 11), -- M. Atk. Modifiers
+(1544, 4412, 11), -- P. Def. Modifiers
+(1544, 4413, 11), -- M. Def. Modifiers
+(1544, 4414, 2), -- Armor Type
+(1544, 4415, 1), -- Weapon Type
+(1544, 4416, 19), -- Races
 -- Heintz Agathion
-(1545, 4408, 1), -- HP Increase (1x)
-(1545, 4409, 1), -- MP Increase (1x)
-(1545, 4410, 11), -- Average P. Atk.
-(1545, 4411, 11), -- Average M. Atk.
-(1545, 4412, 11), -- Average P. Def.
-(1545, 4413, 11), -- Average M. Def.
-(1545, 4414, 2), -- Standard Type
-(1545, 4415, 1), -- Bare Hands
-(1545, 4416, 19), -- Others
+(1545, 4408, 1), -- HP Modifiers
+(1545, 4409, 1), -- MP Modifiers
+(1545, 4410, 11), -- P. Atk. Modifiers
+(1545, 4411, 11), -- M. Atk. Modifiers
+(1545, 4412, 11), -- P. Def. Modifiers
+(1545, 4413, 11), -- M. Def. Modifiers
+(1545, 4414, 2), -- Armor Type
+(1545, 4415, 1), -- Weapon Type
+(1545, 4416, 19), -- Races
 -- Meruril Agathion
-(1546, 4408, 1), -- HP Increase (1x)
-(1546, 4409, 1), -- MP Increase (1x)
-(1546, 4410, 11), -- Average P. Atk.
-(1546, 4411, 11), -- Average M. Atk.
-(1546, 4412, 11), -- Average P. Def.
-(1546, 4413, 11), -- Average M. Def.
-(1546, 4414, 2), -- Standard Type
-(1546, 4415, 1), -- Bare Hands
-(1546, 4416, 19), -- Others
+(1546, 4408, 1), -- HP Modifiers
+(1546, 4409, 1), -- MP Modifiers
+(1546, 4410, 11), -- P. Atk. Modifiers
+(1546, 4411, 11), -- M. Atk. Modifiers
+(1546, 4412, 11), -- P. Def. Modifiers
+(1546, 4413, 11), -- M. Def. Modifiers
+(1546, 4414, 2), -- Armor Type
+(1546, 4415, 1), -- Weapon Type
+(1546, 4416, 19), -- Races
 -- Taman Zu Rapatui Agathion
-(1547, 4408, 1), -- HP Increase (1x)
-(1547, 4409, 1), -- MP Increase (1x)
-(1547, 4410, 11), -- Average P. Atk.
-(1547, 4411, 11), -- Average M. Atk.
-(1547, 4412, 11), -- Average P. Def.
-(1547, 4413, 11), -- Average M. Def.
-(1547, 4414, 2), -- Standard Type
-(1547, 4415, 1), -- Bare Hands
-(1547, 4416, 19), -- Others
+(1547, 4408, 1), -- HP Modifiers
+(1547, 4409, 1), -- MP Modifiers
+(1547, 4410, 11), -- P. Atk. Modifiers
+(1547, 4411, 11), -- M. Atk. Modifiers
+(1547, 4412, 11), -- P. Def. Modifiers
+(1547, 4413, 11), -- M. Def. Modifiers
+(1547, 4414, 2), -- Armor Type
+(1547, 4415, 1), -- Weapon Type
+(1547, 4416, 19), -- Races
 -- Kaurin Agathion
-(1548, 4408, 1), -- HP Increase (1x)
-(1548, 4409, 1), -- MP Increase (1x)
-(1548, 4410, 11), -- Average P. Atk.
-(1548, 4411, 11), -- Average M. Atk.
-(1548, 4412, 11), -- Average P. Def.
-(1548, 4413, 11), -- Average M. Def.
-(1548, 4414, 2), -- Standard Type
-(1548, 4415, 1), -- Bare Hands
-(1548, 4416, 19), -- Others
+(1548, 4408, 1), -- HP Modifiers
+(1548, 4409, 1), -- MP Modifiers
+(1548, 4410, 11), -- P. Atk. Modifiers
+(1548, 4411, 11), -- M. Atk. Modifiers
+(1548, 4412, 11), -- P. Def. Modifiers
+(1548, 4413, 11), -- M. Def. Modifiers
+(1548, 4414, 2), -- Armor Type
+(1548, 4415, 1), -- Weapon Type
+(1548, 4416, 19), -- Races
 -- Ahertbein Agathion
-(1549, 4408, 1), -- HP Increase (1x)
-(1549, 4409, 1), -- MP Increase (1x)
-(1549, 4410, 11), -- Average P. Atk.
-(1549, 4411, 11), -- Average M. Atk.
-(1549, 4412, 11), -- Average P. Def.
-(1549, 4413, 11), -- Average M. Def.
-(1549, 4414, 2), -- Standard Type
-(1549, 4415, 1), -- Bare Hands
-(1549, 4416, 19), -- Others
+(1549, 4408, 1), -- HP Modifiers
+(1549, 4409, 1), -- MP Modifiers
+(1549, 4410, 11), -- P. Atk. Modifiers
+(1549, 4411, 11), -- M. Atk. Modifiers
+(1549, 4412, 11), -- P. Def. Modifiers
+(1549, 4413, 11), -- M. Def. Modifiers
+(1549, 4414, 2), -- Armor Type
+(1549, 4415, 1), -- Weapon Type
+(1549, 4416, 19), -- Races
 -- Naonin Agathion
-(1550, 4408, 1), -- HP Increase (1x)
-(1550, 4409, 1), -- MP Increase (1x)
-(1550, 4410, 11), -- Average P. Atk.
-(1550, 4411, 11), -- Average M. Atk.
-(1550, 4412, 11), -- Average P. Def.
-(1550, 4413, 11), -- Average M. Def.
-(1550, 4414, 2), -- Standard Type
-(1550, 4415, 1), -- Bare Hands
-(1550, 4416, 19), -- Others
+(1550, 4408, 1), -- HP Modifiers
+(1550, 4409, 1), -- MP Modifiers
+(1550, 4410, 11), -- P. Atk. Modifiers
+(1550, 4411, 11), -- M. Atk. Modifiers
+(1550, 4412, 11), -- P. Def. Modifiers
+(1550, 4413, 11), -- M. Def. Modifiers
+(1550, 4414, 2), -- Armor Type
+(1550, 4415, 1), -- Weapon Type
+(1550, 4416, 19), -- Races
 -- Guangong Agathion
-(1551, 4408, 1), -- HP Increase (1x)
-(1551, 4409, 1), -- MP Increase (1x)
-(1551, 4410, 11), -- Average P. Atk.
-(1551, 4411, 11), -- Average M. Atk.
-(1551, 4412, 11), -- Average P. Def.
-(1551, 4413, 11), -- Average M. Def.
-(1551, 4414, 2), -- Standard Type
-(1551, 4415, 1), -- Bare Hands
-(1551, 4416, 19), -- Others
+(1551, 4408, 1), -- HP Modifiers
+(1551, 4409, 1), -- MP Modifiers
+(1551, 4410, 11), -- P. Atk. Modifiers
+(1551, 4411, 11), -- M. Atk. Modifiers
+(1551, 4412, 11), -- P. Def. Modifiers
+(1551, 4413, 11), -- M. Def. Modifiers
+(1551, 4414, 2), -- Armor Type
+(1551, 4415, 1), -- Weapon Type
+(1551, 4416, 19), -- Races
 -- Gwanseum Nyang Nyang Agathion
-(1552, 4408, 1), -- HP Increase (1x)
-(1552, 4409, 1), -- MP Increase (1x)
-(1552, 4410, 11), -- Average P. Atk.
-(1552, 4411, 11), -- Average M. Atk.
-(1552, 4412, 11), -- Average P. Def.
-(1552, 4413, 11), -- Average M. Def.
-(1552, 4414, 2), -- Standard Type
-(1552, 4415, 1), -- Bare Hands
-(1552, 4416, 19), -- Others
+(1552, 4408, 1), -- HP Modifiers
+(1552, 4409, 1), -- MP Modifiers
+(1552, 4410, 11), -- P. Atk. Modifiers
+(1552, 4411, 11), -- M. Atk. Modifiers
+(1552, 4412, 11), -- P. Def. Modifiers
+(1552, 4413, 11), -- M. Def. Modifiers
+(1552, 4414, 2), -- Armor Type
+(1552, 4415, 1), -- Weapon Type
+(1552, 4416, 19), -- Races
 -- Blue Opera Agathion
-(1553, 4408, 1), -- HP Increase (1x)
-(1553, 4409, 1), -- MP Increase (1x)
-(1553, 4410, 11), -- Average P. Atk.
-(1553, 4411, 11), -- Average M. Atk.
-(1553, 4412, 11), -- Average P. Def.
-(1553, 4413, 11), -- Average M. Def.
-(1553, 4414, 2), -- Standard Type
-(1553, 4415, 1), -- Bare Hands
-(1553, 4416, 19), -- Others
+(1553, 4408, 1), -- HP Modifiers
+(1553, 4409, 1), -- MP Modifiers
+(1553, 4410, 11), -- P. Atk. Modifiers
+(1553, 4411, 11), -- M. Atk. Modifiers
+(1553, 4412, 11), -- P. Def. Modifiers
+(1553, 4413, 11), -- M. Def. Modifiers
+(1553, 4414, 2), -- Armor Type
+(1553, 4415, 1), -- Weapon Type
+(1553, 4416, 19), -- Races
 -- Red Opera Agathion
-(1554, 4408, 1), -- HP Increase (1x)
-(1554, 4409, 1), -- MP Increase (1x)
-(1554, 4410, 11), -- Average P. Atk.
-(1554, 4411, 11), -- Average M. Atk.
-(1554, 4412, 11), -- Average P. Def.
-(1554, 4413, 11), -- Average M. Def.
-(1554, 4414, 2), -- Standard Type
-(1554, 4415, 1), -- Bare Hands
-(1554, 4416, 19), -- Others
+(1554, 4408, 1), -- HP Modifiers
+(1554, 4409, 1), -- MP Modifiers
+(1554, 4410, 11), -- P. Atk. Modifiers
+(1554, 4411, 11), -- M. Atk. Modifiers
+(1554, 4412, 11), -- P. Def. Modifiers
+(1554, 4413, 11), -- M. Def. Modifiers
+(1554, 4414, 2), -- Armor Type
+(1554, 4415, 1), -- Weapon Type
+(1554, 4416, 19), -- Races
 -- Opera Agathion
-(1555, 4408, 1), -- HP Increase (1x)
-(1555, 4409, 1), -- MP Increase (1x)
-(1555, 4410, 11), -- Average P. Atk.
-(1555, 4411, 11), -- Average M. Atk.
-(1555, 4412, 11), -- Average P. Def.
-(1555, 4413, 11), -- Average M. Def.
-(1555, 4414, 2), -- Standard Type
-(1555, 4415, 1), -- Bare Hands
-(1555, 4416, 19), -- Others
+(1555, 4408, 1), -- HP Modifiers
+(1555, 4409, 1), -- MP Modifiers
+(1555, 4410, 11), -- P. Atk. Modifiers
+(1555, 4411, 11), -- M. Atk. Modifiers
+(1555, 4412, 11), -- P. Def. Modifiers
+(1555, 4413, 11), -- M. Def. Modifiers
+(1555, 4414, 2), -- Armor Type
+(1555, 4415, 1), -- Weapon Type
+(1555, 4416, 19), -- Races
 -- Mandarin Dress Agathion
-(1556, 4408, 1), -- HP Increase (1x)
-(1556, 4409, 1), -- MP Increase (1x)
-(1556, 4410, 11), -- Average P. Atk.
-(1556, 4411, 11), -- Average M. Atk.
-(1556, 4412, 11), -- Average P. Def.
-(1556, 4413, 11), -- Average M. Def.
-(1556, 4414, 2), -- Standard Type
-(1556, 4415, 1), -- Bare Hands
-(1556, 4416, 19), -- Others
+(1556, 4408, 1), -- HP Modifiers
+(1556, 4409, 1), -- MP Modifiers
+(1556, 4410, 11), -- P. Atk. Modifiers
+(1556, 4411, 11), -- M. Atk. Modifiers
+(1556, 4412, 11), -- P. Def. Modifiers
+(1556, 4413, 11), -- M. Def. Modifiers
+(1556, 4414, 2), -- Armor Type
+(1556, 4415, 1), -- Weapon Type
+(1556, 4416, 19), -- Races
 -- Nepal Snow Agathion
-(1557, 4408, 1), -- HP Increase (1x)
-(1557, 4409, 1), -- MP Increase (1x)
-(1557, 4410, 11), -- Average P. Atk.
-(1557, 4411, 11), -- Average M. Atk.
-(1557, 4412, 11), -- Average P. Def.
-(1557, 4413, 11), -- Average M. Def.
-(1557, 4414, 2), -- Standard Type
-(1557, 4415, 1), -- Bare Hands
-(1557, 4416, 19), -- Others
+(1557, 4408, 1), -- HP Modifiers
+(1557, 4409, 1), -- MP Modifiers
+(1557, 4410, 11), -- P. Atk. Modifiers
+(1557, 4411, 11), -- M. Atk. Modifiers
+(1557, 4412, 11), -- P. Def. Modifiers
+(1557, 4413, 11), -- M. Def. Modifiers
+(1557, 4414, 2), -- Armor Type
+(1557, 4415, 1), -- Weapon Type
+(1557, 4416, 19), -- Races
 -- Round Ball Snow Agathion
-(1558, 4408, 1), -- HP Increase (1x)
-(1558, 4409, 1), -- MP Increase (1x)
-(1558, 4410, 11), -- Average P. Atk.
-(1558, 4411, 11), -- Average M. Atk.
-(1558, 4412, 11), -- Average P. Def.
-(1558, 4413, 11), -- Average M. Def.
-(1558, 4414, 2), -- Standard Type
-(1558, 4415, 1), -- Bare Hands
-(1558, 4416, 19), -- Others
+(1558, 4408, 1), -- HP Modifiers
+(1558, 4409, 1), -- MP Modifiers
+(1558, 4410, 11), -- P. Atk. Modifiers
+(1558, 4411, 11), -- M. Atk. Modifiers
+(1558, 4412, 11), -- P. Def. Modifiers
+(1558, 4413, 11), -- M. Def. Modifiers
+(1558, 4414, 2), -- Armor Type
+(1558, 4415, 1), -- Weapon Type
+(1558, 4416, 19), -- Races
 -- Ladder Snow Agathion
-(1559, 4408, 1), -- HP Increase (1x)
-(1559, 4409, 1), -- MP Increase (1x)
-(1559, 4410, 11), -- Average P. Atk.
-(1559, 4411, 11), -- Average M. Atk.
-(1559, 4412, 11), -- Average P. Def.
-(1559, 4413, 11), -- Average M. Def.
-(1559, 4414, 2), -- Standard Type
-(1559, 4415, 1), -- Bare Hands
-(1559, 4416, 19), -- Others
+(1559, 4408, 1), -- HP Modifiers
+(1559, 4409, 1), -- MP Modifiers
+(1559, 4410, 11), -- P. Atk. Modifiers
+(1559, 4411, 11), -- M. Atk. Modifiers
+(1559, 4412, 11), -- P. Def. Modifiers
+(1559, 4413, 11), -- M. Def. Modifiers
+(1559, 4414, 2), -- Armor Type
+(1559, 4415, 1), -- Weapon Type
+(1559, 4416, 19), -- Races
 -- Blue Opera Agathion
-(1560, 4408, 1), -- HP Increase (1x)
-(1560, 4409, 1), -- MP Increase (1x)
-(1560, 4410, 11), -- Average P. Atk.
-(1560, 4411, 11), -- Average M. Atk.
-(1560, 4412, 11), -- Average P. Def.
-(1560, 4413, 11), -- Average M. Def.
-(1560, 4414, 2), -- Standard Type
-(1560, 4415, 1), -- Bare Hands
-(1560, 4416, 19), -- Others
+(1560, 4408, 1), -- HP Modifiers
+(1560, 4409, 1), -- MP Modifiers
+(1560, 4410, 11), -- P. Atk. Modifiers
+(1560, 4411, 11), -- M. Atk. Modifiers
+(1560, 4412, 11), -- P. Def. Modifiers
+(1560, 4413, 11), -- M. Def. Modifiers
+(1560, 4414, 2), -- Armor Type
+(1560, 4415, 1), -- Weapon Type
+(1560, 4416, 19), -- Races
 -- Baby Rudolph
-(1561, 4408, 1), -- HP Increase (1x)
-(1561, 4409, 1), -- MP Increase (1x)
-(1561, 4410, 11), -- Average P. Atk.
-(1561, 4411, 11), -- Average M. Atk.
-(1561, 4412, 11), -- Average P. Def.
-(1561, 4413, 11), -- Average M. Def.
-(1561, 4414, 2), -- Standard Type
-(1561, 4415, 1), -- Bare Hands
-(1561, 4416, 19), -- Others
+(1561, 4408, 1), -- HP Modifiers
+(1561, 4409, 1), -- MP Modifiers
+(1561, 4410, 11), -- P. Atk. Modifiers
+(1561, 4411, 11), -- M. Atk. Modifiers
+(1561, 4412, 11), -- P. Def. Modifiers
+(1561, 4413, 11), -- M. Def. Modifiers
+(1561, 4414, 2), -- Armor Type
+(1561, 4415, 1), -- Weapon Type
+(1561, 4416, 19), -- Races
 -- Desheloph
 (1562, 1499, 1), -- Improved Combat
 (1562, 1501, 1), -- Improved Condition
@@ -1022,15 +1022,15 @@ INSERT INTO `npcskills` VALUES
 (1562, 1504, 1), -- Improved Movement
 (1562, 1519, 1), -- Chant of Blood Awakening
 (1562, 4121, 1), -- Summoned Monster Magic Protection
-(1562, 4408, 1), -- HP Increase (1x)
-(1562, 4409, 1), -- MP Increase (1x)
-(1562, 4410, 11), -- Average P. Atk.
-(1562, 4411, 11), -- Average M. Atk.
-(1562, 4412, 11), -- Average P. Def.
-(1562, 4413, 11), -- Average M. Def.
-(1562, 4414, 2), -- Standard Type
-(1562, 4415, 1), -- Bare Hands
-(1562, 4416, 7), -- Spirits
+(1562, 4408, 1), -- HP Modifiers
+(1562, 4409, 1), -- MP Modifiers
+(1562, 4410, 11), -- P. Atk. Modifiers
+(1562, 4411, 11), -- M. Atk. Modifiers
+(1562, 4412, 11), -- P. Def. Modifiers
+(1562, 4413, 11), -- M. Def. Modifiers
+(1562, 4414, 2), -- Armor Type
+(1562, 4415, 1), -- Weapon Type
+(1562, 4416, 7), -- Races
 (1562, 5186, 2), -- Pet Haste
 (1562, 5187, 4), -- Pet Vampiric Rage
 (1562, 5189, 6), -- Pet Blessed Body
@@ -1048,22 +1048,22 @@ INSERT INTO `npcskills` VALUES
 (1562, 6049, 1), -- Battle Cry
 (1562, 6054, 1), -- Switch State
 (1562, 23167, 1), -- Rosy Seduction
-(1562, 23170, 1), -- Mesmerization
+(1562, 23170, 1), -- Mesmerized
 -- Hyum
 (1563, 1499, 1), -- Improved Combat
 (1563, 1500, 1), -- Improved Magic
 (1563, 1501, 1), -- Improved Condition
 (1563, 1504, 1), -- Improved Movement
 (1563, 4121, 1), -- Summoned Monster Magic Protection
-(1563, 4408, 1), -- HP Increase (1x)
-(1563, 4409, 1), -- MP Increase (1x)
-(1563, 4410, 11), -- Average P. Atk.
-(1563, 4411, 11), -- Average M. Atk.
-(1563, 4412, 11), -- Average P. Def.
-(1563, 4413, 11), -- Average M. Def.
-(1563, 4414, 2), -- Standard Type
-(1563, 4415, 1), -- Bare Hands
-(1563, 4416, 7), -- Spirits
+(1563, 4408, 1), -- HP Modifiers
+(1563, 4409, 1), -- MP Modifiers
+(1563, 4410, 11), -- P. Atk. Modifiers
+(1563, 4411, 11), -- M. Atk. Modifiers
+(1563, 4412, 11), -- P. Def. Modifiers
+(1563, 4413, 11), -- M. Def. Modifiers
+(1563, 4414, 2), -- Armor Type
+(1563, 4415, 1), -- Weapon Type
+(1563, 4416, 7), -- Races
 (1563, 5190, 6), -- Pet Blessed Soul
 (1563, 5192, 2), -- Pet Wind Walk
 (1563, 5193, 3), -- Pet Acumen
@@ -1077,21 +1077,21 @@ INSERT INTO `npcskills` VALUES
 (1563, 5771, 1), -- Buff Control
 (1563, 6054, 1), -- Switch State
 (1563, 23167, 1), -- Rosy Seduction
-(1563, 23170, 1), -- Mesmerization
+(1563, 23170, 1), -- Mesmerized
 -- Lekang
 (1564, 1499, 1), -- Improved Combat
 (1564, 1501, 1), -- Improved Condition
 (1564, 1504, 1), -- Improved Movement
 (1564, 4121, 1), -- Summoned Monster Magic Protection
-(1564, 4408, 1), -- HP Increase (1x)
-(1564, 4409, 1), -- MP Increase (1x)
-(1564, 4410, 11), -- Average P. Atk.
-(1564, 4411, 11), -- Average M. Atk.
-(1564, 4412, 11), -- Average P. Def.
-(1564, 4413, 11), -- Average M. Def.
-(1564, 4414, 2), -- Standard Type
-(1564, 4415, 1), -- Bare Hands
-(1564, 4416, 7), -- Spirits
+(1564, 4408, 1), -- HP Modifiers
+(1564, 4409, 1), -- MP Modifiers
+(1564, 4410, 11), -- P. Atk. Modifiers
+(1564, 4411, 11), -- M. Atk. Modifiers
+(1564, 4412, 11), -- P. Def. Modifiers
+(1564, 4413, 11), -- M. Def. Modifiers
+(1564, 4414, 2), -- Armor Type
+(1564, 4415, 1), -- Weapon Type
+(1564, 4416, 7), -- Races
 (1564, 5189, 6), -- Pet Blessed Body
 (1564, 5190, 6), -- Pet Blessed Soul
 (1564, 5192, 2), -- Pet Wind Walk
@@ -1107,7 +1107,7 @@ INSERT INTO `npcskills` VALUES
 (1564, 6053, 1), -- Howl
 (1564, 6054, 1), -- Switch State
 (1564, 23167, 1), -- Rosy Seduction
-(1564, 23170, 1), -- Mesmerization
+(1564, 23170, 1), -- Mesmerized
 -- Lilias
 (1565, 1499, 1), -- Improved Combat
 (1565, 1501, 1), -- Improved Condition
@@ -1115,15 +1115,15 @@ INSERT INTO `npcskills` VALUES
 (1565, 1504, 1), -- Improved Movement
 (1565, 1519, 1), -- Chant of Blood Awakening
 (1565, 4121, 1), -- Summoned Monster Magic Protection
-(1565, 4408, 1), -- HP Increase (1x)
-(1565, 4409, 1), -- MP Increase (1x)
-(1565, 4410, 11), -- Average P. Atk.
-(1565, 4411, 11), -- Average M. Atk.
-(1565, 4412, 11), -- Average P. Def.
-(1565, 4413, 11), -- Average M. Def.
-(1565, 4414, 2), -- Standard Type
-(1565, 4415, 1), -- Bare Hands
-(1565, 4416, 7), -- Spirits
+(1565, 4408, 1), -- HP Modifiers
+(1565, 4409, 1), -- MP Modifiers
+(1565, 4410, 11), -- P. Atk. Modifiers
+(1565, 4411, 11), -- M. Atk. Modifiers
+(1565, 4412, 11), -- P. Def. Modifiers
+(1565, 4413, 11), -- M. Def. Modifiers
+(1565, 4414, 2), -- Armor Type
+(1565, 4415, 1), -- Weapon Type
+(1565, 4416, 7), -- Races
 (1565, 5186, 2), -- Pet Haste
 (1565, 5187, 4), -- Pet Vampiric Rage
 (1565, 5189, 6), -- Pet Blessed Body
@@ -1141,22 +1141,22 @@ INSERT INTO `npcskills` VALUES
 (1565, 6049, 1), -- Battle Cry
 (1565, 6054, 1), -- Switch State
 (1565, 23167, 1), -- Rosy Seduction
-(1565, 23170, 1), -- Mesmerization
+(1565, 23170, 1), -- Mesmerized
 -- Lapham
 (1566, 1499, 1), -- Improved Combat
 (1566, 1500, 1), -- Improved Magic
 (1566, 1501, 1), -- Improved Condition
 (1566, 1504, 1), -- Improved Movement
 (1566, 4121, 1), -- Summoned Monster Magic Protection
-(1566, 4408, 1), -- HP Increase (1x)
-(1566, 4409, 1), -- MP Increase (1x)
-(1566, 4410, 11), -- Average P. Atk.
-(1566, 4411, 11), -- Average M. Atk.
-(1566, 4412, 11), -- Average P. Def.
-(1566, 4413, 11), -- Average M. Def.
-(1566, 4414, 2), -- Standard Type
-(1566, 4415, 1), -- Bare Hands
-(1566, 4416, 7), -- Spirits
+(1566, 4408, 1), -- HP Modifiers
+(1566, 4409, 1), -- MP Modifiers
+(1566, 4410, 11), -- P. Atk. Modifiers
+(1566, 4411, 11), -- M. Atk. Modifiers
+(1566, 4412, 11), -- P. Def. Modifiers
+(1566, 4413, 11), -- M. Def. Modifiers
+(1566, 4414, 2), -- Armor Type
+(1566, 4415, 1), -- Weapon Type
+(1566, 4416, 7), -- Races
 (1566, 5190, 6), -- Pet Blessed Soul
 (1566, 5192, 2), -- Pet Wind Walk
 (1566, 5193, 3), -- Pet Acumen
@@ -1170,21 +1170,21 @@ INSERT INTO `npcskills` VALUES
 (1566, 5771, 1), -- Buff Control
 (1566, 6054, 1), -- Switch State
 (1566, 23167, 1), -- Rosy Seduction
-(1566, 23170, 1), -- Mesmerization
+(1566, 23170, 1), -- Mesmerized
 -- Mafum
 (1567, 1499, 1), -- Improved Combat
 (1567, 1501, 1), -- Improved Condition
 (1567, 1504, 1), -- Improved Movement
 (1567, 4121, 1), -- Summoned Monster Magic Protection
-(1567, 4408, 1), -- HP Increase (1x)
-(1567, 4409, 1), -- MP Increase (1x)
-(1567, 4410, 11), -- Average P. Atk.
-(1567, 4411, 11), -- Average M. Atk.
-(1567, 4412, 11), -- Average P. Def.
-(1567, 4413, 11), -- Average M. Def.
-(1567, 4414, 2), -- Standard Type
-(1567, 4415, 1), -- Bare Hands
-(1567, 4416, 7), -- Spirits
+(1567, 4408, 1), -- HP Modifiers
+(1567, 4409, 1), -- MP Modifiers
+(1567, 4410, 11), -- P. Atk. Modifiers
+(1567, 4411, 11), -- M. Atk. Modifiers
+(1567, 4412, 11), -- P. Def. Modifiers
+(1567, 4413, 11), -- M. Def. Modifiers
+(1567, 4414, 2), -- Armor Type
+(1567, 4415, 1), -- Weapon Type
+(1567, 4416, 7), -- Races
 (1567, 5189, 6), -- Pet Blessed Body
 (1567, 5190, 6), -- Pet Blessed Soul
 (1567, 5192, 2), -- Pet Wind Walk
@@ -1200,7 +1200,7 @@ INSERT INTO `npcskills` VALUES
 (1567, 6053, 1), -- Howl
 (1567, 6054, 1), -- Switch State
 (1567, 23167, 1), -- Rosy Seduction
-(1567, 23170, 1), -- Mesmerization
+(1567, 23170, 1), -- Mesmerized
 -- Desheloph
 (1568, 1499, 1), -- Improved Combat
 (1568, 1501, 1), -- Improved Condition
@@ -1208,15 +1208,15 @@ INSERT INTO `npcskills` VALUES
 (1568, 1504, 1), -- Improved Movement
 (1568, 1519, 1), -- Chant of Blood Awakening
 (1568, 4121, 1), -- Summoned Monster Magic Protection
-(1568, 4408, 1), -- HP Increase (1x)
-(1568, 4409, 1), -- MP Increase (1x)
-(1568, 4410, 11), -- Average P. Atk.
-(1568, 4411, 11), -- Average M. Atk.
-(1568, 4412, 11), -- Average P. Def.
-(1568, 4413, 11), -- Average M. Def.
-(1568, 4414, 2), -- Standard Type
-(1568, 4415, 1), -- Bare Hands
-(1568, 4416, 7), -- Spirits
+(1568, 4408, 1), -- HP Modifiers
+(1568, 4409, 1), -- MP Modifiers
+(1568, 4410, 11), -- P. Atk. Modifiers
+(1568, 4411, 11), -- M. Atk. Modifiers
+(1568, 4412, 11), -- P. Def. Modifiers
+(1568, 4413, 11), -- M. Def. Modifiers
+(1568, 4414, 2), -- Armor Type
+(1568, 4415, 1), -- Weapon Type
+(1568, 4416, 7), -- Races
 (1568, 5186, 2), -- Pet Haste
 (1568, 5187, 4), -- Pet Vampiric Rage
 (1568, 5189, 6), -- Pet Blessed Body
@@ -1234,22 +1234,22 @@ INSERT INTO `npcskills` VALUES
 (1568, 6049, 1), -- Battle Cry
 (1568, 6054, 1), -- Switch State
 (1568, 23168, 1), -- Critical Seduction
-(1568, 23169, 1), -- Mesmerization
+(1568, 23169, 1), -- Mesmerized
 -- Hyum
 (1569, 1499, 1), -- Improved Combat
 (1569, 1500, 1), -- Improved Magic
 (1569, 1501, 1), -- Improved Condition
 (1569, 1504, 1), -- Improved Movement
 (1569, 4121, 1), -- Summoned Monster Magic Protection
-(1569, 4408, 1), -- HP Increase (1x)
-(1569, 4409, 1), -- MP Increase (1x)
-(1569, 4410, 11), -- Average P. Atk.
-(1569, 4411, 11), -- Average M. Atk.
-(1569, 4412, 11), -- Average P. Def.
-(1569, 4413, 11), -- Average M. Def.
-(1569, 4414, 2), -- Standard Type
-(1569, 4415, 1), -- Bare Hands
-(1569, 4416, 7), -- Spirits
+(1569, 4408, 1), -- HP Modifiers
+(1569, 4409, 1), -- MP Modifiers
+(1569, 4410, 11), -- P. Atk. Modifiers
+(1569, 4411, 11), -- M. Atk. Modifiers
+(1569, 4412, 11), -- P. Def. Modifiers
+(1569, 4413, 11), -- M. Def. Modifiers
+(1569, 4414, 2), -- Armor Type
+(1569, 4415, 1), -- Weapon Type
+(1569, 4416, 7), -- Races
 (1569, 5190, 6), -- Pet Blessed Soul
 (1569, 5192, 2), -- Pet Wind Walk
 (1569, 5193, 3), -- Pet Acumen
@@ -1263,21 +1263,21 @@ INSERT INTO `npcskills` VALUES
 (1569, 5771, 1), -- Buff Control
 (1569, 6054, 1), -- Switch State
 (1569, 23168, 1), -- Critical Seduction
-(1569, 23169, 1), -- Mesmerization
+(1569, 23169, 1), -- Mesmerized
 -- Lekang
 (1570, 1499, 1), -- Improved Combat
 (1570, 1501, 1), -- Improved Condition
 (1570, 1504, 1), -- Improved Movement
 (1570, 4121, 1), -- Summoned Monster Magic Protection
-(1570, 4408, 1), -- HP Increase (1x)
-(1570, 4409, 1), -- MP Increase (1x)
-(1570, 4410, 11), -- Average P. Atk.
-(1570, 4411, 11), -- Average M. Atk.
-(1570, 4412, 11), -- Average P. Def.
-(1570, 4413, 11), -- Average M. Def.
-(1570, 4414, 2), -- Standard Type
-(1570, 4415, 1), -- Bare Hands
-(1570, 4416, 7), -- Spirits
+(1570, 4408, 1), -- HP Modifiers
+(1570, 4409, 1), -- MP Modifiers
+(1570, 4410, 11), -- P. Atk. Modifiers
+(1570, 4411, 11), -- M. Atk. Modifiers
+(1570, 4412, 11), -- P. Def. Modifiers
+(1570, 4413, 11), -- M. Def. Modifiers
+(1570, 4414, 2), -- Armor Type
+(1570, 4415, 1), -- Weapon Type
+(1570, 4416, 7), -- Races
 (1570, 5189, 6), -- Pet Blessed Body
 (1570, 5190, 6), -- Pet Blessed Soul
 (1570, 5192, 2), -- Pet Wind Walk
@@ -1293,7 +1293,7 @@ INSERT INTO `npcskills` VALUES
 (1570, 6053, 1), -- Howl
 (1570, 6054, 1), -- Switch State
 (1570, 23168, 1), -- Critical Seduction
-(1570, 23169, 1), -- Mesmerization
+(1570, 23169, 1), -- Mesmerized
 -- Lilias
 (1571, 1499, 1), -- Improved Combat
 (1571, 1501, 1), -- Improved Condition
@@ -1301,15 +1301,15 @@ INSERT INTO `npcskills` VALUES
 (1571, 1504, 1), -- Improved Movement
 (1571, 1519, 1), -- Chant of Blood Awakening
 (1571, 4121, 1), -- Summoned Monster Magic Protection
-(1571, 4408, 1), -- HP Increase (1x)
-(1571, 4409, 1), -- MP Increase (1x)
-(1571, 4410, 11), -- Average P. Atk.
-(1571, 4411, 11), -- Average M. Atk.
-(1571, 4412, 11), -- Average P. Def.
-(1571, 4413, 11), -- Average M. Def.
-(1571, 4414, 2), -- Standard Type
-(1571, 4415, 1), -- Bare Hands
-(1571, 4416, 7), -- Spirits
+(1571, 4408, 1), -- HP Modifiers
+(1571, 4409, 1), -- MP Modifiers
+(1571, 4410, 11), -- P. Atk. Modifiers
+(1571, 4411, 11), -- M. Atk. Modifiers
+(1571, 4412, 11), -- P. Def. Modifiers
+(1571, 4413, 11), -- M. Def. Modifiers
+(1571, 4414, 2), -- Armor Type
+(1571, 4415, 1), -- Weapon Type
+(1571, 4416, 7), -- Races
 (1571, 5186, 2), -- Pet Haste
 (1571, 5187, 4), -- Pet Vampiric Rage
 (1571, 5189, 6), -- Pet Blessed Body
@@ -1327,22 +1327,22 @@ INSERT INTO `npcskills` VALUES
 (1571, 6049, 1), -- Battle Cry
 (1571, 6054, 1), -- Switch State
 (1571, 23168, 1), -- Critical Seduction
-(1571, 23169, 1), -- Mesmerization
+(1571, 23169, 1), -- Mesmerized
 -- Lapham
 (1572, 1499, 1), -- Improved Combat
 (1572, 1500, 1), -- Improved Magic
 (1572, 1501, 1), -- Improved Condition
 (1572, 1504, 1), -- Improved Movement
 (1572, 4121, 1), -- Summoned Monster Magic Protection
-(1572, 4408, 1), -- HP Increase (1x)
-(1572, 4409, 1), -- MP Increase (1x)
-(1572, 4410, 11), -- Average P. Atk.
-(1572, 4411, 11), -- Average M. Atk.
-(1572, 4412, 11), -- Average P. Def.
-(1572, 4413, 11), -- Average M. Def.
-(1572, 4414, 2), -- Standard Type
-(1572, 4415, 1), -- Bare Hands
-(1572, 4416, 7), -- Spirits
+(1572, 4408, 1), -- HP Modifiers
+(1572, 4409, 1), -- MP Modifiers
+(1572, 4410, 11), -- P. Atk. Modifiers
+(1572, 4411, 11), -- M. Atk. Modifiers
+(1572, 4412, 11), -- P. Def. Modifiers
+(1572, 4413, 11), -- M. Def. Modifiers
+(1572, 4414, 2), -- Armor Type
+(1572, 4415, 1), -- Weapon Type
+(1572, 4416, 7), -- Races
 (1572, 5190, 6), -- Pet Blessed Soul
 (1572, 5192, 2), -- Pet Wind Walk
 (1572, 5193, 3), -- Pet Acumen
@@ -1356,21 +1356,21 @@ INSERT INTO `npcskills` VALUES
 (1572, 5771, 1), -- Buff Control
 (1572, 6054, 1), -- Switch State
 (1572, 23168, 1), -- Critical Seduction
-(1572, 23169, 1), -- Mesmerization
+(1572, 23169, 1), -- Mesmerized
 -- Mafum
 (1573, 1499, 1), -- Improved Combat
 (1573, 1501, 1), -- Improved Condition
 (1573, 1504, 1), -- Improved Movement
 (1573, 4121, 1), -- Summoned Monster Magic Protection
-(1573, 4408, 1), -- HP Increase (1x)
-(1573, 4409, 1), -- MP Increase (1x)
-(1573, 4410, 11), -- Average P. Atk.
-(1573, 4411, 11), -- Average M. Atk.
-(1573, 4412, 11), -- Average P. Def.
-(1573, 4413, 11), -- Average M. Def.
-(1573, 4414, 2), -- Standard Type
-(1573, 4415, 1), -- Bare Hands
-(1573, 4416, 7), -- Spirits
+(1573, 4408, 1), -- HP Modifiers
+(1573, 4409, 1), -- MP Modifiers
+(1573, 4410, 11), -- P. Atk. Modifiers
+(1573, 4411, 11), -- M. Atk. Modifiers
+(1573, 4412, 11), -- P. Def. Modifiers
+(1573, 4413, 11), -- M. Def. Modifiers
+(1573, 4414, 2), -- Armor Type
+(1573, 4415, 1), -- Weapon Type
+(1573, 4416, 7), -- Races
 (1573, 5189, 6), -- Pet Blessed Body
 (1573, 5190, 6), -- Pet Blessed Soul
 (1573, 5192, 2), -- Pet Wind Walk
@@ -1386,211 +1386,211 @@ INSERT INTO `npcskills` VALUES
 (1573, 6053, 1), -- Howl
 (1573, 6054, 1), -- Switch State
 (1573, 23168, 1), -- Critical Seduction
-(1573, 23169, 1), -- Mesmerization
+(1573, 23169, 1), -- Mesmerized
 -- Phoenix
-(1574, 4408, 1), -- HP Increase (1x)
-(1574, 4409, 1), -- MP Increase (1x)
-(1574, 4410, 11), -- Average P. Atk.
-(1574, 4411, 11), -- Average M. Atk.
-(1574, 4412, 11), -- Average P. Def.
-(1574, 4413, 11), -- Average M. Def.
-(1574, 4414, 2), -- Standard Type
-(1574, 4415, 1), -- Bare Hands
-(1574, 4416, 19), -- Others
+(1574, 4408, 1), -- HP Modifiers
+(1574, 4409, 1), -- MP Modifiers
+(1574, 4410, 11), -- P. Atk. Modifiers
+(1574, 4411, 11), -- M. Atk. Modifiers
+(1574, 4412, 11), -- P. Def. Modifiers
+(1574, 4413, 11), -- M. Def. Modifiers
+(1574, 4414, 2), -- Armor Type
+(1574, 4415, 1), -- Weapon Type
+(1574, 4416, 19), -- Races
 -- Samduyong
-(1575, 4408, 1), -- HP Increase (1x)
-(1575, 4409, 1), -- MP Increase (1x)
-(1575, 4410, 11), -- Average P. Atk.
-(1575, 4411, 11), -- Average M. Atk.
-(1575, 4412, 11), -- Average P. Def.
-(1575, 4413, 11), -- Average M. Def.
-(1575, 4414, 2), -- Standard Type
-(1575, 4415, 1), -- Bare Hands
-(1575, 4416, 19), -- Others
+(1575, 4408, 1), -- HP Modifiers
+(1575, 4409, 1), -- MP Modifiers
+(1575, 4410, 11), -- P. Atk. Modifiers
+(1575, 4411, 11), -- M. Atk. Modifiers
+(1575, 4412, 11), -- P. Def. Modifiers
+(1575, 4413, 11), -- M. Def. Modifiers
+(1575, 4414, 2), -- Armor Type
+(1575, 4415, 1), -- Weapon Type
+(1575, 4416, 19), -- Races
 -- Ball Trapping Gnosian
-(1576, 4408, 1), -- HP Increase (1x)
-(1576, 4409, 1), -- MP Increase (1x)
-(1576, 4410, 11), -- Average P. Atk.
-(1576, 4411, 11), -- Average M. Atk.
-(1576, 4412, 11), -- Average P. Def.
-(1576, 4413, 11), -- Average M. Def.
-(1576, 4414, 2), -- Standard Type
-(1576, 4415, 1), -- Bare Hands
-(1576, 4416, 19), -- Others
+(1576, 4408, 1), -- HP Modifiers
+(1576, 4409, 1), -- MP Modifiers
+(1576, 4410, 11), -- P. Atk. Modifiers
+(1576, 4411, 11), -- M. Atk. Modifiers
+(1576, 4412, 11), -- P. Def. Modifiers
+(1576, 4413, 11), -- M. Def. Modifiers
+(1576, 4414, 2), -- Armor Type
+(1576, 4415, 1), -- Weapon Type
+(1576, 4416, 19), -- Races
 -- Ball Trapping Orodriel
-(1577, 4408, 1), -- HP Increase (1x)
-(1577, 4409, 1), -- MP Increase (1x)
-(1577, 4410, 11), -- Average P. Atk.
-(1577, 4411, 11), -- Average M. Atk.
-(1577, 4412, 11), -- Average P. Def.
-(1577, 4413, 11), -- Average M. Def.
-(1577, 4414, 2), -- Standard Type
-(1577, 4415, 1), -- Bare Hands
-(1577, 4416, 19), -- Others
+(1577, 4408, 1), -- HP Modifiers
+(1577, 4409, 1), -- MP Modifiers
+(1577, 4410, 11), -- P. Atk. Modifiers
+(1577, 4411, 11), -- M. Atk. Modifiers
+(1577, 4412, 11), -- P. Def. Modifiers
+(1577, 4413, 11), -- M. Def. Modifiers
+(1577, 4414, 2), -- Armor Type
+(1577, 4415, 1), -- Weapon Type
+(1577, 4416, 19), -- Races
 -- Penalty Kick
-(1578, 4408, 1), -- HP Increase (1x)
-(1578, 4409, 1), -- MP Increase (1x)
-(1578, 4410, 11), -- Average P. Atk.
-(1578, 4411, 11), -- Average M. Atk.
-(1578, 4412, 11), -- Average P. Def.
-(1578, 4413, 11), -- Average M. Def.
-(1578, 4414, 2), -- Standard Type
-(1578, 4415, 1), -- Bare Hands
-(1578, 4416, 19), -- Others
+(1578, 4408, 1), -- HP Modifiers
+(1578, 4409, 1), -- MP Modifiers
+(1578, 4410, 11), -- P. Atk. Modifiers
+(1578, 4411, 11), -- M. Atk. Modifiers
+(1578, 4412, 11), -- P. Def. Modifiers
+(1578, 4413, 11), -- M. Def. Modifiers
+(1578, 4414, 2), -- Armor Type
+(1578, 4415, 1), -- Weapon Type
+(1578, 4416, 19), -- Races
 -- Ball Trapping Gnosian
-(1579, 4408, 1), -- HP Increase (1x)
-(1579, 4409, 1), -- MP Increase (1x)
-(1579, 4410, 11), -- Average P. Atk.
-(1579, 4411, 11), -- Average M. Atk.
-(1579, 4412, 11), -- Average P. Def.
-(1579, 4413, 11), -- Average M. Def.
-(1579, 4414, 2), -- Standard Type
-(1579, 4415, 1), -- Bare Hands
-(1579, 4416, 19), -- Others
+(1579, 4408, 1), -- HP Modifiers
+(1579, 4409, 1), -- MP Modifiers
+(1579, 4410, 11), -- P. Atk. Modifiers
+(1579, 4411, 11), -- M. Atk. Modifiers
+(1579, 4412, 11), -- P. Def. Modifiers
+(1579, 4413, 11), -- M. Def. Modifiers
+(1579, 4414, 2), -- Armor Type
+(1579, 4415, 1), -- Weapon Type
+(1579, 4416, 19), -- Races
 -- Ball Trapping Orodriel
-(1580, 4408, 1), -- HP Increase (1x)
-(1580, 4409, 1), -- MP Increase (1x)
-(1580, 4410, 11), -- Average P. Atk.
-(1580, 4411, 11), -- Average M. Atk.
-(1580, 4412, 11), -- Average P. Def.
-(1580, 4413, 11), -- Average M. Def.
-(1580, 4414, 2), -- Standard Type
-(1580, 4415, 1), -- Bare Hands
-(1580, 4416, 19), -- Others
+(1580, 4408, 1), -- HP Modifiers
+(1580, 4409, 1), -- MP Modifiers
+(1580, 4410, 11), -- P. Atk. Modifiers
+(1580, 4411, 11), -- M. Atk. Modifiers
+(1580, 4412, 11), -- P. Def. Modifiers
+(1580, 4413, 11), -- M. Def. Modifiers
+(1580, 4414, 2), -- Armor Type
+(1580, 4415, 1), -- Weapon Type
+(1580, 4416, 19), -- Races
 -- Penalty Kick
-(1581, 4408, 1), -- HP Increase (1x)
-(1581, 4409, 1), -- MP Increase (1x)
-(1581, 4410, 11), -- Average P. Atk.
-(1581, 4411, 11), -- Average M. Atk.
-(1581, 4412, 11), -- Average P. Def.
-(1581, 4413, 11), -- Average M. Def.
-(1581, 4414, 2), -- Standard Type
-(1581, 4415, 1), -- Bare Hands
-(1581, 4416, 19), -- Others
+(1581, 4408, 1), -- HP Modifiers
+(1581, 4409, 1), -- MP Modifiers
+(1581, 4410, 11), -- P. Atk. Modifiers
+(1581, 4411, 11), -- M. Atk. Modifiers
+(1581, 4412, 11), -- P. Def. Modifiers
+(1581, 4413, 11), -- M. Def. Modifiers
+(1581, 4414, 2), -- Armor Type
+(1581, 4415, 1), -- Weapon Type
+(1581, 4416, 19), -- Races
 -- Ball Trapping Gnosian
-(1582, 4408, 1), -- HP Increase (1x)
-(1582, 4409, 1), -- MP Increase (1x)
-(1582, 4410, 11), -- Average P. Atk.
-(1582, 4411, 11), -- Average M. Atk.
-(1582, 4412, 11), -- Average P. Def.
-(1582, 4413, 11), -- Average M. Def.
-(1582, 4414, 2), -- Standard Type
-(1582, 4415, 1), -- Bare Hands
-(1582, 4416, 19), -- Others
+(1582, 4408, 1), -- HP Modifiers
+(1582, 4409, 1), -- MP Modifiers
+(1582, 4410, 11), -- P. Atk. Modifiers
+(1582, 4411, 11), -- M. Atk. Modifiers
+(1582, 4412, 11), -- P. Def. Modifiers
+(1582, 4413, 11), -- M. Def. Modifiers
+(1582, 4414, 2), -- Armor Type
+(1582, 4415, 1), -- Weapon Type
+(1582, 4416, 19), -- Races
 -- Ball Trapping Orodriel
-(1583, 4408, 1), -- HP Increase (1x)
-(1583, 4409, 1), -- MP Increase (1x)
-(1583, 4410, 11), -- Average P. Atk.
-(1583, 4411, 11), -- Average M. Atk.
-(1583, 4412, 11), -- Average P. Def.
-(1583, 4413, 11), -- Average M. Def.
-(1583, 4414, 2), -- Standard Type
-(1583, 4415, 1), -- Bare Hands
-(1583, 4416, 19), -- Others
+(1583, 4408, 1), -- HP Modifiers
+(1583, 4409, 1), -- MP Modifiers
+(1583, 4410, 11), -- P. Atk. Modifiers
+(1583, 4411, 11), -- M. Atk. Modifiers
+(1583, 4412, 11), -- P. Def. Modifiers
+(1583, 4413, 11), -- M. Def. Modifiers
+(1583, 4414, 2), -- Armor Type
+(1583, 4415, 1), -- Weapon Type
+(1583, 4416, 19), -- Races
 -- Penalty Kick
-(1584, 4408, 1), -- HP Increase (1x)
-(1584, 4409, 1), -- MP Increase (1x)
-(1584, 4410, 11), -- Average P. Atk.
-(1584, 4411, 11), -- Average M. Atk.
-(1584, 4412, 11), -- Average P. Def.
-(1584, 4413, 11), -- Average M. Def.
-(1584, 4414, 2), -- Standard Type
-(1584, 4415, 1), -- Bare Hands
-(1584, 4416, 19), -- Others
+(1584, 4408, 1), -- HP Modifiers
+(1584, 4409, 1), -- MP Modifiers
+(1584, 4410, 11), -- P. Atk. Modifiers
+(1584, 4411, 11), -- M. Atk. Modifiers
+(1584, 4412, 11), -- P. Def. Modifiers
+(1584, 4413, 11), -- M. Def. Modifiers
+(1584, 4414, 2), -- Armor Type
+(1584, 4415, 1), -- Weapon Type
+(1584, 4416, 19), -- Races
 -- Granny Tiger 
-(1585, 4408, 1), -- HP Increase (1x)
-(1585, 4409, 1), -- MP Increase (1x)
-(1585, 4410, 11), -- Average P. Atk.
-(1585, 4411, 11), -- Average M. Atk.
-(1585, 4412, 11), -- Average P. Def.
-(1585, 4413, 11), -- Average M. Def.
-(1585, 4414, 2), -- Standard Type
-(1585, 4415, 1), -- Bare Hands
-(1585, 4416, 19), -- Others
+(1585, 4408, 1), -- HP Modifiers
+(1585, 4409, 1), -- MP Modifiers
+(1585, 4410, 11), -- P. Atk. Modifiers
+(1585, 4411, 11), -- M. Atk. Modifiers
+(1585, 4412, 11), -- P. Def. Modifiers
+(1585, 4413, 11), -- M. Def. Modifiers
+(1585, 4414, 2), -- Armor Type
+(1585, 4415, 1), -- Weapon Type
+(1585, 4416, 19), -- Races
 -- Flower Fairy Spirit
-(1586, 4408, 1), -- HP Increase (1x)
-(1586, 4409, 1), -- MP Increase (1x)
-(1586, 4410, 11), -- Average P. Atk.
-(1586, 4411, 11), -- Average M. Atk.
-(1586, 4412, 11), -- Average P. Def.
-(1586, 4413, 11), -- Average M. Def.
-(1586, 4414, 2), -- Standard Type
-(1586, 4415, 1), -- Bare Hands
-(1586, 4416, 19), -- Others
+(1586, 4408, 1), -- HP Modifiers
+(1586, 4409, 1), -- MP Modifiers
+(1586, 4410, 11), -- P. Atk. Modifiers
+(1586, 4411, 11), -- M. Atk. Modifiers
+(1586, 4412, 11), -- P. Def. Modifiers
+(1586, 4413, 11), -- M. Def. Modifiers
+(1586, 4414, 2), -- Armor Type
+(1586, 4415, 1), -- Weapon Type
+(1586, 4416, 19), -- Races
 -- Cheerleader Orodriel
-(1587, 4408, 1), -- HP Increase (1x)
-(1587, 4409, 1), -- MP Increase (1x)
-(1587, 4410, 11), -- Average P. Atk.
-(1587, 4411, 11), -- Average M. Atk.
-(1587, 4412, 11), -- Average P. Def.
-(1587, 4413, 11), -- Average M. Def.
-(1587, 4414, 2), -- Standard Type
-(1587, 4415, 1), -- Bare Hands
-(1587, 4416, 19), -- Others
+(1587, 4408, 1), -- HP Modifiers
+(1587, 4409, 1), -- MP Modifiers
+(1587, 4410, 11), -- P. Atk. Modifiers
+(1587, 4411, 11), -- M. Atk. Modifiers
+(1587, 4412, 11), -- P. Def. Modifiers
+(1587, 4413, 11), -- M. Def. Modifiers
+(1587, 4414, 2), -- Armor Type
+(1587, 4415, 1), -- Weapon Type
+(1587, 4416, 19), -- Races
 -- Cheerleader Lana
-(1588, 4408, 1), -- HP Increase (1x)
-(1588, 4409, 1), -- MP Increase (1x)
-(1588, 4410, 11), -- Average P. Atk.
-(1588, 4411, 11), -- Average M. Atk.
-(1588, 4412, 11), -- Average P. Def.
-(1588, 4413, 11), -- Average M. Def.
-(1588, 4414, 2), -- Standard Type
-(1588, 4415, 1), -- Bare Hands
-(1588, 4416, 19), -- Others
+(1588, 4408, 1), -- HP Modifiers
+(1588, 4409, 1), -- MP Modifiers
+(1588, 4410, 11), -- P. Atk. Modifiers
+(1588, 4411, 11), -- M. Atk. Modifiers
+(1588, 4412, 11), -- P. Def. Modifiers
+(1588, 4413, 11), -- M. Def. Modifiers
+(1588, 4414, 2), -- Armor Type
+(1588, 4415, 1), -- Weapon Type
+(1588, 4416, 19), -- Races
 -- Cheerleader Naonin
-(1589, 4408, 1), -- HP Increase (1x)
-(1589, 4409, 1), -- MP Increase (1x)
-(1589, 4410, 11), -- Average P. Atk.
-(1589, 4411, 11), -- Average M. Atk.
-(1589, 4412, 11), -- Average P. Def.
-(1589, 4413, 11), -- Average M. Def.
-(1589, 4414, 2), -- Standard Type
-(1589, 4415, 1), -- Bare Hands
-(1589, 4416, 19), -- Others
+(1589, 4408, 1), -- HP Modifiers
+(1589, 4409, 1), -- MP Modifiers
+(1589, 4410, 11), -- P. Atk. Modifiers
+(1589, 4411, 11), -- M. Atk. Modifiers
+(1589, 4412, 11), -- P. Def. Modifiers
+(1589, 4413, 11), -- M. Def. Modifiers
+(1589, 4414, 2), -- Armor Type
+(1589, 4415, 1), -- Weapon Type
+(1589, 4416, 19), -- Races
 -- Cheerleader Mortia
-(1590, 4408, 1), -- HP Increase (1x)
-(1590, 4409, 1), -- MP Increase (1x)
-(1590, 4410, 11), -- Average P. Atk.
-(1590, 4411, 11), -- Average M. Atk.
-(1590, 4412, 11), -- Average P. Def.
-(1590, 4413, 11), -- Average M. Def.
-(1590, 4414, 2), -- Standard Type
-(1590, 4415, 1), -- Bare Hands
-(1590, 4416, 19), -- Others
+(1590, 4408, 1), -- HP Modifiers
+(1590, 4409, 1), -- MP Modifiers
+(1590, 4410, 11), -- P. Atk. Modifiers
+(1590, 4411, 11), -- M. Atk. Modifiers
+(1590, 4412, 11), -- P. Def. Modifiers
+(1590, 4413, 11), -- M. Def. Modifiers
+(1590, 4414, 2), -- Armor Type
+(1590, 4415, 1), -- Weapon Type
+(1590, 4416, 19), -- Races
 -- Cheerleader Kaurin
-(1591, 4408, 1), -- HP Increase (1x)
-(1591, 4409, 1), -- MP Increase (1x)
-(1591, 4410, 11), -- Average P. Atk.
-(1591, 4411, 11), -- Average M. Atk.
-(1591, 4412, 11), -- Average P. Def.
-(1591, 4413, 11), -- Average M. Def.
-(1591, 4414, 2), -- Standard Type
-(1591, 4415, 1), -- Bare Hands
-(1591, 4416, 19), -- Others
+(1591, 4408, 1), -- HP Modifiers
+(1591, 4409, 1), -- MP Modifiers
+(1591, 4410, 11), -- P. Atk. Modifiers
+(1591, 4411, 11), -- M. Atk. Modifiers
+(1591, 4412, 11), -- P. Def. Modifiers
+(1591, 4413, 11), -- M. Def. Modifiers
+(1591, 4414, 2), -- Armor Type
+(1591, 4415, 1), -- Weapon Type
+(1591, 4416, 19), -- Races
 -- Cheerleader Meruril
-(1592, 4408, 1), -- HP Increase (1x)
-(1592, 4409, 1), -- MP Increase (1x)
-(1592, 4410, 11), -- Average P. Atk.
-(1592, 4411, 11), -- Average M. Atk.
-(1592, 4412, 11), -- Average P. Def.
-(1592, 4413, 11), -- Average M. Def.
-(1592, 4414, 2), -- Standard Type
-(1592, 4415, 1), -- Bare Hands
-(1592, 4416, 19), -- Others
+(1592, 4408, 1), -- HP Modifiers
+(1592, 4409, 1), -- MP Modifiers
+(1592, 4410, 11), -- P. Atk. Modifiers
+(1592, 4411, 11), -- M. Atk. Modifiers
+(1592, 4412, 11), -- P. Def. Modifiers
+(1592, 4413, 11), -- M. Def. Modifiers
+(1592, 4414, 2), -- Armor Type
+(1592, 4415, 1), -- Weapon Type
+(1592, 4416, 19), -- Races
 -- Handy
-(1593, 4408, 1), -- HP Increase (1x)
-(1593, 4409, 1), -- MP Increase (1x)
-(1593, 4410, 11), -- Average P. Atk.
-(1593, 4411, 11), -- Average M. Atk.
-(1593, 4412, 11), -- Average P. Def.
-(1593, 4413, 11), -- Average M. Def.
-(1593, 4414, 2), -- Standard Type
-(1593, 4415, 1), -- Bare Hands
-(1593, 4416, 19), -- Others
+(1593, 4408, 1), -- HP Modifiers
+(1593, 4409, 1), -- MP Modifiers
+(1593, 4410, 11), -- P. Atk. Modifiers
+(1593, 4411, 11), -- M. Atk. Modifiers
+(1593, 4412, 11), -- P. Def. Modifiers
+(1593, 4413, 11), -- M. Def. Modifiers
+(1593, 4414, 2), -- Armor Type
+(1593, 4415, 1), -- Weapon Type
+(1593, 4416, 19), -- Races
 -- Singer and Dancer Agathion
-(1594, 23235, 1), -- Singer and Dancer Agathion Special Skill - Song of Hunter
+(1594, 23235, 1), -- Singer Dancer Agathion Special Skill - Song of Hunter
 -- Zakensword Agathion
-(1595, 23237, 1), -- Swords' Song
+(1595, 23237, 1), -- Zaken Spirit Sword Special Skill - Song of the Sword
 -- Cow Agathion
 (1596, 23250, 1), -- Kau Agathion Cute Trick
 -- Tow Agathion
@@ -1598,10 +1598,10 @@ INSERT INTO `npcskills` VALUES
 -- Rudolph Agathion
 (1598, 23297, 1), -- Santa Claus's Blessing
 -- Super Feline Queen Z
-(1601, 4416, 7), -- Spirits
+(1601, 4416, 7), -- Races
 (1601, 23318, 1), -- Cat the Ranger Boots
 -- Super Kat the Cat Z
-(1602, 4416, 2), -- Magic Creatures
+(1602, 4416, 2), -- Races
 (1602, 5745, 1), -- Death Blow
 (1602, 5746, 1), -- Double Attack
 (1602, 5747, 1), -- Spin Attack
@@ -1611,7 +1611,7 @@ INSERT INTO `npcskills` VALUES
 (1602, 6049, 1), -- Battle Cry
 (1602, 23318, 1), -- Cat the Ranger Boots
 -- Super Mew the Cat Z
-(1603, 4416, 4), -- Animals
+(1603, 4416, 4), -- Races
 (1603, 5745, 1), -- Death Blow
 (1603, 5746, 1), -- Double Attack
 (1603, 5747, 1), -- Spin Attack
@@ -1619,14320 +1619,14320 @@ INSERT INTO `npcskills` VALUES
 (1603, 6053, 1), -- Howl
 (1603, 23318, 1), -- Cat the Ranger Boots
 -- Canabion of Plague
-(2081, 4032, 1), -- Power Strike
-(2081, 4416, 9), -- Demons
+(2081, 4032, 1), -- NPC Strike
+(2081, 4416, 9), -- Races
 (2081, 5565, 1), -- Expose Weak Point
 -- Canabion of Plague
-(2082, 4032, 1), -- Power Strike
-(2082, 4416, 9), -- Demons
+(2082, 4032, 1), -- NPC Strike
+(2082, 4416, 9), -- Races
 (2082, 5565, 1), -- Expose Weak Point
 -- Canabion of Plague
-(2083, 4032, 1), -- Power Strike
-(2083, 4340, 1), -- Ultimate Buff
-(2083, 4416, 9), -- Demons
+(2083, 4032, 1), -- NPC Strike
+(2083, 4340, 1), -- Ultimate Buff, 2nd
+(2083, 4416, 9), -- Races
 (2083, 5565, 1), -- Expose Weak Point
 -- Lucky Pig
-(2501, 4416, 3), -- Beasts
+(2501, 4416, 3), -- Races
 (2501, 23325, 1), -- Enlarge - Luckpy
 (2501, 23326, 1), -- Reduce - Luckpy
 -- Miss Queen
 (4301, 4045, 1), -- Resist Full Magic Attack
-(4301, 4408, 1), -- HP Increase (1x)
-(4301, 4409, 1), -- MP Increase (1x)
-(4301, 4410, 11), -- Average P. Atk.
-(4301, 4411, 11), -- Average M. Atk.
-(4301, 4412, 11), -- Average P. Def.
-(4301, 4413, 11), -- Average M. Def.
-(4301, 4414, 2), -- Standard Type
-(4301, 4415, 3), -- One-handed Sword
-(4301, 4416, 7), -- Spirits
+(4301, 4408, 1), -- HP Modifiers
+(4301, 4409, 1), -- MP Modifiers
+(4301, 4410, 11), -- P. Atk. Modifiers
+(4301, 4411, 11), -- M. Atk. Modifiers
+(4301, 4412, 11), -- P. Def. Modifiers
+(4301, 4413, 11), -- M. Def. Modifiers
+(4301, 4414, 2), -- Armor Type
+(4301, 4415, 3), -- Weapon Type
+(4301, 4416, 7), -- Races
 -- Master Dugi
 (4302, 4045, 1), -- Resist Full Magic Attack
-(4302, 4408, 1), -- HP Increase (1x)
-(4302, 4409, 1), -- MP Increase (1x)
-(4302, 4410, 11), -- Average P. Atk.
-(4302, 4411, 11), -- Average M. Atk.
-(4302, 4412, 11), -- Average P. Def.
-(4302, 4413, 11), -- Average M. Def.
-(4302, 4414, 2), -- Standard Type
-(4302, 4415, 1), -- Bare Hands
-(4302, 4416, 6), -- Humanoids
+(4302, 4408, 1), -- HP Modifiers
+(4302, 4409, 1), -- MP Modifiers
+(4302, 4410, 11), -- P. Atk. Modifiers
+(4302, 4411, 11), -- M. Atk. Modifiers
+(4302, 4412, 11), -- P. Def. Modifiers
+(4302, 4413, 11), -- M. Def. Modifiers
+(4302, 4414, 2), -- Armor Type
+(4302, 4415, 1), -- Weapon Type
+(4302, 4416, 6), -- Races
 -- Skooldie
-(4303, 4390, 1), -- Mystic Immunity
-(4303, 4408, 1), -- HP Increase (1x)
-(4303, 4409, 1), -- MP Increase (1x)
-(4303, 4410, 11), -- Average P. Atk.
-(4303, 4411, 11), -- Average M. Atk.
-(4303, 4412, 11), -- Average P. Def.
-(4303, 4413, 11), -- Average M. Def.
-(4303, 4414, 2), -- Standard Type
-(4303, 4415, 5), -- Blunt Weapons
-(4303, 4416, 4), -- Animals
+(4303, 4390, 1), -- NPC Abnormal Immunity
+(4303, 4408, 1), -- HP Modifiers
+(4303, 4409, 1), -- MP Modifiers
+(4303, 4410, 11), -- P. Atk. Modifiers
+(4303, 4411, 11), -- M. Atk. Modifiers
+(4303, 4412, 11), -- P. Def. Modifiers
+(4303, 4413, 11), -- M. Def. Modifiers
+(4303, 4414, 2), -- Armor Type
+(4303, 4415, 5), -- Weapon Type
+(4303, 4416, 4), -- Races
 -- White-Bearded Santa
 (4304, 4045, 1), -- Resist Full Magic Attack
-(4304, 4408, 1), -- HP Increase (1x)
-(4304, 4409, 1), -- MP Increase (1x)
-(4304, 4410, 11), -- Average P. Atk.
-(4304, 4411, 11), -- Average M. Atk.
-(4304, 4412, 11), -- Average P. Def.
-(4304, 4413, 11), -- Average M. Def.
-(4304, 4414, 2), -- Standard Type
-(4304, 4415, 3), -- One-handed Sword
-(4304, 4416, 18), -- Dwarves
+(4304, 4408, 1), -- HP Modifiers
+(4304, 4409, 1), -- MP Modifiers
+(4304, 4410, 11), -- P. Atk. Modifiers
+(4304, 4411, 11), -- M. Atk. Modifiers
+(4304, 4412, 11), -- P. Def. Modifiers
+(4304, 4413, 11), -- M. Def. Modifiers
+(4304, 4414, 2), -- Armor Type
+(4304, 4415, 3), -- Weapon Type
+(4304, 4416, 18), -- Races
 -- Rosalia
 (4305, 4045, 1), -- Resist Full Magic Attack
-(4305, 4408, 1), -- HP Increase (1x)
-(4305, 4409, 1), -- MP Increase (1x)
-(4305, 4410, 11), -- Average P. Atk.
-(4305, 4411, 11), -- Average M. Atk.
-(4305, 4412, 11), -- Average P. Def.
-(4305, 4413, 11), -- Average M. Def.
-(4305, 4414, 2), -- Standard Type
-(4305, 4415, 1), -- Bare Hands
-(4305, 4416, 14), -- Humans
+(4305, 4408, 1), -- HP Modifiers
+(4305, 4409, 1), -- MP Modifiers
+(4305, 4410, 11), -- P. Atk. Modifiers
+(4305, 4411, 11), -- M. Atk. Modifiers
+(4305, 4412, 11), -- P. Def. Modifiers
+(4305, 4413, 11), -- M. Def. Modifiers
+(4305, 4414, 2), -- Armor Type
+(4305, 4415, 1), -- Weapon Type
+(4305, 4416, 14), -- Races
 -- Steve Shyagel
 (4306, 4045, 1), -- Resist Full Magic Attack
-(4306, 4408, 1), -- HP Increase (1x)
-(4306, 4409, 1), -- MP Increase (1x)
-(4306, 4410, 11), -- Average P. Atk.
-(4306, 4411, 11), -- Average M. Atk.
-(4306, 4412, 11), -- Average P. Def.
-(4306, 4413, 11), -- Average M. Def.
-(4306, 4414, 2), -- Standard Type
-(4306, 4415, 3), -- One-handed Sword
-(4306, 4416, 14), -- Humans
+(4306, 4408, 1), -- HP Modifiers
+(4306, 4409, 1), -- MP Modifiers
+(4306, 4410, 11), -- P. Atk. Modifiers
+(4306, 4411, 11), -- M. Atk. Modifiers
+(4306, 4412, 11), -- P. Def. Modifiers
+(4306, 4413, 11), -- M. Def. Modifiers
+(4306, 4414, 2), -- Armor Type
+(4306, 4415, 3), -- Weapon Type
+(4306, 4416, 14), -- Races
 -- Prophet
-(4309, 4416, 14), -- Humans
+(4309, 4416, 14), -- Races
 -- Prophet
-(4310, 4416, 14), -- Humans
+(4310, 4416, 14), -- Races
 -- Prophet
-(4311, 4416, 14), -- Humans
+(4311, 4416, 14), -- Races
 -- Prophet
-(4312, 4416, 14), -- Humans
+(4312, 4416, 14), -- Races
 -- Teleport Device
-(4314, 4416, 2), -- Magic Creatures
+(4314, 4416, 2), -- Races
 -- Warehouse Keeper
 (4315, 4045, 1), -- Resist Full Magic Attack
-(4315, 4408, 1), -- HP Increase (1x)
-(4315, 4409, 1), -- MP Increase (1x)
-(4315, 4410, 11), -- Average P. Atk.
-(4315, 4411, 11), -- Average M. Atk.
-(4315, 4412, 11), -- Average P. Def.
-(4315, 4413, 11), -- Average M. Def.
-(4315, 4414, 2), -- Standard Type
-(4315, 4415, 3), -- One-handed Sword
-(4315, 4416, 18), -- Dwarves
+(4315, 4408, 1), -- HP Modifiers
+(4315, 4409, 1), -- MP Modifiers
+(4315, 4410, 11), -- P. Atk. Modifiers
+(4315, 4411, 11), -- M. Atk. Modifiers
+(4315, 4412, 11), -- P. Def. Modifiers
+(4315, 4413, 11), -- M. Def. Modifiers
+(4315, 4414, 2), -- Armor Type
+(4315, 4415, 3), -- Weapon Type
+(4315, 4416, 18), -- Races
 -- Photo Snow
-(4316, 4408, 1), -- HP Increase (1x)
-(4316, 4409, 1), -- MP Increase (1x)
-(4316, 4410, 11), -- Average P. Atk.
-(4316, 4411, 11), -- Average M. Atk.
-(4316, 4412, 11), -- Average P. Def.
-(4316, 4413, 11), -- Average M. Def.
-(4316, 4414, 2), -- Standard Type
-(4316, 4415, 1), -- Bare Hands
-(4316, 4416, 7), -- Spirits
+(4316, 4408, 1), -- HP Modifiers
+(4316, 4409, 1), -- MP Modifiers
+(4316, 4410, 11), -- P. Atk. Modifiers
+(4316, 4411, 11), -- M. Atk. Modifiers
+(4316, 4412, 11), -- P. Def. Modifiers
+(4316, 4413, 11), -- M. Def. Modifiers
+(4316, 4414, 2), -- Armor Type
+(4316, 4415, 1), -- Weapon Type
+(4316, 4416, 7), -- Races
 -- Photo Snow
-(4317, 4408, 1), -- HP Increase (1x)
-(4317, 4409, 1), -- MP Increase (1x)
-(4317, 4410, 11), -- Average P. Atk.
-(4317, 4411, 11), -- Average M. Atk.
-(4317, 4412, 11), -- Average P. Def.
-(4317, 4413, 11), -- Average M. Def.
-(4317, 4414, 2), -- Standard Type
-(4317, 4415, 1), -- Bare Hands
-(4317, 4416, 7), -- Spirits
+(4317, 4408, 1), -- HP Modifiers
+(4317, 4409, 1), -- MP Modifiers
+(4317, 4410, 11), -- P. Atk. Modifiers
+(4317, 4411, 11), -- M. Atk. Modifiers
+(4317, 4412, 11), -- P. Def. Modifiers
+(4317, 4413, 11), -- M. Def. Modifiers
+(4317, 4414, 2), -- Armor Type
+(4317, 4415, 1), -- Weapon Type
+(4317, 4416, 7), -- Races
 -- Photo Snow
-(4318, 4408, 1), -- HP Increase (1x)
-(4318, 4409, 1), -- MP Increase (1x)
-(4318, 4410, 11), -- Average P. Atk.
-(4318, 4411, 11), -- Average M. Atk.
-(4318, 4412, 11), -- Average P. Def.
-(4318, 4413, 11), -- Average M. Def.
-(4318, 4414, 2), -- Standard Type
-(4318, 4415, 1), -- Bare Hands
-(4318, 4416, 7), -- Spirits
+(4318, 4408, 1), -- HP Modifiers
+(4318, 4409, 1), -- MP Modifiers
+(4318, 4410, 11), -- P. Atk. Modifiers
+(4318, 4411, 11), -- M. Atk. Modifiers
+(4318, 4412, 11), -- P. Def. Modifiers
+(4318, 4413, 11), -- M. Def. Modifiers
+(4318, 4414, 2), -- Armor Type
+(4318, 4415, 1), -- Weapon Type
+(4318, 4416, 7), -- Races
 -- Photo Snow
-(4319, 4408, 1), -- HP Increase (1x)
-(4319, 4409, 1), -- MP Increase (1x)
-(4319, 4410, 11), -- Average P. Atk.
-(4319, 4411, 11), -- Average M. Atk.
-(4319, 4412, 11), -- Average P. Def.
-(4319, 4413, 11), -- Average M. Def.
-(4319, 4414, 2), -- Standard Type
-(4319, 4415, 1), -- Bare Hands
-(4319, 4416, 7), -- Spirits
+(4319, 4408, 1), -- HP Modifiers
+(4319, 4409, 1), -- MP Modifiers
+(4319, 4410, 11), -- P. Atk. Modifiers
+(4319, 4411, 11), -- M. Atk. Modifiers
+(4319, 4412, 11), -- P. Def. Modifiers
+(4319, 4413, 11), -- M. Def. Modifiers
+(4319, 4414, 2), -- Armor Type
+(4319, 4415, 1), -- Weapon Type
+(4319, 4416, 7), -- Races
 -- Photo Snow
-(4320, 4408, 1), -- HP Increase (1x)
-(4320, 4409, 1), -- MP Increase (1x)
-(4320, 4410, 11), -- Average P. Atk.
-(4320, 4411, 11), -- Average M. Atk.
-(4320, 4412, 11), -- Average P. Def.
-(4320, 4413, 11), -- Average M. Def.
-(4320, 4414, 2), -- Standard Type
-(4320, 4415, 1), -- Bare Hands
-(4320, 4416, 7), -- Spirits
+(4320, 4408, 1), -- HP Modifiers
+(4320, 4409, 1), -- MP Modifiers
+(4320, 4410, 11), -- P. Atk. Modifiers
+(4320, 4411, 11), -- M. Atk. Modifiers
+(4320, 4412, 11), -- P. Def. Modifiers
+(4320, 4413, 11), -- M. Def. Modifiers
+(4320, 4414, 2), -- Armor Type
+(4320, 4415, 1), -- Weapon Type
+(4320, 4416, 7), -- Races
 -- Photo Snow
-(4321, 4408, 1), -- HP Increase (1x)
-(4321, 4409, 1), -- MP Increase (1x)
-(4321, 4410, 11), -- Average P. Atk.
-(4321, 4411, 11), -- Average M. Atk.
-(4321, 4412, 11), -- Average P. Def.
-(4321, 4413, 11), -- Average M. Def.
-(4321, 4414, 2), -- Standard Type
-(4321, 4415, 1), -- Bare Hands
-(4321, 4416, 7), -- Spirits
+(4321, 4408, 1), -- HP Modifiers
+(4321, 4409, 1), -- MP Modifiers
+(4321, 4410, 11), -- P. Atk. Modifiers
+(4321, 4411, 11), -- M. Atk. Modifiers
+(4321, 4412, 11), -- P. Def. Modifiers
+(4321, 4413, 11), -- M. Def. Modifiers
+(4321, 4414, 2), -- Armor Type
+(4321, 4415, 1), -- Weapon Type
+(4321, 4416, 7), -- Races
 -- Photo Snow
-(4322, 4408, 1), -- HP Increase (1x)
-(4322, 4409, 1), -- MP Increase (1x)
-(4322, 4410, 11), -- Average P. Atk.
-(4322, 4411, 11), -- Average M. Atk.
-(4322, 4412, 11), -- Average P. Def.
-(4322, 4413, 11), -- Average M. Def.
-(4322, 4414, 2), -- Standard Type
-(4322, 4415, 1), -- Bare Hands
-(4322, 4416, 7), -- Spirits
+(4322, 4408, 1), -- HP Modifiers
+(4322, 4409, 1), -- MP Modifiers
+(4322, 4410, 11), -- P. Atk. Modifiers
+(4322, 4411, 11), -- M. Atk. Modifiers
+(4322, 4412, 11), -- P. Def. Modifiers
+(4322, 4413, 11), -- M. Def. Modifiers
+(4322, 4414, 2), -- Armor Type
+(4322, 4415, 1), -- Weapon Type
+(4322, 4416, 7), -- Races
 -- Photo Snow
-(4323, 4408, 1), -- HP Increase (1x)
-(4323, 4409, 1), -- MP Increase (1x)
-(4323, 4410, 11), -- Average P. Atk.
-(4323, 4411, 11), -- Average M. Atk.
-(4323, 4412, 11), -- Average P. Def.
-(4323, 4413, 11), -- Average M. Def.
-(4323, 4414, 2), -- Standard Type
-(4323, 4415, 1), -- Bare Hands
-(4323, 4416, 7), -- Spirits
+(4323, 4408, 1), -- HP Modifiers
+(4323, 4409, 1), -- MP Modifiers
+(4323, 4410, 11), -- P. Atk. Modifiers
+(4323, 4411, 11), -- M. Atk. Modifiers
+(4323, 4412, 11), -- P. Def. Modifiers
+(4323, 4413, 11), -- M. Def. Modifiers
+(4323, 4414, 2), -- Armor Type
+(4323, 4415, 1), -- Weapon Type
+(4323, 4416, 7), -- Races
 -- Worshipper
-(4324, 4416, 14), -- Humans
+(4324, 4416, 14), -- Races
 -- Altar Guard
-(4325, 4416, 14), -- Humans
+(4325, 4416, 14), -- Races
 -- Proclaimer of Tersi
-(4326, 4416, 14), -- Humans
+(4326, 4416, 14), -- Races
 -- Worshipper
-(4327, 4416, 14), -- Humans
+(4327, 4416, 14), -- Races
 -- Altar Guard
-(4328, 4416, 14), -- Humans
+(4328, 4416, 14), -- Races
 -- Miss Queen
-(4329, 4416, 7), -- Spirits
+(4329, 4416, 7), -- Races
 -- Wolf
 (12077, 4121, 1), -- Summoned Monster Magic Protection
-(12077, 4408, 1), -- HP Increase (1x)
-(12077, 4409, 1), -- MP Increase (1x)
-(12077, 4410, 11), -- Average P. Atk.
-(12077, 4411, 11), -- Average M. Atk.
-(12077, 4412, 11), -- Average P. Def.
-(12077, 4413, 11), -- Average M. Def.
-(12077, 4414, 2), -- Standard Type
-(12077, 4415, 1), -- Bare Hands
-(12077, 4416, 4), -- Animals
+(12077, 4408, 1), -- HP Modifiers
+(12077, 4409, 1), -- MP Modifiers
+(12077, 4410, 11), -- P. Atk. Modifiers
+(12077, 4411, 11), -- M. Atk. Modifiers
+(12077, 4412, 11), -- P. Def. Modifiers
+(12077, 4413, 11), -- M. Def. Modifiers
+(12077, 4414, 2), -- Armor Type
+(12077, 4415, 1), -- Weapon Type
+(12077, 4416, 4), -- Races
 -- Hatchling of the Wind
 (12311, 4121, 1), -- Summoned Monster Magic Protection
-(12311, 4408, 1), -- HP Increase (1x)
-(12311, 4409, 1), -- MP Increase (1x)
-(12311, 4410, 11), -- Average P. Atk.
-(12311, 4411, 11), -- Average M. Atk.
-(12311, 4412, 11), -- Average P. Def.
-(12311, 4413, 11), -- Average M. Def.
-(12311, 4414, 2), -- Standard Type
-(12311, 4415, 1), -- Bare Hands
-(12311, 4416, 10), -- Dragons
+(12311, 4408, 1), -- HP Modifiers
+(12311, 4409, 1), -- MP Modifiers
+(12311, 4410, 11), -- P. Atk. Modifiers
+(12311, 4411, 11), -- M. Atk. Modifiers
+(12311, 4412, 11), -- P. Def. Modifiers
+(12311, 4413, 11), -- M. Def. Modifiers
+(12311, 4414, 2), -- Armor Type
+(12311, 4415, 1), -- Weapon Type
+(12311, 4416, 10), -- Races
 -- Hatchling of the Stars
 (12312, 4121, 1), -- Summoned Monster Magic Protection
-(12312, 4408, 1), -- HP Increase (1x)
-(12312, 4409, 1), -- MP Increase (1x)
-(12312, 4410, 11), -- Average P. Atk.
-(12312, 4411, 11), -- Average M. Atk.
-(12312, 4412, 11), -- Average P. Def.
-(12312, 4413, 11), -- Average M. Def.
-(12312, 4414, 2), -- Standard Type
-(12312, 4415, 1), -- Bare Hands
-(12312, 4416, 10), -- Dragons
+(12312, 4408, 1), -- HP Modifiers
+(12312, 4409, 1), -- MP Modifiers
+(12312, 4410, 11), -- P. Atk. Modifiers
+(12312, 4411, 11), -- M. Atk. Modifiers
+(12312, 4412, 11), -- P. Def. Modifiers
+(12312, 4413, 11), -- M. Def. Modifiers
+(12312, 4414, 2), -- Armor Type
+(12312, 4415, 1), -- Weapon Type
+(12312, 4416, 10), -- Races
 -- Hatchling of Twilight
 (12313, 4121, 1), -- Summoned Monster Magic Protection
-(12313, 4408, 1), -- HP Increase (1x)
-(12313, 4409, 1), -- MP Increase (1x)
-(12313, 4410, 11), -- Average P. Atk.
-(12313, 4411, 11), -- Average M. Atk.
-(12313, 4412, 11), -- Average P. Def.
-(12313, 4413, 11), -- Average M. Def.
-(12313, 4414, 2), -- Standard Type
-(12313, 4415, 1), -- Bare Hands
-(12313, 4416, 10), -- Dragons
+(12313, 4408, 1), -- HP Modifiers
+(12313, 4409, 1), -- MP Modifiers
+(12313, 4410, 11), -- P. Atk. Modifiers
+(12313, 4411, 11), -- M. Atk. Modifiers
+(12313, 4412, 11), -- P. Def. Modifiers
+(12313, 4413, 11), -- M. Def. Modifiers
+(12313, 4414, 2), -- Armor Type
+(12313, 4415, 1), -- Weapon Type
+(12313, 4416, 10), -- Races
 -- Wind Strider
 (12526, 4121, 1), -- Summoned Monster Magic Protection
-(12526, 4408, 1), -- HP Increase (1x)
-(12526, 4409, 1), -- MP Increase (1x)
-(12526, 4410, 11), -- Average P. Atk.
-(12526, 4411, 11), -- Average M. Atk.
-(12526, 4412, 11), -- Average P. Def.
-(12526, 4413, 11), -- Average M. Def.
-(12526, 4414, 2), -- Standard Type
-(12526, 4415, 1), -- Bare Hands
-(12526, 4416, 10), -- Dragons
+(12526, 4408, 1), -- HP Modifiers
+(12526, 4409, 1), -- MP Modifiers
+(12526, 4410, 11), -- P. Atk. Modifiers
+(12526, 4411, 11), -- M. Atk. Modifiers
+(12526, 4412, 11), -- P. Def. Modifiers
+(12526, 4413, 11), -- M. Def. Modifiers
+(12526, 4414, 2), -- Armor Type
+(12526, 4415, 1), -- Weapon Type
+(12526, 4416, 10), -- Races
 -- Star Strider
 (12527, 4121, 1), -- Summoned Monster Magic Protection
-(12527, 4408, 1), -- HP Increase (1x)
-(12527, 4409, 1), -- MP Increase (1x)
-(12527, 4410, 11), -- Average P. Atk.
-(12527, 4411, 11), -- Average M. Atk.
-(12527, 4412, 11), -- Average P. Def.
-(12527, 4413, 11), -- Average M. Def.
-(12527, 4414, 2), -- Standard Type
-(12527, 4415, 1), -- Bare Hands
-(12527, 4416, 10), -- Dragons
+(12527, 4408, 1), -- HP Modifiers
+(12527, 4409, 1), -- MP Modifiers
+(12527, 4410, 11), -- P. Atk. Modifiers
+(12527, 4411, 11), -- M. Atk. Modifiers
+(12527, 4412, 11), -- P. Def. Modifiers
+(12527, 4413, 11), -- M. Def. Modifiers
+(12527, 4414, 2), -- Armor Type
+(12527, 4415, 1), -- Weapon Type
+(12527, 4416, 10), -- Races
 -- Twilight Strider
 (12528, 4121, 1), -- Summoned Monster Magic Protection
-(12528, 4408, 1), -- HP Increase (1x)
-(12528, 4409, 1), -- MP Increase (1x)
-(12528, 4410, 11), -- Average P. Atk.
-(12528, 4411, 11), -- Average M. Atk.
-(12528, 4412, 11), -- Average P. Def.
-(12528, 4413, 11), -- Average M. Def.
-(12528, 4414, 2), -- Standard Type
-(12528, 4415, 1), -- Bare Hands
-(12528, 4416, 10), -- Dragons
+(12528, 4408, 1), -- HP Modifiers
+(12528, 4409, 1), -- MP Modifiers
+(12528, 4410, 11), -- P. Atk. Modifiers
+(12528, 4411, 11), -- M. Atk. Modifiers
+(12528, 4412, 11), -- P. Def. Modifiers
+(12528, 4413, 11), -- M. Def. Modifiers
+(12528, 4414, 2), -- Armor Type
+(12528, 4415, 1), -- Weapon Type
+(12528, 4416, 10), -- Races
 -- Sin Eater
 (12564, 4121, 1), -- Summoned Monster Magic Protection
-(12564, 4408, 1), -- HP Increase (1x)
-(12564, 4409, 1), -- MP Increase (1x)
-(12564, 4410, 11), -- Average P. Atk.
-(12564, 4411, 11), -- Average M. Atk.
-(12564, 4412, 11), -- Average P. Def.
-(12564, 4413, 11), -- Average M. Def.
-(12564, 4414, 2), -- Standard Type
-(12564, 4415, 1), -- Bare Hands
-(12564, 4416, 13), -- Fairies
+(12564, 4408, 1), -- HP Modifiers
+(12564, 4409, 1), -- MP Modifiers
+(12564, 4410, 11), -- P. Atk. Modifiers
+(12564, 4411, 11), -- M. Atk. Modifiers
+(12564, 4412, 11), -- P. Def. Modifiers
+(12564, 4413, 11), -- M. Def. Modifiers
+(12564, 4414, 2), -- Armor Type
+(12564, 4415, 1), -- Weapon Type
+(12564, 4416, 13), -- Races
 -- Wyvern
 (12621, 4121, 1), -- Summoned Monster Magic Protection
-(12621, 4408, 1), -- HP Increase (1x)
-(12621, 4409, 1), -- MP Increase (1x)
-(12621, 4410, 11), -- Average P. Atk.
-(12621, 4411, 11), -- Average M. Atk.
-(12621, 4412, 11), -- Average P. Def.
-(12621, 4413, 11), -- Average M. Def.
-(12621, 4414, 2), -- Standard Type
-(12621, 4415, 1), -- Bare Hands
-(12621, 4416, 10), -- Dragons
+(12621, 4408, 1), -- HP Modifiers
+(12621, 4409, 1), -- MP Modifiers
+(12621, 4410, 11), -- P. Atk. Modifiers
+(12621, 4411, 11), -- M. Atk. Modifiers
+(12621, 4412, 11), -- P. Def. Modifiers
+(12621, 4413, 11), -- M. Def. Modifiers
+(12621, 4414, 2), -- Armor Type
+(12621, 4415, 1), -- Weapon Type
+(12621, 4416, 10), -- Races
 -- Young Squash
 (12774, 4045, 1), -- Resist Full Magic Attack
-(12774, 4408, 1), -- HP Increase (1x)
-(12774, 4409, 1), -- MP Increase (1x)
-(12774, 4410, 11), -- Average P. Atk.
-(12774, 4411, 11), -- Average M. Atk.
-(12774, 4412, 11), -- Average P. Def.
-(12774, 4413, 11), -- Average M. Def.
-(12774, 4414, 3), -- Light Armor Type
-(12774, 4415, 5), -- Blunt Weapons
-(12774, 4416, 19), -- Others
+(12774, 4408, 1), -- HP Modifiers
+(12774, 4409, 1), -- MP Modifiers
+(12774, 4410, 11), -- P. Atk. Modifiers
+(12774, 4411, 11), -- M. Atk. Modifiers
+(12774, 4412, 11), -- P. Def. Modifiers
+(12774, 4413, 11), -- M. Def. Modifiers
+(12774, 4414, 3), -- Armor Type
+(12774, 4415, 5), -- Weapon Type
+(12774, 4416, 19), -- Races
 (12774, 4441, 5), -- Greater Resist Mental Derangement
 -- High Quality Squash
 (12775, 4045, 1), -- Resist Full Magic Attack
-(12775, 4408, 1), -- HP Increase (1x)
-(12775, 4409, 1), -- MP Increase (1x)
-(12775, 4410, 11), -- Average P. Atk.
-(12775, 4411, 11), -- Average M. Atk.
-(12775, 4412, 11), -- Average P. Def.
-(12775, 4413, 11), -- Average M. Def.
-(12775, 4414, 3), -- Light Armor Type
-(12775, 4415, 5), -- Blunt Weapons
-(12775, 4416, 19), -- Others
+(12775, 4408, 1), -- HP Modifiers
+(12775, 4409, 1), -- MP Modifiers
+(12775, 4410, 11), -- P. Atk. Modifiers
+(12775, 4411, 11), -- M. Atk. Modifiers
+(12775, 4412, 11), -- P. Def. Modifiers
+(12775, 4413, 11), -- M. Def. Modifiers
+(12775, 4414, 3), -- Armor Type
+(12775, 4415, 5), -- Weapon Type
+(12775, 4416, 19), -- Races
 (12775, 4441, 5), -- Greater Resist Mental Derangement
 -- Low Quality Squash
 (12776, 4045, 1), -- Resist Full Magic Attack
-(12776, 4408, 1), -- HP Increase (1x)
-(12776, 4409, 1), -- MP Increase (1x)
-(12776, 4410, 11), -- Average P. Atk.
-(12776, 4411, 11), -- Average M. Atk.
-(12776, 4412, 11), -- Average P. Def.
-(12776, 4413, 11), -- Average M. Def.
-(12776, 4414, 3), -- Light Armor Type
-(12776, 4415, 5), -- Blunt Weapons
-(12776, 4416, 19), -- Others
+(12776, 4408, 1), -- HP Modifiers
+(12776, 4409, 1), -- MP Modifiers
+(12776, 4410, 11), -- P. Atk. Modifiers
+(12776, 4411, 11), -- M. Atk. Modifiers
+(12776, 4412, 11), -- P. Def. Modifiers
+(12776, 4413, 11), -- M. Def. Modifiers
+(12776, 4414, 3), -- Armor Type
+(12776, 4415, 5), -- Weapon Type
+(12776, 4416, 19), -- Races
 (12776, 4441, 5), -- Greater Resist Mental Derangement
 -- Large Young Squash
 (12777, 4045, 1), -- Resist Full Magic Attack
-(12777, 4408, 1), -- HP Increase (1x)
-(12777, 4409, 1), -- MP Increase (1x)
-(12777, 4410, 11), -- Average P. Atk.
-(12777, 4411, 11), -- Average M. Atk.
-(12777, 4412, 11), -- Average P. Def.
-(12777, 4413, 11), -- Average M. Def.
-(12777, 4414, 3), -- Light Armor Type
-(12777, 4415, 5), -- Blunt Weapons
-(12777, 4416, 19), -- Others
+(12777, 4408, 1), -- HP Modifiers
+(12777, 4409, 1), -- MP Modifiers
+(12777, 4410, 11), -- P. Atk. Modifiers
+(12777, 4411, 11), -- M. Atk. Modifiers
+(12777, 4412, 11), -- P. Def. Modifiers
+(12777, 4413, 11), -- M. Def. Modifiers
+(12777, 4414, 3), -- Armor Type
+(12777, 4415, 5), -- Weapon Type
+(12777, 4416, 19), -- Races
 (12777, 4441, 5), -- Greater Resist Mental Derangement
 -- High Quality Large Squash
 (12778, 4045, 1), -- Resist Full Magic Attack
-(12778, 4408, 1), -- HP Increase (1x)
-(12778, 4409, 1), -- MP Increase (1x)
-(12778, 4410, 11), -- Average P. Atk.
-(12778, 4411, 11), -- Average M. Atk.
-(12778, 4412, 11), -- Average P. Def.
-(12778, 4413, 11), -- Average M. Def.
-(12778, 4414, 3), -- Light Armor Type
-(12778, 4415, 5), -- Blunt Weapons
-(12778, 4416, 19), -- Others
+(12778, 4408, 1), -- HP Modifiers
+(12778, 4409, 1), -- MP Modifiers
+(12778, 4410, 11), -- P. Atk. Modifiers
+(12778, 4411, 11), -- M. Atk. Modifiers
+(12778, 4412, 11), -- P. Def. Modifiers
+(12778, 4413, 11), -- M. Def. Modifiers
+(12778, 4414, 3), -- Armor Type
+(12778, 4415, 5), -- Weapon Type
+(12778, 4416, 19), -- Races
 (12778, 4441, 5), -- Greater Resist Mental Derangement
 -- Low Quality Large Squash
 (12779, 4045, 1), -- Resist Full Magic Attack
-(12779, 4408, 1), -- HP Increase (1x)
-(12779, 4409, 1), -- MP Increase (1x)
-(12779, 4410, 11), -- Average P. Atk.
-(12779, 4411, 11), -- Average M. Atk.
-(12779, 4412, 11), -- Average P. Def.
-(12779, 4413, 11), -- Average M. Def.
-(12779, 4414, 3), -- Light Armor Type
-(12779, 4415, 5), -- Blunt Weapons
-(12779, 4416, 19), -- Others
+(12779, 4408, 1), -- HP Modifiers
+(12779, 4409, 1), -- MP Modifiers
+(12779, 4410, 11), -- P. Atk. Modifiers
+(12779, 4411, 11), -- M. Atk. Modifiers
+(12779, 4412, 11), -- P. Def. Modifiers
+(12779, 4413, 11), -- M. Def. Modifiers
+(12779, 4414, 3), -- Armor Type
+(12779, 4415, 5), -- Weapon Type
+(12779, 4416, 19), -- Races
 (12779, 4441, 5), -- Greater Resist Mental Derangement
 -- Baby Buffalo
 (12780, 4045, 1), -- Resist Full Magic Attack
-(12780, 4408, 1), -- HP Increase (1x)
-(12780, 4409, 1), -- MP Increase (1x)
-(12780, 4410, 11), -- Average P. Atk.
-(12780, 4411, 11), -- Average M. Atk.
-(12780, 4412, 11), -- Average P. Def.
-(12780, 4413, 11), -- Average M. Def.
-(12780, 4414, 2), -- Standard Type
-(12780, 4415, 1), -- Bare Hands
-(12780, 4416, 3), -- Beasts
+(12780, 4408, 1), -- HP Modifiers
+(12780, 4409, 1), -- MP Modifiers
+(12780, 4410, 11), -- P. Atk. Modifiers
+(12780, 4411, 11), -- M. Atk. Modifiers
+(12780, 4412, 11), -- P. Def. Modifiers
+(12780, 4413, 11), -- M. Def. Modifiers
+(12780, 4414, 2), -- Armor Type
+(12780, 4415, 1), -- Weapon Type
+(12780, 4416, 3), -- Races
 -- Baby Kookaburra
 (12781, 4045, 1), -- Resist Full Magic Attack
-(12781, 4408, 1), -- HP Increase (1x)
-(12781, 4409, 1), -- MP Increase (1x)
-(12781, 4410, 11), -- Average P. Atk.
-(12781, 4411, 11), -- Average M. Atk.
-(12781, 4412, 11), -- Average P. Def.
-(12781, 4413, 11), -- Average M. Def.
-(12781, 4414, 2), -- Standard Type
-(12781, 4415, 1), -- Bare Hands
-(12781, 4416, 3), -- Beasts
+(12781, 4408, 1), -- HP Modifiers
+(12781, 4409, 1), -- MP Modifiers
+(12781, 4410, 11), -- P. Atk. Modifiers
+(12781, 4411, 11), -- M. Atk. Modifiers
+(12781, 4412, 11), -- P. Def. Modifiers
+(12781, 4413, 11), -- M. Def. Modifiers
+(12781, 4414, 2), -- Armor Type
+(12781, 4415, 1), -- Weapon Type
+(12781, 4416, 3), -- Races
 -- Baby Cougar
 (12782, 4045, 1), -- Resist Full Magic Attack
-(12782, 4408, 1), -- HP Increase (1x)
-(12782, 4409, 1), -- MP Increase (1x)
-(12782, 4410, 11), -- Average P. Atk.
-(12782, 4411, 11), -- Average M. Atk.
-(12782, 4412, 11), -- Average P. Def.
-(12782, 4413, 11), -- Average M. Def.
-(12782, 4414, 2), -- Standard Type
-(12782, 4415, 1), -- Bare Hands
-(12782, 4416, 3), -- Beasts
+(12782, 4408, 1), -- HP Modifiers
+(12782, 4409, 1), -- MP Modifiers
+(12782, 4410, 11), -- P. Atk. Modifiers
+(12782, 4411, 11), -- M. Atk. Modifiers
+(12782, 4412, 11), -- P. Def. Modifiers
+(12782, 4413, 11), -- M. Def. Modifiers
+(12782, 4414, 2), -- Armor Type
+(12782, 4415, 1), -- Weapon Type
+(12782, 4416, 3), -- Races
 -- Heart of Warding
 (13001, 4045, 1), -- Resist Full Magic Attack
-(13001, 4408, 1), -- HP Increase (1x)
-(13001, 4409, 1), -- MP Increase (1x)
-(13001, 4410, 11), -- Average P. Atk.
-(13001, 4411, 11), -- Average M. Atk.
-(13001, 4412, 11), -- Average P. Def.
-(13001, 4413, 11), -- Average M. Def.
-(13001, 4414, 2), -- Standard Type
-(13001, 4415, 3), -- One-handed Sword
-(13001, 4416, 19), -- Others
+(13001, 4408, 1), -- HP Modifiers
+(13001, 4409, 1), -- MP Modifiers
+(13001, 4410, 11), -- P. Atk. Modifiers
+(13001, 4411, 11), -- M. Atk. Modifiers
+(13001, 4412, 11), -- P. Def. Modifiers
+(13001, 4413, 11), -- M. Def. Modifiers
+(13001, 4414, 2), -- Armor Type
+(13001, 4415, 3), -- Weapon Type
+(13001, 4416, 19), -- Races
 -- Life Control Tower
 (13002, 4045, 1), -- Resist Full Magic Attack
-(13002, 4408, 1), -- HP Increase (1x)
-(13002, 4409, 1), -- MP Increase (1x)
-(13002, 4410, 11), -- Average P. Atk.
-(13002, 4411, 11), -- Average M. Atk.
-(13002, 4412, 11), -- Average P. Def.
-(13002, 4413, 11), -- Average M. Def.
-(13002, 4414, 2), -- Standard Type
-(13002, 4415, 3), -- One-handed Sword
-(13002, 4416, 19), -- Others
+(13002, 4408, 1), -- HP Modifiers
+(13002, 4409, 1), -- MP Modifiers
+(13002, 4410, 11), -- P. Atk. Modifiers
+(13002, 4411, 11), -- M. Atk. Modifiers
+(13002, 4412, 11), -- P. Def. Modifiers
+(13002, 4413, 11), -- M. Def. Modifiers
+(13002, 4414, 2), -- Armor Type
+(13002, 4415, 3), -- Weapon Type
+(13002, 4416, 19), -- Races
 -- Life Control Tower
 (13003, 4045, 1), -- Resist Full Magic Attack
-(13003, 4408, 1), -- HP Increase (1x)
-(13003, 4409, 1), -- MP Increase (1x)
-(13003, 4410, 11), -- Average P. Atk.
-(13003, 4411, 11), -- Average M. Atk.
-(13003, 4412, 11), -- Average P. Def.
-(13003, 4413, 11), -- Average M. Def.
-(13003, 4414, 2), -- Standard Type
-(13003, 4415, 3), -- One-handed Sword
-(13003, 4416, 19), -- Others
+(13003, 4408, 1), -- HP Modifiers
+(13003, 4409, 1), -- MP Modifiers
+(13003, 4410, 11), -- P. Atk. Modifiers
+(13003, 4411, 11), -- M. Atk. Modifiers
+(13003, 4412, 11), -- P. Def. Modifiers
+(13003, 4413, 11), -- M. Def. Modifiers
+(13003, 4414, 2), -- Armor Type
+(13003, 4415, 3), -- Weapon Type
+(13003, 4416, 19), -- Races
 -- Flame Control Tower
 (13004, 4045, 1), -- Resist Full Magic Attack
-(13004, 4408, 1), -- HP Increase (1x)
-(13004, 4409, 1), -- MP Increase (1x)
-(13004, 4410, 11), -- Average P. Atk.
-(13004, 4411, 11), -- Average M. Atk.
-(13004, 4412, 11), -- Average P. Def.
-(13004, 4413, 11), -- Average M. Def.
-(13004, 4414, 2), -- Standard Type
-(13004, 4415, 3), -- One-handed Sword
-(13004, 4416, 19), -- Others
+(13004, 4408, 1), -- HP Modifiers
+(13004, 4409, 1), -- MP Modifiers
+(13004, 4410, 11), -- P. Atk. Modifiers
+(13004, 4411, 11), -- M. Atk. Modifiers
+(13004, 4412, 11), -- P. Def. Modifiers
+(13004, 4413, 11), -- M. Def. Modifiers
+(13004, 4414, 2), -- Armor Type
+(13004, 4415, 3), -- Weapon Type
+(13004, 4416, 19), -- Races
 -- Flame Control Tower
 (13005, 4045, 1), -- Resist Full Magic Attack
-(13005, 4408, 1), -- HP Increase (1x)
-(13005, 4409, 1), -- MP Increase (1x)
-(13005, 4410, 11), -- Average P. Atk.
-(13005, 4411, 11), -- Average M. Atk.
-(13005, 4412, 11), -- Average P. Def.
-(13005, 4413, 11), -- Average M. Def.
-(13005, 4414, 2), -- Standard Type
-(13005, 4415, 3), -- One-handed Sword
-(13005, 4416, 19), -- Others
+(13005, 4408, 1), -- HP Modifiers
+(13005, 4409, 1), -- MP Modifiers
+(13005, 4410, 11), -- P. Atk. Modifiers
+(13005, 4411, 11), -- M. Atk. Modifiers
+(13005, 4412, 11), -- P. Def. Modifiers
+(13005, 4413, 11), -- M. Def. Modifiers
+(13005, 4414, 2), -- Armor Type
+(13005, 4415, 3), -- Weapon Type
+(13005, 4416, 19), -- Races
 -- Holiday Tree
 (13006, 4045, 1), -- Resist Full Magic Attack
-(13006, 4408, 1), -- HP Increase (1x)
-(13006, 4409, 1), -- MP Increase (1x)
-(13006, 4410, 11), -- Average P. Atk.
-(13006, 4411, 11), -- Average M. Atk.
-(13006, 4412, 11), -- Average P. Def.
-(13006, 4413, 11), -- Average M. Def.
-(13006, 4414, 2), -- Standard Type
-(13006, 4415, 3), -- One-handed Sword
-(13006, 4416, 8), -- Angels
+(13006, 4408, 1), -- HP Modifiers
+(13006, 4409, 1), -- MP Modifiers
+(13006, 4410, 11), -- P. Atk. Modifiers
+(13006, 4411, 11), -- M. Atk. Modifiers
+(13006, 4412, 11), -- P. Def. Modifiers
+(13006, 4413, 11), -- M. Def. Modifiers
+(13006, 4414, 2), -- Armor Type
+(13006, 4415, 3), -- Weapon Type
+(13006, 4416, 8), -- Races
 -- Special Holiday Tree
 (13007, 4045, 1), -- Resist Full Magic Attack
-(13007, 4408, 1), -- HP Increase (1x)
-(13007, 4409, 1), -- MP Increase (1x)
-(13007, 4410, 11), -- Average P. Atk.
-(13007, 4411, 11), -- Average M. Atk.
-(13007, 4412, 11), -- Average P. Def.
-(13007, 4413, 11), -- Average M. Def.
-(13007, 4414, 2), -- Standard Type
-(13007, 4415, 3), -- One-handed Sword
-(13007, 4416, 8), -- Angels
+(13007, 4408, 1), -- HP Modifiers
+(13007, 4409, 1), -- MP Modifiers
+(13007, 4410, 11), -- P. Atk. Modifiers
+(13007, 4411, 11), -- M. Atk. Modifiers
+(13007, 4412, 11), -- P. Def. Modifiers
+(13007, 4413, 11), -- M. Def. Modifiers
+(13007, 4414, 2), -- Armor Type
+(13007, 4415, 3), -- Weapon Type
+(13007, 4416, 8), -- Races
 --  
-(13014, 4408, 1), -- HP Increase (1x)
-(13014, 4409, 1), -- MP Increase (1x)
-(13014, 4410, 11), -- Average P. Atk.
-(13014, 4411, 11), -- Average M. Atk.
-(13014, 4412, 11), -- Average P. Def.
-(13014, 4413, 11), -- Average M. Def.
-(13014, 4414, 2), -- Standard Type
-(13014, 4415, 3), -- One-handed Sword
-(13014, 4416, 2), -- Magic Creatures
+(13014, 4408, 1), -- HP Modifiers
+(13014, 4409, 1), -- MP Modifiers
+(13014, 4410, 11), -- P. Atk. Modifiers
+(13014, 4411, 11), -- M. Atk. Modifiers
+(13014, 4412, 11), -- P. Def. Modifiers
+(13014, 4413, 11), -- M. Def. Modifiers
+(13014, 4414, 2), -- Armor Type
+(13014, 4415, 3), -- Weapon Type
+(13014, 4416, 2), -- Races
 -- 
-(13015, 4408, 1), -- HP Increase (1x)
-(13015, 4409, 1), -- MP Increase (1x)
-(13015, 4410, 11), -- Average P. Atk.
-(13015, 4411, 11), -- Average M. Atk.
-(13015, 4412, 11), -- Average P. Def.
-(13015, 4413, 11), -- Average M. Def.
-(13015, 4414, 2), -- Standard Type
-(13015, 4415, 1), -- Bare Hands
-(13015, 4416, 2), -- Magic Creatures
+(13015, 4408, 1), -- HP Modifiers
+(13015, 4409, 1), -- MP Modifiers
+(13015, 4410, 11), -- P. Atk. Modifiers
+(13015, 4411, 11), -- M. Atk. Modifiers
+(13015, 4412, 11), -- P. Def. Modifiers
+(13015, 4413, 11), -- M. Def. Modifiers
+(13015, 4414, 2), -- Armor Type
+(13015, 4415, 1), -- Weapon Type
+(13015, 4416, 2), -- Races
 -- King Squash
 (13016, 4045, 1), -- Resist Full Magic Attack
-(13016, 4408, 1), -- HP Increase (1x)
-(13016, 4409, 1), -- MP Increase (1x)
-(13016, 4410, 11), -- Average P. Atk.
-(13016, 4411, 11), -- Average M. Atk.
-(13016, 4412, 11), -- Average P. Def.
-(13016, 4413, 11), -- Average M. Def.
-(13016, 4414, 3), -- Light Armor Type
-(13016, 4415, 5), -- Blunt Weapons
-(13016, 4416, 19), -- Others
+(13016, 4408, 1), -- HP Modifiers
+(13016, 4409, 1), -- MP Modifiers
+(13016, 4410, 11), -- P. Atk. Modifiers
+(13016, 4411, 11), -- M. Atk. Modifiers
+(13016, 4412, 11), -- P. Def. Modifiers
+(13016, 4413, 11), -- M. Def. Modifiers
+(13016, 4414, 3), -- Armor Type
+(13016, 4415, 5), -- Weapon Type
+(13016, 4416, 19), -- Races
 (13016, 4441, 5), -- Greater Resist Mental Derangement
 -- Emperor Squash
 (13017, 4045, 1), -- Resist Full Magic Attack
-(13017, 4408, 1), -- HP Increase (1x)
-(13017, 4409, 1), -- MP Increase (1x)
-(13017, 4410, 11), -- Average P. Atk.
-(13017, 4411, 11), -- Average M. Atk.
-(13017, 4412, 11), -- Average P. Def.
-(13017, 4413, 11), -- Average M. Def.
-(13017, 4414, 3), -- Light Armor Type
-(13017, 4415, 5), -- Blunt Weapons
-(13017, 4416, 19), -- Others
+(13017, 4408, 1), -- HP Modifiers
+(13017, 4409, 1), -- MP Modifiers
+(13017, 4410, 11), -- P. Atk. Modifiers
+(13017, 4411, 11), -- M. Atk. Modifiers
+(13017, 4412, 11), -- P. Def. Modifiers
+(13017, 4413, 11), -- M. Def. Modifiers
+(13017, 4414, 3), -- Armor Type
+(13017, 4415, 5), -- Weapon Type
+(13017, 4416, 19), -- Races
 (13017, 4441, 5), -- Greater Resist Mental Derangement
 -- 
 (13018, 4045, 1), -- Resist Full Magic Attack
-(13018, 4390, 1), -- Mystic Immunity
-(13018, 4408, 1), -- HP Increase (1x)
-(13018, 4409, 1), -- MP Increase (1x)
-(13018, 4410, 11), -- Average P. Atk.
-(13018, 4411, 11), -- Average M. Atk.
-(13018, 4412, 11), -- Average P. Def.
-(13018, 4413, 11), -- Average M. Def.
-(13018, 4414, 2), -- Standard Type
-(13018, 4415, 3), -- One-handed Sword
-(13018, 4416, 19), -- Others
+(13018, 4390, 1), -- NPC Abnormal Immunity
+(13018, 4408, 1), -- HP Modifiers
+(13018, 4409, 1), -- MP Modifiers
+(13018, 4410, 11), -- P. Atk. Modifiers
+(13018, 4411, 11), -- M. Atk. Modifiers
+(13018, 4412, 11), -- P. Def. Modifiers
+(13018, 4413, 11), -- M. Def. Modifiers
+(13018, 4414, 2), -- Armor Type
+(13018, 4415, 3), -- Weapon Type
+(13018, 4416, 19), -- Races
 (13018, 5123, 1), -- Maximum Defense
 -- 
 (13019, 4045, 1), -- Resist Full Magic Attack
-(13019, 4390, 1), -- Mystic Immunity
-(13019, 4408, 1), -- HP Increase (1x)
-(13019, 4409, 1), -- MP Increase (1x)
-(13019, 4410, 11), -- Average P. Atk.
-(13019, 4411, 11), -- Average M. Atk.
-(13019, 4412, 11), -- Average P. Def.
-(13019, 4413, 11), -- Average M. Def.
-(13019, 4414, 2), -- Standard Type
-(13019, 4415, 3), -- One-handed Sword
-(13019, 4416, 19), -- Others
+(13019, 4390, 1), -- NPC Abnormal Immunity
+(13019, 4408, 1), -- HP Modifiers
+(13019, 4409, 1), -- MP Modifiers
+(13019, 4410, 11), -- P. Atk. Modifiers
+(13019, 4411, 11), -- M. Atk. Modifiers
+(13019, 4412, 11), -- P. Def. Modifiers
+(13019, 4413, 11), -- M. Def. Modifiers
+(13019, 4414, 2), -- Armor Type
+(13019, 4415, 3), -- Weapon Type
+(13019, 4416, 19), -- Races
 (13019, 5124, 1), -- Anti-Music
 -- 
 (13020, 4045, 1), -- Resist Full Magic Attack
-(13020, 4390, 1), -- Mystic Immunity
-(13020, 4408, 1), -- HP Increase (1x)
-(13020, 4409, 1), -- MP Increase (1x)
-(13020, 4410, 11), -- Average P. Atk.
-(13020, 4411, 11), -- Average M. Atk.
-(13020, 4412, 11), -- Average P. Def.
-(13020, 4413, 11), -- Average M. Def.
-(13020, 4414, 2), -- Standard Type
-(13020, 4415, 3), -- One-handed Sword
-(13020, 4416, 19), -- Others
+(13020, 4390, 1), -- NPC Abnormal Immunity
+(13020, 4408, 1), -- HP Modifiers
+(13020, 4409, 1), -- MP Modifiers
+(13020, 4410, 11), -- P. Atk. Modifiers
+(13020, 4411, 11), -- M. Atk. Modifiers
+(13020, 4412, 11), -- P. Def. Modifiers
+(13020, 4413, 11), -- M. Def. Modifiers
+(13020, 4414, 2), -- Armor Type
+(13020, 4415, 3), -- Weapon Type
+(13020, 4416, 19), -- Races
 (13020, 5125, 1), -- Maximum Resist Status
 -- 
 (13021, 4045, 1), -- Resist Full Magic Attack
-(13021, 4390, 1), -- Mystic Immunity
-(13021, 4408, 1), -- HP Increase (1x)
-(13021, 4409, 1), -- MP Increase (1x)
-(13021, 4410, 11), -- Average P. Atk.
-(13021, 4411, 11), -- Average M. Atk.
-(13021, 4412, 11), -- Average P. Def.
-(13021, 4413, 11), -- Average M. Def.
-(13021, 4414, 2), -- Standard Type
-(13021, 4415, 3), -- One-handed Sword
-(13021, 4416, 19), -- Others
+(13021, 4390, 1), -- NPC Abnormal Immunity
+(13021, 4408, 1), -- HP Modifiers
+(13021, 4409, 1), -- MP Modifiers
+(13021, 4410, 11), -- P. Atk. Modifiers
+(13021, 4411, 11), -- M. Atk. Modifiers
+(13021, 4412, 11), -- P. Def. Modifiers
+(13021, 4413, 11), -- M. Def. Modifiers
+(13021, 4414, 2), -- Armor Type
+(13021, 4415, 3), -- Weapon Type
+(13021, 4416, 19), -- Races
 (13021, 5126, 1), -- Maximum Recovery
 -- 
 (13022, 4045, 1), -- Resist Full Magic Attack
-(13022, 4390, 1), -- Mystic Immunity
-(13022, 4408, 1), -- HP Increase (1x)
-(13022, 4409, 1), -- MP Increase (1x)
-(13022, 4410, 11), -- Average P. Atk.
-(13022, 4411, 11), -- Average M. Atk.
-(13022, 4412, 11), -- Average P. Def.
-(13022, 4413, 11), -- Average M. Def.
-(13022, 4414, 2), -- Standard Type
-(13022, 4415, 3), -- One-handed Sword
-(13022, 4416, 19), -- Others
+(13022, 4390, 1), -- NPC Abnormal Immunity
+(13022, 4408, 1), -- HP Modifiers
+(13022, 4409, 1), -- MP Modifiers
+(13022, 4410, 11), -- P. Atk. Modifiers
+(13022, 4411, 11), -- M. Atk. Modifiers
+(13022, 4412, 11), -- P. Def. Modifiers
+(13022, 4413, 11), -- M. Def. Modifiers
+(13022, 4414, 2), -- Armor Type
+(13022, 4415, 3), -- Weapon Type
+(13022, 4416, 19), -- Races
 (13022, 5127, 1), -- Recover Force
 -- 
 (13023, 4045, 1), -- Resist Full Magic Attack
-(13023, 4390, 1), -- Mystic Immunity
-(13023, 4408, 1), -- HP Increase (1x)
-(13023, 4409, 1), -- MP Increase (1x)
-(13023, 4410, 11), -- Average P. Atk.
-(13023, 4411, 11), -- Average M. Atk.
-(13023, 4412, 11), -- Average P. Def.
-(13023, 4413, 11), -- Average M. Def.
-(13023, 4414, 2), -- Standard Type
-(13023, 4415, 3), -- One-handed Sword
-(13023, 4416, 19), -- Others
+(13023, 4390, 1), -- NPC Abnormal Immunity
+(13023, 4408, 1), -- HP Modifiers
+(13023, 4409, 1), -- MP Modifiers
+(13023, 4410, 11), -- P. Atk. Modifiers
+(13023, 4411, 11), -- M. Atk. Modifiers
+(13023, 4412, 11), -- P. Def. Modifiers
+(13023, 4413, 11), -- M. Def. Modifiers
+(13023, 4414, 2), -- Armor Type
+(13023, 4415, 3), -- Weapon Type
+(13023, 4416, 19), -- Races
 (13023, 5128, 1), -- Maximize long-range weapon use
 -- 
 (13024, 4045, 1), -- Resist Full Magic Attack
-(13024, 4390, 1), -- Mystic Immunity
-(13024, 4408, 1); -- HP Increase (1x)
+(13024, 4390, 1), -- NPC Abnormal Immunity
+(13024, 4408, 1); -- HP Modifiers
 
 INSERT INTO `npcskills` VALUES
-(13024, 4409, 1), -- MP Increase (1x)
-(13024, 4410, 11), -- Average P. Atk.
-(13024, 4411, 11), -- Average M. Atk.
-(13024, 4412, 11), -- Average P. Def.
-(13024, 4413, 11), -- Average M. Def.
-(13024, 4414, 2), -- Standard Type
-(13024, 4415, 3), -- One-handed Sword
-(13024, 4416, 19), -- Others
+(13024, 4409, 1), -- MP Modifiers
+(13024, 4410, 11), -- P. Atk. Modifiers
+(13024, 4411, 11), -- M. Atk. Modifiers
+(13024, 4412, 11), -- P. Def. Modifiers
+(13024, 4413, 11), -- M. Def. Modifiers
+(13024, 4414, 2), -- Armor Type
+(13024, 4415, 3), -- Weapon Type
+(13024, 4416, 19), -- Races
 (13024, 5129, 1), -- Smokescreen
 -- 
 (13025, 4045, 1), -- Resist Full Magic Attack
-(13025, 4390, 1), -- Mystic Immunity
-(13025, 4408, 1), -- HP Increase (1x)
-(13025, 4409, 1), -- MP Increase (1x)
-(13025, 4410, 11), -- Average P. Atk.
-(13025, 4411, 11), -- Average M. Atk.
-(13025, 4412, 11), -- Average P. Def.
-(13025, 4413, 11), -- Average M. Def.
-(13025, 4414, 2), -- Standard Type
-(13025, 4415, 3), -- One-handed Sword
-(13025, 4416, 19), -- Others
+(13025, 4390, 1), -- NPC Abnormal Immunity
+(13025, 4408, 1), -- HP Modifiers
+(13025, 4409, 1), -- MP Modifiers
+(13025, 4410, 11), -- P. Atk. Modifiers
+(13025, 4411, 11), -- M. Atk. Modifiers
+(13025, 4412, 11), -- P. Def. Modifiers
+(13025, 4413, 11), -- M. Def. Modifiers
+(13025, 4414, 2), -- Armor Type
+(13025, 4415, 3), -- Weapon Type
+(13025, 4416, 19), -- Races
 (13025, 5130, 1), -- Volcano
 -- 
 (13026, 4045, 1), -- Resist Full Magic Attack
-(13026, 4390, 1), -- Mystic Immunity
-(13026, 4408, 1), -- HP Increase (1x)
-(13026, 4409, 1), -- MP Increase (1x)
-(13026, 4410, 11), -- Average P. Atk.
-(13026, 4411, 11), -- Average M. Atk.
-(13026, 4412, 11), -- Average P. Def.
-(13026, 4413, 11), -- Average M. Def.
-(13026, 4414, 2), -- Standard Type
-(13026, 4415, 3), -- One-handed Sword
-(13026, 4416, 19), -- Others
+(13026, 4390, 1), -- NPC Abnormal Immunity
+(13026, 4408, 1), -- HP Modifiers
+(13026, 4409, 1), -- MP Modifiers
+(13026, 4410, 11), -- P. Atk. Modifiers
+(13026, 4411, 11), -- M. Atk. Modifiers
+(13026, 4412, 11), -- P. Def. Modifiers
+(13026, 4413, 11), -- M. Def. Modifiers
+(13026, 4414, 2), -- Armor Type
+(13026, 4415, 3), -- Weapon Type
+(13026, 4416, 19), -- Races
 (13026, 5131, 1), -- Tsunami
 -- 
 (13027, 4045, 1), -- Resist Full Magic Attack
-(13027, 4390, 1), -- Mystic Immunity
-(13027, 4408, 1), -- HP Increase (1x)
-(13027, 4409, 1), -- MP Increase (1x)
-(13027, 4410, 11), -- Average P. Atk.
-(13027, 4411, 11), -- Average M. Atk.
-(13027, 4412, 11), -- Average P. Def.
-(13027, 4413, 11), -- Average M. Def.
-(13027, 4414, 2), -- Standard Type
-(13027, 4415, 3), -- One-handed Sword
-(13027, 4416, 19), -- Others
+(13027, 4390, 1), -- NPC Abnormal Immunity
+(13027, 4408, 1), -- HP Modifiers
+(13027, 4409, 1), -- MP Modifiers
+(13027, 4410, 11), -- P. Atk. Modifiers
+(13027, 4411, 11), -- M. Atk. Modifiers
+(13027, 4412, 11), -- P. Def. Modifiers
+(13027, 4413, 11), -- M. Def. Modifiers
+(13027, 4414, 2), -- Armor Type
+(13027, 4415, 3), -- Weapon Type
+(13027, 4416, 19), -- Races
 (13027, 5132, 1), -- Cyclone
 -- 
 (13028, 4045, 1), -- Resist Full Magic Attack
-(13028, 4390, 1), -- Mystic Immunity
-(13028, 4408, 1), -- HP Increase (1x)
-(13028, 4409, 1), -- MP Increase (1x)
-(13028, 4410, 11), -- Average P. Atk.
-(13028, 4411, 11), -- Average M. Atk.
-(13028, 4412, 11), -- Average P. Def.
-(13028, 4413, 11), -- Average M. Def.
-(13028, 4414, 2), -- Standard Type
-(13028, 4415, 3), -- One-handed Sword
-(13028, 4416, 19), -- Others
+(13028, 4390, 1), -- NPC Abnormal Immunity
+(13028, 4408, 1), -- HP Modifiers
+(13028, 4409, 1), -- MP Modifiers
+(13028, 4410, 11), -- P. Atk. Modifiers
+(13028, 4411, 11), -- M. Atk. Modifiers
+(13028, 4412, 11), -- P. Def. Modifiers
+(13028, 4413, 11), -- M. Def. Modifiers
+(13028, 4414, 2), -- Armor Type
+(13028, 4415, 3), -- Weapon Type
+(13028, 4416, 19), -- Races
 (13028, 5145, 1), -- Day of Doom
 -- 
 (13029, 4045, 1), -- Resist Full Magic Attack
-(13029, 4390, 1), -- Mystic Immunity
-(13029, 4408, 1), -- HP Increase (1x)
-(13029, 4409, 1), -- MP Increase (1x)
-(13029, 4410, 11), -- Average P. Atk.
-(13029, 4411, 11), -- Average M. Atk.
-(13029, 4412, 11), -- Average P. Def.
-(13029, 4413, 11), -- Average M. Def.
-(13029, 4414, 2), -- Standard Type
-(13029, 4415, 3), -- One-handed Sword
-(13029, 4416, 19), -- Others
+(13029, 4390, 1), -- NPC Abnormal Immunity
+(13029, 4408, 1), -- HP Modifiers
+(13029, 4409, 1), -- MP Modifiers
+(13029, 4410, 11), -- P. Atk. Modifiers
+(13029, 4411, 11), -- M. Atk. Modifiers
+(13029, 4412, 11), -- P. Def. Modifiers
+(13029, 4413, 11), -- M. Def. Modifiers
+(13029, 4414, 2), -- Armor Type
+(13029, 4415, 3), -- Weapon Type
+(13029, 4416, 19), -- Races
 (13029, 5133, 1), -- Gehenna
 -- 
 (13030, 4045, 1), -- Resist Full Magic Attack
-(13030, 4390, 1), -- Mystic Immunity
-(13030, 4408, 1), -- HP Increase (1x)
-(13030, 4409, 1), -- MP Increase (1x)
-(13030, 4410, 11), -- Average P. Atk.
-(13030, 4411, 11), -- Average M. Atk.
-(13030, 4412, 11), -- Average P. Def.
-(13030, 4413, 11), -- Average M. Def.
-(13030, 4414, 2), -- Standard Type
-(13030, 4415, 3), -- One-handed Sword
-(13030, 4416, 19), -- Others
+(13030, 4390, 1), -- NPC Abnormal Immunity
+(13030, 4408, 1), -- HP Modifiers
+(13030, 4409, 1), -- MP Modifiers
+(13030, 4410, 11), -- P. Atk. Modifiers
+(13030, 4411, 11), -- M. Atk. Modifiers
+(13030, 4412, 11), -- P. Def. Modifiers
+(13030, 4413, 11), -- M. Def. Modifiers
+(13030, 4414, 2), -- Armor Type
+(13030, 4415, 3), -- Weapon Type
+(13030, 4416, 19), -- Races
 (13030, 5134, 1), -- Anti-Summoning Field
 -- Huge Pig
-(13031, 4390, 1), -- Mystic Immunity
-(13031, 4408, 1), -- HP Increase (1x)
-(13031, 4409, 1), -- MP Increase (1x)
-(13031, 4410, 11), -- Average P. Atk.
-(13031, 4411, 11), -- Average M. Atk.
-(13031, 4412, 11), -- Average P. Def.
-(13031, 4413, 11), -- Average M. Def.
-(13031, 4414, 2), -- Standard Type
-(13031, 4415, 5), -- Blunt Weapons
-(13031, 4416, 4), -- Animals
+(13031, 4390, 1), -- NPC Abnormal Immunity
+(13031, 4408, 1), -- HP Modifiers
+(13031, 4409, 1), -- MP Modifiers
+(13031, 4410, 11), -- P. Atk. Modifiers
+(13031, 4411, 11), -- M. Atk. Modifiers
+(13031, 4412, 11), -- P. Def. Modifiers
+(13031, 4413, 11), -- M. Def. Modifiers
+(13031, 4414, 2), -- Armor Type
+(13031, 4415, 5), -- Weapon Type
+(13031, 4416, 4), -- Races
 -- Huge Pig
-(13032, 4390, 1), -- Mystic Immunity
-(13032, 4408, 1), -- HP Increase (1x)
-(13032, 4409, 1), -- MP Increase (1x)
-(13032, 4410, 11), -- Average P. Atk.
-(13032, 4411, 11), -- Average M. Atk.
-(13032, 4412, 11), -- Average P. Def.
-(13032, 4413, 11), -- Average M. Def.
-(13032, 4414, 2), -- Standard Type
-(13032, 4415, 5), -- Blunt Weapons
-(13032, 4416, 4), -- Animals
+(13032, 4390, 1), -- NPC Abnormal Immunity
+(13032, 4408, 1), -- HP Modifiers
+(13032, 4409, 1), -- MP Modifiers
+(13032, 4410, 11), -- P. Atk. Modifiers
+(13032, 4411, 11), -- M. Atk. Modifiers
+(13032, 4412, 11), -- P. Def. Modifiers
+(13032, 4413, 11), -- M. Def. Modifiers
+(13032, 4414, 2), -- Armor Type
+(13032, 4415, 5), -- Weapon Type
+(13032, 4416, 4), -- Races
 -- Huge Pig
-(13033, 4390, 1), -- Mystic Immunity
-(13033, 4408, 1), -- HP Increase (1x)
-(13033, 4409, 1), -- MP Increase (1x)
-(13033, 4410, 11), -- Average P. Atk.
-(13033, 4411, 11), -- Average M. Atk.
-(13033, 4412, 11), -- Average P. Def.
-(13033, 4413, 11), -- Average M. Def.
-(13033, 4414, 2), -- Standard Type
-(13033, 4415, 5), -- Blunt Weapons
-(13033, 4416, 4), -- Animals
+(13033, 4390, 1), -- NPC Abnormal Immunity
+(13033, 4408, 1), -- HP Modifiers
+(13033, 4409, 1), -- MP Modifiers
+(13033, 4410, 11), -- P. Atk. Modifiers
+(13033, 4411, 11), -- M. Atk. Modifiers
+(13033, 4412, 11), -- P. Def. Modifiers
+(13033, 4413, 11), -- M. Def. Modifiers
+(13033, 4414, 2), -- Armor Type
+(13033, 4415, 5), -- Weapon Type
+(13033, 4416, 4), -- Races
 -- Super Huge Pig
-(13034, 4390, 1), -- Mystic Immunity
-(13034, 4408, 1), -- HP Increase (1x)
-(13034, 4409, 1), -- MP Increase (1x)
-(13034, 4410, 11), -- Average P. Atk.
-(13034, 4411, 11), -- Average M. Atk.
-(13034, 4412, 11), -- Average P. Def.
-(13034, 4413, 11), -- Average M. Def.
-(13034, 4414, 2), -- Standard Type
-(13034, 4415, 5), -- Blunt Weapons
-(13034, 4416, 4), -- Animals
+(13034, 4390, 1), -- NPC Abnormal Immunity
+(13034, 4408, 1), -- HP Modifiers
+(13034, 4409, 1), -- MP Modifiers
+(13034, 4410, 11), -- P. Atk. Modifiers
+(13034, 4411, 11), -- M. Atk. Modifiers
+(13034, 4412, 11), -- P. Def. Modifiers
+(13034, 4413, 11), -- M. Def. Modifiers
+(13034, 4414, 2), -- Armor Type
+(13034, 4415, 5), -- Weapon Type
+(13034, 4416, 4), -- Races
 -- Golden Pig
-(13035, 4390, 1), -- Mystic Immunity
-(13035, 4408, 1), -- HP Increase (1x)
-(13035, 4409, 1), -- MP Increase (1x)
-(13035, 4410, 11), -- Average P. Atk.
-(13035, 4411, 11), -- Average M. Atk.
-(13035, 4412, 11), -- Average P. Def.
-(13035, 4413, 11), -- Average M. Def.
-(13035, 4414, 2), -- Standard Type
-(13035, 4415, 5), -- Blunt Weapons
-(13035, 4416, 4), -- Animals
+(13035, 4390, 1), -- NPC Abnormal Immunity
+(13035, 4408, 1), -- HP Modifiers
+(13035, 4409, 1), -- MP Modifiers
+(13035, 4410, 11), -- P. Atk. Modifiers
+(13035, 4411, 11), -- M. Atk. Modifiers
+(13035, 4412, 11), -- P. Def. Modifiers
+(13035, 4413, 11), -- M. Def. Modifiers
+(13035, 4414, 2), -- Armor Type
+(13035, 4415, 5), -- Weapon Type
+(13035, 4416, 4), -- Races
 -- Treasure Chest
 (13036, 4045, 1), -- Resist Full Magic Attack
-(13036, 4390, 1), -- Mystic Immunity
-(13036, 4408, 1), -- HP Increase (1x)
-(13036, 4409, 1), -- MP Increase (1x)
-(13036, 4410, 11), -- Average P. Atk.
-(13036, 4411, 11), -- Average M. Atk.
-(13036, 4412, 11), -- Average P. Def.
-(13036, 4413, 11), -- Average M. Def.
-(13036, 4414, 2), -- Standard Type
-(13036, 4415, 3), -- One-handed Sword
-(13036, 4416, 2), -- Magic Creatures
+(13036, 4390, 1), -- NPC Abnormal Immunity
+(13036, 4408, 1), -- HP Modifiers
+(13036, 4409, 1), -- MP Modifiers
+(13036, 4410, 11), -- P. Atk. Modifiers
+(13036, 4411, 11), -- M. Atk. Modifiers
+(13036, 4412, 11), -- P. Def. Modifiers
+(13036, 4413, 11), -- M. Def. Modifiers
+(13036, 4414, 2), -- Armor Type
+(13036, 4415, 3), -- Weapon Type
+(13036, 4416, 2), -- Races
 -- Trap
-(13037, 4390, 1), -- Mystic Immunity
-(13037, 4408, 1), -- HP Increase (1x)
-(13037, 4409, 1), -- MP Increase (1x)
-(13037, 4410, 11), -- Average P. Atk.
-(13037, 4411, 11), -- Average M. Atk.
-(13037, 4412, 11), -- Average P. Def.
-(13037, 4413, 11), -- Average M. Def.
-(13037, 4414, 2), -- Standard Type
-(13037, 4415, 1), -- Bare Hands
-(13037, 4416, 19), -- Others
+(13037, 4390, 1), -- NPC Abnormal Immunity
+(13037, 4408, 1), -- HP Modifiers
+(13037, 4409, 1), -- MP Modifiers
+(13037, 4410, 11), -- P. Atk. Modifiers
+(13037, 4411, 11), -- M. Atk. Modifiers
+(13037, 4412, 11), -- P. Def. Modifiers
+(13037, 4413, 11), -- M. Def. Modifiers
+(13037, 4414, 2), -- Armor Type
+(13037, 4415, 1), -- Weapon Type
+(13037, 4416, 19), -- Races
 (13037, 5267, 1), -- Trap Explosion
 -- Trap
-(13038, 4390, 1), -- Mystic Immunity
-(13038, 4408, 1), -- HP Increase (1x)
-(13038, 4409, 1), -- MP Increase (1x)
-(13038, 4410, 11), -- Average P. Atk.
-(13038, 4411, 11), -- Average M. Atk.
-(13038, 4412, 11), -- Average P. Def.
-(13038, 4413, 11), -- Average M. Def.
-(13038, 4414, 2), -- Standard Type
-(13038, 4415, 1), -- Bare Hands
-(13038, 4416, 19), -- Others
+(13038, 4390, 1), -- NPC Abnormal Immunity
+(13038, 4408, 1), -- HP Modifiers
+(13038, 4409, 1), -- MP Modifiers
+(13038, 4410, 11), -- P. Atk. Modifiers
+(13038, 4411, 11), -- M. Atk. Modifiers
+(13038, 4412, 11), -- P. Def. Modifiers
+(13038, 4413, 11), -- M. Def. Modifiers
+(13038, 4414, 2), -- Armor Type
+(13038, 4415, 1), -- Weapon Type
+(13038, 4416, 19), -- Races
 (13038, 5267, 2), -- Trap Explosion
 -- Trap
-(13039, 4390, 1), -- Mystic Immunity
-(13039, 4408, 1), -- HP Increase (1x)
-(13039, 4409, 1), -- MP Increase (1x)
-(13039, 4410, 11), -- Average P. Atk.
-(13039, 4411, 11), -- Average M. Atk.
-(13039, 4412, 11), -- Average P. Def.
-(13039, 4413, 11), -- Average M. Def.
-(13039, 4414, 2), -- Standard Type
-(13039, 4415, 1), -- Bare Hands
-(13039, 4416, 19), -- Others
+(13039, 4390, 1), -- NPC Abnormal Immunity
+(13039, 4408, 1), -- HP Modifiers
+(13039, 4409, 1), -- MP Modifiers
+(13039, 4410, 11), -- P. Atk. Modifiers
+(13039, 4411, 11), -- M. Atk. Modifiers
+(13039, 4412, 11), -- P. Def. Modifiers
+(13039, 4413, 11), -- M. Def. Modifiers
+(13039, 4414, 2), -- Armor Type
+(13039, 4415, 1), -- Weapon Type
+(13039, 4416, 19), -- Races
 (13039, 5267, 3), -- Trap Explosion
 -- Trap
-(13040, 4390, 1), -- Mystic Immunity
-(13040, 4408, 1), -- HP Increase (1x)
-(13040, 4409, 1), -- MP Increase (1x)
-(13040, 4410, 11), -- Average P. Atk.
-(13040, 4411, 11), -- Average M. Atk.
-(13040, 4412, 11), -- Average P. Def.
-(13040, 4413, 11), -- Average M. Def.
-(13040, 4414, 2), -- Standard Type
-(13040, 4415, 1), -- Bare Hands
-(13040, 4416, 19), -- Others
+(13040, 4390, 1), -- NPC Abnormal Immunity
+(13040, 4408, 1), -- HP Modifiers
+(13040, 4409, 1), -- MP Modifiers
+(13040, 4410, 11), -- P. Atk. Modifiers
+(13040, 4411, 11), -- M. Atk. Modifiers
+(13040, 4412, 11), -- P. Def. Modifiers
+(13040, 4413, 11), -- M. Def. Modifiers
+(13040, 4414, 2), -- Armor Type
+(13040, 4415, 1), -- Weapon Type
+(13040, 4416, 19), -- Races
 (13040, 5267, 4), -- Trap Explosion
 -- Trap
-(13041, 4390, 1), -- Mystic Immunity
-(13041, 4408, 1), -- HP Increase (1x)
-(13041, 4409, 1), -- MP Increase (1x)
-(13041, 4410, 11), -- Average P. Atk.
-(13041, 4411, 11), -- Average M. Atk.
-(13041, 4412, 11), -- Average P. Def.
-(13041, 4413, 11), -- Average M. Def.
-(13041, 4414, 2), -- Standard Type
-(13041, 4415, 1), -- Bare Hands
-(13041, 4416, 19), -- Others
+(13041, 4390, 1), -- NPC Abnormal Immunity
+(13041, 4408, 1), -- HP Modifiers
+(13041, 4409, 1), -- MP Modifiers
+(13041, 4410, 11), -- P. Atk. Modifiers
+(13041, 4411, 11), -- M. Atk. Modifiers
+(13041, 4412, 11), -- P. Def. Modifiers
+(13041, 4413, 11), -- M. Def. Modifiers
+(13041, 4414, 2), -- Armor Type
+(13041, 4415, 1), -- Weapon Type
+(13041, 4416, 19), -- Races
 (13041, 5267, 5), -- Trap Explosion
 -- Trap
-(13042, 4390, 1), -- Mystic Immunity
-(13042, 4408, 1), -- HP Increase (1x)
-(13042, 4409, 1), -- MP Increase (1x)
-(13042, 4410, 11), -- Average P. Atk.
-(13042, 4411, 11), -- Average M. Atk.
-(13042, 4412, 11), -- Average P. Def.
-(13042, 4413, 11), -- Average M. Def.
-(13042, 4414, 2), -- Standard Type
-(13042, 4415, 1), -- Bare Hands
-(13042, 4416, 19), -- Others
+(13042, 4390, 1), -- NPC Abnormal Immunity
+(13042, 4408, 1), -- HP Modifiers
+(13042, 4409, 1), -- MP Modifiers
+(13042, 4410, 11), -- P. Atk. Modifiers
+(13042, 4411, 11), -- M. Atk. Modifiers
+(13042, 4412, 11), -- P. Def. Modifiers
+(13042, 4413, 11), -- M. Def. Modifiers
+(13042, 4414, 2), -- Armor Type
+(13042, 4415, 1), -- Weapon Type
+(13042, 4416, 19), -- Races
 (13042, 5267, 6), -- Trap Explosion
 -- Trap
-(13043, 4390, 1), -- Mystic Immunity
-(13043, 4408, 1), -- HP Increase (1x)
-(13043, 4409, 1), -- MP Increase (1x)
-(13043, 4410, 11), -- Average P. Atk.
-(13043, 4411, 11), -- Average M. Atk.
-(13043, 4412, 11), -- Average P. Def.
-(13043, 4413, 11), -- Average M. Def.
-(13043, 4414, 2), -- Standard Type
-(13043, 4415, 1), -- Bare Hands
-(13043, 4416, 19), -- Others
+(13043, 4390, 1), -- NPC Abnormal Immunity
+(13043, 4408, 1), -- HP Modifiers
+(13043, 4409, 1), -- MP Modifiers
+(13043, 4410, 11), -- P. Atk. Modifiers
+(13043, 4411, 11), -- M. Atk. Modifiers
+(13043, 4412, 11), -- P. Def. Modifiers
+(13043, 4413, 11), -- M. Def. Modifiers
+(13043, 4414, 2), -- Armor Type
+(13043, 4415, 1), -- Weapon Type
+(13043, 4416, 19), -- Races
 (13043, 5267, 7), -- Trap Explosion
 -- Trap
-(13044, 4390, 1), -- Mystic Immunity
-(13044, 4408, 1), -- HP Increase (1x)
-(13044, 4409, 1), -- MP Increase (1x)
-(13044, 4410, 11), -- Average P. Atk.
-(13044, 4411, 11), -- Average M. Atk.
-(13044, 4412, 11), -- Average P. Def.
-(13044, 4413, 11), -- Average M. Def.
-(13044, 4414, 2), -- Standard Type
-(13044, 4415, 1), -- Bare Hands
-(13044, 4416, 19), -- Others
+(13044, 4390, 1), -- NPC Abnormal Immunity
+(13044, 4408, 1), -- HP Modifiers
+(13044, 4409, 1), -- MP Modifiers
+(13044, 4410, 11), -- P. Atk. Modifiers
+(13044, 4411, 11), -- M. Atk. Modifiers
+(13044, 4412, 11), -- P. Def. Modifiers
+(13044, 4413, 11), -- M. Def. Modifiers
+(13044, 4414, 2), -- Armor Type
+(13044, 4415, 1), -- Weapon Type
+(13044, 4416, 19), -- Races
 (13044, 5267, 8), -- Trap Explosion
 -- Trap
-(13045, 4390, 1), -- Mystic Immunity
-(13045, 4408, 1), -- HP Increase (1x)
-(13045, 4409, 1), -- MP Increase (1x)
-(13045, 4410, 11), -- Average P. Atk.
-(13045, 4411, 11), -- Average M. Atk.
-(13045, 4412, 11), -- Average P. Def.
-(13045, 4413, 11), -- Average M. Def.
-(13045, 4414, 2), -- Standard Type
-(13045, 4415, 1), -- Bare Hands
-(13045, 4416, 19), -- Others
+(13045, 4390, 1), -- NPC Abnormal Immunity
+(13045, 4408, 1), -- HP Modifiers
+(13045, 4409, 1), -- MP Modifiers
+(13045, 4410, 11), -- P. Atk. Modifiers
+(13045, 4411, 11), -- M. Atk. Modifiers
+(13045, 4412, 11), -- P. Def. Modifiers
+(13045, 4413, 11), -- M. Def. Modifiers
+(13045, 4414, 2), -- Armor Type
+(13045, 4415, 1), -- Weapon Type
+(13045, 4416, 19), -- Races
 (13045, 5267, 9), -- Trap Explosion
 -- Trap
-(13046, 4390, 1), -- Mystic Immunity
-(13046, 4408, 1), -- HP Increase (1x)
-(13046, 4409, 1), -- MP Increase (1x)
-(13046, 4410, 11), -- Average P. Atk.
-(13046, 4411, 11), -- Average M. Atk.
-(13046, 4412, 11), -- Average P. Def.
-(13046, 4413, 11), -- Average M. Def.
-(13046, 4414, 2), -- Standard Type
-(13046, 4415, 1), -- Bare Hands
-(13046, 4416, 19), -- Others
+(13046, 4390, 1), -- NPC Abnormal Immunity
+(13046, 4408, 1), -- HP Modifiers
+(13046, 4409, 1), -- MP Modifiers
+(13046, 4410, 11), -- P. Atk. Modifiers
+(13046, 4411, 11), -- M. Atk. Modifiers
+(13046, 4412, 11), -- P. Def. Modifiers
+(13046, 4413, 11), -- M. Def. Modifiers
+(13046, 4414, 2), -- Armor Type
+(13046, 4415, 1), -- Weapon Type
+(13046, 4416, 19), -- Races
 (13046, 5268, 1), -- Poison
 -- Trap
-(13047, 4390, 1), -- Mystic Immunity
-(13047, 4408, 1), -- HP Increase (1x)
-(13047, 4409, 1), -- MP Increase (1x)
-(13047, 4410, 11), -- Average P. Atk.
-(13047, 4411, 11), -- Average M. Atk.
-(13047, 4412, 11), -- Average P. Def.
-(13047, 4413, 11), -- Average M. Def.
-(13047, 4414, 2), -- Standard Type
-(13047, 4415, 1), -- Bare Hands
-(13047, 4416, 19), -- Others
+(13047, 4390, 1), -- NPC Abnormal Immunity
+(13047, 4408, 1), -- HP Modifiers
+(13047, 4409, 1), -- MP Modifiers
+(13047, 4410, 11), -- P. Atk. Modifiers
+(13047, 4411, 11), -- M. Atk. Modifiers
+(13047, 4412, 11), -- P. Def. Modifiers
+(13047, 4413, 11), -- M. Def. Modifiers
+(13047, 4414, 2), -- Armor Type
+(13047, 4415, 1), -- Weapon Type
+(13047, 4416, 19), -- Races
 (13047, 5268, 2), -- Poison
 -- Trap
-(13048, 4390, 1), -- Mystic Immunity
-(13048, 4408, 1), -- HP Increase (1x)
-(13048, 4409, 1), -- MP Increase (1x)
-(13048, 4410, 11), -- Average P. Atk.
-(13048, 4411, 11), -- Average M. Atk.
-(13048, 4412, 11), -- Average P. Def.
-(13048, 4413, 11), -- Average M. Def.
-(13048, 4414, 2), -- Standard Type
-(13048, 4415, 1), -- Bare Hands
-(13048, 4416, 19), -- Others
+(13048, 4390, 1), -- NPC Abnormal Immunity
+(13048, 4408, 1), -- HP Modifiers
+(13048, 4409, 1), -- MP Modifiers
+(13048, 4410, 11), -- P. Atk. Modifiers
+(13048, 4411, 11), -- M. Atk. Modifiers
+(13048, 4412, 11), -- P. Def. Modifiers
+(13048, 4413, 11), -- M. Def. Modifiers
+(13048, 4414, 2), -- Armor Type
+(13048, 4415, 1), -- Weapon Type
+(13048, 4416, 19), -- Races
 (13048, 5268, 3), -- Poison
 -- Trap
-(13049, 4390, 1), -- Mystic Immunity
-(13049, 4408, 1), -- HP Increase (1x)
-(13049, 4409, 1), -- MP Increase (1x)
-(13049, 4410, 11), -- Average P. Atk.
-(13049, 4411, 11), -- Average M. Atk.
-(13049, 4412, 11), -- Average P. Def.
-(13049, 4413, 11), -- Average M. Def.
-(13049, 4414, 2), -- Standard Type
-(13049, 4415, 1), -- Bare Hands
-(13049, 4416, 19), -- Others
+(13049, 4390, 1), -- NPC Abnormal Immunity
+(13049, 4408, 1), -- HP Modifiers
+(13049, 4409, 1), -- MP Modifiers
+(13049, 4410, 11), -- P. Atk. Modifiers
+(13049, 4411, 11), -- M. Atk. Modifiers
+(13049, 4412, 11), -- P. Def. Modifiers
+(13049, 4413, 11), -- M. Def. Modifiers
+(13049, 4414, 2), -- Armor Type
+(13049, 4415, 1), -- Weapon Type
+(13049, 4416, 19), -- Races
 (13049, 5268, 4), -- Poison
 -- Trap
-(13050, 4390, 1), -- Mystic Immunity
-(13050, 4408, 1), -- HP Increase (1x)
-(13050, 4409, 1), -- MP Increase (1x)
-(13050, 4410, 11), -- Average P. Atk.
-(13050, 4411, 11), -- Average M. Atk.
-(13050, 4412, 11), -- Average P. Def.
-(13050, 4413, 11), -- Average M. Def.
-(13050, 4414, 2), -- Standard Type
-(13050, 4415, 1), -- Bare Hands
-(13050, 4416, 19), -- Others
+(13050, 4390, 1), -- NPC Abnormal Immunity
+(13050, 4408, 1), -- HP Modifiers
+(13050, 4409, 1), -- MP Modifiers
+(13050, 4410, 11), -- P. Atk. Modifiers
+(13050, 4411, 11), -- M. Atk. Modifiers
+(13050, 4412, 11), -- P. Def. Modifiers
+(13050, 4413, 11), -- M. Def. Modifiers
+(13050, 4414, 2), -- Armor Type
+(13050, 4415, 1), -- Weapon Type
+(13050, 4416, 19), -- Races
 (13050, 5268, 5), -- Poison
 -- Trap
-(13051, 4390, 1), -- Mystic Immunity
-(13051, 4408, 1), -- HP Increase (1x)
-(13051, 4409, 1), -- MP Increase (1x)
-(13051, 4410, 11), -- Average P. Atk.
-(13051, 4411, 11), -- Average M. Atk.
-(13051, 4412, 11), -- Average P. Def.
-(13051, 4413, 11), -- Average M. Def.
-(13051, 4414, 2), -- Standard Type
-(13051, 4415, 1), -- Bare Hands
-(13051, 4416, 19), -- Others
+(13051, 4390, 1), -- NPC Abnormal Immunity
+(13051, 4408, 1), -- HP Modifiers
+(13051, 4409, 1), -- MP Modifiers
+(13051, 4410, 11), -- P. Atk. Modifiers
+(13051, 4411, 11), -- M. Atk. Modifiers
+(13051, 4412, 11), -- P. Def. Modifiers
+(13051, 4413, 11), -- M. Def. Modifiers
+(13051, 4414, 2), -- Armor Type
+(13051, 4415, 1), -- Weapon Type
+(13051, 4416, 19), -- Races
 (13051, 5268, 6), -- Poison
 -- Trap
-(13052, 4390, 1), -- Mystic Immunity
-(13052, 4408, 1), -- HP Increase (1x)
-(13052, 4409, 1), -- MP Increase (1x)
-(13052, 4410, 11), -- Average P. Atk.
-(13052, 4411, 11), -- Average M. Atk.
-(13052, 4412, 11), -- Average P. Def.
-(13052, 4413, 11), -- Average M. Def.
-(13052, 4414, 2), -- Standard Type
-(13052, 4415, 1), -- Bare Hands
-(13052, 4416, 19), -- Others
+(13052, 4390, 1), -- NPC Abnormal Immunity
+(13052, 4408, 1), -- HP Modifiers
+(13052, 4409, 1), -- MP Modifiers
+(13052, 4410, 11), -- P. Atk. Modifiers
+(13052, 4411, 11), -- M. Atk. Modifiers
+(13052, 4412, 11), -- P. Def. Modifiers
+(13052, 4413, 11), -- M. Def. Modifiers
+(13052, 4414, 2), -- Armor Type
+(13052, 4415, 1), -- Weapon Type
+(13052, 4416, 19), -- Races
 (13052, 5270, 1), -- Flash Trap
 -- Trap
-(13053, 4390, 1), -- Mystic Immunity
-(13053, 4408, 1), -- HP Increase (1x)
-(13053, 4409, 1), -- MP Increase (1x)
-(13053, 4410, 11), -- Average P. Atk.
-(13053, 4411, 11), -- Average M. Atk.
-(13053, 4412, 11), -- Average P. Def.
-(13053, 4413, 11), -- Average M. Def.
-(13053, 4414, 2), -- Standard Type
-(13053, 4415, 1), -- Bare Hands
-(13053, 4416, 19), -- Others
+(13053, 4390, 1), -- NPC Abnormal Immunity
+(13053, 4408, 1), -- HP Modifiers
+(13053, 4409, 1), -- MP Modifiers
+(13053, 4410, 11), -- P. Atk. Modifiers
+(13053, 4411, 11), -- M. Atk. Modifiers
+(13053, 4412, 11), -- P. Def. Modifiers
+(13053, 4413, 11), -- M. Def. Modifiers
+(13053, 4414, 2), -- Armor Type
+(13053, 4415, 1), -- Weapon Type
+(13053, 4416, 19), -- Races
 (13053, 5270, 2), -- Flash Trap
 -- Trap
-(13054, 4390, 1), -- Mystic Immunity
-(13054, 4408, 1), -- HP Increase (1x)
-(13054, 4409, 1), -- MP Increase (1x)
-(13054, 4410, 11), -- Average P. Atk.
-(13054, 4411, 11), -- Average M. Atk.
-(13054, 4412, 11), -- Average P. Def.
-(13054, 4413, 11), -- Average M. Def.
-(13054, 4414, 2), -- Standard Type
-(13054, 4415, 1), -- Bare Hands
-(13054, 4416, 19), -- Others
+(13054, 4390, 1), -- NPC Abnormal Immunity
+(13054, 4408, 1), -- HP Modifiers
+(13054, 4409, 1), -- MP Modifiers
+(13054, 4410, 11), -- P. Atk. Modifiers
+(13054, 4411, 11), -- M. Atk. Modifiers
+(13054, 4412, 11), -- P. Def. Modifiers
+(13054, 4413, 11), -- M. Def. Modifiers
+(13054, 4414, 2), -- Armor Type
+(13054, 4415, 1), -- Weapon Type
+(13054, 4416, 19), -- Races
 (13054, 5270, 3), -- Flash Trap
 -- Trap
-(13055, 4390, 1), -- Mystic Immunity
-(13055, 4408, 1), -- HP Increase (1x)
-(13055, 4409, 1), -- MP Increase (1x)
-(13055, 4410, 11), -- Average P. Atk.
-(13055, 4411, 11), -- Average M. Atk.
-(13055, 4412, 11), -- Average P. Def.
-(13055, 4413, 11), -- Average M. Def.
-(13055, 4414, 2), -- Standard Type
-(13055, 4415, 1), -- Bare Hands
-(13055, 4416, 19), -- Others
+(13055, 4390, 1), -- NPC Abnormal Immunity
+(13055, 4408, 1), -- HP Modifiers
+(13055, 4409, 1), -- MP Modifiers
+(13055, 4410, 11), -- P. Atk. Modifiers
+(13055, 4411, 11), -- M. Atk. Modifiers
+(13055, 4412, 11), -- P. Def. Modifiers
+(13055, 4413, 11), -- M. Def. Modifiers
+(13055, 4414, 2), -- Armor Type
+(13055, 4415, 1), -- Weapon Type
+(13055, 4416, 19), -- Races
 (13055, 5270, 4), -- Flash Trap
 -- Trap
-(13056, 4390, 1), -- Mystic Immunity
-(13056, 4408, 1), -- HP Increase (1x)
-(13056, 4409, 1), -- MP Increase (1x)
-(13056, 4410, 11), -- Average P. Atk.
-(13056, 4411, 11), -- Average M. Atk.
-(13056, 4412, 11), -- Average P. Def.
-(13056, 4413, 11), -- Average M. Def.
-(13056, 4414, 2), -- Standard Type
-(13056, 4415, 1), -- Bare Hands
-(13056, 4416, 19), -- Others
+(13056, 4390, 1), -- NPC Abnormal Immunity
+(13056, 4408, 1), -- HP Modifiers
+(13056, 4409, 1), -- MP Modifiers
+(13056, 4410, 11), -- P. Atk. Modifiers
+(13056, 4411, 11), -- M. Atk. Modifiers
+(13056, 4412, 11), -- P. Def. Modifiers
+(13056, 4413, 11), -- M. Def. Modifiers
+(13056, 4414, 2), -- Armor Type
+(13056, 4415, 1), -- Weapon Type
+(13056, 4416, 19), -- Races
 (13056, 5270, 5), -- Flash Trap
 -- Trap
-(13057, 4390, 1), -- Mystic Immunity
-(13057, 4408, 1), -- HP Increase (1x)
-(13057, 4409, 1), -- MP Increase (1x)
-(13057, 4410, 11), -- Average P. Atk.
-(13057, 4411, 11), -- Average M. Atk.
-(13057, 4412, 11), -- Average P. Def.
-(13057, 4413, 11), -- Average M. Def.
-(13057, 4414, 2), -- Standard Type
-(13057, 4415, 1), -- Bare Hands
-(13057, 4416, 19), -- Others
+(13057, 4390, 1), -- NPC Abnormal Immunity
+(13057, 4408, 1), -- HP Modifiers
+(13057, 4409, 1), -- MP Modifiers
+(13057, 4410, 11), -- P. Atk. Modifiers
+(13057, 4411, 11), -- M. Atk. Modifiers
+(13057, 4412, 11), -- P. Def. Modifiers
+(13057, 4413, 11), -- M. Def. Modifiers
+(13057, 4414, 2), -- Armor Type
+(13057, 4415, 1), -- Weapon Type
+(13057, 4416, 19), -- Races
 (13057, 5271, 1), -- Hold
 -- Trap
-(13058, 4390, 1), -- Mystic Immunity
-(13058, 4408, 1), -- HP Increase (1x)
-(13058, 4409, 1), -- MP Increase (1x)
-(13058, 4410, 11), -- Average P. Atk.
-(13058, 4411, 11), -- Average M. Atk.
-(13058, 4412, 11), -- Average P. Def.
-(13058, 4413, 11), -- Average M. Def.
-(13058, 4414, 2), -- Standard Type
-(13058, 4415, 1), -- Bare Hands
-(13058, 4416, 19), -- Others
+(13058, 4390, 1), -- NPC Abnormal Immunity
+(13058, 4408, 1), -- HP Modifiers
+(13058, 4409, 1), -- MP Modifiers
+(13058, 4410, 11), -- P. Atk. Modifiers
+(13058, 4411, 11), -- M. Atk. Modifiers
+(13058, 4412, 11), -- P. Def. Modifiers
+(13058, 4413, 11), -- M. Def. Modifiers
+(13058, 4414, 2), -- Armor Type
+(13058, 4415, 1), -- Weapon Type
+(13058, 4416, 19), -- Races
 (13058, 5271, 2), -- Hold
 -- Trap
-(13059, 4390, 1), -- Mystic Immunity
-(13059, 4408, 1), -- HP Increase (1x)
-(13059, 4409, 1), -- MP Increase (1x)
-(13059, 4410, 11), -- Average P. Atk.
-(13059, 4411, 11), -- Average M. Atk.
-(13059, 4412, 11), -- Average P. Def.
-(13059, 4413, 11), -- Average M. Def.
-(13059, 4414, 2), -- Standard Type
-(13059, 4415, 1), -- Bare Hands
-(13059, 4416, 19), -- Others
+(13059, 4390, 1), -- NPC Abnormal Immunity
+(13059, 4408, 1), -- HP Modifiers
+(13059, 4409, 1), -- MP Modifiers
+(13059, 4410, 11), -- P. Atk. Modifiers
+(13059, 4411, 11), -- M. Atk. Modifiers
+(13059, 4412, 11), -- P. Def. Modifiers
+(13059, 4413, 11), -- M. Def. Modifiers
+(13059, 4414, 2), -- Armor Type
+(13059, 4415, 1), -- Weapon Type
+(13059, 4416, 19), -- Races
 (13059, 5271, 3), -- Hold
 -- Trap
-(13060, 4390, 1), -- Mystic Immunity
-(13060, 4408, 1), -- HP Increase (1x)
-(13060, 4409, 1), -- MP Increase (1x)
-(13060, 4410, 11), -- Average P. Atk.
-(13060, 4411, 11), -- Average M. Atk.
-(13060, 4412, 11), -- Average P. Def.
-(13060, 4413, 11), -- Average M. Def.
-(13060, 4414, 2), -- Standard Type
-(13060, 4415, 1), -- Bare Hands
-(13060, 4416, 19), -- Others
+(13060, 4390, 1), -- NPC Abnormal Immunity
+(13060, 4408, 1), -- HP Modifiers
+(13060, 4409, 1), -- MP Modifiers
+(13060, 4410, 11), -- P. Atk. Modifiers
+(13060, 4411, 11), -- M. Atk. Modifiers
+(13060, 4412, 11), -- P. Def. Modifiers
+(13060, 4413, 11), -- M. Def. Modifiers
+(13060, 4414, 2), -- Armor Type
+(13060, 4415, 1), -- Weapon Type
+(13060, 4416, 19), -- Races
 (13060, 5271, 4), -- Hold
 -- Trap
-(13061, 4390, 1), -- Mystic Immunity
-(13061, 4408, 1), -- HP Increase (1x)
-(13061, 4409, 1), -- MP Increase (1x)
-(13061, 4410, 11), -- Average P. Atk.
-(13061, 4411, 11), -- Average M. Atk.
-(13061, 4412, 11), -- Average P. Def.
-(13061, 4413, 11), -- Average M. Def.
-(13061, 4414, 2), -- Standard Type
-(13061, 4415, 1), -- Bare Hands
-(13061, 4416, 19), -- Others
+(13061, 4390, 1), -- NPC Abnormal Immunity
+(13061, 4408, 1), -- HP Modifiers
+(13061, 4409, 1), -- MP Modifiers
+(13061, 4410, 11), -- P. Atk. Modifiers
+(13061, 4411, 11), -- M. Atk. Modifiers
+(13061, 4412, 11), -- P. Def. Modifiers
+(13061, 4413, 11), -- M. Def. Modifiers
+(13061, 4414, 2), -- Armor Type
+(13061, 4415, 1), -- Weapon Type
+(13061, 4416, 19), -- Races
 (13061, 5271, 5), -- Hold
 -- Trap
-(13062, 4390, 1), -- Mystic Immunity
-(13062, 4408, 1), -- HP Increase (1x)
-(13062, 4409, 1), -- MP Increase (1x)
-(13062, 4410, 11), -- Average P. Atk.
-(13062, 4411, 11), -- Average M. Atk.
-(13062, 4412, 11), -- Average P. Def.
-(13062, 4413, 11), -- Average M. Def.
-(13062, 4414, 2), -- Standard Type
-(13062, 4415, 1), -- Bare Hands
-(13062, 4416, 19), -- Others
+(13062, 4390, 1), -- NPC Abnormal Immunity
+(13062, 4408, 1), -- HP Modifiers
+(13062, 4409, 1), -- MP Modifiers
+(13062, 4410, 11), -- P. Atk. Modifiers
+(13062, 4411, 11), -- M. Atk. Modifiers
+(13062, 4412, 11), -- P. Def. Modifiers
+(13062, 4413, 11), -- M. Def. Modifiers
+(13062, 4414, 2), -- Armor Type
+(13062, 4415, 1), -- Weapon Type
+(13062, 4416, 19), -- Races
 (13062, 5271, 6), -- Hold
 -- Trap
-(13063, 4390, 1), -- Mystic Immunity
-(13063, 4408, 1), -- HP Increase (1x)
-(13063, 4409, 1), -- MP Increase (1x)
-(13063, 4410, 11), -- Average P. Atk.
-(13063, 4411, 11), -- Average M. Atk.
-(13063, 4412, 11), -- Average P. Def.
-(13063, 4413, 11), -- Average M. Def.
-(13063, 4414, 2), -- Standard Type
-(13063, 4415, 1), -- Bare Hands
-(13063, 4416, 19), -- Others
+(13063, 4390, 1), -- NPC Abnormal Immunity
+(13063, 4408, 1), -- HP Modifiers
+(13063, 4409, 1), -- MP Modifiers
+(13063, 4410, 11), -- P. Atk. Modifiers
+(13063, 4411, 11), -- M. Atk. Modifiers
+(13063, 4412, 11), -- P. Def. Modifiers
+(13063, 4413, 11), -- M. Def. Modifiers
+(13063, 4414, 2), -- Armor Type
+(13063, 4415, 1), -- Weapon Type
+(13063, 4416, 19), -- Races
 (13063, 5271, 7), -- Hold
 -- Trap
-(13064, 4390, 1), -- Mystic Immunity
-(13064, 4408, 1), -- HP Increase (1x)
-(13064, 4409, 1), -- MP Increase (1x)
-(13064, 4410, 11), -- Average P. Atk.
-(13064, 4411, 11), -- Average M. Atk.
-(13064, 4412, 11), -- Average P. Def.
-(13064, 4413, 11), -- Average M. Def.
-(13064, 4414, 2), -- Standard Type
-(13064, 4415, 1), -- Bare Hands
-(13064, 4416, 19), -- Others
+(13064, 4390, 1), -- NPC Abnormal Immunity
+(13064, 4408, 1), -- HP Modifiers
+(13064, 4409, 1), -- MP Modifiers
+(13064, 4410, 11), -- P. Atk. Modifiers
+(13064, 4411, 11), -- M. Atk. Modifiers
+(13064, 4412, 11), -- P. Def. Modifiers
+(13064, 4413, 11), -- M. Def. Modifiers
+(13064, 4414, 2), -- Armor Type
+(13064, 4415, 1), -- Weapon Type
+(13064, 4416, 19), -- Races
 (13064, 5271, 8), -- Hold
 -- Trap
-(13065, 4390, 1), -- Mystic Immunity
-(13065, 4408, 1), -- HP Increase (1x)
-(13065, 4409, 1), -- MP Increase (1x)
-(13065, 4410, 11), -- Average P. Atk.
-(13065, 4411, 11), -- Average M. Atk.
-(13065, 4412, 11), -- Average P. Def.
-(13065, 4413, 11), -- Average M. Def.
-(13065, 4414, 2), -- Standard Type
-(13065, 4415, 1), -- Bare Hands
-(13065, 4416, 19), -- Others
+(13065, 4390, 1), -- NPC Abnormal Immunity
+(13065, 4408, 1), -- HP Modifiers
+(13065, 4409, 1), -- MP Modifiers
+(13065, 4410, 11), -- P. Atk. Modifiers
+(13065, 4411, 11), -- M. Atk. Modifiers
+(13065, 4412, 11), -- P. Def. Modifiers
+(13065, 4413, 11), -- M. Def. Modifiers
+(13065, 4414, 2), -- Armor Type
+(13065, 4415, 1), -- Weapon Type
+(13065, 4416, 19), -- Races
 (13065, 5269, 1), -- Slow Trap
 -- Trap
-(13066, 4390, 1), -- Mystic Immunity
-(13066, 4408, 1), -- HP Increase (1x)
-(13066, 4409, 1), -- MP Increase (1x)
-(13066, 4410, 11), -- Average P. Atk.
-(13066, 4411, 11), -- Average M. Atk.
-(13066, 4412, 11), -- Average P. Def.
-(13066, 4413, 11), -- Average M. Def.
-(13066, 4414, 2), -- Standard Type
-(13066, 4415, 1), -- Bare Hands
-(13066, 4416, 19), -- Others
+(13066, 4390, 1), -- NPC Abnormal Immunity
+(13066, 4408, 1), -- HP Modifiers
+(13066, 4409, 1), -- MP Modifiers
+(13066, 4410, 11), -- P. Atk. Modifiers
+(13066, 4411, 11), -- M. Atk. Modifiers
+(13066, 4412, 11), -- P. Def. Modifiers
+(13066, 4413, 11), -- M. Def. Modifiers
+(13066, 4414, 2), -- Armor Type
+(13066, 4415, 1), -- Weapon Type
+(13066, 4416, 19), -- Races
 (13066, 5269, 2), -- Slow Trap
 -- Trap
-(13067, 4390, 1), -- Mystic Immunity
-(13067, 4408, 1), -- HP Increase (1x)
-(13067, 4409, 1), -- MP Increase (1x)
-(13067, 4410, 11), -- Average P. Atk.
-(13067, 4411, 11), -- Average M. Atk.
-(13067, 4412, 11), -- Average P. Def.
-(13067, 4413, 11), -- Average M. Def.
-(13067, 4414, 2), -- Standard Type
-(13067, 4415, 1), -- Bare Hands
-(13067, 4416, 19), -- Others
+(13067, 4390, 1), -- NPC Abnormal Immunity
+(13067, 4408, 1), -- HP Modifiers
+(13067, 4409, 1), -- MP Modifiers
+(13067, 4410, 11), -- P. Atk. Modifiers
+(13067, 4411, 11), -- M. Atk. Modifiers
+(13067, 4412, 11), -- P. Def. Modifiers
+(13067, 4413, 11), -- M. Def. Modifiers
+(13067, 4414, 2), -- Armor Type
+(13067, 4415, 1), -- Weapon Type
+(13067, 4416, 19), -- Races
 (13067, 5269, 3), -- Slow Trap
 -- Trap
-(13068, 4390, 1), -- Mystic Immunity
-(13068, 4408, 1), -- HP Increase (1x)
-(13068, 4409, 1), -- MP Increase (1x)
-(13068, 4410, 11), -- Average P. Atk.
-(13068, 4411, 11), -- Average M. Atk.
-(13068, 4412, 11), -- Average P. Def.
-(13068, 4413, 11), -- Average M. Def.
-(13068, 4414, 2), -- Standard Type
-(13068, 4415, 1), -- Bare Hands
-(13068, 4416, 19), -- Others
+(13068, 4390, 1), -- NPC Abnormal Immunity
+(13068, 4408, 1), -- HP Modifiers
+(13068, 4409, 1), -- MP Modifiers
+(13068, 4410, 11), -- P. Atk. Modifiers
+(13068, 4411, 11), -- M. Atk. Modifiers
+(13068, 4412, 11), -- P. Def. Modifiers
+(13068, 4413, 11), -- M. Def. Modifiers
+(13068, 4414, 2), -- Armor Type
+(13068, 4415, 1), -- Weapon Type
+(13068, 4416, 19), -- Races
 (13068, 5269, 4), -- Slow Trap
 -- Trap
-(13069, 4390, 1), -- Mystic Immunity
-(13069, 4408, 1), -- HP Increase (1x)
-(13069, 4409, 1), -- MP Increase (1x)
-(13069, 4410, 11), -- Average P. Atk.
-(13069, 4411, 11), -- Average M. Atk.
-(13069, 4412, 11), -- Average P. Def.
-(13069, 4413, 11), -- Average M. Def.
-(13069, 4414, 2), -- Standard Type
-(13069, 4415, 1), -- Bare Hands
-(13069, 4416, 19), -- Others
+(13069, 4390, 1), -- NPC Abnormal Immunity
+(13069, 4408, 1), -- HP Modifiers
+(13069, 4409, 1), -- MP Modifiers
+(13069, 4410, 11), -- P. Atk. Modifiers
+(13069, 4411, 11), -- M. Atk. Modifiers
+(13069, 4412, 11), -- P. Def. Modifiers
+(13069, 4413, 11), -- M. Def. Modifiers
+(13069, 4414, 2), -- Armor Type
+(13069, 4415, 1), -- Weapon Type
+(13069, 4416, 19), -- Races
 (13069, 5269, 5), -- Slow Trap
 -- Trap
-(13070, 4390, 1), -- Mystic Immunity
-(13070, 4408, 1), -- HP Increase (1x)
-(13070, 4409, 1), -- MP Increase (1x)
-(13070, 4410, 11), -- Average P. Atk.
-(13070, 4411, 11), -- Average M. Atk.
-(13070, 4412, 11), -- Average P. Def.
-(13070, 4413, 11), -- Average M. Def.
-(13070, 4414, 2), -- Standard Type
-(13070, 4415, 1), -- Bare Hands
-(13070, 4416, 19), -- Others
+(13070, 4390, 1), -- NPC Abnormal Immunity
+(13070, 4408, 1), -- HP Modifiers
+(13070, 4409, 1), -- MP Modifiers
+(13070, 4410, 11), -- P. Atk. Modifiers
+(13070, 4411, 11), -- M. Atk. Modifiers
+(13070, 4412, 11), -- P. Def. Modifiers
+(13070, 4413, 11), -- M. Def. Modifiers
+(13070, 4414, 2), -- Armor Type
+(13070, 4415, 1), -- Weapon Type
+(13070, 4416, 19), -- Races
 (13070, 5269, 6), -- Slow Trap
 -- Virtual Image
-(13071, 4390, 1), -- Mystic Immunity
-(13071, 4408, 1), -- HP Increase (1x)
-(13071, 4409, 1), -- MP Increase (1x)
-(13071, 4410, 11), -- Average P. Atk.
-(13071, 4411, 11), -- Average M. Atk.
-(13071, 4412, 11), -- Average P. Def.
-(13071, 4413, 11), -- Average M. Def.
-(13071, 4414, 2), -- Standard Type
-(13071, 4415, 1), -- Bare Hands
-(13071, 4416, 19), -- Others
+(13071, 4390, 1), -- NPC Abnormal Immunity
+(13071, 4408, 1), -- HP Modifiers
+(13071, 4409, 1), -- MP Modifiers
+(13071, 4410, 11), -- P. Atk. Modifiers
+(13071, 4411, 11), -- M. Atk. Modifiers
+(13071, 4412, 11), -- P. Def. Modifiers
+(13071, 4413, 11), -- M. Def. Modifiers
+(13071, 4414, 2), -- Armor Type
+(13071, 4415, 1), -- Weapon Type
+(13071, 4416, 19), -- Races
 (13071, 5272, 1), -- Decoy Provocation
 -- Virtual Image
-(13072, 4390, 1), -- Mystic Immunity
-(13072, 4408, 1), -- HP Increase (1x)
-(13072, 4409, 1), -- MP Increase (1x)
-(13072, 4410, 11), -- Average P. Atk.
-(13072, 4411, 11), -- Average M. Atk.
-(13072, 4412, 11), -- Average P. Def.
-(13072, 4413, 11), -- Average M. Def.
-(13072, 4414, 2), -- Standard Type
-(13072, 4415, 1), -- Bare Hands
-(13072, 4416, 19), -- Others
+(13072, 4390, 1), -- NPC Abnormal Immunity
+(13072, 4408, 1), -- HP Modifiers
+(13072, 4409, 1), -- MP Modifiers
+(13072, 4410, 11), -- P. Atk. Modifiers
+(13072, 4411, 11), -- M. Atk. Modifiers
+(13072, 4412, 11), -- P. Def. Modifiers
+(13072, 4413, 11), -- M. Def. Modifiers
+(13072, 4414, 2), -- Armor Type
+(13072, 4415, 1), -- Weapon Type
+(13072, 4416, 19), -- Races
 (13072, 5272, 2), -- Decoy Provocation
 -- Virtual Image
-(13073, 4390, 1), -- Mystic Immunity
-(13073, 4408, 1), -- HP Increase (1x)
-(13073, 4409, 1), -- MP Increase (1x)
-(13073, 4410, 11), -- Average P. Atk.
-(13073, 4411, 11), -- Average M. Atk.
-(13073, 4412, 11), -- Average P. Def.
-(13073, 4413, 11), -- Average M. Def.
-(13073, 4414, 2), -- Standard Type
-(13073, 4415, 1), -- Bare Hands
-(13073, 4416, 19), -- Others
+(13073, 4390, 1), -- NPC Abnormal Immunity
+(13073, 4408, 1), -- HP Modifiers
+(13073, 4409, 1), -- MP Modifiers
+(13073, 4410, 11), -- P. Atk. Modifiers
+(13073, 4411, 11), -- M. Atk. Modifiers
+(13073, 4412, 11), -- P. Def. Modifiers
+(13073, 4413, 11), -- M. Def. Modifiers
+(13073, 4414, 2), -- Armor Type
+(13073, 4415, 1), -- Weapon Type
+(13073, 4416, 19), -- Races
 (13073, 5272, 3), -- Decoy Provocation
 -- Virtual Image
-(13074, 4390, 1), -- Mystic Immunity
-(13074, 4408, 1), -- HP Increase (1x)
-(13074, 4409, 1), -- MP Increase (1x)
-(13074, 4410, 11), -- Average P. Atk.
-(13074, 4411, 11), -- Average M. Atk.
-(13074, 4412, 11), -- Average P. Def.
-(13074, 4413, 11), -- Average M. Def.
-(13074, 4414, 2), -- Standard Type
-(13074, 4415, 1), -- Bare Hands
-(13074, 4416, 19), -- Others
+(13074, 4390, 1), -- NPC Abnormal Immunity
+(13074, 4408, 1), -- HP Modifiers
+(13074, 4409, 1), -- MP Modifiers
+(13074, 4410, 11), -- P. Atk. Modifiers
+(13074, 4411, 11), -- M. Atk. Modifiers
+(13074, 4412, 11), -- P. Def. Modifiers
+(13074, 4413, 11), -- M. Def. Modifiers
+(13074, 4414, 2), -- Armor Type
+(13074, 4415, 1), -- Weapon Type
+(13074, 4416, 19), -- Races
 (13074, 5272, 4), -- Decoy Provocation
 -- Virtual Image
-(13075, 4390, 1), -- Mystic Immunity
-(13075, 4408, 1), -- HP Increase (1x)
-(13075, 4409, 1), -- MP Increase (1x)
-(13075, 4410, 11), -- Average P. Atk.
-(13075, 4411, 11), -- Average M. Atk.
-(13075, 4412, 11), -- Average P. Def.
-(13075, 4413, 11), -- Average M. Def.
-(13075, 4414, 2), -- Standard Type
-(13075, 4415, 1), -- Bare Hands
-(13075, 4416, 19), -- Others
+(13075, 4390, 1), -- NPC Abnormal Immunity
+(13075, 4408, 1), -- HP Modifiers
+(13075, 4409, 1), -- MP Modifiers
+(13075, 4410, 11), -- P. Atk. Modifiers
+(13075, 4411, 11), -- M. Atk. Modifiers
+(13075, 4412, 11), -- P. Def. Modifiers
+(13075, 4413, 11), -- M. Def. Modifiers
+(13075, 4414, 2), -- Armor Type
+(13075, 4415, 1), -- Weapon Type
+(13075, 4416, 19), -- Races
 (13075, 5272, 5), -- Decoy Provocation
 -- Virtual Image
-(13076, 4390, 1), -- Mystic Immunity
-(13076, 4408, 1), -- HP Increase (1x)
-(13076, 4409, 1), -- MP Increase (1x)
-(13076, 4410, 11), -- Average P. Atk.
-(13076, 4411, 11), -- Average M. Atk.
-(13076, 4412, 11), -- Average P. Def.
-(13076, 4413, 11), -- Average M. Def.
-(13076, 4414, 2), -- Standard Type
-(13076, 4415, 1), -- Bare Hands
-(13076, 4416, 19), -- Others
+(13076, 4390, 1), -- NPC Abnormal Immunity
+(13076, 4408, 1), -- HP Modifiers
+(13076, 4409, 1), -- MP Modifiers
+(13076, 4410, 11), -- P. Atk. Modifiers
+(13076, 4411, 11), -- M. Atk. Modifiers
+(13076, 4412, 11), -- P. Def. Modifiers
+(13076, 4413, 11), -- M. Def. Modifiers
+(13076, 4414, 2), -- Armor Type
+(13076, 4415, 1), -- Weapon Type
+(13076, 4416, 19), -- Races
 (13076, 5272, 6), -- Decoy Provocation
 -- Onyx Beast
-(13077, 4408, 1), -- HP Increase (1x)
-(13077, 4409, 1), -- MP Increase (1x)
-(13077, 4410, 11), -- Average P. Atk.
-(13077, 4411, 11), -- Average M. Atk.
-(13077, 4412, 11), -- Average P. Def.
-(13077, 4413, 11), -- Average M. Def.
-(13077, 4414, 2), -- Standard Type
-(13077, 4415, 1), -- Bare Hands
-(13077, 4416, 3), -- Beasts
+(13077, 4408, 1), -- HP Modifiers
+(13077, 4409, 1), -- MP Modifiers
+(13077, 4410, 11), -- P. Atk. Modifiers
+(13077, 4411, 11), -- M. Atk. Modifiers
+(13077, 4412, 11), -- P. Def. Modifiers
+(13077, 4413, 11), -- M. Def. Modifiers
+(13077, 4414, 2), -- Armor Type
+(13077, 4415, 1), -- Weapon Type
+(13077, 4416, 3), -- Races
 -- Doom Wraith
-(13078, 4408, 1), -- HP Increase (1x)
-(13078, 4409, 1), -- MP Increase (1x)
-(13078, 4410, 11), -- Average P. Atk.
-(13078, 4411, 11), -- Average M. Atk.
-(13078, 4412, 11), -- Average P. Def.
-(13078, 4413, 11), -- Average M. Def.
-(13078, 4414, 2), -- Standard Type
-(13078, 4415, 1), -- Bare Hands
-(13078, 4416, 1), -- Undead
+(13078, 4408, 1), -- HP Modifiers
+(13078, 4409, 1), -- MP Modifiers
+(13078, 4410, 11), -- P. Atk. Modifiers
+(13078, 4411, 11), -- M. Atk. Modifiers
+(13078, 4412, 11), -- P. Def. Modifiers
+(13078, 4413, 11), -- M. Def. Modifiers
+(13078, 4414, 2), -- Armor Type
+(13078, 4415, 1), -- Weapon Type
+(13078, 4416, 1), -- Races
 -- Grail Apostle
-(13079, 4408, 1), -- HP Increase (1x)
-(13079, 4409, 1), -- MP Increase (1x)
-(13079, 4410, 11), -- Average P. Atk.
-(13079, 4411, 11), -- Average M. Atk.
-(13079, 4412, 11), -- Average P. Def.
-(13079, 4413, 11), -- Average M. Def.
-(13079, 4414, 2), -- Standard Type
-(13079, 4415, 1), -- Bare Hands
-(13079, 4416, 8), -- Angels
+(13079, 4408, 1), -- HP Modifiers
+(13079, 4409, 1), -- MP Modifiers
+(13079, 4410, 11), -- P. Atk. Modifiers
+(13079, 4411, 11), -- M. Atk. Modifiers
+(13079, 4412, 11), -- P. Def. Modifiers
+(13079, 4413, 11), -- M. Def. Modifiers
+(13079, 4414, 2), -- Armor Type
+(13079, 4415, 1), -- Weapon Type
+(13079, 4416, 8), -- Races
 -- Grail Apostle
-(13080, 4408, 1), -- HP Increase (1x)
-(13080, 4409, 1), -- MP Increase (1x)
-(13080, 4410, 11), -- Average P. Atk.
-(13080, 4411, 11), -- Average M. Atk.
-(13080, 4412, 11), -- Average P. Def.
-(13080, 4413, 11), -- Average M. Def.
-(13080, 4414, 2), -- Standard Type
-(13080, 4415, 1), -- Bare Hands
-(13080, 4416, 8), -- Angels
+(13080, 4408, 1), -- HP Modifiers
+(13080, 4409, 1), -- MP Modifiers
+(13080, 4410, 11), -- P. Atk. Modifiers
+(13080, 4411, 11), -- M. Atk. Modifiers
+(13080, 4412, 11), -- P. Def. Modifiers
+(13080, 4413, 11), -- M. Def. Modifiers
+(13080, 4414, 2), -- Armor Type
+(13080, 4415, 1), -- Weapon Type
+(13080, 4416, 8), -- Races
 -- Unicorn
-(13081, 4408, 1), -- HP Increase (1x)
-(13081, 4409, 1), -- MP Increase (1x)
-(13081, 4410, 11), -- Average P. Atk.
-(13081, 4411, 11), -- Average M. Atk.
-(13081, 4412, 11), -- Average P. Def.
-(13081, 4413, 11), -- Average M. Def.
-(13081, 4414, 2), -- Standard Type
-(13081, 4415, 1), -- Bare Hands
-(13081, 4416, 7), -- Spirits
+(13081, 4408, 1), -- HP Modifiers
+(13081, 4409, 1), -- MP Modifiers
+(13081, 4410, 11), -- P. Atk. Modifiers
+(13081, 4411, 11), -- M. Atk. Modifiers
+(13081, 4412, 11), -- P. Def. Modifiers
+(13081, 4413, 11), -- M. Def. Modifiers
+(13081, 4414, 2), -- Armor Type
+(13081, 4415, 1), -- Weapon Type
+(13081, 4416, 7), -- Races
 -- Lilim Knight
-(13082, 4408, 1), -- HP Increase (1x)
-(13082, 4409, 1), -- MP Increase (1x)
-(13082, 4410, 11), -- Average P. Atk.
-(13082, 4411, 11), -- Average M. Atk.
-(13082, 4412, 11), -- Average P. Def.
-(13082, 4413, 11), -- Average M. Def.
-(13082, 4414, 2), -- Standard Type
-(13082, 4415, 1), -- Bare Hands
-(13082, 4416, 9), -- Demons
+(13082, 4408, 1), -- HP Modifiers
+(13082, 4409, 1), -- MP Modifiers
+(13082, 4410, 11), -- P. Atk. Modifiers
+(13082, 4411, 11), -- M. Atk. Modifiers
+(13082, 4412, 11), -- P. Def. Modifiers
+(13082, 4413, 11), -- M. Def. Modifiers
+(13082, 4414, 2), -- Armor Type
+(13082, 4415, 1), -- Weapon Type
+(13082, 4416, 9), -- Races
 -- Golem Guardian
-(13083, 4408, 1), -- HP Increase (1x)
-(13083, 4409, 1), -- MP Increase (1x)
-(13083, 4410, 11), -- Average P. Atk.
-(13083, 4411, 11), -- Average M. Atk.
-(13083, 4412, 11), -- Average P. Def.
-(13083, 4413, 11), -- Average M. Def.
-(13083, 4414, 2), -- Standard Type
-(13083, 4415, 1), -- Bare Hands
-(13083, 4416, 2), -- Magic Creatures
+(13083, 4408, 1), -- HP Modifiers
+(13083, 4409, 1), -- MP Modifiers
+(13083, 4410, 11), -- P. Atk. Modifiers
+(13083, 4411, 11), -- M. Atk. Modifiers
+(13083, 4412, 11), -- P. Def. Modifiers
+(13083, 4413, 11), -- M. Def. Modifiers
+(13083, 4414, 2), -- Armor Type
+(13083, 4415, 1), -- Weapon Type
+(13083, 4416, 2), -- Races
 -- Inferno Drake
-(13084, 4408, 1), -- HP Increase (1x)
-(13084, 4409, 1), -- MP Increase (1x)
-(13084, 4410, 11), -- Average P. Atk.
-(13084, 4411, 11), -- Average M. Atk.
-(13084, 4412, 11), -- Average P. Def.
-(13084, 4413, 11), -- Average M. Def.
-(13084, 4414, 2), -- Standard Type
-(13084, 4415, 1), -- Bare Hands
-(13084, 4416, 10), -- Dragons
+(13084, 4408, 1), -- HP Modifiers
+(13084, 4409, 1), -- MP Modifiers
+(13084, 4410, 11), -- P. Atk. Modifiers
+(13084, 4411, 11), -- M. Atk. Modifiers
+(13084, 4412, 11), -- P. Def. Modifiers
+(13084, 4413, 11), -- M. Def. Modifiers
+(13084, 4414, 2), -- Armor Type
+(13084, 4415, 1), -- Weapon Type
+(13084, 4416, 10), -- Races
 -- Dragon Bomber
-(13085, 4408, 1), -- HP Increase (1x)
-(13085, 4409, 1), -- MP Increase (1x)
-(13085, 4410, 11), -- Average P. Atk.
-(13085, 4411, 11), -- Average M. Atk.
-(13085, 4412, 11), -- Average P. Def.
-(13085, 4413, 11), -- Average M. Def.
-(13085, 4414, 2), -- Standard Type
-(13085, 4415, 1), -- Bare Hands
-(13085, 4416, 10), -- Dragons
+(13085, 4408, 1), -- HP Modifiers
+(13085, 4409, 1), -- MP Modifiers
+(13085, 4410, 11), -- P. Atk. Modifiers
+(13085, 4411, 11), -- M. Atk. Modifiers
+(13085, 4412, 11), -- P. Def. Modifiers
+(13085, 4413, 11), -- M. Def. Modifiers
+(13085, 4414, 2), -- Armor Type
+(13085, 4415, 1), -- Weapon Type
+(13085, 4416, 10), -- Races
 -- Zariche
-(13086, 4408, 1), -- HP Increase (1x)
-(13086, 4409, 1), -- MP Increase (1x)
-(13086, 4410, 11), -- Average P. Atk.
-(13086, 4411, 11), -- Average M. Atk.
-(13086, 4412, 11), -- Average P. Def.
-(13086, 4413, 11), -- Average M. Def.
-(13086, 4414, 2), -- Standard Type
-(13086, 4415, 1), -- Bare Hands
-(13086, 4416, 9), -- Demons
+(13086, 4408, 1), -- HP Modifiers
+(13086, 4409, 1), -- MP Modifiers
+(13086, 4410, 11), -- P. Atk. Modifiers
+(13086, 4411, 11), -- M. Atk. Modifiers
+(13086, 4412, 11), -- P. Def. Modifiers
+(13086, 4413, 11), -- M. Def. Modifiers
+(13086, 4414, 2), -- Armor Type
+(13086, 4415, 1), -- Weapon Type
+(13086, 4416, 9), -- Races
 -- Akamanah
-(13087, 4408, 1), -- HP Increase (1x)
-(13087, 4409, 1), -- MP Increase (1x)
-(13087, 4410, 11), -- Average P. Atk.
-(13087, 4411, 11), -- Average M. Atk.
-(13087, 4412, 11), -- Average P. Def.
-(13087, 4413, 11), -- Average M. Def.
-(13087, 4414, 2), -- Standard Type
-(13087, 4415, 1), -- Bare Hands
-(13087, 4416, 9), -- Demons
+(13087, 4408, 1), -- HP Modifiers
+(13087, 4409, 1), -- MP Modifiers
+(13087, 4410, 11), -- P. Atk. Modifiers
+(13087, 4411, 11), -- M. Atk. Modifiers
+(13087, 4412, 11), -- P. Def. Modifiers
+(13087, 4413, 11), -- M. Def. Modifiers
+(13087, 4414, 2), -- Armor Type
+(13087, 4415, 1), -- Weapon Type
+(13087, 4416, 9), -- Races
 -- Final Form
-(13088, 4408, 1), -- HP Increase (1x)
-(13088, 4409, 1), -- MP Increase (1x)
-(13088, 4410, 11), -- Average P. Atk.
-(13088, 4411, 11), -- Average M. Atk.
-(13088, 4412, 11), -- Average P. Def.
-(13088, 4413, 11), -- Average M. Def.
-(13088, 4414, 2), -- Standard Type
-(13088, 4415, 1), -- Bare Hands
-(13088, 4416, 6), -- Humanoids
+(13088, 4408, 1), -- HP Modifiers
+(13088, 4409, 1), -- MP Modifiers
+(13088, 4410, 11), -- P. Atk. Modifiers
+(13088, 4411, 11), -- M. Atk. Modifiers
+(13088, 4412, 11), -- P. Def. Modifiers
+(13088, 4413, 11), -- M. Def. Modifiers
+(13088, 4414, 2), -- Armor Type
+(13088, 4415, 1), -- Weapon Type
+(13088, 4416, 6), -- Races
 -- Final Form
-(13089, 4408, 1), -- HP Increase (1x)
-(13089, 4409, 1), -- MP Increase (1x)
-(13089, 4410, 11), -- Average P. Atk.
-(13089, 4411, 11), -- Average M. Atk.
-(13089, 4412, 11), -- Average P. Def.
-(13089, 4413, 11), -- Average M. Def.
-(13089, 4414, 2), -- Standard Type
-(13089, 4415, 1), -- Bare Hands
-(13089, 4416, 6), -- Humanoids
+(13089, 4408, 1), -- HP Modifiers
+(13089, 4409, 1), -- MP Modifiers
+(13089, 4410, 11), -- P. Atk. Modifiers
+(13089, 4411, 11), -- M. Atk. Modifiers
+(13089, 4412, 11), -- P. Def. Modifiers
+(13089, 4413, 11), -- M. Def. Modifiers
+(13089, 4414, 2), -- Armor Type
+(13089, 4415, 1), -- Weapon Type
+(13089, 4416, 6), -- Races
 -- Native
-(13090, 4408, 1), -- HP Increase (1x)
-(13090, 4409, 1), -- MP Increase (1x)
-(13090, 4410, 11), -- Average P. Atk.
-(13090, 4411, 11), -- Average M. Atk.
-(13090, 4412, 11), -- Average P. Def.
-(13090, 4413, 11), -- Average M. Def.
-(13090, 4414, 2), -- Standard Type
-(13090, 4415, 1), -- Bare Hands
-(13090, 4416, 14), -- Humans
+(13090, 4408, 1), -- HP Modifiers
+(13090, 4409, 1), -- MP Modifiers
+(13090, 4410, 11), -- P. Atk. Modifiers
+(13090, 4411, 11), -- M. Atk. Modifiers
+(13090, 4412, 11), -- P. Def. Modifiers
+(13090, 4413, 11), -- M. Def. Modifiers
+(13090, 4414, 2), -- Armor Type
+(13090, 4415, 1), -- Weapon Type
+(13090, 4416, 14), -- Races
 -- Yeti
-(13091, 4408, 1), -- HP Increase (1x)
-(13091, 4409, 1), -- MP Increase (1x)
-(13091, 4410, 11), -- Average P. Atk.
-(13091, 4411, 11), -- Average M. Atk.
-(13091, 4412, 11), -- Average P. Def.
-(13091, 4413, 11), -- Average M. Def.
-(13091, 4414, 2), -- Standard Type
-(13091, 4415, 1), -- Bare Hands
-(13091, 4416, 11), -- Giants
+(13091, 4408, 1), -- HP Modifiers
+(13091, 4409, 1), -- MP Modifiers
+(13091, 4410, 11), -- P. Atk. Modifiers
+(13091, 4411, 11), -- M. Atk. Modifiers
+(13091, 4412, 11), -- P. Def. Modifiers
+(13091, 4413, 11), -- M. Def. Modifiers
+(13091, 4414, 2), -- Armor Type
+(13091, 4415, 1), -- Weapon Type
+(13091, 4416, 11), -- Races
 -- Buffalo
-(13092, 4408, 1), -- HP Increase (1x)
-(13092, 4409, 1), -- MP Increase (1x)
-(13092, 4410, 11), -- Average P. Atk.
-(13092, 4411, 11), -- Average M. Atk.
-(13092, 4412, 11), -- Average P. Def.
-(13092, 4413, 11), -- Average M. Def.
-(13092, 4414, 2), -- Standard Type
-(13092, 4415, 1), -- Bare Hands
-(13092, 4416, 3), -- Beasts
+(13092, 4408, 1), -- HP Modifiers
+(13092, 4409, 1), -- MP Modifiers
+(13092, 4410, 11), -- P. Atk. Modifiers
+(13092, 4411, 11), -- M. Atk. Modifiers
+(13092, 4412, 11), -- P. Def. Modifiers
+(13092, 4413, 11), -- M. Def. Modifiers
+(13092, 4414, 2), -- Armor Type
+(13092, 4415, 1), -- Weapon Type
+(13092, 4416, 3), -- Races
 -- Pig
-(13093, 4408, 1), -- HP Increase (1x)
-(13093, 4409, 1), -- MP Increase (1x)
-(13093, 4410, 11), -- Average P. Atk.
-(13093, 4411, 11), -- Average M. Atk.
-(13093, 4412, 11), -- Average P. Def.
-(13093, 4413, 11), -- Average M. Def.
-(13093, 4414, 2), -- Standard Type
-(13093, 4415, 1), -- Bare Hands
-(13093, 4416, 4), -- Animals
+(13093, 4408, 1), -- HP Modifiers
+(13093, 4409, 1), -- MP Modifiers
+(13093, 4410, 11), -- P. Atk. Modifiers
+(13093, 4411, 11), -- M. Atk. Modifiers
+(13093, 4412, 11), -- P. Def. Modifiers
+(13093, 4413, 11), -- M. Def. Modifiers
+(13093, 4414, 2), -- Armor Type
+(13093, 4415, 1), -- Weapon Type
+(13093, 4416, 4), -- Races
 -- Zombie
-(13094, 4408, 1), -- HP Increase (1x)
-(13094, 4409, 1), -- MP Increase (1x)
-(13094, 4410, 11), -- Average P. Atk.
-(13094, 4411, 11), -- Average M. Atk.
-(13094, 4412, 11), -- Average P. Def.
-(13094, 4413, 11), -- Average M. Def.
-(13094, 4414, 2), -- Standard Type
-(13094, 4415, 1), -- Bare Hands
-(13094, 4416, 1), -- Undead
+(13094, 4408, 1), -- HP Modifiers
+(13094, 4409, 1), -- MP Modifiers
+(13094, 4410, 11), -- P. Atk. Modifiers
+(13094, 4411, 11), -- M. Atk. Modifiers
+(13094, 4412, 11), -- P. Def. Modifiers
+(13094, 4413, 11), -- M. Def. Modifiers
+(13094, 4414, 2), -- Armor Type
+(13094, 4415, 1), -- Weapon Type
+(13094, 4416, 1), -- Races
 -- Pixy
-(13095, 4408, 1), -- HP Increase (1x)
-(13095, 4409, 1), -- MP Increase (1x)
-(13095, 4410, 11), -- Average P. Atk.
-(13095, 4411, 11), -- Average M. Atk.
-(13095, 4412, 11), -- Average P. Def.
-(13095, 4413, 11), -- Average M. Def.
-(13095, 4414, 2), -- Standard Type
-(13095, 4415, 1), -- Bare Hands
-(13095, 4416, 13), -- Fairies
+(13095, 4408, 1), -- HP Modifiers
+(13095, 4409, 1), -- MP Modifiers
+(13095, 4410, 11), -- P. Atk. Modifiers
+(13095, 4411, 11), -- M. Atk. Modifiers
+(13095, 4412, 11), -- P. Def. Modifiers
+(13095, 4413, 11), -- M. Def. Modifiers
+(13095, 4414, 2), -- Armor Type
+(13095, 4415, 1), -- Weapon Type
+(13095, 4416, 13), -- Races
 -- Rabbit
-(13096, 4408, 1), -- HP Increase (1x)
-(13096, 4409, 1), -- MP Increase (1x)
-(13096, 4410, 11), -- Average P. Atk.
-(13096, 4411, 11), -- Average M. Atk.
-(13096, 4412, 11), -- Average P. Def.
-(13096, 4413, 11), -- Average M. Def.
-(13096, 4414, 2), -- Standard Type
-(13096, 4415, 1), -- Bare Hands
-(13096, 4416, 4), -- Animals
+(13096, 4408, 1), -- HP Modifiers
+(13096, 4409, 1), -- MP Modifiers
+(13096, 4410, 11), -- P. Atk. Modifiers
+(13096, 4411, 11), -- M. Atk. Modifiers
+(13096, 4412, 11), -- P. Def. Modifiers
+(13096, 4413, 11), -- M. Def. Modifiers
+(13096, 4414, 2), -- Armor Type
+(13096, 4415, 1), -- Weapon Type
+(13096, 4416, 4), -- Races
 -- 
 (13097, 4045, 1), -- Resist Full Magic Attack
-(13097, 4390, 1), -- Mystic Immunity
-(13097, 4408, 1), -- HP Increase (1x)
-(13097, 4409, 1), -- MP Increase (1x)
-(13097, 4410, 11), -- Average P. Atk.
-(13097, 4411, 11), -- Average M. Atk.
-(13097, 4412, 11), -- Average P. Def.
-(13097, 4413, 11), -- Average M. Def.
-(13097, 4414, 2), -- Standard Type
-(13097, 4415, 1), -- Bare Hands
-(13097, 4416, 2), -- Magic Creatures
+(13097, 4390, 1), -- NPC Abnormal Immunity
+(13097, 4408, 1), -- HP Modifiers
+(13097, 4409, 1), -- MP Modifiers
+(13097, 4410, 11), -- P. Atk. Modifiers
+(13097, 4411, 11), -- M. Atk. Modifiers
+(13097, 4412, 11), -- P. Def. Modifiers
+(13097, 4413, 11), -- M. Def. Modifiers
+(13097, 4414, 2), -- Armor Type
+(13097, 4415, 1), -- Weapon Type
+(13097, 4416, 2), -- Races
 -- Event Treasure Chest
 (13098, 4045, 1), -- Resist Full Magic Attack
-(13098, 4390, 1), -- Mystic Immunity
-(13098, 4408, 1), -- HP Increase (1x)
-(13098, 4409, 1), -- MP Increase (1x)
-(13098, 4410, 11), -- Average P. Atk.
-(13098, 4411, 11), -- Average M. Atk.
-(13098, 4412, 11), -- Average P. Def.
-(13098, 4413, 11), -- Average M. Def.
-(13098, 4414, 2), -- Standard Type
-(13098, 4415, 3), -- One-handed Sword
-(13098, 4416, 2), -- Magic Creatures
+(13098, 4390, 1), -- NPC Abnormal Immunity
+(13098, 4408, 1), -- HP Modifiers
+(13098, 4409, 1), -- MP Modifiers
+(13098, 4410, 11), -- P. Atk. Modifiers
+(13098, 4411, 11), -- M. Atk. Modifiers
+(13098, 4412, 11), -- P. Def. Modifiers
+(13098, 4413, 11), -- M. Def. Modifiers
+(13098, 4414, 2), -- Armor Type
+(13098, 4415, 3), -- Weapon Type
+(13098, 4416, 2), -- Races
 -- Zaken
-(13099, 4408, 1), -- HP Increase (1x)
-(13099, 4409, 1), -- MP Increase (1x)
-(13099, 4410, 11), -- Average P. Atk.
-(13099, 4411, 11), -- Average M. Atk.
-(13099, 4412, 11), -- Average P. Def.
-(13099, 4413, 11), -- Average M. Def.
-(13099, 4414, 2), -- Standard Type
-(13099, 4415, 1), -- Bare Hands
-(13099, 4416, 1), -- Undead
+(13099, 4408, 1), -- HP Modifiers
+(13099, 4409, 1), -- MP Modifiers
+(13099, 4410, 11), -- P. Atk. Modifiers
+(13099, 4411, 11), -- M. Atk. Modifiers
+(13099, 4412, 11), -- P. Def. Modifiers
+(13099, 4413, 11), -- M. Def. Modifiers
+(13099, 4414, 2), -- Armor Type
+(13099, 4415, 1), -- Weapon Type
+(13099, 4416, 1), -- Races
 -- Anakim
-(13100, 4408, 1), -- HP Increase (1x)
-(13100, 4409, 1), -- MP Increase (1x)
-(13100, 4410, 11), -- Average P. Atk.
-(13100, 4411, 11), -- Average M. Atk.
-(13100, 4412, 11), -- Average P. Def.
-(13100, 4413, 11), -- Average M. Def.
-(13100, 4414, 2), -- Standard Type
-(13100, 4415, 1), -- Bare Hands
-(13100, 4416, 8), -- Angels
+(13100, 4408, 1), -- HP Modifiers
+(13100, 4409, 1), -- MP Modifiers
+(13100, 4410, 11), -- P. Atk. Modifiers
+(13100, 4411, 11), -- M. Atk. Modifiers
+(13100, 4412, 11), -- P. Def. Modifiers
+(13100, 4413, 11), -- M. Def. Modifiers
+(13100, 4414, 2), -- Armor Type
+(13100, 4415, 1), -- Weapon Type
+(13100, 4416, 8), -- Races
 -- Venom
-(13101, 4408, 1), -- HP Increase (1x)
-(13101, 4409, 1), -- MP Increase (1x)
-(13101, 4410, 11), -- Average P. Atk.
-(13101, 4411, 11), -- Average M. Atk.
-(13101, 4412, 11), -- Average P. Def.
-(13101, 4413, 11), -- Average M. Def.
-(13101, 4414, 2), -- Standard Type
-(13101, 4415, 1), -- Bare Hands
-(13101, 4416, 9), -- Demons
+(13101, 4408, 1), -- HP Modifiers
+(13101, 4409, 1), -- MP Modifiers
+(13101, 4410, 11), -- P. Atk. Modifiers
+(13101, 4411, 11), -- M. Atk. Modifiers
+(13101, 4412, 11), -- P. Def. Modifiers
+(13101, 4413, 11), -- M. Def. Modifiers
+(13101, 4414, 2), -- Armor Type
+(13101, 4415, 1), -- Weapon Type
+(13101, 4416, 9), -- Races
 -- Gordon
-(13102, 4408, 1), -- HP Increase (1x)
-(13102, 4409, 1), -- MP Increase (1x)
-(13102, 4410, 11), -- Average P. Atk.
-(13102, 4411, 11), -- Average M. Atk.
-(13102, 4412, 11), -- Average P. Def.
-(13102, 4413, 11), -- Average M. Def.
-(13102, 4414, 2), -- Standard Type
-(13102, 4415, 1), -- Bare Hands
-(13102, 4416, 9), -- Demons
+(13102, 4408, 1), -- HP Modifiers
+(13102, 4409, 1), -- MP Modifiers
+(13102, 4410, 11), -- P. Atk. Modifiers
+(13102, 4411, 11), -- M. Atk. Modifiers
+(13102, 4412, 11), -- P. Def. Modifiers
+(13102, 4413, 11), -- M. Def. Modifiers
+(13102, 4414, 2), -- Armor Type
+(13102, 4415, 1), -- Weapon Type
+(13102, 4416, 9), -- Races
 -- Ranku
-(13103, 4408, 1), -- HP Increase (1x)
-(13103, 4409, 1), -- MP Increase (1x)
-(13103, 4410, 11), -- Average P. Atk.
-(13103, 4411, 11), -- Average M. Atk.
-(13103, 4412, 11), -- Average P. Def.
-(13103, 4413, 11), -- Average M. Def.
-(13103, 4414, 2), -- Standard Type
-(13103, 4415, 1), -- Bare Hands
-(13103, 4416, 9), -- Demons
+(13103, 4408, 1), -- HP Modifiers
+(13103, 4409, 1), -- MP Modifiers
+(13103, 4410, 11), -- P. Atk. Modifiers
+(13103, 4411, 11), -- M. Atk. Modifiers
+(13103, 4412, 11), -- P. Def. Modifiers
+(13103, 4413, 11), -- M. Def. Modifiers
+(13103, 4414, 2), -- Armor Type
+(13103, 4415, 1), -- Weapon Type
+(13103, 4416, 9), -- Races
 -- Kiyachi
-(13104, 4408, 1), -- HP Increase (1x)
-(13104, 4409, 1), -- MP Increase (1x)
-(13104, 4410, 11), -- Average P. Atk.
-(13104, 4411, 11), -- Average M. Atk.
-(13104, 4412, 11), -- Average P. Def.
-(13104, 4413, 11), -- Average M. Def.
-(13104, 4414, 2), -- Standard Type
-(13104, 4415, 1), -- Bare Hands
-(13104, 4416, 9), -- Demons
+(13104, 4408, 1), -- HP Modifiers
+(13104, 4409, 1), -- MP Modifiers
+(13104, 4410, 11), -- P. Atk. Modifiers
+(13104, 4411, 11), -- M. Atk. Modifiers
+(13104, 4412, 11), -- P. Def. Modifiers
+(13104, 4413, 11), -- M. Def. Modifiers
+(13104, 4414, 2), -- Armor Type
+(13104, 4415, 1), -- Weapon Type
+(13104, 4416, 9), -- Races
 -- Demon Prince
-(13105, 4408, 1), -- HP Increase (1x)
-(13105, 4409, 1), -- MP Increase (1x)
-(13105, 4410, 11), -- Average P. Atk.
-(13105, 4411, 11), -- Average M. Atk.
-(13105, 4412, 11), -- Average P. Def.
-(13105, 4413, 11), -- Average M. Def.
-(13105, 4414, 2), -- Standard Type
-(13105, 4415, 1), -- Bare Hands
-(13105, 4416, 9), -- Demons
+(13105, 4408, 1), -- HP Modifiers
+(13105, 4409, 1), -- MP Modifiers
+(13105, 4410, 11), -- P. Atk. Modifiers
+(13105, 4411, 11), -- M. Atk. Modifiers
+(13105, 4412, 11), -- P. Def. Modifiers
+(13105, 4413, 11), -- M. Def. Modifiers
+(13105, 4414, 2), -- Armor Type
+(13105, 4415, 1), -- Weapon Type
+(13105, 4416, 9), -- Races
 -- Heretic Male
-(13106, 4408, 1), -- HP Increase (1x)
-(13106, 4409, 1), -- MP Increase (1x)
-(13106, 4410, 11), -- Average P. Atk.
-(13106, 4411, 11), -- Average M. Atk.
-(13106, 4412, 11), -- Average P. Def.
-(13106, 4413, 11), -- Average M. Def.
-(13106, 4414, 2), -- Standard Type
-(13106, 4415, 1), -- Bare Hands
-(13106, 4416, 6), -- Humanoids
+(13106, 4408, 1), -- HP Modifiers
+(13106, 4409, 1), -- MP Modifiers
+(13106, 4410, 11), -- P. Atk. Modifiers
+(13106, 4411, 11), -- M. Atk. Modifiers
+(13106, 4412, 11), -- P. Def. Modifiers
+(13106, 4413, 11), -- M. Def. Modifiers
+(13106, 4414, 2), -- Armor Type
+(13106, 4415, 1), -- Weapon Type
+(13106, 4416, 6), -- Races
 -- Heretic Female
-(13107, 4408, 1), -- HP Increase (1x)
-(13107, 4409, 1), -- MP Increase (1x)
-(13107, 4410, 11), -- Average P. Atk.
-(13107, 4411, 11), -- Average M. Atk.
-(13107, 4412, 11), -- Average P. Def.
-(13107, 4413, 11), -- Average M. Def.
-(13107, 4414, 2), -- Standard Type
-(13107, 4415, 1), -- Bare Hands
-(13107, 4416, 6), -- Humanoids
+(13107, 4408, 1), -- HP Modifiers
+(13107, 4409, 1), -- MP Modifiers
+(13107, 4410, 11), -- P. Atk. Modifiers
+(13107, 4411, 11), -- M. Atk. Modifiers
+(13107, 4412, 11), -- P. Def. Modifiers
+(13107, 4413, 11), -- M. Def. Modifiers
+(13107, 4414, 2), -- Armor Type
+(13107, 4415, 1), -- Weapon Type
+(13107, 4416, 6), -- Races
 -- Veil Master
-(13108, 4408, 1), -- HP Increase (1x)
-(13108, 4409, 1), -- MP Increase (1x)
-(13108, 4410, 11), -- Average P. Atk.
-(13108, 4411, 11), -- Average M. Atk.
-(13108, 4412, 11), -- Average P. Def.
-(13108, 4413, 11), -- Average M. Def.
-(13108, 4414, 2), -- Standard Type
-(13108, 4415, 1), -- Bare Hands
-(13108, 4416, 9), -- Demons
+(13108, 4408, 1), -- HP Modifiers
+(13108, 4409, 1), -- MP Modifiers
+(13108, 4410, 11), -- P. Atk. Modifiers
+(13108, 4411, 11), -- M. Atk. Modifiers
+(13108, 4412, 11), -- P. Def. Modifiers
+(13108, 4413, 11), -- M. Def. Modifiers
+(13108, 4414, 2), -- Armor Type
+(13108, 4415, 1), -- Weapon Type
+(13108, 4416, 9), -- Races
 -- Saber Tooth Tiger
-(13109, 4408, 1), -- HP Increase (1x)
-(13109, 4409, 1), -- MP Increase (1x)
-(13109, 4410, 11), -- Average P. Atk.
-(13109, 4411, 11), -- Average M. Atk.
-(13109, 4412, 11), -- Average P. Def.
-(13109, 4413, 11), -- Average M. Def.
-(13109, 4414, 2), -- Standard Type
-(13109, 4415, 1), -- Bare Hands
-(13109, 4416, 3), -- Beasts
+(13109, 4408, 1), -- HP Modifiers
+(13109, 4409, 1), -- MP Modifiers
+(13109, 4410, 11), -- P. Atk. Modifiers
+(13109, 4411, 11), -- M. Atk. Modifiers
+(13109, 4412, 11), -- P. Def. Modifiers
+(13109, 4413, 11), -- M. Def. Modifiers
+(13109, 4414, 2), -- Armor Type
+(13109, 4415, 1), -- Weapon Type
+(13109, 4416, 3), -- Races
 -- Ol Mahum
-(13110, 4408, 1), -- HP Increase (1x)
-(13110, 4409, 1), -- MP Increase (1x)
-(13110, 4410, 11), -- Average P. Atk.
-(13110, 4411, 11), -- Average M. Atk.
-(13110, 4412, 11), -- Average P. Def.
-(13110, 4413, 11), -- Average M. Def.
-(13110, 4414, 2), -- Standard Type
-(13110, 4415, 1), -- Bare Hands
-(13110, 4416, 6), -- Humanoids
+(13110, 4408, 1), -- HP Modifiers
+(13110, 4409, 1), -- MP Modifiers
+(13110, 4410, 11), -- P. Atk. Modifiers
+(13110, 4411, 11), -- M. Atk. Modifiers
+(13110, 4412, 11), -- P. Def. Modifiers
+(13110, 4413, 11), -- M. Def. Modifiers
+(13110, 4414, 2), -- Armor Type
+(13110, 4415, 1), -- Weapon Type
+(13110, 4416, 6), -- Races
 -- Doll Blader
-(13111, 4408, 1), -- HP Increase (1x)
-(13111, 4409, 1), -- MP Increase (1x)
-(13111, 4410, 11), -- Average P. Atk.
-(13111, 4411, 11), -- Average M. Atk.
-(13111, 4412, 11), -- Average P. Def.
-(13111, 4413, 11), -- Average M. Def.
-(13111, 4414, 2), -- Standard Type
-(13111, 4415, 1), -- Bare Hands
-(13111, 4416, 9), -- Demons
+(13111, 4408, 1), -- HP Modifiers
+(13111, 4409, 1), -- MP Modifiers
+(13111, 4410, 11), -- P. Atk. Modifiers
+(13111, 4411, 11), -- M. Atk. Modifiers
+(13111, 4412, 11), -- P. Def. Modifiers
+(13111, 4413, 11), -- M. Def. Modifiers
+(13111, 4414, 2), -- Armor Type
+(13111, 4415, 1), -- Weapon Type
+(13111, 4416, 9), -- Races
 -- Divine Knight
-(13112, 4408, 1), -- HP Increase (1x)
-(13112, 4409, 1), -- MP Increase (1x)
-(13112, 4410, 11), -- Average P. Atk.
-(13112, 4411, 11), -- Average M. Atk.
-(13112, 4412, 11), -- Average P. Def.
-(13112, 4413, 11), -- Average M. Def.
-(13112, 4414, 2), -- Standard Type
-(13112, 4415, 1), -- Bare Hands
-(13112, 4416, 8), -- Angels
+(13112, 4408, 1), -- HP Modifiers
+(13112, 4409, 1), -- MP Modifiers
+(13112, 4410, 11), -- P. Atk. Modifiers
+(13112, 4411, 11), -- M. Atk. Modifiers
+(13112, 4412, 11), -- P. Def. Modifiers
+(13112, 4413, 11), -- M. Def. Modifiers
+(13112, 4414, 2), -- Armor Type
+(13112, 4415, 1), -- Weapon Type
+(13112, 4416, 8), -- Races
 -- Divine Warrior
-(13113, 4408, 1), -- HP Increase (1x)
-(13113, 4409, 1), -- MP Increase (1x)
-(13113, 4410, 11), -- Average P. Atk.
-(13113, 4411, 11), -- Average M. Atk.
-(13113, 4412, 11), -- Average P. Def.
-(13113, 4413, 11), -- Average M. Def.
-(13113, 4414, 2), -- Standard Type
-(13113, 4415, 1), -- Bare Hands
-(13113, 4416, 8), -- Angels
+(13113, 4408, 1), -- HP Modifiers
+(13113, 4409, 1), -- MP Modifiers
+(13113, 4410, 11), -- P. Atk. Modifiers
+(13113, 4411, 11), -- M. Atk. Modifiers
+(13113, 4412, 11), -- P. Def. Modifiers
+(13113, 4413, 11), -- M. Def. Modifiers
+(13113, 4414, 2), -- Armor Type
+(13113, 4415, 1), -- Weapon Type
+(13113, 4416, 8), -- Races
 -- Divine Rogue
-(13114, 4408, 1), -- HP Increase (1x)
-(13114, 4409, 1), -- MP Increase (1x)
-(13114, 4410, 11), -- Average P. Atk.
-(13114, 4411, 11), -- Average M. Atk.
-(13114, 4412, 11), -- Average P. Def.
-(13114, 4413, 11), -- Average M. Def.
-(13114, 4414, 2), -- Standard Type
-(13114, 4415, 1), -- Bare Hands
-(13114, 4416, 8), -- Angels
+(13114, 4408, 1), -- HP Modifiers
+(13114, 4409, 1), -- MP Modifiers
+(13114, 4410, 11), -- P. Atk. Modifiers
+(13114, 4411, 11), -- M. Atk. Modifiers
+(13114, 4412, 11), -- P. Def. Modifiers
+(13114, 4413, 11), -- M. Def. Modifiers
+(13114, 4414, 2), -- Armor Type
+(13114, 4415, 1), -- Weapon Type
+(13114, 4416, 8), -- Races
 -- Divine Healer
-(13115, 4408, 1), -- HP Increase (1x)
-(13115, 4409, 1), -- MP Increase (1x)
-(13115, 4410, 11), -- Average P. Atk.
-(13115, 4411, 11), -- Average M. Atk.
-(13115, 4412, 11), -- Average P. Def.
-(13115, 4413, 11), -- Average M. Def.
-(13115, 4414, 2), -- Standard Type
-(13115, 4415, 1), -- Bare Hands
-(13115, 4416, 8), -- Angels
+(13115, 4408, 1), -- HP Modifiers
+(13115, 4409, 1), -- MP Modifiers
+(13115, 4410, 11), -- P. Atk. Modifiers
+(13115, 4411, 11), -- M. Atk. Modifiers
+(13115, 4412, 11), -- P. Def. Modifiers
+(13115, 4413, 11), -- M. Def. Modifiers
+(13115, 4414, 2), -- Armor Type
+(13115, 4415, 1), -- Weapon Type
+(13115, 4416, 8), -- Races
 -- Divine Wizard
-(13116, 4408, 1), -- HP Increase (1x)
-(13116, 4409, 1), -- MP Increase (1x)
-(13116, 4410, 11), -- Average P. Atk.
-(13116, 4411, 11), -- Average M. Atk.
-(13116, 4412, 11), -- Average P. Def.
-(13116, 4413, 11), -- Average M. Def.
-(13116, 4414, 2), -- Standard Type
-(13116, 4415, 1), -- Bare Hands
-(13116, 4416, 8), -- Angels
+(13116, 4408, 1), -- HP Modifiers
+(13116, 4409, 1), -- MP Modifiers
+(13116, 4410, 11), -- P. Atk. Modifiers
+(13116, 4411, 11), -- M. Atk. Modifiers
+(13116, 4412, 11), -- P. Def. Modifiers
+(13116, 4413, 11), -- M. Def. Modifiers
+(13116, 4414, 2), -- Armor Type
+(13116, 4415, 1), -- Weapon Type
+(13116, 4416, 8), -- Races
 -- Divine Enchanter
-(13117, 4408, 1), -- HP Increase (1x)
-(13117, 4409, 1), -- MP Increase (1x)
-(13117, 4410, 11), -- Average P. Atk.
-(13117, 4411, 11), -- Average M. Atk.
-(13117, 4412, 11), -- Average P. Def.
-(13117, 4413, 11), -- Average M. Def.
-(13117, 4414, 2), -- Standard Type
-(13117, 4415, 1), -- Bare Hands
-(13117, 4416, 8), -- Angels
+(13117, 4408, 1), -- HP Modifiers
+(13117, 4409, 1), -- MP Modifiers
+(13117, 4410, 11), -- P. Atk. Modifiers
+(13117, 4411, 11), -- M. Atk. Modifiers
+(13117, 4412, 11), -- P. Def. Modifiers
+(13117, 4413, 11), -- M. Def. Modifiers
+(13117, 4414, 2), -- Armor Type
+(13117, 4415, 1), -- Weapon Type
+(13117, 4416, 8), -- Races
 -- Divine Summoner
-(13118, 4408, 1), -- HP Increase (1x)
-(13118, 4409, 1), -- MP Increase (1x)
-(13118, 4410, 11), -- Average P. Atk.
-(13118, 4411, 11), -- Average M. Atk.
-(13118, 4412, 11), -- Average P. Def.
-(13118, 4413, 11), -- Average M. Def.
-(13118, 4414, 2), -- Standard Type
-(13118, 4415, 1), -- Bare Hands
-(13118, 4416, 8), -- Angels
+(13118, 4408, 1), -- HP Modifiers
+(13118, 4409, 1), -- MP Modifiers
+(13118, 4410, 11), -- P. Atk. Modifiers
+(13118, 4411, 11), -- M. Atk. Modifiers
+(13118, 4412, 11), -- P. Def. Modifiers
+(13118, 4413, 11), -- M. Def. Modifiers
+(13118, 4414, 2), -- Armor Type
+(13118, 4415, 1), -- Weapon Type
+(13118, 4416, 8), -- Races
 -- Dwarf Golem
-(13119, 4408, 1), -- HP Increase (1x)
-(13119, 4409, 1), -- MP Increase (1x)
-(13119, 4410, 11), -- Average P. Atk.
-(13119, 4411, 11), -- Average M. Atk.
-(13119, 4412, 11), -- Average P. Def.
-(13119, 4413, 11), -- Average M. Def.
-(13119, 4414, 2), -- Standard Type
-(13119, 4415, 1), -- Bare Hands
-(13119, 4416, 2), -- Magic Creatures
+(13119, 4408, 1), -- HP Modifiers
+(13119, 4409, 1), -- MP Modifiers
+(13119, 4410, 11), -- P. Atk. Modifiers
+(13119, 4411, 11), -- M. Atk. Modifiers
+(13119, 4412, 11), -- P. Def. Modifiers
+(13119, 4413, 11), -- M. Def. Modifiers
+(13119, 4414, 2), -- Armor Type
+(13119, 4415, 1), -- Weapon Type
+(13119, 4416, 2), -- Races
 -- Giant Rat
-(13120, 4390, 1), -- Mystic Immunity
-(13120, 4408, 1), -- HP Increase (1x)
-(13120, 4409, 1), -- MP Increase (1x)
-(13120, 4410, 11), -- Average P. Atk.
-(13120, 4411, 11), -- Average M. Atk.
-(13120, 4412, 11), -- Average P. Def.
-(13120, 4413, 11), -- Average M. Def.
-(13120, 4414, 2), -- Standard Type
-(13120, 4415, 5), -- Blunt Weapons
-(13120, 4416, 4), -- Animals
+(13120, 4390, 1), -- NPC Abnormal Immunity
+(13120, 4408, 1), -- HP Modifiers
+(13120, 4409, 1), -- MP Modifiers
+(13120, 4410, 11), -- P. Atk. Modifiers
+(13120, 4411, 11), -- M. Atk. Modifiers
+(13120, 4412, 11), -- P. Def. Modifiers
+(13120, 4413, 11), -- M. Def. Modifiers
+(13120, 4414, 2), -- Armor Type
+(13120, 4415, 5), -- Weapon Type
+(13120, 4416, 4), -- Races
 -- Giant Rat
-(13121, 4390, 1), -- Mystic Immunity
-(13121, 4408, 1), -- HP Increase (1x)
-(13121, 4409, 1), -- MP Increase (1x)
-(13121, 4410, 11), -- Average P. Atk.
-(13121, 4411, 11), -- Average M. Atk.
-(13121, 4412, 11), -- Average P. Def.
-(13121, 4413, 11), -- Average M. Def.
-(13121, 4414, 2), -- Standard Type
-(13121, 4415, 5), -- Blunt Weapons
-(13121, 4416, 4), -- Animals
+(13121, 4390, 1), -- NPC Abnormal Immunity
+(13121, 4408, 1), -- HP Modifiers
+(13121, 4409, 1), -- MP Modifiers
+(13121, 4410, 11), -- P. Atk. Modifiers
+(13121, 4411, 11), -- M. Atk. Modifiers
+(13121, 4412, 11), -- P. Def. Modifiers
+(13121, 4413, 11), -- M. Def. Modifiers
+(13121, 4414, 2), -- Armor Type
+(13121, 4415, 5), -- Weapon Type
+(13121, 4416, 4), -- Races
 -- Giant Rat
-(13122, 4390, 1), -- Mystic Immunity
-(13122, 4408, 1), -- HP Increase (1x)
-(13122, 4409, 1), -- MP Increase (1x)
-(13122, 4410, 11), -- Average P. Atk.
-(13122, 4411, 11), -- Average M. Atk.
-(13122, 4412, 11), -- Average P. Def.
-(13122, 4413, 11), -- Average M. Def.
-(13122, 4414, 2), -- Standard Type
-(13122, 4415, 5), -- Blunt Weapons
-(13122, 4416, 4), -- Animals
+(13122, 4390, 1), -- NPC Abnormal Immunity
+(13122, 4408, 1), -- HP Modifiers
+(13122, 4409, 1), -- MP Modifiers
+(13122, 4410, 11), -- P. Atk. Modifiers
+(13122, 4411, 11), -- M. Atk. Modifiers
+(13122, 4412, 11), -- P. Def. Modifiers
+(13122, 4413, 11), -- M. Def. Modifiers
+(13122, 4414, 2), -- Armor Type
+(13122, 4415, 5), -- Weapon Type
+(13122, 4416, 4), -- Races
 -- Super Giant Rat
-(13123, 4390, 1), -- Mystic Immunity
-(13123, 4408, 1), -- HP Increase (1x)
-(13123, 4409, 1), -- MP Increase (1x)
-(13123, 4410, 11), -- Average P. Atk.
-(13123, 4411, 11), -- Average M. Atk.
-(13123, 4412, 11), -- Average P. Def.
-(13123, 4413, 11), -- Average M. Def.
-(13123, 4414, 2), -- Standard Type
-(13123, 4415, 5), -- Blunt Weapons
-(13123, 4416, 4), -- Animals
+(13123, 4390, 1), -- NPC Abnormal Immunity
+(13123, 4408, 1), -- HP Modifiers
+(13123, 4409, 1), -- MP Modifiers
+(13123, 4410, 11), -- P. Atk. Modifiers
+(13123, 4411, 11), -- M. Atk. Modifiers
+(13123, 4412, 11), -- P. Def. Modifiers
+(13123, 4413, 11), -- M. Def. Modifiers
+(13123, 4414, 2), -- Armor Type
+(13123, 4415, 5), -- Weapon Type
+(13123, 4416, 4), -- Races
 -- Giant Rat
-(13124, 4390, 1), -- Mystic Immunity
-(13124, 4408, 1), -- HP Increase (1x)
-(13124, 4409, 1), -- MP Increase (1x)
-(13124, 4410, 11), -- Average P. Atk.
-(13124, 4411, 11), -- Average M. Atk.
-(13124, 4412, 11), -- Average P. Def.
-(13124, 4413, 11), -- Average M. Def.
-(13124, 4414, 2), -- Standard Type
-(13124, 4415, 5), -- Blunt Weapons
-(13124, 4416, 4), -- Animals
+(13124, 4390, 1), -- NPC Abnormal Immunity
+(13124, 4408, 1), -- HP Modifiers
+(13124, 4409, 1), -- MP Modifiers
+(13124, 4410, 11), -- P. Atk. Modifiers
+(13124, 4411, 11), -- M. Atk. Modifiers
+(13124, 4412, 11), -- P. Def. Modifiers
+(13124, 4413, 11), -- M. Def. Modifiers
+(13124, 4414, 2), -- Armor Type
+(13124, 4415, 5), -- Weapon Type
+(13124, 4416, 4), -- Races
 -- Trap
-(13125, 4390, 1), -- Mystic Immunity
-(13125, 4408, 1), -- HP Increase (1x)
-(13125, 4409, 1), -- MP Increase (1x)
-(13125, 4410, 11), -- Average P. Atk.
-(13125, 4411, 11), -- Average M. Atk.
-(13125, 4412, 11), -- Average P. Def.
-(13125, 4413, 11), -- Average M. Def.
-(13125, 4414, 2), -- Standard Type
-(13125, 4415, 5), -- Blunt Weapons
-(13125, 4416, 4), -- Animals
+(13125, 4390, 1), -- NPC Abnormal Immunity
+(13125, 4408, 1), -- HP Modifiers
+(13125, 4409, 1), -- MP Modifiers
+(13125, 4410, 11), -- P. Atk. Modifiers
+(13125, 4411, 11), -- M. Atk. Modifiers
+(13125, 4412, 11), -- P. Def. Modifiers
+(13125, 4413, 11), -- M. Def. Modifiers
+(13125, 4414, 2), -- Armor Type
+(13125, 4415, 5), -- Weapon Type
+(13125, 4416, 4), -- Races
 (13125, 5679, 1), -- Oblivion Trap
 -- Trap
-(13126, 4390, 1), -- Mystic Immunity
-(13126, 4408, 1), -- HP Increase (1x)
-(13126, 4409, 1), -- MP Increase (1x)
-(13126, 4410, 11), -- Average P. Atk.
-(13126, 4411, 11), -- Average M. Atk.
-(13126, 4412, 11), -- Average P. Def.
-(13126, 4413, 11), -- Average M. Def.
-(13126, 4414, 2), -- Standard Type
-(13126, 4415, 5), -- Blunt Weapons
-(13126, 4416, 4), -- Animals
+(13126, 4390, 1), -- NPC Abnormal Immunity
+(13126, 4408, 1), -- HP Modifiers
+(13126, 4409, 1), -- MP Modifiers
+(13126, 4410, 11), -- P. Atk. Modifiers
+(13126, 4411, 11), -- M. Atk. Modifiers
+(13126, 4412, 11), -- P. Def. Modifiers
+(13126, 4413, 11), -- M. Def. Modifiers
+(13126, 4414, 2), -- Armor Type
+(13126, 4415, 5), -- Weapon Type
+(13126, 4416, 4), -- Races
 (13126, 5679, 2), -- Oblivion Trap
 -- Trap
-(13127, 4390, 1), -- Mystic Immunity
-(13127, 4408, 1), -- HP Increase (1x)
-(13127, 4409, 1), -- MP Increase (1x)
-(13127, 4410, 11), -- Average P. Atk.
-(13127, 4411, 11), -- Average M. Atk.
-(13127, 4412, 11), -- Average P. Def.
-(13127, 4413, 11), -- Average M. Def.
-(13127, 4414, 2), -- Standard Type
-(13127, 4415, 5), -- Blunt Weapons
-(13127, 4416, 4), -- Animals
+(13127, 4390, 1), -- NPC Abnormal Immunity
+(13127, 4408, 1), -- HP Modifiers
+(13127, 4409, 1), -- MP Modifiers
+(13127, 4410, 11), -- P. Atk. Modifiers
+(13127, 4411, 11), -- M. Atk. Modifiers
+(13127, 4412, 11), -- P. Def. Modifiers
+(13127, 4413, 11), -- M. Def. Modifiers
+(13127, 4414, 2), -- Armor Type
+(13127, 4415, 5), -- Weapon Type
+(13127, 4416, 4), -- Races
 (13127, 5679, 3), -- Oblivion Trap
 -- Golem Trader
-(13128, 4390, 1), -- Mystic Immunity
-(13128, 4408, 1), -- HP Increase (1x)
-(13128, 4409, 1), -- MP Increase (1x)
-(13128, 4410, 11), -- Average P. Atk.
-(13128, 4411, 11), -- Average M. Atk.
-(13128, 4412, 11), -- Average P. Def.
-(13128, 4413, 11), -- Average M. Def.
-(13128, 4414, 2), -- Standard Type
-(13128, 4415, 5), -- Blunt Weapons
-(13128, 4416, 4), -- Animals
+(13128, 4390, 1), -- NPC Abnormal Immunity
+(13128, 4408, 1), -- HP Modifiers
+(13128, 4409, 1), -- MP Modifiers
+(13128, 4410, 11), -- P. Atk. Modifiers
+(13128, 4411, 11), -- M. Atk. Modifiers
+(13128, 4412, 11), -- P. Def. Modifiers
+(13128, 4413, 11), -- M. Def. Modifiers
+(13128, 4414, 2), -- Armor Type
+(13128, 4415, 5), -- Weapon Type
+(13128, 4416, 4), -- Races
 -- Teleporter
-(13129, 4390, 1), -- Mystic Immunity
-(13129, 4408, 1), -- HP Increase (1x)
-(13129, 4409, 1), -- MP Increase (1x)
-(13129, 4410, 11), -- Average P. Atk.
-(13129, 4411, 11), -- Average M. Atk.
-(13129, 4412, 11), -- Average P. Def.
-(13129, 4413, 11), -- Average M. Def.
-(13129, 4414, 2), -- Standard Type
-(13129, 4415, 5), -- Blunt Weapons
-(13129, 4416, 4), -- Animals
+(13129, 4390, 1), -- NPC Abnormal Immunity
+(13129, 4408, 1), -- HP Modifiers
+(13129, 4409, 1), -- MP Modifiers
+(13129, 4410, 11), -- P. Atk. Modifiers
+(13129, 4411, 11), -- M. Atk. Modifiers
+(13129, 4412, 11), -- P. Def. Modifiers
+(13129, 4413, 11), -- M. Def. Modifiers
+(13129, 4414, 2), -- Armor Type
+(13129, 4415, 5), -- Weapon Type
+(13129, 4416, 4), -- Races
 -- Light Purple Maned Horse
-(13130, 4390, 1), -- Mystic Immunity
-(13130, 4408, 1), -- HP Increase (1x)
-(13130, 4409, 1), -- MP Increase (1x)
-(13130, 4410, 11), -- Average P. Atk.
-(13130, 4411, 11), -- Average M. Atk.
-(13130, 4412, 11), -- Average P. Def.
-(13130, 4413, 11), -- Average M. Def.
-(13130, 4414, 2), -- Standard Type
-(13130, 4415, 5), -- Blunt Weapons
-(13130, 4416, 4), -- Animals
+(13130, 4390, 1), -- NPC Abnormal Immunity
+(13130, 4408, 1), -- HP Modifiers
+(13130, 4409, 1), -- MP Modifiers
+(13130, 4410, 11), -- P. Atk. Modifiers
+(13130, 4411, 11), -- M. Atk. Modifiers
+(13130, 4412, 11), -- P. Def. Modifiers
+(13130, 4413, 11), -- M. Def. Modifiers
+(13130, 4414, 2), -- Armor Type
+(13130, 4415, 5), -- Weapon Type
+(13130, 4416, 4), -- Races
 -- Grizzly Bear
-(13131, 4390, 1), -- Mystic Immunity
-(13131, 4408, 1), -- HP Increase (1x)
-(13131, 4409, 1), -- MP Increase (1x)
-(13131, 4410, 11), -- Average P. Atk.
-(13131, 4411, 11), -- Average M. Atk.
-(13131, 4412, 11), -- Average P. Def.
-(13131, 4413, 11), -- Average M. Def.
-(13131, 4414, 2), -- Standard Type
-(13131, 4415, 5), -- Blunt Weapons
-(13131, 4416, 4), -- Animals
+(13131, 4390, 1), -- NPC Abnormal Immunity
+(13131, 4408, 1), -- HP Modifiers
+(13131, 4409, 1), -- MP Modifiers
+(13131, 4410, 11), -- P. Atk. Modifiers
+(13131, 4411, 11), -- M. Atk. Modifiers
+(13131, 4412, 11), -- P. Def. Modifiers
+(13131, 4413, 11), -- M. Def. Modifiers
+(13131, 4414, 2), -- Armor Type
+(13131, 4415, 5), -- Weapon Type
+(13131, 4416, 4), -- Races
 -- Timitran
-(13132, 4390, 1), -- Mystic Immunity
-(13132, 4408, 1), -- HP Increase (1x)
-(13132, 4409, 1), -- MP Increase (1x)
-(13132, 4410, 11), -- Average P. Atk.
-(13132, 4411, 11), -- Average M. Atk.
-(13132, 4412, 11), -- Average P. Def.
-(13132, 4413, 11), -- Average M. Def.
-(13132, 4414, 2), -- Standard Type
-(13132, 4415, 5), -- Blunt Weapons
-(13132, 4416, 4), -- Animals
+(13132, 4390, 1), -- NPC Abnormal Immunity
+(13132, 4408, 1), -- HP Modifiers
+(13132, 4409, 1), -- MP Modifiers
+(13132, 4410, 11), -- P. Atk. Modifiers
+(13132, 4411, 11), -- M. Atk. Modifiers
+(13132, 4412, 11), -- P. Def. Modifiers
+(13132, 4413, 11), -- M. Def. Modifiers
+(13132, 4414, 2), -- Armor Type
+(13132, 4415, 5), -- Weapon Type
+(13132, 4416, 4), -- Races
 -- Lava Golem
-(13133, 4390, 1), -- Mystic Immunity
-(13133, 4408, 1), -- HP Increase (1x)
-(13133, 4409, 1), -- MP Increase (1x)
-(13133, 4410, 11), -- Average P. Atk.
-(13133, 4411, 11), -- Average M. Atk.
-(13133, 4412, 11), -- Average P. Def.
-(13133, 4413, 11), -- Average M. Def.
-(13133, 4414, 2), -- Standard Type
-(13133, 4415, 5), -- Blunt Weapons
-(13133, 4416, 4), -- Animals
+(13133, 4390, 1), -- NPC Abnormal Immunity
+(13133, 4408, 1), -- HP Modifiers
+(13133, 4409, 1), -- MP Modifiers
+(13133, 4410, 11), -- P. Atk. Modifiers
+(13133, 4411, 11), -- M. Atk. Modifiers
+(13133, 4412, 11), -- P. Def. Modifiers
+(13133, 4413, 11), -- M. Def. Modifiers
+(13133, 4414, 2), -- Armor Type
+(13133, 4415, 5), -- Weapon Type
+(13133, 4416, 4), -- Races
 -- Yeti
-(13134, 4390, 1), -- Mystic Immunity
-(13134, 4408, 1), -- HP Increase (1x)
-(13134, 4409, 1), -- MP Increase (1x)
-(13134, 4410, 11), -- Average P. Atk.
-(13134, 4411, 11), -- Average M. Atk.
-(13134, 4412, 11), -- Average P. Def.
-(13134, 4413, 11), -- Average M. Def.
-(13134, 4414, 2), -- Standard Type
-(13134, 4415, 5), -- Blunt Weapons
-(13134, 4416, 4), -- Animals
+(13134, 4390, 1), -- NPC Abnormal Immunity
+(13134, 4408, 1), -- HP Modifiers
+(13134, 4409, 1), -- MP Modifiers
+(13134, 4410, 11), -- P. Atk. Modifiers
+(13134, 4411, 11), -- M. Atk. Modifiers
+(13134, 4412, 11), -- P. Def. Modifiers
+(13134, 4413, 11), -- M. Def. Modifiers
+(13134, 4414, 2), -- Armor Type
+(13134, 4415, 5), -- Weapon Type
+(13134, 4416, 4), -- Races
 -- Pumpkin Ghost
-(13135, 4390, 1), -- Mystic Immunity
-(13135, 4408, 1), -- HP Increase (1x)
-(13135, 4409, 1), -- MP Increase (1x)
-(13135, 4410, 11), -- Average P. Atk.
-(13135, 4411, 11), -- Average M. Atk.
-(13135, 4412, 11), -- Average P. Def.
-(13135, 4413, 11), -- Average M. Def.
-(13135, 4414, 2), -- Standard Type
-(13135, 4415, 5), -- Blunt Weapons
-(13135, 4416, 4), -- Animals
+(13135, 4390, 1), -- NPC Abnormal Immunity
+(13135, 4408, 1), -- HP Modifiers
+(13135, 4409, 1), -- MP Modifiers
+(13135, 4410, 11), -- P. Atk. Modifiers
+(13135, 4411, 11), -- M. Atk. Modifiers
+(13135, 4412, 11), -- P. Def. Modifiers
+(13135, 4413, 11), -- M. Def. Modifiers
+(13135, 4414, 2), -- Armor Type
+(13135, 4415, 5), -- Weapon Type
+(13135, 4416, 4), -- Races
 -- 
-(13136, 4390, 1), -- Mystic Immunity
-(13136, 4408, 1), -- HP Increase (1x)
-(13136, 4409, 1), -- MP Increase (1x)
-(13136, 4410, 11), -- Average P. Atk.
-(13136, 4411, 11), -- Average M. Atk.
-(13136, 4412, 11), -- Average P. Def.
-(13136, 4413, 11), -- Average M. Def.
-(13136, 4414, 2), -- Standard Type
-(13136, 4415, 1), -- Bare Hands
-(13136, 4416, 2), -- Magic Creatures
+(13136, 4390, 1), -- NPC Abnormal Immunity
+(13136, 4408, 1), -- HP Modifiers
+(13136, 4409, 1), -- MP Modifiers
+(13136, 4410, 11), -- P. Atk. Modifiers
+(13136, 4411, 11), -- M. Atk. Modifiers
+(13136, 4412, 11), -- P. Def. Modifiers
+(13136, 4413, 11), -- M. Def. Modifiers
+(13136, 4414, 2), -- Armor Type
+(13136, 4415, 1), -- Weapon Type
+(13136, 4416, 2), -- Races
 -- 
-(13137, 4390, 1), -- Mystic Immunity
-(13137, 4408, 1), -- HP Increase (1x)
-(13137, 4409, 1), -- MP Increase (1x)
-(13137, 4410, 11), -- Average P. Atk.
-(13137, 4411, 11), -- Average M. Atk.
-(13137, 4412, 11), -- Average P. Def.
-(13137, 4413, 11), -- Average M. Def.
-(13137, 4414, 2), -- Standard Type
-(13137, 4415, 1), -- Bare Hands
-(13137, 4416, 2), -- Magic Creatures
+(13137, 4390, 1), -- NPC Abnormal Immunity
+(13137, 4408, 1), -- HP Modifiers
+(13137, 4409, 1), -- MP Modifiers
+(13137, 4410, 11), -- P. Atk. Modifiers
+(13137, 4411, 11), -- M. Atk. Modifiers
+(13137, 4412, 11), -- P. Def. Modifiers
+(13137, 4413, 11), -- M. Def. Modifiers
+(13137, 4414, 2), -- Armor Type
+(13137, 4415, 1), -- Weapon Type
+(13137, 4416, 2), -- Races
 -- 
-(13138, 4390, 1), -- Mystic Immunity
-(13138, 4408, 1), -- HP Increase (1x)
-(13138, 4409, 1), -- MP Increase (1x)
-(13138, 4410, 11), -- Average P. Atk.
-(13138, 4411, 11), -- Average M. Atk.
-(13138, 4412, 11), -- Average P. Def.
-(13138, 4413, 11), -- Average M. Def.
-(13138, 4414, 2), -- Standard Type
-(13138, 4415, 1), -- Bare Hands
-(13138, 4416, 2), -- Magic Creatures
+(13138, 4390, 1), -- NPC Abnormal Immunity
+(13138, 4408, 1), -- HP Modifiers
+(13138, 4409, 1), -- MP Modifiers
+(13138, 4410, 11), -- P. Atk. Modifiers
+(13138, 4411, 11), -- M. Atk. Modifiers
+(13138, 4412, 11), -- P. Def. Modifiers
+(13138, 4413, 11), -- M. Def. Modifiers
+(13138, 4414, 2), -- Armor Type
+(13138, 4415, 1), -- Weapon Type
+(13138, 4416, 2), -- Races
 -- 
-(13139, 4390, 1), -- Mystic Immunity
-(13139, 4408, 1), -- HP Increase (1x)
-(13139, 4409, 1), -- MP Increase (1x)
-(13139, 4410, 11), -- Average P. Atk.
-(13139, 4411, 11), -- Average M. Atk.
-(13139, 4412, 11), -- Average P. Def.
-(13139, 4413, 11), -- Average M. Def.
-(13139, 4414, 2), -- Standard Type
-(13139, 4415, 1), -- Bare Hands
-(13139, 4416, 2), -- Magic Creatures
+(13139, 4390, 1), -- NPC Abnormal Immunity
+(13139, 4408, 1), -- HP Modifiers
+(13139, 4409, 1), -- MP Modifiers
+(13139, 4410, 11), -- P. Atk. Modifiers
+(13139, 4411, 11), -- M. Atk. Modifiers
+(13139, 4412, 11), -- P. Def. Modifiers
+(13139, 4413, 11), -- M. Def. Modifiers
+(13139, 4414, 2), -- Armor Type
+(13139, 4415, 1), -- Weapon Type
+(13139, 4416, 2), -- Races
 -- 
-(13140, 4390, 1), -- Mystic Immunity
-(13140, 4408, 1), -- HP Increase (1x)
-(13140, 4409, 1), -- MP Increase (1x)
-(13140, 4410, 11), -- Average P. Atk.
-(13140, 4411, 11), -- Average M. Atk.
-(13140, 4412, 11), -- Average P. Def.
-(13140, 4413, 11), -- Average M. Def.
-(13140, 4414, 2), -- Standard Type
-(13140, 4415, 1), -- Bare Hands
-(13140, 4416, 2), -- Magic Creatures
+(13140, 4390, 1), -- NPC Abnormal Immunity
+(13140, 4408, 1), -- HP Modifiers
+(13140, 4409, 1), -- MP Modifiers
+(13140, 4410, 11), -- P. Atk. Modifiers
+(13140, 4411, 11), -- M. Atk. Modifiers
+(13140, 4412, 11), -- P. Def. Modifiers
+(13140, 4413, 11), -- M. Def. Modifiers
+(13140, 4414, 2), -- Armor Type
+(13140, 4415, 1), -- Weapon Type
+(13140, 4416, 2), -- Races
 -- 
-(13141, 4390, 1), -- Mystic Immunity
-(13141, 4408, 1), -- HP Increase (1x)
-(13141, 4409, 1), -- MP Increase (1x)
-(13141, 4410, 11), -- Average P. Atk.
-(13141, 4411, 11), -- Average M. Atk.
-(13141, 4412, 11), -- Average P. Def.
-(13141, 4413, 11), -- Average M. Def.
-(13141, 4414, 2), -- Standard Type
-(13141, 4415, 1), -- Bare Hands
-(13141, 4416, 2), -- Magic Creatures
+(13141, 4390, 1), -- NPC Abnormal Immunity
+(13141, 4408, 1), -- HP Modifiers
+(13141, 4409, 1), -- MP Modifiers
+(13141, 4410, 11), -- P. Atk. Modifiers
+(13141, 4411, 11), -- M. Atk. Modifiers
+(13141, 4412, 11), -- P. Def. Modifiers
+(13141, 4413, 11), -- M. Def. Modifiers
+(13141, 4414, 2), -- Armor Type
+(13141, 4415, 1), -- Weapon Type
+(13141, 4416, 2), -- Races
 -- Final Form 
-(13142, 4408, 1), -- HP Increase (1x)
-(13142, 4409, 1), -- MP Increase (1x)
-(13142, 4410, 11), -- Average P. Atk.
-(13142, 4411, 11), -- Average M. Atk.
-(13142, 4412, 11), -- Average P. Def.
-(13142, 4413, 11), -- Average M. Def.
-(13142, 4414, 2), -- Standard Type
-(13142, 4415, 1), -- Bare Hands
-(13142, 4416, 6), -- Humanoids
+(13142, 4408, 1), -- HP Modifiers
+(13142, 4409, 1), -- MP Modifiers
+(13142, 4410, 11), -- P. Atk. Modifiers
+(13142, 4411, 11), -- M. Atk. Modifiers
+(13142, 4412, 11), -- P. Def. Modifiers
+(13142, 4413, 11), -- M. Def. Modifiers
+(13142, 4414, 2), -- Armor Type
+(13142, 4415, 1), -- Weapon Type
+(13142, 4416, 6), -- Races
 -- Final Form 
-(13143, 4408, 1), -- HP Increase (1x)
-(13143, 4409, 1), -- MP Increase (1x)
-(13143, 4410, 11), -- Average P. Atk.
-(13143, 4411, 11), -- Average M. Atk.
-(13143, 4412, 11), -- Average P. Def.
-(13143, 4413, 11), -- Average M. Def.
-(13143, 4414, 2), -- Standard Type
-(13143, 4415, 1), -- Bare Hands
-(13143, 4416, 6), -- Humanoids
+(13143, 4408, 1), -- HP Modifiers
+(13143, 4409, 1), -- MP Modifiers
+(13143, 4410, 11), -- P. Atk. Modifiers
+(13143, 4411, 11), -- M. Atk. Modifiers
+(13143, 4412, 11), -- P. Def. Modifiers
+(13143, 4413, 11), -- M. Def. Modifiers
+(13143, 4414, 2), -- Armor Type
+(13143, 4415, 1), -- Weapon Type
+(13143, 4416, 6), -- Races
 -- Aurabird-Falcon
-(13144, 4408, 1), -- HP Increase (1x)
-(13144, 4409, 1), -- MP Increase (1x)
-(13144, 4410, 11), -- Average P. Atk.
-(13144, 4411, 11), -- Average M. Atk.
-(13144, 4412, 11), -- Average P. Def.
-(13144, 4413, 11), -- Average M. Def.
-(13144, 4414, 2), -- Standard Type
-(13144, 4415, 1), -- Bare Hands
-(13144, 4416, 3), -- Beasts
+(13144, 4408, 1), -- HP Modifiers
+(13144, 4409, 1), -- MP Modifiers
+(13144, 4410, 11), -- P. Atk. Modifiers
+(13144, 4411, 11), -- M. Atk. Modifiers
+(13144, 4412, 11), -- P. Def. Modifiers
+(13144, 4413, 11), -- M. Def. Modifiers
+(13144, 4414, 2), -- Armor Type
+(13144, 4415, 1), -- Weapon Type
+(13144, 4416, 3), -- Races
 -- Aurabird-Owl
-(13145, 4408, 1), -- HP Increase (1x)
-(13145, 4409, 1), -- MP Increase (1x)
-(13145, 4410, 11), -- Average P. Atk.
-(13145, 4411, 11), -- Average M. Atk.
-(13145, 4412, 11), -- Average P. Def.
-(13145, 4413, 11), -- Average M. Def.
-(13145, 4414, 2), -- Standard Type
-(13145, 4415, 1), -- Bare Hands
-(13145, 4416, 3), -- Beasts
+(13145, 4408, 1), -- HP Modifiers
+(13145, 4409, 1), -- MP Modifiers
+(13145, 4410, 11), -- P. Atk. Modifiers
+(13145, 4411, 11), -- M. Atk. Modifiers
+(13145, 4412, 11), -- P. Def. Modifiers
+(13145, 4413, 11), -- M. Def. Modifiers
+(13145, 4414, 2), -- Armor Type
+(13145, 4415, 1), -- Weapon Type
+(13145, 4416, 3), -- Races
 -- Tawny-Maned Lion
-(13146, 4408, 1), -- HP Increase (1x)
-(13146, 4409, 1), -- MP Increase (1x)
-(13146, 4410, 11), -- Average P. Atk.
-(13146, 4411, 11), -- Average M. Atk.
-(13146, 4412, 11), -- Average P. Def.
-(13146, 4413, 11), -- Average M. Def.
-(13146, 4414, 2), -- Standard Type
-(13146, 4415, 1), -- Bare Hands
-(13146, 4416, 4), -- Animals
+(13146, 4408, 1), -- HP Modifiers
+(13146, 4409, 1), -- MP Modifiers
+(13146, 4410, 11), -- P. Atk. Modifiers
+(13146, 4411, 11), -- M. Atk. Modifiers
+(13146, 4412, 11), -- P. Def. Modifiers
+(13146, 4413, 11), -- M. Def. Modifiers
+(13146, 4414, 2), -- Armor Type
+(13146, 4415, 1), -- Weapon Type
+(13146, 4416, 4), -- Races
 -- Steam Sledge
-(13147, 4408, 1), -- HP Increase (1x)
-(13147, 4409, 1), -- MP Increase (1x)
-(13147, 4410, 11), -- Average P. Atk.
-(13147, 4411, 11), -- Average M. Atk.
-(13147, 4412, 11), -- Average P. Def.
-(13147, 4413, 11), -- Average M. Def.
-(13147, 4414, 2), -- Standard Type
-(13147, 4415, 1), -- Bare Hands
-(13147, 4416, 2), -- Magic Creatures
+(13147, 4408, 1), -- HP Modifiers
+(13147, 4409, 1), -- MP Modifiers
+(13147, 4410, 11), -- P. Atk. Modifiers
+(13147, 4411, 11), -- M. Atk. Modifiers
+(13147, 4412, 11), -- P. Def. Modifiers
+(13147, 4413, 11), -- M. Def. Modifiers
+(13147, 4414, 2), -- Armor Type
+(13147, 4415, 1), -- Weapon Type
+(13147, 4416, 2), -- Races
 -- Lindvior
-(13148, 4408, 1), -- HP Increase (1x)
-(13148, 4409, 1), -- MP Increase (1x)
-(13148, 4410, 11), -- Average P. Atk.
-(13148, 4411, 11), -- Average M. Atk.
-(13148, 4412, 11), -- Average P. Def.
-(13148, 4413, 11), -- Average M. Def.
-(13148, 4414, 2), -- Standard Type
-(13148, 4415, 1), -- Bare Hands
-(13148, 4416, 10), -- Dragons
+(13148, 4408, 1), -- HP Modifiers
+(13148, 4409, 1), -- MP Modifiers
+(13148, 4410, 11), -- P. Atk. Modifiers
+(13148, 4411, 11), -- M. Atk. Modifiers
+(13148, 4412, 11), -- P. Def. Modifiers
+(13148, 4413, 11), -- M. Def. Modifiers
+(13148, 4414, 2), -- Armor Type
+(13148, 4415, 1), -- Weapon Type
+(13148, 4416, 10), -- Races
 -- For Presentation 1
-(13149, 4408, 1), -- HP Increase (1x)
-(13149, 4409, 1), -- MP Increase (1x)
-(13149, 4410, 11), -- Average P. Atk.
-(13149, 4411, 11), -- Average M. Atk.
-(13149, 4412, 11), -- Average P. Def.
-(13149, 4413, 11), -- Average M. Def.
-(13149, 4414, 2), -- Standard Type
-(13149, 4415, 3), -- One-handed Sword
-(13149, 4416, 2), -- Magic Creatures
+(13149, 4408, 1), -- HP Modifiers
+(13149, 4409, 1), -- MP Modifiers
+(13149, 4410, 11), -- P. Atk. Modifiers
+(13149, 4411, 11), -- M. Atk. Modifiers
+(13149, 4412, 11), -- P. Def. Modifiers
+(13149, 4413, 11), -- M. Def. Modifiers
+(13149, 4414, 2), -- Armor Type
+(13149, 4415, 3), -- Weapon Type
+(13149, 4416, 2), -- Races
 -- For Presentation 2
-(13150, 4408, 1), -- HP Increase (1x)
-(13150, 4409, 1), -- MP Increase (1x)
-(13150, 4410, 11), -- Average P. Atk.
-(13150, 4411, 11), -- Average M. Atk.
-(13150, 4412, 11), -- Average P. Def.
-(13150, 4413, 11), -- Average M. Def.
-(13150, 4414, 2), -- Standard Type
-(13150, 4415, 3), -- One-handed Sword
-(13150, 4416, 2), -- Magic Creatures
+(13150, 4408, 1), -- HP Modifiers
+(13150, 4409, 1), -- MP Modifiers
+(13150, 4410, 11), -- P. Atk. Modifiers
+(13150, 4411, 11), -- M. Atk. Modifiers
+(13150, 4412, 11), -- P. Def. Modifiers
+(13150, 4413, 11), -- M. Def. Modifiers
+(13150, 4414, 2), -- Armor Type
+(13150, 4415, 3), -- Weapon Type
+(13150, 4416, 2), -- Races
 -- For Presentation 3
-(13151, 4408, 1), -- HP Increase (1x)
-(13151, 4409, 1), -- MP Increase (1x)
-(13151, 4410, 11), -- Average P. Atk.
-(13151, 4411, 11), -- Average M. Atk.
-(13151, 4412, 11), -- Average P. Def.
-(13151, 4413, 11), -- Average M. Def.
-(13151, 4414, 2), -- Standard Type
-(13151, 4415, 3), -- One-handed Sword
-(13151, 4416, 2), -- Magic Creatures
+(13151, 4408, 1), -- HP Modifiers
+(13151, 4409, 1), -- MP Modifiers
+(13151, 4410, 11), -- P. Atk. Modifiers
+(13151, 4411, 11), -- M. Atk. Modifiers
+(13151, 4412, 11), -- P. Def. Modifiers
+(13151, 4413, 11), -- M. Def. Modifiers
+(13151, 4414, 2), -- Armor Type
+(13151, 4415, 3), -- Weapon Type
+(13151, 4416, 2), -- Races
 -- For Presentation 4
-(13152, 4408, 1), -- HP Increase (1x)
-(13152, 4409, 1), -- MP Increase (1x)
-(13152, 4410, 11), -- Average P. Atk.
-(13152, 4411, 11), -- Average M. Atk.
-(13152, 4412, 11), -- Average P. Def.
-(13152, 4413, 11), -- Average M. Def.
-(13152, 4414, 2), -- Standard Type
-(13152, 4415, 3), -- One-handed Sword
-(13152, 4416, 2), -- Magic Creatures
+(13152, 4408, 1), -- HP Modifiers
+(13152, 4409, 1), -- MP Modifiers
+(13152, 4410, 11), -- P. Atk. Modifiers
+(13152, 4411, 11), -- M. Atk. Modifiers
+(13152, 4412, 11), -- P. Def. Modifiers
+(13152, 4413, 11), -- M. Def. Modifiers
+(13152, 4414, 2), -- Armor Type
+(13152, 4415, 3), -- Weapon Type
+(13152, 4416, 2), -- Races
 -- For Presentation 5
-(13153, 4408, 1), -- HP Increase (1x)
-(13153, 4409, 1), -- MP Increase (1x)
-(13153, 4410, 11), -- Average P. Atk.
-(13153, 4411, 11), -- Average M. Atk.
-(13153, 4412, 11), -- Average P. Def.
-(13153, 4413, 11), -- Average M. Def.
-(13153, 4414, 2), -- Standard Type
-(13153, 4415, 3), -- One-handed Sword
-(13153, 4416, 2), -- Magic Creatures
+(13153, 4408, 1), -- HP Modifiers
+(13153, 4409, 1), -- MP Modifiers
+(13153, 4410, 11), -- P. Atk. Modifiers
+(13153, 4411, 11), -- M. Atk. Modifiers
+(13153, 4412, 11), -- P. Def. Modifiers
+(13153, 4413, 11), -- M. Def. Modifiers
+(13153, 4414, 2), -- Armor Type
+(13153, 4415, 3), -- Weapon Type
+(13153, 4416, 2), -- Races
 -- Demon Race
-(13154, 4408, 1), -- HP Increase (1x)
-(13154, 4409, 1), -- MP Increase (1x)
-(13154, 4410, 11), -- Average P. Atk.
-(13154, 4411, 11), -- Average M. Atk.
-(13154, 4412, 11), -- Average P. Def.
-(13154, 4413, 11), -- Average M. Def.
-(13154, 4414, 2), -- Standard Type
-(13154, 4415, 1), -- Bare Hands
-(13154, 4416, 9), -- Demons
+(13154, 4408, 1), -- HP Modifiers
+(13154, 4409, 1), -- MP Modifiers
+(13154, 4410, 11), -- P. Atk. Modifiers
+(13154, 4411, 11), -- M. Atk. Modifiers
+(13154, 4412, 11), -- P. Def. Modifiers
+(13154, 4413, 11), -- M. Def. Modifiers
+(13154, 4414, 2), -- Armor Type
+(13154, 4415, 1), -- Weapon Type
+(13154, 4416, 9), -- Races
 -- Unicorniun
-(13155, 4408, 1), -- HP Increase (1x)
-(13155, 4409, 1), -- MP Increase (1x)
-(13155, 4410, 11), -- Average P. Atk.
-(13155, 4411, 11), -- Average M. Atk.
-(13155, 4412, 11), -- Average P. Def.
-(13155, 4413, 11), -- Average M. Def.
-(13155, 4414, 2), -- Standard Type
-(13155, 4415, 1), -- Bare Hands
-(13155, 4416, 7), -- Spirits
+(13155, 4408, 1), -- HP Modifiers
+(13155, 4409, 1), -- MP Modifiers
+(13155, 4410, 11), -- P. Atk. Modifiers
+(13155, 4411, 11), -- M. Atk. Modifiers
+(13155, 4412, 11), -- P. Def. Modifiers
+(13155, 4413, 11), -- M. Def. Modifiers
+(13155, 4414, 2), -- Armor Type
+(13155, 4415, 1), -- Weapon Type
+(13155, 4416, 7), -- Races
 -- Myo Race
-(13156, 4408, 1), -- HP Increase (1x)
-(13156, 4409, 1), -- MP Increase (1x)
-(13156, 4410, 11), -- Average P. Atk.
-(13156, 4411, 11), -- Average M. Atk.
-(13156, 4412, 11), -- Average P. Def.
-(13156, 4413, 11), -- Average M. Def.
-(13156, 4414, 2), -- Standard Type
-(13156, 4415, 1), -- Bare Hands
-(13156, 4416, 6), -- Humanoids
+(13156, 4408, 1), -- HP Modifiers
+(13156, 4409, 1), -- MP Modifiers
+(13156, 4410, 11), -- P. Atk. Modifiers
+(13156, 4411, 11), -- M. Atk. Modifiers
+(13156, 4412, 11), -- P. Def. Modifiers
+(13156, 4413, 11), -- M. Def. Modifiers
+(13156, 4414, 2), -- Armor Type
+(13156, 4415, 1), -- Weapon Type
+(13156, 4416, 6), -- Races
 -- Frog
-(13157, 4408, 1), -- HP Increase (1x)
-(13157, 4409, 1), -- MP Increase (1x)
-(13157, 4410, 11), -- Average P. Atk.
-(13157, 4411, 11), -- Average M. Atk.
-(13157, 4412, 11), -- Average P. Def.
-(13157, 4413, 11), -- Average M. Def.
-(13157, 4414, 2), -- Standard Type
-(13157, 4415, 1), -- Bare Hands
-(13157, 4416, 4), -- Animals
+(13157, 4408, 1), -- HP Modifiers
+(13157, 4409, 1), -- MP Modifiers
+(13157, 4410, 11), -- P. Atk. Modifiers
+(13157, 4411, 11), -- M. Atk. Modifiers
+(13157, 4412, 11), -- P. Def. Modifiers
+(13157, 4413, 11), -- M. Def. Modifiers
+(13157, 4414, 2), -- Armor Type
+(13157, 4415, 1), -- Weapon Type
+(13157, 4416, 4), -- Races
 -- Young Child
-(13158, 4408, 1), -- HP Increase (1x)
-(13158, 4409, 1), -- MP Increase (1x)
-(13158, 4410, 11), -- Average P. Atk.
-(13158, 4411, 11), -- Average M. Atk.
-(13158, 4412, 11), -- Average P. Def.
-(13158, 4413, 11), -- Average M. Def.
-(13158, 4414, 2), -- Standard Type
-(13158, 4415, 1), -- Bare Hands
-(13158, 4416, 14), -- Humans
+(13158, 4408, 1), -- HP Modifiers
+(13158, 4409, 1), -- MP Modifiers
+(13158, 4410, 11), -- P. Atk. Modifiers
+(13158, 4411, 11), -- M. Atk. Modifiers
+(13158, 4412, 11), -- P. Def. Modifiers
+(13158, 4413, 11), -- M. Def. Modifiers
+(13158, 4414, 2), -- Armor Type
+(13158, 4415, 1), -- Weapon Type
+(13158, 4416, 14), -- Races
 -- Mercenary
-(13159, 4408, 1), -- HP Increase (1x)
-(13159, 4409, 1), -- MP Increase (1x)
-(13159, 4410, 11), -- Average P. Atk.
-(13159, 4411, 11), -- Average M. Atk.
-(13159, 4412, 11), -- Average P. Def.
-(13159, 4413, 11), -- Average M. Def.
-(13159, 4414, 2), -- Standard Type
-(13159, 4415, 1), -- Bare Hands
-(13159, 4416, 23), -- Mercenaries
+(13159, 4408, 1), -- HP Modifiers
+(13159, 4409, 1), -- MP Modifiers
+(13159, 4410, 11), -- P. Atk. Modifiers
+(13159, 4411, 11), -- M. Atk. Modifiers
+(13159, 4412, 11), -- P. Def. Modifiers
+(13159, 4413, 11), -- M. Def. Modifiers
+(13159, 4414, 2), -- Armor Type
+(13159, 4415, 1), -- Weapon Type
+(13159, 4416, 23), -- Races
 -- Snowman
-(13160, 4408, 1), -- HP Increase (1x)
-(13160, 4409, 1), -- MP Increase (1x)
-(13160, 4410, 11), -- Average P. Atk.
-(13160, 4411, 11), -- Average M. Atk.
-(13160, 4412, 11), -- Average P. Def.
-(13160, 4413, 11), -- Average M. Def.
-(13160, 4414, 2), -- Standard Type
-(13160, 4415, 1), -- Bare Hands
-(13160, 4416, 2), -- Magic Creatures
+(13160, 4408, 1), -- HP Modifiers
+(13160, 4409, 1), -- MP Modifiers
+(13160, 4410, 11), -- P. Atk. Modifiers
+(13160, 4411, 11), -- M. Atk. Modifiers
+(13160, 4412, 11), -- P. Def. Modifiers
+(13160, 4413, 11), -- M. Def. Modifiers
+(13160, 4414, 2), -- Armor Type
+(13160, 4415, 1), -- Weapon Type
+(13160, 4416, 2), -- Races
 -- Scarecrow
-(13161, 4408, 1), -- HP Increase (1x)
-(13161, 4409, 1), -- MP Increase (1x)
-(13161, 4410, 11), -- Average P. Atk.
-(13161, 4411, 11), -- Average M. Atk.
-(13161, 4412, 11), -- Average P. Def.
-(13161, 4413, 11), -- Average M. Def.
-(13161, 4414, 2), -- Standard Type
-(13161, 4415, 1), -- Bare Hands
-(13161, 4416, 2), -- Magic Creatures
+(13161, 4408, 1), -- HP Modifiers
+(13161, 4409, 1), -- MP Modifiers
+(13161, 4410, 11), -- P. Atk. Modifiers
+(13161, 4411, 11), -- M. Atk. Modifiers
+(13161, 4412, 11), -- P. Def. Modifiers
+(13161, 4413, 11), -- M. Def. Modifiers
+(13161, 4414, 2), -- Armor Type
+(13161, 4415, 1), -- Weapon Type
+(13161, 4416, 2), -- Races
 -- Tin Plate Golem
-(13162, 4408, 1), -- HP Increase (1x)
-(13162, 4409, 1), -- MP Increase (1x)
-(13162, 4410, 11), -- Average P. Atk.
-(13162, 4411, 11), -- Average M. Atk.
-(13162, 4412, 11), -- Average P. Def.
-(13162, 4413, 11), -- Average M. Def.
-(13162, 4414, 2), -- Standard Type
-(13162, 4415, 1), -- Bare Hands
-(13162, 4416, 2), -- Magic Creatures
+(13162, 4408, 1), -- HP Modifiers
+(13162, 4409, 1), -- MP Modifiers
+(13162, 4410, 11), -- P. Atk. Modifiers
+(13162, 4411, 11), -- M. Atk. Modifiers
+(13162, 4412, 11), -- P. Def. Modifiers
+(13162, 4413, 11), -- M. Def. Modifiers
+(13162, 4414, 2), -- Armor Type
+(13162, 4415, 1), -- Weapon Type
+(13162, 4416, 2), -- Races
 -- Tow
-(13163, 4408, 1), -- HP Increase (1x)
-(13163, 4409, 1), -- MP Increase (1x)
-(13163, 4410, 11), -- Average P. Atk.
-(13163, 4411, 11), -- Average M. Atk.
-(13163, 4412, 11), -- Average P. Def.
-(13163, 4413, 11), -- Average M. Def.
-(13163, 4414, 2), -- Standard Type
-(13163, 4415, 1), -- Bare Hands
-(13163, 4416, 4), -- Animals
+(13163, 4408, 1), -- HP Modifiers
+(13163, 4409, 1), -- MP Modifiers
+(13163, 4410, 11), -- P. Atk. Modifiers
+(13163, 4411, 11), -- M. Atk. Modifiers
+(13163, 4412, 11), -- P. Def. Modifiers
+(13163, 4413, 11), -- M. Def. Modifiers
+(13163, 4414, 2), -- Armor Type
+(13163, 4415, 1), -- Weapon Type
+(13163, 4416, 4), -- Races
 -- Lure Tow
-(13164, 4408, 1), -- HP Increase (1x)
-(13164, 4409, 1), -- MP Increase (1x)
-(13164, 4410, 11), -- Average P. Atk.
-(13164, 4411, 11), -- Average M. Atk.
-(13164, 4412, 11), -- Average P. Def.
-(13164, 4413, 11), -- Average M. Def.
-(13164, 4414, 2), -- Standard Type
-(13164, 4415, 1), -- Bare Hands
-(13164, 4416, 4), -- Animals
+(13164, 4408, 1), -- HP Modifiers
+(13164, 4409, 1), -- MP Modifiers
+(13164, 4410, 11), -- P. Atk. Modifiers
+(13164, 4411, 11), -- M. Atk. Modifiers
+(13164, 4412, 11), -- P. Def. Modifiers
+(13164, 4413, 11), -- M. Def. Modifiers
+(13164, 4414, 2), -- Armor Type
+(13164, 4415, 1), -- Weapon Type
+(13164, 4416, 4), -- Races
 -- Heavy Tow
-(13165, 4408, 1), -- HP Increase (1x)
-(13165, 4409, 1), -- MP Increase (1x)
-(13165, 4410, 11), -- Average P. Atk.
-(13165, 4411, 11), -- Average M. Atk.
-(13165, 4412, 11), -- Average P. Def.
-(13165, 4413, 11), -- Average M. Def.
-(13165, 4414, 2), -- Standard Type
-(13165, 4415, 1), -- Bare Hands
-(13165, 4416, 4), -- Animals
+(13165, 4408, 1), -- HP Modifiers
+(13165, 4409, 1), -- MP Modifiers
+(13165, 4410, 11), -- P. Atk. Modifiers
+(13165, 4411, 11), -- M. Atk. Modifiers
+(13165, 4412, 11), -- P. Def. Modifiers
+(13165, 4413, 11), -- M. Def. Modifiers
+(13165, 4414, 2), -- Armor Type
+(13165, 4415, 1), -- Weapon Type
+(13165, 4416, 4), -- Races
 -- Wing Tow
-(13166, 4408, 1), -- HP Increase (1x)
-(13166, 4409, 1), -- MP Increase (1x)
-(13166, 4410, 11), -- Average P. Atk.
-(13166, 4411, 11), -- Average M. Atk.
-(13166, 4412, 11), -- Average P. Def.
-(13166, 4413, 11), -- Average M. Def.
-(13166, 4414, 2), -- Standard Type
-(13166, 4415, 1), -- Bare Hands
-(13166, 4416, 4), -- Animals
+(13166, 4408, 1), -- HP Modifiers
+(13166, 4409, 1), -- MP Modifiers
+(13166, 4410, 11), -- P. Atk. Modifiers
+(13166, 4411, 11), -- M. Atk. Modifiers
+(13166, 4412, 11), -- P. Def. Modifiers
+(13166, 4413, 11), -- M. Def. Modifiers
+(13166, 4414, 2), -- Armor Type
+(13166, 4415, 1), -- Weapon Type
+(13166, 4416, 4), -- Races
 -- Main Role A
-(13167, 4408, 1), -- HP Increase (1x)
-(13167, 4409, 1), -- MP Increase (1x)
-(13167, 4410, 11), -- Average P. Atk.
-(13167, 4411, 11), -- Average M. Atk.
-(13167, 4412, 11), -- Average P. Def.
-(13167, 4413, 11), -- Average M. Def.
-(13167, 4414, 2), -- Standard Type
-(13167, 4415, 1), -- Bare Hands
-(13167, 4416, 7), -- Spirits
+(13167, 4408, 1), -- HP Modifiers
+(13167, 4409, 1), -- MP Modifiers
+(13167, 4410, 11), -- P. Atk. Modifiers
+(13167, 4411, 11), -- M. Atk. Modifiers
+(13167, 4412, 11), -- P. Def. Modifiers
+(13167, 4413, 11), -- M. Def. Modifiers
+(13167, 4414, 2), -- Armor Type
+(13167, 4415, 1), -- Weapon Type
+(13167, 4416, 7), -- Races
 -- Main Role B
-(13168, 4408, 1), -- HP Increase (1x)
-(13168, 4409, 1), -- MP Increase (1x)
-(13168, 4410, 11), -- Average P. Atk.
-(13168, 4411, 11), -- Average M. Atk.
-(13168, 4412, 11), -- Average P. Def.
-(13168, 4413, 11), -- Average M. Def.
-(13168, 4414, 2), -- Standard Type
-(13168, 4415, 1), -- Bare Hands
-(13168, 4416, 7), -- Spirits
+(13168, 4408, 1), -- HP Modifiers
+(13168, 4409, 1), -- MP Modifiers
+(13168, 4410, 11), -- P. Atk. Modifiers
+(13168, 4411, 11), -- M. Atk. Modifiers
+(13168, 4412, 11), -- P. Def. Modifiers
+(13168, 4413, 11), -- M. Def. Modifiers
+(13168, 4414, 2), -- Armor Type
+(13168, 4415, 1), -- Weapon Type
+(13168, 4416, 7), -- Races
 -- Human Male Mercenary
-(13169, 4408, 1), -- HP Increase (1x)
-(13169, 4409, 1), -- MP Increase (1x)
-(13169, 4410, 11), -- Average P. Atk.
-(13169, 4411, 11), -- Average M. Atk.
-(13169, 4412, 11), -- Average P. Def.
-(13169, 4413, 11), -- Average M. Def.
-(13169, 4414, 2), -- Standard Type
-(13169, 4415, 1), -- Bare Hands
-(13169, 4416, 14), -- Humans
+(13169, 4408, 1), -- HP Modifiers
+(13169, 4409, 1), -- MP Modifiers
+(13169, 4410, 11), -- P. Atk. Modifiers
+(13169, 4411, 11), -- M. Atk. Modifiers
+(13169, 4412, 11), -- P. Def. Modifiers
+(13169, 4413, 11), -- M. Def. Modifiers
+(13169, 4414, 2), -- Armor Type
+(13169, 4415, 1), -- Weapon Type
+(13169, 4416, 14), -- Races
 -- Male Elf Mercenary
-(13170, 4408, 1), -- HP Increase (1x)
-(13170, 4409, 1), -- MP Increase (1x)
-(13170, 4410, 11), -- Average P. Atk.
-(13170, 4411, 11), -- Average M. Atk.
-(13170, 4412, 11), -- Average P. Def.
-(13170, 4413, 11), -- Average M. Def.
-(13170, 4414, 2), -- Standard Type
-(13170, 4415, 1), -- Bare Hands
-(13170, 4416, 15), -- Elves
+(13170, 4408, 1), -- HP Modifiers
+(13170, 4409, 1), -- MP Modifiers
+(13170, 4410, 11), -- P. Atk. Modifiers
+(13170, 4411, 11), -- M. Atk. Modifiers
+(13170, 4412, 11), -- P. Def. Modifiers
+(13170, 4413, 11), -- M. Def. Modifiers
+(13170, 4414, 2), -- Armor Type
+(13170, 4415, 1), -- Weapon Type
+(13170, 4416, 15), -- Races
 -- Dark Elf Female Mercenary
-(13171, 4408, 1), -- HP Increase (1x)
-(13171, 4409, 1), -- MP Increase (1x)
-(13171, 4410, 11), -- Average P. Atk.
-(13171, 4411, 11), -- Average M. Atk.
-(13171, 4412, 11), -- Average P. Def.
-(13171, 4413, 11), -- Average M. Def.
-(13171, 4414, 2), -- Standard Type
-(13171, 4415, 1), -- Bare Hands
-(13171, 4416, 16), -- Dark Elves
+(13171, 4408, 1), -- HP Modifiers
+(13171, 4409, 1), -- MP Modifiers
+(13171, 4410, 11), -- P. Atk. Modifiers
+(13171, 4411, 11), -- M. Atk. Modifiers
+(13171, 4412, 11), -- P. Def. Modifiers
+(13171, 4413, 11), -- M. Def. Modifiers
+(13171, 4414, 2), -- Armor Type
+(13171, 4415, 1), -- Weapon Type
+(13171, 4416, 16), -- Races
 -- Orc Male Mercenary
-(13172, 4408, 1), -- HP Increase (1x)
-(13172, 4409, 1), -- MP Increase (1x)
-(13172, 4410, 11), -- Average P. Atk.
-(13172, 4411, 11), -- Average M. Atk.
-(13172, 4412, 11), -- Average P. Def.
-(13172, 4413, 11), -- Average M. Def.
-(13172, 4414, 2), -- Standard Type
-(13172, 4415, 1), -- Bare Hands
-(13172, 4416, 17), -- Orcs
+(13172, 4408, 1), -- HP Modifiers
+(13172, 4409, 1), -- MP Modifiers
+(13172, 4410, 11), -- P. Atk. Modifiers
+(13172, 4411, 11), -- M. Atk. Modifiers
+(13172, 4412, 11), -- P. Def. Modifiers
+(13172, 4413, 11), -- M. Def. Modifiers
+(13172, 4414, 2), -- Armor Type
+(13172, 4415, 1), -- Weapon Type
+(13172, 4416, 17), -- Races
 -- Dwarf Male Mercenary
-(13173, 4408, 1), -- HP Increase (1x)
-(13173, 4409, 1), -- MP Increase (1x)
-(13173, 4410, 11), -- Average P. Atk.
-(13173, 4411, 11), -- Average M. Atk.
-(13173, 4412, 11), -- Average P. Def.
-(13173, 4413, 11), -- Average M. Def.
-(13173, 4414, 2), -- Standard Type
-(13173, 4415, 1), -- Bare Hands
-(13173, 4416, 18), -- Dwarves
+(13173, 4408, 1), -- HP Modifiers
+(13173, 4409, 1), -- MP Modifiers
+(13173, 4410, 11), -- P. Atk. Modifiers
+(13173, 4411, 11), -- M. Atk. Modifiers
+(13173, 4412, 11), -- P. Def. Modifiers
+(13173, 4413, 11), -- M. Def. Modifiers
+(13173, 4414, 2), -- Armor Type
+(13173, 4415, 1), -- Weapon Type
+(13173, 4416, 18), -- Races
 -- Kamael Male Mercenary
-(13174, 4408, 1), -- HP Increase (1x)
-(13174, 4409, 1), -- MP Increase (1x)
-(13174, 4410, 11), -- Average P. Atk.
-(13174, 4411, 11), -- Average M. Atk.
-(13174, 4412, 11), -- Average P. Def.
-(13174, 4413, 11), -- Average M. Def.
-(13174, 4414, 2), -- Standard Type
-(13174, 4415, 1), -- Bare Hands
-(13174, 4416, 25), -- Kamael
+(13174, 4408, 1), -- HP Modifiers
+(13174, 4409, 1), -- MP Modifiers
+(13174, 4410, 11), -- P. Atk. Modifiers
+(13174, 4411, 11), -- M. Atk. Modifiers
+(13174, 4412, 11), -- P. Def. Modifiers
+(13174, 4413, 11), -- M. Def. Modifiers
+(13174, 4414, 2), -- Armor Type
+(13174, 4415, 1), -- Weapon Type
+(13174, 4416, 25), -- Races
 -- Knight Level Mercenary
-(13175, 4408, 1), -- HP Increase (1x)
-(13175, 4409, 1), -- MP Increase (1x)
-(13175, 4410, 11), -- Average P. Atk.
-(13175, 4411, 11), -- Average M. Atk.
-(13175, 4412, 11), -- Average P. Def.
-(13175, 4413, 11), -- Average M. Def.
-(13175, 4414, 2), -- Standard Type
-(13175, 4415, 1), -- Bare Hands
-(13175, 4416, 14), -- Humans
+(13175, 4408, 1), -- HP Modifiers
+(13175, 4409, 1), -- MP Modifiers
+(13175, 4410, 11), -- P. Atk. Modifiers
+(13175, 4411, 11), -- M. Atk. Modifiers
+(13175, 4412, 11), -- P. Def. Modifiers
+(13175, 4413, 11), -- M. Def. Modifiers
+(13175, 4414, 2), -- Armor Type
+(13175, 4415, 1), -- Weapon Type
+(13175, 4416, 14), -- Races
 -- Archer Level Mercenary
-(13176, 4408, 1), -- HP Increase (1x)
-(13176, 4409, 1), -- MP Increase (1x)
-(13176, 4410, 11), -- Average P. Atk.
-(13176, 4411, 11), -- Average M. Atk.
-(13176, 4412, 11), -- Average P. Def.
-(13176, 4413, 11), -- Average M. Def.
-(13176, 4414, 2), -- Standard Type
-(13176, 4415, 9), -- Bows
-(13176, 4416, 15), -- Elves
+(13176, 4408, 1), -- HP Modifiers
+(13176, 4409, 1), -- MP Modifiers
+(13176, 4410, 11), -- P. Atk. Modifiers
+(13176, 4411, 11), -- M. Atk. Modifiers
+(13176, 4412, 11), -- P. Def. Modifiers
+(13176, 4413, 11), -- M. Def. Modifiers
+(13176, 4414, 2), -- Armor Type
+(13176, 4415, 9), -- Weapon Type
+(13176, 4416, 15), -- Races
 -- Wizard Level Mercenary
-(13177, 4408, 1), -- HP Increase (1x)
-(13177, 4409, 1), -- MP Increase (1x)
-(13177, 4410, 11), -- Average P. Atk.
-(13177, 4411, 11), -- Average M. Atk.
-(13177, 4412, 11), -- Average P. Def.
-(13177, 4413, 11), -- Average M. Def.
-(13177, 4414, 2), -- Standard Type
-(13177, 4415, 1), -- Bare Hands
-(13177, 4416, 14), -- Humans
+(13177, 4408, 1), -- HP Modifiers
+(13177, 4409, 1), -- MP Modifiers
+(13177, 4410, 11), -- P. Atk. Modifiers
+(13177, 4411, 11), -- M. Atk. Modifiers
+(13177, 4412, 11), -- P. Def. Modifiers
+(13177, 4413, 11), -- M. Def. Modifiers
+(13177, 4414, 2), -- Armor Type
+(13177, 4415, 1), -- Weapon Type
+(13177, 4416, 14), -- Races
 -- Trooper Level Mercenary
-(13178, 4408, 1), -- HP Increase (1x)
-(13178, 4409, 1), -- MP Increase (1x)
-(13178, 4410, 11), -- Average P. Atk.
-(13178, 4411, 11), -- Average M. Atk.
-(13178, 4412, 11), -- Average P. Def.
-(13178, 4413, 11), -- Average M. Def.
-(13178, 4414, 2), -- Standard Type
-(13178, 4415, 1), -- Bare Hands
-(13178, 4416, 25), -- Kamael
+(13178, 4408, 1), -- HP Modifiers
+(13178, 4409, 1), -- MP Modifiers
+(13178, 4410, 11), -- P. Atk. Modifiers
+(13178, 4411, 11), -- M. Atk. Modifiers
+(13178, 4412, 11), -- P. Def. Modifiers
+(13178, 4413, 11), -- M. Def. Modifiers
+(13178, 4414, 2), -- Armor Type
+(13178, 4415, 1), -- Weapon Type
+(13178, 4416, 25), -- Races
 -- Knight Leader Elite Mercenary
-(13179, 4408, 1), -- HP Increase (1x)
-(13179, 4409, 1), -- MP Increase (1x)
-(13179, 4410, 11), -- Average P. Atk.
-(13179, 4411, 11), -- Average M. Atk.
-(13179, 4412, 11), -- Average P. Def.
-(13179, 4413, 11), -- Average M. Def.
-(13179, 4414, 2), -- Standard Type
-(13179, 4415, 1), -- Bare Hands
-(13179, 4416, 14), -- Humans
+(13179, 4408, 1), -- HP Modifiers
+(13179, 4409, 1), -- MP Modifiers
+(13179, 4410, 11), -- P. Atk. Modifiers
+(13179, 4411, 11), -- M. Atk. Modifiers
+(13179, 4412, 11), -- P. Def. Modifiers
+(13179, 4413, 11), -- M. Def. Modifiers
+(13179, 4414, 2), -- Armor Type
+(13179, 4415, 1), -- Weapon Type
+(13179, 4416, 14), -- Races
 -- Commander Elite Mercenary
-(13180, 4408, 1), -- HP Increase (1x)
-(13180, 4409, 1), -- MP Increase (1x)
-(13180, 4410, 11), -- Average P. Atk.
-(13180, 4411, 11), -- Average M. Atk.
-(13180, 4412, 11), -- Average P. Def.
-(13180, 4413, 11), -- Average M. Def.
-(13180, 4414, 2), -- Standard Type
-(13180, 4415, 1), -- Bare Hands
-(13180, 4416, 16), -- Dark Elves
+(13180, 4408, 1), -- HP Modifiers
+(13180, 4409, 1), -- MP Modifiers
+(13180, 4410, 11), -- P. Atk. Modifiers
+(13180, 4411, 11), -- M. Atk. Modifiers
+(13180, 4412, 11), -- P. Def. Modifiers
+(13180, 4413, 11), -- M. Def. Modifiers
+(13180, 4414, 2), -- Armor Type
+(13180, 4415, 1), -- Weapon Type
+(13180, 4416, 16), -- Races
 -- Treasure Chest
 (13181, 4045, 1), -- Resist Full Magic Attack
-(13181, 4408, 1), -- HP Increase (1x)
-(13181, 4409, 1), -- MP Increase (1x)
-(13181, 4410, 11), -- Average P. Atk.
-(13181, 4411, 11), -- Average M. Atk.
-(13181, 4412, 11), -- Average P. Def.
-(13181, 4413, 11), -- Average M. Def.
-(13181, 4414, 2), -- Standard Type
-(13181, 4415, 3), -- One-handed Sword
-(13181, 4416, 2), -- Magic Creatures
+(13181, 4408, 1), -- HP Modifiers
+(13181, 4409, 1), -- MP Modifiers
+(13181, 4410, 11), -- P. Atk. Modifiers
+(13181, 4411, 11), -- M. Atk. Modifiers
+(13181, 4412, 11), -- P. Def. Modifiers
+(13181, 4413, 11), -- M. Def. Modifiers
+(13181, 4414, 2), -- Armor Type
+(13181, 4415, 3), -- Weapon Type
+(13181, 4416, 2), -- Races
 -- Free Gift Merchant
 (13182, 4045, 1), -- Resist Full Magic Attack
-(13182, 4408, 1), -- HP Increase (1x)
-(13182, 4409, 1), -- MP Increase (1x)
-(13182, 4410, 11), -- Average P. Atk.
-(13182, 4411, 11), -- Average M. Atk.
-(13182, 4412, 11), -- Average P. Def.
-(13182, 4413, 11), -- Average M. Def.
-(13182, 4414, 2), -- Standard Type
-(13182, 4415, 3), -- One-handed Sword
-(13182, 4416, 7), -- Spirits
+(13182, 4408, 1), -- HP Modifiers
+(13182, 4409, 1), -- MP Modifiers
+(13182, 4410, 11), -- P. Atk. Modifiers
+(13182, 4411, 11), -- M. Atk. Modifiers
+(13182, 4412, 11), -- P. Def. Modifiers
+(13182, 4413, 11), -- M. Def. Modifiers
+(13182, 4414, 2), -- Armor Type
+(13182, 4415, 3), -- Weapon Type
+(13182, 4416, 7), -- Races
 -- Thomas D. Turkey
-(13183, 4390, 1), -- Mystic Immunity
-(13183, 4408, 1), -- HP Increase (1x)
-(13183, 4409, 1), -- MP Increase (1x)
-(13183, 4410, 11), -- Average P. Atk.
-(13183, 4411, 11), -- Average M. Atk.
-(13183, 4412, 11), -- Average P. Def.
-(13183, 4413, 11), -- Average M. Def.
-(13183, 4414, 2), -- Standard Type
-(13183, 4415, 1), -- Bare Hands
-(13183, 4416, 4), -- Animals
+(13183, 4390, 1), -- NPC Abnormal Immunity
+(13183, 4408, 1), -- HP Modifiers
+(13183, 4409, 1), -- MP Modifiers
+(13183, 4410, 11), -- P. Atk. Modifiers
+(13183, 4411, 11), -- M. Atk. Modifiers
+(13183, 4412, 11), -- P. Def. Modifiers
+(13183, 4413, 11), -- M. Def. Modifiers
+(13183, 4414, 2), -- Armor Type
+(13183, 4415, 1), -- Weapon Type
+(13183, 4416, 4), -- Races
 -- Santa Claus
-(13184, 4408, 1), -- HP Increase (1x)
-(13184, 4409, 1), -- MP Increase (1x)
-(13184, 4410, 11), -- Average P. Atk.
-(13184, 4411, 11), -- Average M. Atk.
-(13184, 4412, 11), -- Average P. Def.
-(13184, 4413, 11), -- Average M. Def.
-(13184, 4414, 2), -- Standard Type
-(13184, 4415, 1), -- Bare Hands
-(13184, 4416, 14), -- Humans
+(13184, 4408, 1), -- HP Modifiers
+(13184, 4409, 1), -- MP Modifiers
+(13184, 4410, 11), -- P. Atk. Modifiers
+(13184, 4411, 11), -- M. Atk. Modifiers
+(13184, 4412, 11), -- P. Def. Modifiers
+(13184, 4413, 11), -- M. Def. Modifiers
+(13184, 4414, 2), -- Armor Type
+(13184, 4415, 1), -- Weapon Type
+(13184, 4416, 14), -- Races
 -- Santa Claus
-(13185, 4408, 1), -- HP Increase (1x)
-(13185, 4409, 1), -- MP Increase (1x)
-(13185, 4410, 11), -- Average P. Atk.
-(13185, 4411, 11), -- Average M. Atk.
-(13185, 4412, 11), -- Average P. Def.
-(13185, 4413, 11), -- Average M. Def.
-(13185, 4414, 2), -- Standard Type
-(13185, 4415, 1), -- Bare Hands
-(13185, 4416, 14), -- Humans
+(13185, 4408, 1), -- HP Modifiers
+(13185, 4409, 1), -- MP Modifiers
+(13185, 4410, 11), -- P. Atk. Modifiers
+(13185, 4411, 11), -- M. Atk. Modifiers
+(13185, 4412, 11), -- P. Def. Modifiers
+(13185, 4413, 11), -- M. Def. Modifiers
+(13185, 4414, 2), -- Armor Type
+(13185, 4415, 1), -- Weapon Type
+(13185, 4416, 14), -- Races
 -- Santa Claus
-(13186, 4408, 1), -- HP Increase (1x)
-(13186, 4409, 1), -- MP Increase (1x)
-(13186, 4410, 11), -- Average P. Atk.
-(13186, 4411, 11), -- Average M. Atk.
-(13186, 4412, 11), -- Average P. Def.
-(13186, 4413, 11), -- Average M. Def.
-(13186, 4414, 2), -- Standard Type
-(13186, 4415, 1), -- Bare Hands
-(13186, 4416, 14), -- Humans
+(13186, 4408, 1), -- HP Modifiers
+(13186, 4409, 1), -- MP Modifiers
+(13186, 4410, 11), -- P. Atk. Modifiers
+(13186, 4411, 11), -- M. Atk. Modifiers
+(13186, 4412, 11), -- P. Def. Modifiers
+(13186, 4413, 11), -- M. Def. Modifiers
+(13186, 4414, 2), -- Armor Type
+(13186, 4415, 1), -- Weapon Type
+(13186, 4416, 14), -- Races
 -- Milk Cow
-(13187, 4390, 1), -- Mystic Immunity
-(13187, 4408, 1), -- HP Increase (1x)
-(13187, 4409, 1), -- MP Increase (1x)
-(13187, 4410, 11), -- Average P. Atk.
-(13187, 4411, 11), -- Average M. Atk.
-(13187, 4412, 11), -- Average P. Def.
-(13187, 4413, 11), -- Average M. Def.
-(13187, 4414, 2), -- Standard Type
-(13187, 4415, 5), -- Blunt Weapons
-(13187, 4416, 4), -- Animals
+(13187, 4390, 1), -- NPC Abnormal Immunity
+(13187, 4408, 1), -- HP Modifiers
+(13187, 4409, 1), -- MP Modifiers
+(13187, 4410, 11), -- P. Atk. Modifiers
+(13187, 4411, 11), -- M. Atk. Modifiers
+(13187, 4412, 11), -- P. Def. Modifiers
+(13187, 4413, 11), -- M. Def. Modifiers
+(13187, 4414, 2), -- Armor Type
+(13187, 4415, 5), -- Weapon Type
+(13187, 4416, 4), -- Races
 -- Head Milk Cow
-(13188, 4390, 1), -- Mystic Immunity
-(13188, 4408, 1), -- HP Increase (1x)
-(13188, 4409, 1), -- MP Increase (1x)
-(13188, 4410, 11), -- Average P. Atk.
-(13188, 4411, 11), -- Average M. Atk.
-(13188, 4412, 11), -- Average P. Def.
-(13188, 4413, 11), -- Average M. Def.
-(13188, 4414, 2), -- Standard Type
-(13188, 4415, 5), -- Blunt Weapons
-(13188, 4416, 4), -- Animals
+(13188, 4390, 1), -- NPC Abnormal Immunity
+(13188, 4408, 1), -- HP Modifiers
+(13188, 4409, 1), -- MP Modifiers
+(13188, 4410, 11), -- P. Atk. Modifiers
+(13188, 4411, 11), -- M. Atk. Modifiers
+(13188, 4412, 11), -- P. Def. Modifiers
+(13188, 4413, 11), -- M. Def. Modifiers
+(13188, 4414, 2), -- Armor Type
+(13188, 4415, 5), -- Weapon Type
+(13188, 4416, 4), -- Races
 -- Bull
-(13189, 4390, 1), -- Mystic Immunity
-(13189, 4408, 1), -- HP Increase (1x)
-(13189, 4409, 1), -- MP Increase (1x)
-(13189, 4410, 11), -- Average P. Atk.
-(13189, 4411, 11), -- Average M. Atk.
-(13189, 4412, 11), -- Average P. Def.
-(13189, 4413, 11), -- Average M. Def.
-(13189, 4414, 2), -- Standard Type
-(13189, 4415, 5), -- Blunt Weapons
-(13189, 4416, 4), -- Animals
+(13189, 4390, 1), -- NPC Abnormal Immunity
+(13189, 4408, 1), -- HP Modifiers
+(13189, 4409, 1), -- MP Modifiers
+(13189, 4410, 11), -- P. Atk. Modifiers
+(13189, 4411, 11), -- M. Atk. Modifiers
+(13189, 4412, 11), -- P. Def. Modifiers
+(13189, 4413, 11), -- M. Def. Modifiers
+(13189, 4414, 2), -- Armor Type
+(13189, 4415, 5), -- Weapon Type
+(13189, 4416, 4), -- Races
 -- Head Bull
-(13190, 4390, 1), -- Mystic Immunity
-(13190, 4408, 1), -- HP Increase (1x)
-(13190, 4409, 1), -- MP Increase (1x)
-(13190, 4410, 11), -- Average P. Atk.
-(13190, 4411, 11), -- Average M. Atk.
-(13190, 4412, 11), -- Average P. Def.
-(13190, 4413, 11), -- Average M. Def.
-(13190, 4414, 2), -- Standard Type
-(13190, 4415, 5), -- Blunt Weapons
-(13190, 4416, 4), -- Animals
+(13190, 4390, 1), -- NPC Abnormal Immunity
+(13190, 4408, 1), -- HP Modifiers
+(13190, 4409, 1), -- MP Modifiers
+(13190, 4410, 11), -- P. Atk. Modifiers
+(13190, 4411, 11), -- M. Atk. Modifiers
+(13190, 4412, 11), -- P. Def. Modifiers
+(13190, 4413, 11), -- M. Def. Modifiers
+(13190, 4414, 2), -- Armor Type
+(13190, 4415, 5), -- Weapon Type
+(13190, 4416, 4), -- Races
 -- Gloomy Milk Cow
-(13191, 4390, 1), -- Mystic Immunity
-(13191, 4408, 1), -- HP Increase (1x)
-(13191, 4409, 1), -- MP Increase (1x)
-(13191, 4410, 11), -- Average P. Atk.
-(13191, 4411, 11), -- Average M. Atk.
-(13191, 4412, 11), -- Average P. Def.
-(13191, 4413, 11), -- Average M. Def.
-(13191, 4414, 2), -- Standard Type
-(13191, 4415, 5), -- Blunt Weapons
-(13191, 4416, 4), -- Animals
+(13191, 4390, 1), -- NPC Abnormal Immunity
+(13191, 4408, 1), -- HP Modifiers
+(13191, 4409, 1), -- MP Modifiers
+(13191, 4410, 11), -- P. Atk. Modifiers
+(13191, 4411, 11), -- M. Atk. Modifiers
+(13191, 4412, 11), -- P. Def. Modifiers
+(13191, 4413, 11), -- M. Def. Modifiers
+(13191, 4414, 2), -- Armor Type
+(13191, 4415, 5), -- Weapon Type
+(13191, 4416, 4), -- Races
 -- Gloomy Head Milk Cow
-(13192, 4390, 1), -- Mystic Immunity
-(13192, 4408, 1), -- HP Increase (1x)
-(13192, 4409, 1), -- MP Increase (1x)
-(13192, 4410, 11), -- Average P. Atk.
-(13192, 4411, 11), -- Average M. Atk.
-(13192, 4412, 11), -- Average P. Def.
-(13192, 4413, 11), -- Average M. Def.
-(13192, 4414, 2), -- Standard Type
-(13192, 4415, 5), -- Blunt Weapons
-(13192, 4416, 4), -- Animals
+(13192, 4390, 1), -- NPC Abnormal Immunity
+(13192, 4408, 1), -- HP Modifiers
+(13192, 4409, 1), -- MP Modifiers
+(13192, 4410, 11), -- P. Atk. Modifiers
+(13192, 4411, 11), -- M. Atk. Modifiers
+(13192, 4412, 11), -- P. Def. Modifiers
+(13192, 4413, 11), -- M. Def. Modifiers
+(13192, 4414, 2), -- Armor Type
+(13192, 4415, 5), -- Weapon Type
+(13192, 4416, 4), -- Races
 -- 
-(13193, 4390, 1), -- Mystic Immunity
-(13193, 4408, 1), -- HP Increase (1x)
-(13193, 4409, 1), -- MP Increase (1x)
-(13193, 4410, 11), -- Average P. Atk.
-(13193, 4411, 11), -- Average M. Atk.
-(13193, 4412, 11), -- Average P. Def.
-(13193, 4413, 11), -- Average M. Def.
-(13193, 4414, 2), -- Standard Type
-(13193, 4415, 1), -- Bare Hands
-(13193, 4416, 2), -- Magic Creatures
+(13193, 4390, 1), -- NPC Abnormal Immunity
+(13193, 4408, 1), -- HP Modifiers
+(13193, 4409, 1), -- MP Modifiers
+(13193, 4410, 11), -- P. Atk. Modifiers
+(13193, 4411, 11), -- M. Atk. Modifiers
+(13193, 4412, 11), -- P. Def. Modifiers
+(13193, 4413, 11), -- M. Def. Modifiers
+(13193, 4414, 2), -- Armor Type
+(13193, 4415, 1), -- Weapon Type
+(13193, 4416, 2), -- Races
 -- 
-(13194, 4390, 1), -- Mystic Immunity
-(13194, 4408, 1), -- HP Increase (1x)
-(13194, 4409, 1), -- MP Increase (1x)
-(13194, 4410, 11), -- Average P. Atk.
-(13194, 4411, 11), -- Average M. Atk.
-(13194, 4412, 11), -- Average P. Def.
-(13194, 4413, 11), -- Average M. Def.
-(13194, 4414, 2), -- Standard Type
-(13194, 4415, 5), -- Blunt Weapons
-(13194, 4416, 2), -- Magic Creatures
+(13194, 4390, 1), -- NPC Abnormal Immunity
+(13194, 4408, 1), -- HP Modifiers
+(13194, 4409, 1), -- MP Modifiers
+(13194, 4410, 11), -- P. Atk. Modifiers
+(13194, 4411, 11), -- M. Atk. Modifiers
+(13194, 4412, 11), -- P. Def. Modifiers
+(13194, 4413, 11), -- M. Def. Modifiers
+(13194, 4414, 2), -- Armor Type
+(13194, 4415, 5), -- Weapon Type
+(13194, 4416, 2), -- Races
 -- 
-(13195, 4390, 1), -- Mystic Immunity
-(13195, 4408, 1), -- HP Increase (1x)
-(13195, 4409, 1), -- MP Increase (1x)
-(13195, 4410, 11), -- Average P. Atk.
-(13195, 4411, 11), -- Average M. Atk.
-(13195, 4412, 11), -- Average P. Def.
-(13195, 4413, 11), -- Average M. Def.
-(13195, 4414, 2), -- Standard Type
-(13195, 4415, 5), -- Blunt Weapons
-(13195, 4416, 2), -- Magic Creatures
+(13195, 4390, 1), -- NPC Abnormal Immunity
+(13195, 4408, 1), -- HP Modifiers
+(13195, 4409, 1), -- MP Modifiers
+(13195, 4410, 11), -- P. Atk. Modifiers
+(13195, 4411, 11), -- M. Atk. Modifiers
+(13195, 4412, 11), -- P. Def. Modifiers
+(13195, 4413, 11), -- M. Def. Modifiers
+(13195, 4414, 2), -- Armor Type
+(13195, 4415, 5), -- Weapon Type
+(13195, 4416, 2), -- Races
 -- Huge Pig
-(13196, 4390, 1), -- Mystic Immunity
-(13196, 4408, 1), -- HP Increase (1x)
-(13196, 4409, 1), -- MP Increase (1x)
-(13196, 4410, 11), -- Average P. Atk.
-(13196, 4411, 11), -- Average M. Atk.
-(13196, 4412, 11), -- Average P. Def.
-(13196, 4413, 11), -- Average M. Def.
-(13196, 4414, 2), -- Standard Type
-(13196, 4415, 5), -- Blunt Weapons
-(13196, 4416, 4), -- Animals
+(13196, 4390, 1), -- NPC Abnormal Immunity
+(13196, 4408, 1), -- HP Modifiers
+(13196, 4409, 1), -- MP Modifiers
+(13196, 4410, 11), -- P. Atk. Modifiers
+(13196, 4411, 11), -- M. Atk. Modifiers
+(13196, 4412, 11), -- P. Def. Modifiers
+(13196, 4413, 11), -- M. Def. Modifiers
+(13196, 4414, 2), -- Armor Type
+(13196, 4415, 5), -- Weapon Type
+(13196, 4416, 4), -- Races
 -- Guardian's Strider
-(13197, 4408, 1), -- HP Increase (1x)
-(13197, 4409, 1), -- MP Increase (1x)
-(13197, 4410, 11), -- Average P. Atk.
-(13197, 4411, 11), -- Average M. Atk.
-(13197, 4412, 11), -- Average P. Def.
-(13197, 4413, 11), -- Average M. Def.
-(13197, 4414, 2), -- Standard Type
-(13197, 4415, 1), -- Bare Hands
-(13197, 4416, 19), -- Others
+(13197, 4408, 1), -- HP Modifiers
+(13197, 4409, 1), -- MP Modifiers
+(13197, 4410, 11), -- P. Atk. Modifiers
+(13197, 4411, 11), -- M. Atk. Modifiers
+(13197, 4412, 11), -- P. Def. Modifiers
+(13197, 4413, 11), -- M. Def. Modifiers
+(13197, 4414, 2), -- Armor Type
+(13197, 4415, 1), -- Weapon Type
+(13197, 4416, 19), -- Races
 -- Native
-(13198, 4408, 1), -- HP Increase (1x)
-(13198, 4409, 1), -- MP Increase (1x)
-(13198, 4410, 11), -- Average P. Atk.
-(13198, 4411, 11), -- Average M. Atk.
-(13198, 4412, 11), -- Average P. Def.
-(13198, 4413, 11), -- Average M. Def.
-(13198, 4414, 2), -- Standard Type
-(13198, 4415, 1), -- Bare Hands
-(13198, 4416, 14), -- Humans
+(13198, 4408, 1), -- HP Modifiers
+(13198, 4409, 1), -- MP Modifiers
+(13198, 4410, 11), -- P. Atk. Modifiers
+(13198, 4411, 11), -- M. Atk. Modifiers
+(13198, 4412, 11), -- P. Def. Modifiers
+(13198, 4413, 11), -- M. Def. Modifiers
+(13198, 4414, 2), -- Armor Type
+(13198, 4415, 1), -- Weapon Type
+(13198, 4416, 14), -- Races
 -- Native
-(13199, 4408, 1), -- HP Increase (1x)
-(13199, 4409, 1), -- MP Increase (1x)
-(13199, 4410, 11), -- Average P. Atk.
-(13199, 4411, 11), -- Average M. Atk.
-(13199, 4412, 11), -- Average P. Def.
-(13199, 4413, 11), -- Average M. Def.
-(13199, 4414, 2), -- Standard Type
-(13199, 4415, 1), -- Bare Hands
-(13199, 4416, 14), -- Humans
+(13199, 4408, 1), -- HP Modifiers
+(13199, 4409, 1), -- MP Modifiers
+(13199, 4410, 11), -- P. Atk. Modifiers
+(13199, 4411, 11), -- M. Atk. Modifiers
+(13199, 4412, 11), -- P. Def. Modifiers
+(13199, 4413, 11), -- M. Def. Modifiers
+(13199, 4414, 2), -- Armor Type
+(13199, 4415, 1), -- Weapon Type
+(13199, 4416, 14), -- Races
 -- Young Child
-(13200, 4408, 1), -- HP Increase (1x)
-(13200, 4409, 1), -- MP Increase (1x)
-(13200, 4410, 11), -- Average P. Atk.
-(13200, 4411, 11), -- Average M. Atk.
-(13200, 4412, 11), -- Average P. Def.
-(13200, 4413, 11), -- Average M. Def.
-(13200, 4414, 2), -- Standard Type
-(13200, 4415, 1), -- Bare Hands
-(13200, 4416, 14), -- Humans
+(13200, 4408, 1), -- HP Modifiers
+(13200, 4409, 1), -- MP Modifiers
+(13200, 4410, 11), -- P. Atk. Modifiers
+(13200, 4411, 11), -- M. Atk. Modifiers
+(13200, 4412, 11), -- P. Def. Modifiers
+(13200, 4413, 11), -- M. Def. Modifiers
+(13200, 4414, 2), -- Armor Type
+(13200, 4415, 1), -- Weapon Type
+(13200, 4416, 14), -- Races
 -- Guards of the Dawn
-(13201, 4408, 1), -- HP Increase (1x)
-(13201, 4409, 1), -- MP Increase (1x)
-(13201, 4410, 11), -- Average P. Atk.
-(13201, 4411, 11), -- Average M. Atk.
-(13201, 4412, 11), -- Average P. Def.
-(13201, 4413, 11), -- Average M. Def.
-(13201, 4414, 2), -- Standard Type
-(13201, 4415, 1), -- Bare Hands
-(13201, 4416, 14), -- Humans
+(13201, 4408, 1), -- HP Modifiers
+(13201, 4409, 1), -- MP Modifiers
+(13201, 4410, 11), -- P. Atk. Modifiers
+(13201, 4411, 11), -- M. Atk. Modifiers
+(13201, 4412, 11), -- P. Def. Modifiers
+(13201, 4413, 11), -- M. Def. Modifiers
+(13201, 4414, 2), -- Armor Type
+(13201, 4415, 1), -- Weapon Type
+(13201, 4416, 14), -- Races
 -- Trap
-(13202, 4390, 1), -- Mystic Immunity
-(13202, 4408, 1), -- HP Increase (1x)
-(13202, 4409, 1), -- MP Increase (1x)
-(13202, 4410, 11), -- Average P. Atk.
-(13202, 4411, 11), -- Average M. Atk.
-(13202, 4412, 11), -- Average P. Def.
-(13202, 4413, 11), -- Average M. Def.
-(13202, 4414, 2), -- Standard Type
-(13202, 4415, 1), -- Bare Hands
-(13202, 4416, 19), -- Others
+(13202, 4390, 1), -- NPC Abnormal Immunity
+(13202, 4408, 1), -- HP Modifiers
+(13202, 4409, 1), -- MP Modifiers
+(13202, 4410, 11), -- P. Atk. Modifiers
+(13202, 4411, 11), -- M. Atk. Modifiers
+(13202, 4412, 11), -- P. Def. Modifiers
+(13202, 4413, 11), -- M. Def. Modifiers
+(13202, 4414, 2), -- Armor Type
+(13202, 4415, 1), -- Weapon Type
+(13202, 4416, 19), -- Races
 (13202, 5267, 11), -- Trap Explosion
 -- Trap
-(13203, 4390, 1), -- Mystic Immunity
-(13203, 4408, 1), -- HP Increase (1x)
-(13203, 4409, 1), -- MP Increase (1x)
-(13203, 4410, 11), -- Average P. Atk.
-(13203, 4411, 11), -- Average M. Atk.
-(13203, 4412, 11), -- Average P. Def.
-(13203, 4413, 11), -- Average M. Def.
-(13203, 4414, 2), -- Standard Type
-(13203, 4415, 1), -- Bare Hands
-(13203, 4416, 19), -- Others
+(13203, 4390, 1), -- NPC Abnormal Immunity
+(13203, 4408, 1), -- HP Modifiers
+(13203, 4409, 1), -- MP Modifiers
+(13203, 4410, 11), -- P. Atk. Modifiers
+(13203, 4411, 11), -- M. Atk. Modifiers
+(13203, 4412, 11), -- P. Def. Modifiers
+(13203, 4413, 11), -- M. Def. Modifiers
+(13203, 4414, 2), -- Armor Type
+(13203, 4415, 1), -- Weapon Type
+(13203, 4416, 19), -- Races
 (13203, 5267, 12), -- Trap Explosion
 -- Trap
-(13204, 4390, 1), -- Mystic Immunity
-(13204, 4408, 1), -- HP Increase (1x)
-(13204, 4409, 1), -- MP Increase (1x)
-(13204, 4410, 11), -- Average P. Atk.
-(13204, 4411, 11), -- Average M. Atk.
-(13204, 4412, 11), -- Average P. Def.
-(13204, 4413, 11), -- Average M. Def.
-(13204, 4414, 2), -- Standard Type
-(13204, 4415, 1), -- Bare Hands
-(13204, 4416, 19), -- Others
+(13204, 4390, 1), -- NPC Abnormal Immunity
+(13204, 4408, 1), -- HP Modifiers
+(13204, 4409, 1), -- MP Modifiers
+(13204, 4410, 11), -- P. Atk. Modifiers
+(13204, 4411, 11), -- M. Atk. Modifiers
+(13204, 4412, 11), -- P. Def. Modifiers
+(13204, 4413, 11), -- M. Def. Modifiers
+(13204, 4414, 2), -- Armor Type
+(13204, 4415, 1), -- Weapon Type
+(13204, 4416, 19), -- Races
 (13204, 5267, 13), -- Trap Explosion
 -- Trap
-(13205, 4390, 1), -- Mystic Immunity
-(13205, 4408, 1), -- HP Increase (1x)
-(13205, 4409, 1), -- MP Increase (1x)
-(13205, 4410, 11), -- Average P. Atk.
-(13205, 4411, 11), -- Average M. Atk.
-(13205, 4412, 11), -- Average P. Def.
-(13205, 4413, 11), -- Average M. Def.
-(13205, 4414, 2), -- Standard Type
-(13205, 4415, 1), -- Bare Hands
-(13205, 4416, 19), -- Others
+(13205, 4390, 1), -- NPC Abnormal Immunity
+(13205, 4408, 1), -- HP Modifiers
+(13205, 4409, 1), -- MP Modifiers
+(13205, 4410, 11), -- P. Atk. Modifiers
+(13205, 4411, 11), -- M. Atk. Modifiers
+(13205, 4412, 11), -- P. Def. Modifiers
+(13205, 4413, 11), -- M. Def. Modifiers
+(13205, 4414, 2), -- Armor Type
+(13205, 4415, 1), -- Weapon Type
+(13205, 4416, 19), -- Races
 (13205, 5267, 14), -- Trap Explosion
 -- Trap
-(13206, 4390, 1), -- Mystic Immunity
-(13206, 4408, 1), -- HP Increase (1x)
-(13206, 4409, 1), -- MP Increase (1x)
-(13206, 4410, 11), -- Average P. Atk.
-(13206, 4411, 11), -- Average M. Atk.
-(13206, 4412, 11), -- Average P. Def.
-(13206, 4413, 11), -- Average M. Def.
-(13206, 4414, 2), -- Standard Type
-(13206, 4415, 1), -- Bare Hands
-(13206, 4416, 19), -- Others
+(13206, 4390, 1), -- NPC Abnormal Immunity
+(13206, 4408, 1), -- HP Modifiers
+(13206, 4409, 1), -- MP Modifiers
+(13206, 4410, 11), -- P. Atk. Modifiers
+(13206, 4411, 11), -- M. Atk. Modifiers
+(13206, 4412, 11), -- P. Def. Modifiers
+(13206, 4413, 11), -- M. Def. Modifiers
+(13206, 4414, 2), -- Armor Type
+(13206, 4415, 1), -- Weapon Type
+(13206, 4416, 19), -- Races
 (13206, 5267, 15), -- Trap Explosion
 -- Trap
-(13207, 4390, 1), -- Mystic Immunity
-(13207, 4408, 1), -- HP Increase (1x)
-(13207, 4409, 1), -- MP Increase (1x)
-(13207, 4410, 11), -- Average P. Atk.
-(13207, 4411, 11), -- Average M. Atk.
-(13207, 4412, 11), -- Average P. Def.
-(13207, 4413, 11), -- Average M. Def.
-(13207, 4414, 2), -- Standard Type
-(13207, 4415, 1), -- Bare Hands
-(13207, 4416, 19), -- Others
+(13207, 4390, 1), -- NPC Abnormal Immunity
+(13207, 4408, 1), -- HP Modifiers
+(13207, 4409, 1), -- MP Modifiers
+(13207, 4410, 11), -- P. Atk. Modifiers
+(13207, 4411, 11), -- M. Atk. Modifiers
+(13207, 4412, 11), -- P. Def. Modifiers
+(13207, 4413, 11), -- M. Def. Modifiers
+(13207, 4414, 2), -- Armor Type
+(13207, 4415, 1), -- Weapon Type
+(13207, 4416, 19), -- Races
 (13207, 5267, 16), -- Trap Explosion
 -- Trap
-(13208, 4390, 1), -- Mystic Immunity
-(13208, 4408, 1), -- HP Increase (1x)
-(13208, 4409, 1), -- MP Increase (1x)
-(13208, 4410, 11), -- Average P. Atk.
-(13208, 4411, 11), -- Average M. Atk.
-(13208, 4412, 11), -- Average P. Def.
-(13208, 4413, 11), -- Average M. Def.
-(13208, 4414, 2), -- Standard Type
-(13208, 4415, 1), -- Bare Hands
-(13208, 4416, 19), -- Others
+(13208, 4390, 1), -- NPC Abnormal Immunity
+(13208, 4408, 1), -- HP Modifiers
+(13208, 4409, 1), -- MP Modifiers
+(13208, 4410, 11), -- P. Atk. Modifiers
+(13208, 4411, 11), -- M. Atk. Modifiers
+(13208, 4412, 11), -- P. Def. Modifiers
+(13208, 4413, 11), -- M. Def. Modifiers
+(13208, 4414, 2), -- Armor Type
+(13208, 4415, 1), -- Weapon Type
+(13208, 4416, 19), -- Races
 (13208, 5267, 17), -- Trap Explosion
 -- Trap
-(13209, 4390, 1), -- Mystic Immunity
-(13209, 4408, 1), -- HP Increase (1x)
-(13209, 4409, 1), -- MP Increase (1x)
-(13209, 4410, 11), -- Average P. Atk.
-(13209, 4411, 11), -- Average M. Atk.
-(13209, 4412, 11), -- Average P. Def.
-(13209, 4413, 11), -- Average M. Def.
-(13209, 4414, 2), -- Standard Type
-(13209, 4415, 1), -- Bare Hands
-(13209, 4416, 19), -- Others
+(13209, 4390, 1), -- NPC Abnormal Immunity
+(13209, 4408, 1), -- HP Modifiers
+(13209, 4409, 1), -- MP Modifiers
+(13209, 4410, 11), -- P. Atk. Modifiers
+(13209, 4411, 11), -- M. Atk. Modifiers
+(13209, 4412, 11), -- P. Def. Modifiers
+(13209, 4413, 11), -- M. Def. Modifiers
+(13209, 4414, 2), -- Armor Type
+(13209, 4415, 1), -- Weapon Type
+(13209, 4416, 19), -- Races
 (13209, 5267, 18), -- Trap Explosion
 -- Trap
-(13210, 4390, 1), -- Mystic Immunity
-(13210, 4408, 1), -- HP Increase (1x)
-(13210, 4409, 1), -- MP Increase (1x)
-(13210, 4410, 11), -- Average P. Atk.
-(13210, 4411, 11), -- Average M. Atk.
-(13210, 4412, 11), -- Average P. Def.
-(13210, 4413, 11), -- Average M. Def.
-(13210, 4414, 2), -- Standard Type
-(13210, 4415, 1), -- Bare Hands
-(13210, 4416, 19), -- Others
+(13210, 4390, 1), -- NPC Abnormal Immunity
+(13210, 4408, 1), -- HP Modifiers
+(13210, 4409, 1), -- MP Modifiers
+(13210, 4410, 11), -- P. Atk. Modifiers
+(13210, 4411, 11), -- M. Atk. Modifiers
+(13210, 4412, 11), -- P. Def. Modifiers
+(13210, 4413, 11), -- M. Def. Modifiers
+(13210, 4414, 2), -- Armor Type
+(13210, 4415, 1), -- Weapon Type
+(13210, 4416, 19), -- Races
 (13210, 5267, 19), -- Trap Explosion
 -- Trap
-(13211, 4390, 1), -- Mystic Immunity
-(13211, 4408, 1), -- HP Increase (1x)
-(13211, 4409, 1), -- MP Increase (1x)
-(13211, 4410, 11), -- Average P. Atk.
-(13211, 4411, 11), -- Average M. Atk.
-(13211, 4412, 11), -- Average P. Def.
-(13211, 4413, 11), -- Average M. Def.
-(13211, 4414, 2), -- Standard Type
-(13211, 4415, 1), -- Bare Hands
-(13211, 4416, 19), -- Others
+(13211, 4390, 1), -- NPC Abnormal Immunity
+(13211, 4408, 1), -- HP Modifiers
+(13211, 4409, 1), -- MP Modifiers
+(13211, 4410, 11), -- P. Atk. Modifiers
+(13211, 4411, 11), -- M. Atk. Modifiers
+(13211, 4412, 11), -- P. Def. Modifiers
+(13211, 4413, 11), -- M. Def. Modifiers
+(13211, 4414, 2), -- Armor Type
+(13211, 4415, 1), -- Weapon Type
+(13211, 4416, 19), -- Races
 (13211, 5267, 20), -- Trap Explosion
 -- Trap
-(13212, 4390, 1), -- Mystic Immunity
-(13212, 4408, 1), -- HP Increase (1x)
-(13212, 4409, 1), -- MP Increase (1x)
-(13212, 4410, 11), -- Average P. Atk.
-(13212, 4411, 11), -- Average M. Atk.
-(13212, 4412, 11), -- Average P. Def.
-(13212, 4413, 11), -- Average M. Def.
-(13212, 4414, 2), -- Standard Type
-(13212, 4415, 1), -- Bare Hands
-(13212, 4416, 19), -- Others
+(13212, 4390, 1), -- NPC Abnormal Immunity
+(13212, 4408, 1), -- HP Modifiers
+(13212, 4409, 1), -- MP Modifiers
+(13212, 4410, 11), -- P. Atk. Modifiers
+(13212, 4411, 11), -- M. Atk. Modifiers
+(13212, 4412, 11), -- P. Def. Modifiers
+(13212, 4413, 11), -- M. Def. Modifiers
+(13212, 4414, 2), -- Armor Type
+(13212, 4415, 1), -- Weapon Type
+(13212, 4416, 19), -- Races
 (13212, 5267, 21), -- Trap Explosion
 -- Trap
-(13213, 4390, 1), -- Mystic Immunity
-(13213, 4408, 1), -- HP Increase (1x)
-(13213, 4409, 1), -- MP Increase (1x)
-(13213, 4410, 11), -- Average P. Atk.
-(13213, 4411, 11), -- Average M. Atk.
-(13213, 4412, 11), -- Average P. Def.
-(13213, 4413, 11), -- Average M. Def.
-(13213, 4414, 2), -- Standard Type
-(13213, 4415, 1), -- Bare Hands
-(13213, 4416, 19), -- Others
+(13213, 4390, 1), -- NPC Abnormal Immunity
+(13213, 4408, 1), -- HP Modifiers
+(13213, 4409, 1), -- MP Modifiers
+(13213, 4410, 11), -- P. Atk. Modifiers
+(13213, 4411, 11), -- M. Atk. Modifiers
+(13213, 4412, 11), -- P. Def. Modifiers
+(13213, 4413, 11), -- M. Def. Modifiers
+(13213, 4414, 2), -- Armor Type
+(13213, 4415, 1), -- Weapon Type
+(13213, 4416, 19), -- Races
 (13213, 5268, 7), -- Poison
 -- Trap
-(13214, 4390, 1), -- Mystic Immunity
-(13214, 4408, 1), -- HP Increase (1x)
-(13214, 4409, 1), -- MP Increase (1x)
-(13214, 4410, 11), -- Average P. Atk.
-(13214, 4411, 11), -- Average M. Atk.
-(13214, 4412, 11), -- Average P. Def.
-(13214, 4413, 11), -- Average M. Def.
-(13214, 4414, 2), -- Standard Type
-(13214, 4415, 1), -- Bare Hands
-(13214, 4416, 19), -- Others
+(13214, 4390, 1), -- NPC Abnormal Immunity
+(13214, 4408, 1), -- HP Modifiers
+(13214, 4409, 1), -- MP Modifiers
+(13214, 4410, 11), -- P. Atk. Modifiers
+(13214, 4411, 11), -- M. Atk. Modifiers
+(13214, 4412, 11), -- P. Def. Modifiers
+(13214, 4413, 11), -- M. Def. Modifiers
+(13214, 4414, 2), -- Armor Type
+(13214, 4415, 1), -- Weapon Type
+(13214, 4416, 19), -- Races
 (13214, 5268, 8), -- Poison
 -- Trap
-(13215, 4390, 1), -- Mystic Immunity
-(13215, 4408, 1), -- HP Increase (1x)
-(13215, 4409, 1), -- MP Increase (1x)
-(13215, 4410, 11), -- Average P. Atk.
-(13215, 4411, 11), -- Average M. Atk.
-(13215, 4412, 11), -- Average P. Def.
-(13215, 4413, 11), -- Average M. Def.
-(13215, 4414, 2), -- Standard Type
-(13215, 4415, 1), -- Bare Hands
-(13215, 4416, 19), -- Others
+(13215, 4390, 1), -- NPC Abnormal Immunity
+(13215, 4408, 1), -- HP Modifiers
+(13215, 4409, 1), -- MP Modifiers
+(13215, 4410, 11), -- P. Atk. Modifiers
+(13215, 4411, 11), -- M. Atk. Modifiers
+(13215, 4412, 11), -- P. Def. Modifiers
+(13215, 4413, 11), -- M. Def. Modifiers
+(13215, 4414, 2), -- Armor Type
+(13215, 4415, 1), -- Weapon Type
+(13215, 4416, 19), -- Races
 (13215, 5268, 9), -- Poison
 -- Trap
-(13216, 4390, 1), -- Mystic Immunity
-(13216, 4408, 1), -- HP Increase (1x)
-(13216, 4409, 1), -- MP Increase (1x)
-(13216, 4410, 11), -- Average P. Atk.
-(13216, 4411, 11), -- Average M. Atk.
-(13216, 4412, 11), -- Average P. Def.
-(13216, 4413, 11), -- Average M. Def.
-(13216, 4414, 2), -- Standard Type
-(13216, 4415, 1), -- Bare Hands
-(13216, 4416, 19), -- Others
+(13216, 4390, 1), -- NPC Abnormal Immunity
+(13216, 4408, 1), -- HP Modifiers
+(13216, 4409, 1), -- MP Modifiers
+(13216, 4410, 11), -- P. Atk. Modifiers
+(13216, 4411, 11), -- M. Atk. Modifiers
+(13216, 4412, 11), -- P. Def. Modifiers
+(13216, 4413, 11), -- M. Def. Modifiers
+(13216, 4414, 2), -- Armor Type
+(13216, 4415, 1), -- Weapon Type
+(13216, 4416, 19), -- Races
 (13216, 5268, 10), -- Poison
 -- Trap
-(13217, 4390, 1), -- Mystic Immunity
-(13217, 4408, 1), -- HP Increase (1x)
-(13217, 4409, 1), -- MP Increase (1x)
-(13217, 4410, 11), -- Average P. Atk.
-(13217, 4411, 11), -- Average M. Atk.
-(13217, 4412, 11), -- Average P. Def.
-(13217, 4413, 11), -- Average M. Def.
-(13217, 4414, 2), -- Standard Type
-(13217, 4415, 1), -- Bare Hands
-(13217, 4416, 19), -- Others
+(13217, 4390, 1), -- NPC Abnormal Immunity
+(13217, 4408, 1), -- HP Modifiers
+(13217, 4409, 1), -- MP Modifiers
+(13217, 4410, 11), -- P. Atk. Modifiers
+(13217, 4411, 11), -- M. Atk. Modifiers
+(13217, 4412, 11), -- P. Def. Modifiers
+(13217, 4413, 11), -- M. Def. Modifiers
+(13217, 4414, 2), -- Armor Type
+(13217, 4415, 1), -- Weapon Type
+(13217, 4416, 19), -- Races
 (13217, 5268, 11), -- Poison
 -- Trap
-(13218, 4390, 1), -- Mystic Immunity
-(13218, 4408, 1), -- HP Increase (1x)
-(13218, 4409, 1), -- MP Increase (1x)
-(13218, 4410, 11), -- Average P. Atk.
-(13218, 4411, 11), -- Average M. Atk.
-(13218, 4412, 11), -- Average P. Def.
-(13218, 4413, 11), -- Average M. Def.
-(13218, 4414, 2), -- Standard Type
-(13218, 4415, 1), -- Bare Hands
-(13218, 4416, 19), -- Others
+(13218, 4390, 1), -- NPC Abnormal Immunity
+(13218, 4408, 1), -- HP Modifiers
+(13218, 4409, 1), -- MP Modifiers
+(13218, 4410, 11), -- P. Atk. Modifiers
+(13218, 4411, 11), -- M. Atk. Modifiers
+(13218, 4412, 11), -- P. Def. Modifiers
+(13218, 4413, 11), -- M. Def. Modifiers
+(13218, 4414, 2), -- Armor Type
+(13218, 4415, 1), -- Weapon Type
+(13218, 4416, 19), -- Races
 (13218, 5268, 12), -- Poison
 -- Trap
-(13219, 4390, 1), -- Mystic Immunity
-(13219, 4408, 1), -- HP Increase (1x)
-(13219, 4409, 1), -- MP Increase (1x)
-(13219, 4410, 11), -- Average P. Atk.
-(13219, 4411, 11), -- Average M. Atk.
-(13219, 4412, 11), -- Average P. Def.
-(13219, 4413, 11), -- Average M. Def.
-(13219, 4414, 2), -- Standard Type
-(13219, 4415, 1), -- Bare Hands
-(13219, 4416, 19), -- Others
+(13219, 4390, 1), -- NPC Abnormal Immunity
+(13219, 4408, 1), -- HP Modifiers
+(13219, 4409, 1), -- MP Modifiers
+(13219, 4410, 11), -- P. Atk. Modifiers
+(13219, 4411, 11), -- M. Atk. Modifiers
+(13219, 4412, 11), -- P. Def. Modifiers
+(13219, 4413, 11), -- M. Def. Modifiers
+(13219, 4414, 2), -- Armor Type
+(13219, 4415, 1), -- Weapon Type
+(13219, 4416, 19), -- Races
 (13219, 5268, 13), -- Poison
 -- Trap
-(13220, 4390, 1), -- Mystic Immunity
-(13220, 4408, 1), -- HP Increase (1x)
-(13220, 4409, 1), -- MP Increase (1x)
-(13220, 4410, 11), -- Average P. Atk.
-(13220, 4411, 11), -- Average M. Atk.
-(13220, 4412, 11), -- Average P. Def.
-(13220, 4413, 11), -- Average M. Def.
-(13220, 4414, 2), -- Standard Type
-(13220, 4415, 1), -- Bare Hands
-(13220, 4416, 19), -- Others
+(13220, 4390, 1), -- NPC Abnormal Immunity
+(13220, 4408, 1), -- HP Modifiers
+(13220, 4409, 1), -- MP Modifiers
+(13220, 4410, 11), -- P. Atk. Modifiers
+(13220, 4411, 11), -- M. Atk. Modifiers
+(13220, 4412, 11), -- P. Def. Modifiers
+(13220, 4413, 11), -- M. Def. Modifiers
+(13220, 4414, 2), -- Armor Type
+(13220, 4415, 1), -- Weapon Type
+(13220, 4416, 19), -- Races
 (13220, 5268, 14), -- Poison
 -- Trap
-(13221, 4390, 1), -- Mystic Immunity
-(13221, 4408, 1), -- HP Increase (1x)
-(13221, 4409, 1), -- MP Increase (1x)
-(13221, 4410, 11), -- Average P. Atk.
-(13221, 4411, 11), -- Average M. Atk.
-(13221, 4412, 11), -- Average P. Def.
-(13221, 4413, 11), -- Average M. Def.
-(13221, 4414, 2), -- Standard Type
-(13221, 4415, 1), -- Bare Hands
-(13221, 4416, 19), -- Others
+(13221, 4390, 1), -- NPC Abnormal Immunity
+(13221, 4408, 1), -- HP Modifiers
+(13221, 4409, 1), -- MP Modifiers
+(13221, 4410, 11), -- P. Atk. Modifiers
+(13221, 4411, 11), -- M. Atk. Modifiers
+(13221, 4412, 11), -- P. Def. Modifiers
+(13221, 4413, 11), -- M. Def. Modifiers
+(13221, 4414, 2), -- Armor Type
+(13221, 4415, 1), -- Weapon Type
+(13221, 4416, 19), -- Races
 (13221, 5268, 15), -- Poison
 -- Trap
-(13222, 4390, 1), -- Mystic Immunity
-(13222, 4408, 1), -- HP Increase (1x)
-(13222, 4409, 1), -- MP Increase (1x)
-(13222, 4410, 11), -- Average P. Atk.
-(13222, 4411, 11), -- Average M. Atk.
-(13222, 4412, 11), -- Average P. Def.
-(13222, 4413, 11), -- Average M. Def.
-(13222, 4414, 2), -- Standard Type
-(13222, 4415, 1), -- Bare Hands
-(13222, 4416, 19), -- Others
+(13222, 4390, 1), -- NPC Abnormal Immunity
+(13222, 4408, 1), -- HP Modifiers
+(13222, 4409, 1), -- MP Modifiers
+(13222, 4410, 11), -- P. Atk. Modifiers
+(13222, 4411, 11), -- M. Atk. Modifiers
+(13222, 4412, 11), -- P. Def. Modifiers
+(13222, 4413, 11), -- M. Def. Modifiers
+(13222, 4414, 2), -- Armor Type
+(13222, 4415, 1), -- Weapon Type
+(13222, 4416, 19), -- Races
 (13222, 5268, 16), -- Poison
 -- Trap
-(13223, 4390, 1), -- Mystic Immunity
-(13223, 4408, 1), -- HP Increase (1x)
-(13223, 4409, 1), -- MP Increase (1x)
-(13223, 4410, 11), -- Average P. Atk.
-(13223, 4411, 11), -- Average M. Atk.
-(13223, 4412, 11), -- Average P. Def.
-(13223, 4413, 11), -- Average M. Def.
-(13223, 4414, 2), -- Standard Type
-(13223, 4415, 1), -- Bare Hands
-(13223, 4416, 19), -- Others
+(13223, 4390, 1), -- NPC Abnormal Immunity
+(13223, 4408, 1), -- HP Modifiers
+(13223, 4409, 1), -- MP Modifiers
+(13223, 4410, 11), -- P. Atk. Modifiers
+(13223, 4411, 11), -- M. Atk. Modifiers
+(13223, 4412, 11), -- P. Def. Modifiers
+(13223, 4413, 11), -- M. Def. Modifiers
+(13223, 4414, 2), -- Armor Type
+(13223, 4415, 1), -- Weapon Type
+(13223, 4416, 19), -- Races
 (13223, 5268, 17), -- Poison
 -- Trap
-(13224, 4390, 1), -- Mystic Immunity
-(13224, 4408, 1), -- HP Increase (1x)
-(13224, 4409, 1), -- MP Increase (1x)
-(13224, 4410, 11), -- Average P. Atk.
-(13224, 4411, 11), -- Average M. Atk.
-(13224, 4412, 11), -- Average P. Def.
-(13224, 4413, 11), -- Average M. Def.
-(13224, 4414, 2), -- Standard Type
-(13224, 4415, 1), -- Bare Hands
-(13224, 4416, 19), -- Others
+(13224, 4390, 1), -- NPC Abnormal Immunity
+(13224, 4408, 1), -- HP Modifiers
+(13224, 4409, 1), -- MP Modifiers
+(13224, 4410, 11), -- P. Atk. Modifiers
+(13224, 4411, 11), -- M. Atk. Modifiers
+(13224, 4412, 11), -- P. Def. Modifiers
+(13224, 4413, 11), -- M. Def. Modifiers
+(13224, 4414, 2), -- Armor Type
+(13224, 4415, 1), -- Weapon Type
+(13224, 4416, 19), -- Races
 (13224, 5269, 7); -- Slow Trap
 
 INSERT INTO `npcskills` VALUES
 -- Trap
-(13225, 4390, 1), -- Mystic Immunity
-(13225, 4408, 1), -- HP Increase (1x)
-(13225, 4409, 1), -- MP Increase (1x)
-(13225, 4410, 11), -- Average P. Atk.
-(13225, 4411, 11), -- Average M. Atk.
-(13225, 4412, 11), -- Average P. Def.
-(13225, 4413, 11), -- Average M. Def.
-(13225, 4414, 2), -- Standard Type
-(13225, 4415, 1), -- Bare Hands
-(13225, 4416, 19), -- Others
+(13225, 4390, 1), -- NPC Abnormal Immunity
+(13225, 4408, 1), -- HP Modifiers
+(13225, 4409, 1), -- MP Modifiers
+(13225, 4410, 11), -- P. Atk. Modifiers
+(13225, 4411, 11), -- M. Atk. Modifiers
+(13225, 4412, 11), -- P. Def. Modifiers
+(13225, 4413, 11), -- M. Def. Modifiers
+(13225, 4414, 2), -- Armor Type
+(13225, 4415, 1), -- Weapon Type
+(13225, 4416, 19), -- Races
 (13225, 5269, 8), -- Slow Trap
 -- Trap
-(13226, 4390, 1), -- Mystic Immunity
-(13226, 4408, 1), -- HP Increase (1x)
-(13226, 4409, 1), -- MP Increase (1x)
-(13226, 4410, 11), -- Average P. Atk.
-(13226, 4411, 11), -- Average M. Atk.
-(13226, 4412, 11), -- Average P. Def.
-(13226, 4413, 11), -- Average M. Def.
-(13226, 4414, 2), -- Standard Type
-(13226, 4415, 1), -- Bare Hands
-(13226, 4416, 19), -- Others
+(13226, 4390, 1), -- NPC Abnormal Immunity
+(13226, 4408, 1), -- HP Modifiers
+(13226, 4409, 1), -- MP Modifiers
+(13226, 4410, 11), -- P. Atk. Modifiers
+(13226, 4411, 11), -- M. Atk. Modifiers
+(13226, 4412, 11), -- P. Def. Modifiers
+(13226, 4413, 11), -- M. Def. Modifiers
+(13226, 4414, 2), -- Armor Type
+(13226, 4415, 1), -- Weapon Type
+(13226, 4416, 19), -- Races
 (13226, 5269, 9), -- Slow Trap
 -- Trap
-(13227, 4390, 1), -- Mystic Immunity
-(13227, 4408, 1), -- HP Increase (1x)
-(13227, 4409, 1), -- MP Increase (1x)
-(13227, 4410, 11), -- Average P. Atk.
-(13227, 4411, 11), -- Average M. Atk.
-(13227, 4412, 11), -- Average P. Def.
-(13227, 4413, 11), -- Average M. Def.
-(13227, 4414, 2), -- Standard Type
-(13227, 4415, 1), -- Bare Hands
-(13227, 4416, 19), -- Others
+(13227, 4390, 1), -- NPC Abnormal Immunity
+(13227, 4408, 1), -- HP Modifiers
+(13227, 4409, 1), -- MP Modifiers
+(13227, 4410, 11), -- P. Atk. Modifiers
+(13227, 4411, 11), -- M. Atk. Modifiers
+(13227, 4412, 11), -- P. Def. Modifiers
+(13227, 4413, 11), -- M. Def. Modifiers
+(13227, 4414, 2), -- Armor Type
+(13227, 4415, 1), -- Weapon Type
+(13227, 4416, 19), -- Races
 (13227, 5269, 10), -- Slow Trap
 -- Trap
-(13228, 4390, 1), -- Mystic Immunity
-(13228, 4408, 1), -- HP Increase (1x)
-(13228, 4409, 1), -- MP Increase (1x)
-(13228, 4410, 11), -- Average P. Atk.
-(13228, 4411, 11), -- Average M. Atk.
-(13228, 4412, 11), -- Average P. Def.
-(13228, 4413, 11), -- Average M. Def.
-(13228, 4414, 2), -- Standard Type
-(13228, 4415, 1), -- Bare Hands
-(13228, 4416, 19), -- Others
+(13228, 4390, 1), -- NPC Abnormal Immunity
+(13228, 4408, 1), -- HP Modifiers
+(13228, 4409, 1), -- MP Modifiers
+(13228, 4410, 11), -- P. Atk. Modifiers
+(13228, 4411, 11), -- M. Atk. Modifiers
+(13228, 4412, 11), -- P. Def. Modifiers
+(13228, 4413, 11), -- M. Def. Modifiers
+(13228, 4414, 2), -- Armor Type
+(13228, 4415, 1), -- Weapon Type
+(13228, 4416, 19), -- Races
 (13228, 5269, 11), -- Slow Trap
 -- Trap
-(13229, 4390, 1), -- Mystic Immunity
-(13229, 4408, 1), -- HP Increase (1x)
-(13229, 4409, 1), -- MP Increase (1x)
-(13229, 4410, 11), -- Average P. Atk.
-(13229, 4411, 11), -- Average M. Atk.
-(13229, 4412, 11), -- Average P. Def.
-(13229, 4413, 11), -- Average M. Def.
-(13229, 4414, 2), -- Standard Type
-(13229, 4415, 1), -- Bare Hands
-(13229, 4416, 19), -- Others
+(13229, 4390, 1), -- NPC Abnormal Immunity
+(13229, 4408, 1), -- HP Modifiers
+(13229, 4409, 1), -- MP Modifiers
+(13229, 4410, 11), -- P. Atk. Modifiers
+(13229, 4411, 11), -- M. Atk. Modifiers
+(13229, 4412, 11), -- P. Def. Modifiers
+(13229, 4413, 11), -- M. Def. Modifiers
+(13229, 4414, 2), -- Armor Type
+(13229, 4415, 1), -- Weapon Type
+(13229, 4416, 19), -- Races
 (13229, 5269, 12), -- Slow Trap
 -- Trap
-(13230, 4390, 1), -- Mystic Immunity
-(13230, 4408, 1), -- HP Increase (1x)
-(13230, 4409, 1), -- MP Increase (1x)
-(13230, 4410, 11), -- Average P. Atk.
-(13230, 4411, 11), -- Average M. Atk.
-(13230, 4412, 11), -- Average P. Def.
-(13230, 4413, 11), -- Average M. Def.
-(13230, 4414, 2), -- Standard Type
-(13230, 4415, 1), -- Bare Hands
-(13230, 4416, 19), -- Others
+(13230, 4390, 1), -- NPC Abnormal Immunity
+(13230, 4408, 1), -- HP Modifiers
+(13230, 4409, 1), -- MP Modifiers
+(13230, 4410, 11), -- P. Atk. Modifiers
+(13230, 4411, 11), -- M. Atk. Modifiers
+(13230, 4412, 11), -- P. Def. Modifiers
+(13230, 4413, 11), -- M. Def. Modifiers
+(13230, 4414, 2), -- Armor Type
+(13230, 4415, 1), -- Weapon Type
+(13230, 4416, 19), -- Races
 (13230, 5269, 13), -- Slow Trap
 -- Trap
-(13231, 4390, 1), -- Mystic Immunity
-(13231, 4408, 1), -- HP Increase (1x)
-(13231, 4409, 1), -- MP Increase (1x)
-(13231, 4410, 11), -- Average P. Atk.
-(13231, 4411, 11), -- Average M. Atk.
-(13231, 4412, 11), -- Average P. Def.
-(13231, 4413, 11), -- Average M. Def.
-(13231, 4414, 2), -- Standard Type
-(13231, 4415, 1), -- Bare Hands
-(13231, 4416, 19), -- Others
+(13231, 4390, 1), -- NPC Abnormal Immunity
+(13231, 4408, 1), -- HP Modifiers
+(13231, 4409, 1), -- MP Modifiers
+(13231, 4410, 11), -- P. Atk. Modifiers
+(13231, 4411, 11), -- M. Atk. Modifiers
+(13231, 4412, 11), -- P. Def. Modifiers
+(13231, 4413, 11), -- M. Def. Modifiers
+(13231, 4414, 2), -- Armor Type
+(13231, 4415, 1), -- Weapon Type
+(13231, 4416, 19), -- Races
 (13231, 5269, 14), -- Slow Trap
 -- Trap
-(13232, 4390, 1), -- Mystic Immunity
-(13232, 4408, 1), -- HP Increase (1x)
-(13232, 4409, 1), -- MP Increase (1x)
-(13232, 4410, 11), -- Average P. Atk.
-(13232, 4411, 11), -- Average M. Atk.
-(13232, 4412, 11), -- Average P. Def.
-(13232, 4413, 11), -- Average M. Def.
-(13232, 4414, 2), -- Standard Type
-(13232, 4415, 1), -- Bare Hands
-(13232, 4416, 19), -- Others
+(13232, 4390, 1), -- NPC Abnormal Immunity
+(13232, 4408, 1), -- HP Modifiers
+(13232, 4409, 1), -- MP Modifiers
+(13232, 4410, 11), -- P. Atk. Modifiers
+(13232, 4411, 11), -- M. Atk. Modifiers
+(13232, 4412, 11), -- P. Def. Modifiers
+(13232, 4413, 11), -- M. Def. Modifiers
+(13232, 4414, 2), -- Armor Type
+(13232, 4415, 1), -- Weapon Type
+(13232, 4416, 19), -- Races
 (13232, 5269, 15), -- Slow Trap
 -- Trap
-(13233, 4390, 1), -- Mystic Immunity
-(13233, 4408, 1), -- HP Increase (1x)
-(13233, 4409, 1), -- MP Increase (1x)
-(13233, 4410, 11), -- Average P. Atk.
-(13233, 4411, 11), -- Average M. Atk.
-(13233, 4412, 11), -- Average P. Def.
-(13233, 4413, 11), -- Average M. Def.
-(13233, 4414, 2), -- Standard Type
-(13233, 4415, 1), -- Bare Hands
-(13233, 4416, 19), -- Others
+(13233, 4390, 1), -- NPC Abnormal Immunity
+(13233, 4408, 1), -- HP Modifiers
+(13233, 4409, 1), -- MP Modifiers
+(13233, 4410, 11), -- P. Atk. Modifiers
+(13233, 4411, 11), -- M. Atk. Modifiers
+(13233, 4412, 11), -- P. Def. Modifiers
+(13233, 4413, 11), -- M. Def. Modifiers
+(13233, 4414, 2), -- Armor Type
+(13233, 4415, 1), -- Weapon Type
+(13233, 4416, 19), -- Races
 (13233, 5269, 16), -- Slow Trap
 -- Trap
-(13234, 4390, 1), -- Mystic Immunity
-(13234, 4408, 1), -- HP Increase (1x)
-(13234, 4409, 1), -- MP Increase (1x)
-(13234, 4410, 11), -- Average P. Atk.
-(13234, 4411, 11), -- Average M. Atk.
-(13234, 4412, 11), -- Average P. Def.
-(13234, 4413, 11), -- Average M. Def.
-(13234, 4414, 2), -- Standard Type
-(13234, 4415, 1), -- Bare Hands
-(13234, 4416, 19), -- Others
+(13234, 4390, 1), -- NPC Abnormal Immunity
+(13234, 4408, 1), -- HP Modifiers
+(13234, 4409, 1), -- MP Modifiers
+(13234, 4410, 11), -- P. Atk. Modifiers
+(13234, 4411, 11), -- M. Atk. Modifiers
+(13234, 4412, 11), -- P. Def. Modifiers
+(13234, 4413, 11), -- M. Def. Modifiers
+(13234, 4414, 2), -- Armor Type
+(13234, 4415, 1), -- Weapon Type
+(13234, 4416, 19), -- Races
 (13234, 5269, 17), -- Slow Trap
 -- Trap
-(13235, 4390, 1), -- Mystic Immunity
-(13235, 4408, 1), -- HP Increase (1x)
-(13235, 4409, 1), -- MP Increase (1x)
-(13235, 4410, 11), -- Average P. Atk.
-(13235, 4411, 11), -- Average M. Atk.
-(13235, 4412, 11), -- Average P. Def.
-(13235, 4413, 11), -- Average M. Def.
-(13235, 4414, 2), -- Standard Type
-(13235, 4415, 1), -- Bare Hands
-(13235, 4416, 19), -- Others
+(13235, 4390, 1), -- NPC Abnormal Immunity
+(13235, 4408, 1), -- HP Modifiers
+(13235, 4409, 1), -- MP Modifiers
+(13235, 4410, 11), -- P. Atk. Modifiers
+(13235, 4411, 11), -- M. Atk. Modifiers
+(13235, 4412, 11), -- P. Def. Modifiers
+(13235, 4413, 11), -- M. Def. Modifiers
+(13235, 4414, 2), -- Armor Type
+(13235, 4415, 1), -- Weapon Type
+(13235, 4416, 19), -- Races
 (13235, 5270, 6), -- Flash Trap
 -- Trap
-(13236, 4390, 1), -- Mystic Immunity
-(13236, 4408, 1), -- HP Increase (1x)
-(13236, 4409, 1), -- MP Increase (1x)
-(13236, 4410, 11), -- Average P. Atk.
-(13236, 4411, 11), -- Average M. Atk.
-(13236, 4412, 11), -- Average P. Def.
-(13236, 4413, 11), -- Average M. Def.
-(13236, 4414, 2), -- Standard Type
-(13236, 4415, 1), -- Bare Hands
-(13236, 4416, 19), -- Others
+(13236, 4390, 1), -- NPC Abnormal Immunity
+(13236, 4408, 1), -- HP Modifiers
+(13236, 4409, 1), -- MP Modifiers
+(13236, 4410, 11), -- P. Atk. Modifiers
+(13236, 4411, 11), -- M. Atk. Modifiers
+(13236, 4412, 11), -- P. Def. Modifiers
+(13236, 4413, 11), -- M. Def. Modifiers
+(13236, 4414, 2), -- Armor Type
+(13236, 4415, 1), -- Weapon Type
+(13236, 4416, 19), -- Races
 (13236, 5270, 7), -- Flash Trap
 -- Trap
-(13237, 4390, 1), -- Mystic Immunity
-(13237, 4408, 1), -- HP Increase (1x)
-(13237, 4409, 1), -- MP Increase (1x)
-(13237, 4410, 11), -- Average P. Atk.
-(13237, 4411, 11), -- Average M. Atk.
-(13237, 4412, 11), -- Average P. Def.
-(13237, 4413, 11), -- Average M. Def.
-(13237, 4414, 2), -- Standard Type
-(13237, 4415, 1), -- Bare Hands
-(13237, 4416, 19), -- Others
+(13237, 4390, 1), -- NPC Abnormal Immunity
+(13237, 4408, 1), -- HP Modifiers
+(13237, 4409, 1), -- MP Modifiers
+(13237, 4410, 11), -- P. Atk. Modifiers
+(13237, 4411, 11), -- M. Atk. Modifiers
+(13237, 4412, 11), -- P. Def. Modifiers
+(13237, 4413, 11), -- M. Def. Modifiers
+(13237, 4414, 2), -- Armor Type
+(13237, 4415, 1), -- Weapon Type
+(13237, 4416, 19), -- Races
 (13237, 5270, 8), -- Flash Trap
 -- Trap
-(13238, 4390, 1), -- Mystic Immunity
-(13238, 4408, 1), -- HP Increase (1x)
-(13238, 4409, 1), -- MP Increase (1x)
-(13238, 4410, 11), -- Average P. Atk.
-(13238, 4411, 11), -- Average M. Atk.
-(13238, 4412, 11), -- Average P. Def.
-(13238, 4413, 11), -- Average M. Def.
-(13238, 4414, 2), -- Standard Type
-(13238, 4415, 1), -- Bare Hands
-(13238, 4416, 19), -- Others
+(13238, 4390, 1), -- NPC Abnormal Immunity
+(13238, 4408, 1), -- HP Modifiers
+(13238, 4409, 1), -- MP Modifiers
+(13238, 4410, 11), -- P. Atk. Modifiers
+(13238, 4411, 11), -- M. Atk. Modifiers
+(13238, 4412, 11), -- P. Def. Modifiers
+(13238, 4413, 11), -- M. Def. Modifiers
+(13238, 4414, 2), -- Armor Type
+(13238, 4415, 1), -- Weapon Type
+(13238, 4416, 19), -- Races
 (13238, 5270, 9), -- Flash Trap
 -- Trap
-(13239, 4390, 1), -- Mystic Immunity
-(13239, 4408, 1), -- HP Increase (1x)
-(13239, 4409, 1), -- MP Increase (1x)
-(13239, 4410, 11), -- Average P. Atk.
-(13239, 4411, 11), -- Average M. Atk.
-(13239, 4412, 11), -- Average P. Def.
-(13239, 4413, 11), -- Average M. Def.
-(13239, 4414, 2), -- Standard Type
-(13239, 4415, 1), -- Bare Hands
-(13239, 4416, 19), -- Others
+(13239, 4390, 1), -- NPC Abnormal Immunity
+(13239, 4408, 1), -- HP Modifiers
+(13239, 4409, 1), -- MP Modifiers
+(13239, 4410, 11), -- P. Atk. Modifiers
+(13239, 4411, 11), -- M. Atk. Modifiers
+(13239, 4412, 11), -- P. Def. Modifiers
+(13239, 4413, 11), -- M. Def. Modifiers
+(13239, 4414, 2), -- Armor Type
+(13239, 4415, 1), -- Weapon Type
+(13239, 4416, 19), -- Races
 (13239, 5270, 10), -- Flash Trap
 -- Trap
-(13240, 4390, 1), -- Mystic Immunity
-(13240, 4408, 1), -- HP Increase (1x)
-(13240, 4409, 1), -- MP Increase (1x)
-(13240, 4410, 11), -- Average P. Atk.
-(13240, 4411, 11), -- Average M. Atk.
-(13240, 4412, 11), -- Average P. Def.
-(13240, 4413, 11), -- Average M. Def.
-(13240, 4414, 2), -- Standard Type
-(13240, 4415, 1), -- Bare Hands
-(13240, 4416, 19), -- Others
+(13240, 4390, 1), -- NPC Abnormal Immunity
+(13240, 4408, 1), -- HP Modifiers
+(13240, 4409, 1), -- MP Modifiers
+(13240, 4410, 11), -- P. Atk. Modifiers
+(13240, 4411, 11), -- M. Atk. Modifiers
+(13240, 4412, 11), -- P. Def. Modifiers
+(13240, 4413, 11), -- M. Def. Modifiers
+(13240, 4414, 2), -- Armor Type
+(13240, 4415, 1), -- Weapon Type
+(13240, 4416, 19), -- Races
 (13240, 5270, 11), -- Flash Trap
 -- Trap
-(13241, 4390, 1), -- Mystic Immunity
-(13241, 4408, 1), -- HP Increase (1x)
-(13241, 4409, 1), -- MP Increase (1x)
-(13241, 4410, 11), -- Average P. Atk.
-(13241, 4411, 11), -- Average M. Atk.
-(13241, 4412, 11), -- Average P. Def.
-(13241, 4413, 11), -- Average M. Def.
-(13241, 4414, 2), -- Standard Type
-(13241, 4415, 1), -- Bare Hands
-(13241, 4416, 19), -- Others
+(13241, 4390, 1), -- NPC Abnormal Immunity
+(13241, 4408, 1), -- HP Modifiers
+(13241, 4409, 1), -- MP Modifiers
+(13241, 4410, 11), -- P. Atk. Modifiers
+(13241, 4411, 11), -- M. Atk. Modifiers
+(13241, 4412, 11), -- P. Def. Modifiers
+(13241, 4413, 11), -- M. Def. Modifiers
+(13241, 4414, 2), -- Armor Type
+(13241, 4415, 1), -- Weapon Type
+(13241, 4416, 19), -- Races
 (13241, 5270, 12), -- Flash Trap
 -- Trap
-(13242, 4390, 1), -- Mystic Immunity
-(13242, 4408, 1), -- HP Increase (1x)
-(13242, 4409, 1), -- MP Increase (1x)
-(13242, 4410, 11), -- Average P. Atk.
-(13242, 4411, 11), -- Average M. Atk.
-(13242, 4412, 11), -- Average P. Def.
-(13242, 4413, 11), -- Average M. Def.
-(13242, 4414, 2), -- Standard Type
-(13242, 4415, 1), -- Bare Hands
-(13242, 4416, 19), -- Others
+(13242, 4390, 1), -- NPC Abnormal Immunity
+(13242, 4408, 1), -- HP Modifiers
+(13242, 4409, 1), -- MP Modifiers
+(13242, 4410, 11), -- P. Atk. Modifiers
+(13242, 4411, 11), -- M. Atk. Modifiers
+(13242, 4412, 11), -- P. Def. Modifiers
+(13242, 4413, 11), -- M. Def. Modifiers
+(13242, 4414, 2), -- Armor Type
+(13242, 4415, 1), -- Weapon Type
+(13242, 4416, 19), -- Races
 (13242, 5270, 13), -- Flash Trap
 -- Trap
-(13243, 4390, 1), -- Mystic Immunity
-(13243, 4408, 1), -- HP Increase (1x)
-(13243, 4409, 1), -- MP Increase (1x)
-(13243, 4410, 11), -- Average P. Atk.
-(13243, 4411, 11), -- Average M. Atk.
-(13243, 4412, 11), -- Average P. Def.
-(13243, 4413, 11), -- Average M. Def.
-(13243, 4414, 2), -- Standard Type
-(13243, 4415, 1), -- Bare Hands
-(13243, 4416, 19), -- Others
+(13243, 4390, 1), -- NPC Abnormal Immunity
+(13243, 4408, 1), -- HP Modifiers
+(13243, 4409, 1), -- MP Modifiers
+(13243, 4410, 11), -- P. Atk. Modifiers
+(13243, 4411, 11), -- M. Atk. Modifiers
+(13243, 4412, 11), -- P. Def. Modifiers
+(13243, 4413, 11), -- M. Def. Modifiers
+(13243, 4414, 2), -- Armor Type
+(13243, 4415, 1), -- Weapon Type
+(13243, 4416, 19), -- Races
 (13243, 5270, 14), -- Flash Trap
 -- Trap
-(13244, 4390, 1), -- Mystic Immunity
-(13244, 4408, 1), -- HP Increase (1x)
-(13244, 4409, 1), -- MP Increase (1x)
-(13244, 4410, 11), -- Average P. Atk.
-(13244, 4411, 11), -- Average M. Atk.
-(13244, 4412, 11), -- Average P. Def.
-(13244, 4413, 11), -- Average M. Def.
-(13244, 4414, 2), -- Standard Type
-(13244, 4415, 1), -- Bare Hands
-(13244, 4416, 19), -- Others
+(13244, 4390, 1), -- NPC Abnormal Immunity
+(13244, 4408, 1), -- HP Modifiers
+(13244, 4409, 1), -- MP Modifiers
+(13244, 4410, 11), -- P. Atk. Modifiers
+(13244, 4411, 11), -- M. Atk. Modifiers
+(13244, 4412, 11), -- P. Def. Modifiers
+(13244, 4413, 11), -- M. Def. Modifiers
+(13244, 4414, 2), -- Armor Type
+(13244, 4415, 1), -- Weapon Type
+(13244, 4416, 19), -- Races
 (13244, 5270, 15), -- Flash Trap
 -- Trap
-(13245, 4390, 1), -- Mystic Immunity
-(13245, 4408, 1), -- HP Increase (1x)
-(13245, 4409, 1), -- MP Increase (1x)
-(13245, 4410, 11), -- Average P. Atk.
-(13245, 4411, 11), -- Average M. Atk.
-(13245, 4412, 11), -- Average P. Def.
-(13245, 4413, 11), -- Average M. Def.
-(13245, 4414, 2), -- Standard Type
-(13245, 4415, 1), -- Bare Hands
-(13245, 4416, 19), -- Others
+(13245, 4390, 1), -- NPC Abnormal Immunity
+(13245, 4408, 1), -- HP Modifiers
+(13245, 4409, 1), -- MP Modifiers
+(13245, 4410, 11), -- P. Atk. Modifiers
+(13245, 4411, 11), -- M. Atk. Modifiers
+(13245, 4412, 11), -- P. Def. Modifiers
+(13245, 4413, 11), -- M. Def. Modifiers
+(13245, 4414, 2), -- Armor Type
+(13245, 4415, 1), -- Weapon Type
+(13245, 4416, 19), -- Races
 (13245, 5270, 16), -- Flash Trap
 -- Trap
-(13246, 4390, 1), -- Mystic Immunity
-(13246, 4408, 1), -- HP Increase (1x)
-(13246, 4409, 1), -- MP Increase (1x)
-(13246, 4410, 11), -- Average P. Atk.
-(13246, 4411, 11), -- Average M. Atk.
-(13246, 4412, 11), -- Average P. Def.
-(13246, 4413, 11), -- Average M. Def.
-(13246, 4414, 2), -- Standard Type
-(13246, 4415, 1), -- Bare Hands
-(13246, 4416, 19), -- Others
+(13246, 4390, 1), -- NPC Abnormal Immunity
+(13246, 4408, 1), -- HP Modifiers
+(13246, 4409, 1), -- MP Modifiers
+(13246, 4410, 11), -- P. Atk. Modifiers
+(13246, 4411, 11), -- M. Atk. Modifiers
+(13246, 4412, 11), -- P. Def. Modifiers
+(13246, 4413, 11), -- M. Def. Modifiers
+(13246, 4414, 2), -- Armor Type
+(13246, 4415, 1), -- Weapon Type
+(13246, 4416, 19), -- Races
 (13246, 5271, 9), -- Hold
 -- Trap
-(13247, 4390, 1), -- Mystic Immunity
-(13247, 4408, 1), -- HP Increase (1x)
-(13247, 4409, 1), -- MP Increase (1x)
-(13247, 4410, 11), -- Average P. Atk.
-(13247, 4411, 11), -- Average M. Atk.
-(13247, 4412, 11), -- Average P. Def.
-(13247, 4413, 11), -- Average M. Def.
-(13247, 4414, 2), -- Standard Type
-(13247, 4415, 1), -- Bare Hands
-(13247, 4416, 19), -- Others
+(13247, 4390, 1), -- NPC Abnormal Immunity
+(13247, 4408, 1), -- HP Modifiers
+(13247, 4409, 1), -- MP Modifiers
+(13247, 4410, 11), -- P. Atk. Modifiers
+(13247, 4411, 11), -- M. Atk. Modifiers
+(13247, 4412, 11), -- P. Def. Modifiers
+(13247, 4413, 11), -- M. Def. Modifiers
+(13247, 4414, 2), -- Armor Type
+(13247, 4415, 1), -- Weapon Type
+(13247, 4416, 19), -- Races
 (13247, 5271, 10), -- Hold
 -- Trap
-(13248, 4390, 1), -- Mystic Immunity
-(13248, 4408, 1), -- HP Increase (1x)
-(13248, 4409, 1), -- MP Increase (1x)
-(13248, 4410, 11), -- Average P. Atk.
-(13248, 4411, 11), -- Average M. Atk.
-(13248, 4412, 11), -- Average P. Def.
-(13248, 4413, 11), -- Average M. Def.
-(13248, 4414, 2), -- Standard Type
-(13248, 4415, 1), -- Bare Hands
-(13248, 4416, 19), -- Others
+(13248, 4390, 1), -- NPC Abnormal Immunity
+(13248, 4408, 1), -- HP Modifiers
+(13248, 4409, 1), -- MP Modifiers
+(13248, 4410, 11), -- P. Atk. Modifiers
+(13248, 4411, 11), -- M. Atk. Modifiers
+(13248, 4412, 11), -- P. Def. Modifiers
+(13248, 4413, 11), -- M. Def. Modifiers
+(13248, 4414, 2), -- Armor Type
+(13248, 4415, 1), -- Weapon Type
+(13248, 4416, 19), -- Races
 (13248, 5271, 11), -- Hold
 -- Trap
-(13249, 4390, 1), -- Mystic Immunity
-(13249, 4408, 1), -- HP Increase (1x)
-(13249, 4409, 1), -- MP Increase (1x)
-(13249, 4410, 11), -- Average P. Atk.
-(13249, 4411, 11), -- Average M. Atk.
-(13249, 4412, 11), -- Average P. Def.
-(13249, 4413, 11), -- Average M. Def.
-(13249, 4414, 2), -- Standard Type
-(13249, 4415, 1), -- Bare Hands
-(13249, 4416, 19), -- Others
+(13249, 4390, 1), -- NPC Abnormal Immunity
+(13249, 4408, 1), -- HP Modifiers
+(13249, 4409, 1), -- MP Modifiers
+(13249, 4410, 11), -- P. Atk. Modifiers
+(13249, 4411, 11), -- M. Atk. Modifiers
+(13249, 4412, 11), -- P. Def. Modifiers
+(13249, 4413, 11), -- M. Def. Modifiers
+(13249, 4414, 2), -- Armor Type
+(13249, 4415, 1), -- Weapon Type
+(13249, 4416, 19), -- Races
 (13249, 5271, 12), -- Hold
 -- Trap
-(13250, 4390, 1), -- Mystic Immunity
-(13250, 4408, 1), -- HP Increase (1x)
-(13250, 4409, 1), -- MP Increase (1x)
-(13250, 4410, 11), -- Average P. Atk.
-(13250, 4411, 11), -- Average M. Atk.
-(13250, 4412, 11), -- Average P. Def.
-(13250, 4413, 11), -- Average M. Def.
-(13250, 4414, 2), -- Standard Type
-(13250, 4415, 1), -- Bare Hands
-(13250, 4416, 19), -- Others
+(13250, 4390, 1), -- NPC Abnormal Immunity
+(13250, 4408, 1), -- HP Modifiers
+(13250, 4409, 1), -- MP Modifiers
+(13250, 4410, 11), -- P. Atk. Modifiers
+(13250, 4411, 11), -- M. Atk. Modifiers
+(13250, 4412, 11), -- P. Def. Modifiers
+(13250, 4413, 11), -- M. Def. Modifiers
+(13250, 4414, 2), -- Armor Type
+(13250, 4415, 1), -- Weapon Type
+(13250, 4416, 19), -- Races
 (13250, 5271, 13), -- Hold
 -- Trap
-(13251, 4390, 1), -- Mystic Immunity
-(13251, 4408, 1), -- HP Increase (1x)
-(13251, 4409, 1), -- MP Increase (1x)
-(13251, 4410, 11), -- Average P. Atk.
-(13251, 4411, 11), -- Average M. Atk.
-(13251, 4412, 11), -- Average P. Def.
-(13251, 4413, 11), -- Average M. Def.
-(13251, 4414, 2), -- Standard Type
-(13251, 4415, 1), -- Bare Hands
-(13251, 4416, 19), -- Others
+(13251, 4390, 1), -- NPC Abnormal Immunity
+(13251, 4408, 1), -- HP Modifiers
+(13251, 4409, 1), -- MP Modifiers
+(13251, 4410, 11), -- P. Atk. Modifiers
+(13251, 4411, 11), -- M. Atk. Modifiers
+(13251, 4412, 11), -- P. Def. Modifiers
+(13251, 4413, 11), -- M. Def. Modifiers
+(13251, 4414, 2), -- Armor Type
+(13251, 4415, 1), -- Weapon Type
+(13251, 4416, 19), -- Races
 (13251, 5271, 14), -- Hold
 -- Trap
-(13252, 4390, 1), -- Mystic Immunity
-(13252, 4408, 1), -- HP Increase (1x)
-(13252, 4409, 1), -- MP Increase (1x)
-(13252, 4410, 11), -- Average P. Atk.
-(13252, 4411, 11), -- Average M. Atk.
-(13252, 4412, 11), -- Average P. Def.
-(13252, 4413, 11), -- Average M. Def.
-(13252, 4414, 2), -- Standard Type
-(13252, 4415, 1), -- Bare Hands
-(13252, 4416, 19), -- Others
+(13252, 4390, 1), -- NPC Abnormal Immunity
+(13252, 4408, 1), -- HP Modifiers
+(13252, 4409, 1), -- MP Modifiers
+(13252, 4410, 11), -- P. Atk. Modifiers
+(13252, 4411, 11), -- M. Atk. Modifiers
+(13252, 4412, 11), -- P. Def. Modifiers
+(13252, 4413, 11), -- M. Def. Modifiers
+(13252, 4414, 2), -- Armor Type
+(13252, 4415, 1), -- Weapon Type
+(13252, 4416, 19), -- Races
 (13252, 5271, 15), -- Hold
 -- Trap
-(13253, 4390, 1), -- Mystic Immunity
-(13253, 4408, 1), -- HP Increase (1x)
-(13253, 4409, 1), -- MP Increase (1x)
-(13253, 4410, 11), -- Average P. Atk.
-(13253, 4411, 11), -- Average M. Atk.
-(13253, 4412, 11), -- Average P. Def.
-(13253, 4413, 11), -- Average M. Def.
-(13253, 4414, 2), -- Standard Type
-(13253, 4415, 1), -- Bare Hands
-(13253, 4416, 19), -- Others
+(13253, 4390, 1), -- NPC Abnormal Immunity
+(13253, 4408, 1), -- HP Modifiers
+(13253, 4409, 1), -- MP Modifiers
+(13253, 4410, 11), -- P. Atk. Modifiers
+(13253, 4411, 11), -- M. Atk. Modifiers
+(13253, 4412, 11), -- P. Def. Modifiers
+(13253, 4413, 11), -- M. Def. Modifiers
+(13253, 4414, 2), -- Armor Type
+(13253, 4415, 1), -- Weapon Type
+(13253, 4416, 19), -- Races
 (13253, 5271, 16), -- Hold
 -- Trap
-(13254, 4390, 1), -- Mystic Immunity
-(13254, 4408, 1), -- HP Increase (1x)
-(13254, 4409, 1), -- MP Increase (1x)
-(13254, 4410, 11), -- Average P. Atk.
-(13254, 4411, 11), -- Average M. Atk.
-(13254, 4412, 11), -- Average P. Def.
-(13254, 4413, 11), -- Average M. Def.
-(13254, 4414, 2), -- Standard Type
-(13254, 4415, 1), -- Bare Hands
-(13254, 4416, 19), -- Others
+(13254, 4390, 1), -- NPC Abnormal Immunity
+(13254, 4408, 1), -- HP Modifiers
+(13254, 4409, 1), -- MP Modifiers
+(13254, 4410, 11), -- P. Atk. Modifiers
+(13254, 4411, 11), -- M. Atk. Modifiers
+(13254, 4412, 11), -- P. Def. Modifiers
+(13254, 4413, 11), -- M. Def. Modifiers
+(13254, 4414, 2), -- Armor Type
+(13254, 4415, 1), -- Weapon Type
+(13254, 4416, 19), -- Races
 (13254, 5271, 17), -- Hold
 -- Trap
-(13255, 4390, 1), -- Mystic Immunity
-(13255, 4408, 1), -- HP Increase (1x)
-(13255, 4409, 1), -- MP Increase (1x)
-(13255, 4410, 11), -- Average P. Atk.
-(13255, 4411, 11), -- Average M. Atk.
-(13255, 4412, 11), -- Average P. Def.
-(13255, 4413, 11), -- Average M. Def.
-(13255, 4414, 2), -- Standard Type
-(13255, 4415, 1), -- Bare Hands
-(13255, 4416, 19), -- Others
+(13255, 4390, 1), -- NPC Abnormal Immunity
+(13255, 4408, 1), -- HP Modifiers
+(13255, 4409, 1), -- MP Modifiers
+(13255, 4410, 11), -- P. Atk. Modifiers
+(13255, 4411, 11), -- M. Atk. Modifiers
+(13255, 4412, 11), -- P. Def. Modifiers
+(13255, 4413, 11), -- M. Def. Modifiers
+(13255, 4414, 2), -- Armor Type
+(13255, 4415, 1), -- Weapon Type
+(13255, 4416, 19), -- Races
 (13255, 5271, 18), -- Hold
 -- Trap
-(13256, 4390, 1), -- Mystic Immunity
-(13256, 4408, 1), -- HP Increase (1x)
-(13256, 4409, 1), -- MP Increase (1x)
-(13256, 4410, 11), -- Average P. Atk.
-(13256, 4411, 11), -- Average M. Atk.
-(13256, 4412, 11), -- Average P. Def.
-(13256, 4413, 11), -- Average M. Def.
-(13256, 4414, 2), -- Standard Type
-(13256, 4415, 1), -- Bare Hands
-(13256, 4416, 19), -- Others
+(13256, 4390, 1), -- NPC Abnormal Immunity
+(13256, 4408, 1), -- HP Modifiers
+(13256, 4409, 1), -- MP Modifiers
+(13256, 4410, 11), -- P. Atk. Modifiers
+(13256, 4411, 11), -- M. Atk. Modifiers
+(13256, 4412, 11), -- P. Def. Modifiers
+(13256, 4413, 11), -- M. Def. Modifiers
+(13256, 4414, 2), -- Armor Type
+(13256, 4415, 1), -- Weapon Type
+(13256, 4416, 19), -- Races
 (13256, 5271, 19), -- Hold
 -- Virtual Image
-(13257, 4390, 1), -- Mystic Immunity
-(13257, 4408, 1), -- HP Increase (1x)
-(13257, 4409, 1), -- MP Increase (1x)
-(13257, 4410, 11), -- Average P. Atk.
-(13257, 4411, 11), -- Average M. Atk.
-(13257, 4412, 11), -- Average P. Def.
-(13257, 4413, 11), -- Average M. Def.
-(13257, 4414, 2), -- Standard Type
-(13257, 4415, 1), -- Bare Hands
-(13257, 4416, 19), -- Others
+(13257, 4390, 1), -- NPC Abnormal Immunity
+(13257, 4408, 1), -- HP Modifiers
+(13257, 4409, 1), -- MP Modifiers
+(13257, 4410, 11), -- P. Atk. Modifiers
+(13257, 4411, 11), -- M. Atk. Modifiers
+(13257, 4412, 11), -- P. Def. Modifiers
+(13257, 4413, 11), -- M. Def. Modifiers
+(13257, 4414, 2), -- Armor Type
+(13257, 4415, 1), -- Weapon Type
+(13257, 4416, 19), -- Races
 (13257, 5272, 7), -- Decoy Provocation
 -- Virtual Image
-(13258, 4390, 1), -- Mystic Immunity
-(13258, 4408, 1), -- HP Increase (1x)
-(13258, 4409, 1), -- MP Increase (1x)
-(13258, 4410, 11), -- Average P. Atk.
-(13258, 4411, 11), -- Average M. Atk.
-(13258, 4412, 11), -- Average P. Def.
-(13258, 4413, 11), -- Average M. Def.
-(13258, 4414, 2), -- Standard Type
-(13258, 4415, 1), -- Bare Hands
-(13258, 4416, 19), -- Others
+(13258, 4390, 1), -- NPC Abnormal Immunity
+(13258, 4408, 1), -- HP Modifiers
+(13258, 4409, 1), -- MP Modifiers
+(13258, 4410, 11), -- P. Atk. Modifiers
+(13258, 4411, 11), -- M. Atk. Modifiers
+(13258, 4412, 11), -- P. Def. Modifiers
+(13258, 4413, 11), -- M. Def. Modifiers
+(13258, 4414, 2), -- Armor Type
+(13258, 4415, 1), -- Weapon Type
+(13258, 4416, 19), -- Races
 (13258, 5272, 8), -- Decoy Provocation
 -- Virtual Image
-(13259, 4390, 1), -- Mystic Immunity
-(13259, 4408, 1), -- HP Increase (1x)
-(13259, 4409, 1), -- MP Increase (1x)
-(13259, 4410, 11), -- Average P. Atk.
-(13259, 4411, 11), -- Average M. Atk.
-(13259, 4412, 11), -- Average P. Def.
-(13259, 4413, 11), -- Average M. Def.
-(13259, 4414, 2), -- Standard Type
-(13259, 4415, 1), -- Bare Hands
-(13259, 4416, 19), -- Others
+(13259, 4390, 1), -- NPC Abnormal Immunity
+(13259, 4408, 1), -- HP Modifiers
+(13259, 4409, 1), -- MP Modifiers
+(13259, 4410, 11), -- P. Atk. Modifiers
+(13259, 4411, 11), -- M. Atk. Modifiers
+(13259, 4412, 11), -- P. Def. Modifiers
+(13259, 4413, 11), -- M. Def. Modifiers
+(13259, 4414, 2), -- Armor Type
+(13259, 4415, 1), -- Weapon Type
+(13259, 4416, 19), -- Races
 (13259, 5272, 9), -- Decoy Provocation
 -- Virtual Image
-(13260, 4390, 1), -- Mystic Immunity
-(13260, 4408, 1), -- HP Increase (1x)
-(13260, 4409, 1), -- MP Increase (1x)
-(13260, 4410, 11), -- Average P. Atk.
-(13260, 4411, 11), -- Average M. Atk.
-(13260, 4412, 11), -- Average P. Def.
-(13260, 4413, 11), -- Average M. Def.
-(13260, 4414, 2), -- Standard Type
-(13260, 4415, 1), -- Bare Hands
-(13260, 4416, 19), -- Others
+(13260, 4390, 1), -- NPC Abnormal Immunity
+(13260, 4408, 1), -- HP Modifiers
+(13260, 4409, 1), -- MP Modifiers
+(13260, 4410, 11), -- P. Atk. Modifiers
+(13260, 4411, 11), -- M. Atk. Modifiers
+(13260, 4412, 11), -- P. Def. Modifiers
+(13260, 4413, 11), -- M. Def. Modifiers
+(13260, 4414, 2), -- Armor Type
+(13260, 4415, 1), -- Weapon Type
+(13260, 4416, 19), -- Races
 (13260, 5272, 10), -- Decoy Provocation
 -- Virtual Image
-(13261, 4390, 1), -- Mystic Immunity
-(13261, 4408, 1), -- HP Increase (1x)
-(13261, 4409, 1), -- MP Increase (1x)
-(13261, 4410, 11), -- Average P. Atk.
-(13261, 4411, 11), -- Average M. Atk.
-(13261, 4412, 11), -- Average P. Def.
-(13261, 4413, 11), -- Average M. Def.
-(13261, 4414, 2), -- Standard Type
-(13261, 4415, 1), -- Bare Hands
-(13261, 4416, 19), -- Others
+(13261, 4390, 1), -- NPC Abnormal Immunity
+(13261, 4408, 1), -- HP Modifiers
+(13261, 4409, 1), -- MP Modifiers
+(13261, 4410, 11), -- P. Atk. Modifiers
+(13261, 4411, 11), -- M. Atk. Modifiers
+(13261, 4412, 11), -- P. Def. Modifiers
+(13261, 4413, 11), -- M. Def. Modifiers
+(13261, 4414, 2), -- Armor Type
+(13261, 4415, 1), -- Weapon Type
+(13261, 4416, 19), -- Races
 (13261, 5272, 11), -- Decoy Provocation
 -- Virtual Image
-(13262, 4390, 1), -- Mystic Immunity
-(13262, 4408, 1), -- HP Increase (1x)
-(13262, 4409, 1), -- MP Increase (1x)
-(13262, 4410, 11), -- Average P. Atk.
-(13262, 4411, 11), -- Average M. Atk.
-(13262, 4412, 11), -- Average P. Def.
-(13262, 4413, 11), -- Average M. Def.
-(13262, 4414, 2), -- Standard Type
-(13262, 4415, 1), -- Bare Hands
-(13262, 4416, 19), -- Others
+(13262, 4390, 1), -- NPC Abnormal Immunity
+(13262, 4408, 1), -- HP Modifiers
+(13262, 4409, 1), -- MP Modifiers
+(13262, 4410, 11), -- P. Atk. Modifiers
+(13262, 4411, 11), -- M. Atk. Modifiers
+(13262, 4412, 11), -- P. Def. Modifiers
+(13262, 4413, 11), -- M. Def. Modifiers
+(13262, 4414, 2), -- Armor Type
+(13262, 4415, 1), -- Weapon Type
+(13262, 4416, 19), -- Races
 (13262, 5272, 12), -- Decoy Provocation
 -- Virtual Image
-(13263, 4390, 1), -- Mystic Immunity
-(13263, 4408, 1), -- HP Increase (1x)
-(13263, 4409, 1), -- MP Increase (1x)
-(13263, 4410, 11), -- Average P. Atk.
-(13263, 4411, 11), -- Average M. Atk.
-(13263, 4412, 11), -- Average P. Def.
-(13263, 4413, 11), -- Average M. Def.
-(13263, 4414, 2), -- Standard Type
-(13263, 4415, 1), -- Bare Hands
-(13263, 4416, 19), -- Others
+(13263, 4390, 1), -- NPC Abnormal Immunity
+(13263, 4408, 1), -- HP Modifiers
+(13263, 4409, 1), -- MP Modifiers
+(13263, 4410, 11), -- P. Atk. Modifiers
+(13263, 4411, 11), -- M. Atk. Modifiers
+(13263, 4412, 11), -- P. Def. Modifiers
+(13263, 4413, 11), -- M. Def. Modifiers
+(13263, 4414, 2), -- Armor Type
+(13263, 4415, 1), -- Weapon Type
+(13263, 4416, 19), -- Races
 (13263, 5272, 13), -- Decoy Provocation
 -- Virtual Image
-(13264, 4390, 1), -- Mystic Immunity
-(13264, 4408, 1), -- HP Increase (1x)
-(13264, 4409, 1), -- MP Increase (1x)
-(13264, 4410, 11), -- Average P. Atk.
-(13264, 4411, 11), -- Average M. Atk.
-(13264, 4412, 11), -- Average P. Def.
-(13264, 4413, 11), -- Average M. Def.
-(13264, 4414, 2), -- Standard Type
-(13264, 4415, 1), -- Bare Hands
-(13264, 4416, 19), -- Others
+(13264, 4390, 1), -- NPC Abnormal Immunity
+(13264, 4408, 1), -- HP Modifiers
+(13264, 4409, 1), -- MP Modifiers
+(13264, 4410, 11), -- P. Atk. Modifiers
+(13264, 4411, 11), -- M. Atk. Modifiers
+(13264, 4412, 11), -- P. Def. Modifiers
+(13264, 4413, 11), -- M. Def. Modifiers
+(13264, 4414, 2), -- Armor Type
+(13264, 4415, 1), -- Weapon Type
+(13264, 4416, 19), -- Races
 (13264, 5272, 14), -- Decoy Provocation
 -- Virtual Image
-(13265, 4390, 1), -- Mystic Immunity
-(13265, 4408, 1), -- HP Increase (1x)
-(13265, 4409, 1), -- MP Increase (1x)
-(13265, 4410, 11), -- Average P. Atk.
-(13265, 4411, 11), -- Average M. Atk.
-(13265, 4412, 11), -- Average P. Def.
-(13265, 4413, 11), -- Average M. Def.
-(13265, 4414, 2), -- Standard Type
-(13265, 4415, 1), -- Bare Hands
-(13265, 4416, 19), -- Others
+(13265, 4390, 1), -- NPC Abnormal Immunity
+(13265, 4408, 1), -- HP Modifiers
+(13265, 4409, 1), -- MP Modifiers
+(13265, 4410, 11), -- P. Atk. Modifiers
+(13265, 4411, 11), -- M. Atk. Modifiers
+(13265, 4412, 11), -- P. Def. Modifiers
+(13265, 4413, 11), -- M. Def. Modifiers
+(13265, 4414, 2), -- Armor Type
+(13265, 4415, 1), -- Weapon Type
+(13265, 4416, 19), -- Races
 (13265, 5272, 15), -- Decoy Provocation
 -- Virtual Image
-(13266, 4390, 1), -- Mystic Immunity
-(13266, 4408, 1), -- HP Increase (1x)
-(13266, 4409, 1), -- MP Increase (1x)
-(13266, 4410, 11), -- Average P. Atk.
-(13266, 4411, 11), -- Average M. Atk.
-(13266, 4412, 11), -- Average P. Def.
-(13266, 4413, 11), -- Average M. Def.
-(13266, 4414, 2), -- Standard Type
-(13266, 4415, 1), -- Bare Hands
-(13266, 4416, 19), -- Others
+(13266, 4390, 1), -- NPC Abnormal Immunity
+(13266, 4408, 1), -- HP Modifiers
+(13266, 4409, 1), -- MP Modifiers
+(13266, 4410, 11), -- P. Atk. Modifiers
+(13266, 4411, 11), -- M. Atk. Modifiers
+(13266, 4412, 11), -- P. Def. Modifiers
+(13266, 4413, 11), -- M. Def. Modifiers
+(13266, 4414, 2), -- Armor Type
+(13266, 4415, 1), -- Weapon Type
+(13266, 4416, 19), -- Races
 (13266, 5272, 16), -- Decoy Provocation
 -- Virtual Image
-(13267, 4390, 1), -- Mystic Immunity
-(13267, 4408, 1), -- HP Increase (1x)
-(13267, 4409, 1), -- MP Increase (1x)
-(13267, 4410, 11), -- Average P. Atk.
-(13267, 4411, 11), -- Average M. Atk.
-(13267, 4412, 11), -- Average P. Def.
-(13267, 4413, 11), -- Average M. Def.
-(13267, 4414, 2), -- Standard Type
-(13267, 4415, 1), -- Bare Hands
-(13267, 4416, 19), -- Others
+(13267, 4390, 1), -- NPC Abnormal Immunity
+(13267, 4408, 1), -- HP Modifiers
+(13267, 4409, 1), -- MP Modifiers
+(13267, 4410, 11), -- P. Atk. Modifiers
+(13267, 4411, 11), -- M. Atk. Modifiers
+(13267, 4412, 11), -- P. Def. Modifiers
+(13267, 4413, 11), -- M. Def. Modifiers
+(13267, 4414, 2), -- Armor Type
+(13267, 4415, 1), -- Weapon Type
+(13267, 4416, 19), -- Races
 (13267, 5272, 17), -- Decoy Provocation
 -- Aqua Elf
-(13268, 4408, 1), -- HP Increase (1x)
-(13268, 4409, 1), -- MP Increase (1x)
-(13268, 4410, 11), -- Average P. Atk.
-(13268, 4411, 11), -- Average M. Atk.
-(13268, 4412, 11), -- Average P. Def.
-(13268, 4413, 11), -- Average M. Def.
-(13268, 4414, 2), -- Standard Type
-(13268, 4415, 1), -- Bare Hands
-(13268, 4416, 14), -- Humans
+(13268, 4408, 1), -- HP Modifiers
+(13268, 4409, 1), -- MP Modifiers
+(13268, 4410, 11), -- P. Atk. Modifiers
+(13268, 4411, 11), -- M. Atk. Modifiers
+(13268, 4412, 11), -- P. Def. Modifiers
+(13268, 4413, 11), -- M. Def. Modifiers
+(13268, 4414, 2), -- Armor Type
+(13268, 4415, 1), -- Weapon Type
+(13268, 4416, 14), -- Races
 -- Hot Weather
 (13269, 4045, 1), -- Resist Full Magic Attack
-(13269, 4390, 1), -- Mystic Immunity
-(13269, 4408, 1), -- HP Increase (1x)
-(13269, 4409, 1), -- MP Increase (1x)
-(13269, 4410, 11), -- Average P. Atk.
-(13269, 4411, 11), -- Average M. Atk.
-(13269, 4412, 11), -- Average P. Def.
-(13269, 4413, 11), -- Average M. Def.
-(13269, 4414, 2), -- Standard Type
-(13269, 4415, 1), -- Bare Hands
-(13269, 4416, 7), -- Spirits
+(13269, 4390, 1), -- NPC Abnormal Immunity
+(13269, 4408, 1), -- HP Modifiers
+(13269, 4409, 1), -- MP Modifiers
+(13269, 4410, 11), -- P. Atk. Modifiers
+(13269, 4411, 11), -- M. Atk. Modifiers
+(13269, 4412, 11), -- P. Def. Modifiers
+(13269, 4413, 11), -- M. Def. Modifiers
+(13269, 4414, 2), -- Armor Type
+(13269, 4415, 1), -- Weapon Type
+(13269, 4416, 7), -- Races
 -- Sultriness
 (13270, 4045, 1), -- Resist Full Magic Attack
-(13270, 4390, 1), -- Mystic Immunity
-(13270, 4408, 1), -- HP Increase (1x)
-(13270, 4409, 1), -- MP Increase (1x)
-(13270, 4410, 11), -- Average P. Atk.
-(13270, 4411, 11), -- Average M. Atk.
-(13270, 4412, 11), -- Average P. Def.
-(13270, 4413, 11), -- Average M. Def.
-(13270, 4414, 2), -- Standard Type
-(13270, 4415, 1), -- Bare Hands
-(13270, 4416, 7), -- Spirits
+(13270, 4390, 1), -- NPC Abnormal Immunity
+(13270, 4408, 1), -- HP Modifiers
+(13270, 4409, 1), -- MP Modifiers
+(13270, 4410, 11), -- P. Atk. Modifiers
+(13270, 4411, 11), -- M. Atk. Modifiers
+(13270, 4412, 11), -- P. Def. Modifiers
+(13270, 4413, 11), -- M. Def. Modifiers
+(13270, 4414, 2), -- Armor Type
+(13270, 4415, 1), -- Weapon Type
+(13270, 4416, 7), -- Races
 -- Young Watermelon
 (13271, 4045, 1), -- Resist Full Magic Attack
-(13271, 4408, 1), -- HP Increase (1x)
-(13271, 4409, 1), -- MP Increase (1x)
-(13271, 4410, 11), -- Average P. Atk.
-(13271, 4411, 11), -- Average M. Atk.
-(13271, 4412, 11), -- Average P. Def.
-(13271, 4413, 11), -- Average M. Def.
-(13271, 4414, 3), -- Light Armor Type
-(13271, 4415, 5), -- Blunt Weapons
-(13271, 4416, 19), -- Others
+(13271, 4408, 1), -- HP Modifiers
+(13271, 4409, 1), -- MP Modifiers
+(13271, 4410, 11), -- P. Atk. Modifiers
+(13271, 4411, 11), -- M. Atk. Modifiers
+(13271, 4412, 11), -- P. Def. Modifiers
+(13271, 4413, 11), -- M. Def. Modifiers
+(13271, 4414, 3), -- Armor Type
+(13271, 4415, 5), -- Weapon Type
+(13271, 4416, 19), -- Races
 (13271, 4441, 5), -- Greater Resist Mental Derangement
 -- Defective Watermelon
 (13272, 4045, 1), -- Resist Full Magic Attack
-(13272, 4408, 1), -- HP Increase (1x)
-(13272, 4409, 1), -- MP Increase (1x)
-(13272, 4410, 11), -- Average P. Atk.
-(13272, 4411, 11), -- Average M. Atk.
-(13272, 4412, 11), -- Average P. Def.
-(13272, 4413, 11), -- Average M. Def.
-(13272, 4414, 3), -- Light Armor Type
-(13272, 4415, 5), -- Blunt Weapons
-(13272, 4416, 19), -- Others
+(13272, 4408, 1), -- HP Modifiers
+(13272, 4409, 1), -- MP Modifiers
+(13272, 4410, 11), -- P. Atk. Modifiers
+(13272, 4411, 11), -- M. Atk. Modifiers
+(13272, 4412, 11), -- P. Def. Modifiers
+(13272, 4413, 11), -- M. Def. Modifiers
+(13272, 4414, 3), -- Armor Type
+(13272, 4415, 5), -- Weapon Type
+(13272, 4416, 19), -- Races
 (13272, 4441, 5), -- Greater Resist Mental Derangement
 -- Rain Watermelon
 (13273, 4045, 1), -- Resist Full Magic Attack
-(13273, 4390, 1), -- Mystic Immunity
-(13273, 4408, 1), -- HP Increase (1x)
-(13273, 4409, 1), -- MP Increase (1x)
-(13273, 4410, 11), -- Average P. Atk.
-(13273, 4411, 11), -- Average M. Atk.
-(13273, 4412, 11), -- Average P. Def.
-(13273, 4413, 11), -- Average M. Def.
-(13273, 4414, 3), -- Light Armor Type
-(13273, 4415, 5), -- Blunt Weapons
-(13273, 4416, 19), -- Others
+(13273, 4390, 1), -- NPC Abnormal Immunity
+(13273, 4408, 1), -- HP Modifiers
+(13273, 4409, 1), -- MP Modifiers
+(13273, 4410, 11), -- P. Atk. Modifiers
+(13273, 4411, 11), -- M. Atk. Modifiers
+(13273, 4412, 11), -- P. Def. Modifiers
+(13273, 4413, 11), -- M. Def. Modifiers
+(13273, 4414, 3), -- Armor Type
+(13273, 4415, 5), -- Weapon Type
+(13273, 4416, 19), -- Races
 (13273, 4441, 5), -- Greater Resist Mental Derangement
 -- Large Rain Watermelon
 (13274, 4045, 1), -- Resist Full Magic Attack
-(13274, 4390, 1), -- Mystic Immunity
-(13274, 4408, 1), -- HP Increase (1x)
-(13274, 4409, 1), -- MP Increase (1x)
-(13274, 4410, 11), -- Average P. Atk.
-(13274, 4411, 11), -- Average M. Atk.
-(13274, 4412, 11), -- Average P. Def.
-(13274, 4413, 11), -- Average M. Def.
-(13274, 4414, 3), -- Light Armor Type
-(13274, 4415, 5), -- Blunt Weapons
-(13274, 4416, 19), -- Others
+(13274, 4390, 1), -- NPC Abnormal Immunity
+(13274, 4408, 1), -- HP Modifiers
+(13274, 4409, 1), -- MP Modifiers
+(13274, 4410, 11), -- P. Atk. Modifiers
+(13274, 4411, 11), -- M. Atk. Modifiers
+(13274, 4412, 11), -- P. Def. Modifiers
+(13274, 4413, 11), -- M. Def. Modifiers
+(13274, 4414, 3), -- Armor Type
+(13274, 4415, 5), -- Weapon Type
+(13274, 4416, 19), -- Races
 (13274, 4441, 5), -- Greater Resist Mental Derangement
 -- Young Honey Watermelon
 (13275, 4045, 1), -- Resist Full Magic Attack
-(13275, 4390, 1), -- Mystic Immunity
-(13275, 4408, 1), -- HP Increase (1x)
-(13275, 4409, 1), -- MP Increase (1x)
-(13275, 4410, 11), -- Average P. Atk.
-(13275, 4411, 11), -- Average M. Atk.
-(13275, 4412, 11), -- Average P. Def.
-(13275, 4413, 11), -- Average M. Def.
-(13275, 4414, 3), -- Light Armor Type
-(13275, 4415, 5), -- Blunt Weapons
-(13275, 4416, 19), -- Others
+(13275, 4390, 1), -- NPC Abnormal Immunity
+(13275, 4408, 1), -- HP Modifiers
+(13275, 4409, 1), -- MP Modifiers
+(13275, 4410, 11), -- P. Atk. Modifiers
+(13275, 4411, 11), -- M. Atk. Modifiers
+(13275, 4412, 11), -- P. Def. Modifiers
+(13275, 4413, 11), -- M. Def. Modifiers
+(13275, 4414, 3), -- Armor Type
+(13275, 4415, 5), -- Weapon Type
+(13275, 4416, 19), -- Races
 (13275, 4441, 5), -- Greater Resist Mental Derangement
 -- Defective Honey Watermelon
 (13276, 4045, 1), -- Resist Full Magic Attack
-(13276, 4390, 1), -- Mystic Immunity
-(13276, 4408, 1), -- HP Increase (1x)
-(13276, 4409, 1), -- MP Increase (1x)
-(13276, 4410, 11), -- Average P. Atk.
-(13276, 4411, 11), -- Average M. Atk.
-(13276, 4412, 11), -- Average P. Def.
-(13276, 4413, 11), -- Average M. Def.
-(13276, 4414, 3), -- Light Armor Type
-(13276, 4415, 5), -- Blunt Weapons
-(13276, 4416, 19), -- Others
+(13276, 4390, 1), -- NPC Abnormal Immunity
+(13276, 4408, 1), -- HP Modifiers
+(13276, 4409, 1), -- MP Modifiers
+(13276, 4410, 11), -- P. Atk. Modifiers
+(13276, 4411, 11), -- M. Atk. Modifiers
+(13276, 4412, 11), -- P. Def. Modifiers
+(13276, 4413, 11), -- M. Def. Modifiers
+(13276, 4414, 3), -- Armor Type
+(13276, 4415, 5), -- Weapon Type
+(13276, 4416, 19), -- Races
 (13276, 4441, 5), -- Greater Resist Mental Derangement
 -- Rain Honey Watermelon
 (13277, 4045, 1), -- Resist Full Magic Attack
-(13277, 4390, 1), -- Mystic Immunity
-(13277, 4408, 1), -- HP Increase (1x)
-(13277, 4409, 1), -- MP Increase (1x)
-(13277, 4410, 11), -- Average P. Atk.
-(13277, 4411, 11), -- Average M. Atk.
-(13277, 4412, 11), -- Average P. Def.
-(13277, 4413, 11), -- Average M. Def.
-(13277, 4414, 3), -- Light Armor Type
-(13277, 4415, 5), -- Blunt Weapons
-(13277, 4416, 19), -- Others
+(13277, 4390, 1), -- NPC Abnormal Immunity
+(13277, 4408, 1), -- HP Modifiers
+(13277, 4409, 1), -- MP Modifiers
+(13277, 4410, 11), -- P. Atk. Modifiers
+(13277, 4411, 11), -- M. Atk. Modifiers
+(13277, 4412, 11), -- P. Def. Modifiers
+(13277, 4413, 11), -- M. Def. Modifiers
+(13277, 4414, 3), -- Armor Type
+(13277, 4415, 5), -- Weapon Type
+(13277, 4416, 19), -- Races
 (13277, 4441, 5), -- Greater Resist Mental Derangement
 -- Large Rain Honey Watermelon
 (13278, 4045, 1), -- Resist Full Magic Attack
-(13278, 4390, 1), -- Mystic Immunity
-(13278, 4408, 1), -- HP Increase (1x)
-(13278, 4409, 1), -- MP Increase (1x)
-(13278, 4410, 11), -- Average P. Atk.
-(13278, 4411, 11), -- Average M. Atk.
-(13278, 4412, 11), -- Average P. Def.
-(13278, 4413, 11), -- Average M. Def.
-(13278, 4414, 3), -- Light Armor Type
-(13278, 4415, 5), -- Blunt Weapons
-(13278, 4416, 19), -- Others
+(13278, 4390, 1), -- NPC Abnormal Immunity
+(13278, 4408, 1), -- HP Modifiers
+(13278, 4409, 1), -- MP Modifiers
+(13278, 4410, 11), -- P. Atk. Modifiers
+(13278, 4411, 11), -- M. Atk. Modifiers
+(13278, 4412, 11), -- P. Def. Modifiers
+(13278, 4413, 11), -- M. Def. Modifiers
+(13278, 4414, 3), -- Armor Type
+(13278, 4415, 5), -- Weapon Type
+(13278, 4416, 19), -- Races
 (13278, 4441, 5), -- Greater Resist Mental Derangement
 -- Uldie
 (13279, 4045, 1), -- Resist Full Magic Attack
-(13279, 4408, 1), -- HP Increase (1x)
-(13279, 4409, 1), -- MP Increase (1x)
-(13279, 4410, 11), -- Average P. Atk.
-(13279, 4411, 11), -- Average M. Atk.
-(13279, 4412, 11), -- Average P. Def.
-(13279, 4413, 11), -- Average M. Def.
-(13279, 4414, 2), -- Standard Type
-(13279, 4415, 3), -- One-handed Sword
-(13279, 4416, 1), -- Undead
+(13279, 4408, 1), -- HP Modifiers
+(13279, 4409, 1), -- MP Modifiers
+(13279, 4410, 11), -- P. Atk. Modifiers
+(13279, 4411, 11), -- M. Atk. Modifiers
+(13279, 4412, 11), -- P. Def. Modifiers
+(13279, 4413, 11), -- M. Def. Modifiers
+(13279, 4414, 2), -- Armor Type
+(13279, 4415, 3), -- Weapon Type
+(13279, 4416, 1), -- Races
 (13279, 4441, 5), -- Greater Resist Mental Derangement
 -- Belldandy
 (13280, 4045, 1), -- Resist Full Magic Attack
-(13280, 4408, 1), -- HP Increase (1x)
-(13280, 4409, 1), -- MP Increase (1x)
-(13280, 4410, 11), -- Average P. Atk.
-(13280, 4411, 11), -- Average M. Atk.
-(13280, 4412, 11), -- Average P. Def.
-(13280, 4413, 11), -- Average M. Def.
-(13280, 4414, 2), -- Standard Type
-(13280, 4415, 3), -- One-handed Sword
-(13280, 4416, 9), -- Demons
+(13280, 4408, 1), -- HP Modifiers
+(13280, 4409, 1), -- MP Modifiers
+(13280, 4410, 11), -- P. Atk. Modifiers
+(13280, 4411, 11), -- M. Atk. Modifiers
+(13280, 4412, 11), -- P. Def. Modifiers
+(13280, 4413, 11), -- M. Def. Modifiers
+(13280, 4414, 2), -- Armor Type
+(13280, 4415, 3), -- Weapon Type
+(13280, 4416, 9), -- Races
 (13280, 4441, 5), -- Greater Resist Mental Derangement
 -- Skooldie
 (13281, 4045, 1), -- Resist Full Magic Attack
-(13281, 4408, 1), -- HP Increase (1x)
-(13281, 4409, 1), -- MP Increase (1x)
-(13281, 4410, 11), -- Average P. Atk.
-(13281, 4411, 11), -- Average M. Atk.
-(13281, 4412, 11), -- Average P. Def.
-(13281, 4413, 11), -- Average M. Def.
-(13281, 4414, 2), -- Standard Type
-(13281, 4415, 3), -- One-handed Sword
-(13281, 4416, 1), -- Undead
+(13281, 4408, 1), -- HP Modifiers
+(13281, 4409, 1), -- MP Modifiers
+(13281, 4410, 11), -- P. Atk. Modifiers
+(13281, 4411, 11), -- M. Atk. Modifiers
+(13281, 4412, 11), -- P. Def. Modifiers
+(13281, 4413, 11), -- M. Def. Modifiers
+(13281, 4414, 2), -- Armor Type
+(13281, 4415, 3), -- Weapon Type
+(13281, 4416, 1), -- Races
 (13281, 4441, 5), -- Greater Resist Mental Derangement
 -- Skooldie
 (13282, 4045, 1), -- Resist Full Magic Attack
-(13282, 4408, 1), -- HP Increase (1x)
-(13282, 4409, 1), -- MP Increase (1x)
-(13282, 4410, 11), -- Average P. Atk.
-(13282, 4411, 11), -- Average M. Atk.
-(13282, 4412, 11), -- Average P. Def.
-(13282, 4413, 11), -- Average M. Def.
-(13282, 4414, 2), -- Standard Type
-(13282, 4415, 3), -- One-handed Sword
-(13282, 4416, 1), -- Undead
+(13282, 4408, 1), -- HP Modifiers
+(13282, 4409, 1), -- MP Modifiers
+(13282, 4410, 11), -- P. Atk. Modifiers
+(13282, 4411, 11), -- M. Atk. Modifiers
+(13282, 4412, 11), -- P. Def. Modifiers
+(13282, 4413, 11), -- M. Def. Modifiers
+(13282, 4414, 2), -- Armor Type
+(13282, 4415, 3), -- Weapon Type
+(13282, 4416, 1), -- Races
 (13282, 4441, 5), -- Greater Resist Mental Derangement
 -- Treykan
-(13283, 4408, 1), -- HP Increase (1x)
-(13283, 4409, 1), -- MP Increase (1x)
-(13283, 4410, 11), -- Average P. Atk.
-(13283, 4411, 11), -- Average M. Atk.
-(13283, 4412, 11), -- Average P. Def.
-(13283, 4413, 11), -- Average M. Def.
-(13283, 4414, 2), -- Standard Type
-(13283, 4415, 1), -- Bare Hands
-(13283, 4416, 3), -- Beasts
+(13283, 4408, 1), -- HP Modifiers
+(13283, 4409, 1), -- MP Modifiers
+(13283, 4410, 11), -- P. Atk. Modifiers
+(13283, 4411, 11), -- M. Atk. Modifiers
+(13283, 4412, 11), -- P. Def. Modifiers
+(13283, 4413, 11), -- M. Def. Modifiers
+(13283, 4414, 2), -- Armor Type
+(13283, 4415, 1), -- Weapon Type
+(13283, 4416, 3), -- Races
 -- 
 (13284, 4045, 1), -- Resist Full Magic Attack
-(13284, 4390, 1), -- Mystic Immunity
-(13284, 4408, 1), -- HP Increase (1x)
-(13284, 4409, 1), -- MP Increase (1x)
-(13284, 4410, 11), -- Average P. Atk.
-(13284, 4411, 11), -- Average M. Atk.
-(13284, 4412, 11), -- Average P. Def.
-(13284, 4413, 11), -- Average M. Def.
-(13284, 4414, 2), -- Standard Type
-(13284, 4415, 1), -- Bare Hands
-(13284, 4416, 2), -- Magic Creatures
+(13284, 4390, 1), -- NPC Abnormal Immunity
+(13284, 4408, 1), -- HP Modifiers
+(13284, 4409, 1), -- MP Modifiers
+(13284, 4410, 11), -- P. Atk. Modifiers
+(13284, 4411, 11), -- M. Atk. Modifiers
+(13284, 4412, 11), -- P. Def. Modifiers
+(13284, 4413, 11), -- M. Def. Modifiers
+(13284, 4414, 2), -- Armor Type
+(13284, 4415, 1), -- Weapon Type
+(13284, 4416, 2), -- Races
 -- Santa Claus
 (13285, 4045, 1), -- Resist Full Magic Attack
-(13285, 4390, 1), -- Mystic Immunity
-(13285, 4408, 1), -- HP Increase (1x)
-(13285, 4409, 1), -- MP Increase (1x)
-(13285, 4410, 11), -- Average P. Atk.
-(13285, 4411, 11), -- Average M. Atk.
-(13285, 4412, 11), -- Average P. Def.
-(13285, 4413, 11), -- Average M. Def.
-(13285, 4414, 2), -- Standard Type
-(13285, 4415, 1), -- Bare Hands
-(13285, 4416, 14), -- Humans
+(13285, 4390, 1), -- NPC Abnormal Immunity
+(13285, 4408, 1), -- HP Modifiers
+(13285, 4409, 1), -- MP Modifiers
+(13285, 4410, 11), -- P. Atk. Modifiers
+(13285, 4411, 11), -- M. Atk. Modifiers
+(13285, 4412, 11), -- P. Def. Modifiers
+(13285, 4413, 11), -- M. Def. Modifiers
+(13285, 4414, 2), -- Armor Type
+(13285, 4415, 1), -- Weapon Type
+(13285, 4416, 14), -- Races
 -- Baby White Tiger
-(13286, 4390, 1), -- Mystic Immunity
-(13286, 4408, 1), -- HP Increase (1x)
-(13286, 4409, 1), -- MP Increase (1x)
-(13286, 4410, 11), -- Average P. Atk.
-(13286, 4411, 11), -- Average M. Atk.
-(13286, 4412, 11), -- Average P. Def.
-(13286, 4413, 11), -- Average M. Def.
-(13286, 4414, 2), -- Standard Type
-(13286, 4415, 5), -- Blunt Weapons
-(13286, 4416, 3), -- Beasts
+(13286, 4390, 1), -- NPC Abnormal Immunity
+(13286, 4408, 1), -- HP Modifiers
+(13286, 4409, 1), -- MP Modifiers
+(13286, 4410, 11), -- P. Atk. Modifiers
+(13286, 4411, 11), -- M. Atk. Modifiers
+(13286, 4412, 11), -- P. Def. Modifiers
+(13286, 4413, 11), -- M. Def. Modifiers
+(13286, 4414, 2), -- Armor Type
+(13286, 4415, 5), -- Weapon Type
+(13286, 4416, 3), -- Races
 -- Baby White Tiger Captain
-(13287, 4390, 1), -- Mystic Immunity
-(13287, 4408, 1), -- HP Increase (1x)
-(13287, 4409, 1), -- MP Increase (1x)
-(13287, 4410, 11), -- Average P. Atk.
-(13287, 4411, 11), -- Average M. Atk.
-(13287, 4412, 11), -- Average P. Def.
-(13287, 4413, 11), -- Average M. Def.
-(13287, 4414, 2), -- Standard Type
-(13287, 4415, 5), -- Blunt Weapons
-(13287, 4416, 3), -- Beasts
+(13287, 4390, 1), -- NPC Abnormal Immunity
+(13287, 4408, 1), -- HP Modifiers
+(13287, 4409, 1), -- MP Modifiers
+(13287, 4410, 11), -- P. Atk. Modifiers
+(13287, 4411, 11), -- M. Atk. Modifiers
+(13287, 4412, 11), -- P. Def. Modifiers
+(13287, 4413, 11), -- M. Def. Modifiers
+(13287, 4414, 2), -- Armor Type
+(13287, 4415, 5), -- Weapon Type
+(13287, 4416, 3), -- Races
 -- Gloomy Baby White Tiger
-(13288, 4390, 1), -- Mystic Immunity
-(13288, 4408, 1), -- HP Increase (1x)
-(13288, 4409, 1), -- MP Increase (1x)
-(13288, 4410, 11), -- Average P. Atk.
-(13288, 4411, 11), -- Average M. Atk.
-(13288, 4412, 11), -- Average P. Def.
-(13288, 4413, 11), -- Average M. Def.
-(13288, 4414, 2), -- Standard Type
-(13288, 4415, 5), -- Blunt Weapons
-(13288, 4416, 3), -- Beasts
+(13288, 4390, 1), -- NPC Abnormal Immunity
+(13288, 4408, 1), -- HP Modifiers
+(13288, 4409, 1), -- MP Modifiers
+(13288, 4410, 11), -- P. Atk. Modifiers
+(13288, 4411, 11), -- M. Atk. Modifiers
+(13288, 4412, 11), -- P. Def. Modifiers
+(13288, 4413, 11), -- M. Def. Modifiers
+(13288, 4414, 2), -- Armor Type
+(13288, 4415, 5), -- Weapon Type
+(13288, 4416, 3), -- Races
 -- Gloomy Baby White Tiger Captain
-(13289, 4390, 1), -- Mystic Immunity
-(13289, 4408, 1), -- HP Increase (1x)
-(13289, 4409, 1), -- MP Increase (1x)
-(13289, 4410, 11), -- Average P. Atk.
-(13289, 4411, 11), -- Average M. Atk.
-(13289, 4412, 11), -- Average P. Def.
-(13289, 4413, 11), -- Average M. Def.
-(13289, 4414, 2), -- Standard Type
-(13289, 4415, 5), -- Blunt Weapons
-(13289, 4416, 3), -- Beasts
+(13289, 4390, 1), -- NPC Abnormal Immunity
+(13289, 4408, 1), -- HP Modifiers
+(13289, 4409, 1), -- MP Modifiers
+(13289, 4410, 11), -- P. Atk. Modifiers
+(13289, 4411, 11), -- M. Atk. Modifiers
+(13289, 4412, 11), -- P. Def. Modifiers
+(13289, 4413, 11), -- M. Def. Modifiers
+(13289, 4414, 2), -- Armor Type
+(13289, 4415, 5), -- Weapon Type
+(13289, 4416, 3), -- Races
 -- White Tiger
-(13290, 4390, 1), -- Mystic Immunity
-(13290, 4408, 1), -- HP Increase (1x)
-(13290, 4409, 1), -- MP Increase (1x)
-(13290, 4410, 11), -- Average P. Atk.
-(13290, 4411, 11), -- Average M. Atk.
-(13290, 4412, 11), -- Average P. Def.
-(13290, 4413, 11), -- Average M. Def.
-(13290, 4414, 2), -- Standard Type
-(13290, 4415, 5), -- Blunt Weapons
-(13290, 4416, 3), -- Beasts
+(13290, 4390, 1), -- NPC Abnormal Immunity
+(13290, 4408, 1), -- HP Modifiers
+(13290, 4409, 1), -- MP Modifiers
+(13290, 4410, 11), -- P. Atk. Modifiers
+(13290, 4411, 11), -- M. Atk. Modifiers
+(13290, 4412, 11), -- P. Def. Modifiers
+(13290, 4413, 11), -- M. Def. Modifiers
+(13290, 4414, 2), -- Armor Type
+(13290, 4415, 5), -- Weapon Type
+(13290, 4416, 3), -- Races
 -- White Tiger Captain
-(13291, 4390, 1), -- Mystic Immunity
-(13291, 4408, 1), -- HP Increase (1x)
-(13291, 4409, 1), -- MP Increase (1x)
-(13291, 4410, 11), -- Average P. Atk.
-(13291, 4411, 11), -- Average M. Atk.
-(13291, 4412, 11), -- Average P. Def.
-(13291, 4413, 11), -- Average M. Def.
-(13291, 4414, 2), -- Standard Type
-(13291, 4415, 5), -- Blunt Weapons
-(13291, 4416, 3), -- Beasts
+(13291, 4390, 1), -- NPC Abnormal Immunity
+(13291, 4408, 1), -- HP Modifiers
+(13291, 4409, 1), -- MP Modifiers
+(13291, 4410, 11), -- P. Atk. Modifiers
+(13291, 4411, 11), -- M. Atk. Modifiers
+(13291, 4412, 11), -- P. Def. Modifiers
+(13291, 4413, 11), -- M. Def. Modifiers
+(13291, 4414, 2), -- Armor Type
+(13291, 4415, 5), -- Weapon Type
+(13291, 4416, 3), -- Races
 -- Employee of Magic Research Institute
 (13292, 4045, 1), -- Resist Full Magic Attack
-(13292, 4390, 1), -- Mystic Immunity
-(13292, 4408, 1), -- HP Increase (1x)
-(13292, 4409, 1), -- MP Increase (1x)
-(13292, 4410, 11), -- Average P. Atk.
-(13292, 4411, 11), -- Average M. Atk.
-(13292, 4412, 11), -- Average P. Def.
-(13292, 4413, 11), -- Average M. Def.
-(13292, 4414, 2), -- Standard Type
-(13292, 4415, 3), -- One-handed Sword
-(13292, 4416, 18), -- Dwarves
+(13292, 4390, 1), -- NPC Abnormal Immunity
+(13292, 4408, 1), -- HP Modifiers
+(13292, 4409, 1), -- MP Modifiers
+(13292, 4410, 11), -- P. Atk. Modifiers
+(13292, 4411, 11), -- M. Atk. Modifiers
+(13292, 4412, 11), -- P. Def. Modifiers
+(13292, 4413, 11), -- M. Def. Modifiers
+(13292, 4414, 2), -- Armor Type
+(13292, 4415, 3), -- Weapon Type
+(13292, 4416, 18), -- Races
 -- 
-(13293, 4390, 1), -- Mystic Immunity
-(13293, 4408, 1), -- HP Increase (1x)
-(13293, 4409, 1), -- MP Increase (1x)
-(13293, 4410, 11), -- Average P. Atk.
-(13293, 4411, 11), -- Average M. Atk.
-(13293, 4412, 11), -- Average P. Def.
-(13293, 4413, 11), -- Average M. Def.
-(13293, 4414, 2), -- Standard Type
-(13293, 4415, 5), -- Blunt Weapons
-(13293, 4416, 2), -- Magic Creatures
+(13293, 4390, 1), -- NPC Abnormal Immunity
+(13293, 4408, 1), -- HP Modifiers
+(13293, 4409, 1), -- MP Modifiers
+(13293, 4410, 11), -- P. Atk. Modifiers
+(13293, 4411, 11), -- M. Atk. Modifiers
+(13293, 4412, 11), -- P. Def. Modifiers
+(13293, 4413, 11), -- M. Def. Modifiers
+(13293, 4414, 2), -- Armor Type
+(13293, 4415, 5), -- Weapon Type
+(13293, 4416, 2), -- Races
 -- 
-(13294, 4390, 1), -- Mystic Immunity
-(13294, 4408, 1), -- HP Increase (1x)
-(13294, 4409, 1), -- MP Increase (1x)
-(13294, 4410, 11), -- Average P. Atk.
-(13294, 4411, 11), -- Average M. Atk.
-(13294, 4412, 11), -- Average P. Def.
-(13294, 4413, 11), -- Average M. Def.
-(13294, 4414, 2), -- Standard Type
-(13294, 4415, 5), -- Blunt Weapons
-(13294, 4416, 2), -- Magic Creatures
+(13294, 4390, 1), -- NPC Abnormal Immunity
+(13294, 4408, 1), -- HP Modifiers
+(13294, 4409, 1), -- MP Modifiers
+(13294, 4410, 11), -- P. Atk. Modifiers
+(13294, 4411, 11), -- M. Atk. Modifiers
+(13294, 4412, 11), -- P. Def. Modifiers
+(13294, 4413, 11), -- M. Def. Modifiers
+(13294, 4414, 2), -- Armor Type
+(13294, 4415, 5), -- Weapon Type
+(13294, 4416, 2), -- Races
 -- White Lady
 (13295, 4045, 1), -- Resist Full Magic Attack
-(13295, 4408, 1), -- HP Increase (1x)
-(13295, 4409, 1), -- MP Increase (1x)
-(13295, 4410, 11), -- Average P. Atk.
-(13295, 4411, 11), -- Average M. Atk.
-(13295, 4412, 11), -- Average P. Def.
-(13295, 4413, 11), -- Average M. Def.
-(13295, 4414, 2), -- Standard Type
-(13295, 4415, 3), -- One-handed Sword
-(13295, 4416, 18), -- Dwarves
+(13295, 4408, 1), -- HP Modifiers
+(13295, 4409, 1), -- MP Modifiers
+(13295, 4410, 11), -- P. Atk. Modifiers
+(13295, 4411, 11), -- M. Atk. Modifiers
+(13295, 4412, 11), -- P. Def. Modifiers
+(13295, 4413, 11), -- M. Def. Modifiers
+(13295, 4414, 2), -- Armor Type
+(13295, 4415, 3), -- Weapon Type
+(13295, 4416, 18), -- Races
 (13295, 4441, 5), -- Greater Resist Mental Derangement
 -- Freya
 (13296, 4045, 1), -- Resist Full Magic Attack
-(13296, 4408, 1), -- HP Increase (1x)
-(13296, 4409, 1), -- MP Increase (1x)
-(13296, 4410, 11), -- Average P. Atk.
-(13296, 4411, 11), -- Average M. Atk.
-(13296, 4412, 11), -- Average P. Def.
-(13296, 4413, 11), -- Average M. Def.
-(13296, 4414, 2), -- Standard Type
-(13296, 4415, 3), -- One-handed Sword
-(13296, 4416, 6), -- Humanoids
+(13296, 4408, 1), -- HP Modifiers
+(13296, 4409, 1), -- MP Modifiers
+(13296, 4410, 11), -- P. Atk. Modifiers
+(13296, 4411, 11), -- M. Atk. Modifiers
+(13296, 4412, 11), -- P. Def. Modifiers
+(13296, 4413, 11), -- M. Def. Modifiers
+(13296, 4414, 2), -- Armor Type
+(13296, 4415, 3), -- Weapon Type
+(13296, 4416, 6), -- Races
 (13296, 4441, 5), -- Greater Resist Mental Derangement
 -- Reanimated Man
 (14001, 4121, 7), -- Summoned Monster Magic Protection
-(14001, 4408, 6), -- HP Very High
-(14001, 4409, 1), -- MP Increase (1x)
-(14001, 4410, 13), -- Slightly Strong P. Atk.
-(14001, 4411, 11), -- Average M. Atk.
-(14001, 4412, 11), -- Average P. Def.
-(14001, 4413, 11), -- Average M. Def.
-(14001, 4414, 2), -- Standard Type
-(14001, 4415, 3), -- One-handed Sword
-(14001, 4416, 1), -- Undead
-(14001, 5038, 15), -- Servitor PvP Penalty
+(14001, 4408, 6), -- HP Modifiers
+(14001, 4409, 1), -- MP Modifiers
+(14001, 4410, 13), -- P. Atk. Modifiers
+(14001, 4411, 11), -- M. Atk. Modifiers
+(14001, 4412, 11), -- P. Def. Modifiers
+(14001, 4413, 11), -- M. Def. Modifiers
+(14001, 4414, 2), -- Armor Type
+(14001, 4415, 3), -- Weapon Type
+(14001, 4416, 1), -- Races
+(14001, 5038, 15), -- Summon PVP Penalty
 -- Reanimated Man
 (14002, 4121, 7), -- Summoned Monster Magic Protection
-(14002, 4408, 6), -- HP Very High
-(14002, 4409, 1), -- MP Increase (1x)
-(14002, 4410, 13), -- Slightly Strong P. Atk.
-(14002, 4411, 11), -- Average M. Atk.
-(14002, 4412, 11), -- Average P. Def.
-(14002, 4413, 11), -- Average M. Def.
-(14002, 4414, 2), -- Standard Type
-(14002, 4415, 3), -- One-handed Sword
-(14002, 4416, 1), -- Undead
-(14002, 5038, 15), -- Servitor PvP Penalty
+(14002, 4408, 6), -- HP Modifiers
+(14002, 4409, 1), -- MP Modifiers
+(14002, 4410, 13), -- P. Atk. Modifiers
+(14002, 4411, 11), -- M. Atk. Modifiers
+(14002, 4412, 11), -- P. Def. Modifiers
+(14002, 4413, 11), -- M. Def. Modifiers
+(14002, 4414, 2), -- Armor Type
+(14002, 4415, 3), -- Weapon Type
+(14002, 4416, 1), -- Races
+(14002, 5038, 15), -- Summon PVP Penalty
 -- Reanimated Man
 (14003, 4121, 7), -- Summoned Monster Magic Protection
-(14003, 4408, 6), -- HP Very High
-(14003, 4409, 1), -- MP Increase (1x)
-(14003, 4410, 13), -- Slightly Strong P. Atk.
-(14003, 4411, 11), -- Average M. Atk.
-(14003, 4412, 11), -- Average P. Def.
-(14003, 4413, 11), -- Average M. Def.
-(14003, 4414, 2), -- Standard Type
-(14003, 4415, 3), -- One-handed Sword
-(14003, 4416, 1), -- Undead
-(14003, 5038, 15), -- Servitor PvP Penalty
+(14003, 4408, 6), -- HP Modifiers
+(14003, 4409, 1), -- MP Modifiers
+(14003, 4410, 13), -- P. Atk. Modifiers
+(14003, 4411, 11), -- M. Atk. Modifiers
+(14003, 4412, 11), -- P. Def. Modifiers
+(14003, 4413, 11), -- M. Def. Modifiers
+(14003, 4414, 2), -- Armor Type
+(14003, 4415, 3), -- Weapon Type
+(14003, 4416, 1), -- Races
+(14003, 5038, 15), -- Summon PVP Penalty
 -- Reanimated Man
 (14004, 4121, 7), -- Summoned Monster Magic Protection
-(14004, 4408, 6), -- HP Very High
-(14004, 4409, 1), -- MP Increase (1x)
-(14004, 4410, 13), -- Slightly Strong P. Atk.
-(14004, 4411, 11), -- Average M. Atk.
-(14004, 4412, 11), -- Average P. Def.
-(14004, 4413, 11), -- Average M. Def.
-(14004, 4414, 2), -- Standard Type
-(14004, 4415, 3), -- One-handed Sword
-(14004, 4416, 1), -- Undead
-(14004, 5038, 15), -- Servitor PvP Penalty
+(14004, 4408, 6), -- HP Modifiers
+(14004, 4409, 1), -- MP Modifiers
+(14004, 4410, 13), -- P. Atk. Modifiers
+(14004, 4411, 11), -- M. Atk. Modifiers
+(14004, 4412, 11), -- P. Def. Modifiers
+(14004, 4413, 11), -- M. Def. Modifiers
+(14004, 4414, 2), -- Armor Type
+(14004, 4415, 3), -- Weapon Type
+(14004, 4416, 1), -- Races
+(14004, 5038, 15), -- Summon PVP Penalty
 -- Reanimated Man
 (14005, 4121, 7), -- Summoned Monster Magic Protection
-(14005, 4408, 6), -- HP Very High
-(14005, 4409, 1), -- MP Increase (1x)
-(14005, 4410, 13), -- Slightly Strong P. Atk.
-(14005, 4411, 11), -- Average M. Atk.
-(14005, 4412, 11), -- Average P. Def.
-(14005, 4413, 11), -- Average M. Def.
-(14005, 4414, 2), -- Standard Type
-(14005, 4415, 3), -- One-handed Sword
-(14005, 4416, 1), -- Undead
-(14005, 5038, 15), -- Servitor PvP Penalty
+(14005, 4408, 6), -- HP Modifiers
+(14005, 4409, 1), -- MP Modifiers
+(14005, 4410, 13), -- P. Atk. Modifiers
+(14005, 4411, 11), -- M. Atk. Modifiers
+(14005, 4412, 11), -- P. Def. Modifiers
+(14005, 4413, 11), -- M. Def. Modifiers
+(14005, 4414, 2), -- Armor Type
+(14005, 4415, 3), -- Weapon Type
+(14005, 4416, 1), -- Races
+(14005, 5038, 15), -- Summon PVP Penalty
 -- Reanimated Man
 (14006, 4121, 7), -- Summoned Monster Magic Protection
-(14006, 4408, 6), -- HP Very High
-(14006, 4409, 1), -- MP Increase (1x)
-(14006, 4410, 13), -- Slightly Strong P. Atk.
-(14006, 4411, 11), -- Average M. Atk.
-(14006, 4412, 11), -- Average P. Def.
-(14006, 4413, 11), -- Average M. Def.
-(14006, 4414, 2), -- Standard Type
-(14006, 4415, 3), -- One-handed Sword
-(14006, 4416, 1), -- Undead
-(14006, 5038, 15), -- Servitor PvP Penalty
+(14006, 4408, 6), -- HP Modifiers
+(14006, 4409, 1), -- MP Modifiers
+(14006, 4410, 13), -- P. Atk. Modifiers
+(14006, 4411, 11), -- M. Atk. Modifiers
+(14006, 4412, 11), -- P. Def. Modifiers
+(14006, 4413, 11), -- M. Def. Modifiers
+(14006, 4414, 2), -- Armor Type
+(14006, 4415, 3), -- Weapon Type
+(14006, 4416, 1), -- Races
+(14006, 5038, 15), -- Summon PVP Penalty
 -- Reanimated Man
 (14007, 4121, 7), -- Summoned Monster Magic Protection
-(14007, 4408, 6), -- HP Very High
-(14007, 4409, 1), -- MP Increase (1x)
-(14007, 4410, 13), -- Slightly Strong P. Atk.
-(14007, 4411, 11), -- Average M. Atk.
-(14007, 4412, 11), -- Average P. Def.
-(14007, 4413, 11), -- Average M. Def.
-(14007, 4414, 2), -- Standard Type
-(14007, 4415, 3), -- One-handed Sword
-(14007, 4416, 1), -- Undead
-(14007, 5038, 15), -- Servitor PvP Penalty
+(14007, 4408, 6), -- HP Modifiers
+(14007, 4409, 1), -- MP Modifiers
+(14007, 4410, 13), -- P. Atk. Modifiers
+(14007, 4411, 11), -- M. Atk. Modifiers
+(14007, 4412, 11), -- P. Def. Modifiers
+(14007, 4413, 11), -- M. Def. Modifiers
+(14007, 4414, 2), -- Armor Type
+(14007, 4415, 3), -- Weapon Type
+(14007, 4416, 1), -- Races
+(14007, 5038, 15), -- Summon PVP Penalty
 -- Reanimated Man
 (14008, 4121, 7), -- Summoned Monster Magic Protection
-(14008, 4408, 6), -- HP Very High
-(14008, 4409, 1), -- MP Increase (1x)
-(14008, 4410, 13), -- Slightly Strong P. Atk.
-(14008, 4411, 11), -- Average M. Atk.
-(14008, 4412, 11), -- Average P. Def.
-(14008, 4413, 11), -- Average M. Def.
-(14008, 4414, 2), -- Standard Type
-(14008, 4415, 3), -- One-handed Sword
-(14008, 4416, 1), -- Undead
-(14008, 5038, 15), -- Servitor PvP Penalty
+(14008, 4408, 6), -- HP Modifiers
+(14008, 4409, 1), -- MP Modifiers
+(14008, 4410, 13), -- P. Atk. Modifiers
+(14008, 4411, 11), -- M. Atk. Modifiers
+(14008, 4412, 11), -- P. Def. Modifiers
+(14008, 4413, 11), -- M. Def. Modifiers
+(14008, 4414, 2), -- Armor Type
+(14008, 4415, 3), -- Weapon Type
+(14008, 4416, 1), -- Races
+(14008, 5038, 15), -- Summon PVP Penalty
 -- Reanimated Man
 (14009, 4121, 7), -- Summoned Monster Magic Protection
-(14009, 4408, 6), -- HP Very High
-(14009, 4409, 1), -- MP Increase (1x)
-(14009, 4410, 13), -- Slightly Strong P. Atk.
-(14009, 4411, 11), -- Average M. Atk.
-(14009, 4412, 11), -- Average P. Def.
-(14009, 4413, 11), -- Average M. Def.
-(14009, 4414, 2), -- Standard Type
-(14009, 4415, 3), -- One-handed Sword
-(14009, 4416, 1), -- Undead
-(14009, 5038, 15), -- Servitor PvP Penalty
+(14009, 4408, 6), -- HP Modifiers
+(14009, 4409, 1), -- MP Modifiers
+(14009, 4410, 13), -- P. Atk. Modifiers
+(14009, 4411, 11), -- M. Atk. Modifiers
+(14009, 4412, 11), -- P. Def. Modifiers
+(14009, 4413, 11), -- M. Def. Modifiers
+(14009, 4414, 2), -- Armor Type
+(14009, 4415, 3), -- Weapon Type
+(14009, 4416, 1), -- Races
+(14009, 5038, 15), -- Summon PVP Penalty
 -- Reanimated Man
 (14010, 4121, 7), -- Summoned Monster Magic Protection
-(14010, 4408, 6), -- HP Very High
-(14010, 4409, 1), -- MP Increase (1x)
-(14010, 4410, 13), -- Slightly Strong P. Atk.
-(14010, 4411, 11), -- Average M. Atk.
-(14010, 4412, 11), -- Average P. Def.
-(14010, 4413, 11), -- Average M. Def.
-(14010, 4414, 2), -- Standard Type
-(14010, 4415, 3), -- One-handed Sword
-(14010, 4416, 1), -- Undead
-(14010, 5038, 15), -- Servitor PvP Penalty
+(14010, 4408, 6), -- HP Modifiers
+(14010, 4409, 1), -- MP Modifiers
+(14010, 4410, 13), -- P. Atk. Modifiers
+(14010, 4411, 11), -- M. Atk. Modifiers
+(14010, 4412, 11), -- P. Def. Modifiers
+(14010, 4413, 11), -- M. Def. Modifiers
+(14010, 4414, 2), -- Armor Type
+(14010, 4415, 3), -- Weapon Type
+(14010, 4416, 1), -- Races
+(14010, 5038, 15), -- Summon PVP Penalty
 -- Reanimated Man
 (14011, 4121, 7), -- Summoned Monster Magic Protection
-(14011, 4408, 6), -- HP Very High
-(14011, 4409, 1), -- MP Increase (1x)
-(14011, 4410, 13), -- Slightly Strong P. Atk.
-(14011, 4411, 11), -- Average M. Atk.
-(14011, 4412, 11), -- Average P. Def.
-(14011, 4413, 11), -- Average M. Def.
-(14011, 4414, 2), -- Standard Type
-(14011, 4415, 3), -- One-handed Sword
-(14011, 4416, 1), -- Undead
-(14011, 5038, 15), -- Servitor PvP Penalty
+(14011, 4408, 6), -- HP Modifiers
+(14011, 4409, 1), -- MP Modifiers
+(14011, 4410, 13), -- P. Atk. Modifiers
+(14011, 4411, 11), -- M. Atk. Modifiers
+(14011, 4412, 11), -- P. Def. Modifiers
+(14011, 4413, 11), -- M. Def. Modifiers
+(14011, 4414, 2), -- Armor Type
+(14011, 4415, 3), -- Weapon Type
+(14011, 4416, 1), -- Races
+(14011, 5038, 15), -- Summon PVP Penalty
 -- Reanimated Man
 (14012, 4121, 7), -- Summoned Monster Magic Protection
-(14012, 4408, 6), -- HP Very High
-(14012, 4409, 1), -- MP Increase (1x)
-(14012, 4410, 13), -- Slightly Strong P. Atk.
-(14012, 4411, 11), -- Average M. Atk.
-(14012, 4412, 11), -- Average P. Def.
-(14012, 4413, 11), -- Average M. Def.
-(14012, 4414, 2), -- Standard Type
-(14012, 4415, 3), -- One-handed Sword
-(14012, 4416, 1), -- Undead
-(14012, 5038, 15), -- Servitor PvP Penalty
+(14012, 4408, 6), -- HP Modifiers
+(14012, 4409, 1), -- MP Modifiers
+(14012, 4410, 13), -- P. Atk. Modifiers
+(14012, 4411, 11), -- M. Atk. Modifiers
+(14012, 4412, 11), -- P. Def. Modifiers
+(14012, 4413, 11), -- M. Def. Modifiers
+(14012, 4414, 2), -- Armor Type
+(14012, 4415, 3), -- Weapon Type
+(14012, 4416, 1), -- Races
+(14012, 5038, 15), -- Summon PVP Penalty
 -- Reanimated Man
 (14013, 4121, 7), -- Summoned Monster Magic Protection
-(14013, 4408, 6), -- HP Very High
-(14013, 4409, 1), -- MP Increase (1x)
-(14013, 4410, 13), -- Slightly Strong P. Atk.
-(14013, 4411, 11), -- Average M. Atk.
-(14013, 4412, 11), -- Average P. Def.
-(14013, 4413, 11), -- Average M. Def.
-(14013, 4414, 2), -- Standard Type
-(14013, 4415, 3), -- One-handed Sword
-(14013, 4416, 1), -- Undead
-(14013, 5038, 15), -- Servitor PvP Penalty
+(14013, 4408, 6), -- HP Modifiers
+(14013, 4409, 1), -- MP Modifiers
+(14013, 4410, 13), -- P. Atk. Modifiers
+(14013, 4411, 11), -- M. Atk. Modifiers
+(14013, 4412, 11), -- P. Def. Modifiers
+(14013, 4413, 11), -- M. Def. Modifiers
+(14013, 4414, 2), -- Armor Type
+(14013, 4415, 3), -- Weapon Type
+(14013, 4416, 1), -- Races
+(14013, 5038, 15), -- Summon PVP Penalty
 -- Reanimated Man
 (14014, 4121, 7), -- Summoned Monster Magic Protection
-(14014, 4408, 6), -- HP Very High
-(14014, 4409, 1), -- MP Increase (1x)
-(14014, 4410, 13), -- Slightly Strong P. Atk.
-(14014, 4411, 11), -- Average M. Atk.
-(14014, 4412, 11), -- Average P. Def.
-(14014, 4413, 11), -- Average M. Def.
-(14014, 4414, 2), -- Standard Type
-(14014, 4415, 3), -- One-handed Sword
-(14014, 4416, 1), -- Undead
-(14014, 5038, 15), -- Servitor PvP Penalty
+(14014, 4408, 6), -- HP Modifiers
+(14014, 4409, 1), -- MP Modifiers
+(14014, 4410, 13), -- P. Atk. Modifiers
+(14014, 4411, 11), -- M. Atk. Modifiers
+(14014, 4412, 11), -- P. Def. Modifiers
+(14014, 4413, 11), -- M. Def. Modifiers
+(14014, 4414, 2), -- Armor Type
+(14014, 4415, 3), -- Weapon Type
+(14014, 4416, 1), -- Races
+(14014, 5038, 15), -- Summon PVP Penalty
 -- Reanimated Man
 (14015, 4121, 7), -- Summoned Monster Magic Protection
-(14015, 4408, 6), -- HP Very High
-(14015, 4409, 1), -- MP Increase (1x)
-(14015, 4410, 13), -- Slightly Strong P. Atk.
-(14015, 4411, 11), -- Average M. Atk.
-(14015, 4412, 11), -- Average P. Def.
-(14015, 4413, 11), -- Average M. Def.
-(14015, 4414, 2), -- Standard Type
-(14015, 4415, 3), -- One-handed Sword
-(14015, 4416, 1), -- Undead
-(14015, 5038, 15), -- Servitor PvP Penalty
+(14015, 4408, 6), -- HP Modifiers
+(14015, 4409, 1), -- MP Modifiers
+(14015, 4410, 13), -- P. Atk. Modifiers
+(14015, 4411, 11), -- M. Atk. Modifiers
+(14015, 4412, 11), -- P. Def. Modifiers
+(14015, 4413, 11), -- M. Def. Modifiers
+(14015, 4414, 2), -- Armor Type
+(14015, 4415, 3), -- Weapon Type
+(14015, 4416, 1), -- Races
+(14015, 5038, 15), -- Summon PVP Penalty
 -- Reanimated Man
 (14016, 4121, 7), -- Summoned Monster Magic Protection
-(14016, 4408, 6), -- HP Very High
-(14016, 4409, 1), -- MP Increase (1x)
-(14016, 4410, 13), -- Slightly Strong P. Atk.
-(14016, 4411, 11), -- Average M. Atk.
-(14016, 4412, 11), -- Average P. Def.
-(14016, 4413, 11), -- Average M. Def.
-(14016, 4414, 2), -- Standard Type
-(14016, 4415, 3), -- One-handed Sword
-(14016, 4416, 1), -- Undead
-(14016, 5038, 15), -- Servitor PvP Penalty
+(14016, 4408, 6), -- HP Modifiers
+(14016, 4409, 1), -- MP Modifiers
+(14016, 4410, 13), -- P. Atk. Modifiers
+(14016, 4411, 11), -- M. Atk. Modifiers
+(14016, 4412, 11), -- P. Def. Modifiers
+(14016, 4413, 11), -- M. Def. Modifiers
+(14016, 4414, 2), -- Armor Type
+(14016, 4415, 3), -- Weapon Type
+(14016, 4416, 1), -- Races
+(14016, 5038, 15), -- Summon PVP Penalty
 -- Reanimated Man
 (14017, 4121, 7), -- Summoned Monster Magic Protection
-(14017, 4408, 6), -- HP Very High
-(14017, 4409, 1), -- MP Increase (1x)
-(14017, 4410, 13), -- Slightly Strong P. Atk.
-(14017, 4411, 11), -- Average M. Atk.
-(14017, 4412, 11), -- Average P. Def.
-(14017, 4413, 11), -- Average M. Def.
-(14017, 4414, 2), -- Standard Type
-(14017, 4415, 3), -- One-handed Sword
-(14017, 4416, 1), -- Undead
-(14017, 5038, 15), -- Servitor PvP Penalty
+(14017, 4408, 6), -- HP Modifiers
+(14017, 4409, 1), -- MP Modifiers
+(14017, 4410, 13), -- P. Atk. Modifiers
+(14017, 4411, 11), -- M. Atk. Modifiers
+(14017, 4412, 11), -- P. Def. Modifiers
+(14017, 4413, 11), -- M. Def. Modifiers
+(14017, 4414, 2), -- Armor Type
+(14017, 4415, 3), -- Weapon Type
+(14017, 4416, 1), -- Races
+(14017, 5038, 15), -- Summon PVP Penalty
 -- Reanimated Man
 (14018, 4121, 7), -- Summoned Monster Magic Protection
-(14018, 4408, 6), -- HP Very High
-(14018, 4409, 1), -- MP Increase (1x)
-(14018, 4410, 13), -- Slightly Strong P. Atk.
-(14018, 4411, 11), -- Average M. Atk.
-(14018, 4412, 11), -- Average P. Def.
-(14018, 4413, 11), -- Average M. Def.
-(14018, 4414, 2), -- Standard Type
-(14018, 4415, 3), -- One-handed Sword
-(14018, 4416, 1), -- Undead
-(14018, 5038, 15), -- Servitor PvP Penalty
+(14018, 4408, 6), -- HP Modifiers
+(14018, 4409, 1), -- MP Modifiers
+(14018, 4410, 13), -- P. Atk. Modifiers
+(14018, 4411, 11), -- M. Atk. Modifiers
+(14018, 4412, 11), -- P. Def. Modifiers
+(14018, 4413, 11), -- M. Def. Modifiers
+(14018, 4414, 2), -- Armor Type
+(14018, 4415, 3), -- Weapon Type
+(14018, 4416, 1), -- Races
+(14018, 5038, 15), -- Summon PVP Penalty
 -- Reanimated Man
 (14019, 4121, 7), -- Summoned Monster Magic Protection
-(14019, 4408, 6), -- HP Very High
-(14019, 4409, 1), -- MP Increase (1x)
-(14019, 4410, 13), -- Slightly Strong P. Atk.
-(14019, 4411, 11), -- Average M. Atk.
-(14019, 4412, 11), -- Average P. Def.
-(14019, 4413, 11), -- Average M. Def.
-(14019, 4414, 2), -- Standard Type
-(14019, 4415, 3), -- One-handed Sword
-(14019, 4416, 1), -- Undead
-(14019, 5038, 15), -- Servitor PvP Penalty
+(14019, 4408, 6), -- HP Modifiers
+(14019, 4409, 1), -- MP Modifiers
+(14019, 4410, 13), -- P. Atk. Modifiers
+(14019, 4411, 11), -- M. Atk. Modifiers
+(14019, 4412, 11), -- P. Def. Modifiers
+(14019, 4413, 11), -- M. Def. Modifiers
+(14019, 4414, 2), -- Armor Type
+(14019, 4415, 3), -- Weapon Type
+(14019, 4416, 1), -- Races
+(14019, 5038, 15), -- Summon PVP Penalty
 -- Reanimated Man
 (14020, 4121, 7), -- Summoned Monster Magic Protection
-(14020, 4408, 6), -- HP Very High
-(14020, 4409, 1), -- MP Increase (1x)
-(14020, 4410, 13), -- Slightly Strong P. Atk.
-(14020, 4411, 11), -- Average M. Atk.
-(14020, 4412, 11), -- Average P. Def.
-(14020, 4413, 11), -- Average M. Def.
-(14020, 4414, 2), -- Standard Type
-(14020, 4415, 3), -- One-handed Sword
-(14020, 4416, 1), -- Undead
-(14020, 5038, 15), -- Servitor PvP Penalty
+(14020, 4408, 6), -- HP Modifiers
+(14020, 4409, 1), -- MP Modifiers
+(14020, 4410, 13), -- P. Atk. Modifiers
+(14020, 4411, 11), -- M. Atk. Modifiers
+(14020, 4412, 11), -- P. Def. Modifiers
+(14020, 4413, 11), -- M. Def. Modifiers
+(14020, 4414, 2), -- Armor Type
+(14020, 4415, 3), -- Weapon Type
+(14020, 4416, 1), -- Races
+(14020, 5038, 15), -- Summon PVP Penalty
 -- Reanimated Man
 (14021, 4121, 7), -- Summoned Monster Magic Protection
-(14021, 4408, 6), -- HP Very High
-(14021, 4409, 1), -- MP Increase (1x)
-(14021, 4410, 13), -- Slightly Strong P. Atk.
-(14021, 4411, 11), -- Average M. Atk.
-(14021, 4412, 11), -- Average P. Def.
-(14021, 4413, 11), -- Average M. Def.
-(14021, 4414, 2), -- Standard Type
-(14021, 4415, 3), -- One-handed Sword
-(14021, 4416, 1), -- Undead
-(14021, 5038, 15), -- Servitor PvP Penalty
+(14021, 4408, 6), -- HP Modifiers
+(14021, 4409, 1), -- MP Modifiers
+(14021, 4410, 13), -- P. Atk. Modifiers
+(14021, 4411, 11), -- M. Atk. Modifiers
+(14021, 4412, 11), -- P. Def. Modifiers
+(14021, 4413, 11), -- M. Def. Modifiers
+(14021, 4414, 2), -- Armor Type
+(14021, 4415, 3), -- Weapon Type
+(14021, 4416, 1), -- Races
+(14021, 5038, 15), -- Summon PVP Penalty
 -- Reanimated Man
 (14022, 4121, 7), -- Summoned Monster Magic Protection
-(14022, 4408, 6), -- HP Very High
-(14022, 4409, 1), -- MP Increase (1x)
-(14022, 4410, 13), -- Slightly Strong P. Atk.
-(14022, 4411, 11), -- Average M. Atk.
-(14022, 4412, 11), -- Average P. Def.
-(14022, 4413, 11), -- Average M. Def.
-(14022, 4414, 2), -- Standard Type
-(14022, 4415, 3), -- One-handed Sword
-(14022, 4416, 1), -- Undead
-(14022, 5038, 15), -- Servitor PvP Penalty
+(14022, 4408, 6), -- HP Modifiers
+(14022, 4409, 1), -- MP Modifiers
+(14022, 4410, 13), -- P. Atk. Modifiers
+(14022, 4411, 11), -- M. Atk. Modifiers
+(14022, 4412, 11), -- P. Def. Modifiers
+(14022, 4413, 11), -- M. Def. Modifiers
+(14022, 4414, 2), -- Armor Type
+(14022, 4415, 3), -- Weapon Type
+(14022, 4416, 1), -- Races
+(14022, 5038, 15), -- Summon PVP Penalty
 -- Reanimated Man
 (14023, 4121, 7), -- Summoned Monster Magic Protection
-(14023, 4408, 6), -- HP Very High
-(14023, 4409, 1), -- MP Increase (1x)
-(14023, 4410, 13), -- Slightly Strong P. Atk.
-(14023, 4411, 11), -- Average M. Atk.
-(14023, 4412, 11), -- Average P. Def.
-(14023, 4413, 11), -- Average M. Def.
-(14023, 4414, 2), -- Standard Type
-(14023, 4415, 3), -- One-handed Sword
-(14023, 4416, 1), -- Undead
-(14023, 5038, 15), -- Servitor PvP Penalty
+(14023, 4408, 6), -- HP Modifiers
+(14023, 4409, 1), -- MP Modifiers
+(14023, 4410, 13), -- P. Atk. Modifiers
+(14023, 4411, 11), -- M. Atk. Modifiers
+(14023, 4412, 11), -- P. Def. Modifiers
+(14023, 4413, 11), -- M. Def. Modifiers
+(14023, 4414, 2), -- Armor Type
+(14023, 4415, 3), -- Weapon Type
+(14023, 4416, 1), -- Races
+(14023, 5038, 15), -- Summon PVP Penalty
 -- Reanimated Man
 (14024, 4121, 7), -- Summoned Monster Magic Protection
-(14024, 4408, 6), -- HP Very High
-(14024, 4409, 1), -- MP Increase (1x)
-(14024, 4410, 13), -- Slightly Strong P. Atk.
-(14024, 4411, 11), -- Average M. Atk.
-(14024, 4412, 11), -- Average P. Def.
-(14024, 4413, 11), -- Average M. Def.
-(14024, 4414, 2), -- Standard Type
-(14024, 4415, 3), -- One-handed Sword
-(14024, 4416, 1), -- Undead
-(14024, 5038, 15), -- Servitor PvP Penalty
+(14024, 4408, 6), -- HP Modifiers
+(14024, 4409, 1), -- MP Modifiers
+(14024, 4410, 13), -- P. Atk. Modifiers
+(14024, 4411, 11), -- M. Atk. Modifiers
+(14024, 4412, 11), -- P. Def. Modifiers
+(14024, 4413, 11), -- M. Def. Modifiers
+(14024, 4414, 2), -- Armor Type
+(14024, 4415, 3), -- Weapon Type
+(14024, 4416, 1), -- Races
+(14024, 5038, 15), -- Summon PVP Penalty
 -- Reanimated Man
 (14025, 4121, 7), -- Summoned Monster Magic Protection
-(14025, 4408, 6), -- HP Very High
-(14025, 4409, 1), -- MP Increase (1x)
-(14025, 4410, 13), -- Slightly Strong P. Atk.
-(14025, 4411, 11), -- Average M. Atk.
-(14025, 4412, 11), -- Average P. Def.
-(14025, 4413, 11), -- Average M. Def.
-(14025, 4414, 2), -- Standard Type
-(14025, 4415, 3), -- One-handed Sword
-(14025, 4416, 1), -- Undead
-(14025, 5038, 15), -- Servitor PvP Penalty
+(14025, 4408, 6), -- HP Modifiers
+(14025, 4409, 1), -- MP Modifiers
+(14025, 4410, 13), -- P. Atk. Modifiers
+(14025, 4411, 11), -- M. Atk. Modifiers
+(14025, 4412, 11), -- P. Def. Modifiers
+(14025, 4413, 11), -- M. Def. Modifiers
+(14025, 4414, 2), -- Armor Type
+(14025, 4415, 3), -- Weapon Type
+(14025, 4416, 1), -- Races
+(14025, 5038, 15), -- Summon PVP Penalty
 -- Reanimated Man
 (14026, 4121, 7), -- Summoned Monster Magic Protection
-(14026, 4408, 6), -- HP Very High
-(14026, 4409, 1), -- MP Increase (1x)
-(14026, 4410, 13), -- Slightly Strong P. Atk.
-(14026, 4411, 11), -- Average M. Atk.
-(14026, 4412, 11), -- Average P. Def.
-(14026, 4413, 11), -- Average M. Def.
-(14026, 4414, 2), -- Standard Type
-(14026, 4415, 3), -- One-handed Sword
-(14026, 4416, 1), -- Undead
-(14026, 5038, 15), -- Servitor PvP Penalty
+(14026, 4408, 6), -- HP Modifiers
+(14026, 4409, 1), -- MP Modifiers
+(14026, 4410, 13), -- P. Atk. Modifiers
+(14026, 4411, 11), -- M. Atk. Modifiers
+(14026, 4412, 11), -- P. Def. Modifiers
+(14026, 4413, 11), -- M. Def. Modifiers
+(14026, 4414, 2), -- Armor Type
+(14026, 4415, 3), -- Weapon Type
+(14026, 4416, 1), -- Races
+(14026, 5038, 15), -- Summon PVP Penalty
 -- Reanimated Man
 (14027, 4121, 7), -- Summoned Monster Magic Protection
-(14027, 4408, 6), -- HP Very High
-(14027, 4409, 1), -- MP Increase (1x)
-(14027, 4410, 13), -- Slightly Strong P. Atk.
-(14027, 4411, 11), -- Average M. Atk.
-(14027, 4412, 11), -- Average P. Def.
-(14027, 4413, 11), -- Average M. Def.
-(14027, 4414, 2), -- Standard Type
-(14027, 4415, 3), -- One-handed Sword
-(14027, 4416, 1), -- Undead
-(14027, 5038, 15), -- Servitor PvP Penalty
+(14027, 4408, 6), -- HP Modifiers
+(14027, 4409, 1), -- MP Modifiers
+(14027, 4410, 13), -- P. Atk. Modifiers
+(14027, 4411, 11), -- M. Atk. Modifiers
+(14027, 4412, 11), -- P. Def. Modifiers
+(14027, 4413, 11), -- M. Def. Modifiers
+(14027, 4414, 2), -- Armor Type
+(14027, 4415, 3), -- Weapon Type
+(14027, 4416, 1), -- Races
+(14027, 5038, 15), -- Summon PVP Penalty
 -- Reanimated Man
 (14028, 4121, 7), -- Summoned Monster Magic Protection
-(14028, 4408, 6), -- HP Very High
-(14028, 4409, 1), -- MP Increase (1x)
-(14028, 4410, 13), -- Slightly Strong P. Atk.
-(14028, 4411, 11), -- Average M. Atk.
-(14028, 4412, 11), -- Average P. Def.
-(14028, 4413, 11), -- Average M. Def.
-(14028, 4414, 2), -- Standard Type
-(14028, 4415, 3), -- One-handed Sword
-(14028, 4416, 1), -- Undead
-(14028, 5038, 15), -- Servitor PvP Penalty
+(14028, 4408, 6), -- HP Modifiers
+(14028, 4409, 1), -- MP Modifiers
+(14028, 4410, 13), -- P. Atk. Modifiers
+(14028, 4411, 11), -- M. Atk. Modifiers
+(14028, 4412, 11), -- P. Def. Modifiers
+(14028, 4413, 11), -- M. Def. Modifiers
+(14028, 4414, 2), -- Armor Type
+(14028, 4415, 3), -- Weapon Type
+(14028, 4416, 1), -- Races
+(14028, 5038, 15), -- Summon PVP Penalty
 -- Reanimated Man
 (14029, 4121, 7), -- Summoned Monster Magic Protection
-(14029, 4408, 6), -- HP Very High
-(14029, 4409, 1), -- MP Increase (1x)
-(14029, 4410, 13), -- Slightly Strong P. Atk.
-(14029, 4411, 11), -- Average M. Atk.
-(14029, 4412, 11), -- Average P. Def.
-(14029, 4413, 11), -- Average M. Def.
-(14029, 4414, 2), -- Standard Type
-(14029, 4415, 3), -- One-handed Sword
-(14029, 4416, 1), -- Undead
-(14029, 5038, 15), -- Servitor PvP Penalty
+(14029, 4408, 6), -- HP Modifiers
+(14029, 4409, 1), -- MP Modifiers
+(14029, 4410, 13), -- P. Atk. Modifiers
+(14029, 4411, 11), -- M. Atk. Modifiers
+(14029, 4412, 11), -- P. Def. Modifiers
+(14029, 4413, 11), -- M. Def. Modifiers
+(14029, 4414, 2), -- Armor Type
+(14029, 4415, 3), -- Weapon Type
+(14029, 4416, 1), -- Races
+(14029, 5038, 15), -- Summon PVP Penalty
 -- Reanimated Man
 (14030, 4121, 7), -- Summoned Monster Magic Protection
-(14030, 4408, 6), -- HP Very High
-(14030, 4409, 1), -- MP Increase (1x)
-(14030, 4410, 13), -- Slightly Strong P. Atk.
-(14030, 4411, 11), -- Average M. Atk.
-(14030, 4412, 11), -- Average P. Def.
-(14030, 4413, 11), -- Average M. Def.
-(14030, 4414, 2), -- Standard Type
-(14030, 4415, 3), -- One-handed Sword
-(14030, 4416, 1), -- Undead
-(14030, 5038, 15), -- Servitor PvP Penalty
+(14030, 4408, 6), -- HP Modifiers
+(14030, 4409, 1), -- MP Modifiers
+(14030, 4410, 13), -- P. Atk. Modifiers
+(14030, 4411, 11), -- M. Atk. Modifiers
+(14030, 4412, 11), -- P. Def. Modifiers
+(14030, 4413, 11), -- M. Def. Modifiers
+(14030, 4414, 2), -- Armor Type
+(14030, 4415, 3), -- Weapon Type
+(14030, 4416, 1), -- Races
+(14030, 5038, 15), -- Summon PVP Penalty
 -- Reanimated Man
 (14031, 4121, 7), -- Summoned Monster Magic Protection
-(14031, 4408, 6), -- HP Very High
-(14031, 4409, 1), -- MP Increase (1x)
-(14031, 4410, 13), -- Slightly Strong P. Atk.
-(14031, 4411, 11), -- Average M. Atk.
-(14031, 4412, 11), -- Average P. Def.
-(14031, 4413, 11), -- Average M. Def.
-(14031, 4414, 2), -- Standard Type
-(14031, 4415, 3), -- One-handed Sword
-(14031, 4416, 1), -- Undead
-(14031, 5038, 15), -- Servitor PvP Penalty
+(14031, 4408, 6), -- HP Modifiers
+(14031, 4409, 1), -- MP Modifiers
+(14031, 4410, 13), -- P. Atk. Modifiers
+(14031, 4411, 11), -- M. Atk. Modifiers
+(14031, 4412, 11), -- P. Def. Modifiers
+(14031, 4413, 11), -- M. Def. Modifiers
+(14031, 4414, 2), -- Armor Type
+(14031, 4415, 3), -- Weapon Type
+(14031, 4416, 1), -- Races
+(14031, 5038, 15), -- Summon PVP Penalty
 -- Reanimated Man
 (14032, 4121, 7), -- Summoned Monster Magic Protection
-(14032, 4408, 6), -- HP Very High
-(14032, 4409, 1), -- MP Increase (1x)
-(14032, 4410, 13), -- Slightly Strong P. Atk.
-(14032, 4411, 11), -- Average M. Atk.
-(14032, 4412, 11), -- Average P. Def.
-(14032, 4413, 11), -- Average M. Def.
-(14032, 4414, 2), -- Standard Type
-(14032, 4415, 3), -- One-handed Sword
-(14032, 4416, 1), -- Undead
-(14032, 5038, 15), -- Servitor PvP Penalty
+(14032, 4408, 6), -- HP Modifiers
+(14032, 4409, 1), -- MP Modifiers
+(14032, 4410, 13), -- P. Atk. Modifiers
+(14032, 4411, 11), -- M. Atk. Modifiers
+(14032, 4412, 11), -- P. Def. Modifiers
+(14032, 4413, 11), -- M. Def. Modifiers
+(14032, 4414, 2), -- Armor Type
+(14032, 4415, 3), -- Weapon Type
+(14032, 4416, 1), -- Races
+(14032, 5038, 15), -- Summon PVP Penalty
 -- Reanimated Man
 (14033, 4121, 7), -- Summoned Monster Magic Protection
-(14033, 4408, 6), -- HP Very High
-(14033, 4409, 1), -- MP Increase (1x)
-(14033, 4410, 13), -- Slightly Strong P. Atk.
-(14033, 4411, 11), -- Average M. Atk.
-(14033, 4412, 11), -- Average P. Def.
-(14033, 4413, 11), -- Average M. Def.
-(14033, 4414, 2), -- Standard Type
-(14033, 4415, 3), -- One-handed Sword
-(14033, 4416, 1), -- Undead
-(14033, 5038, 15), -- Servitor PvP Penalty
+(14033, 4408, 6), -- HP Modifiers
+(14033, 4409, 1), -- MP Modifiers
+(14033, 4410, 13), -- P. Atk. Modifiers
+(14033, 4411, 11), -- M. Atk. Modifiers
+(14033, 4412, 11), -- P. Def. Modifiers
+(14033, 4413, 11), -- M. Def. Modifiers
+(14033, 4414, 2), -- Armor Type
+(14033, 4415, 3), -- Weapon Type
+(14033, 4416, 1), -- Races
+(14033, 5038, 15), -- Summon PVP Penalty
 -- Reanimated Man
 (14034, 4121, 7), -- Summoned Monster Magic Protection
-(14034, 4408, 6), -- HP Very High
-(14034, 4409, 1), -- MP Increase (1x)
-(14034, 4410, 13), -- Slightly Strong P. Atk.
-(14034, 4411, 11), -- Average M. Atk.
-(14034, 4412, 11), -- Average P. Def.
-(14034, 4413, 11), -- Average M. Def.
-(14034, 4414, 2), -- Standard Type
-(14034, 4415, 3), -- One-handed Sword
-(14034, 4416, 1), -- Undead
-(14034, 5038, 15), -- Servitor PvP Penalty
+(14034, 4408, 6), -- HP Modifiers
+(14034, 4409, 1), -- MP Modifiers
+(14034, 4410, 13), -- P. Atk. Modifiers
+(14034, 4411, 11), -- M. Atk. Modifiers
+(14034, 4412, 11), -- P. Def. Modifiers
+(14034, 4413, 11), -- M. Def. Modifiers
+(14034, 4414, 2), -- Armor Type
+(14034, 4415, 3), -- Weapon Type
+(14034, 4416, 1), -- Races
+(14034, 5038, 15), -- Summon PVP Penalty
 -- Reanimated Man
 (14035, 4121, 7), -- Summoned Monster Magic Protection
-(14035, 4408, 6), -- HP Very High
-(14035, 4409, 1), -- MP Increase (1x)
-(14035, 4410, 13), -- Slightly Strong P. Atk.
-(14035, 4411, 11), -- Average M. Atk.
-(14035, 4412, 11), -- Average P. Def.
-(14035, 4413, 11), -- Average M. Def.
-(14035, 4414, 2), -- Standard Type
-(14035, 4415, 3), -- One-handed Sword
-(14035, 4416, 1), -- Undead
-(14035, 5038, 15), -- Servitor PvP Penalty
+(14035, 4408, 6), -- HP Modifiers
+(14035, 4409, 1), -- MP Modifiers
+(14035, 4410, 13), -- P. Atk. Modifiers
+(14035, 4411, 11), -- M. Atk. Modifiers
+(14035, 4412, 11), -- P. Def. Modifiers
+(14035, 4413, 11), -- M. Def. Modifiers
+(14035, 4414, 2), -- Armor Type
+(14035, 4415, 3), -- Weapon Type
+(14035, 4416, 1), -- Races
+(14035, 5038, 15), -- Summon PVP Penalty
 -- Reanimated Man
 (14036, 4121, 7), -- Summoned Monster Magic Protection
-(14036, 4408, 6), -- HP Very High
-(14036, 4409, 1), -- MP Increase (1x)
-(14036, 4410, 13), -- Slightly Strong P. Atk.
-(14036, 4411, 11), -- Average M. Atk.
-(14036, 4412, 11), -- Average P. Def.
-(14036, 4413, 11), -- Average M. Def.
-(14036, 4414, 2), -- Standard Type
-(14036, 4415, 3), -- One-handed Sword
-(14036, 4416, 1), -- Undead
-(14036, 5038, 15), -- Servitor PvP Penalty
+(14036, 4408, 6), -- HP Modifiers
+(14036, 4409, 1), -- MP Modifiers
+(14036, 4410, 13), -- P. Atk. Modifiers
+(14036, 4411, 11), -- M. Atk. Modifiers
+(14036, 4412, 11), -- P. Def. Modifiers
+(14036, 4413, 11), -- M. Def. Modifiers
+(14036, 4414, 2), -- Armor Type
+(14036, 4415, 3), -- Weapon Type
+(14036, 4416, 1), -- Races
+(14036, 5038, 15), -- Summon PVP Penalty
 -- Reanimated Man
 (14037, 4121, 7), -- Summoned Monster Magic Protection
-(14037, 4408, 6), -- HP Very High
-(14037, 4409, 1), -- MP Increase (1x)
-(14037, 4410, 13), -- Slightly Strong P. Atk.
-(14037, 4411, 11), -- Average M. Atk.
-(14037, 4412, 11), -- Average P. Def.
-(14037, 4413, 11), -- Average M. Def.
-(14037, 4414, 2), -- Standard Type
-(14037, 4415, 3), -- One-handed Sword
-(14037, 4416, 1), -- Undead
-(14037, 5038, 15), -- Servitor PvP Penalty
+(14037, 4408, 6), -- HP Modifiers
+(14037, 4409, 1), -- MP Modifiers
+(14037, 4410, 13), -- P. Atk. Modifiers
+(14037, 4411, 11), -- M. Atk. Modifiers
+(14037, 4412, 11), -- P. Def. Modifiers
+(14037, 4413, 11), -- M. Def. Modifiers
+(14037, 4414, 2), -- Armor Type
+(14037, 4415, 3), -- Weapon Type
+(14037, 4416, 1), -- Races
+(14037, 5038, 15), -- Summon PVP Penalty
 -- Corrupted Man
 (14038, 4121, 7), -- Summoned Monster Magic Protection
-(14038, 4408, 6), -- HP Very High
-(14038, 4409, 1), -- MP Increase (1x)
-(14038, 4410, 13), -- Slightly Strong P. Atk.
-(14038, 4411, 11), -- Average M. Atk.
-(14038, 4412, 11), -- Average P. Def.
-(14038, 4413, 11), -- Average M. Def.
-(14038, 4414, 2), -- Standard Type
-(14038, 4415, 3), -- One-handed Sword
-(14038, 4416, 1), -- Undead
-(14038, 5038, 15), -- Servitor PvP Penalty
+(14038, 4408, 6), -- HP Modifiers
+(14038, 4409, 1), -- MP Modifiers
+(14038, 4410, 13), -- P. Atk. Modifiers
+(14038, 4411, 11), -- M. Atk. Modifiers
+(14038, 4412, 11), -- P. Def. Modifiers
+(14038, 4413, 11), -- M. Def. Modifiers
+(14038, 4414, 2), -- Armor Type
+(14038, 4415, 3), -- Weapon Type
+(14038, 4416, 1), -- Races
+(14038, 5038, 15), -- Summon PVP Penalty
 -- Corrupted Man
 (14039, 4121, 7), -- Summoned Monster Magic Protection
-(14039, 4408, 6), -- HP Very High
-(14039, 4409, 1), -- MP Increase (1x)
-(14039, 4410, 13), -- Slightly Strong P. Atk.
-(14039, 4411, 11), -- Average M. Atk.
-(14039, 4412, 11), -- Average P. Def.
-(14039, 4413, 11), -- Average M. Def.
-(14039, 4414, 2), -- Standard Type
-(14039, 4415, 3), -- One-handed Sword
-(14039, 4416, 1), -- Undead
-(14039, 5038, 15), -- Servitor PvP Penalty
+(14039, 4408, 6), -- HP Modifiers
+(14039, 4409, 1), -- MP Modifiers
+(14039, 4410, 13), -- P. Atk. Modifiers
+(14039, 4411, 11), -- M. Atk. Modifiers
+(14039, 4412, 11), -- P. Def. Modifiers
+(14039, 4413, 11), -- M. Def. Modifiers
+(14039, 4414, 2), -- Armor Type
+(14039, 4415, 3), -- Weapon Type
+(14039, 4416, 1), -- Races
+(14039, 5038, 15), -- Summon PVP Penalty
 -- Corrupted Man
 (14040, 4121, 7), -- Summoned Monster Magic Protection
-(14040, 4408, 6), -- HP Very High
-(14040, 4409, 1), -- MP Increase (1x)
-(14040, 4410, 13), -- Slightly Strong P. Atk.
-(14040, 4411, 11), -- Average M. Atk.
-(14040, 4412, 11), -- Average P. Def.
-(14040, 4413, 11), -- Average M. Def.
-(14040, 4414, 2), -- Standard Type
-(14040, 4415, 3), -- One-handed Sword
-(14040, 4416, 1), -- Undead
-(14040, 5038, 15), -- Servitor PvP Penalty
+(14040, 4408, 6), -- HP Modifiers
+(14040, 4409, 1), -- MP Modifiers
+(14040, 4410, 13), -- P. Atk. Modifiers
+(14040, 4411, 11), -- M. Atk. Modifiers
+(14040, 4412, 11), -- P. Def. Modifiers
+(14040, 4413, 11), -- M. Def. Modifiers
+(14040, 4414, 2), -- Armor Type
+(14040, 4415, 3), -- Weapon Type
+(14040, 4416, 1), -- Races
+(14040, 5038, 15), -- Summon PVP Penalty
 -- Corrupted Man
 (14041, 4121, 7), -- Summoned Monster Magic Protection
-(14041, 4408, 6), -- HP Very High
-(14041, 4409, 1), -- MP Increase (1x)
-(14041, 4410, 13), -- Slightly Strong P. Atk.
-(14041, 4411, 11), -- Average M. Atk.
-(14041, 4412, 11), -- Average P. Def.
-(14041, 4413, 11), -- Average M. Def.
-(14041, 4414, 2), -- Standard Type
-(14041, 4415, 3), -- One-handed Sword
-(14041, 4416, 1), -- Undead
-(14041, 5038, 15), -- Servitor PvP Penalty
+(14041, 4408, 6), -- HP Modifiers
+(14041, 4409, 1), -- MP Modifiers
+(14041, 4410, 13), -- P. Atk. Modifiers
+(14041, 4411, 11), -- M. Atk. Modifiers
+(14041, 4412, 11), -- P. Def. Modifiers
+(14041, 4413, 11), -- M. Def. Modifiers
+(14041, 4414, 2), -- Armor Type
+(14041, 4415, 3), -- Weapon Type
+(14041, 4416, 1), -- Races
+(14041, 5038, 15), -- Summon PVP Penalty
 -- Corrupted Man
 (14042, 4121, 7), -- Summoned Monster Magic Protection
-(14042, 4408, 6), -- HP Very High
-(14042, 4409, 1), -- MP Increase (1x)
-(14042, 4410, 13), -- Slightly Strong P. Atk.
-(14042, 4411, 11), -- Average M. Atk.
-(14042, 4412, 11), -- Average P. Def.
-(14042, 4413, 11), -- Average M. Def.
-(14042, 4414, 2), -- Standard Type
-(14042, 4415, 3), -- One-handed Sword
-(14042, 4416, 1), -- Undead
-(14042, 5038, 15), -- Servitor PvP Penalty
+(14042, 4408, 6), -- HP Modifiers
+(14042, 4409, 1), -- MP Modifiers
+(14042, 4410, 13), -- P. Atk. Modifiers
+(14042, 4411, 11), -- M. Atk. Modifiers
+(14042, 4412, 11), -- P. Def. Modifiers
+(14042, 4413, 11), -- M. Def. Modifiers
+(14042, 4414, 2), -- Armor Type
+(14042, 4415, 3), -- Weapon Type
+(14042, 4416, 1), -- Races
+(14042, 5038, 15), -- Summon PVP Penalty
 -- Corrupted Man
 (14043, 4121, 7), -- Summoned Monster Magic Protection
-(14043, 4408, 6), -- HP Very High
-(14043, 4409, 1), -- MP Increase (1x)
-(14043, 4410, 13), -- Slightly Strong P. Atk.
-(14043, 4411, 11), -- Average M. Atk.
-(14043, 4412, 11), -- Average P. Def.
-(14043, 4413, 11), -- Average M. Def.
-(14043, 4414, 2), -- Standard Type
-(14043, 4415, 3), -- One-handed Sword
-(14043, 4416, 1), -- Undead
-(14043, 5038, 15), -- Servitor PvP Penalty
+(14043, 4408, 6), -- HP Modifiers
+(14043, 4409, 1), -- MP Modifiers
+(14043, 4410, 13), -- P. Atk. Modifiers
+(14043, 4411, 11), -- M. Atk. Modifiers
+(14043, 4412, 11), -- P. Def. Modifiers
+(14043, 4413, 11), -- M. Def. Modifiers
+(14043, 4414, 2), -- Armor Type
+(14043, 4415, 3), -- Weapon Type
+(14043, 4416, 1), -- Races
+(14043, 5038, 15), -- Summon PVP Penalty
 -- Corrupted Man
 (14044, 4121, 7), -- Summoned Monster Magic Protection
-(14044, 4408, 6), -- HP Very High
-(14044, 4409, 1), -- MP Increase (1x)
-(14044, 4410, 13), -- Slightly Strong P. Atk.
-(14044, 4411, 11), -- Average M. Atk.
-(14044, 4412, 11), -- Average P. Def.
-(14044, 4413, 11), -- Average M. Def.
-(14044, 4414, 2), -- Standard Type
-(14044, 4415, 3), -- One-handed Sword
-(14044, 4416, 1), -- Undead
-(14044, 5038, 15), -- Servitor PvP Penalty
+(14044, 4408, 6), -- HP Modifiers
+(14044, 4409, 1), -- MP Modifiers
+(14044, 4410, 13), -- P. Atk. Modifiers
+(14044, 4411, 11), -- M. Atk. Modifiers
+(14044, 4412, 11), -- P. Def. Modifiers
+(14044, 4413, 11), -- M. Def. Modifiers
+(14044, 4414, 2), -- Armor Type
+(14044, 4415, 3), -- Weapon Type
+(14044, 4416, 1), -- Races
+(14044, 5038, 15), -- Summon PVP Penalty
 -- Corrupted Man
 (14045, 4121, 7), -- Summoned Monster Magic Protection
-(14045, 4408, 6), -- HP Very High
-(14045, 4409, 1), -- MP Increase (1x)
-(14045, 4410, 13), -- Slightly Strong P. Atk.
-(14045, 4411, 11), -- Average M. Atk.
-(14045, 4412, 11), -- Average P. Def.
-(14045, 4413, 11), -- Average M. Def.
-(14045, 4414, 2), -- Standard Type
-(14045, 4415, 3), -- One-handed Sword
-(14045, 4416, 1), -- Undead
-(14045, 5038, 15), -- Servitor PvP Penalty
+(14045, 4408, 6), -- HP Modifiers
+(14045, 4409, 1), -- MP Modifiers
+(14045, 4410, 13), -- P. Atk. Modifiers
+(14045, 4411, 11), -- M. Atk. Modifiers
+(14045, 4412, 11), -- P. Def. Modifiers
+(14045, 4413, 11), -- M. Def. Modifiers
+(14045, 4414, 2), -- Armor Type
+(14045, 4415, 3), -- Weapon Type
+(14045, 4416, 1), -- Races
+(14045, 5038, 15), -- Summon PVP Penalty
 -- Corrupted Man
 (14046, 4121, 7), -- Summoned Monster Magic Protection
-(14046, 4408, 6), -- HP Very High
-(14046, 4409, 1), -- MP Increase (1x)
-(14046, 4410, 13), -- Slightly Strong P. Atk.
-(14046, 4411, 11), -- Average M. Atk.
-(14046, 4412, 11), -- Average P. Def.
-(14046, 4413, 11), -- Average M. Def.
-(14046, 4414, 2), -- Standard Type
-(14046, 4415, 3), -- One-handed Sword
-(14046, 4416, 1), -- Undead
-(14046, 5038, 15), -- Servitor PvP Penalty
+(14046, 4408, 6), -- HP Modifiers
+(14046, 4409, 1), -- MP Modifiers
+(14046, 4410, 13), -- P. Atk. Modifiers
+(14046, 4411, 11), -- M. Atk. Modifiers
+(14046, 4412, 11), -- P. Def. Modifiers
+(14046, 4413, 11), -- M. Def. Modifiers
+(14046, 4414, 2), -- Armor Type
+(14046, 4415, 3), -- Weapon Type
+(14046, 4416, 1), -- Races
+(14046, 5038, 15), -- Summon PVP Penalty
 -- Corrupted Man
 (14047, 4121, 7), -- Summoned Monster Magic Protection
-(14047, 4408, 6), -- HP Very High
-(14047, 4409, 1), -- MP Increase (1x)
-(14047, 4410, 13), -- Slightly Strong P. Atk.
-(14047, 4411, 11), -- Average M. Atk.
-(14047, 4412, 11), -- Average P. Def.
-(14047, 4413, 11), -- Average M. Def.
-(14047, 4414, 2), -- Standard Type
-(14047, 4415, 3), -- One-handed Sword
-(14047, 4416, 1), -- Undead
-(14047, 5038, 15), -- Servitor PvP Penalty
+(14047, 4408, 6), -- HP Modifiers
+(14047, 4409, 1), -- MP Modifiers
+(14047, 4410, 13), -- P. Atk. Modifiers
+(14047, 4411, 11), -- M. Atk. Modifiers
+(14047, 4412, 11), -- P. Def. Modifiers
+(14047, 4413, 11), -- M. Def. Modifiers
+(14047, 4414, 2), -- Armor Type
+(14047, 4415, 3), -- Weapon Type
+(14047, 4416, 1), -- Races
+(14047, 5038, 15), -- Summon PVP Penalty
 -- Corrupted Man
 (14048, 4121, 7), -- Summoned Monster Magic Protection
-(14048, 4408, 6), -- HP Very High
-(14048, 4409, 1), -- MP Increase (1x)
-(14048, 4410, 13), -- Slightly Strong P. Atk.
-(14048, 4411, 11), -- Average M. Atk.
-(14048, 4412, 11), -- Average P. Def.
-(14048, 4413, 11), -- Average M. Def.
-(14048, 4414, 2), -- Standard Type
-(14048, 4415, 3), -- One-handed Sword
-(14048, 4416, 1), -- Undead
-(14048, 5038, 15), -- Servitor PvP Penalty
+(14048, 4408, 6), -- HP Modifiers
+(14048, 4409, 1), -- MP Modifiers
+(14048, 4410, 13), -- P. Atk. Modifiers
+(14048, 4411, 11), -- M. Atk. Modifiers
+(14048, 4412, 11), -- P. Def. Modifiers
+(14048, 4413, 11), -- M. Def. Modifiers
+(14048, 4414, 2), -- Armor Type
+(14048, 4415, 3), -- Weapon Type
+(14048, 4416, 1), -- Races
+(14048, 5038, 15), -- Summon PVP Penalty
 -- Corrupted Man
 (14049, 4121, 7), -- Summoned Monster Magic Protection
-(14049, 4408, 6), -- HP Very High
-(14049, 4409, 1), -- MP Increase (1x)
-(14049, 4410, 13), -- Slightly Strong P. Atk.
-(14049, 4411, 11), -- Average M. Atk.
-(14049, 4412, 11), -- Average P. Def.
-(14049, 4413, 11), -- Average M. Def.
-(14049, 4414, 2), -- Standard Type
-(14049, 4415, 3), -- One-handed Sword
-(14049, 4416, 1), -- Undead
-(14049, 5038, 15), -- Servitor PvP Penalty
+(14049, 4408, 6), -- HP Modifiers
+(14049, 4409, 1), -- MP Modifiers
+(14049, 4410, 13), -- P. Atk. Modifiers
+(14049, 4411, 11), -- M. Atk. Modifiers
+(14049, 4412, 11), -- P. Def. Modifiers
+(14049, 4413, 11), -- M. Def. Modifiers
+(14049, 4414, 2), -- Armor Type
+(14049, 4415, 3), -- Weapon Type
+(14049, 4416, 1), -- Races
+(14049, 5038, 15), -- Summon PVP Penalty
 -- Corrupted Man
 (14050, 4121, 7), -- Summoned Monster Magic Protection
-(14050, 4408, 6), -- HP Very High
-(14050, 4409, 1), -- MP Increase (1x)
-(14050, 4410, 13), -- Slightly Strong P. Atk.
-(14050, 4411, 11), -- Average M. Atk.
-(14050, 4412, 11), -- Average P. Def.
-(14050, 4413, 11), -- Average M. Def.
-(14050, 4414, 2), -- Standard Type
-(14050, 4415, 3), -- One-handed Sword
-(14050, 4416, 1), -- Undead
-(14050, 5038, 15), -- Servitor PvP Penalty
+(14050, 4408, 6), -- HP Modifiers
+(14050, 4409, 1), -- MP Modifiers
+(14050, 4410, 13), -- P. Atk. Modifiers
+(14050, 4411, 11), -- M. Atk. Modifiers
+(14050, 4412, 11), -- P. Def. Modifiers
+(14050, 4413, 11), -- M. Def. Modifiers
+(14050, 4414, 2), -- Armor Type
+(14050, 4415, 3), -- Weapon Type
+(14050, 4416, 1), -- Races
+(14050, 5038, 15), -- Summon PVP Penalty
 -- Corrupted Man
 (14051, 4121, 7), -- Summoned Monster Magic Protection
-(14051, 4408, 6), -- HP Very High
-(14051, 4409, 1), -- MP Increase (1x)
-(14051, 4410, 13), -- Slightly Strong P. Atk.
-(14051, 4411, 11), -- Average M. Atk.
-(14051, 4412, 11), -- Average P. Def.
-(14051, 4413, 11), -- Average M. Def.
-(14051, 4414, 2), -- Standard Type
-(14051, 4415, 3), -- One-handed Sword
-(14051, 4416, 1), -- Undead
-(14051, 5038, 15), -- Servitor PvP Penalty
+(14051, 4408, 6), -- HP Modifiers
+(14051, 4409, 1), -- MP Modifiers
+(14051, 4410, 13), -- P. Atk. Modifiers
+(14051, 4411, 11), -- M. Atk. Modifiers
+(14051, 4412, 11), -- P. Def. Modifiers
+(14051, 4413, 11), -- M. Def. Modifiers
+(14051, 4414, 2), -- Armor Type
+(14051, 4415, 3), -- Weapon Type
+(14051, 4416, 1), -- Races
+(14051, 5038, 15), -- Summon PVP Penalty
 -- Corrupted Man
 (14052, 4121, 7), -- Summoned Monster Magic Protection
-(14052, 4408, 6), -- HP Very High
-(14052, 4409, 1), -- MP Increase (1x)
-(14052, 4410, 13), -- Slightly Strong P. Atk.
-(14052, 4411, 11), -- Average M. Atk.
-(14052, 4412, 11), -- Average P. Def.
-(14052, 4413, 11), -- Average M. Def.
-(14052, 4414, 2), -- Standard Type
-(14052, 4415, 3), -- One-handed Sword
-(14052, 4416, 1), -- Undead
-(14052, 5038, 15), -- Servitor PvP Penalty
+(14052, 4408, 6), -- HP Modifiers
+(14052, 4409, 1), -- MP Modifiers
+(14052, 4410, 13), -- P. Atk. Modifiers
+(14052, 4411, 11), -- M. Atk. Modifiers
+(14052, 4412, 11), -- P. Def. Modifiers
+(14052, 4413, 11), -- M. Def. Modifiers
+(14052, 4414, 2), -- Armor Type
+(14052, 4415, 3), -- Weapon Type
+(14052, 4416, 1), -- Races
+(14052, 5038, 15), -- Summon PVP Penalty
 -- Corrupted Man
 (14053, 4121, 7), -- Summoned Monster Magic Protection
-(14053, 4408, 6), -- HP Very High
-(14053, 4409, 1), -- MP Increase (1x)
-(14053, 4410, 13), -- Slightly Strong P. Atk.
-(14053, 4411, 11), -- Average M. Atk.
-(14053, 4412, 11), -- Average P. Def.
-(14053, 4413, 11), -- Average M. Def.
-(14053, 4414, 2), -- Standard Type
-(14053, 4415, 3), -- One-handed Sword
-(14053, 4416, 1), -- Undead
-(14053, 5038, 15), -- Servitor PvP Penalty
+(14053, 4408, 6), -- HP Modifiers
+(14053, 4409, 1), -- MP Modifiers
+(14053, 4410, 13), -- P. Atk. Modifiers
+(14053, 4411, 11), -- M. Atk. Modifiers
+(14053, 4412, 11), -- P. Def. Modifiers
+(14053, 4413, 11), -- M. Def. Modifiers
+(14053, 4414, 2), -- Armor Type
+(14053, 4415, 3), -- Weapon Type
+(14053, 4416, 1), -- Races
+(14053, 5038, 15), -- Summon PVP Penalty
 -- Corrupted Man
 (14054, 4121, 7), -- Summoned Monster Magic Protection
-(14054, 4408, 6), -- HP Very High
-(14054, 4409, 1), -- MP Increase (1x)
-(14054, 4410, 13), -- Slightly Strong P. Atk.
-(14054, 4411, 11), -- Average M. Atk.
-(14054, 4412, 11), -- Average P. Def.
-(14054, 4413, 11), -- Average M. Def.
-(14054, 4414, 2), -- Standard Type
-(14054, 4415, 3), -- One-handed Sword
-(14054, 4416, 1), -- Undead
-(14054, 5038, 15), -- Servitor PvP Penalty
+(14054, 4408, 6), -- HP Modifiers
+(14054, 4409, 1), -- MP Modifiers
+(14054, 4410, 13), -- P. Atk. Modifiers
+(14054, 4411, 11), -- M. Atk. Modifiers
+(14054, 4412, 11), -- P. Def. Modifiers
+(14054, 4413, 11), -- M. Def. Modifiers
+(14054, 4414, 2), -- Armor Type
+(14054, 4415, 3), -- Weapon Type
+(14054, 4416, 1), -- Races
+(14054, 5038, 15), -- Summon PVP Penalty
 -- Corrupted Man
 (14055, 4121, 7), -- Summoned Monster Magic Protection
-(14055, 4408, 6), -- HP Very High
-(14055, 4409, 1), -- MP Increase (1x)
-(14055, 4410, 13), -- Slightly Strong P. Atk.
-(14055, 4411, 11), -- Average M. Atk.
-(14055, 4412, 11), -- Average P. Def.
-(14055, 4413, 11), -- Average M. Def.
-(14055, 4414, 2), -- Standard Type
-(14055, 4415, 3), -- One-handed Sword
-(14055, 4416, 1), -- Undead
-(14055, 5038, 15), -- Servitor PvP Penalty
+(14055, 4408, 6), -- HP Modifiers
+(14055, 4409, 1), -- MP Modifiers
+(14055, 4410, 13), -- P. Atk. Modifiers
+(14055, 4411, 11), -- M. Atk. Modifiers
+(14055, 4412, 11), -- P. Def. Modifiers
+(14055, 4413, 11), -- M. Def. Modifiers
+(14055, 4414, 2), -- Armor Type
+(14055, 4415, 3), -- Weapon Type
+(14055, 4416, 1), -- Races
+(14055, 5038, 15), -- Summon PVP Penalty
 -- Corrupted Man
 (14056, 4121, 7), -- Summoned Monster Magic Protection
-(14056, 4408, 6), -- HP Very High
-(14056, 4409, 1), -- MP Increase (1x)
-(14056, 4410, 13), -- Slightly Strong P. Atk.
-(14056, 4411, 11), -- Average M. Atk.
-(14056, 4412, 11), -- Average P. Def.
-(14056, 4413, 11), -- Average M. Def.
-(14056, 4414, 2), -- Standard Type
-(14056, 4415, 3), -- One-handed Sword
-(14056, 4416, 1), -- Undead
-(14056, 5038, 15), -- Servitor PvP Penalty
+(14056, 4408, 6), -- HP Modifiers
+(14056, 4409, 1), -- MP Modifiers
+(14056, 4410, 13), -- P. Atk. Modifiers
+(14056, 4411, 11), -- M. Atk. Modifiers
+(14056, 4412, 11), -- P. Def. Modifiers
+(14056, 4413, 11), -- M. Def. Modifiers
+(14056, 4414, 2), -- Armor Type
+(14056, 4415, 3), -- Weapon Type
+(14056, 4416, 1), -- Races
+(14056, 5038, 15), -- Summon PVP Penalty
 -- Corrupted Man
 (14057, 4121, 7), -- Summoned Monster Magic Protection
-(14057, 4408, 6), -- HP Very High
-(14057, 4409, 1), -- MP Increase (1x)
-(14057, 4410, 13), -- Slightly Strong P. Atk.
-(14057, 4411, 11), -- Average M. Atk.
-(14057, 4412, 11), -- Average P. Def.
-(14057, 4413, 11), -- Average M. Def.
-(14057, 4414, 2), -- Standard Type
-(14057, 4415, 3), -- One-handed Sword
-(14057, 4416, 1), -- Undead
-(14057, 5038, 15), -- Servitor PvP Penalty
+(14057, 4408, 6), -- HP Modifiers
+(14057, 4409, 1), -- MP Modifiers
+(14057, 4410, 13), -- P. Atk. Modifiers
+(14057, 4411, 11), -- M. Atk. Modifiers
+(14057, 4412, 11), -- P. Def. Modifiers
+(14057, 4413, 11), -- M. Def. Modifiers
+(14057, 4414, 2), -- Armor Type
+(14057, 4415, 3), -- Weapon Type
+(14057, 4416, 1), -- Races
+(14057, 5038, 15), -- Summon PVP Penalty
 -- Corrupted Man
 (14058, 4121, 7), -- Summoned Monster Magic Protection
-(14058, 4408, 6), -- HP Very High
-(14058, 4409, 1), -- MP Increase (1x)
-(14058, 4410, 13), -- Slightly Strong P. Atk.
-(14058, 4411, 11), -- Average M. Atk.
-(14058, 4412, 11), -- Average P. Def.
-(14058, 4413, 11), -- Average M. Def.
-(14058, 4414, 2), -- Standard Type
-(14058, 4415, 3), -- One-handed Sword
-(14058, 4416, 1), -- Undead
-(14058, 5038, 15), -- Servitor PvP Penalty
+(14058, 4408, 6), -- HP Modifiers
+(14058, 4409, 1), -- MP Modifiers
+(14058, 4410, 13), -- P. Atk. Modifiers
+(14058, 4411, 11), -- M. Atk. Modifiers
+(14058, 4412, 11), -- P. Def. Modifiers
+(14058, 4413, 11), -- M. Def. Modifiers
+(14058, 4414, 2), -- Armor Type
+(14058, 4415, 3), -- Weapon Type
+(14058, 4416, 1), -- Races
+(14058, 5038, 15), -- Summon PVP Penalty
 -- Corrupted Man
 (14059, 4121, 7), -- Summoned Monster Magic Protection
-(14059, 4408, 6), -- HP Very High
-(14059, 4409, 1), -- MP Increase (1x)
-(14059, 4410, 13), -- Slightly Strong P. Atk.
-(14059, 4411, 11), -- Average M. Atk.
-(14059, 4412, 11), -- Average P. Def.
-(14059, 4413, 11), -- Average M. Def.
-(14059, 4414, 2), -- Standard Type
-(14059, 4415, 3), -- One-handed Sword
-(14059, 4416, 1), -- Undead
-(14059, 5038, 15), -- Servitor PvP Penalty
+(14059, 4408, 6), -- HP Modifiers
+(14059, 4409, 1), -- MP Modifiers
+(14059, 4410, 13), -- P. Atk. Modifiers
+(14059, 4411, 11), -- M. Atk. Modifiers
+(14059, 4412, 11), -- P. Def. Modifiers
+(14059, 4413, 11), -- M. Def. Modifiers
+(14059, 4414, 2), -- Armor Type
+(14059, 4415, 3), -- Weapon Type
+(14059, 4416, 1), -- Races
+(14059, 5038, 15), -- Summon PVP Penalty
 -- Corrupted Man
 (14060, 4121, 7), -- Summoned Monster Magic Protection
-(14060, 4408, 6), -- HP Very High
-(14060, 4409, 1), -- MP Increase (1x)
-(14060, 4410, 13), -- Slightly Strong P. Atk.
-(14060, 4411, 11), -- Average M. Atk.
-(14060, 4412, 11), -- Average P. Def.
-(14060, 4413, 11), -- Average M. Def.
-(14060, 4414, 2), -- Standard Type
-(14060, 4415, 3), -- One-handed Sword
-(14060, 4416, 1), -- Undead
-(14060, 5038, 15), -- Servitor PvP Penalty
+(14060, 4408, 6), -- HP Modifiers
+(14060, 4409, 1), -- MP Modifiers
+(14060, 4410, 13), -- P. Atk. Modifiers
+(14060, 4411, 11), -- M. Atk. Modifiers
+(14060, 4412, 11), -- P. Def. Modifiers
+(14060, 4413, 11), -- M. Def. Modifiers
+(14060, 4414, 2), -- Armor Type
+(14060, 4415, 3), -- Weapon Type
+(14060, 4416, 1), -- Races
+(14060, 5038, 15), -- Summon PVP Penalty
 -- Corrupted Man
 (14061, 4121, 7), -- Summoned Monster Magic Protection
-(14061, 4408, 6), -- HP Very High
-(14061, 4409, 1), -- MP Increase (1x)
-(14061, 4410, 13), -- Slightly Strong P. Atk.
-(14061, 4411, 11), -- Average M. Atk.
-(14061, 4412, 11), -- Average P. Def.
-(14061, 4413, 11), -- Average M. Def.
-(14061, 4414, 2), -- Standard Type
-(14061, 4415, 3), -- One-handed Sword
-(14061, 4416, 1), -- Undead
-(14061, 5038, 15), -- Servitor PvP Penalty
+(14061, 4408, 6), -- HP Modifiers
+(14061, 4409, 1), -- MP Modifiers
+(14061, 4410, 13), -- P. Atk. Modifiers
+(14061, 4411, 11), -- M. Atk. Modifiers
+(14061, 4412, 11), -- P. Def. Modifiers
+(14061, 4413, 11), -- M. Def. Modifiers
+(14061, 4414, 2), -- Armor Type
+(14061, 4415, 3), -- Weapon Type
+(14061, 4416, 1), -- Races
+(14061, 5038, 15), -- Summon PVP Penalty
 -- Corrupted Man
 (14062, 4121, 7), -- Summoned Monster Magic Protection
-(14062, 4408, 6), -- HP Very High
-(14062, 4409, 1), -- MP Increase (1x)
-(14062, 4410, 13), -- Slightly Strong P. Atk.
-(14062, 4411, 11), -- Average M. Atk.
-(14062, 4412, 11), -- Average P. Def.
-(14062, 4413, 11), -- Average M. Def.
-(14062, 4414, 2), -- Standard Type
-(14062, 4415, 3), -- One-handed Sword
-(14062, 4416, 1), -- Undead
-(14062, 5038, 15), -- Servitor PvP Penalty
+(14062, 4408, 6), -- HP Modifiers
+(14062, 4409, 1), -- MP Modifiers
+(14062, 4410, 13), -- P. Atk. Modifiers
+(14062, 4411, 11), -- M. Atk. Modifiers
+(14062, 4412, 11), -- P. Def. Modifiers
+(14062, 4413, 11), -- M. Def. Modifiers
+(14062, 4414, 2), -- Armor Type
+(14062, 4415, 3), -- Weapon Type
+(14062, 4416, 1), -- Races
+(14062, 5038, 15), -- Summon PVP Penalty
 -- Corrupted Man
 (14063, 4121, 7), -- Summoned Monster Magic Protection
-(14063, 4408, 6), -- HP Very High
-(14063, 4409, 1), -- MP Increase (1x)
-(14063, 4410, 13), -- Slightly Strong P. Atk.
-(14063, 4411, 11), -- Average M. Atk.
-(14063, 4412, 11), -- Average P. Def.
-(14063, 4413, 11), -- Average M. Def.
-(14063, 4414, 2), -- Standard Type
-(14063, 4415, 3), -- One-handed Sword
-(14063, 4416, 1), -- Undead
-(14063, 5038, 15), -- Servitor PvP Penalty
+(14063, 4408, 6), -- HP Modifiers
+(14063, 4409, 1), -- MP Modifiers
+(14063, 4410, 13), -- P. Atk. Modifiers
+(14063, 4411, 11), -- M. Atk. Modifiers
+(14063, 4412, 11), -- P. Def. Modifiers
+(14063, 4413, 11), -- M. Def. Modifiers
+(14063, 4414, 2), -- Armor Type
+(14063, 4415, 3), -- Weapon Type
+(14063, 4416, 1), -- Races
+(14063, 5038, 15), -- Summon PVP Penalty
 -- Corrupted Man
 (14064, 4121, 7), -- Summoned Monster Magic Protection
-(14064, 4408, 6), -- HP Very High
-(14064, 4409, 1), -- MP Increase (1x)
-(14064, 4410, 13), -- Slightly Strong P. Atk.
-(14064, 4411, 11), -- Average M. Atk.
-(14064, 4412, 11), -- Average P. Def.
-(14064, 4413, 11), -- Average M. Def.
-(14064, 4414, 2), -- Standard Type
-(14064, 4415, 3), -- One-handed Sword
-(14064, 4416, 1), -- Undead
-(14064, 5038, 15), -- Servitor PvP Penalty
+(14064, 4408, 6), -- HP Modifiers
+(14064, 4409, 1), -- MP Modifiers
+(14064, 4410, 13), -- P. Atk. Modifiers
+(14064, 4411, 11), -- M. Atk. Modifiers
+(14064, 4412, 11), -- P. Def. Modifiers
+(14064, 4413, 11), -- M. Def. Modifiers
+(14064, 4414, 2), -- Armor Type
+(14064, 4415, 3), -- Weapon Type
+(14064, 4416, 1), -- Races
+(14064, 5038, 15), -- Summon PVP Penalty
 -- Corrupted Man
 (14065, 4121, 7), -- Summoned Monster Magic Protection
-(14065, 4408, 6), -- HP Very High
-(14065, 4409, 1), -- MP Increase (1x)
-(14065, 4410, 13), -- Slightly Strong P. Atk.
-(14065, 4411, 11), -- Average M. Atk.
-(14065, 4412, 11), -- Average P. Def.
-(14065, 4413, 11), -- Average M. Def.
-(14065, 4414, 2), -- Standard Type
-(14065, 4415, 3), -- One-handed Sword
-(14065, 4416, 1), -- Undead
-(14065, 5038, 15), -- Servitor PvP Penalty
+(14065, 4408, 6), -- HP Modifiers
+(14065, 4409, 1), -- MP Modifiers
+(14065, 4410, 13), -- P. Atk. Modifiers
+(14065, 4411, 11), -- M. Atk. Modifiers
+(14065, 4412, 11), -- P. Def. Modifiers
+(14065, 4413, 11), -- M. Def. Modifiers
+(14065, 4414, 2), -- Armor Type
+(14065, 4415, 3), -- Weapon Type
+(14065, 4416, 1), -- Races
+(14065, 5038, 15), -- Summon PVP Penalty
 -- Corrupted Man
 (14066, 4121, 7), -- Summoned Monster Magic Protection
-(14066, 4408, 6), -- HP Very High
-(14066, 4409, 1), -- MP Increase (1x)
-(14066, 4410, 13), -- Slightly Strong P. Atk.
-(14066, 4411, 11), -- Average M. Atk.
-(14066, 4412, 11), -- Average P. Def.
-(14066, 4413, 11), -- Average M. Def.
-(14066, 4414, 2), -- Standard Type
-(14066, 4415, 3), -- One-handed Sword
-(14066, 4416, 1), -- Undead
-(14066, 5038, 15), -- Servitor PvP Penalty
+(14066, 4408, 6), -- HP Modifiers
+(14066, 4409, 1), -- MP Modifiers
+(14066, 4410, 13), -- P. Atk. Modifiers
+(14066, 4411, 11), -- M. Atk. Modifiers
+(14066, 4412, 11), -- P. Def. Modifiers
+(14066, 4413, 11), -- M. Def. Modifiers
+(14066, 4414, 2), -- Armor Type
+(14066, 4415, 3), -- Weapon Type
+(14066, 4416, 1), -- Races
+(14066, 5038, 15), -- Summon PVP Penalty
 -- Corrupted Man
 (14067, 4121, 7), -- Summoned Monster Magic Protection
-(14067, 4408, 6), -- HP Very High
-(14067, 4409, 1), -- MP Increase (1x)
-(14067, 4410, 13), -- Slightly Strong P. Atk.
-(14067, 4411, 11), -- Average M. Atk.
-(14067, 4412, 11), -- Average P. Def.
-(14067, 4413, 11), -- Average M. Def.
-(14067, 4414, 2), -- Standard Type
-(14067, 4415, 3), -- One-handed Sword
-(14067, 4416, 1), -- Undead
-(14067, 5038, 15), -- Servitor PvP Penalty
+(14067, 4408, 6), -- HP Modifiers
+(14067, 4409, 1), -- MP Modifiers
+(14067, 4410, 13), -- P. Atk. Modifiers
+(14067, 4411, 11), -- M. Atk. Modifiers
+(14067, 4412, 11), -- P. Def. Modifiers
+(14067, 4413, 11), -- M. Def. Modifiers
+(14067, 4414, 2), -- Armor Type
+(14067, 4415, 3), -- Weapon Type
+(14067, 4416, 1), -- Races
+(14067, 5038, 15), -- Summon PVP Penalty
 -- Corrupted Man
 (14068, 4121, 7), -- Summoned Monster Magic Protection
-(14068, 4408, 6), -- HP Very High
-(14068, 4409, 1), -- MP Increase (1x)
-(14068, 4410, 13), -- Slightly Strong P. Atk.
-(14068, 4411, 11), -- Average M. Atk.
-(14068, 4412, 11), -- Average P. Def.
-(14068, 4413, 11), -- Average M. Def.
-(14068, 4414, 2), -- Standard Type
-(14068, 4415, 3), -- One-handed Sword
-(14068, 4416, 1), -- Undead
-(14068, 5038, 15), -- Servitor PvP Penalty
+(14068, 4408, 6), -- HP Modifiers
+(14068, 4409, 1), -- MP Modifiers
+(14068, 4410, 13), -- P. Atk. Modifiers
+(14068, 4411, 11), -- M. Atk. Modifiers
+(14068, 4412, 11), -- P. Def. Modifiers
+(14068, 4413, 11), -- M. Def. Modifiers
+(14068, 4414, 2), -- Armor Type
+(14068, 4415, 3), -- Weapon Type
+(14068, 4416, 1), -- Races
+(14068, 5038, 15), -- Summon PVP Penalty
 -- Corrupted Man
 (14069, 4121, 7), -- Summoned Monster Magic Protection
-(14069, 4408, 6), -- HP Very High
-(14069, 4409, 1), -- MP Increase (1x)
-(14069, 4410, 13), -- Slightly Strong P. Atk.
-(14069, 4411, 11), -- Average M. Atk.
-(14069, 4412, 11), -- Average P. Def.
-(14069, 4413, 11), -- Average M. Def.
-(14069, 4414, 2), -- Standard Type
-(14069, 4415, 3), -- One-handed Sword
-(14069, 4416, 1), -- Undead
-(14069, 5038, 15), -- Servitor PvP Penalty
+(14069, 4408, 6), -- HP Modifiers
+(14069, 4409, 1), -- MP Modifiers
+(14069, 4410, 13), -- P. Atk. Modifiers
+(14069, 4411, 11), -- M. Atk. Modifiers
+(14069, 4412, 11), -- P. Def. Modifiers
+(14069, 4413, 11), -- M. Def. Modifiers
+(14069, 4414, 2), -- Armor Type
+(14069, 4415, 3), -- Weapon Type
+(14069, 4416, 1), -- Races
+(14069, 5038, 15), -- Summon PVP Penalty
 -- Corrupted Man
 (14070, 4121, 7), -- Summoned Monster Magic Protection
-(14070, 4408, 6), -- HP Very High
-(14070, 4409, 1), -- MP Increase (1x)
-(14070, 4410, 13), -- Slightly Strong P. Atk.
-(14070, 4411, 11), -- Average M. Atk.
-(14070, 4412, 11), -- Average P. Def.
-(14070, 4413, 11), -- Average M. Def.
-(14070, 4414, 2), -- Standard Type
-(14070, 4415, 3), -- One-handed Sword
-(14070, 4416, 1), -- Undead
-(14070, 5038, 15), -- Servitor PvP Penalty
+(14070, 4408, 6), -- HP Modifiers
+(14070, 4409, 1), -- MP Modifiers
+(14070, 4410, 13), -- P. Atk. Modifiers
+(14070, 4411, 11), -- M. Atk. Modifiers
+(14070, 4412, 11), -- P. Def. Modifiers
+(14070, 4413, 11), -- M. Def. Modifiers
+(14070, 4414, 2), -- Armor Type
+(14070, 4415, 3), -- Weapon Type
+(14070, 4416, 1), -- Races
+(14070, 5038, 15), -- Summon PVP Penalty
 -- Corrupted Man
 (14071, 4121, 7), -- Summoned Monster Magic Protection
 (14071, 4260, 12), -- Steal Blood
-(14071, 4408, 6), -- HP Very High
-(14071, 4409, 1), -- MP Increase (1x)
-(14071, 4410, 13), -- Slightly Strong P. Atk.
-(14071, 4411, 11), -- Average M. Atk.
-(14071, 4412, 11), -- Average P. Def.
-(14071, 4413, 11), -- Average M. Def.
-(14071, 4414, 2), -- Standard Type
-(14071, 4415, 3), -- One-handed Sword
-(14071, 4416, 1), -- Undead
-(14071, 5038, 15), -- Servitor PvP Penalty
+(14071, 4408, 6), -- HP Modifiers
+(14071, 4409, 1), -- MP Modifiers
+(14071, 4410, 13), -- P. Atk. Modifiers
+(14071, 4411, 11), -- M. Atk. Modifiers
+(14071, 4412, 11), -- P. Def. Modifiers
+(14071, 4413, 11), -- M. Def. Modifiers
+(14071, 4414, 2), -- Armor Type
+(14071, 4415, 3), -- Weapon Type
+(14071, 4416, 1), -- Races
+(14071, 5038, 15), -- Summon PVP Penalty
 -- Corrupted Man
 (14072, 4121, 7), -- Summoned Monster Magic Protection
-(14072, 4408, 6), -- HP Very High
-(14072, 4409, 1), -- MP Increase (1x)
-(14072, 4410, 13), -- Slightly Strong P. Atk.
-(14072, 4411, 11), -- Average M. Atk.
-(14072, 4412, 11), -- Average P. Def.
-(14072, 4413, 11), -- Average M. Def.
-(14072, 4414, 2), -- Standard Type
-(14072, 4415, 3), -- One-handed Sword
-(14072, 4416, 1), -- Undead
-(14072, 5038, 15), -- Servitor PvP Penalty
+(14072, 4408, 6), -- HP Modifiers
+(14072, 4409, 1), -- MP Modifiers
+(14072, 4410, 13), -- P. Atk. Modifiers
+(14072, 4411, 11), -- M. Atk. Modifiers
+(14072, 4412, 11), -- P. Def. Modifiers
+(14072, 4413, 11), -- M. Def. Modifiers
+(14072, 4414, 2), -- Armor Type
+(14072, 4415, 3), -- Weapon Type
+(14072, 4416, 1), -- Races
+(14072, 5038, 15), -- Summon PVP Penalty
 -- Corrupted Man
 (14073, 4121, 7), -- Summoned Monster Magic Protection
-(14073, 4408, 6), -- HP Very High
-(14073, 4409, 1), -- MP Increase (1x)
-(14073, 4410, 13), -- Slightly Strong P. Atk.
-(14073, 4411, 11), -- Average M. Atk.
-(14073, 4412, 11), -- Average P. Def.
-(14073, 4413, 11), -- Average M. Def.
-(14073, 4414, 2), -- Standard Type
-(14073, 4415, 3), -- One-handed Sword
-(14073, 4416, 1), -- Undead
-(14073, 5038, 15), -- Servitor PvP Penalty
+(14073, 4408, 6), -- HP Modifiers
+(14073, 4409, 1), -- MP Modifiers
+(14073, 4410, 13), -- P. Atk. Modifiers
+(14073, 4411, 11), -- M. Atk. Modifiers
+(14073, 4412, 11), -- P. Def. Modifiers
+(14073, 4413, 11), -- M. Def. Modifiers
+(14073, 4414, 2), -- Armor Type
+(14073, 4415, 3), -- Weapon Type
+(14073, 4416, 1), -- Races
+(14073, 5038, 15), -- Summon PVP Penalty
 -- Cursed Man
 (14074, 4121, 7), -- Summoned Monster Magic Protection
-(14074, 4408, 3), -- HP Medium-High
-(14074, 4409, 1), -- MP Increase (1x)
-(14074, 4410, 14), -- Strong P. Atk.
-(14074, 4411, 11), -- Average M. Atk.
-(14074, 4412, 11), -- Average P. Def.
-(14074, 4413, 11), -- Average M. Def.
-(14074, 4414, 2), -- Standard Type
-(14074, 4415, 3), -- One-handed Sword
-(14074, 4416, 1), -- Undead
-(14074, 5038, 15), -- Servitor PvP Penalty
+(14074, 4408, 3), -- HP Modifiers
+(14074, 4409, 1), -- MP Modifiers
+(14074, 4410, 14), -- P. Atk. Modifiers
+(14074, 4411, 11), -- M. Atk. Modifiers
+(14074, 4412, 11), -- P. Def. Modifiers
+(14074, 4413, 11), -- M. Def. Modifiers
+(14074, 4414, 2), -- Armor Type
+(14074, 4415, 3), -- Weapon Type
+(14074, 4416, 1), -- Races
+(14074, 5038, 15), -- Summon PVP Penalty
 -- Cursed Man
 (14075, 4121, 7), -- Summoned Monster Magic Protection
-(14075, 4408, 3), -- HP Medium-High
-(14075, 4409, 1), -- MP Increase (1x)
-(14075, 4410, 14), -- Strong P. Atk.
-(14075, 4411, 11), -- Average M. Atk.
-(14075, 4412, 11), -- Average P. Def.
-(14075, 4413, 11), -- Average M. Def.
-(14075, 4414, 2), -- Standard Type
-(14075, 4415, 3), -- One-handed Sword
-(14075, 4416, 1), -- Undead
-(14075, 5038, 15), -- Servitor PvP Penalty
+(14075, 4408, 3), -- HP Modifiers
+(14075, 4409, 1), -- MP Modifiers
+(14075, 4410, 14), -- P. Atk. Modifiers
+(14075, 4411, 11), -- M. Atk. Modifiers
+(14075, 4412, 11), -- P. Def. Modifiers
+(14075, 4413, 11), -- M. Def. Modifiers
+(14075, 4414, 2), -- Armor Type
+(14075, 4415, 3), -- Weapon Type
+(14075, 4416, 1), -- Races
+(14075, 5038, 15), -- Summon PVP Penalty
 -- Cursed Man
 (14076, 4121, 7), -- Summoned Monster Magic Protection
-(14076, 4408, 3), -- HP Medium-High
-(14076, 4409, 1), -- MP Increase (1x)
-(14076, 4410, 14), -- Strong P. Atk.
-(14076, 4411, 11), -- Average M. Atk.
-(14076, 4412, 11), -- Average P. Def.
-(14076, 4413, 11), -- Average M. Def.
-(14076, 4414, 2), -- Standard Type
-(14076, 4415, 3), -- One-handed Sword
-(14076, 4416, 1), -- Undead
-(14076, 5038, 15), -- Servitor PvP Penalty
+(14076, 4408, 3), -- HP Modifiers
+(14076, 4409, 1), -- MP Modifiers
+(14076, 4410, 14), -- P. Atk. Modifiers
+(14076, 4411, 11), -- M. Atk. Modifiers
+(14076, 4412, 11), -- P. Def. Modifiers
+(14076, 4413, 11), -- M. Def. Modifiers
+(14076, 4414, 2), -- Armor Type
+(14076, 4415, 3), -- Weapon Type
+(14076, 4416, 1), -- Races
+(14076, 5038, 15), -- Summon PVP Penalty
 -- Cursed Man
 (14077, 4121, 7), -- Summoned Monster Magic Protection
-(14077, 4408, 3), -- HP Medium-High
-(14077, 4409, 1), -- MP Increase (1x)
-(14077, 4410, 14), -- Strong P. Atk.
-(14077, 4411, 11), -- Average M. Atk.
-(14077, 4412, 11), -- Average P. Def.
-(14077, 4413, 11), -- Average M. Def.
-(14077, 4414, 2), -- Standard Type
-(14077, 4415, 3), -- One-handed Sword
-(14077, 4416, 1), -- Undead
-(14077, 5038, 15), -- Servitor PvP Penalty
+(14077, 4408, 3), -- HP Modifiers
+(14077, 4409, 1), -- MP Modifiers
+(14077, 4410, 14), -- P. Atk. Modifiers
+(14077, 4411, 11), -- M. Atk. Modifiers
+(14077, 4412, 11), -- P. Def. Modifiers
+(14077, 4413, 11), -- M. Def. Modifiers
+(14077, 4414, 2), -- Armor Type
+(14077, 4415, 3), -- Weapon Type
+(14077, 4416, 1), -- Races
+(14077, 5038, 15), -- Summon PVP Penalty
 -- Cursed Man
 (14078, 4121, 7), -- Summoned Monster Magic Protection
-(14078, 4408, 3), -- HP Medium-High
-(14078, 4409, 1), -- MP Increase (1x)
-(14078, 4410, 14), -- Strong P. Atk.
-(14078, 4411, 11), -- Average M. Atk.
-(14078, 4412, 11), -- Average P. Def.
-(14078, 4413, 11), -- Average M. Def.
-(14078, 4414, 2), -- Standard Type
-(14078, 4415, 3), -- One-handed Sword
-(14078, 4416, 1), -- Undead
-(14078, 5038, 15), -- Servitor PvP Penalty
+(14078, 4408, 3), -- HP Modifiers
+(14078, 4409, 1), -- MP Modifiers
+(14078, 4410, 14), -- P. Atk. Modifiers
+(14078, 4411, 11), -- M. Atk. Modifiers
+(14078, 4412, 11), -- P. Def. Modifiers
+(14078, 4413, 11), -- M. Def. Modifiers
+(14078, 4414, 2), -- Armor Type
+(14078, 4415, 3), -- Weapon Type
+(14078, 4416, 1), -- Races
+(14078, 5038, 15), -- Summon PVP Penalty
 -- Cursed Man
 (14079, 4121, 7), -- Summoned Monster Magic Protection
-(14079, 4408, 3), -- HP Medium-High
-(14079, 4409, 1), -- MP Increase (1x)
-(14079, 4410, 14), -- Strong P. Atk.
-(14079, 4411, 11), -- Average M. Atk.
-(14079, 4412, 11), -- Average P. Def.
-(14079, 4413, 11), -- Average M. Def.
-(14079, 4414, 2), -- Standard Type
-(14079, 4415, 3), -- One-handed Sword
-(14079, 4416, 1), -- Undead
-(14079, 5038, 15), -- Servitor PvP Penalty
+(14079, 4408, 3), -- HP Modifiers
+(14079, 4409, 1), -- MP Modifiers
+(14079, 4410, 14), -- P. Atk. Modifiers
+(14079, 4411, 11), -- M. Atk. Modifiers
+(14079, 4412, 11), -- P. Def. Modifiers
+(14079, 4413, 11), -- M. Def. Modifiers
+(14079, 4414, 2), -- Armor Type
+(14079, 4415, 3), -- Weapon Type
+(14079, 4416, 1), -- Races
+(14079, 5038, 15), -- Summon PVP Penalty
 -- Cursed Man
 (14080, 4121, 7), -- Summoned Monster Magic Protection
-(14080, 4408, 3), -- HP Medium-High
-(14080, 4409, 1), -- MP Increase (1x)
-(14080, 4410, 14), -- Strong P. Atk.
-(14080, 4411, 11), -- Average M. Atk.
-(14080, 4412, 11), -- Average P. Def.
-(14080, 4413, 11), -- Average M. Def.
-(14080, 4414, 2), -- Standard Type
-(14080, 4415, 3), -- One-handed Sword
-(14080, 4416, 1), -- Undead
-(14080, 5038, 15), -- Servitor PvP Penalty
+(14080, 4408, 3), -- HP Modifiers
+(14080, 4409, 1), -- MP Modifiers
+(14080, 4410, 14), -- P. Atk. Modifiers
+(14080, 4411, 11), -- M. Atk. Modifiers
+(14080, 4412, 11), -- P. Def. Modifiers
+(14080, 4413, 11), -- M. Def. Modifiers
+(14080, 4414, 2), -- Armor Type
+(14080, 4415, 3), -- Weapon Type
+(14080, 4416, 1), -- Races
+(14080, 5038, 15), -- Summon PVP Penalty
 -- Cursed Man
 (14081, 4121, 7), -- Summoned Monster Magic Protection
-(14081, 4408, 3), -- HP Medium-High
-(14081, 4409, 1), -- MP Increase (1x)
-(14081, 4410, 14), -- Strong P. Atk.
-(14081, 4411, 11), -- Average M. Atk.
-(14081, 4412, 11), -- Average P. Def.
-(14081, 4413, 11), -- Average M. Def.
-(14081, 4414, 2), -- Standard Type
-(14081, 4415, 3), -- One-handed Sword
-(14081, 4416, 1), -- Undead
-(14081, 5038, 15), -- Servitor PvP Penalty
+(14081, 4408, 3), -- HP Modifiers
+(14081, 4409, 1), -- MP Modifiers
+(14081, 4410, 14), -- P. Atk. Modifiers
+(14081, 4411, 11), -- M. Atk. Modifiers
+(14081, 4412, 11), -- P. Def. Modifiers
+(14081, 4413, 11), -- M. Def. Modifiers
+(14081, 4414, 2), -- Armor Type
+(14081, 4415, 3), -- Weapon Type
+(14081, 4416, 1), -- Races
+(14081, 5038, 15), -- Summon PVP Penalty
 -- Cursed Man
 (14082, 4121, 7), -- Summoned Monster Magic Protection
-(14082, 4408, 3), -- HP Medium-High
-(14082, 4409, 1), -- MP Increase (1x)
-(14082, 4410, 14), -- Strong P. Atk.
-(14082, 4411, 11), -- Average M. Atk.
-(14082, 4412, 11), -- Average P. Def.
-(14082, 4413, 11), -- Average M. Def.
-(14082, 4414, 2), -- Standard Type
-(14082, 4415, 3), -- One-handed Sword
-(14082, 4416, 1), -- Undead
-(14082, 5038, 15), -- Servitor PvP Penalty
+(14082, 4408, 3), -- HP Modifiers
+(14082, 4409, 1), -- MP Modifiers
+(14082, 4410, 14), -- P. Atk. Modifiers
+(14082, 4411, 11), -- M. Atk. Modifiers
+(14082, 4412, 11), -- P. Def. Modifiers
+(14082, 4413, 11), -- M. Def. Modifiers
+(14082, 4414, 2), -- Armor Type
+(14082, 4415, 3), -- Weapon Type
+(14082, 4416, 1), -- Races
+(14082, 5038, 15), -- Summon PVP Penalty
 -- Cursed Man
 (14083, 4121, 7), -- Summoned Monster Magic Protection
-(14083, 4408, 3), -- HP Medium-High
-(14083, 4409, 1), -- MP Increase (1x)
-(14083, 4410, 14), -- Strong P. Atk.
-(14083, 4411, 11), -- Average M. Atk.
-(14083, 4412, 11), -- Average P. Def.
-(14083, 4413, 11), -- Average M. Def.
-(14083, 4414, 2), -- Standard Type
-(14083, 4415, 3), -- One-handed Sword
-(14083, 4416, 1), -- Undead
-(14083, 5038, 15), -- Servitor PvP Penalty
+(14083, 4408, 3), -- HP Modifiers
+(14083, 4409, 1), -- MP Modifiers
+(14083, 4410, 14), -- P. Atk. Modifiers
+(14083, 4411, 11), -- M. Atk. Modifiers
+(14083, 4412, 11), -- P. Def. Modifiers
+(14083, 4413, 11), -- M. Def. Modifiers
+(14083, 4414, 2), -- Armor Type
+(14083, 4415, 3), -- Weapon Type
+(14083, 4416, 1), -- Races
+(14083, 5038, 15), -- Summon PVP Penalty
 -- Cursed Man
 (14084, 4121, 7), -- Summoned Monster Magic Protection
-(14084, 4408, 3), -- HP Medium-High
-(14084, 4409, 1), -- MP Increase (1x)
-(14084, 4410, 14), -- Strong P. Atk.
-(14084, 4411, 11), -- Average M. Atk.
-(14084, 4412, 11), -- Average P. Def.
-(14084, 4413, 11), -- Average M. Def.
-(14084, 4414, 2), -- Standard Type
-(14084, 4415, 3), -- One-handed Sword
-(14084, 4416, 1), -- Undead
-(14084, 5038, 15), -- Servitor PvP Penalty
+(14084, 4408, 3), -- HP Modifiers
+(14084, 4409, 1), -- MP Modifiers
+(14084, 4410, 14), -- P. Atk. Modifiers
+(14084, 4411, 11), -- M. Atk. Modifiers
+(14084, 4412, 11), -- P. Def. Modifiers
+(14084, 4413, 11), -- M. Def. Modifiers
+(14084, 4414, 2), -- Armor Type
+(14084, 4415, 3), -- Weapon Type
+(14084, 4416, 1), -- Races
+(14084, 5038, 15), -- Summon PVP Penalty
 -- Cursed Man
 (14085, 4121, 7), -- Summoned Monster Magic Protection
-(14085, 4408, 3), -- HP Medium-High
-(14085, 4409, 1), -- MP Increase (1x)
-(14085, 4410, 14), -- Strong P. Atk.
-(14085, 4411, 11), -- Average M. Atk.
-(14085, 4412, 11), -- Average P. Def.
-(14085, 4413, 11), -- Average M. Def.
-(14085, 4414, 2), -- Standard Type
-(14085, 4415, 3), -- One-handed Sword
-(14085, 4416, 1), -- Undead
-(14085, 5038, 15), -- Servitor PvP Penalty
+(14085, 4408, 3), -- HP Modifiers
+(14085, 4409, 1), -- MP Modifiers
+(14085, 4410, 14), -- P. Atk. Modifiers
+(14085, 4411, 11), -- M. Atk. Modifiers
+(14085, 4412, 11), -- P. Def. Modifiers
+(14085, 4413, 11), -- M. Def. Modifiers
+(14085, 4414, 2), -- Armor Type
+(14085, 4415, 3), -- Weapon Type
+(14085, 4416, 1), -- Races
+(14085, 5038, 15), -- Summon PVP Penalty
 -- Cursed Man
 (14086, 4121, 7), -- Summoned Monster Magic Protection
-(14086, 4408, 3), -- HP Medium-High
-(14086, 4409, 1), -- MP Increase (1x)
-(14086, 4410, 14), -- Strong P. Atk.
-(14086, 4411, 11), -- Average M. Atk.
-(14086, 4412, 11), -- Average P. Def.
-(14086, 4413, 11), -- Average M. Def.
-(14086, 4414, 2), -- Standard Type
-(14086, 4415, 3), -- One-handed Sword
-(14086, 4416, 1), -- Undead
-(14086, 5038, 15), -- Servitor PvP Penalty
+(14086, 4408, 3), -- HP Modifiers
+(14086, 4409, 1), -- MP Modifiers
+(14086, 4410, 14), -- P. Atk. Modifiers
+(14086, 4411, 11), -- M. Atk. Modifiers
+(14086, 4412, 11), -- P. Def. Modifiers
+(14086, 4413, 11), -- M. Def. Modifiers
+(14086, 4414, 2), -- Armor Type
+(14086, 4415, 3), -- Weapon Type
+(14086, 4416, 1), -- Races
+(14086, 5038, 15), -- Summon PVP Penalty
 -- Cursed Man
 (14087, 4121, 7), -- Summoned Monster Magic Protection
-(14087, 4408, 3), -- HP Medium-High
-(14087, 4409, 1), -- MP Increase (1x)
-(14087, 4410, 14), -- Strong P. Atk.
-(14087, 4411, 11), -- Average M. Atk.
-(14087, 4412, 11), -- Average P. Def.
-(14087, 4413, 11), -- Average M. Def.
-(14087, 4414, 2), -- Standard Type
-(14087, 4415, 3), -- One-handed Sword
-(14087, 4416, 1), -- Undead
-(14087, 5038, 15), -- Servitor PvP Penalty
+(14087, 4408, 3), -- HP Modifiers
+(14087, 4409, 1), -- MP Modifiers
+(14087, 4410, 14), -- P. Atk. Modifiers
+(14087, 4411, 11), -- M. Atk. Modifiers
+(14087, 4412, 11), -- P. Def. Modifiers
+(14087, 4413, 11), -- M. Def. Modifiers
+(14087, 4414, 2), -- Armor Type
+(14087, 4415, 3), -- Weapon Type
+(14087, 4416, 1), -- Races
+(14087, 5038, 15), -- Summon PVP Penalty
 -- Cursed Man
 (14088, 4121, 7), -- Summoned Monster Magic Protection
-(14088, 4408, 3), -- HP Medium-High
-(14088, 4409, 1), -- MP Increase (1x)
-(14088, 4410, 14), -- Strong P. Atk.
-(14088, 4411, 11), -- Average M. Atk.
-(14088, 4412, 11), -- Average P. Def.
-(14088, 4413, 11), -- Average M. Def.
-(14088, 4414, 2), -- Standard Type
-(14088, 4415, 3), -- One-handed Sword
-(14088, 4416, 1), -- Undead
-(14088, 5038, 15), -- Servitor PvP Penalty
+(14088, 4408, 3), -- HP Modifiers
+(14088, 4409, 1), -- MP Modifiers
+(14088, 4410, 14), -- P. Atk. Modifiers
+(14088, 4411, 11), -- M. Atk. Modifiers
+(14088, 4412, 11), -- P. Def. Modifiers
+(14088, 4413, 11), -- M. Def. Modifiers
+(14088, 4414, 2), -- Armor Type
+(14088, 4415, 3), -- Weapon Type
+(14088, 4416, 1), -- Races
+(14088, 5038, 15), -- Summon PVP Penalty
 -- Cursed Man
 (14089, 4121, 7), -- Summoned Monster Magic Protection
-(14089, 4408, 3), -- HP Medium-High
-(14089, 4409, 1), -- MP Increase (1x)
-(14089, 4410, 14), -- Strong P. Atk.
-(14089, 4411, 11), -- Average M. Atk.
-(14089, 4412, 11), -- Average P. Def.
-(14089, 4413, 11), -- Average M. Def.
-(14089, 4414, 2), -- Standard Type
-(14089, 4415, 3), -- One-handed Sword
-(14089, 4416, 1), -- Undead
-(14089, 5038, 15), -- Servitor PvP Penalty
+(14089, 4408, 3), -- HP Modifiers
+(14089, 4409, 1), -- MP Modifiers
+(14089, 4410, 14), -- P. Atk. Modifiers
+(14089, 4411, 11), -- M. Atk. Modifiers
+(14089, 4412, 11), -- P. Def. Modifiers
+(14089, 4413, 11), -- M. Def. Modifiers
+(14089, 4414, 2), -- Armor Type
+(14089, 4415, 3), -- Weapon Type
+(14089, 4416, 1), -- Races
+(14089, 5038, 15), -- Summon PVP Penalty
 -- Cursed Man
 (14090, 4121, 7), -- Summoned Monster Magic Protection
-(14090, 4408, 3), -- HP Medium-High
-(14090, 4409, 1), -- MP Increase (1x)
-(14090, 4410, 14), -- Strong P. Atk.
-(14090, 4411, 11), -- Average M. Atk.
-(14090, 4412, 11), -- Average P. Def.
-(14090, 4413, 11), -- Average M. Def.
-(14090, 4414, 2), -- Standard Type
-(14090, 4415, 3), -- One-handed Sword
-(14090, 4416, 1), -- Undead
-(14090, 5038, 15), -- Servitor PvP Penalty
+(14090, 4408, 3), -- HP Modifiers
+(14090, 4409, 1), -- MP Modifiers
+(14090, 4410, 14), -- P. Atk. Modifiers
+(14090, 4411, 11), -- M. Atk. Modifiers
+(14090, 4412, 11), -- P. Def. Modifiers
+(14090, 4413, 11), -- M. Def. Modifiers
+(14090, 4414, 2), -- Armor Type
+(14090, 4415, 3), -- Weapon Type
+(14090, 4416, 1), -- Races
+(14090, 5038, 15), -- Summon PVP Penalty
 -- Cursed Man
 (14091, 4121, 7), -- Summoned Monster Magic Protection
-(14091, 4408, 3), -- HP Medium-High
-(14091, 4409, 1), -- MP Increase (1x)
-(14091, 4410, 14), -- Strong P. Atk.
-(14091, 4411, 11), -- Average M. Atk.
-(14091, 4412, 11), -- Average P. Def.
-(14091, 4413, 11), -- Average M. Def.
-(14091, 4414, 2), -- Standard Type
-(14091, 4415, 3), -- One-handed Sword
-(14091, 4416, 1), -- Undead
-(14091, 5038, 15), -- Servitor PvP Penalty
+(14091, 4408, 3), -- HP Modifiers
+(14091, 4409, 1), -- MP Modifiers
+(14091, 4410, 14), -- P. Atk. Modifiers
+(14091, 4411, 11), -- M. Atk. Modifiers
+(14091, 4412, 11), -- P. Def. Modifiers
+(14091, 4413, 11), -- M. Def. Modifiers
+(14091, 4414, 2), -- Armor Type
+(14091, 4415, 3), -- Weapon Type
+(14091, 4416, 1), -- Races
+(14091, 5038, 15), -- Summon PVP Penalty
 -- Cursed Man
 (14092, 4121, 7), -- Summoned Monster Magic Protection
-(14092, 4408, 3), -- HP Medium-High
-(14092, 4409, 1), -- MP Increase (1x)
-(14092, 4410, 14), -- Strong P. Atk.
-(14092, 4411, 11), -- Average M. Atk.
-(14092, 4412, 11), -- Average P. Def.
-(14092, 4413, 11), -- Average M. Def.
-(14092, 4414, 2), -- Standard Type
-(14092, 4415, 3), -- One-handed Sword
-(14092, 4416, 1), -- Undead
-(14092, 5038, 15), -- Servitor PvP Penalty
+(14092, 4408, 3), -- HP Modifiers
+(14092, 4409, 1), -- MP Modifiers
+(14092, 4410, 14), -- P. Atk. Modifiers
+(14092, 4411, 11), -- M. Atk. Modifiers
+(14092, 4412, 11), -- P. Def. Modifiers
+(14092, 4413, 11), -- M. Def. Modifiers
+(14092, 4414, 2), -- Armor Type
+(14092, 4415, 3), -- Weapon Type
+(14092, 4416, 1), -- Races
+(14092, 5038, 15), -- Summon PVP Penalty
 -- Cursed Man
 (14093, 4121, 7), -- Summoned Monster Magic Protection
-(14093, 4408, 3), -- HP Medium-High
-(14093, 4409, 1), -- MP Increase (1x)
-(14093, 4410, 14), -- Strong P. Atk.
-(14093, 4411, 11), -- Average M. Atk.
-(14093, 4412, 11), -- Average P. Def.
-(14093, 4413, 11), -- Average M. Def.
-(14093, 4414, 2), -- Standard Type
-(14093, 4415, 3), -- One-handed Sword
-(14093, 4416, 1), -- Undead
-(14093, 5038, 15), -- Servitor PvP Penalty
+(14093, 4408, 3), -- HP Modifiers
+(14093, 4409, 1), -- MP Modifiers
+(14093, 4410, 14), -- P. Atk. Modifiers
+(14093, 4411, 11), -- M. Atk. Modifiers
+(14093, 4412, 11), -- P. Def. Modifiers
+(14093, 4413, 11), -- M. Def. Modifiers
+(14093, 4414, 2), -- Armor Type
+(14093, 4415, 3), -- Weapon Type
+(14093, 4416, 1), -- Races
+(14093, 5038, 15), -- Summon PVP Penalty
 -- Cursed Man
 (14094, 4121, 7), -- Summoned Monster Magic Protection
-(14094, 4408, 3), -- HP Medium-High
-(14094, 4409, 1), -- MP Increase (1x)
-(14094, 4410, 14), -- Strong P. Atk.
-(14094, 4411, 11), -- Average M. Atk.
-(14094, 4412, 11), -- Average P. Def.
-(14094, 4413, 11), -- Average M. Def.
-(14094, 4414, 2), -- Standard Type
-(14094, 4415, 3), -- One-handed Sword
-(14094, 4416, 1), -- Undead
-(14094, 5038, 15), -- Servitor PvP Penalty
+(14094, 4408, 3), -- HP Modifiers
+(14094, 4409, 1), -- MP Modifiers
+(14094, 4410, 14), -- P. Atk. Modifiers
+(14094, 4411, 11), -- M. Atk. Modifiers
+(14094, 4412, 11), -- P. Def. Modifiers
+(14094, 4413, 11), -- M. Def. Modifiers
+(14094, 4414, 2), -- Armor Type
+(14094, 4415, 3), -- Weapon Type
+(14094, 4416, 1), -- Races
+(14094, 5038, 15), -- Summon PVP Penalty
 -- Cursed Man
 (14095, 4121, 7), -- Summoned Monster Magic Protection
-(14095, 4408, 3), -- HP Medium-High
-(14095, 4409, 1), -- MP Increase (1x)
-(14095, 4410, 14), -- Strong P. Atk.
-(14095, 4411, 11), -- Average M. Atk.
-(14095, 4412, 11), -- Average P. Def.
-(14095, 4413, 11), -- Average M. Def.
-(14095, 4414, 2), -- Standard Type
-(14095, 4415, 3), -- One-handed Sword
-(14095, 4416, 1), -- Undead
-(14095, 5038, 15), -- Servitor PvP Penalty
+(14095, 4408, 3), -- HP Modifiers
+(14095, 4409, 1), -- MP Modifiers
+(14095, 4410, 14), -- P. Atk. Modifiers
+(14095, 4411, 11), -- M. Atk. Modifiers
+(14095, 4412, 11), -- P. Def. Modifiers
+(14095, 4413, 11), -- M. Def. Modifiers
+(14095, 4414, 2), -- Armor Type
+(14095, 4415, 3), -- Weapon Type
+(14095, 4416, 1), -- Races
+(14095, 5038, 15), -- Summon PVP Penalty
 -- Cursed Man
 (14096, 4121, 7), -- Summoned Monster Magic Protection
-(14096, 4408, 3), -- HP Medium-High
-(14096, 4409, 1), -- MP Increase (1x)
-(14096, 4410, 14), -- Strong P. Atk.
-(14096, 4411, 11), -- Average M. Atk.
-(14096, 4412, 11), -- Average P. Def.
-(14096, 4413, 11), -- Average M. Def.
-(14096, 4414, 2), -- Standard Type
-(14096, 4415, 3), -- One-handed Sword
-(14096, 4416, 1), -- Undead
-(14096, 5038, 15), -- Servitor PvP Penalty
+(14096, 4408, 3), -- HP Modifiers
+(14096, 4409, 1), -- MP Modifiers
+(14096, 4410, 14), -- P. Atk. Modifiers
+(14096, 4411, 11), -- M. Atk. Modifiers
+(14096, 4412, 11), -- P. Def. Modifiers
+(14096, 4413, 11), -- M. Def. Modifiers
+(14096, 4414, 2), -- Armor Type
+(14096, 4415, 3), -- Weapon Type
+(14096, 4416, 1), -- Races
+(14096, 5038, 15), -- Summon PVP Penalty
 -- Cursed Man
 (14097, 4121, 7), -- Summoned Monster Magic Protection
-(14097, 4408, 3), -- HP Medium-High
-(14097, 4409, 1), -- MP Increase (1x)
-(14097, 4410, 14), -- Strong P. Atk.
-(14097, 4411, 11), -- Average M. Atk.
-(14097, 4412, 11), -- Average P. Def.
-(14097, 4413, 11), -- Average M. Def.
-(14097, 4414, 2), -- Standard Type
-(14097, 4415, 3), -- One-handed Sword
-(14097, 4416, 1), -- Undead
-(14097, 5038, 15), -- Servitor PvP Penalty
+(14097, 4408, 3), -- HP Modifiers
+(14097, 4409, 1), -- MP Modifiers
+(14097, 4410, 14), -- P. Atk. Modifiers
+(14097, 4411, 11), -- M. Atk. Modifiers
+(14097, 4412, 11), -- P. Def. Modifiers
+(14097, 4413, 11), -- M. Def. Modifiers
+(14097, 4414, 2), -- Armor Type
+(14097, 4415, 3), -- Weapon Type
+(14097, 4416, 1), -- Races
+(14097, 5038, 15), -- Summon PVP Penalty
 -- Cursed Man
 (14098, 4121, 7), -- Summoned Monster Magic Protection
-(14098, 4408, 3), -- HP Medium-High
-(14098, 4409, 1), -- MP Increase (1x)
-(14098, 4410, 14), -- Strong P. Atk.
-(14098, 4411, 11), -- Average M. Atk.
-(14098, 4412, 11), -- Average P. Def.
-(14098, 4413, 11), -- Average M. Def.
-(14098, 4414, 2), -- Standard Type
-(14098, 4415, 3), -- One-handed Sword
-(14098, 4416, 1), -- Undead
-(14098, 5038, 15), -- Servitor PvP Penalty
+(14098, 4408, 3), -- HP Modifiers
+(14098, 4409, 1), -- MP Modifiers
+(14098, 4410, 14), -- P. Atk. Modifiers
+(14098, 4411, 11), -- M. Atk. Modifiers
+(14098, 4412, 11), -- P. Def. Modifiers
+(14098, 4413, 11), -- M. Def. Modifiers
+(14098, 4414, 2), -- Armor Type
+(14098, 4415, 3), -- Weapon Type
+(14098, 4416, 1), -- Races
+(14098, 5038, 15), -- Summon PVP Penalty
 -- Cursed Man
 (14099, 4121, 7), -- Summoned Monster Magic Protection
-(14099, 4408, 3), -- HP Medium-High
-(14099, 4409, 1), -- MP Increase (1x)
-(14099, 4410, 14), -- Strong P. Atk.
-(14099, 4411, 11), -- Average M. Atk.
-(14099, 4412, 11), -- Average P. Def.
-(14099, 4413, 11), -- Average M. Def.
-(14099, 4414, 2), -- Standard Type
-(14099, 4415, 3), -- One-handed Sword
-(14099, 4416, 1), -- Undead
-(14099, 5038, 15), -- Servitor PvP Penalty
+(14099, 4408, 3), -- HP Modifiers
+(14099, 4409, 1), -- MP Modifiers
+(14099, 4410, 14), -- P. Atk. Modifiers
+(14099, 4411, 11), -- M. Atk. Modifiers
+(14099, 4412, 11), -- P. Def. Modifiers
+(14099, 4413, 11), -- M. Def. Modifiers
+(14099, 4414, 2), -- Armor Type
+(14099, 4415, 3), -- Weapon Type
+(14099, 4416, 1), -- Races
+(14099, 5038, 15), -- Summon PVP Penalty
 -- Cursed Man
 (14100, 4121, 7), -- Summoned Monster Magic Protection
-(14100, 4408, 3), -- HP Medium-High
-(14100, 4409, 1), -- MP Increase (1x)
-(14100, 4410, 14), -- Strong P. Atk.
-(14100, 4411, 11), -- Average M. Atk.
-(14100, 4412, 11), -- Average P. Def.
-(14100, 4413, 11), -- Average M. Def.
-(14100, 4414, 2), -- Standard Type
-(14100, 4415, 3), -- One-handed Sword
-(14100, 4416, 1), -- Undead
-(14100, 5038, 15), -- Servitor PvP Penalty
+(14100, 4408, 3), -- HP Modifiers
+(14100, 4409, 1), -- MP Modifiers
+(14100, 4410, 14), -- P. Atk. Modifiers
+(14100, 4411, 11), -- M. Atk. Modifiers
+(14100, 4412, 11), -- P. Def. Modifiers
+(14100, 4413, 11), -- M. Def. Modifiers
+(14100, 4414, 2), -- Armor Type
+(14100, 4415, 3), -- Weapon Type
+(14100, 4416, 1), -- Races
+(14100, 5038, 15), -- Summon PVP Penalty
 -- Cursed Man
 (14101, 4121, 7), -- Summoned Monster Magic Protection
-(14101, 4408, 3), -- HP Medium-High
-(14101, 4409, 1), -- MP Increase (1x)
-(14101, 4410, 14), -- Strong P. Atk.
-(14101, 4411, 11), -- Average M. Atk.
-(14101, 4412, 11), -- Average P. Def.
-(14101, 4413, 11), -- Average M. Def.
-(14101, 4414, 2), -- Standard Type
-(14101, 4415, 3), -- One-handed Sword
-(14101, 4416, 1), -- Undead
-(14101, 5038, 15), -- Servitor PvP Penalty
+(14101, 4408, 3), -- HP Modifiers
+(14101, 4409, 1), -- MP Modifiers
+(14101, 4410, 14), -- P. Atk. Modifiers
+(14101, 4411, 11), -- M. Atk. Modifiers
+(14101, 4412, 11), -- P. Def. Modifiers
+(14101, 4413, 11), -- M. Def. Modifiers
+(14101, 4414, 2), -- Armor Type
+(14101, 4415, 3), -- Weapon Type
+(14101, 4416, 1), -- Races
+(14101, 5038, 15), -- Summon PVP Penalty
 -- Cursed Man
 (14102, 4121, 7), -- Summoned Monster Magic Protection
-(14102, 4408, 3), -- HP Medium-High
-(14102, 4409, 1), -- MP Increase (1x)
-(14102, 4410, 14), -- Strong P. Atk.
-(14102, 4411, 11), -- Average M. Atk.
-(14102, 4412, 11), -- Average P. Def.
-(14102, 4413, 11), -- Average M. Def.
-(14102, 4414, 2), -- Standard Type
-(14102, 4415, 3), -- One-handed Sword
-(14102, 4416, 1), -- Undead
-(14102, 5038, 15), -- Servitor PvP Penalty
+(14102, 4408, 3), -- HP Modifiers
+(14102, 4409, 1), -- MP Modifiers
+(14102, 4410, 14), -- P. Atk. Modifiers
+(14102, 4411, 11), -- M. Atk. Modifiers
+(14102, 4412, 11), -- P. Def. Modifiers
+(14102, 4413, 11), -- M. Def. Modifiers
+(14102, 4414, 2), -- Armor Type
+(14102, 4415, 3), -- Weapon Type
+(14102, 4416, 1), -- Races
+(14102, 5038, 15), -- Summon PVP Penalty
 -- Cursed Man
 (14103, 4121, 7), -- Summoned Monster Magic Protection
-(14103, 4408, 3), -- HP Medium-High
-(14103, 4409, 1), -- MP Increase (1x)
-(14103, 4410, 14), -- Strong P. Atk.
-(14103, 4411, 11), -- Average M. Atk.
-(14103, 4412, 11), -- Average P. Def.
-(14103, 4413, 11), -- Average M. Def.
-(14103, 4414, 2), -- Standard Type
-(14103, 4415, 3), -- One-handed Sword
-(14103, 4416, 1), -- Undead
-(14103, 5038, 15), -- Servitor PvP Penalty
+(14103, 4408, 3), -- HP Modifiers
+(14103, 4409, 1), -- MP Modifiers
+(14103, 4410, 14), -- P. Atk. Modifiers
+(14103, 4411, 11), -- M. Atk. Modifiers
+(14103, 4412, 11), -- P. Def. Modifiers
+(14103, 4413, 11), -- M. Def. Modifiers
+(14103, 4414, 2), -- Armor Type
+(14103, 4415, 3), -- Weapon Type
+(14103, 4416, 1), -- Races
+(14103, 5038, 15), -- Summon PVP Penalty
 -- Cursed Man
 (14104, 4121, 7), -- Summoned Monster Magic Protection
-(14104, 4408, 3), -- HP Medium-High
-(14104, 4409, 1), -- MP Increase (1x)
-(14104, 4410, 14), -- Strong P. Atk.
-(14104, 4411, 11), -- Average M. Atk.
-(14104, 4412, 11), -- Average P. Def.
-(14104, 4413, 11), -- Average M. Def.
-(14104, 4414, 2), -- Standard Type
-(14104, 4415, 3), -- One-handed Sword
-(14104, 4416, 1), -- Undead
-(14104, 5038, 15), -- Servitor PvP Penalty
+(14104, 4408, 3), -- HP Modifiers
+(14104, 4409, 1), -- MP Modifiers
+(14104, 4410, 14), -- P. Atk. Modifiers
+(14104, 4411, 11), -- M. Atk. Modifiers
+(14104, 4412, 11), -- P. Def. Modifiers
+(14104, 4413, 11), -- M. Def. Modifiers
+(14104, 4414, 2), -- Armor Type
+(14104, 4415, 3), -- Weapon Type
+(14104, 4416, 1), -- Races
+(14104, 5038, 15), -- Summon PVP Penalty
 -- Cursed Man
 (14105, 4121, 7), -- Summoned Monster Magic Protection
-(14105, 4408, 3), -- HP Medium-High
-(14105, 4409, 1), -- MP Increase (1x)
-(14105, 4410, 14), -- Strong P. Atk.
-(14105, 4411, 11), -- Average M. Atk.
-(14105, 4412, 11), -- Average P. Def.
-(14105, 4413, 11), -- Average M. Def.
-(14105, 4414, 2), -- Standard Type
-(14105, 4415, 3), -- One-handed Sword
-(14105, 4416, 1), -- Undead
-(14105, 5038, 15), -- Servitor PvP Penalty
+(14105, 4408, 3), -- HP Modifiers
+(14105, 4409, 1), -- MP Modifiers
+(14105, 4410, 14), -- P. Atk. Modifiers
+(14105, 4411, 11), -- M. Atk. Modifiers
+(14105, 4412, 11), -- P. Def. Modifiers
+(14105, 4413, 11), -- M. Def. Modifiers
+(14105, 4414, 2), -- Armor Type
+(14105, 4415, 3), -- Weapon Type
+(14105, 4416, 1), -- Races
+(14105, 5038, 15), -- Summon PVP Penalty
 -- Cursed Man
 (14106, 4121, 7), -- Summoned Monster Magic Protection
-(14106, 4408, 3), -- HP Medium-High
-(14106, 4409, 1), -- MP Increase (1x)
-(14106, 4410, 14), -- Strong P. Atk.
-(14106, 4411, 11), -- Average M. Atk.
-(14106, 4412, 11), -- Average P. Def.
-(14106, 4413, 11), -- Average M. Def.
-(14106, 4414, 2), -- Standard Type
-(14106, 4415, 3), -- One-handed Sword
-(14106, 4416, 1), -- Undead
-(14106, 5038, 15), -- Servitor PvP Penalty
+(14106, 4408, 3), -- HP Modifiers
+(14106, 4409, 1), -- MP Modifiers
+(14106, 4410, 14), -- P. Atk. Modifiers
+(14106, 4411, 11), -- M. Atk. Modifiers
+(14106, 4412, 11), -- P. Def. Modifiers
+(14106, 4413, 11), -- M. Def. Modifiers
+(14106, 4414, 2), -- Armor Type
+(14106, 4415, 3), -- Weapon Type
+(14106, 4416, 1), -- Races
+(14106, 5038, 15), -- Summon PVP Penalty
 -- Cursed Man
 (14107, 4121, 7), -- Summoned Monster Magic Protection
-(14107, 4408, 3), -- HP Medium-High
-(14107, 4409, 1), -- MP Increase (1x)
-(14107, 4410, 14), -- Strong P. Atk.
-(14107, 4411, 11), -- Average M. Atk.
-(14107, 4412, 11), -- Average P. Def.
-(14107, 4413, 11), -- Average M. Def.
-(14107, 4414, 2), -- Standard Type
-(14107, 4415, 3), -- One-handed Sword
-(14107, 4416, 1), -- Undead
-(14107, 5038, 15), -- Servitor PvP Penalty
+(14107, 4408, 3), -- HP Modifiers
+(14107, 4409, 1), -- MP Modifiers
+(14107, 4410, 14), -- P. Atk. Modifiers
+(14107, 4411, 11), -- M. Atk. Modifiers
+(14107, 4412, 11), -- P. Def. Modifiers
+(14107, 4413, 11), -- M. Def. Modifiers
+(14107, 4414, 2), -- Armor Type
+(14107, 4415, 3), -- Weapon Type
+(14107, 4416, 1), -- Races
+(14107, 5038, 15), -- Summon PVP Penalty
 -- Cursed Man
 (14108, 4121, 7), -- Summoned Monster Magic Protection
-(14108, 4408, 3), -- HP Medium-High
-(14108, 4409, 1), -- MP Increase (1x)
-(14108, 4410, 14), -- Strong P. Atk.
-(14108, 4411, 11), -- Average M. Atk.
-(14108, 4412, 11), -- Average P. Def.
-(14108, 4413, 11), -- Average M. Def.
-(14108, 4414, 2), -- Standard Type
-(14108, 4415, 3), -- One-handed Sword
-(14108, 4416, 1), -- Undead
-(14108, 5038, 15), -- Servitor PvP Penalty
+(14108, 4408, 3), -- HP Modifiers
+(14108, 4409, 1), -- MP Modifiers
+(14108, 4410, 14), -- P. Atk. Modifiers
+(14108, 4411, 11), -- M. Atk. Modifiers
+(14108, 4412, 11), -- P. Def. Modifiers
+(14108, 4413, 11), -- M. Def. Modifiers
+(14108, 4414, 2), -- Armor Type
+(14108, 4415, 3), -- Weapon Type
+(14108, 4416, 1), -- Races
+(14108, 5038, 15), -- Summon PVP Penalty
 -- Cursed Man
 (14109, 4121, 7), -- Summoned Monster Magic Protection
-(14109, 4408, 3), -- HP Medium-High
-(14109, 4409, 1), -- MP Increase (1x)
-(14109, 4410, 14), -- Strong P. Atk.
-(14109, 4411, 11), -- Average M. Atk.
-(14109, 4412, 11), -- Average P. Def.
-(14109, 4413, 11), -- Average M. Def.
-(14109, 4414, 2), -- Standard Type
-(14109, 4415, 3), -- One-handed Sword
-(14109, 4416, 1), -- Undead
-(14109, 5038, 15), -- Servitor PvP Penalty
+(14109, 4408, 3), -- HP Modifiers
+(14109, 4409, 1), -- MP Modifiers
+(14109, 4410, 14), -- P. Atk. Modifiers
+(14109, 4411, 11), -- M. Atk. Modifiers
+(14109, 4412, 11), -- P. Def. Modifiers
+(14109, 4413, 11), -- M. Def. Modifiers
+(14109, 4414, 2), -- Armor Type
+(14109, 4415, 3), -- Weapon Type
+(14109, 4416, 1), -- Races
+(14109, 5038, 15), -- Summon PVP Penalty
 -- Cursed Man
 (14110, 4121, 7), -- Summoned Monster Magic Protection
-(14110, 4408, 3), -- HP Medium-High
-(14110, 4409, 1), -- MP Increase (1x)
-(14110, 4410, 14), -- Strong P. Atk.
-(14110, 4411, 11), -- Average M. Atk.
-(14110, 4412, 11), -- Average P. Def.
-(14110, 4413, 11), -- Average M. Def.
-(14110, 4414, 2), -- Standard Type
-(14110, 4415, 3), -- One-handed Sword
-(14110, 4416, 1), -- Undead
-(14110, 5038, 15), -- Servitor PvP Penalty
+(14110, 4408, 3), -- HP Modifiers
+(14110, 4409, 1), -- MP Modifiers
+(14110, 4410, 14), -- P. Atk. Modifiers
+(14110, 4411, 11), -- M. Atk. Modifiers
+(14110, 4412, 11), -- P. Def. Modifiers
+(14110, 4413, 11), -- M. Def. Modifiers
+(14110, 4414, 2), -- Armor Type
+(14110, 4415, 3), -- Weapon Type
+(14110, 4416, 1), -- Races
+(14110, 5038, 15), -- Summon PVP Penalty
 -- Kat the Cat
 (14111, 4121, 9), -- Summoned Monster Magic Protection
-(14111, 4408, 6), -- HP Very High
-(14111, 4409, 1), -- MP Increase (1x)
-(14111, 4410, 13), -- Slightly Strong P. Atk.
-(14111, 4411, 11); -- Average M. Atk.
+(14111, 4408, 6), -- HP Modifiers
+(14111, 4409, 1), -- MP Modifiers
+(14111, 4410, 13), -- P. Atk. Modifiers
+(14111, 4411, 11); -- M. Atk. Modifiers
 
 INSERT INTO `npcskills` VALUES
-(14111, 4412, 11), -- Average P. Def.
-(14111, 4413, 11), -- Average M. Def.
-(14111, 4414, 2), -- Standard Type
-(14111, 4415, 3), -- One-handed Sword
-(14111, 4416, 7), -- Spirits
-(14111, 5038, 7), -- Servitor PvP Penalty
+(14111, 4412, 11), -- P. Def. Modifiers
+(14111, 4413, 11), -- M. Def. Modifiers
+(14111, 4414, 2), -- Armor Type
+(14111, 4415, 3), -- Weapon Type
+(14111, 4416, 7), -- Races
+(14111, 5038, 7), -- Summon PVP Penalty
 -- Kat the Cat
 (14112, 4121, 9), -- Summoned Monster Magic Protection
-(14112, 4408, 6), -- HP Very High
-(14112, 4409, 1), -- MP Increase (1x)
-(14112, 4410, 13), -- Slightly Strong P. Atk.
-(14112, 4411, 11), -- Average M. Atk.
-(14112, 4412, 11), -- Average P. Def.
-(14112, 4413, 11), -- Average M. Def.
-(14112, 4414, 2), -- Standard Type
-(14112, 4415, 3), -- One-handed Sword
-(14112, 4416, 7), -- Spirits
-(14112, 5038, 7), -- Servitor PvP Penalty
+(14112, 4408, 6), -- HP Modifiers
+(14112, 4409, 1), -- MP Modifiers
+(14112, 4410, 13), -- P. Atk. Modifiers
+(14112, 4411, 11), -- M. Atk. Modifiers
+(14112, 4412, 11), -- P. Def. Modifiers
+(14112, 4413, 11), -- M. Def. Modifiers
+(14112, 4414, 2), -- Armor Type
+(14112, 4415, 3), -- Weapon Type
+(14112, 4416, 7), -- Races
+(14112, 5038, 7), -- Summon PVP Penalty
 -- Kat the Cat
 (14113, 4121, 9), -- Summoned Monster Magic Protection
-(14113, 4408, 6), -- HP Very High
-(14113, 4409, 1), -- MP Increase (1x)
-(14113, 4410, 13), -- Slightly Strong P. Atk.
-(14113, 4411, 11), -- Average M. Atk.
-(14113, 4412, 11), -- Average P. Def.
-(14113, 4413, 11), -- Average M. Def.
-(14113, 4414, 2), -- Standard Type
-(14113, 4415, 3), -- One-handed Sword
-(14113, 4416, 7), -- Spirits
-(14113, 5038, 7), -- Servitor PvP Penalty
+(14113, 4408, 6), -- HP Modifiers
+(14113, 4409, 1), -- MP Modifiers
+(14113, 4410, 13), -- P. Atk. Modifiers
+(14113, 4411, 11), -- M. Atk. Modifiers
+(14113, 4412, 11), -- P. Def. Modifiers
+(14113, 4413, 11), -- M. Def. Modifiers
+(14113, 4414, 2), -- Armor Type
+(14113, 4415, 3), -- Weapon Type
+(14113, 4416, 7), -- Races
+(14113, 5038, 7), -- Summon PVP Penalty
 -- Kat the Cat
 (14114, 4121, 9), -- Summoned Monster Magic Protection
-(14114, 4408, 6), -- HP Very High
-(14114, 4409, 1), -- MP Increase (1x)
-(14114, 4410, 13), -- Slightly Strong P. Atk.
-(14114, 4411, 11), -- Average M. Atk.
-(14114, 4412, 11), -- Average P. Def.
-(14114, 4413, 11), -- Average M. Def.
-(14114, 4414, 2), -- Standard Type
-(14114, 4415, 3), -- One-handed Sword
-(14114, 4416, 7), -- Spirits
-(14114, 5038, 7), -- Servitor PvP Penalty
+(14114, 4408, 6), -- HP Modifiers
+(14114, 4409, 1), -- MP Modifiers
+(14114, 4410, 13), -- P. Atk. Modifiers
+(14114, 4411, 11), -- M. Atk. Modifiers
+(14114, 4412, 11), -- P. Def. Modifiers
+(14114, 4413, 11), -- M. Def. Modifiers
+(14114, 4414, 2), -- Armor Type
+(14114, 4415, 3), -- Weapon Type
+(14114, 4416, 7), -- Races
+(14114, 5038, 7), -- Summon PVP Penalty
 -- Kat the Cat
 (14115, 4121, 9), -- Summoned Monster Magic Protection
-(14115, 4408, 6), -- HP Very High
-(14115, 4409, 1), -- MP Increase (1x)
-(14115, 4410, 13), -- Slightly Strong P. Atk.
-(14115, 4411, 11), -- Average M. Atk.
-(14115, 4412, 12), -- Slightly Strong P. Def.
-(14115, 4413, 12), -- Slightly Strong M. Def.
-(14115, 4414, 2), -- Standard Type
-(14115, 4415, 3), -- One-handed Sword
-(14115, 4416, 7), -- Spirits
-(14115, 5038, 7), -- Servitor PvP Penalty
+(14115, 4408, 6), -- HP Modifiers
+(14115, 4409, 1), -- MP Modifiers
+(14115, 4410, 13), -- P. Atk. Modifiers
+(14115, 4411, 11), -- M. Atk. Modifiers
+(14115, 4412, 12), -- P. Def. Modifiers
+(14115, 4413, 12), -- M. Def. Modifiers
+(14115, 4414, 2), -- Armor Type
+(14115, 4415, 3), -- Weapon Type
+(14115, 4416, 7), -- Races
+(14115, 5038, 7), -- Summon PVP Penalty
 -- Kat the Cat
 (14116, 4121, 9), -- Summoned Monster Magic Protection
-(14116, 4408, 6), -- HP Very High
-(14116, 4409, 1), -- MP Increase (1x)
-(14116, 4410, 13), -- Slightly Strong P. Atk.
-(14116, 4411, 11), -- Average M. Atk.
-(14116, 4412, 12), -- Slightly Strong P. Def.
-(14116, 4413, 12), -- Slightly Strong M. Def.
-(14116, 4414, 2), -- Standard Type
-(14116, 4415, 3), -- One-handed Sword
-(14116, 4416, 7), -- Spirits
-(14116, 5038, 7), -- Servitor PvP Penalty
+(14116, 4408, 6), -- HP Modifiers
+(14116, 4409, 1), -- MP Modifiers
+(14116, 4410, 13), -- P. Atk. Modifiers
+(14116, 4411, 11), -- M. Atk. Modifiers
+(14116, 4412, 12), -- P. Def. Modifiers
+(14116, 4413, 12), -- M. Def. Modifiers
+(14116, 4414, 2), -- Armor Type
+(14116, 4415, 3), -- Weapon Type
+(14116, 4416, 7), -- Races
+(14116, 5038, 7), -- Summon PVP Penalty
 -- Kat the Cat
 (14117, 4121, 9), -- Summoned Monster Magic Protection
-(14117, 4408, 6), -- HP Very High
-(14117, 4409, 1), -- MP Increase (1x)
-(14117, 4410, 13), -- Slightly Strong P. Atk.
-(14117, 4411, 11), -- Average M. Atk.
-(14117, 4412, 12), -- Slightly Strong P. Def.
-(14117, 4413, 12), -- Slightly Strong M. Def.
-(14117, 4414, 2), -- Standard Type
-(14117, 4415, 3), -- One-handed Sword
-(14117, 4416, 7), -- Spirits
-(14117, 5038, 7), -- Servitor PvP Penalty
+(14117, 4408, 6), -- HP Modifiers
+(14117, 4409, 1), -- MP Modifiers
+(14117, 4410, 13), -- P. Atk. Modifiers
+(14117, 4411, 11), -- M. Atk. Modifiers
+(14117, 4412, 12), -- P. Def. Modifiers
+(14117, 4413, 12), -- M. Def. Modifiers
+(14117, 4414, 2), -- Armor Type
+(14117, 4415, 3), -- Weapon Type
+(14117, 4416, 7), -- Races
+(14117, 5038, 7), -- Summon PVP Penalty
 -- Kat the Cat
 (14118, 4121, 9), -- Summoned Monster Magic Protection
-(14118, 4408, 6), -- HP Very High
-(14118, 4409, 1), -- MP Increase (1x)
-(14118, 4410, 13), -- Slightly Strong P. Atk.
-(14118, 4411, 11), -- Average M. Atk.
-(14118, 4412, 12), -- Slightly Strong P. Def.
-(14118, 4413, 12), -- Slightly Strong M. Def.
-(14118, 4414, 2), -- Standard Type
-(14118, 4415, 3), -- One-handed Sword
-(14118, 4416, 7), -- Spirits
-(14118, 5038, 7), -- Servitor PvP Penalty
+(14118, 4408, 6), -- HP Modifiers
+(14118, 4409, 1), -- MP Modifiers
+(14118, 4410, 13), -- P. Atk. Modifiers
+(14118, 4411, 11), -- M. Atk. Modifiers
+(14118, 4412, 12), -- P. Def. Modifiers
+(14118, 4413, 12), -- M. Def. Modifiers
+(14118, 4414, 2), -- Armor Type
+(14118, 4415, 3), -- Weapon Type
+(14118, 4416, 7), -- Races
+(14118, 5038, 7), -- Summon PVP Penalty
 -- Kat the Cat
 (14119, 4121, 9), -- Summoned Monster Magic Protection
-(14119, 4408, 6), -- HP Very High
-(14119, 4409, 1), -- MP Increase (1x)
-(14119, 4410, 13), -- Slightly Strong P. Atk.
-(14119, 4411, 11), -- Average M. Atk.
-(14119, 4412, 12), -- Slightly Strong P. Def.
-(14119, 4413, 12), -- Slightly Strong M. Def.
-(14119, 4414, 2), -- Standard Type
-(14119, 4415, 3), -- One-handed Sword
-(14119, 4416, 7), -- Spirits
-(14119, 5038, 7), -- Servitor PvP Penalty
+(14119, 4408, 6), -- HP Modifiers
+(14119, 4409, 1), -- MP Modifiers
+(14119, 4410, 13), -- P. Atk. Modifiers
+(14119, 4411, 11), -- M. Atk. Modifiers
+(14119, 4412, 12), -- P. Def. Modifiers
+(14119, 4413, 12), -- M. Def. Modifiers
+(14119, 4414, 2), -- Armor Type
+(14119, 4415, 3), -- Weapon Type
+(14119, 4416, 7), -- Races
+(14119, 5038, 7), -- Summon PVP Penalty
 -- Kat the Cat
 (14120, 4121, 9), -- Summoned Monster Magic Protection
-(14120, 4408, 6), -- HP Very High
-(14120, 4409, 1), -- MP Increase (1x)
-(14120, 4410, 13), -- Slightly Strong P. Atk.
-(14120, 4411, 11), -- Average M. Atk.
-(14120, 4412, 12), -- Slightly Strong P. Def.
-(14120, 4413, 12), -- Slightly Strong M. Def.
-(14120, 4414, 2), -- Standard Type
-(14120, 4415, 3), -- One-handed Sword
-(14120, 4416, 7), -- Spirits
-(14120, 5038, 7), -- Servitor PvP Penalty
+(14120, 4408, 6), -- HP Modifiers
+(14120, 4409, 1), -- MP Modifiers
+(14120, 4410, 13), -- P. Atk. Modifiers
+(14120, 4411, 11), -- M. Atk. Modifiers
+(14120, 4412, 12), -- P. Def. Modifiers
+(14120, 4413, 12), -- M. Def. Modifiers
+(14120, 4414, 2), -- Armor Type
+(14120, 4415, 3), -- Weapon Type
+(14120, 4416, 7), -- Races
+(14120, 5038, 7), -- Summon PVP Penalty
 -- Kat the Cat
 (14121, 4121, 9), -- Summoned Monster Magic Protection
-(14121, 4408, 6), -- HP Very High
-(14121, 4409, 1), -- MP Increase (1x)
-(14121, 4410, 13), -- Slightly Strong P. Atk.
-(14121, 4411, 11), -- Average M. Atk.
-(14121, 4412, 12), -- Slightly Strong P. Def.
-(14121, 4413, 12), -- Slightly Strong M. Def.
-(14121, 4414, 2), -- Standard Type
-(14121, 4415, 3), -- One-handed Sword
-(14121, 4416, 7), -- Spirits
-(14121, 5038, 7), -- Servitor PvP Penalty
+(14121, 4408, 6), -- HP Modifiers
+(14121, 4409, 1), -- MP Modifiers
+(14121, 4410, 13), -- P. Atk. Modifiers
+(14121, 4411, 11), -- M. Atk. Modifiers
+(14121, 4412, 12), -- P. Def. Modifiers
+(14121, 4413, 12), -- M. Def. Modifiers
+(14121, 4414, 2), -- Armor Type
+(14121, 4415, 3), -- Weapon Type
+(14121, 4416, 7), -- Races
+(14121, 5038, 7), -- Summon PVP Penalty
 -- Kat the Cat
 (14122, 4121, 9), -- Summoned Monster Magic Protection
-(14122, 4408, 6), -- HP Very High
-(14122, 4409, 1), -- MP Increase (1x)
-(14122, 4410, 13), -- Slightly Strong P. Atk.
-(14122, 4411, 11), -- Average M. Atk.
-(14122, 4412, 12), -- Slightly Strong P. Def.
-(14122, 4413, 12), -- Slightly Strong M. Def.
-(14122, 4414, 2), -- Standard Type
-(14122, 4415, 3), -- One-handed Sword
-(14122, 4416, 7), -- Spirits
-(14122, 5038, 7), -- Servitor PvP Penalty
+(14122, 4408, 6), -- HP Modifiers
+(14122, 4409, 1), -- MP Modifiers
+(14122, 4410, 13), -- P. Atk. Modifiers
+(14122, 4411, 11), -- M. Atk. Modifiers
+(14122, 4412, 12), -- P. Def. Modifiers
+(14122, 4413, 12), -- M. Def. Modifiers
+(14122, 4414, 2), -- Armor Type
+(14122, 4415, 3), -- Weapon Type
+(14122, 4416, 7), -- Races
+(14122, 5038, 7), -- Summon PVP Penalty
 -- Kat the Cat
 (14123, 4121, 9), -- Summoned Monster Magic Protection
-(14123, 4408, 6), -- HP Very High
-(14123, 4409, 1), -- MP Increase (1x)
-(14123, 4410, 13), -- Slightly Strong P. Atk.
-(14123, 4411, 11), -- Average M. Atk.
-(14123, 4412, 12), -- Slightly Strong P. Def.
-(14123, 4413, 12), -- Slightly Strong M. Def.
-(14123, 4414, 2), -- Standard Type
-(14123, 4415, 3), -- One-handed Sword
-(14123, 4416, 7), -- Spirits
-(14123, 5038, 7), -- Servitor PvP Penalty
+(14123, 4408, 6), -- HP Modifiers
+(14123, 4409, 1), -- MP Modifiers
+(14123, 4410, 13), -- P. Atk. Modifiers
+(14123, 4411, 11), -- M. Atk. Modifiers
+(14123, 4412, 12), -- P. Def. Modifiers
+(14123, 4413, 12), -- M. Def. Modifiers
+(14123, 4414, 2), -- Armor Type
+(14123, 4415, 3), -- Weapon Type
+(14123, 4416, 7), -- Races
+(14123, 5038, 7), -- Summon PVP Penalty
 -- Kat the Cat
 (14124, 4121, 9), -- Summoned Monster Magic Protection
-(14124, 4408, 6), -- HP Very High
-(14124, 4409, 1), -- MP Increase (1x)
-(14124, 4410, 13), -- Slightly Strong P. Atk.
-(14124, 4411, 11), -- Average M. Atk.
-(14124, 4412, 12), -- Slightly Strong P. Def.
-(14124, 4413, 12), -- Slightly Strong M. Def.
-(14124, 4414, 2), -- Standard Type
-(14124, 4415, 3), -- One-handed Sword
-(14124, 4416, 7), -- Spirits
-(14124, 5038, 7), -- Servitor PvP Penalty
+(14124, 4408, 6), -- HP Modifiers
+(14124, 4409, 1), -- MP Modifiers
+(14124, 4410, 13), -- P. Atk. Modifiers
+(14124, 4411, 11), -- M. Atk. Modifiers
+(14124, 4412, 12), -- P. Def. Modifiers
+(14124, 4413, 12), -- M. Def. Modifiers
+(14124, 4414, 2), -- Armor Type
+(14124, 4415, 3), -- Weapon Type
+(14124, 4416, 7), -- Races
+(14124, 5038, 7), -- Summon PVP Penalty
 -- Kat the Cat
 (14125, 4121, 9), -- Summoned Monster Magic Protection
-(14125, 4408, 6), -- HP Very High
-(14125, 4409, 1), -- MP Increase (1x)
-(14125, 4410, 13), -- Slightly Strong P. Atk.
-(14125, 4411, 11), -- Average M. Atk.
-(14125, 4412, 12), -- Slightly Strong P. Def.
-(14125, 4413, 12), -- Slightly Strong M. Def.
-(14125, 4414, 2), -- Standard Type
-(14125, 4415, 3), -- One-handed Sword
-(14125, 4416, 7), -- Spirits
-(14125, 5038, 7), -- Servitor PvP Penalty
+(14125, 4408, 6), -- HP Modifiers
+(14125, 4409, 1), -- MP Modifiers
+(14125, 4410, 13), -- P. Atk. Modifiers
+(14125, 4411, 11), -- M. Atk. Modifiers
+(14125, 4412, 12), -- P. Def. Modifiers
+(14125, 4413, 12), -- M. Def. Modifiers
+(14125, 4414, 2), -- Armor Type
+(14125, 4415, 3), -- Weapon Type
+(14125, 4416, 7), -- Races
+(14125, 5038, 7), -- Summon PVP Penalty
 -- Kat the Cat
 (14126, 4121, 9), -- Summoned Monster Magic Protection
-(14126, 4408, 6), -- HP Very High
-(14126, 4409, 1), -- MP Increase (1x)
-(14126, 4410, 13), -- Slightly Strong P. Atk.
-(14126, 4411, 11), -- Average M. Atk.
-(14126, 4412, 12), -- Slightly Strong P. Def.
-(14126, 4413, 12), -- Slightly Strong M. Def.
-(14126, 4414, 2), -- Standard Type
-(14126, 4415, 3), -- One-handed Sword
-(14126, 4416, 7), -- Spirits
-(14126, 5038, 7), -- Servitor PvP Penalty
+(14126, 4408, 6), -- HP Modifiers
+(14126, 4409, 1), -- MP Modifiers
+(14126, 4410, 13), -- P. Atk. Modifiers
+(14126, 4411, 11), -- M. Atk. Modifiers
+(14126, 4412, 12), -- P. Def. Modifiers
+(14126, 4413, 12), -- M. Def. Modifiers
+(14126, 4414, 2), -- Armor Type
+(14126, 4415, 3), -- Weapon Type
+(14126, 4416, 7), -- Races
+(14126, 5038, 7), -- Summon PVP Penalty
 -- Kat the Cat
 (14127, 4121, 9), -- Summoned Monster Magic Protection
-(14127, 4408, 6), -- HP Very High
-(14127, 4409, 1), -- MP Increase (1x)
-(14127, 4410, 13), -- Slightly Strong P. Atk.
-(14127, 4411, 11), -- Average M. Atk.
-(14127, 4412, 12), -- Slightly Strong P. Def.
-(14127, 4413, 12), -- Slightly Strong M. Def.
-(14127, 4414, 2), -- Standard Type
-(14127, 4415, 3), -- One-handed Sword
-(14127, 4416, 7), -- Spirits
-(14127, 5038, 7), -- Servitor PvP Penalty
+(14127, 4408, 6), -- HP Modifiers
+(14127, 4409, 1), -- MP Modifiers
+(14127, 4410, 13), -- P. Atk. Modifiers
+(14127, 4411, 11), -- M. Atk. Modifiers
+(14127, 4412, 12), -- P. Def. Modifiers
+(14127, 4413, 12), -- M. Def. Modifiers
+(14127, 4414, 2), -- Armor Type
+(14127, 4415, 3), -- Weapon Type
+(14127, 4416, 7), -- Races
+(14127, 5038, 7), -- Summon PVP Penalty
 -- Kat the Cat
 (14128, 4121, 9), -- Summoned Monster Magic Protection
-(14128, 4408, 6), -- HP Very High
-(14128, 4409, 1), -- MP Increase (1x)
-(14128, 4410, 13), -- Slightly Strong P. Atk.
-(14128, 4411, 11), -- Average M. Atk.
-(14128, 4412, 12), -- Slightly Strong P. Def.
-(14128, 4413, 12), -- Slightly Strong M. Def.
-(14128, 4414, 2), -- Standard Type
-(14128, 4415, 3), -- One-handed Sword
-(14128, 4416, 7), -- Spirits
-(14128, 5038, 7), -- Servitor PvP Penalty
+(14128, 4408, 6), -- HP Modifiers
+(14128, 4409, 1), -- MP Modifiers
+(14128, 4410, 13), -- P. Atk. Modifiers
+(14128, 4411, 11), -- M. Atk. Modifiers
+(14128, 4412, 12), -- P. Def. Modifiers
+(14128, 4413, 12), -- M. Def. Modifiers
+(14128, 4414, 2), -- Armor Type
+(14128, 4415, 3), -- Weapon Type
+(14128, 4416, 7), -- Races
+(14128, 5038, 7), -- Summon PVP Penalty
 -- Kat the Cat
 (14129, 4121, 9), -- Summoned Monster Magic Protection
-(14129, 4408, 6), -- HP Very High
-(14129, 4409, 1), -- MP Increase (1x)
-(14129, 4410, 13), -- Slightly Strong P. Atk.
-(14129, 4411, 11), -- Average M. Atk.
-(14129, 4412, 12), -- Slightly Strong P. Def.
-(14129, 4413, 12), -- Slightly Strong M. Def.
-(14129, 4414, 2), -- Standard Type
-(14129, 4415, 3), -- One-handed Sword
-(14129, 4416, 7), -- Spirits
-(14129, 5038, 7), -- Servitor PvP Penalty
+(14129, 4408, 6), -- HP Modifiers
+(14129, 4409, 1), -- MP Modifiers
+(14129, 4410, 13), -- P. Atk. Modifiers
+(14129, 4411, 11), -- M. Atk. Modifiers
+(14129, 4412, 12), -- P. Def. Modifiers
+(14129, 4413, 12), -- M. Def. Modifiers
+(14129, 4414, 2), -- Armor Type
+(14129, 4415, 3), -- Weapon Type
+(14129, 4416, 7), -- Races
+(14129, 5038, 7), -- Summon PVP Penalty
 -- Kat the Cat
 (14130, 4121, 9), -- Summoned Monster Magic Protection
-(14130, 4408, 6), -- HP Very High
-(14130, 4409, 1), -- MP Increase (1x)
-(14130, 4410, 13), -- Slightly Strong P. Atk.
-(14130, 4411, 11), -- Average M. Atk.
-(14130, 4412, 12), -- Slightly Strong P. Def.
-(14130, 4413, 12), -- Slightly Strong M. Def.
-(14130, 4414, 2), -- Standard Type
-(14130, 4415, 3), -- One-handed Sword
-(14130, 4416, 7), -- Spirits
-(14130, 5038, 7), -- Servitor PvP Penalty
+(14130, 4408, 6), -- HP Modifiers
+(14130, 4409, 1), -- MP Modifiers
+(14130, 4410, 13), -- P. Atk. Modifiers
+(14130, 4411, 11), -- M. Atk. Modifiers
+(14130, 4412, 12), -- P. Def. Modifiers
+(14130, 4413, 12), -- M. Def. Modifiers
+(14130, 4414, 2), -- Armor Type
+(14130, 4415, 3), -- Weapon Type
+(14130, 4416, 7), -- Races
+(14130, 5038, 7), -- Summon PVP Penalty
 -- Kat the Cat
 (14131, 4121, 9), -- Summoned Monster Magic Protection
-(14131, 4408, 6), -- HP Very High
-(14131, 4409, 1), -- MP Increase (1x)
-(14131, 4410, 13), -- Slightly Strong P. Atk.
-(14131, 4411, 11), -- Average M. Atk.
-(14131, 4412, 12), -- Slightly Strong P. Def.
-(14131, 4413, 12), -- Slightly Strong M. Def.
-(14131, 4414, 2), -- Standard Type
-(14131, 4415, 3), -- One-handed Sword
-(14131, 4416, 7), -- Spirits
-(14131, 5038, 7), -- Servitor PvP Penalty
+(14131, 4408, 6), -- HP Modifiers
+(14131, 4409, 1), -- MP Modifiers
+(14131, 4410, 13), -- P. Atk. Modifiers
+(14131, 4411, 11), -- M. Atk. Modifiers
+(14131, 4412, 12), -- P. Def. Modifiers
+(14131, 4413, 12), -- M. Def. Modifiers
+(14131, 4414, 2), -- Armor Type
+(14131, 4415, 3), -- Weapon Type
+(14131, 4416, 7), -- Races
+(14131, 5038, 7), -- Summon PVP Penalty
 -- Kat the Cat
 (14132, 4121, 9), -- Summoned Monster Magic Protection
-(14132, 4408, 6), -- HP Very High
-(14132, 4409, 1), -- MP Increase (1x)
-(14132, 4410, 13), -- Slightly Strong P. Atk.
-(14132, 4411, 11), -- Average M. Atk.
-(14132, 4412, 12), -- Slightly Strong P. Def.
-(14132, 4413, 12), -- Slightly Strong M. Def.
-(14132, 4414, 2), -- Standard Type
-(14132, 4415, 3), -- One-handed Sword
-(14132, 4416, 7), -- Spirits
-(14132, 5038, 7), -- Servitor PvP Penalty
+(14132, 4408, 6), -- HP Modifiers
+(14132, 4409, 1), -- MP Modifiers
+(14132, 4410, 13), -- P. Atk. Modifiers
+(14132, 4411, 11), -- M. Atk. Modifiers
+(14132, 4412, 12), -- P. Def. Modifiers
+(14132, 4413, 12), -- M. Def. Modifiers
+(14132, 4414, 2), -- Armor Type
+(14132, 4415, 3), -- Weapon Type
+(14132, 4416, 7), -- Races
+(14132, 5038, 7), -- Summon PVP Penalty
 -- Kat the Cat
 (14133, 4121, 9), -- Summoned Monster Magic Protection
-(14133, 4408, 6), -- HP Very High
-(14133, 4409, 1), -- MP Increase (1x)
-(14133, 4410, 13), -- Slightly Strong P. Atk.
-(14133, 4411, 11), -- Average M. Atk.
-(14133, 4412, 12), -- Slightly Strong P. Def.
-(14133, 4413, 12), -- Slightly Strong M. Def.
-(14133, 4414, 2), -- Standard Type
-(14133, 4415, 3), -- One-handed Sword
-(14133, 4416, 7), -- Spirits
-(14133, 5038, 7), -- Servitor PvP Penalty
+(14133, 4408, 6), -- HP Modifiers
+(14133, 4409, 1), -- MP Modifiers
+(14133, 4410, 13), -- P. Atk. Modifiers
+(14133, 4411, 11), -- M. Atk. Modifiers
+(14133, 4412, 12), -- P. Def. Modifiers
+(14133, 4413, 12), -- M. Def. Modifiers
+(14133, 4414, 2), -- Armor Type
+(14133, 4415, 3), -- Weapon Type
+(14133, 4416, 7), -- Races
+(14133, 5038, 7), -- Summon PVP Penalty
 -- Kat the Cat
 (14134, 4121, 9), -- Summoned Monster Magic Protection
-(14134, 4408, 6), -- HP Very High
-(14134, 4409, 1), -- MP Increase (1x)
-(14134, 4410, 13), -- Slightly Strong P. Atk.
-(14134, 4411, 11), -- Average M. Atk.
-(14134, 4412, 12), -- Slightly Strong P. Def.
-(14134, 4413, 12), -- Slightly Strong M. Def.
-(14134, 4414, 2), -- Standard Type
-(14134, 4415, 3), -- One-handed Sword
-(14134, 4416, 7), -- Spirits
-(14134, 5038, 7), -- Servitor PvP Penalty
+(14134, 4408, 6), -- HP Modifiers
+(14134, 4409, 1), -- MP Modifiers
+(14134, 4410, 13), -- P. Atk. Modifiers
+(14134, 4411, 11), -- M. Atk. Modifiers
+(14134, 4412, 12), -- P. Def. Modifiers
+(14134, 4413, 12), -- M. Def. Modifiers
+(14134, 4414, 2), -- Armor Type
+(14134, 4415, 3), -- Weapon Type
+(14134, 4416, 7), -- Races
+(14134, 5038, 7), -- Summon PVP Penalty
 -- Kat the Cat
 (14135, 4121, 9), -- Summoned Monster Magic Protection
-(14135, 4408, 6), -- HP Very High
-(14135, 4409, 1), -- MP Increase (1x)
-(14135, 4410, 13), -- Slightly Strong P. Atk.
-(14135, 4411, 11), -- Average M. Atk.
-(14135, 4412, 12), -- Slightly Strong P. Def.
-(14135, 4413, 12), -- Slightly Strong M. Def.
-(14135, 4414, 2), -- Standard Type
-(14135, 4415, 3), -- One-handed Sword
-(14135, 4416, 7), -- Spirits
-(14135, 5038, 7), -- Servitor PvP Penalty
+(14135, 4408, 6), -- HP Modifiers
+(14135, 4409, 1), -- MP Modifiers
+(14135, 4410, 13), -- P. Atk. Modifiers
+(14135, 4411, 11), -- M. Atk. Modifiers
+(14135, 4412, 12), -- P. Def. Modifiers
+(14135, 4413, 12), -- M. Def. Modifiers
+(14135, 4414, 2), -- Armor Type
+(14135, 4415, 3), -- Weapon Type
+(14135, 4416, 7), -- Races
+(14135, 5038, 7), -- Summon PVP Penalty
 -- Kat the Cat
 (14136, 4121, 9), -- Summoned Monster Magic Protection
-(14136, 4408, 6), -- HP Very High
-(14136, 4409, 1), -- MP Increase (1x)
-(14136, 4410, 13), -- Slightly Strong P. Atk.
-(14136, 4411, 11), -- Average M. Atk.
-(14136, 4412, 12), -- Slightly Strong P. Def.
-(14136, 4413, 12), -- Slightly Strong M. Def.
-(14136, 4414, 2), -- Standard Type
-(14136, 4415, 3), -- One-handed Sword
-(14136, 4416, 7), -- Spirits
-(14136, 5038, 7), -- Servitor PvP Penalty
+(14136, 4408, 6), -- HP Modifiers
+(14136, 4409, 1), -- MP Modifiers
+(14136, 4410, 13), -- P. Atk. Modifiers
+(14136, 4411, 11), -- M. Atk. Modifiers
+(14136, 4412, 12), -- P. Def. Modifiers
+(14136, 4413, 12), -- M. Def. Modifiers
+(14136, 4414, 2), -- Armor Type
+(14136, 4415, 3), -- Weapon Type
+(14136, 4416, 7), -- Races
+(14136, 5038, 7), -- Summon PVP Penalty
 -- Kat the Cat
 (14137, 4121, 9), -- Summoned Monster Magic Protection
-(14137, 4408, 6), -- HP Very High
-(14137, 4409, 1), -- MP Increase (1x)
-(14137, 4410, 13), -- Slightly Strong P. Atk.
-(14137, 4411, 11), -- Average M. Atk.
-(14137, 4412, 12), -- Slightly Strong P. Def.
-(14137, 4413, 12), -- Slightly Strong M. Def.
-(14137, 4414, 2), -- Standard Type
-(14137, 4415, 3), -- One-handed Sword
-(14137, 4416, 7), -- Spirits
-(14137, 5038, 7), -- Servitor PvP Penalty
+(14137, 4408, 6), -- HP Modifiers
+(14137, 4409, 1), -- MP Modifiers
+(14137, 4410, 13), -- P. Atk. Modifiers
+(14137, 4411, 11), -- M. Atk. Modifiers
+(14137, 4412, 12), -- P. Def. Modifiers
+(14137, 4413, 12), -- M. Def. Modifiers
+(14137, 4414, 2), -- Armor Type
+(14137, 4415, 3), -- Weapon Type
+(14137, 4416, 7), -- Races
+(14137, 5038, 7), -- Summon PVP Penalty
 -- Kat the Cat
 (14138, 4121, 9), -- Summoned Monster Magic Protection
-(14138, 4408, 6), -- HP Very High
-(14138, 4409, 1), -- MP Increase (1x)
-(14138, 4410, 13), -- Slightly Strong P. Atk.
-(14138, 4411, 11), -- Average M. Atk.
-(14138, 4412, 12), -- Slightly Strong P. Def.
-(14138, 4413, 12), -- Slightly Strong M. Def.
-(14138, 4414, 2), -- Standard Type
-(14138, 4415, 3), -- One-handed Sword
-(14138, 4416, 7), -- Spirits
-(14138, 5038, 7), -- Servitor PvP Penalty
+(14138, 4408, 6), -- HP Modifiers
+(14138, 4409, 1), -- MP Modifiers
+(14138, 4410, 13), -- P. Atk. Modifiers
+(14138, 4411, 11), -- M. Atk. Modifiers
+(14138, 4412, 12), -- P. Def. Modifiers
+(14138, 4413, 12), -- M. Def. Modifiers
+(14138, 4414, 2), -- Armor Type
+(14138, 4415, 3), -- Weapon Type
+(14138, 4416, 7), -- Races
+(14138, 5038, 7), -- Summon PVP Penalty
 -- Kat the Cat
 (14139, 4121, 9), -- Summoned Monster Magic Protection
-(14139, 4408, 6), -- HP Very High
-(14139, 4409, 1), -- MP Increase (1x)
-(14139, 4410, 13), -- Slightly Strong P. Atk.
-(14139, 4411, 11), -- Average M. Atk.
-(14139, 4412, 12), -- Slightly Strong P. Def.
-(14139, 4413, 12), -- Slightly Strong M. Def.
-(14139, 4414, 2), -- Standard Type
-(14139, 4415, 3), -- One-handed Sword
-(14139, 4416, 7), -- Spirits
-(14139, 5038, 7), -- Servitor PvP Penalty
+(14139, 4408, 6), -- HP Modifiers
+(14139, 4409, 1), -- MP Modifiers
+(14139, 4410, 13), -- P. Atk. Modifiers
+(14139, 4411, 11), -- M. Atk. Modifiers
+(14139, 4412, 12), -- P. Def. Modifiers
+(14139, 4413, 12), -- M. Def. Modifiers
+(14139, 4414, 2), -- Armor Type
+(14139, 4415, 3), -- Weapon Type
+(14139, 4416, 7), -- Races
+(14139, 5038, 7), -- Summon PVP Penalty
 -- Kat the Cat
 (14140, 4121, 9), -- Summoned Monster Magic Protection
-(14140, 4408, 6), -- HP Very High
-(14140, 4409, 1), -- MP Increase (1x)
-(14140, 4410, 13), -- Slightly Strong P. Atk.
-(14140, 4411, 11), -- Average M. Atk.
-(14140, 4412, 12), -- Slightly Strong P. Def.
-(14140, 4413, 12), -- Slightly Strong M. Def.
-(14140, 4414, 2), -- Standard Type
-(14140, 4415, 3), -- One-handed Sword
-(14140, 4416, 7), -- Spirits
-(14140, 5038, 7), -- Servitor PvP Penalty
+(14140, 4408, 6), -- HP Modifiers
+(14140, 4409, 1), -- MP Modifiers
+(14140, 4410, 13), -- P. Atk. Modifiers
+(14140, 4411, 11), -- M. Atk. Modifiers
+(14140, 4412, 12), -- P. Def. Modifiers
+(14140, 4413, 12), -- M. Def. Modifiers
+(14140, 4414, 2), -- Armor Type
+(14140, 4415, 3), -- Weapon Type
+(14140, 4416, 7), -- Races
+(14140, 5038, 7), -- Summon PVP Penalty
 -- Kat the Cat
 (14141, 4121, 9), -- Summoned Monster Magic Protection
-(14141, 4408, 6), -- HP Very High
-(14141, 4409, 1), -- MP Increase (1x)
-(14141, 4410, 13), -- Slightly Strong P. Atk.
-(14141, 4411, 11), -- Average M. Atk.
-(14141, 4412, 12), -- Slightly Strong P. Def.
-(14141, 4413, 12), -- Slightly Strong M. Def.
-(14141, 4414, 2), -- Standard Type
-(14141, 4415, 3), -- One-handed Sword
-(14141, 4416, 7), -- Spirits
-(14141, 5038, 7), -- Servitor PvP Penalty
+(14141, 4408, 6), -- HP Modifiers
+(14141, 4409, 1), -- MP Modifiers
+(14141, 4410, 13), -- P. Atk. Modifiers
+(14141, 4411, 11), -- M. Atk. Modifiers
+(14141, 4412, 12), -- P. Def. Modifiers
+(14141, 4413, 12), -- M. Def. Modifiers
+(14141, 4414, 2), -- Armor Type
+(14141, 4415, 3), -- Weapon Type
+(14141, 4416, 7), -- Races
+(14141, 5038, 7), -- Summon PVP Penalty
 -- Kat the Cat
 (14142, 4121, 9), -- Summoned Monster Magic Protection
-(14142, 4408, 6), -- HP Very High
-(14142, 4409, 1), -- MP Increase (1x)
-(14142, 4410, 13), -- Slightly Strong P. Atk.
-(14142, 4411, 11), -- Average M. Atk.
-(14142, 4412, 12), -- Slightly Strong P. Def.
-(14142, 4413, 12), -- Slightly Strong M. Def.
-(14142, 4414, 2), -- Standard Type
-(14142, 4415, 3), -- One-handed Sword
-(14142, 4416, 7), -- Spirits
-(14142, 5038, 7), -- Servitor PvP Penalty
+(14142, 4408, 6), -- HP Modifiers
+(14142, 4409, 1), -- MP Modifiers
+(14142, 4410, 13), -- P. Atk. Modifiers
+(14142, 4411, 11), -- M. Atk. Modifiers
+(14142, 4412, 12), -- P. Def. Modifiers
+(14142, 4413, 12), -- M. Def. Modifiers
+(14142, 4414, 2), -- Armor Type
+(14142, 4415, 3), -- Weapon Type
+(14142, 4416, 7), -- Races
+(14142, 5038, 7), -- Summon PVP Penalty
 -- Kat the Cat
 (14143, 4121, 9), -- Summoned Monster Magic Protection
-(14143, 4408, 6), -- HP Very High
-(14143, 4409, 1), -- MP Increase (1x)
-(14143, 4410, 13), -- Slightly Strong P. Atk.
-(14143, 4411, 11), -- Average M. Atk.
-(14143, 4412, 12), -- Slightly Strong P. Def.
-(14143, 4413, 12), -- Slightly Strong M. Def.
-(14143, 4414, 2), -- Standard Type
-(14143, 4415, 3), -- One-handed Sword
-(14143, 4416, 7), -- Spirits
-(14143, 5038, 7), -- Servitor PvP Penalty
+(14143, 4408, 6), -- HP Modifiers
+(14143, 4409, 1), -- MP Modifiers
+(14143, 4410, 13), -- P. Atk. Modifiers
+(14143, 4411, 11), -- M. Atk. Modifiers
+(14143, 4412, 12), -- P. Def. Modifiers
+(14143, 4413, 12), -- M. Def. Modifiers
+(14143, 4414, 2), -- Armor Type
+(14143, 4415, 3), -- Weapon Type
+(14143, 4416, 7), -- Races
+(14143, 5038, 7), -- Summon PVP Penalty
 -- Kat the Cat
 (14144, 4121, 9), -- Summoned Monster Magic Protection
-(14144, 4408, 6), -- HP Very High
-(14144, 4409, 1), -- MP Increase (1x)
-(14144, 4410, 13), -- Slightly Strong P. Atk.
-(14144, 4411, 11), -- Average M. Atk.
-(14144, 4412, 12), -- Slightly Strong P. Def.
-(14144, 4413, 12), -- Slightly Strong M. Def.
-(14144, 4414, 2), -- Standard Type
-(14144, 4415, 3), -- One-handed Sword
-(14144, 4416, 7), -- Spirits
-(14144, 5038, 7), -- Servitor PvP Penalty
+(14144, 4408, 6), -- HP Modifiers
+(14144, 4409, 1), -- MP Modifiers
+(14144, 4410, 13), -- P. Atk. Modifiers
+(14144, 4411, 11), -- M. Atk. Modifiers
+(14144, 4412, 12), -- P. Def. Modifiers
+(14144, 4413, 12), -- M. Def. Modifiers
+(14144, 4414, 2), -- Armor Type
+(14144, 4415, 3), -- Weapon Type
+(14144, 4416, 7), -- Races
+(14144, 5038, 7), -- Summon PVP Penalty
 -- Kat the Cat
 (14145, 4121, 9), -- Summoned Monster Magic Protection
-(14145, 4408, 6), -- HP Very High
-(14145, 4409, 1), -- MP Increase (1x)
-(14145, 4410, 13), -- Slightly Strong P. Atk.
-(14145, 4411, 11), -- Average M. Atk.
-(14145, 4412, 12), -- Slightly Strong P. Def.
-(14145, 4413, 12), -- Slightly Strong M. Def.
-(14145, 4414, 2), -- Standard Type
-(14145, 4415, 3), -- One-handed Sword
-(14145, 4416, 7), -- Spirits
-(14145, 5038, 7), -- Servitor PvP Penalty
+(14145, 4408, 6), -- HP Modifiers
+(14145, 4409, 1), -- MP Modifiers
+(14145, 4410, 13), -- P. Atk. Modifiers
+(14145, 4411, 11), -- M. Atk. Modifiers
+(14145, 4412, 12), -- P. Def. Modifiers
+(14145, 4413, 12), -- M. Def. Modifiers
+(14145, 4414, 2), -- Armor Type
+(14145, 4415, 3), -- Weapon Type
+(14145, 4416, 7), -- Races
+(14145, 5038, 7), -- Summon PVP Penalty
 -- Kat the Cat
 (14146, 4121, 9), -- Summoned Monster Magic Protection
-(14146, 4408, 6), -- HP Very High
-(14146, 4409, 1), -- MP Increase (1x)
-(14146, 4410, 13), -- Slightly Strong P. Atk.
-(14146, 4411, 11), -- Average M. Atk.
-(14146, 4412, 12), -- Slightly Strong P. Def.
-(14146, 4413, 12), -- Slightly Strong M. Def.
-(14146, 4414, 2), -- Standard Type
-(14146, 4415, 3), -- One-handed Sword
-(14146, 4416, 7), -- Spirits
-(14146, 5038, 7), -- Servitor PvP Penalty
+(14146, 4408, 6), -- HP Modifiers
+(14146, 4409, 1), -- MP Modifiers
+(14146, 4410, 13), -- P. Atk. Modifiers
+(14146, 4411, 11), -- M. Atk. Modifiers
+(14146, 4412, 12), -- P. Def. Modifiers
+(14146, 4413, 12), -- M. Def. Modifiers
+(14146, 4414, 2), -- Armor Type
+(14146, 4415, 3), -- Weapon Type
+(14146, 4416, 7), -- Races
+(14146, 5038, 7), -- Summon PVP Penalty
 -- Kat the Cat
 (14147, 4121, 9), -- Summoned Monster Magic Protection
-(14147, 4408, 6), -- HP Very High
-(14147, 4409, 1), -- MP Increase (1x)
-(14147, 4410, 13), -- Slightly Strong P. Atk.
-(14147, 4411, 11), -- Average M. Atk.
-(14147, 4412, 12), -- Slightly Strong P. Def.
-(14147, 4413, 12), -- Slightly Strong M. Def.
-(14147, 4414, 2), -- Standard Type
-(14147, 4415, 3), -- One-handed Sword
-(14147, 4416, 7), -- Spirits
-(14147, 5038, 7), -- Servitor PvP Penalty
+(14147, 4408, 6), -- HP Modifiers
+(14147, 4409, 1), -- MP Modifiers
+(14147, 4410, 13), -- P. Atk. Modifiers
+(14147, 4411, 11), -- M. Atk. Modifiers
+(14147, 4412, 12), -- P. Def. Modifiers
+(14147, 4413, 12), -- M. Def. Modifiers
+(14147, 4414, 2), -- Armor Type
+(14147, 4415, 3), -- Weapon Type
+(14147, 4416, 7), -- Races
+(14147, 5038, 7), -- Summon PVP Penalty
 -- Kat the Cat
 (14148, 4121, 9), -- Summoned Monster Magic Protection
-(14148, 4408, 6), -- HP Very High
-(14148, 4409, 1), -- MP Increase (1x)
-(14148, 4410, 13), -- Slightly Strong P. Atk.
-(14148, 4411, 11), -- Average M. Atk.
-(14148, 4412, 12), -- Slightly Strong P. Def.
-(14148, 4413, 12), -- Slightly Strong M. Def.
-(14148, 4414, 2), -- Standard Type
-(14148, 4415, 3), -- One-handed Sword
-(14148, 4416, 7), -- Spirits
-(14148, 5038, 7), -- Servitor PvP Penalty
+(14148, 4408, 6), -- HP Modifiers
+(14148, 4409, 1), -- MP Modifiers
+(14148, 4410, 13), -- P. Atk. Modifiers
+(14148, 4411, 11), -- M. Atk. Modifiers
+(14148, 4412, 12), -- P. Def. Modifiers
+(14148, 4413, 12), -- M. Def. Modifiers
+(14148, 4414, 2), -- Armor Type
+(14148, 4415, 3), -- Weapon Type
+(14148, 4416, 7), -- Races
+(14148, 5038, 7), -- Summon PVP Penalty
 -- Kat the Cat
 (14149, 4121, 9), -- Summoned Monster Magic Protection
-(14149, 4408, 6), -- HP Very High
-(14149, 4409, 1), -- MP Increase (1x)
-(14149, 4410, 13), -- Slightly Strong P. Atk.
-(14149, 4411, 11), -- Average M. Atk.
-(14149, 4412, 12), -- Slightly Strong P. Def.
-(14149, 4413, 12), -- Slightly Strong M. Def.
-(14149, 4414, 2), -- Standard Type
-(14149, 4415, 3), -- One-handed Sword
-(14149, 4416, 7), -- Spirits
-(14149, 5038, 7), -- Servitor PvP Penalty
+(14149, 4408, 6), -- HP Modifiers
+(14149, 4409, 1), -- MP Modifiers
+(14149, 4410, 13), -- P. Atk. Modifiers
+(14149, 4411, 11), -- M. Atk. Modifiers
+(14149, 4412, 12), -- P. Def. Modifiers
+(14149, 4413, 12), -- M. Def. Modifiers
+(14149, 4414, 2), -- Armor Type
+(14149, 4415, 3), -- Weapon Type
+(14149, 4416, 7), -- Races
+(14149, 5038, 7), -- Summon PVP Penalty
 -- Kat the Cat
 (14150, 4121, 9), -- Summoned Monster Magic Protection
-(14150, 4408, 6), -- HP Very High
-(14150, 4409, 1), -- MP Increase (1x)
-(14150, 4410, 13), -- Slightly Strong P. Atk.
-(14150, 4411, 11), -- Average M. Atk.
-(14150, 4412, 12), -- Slightly Strong P. Def.
-(14150, 4413, 12), -- Slightly Strong M. Def.
-(14150, 4414, 2), -- Standard Type
-(14150, 4415, 3), -- One-handed Sword
-(14150, 4416, 7), -- Spirits
-(14150, 5038, 7), -- Servitor PvP Penalty
+(14150, 4408, 6), -- HP Modifiers
+(14150, 4409, 1), -- MP Modifiers
+(14150, 4410, 13), -- P. Atk. Modifiers
+(14150, 4411, 11), -- M. Atk. Modifiers
+(14150, 4412, 12), -- P. Def. Modifiers
+(14150, 4413, 12), -- M. Def. Modifiers
+(14150, 4414, 2), -- Armor Type
+(14150, 4415, 3), -- Weapon Type
+(14150, 4416, 7), -- Races
+(14150, 5038, 7), -- Summon PVP Penalty
 -- Kat the Cat
 (14151, 4121, 9), -- Summoned Monster Magic Protection
-(14151, 4408, 6), -- HP Very High
-(14151, 4409, 1), -- MP Increase (1x)
-(14151, 4410, 13), -- Slightly Strong P. Atk.
-(14151, 4411, 11), -- Average M. Atk.
-(14151, 4412, 12), -- Slightly Strong P. Def.
-(14151, 4413, 12), -- Slightly Strong M. Def.
-(14151, 4414, 2), -- Standard Type
-(14151, 4415, 3), -- One-handed Sword
-(14151, 4416, 7), -- Spirits
-(14151, 5038, 7), -- Servitor PvP Penalty
+(14151, 4408, 6), -- HP Modifiers
+(14151, 4409, 1), -- MP Modifiers
+(14151, 4410, 13), -- P. Atk. Modifiers
+(14151, 4411, 11), -- M. Atk. Modifiers
+(14151, 4412, 12), -- P. Def. Modifiers
+(14151, 4413, 12), -- M. Def. Modifiers
+(14151, 4414, 2), -- Armor Type
+(14151, 4415, 3), -- Weapon Type
+(14151, 4416, 7), -- Races
+(14151, 5038, 7), -- Summon PVP Penalty
 -- Kat the Cat
 (14152, 4121, 9), -- Summoned Monster Magic Protection
-(14152, 4408, 6), -- HP Very High
-(14152, 4409, 1), -- MP Increase (1x)
-(14152, 4410, 13), -- Slightly Strong P. Atk.
-(14152, 4411, 11), -- Average M. Atk.
-(14152, 4412, 12), -- Slightly Strong P. Def.
-(14152, 4413, 12), -- Slightly Strong M. Def.
-(14152, 4414, 2), -- Standard Type
-(14152, 4415, 3), -- One-handed Sword
-(14152, 4416, 7), -- Spirits
-(14152, 5038, 7), -- Servitor PvP Penalty
+(14152, 4408, 6), -- HP Modifiers
+(14152, 4409, 1), -- MP Modifiers
+(14152, 4410, 13), -- P. Atk. Modifiers
+(14152, 4411, 11), -- M. Atk. Modifiers
+(14152, 4412, 12), -- P. Def. Modifiers
+(14152, 4413, 12), -- M. Def. Modifiers
+(14152, 4414, 2), -- Armor Type
+(14152, 4415, 3), -- Weapon Type
+(14152, 4416, 7), -- Races
+(14152, 5038, 7), -- Summon PVP Penalty
 -- Kat the Cat
 (14153, 4121, 9), -- Summoned Monster Magic Protection
-(14153, 4408, 6), -- HP Very High
-(14153, 4409, 1), -- MP Increase (1x)
-(14153, 4410, 13), -- Slightly Strong P. Atk.
-(14153, 4411, 11), -- Average M. Atk.
-(14153, 4412, 12), -- Slightly Strong P. Def.
-(14153, 4413, 12), -- Slightly Strong M. Def.
-(14153, 4414, 2), -- Standard Type
-(14153, 4415, 3), -- One-handed Sword
-(14153, 4416, 7), -- Spirits
-(14153, 5038, 7), -- Servitor PvP Penalty
+(14153, 4408, 6), -- HP Modifiers
+(14153, 4409, 1), -- MP Modifiers
+(14153, 4410, 13), -- P. Atk. Modifiers
+(14153, 4411, 11), -- M. Atk. Modifiers
+(14153, 4412, 12), -- P. Def. Modifiers
+(14153, 4413, 12), -- M. Def. Modifiers
+(14153, 4414, 2), -- Armor Type
+(14153, 4415, 3), -- Weapon Type
+(14153, 4416, 7), -- Races
+(14153, 5038, 7), -- Summon PVP Penalty
 -- Kat the Cat
 (14154, 4121, 9), -- Summoned Monster Magic Protection
-(14154, 4408, 6), -- HP Very High
-(14154, 4409, 1), -- MP Increase (1x)
-(14154, 4410, 13), -- Slightly Strong P. Atk.
-(14154, 4411, 11), -- Average M. Atk.
-(14154, 4412, 12), -- Slightly Strong P. Def.
-(14154, 4413, 12), -- Slightly Strong M. Def.
-(14154, 4414, 2), -- Standard Type
-(14154, 4415, 3), -- One-handed Sword
-(14154, 4416, 7), -- Spirits
-(14154, 5038, 7), -- Servitor PvP Penalty
+(14154, 4408, 6), -- HP Modifiers
+(14154, 4409, 1), -- MP Modifiers
+(14154, 4410, 13), -- P. Atk. Modifiers
+(14154, 4411, 11), -- M. Atk. Modifiers
+(14154, 4412, 12), -- P. Def. Modifiers
+(14154, 4413, 12), -- M. Def. Modifiers
+(14154, 4414, 2), -- Armor Type
+(14154, 4415, 3), -- Weapon Type
+(14154, 4416, 7), -- Races
+(14154, 5038, 7), -- Summon PVP Penalty
 -- Kat the Cat
 (14155, 4121, 9), -- Summoned Monster Magic Protection
-(14155, 4408, 6), -- HP Very High
-(14155, 4409, 1), -- MP Increase (1x)
-(14155, 4410, 13), -- Slightly Strong P. Atk.
-(14155, 4411, 11), -- Average M. Atk.
-(14155, 4412, 12), -- Slightly Strong P. Def.
-(14155, 4413, 12), -- Slightly Strong M. Def.
-(14155, 4414, 2), -- Standard Type
-(14155, 4415, 3), -- One-handed Sword
-(14155, 4416, 7), -- Spirits
-(14155, 5038, 7), -- Servitor PvP Penalty
+(14155, 4408, 6), -- HP Modifiers
+(14155, 4409, 1), -- MP Modifiers
+(14155, 4410, 13), -- P. Atk. Modifiers
+(14155, 4411, 11), -- M. Atk. Modifiers
+(14155, 4412, 12), -- P. Def. Modifiers
+(14155, 4413, 12), -- M. Def. Modifiers
+(14155, 4414, 2), -- Armor Type
+(14155, 4415, 3), -- Weapon Type
+(14155, 4416, 7), -- Races
+(14155, 5038, 7), -- Summon PVP Penalty
 -- Kat the Cat
 (14156, 4121, 9), -- Summoned Monster Magic Protection
-(14156, 4408, 6), -- HP Very High
-(14156, 4409, 1), -- MP Increase (1x)
-(14156, 4410, 13), -- Slightly Strong P. Atk.
-(14156, 4411, 11), -- Average M. Atk.
-(14156, 4412, 12), -- Slightly Strong P. Def.
-(14156, 4413, 12), -- Slightly Strong M. Def.
-(14156, 4414, 2), -- Standard Type
-(14156, 4415, 3), -- One-handed Sword
-(14156, 4416, 7), -- Spirits
-(14156, 5038, 7), -- Servitor PvP Penalty
+(14156, 4408, 6), -- HP Modifiers
+(14156, 4409, 1), -- MP Modifiers
+(14156, 4410, 13), -- P. Atk. Modifiers
+(14156, 4411, 11), -- M. Atk. Modifiers
+(14156, 4412, 12), -- P. Def. Modifiers
+(14156, 4413, 12), -- M. Def. Modifiers
+(14156, 4414, 2), -- Armor Type
+(14156, 4415, 3), -- Weapon Type
+(14156, 4416, 7), -- Races
+(14156, 5038, 7), -- Summon PVP Penalty
 -- Kat the Cat
 (14157, 4121, 9), -- Summoned Monster Magic Protection
-(14157, 4408, 6), -- HP Very High
-(14157, 4409, 1), -- MP Increase (1x)
-(14157, 4410, 13), -- Slightly Strong P. Atk.
-(14157, 4411, 11), -- Average M. Atk.
-(14157, 4412, 12), -- Slightly Strong P. Def.
-(14157, 4413, 12), -- Slightly Strong M. Def.
-(14157, 4414, 2), -- Standard Type
-(14157, 4415, 3), -- One-handed Sword
-(14157, 4416, 7), -- Spirits
-(14157, 5038, 7), -- Servitor PvP Penalty
+(14157, 4408, 6), -- HP Modifiers
+(14157, 4409, 1), -- MP Modifiers
+(14157, 4410, 13), -- P. Atk. Modifiers
+(14157, 4411, 11), -- M. Atk. Modifiers
+(14157, 4412, 12), -- P. Def. Modifiers
+(14157, 4413, 12), -- M. Def. Modifiers
+(14157, 4414, 2), -- Armor Type
+(14157, 4415, 3), -- Weapon Type
+(14157, 4416, 7), -- Races
+(14157, 5038, 7), -- Summon PVP Penalty
 -- Kat the Cat
 (14158, 4121, 9), -- Summoned Monster Magic Protection
-(14158, 4408, 6), -- HP Very High
-(14158, 4409, 1), -- MP Increase (1x)
-(14158, 4410, 13), -- Slightly Strong P. Atk.
-(14158, 4411, 11), -- Average M. Atk.
-(14158, 4412, 12), -- Slightly Strong P. Def.
-(14158, 4413, 12), -- Slightly Strong M. Def.
-(14158, 4414, 2), -- Standard Type
-(14158, 4415, 3), -- One-handed Sword
-(14158, 4416, 7), -- Spirits
-(14158, 5038, 7), -- Servitor PvP Penalty
+(14158, 4408, 6), -- HP Modifiers
+(14158, 4409, 1), -- MP Modifiers
+(14158, 4410, 13), -- P. Atk. Modifiers
+(14158, 4411, 11), -- M. Atk. Modifiers
+(14158, 4412, 12), -- P. Def. Modifiers
+(14158, 4413, 12), -- M. Def. Modifiers
+(14158, 4414, 2), -- Armor Type
+(14158, 4415, 3), -- Weapon Type
+(14158, 4416, 7), -- Races
+(14158, 5038, 7), -- Summon PVP Penalty
 -- Mew the Cat
 (14159, 4121, 9), -- Summoned Monster Magic Protection
-(14159, 4408, 6), -- HP Very High
-(14159, 4409, 1), -- MP Increase (1x)
-(14159, 4410, 12), -- Slightly Strong P. Atk.
-(14159, 4411, 12), -- Slightly Strong M. Atk.
-(14159, 4412, 11), -- Average P. Def.
-(14159, 4413, 11), -- Average M. Def.
-(14159, 4414, 2), -- Standard Type
-(14159, 4415, 3), -- One-handed Sword
-(14159, 4416, 7), -- Spirits
-(14159, 5038, 7), -- Servitor PvP Penalty
+(14159, 4408, 6), -- HP Modifiers
+(14159, 4409, 1), -- MP Modifiers
+(14159, 4410, 12), -- P. Atk. Modifiers
+(14159, 4411, 12), -- M. Atk. Modifiers
+(14159, 4412, 11), -- P. Def. Modifiers
+(14159, 4413, 11), -- M. Def. Modifiers
+(14159, 4414, 2), -- Armor Type
+(14159, 4415, 3), -- Weapon Type
+(14159, 4416, 7), -- Races
+(14159, 5038, 7), -- Summon PVP Penalty
 -- Mew the Cat
 (14160, 4121, 9), -- Summoned Monster Magic Protection
-(14160, 4408, 6), -- HP Very High
-(14160, 4409, 1), -- MP Increase (1x)
-(14160, 4410, 12), -- Slightly Strong P. Atk.
-(14160, 4411, 12), -- Slightly Strong M. Atk.
-(14160, 4412, 11), -- Average P. Def.
-(14160, 4413, 11), -- Average M. Def.
-(14160, 4414, 2), -- Standard Type
-(14160, 4415, 3), -- One-handed Sword
-(14160, 4416, 7), -- Spirits
-(14160, 5038, 7), -- Servitor PvP Penalty
+(14160, 4408, 6), -- HP Modifiers
+(14160, 4409, 1), -- MP Modifiers
+(14160, 4410, 12), -- P. Atk. Modifiers
+(14160, 4411, 12), -- M. Atk. Modifiers
+(14160, 4412, 11), -- P. Def. Modifiers
+(14160, 4413, 11), -- M. Def. Modifiers
+(14160, 4414, 2), -- Armor Type
+(14160, 4415, 3), -- Weapon Type
+(14160, 4416, 7), -- Races
+(14160, 5038, 7), -- Summon PVP Penalty
 -- Mew the Cat
 (14161, 4121, 9), -- Summoned Monster Magic Protection
-(14161, 4408, 6), -- HP Very High
-(14161, 4409, 1), -- MP Increase (1x)
-(14161, 4410, 12), -- Slightly Strong P. Atk.
-(14161, 4411, 12), -- Slightly Strong M. Atk.
-(14161, 4412, 11), -- Average P. Def.
-(14161, 4413, 11), -- Average M. Def.
-(14161, 4414, 2), -- Standard Type
-(14161, 4415, 3), -- One-handed Sword
-(14161, 4416, 7), -- Spirits
-(14161, 5038, 7), -- Servitor PvP Penalty
+(14161, 4408, 6), -- HP Modifiers
+(14161, 4409, 1), -- MP Modifiers
+(14161, 4410, 12), -- P. Atk. Modifiers
+(14161, 4411, 12), -- M. Atk. Modifiers
+(14161, 4412, 11), -- P. Def. Modifiers
+(14161, 4413, 11), -- M. Def. Modifiers
+(14161, 4414, 2), -- Armor Type
+(14161, 4415, 3), -- Weapon Type
+(14161, 4416, 7), -- Races
+(14161, 5038, 7), -- Summon PVP Penalty
 -- Mew the Cat
 (14162, 4121, 9), -- Summoned Monster Magic Protection
-(14162, 4408, 6), -- HP Very High
-(14162, 4409, 1), -- MP Increase (1x)
-(14162, 4410, 12), -- Slightly Strong P. Atk.
-(14162, 4411, 12), -- Slightly Strong M. Atk.
-(14162, 4412, 11), -- Average P. Def.
-(14162, 4413, 11), -- Average M. Def.
-(14162, 4414, 2), -- Standard Type
-(14162, 4415, 3), -- One-handed Sword
-(14162, 4416, 7), -- Spirits
-(14162, 5038, 7), -- Servitor PvP Penalty
+(14162, 4408, 6), -- HP Modifiers
+(14162, 4409, 1), -- MP Modifiers
+(14162, 4410, 12), -- P. Atk. Modifiers
+(14162, 4411, 12), -- M. Atk. Modifiers
+(14162, 4412, 11), -- P. Def. Modifiers
+(14162, 4413, 11), -- M. Def. Modifiers
+(14162, 4414, 2), -- Armor Type
+(14162, 4415, 3), -- Weapon Type
+(14162, 4416, 7), -- Races
+(14162, 5038, 7), -- Summon PVP Penalty
 -- Mew the Cat
 (14163, 4121, 9), -- Summoned Monster Magic Protection
-(14163, 4408, 6), -- HP Very High
-(14163, 4409, 1), -- MP Increase (1x)
-(14163, 4410, 12), -- Slightly Strong P. Atk.
-(14163, 4411, 12), -- Slightly Strong M. Atk.
-(14163, 4412, 12), -- Slightly Strong P. Def.
-(14163, 4413, 12), -- Slightly Strong M. Def.
-(14163, 4414, 2), -- Standard Type
-(14163, 4415, 3), -- One-handed Sword
-(14163, 4416, 7), -- Spirits
-(14163, 5038, 7), -- Servitor PvP Penalty
+(14163, 4408, 6), -- HP Modifiers
+(14163, 4409, 1), -- MP Modifiers
+(14163, 4410, 12), -- P. Atk. Modifiers
+(14163, 4411, 12), -- M. Atk. Modifiers
+(14163, 4412, 12), -- P. Def. Modifiers
+(14163, 4413, 12), -- M. Def. Modifiers
+(14163, 4414, 2), -- Armor Type
+(14163, 4415, 3), -- Weapon Type
+(14163, 4416, 7), -- Races
+(14163, 5038, 7), -- Summon PVP Penalty
 -- Mew the Cat
 (14164, 4121, 9), -- Summoned Monster Magic Protection
-(14164, 4408, 6), -- HP Very High
-(14164, 4409, 1), -- MP Increase (1x)
-(14164, 4410, 12), -- Slightly Strong P. Atk.
-(14164, 4411, 12), -- Slightly Strong M. Atk.
-(14164, 4412, 12), -- Slightly Strong P. Def.
-(14164, 4413, 12), -- Slightly Strong M. Def.
-(14164, 4414, 2), -- Standard Type
-(14164, 4415, 3), -- One-handed Sword
-(14164, 4416, 7), -- Spirits
-(14164, 5038, 7), -- Servitor PvP Penalty
+(14164, 4408, 6), -- HP Modifiers
+(14164, 4409, 1), -- MP Modifiers
+(14164, 4410, 12), -- P. Atk. Modifiers
+(14164, 4411, 12), -- M. Atk. Modifiers
+(14164, 4412, 12), -- P. Def. Modifiers
+(14164, 4413, 12), -- M. Def. Modifiers
+(14164, 4414, 2), -- Armor Type
+(14164, 4415, 3), -- Weapon Type
+(14164, 4416, 7), -- Races
+(14164, 5038, 7), -- Summon PVP Penalty
 -- Mew the Cat
 (14165, 4121, 9), -- Summoned Monster Magic Protection
-(14165, 4408, 6), -- HP Very High
-(14165, 4409, 1), -- MP Increase (1x)
-(14165, 4410, 12), -- Slightly Strong P. Atk.
-(14165, 4411, 12), -- Slightly Strong M. Atk.
-(14165, 4412, 12), -- Slightly Strong P. Def.
-(14165, 4413, 12), -- Slightly Strong M. Def.
-(14165, 4414, 2), -- Standard Type
-(14165, 4415, 3), -- One-handed Sword
-(14165, 4416, 7), -- Spirits
-(14165, 5038, 7), -- Servitor PvP Penalty
+(14165, 4408, 6), -- HP Modifiers
+(14165, 4409, 1), -- MP Modifiers
+(14165, 4410, 12), -- P. Atk. Modifiers
+(14165, 4411, 12), -- M. Atk. Modifiers
+(14165, 4412, 12), -- P. Def. Modifiers
+(14165, 4413, 12), -- M. Def. Modifiers
+(14165, 4414, 2), -- Armor Type
+(14165, 4415, 3), -- Weapon Type
+(14165, 4416, 7), -- Races
+(14165, 5038, 7), -- Summon PVP Penalty
 -- Mew the Cat
 (14166, 4121, 9), -- Summoned Monster Magic Protection
-(14166, 4408, 6), -- HP Very High
-(14166, 4409, 1), -- MP Increase (1x)
-(14166, 4410, 12), -- Slightly Strong P. Atk.
-(14166, 4411, 12), -- Slightly Strong M. Atk.
-(14166, 4412, 12), -- Slightly Strong P. Def.
-(14166, 4413, 12), -- Slightly Strong M. Def.
-(14166, 4414, 2), -- Standard Type
-(14166, 4415, 3), -- One-handed Sword
-(14166, 4416, 7), -- Spirits
-(14166, 5038, 7), -- Servitor PvP Penalty
+(14166, 4408, 6), -- HP Modifiers
+(14166, 4409, 1), -- MP Modifiers
+(14166, 4410, 12), -- P. Atk. Modifiers
+(14166, 4411, 12), -- M. Atk. Modifiers
+(14166, 4412, 12), -- P. Def. Modifiers
+(14166, 4413, 12), -- M. Def. Modifiers
+(14166, 4414, 2), -- Armor Type
+(14166, 4415, 3), -- Weapon Type
+(14166, 4416, 7), -- Races
+(14166, 5038, 7), -- Summon PVP Penalty
 -- Mew the Cat
 (14167, 4121, 9), -- Summoned Monster Magic Protection
-(14167, 4408, 6), -- HP Very High
-(14167, 4409, 1), -- MP Increase (1x)
-(14167, 4410, 12), -- Slightly Strong P. Atk.
-(14167, 4411, 12), -- Slightly Strong M. Atk.
-(14167, 4412, 12), -- Slightly Strong P. Def.
-(14167, 4413, 12), -- Slightly Strong M. Def.
-(14167, 4414, 2), -- Standard Type
-(14167, 4415, 3), -- One-handed Sword
-(14167, 4416, 7), -- Spirits
-(14167, 5038, 7), -- Servitor PvP Penalty
+(14167, 4408, 6), -- HP Modifiers
+(14167, 4409, 1), -- MP Modifiers
+(14167, 4410, 12), -- P. Atk. Modifiers
+(14167, 4411, 12), -- M. Atk. Modifiers
+(14167, 4412, 12), -- P. Def. Modifiers
+(14167, 4413, 12), -- M. Def. Modifiers
+(14167, 4414, 2), -- Armor Type
+(14167, 4415, 3), -- Weapon Type
+(14167, 4416, 7), -- Races
+(14167, 5038, 7), -- Summon PVP Penalty
 -- Mew the Cat
 (14168, 4121, 9), -- Summoned Monster Magic Protection
-(14168, 4408, 6), -- HP Very High
-(14168, 4409, 1), -- MP Increase (1x)
-(14168, 4410, 12), -- Slightly Strong P. Atk.
-(14168, 4411, 12), -- Slightly Strong M. Atk.
-(14168, 4412, 12), -- Slightly Strong P. Def.
-(14168, 4413, 12), -- Slightly Strong M. Def.
-(14168, 4414, 2), -- Standard Type
-(14168, 4415, 3), -- One-handed Sword
-(14168, 4416, 7), -- Spirits
-(14168, 5038, 7), -- Servitor PvP Penalty
+(14168, 4408, 6), -- HP Modifiers
+(14168, 4409, 1), -- MP Modifiers
+(14168, 4410, 12), -- P. Atk. Modifiers
+(14168, 4411, 12), -- M. Atk. Modifiers
+(14168, 4412, 12), -- P. Def. Modifiers
+(14168, 4413, 12), -- M. Def. Modifiers
+(14168, 4414, 2), -- Armor Type
+(14168, 4415, 3), -- Weapon Type
+(14168, 4416, 7), -- Races
+(14168, 5038, 7), -- Summon PVP Penalty
 -- Mew the Cat
 (14169, 4121, 9), -- Summoned Monster Magic Protection
-(14169, 4408, 6), -- HP Very High
-(14169, 4409, 1), -- MP Increase (1x)
-(14169, 4410, 12), -- Slightly Strong P. Atk.
-(14169, 4411, 12), -- Slightly Strong M. Atk.
-(14169, 4412, 12), -- Slightly Strong P. Def.
-(14169, 4413, 12), -- Slightly Strong M. Def.
-(14169, 4414, 2), -- Standard Type
-(14169, 4415, 3), -- One-handed Sword
-(14169, 4416, 7), -- Spirits
-(14169, 5038, 7), -- Servitor PvP Penalty
+(14169, 4408, 6), -- HP Modifiers
+(14169, 4409, 1), -- MP Modifiers
+(14169, 4410, 12), -- P. Atk. Modifiers
+(14169, 4411, 12), -- M. Atk. Modifiers
+(14169, 4412, 12), -- P. Def. Modifiers
+(14169, 4413, 12), -- M. Def. Modifiers
+(14169, 4414, 2), -- Armor Type
+(14169, 4415, 3), -- Weapon Type
+(14169, 4416, 7), -- Races
+(14169, 5038, 7), -- Summon PVP Penalty
 -- Mew the Cat
 (14170, 4121, 9), -- Summoned Monster Magic Protection
-(14170, 4408, 6), -- HP Very High
-(14170, 4409, 1), -- MP Increase (1x)
-(14170, 4410, 12), -- Slightly Strong P. Atk.
-(14170, 4411, 12), -- Slightly Strong M. Atk.
-(14170, 4412, 12), -- Slightly Strong P. Def.
-(14170, 4413, 12), -- Slightly Strong M. Def.
-(14170, 4414, 2), -- Standard Type
-(14170, 4415, 3), -- One-handed Sword
-(14170, 4416, 7), -- Spirits
-(14170, 5038, 7), -- Servitor PvP Penalty
+(14170, 4408, 6), -- HP Modifiers
+(14170, 4409, 1), -- MP Modifiers
+(14170, 4410, 12), -- P. Atk. Modifiers
+(14170, 4411, 12), -- M. Atk. Modifiers
+(14170, 4412, 12), -- P. Def. Modifiers
+(14170, 4413, 12), -- M. Def. Modifiers
+(14170, 4414, 2), -- Armor Type
+(14170, 4415, 3), -- Weapon Type
+(14170, 4416, 7), -- Races
+(14170, 5038, 7), -- Summon PVP Penalty
 -- Mew the Cat
 (14171, 4121, 9), -- Summoned Monster Magic Protection
-(14171, 4408, 6), -- HP Very High
-(14171, 4409, 1), -- MP Increase (1x)
-(14171, 4410, 12), -- Slightly Strong P. Atk.
-(14171, 4411, 12), -- Slightly Strong M. Atk.
-(14171, 4412, 12), -- Slightly Strong P. Def.
-(14171, 4413, 12), -- Slightly Strong M. Def.
-(14171, 4414, 2), -- Standard Type
-(14171, 4415, 3), -- One-handed Sword
-(14171, 4416, 7), -- Spirits
-(14171, 5038, 7), -- Servitor PvP Penalty
+(14171, 4408, 6), -- HP Modifiers
+(14171, 4409, 1), -- MP Modifiers
+(14171, 4410, 12), -- P. Atk. Modifiers
+(14171, 4411, 12), -- M. Atk. Modifiers
+(14171, 4412, 12), -- P. Def. Modifiers
+(14171, 4413, 12), -- M. Def. Modifiers
+(14171, 4414, 2), -- Armor Type
+(14171, 4415, 3), -- Weapon Type
+(14171, 4416, 7), -- Races
+(14171, 5038, 7), -- Summon PVP Penalty
 -- Mew the Cat
 (14172, 4121, 9), -- Summoned Monster Magic Protection
-(14172, 4408, 6), -- HP Very High
-(14172, 4409, 1), -- MP Increase (1x)
-(14172, 4410, 12), -- Slightly Strong P. Atk.
-(14172, 4411, 12), -- Slightly Strong M. Atk.
-(14172, 4412, 12), -- Slightly Strong P. Def.
-(14172, 4413, 12), -- Slightly Strong M. Def.
-(14172, 4414, 2), -- Standard Type
-(14172, 4415, 3), -- One-handed Sword
-(14172, 4416, 7), -- Spirits
-(14172, 5038, 7), -- Servitor PvP Penalty
+(14172, 4408, 6), -- HP Modifiers
+(14172, 4409, 1), -- MP Modifiers
+(14172, 4410, 12), -- P. Atk. Modifiers
+(14172, 4411, 12), -- M. Atk. Modifiers
+(14172, 4412, 12), -- P. Def. Modifiers
+(14172, 4413, 12), -- M. Def. Modifiers
+(14172, 4414, 2), -- Armor Type
+(14172, 4415, 3), -- Weapon Type
+(14172, 4416, 7), -- Races
+(14172, 5038, 7), -- Summon PVP Penalty
 -- Mew the Cat
 (14173, 4121, 9), -- Summoned Monster Magic Protection
-(14173, 4408, 6), -- HP Very High
-(14173, 4409, 1), -- MP Increase (1x)
-(14173, 4410, 12), -- Slightly Strong P. Atk.
-(14173, 4411, 12), -- Slightly Strong M. Atk.
-(14173, 4412, 12), -- Slightly Strong P. Def.
-(14173, 4413, 12), -- Slightly Strong M. Def.
-(14173, 4414, 2), -- Standard Type
-(14173, 4415, 3), -- One-handed Sword
-(14173, 4416, 7), -- Spirits
-(14173, 5038, 7), -- Servitor PvP Penalty
+(14173, 4408, 6), -- HP Modifiers
+(14173, 4409, 1), -- MP Modifiers
+(14173, 4410, 12), -- P. Atk. Modifiers
+(14173, 4411, 12), -- M. Atk. Modifiers
+(14173, 4412, 12), -- P. Def. Modifiers
+(14173, 4413, 12), -- M. Def. Modifiers
+(14173, 4414, 2), -- Armor Type
+(14173, 4415, 3), -- Weapon Type
+(14173, 4416, 7), -- Races
+(14173, 5038, 7), -- Summon PVP Penalty
 -- Mew the Cat
 (14174, 4121, 9), -- Summoned Monster Magic Protection
-(14174, 4408, 6), -- HP Very High
-(14174, 4409, 1), -- MP Increase (1x)
-(14174, 4410, 12), -- Slightly Strong P. Atk.
-(14174, 4411, 12), -- Slightly Strong M. Atk.
-(14174, 4412, 12), -- Slightly Strong P. Def.
-(14174, 4413, 12), -- Slightly Strong M. Def.
-(14174, 4414, 2), -- Standard Type
-(14174, 4415, 3), -- One-handed Sword
-(14174, 4416, 7), -- Spirits
-(14174, 5038, 7), -- Servitor PvP Penalty
+(14174, 4408, 6), -- HP Modifiers
+(14174, 4409, 1), -- MP Modifiers
+(14174, 4410, 12), -- P. Atk. Modifiers
+(14174, 4411, 12), -- M. Atk. Modifiers
+(14174, 4412, 12), -- P. Def. Modifiers
+(14174, 4413, 12), -- M. Def. Modifiers
+(14174, 4414, 2), -- Armor Type
+(14174, 4415, 3), -- Weapon Type
+(14174, 4416, 7), -- Races
+(14174, 5038, 7), -- Summon PVP Penalty
 -- Mew the Cat
 (14175, 4121, 9), -- Summoned Monster Magic Protection
-(14175, 4408, 6), -- HP Very High
-(14175, 4409, 1), -- MP Increase (1x)
-(14175, 4410, 12), -- Slightly Strong P. Atk.
-(14175, 4411, 12), -- Slightly Strong M. Atk.
-(14175, 4412, 12), -- Slightly Strong P. Def.
-(14175, 4413, 12), -- Slightly Strong M. Def.
-(14175, 4414, 2), -- Standard Type
-(14175, 4415, 3), -- One-handed Sword
-(14175, 4416, 7), -- Spirits
-(14175, 5038, 7), -- Servitor PvP Penalty
+(14175, 4408, 6), -- HP Modifiers
+(14175, 4409, 1), -- MP Modifiers
+(14175, 4410, 12), -- P. Atk. Modifiers
+(14175, 4411, 12), -- M. Atk. Modifiers
+(14175, 4412, 12), -- P. Def. Modifiers
+(14175, 4413, 12), -- M. Def. Modifiers
+(14175, 4414, 2), -- Armor Type
+(14175, 4415, 3), -- Weapon Type
+(14175, 4416, 7), -- Races
+(14175, 5038, 7), -- Summon PVP Penalty
 -- Mew the Cat
 (14176, 4121, 9), -- Summoned Monster Magic Protection
-(14176, 4408, 6), -- HP Very High
-(14176, 4409, 1), -- MP Increase (1x)
-(14176, 4410, 12), -- Slightly Strong P. Atk.
-(14176, 4411, 12), -- Slightly Strong M. Atk.
-(14176, 4412, 12), -- Slightly Strong P. Def.
-(14176, 4413, 12), -- Slightly Strong M. Def.
-(14176, 4414, 2), -- Standard Type
-(14176, 4415, 3), -- One-handed Sword
-(14176, 4416, 7), -- Spirits
-(14176, 5038, 7), -- Servitor PvP Penalty
+(14176, 4408, 6), -- HP Modifiers
+(14176, 4409, 1), -- MP Modifiers
+(14176, 4410, 12), -- P. Atk. Modifiers
+(14176, 4411, 12), -- M. Atk. Modifiers
+(14176, 4412, 12), -- P. Def. Modifiers
+(14176, 4413, 12), -- M. Def. Modifiers
+(14176, 4414, 2), -- Armor Type
+(14176, 4415, 3), -- Weapon Type
+(14176, 4416, 7), -- Races
+(14176, 5038, 7), -- Summon PVP Penalty
 -- Mew the Cat
 (14177, 4121, 9), -- Summoned Monster Magic Protection
-(14177, 4408, 6), -- HP Very High
-(14177, 4409, 1), -- MP Increase (1x)
-(14177, 4410, 12), -- Slightly Strong P. Atk.
-(14177, 4411, 12), -- Slightly Strong M. Atk.
-(14177, 4412, 12), -- Slightly Strong P. Def.
-(14177, 4413, 12), -- Slightly Strong M. Def.
-(14177, 4414, 2), -- Standard Type
-(14177, 4415, 3), -- One-handed Sword
-(14177, 4416, 7), -- Spirits
-(14177, 5038, 7), -- Servitor PvP Penalty
+(14177, 4408, 6), -- HP Modifiers
+(14177, 4409, 1), -- MP Modifiers
+(14177, 4410, 12), -- P. Atk. Modifiers
+(14177, 4411, 12), -- M. Atk. Modifiers
+(14177, 4412, 12), -- P. Def. Modifiers
+(14177, 4413, 12), -- M. Def. Modifiers
+(14177, 4414, 2), -- Armor Type
+(14177, 4415, 3), -- Weapon Type
+(14177, 4416, 7), -- Races
+(14177, 5038, 7), -- Summon PVP Penalty
 -- Mew the Cat
 (14178, 4121, 9), -- Summoned Monster Magic Protection
-(14178, 4408, 6), -- HP Very High
-(14178, 4409, 1), -- MP Increase (1x)
-(14178, 4410, 12), -- Slightly Strong P. Atk.
-(14178, 4411, 12), -- Slightly Strong M. Atk.
-(14178, 4412, 12), -- Slightly Strong P. Def.
-(14178, 4413, 12), -- Slightly Strong M. Def.
-(14178, 4414, 2), -- Standard Type
-(14178, 4415, 3), -- One-handed Sword
-(14178, 4416, 7), -- Spirits
-(14178, 5038, 7), -- Servitor PvP Penalty
+(14178, 4408, 6), -- HP Modifiers
+(14178, 4409, 1), -- MP Modifiers
+(14178, 4410, 12), -- P. Atk. Modifiers
+(14178, 4411, 12), -- M. Atk. Modifiers
+(14178, 4412, 12), -- P. Def. Modifiers
+(14178, 4413, 12), -- M. Def. Modifiers
+(14178, 4414, 2), -- Armor Type
+(14178, 4415, 3), -- Weapon Type
+(14178, 4416, 7), -- Races
+(14178, 5038, 7), -- Summon PVP Penalty
 -- Mew the Cat
 (14179, 4121, 9), -- Summoned Monster Magic Protection
-(14179, 4408, 6), -- HP Very High
-(14179, 4409, 1), -- MP Increase (1x)
-(14179, 4410, 12), -- Slightly Strong P. Atk.
-(14179, 4411, 12), -- Slightly Strong M. Atk.
-(14179, 4412, 12), -- Slightly Strong P. Def.
-(14179, 4413, 12), -- Slightly Strong M. Def.
-(14179, 4414, 2), -- Standard Type
-(14179, 4415, 3), -- One-handed Sword
-(14179, 4416, 7), -- Spirits
-(14179, 5038, 7), -- Servitor PvP Penalty
+(14179, 4408, 6), -- HP Modifiers
+(14179, 4409, 1), -- MP Modifiers
+(14179, 4410, 12), -- P. Atk. Modifiers
+(14179, 4411, 12), -- M. Atk. Modifiers
+(14179, 4412, 12), -- P. Def. Modifiers
+(14179, 4413, 12), -- M. Def. Modifiers
+(14179, 4414, 2), -- Armor Type
+(14179, 4415, 3), -- Weapon Type
+(14179, 4416, 7), -- Races
+(14179, 5038, 7), -- Summon PVP Penalty
 -- Mew the Cat
 (14180, 4121, 9), -- Summoned Monster Magic Protection
-(14180, 4408, 6), -- HP Very High
-(14180, 4409, 1), -- MP Increase (1x)
-(14180, 4410, 12), -- Slightly Strong P. Atk.
-(14180, 4411, 12), -- Slightly Strong M. Atk.
-(14180, 4412, 12), -- Slightly Strong P. Def.
-(14180, 4413, 12), -- Slightly Strong M. Def.
-(14180, 4414, 2), -- Standard Type
-(14180, 4415, 3), -- One-handed Sword
-(14180, 4416, 7), -- Spirits
-(14180, 5038, 7), -- Servitor PvP Penalty
+(14180, 4408, 6), -- HP Modifiers
+(14180, 4409, 1), -- MP Modifiers
+(14180, 4410, 12), -- P. Atk. Modifiers
+(14180, 4411, 12), -- M. Atk. Modifiers
+(14180, 4412, 12), -- P. Def. Modifiers
+(14180, 4413, 12), -- M. Def. Modifiers
+(14180, 4414, 2), -- Armor Type
+(14180, 4415, 3), -- Weapon Type
+(14180, 4416, 7), -- Races
+(14180, 5038, 7), -- Summon PVP Penalty
 -- Mew the Cat
 (14181, 4121, 9), -- Summoned Monster Magic Protection
-(14181, 4408, 6), -- HP Very High
-(14181, 4409, 1), -- MP Increase (1x)
-(14181, 4410, 12), -- Slightly Strong P. Atk.
-(14181, 4411, 12), -- Slightly Strong M. Atk.
-(14181, 4412, 12), -- Slightly Strong P. Def.
-(14181, 4413, 12), -- Slightly Strong M. Def.
-(14181, 4414, 2), -- Standard Type
-(14181, 4415, 3), -- One-handed Sword
-(14181, 4416, 7), -- Spirits
-(14181, 5038, 7), -- Servitor PvP Penalty
+(14181, 4408, 6), -- HP Modifiers
+(14181, 4409, 1), -- MP Modifiers
+(14181, 4410, 12), -- P. Atk. Modifiers
+(14181, 4411, 12), -- M. Atk. Modifiers
+(14181, 4412, 12), -- P. Def. Modifiers
+(14181, 4413, 12), -- M. Def. Modifiers
+(14181, 4414, 2), -- Armor Type
+(14181, 4415, 3), -- Weapon Type
+(14181, 4416, 7), -- Races
+(14181, 5038, 7), -- Summon PVP Penalty
 -- Mew the Cat
 (14182, 4121, 9), -- Summoned Monster Magic Protection
-(14182, 4408, 6), -- HP Very High
-(14182, 4409, 1), -- MP Increase (1x)
-(14182, 4410, 12), -- Slightly Strong P. Atk.
-(14182, 4411, 12), -- Slightly Strong M. Atk.
-(14182, 4412, 12), -- Slightly Strong P. Def.
-(14182, 4413, 12), -- Slightly Strong M. Def.
-(14182, 4414, 2), -- Standard Type
-(14182, 4415, 3), -- One-handed Sword
-(14182, 4416, 7), -- Spirits
-(14182, 5038, 7), -- Servitor PvP Penalty
+(14182, 4408, 6), -- HP Modifiers
+(14182, 4409, 1), -- MP Modifiers
+(14182, 4410, 12), -- P. Atk. Modifiers
+(14182, 4411, 12), -- M. Atk. Modifiers
+(14182, 4412, 12), -- P. Def. Modifiers
+(14182, 4413, 12), -- M. Def. Modifiers
+(14182, 4414, 2), -- Armor Type
+(14182, 4415, 3), -- Weapon Type
+(14182, 4416, 7), -- Races
+(14182, 5038, 7), -- Summon PVP Penalty
 -- Mew the Cat
 (14183, 4121, 9), -- Summoned Monster Magic Protection
-(14183, 4408, 6), -- HP Very High
-(14183, 4409, 1), -- MP Increase (1x)
-(14183, 4410, 12), -- Slightly Strong P. Atk.
-(14183, 4411, 12), -- Slightly Strong M. Atk.
-(14183, 4412, 12), -- Slightly Strong P. Def.
-(14183, 4413, 12), -- Slightly Strong M. Def.
-(14183, 4414, 2), -- Standard Type
-(14183, 4415, 3), -- One-handed Sword
-(14183, 4416, 7), -- Spirits
-(14183, 5038, 7), -- Servitor PvP Penalty
+(14183, 4408, 6), -- HP Modifiers
+(14183, 4409, 1), -- MP Modifiers
+(14183, 4410, 12), -- P. Atk. Modifiers
+(14183, 4411, 12), -- M. Atk. Modifiers
+(14183, 4412, 12), -- P. Def. Modifiers
+(14183, 4413, 12), -- M. Def. Modifiers
+(14183, 4414, 2), -- Armor Type
+(14183, 4415, 3), -- Weapon Type
+(14183, 4416, 7), -- Races
+(14183, 5038, 7), -- Summon PVP Penalty
 -- Mew the Cat
 (14184, 4121, 9), -- Summoned Monster Magic Protection
-(14184, 4408, 6), -- HP Very High
-(14184, 4409, 1), -- MP Increase (1x)
-(14184, 4410, 12), -- Slightly Strong P. Atk.
-(14184, 4411, 12), -- Slightly Strong M. Atk.
-(14184, 4412, 12), -- Slightly Strong P. Def.
-(14184, 4413, 12), -- Slightly Strong M. Def.
-(14184, 4414, 2), -- Standard Type
-(14184, 4415, 3), -- One-handed Sword
-(14184, 4416, 7), -- Spirits
-(14184, 5038, 7), -- Servitor PvP Penalty
+(14184, 4408, 6), -- HP Modifiers
+(14184, 4409, 1), -- MP Modifiers
+(14184, 4410, 12), -- P. Atk. Modifiers
+(14184, 4411, 12), -- M. Atk. Modifiers
+(14184, 4412, 12), -- P. Def. Modifiers
+(14184, 4413, 12), -- M. Def. Modifiers
+(14184, 4414, 2), -- Armor Type
+(14184, 4415, 3), -- Weapon Type
+(14184, 4416, 7), -- Races
+(14184, 5038, 7), -- Summon PVP Penalty
 -- Mew the Cat
 (14185, 4121, 9), -- Summoned Monster Magic Protection
-(14185, 4408, 6), -- HP Very High
-(14185, 4409, 1), -- MP Increase (1x)
-(14185, 4410, 12), -- Slightly Strong P. Atk.
-(14185, 4411, 12), -- Slightly Strong M. Atk.
-(14185, 4412, 12), -- Slightly Strong P. Def.
-(14185, 4413, 12), -- Slightly Strong M. Def.
-(14185, 4414, 2), -- Standard Type
-(14185, 4415, 3), -- One-handed Sword
-(14185, 4416, 7), -- Spirits
-(14185, 5038, 7), -- Servitor PvP Penalty
+(14185, 4408, 6), -- HP Modifiers
+(14185, 4409, 1), -- MP Modifiers
+(14185, 4410, 12), -- P. Atk. Modifiers
+(14185, 4411, 12), -- M. Atk. Modifiers
+(14185, 4412, 12), -- P. Def. Modifiers
+(14185, 4413, 12), -- M. Def. Modifiers
+(14185, 4414, 2), -- Armor Type
+(14185, 4415, 3), -- Weapon Type
+(14185, 4416, 7), -- Races
+(14185, 5038, 7), -- Summon PVP Penalty
 -- Mew the Cat
 (14186, 4121, 9), -- Summoned Monster Magic Protection
-(14186, 4408, 6), -- HP Very High
-(14186, 4409, 1), -- MP Increase (1x)
-(14186, 4410, 12), -- Slightly Strong P. Atk.
-(14186, 4411, 12), -- Slightly Strong M. Atk.
-(14186, 4412, 12), -- Slightly Strong P. Def.
-(14186, 4413, 12), -- Slightly Strong M. Def.
-(14186, 4414, 2), -- Standard Type
-(14186, 4415, 3), -- One-handed Sword
-(14186, 4416, 7), -- Spirits
-(14186, 5038, 7), -- Servitor PvP Penalty
+(14186, 4408, 6), -- HP Modifiers
+(14186, 4409, 1), -- MP Modifiers
+(14186, 4410, 12), -- P. Atk. Modifiers
+(14186, 4411, 12), -- M. Atk. Modifiers
+(14186, 4412, 12), -- P. Def. Modifiers
+(14186, 4413, 12), -- M. Def. Modifiers
+(14186, 4414, 2), -- Armor Type
+(14186, 4415, 3), -- Weapon Type
+(14186, 4416, 7), -- Races
+(14186, 5038, 7), -- Summon PVP Penalty
 -- Mew the Cat
 (14187, 4121, 9), -- Summoned Monster Magic Protection
-(14187, 4408, 6), -- HP Very High
-(14187, 4409, 1), -- MP Increase (1x)
-(14187, 4410, 12), -- Slightly Strong P. Atk.
-(14187, 4411, 12), -- Slightly Strong M. Atk.
-(14187, 4412, 12), -- Slightly Strong P. Def.
-(14187, 4413, 12), -- Slightly Strong M. Def.
-(14187, 4414, 2), -- Standard Type
-(14187, 4415, 3), -- One-handed Sword
-(14187, 4416, 7), -- Spirits
-(14187, 5038, 7), -- Servitor PvP Penalty
+(14187, 4408, 6), -- HP Modifiers
+(14187, 4409, 1), -- MP Modifiers
+(14187, 4410, 12), -- P. Atk. Modifiers
+(14187, 4411, 12), -- M. Atk. Modifiers
+(14187, 4412, 12), -- P. Def. Modifiers
+(14187, 4413, 12), -- M. Def. Modifiers
+(14187, 4414, 2), -- Armor Type
+(14187, 4415, 3), -- Weapon Type
+(14187, 4416, 7), -- Races
+(14187, 5038, 7), -- Summon PVP Penalty
 -- Mew the Cat
 (14188, 4121, 9), -- Summoned Monster Magic Protection
-(14188, 4408, 6), -- HP Very High
-(14188, 4409, 1), -- MP Increase (1x)
-(14188, 4410, 12), -- Slightly Strong P. Atk.
-(14188, 4411, 12), -- Slightly Strong M. Atk.
-(14188, 4412, 12), -- Slightly Strong P. Def.
-(14188, 4413, 12), -- Slightly Strong M. Def.
-(14188, 4414, 2), -- Standard Type
-(14188, 4415, 3), -- One-handed Sword
-(14188, 4416, 7), -- Spirits
-(14188, 5038, 7), -- Servitor PvP Penalty
+(14188, 4408, 6), -- HP Modifiers
+(14188, 4409, 1), -- MP Modifiers
+(14188, 4410, 12), -- P. Atk. Modifiers
+(14188, 4411, 12), -- M. Atk. Modifiers
+(14188, 4412, 12), -- P. Def. Modifiers
+(14188, 4413, 12), -- M. Def. Modifiers
+(14188, 4414, 2), -- Armor Type
+(14188, 4415, 3), -- Weapon Type
+(14188, 4416, 7), -- Races
+(14188, 5038, 7), -- Summon PVP Penalty
 -- Mew the Cat
 (14189, 4121, 9), -- Summoned Monster Magic Protection
-(14189, 4408, 6), -- HP Very High
-(14189, 4409, 1), -- MP Increase (1x)
-(14189, 4410, 12), -- Slightly Strong P. Atk.
-(14189, 4411, 12), -- Slightly Strong M. Atk.
-(14189, 4412, 12), -- Slightly Strong P. Def.
-(14189, 4413, 12), -- Slightly Strong M. Def.
-(14189, 4414, 2), -- Standard Type
-(14189, 4415, 3), -- One-handed Sword
-(14189, 4416, 7), -- Spirits
-(14189, 5038, 7), -- Servitor PvP Penalty
+(14189, 4408, 6), -- HP Modifiers
+(14189, 4409, 1), -- MP Modifiers
+(14189, 4410, 12), -- P. Atk. Modifiers
+(14189, 4411, 12), -- M. Atk. Modifiers
+(14189, 4412, 12), -- P. Def. Modifiers
+(14189, 4413, 12), -- M. Def. Modifiers
+(14189, 4414, 2), -- Armor Type
+(14189, 4415, 3), -- Weapon Type
+(14189, 4416, 7), -- Races
+(14189, 5038, 7), -- Summon PVP Penalty
 -- Mew the Cat
 (14190, 4121, 9), -- Summoned Monster Magic Protection
-(14190, 4408, 6), -- HP Very High
-(14190, 4409, 1), -- MP Increase (1x)
-(14190, 4410, 12), -- Slightly Strong P. Atk.
-(14190, 4411, 12), -- Slightly Strong M. Atk.
-(14190, 4412, 12), -- Slightly Strong P. Def.
-(14190, 4413, 12), -- Slightly Strong M. Def.
-(14190, 4414, 2), -- Standard Type
-(14190, 4415, 3), -- One-handed Sword
-(14190, 4416, 7), -- Spirits
-(14190, 5038, 7), -- Servitor PvP Penalty
+(14190, 4408, 6), -- HP Modifiers
+(14190, 4409, 1), -- MP Modifiers
+(14190, 4410, 12), -- P. Atk. Modifiers
+(14190, 4411, 12), -- M. Atk. Modifiers
+(14190, 4412, 12), -- P. Def. Modifiers
+(14190, 4413, 12), -- M. Def. Modifiers
+(14190, 4414, 2), -- Armor Type
+(14190, 4415, 3), -- Weapon Type
+(14190, 4416, 7), -- Races
+(14190, 5038, 7), -- Summon PVP Penalty
 -- Mew the Cat
 (14191, 4121, 9), -- Summoned Monster Magic Protection
-(14191, 4408, 6), -- HP Very High
-(14191, 4409, 1), -- MP Increase (1x)
-(14191, 4410, 12), -- Slightly Strong P. Atk.
-(14191, 4411, 12), -- Slightly Strong M. Atk.
-(14191, 4412, 12), -- Slightly Strong P. Def.
-(14191, 4413, 12), -- Slightly Strong M. Def.
-(14191, 4414, 2), -- Standard Type
-(14191, 4415, 3), -- One-handed Sword
-(14191, 4416, 7), -- Spirits
-(14191, 5038, 7), -- Servitor PvP Penalty
+(14191, 4408, 6), -- HP Modifiers
+(14191, 4409, 1), -- MP Modifiers
+(14191, 4410, 12), -- P. Atk. Modifiers
+(14191, 4411, 12), -- M. Atk. Modifiers
+(14191, 4412, 12), -- P. Def. Modifiers
+(14191, 4413, 12), -- M. Def. Modifiers
+(14191, 4414, 2), -- Armor Type
+(14191, 4415, 3), -- Weapon Type
+(14191, 4416, 7), -- Races
+(14191, 5038, 7), -- Summon PVP Penalty
 -- Mew the Cat
 (14192, 4121, 9), -- Summoned Monster Magic Protection
-(14192, 4408, 6), -- HP Very High
-(14192, 4409, 1), -- MP Increase (1x)
-(14192, 4410, 12), -- Slightly Strong P. Atk.
-(14192, 4411, 12), -- Slightly Strong M. Atk.
-(14192, 4412, 12), -- Slightly Strong P. Def.
-(14192, 4413, 12), -- Slightly Strong M. Def.
-(14192, 4414, 2), -- Standard Type
-(14192, 4415, 3), -- One-handed Sword
-(14192, 4416, 7), -- Spirits
-(14192, 5038, 7), -- Servitor PvP Penalty
+(14192, 4408, 6), -- HP Modifiers
+(14192, 4409, 1), -- MP Modifiers
+(14192, 4410, 12), -- P. Atk. Modifiers
+(14192, 4411, 12), -- M. Atk. Modifiers
+(14192, 4412, 12), -- P. Def. Modifiers
+(14192, 4413, 12), -- M. Def. Modifiers
+(14192, 4414, 2), -- Armor Type
+(14192, 4415, 3), -- Weapon Type
+(14192, 4416, 7), -- Races
+(14192, 5038, 7), -- Summon PVP Penalty
 -- Mew the Cat
 (14193, 4121, 9), -- Summoned Monster Magic Protection
-(14193, 4408, 6), -- HP Very High
-(14193, 4409, 1), -- MP Increase (1x)
-(14193, 4410, 12), -- Slightly Strong P. Atk.
-(14193, 4411, 12), -- Slightly Strong M. Atk.
-(14193, 4412, 12), -- Slightly Strong P. Def.
-(14193, 4413, 12), -- Slightly Strong M. Def.
-(14193, 4414, 2), -- Standard Type
-(14193, 4415, 3), -- One-handed Sword
-(14193, 4416, 7), -- Spirits
-(14193, 5038, 7), -- Servitor PvP Penalty
+(14193, 4408, 6), -- HP Modifiers
+(14193, 4409, 1), -- MP Modifiers
+(14193, 4410, 12), -- P. Atk. Modifiers
+(14193, 4411, 12), -- M. Atk. Modifiers
+(14193, 4412, 12), -- P. Def. Modifiers
+(14193, 4413, 12), -- M. Def. Modifiers
+(14193, 4414, 2), -- Armor Type
+(14193, 4415, 3), -- Weapon Type
+(14193, 4416, 7), -- Races
+(14193, 5038, 7), -- Summon PVP Penalty
 -- Mew the Cat
 (14194, 4121, 9), -- Summoned Monster Magic Protection
-(14194, 4408, 6), -- HP Very High
-(14194, 4409, 1), -- MP Increase (1x)
-(14194, 4410, 12), -- Slightly Strong P. Atk.
-(14194, 4411, 12), -- Slightly Strong M. Atk.
-(14194, 4412, 12), -- Slightly Strong P. Def.
-(14194, 4413, 12), -- Slightly Strong M. Def.
-(14194, 4414, 2), -- Standard Type
-(14194, 4415, 3), -- One-handed Sword
-(14194, 4416, 7), -- Spirits
-(14194, 5038, 7), -- Servitor PvP Penalty
+(14194, 4408, 6), -- HP Modifiers
+(14194, 4409, 1), -- MP Modifiers
+(14194, 4410, 12), -- P. Atk. Modifiers
+(14194, 4411, 12), -- M. Atk. Modifiers
+(14194, 4412, 12), -- P. Def. Modifiers
+(14194, 4413, 12), -- M. Def. Modifiers
+(14194, 4414, 2), -- Armor Type
+(14194, 4415, 3), -- Weapon Type
+(14194, 4416, 7), -- Races
+(14194, 5038, 7), -- Summon PVP Penalty
 -- Mew the Cat
 (14195, 4121, 9), -- Summoned Monster Magic Protection
-(14195, 4408, 6), -- HP Very High
-(14195, 4409, 1), -- MP Increase (1x)
-(14195, 4410, 12), -- Slightly Strong P. Atk.
-(14195, 4411, 12), -- Slightly Strong M. Atk.
-(14195, 4412, 12), -- Slightly Strong P. Def.
-(14195, 4413, 12), -- Slightly Strong M. Def.
-(14195, 4414, 2), -- Standard Type
-(14195, 4415, 3), -- One-handed Sword
-(14195, 4416, 7), -- Spirits
-(14195, 5038, 7), -- Servitor PvP Penalty
+(14195, 4408, 6), -- HP Modifiers
+(14195, 4409, 1), -- MP Modifiers
+(14195, 4410, 12), -- P. Atk. Modifiers
+(14195, 4411, 12), -- M. Atk. Modifiers
+(14195, 4412, 12), -- P. Def. Modifiers
+(14195, 4413, 12), -- M. Def. Modifiers
+(14195, 4414, 2), -- Armor Type
+(14195, 4415, 3), -- Weapon Type
+(14195, 4416, 7), -- Races
+(14195, 5038, 7), -- Summon PVP Penalty
 -- Mew the Cat
 (14196, 4121, 9), -- Summoned Monster Magic Protection
-(14196, 4408, 6), -- HP Very High
-(14196, 4409, 1), -- MP Increase (1x)
-(14196, 4410, 12), -- Slightly Strong P. Atk.
-(14196, 4411, 12), -- Slightly Strong M. Atk.
-(14196, 4412, 12), -- Slightly Strong P. Def.
-(14196, 4413, 12), -- Slightly Strong M. Def.
-(14196, 4414, 2), -- Standard Type
-(14196, 4415, 3), -- One-handed Sword
-(14196, 4416, 7), -- Spirits
-(14196, 5038, 7), -- Servitor PvP Penalty
+(14196, 4408, 6), -- HP Modifiers
+(14196, 4409, 1), -- MP Modifiers
+(14196, 4410, 12), -- P. Atk. Modifiers
+(14196, 4411, 12), -- M. Atk. Modifiers
+(14196, 4412, 12), -- P. Def. Modifiers
+(14196, 4413, 12), -- M. Def. Modifiers
+(14196, 4414, 2), -- Armor Type
+(14196, 4415, 3), -- Weapon Type
+(14196, 4416, 7), -- Races
+(14196, 5038, 7), -- Summon PVP Penalty
 -- Mew the Cat
 (14197, 4121, 9), -- Summoned Monster Magic Protection
-(14197, 4408, 6), -- HP Very High
-(14197, 4409, 1), -- MP Increase (1x)
-(14197, 4410, 12), -- Slightly Strong P. Atk.
-(14197, 4411, 12), -- Slightly Strong M. Atk.
-(14197, 4412, 12), -- Slightly Strong P. Def.
-(14197, 4413, 12), -- Slightly Strong M. Def.
-(14197, 4414, 2), -- Standard Type
-(14197, 4415, 3), -- One-handed Sword
-(14197, 4416, 7), -- Spirits
-(14197, 5038, 7), -- Servitor PvP Penalty
+(14197, 4408, 6), -- HP Modifiers
+(14197, 4409, 1), -- MP Modifiers
+(14197, 4410, 12), -- P. Atk. Modifiers
+(14197, 4411, 12), -- M. Atk. Modifiers
+(14197, 4412, 12), -- P. Def. Modifiers
+(14197, 4413, 12), -- M. Def. Modifiers
+(14197, 4414, 2), -- Armor Type
+(14197, 4415, 3), -- Weapon Type
+(14197, 4416, 7), -- Races
+(14197, 5038, 7), -- Summon PVP Penalty
 -- Mew the Cat
 (14198, 4121, 9), -- Summoned Monster Magic Protection
-(14198, 4408, 6), -- HP Very High
-(14198, 4409, 1), -- MP Increase (1x)
-(14198, 4410, 12), -- Slightly Strong P. Atk.
-(14198, 4411, 12), -- Slightly Strong M. Atk.
-(14198, 4412, 12), -- Slightly Strong P. Def.
-(14198, 4413, 12), -- Slightly Strong M. Def.
-(14198, 4414, 2), -- Standard Type
-(14198, 4415, 3), -- One-handed Sword
-(14198, 4416, 7), -- Spirits
-(14198, 5038, 7), -- Servitor PvP Penalty
+(14198, 4408, 6), -- HP Modifiers
+(14198, 4409, 1), -- MP Modifiers
+(14198, 4410, 12), -- P. Atk. Modifiers
+(14198, 4411, 12), -- M. Atk. Modifiers
+(14198, 4412, 12), -- P. Def. Modifiers
+(14198, 4413, 12), -- M. Def. Modifiers
+(14198, 4414, 2), -- Armor Type
+(14198, 4415, 3), -- Weapon Type
+(14198, 4416, 7), -- Races
+(14198, 5038, 7), -- Summon PVP Penalty
 -- Mew the Cat
 (14199, 4121, 9), -- Summoned Monster Magic Protection
-(14199, 4408, 6), -- HP Very High
-(14199, 4409, 1), -- MP Increase (1x)
-(14199, 4410, 12), -- Slightly Strong P. Atk.
-(14199, 4411, 12), -- Slightly Strong M. Atk.
-(14199, 4412, 12), -- Slightly Strong P. Def.
-(14199, 4413, 12), -- Slightly Strong M. Def.
-(14199, 4414, 2), -- Standard Type
-(14199, 4415, 3), -- One-handed Sword
-(14199, 4416, 7), -- Spirits
-(14199, 5038, 7), -- Servitor PvP Penalty
+(14199, 4408, 6), -- HP Modifiers
+(14199, 4409, 1), -- MP Modifiers
+(14199, 4410, 12), -- P. Atk. Modifiers
+(14199, 4411, 12), -- M. Atk. Modifiers
+(14199, 4412, 12), -- P. Def. Modifiers
+(14199, 4413, 12), -- M. Def. Modifiers
+(14199, 4414, 2), -- Armor Type
+(14199, 4415, 3), -- Weapon Type
+(14199, 4416, 7), -- Races
+(14199, 5038, 7), -- Summon PVP Penalty
 -- Mew the Cat
 (14200, 4121, 9), -- Summoned Monster Magic Protection
-(14200, 4408, 6), -- HP Very High
-(14200, 4409, 1), -- MP Increase (1x)
-(14200, 4410, 12), -- Slightly Strong P. Atk.
-(14200, 4411, 12), -- Slightly Strong M. Atk.
-(14200, 4412, 12), -- Slightly Strong P. Def.
-(14200, 4413, 12), -- Slightly Strong M. Def.
-(14200, 4414, 2), -- Standard Type
-(14200, 4415, 3), -- One-handed Sword
-(14200, 4416, 7), -- Spirits
-(14200, 5038, 7), -- Servitor PvP Penalty
+(14200, 4408, 6), -- HP Modifiers
+(14200, 4409, 1), -- MP Modifiers
+(14200, 4410, 12), -- P. Atk. Modifiers
+(14200, 4411, 12), -- M. Atk. Modifiers
+(14200, 4412, 12), -- P. Def. Modifiers
+(14200, 4413, 12), -- M. Def. Modifiers
+(14200, 4414, 2), -- Armor Type
+(14200, 4415, 3), -- Weapon Type
+(14200, 4416, 7), -- Races
+(14200, 5038, 7), -- Summon PVP Penalty
 -- Mew the Cat
 (14201, 4121, 9), -- Summoned Monster Magic Protection
-(14201, 4408, 6), -- HP Very High
-(14201, 4409, 1), -- MP Increase (1x)
-(14201, 4410, 12), -- Slightly Strong P. Atk.
-(14201, 4411, 12), -- Slightly Strong M. Atk.
-(14201, 4412, 12), -- Slightly Strong P. Def.
-(14201, 4413, 12), -- Slightly Strong M. Def.
-(14201, 4414, 2), -- Standard Type
-(14201, 4415, 3), -- One-handed Sword
-(14201, 4416, 7), -- Spirits
-(14201, 5038, 7), -- Servitor PvP Penalty
+(14201, 4408, 6), -- HP Modifiers
+(14201, 4409, 1), -- MP Modifiers
+(14201, 4410, 12), -- P. Atk. Modifiers
+(14201, 4411, 12), -- M. Atk. Modifiers
+(14201, 4412, 12), -- P. Def. Modifiers
+(14201, 4413, 12), -- M. Def. Modifiers
+(14201, 4414, 2), -- Armor Type
+(14201, 4415, 3), -- Weapon Type
+(14201, 4416, 7), -- Races
+(14201, 5038, 7), -- Summon PVP Penalty
 -- Mew the Cat
 (14202, 4121, 9), -- Summoned Monster Magic Protection
-(14202, 4408, 6), -- HP Very High
-(14202, 4409, 1), -- MP Increase (1x)
-(14202, 4410, 12), -- Slightly Strong P. Atk.
-(14202, 4411, 12), -- Slightly Strong M. Atk.
-(14202, 4412, 12), -- Slightly Strong P. Def.
-(14202, 4413, 12), -- Slightly Strong M. Def.
-(14202, 4414, 2), -- Standard Type
-(14202, 4415, 3), -- One-handed Sword
-(14202, 4416, 7), -- Spirits
-(14202, 5038, 7), -- Servitor PvP Penalty
+(14202, 4408, 6), -- HP Modifiers
+(14202, 4409, 1), -- MP Modifiers
+(14202, 4410, 12), -- P. Atk. Modifiers
+(14202, 4411, 12), -- M. Atk. Modifiers
+(14202, 4412, 12), -- P. Def. Modifiers
+(14202, 4413, 12), -- M. Def. Modifiers
+(14202, 4414, 2), -- Armor Type
+(14202, 4415, 3), -- Weapon Type
+(14202, 4416, 7), -- Races
+(14202, 5038, 7), -- Summon PVP Penalty
 -- Mew the Cat
 (14203, 4121, 9), -- Summoned Monster Magic Protection
-(14203, 4408, 6), -- HP Very High
-(14203, 4409, 1), -- MP Increase (1x)
-(14203, 4410, 12), -- Slightly Strong P. Atk.
-(14203, 4411, 12), -- Slightly Strong M. Atk.
-(14203, 4412, 12), -- Slightly Strong P. Def.
-(14203, 4413, 12), -- Slightly Strong M. Def.
-(14203, 4414, 2), -- Standard Type
-(14203, 4415, 3), -- One-handed Sword
-(14203, 4416, 7), -- Spirits
-(14203, 5038, 7), -- Servitor PvP Penalty
+(14203, 4408, 6), -- HP Modifiers
+(14203, 4409, 1), -- MP Modifiers
+(14203, 4410, 12), -- P. Atk. Modifiers
+(14203, 4411, 12), -- M. Atk. Modifiers
+(14203, 4412, 12), -- P. Def. Modifiers
+(14203, 4413, 12), -- M. Def. Modifiers
+(14203, 4414, 2), -- Armor Type
+(14203, 4415, 3), -- Weapon Type
+(14203, 4416, 7), -- Races
+(14203, 5038, 7), -- Summon PVP Penalty
 -- Mew the Cat
 (14204, 4121, 9), -- Summoned Monster Magic Protection
-(14204, 4408, 6), -- HP Very High
-(14204, 4409, 1), -- MP Increase (1x)
-(14204, 4410, 12), -- Slightly Strong P. Atk.
-(14204, 4411, 12), -- Slightly Strong M. Atk.
-(14204, 4412, 12), -- Slightly Strong P. Def.
-(14204, 4413, 12), -- Slightly Strong M. Def.
-(14204, 4414, 2), -- Standard Type
-(14204, 4415, 3), -- One-handed Sword
-(14204, 4416, 7), -- Spirits
-(14204, 5038, 7), -- Servitor PvP Penalty
+(14204, 4408, 6), -- HP Modifiers
+(14204, 4409, 1), -- MP Modifiers
+(14204, 4410, 12), -- P. Atk. Modifiers
+(14204, 4411, 12), -- M. Atk. Modifiers
+(14204, 4412, 12), -- P. Def. Modifiers
+(14204, 4413, 12), -- M. Def. Modifiers
+(14204, 4414, 2), -- Armor Type
+(14204, 4415, 3), -- Weapon Type
+(14204, 4416, 7), -- Races
+(14204, 5038, 7), -- Summon PVP Penalty
 -- Mew the Cat
 (14205, 4121, 9), -- Summoned Monster Magic Protection
-(14205, 4408, 6), -- HP Very High
-(14205, 4409, 1), -- MP Increase (1x)
-(14205, 4410, 12), -- Slightly Strong P. Atk.
-(14205, 4411, 12), -- Slightly Strong M. Atk.
-(14205, 4412, 12), -- Slightly Strong P. Def.
-(14205, 4413, 12), -- Slightly Strong M. Def.
-(14205, 4414, 2), -- Standard Type
-(14205, 4415, 3), -- One-handed Sword
-(14205, 4416, 7), -- Spirits
-(14205, 5038, 7), -- Servitor PvP Penalty
+(14205, 4408, 6), -- HP Modifiers
+(14205, 4409, 1), -- MP Modifiers
+(14205, 4410, 12), -- P. Atk. Modifiers
+(14205, 4411, 12), -- M. Atk. Modifiers
+(14205, 4412, 12), -- P. Def. Modifiers
+(14205, 4413, 12), -- M. Def. Modifiers
+(14205, 4414, 2), -- Armor Type
+(14205, 4415, 3), -- Weapon Type
+(14205, 4416, 7), -- Races
+(14205, 5038, 7), -- Summon PVP Penalty
 -- Mew the Cat
 (14206, 4121, 9), -- Summoned Monster Magic Protection
-(14206, 4408, 6), -- HP Very High
-(14206, 4409, 1), -- MP Increase (1x)
-(14206, 4410, 12), -- Slightly Strong P. Atk.
-(14206, 4411, 12), -- Slightly Strong M. Atk.
-(14206, 4412, 12), -- Slightly Strong P. Def.
-(14206, 4413, 12), -- Slightly Strong M. Def.
-(14206, 4414, 2), -- Standard Type
-(14206, 4415, 3), -- One-handed Sword
-(14206, 4416, 7), -- Spirits
-(14206, 5038, 7), -- Servitor PvP Penalty
+(14206, 4408, 6), -- HP Modifiers
+(14206, 4409, 1), -- MP Modifiers
+(14206, 4410, 12), -- P. Atk. Modifiers
+(14206, 4411, 12), -- M. Atk. Modifiers
+(14206, 4412, 12), -- P. Def. Modifiers
+(14206, 4413, 12), -- M. Def. Modifiers
+(14206, 4414, 2), -- Armor Type
+(14206, 4415, 3), -- Weapon Type
+(14206, 4416, 7), -- Races
+(14206, 5038, 7), -- Summon PVP Penalty
 -- Kai the Cat
 (14207, 4121, 9), -- Summoned Monster Magic Protection
-(14207, 4408, 3), -- HP Medium-High
-(14207, 4409, 1), -- MP Increase (1x)
-(14207, 4410, 14), -- Strong P. Atk.
-(14207, 4411, 11), -- Average M. Atk.
-(14207, 4412, 12), -- Slightly Strong P. Def.
-(14207, 4413, 12), -- Slightly Strong M. Def.
-(14207, 4414, 2), -- Standard Type
-(14207, 4415, 3), -- One-handed Sword
-(14207, 4416, 7), -- Spirits
-(14207, 5038, 10), -- Servitor PvP Penalty
+(14207, 4408, 3), -- HP Modifiers
+(14207, 4409, 1), -- MP Modifiers
+(14207, 4410, 14), -- P. Atk. Modifiers
+(14207, 4411, 11), -- M. Atk. Modifiers
+(14207, 4412, 12), -- P. Def. Modifiers
+(14207, 4413, 12), -- M. Def. Modifiers
+(14207, 4414, 2), -- Armor Type
+(14207, 4415, 3), -- Weapon Type
+(14207, 4416, 7), -- Races
+(14207, 5038, 10), -- Summon PVP Penalty
 -- Kai the Cat
 (14208, 4121, 9), -- Summoned Monster Magic Protection
-(14208, 4408, 3), -- HP Medium-High
-(14208, 4409, 1), -- MP Increase (1x)
-(14208, 4410, 14), -- Strong P. Atk.
-(14208, 4411, 11), -- Average M. Atk.
-(14208, 4412, 12), -- Slightly Strong P. Def.
-(14208, 4413, 12), -- Slightly Strong M. Def.
-(14208, 4414, 2), -- Standard Type
-(14208, 4415, 3), -- One-handed Sword
-(14208, 4416, 7), -- Spirits
-(14208, 5038, 10), -- Servitor PvP Penalty
+(14208, 4408, 3), -- HP Modifiers
+(14208, 4409, 1), -- MP Modifiers
+(14208, 4410, 14), -- P. Atk. Modifiers
+(14208, 4411, 11), -- M. Atk. Modifiers
+(14208, 4412, 12), -- P. Def. Modifiers
+(14208, 4413, 12), -- M. Def. Modifiers
+(14208, 4414, 2), -- Armor Type
+(14208, 4415, 3), -- Weapon Type
+(14208, 4416, 7), -- Races
+(14208, 5038, 10), -- Summon PVP Penalty
 -- Kai the Cat
 (14209, 4121, 9), -- Summoned Monster Magic Protection
-(14209, 4408, 3), -- HP Medium-High
-(14209, 4409, 1), -- MP Increase (1x)
-(14209, 4410, 14), -- Strong P. Atk.
-(14209, 4411, 11), -- Average M. Atk.
-(14209, 4412, 12), -- Slightly Strong P. Def.
-(14209, 4413, 12), -- Slightly Strong M. Def.
-(14209, 4414, 2), -- Standard Type
-(14209, 4415, 3), -- One-handed Sword
-(14209, 4416, 7), -- Spirits
-(14209, 5038, 10), -- Servitor PvP Penalty
+(14209, 4408, 3), -- HP Modifiers
+(14209, 4409, 1), -- MP Modifiers
+(14209, 4410, 14), -- P. Atk. Modifiers
+(14209, 4411, 11), -- M. Atk. Modifiers
+(14209, 4412, 12), -- P. Def. Modifiers
+(14209, 4413, 12), -- M. Def. Modifiers
+(14209, 4414, 2), -- Armor Type
+(14209, 4415, 3), -- Weapon Type
+(14209, 4416, 7), -- Races
+(14209, 5038, 10), -- Summon PVP Penalty
 -- Kai the Cat
 (14210, 4121, 9), -- Summoned Monster Magic Protection
-(14210, 4408, 3), -- HP Medium-High
-(14210, 4409, 1), -- MP Increase (1x)
-(14210, 4410, 14), -- Strong P. Atk.
-(14210, 4411, 11), -- Average M. Atk.
-(14210, 4412, 12), -- Slightly Strong P. Def.
-(14210, 4413, 12), -- Slightly Strong M. Def.
-(14210, 4414, 2), -- Standard Type
-(14210, 4415, 3), -- One-handed Sword
-(14210, 4416, 7), -- Spirits
-(14210, 5038, 10), -- Servitor PvP Penalty
+(14210, 4408, 3), -- HP Modifiers
+(14210, 4409, 1), -- MP Modifiers
+(14210, 4410, 14), -- P. Atk. Modifiers
+(14210, 4411, 11), -- M. Atk. Modifiers
+(14210, 4412, 12), -- P. Def. Modifiers
+(14210, 4413, 12), -- M. Def. Modifiers
+(14210, 4414, 2), -- Armor Type
+(14210, 4415, 3), -- Weapon Type
+(14210, 4416, 7), -- Races
+(14210, 5038, 10), -- Summon PVP Penalty
 -- Kai the Cat
 (14211, 4121, 9), -- Summoned Monster Magic Protection
-(14211, 4408, 3), -- HP Medium-High
-(14211, 4409, 1), -- MP Increase (1x)
-(14211, 4410, 14), -- Strong P. Atk.
-(14211, 4411, 11), -- Average M. Atk.
-(14211, 4412, 12), -- Slightly Strong P. Def.
-(14211, 4413, 12), -- Slightly Strong M. Def.
-(14211, 4414, 2), -- Standard Type
-(14211, 4415, 3), -- One-handed Sword
-(14211, 4416, 7), -- Spirits
-(14211, 5038, 10), -- Servitor PvP Penalty
+(14211, 4408, 3), -- HP Modifiers
+(14211, 4409, 1), -- MP Modifiers
+(14211, 4410, 14), -- P. Atk. Modifiers
+(14211, 4411, 11), -- M. Atk. Modifiers
+(14211, 4412, 12), -- P. Def. Modifiers
+(14211, 4413, 12), -- M. Def. Modifiers
+(14211, 4414, 2), -- Armor Type
+(14211, 4415, 3), -- Weapon Type
+(14211, 4416, 7), -- Races
+(14211, 5038, 10), -- Summon PVP Penalty
 -- Kai the Cat
 (14212, 4121, 9), -- Summoned Monster Magic Protection
-(14212, 4408, 3), -- HP Medium-High
-(14212, 4409, 1), -- MP Increase (1x)
-(14212, 4410, 14), -- Strong P. Atk.
-(14212, 4411, 11), -- Average M. Atk.
-(14212, 4412, 12), -- Slightly Strong P. Def.
-(14212, 4413, 12), -- Slightly Strong M. Def.
-(14212, 4414, 2), -- Standard Type
-(14212, 4415, 3), -- One-handed Sword
-(14212, 4416, 7), -- Spirits
-(14212, 5038, 10), -- Servitor PvP Penalty
+(14212, 4408, 3), -- HP Modifiers
+(14212, 4409, 1), -- MP Modifiers
+(14212, 4410, 14), -- P. Atk. Modifiers
+(14212, 4411, 11), -- M. Atk. Modifiers
+(14212, 4412, 12), -- P. Def. Modifiers
+(14212, 4413, 12), -- M. Def. Modifiers
+(14212, 4414, 2), -- Armor Type
+(14212, 4415, 3), -- Weapon Type
+(14212, 4416, 7), -- Races
+(14212, 5038, 10), -- Summon PVP Penalty
 -- Kai the Cat
 (14213, 4121, 9), -- Summoned Monster Magic Protection
-(14213, 4408, 3), -- HP Medium-High
-(14213, 4409, 1), -- MP Increase (1x)
-(14213, 4410, 14), -- Strong P. Atk.
-(14213, 4411, 11), -- Average M. Atk.
-(14213, 4412, 12), -- Slightly Strong P. Def.
-(14213, 4413, 12), -- Slightly Strong M. Def.
-(14213, 4414, 2), -- Standard Type
-(14213, 4415, 3), -- One-handed Sword
-(14213, 4416, 7), -- Spirits
-(14213, 5038, 10), -- Servitor PvP Penalty
+(14213, 4408, 3), -- HP Modifiers
+(14213, 4409, 1), -- MP Modifiers
+(14213, 4410, 14), -- P. Atk. Modifiers
+(14213, 4411, 11), -- M. Atk. Modifiers
+(14213, 4412, 12), -- P. Def. Modifiers
+(14213, 4413, 12), -- M. Def. Modifiers
+(14213, 4414, 2), -- Armor Type
+(14213, 4415, 3), -- Weapon Type
+(14213, 4416, 7), -- Races
+(14213, 5038, 10), -- Summon PVP Penalty
 -- Kai the Cat
 (14214, 4121, 9), -- Summoned Monster Magic Protection
-(14214, 4408, 3), -- HP Medium-High
-(14214, 4409, 1), -- MP Increase (1x)
-(14214, 4410, 14), -- Strong P. Atk.
-(14214, 4411, 11), -- Average M. Atk.
-(14214, 4412, 12), -- Slightly Strong P. Def.
-(14214, 4413, 12), -- Slightly Strong M. Def.
-(14214, 4414, 2), -- Standard Type
-(14214, 4415, 3), -- One-handed Sword
-(14214, 4416, 7), -- Spirits
-(14214, 5038, 10), -- Servitor PvP Penalty
+(14214, 4408, 3), -- HP Modifiers
+(14214, 4409, 1), -- MP Modifiers
+(14214, 4410, 14), -- P. Atk. Modifiers
+(14214, 4411, 11), -- M. Atk. Modifiers
+(14214, 4412, 12), -- P. Def. Modifiers
+(14214, 4413, 12), -- M. Def. Modifiers
+(14214, 4414, 2), -- Armor Type
+(14214, 4415, 3), -- Weapon Type
+(14214, 4416, 7), -- Races
+(14214, 5038, 10), -- Summon PVP Penalty
 -- Kai the Cat
 (14215, 4121, 9), -- Summoned Monster Magic Protection
-(14215, 4408, 3), -- HP Medium-High
-(14215, 4409, 1), -- MP Increase (1x)
-(14215, 4410, 14), -- Strong P. Atk.
-(14215, 4411, 11), -- Average M. Atk.
-(14215, 4412, 12), -- Slightly Strong P. Def.
-(14215, 4413, 12), -- Slightly Strong M. Def.
-(14215, 4414, 2), -- Standard Type
-(14215, 4415, 3), -- One-handed Sword
-(14215, 4416, 7), -- Spirits
-(14215, 5038, 10), -- Servitor PvP Penalty
+(14215, 4408, 3), -- HP Modifiers
+(14215, 4409, 1), -- MP Modifiers
+(14215, 4410, 14), -- P. Atk. Modifiers
+(14215, 4411, 11), -- M. Atk. Modifiers
+(14215, 4412, 12), -- P. Def. Modifiers
+(14215, 4413, 12), -- M. Def. Modifiers
+(14215, 4414, 2), -- Armor Type
+(14215, 4415, 3), -- Weapon Type
+(14215, 4416, 7), -- Races
+(14215, 5038, 10), -- Summon PVP Penalty
 -- Kai the Cat
 (14216, 4121, 9), -- Summoned Monster Magic Protection
-(14216, 4408, 3), -- HP Medium-High
-(14216, 4409, 1), -- MP Increase (1x)
-(14216, 4410, 14), -- Strong P. Atk.
-(14216, 4411, 11), -- Average M. Atk.
-(14216, 4412, 12), -- Slightly Strong P. Def.
-(14216, 4413, 12), -- Slightly Strong M. Def.
-(14216, 4414, 2), -- Standard Type
-(14216, 4415, 3), -- One-handed Sword
-(14216, 4416, 7), -- Spirits
-(14216, 5038, 10), -- Servitor PvP Penalty
+(14216, 4408, 3), -- HP Modifiers
+(14216, 4409, 1), -- MP Modifiers
+(14216, 4410, 14), -- P. Atk. Modifiers
+(14216, 4411, 11), -- M. Atk. Modifiers
+(14216, 4412, 12), -- P. Def. Modifiers
+(14216, 4413, 12), -- M. Def. Modifiers
+(14216, 4414, 2), -- Armor Type
+(14216, 4415, 3), -- Weapon Type
+(14216, 4416, 7), -- Races
+(14216, 5038, 10), -- Summon PVP Penalty
 -- Kai the Cat
 (14217, 4121, 9), -- Summoned Monster Magic Protection
-(14217, 4408, 3), -- HP Medium-High
-(14217, 4409, 1), -- MP Increase (1x)
-(14217, 4410, 14), -- Strong P. Atk.
-(14217, 4411, 11), -- Average M. Atk.
-(14217, 4412, 12), -- Slightly Strong P. Def.
-(14217, 4413, 12), -- Slightly Strong M. Def.
-(14217, 4414, 2), -- Standard Type
-(14217, 4415, 3), -- One-handed Sword
-(14217, 4416, 7), -- Spirits
-(14217, 5038, 10), -- Servitor PvP Penalty
+(14217, 4408, 3), -- HP Modifiers
+(14217, 4409, 1), -- MP Modifiers
+(14217, 4410, 14), -- P. Atk. Modifiers
+(14217, 4411, 11), -- M. Atk. Modifiers
+(14217, 4412, 12), -- P. Def. Modifiers
+(14217, 4413, 12), -- M. Def. Modifiers
+(14217, 4414, 2), -- Armor Type
+(14217, 4415, 3), -- Weapon Type
+(14217, 4416, 7), -- Races
+(14217, 5038, 10), -- Summon PVP Penalty
 -- Kai the Cat
 (14218, 4121, 9), -- Summoned Monster Magic Protection
-(14218, 4408, 3), -- HP Medium-High
-(14218, 4409, 1), -- MP Increase (1x)
-(14218, 4410, 14), -- Strong P. Atk.
-(14218, 4411, 11), -- Average M. Atk.
-(14218, 4412, 12), -- Slightly Strong P. Def.
-(14218, 4413, 12), -- Slightly Strong M. Def.
-(14218, 4414, 2), -- Standard Type
-(14218, 4415, 3), -- One-handed Sword
-(14218, 4416, 7), -- Spirits
-(14218, 5038, 10), -- Servitor PvP Penalty
+(14218, 4408, 3), -- HP Modifiers
+(14218, 4409, 1), -- MP Modifiers
+(14218, 4410, 14), -- P. Atk. Modifiers
+(14218, 4411, 11), -- M. Atk. Modifiers
+(14218, 4412, 12), -- P. Def. Modifiers
+(14218, 4413, 12), -- M. Def. Modifiers
+(14218, 4414, 2), -- Armor Type
+(14218, 4415, 3), -- Weapon Type
+(14218, 4416, 7), -- Races
+(14218, 5038, 10), -- Summon PVP Penalty
 -- Kai the Cat
 (14219, 4121, 9), -- Summoned Monster Magic Protection
-(14219, 4408, 3), -- HP Medium-High
-(14219, 4409, 1), -- MP Increase (1x)
-(14219, 4410, 14), -- Strong P. Atk.
-(14219, 4411, 11), -- Average M. Atk.
-(14219, 4412, 12), -- Slightly Strong P. Def.
-(14219, 4413, 12), -- Slightly Strong M. Def.
-(14219, 4414, 2), -- Standard Type
-(14219, 4415, 3), -- One-handed Sword
-(14219, 4416, 7), -- Spirits
-(14219, 5038, 10), -- Servitor PvP Penalty
+(14219, 4408, 3), -- HP Modifiers
+(14219, 4409, 1), -- MP Modifiers
+(14219, 4410, 14), -- P. Atk. Modifiers
+(14219, 4411, 11), -- M. Atk. Modifiers
+(14219, 4412, 12), -- P. Def. Modifiers
+(14219, 4413, 12), -- M. Def. Modifiers
+(14219, 4414, 2), -- Armor Type
+(14219, 4415, 3), -- Weapon Type
+(14219, 4416, 7), -- Races
+(14219, 5038, 10), -- Summon PVP Penalty
 -- Kai the Cat
 (14220, 4121, 9), -- Summoned Monster Magic Protection
-(14220, 4408, 3), -- HP Medium-High
-(14220, 4409, 1), -- MP Increase (1x)
-(14220, 4410, 14), -- Strong P. Atk.
-(14220, 4411, 11), -- Average M. Atk.
-(14220, 4412, 12), -- Slightly Strong P. Def.
-(14220, 4413, 12), -- Slightly Strong M. Def.
-(14220, 4414, 2), -- Standard Type
-(14220, 4415, 3), -- One-handed Sword
-(14220, 4416, 7), -- Spirits
-(14220, 5038, 10), -- Servitor PvP Penalty
+(14220, 4408, 3), -- HP Modifiers
+(14220, 4409, 1), -- MP Modifiers
+(14220, 4410, 14), -- P. Atk. Modifiers
+(14220, 4411, 11), -- M. Atk. Modifiers
+(14220, 4412, 12), -- P. Def. Modifiers
+(14220, 4413, 12), -- M. Def. Modifiers
+(14220, 4414, 2), -- Armor Type
+(14220, 4415, 3), -- Weapon Type
+(14220, 4416, 7), -- Races
+(14220, 5038, 10), -- Summon PVP Penalty
 -- Kai the Cat
 (14221, 4121, 9), -- Summoned Monster Magic Protection
-(14221, 4408, 3), -- HP Medium-High
-(14221, 4409, 1), -- MP Increase (1x)
-(14221, 4410, 14), -- Strong P. Atk.
-(14221, 4411, 11), -- Average M. Atk.
-(14221, 4412, 12), -- Slightly Strong P. Def.
-(14221, 4413, 12), -- Slightly Strong M. Def.
-(14221, 4414, 2), -- Standard Type
-(14221, 4415, 3), -- One-handed Sword
-(14221, 4416, 7), -- Spirits
-(14221, 5038, 10), -- Servitor PvP Penalty
+(14221, 4408, 3), -- HP Modifiers
+(14221, 4409, 1), -- MP Modifiers
+(14221, 4410, 14), -- P. Atk. Modifiers
+(14221, 4411, 11), -- M. Atk. Modifiers
+(14221, 4412, 12), -- P. Def. Modifiers
+(14221, 4413, 12), -- M. Def. Modifiers
+(14221, 4414, 2), -- Armor Type
+(14221, 4415, 3), -- Weapon Type
+(14221, 4416, 7), -- Races
+(14221, 5038, 10), -- Summon PVP Penalty
 -- Kai the Cat
 (14222, 4121, 9), -- Summoned Monster Magic Protection
-(14222, 4408, 3), -- HP Medium-High
-(14222, 4409, 1), -- MP Increase (1x)
-(14222, 4410, 14), -- Strong P. Atk.
-(14222, 4411, 11), -- Average M. Atk.
-(14222, 4412, 12), -- Slightly Strong P. Def.
-(14222, 4413, 12), -- Slightly Strong M. Def.
-(14222, 4414, 2), -- Standard Type
-(14222, 4415, 3), -- One-handed Sword
-(14222, 4416, 7), -- Spirits
-(14222, 5038, 10), -- Servitor PvP Penalty
+(14222, 4408, 3), -- HP Modifiers
+(14222, 4409, 1), -- MP Modifiers
+(14222, 4410, 14), -- P. Atk. Modifiers
+(14222, 4411, 11), -- M. Atk. Modifiers
+(14222, 4412, 12), -- P. Def. Modifiers
+(14222, 4413, 12), -- M. Def. Modifiers
+(14222, 4414, 2), -- Armor Type
+(14222, 4415, 3), -- Weapon Type
+(14222, 4416, 7), -- Races
+(14222, 5038, 10), -- Summon PVP Penalty
 -- Kai the Cat
 (14223, 4121, 9), -- Summoned Monster Magic Protection
-(14223, 4408, 3), -- HP Medium-High
-(14223, 4409, 1), -- MP Increase (1x)
-(14223, 4410, 14), -- Strong P. Atk.
-(14223, 4411, 11), -- Average M. Atk.
-(14223, 4412, 12), -- Slightly Strong P. Def.
-(14223, 4413, 12), -- Slightly Strong M. Def.
-(14223, 4414, 2), -- Standard Type
-(14223, 4415, 3), -- One-handed Sword
-(14223, 4416, 7), -- Spirits
-(14223, 5038, 10), -- Servitor PvP Penalty
+(14223, 4408, 3), -- HP Modifiers
+(14223, 4409, 1), -- MP Modifiers
+(14223, 4410, 14), -- P. Atk. Modifiers
+(14223, 4411, 11), -- M. Atk. Modifiers
+(14223, 4412, 12), -- P. Def. Modifiers
+(14223, 4413, 12), -- M. Def. Modifiers
+(14223, 4414, 2), -- Armor Type
+(14223, 4415, 3), -- Weapon Type
+(14223, 4416, 7), -- Races
+(14223, 5038, 10), -- Summon PVP Penalty
 -- Kai the Cat
 (14224, 4121, 9), -- Summoned Monster Magic Protection
-(14224, 4408, 3), -- HP Medium-High
-(14224, 4409, 1), -- MP Increase (1x)
-(14224, 4410, 14), -- Strong P. Atk.
-(14224, 4411, 11), -- Average M. Atk.
-(14224, 4412, 12), -- Slightly Strong P. Def.
-(14224, 4413, 12), -- Slightly Strong M. Def.
-(14224, 4414, 2), -- Standard Type
-(14224, 4415, 3), -- One-handed Sword
-(14224, 4416, 7), -- Spirits
-(14224, 5038, 10), -- Servitor PvP Penalty
+(14224, 4408, 3), -- HP Modifiers
+(14224, 4409, 1), -- MP Modifiers
+(14224, 4410, 14), -- P. Atk. Modifiers
+(14224, 4411, 11), -- M. Atk. Modifiers
+(14224, 4412, 12), -- P. Def. Modifiers
+(14224, 4413, 12), -- M. Def. Modifiers
+(14224, 4414, 2), -- Armor Type
+(14224, 4415, 3), -- Weapon Type
+(14224, 4416, 7), -- Races
+(14224, 5038, 10), -- Summon PVP Penalty
 -- Kai the Cat
 (14225, 4121, 9), -- Summoned Monster Magic Protection
-(14225, 4408, 3), -- HP Medium-High
-(14225, 4409, 1), -- MP Increase (1x)
-(14225, 4410, 14), -- Strong P. Atk.
-(14225, 4411, 11), -- Average M. Atk.
-(14225, 4412, 12), -- Slightly Strong P. Def.
-(14225, 4413, 12), -- Slightly Strong M. Def.
-(14225, 4414, 2), -- Standard Type
-(14225, 4415, 3), -- One-handed Sword
-(14225, 4416, 7), -- Spirits
-(14225, 5038, 10), -- Servitor PvP Penalty
+(14225, 4408, 3), -- HP Modifiers
+(14225, 4409, 1), -- MP Modifiers
+(14225, 4410, 14), -- P. Atk. Modifiers
+(14225, 4411, 11), -- M. Atk. Modifiers
+(14225, 4412, 12), -- P. Def. Modifiers
+(14225, 4413, 12), -- M. Def. Modifiers
+(14225, 4414, 2), -- Armor Type
+(14225, 4415, 3), -- Weapon Type
+(14225, 4416, 7), -- Races
+(14225, 5038, 10), -- Summon PVP Penalty
 -- Kai the Cat
 (14226, 4121, 9), -- Summoned Monster Magic Protection
-(14226, 4408, 3), -- HP Medium-High
-(14226, 4409, 1), -- MP Increase (1x)
-(14226, 4410, 14), -- Strong P. Atk.
-(14226, 4411, 11), -- Average M. Atk.
-(14226, 4412, 12), -- Slightly Strong P. Def.
-(14226, 4413, 12), -- Slightly Strong M. Def.
-(14226, 4414, 2), -- Standard Type
-(14226, 4415, 3), -- One-handed Sword
-(14226, 4416, 7), -- Spirits
-(14226, 5038, 10), -- Servitor PvP Penalty
+(14226, 4408, 3), -- HP Modifiers
+(14226, 4409, 1), -- MP Modifiers
+(14226, 4410, 14), -- P. Atk. Modifiers
+(14226, 4411, 11), -- M. Atk. Modifiers
+(14226, 4412, 12), -- P. Def. Modifiers
+(14226, 4413, 12), -- M. Def. Modifiers
+(14226, 4414, 2), -- Armor Type
+(14226, 4415, 3), -- Weapon Type
+(14226, 4416, 7), -- Races
+(14226, 5038, 10), -- Summon PVP Penalty
 -- Kai the Cat
 (14227, 4121, 9), -- Summoned Monster Magic Protection
-(14227, 4408, 3), -- HP Medium-High
-(14227, 4409, 1), -- MP Increase (1x)
-(14227, 4410, 14), -- Strong P. Atk.
-(14227, 4411, 11), -- Average M. Atk.
-(14227, 4412, 12), -- Slightly Strong P. Def.
-(14227, 4413, 12), -- Slightly Strong M. Def.
-(14227, 4414, 2), -- Standard Type
-(14227, 4415, 3), -- One-handed Sword
-(14227, 4416, 7), -- Spirits
-(14227, 5038, 10), -- Servitor PvP Penalty
+(14227, 4408, 3), -- HP Modifiers
+(14227, 4409, 1), -- MP Modifiers
+(14227, 4410, 14), -- P. Atk. Modifiers
+(14227, 4411, 11), -- M. Atk. Modifiers
+(14227, 4412, 12), -- P. Def. Modifiers
+(14227, 4413, 12), -- M. Def. Modifiers
+(14227, 4414, 2), -- Armor Type
+(14227, 4415, 3), -- Weapon Type
+(14227, 4416, 7), -- Races
+(14227, 5038, 10), -- Summon PVP Penalty
 -- Kai the Cat
 (14228, 4121, 9), -- Summoned Monster Magic Protection
-(14228, 4408, 3), -- HP Medium-High
-(14228, 4409, 1), -- MP Increase (1x)
-(14228, 4410, 14), -- Strong P. Atk.
-(14228, 4411, 11), -- Average M. Atk.
-(14228, 4412, 12), -- Slightly Strong P. Def.
-(14228, 4413, 12), -- Slightly Strong M. Def.
-(14228, 4414, 2), -- Standard Type
-(14228, 4415, 3), -- One-handed Sword
-(14228, 4416, 7), -- Spirits
-(14228, 5038, 10), -- Servitor PvP Penalty
+(14228, 4408, 3), -- HP Modifiers
+(14228, 4409, 1), -- MP Modifiers
+(14228, 4410, 14), -- P. Atk. Modifiers
+(14228, 4411, 11), -- M. Atk. Modifiers
+(14228, 4412, 12), -- P. Def. Modifiers
+(14228, 4413, 12), -- M. Def. Modifiers
+(14228, 4414, 2), -- Armor Type
+(14228, 4415, 3), -- Weapon Type
+(14228, 4416, 7), -- Races
+(14228, 5038, 10), -- Summon PVP Penalty
 -- Kai the Cat
 (14229, 4121, 9), -- Summoned Monster Magic Protection
-(14229, 4408, 3), -- HP Medium-High
-(14229, 4409, 1), -- MP Increase (1x)
-(14229, 4410, 14), -- Strong P. Atk.
-(14229, 4411, 11), -- Average M. Atk.
-(14229, 4412, 12), -- Slightly Strong P. Def.
-(14229, 4413, 12), -- Slightly Strong M. Def.
-(14229, 4414, 2), -- Standard Type
-(14229, 4415, 3), -- One-handed Sword
-(14229, 4416, 7), -- Spirits
-(14229, 5038, 10), -- Servitor PvP Penalty
+(14229, 4408, 3), -- HP Modifiers
+(14229, 4409, 1), -- MP Modifiers
+(14229, 4410, 14), -- P. Atk. Modifiers
+(14229, 4411, 11), -- M. Atk. Modifiers
+(14229, 4412, 12), -- P. Def. Modifiers
+(14229, 4413, 12), -- M. Def. Modifiers
+(14229, 4414, 2), -- Armor Type
+(14229, 4415, 3), -- Weapon Type
+(14229, 4416, 7), -- Races
+(14229, 5038, 10), -- Summon PVP Penalty
 -- Kai the Cat
 (14230, 4121, 9), -- Summoned Monster Magic Protection
-(14230, 4408, 3), -- HP Medium-High
-(14230, 4409, 1), -- MP Increase (1x)
-(14230, 4410, 14), -- Strong P. Atk.
-(14230, 4411, 11), -- Average M. Atk.
-(14230, 4412, 12), -- Slightly Strong P. Def.
-(14230, 4413, 12), -- Slightly Strong M. Def.
-(14230, 4414, 2), -- Standard Type
-(14230, 4415, 3), -- One-handed Sword
-(14230, 4416, 7), -- Spirits
-(14230, 5038, 10), -- Servitor PvP Penalty
+(14230, 4408, 3), -- HP Modifiers
+(14230, 4409, 1), -- MP Modifiers
+(14230, 4410, 14), -- P. Atk. Modifiers
+(14230, 4411, 11), -- M. Atk. Modifiers
+(14230, 4412, 12), -- P. Def. Modifiers
+(14230, 4413, 12), -- M. Def. Modifiers
+(14230, 4414, 2), -- Armor Type
+(14230, 4415, 3), -- Weapon Type
+(14230, 4416, 7), -- Races
+(14230, 5038, 10), -- Summon PVP Penalty
 -- Kai the Cat
 (14231, 4121, 9), -- Summoned Monster Magic Protection
-(14231, 4408, 3), -- HP Medium-High
-(14231, 4409, 1), -- MP Increase (1x)
-(14231, 4410, 14), -- Strong P. Atk.
-(14231, 4411, 11), -- Average M. Atk.
-(14231, 4412, 12), -- Slightly Strong P. Def.
-(14231, 4413, 12), -- Slightly Strong M. Def.
-(14231, 4414, 2), -- Standard Type
-(14231, 4415, 3), -- One-handed Sword
-(14231, 4416, 7), -- Spirits
-(14231, 5038, 10), -- Servitor PvP Penalty
+(14231, 4408, 3), -- HP Modifiers
+(14231, 4409, 1), -- MP Modifiers
+(14231, 4410, 14), -- P. Atk. Modifiers
+(14231, 4411, 11), -- M. Atk. Modifiers
+(14231, 4412, 12), -- P. Def. Modifiers
+(14231, 4413, 12), -- M. Def. Modifiers
+(14231, 4414, 2), -- Armor Type
+(14231, 4415, 3), -- Weapon Type
+(14231, 4416, 7), -- Races
+(14231, 5038, 10), -- Summon PVP Penalty
 -- Kai the Cat
 (14232, 4121, 9), -- Summoned Monster Magic Protection
-(14232, 4408, 3), -- HP Medium-High
-(14232, 4409, 1), -- MP Increase (1x)
-(14232, 4410, 14), -- Strong P. Atk.
-(14232, 4411, 11), -- Average M. Atk.
-(14232, 4412, 12), -- Slightly Strong P. Def.
-(14232, 4413, 12), -- Slightly Strong M. Def.
-(14232, 4414, 2), -- Standard Type
-(14232, 4415, 3), -- One-handed Sword
-(14232, 4416, 7), -- Spirits
-(14232, 5038, 10), -- Servitor PvP Penalty
+(14232, 4408, 3), -- HP Modifiers
+(14232, 4409, 1), -- MP Modifiers
+(14232, 4410, 14), -- P. Atk. Modifiers
+(14232, 4411, 11), -- M. Atk. Modifiers
+(14232, 4412, 12), -- P. Def. Modifiers
+(14232, 4413, 12), -- M. Def. Modifiers
+(14232, 4414, 2), -- Armor Type
+(14232, 4415, 3), -- Weapon Type
+(14232, 4416, 7), -- Races
+(14232, 5038, 10), -- Summon PVP Penalty
 -- Kai the Cat
 (14233, 4121, 9), -- Summoned Monster Magic Protection
-(14233, 4408, 3), -- HP Medium-High
-(14233, 4409, 1), -- MP Increase (1x)
-(14233, 4410, 14), -- Strong P. Atk.
-(14233, 4411, 11), -- Average M. Atk.
-(14233, 4412, 12), -- Slightly Strong P. Def.
-(14233, 4413, 12), -- Slightly Strong M. Def.
-(14233, 4414, 2), -- Standard Type
-(14233, 4415, 3), -- One-handed Sword
-(14233, 4416, 7), -- Spirits
-(14233, 5038, 10), -- Servitor PvP Penalty
+(14233, 4408, 3), -- HP Modifiers
+(14233, 4409, 1), -- MP Modifiers
+(14233, 4410, 14), -- P. Atk. Modifiers
+(14233, 4411, 11), -- M. Atk. Modifiers
+(14233, 4412, 12), -- P. Def. Modifiers
+(14233, 4413, 12), -- M. Def. Modifiers
+(14233, 4414, 2), -- Armor Type
+(14233, 4415, 3), -- Weapon Type
+(14233, 4416, 7), -- Races
+(14233, 5038, 10), -- Summon PVP Penalty
 -- Kai the Cat
 (14234, 4121, 9), -- Summoned Monster Magic Protection
-(14234, 4408, 3), -- HP Medium-High
-(14234, 4409, 1), -- MP Increase (1x)
-(14234, 4410, 14), -- Strong P. Atk.
-(14234, 4411, 11), -- Average M. Atk.
-(14234, 4412, 12), -- Slightly Strong P. Def.
-(14234, 4413, 12), -- Slightly Strong M. Def.
-(14234, 4414, 2), -- Standard Type
-(14234, 4415, 3), -- One-handed Sword
-(14234, 4416, 7), -- Spirits
-(14234, 5038, 10), -- Servitor PvP Penalty
+(14234, 4408, 3), -- HP Modifiers
+(14234, 4409, 1), -- MP Modifiers
+(14234, 4410, 14), -- P. Atk. Modifiers
+(14234, 4411, 11), -- M. Atk. Modifiers
+(14234, 4412, 12), -- P. Def. Modifiers
+(14234, 4413, 12), -- M. Def. Modifiers
+(14234, 4414, 2), -- Armor Type
+(14234, 4415, 3), -- Weapon Type
+(14234, 4416, 7), -- Races
+(14234, 5038, 10), -- Summon PVP Penalty
 -- Kai the Cat
 (14235, 4121, 9), -- Summoned Monster Magic Protection
-(14235, 4408, 3), -- HP Medium-High
-(14235, 4409, 1), -- MP Increase (1x)
-(14235, 4410, 14), -- Strong P. Atk.
-(14235, 4411, 11), -- Average M. Atk.
-(14235, 4412, 12), -- Slightly Strong P. Def.
-(14235, 4413, 12), -- Slightly Strong M. Def.
-(14235, 4414, 2), -- Standard Type
-(14235, 4415, 3), -- One-handed Sword
-(14235, 4416, 7), -- Spirits
-(14235, 5038, 10), -- Servitor PvP Penalty
+(14235, 4408, 3), -- HP Modifiers
+(14235, 4409, 1), -- MP Modifiers
+(14235, 4410, 14), -- P. Atk. Modifiers
+(14235, 4411, 11), -- M. Atk. Modifiers
+(14235, 4412, 12), -- P. Def. Modifiers
+(14235, 4413, 12), -- M. Def. Modifiers
+(14235, 4414, 2), -- Armor Type
+(14235, 4415, 3), -- Weapon Type
+(14235, 4416, 7), -- Races
+(14235, 5038, 10), -- Summon PVP Penalty
 -- Kai the Cat
 (14236, 4121, 9), -- Summoned Monster Magic Protection
-(14236, 4408, 3), -- HP Medium-High
-(14236, 4409, 1), -- MP Increase (1x)
-(14236, 4410, 14), -- Strong P. Atk.
-(14236, 4411, 11), -- Average M. Atk.
-(14236, 4412, 12), -- Slightly Strong P. Def.
-(14236, 4413, 12), -- Slightly Strong M. Def.
-(14236, 4414, 2), -- Standard Type
-(14236, 4415, 3), -- One-handed Sword
-(14236, 4416, 7), -- Spirits
-(14236, 5038, 10), -- Servitor PvP Penalty
+(14236, 4408, 3), -- HP Modifiers
+(14236, 4409, 1), -- MP Modifiers
+(14236, 4410, 14), -- P. Atk. Modifiers
+(14236, 4411, 11), -- M. Atk. Modifiers
+(14236, 4412, 12), -- P. Def. Modifiers
+(14236, 4413, 12), -- M. Def. Modifiers
+(14236, 4414, 2), -- Armor Type
+(14236, 4415, 3), -- Weapon Type
+(14236, 4416, 7), -- Races
+(14236, 5038, 10), -- Summon PVP Penalty
 -- Kai the Cat
 (14237, 4121, 9), -- Summoned Monster Magic Protection
-(14237, 4408, 3), -- HP Medium-High
-(14237, 4409, 1), -- MP Increase (1x)
-(14237, 4410, 14), -- Strong P. Atk.
-(14237, 4411, 11), -- Average M. Atk.
-(14237, 4412, 12), -- Slightly Strong P. Def.
-(14237, 4413, 12), -- Slightly Strong M. Def.
-(14237, 4414, 2), -- Standard Type
-(14237, 4415, 3), -- One-handed Sword
-(14237, 4416, 7), -- Spirits
-(14237, 5038, 10), -- Servitor PvP Penalty
+(14237, 4408, 3), -- HP Modifiers
+(14237, 4409, 1), -- MP Modifiers
+(14237, 4410, 14), -- P. Atk. Modifiers
+(14237, 4411, 11), -- M. Atk. Modifiers
+(14237, 4412, 12), -- P. Def. Modifiers
+(14237, 4413, 12), -- M. Def. Modifiers
+(14237, 4414, 2), -- Armor Type
+(14237, 4415, 3), -- Weapon Type
+(14237, 4416, 7), -- Races
+(14237, 5038, 10), -- Summon PVP Penalty
 -- Kai the Cat
 (14238, 4121, 9), -- Summoned Monster Magic Protection
-(14238, 4408, 3), -- HP Medium-High
-(14238, 4409, 1), -- MP Increase (1x)
-(14238, 4410, 14), -- Strong P. Atk.
-(14238, 4411, 11), -- Average M. Atk.
-(14238, 4412, 12), -- Slightly Strong P. Def.
-(14238, 4413, 12), -- Slightly Strong M. Def.
-(14238, 4414, 2), -- Standard Type
-(14238, 4415, 3), -- One-handed Sword
-(14238, 4416, 7), -- Spirits
-(14238, 5038, 10), -- Servitor PvP Penalty
+(14238, 4408, 3), -- HP Modifiers
+(14238, 4409, 1), -- MP Modifiers
+(14238, 4410, 14), -- P. Atk. Modifiers
+(14238, 4411, 11), -- M. Atk. Modifiers
+(14238, 4412, 12), -- P. Def. Modifiers
+(14238, 4413, 12), -- M. Def. Modifiers
+(14238, 4414, 2), -- Armor Type
+(14238, 4415, 3), -- Weapon Type
+(14238, 4416, 7), -- Races
+(14238, 5038, 10), -- Summon PVP Penalty
 -- Kai the Cat
 (14239, 4121, 9), -- Summoned Monster Magic Protection
-(14239, 4408, 3), -- HP Medium-High
-(14239, 4409, 1), -- MP Increase (1x)
-(14239, 4410, 14), -- Strong P. Atk.
-(14239, 4411, 11), -- Average M. Atk.
-(14239, 4412, 12), -- Slightly Strong P. Def.
-(14239, 4413, 12), -- Slightly Strong M. Def.
-(14239, 4414, 2), -- Standard Type
-(14239, 4415, 3), -- One-handed Sword
-(14239, 4416, 7), -- Spirits
-(14239, 5038, 10), -- Servitor PvP Penalty
+(14239, 4408, 3), -- HP Modifiers
+(14239, 4409, 1), -- MP Modifiers
+(14239, 4410, 14), -- P. Atk. Modifiers
+(14239, 4411, 11), -- M. Atk. Modifiers
+(14239, 4412, 12), -- P. Def. Modifiers
+(14239, 4413, 12), -- M. Def. Modifiers
+(14239, 4414, 2), -- Armor Type
+(14239, 4415, 3), -- Weapon Type
+(14239, 4416, 7), -- Races
+(14239, 5038, 10), -- Summon PVP Penalty
 -- Kai the Cat
 (14240, 4121, 9), -- Summoned Monster Magic Protection
-(14240, 4408, 3), -- HP Medium-High
-(14240, 4409, 1), -- MP Increase (1x)
-(14240, 4410, 14), -- Strong P. Atk.
-(14240, 4411, 11), -- Average M. Atk.
-(14240, 4412, 12), -- Slightly Strong P. Def.
-(14240, 4413, 12), -- Slightly Strong M. Def.
-(14240, 4414, 2), -- Standard Type
-(14240, 4415, 3), -- One-handed Sword
-(14240, 4416, 7), -- Spirits
-(14240, 5038, 10), -- Servitor PvP Penalty
+(14240, 4408, 3), -- HP Modifiers
+(14240, 4409, 1), -- MP Modifiers
+(14240, 4410, 14), -- P. Atk. Modifiers
+(14240, 4411, 11), -- M. Atk. Modifiers
+(14240, 4412, 12), -- P. Def. Modifiers
+(14240, 4413, 12), -- M. Def. Modifiers
+(14240, 4414, 2), -- Armor Type
+(14240, 4415, 3), -- Weapon Type
+(14240, 4416, 7), -- Races
+(14240, 5038, 10), -- Summon PVP Penalty
 -- Kai the Cat
 (14241, 4121, 9), -- Summoned Monster Magic Protection
-(14241, 4408, 3), -- HP Medium-High
-(14241, 4409, 1), -- MP Increase (1x)
-(14241, 4410, 14), -- Strong P. Atk.
-(14241, 4411, 11), -- Average M. Atk.
-(14241, 4412, 12), -- Slightly Strong P. Def.
-(14241, 4413, 12), -- Slightly Strong M. Def.
-(14241, 4414, 2), -- Standard Type
-(14241, 4415, 3), -- One-handed Sword
-(14241, 4416, 7), -- Spirits
-(14241, 5038, 10), -- Servitor PvP Penalty
+(14241, 4408, 3), -- HP Modifiers
+(14241, 4409, 1), -- MP Modifiers
+(14241, 4410, 14), -- P. Atk. Modifiers
+(14241, 4411, 11), -- M. Atk. Modifiers
+(14241, 4412, 12), -- P. Def. Modifiers
+(14241, 4413, 12), -- M. Def. Modifiers
+(14241, 4414, 2), -- Armor Type
+(14241, 4415, 3), -- Weapon Type
+(14241, 4416, 7), -- Races
+(14241, 5038, 10), -- Summon PVP Penalty
 -- Kai the Cat
 (14242, 4121, 9), -- Summoned Monster Magic Protection
-(14242, 4408, 3), -- HP Medium-High
-(14242, 4409, 1), -- MP Increase (1x)
-(14242, 4410, 14), -- Strong P. Atk.
-(14242, 4411, 11), -- Average M. Atk.
-(14242, 4412, 12), -- Slightly Strong P. Def.
-(14242, 4413, 12), -- Slightly Strong M. Def.
-(14242, 4414, 2), -- Standard Type
-(14242, 4415, 3), -- One-handed Sword
-(14242, 4416, 7), -- Spirits
-(14242, 5038, 10), -- Servitor PvP Penalty
+(14242, 4408, 3), -- HP Modifiers
+(14242, 4409, 1), -- MP Modifiers
+(14242, 4410, 14), -- P. Atk. Modifiers
+(14242, 4411, 11), -- M. Atk. Modifiers
+(14242, 4412, 12), -- P. Def. Modifiers
+(14242, 4413, 12), -- M. Def. Modifiers
+(14242, 4414, 2), -- Armor Type
+(14242, 4415, 3), -- Weapon Type
+(14242, 4416, 7), -- Races
+(14242, 5038, 10), -- Summon PVP Penalty
 -- Kai the Cat
 (14243, 4121, 9), -- Summoned Monster Magic Protection
-(14243, 4408, 3), -- HP Medium-High
-(14243, 4409, 1), -- MP Increase (1x)
-(14243, 4410, 14), -- Strong P. Atk.
-(14243, 4411, 11), -- Average M. Atk.
-(14243, 4412, 12), -- Slightly Strong P. Def.
-(14243, 4413, 12), -- Slightly Strong M. Def.
-(14243, 4414, 2), -- Standard Type
-(14243, 4415, 3), -- One-handed Sword
-(14243, 4416, 7), -- Spirits
-(14243, 5038, 10), -- Servitor PvP Penalty
+(14243, 4408, 3), -- HP Modifiers
+(14243, 4409, 1), -- MP Modifiers
+(14243, 4410, 14), -- P. Atk. Modifiers
+(14243, 4411, 11), -- M. Atk. Modifiers
+(14243, 4412, 12), -- P. Def. Modifiers
+(14243, 4413, 12), -- M. Def. Modifiers
+(14243, 4414, 2), -- Armor Type
+(14243, 4415, 3), -- Weapon Type
+(14243, 4416, 7), -- Races
+(14243, 5038, 10), -- Summon PVP Penalty
 -- Kai the Cat
 (14244, 4121, 9), -- Summoned Monster Magic Protection
-(14244, 4408, 3), -- HP Medium-High
-(14244, 4409, 1), -- MP Increase (1x)
-(14244, 4410, 14), -- Strong P. Atk.
-(14244, 4411, 11), -- Average M. Atk.
-(14244, 4412, 12), -- Slightly Strong P. Def.
-(14244, 4413, 12), -- Slightly Strong M. Def.
-(14244, 4414, 2), -- Standard Type
-(14244, 4415, 3), -- One-handed Sword
-(14244, 4416, 7), -- Spirits
-(14244, 5038, 10), -- Servitor PvP Penalty
+(14244, 4408, 3), -- HP Modifiers
+(14244, 4409, 1), -- MP Modifiers
+(14244, 4410, 14), -- P. Atk. Modifiers
+(14244, 4411, 11), -- M. Atk. Modifiers
+(14244, 4412, 12), -- P. Def. Modifiers
+(14244, 4413, 12), -- M. Def. Modifiers
+(14244, 4414, 2), -- Armor Type
+(14244, 4415, 3), -- Weapon Type
+(14244, 4416, 7), -- Races
+(14244, 5038, 10), -- Summon PVP Penalty
 -- Kai the Cat
 (14245, 4121, 9), -- Summoned Monster Magic Protection
-(14245, 4408, 3), -- HP Medium-High
-(14245, 4409, 1), -- MP Increase (1x)
-(14245, 4410, 14), -- Strong P. Atk.
-(14245, 4411, 11), -- Average M. Atk.
-(14245, 4412, 12), -- Slightly Strong P. Def.
-(14245, 4413, 12), -- Slightly Strong M. Def.
-(14245, 4414, 2), -- Standard Type
-(14245, 4415, 3), -- One-handed Sword
-(14245, 4416, 7), -- Spirits
-(14245, 5038, 10), -- Servitor PvP Penalty
+(14245, 4408, 3), -- HP Modifiers
+(14245, 4409, 1), -- MP Modifiers
+(14245, 4410, 14), -- P. Atk. Modifiers
+(14245, 4411, 11), -- M. Atk. Modifiers
+(14245, 4412, 12), -- P. Def. Modifiers
+(14245, 4413, 12), -- M. Def. Modifiers
+(14245, 4414, 2), -- Armor Type
+(14245, 4415, 3), -- Weapon Type
+(14245, 4416, 7), -- Races
+(14245, 5038, 10), -- Summon PVP Penalty
 -- Kai the Cat
 (14246, 4121, 9), -- Summoned Monster Magic Protection
-(14246, 4408, 3), -- HP Medium-High
-(14246, 4409, 1), -- MP Increase (1x)
-(14246, 4410, 14), -- Strong P. Atk.
-(14246, 4411, 11), -- Average M. Atk.
-(14246, 4412, 12), -- Slightly Strong P. Def.
-(14246, 4413, 12), -- Slightly Strong M. Def.
-(14246, 4414, 2), -- Standard Type
-(14246, 4415, 3), -- One-handed Sword
-(14246, 4416, 7), -- Spirits
-(14246, 5038, 10), -- Servitor PvP Penalty
+(14246, 4408, 3), -- HP Modifiers
+(14246, 4409, 1), -- MP Modifiers
+(14246, 4410, 14), -- P. Atk. Modifiers
+(14246, 4411, 11), -- M. Atk. Modifiers
+(14246, 4412, 12), -- P. Def. Modifiers
+(14246, 4413, 12), -- M. Def. Modifiers
+(14246, 4414, 2), -- Armor Type
+(14246, 4415, 3), -- Weapon Type
+(14246, 4416, 7), -- Races
+(14246, 5038, 10), -- Summon PVP Penalty
 -- Kai the Cat
 (14247, 4121, 9), -- Summoned Monster Magic Protection
-(14247, 4408, 3), -- HP Medium-High
-(14247, 4409, 1), -- MP Increase (1x)
-(14247, 4410, 14), -- Strong P. Atk.
-(14247, 4411, 11), -- Average M. Atk.
-(14247, 4412, 12), -- Slightly Strong P. Def.
-(14247, 4413, 12), -- Slightly Strong M. Def.
-(14247, 4414, 2), -- Standard Type
-(14247, 4415, 3), -- One-handed Sword
-(14247, 4416, 7), -- Spirits
-(14247, 5038, 10), -- Servitor PvP Penalty
+(14247, 4408, 3), -- HP Modifiers
+(14247, 4409, 1), -- MP Modifiers
+(14247, 4410, 14), -- P. Atk. Modifiers
+(14247, 4411, 11), -- M. Atk. Modifiers
+(14247, 4412, 12), -- P. Def. Modifiers
+(14247, 4413, 12), -- M. Def. Modifiers
+(14247, 4414, 2), -- Armor Type
+(14247, 4415, 3), -- Weapon Type
+(14247, 4416, 7), -- Races
+(14247, 5038, 10), -- Summon PVP Penalty
 -- Kai the Cat
 (14248, 4121, 9), -- Summoned Monster Magic Protection
-(14248, 4408, 3), -- HP Medium-High
-(14248, 4409, 1), -- MP Increase (1x)
-(14248, 4410, 14), -- Strong P. Atk.
-(14248, 4411, 11), -- Average M. Atk.
-(14248, 4412, 12), -- Slightly Strong P. Def.
-(14248, 4413, 12), -- Slightly Strong M. Def.
-(14248, 4414, 2), -- Standard Type
-(14248, 4415, 3), -- One-handed Sword
-(14248, 4416, 7), -- Spirits
-(14248, 5038, 10), -- Servitor PvP Penalty
+(14248, 4408, 3), -- HP Modifiers
+(14248, 4409, 1), -- MP Modifiers
+(14248, 4410, 14), -- P. Atk. Modifiers
+(14248, 4411, 11), -- M. Atk. Modifiers
+(14248, 4412, 12), -- P. Def. Modifiers
+(14248, 4413, 12), -- M. Def. Modifiers
+(14248, 4414, 2), -- Armor Type
+(14248, 4415, 3), -- Weapon Type
+(14248, 4416, 7), -- Races
+(14248, 5038, 10), -- Summon PVP Penalty
 -- Kai the Cat
 (14249, 4121, 9), -- Summoned Monster Magic Protection
-(14249, 4408, 3), -- HP Medium-High
-(14249, 4409, 1), -- MP Increase (1x)
-(14249, 4410, 14), -- Strong P. Atk.
-(14249, 4411, 11), -- Average M. Atk.
-(14249, 4412, 12), -- Slightly Strong P. Def.
-(14249, 4413, 12), -- Slightly Strong M. Def.
-(14249, 4414, 2), -- Standard Type
-(14249, 4415, 3), -- One-handed Sword
-(14249, 4416, 7), -- Spirits
-(14249, 5038, 10), -- Servitor PvP Penalty
+(14249, 4408, 3), -- HP Modifiers
+(14249, 4409, 1), -- MP Modifiers
+(14249, 4410, 14), -- P. Atk. Modifiers
+(14249, 4411, 11), -- M. Atk. Modifiers
+(14249, 4412, 12), -- P. Def. Modifiers
+(14249, 4413, 12), -- M. Def. Modifiers
+(14249, 4414, 2), -- Armor Type
+(14249, 4415, 3), -- Weapon Type
+(14249, 4416, 7), -- Races
+(14249, 5038, 10), -- Summon PVP Penalty
 -- Kai the Cat
 (14250, 4121, 9), -- Summoned Monster Magic Protection
-(14250, 4408, 3), -- HP Medium-High
-(14250, 4409, 1), -- MP Increase (1x)
-(14250, 4410, 14), -- Strong P. Atk.
-(14250, 4411, 11), -- Average M. Atk.
-(14250, 4412, 12), -- Slightly Strong P. Def.
-(14250, 4413, 12), -- Slightly Strong M. Def.
-(14250, 4414, 2), -- Standard Type
-(14250, 4415, 3), -- One-handed Sword
-(14250, 4416, 7), -- Spirits
-(14250, 5038, 10), -- Servitor PvP Penalty
+(14250, 4408, 3), -- HP Modifiers
+(14250, 4409, 1), -- MP Modifiers
+(14250, 4410, 14), -- P. Atk. Modifiers
+(14250, 4411, 11), -- M. Atk. Modifiers
+(14250, 4412, 12), -- P. Def. Modifiers
+(14250, 4413, 12), -- M. Def. Modifiers
+(14250, 4414, 2), -- Armor Type
+(14250, 4415, 3), -- Weapon Type
+(14250, 4416, 7), -- Races
+(14250, 5038, 10), -- Summon PVP Penalty
 -- Feline Queen
 (14251, 4121, 9), -- Summoned Monster Magic Protection
-(14251, 4408, 1), -- HP Increase (1x)
-(14251, 4409, 1), -- MP Increase (1x)
-(14251, 4410, 11), -- Average P. Atk.
-(14251, 4411, 11), -- Average M. Atk.
-(14251, 4412, 11), -- Average P. Def.
-(14251, 4413, 11), -- Average M. Def.
-(14251, 4414, 2), -- Standard Type
-(14251, 4415, 3), -- One-handed Sword
-(14251, 4416, 7), -- Spirits
+(14251, 4408, 1), -- HP Modifiers
+(14251, 4409, 1), -- MP Modifiers
+(14251, 4410, 11), -- P. Atk. Modifiers
+(14251, 4411, 11), -- M. Atk. Modifiers
+(14251, 4412, 11), -- P. Def. Modifiers
+(14251, 4413, 11), -- M. Def. Modifiers
+(14251, 4414, 2), -- Armor Type
+(14251, 4415, 3), -- Weapon Type
+(14251, 4416, 7), -- Races
 -- Feline Queen
 (14252, 4121, 9), -- Summoned Monster Magic Protection
-(14252, 4408, 1), -- HP Increase (1x)
-(14252, 4409, 1), -- MP Increase (1x)
-(14252, 4410, 11), -- Average P. Atk.
-(14252, 4411, 11), -- Average M. Atk.
-(14252, 4412, 11), -- Average P. Def.
-(14252, 4413, 11), -- Average M. Def.
-(14252, 4414, 2), -- Standard Type
-(14252, 4415, 3), -- One-handed Sword
-(14252, 4416, 7), -- Spirits
+(14252, 4408, 1), -- HP Modifiers
+(14252, 4409, 1), -- MP Modifiers
+(14252, 4410, 11), -- P. Atk. Modifiers
+(14252, 4411, 11), -- M. Atk. Modifiers
+(14252, 4412, 11), -- P. Def. Modifiers
+(14252, 4413, 11), -- M. Def. Modifiers
+(14252, 4414, 2), -- Armor Type
+(14252, 4415, 3), -- Weapon Type
+(14252, 4416, 7), -- Races
 -- Feline Queen
 (14253, 4121, 9), -- Summoned Monster Magic Protection
-(14253, 4408, 1), -- HP Increase (1x)
-(14253, 4409, 1), -- MP Increase (1x)
-(14253, 4410, 11), -- Average P. Atk.
-(14253, 4411, 11), -- Average M. Atk.
-(14253, 4412, 11), -- Average P. Def.
-(14253, 4413, 11), -- Average M. Def.
-(14253, 4414, 2), -- Standard Type
-(14253, 4415, 3), -- One-handed Sword
-(14253, 4416, 7), -- Spirits
+(14253, 4408, 1), -- HP Modifiers
+(14253, 4409, 1), -- MP Modifiers
+(14253, 4410, 11), -- P. Atk. Modifiers
+(14253, 4411, 11), -- M. Atk. Modifiers
+(14253, 4412, 11), -- P. Def. Modifiers
+(14253, 4413, 11), -- M. Def. Modifiers
+(14253, 4414, 2), -- Armor Type
+(14253, 4415, 3), -- Weapon Type
+(14253, 4416, 7), -- Races
 -- Feline Queen
 (14254, 4121, 9), -- Summoned Monster Magic Protection
-(14254, 4408, 1), -- HP Increase (1x)
-(14254, 4409, 1), -- MP Increase (1x)
-(14254, 4410, 11), -- Average P. Atk.
-(14254, 4411, 11), -- Average M. Atk.
-(14254, 4412, 11), -- Average P. Def.
-(14254, 4413, 11), -- Average M. Def.
-(14254, 4414, 2), -- Standard Type
-(14254, 4415, 3), -- One-handed Sword
-(14254, 4416, 7), -- Spirits
+(14254, 4408, 1), -- HP Modifiers
+(14254, 4409, 1), -- MP Modifiers
+(14254, 4410, 11), -- P. Atk. Modifiers
+(14254, 4411, 11), -- M. Atk. Modifiers
+(14254, 4412, 11), -- P. Def. Modifiers
+(14254, 4413, 11), -- M. Def. Modifiers
+(14254, 4414, 2), -- Armor Type
+(14254, 4415, 3), -- Weapon Type
+(14254, 4416, 7), -- Races
 -- Feline Queen
 (14255, 4121, 9), -- Summoned Monster Magic Protection
-(14255, 4408, 1), -- HP Increase (1x)
-(14255, 4409, 1), -- MP Increase (1x)
-(14255, 4410, 11), -- Average P. Atk.
-(14255, 4411, 11), -- Average M. Atk.
-(14255, 4412, 11), -- Average P. Def.
-(14255, 4413, 11), -- Average M. Def.
-(14255, 4414, 2), -- Standard Type
-(14255, 4415, 3), -- One-handed Sword
-(14255, 4416, 7), -- Spirits
+(14255, 4408, 1), -- HP Modifiers
+(14255, 4409, 1), -- MP Modifiers
+(14255, 4410, 11), -- P. Atk. Modifiers
+(14255, 4411, 11), -- M. Atk. Modifiers
+(14255, 4412, 11), -- P. Def. Modifiers
+(14255, 4413, 11), -- M. Def. Modifiers
+(14255, 4414, 2), -- Armor Type
+(14255, 4415, 3), -- Weapon Type
+(14255, 4416, 7), -- Races
 -- Feline Queen
 (14256, 4121, 9), -- Summoned Monster Magic Protection
-(14256, 4408, 1), -- HP Increase (1x)
-(14256, 4409, 1), -- MP Increase (1x)
-(14256, 4410, 11), -- Average P. Atk.
-(14256, 4411, 11), -- Average M. Atk.
-(14256, 4412, 11), -- Average P. Def.
-(14256, 4413, 11), -- Average M. Def.
-(14256, 4414, 2), -- Standard Type
-(14256, 4415, 3), -- One-handed Sword
-(14256, 4416, 7), -- Spirits
+(14256, 4408, 1), -- HP Modifiers
+(14256, 4409, 1), -- MP Modifiers
+(14256, 4410, 11), -- P. Atk. Modifiers
+(14256, 4411, 11), -- M. Atk. Modifiers
+(14256, 4412, 11), -- P. Def. Modifiers
+(14256, 4413, 11), -- M. Def. Modifiers
+(14256, 4414, 2), -- Armor Type
+(14256, 4415, 3), -- Weapon Type
+(14256, 4416, 7), -- Races
 -- Feline Queen
 (14257, 4121, 9), -- Summoned Monster Magic Protection
-(14257, 4408, 1), -- HP Increase (1x)
-(14257, 4409, 1), -- MP Increase (1x)
-(14257, 4410, 11), -- Average P. Atk.
-(14257, 4411, 11), -- Average M. Atk.
-(14257, 4412, 11), -- Average P. Def.
-(14257, 4413, 11), -- Average M. Def.
-(14257, 4414, 2), -- Standard Type
-(14257, 4415, 3), -- One-handed Sword
-(14257, 4416, 7), -- Spirits
+(14257, 4408, 1), -- HP Modifiers
+(14257, 4409, 1), -- MP Modifiers
+(14257, 4410, 11), -- P. Atk. Modifiers
+(14257, 4411, 11), -- M. Atk. Modifiers
+(14257, 4412, 11), -- P. Def. Modifiers
+(14257, 4413, 11), -- M. Def. Modifiers
+(14257, 4414, 2), -- Armor Type
+(14257, 4415, 3), -- Weapon Type
+(14257, 4416, 7), -- Races
 -- Feline Queen
 (14258, 4121, 9), -- Summoned Monster Magic Protection
-(14258, 4408, 1), -- HP Increase (1x)
-(14258, 4409, 1), -- MP Increase (1x)
-(14258, 4410, 11), -- Average P. Atk.
-(14258, 4411, 11), -- Average M. Atk.
-(14258, 4412, 11), -- Average P. Def.
-(14258, 4413, 11), -- Average M. Def.
-(14258, 4414, 2), -- Standard Type
-(14258, 4415, 3), -- One-handed Sword
-(14258, 4416, 7), -- Spirits
+(14258, 4408, 1), -- HP Modifiers
+(14258, 4409, 1), -- MP Modifiers
+(14258, 4410, 11), -- P. Atk. Modifiers
+(14258, 4411, 11), -- M. Atk. Modifiers
+(14258, 4412, 11), -- P. Def. Modifiers
+(14258, 4413, 11), -- M. Def. Modifiers
+(14258, 4414, 2), -- Armor Type
+(14258, 4415, 3), -- Weapon Type
+(14258, 4416, 7), -- Races
 -- Feline Queen
 (14259, 4121, 9), -- Summoned Monster Magic Protection
-(14259, 4408, 1), -- HP Increase (1x)
-(14259, 4409, 1), -- MP Increase (1x)
-(14259, 4410, 11), -- Average P. Atk.
-(14259, 4411, 11), -- Average M. Atk.
-(14259, 4412, 11), -- Average P. Def.
-(14259, 4413, 11), -- Average M. Def.
-(14259, 4414, 2), -- Standard Type
-(14259, 4415, 3), -- One-handed Sword
-(14259, 4416, 7), -- Spirits
+(14259, 4408, 1), -- HP Modifiers
+(14259, 4409, 1), -- MP Modifiers
+(14259, 4410, 11), -- P. Atk. Modifiers
+(14259, 4411, 11), -- M. Atk. Modifiers
+(14259, 4412, 11), -- P. Def. Modifiers
+(14259, 4413, 11), -- M. Def. Modifiers
+(14259, 4414, 2), -- Armor Type
+(14259, 4415, 3), -- Weapon Type
+(14259, 4416, 7), -- Races
 -- Feline Queen
 (14260, 4121, 9), -- Summoned Monster Magic Protection
-(14260, 4408, 1), -- HP Increase (1x)
-(14260, 4409, 1), -- MP Increase (1x)
-(14260, 4410, 11), -- Average P. Atk.
-(14260, 4411, 11), -- Average M. Atk.
-(14260, 4412, 11), -- Average P. Def.
-(14260, 4413, 11), -- Average M. Def.
-(14260, 4414, 2), -- Standard Type
-(14260, 4415, 3), -- One-handed Sword
-(14260, 4416, 7), -- Spirits
+(14260, 4408, 1), -- HP Modifiers
+(14260, 4409, 1), -- MP Modifiers
+(14260, 4410, 11), -- P. Atk. Modifiers
+(14260, 4411, 11), -- M. Atk. Modifiers
+(14260, 4412, 11), -- P. Def. Modifiers
+(14260, 4413, 11), -- M. Def. Modifiers
+(14260, 4414, 2), -- Armor Type
+(14260, 4415, 3), -- Weapon Type
+(14260, 4416, 7), -- Races
 -- Feline Queen
 (14265, 4121, 9), -- Summoned Monster Magic Protection
-(14265, 4408, 1), -- HP Increase (1x)
-(14265, 4409, 1), -- MP Increase (1x)
-(14265, 4410, 11), -- Average P. Atk.
-(14265, 4411, 11), -- Average M. Atk.
-(14265, 4412, 11), -- Average P. Def.
-(14265, 4413, 11), -- Average M. Def.
-(14265, 4414, 2), -- Standard Type
-(14265, 4415, 3), -- One-handed Sword
-(14265, 4416, 7), -- Spirits
+(14265, 4408, 1), -- HP Modifiers
+(14265, 4409, 1), -- MP Modifiers
+(14265, 4410, 11), -- P. Atk. Modifiers
+(14265, 4411, 11), -- M. Atk. Modifiers
+(14265, 4412, 11), -- P. Def. Modifiers
+(14265, 4413, 11), -- M. Def. Modifiers
+(14265, 4414, 2), -- Armor Type
+(14265, 4415, 3), -- Weapon Type
+(14265, 4416, 7), -- Races
 -- Feline Queen
 (14266, 4121, 9), -- Summoned Monster Magic Protection
-(14266, 4408, 1), -- HP Increase (1x)
-(14266, 4409, 1), -- MP Increase (1x)
-(14266, 4410, 11), -- Average P. Atk.
-(14266, 4411, 11), -- Average M. Atk.
-(14266, 4412, 11), -- Average P. Def.
-(14266, 4413, 11), -- Average M. Def.
-(14266, 4414, 2), -- Standard Type
-(14266, 4415, 3), -- One-handed Sword
-(14266, 4416, 7), -- Spirits
+(14266, 4408, 1), -- HP Modifiers
+(14266, 4409, 1), -- MP Modifiers
+(14266, 4410, 11), -- P. Atk. Modifiers
+(14266, 4411, 11), -- M. Atk. Modifiers
+(14266, 4412, 11), -- P. Def. Modifiers
+(14266, 4413, 11), -- M. Def. Modifiers
+(14266, 4414, 2), -- Armor Type
+(14266, 4415, 3), -- Weapon Type
+(14266, 4416, 7), -- Races
 -- Feline Queen
 (14267, 4121, 9), -- Summoned Monster Magic Protection
-(14267, 4408, 1), -- HP Increase (1x)
-(14267, 4409, 1), -- MP Increase (1x)
-(14267, 4410, 11), -- Average P. Atk.
-(14267, 4411, 11), -- Average M. Atk.
-(14267, 4412, 11), -- Average P. Def.
-(14267, 4413, 11), -- Average M. Def.
-(14267, 4414, 2), -- Standard Type
-(14267, 4415, 3), -- One-handed Sword
-(14267, 4416, 7), -- Spirits
+(14267, 4408, 1), -- HP Modifiers
+(14267, 4409, 1), -- MP Modifiers
+(14267, 4410, 11), -- P. Atk. Modifiers
+(14267, 4411, 11), -- M. Atk. Modifiers
+(14267, 4412, 11), -- P. Def. Modifiers
+(14267, 4413, 11), -- M. Def. Modifiers
+(14267, 4414, 2), -- Armor Type
+(14267, 4415, 3), -- Weapon Type
+(14267, 4416, 7), -- Races
 -- Feline Queen
 (14268, 4121, 9), -- Summoned Monster Magic Protection
-(14268, 4408, 1), -- HP Increase (1x)
-(14268, 4409, 1), -- MP Increase (1x)
-(14268, 4410, 11), -- Average P. Atk.
-(14268, 4411, 11), -- Average M. Atk.
-(14268, 4412, 11), -- Average P. Def.
-(14268, 4413, 11), -- Average M. Def.
-(14268, 4414, 2), -- Standard Type
-(14268, 4415, 3), -- One-handed Sword
-(14268, 4416, 7), -- Spirits
+(14268, 4408, 1), -- HP Modifiers
+(14268, 4409, 1), -- MP Modifiers
+(14268, 4410, 11), -- P. Atk. Modifiers
+(14268, 4411, 11), -- M. Atk. Modifiers
+(14268, 4412, 11), -- P. Def. Modifiers
+(14268, 4413, 11), -- M. Def. Modifiers
+(14268, 4414, 2), -- Armor Type
+(14268, 4415, 3), -- Weapon Type
+(14268, 4416, 7), -- Races
 -- Feline Queen
 (14269, 4121, 9), -- Summoned Monster Magic Protection
-(14269, 4408, 1), -- HP Increase (1x)
-(14269, 4409, 1), -- MP Increase (1x)
-(14269, 4410, 11), -- Average P. Atk.
-(14269, 4411, 11), -- Average M. Atk.
-(14269, 4412, 11), -- Average P. Def.
-(14269, 4413, 11), -- Average M. Def.
-(14269, 4414, 2), -- Standard Type
-(14269, 4415, 3), -- One-handed Sword
-(14269, 4416, 7), -- Spirits
+(14269, 4408, 1), -- HP Modifiers
+(14269, 4409, 1), -- MP Modifiers
+(14269, 4410, 11), -- P. Atk. Modifiers
+(14269, 4411, 11), -- M. Atk. Modifiers
+(14269, 4412, 11), -- P. Def. Modifiers
+(14269, 4413, 11), -- M. Def. Modifiers
+(14269, 4414, 2), -- Armor Type
+(14269, 4415, 3), -- Weapon Type
+(14269, 4416, 7), -- Races
 -- Feline Queen
 (14270, 4121, 9), -- Summoned Monster Magic Protection
-(14270, 4408, 1), -- HP Increase (1x)
-(14270, 4409, 1), -- MP Increase (1x)
-(14270, 4410, 11), -- Average P. Atk.
-(14270, 4411, 11), -- Average M. Atk.
-(14270, 4412, 11), -- Average P. Def.
-(14270, 4413, 11), -- Average M. Def.
-(14270, 4414, 2), -- Standard Type
-(14270, 4415, 3), -- One-handed Sword
-(14270, 4416, 7), -- Spirits
+(14270, 4408, 1), -- HP Modifiers
+(14270, 4409, 1), -- MP Modifiers
+(14270, 4410, 11), -- P. Atk. Modifiers
+(14270, 4411, 11), -- M. Atk. Modifiers
+(14270, 4412, 11), -- P. Def. Modifiers
+(14270, 4413, 11), -- M. Def. Modifiers
+(14270, 4414, 2), -- Armor Type
+(14270, 4415, 3), -- Weapon Type
+(14270, 4416, 7), -- Races
 -- Feline Queen
 (14271, 4121, 9), -- Summoned Monster Magic Protection
-(14271, 4408, 1), -- HP Increase (1x)
-(14271, 4409, 1), -- MP Increase (1x)
-(14271, 4410, 11), -- Average P. Atk.
-(14271, 4411, 11), -- Average M. Atk.
-(14271, 4412, 11), -- Average P. Def.
-(14271, 4413, 11), -- Average M. Def.
-(14271, 4414, 2), -- Standard Type
-(14271, 4415, 3), -- One-handed Sword
-(14271, 4416, 7), -- Spirits
+(14271, 4408, 1), -- HP Modifiers
+(14271, 4409, 1), -- MP Modifiers
+(14271, 4410, 11), -- P. Atk. Modifiers
+(14271, 4411, 11), -- M. Atk. Modifiers
+(14271, 4412, 11), -- P. Def. Modifiers
+(14271, 4413, 11), -- M. Def. Modifiers
+(14271, 4414, 2), -- Armor Type
+(14271, 4415, 3), -- Weapon Type
+(14271, 4416, 7), -- Races
 -- Feline Queen
 (14272, 4121, 9), -- Summoned Monster Magic Protection
-(14272, 4408, 1), -- HP Increase (1x)
-(14272, 4409, 1), -- MP Increase (1x)
-(14272, 4410, 11), -- Average P. Atk.
-(14272, 4411, 11), -- Average M. Atk.
-(14272, 4412, 11), -- Average P. Def.
-(14272, 4413, 11), -- Average M. Def.
-(14272, 4414, 2), -- Standard Type
-(14272, 4415, 3), -- One-handed Sword
-(14272, 4416, 7), -- Spirits
+(14272, 4408, 1), -- HP Modifiers
+(14272, 4409, 1), -- MP Modifiers
+(14272, 4410, 11), -- P. Atk. Modifiers
+(14272, 4411, 11), -- M. Atk. Modifiers
+(14272, 4412, 11), -- P. Def. Modifiers
+(14272, 4413, 11), -- M. Def. Modifiers
+(14272, 4414, 2), -- Armor Type
+(14272, 4415, 3), -- Weapon Type
+(14272, 4416, 7), -- Races
 -- Feline Queen
 (14273, 4121, 9), -- Summoned Monster Magic Protection
-(14273, 4408, 1), -- HP Increase (1x)
-(14273, 4409, 1), -- MP Increase (1x)
-(14273, 4410, 11), -- Average P. Atk.
-(14273, 4411, 11), -- Average M. Atk.
-(14273, 4412, 11), -- Average P. Def.
-(14273, 4413, 11), -- Average M. Def.
-(14273, 4414, 2), -- Standard Type
-(14273, 4415, 3), -- One-handed Sword
-(14273, 4416, 7), -- Spirits
+(14273, 4408, 1), -- HP Modifiers
+(14273, 4409, 1), -- MP Modifiers
+(14273, 4410, 11), -- P. Atk. Modifiers
+(14273, 4411, 11), -- M. Atk. Modifiers
+(14273, 4412, 11), -- P. Def. Modifiers
+(14273, 4413, 11), -- M. Def. Modifiers
+(14273, 4414, 2), -- Armor Type
+(14273, 4415, 3), -- Weapon Type
+(14273, 4416, 7), -- Races
 -- Feline Queen
 (14274, 4121, 9), -- Summoned Monster Magic Protection
-(14274, 4408, 1), -- HP Increase (1x)
-(14274, 4409, 1), -- MP Increase (1x)
-(14274, 4410, 11), -- Average P. Atk.
-(14274, 4411, 11), -- Average M. Atk.
-(14274, 4412, 11), -- Average P. Def.
-(14274, 4413, 11), -- Average M. Def.
-(14274, 4414, 2), -- Standard Type
-(14274, 4415, 3), -- One-handed Sword
-(14274, 4416, 7), -- Spirits
+(14274, 4408, 1), -- HP Modifiers
+(14274, 4409, 1), -- MP Modifiers
+(14274, 4410, 11), -- P. Atk. Modifiers
+(14274, 4411, 11), -- M. Atk. Modifiers
+(14274, 4412, 11), -- P. Def. Modifiers
+(14274, 4413, 11), -- M. Def. Modifiers
+(14274, 4414, 2), -- Armor Type
+(14274, 4415, 3), -- Weapon Type
+(14274, 4416, 7), -- Races
 -- Feline Queen
 (14275, 4121, 9), -- Summoned Monster Magic Protection
-(14275, 4408, 1), -- HP Increase (1x)
-(14275, 4409, 1), -- MP Increase (1x)
-(14275, 4410, 11), -- Average P. Atk.
-(14275, 4411, 11), -- Average M. Atk.
-(14275, 4412, 11), -- Average P. Def.
-(14275, 4413, 11), -- Average M. Def.
-(14275, 4414, 2), -- Standard Type
-(14275, 4415, 3), -- One-handed Sword
-(14275, 4416, 7), -- Spirits
+(14275, 4408, 1), -- HP Modifiers
+(14275, 4409, 1), -- MP Modifiers
+(14275, 4410, 11), -- P. Atk. Modifiers
+(14275, 4411, 11), -- M. Atk. Modifiers
+(14275, 4412, 11), -- P. Def. Modifiers
+(14275, 4413, 11), -- M. Def. Modifiers
+(14275, 4414, 2), -- Armor Type
+(14275, 4415, 3), -- Weapon Type
+(14275, 4416, 7), -- Races
 -- Feline Queen
 (14276, 4121, 9), -- Summoned Monster Magic Protection
-(14276, 4408, 1), -- HP Increase (1x)
-(14276, 4409, 1), -- MP Increase (1x)
-(14276, 4410, 11), -- Average P. Atk.
-(14276, 4411, 11), -- Average M. Atk.
-(14276, 4412, 11), -- Average P. Def.
-(14276, 4413, 11), -- Average M. Def.
-(14276, 4414, 2), -- Standard Type
-(14276, 4415, 3), -- One-handed Sword
-(14276, 4416, 7), -- Spirits
+(14276, 4408, 1), -- HP Modifiers
+(14276, 4409, 1), -- MP Modifiers
+(14276, 4410, 11), -- P. Atk. Modifiers
+(14276, 4411, 11), -- M. Atk. Modifiers
+(14276, 4412, 11), -- P. Def. Modifiers
+(14276, 4413, 11), -- M. Def. Modifiers
+(14276, 4414, 2), -- Armor Type
+(14276, 4415, 3), -- Weapon Type
+(14276, 4416, 7), -- Races
 -- Feline Queen
 (14277, 4121, 9), -- Summoned Monster Magic Protection
-(14277, 4408, 1), -- HP Increase (1x)
-(14277, 4409, 1), -- MP Increase (1x)
-(14277, 4410, 11), -- Average P. Atk.
-(14277, 4411, 11), -- Average M. Atk.
-(14277, 4412, 11), -- Average P. Def.
-(14277, 4413, 11), -- Average M. Def.
-(14277, 4414, 2), -- Standard Type
-(14277, 4415, 3), -- One-handed Sword
-(14277, 4416, 7), -- Spirits
+(14277, 4408, 1), -- HP Modifiers
+(14277, 4409, 1), -- MP Modifiers
+(14277, 4410, 11), -- P. Atk. Modifiers
+(14277, 4411, 11), -- M. Atk. Modifiers
+(14277, 4412, 11), -- P. Def. Modifiers
+(14277, 4413, 11), -- M. Def. Modifiers
+(14277, 4414, 2), -- Armor Type
+(14277, 4415, 3), -- Weapon Type
+(14277, 4416, 7), -- Races
 -- Feline Queen
 (14278, 4121, 9), -- Summoned Monster Magic Protection
-(14278, 4408, 1), -- HP Increase (1x)
-(14278, 4409, 1), -- MP Increase (1x)
-(14278, 4410, 11), -- Average P. Atk.
-(14278, 4411, 11), -- Average M. Atk.
-(14278, 4412, 11), -- Average P. Def.
-(14278, 4413, 11), -- Average M. Def.
-(14278, 4414, 2), -- Standard Type
-(14278, 4415, 3), -- One-handed Sword
-(14278, 4416, 7), -- Spirits
+(14278, 4408, 1), -- HP Modifiers
+(14278, 4409, 1), -- MP Modifiers
+(14278, 4410, 11), -- P. Atk. Modifiers
+(14278, 4411, 11), -- M. Atk. Modifiers
+(14278, 4412, 11), -- P. Def. Modifiers
+(14278, 4413, 11), -- M. Def. Modifiers
+(14278, 4414, 2), -- Armor Type
+(14278, 4415, 3), -- Weapon Type
+(14278, 4416, 7), -- Races
 -- Feline Queen
 (14279, 4121, 9), -- Summoned Monster Magic Protection
-(14279, 4408, 1), -- HP Increase (1x)
-(14279, 4409, 1), -- MP Increase (1x)
-(14279, 4410, 11), -- Average P. Atk.
-(14279, 4411, 11), -- Average M. Atk.
-(14279, 4412, 11), -- Average P. Def.
-(14279, 4413, 11), -- Average M. Def.
-(14279, 4414, 2), -- Standard Type
-(14279, 4415, 3), -- One-handed Sword
-(14279, 4416, 7), -- Spirits
+(14279, 4408, 1), -- HP Modifiers
+(14279, 4409, 1), -- MP Modifiers
+(14279, 4410, 11), -- P. Atk. Modifiers
+(14279, 4411, 11), -- M. Atk. Modifiers
+(14279, 4412, 11), -- P. Def. Modifiers
+(14279, 4413, 11), -- M. Def. Modifiers
+(14279, 4414, 2), -- Armor Type
+(14279, 4415, 3), -- Weapon Type
+(14279, 4416, 7), -- Races
 -- Feline Queen
 (14280, 4121, 9), -- Summoned Monster Magic Protection
-(14280, 4408, 1), -- HP Increase (1x)
-(14280, 4409, 1), -- MP Increase (1x)
-(14280, 4410, 11), -- Average P. Atk.
-(14280, 4411, 11), -- Average M. Atk.
-(14280, 4412, 11), -- Average P. Def.
-(14280, 4413, 11), -- Average M. Def.
-(14280, 4414, 2), -- Standard Type
-(14280, 4415, 3), -- One-handed Sword
-(14280, 4416, 7), -- Spirits
+(14280, 4408, 1), -- HP Modifiers
+(14280, 4409, 1), -- MP Modifiers
+(14280, 4410, 11), -- P. Atk. Modifiers
+(14280, 4411, 11), -- M. Atk. Modifiers
+(14280, 4412, 11), -- P. Def. Modifiers
+(14280, 4413, 11), -- M. Def. Modifiers
+(14280, 4414, 2), -- Armor Type
+(14280, 4415, 3), -- Weapon Type
+(14280, 4416, 7), -- Races
 -- Feline Queen
 (14281, 4121, 9), -- Summoned Monster Magic Protection
-(14281, 4408, 1), -- HP Increase (1x)
-(14281, 4409, 1), -- MP Increase (1x)
-(14281, 4410, 11), -- Average P. Atk.
-(14281, 4411, 11), -- Average M. Atk.
-(14281, 4412, 11), -- Average P. Def.
-(14281, 4413, 11), -- Average M. Def.
-(14281, 4414, 2), -- Standard Type
-(14281, 4415, 3), -- One-handed Sword
-(14281, 4416, 7), -- Spirits
+(14281, 4408, 1), -- HP Modifiers
+(14281, 4409, 1), -- MP Modifiers
+(14281, 4410, 11), -- P. Atk. Modifiers
+(14281, 4411, 11), -- M. Atk. Modifiers
+(14281, 4412, 11), -- P. Def. Modifiers
+(14281, 4413, 11), -- M. Def. Modifiers
+(14281, 4414, 2), -- Armor Type
+(14281, 4415, 3), -- Weapon Type
+(14281, 4416, 7), -- Races
 -- Feline Queen
 (14282, 4121, 9), -- Summoned Monster Magic Protection
-(14282, 4408, 1), -- HP Increase (1x)
-(14282, 4409, 1), -- MP Increase (1x)
-(14282, 4410, 11), -- Average P. Atk.
-(14282, 4411, 11), -- Average M. Atk.
-(14282, 4412, 11), -- Average P. Def.
-(14282, 4413, 11), -- Average M. Def.
-(14282, 4414, 2), -- Standard Type
-(14282, 4415, 3), -- One-handed Sword
-(14282, 4416, 7), -- Spirits
+(14282, 4408, 1), -- HP Modifiers
+(14282, 4409, 1), -- MP Modifiers
+(14282, 4410, 11), -- P. Atk. Modifiers
+(14282, 4411, 11), -- M. Atk. Modifiers
+(14282, 4412, 11), -- P. Def. Modifiers
+(14282, 4413, 11), -- M. Def. Modifiers
+(14282, 4414, 2), -- Armor Type
+(14282, 4415, 3), -- Weapon Type
+(14282, 4416, 7), -- Races
 -- Feline Queen
 (14283, 4121, 9), -- Summoned Monster Magic Protection
-(14283, 4408, 1), -- HP Increase (1x)
-(14283, 4409, 1), -- MP Increase (1x)
-(14283, 4410, 11), -- Average P. Atk.
-(14283, 4411, 11), -- Average M. Atk.
-(14283, 4412, 11), -- Average P. Def.
-(14283, 4413, 11), -- Average M. Def.
-(14283, 4414, 2), -- Standard Type
-(14283, 4415, 3), -- One-handed Sword
-(14283, 4416, 7), -- Spirits
+(14283, 4408, 1), -- HP Modifiers
+(14283, 4409, 1), -- MP Modifiers
+(14283, 4410, 11), -- P. Atk. Modifiers
+(14283, 4411, 11), -- M. Atk. Modifiers
+(14283, 4412, 11), -- P. Def. Modifiers
+(14283, 4413, 11), -- M. Def. Modifiers
+(14283, 4414, 2), -- Armor Type
+(14283, 4415, 3), -- Weapon Type
+(14283, 4416, 7), -- Races
 -- Feline Queen
 (14284, 4121, 9), -- Summoned Monster Magic Protection
-(14284, 4408, 1), -- HP Increase (1x)
-(14284, 4409, 1), -- MP Increase (1x)
-(14284, 4410, 11), -- Average P. Atk.
-(14284, 4411, 11), -- Average M. Atk.
-(14284, 4412, 11), -- Average P. Def.
-(14284, 4413, 11), -- Average M. Def.
-(14284, 4414, 2), -- Standard Type
-(14284, 4415, 3), -- One-handed Sword
-(14284, 4416, 7), -- Spirits
+(14284, 4408, 1), -- HP Modifiers
+(14284, 4409, 1), -- MP Modifiers
+(14284, 4410, 11), -- P. Atk. Modifiers
+(14284, 4411, 11), -- M. Atk. Modifiers
+(14284, 4412, 11), -- P. Def. Modifiers
+(14284, 4413, 11), -- M. Def. Modifiers
+(14284, 4414, 2), -- Armor Type
+(14284, 4415, 3), -- Weapon Type
+(14284, 4416, 7), -- Races
 -- Feline Queen
 (14285, 4121, 9), -- Summoned Monster Magic Protection
-(14285, 4408, 1), -- HP Increase (1x)
-(14285, 4409, 1), -- MP Increase (1x)
-(14285, 4410, 11), -- Average P. Atk.
-(14285, 4411, 11), -- Average M. Atk.
-(14285, 4412, 11), -- Average P. Def.
-(14285, 4413, 11), -- Average M. Def.
-(14285, 4414, 2), -- Standard Type
-(14285, 4415, 3), -- One-handed Sword
-(14285, 4416, 7), -- Spirits
+(14285, 4408, 1), -- HP Modifiers
+(14285, 4409, 1), -- MP Modifiers
+(14285, 4410, 11), -- P. Atk. Modifiers
+(14285, 4411, 11), -- M. Atk. Modifiers
+(14285, 4412, 11), -- P. Def. Modifiers
+(14285, 4413, 11), -- M. Def. Modifiers
+(14285, 4414, 2), -- Armor Type
+(14285, 4415, 3), -- Weapon Type
+(14285, 4416, 7), -- Races
 -- Feline Queen
 (14286, 4121, 9), -- Summoned Monster Magic Protection
-(14286, 4408, 1), -- HP Increase (1x)
-(14286, 4409, 1), -- MP Increase (1x)
-(14286, 4410, 11), -- Average P. Atk.
-(14286, 4411, 11), -- Average M. Atk.
-(14286, 4412, 11), -- Average P. Def.
-(14286, 4413, 11), -- Average M. Def.
-(14286, 4414, 2), -- Standard Type
-(14286, 4415, 3), -- One-handed Sword
-(14286, 4416, 7), -- Spirits
+(14286, 4408, 1), -- HP Modifiers
+(14286, 4409, 1), -- MP Modifiers
+(14286, 4410, 11), -- P. Atk. Modifiers
+(14286, 4411, 11), -- M. Atk. Modifiers
+(14286, 4412, 11), -- P. Def. Modifiers
+(14286, 4413, 11), -- M. Def. Modifiers
+(14286, 4414, 2), -- Armor Type
+(14286, 4415, 3), -- Weapon Type
+(14286, 4416, 7), -- Races
 -- Feline Queen
 (14287, 4121, 9), -- Summoned Monster Magic Protection
-(14287, 4408, 1), -- HP Increase (1x)
-(14287, 4409, 1), -- MP Increase (1x)
-(14287, 4410, 11), -- Average P. Atk.
-(14287, 4411, 11), -- Average M. Atk.
-(14287, 4412, 11), -- Average P. Def.
-(14287, 4413, 11), -- Average M. Def.
-(14287, 4414, 2), -- Standard Type
-(14287, 4415, 3), -- One-handed Sword
-(14287, 4416, 7), -- Spirits
+(14287, 4408, 1), -- HP Modifiers
+(14287, 4409, 1), -- MP Modifiers
+(14287, 4410, 11), -- P. Atk. Modifiers
+(14287, 4411, 11), -- M. Atk. Modifiers
+(14287, 4412, 11), -- P. Def. Modifiers
+(14287, 4413, 11), -- M. Def. Modifiers
+(14287, 4414, 2), -- Armor Type
+(14287, 4415, 3), -- Weapon Type
+(14287, 4416, 7), -- Races
 -- Feline Queen
 (14288, 4121, 9), -- Summoned Monster Magic Protection
-(14288, 4408, 1), -- HP Increase (1x)
-(14288, 4409, 1), -- MP Increase (1x)
-(14288, 4410, 11), -- Average P. Atk.
-(14288, 4411, 11), -- Average M. Atk.
-(14288, 4412, 11), -- Average P. Def.
-(14288, 4413, 11), -- Average M. Def.
-(14288, 4414, 2), -- Standard Type
-(14288, 4415, 3), -- One-handed Sword
-(14288, 4416, 7), -- Spirits
+(14288, 4408, 1), -- HP Modifiers
+(14288, 4409, 1), -- MP Modifiers
+(14288, 4410, 11), -- P. Atk. Modifiers
+(14288, 4411, 11), -- M. Atk. Modifiers
+(14288, 4412, 11), -- P. Def. Modifiers
+(14288, 4413, 11), -- M. Def. Modifiers
+(14288, 4414, 2), -- Armor Type
+(14288, 4415, 3), -- Weapon Type
+(14288, 4416, 7), -- Races
 -- Feline Queen
 (14289, 4121, 9), -- Summoned Monster Magic Protection
-(14289, 4408, 1), -- HP Increase (1x)
-(14289, 4409, 1), -- MP Increase (1x)
-(14289, 4410, 11), -- Average P. Atk.
-(14289, 4411, 11), -- Average M. Atk.
-(14289, 4412, 11), -- Average P. Def.
-(14289, 4413, 11), -- Average M. Def.
-(14289, 4414, 2), -- Standard Type
-(14289, 4415, 3), -- One-handed Sword
-(14289, 4416, 7), -- Spirits
+(14289, 4408, 1), -- HP Modifiers
+(14289, 4409, 1), -- MP Modifiers
+(14289, 4410, 11), -- P. Atk. Modifiers
+(14289, 4411, 11), -- M. Atk. Modifiers
+(14289, 4412, 11), -- P. Def. Modifiers
+(14289, 4413, 11), -- M. Def. Modifiers
+(14289, 4414, 2), -- Armor Type
+(14289, 4415, 3), -- Weapon Type
+(14289, 4416, 7), -- Races
 -- Feline Queen
 (14290, 4121, 9), -- Summoned Monster Magic Protection
-(14290, 4408, 1), -- HP Increase (1x)
-(14290, 4409, 1), -- MP Increase (1x)
-(14290, 4410, 11), -- Average P. Atk.
-(14290, 4411, 11), -- Average M. Atk.
-(14290, 4412, 11), -- Average P. Def.
-(14290, 4413, 11), -- Average M. Def.
-(14290, 4414, 2), -- Standard Type
-(14290, 4415, 3), -- One-handed Sword
-(14290, 4416, 7), -- Spirits
+(14290, 4408, 1), -- HP Modifiers
+(14290, 4409, 1), -- MP Modifiers
+(14290, 4410, 11), -- P. Atk. Modifiers
+(14290, 4411, 11), -- M. Atk. Modifiers
+(14290, 4412, 11), -- P. Def. Modifiers
+(14290, 4413, 11), -- M. Def. Modifiers
+(14290, 4414, 2), -- Armor Type
+(14290, 4415, 3), -- Weapon Type
+(14290, 4416, 7), -- Races
 -- Feline Queen
 (14291, 4121, 9), -- Summoned Monster Magic Protection
-(14291, 4408, 1), -- HP Increase (1x)
-(14291, 4409, 1), -- MP Increase (1x)
-(14291, 4410, 11), -- Average P. Atk.
-(14291, 4411, 11), -- Average M. Atk.
-(14291, 4412, 11), -- Average P. Def.
-(14291, 4413, 11), -- Average M. Def.
-(14291, 4414, 2), -- Standard Type
-(14291, 4415, 3), -- One-handed Sword
-(14291, 4416, 7), -- Spirits
+(14291, 4408, 1), -- HP Modifiers
+(14291, 4409, 1), -- MP Modifiers
+(14291, 4410, 11), -- P. Atk. Modifiers
+(14291, 4411, 11), -- M. Atk. Modifiers
+(14291, 4412, 11), -- P. Def. Modifiers
+(14291, 4413, 11), -- M. Def. Modifiers
+(14291, 4414, 2), -- Armor Type
+(14291, 4415, 3), -- Weapon Type
+(14291, 4416, 7), -- Races
 -- Feline Queen
 (14292, 4121, 9), -- Summoned Monster Magic Protection
-(14292, 4408, 1), -- HP Increase (1x)
-(14292, 4409, 1), -- MP Increase (1x)
-(14292, 4410, 11), -- Average P. Atk.
-(14292, 4411, 11), -- Average M. Atk.
-(14292, 4412, 11), -- Average P. Def.
-(14292, 4413, 11), -- Average M. Def.
-(14292, 4414, 2), -- Standard Type
-(14292, 4415, 3), -- One-handed Sword
-(14292, 4416, 7), -- Spirits
+(14292, 4408, 1), -- HP Modifiers
+(14292, 4409, 1), -- MP Modifiers
+(14292, 4410, 11), -- P. Atk. Modifiers
+(14292, 4411, 11), -- M. Atk. Modifiers
+(14292, 4412, 11), -- P. Def. Modifiers
+(14292, 4413, 11), -- M. Def. Modifiers
+(14292, 4414, 2), -- Armor Type
+(14292, 4415, 3), -- Weapon Type
+(14292, 4416, 7), -- Races
 -- Feline Queen
 (14293, 4121, 9), -- Summoned Monster Magic Protection
-(14293, 4408, 1), -- HP Increase (1x)
-(14293, 4409, 1), -- MP Increase (1x)
-(14293, 4410, 11), -- Average P. Atk.
-(14293, 4411, 11), -- Average M. Atk.
-(14293, 4412, 11), -- Average P. Def.
-(14293, 4413, 11), -- Average M. Def.
-(14293, 4414, 2), -- Standard Type
-(14293, 4415, 3), -- One-handed Sword
-(14293, 4416, 7), -- Spirits
+(14293, 4408, 1), -- HP Modifiers
+(14293, 4409, 1), -- MP Modifiers
+(14293, 4410, 11), -- P. Atk. Modifiers
+(14293, 4411, 11), -- M. Atk. Modifiers
+(14293, 4412, 11), -- P. Def. Modifiers
+(14293, 4413, 11), -- M. Def. Modifiers
+(14293, 4414, 2), -- Armor Type
+(14293, 4415, 3), -- Weapon Type
+(14293, 4416, 7), -- Races
 -- Feline Queen
 (14294, 4121, 9), -- Summoned Monster Magic Protection
-(14294, 4408, 1), -- HP Increase (1x)
-(14294, 4409, 1), -- MP Increase (1x)
-(14294, 4410, 11), -- Average P. Atk.
-(14294, 4411, 11), -- Average M. Atk.
-(14294, 4412, 11), -- Average P. Def.
-(14294, 4413, 11), -- Average M. Def.
-(14294, 4414, 2), -- Standard Type
-(14294, 4415, 3), -- One-handed Sword
-(14294, 4416, 7), -- Spirits
+(14294, 4408, 1), -- HP Modifiers
+(14294, 4409, 1), -- MP Modifiers
+(14294, 4410, 11), -- P. Atk. Modifiers
+(14294, 4411, 11), -- M. Atk. Modifiers
+(14294, 4412, 11), -- P. Def. Modifiers
+(14294, 4413, 11), -- M. Def. Modifiers
+(14294, 4414, 2), -- Armor Type
+(14294, 4415, 3), -- Weapon Type
+(14294, 4416, 7), -- Races
 -- Boxer the Unicorn 
 (14295, 4121, 9), -- Summoned Monster Magic Protection
-(14295, 4408, 6), -- HP Very High
-(14295, 4409, 1), -- MP Increase (1x)
-(14295, 4410, 13), -- Slightly Strong P. Atk.
-(14295, 4411, 11), -- Average M. Atk.
-(14295, 4412, 11), -- Average P. Def.
-(14295, 4413, 11), -- Average M. Def.
-(14295, 4414, 2), -- Standard Type
-(14295, 4415, 3), -- One-handed Sword
-(14295, 4416, 7), -- Spirits
-(14295, 5038, 7), -- Servitor PvP Penalty
+(14295, 4408, 6), -- HP Modifiers
+(14295, 4409, 1), -- MP Modifiers
+(14295, 4410, 13), -- P. Atk. Modifiers
+(14295, 4411, 11), -- M. Atk. Modifiers
+(14295, 4412, 11), -- P. Def. Modifiers
+(14295, 4413, 11), -- M. Def. Modifiers
+(14295, 4414, 2), -- Armor Type
+(14295, 4415, 3), -- Weapon Type
+(14295, 4416, 7), -- Races
+(14295, 5038, 7), -- Summon PVP Penalty
 -- Boxer the Unicorn
 (14296, 4121, 9), -- Summoned Monster Magic Protection
-(14296, 4408, 6), -- HP Very High
-(14296, 4409, 1), -- MP Increase (1x)
-(14296, 4410, 13), -- Slightly Strong P. Atk.
-(14296, 4411, 11), -- Average M. Atk.
-(14296, 4412, 11), -- Average P. Def.
-(14296, 4413, 11), -- Average M. Def.
-(14296, 4414, 2), -- Standard Type
-(14296, 4415, 3), -- One-handed Sword
-(14296, 4416, 7), -- Spirits
-(14296, 5038, 7), -- Servitor PvP Penalty
+(14296, 4408, 6), -- HP Modifiers
+(14296, 4409, 1), -- MP Modifiers
+(14296, 4410, 13), -- P. Atk. Modifiers
+(14296, 4411, 11), -- M. Atk. Modifiers
+(14296, 4412, 11), -- P. Def. Modifiers
+(14296, 4413, 11), -- M. Def. Modifiers
+(14296, 4414, 2), -- Armor Type
+(14296, 4415, 3), -- Weapon Type
+(14296, 4416, 7), -- Races
+(14296, 5038, 7), -- Summon PVP Penalty
 -- Boxer the Unicorn 
 (14297, 4121, 9), -- Summoned Monster Magic Protection
-(14297, 4408, 6), -- HP Very High
-(14297, 4409, 1), -- MP Increase (1x)
-(14297, 4410, 13), -- Slightly Strong P. Atk.
-(14297, 4411, 11), -- Average M. Atk.
-(14297, 4412, 11), -- Average P. Def.
-(14297, 4413, 11), -- Average M. Def.
-(14297, 4414, 2), -- Standard Type
-(14297, 4415, 3), -- One-handed Sword
-(14297, 4416, 7), -- Spirits
-(14297, 5038, 7), -- Servitor PvP Penalty
+(14297, 4408, 6), -- HP Modifiers
+(14297, 4409, 1), -- MP Modifiers
+(14297, 4410, 13), -- P. Atk. Modifiers
+(14297, 4411, 11), -- M. Atk. Modifiers
+(14297, 4412, 11), -- P. Def. Modifiers
+(14297, 4413, 11), -- M. Def. Modifiers
+(14297, 4414, 2), -- Armor Type
+(14297, 4415, 3), -- Weapon Type
+(14297, 4416, 7), -- Races
+(14297, 5038, 7), -- Summon PVP Penalty
 -- Boxer the Unicorn
 (14298, 4121, 9), -- Summoned Monster Magic Protection
-(14298, 4408, 6), -- HP Very High
-(14298, 4409, 1), -- MP Increase (1x)
-(14298, 4410, 13), -- Slightly Strong P. Atk.
-(14298, 4411, 11), -- Average M. Atk.
-(14298, 4412, 11), -- Average P. Def.
-(14298, 4413, 11), -- Average M. Def.
-(14298, 4414, 2), -- Standard Type
-(14298, 4415, 3), -- One-handed Sword
-(14298, 4416, 7), -- Spirits
-(14298, 5038, 7), -- Servitor PvP Penalty
+(14298, 4408, 6), -- HP Modifiers
+(14298, 4409, 1), -- MP Modifiers
+(14298, 4410, 13), -- P. Atk. Modifiers
+(14298, 4411, 11), -- M. Atk. Modifiers
+(14298, 4412, 11), -- P. Def. Modifiers
+(14298, 4413, 11), -- M. Def. Modifiers
+(14298, 4414, 2), -- Armor Type
+(14298, 4415, 3), -- Weapon Type
+(14298, 4416, 7), -- Races
+(14298, 5038, 7), -- Summon PVP Penalty
 -- Boxer the Unicorn 
 (14299, 4121, 9), -- Summoned Monster Magic Protection
-(14299, 4408, 6), -- HP Very High
-(14299, 4409, 1), -- MP Increase (1x)
-(14299, 4410, 13), -- Slightly Strong P. Atk.
-(14299, 4411, 11), -- Average M. Atk.
-(14299, 4412, 12), -- Slightly Strong P. Def.
-(14299, 4413, 12), -- Slightly Strong M. Def.
-(14299, 4414, 2), -- Standard Type
-(14299, 4415, 3), -- One-handed Sword
-(14299, 4416, 7), -- Spirits
-(14299, 5038, 7), -- Servitor PvP Penalty
+(14299, 4408, 6), -- HP Modifiers
+(14299, 4409, 1), -- MP Modifiers
+(14299, 4410, 13), -- P. Atk. Modifiers
+(14299, 4411, 11), -- M. Atk. Modifiers
+(14299, 4412, 12), -- P. Def. Modifiers
+(14299, 4413, 12), -- M. Def. Modifiers
+(14299, 4414, 2), -- Armor Type
+(14299, 4415, 3), -- Weapon Type
+(14299, 4416, 7), -- Races
+(14299, 5038, 7), -- Summon PVP Penalty
 -- Boxer the Unicorn
 (14300, 4121, 9), -- Summoned Monster Magic Protection
-(14300, 4408, 6), -- HP Very High
-(14300, 4409, 1), -- MP Increase (1x)
-(14300, 4410, 13), -- Slightly Strong P. Atk.
-(14300, 4411, 11), -- Average M. Atk.
-(14300, 4412, 12), -- Slightly Strong P. Def.
-(14300, 4413, 12), -- Slightly Strong M. Def.
-(14300, 4414, 2), -- Standard Type
-(14300, 4415, 3), -- One-handed Sword
-(14300, 4416, 7), -- Spirits
-(14300, 5038, 7), -- Servitor PvP Penalty
+(14300, 4408, 6), -- HP Modifiers
+(14300, 4409, 1), -- MP Modifiers
+(14300, 4410, 13), -- P. Atk. Modifiers
+(14300, 4411, 11), -- M. Atk. Modifiers
+(14300, 4412, 12), -- P. Def. Modifiers
+(14300, 4413, 12), -- M. Def. Modifiers
+(14300, 4414, 2), -- Armor Type
+(14300, 4415, 3), -- Weapon Type
+(14300, 4416, 7), -- Races
+(14300, 5038, 7), -- Summon PVP Penalty
 -- Boxer the Unicorn
 (14301, 4121, 9); -- Summoned Monster Magic Protection
 
 INSERT INTO `npcskills` VALUES
-(14301, 4408, 6), -- HP Very High
-(14301, 4409, 1), -- MP Increase (1x)
-(14301, 4410, 13), -- Slightly Strong P. Atk.
-(14301, 4411, 11), -- Average M. Atk.
-(14301, 4412, 12), -- Slightly Strong P. Def.
-(14301, 4413, 12), -- Slightly Strong M. Def.
-(14301, 4414, 2), -- Standard Type
-(14301, 4415, 3), -- One-handed Sword
-(14301, 4416, 7), -- Spirits
-(14301, 5038, 7), -- Servitor PvP Penalty
+(14301, 4408, 6), -- HP Modifiers
+(14301, 4409, 1), -- MP Modifiers
+(14301, 4410, 13), -- P. Atk. Modifiers
+(14301, 4411, 11), -- M. Atk. Modifiers
+(14301, 4412, 12), -- P. Def. Modifiers
+(14301, 4413, 12), -- M. Def. Modifiers
+(14301, 4414, 2), -- Armor Type
+(14301, 4415, 3), -- Weapon Type
+(14301, 4416, 7), -- Races
+(14301, 5038, 7), -- Summon PVP Penalty
 -- Boxer the Unicorn
 (14302, 4121, 9), -- Summoned Monster Magic Protection
-(14302, 4408, 6), -- HP Very High
-(14302, 4409, 1), -- MP Increase (1x)
-(14302, 4410, 13), -- Slightly Strong P. Atk.
-(14302, 4411, 11), -- Average M. Atk.
-(14302, 4412, 12), -- Slightly Strong P. Def.
-(14302, 4413, 12), -- Slightly Strong M. Def.
-(14302, 4414, 2), -- Standard Type
-(14302, 4415, 3), -- One-handed Sword
-(14302, 4416, 7), -- Spirits
-(14302, 5038, 7), -- Servitor PvP Penalty
+(14302, 4408, 6), -- HP Modifiers
+(14302, 4409, 1), -- MP Modifiers
+(14302, 4410, 13), -- P. Atk. Modifiers
+(14302, 4411, 11), -- M. Atk. Modifiers
+(14302, 4412, 12), -- P. Def. Modifiers
+(14302, 4413, 12), -- M. Def. Modifiers
+(14302, 4414, 2), -- Armor Type
+(14302, 4415, 3), -- Weapon Type
+(14302, 4416, 7), -- Races
+(14302, 5038, 7), -- Summon PVP Penalty
 -- Boxer the Unicorn
 (14303, 4121, 9), -- Summoned Monster Magic Protection
-(14303, 4408, 6), -- HP Very High
-(14303, 4409, 1), -- MP Increase (1x)
-(14303, 4410, 13), -- Slightly Strong P. Atk.
-(14303, 4411, 11), -- Average M. Atk.
-(14303, 4412, 12), -- Slightly Strong P. Def.
-(14303, 4413, 12), -- Slightly Strong M. Def.
-(14303, 4414, 2), -- Standard Type
-(14303, 4415, 3), -- One-handed Sword
-(14303, 4416, 7), -- Spirits
-(14303, 5038, 7), -- Servitor PvP Penalty
+(14303, 4408, 6), -- HP Modifiers
+(14303, 4409, 1), -- MP Modifiers
+(14303, 4410, 13), -- P. Atk. Modifiers
+(14303, 4411, 11), -- M. Atk. Modifiers
+(14303, 4412, 12), -- P. Def. Modifiers
+(14303, 4413, 12), -- M. Def. Modifiers
+(14303, 4414, 2), -- Armor Type
+(14303, 4415, 3), -- Weapon Type
+(14303, 4416, 7), -- Races
+(14303, 5038, 7), -- Summon PVP Penalty
 -- Boxer the Unicorn
 (14304, 4121, 9), -- Summoned Monster Magic Protection
-(14304, 4408, 6), -- HP Very High
-(14304, 4409, 1), -- MP Increase (1x)
-(14304, 4410, 13), -- Slightly Strong P. Atk.
-(14304, 4411, 11), -- Average M. Atk.
-(14304, 4412, 12), -- Slightly Strong P. Def.
-(14304, 4413, 12), -- Slightly Strong M. Def.
-(14304, 4414, 2), -- Standard Type
-(14304, 4415, 3), -- One-handed Sword
-(14304, 4416, 7), -- Spirits
-(14304, 5038, 7), -- Servitor PvP Penalty
+(14304, 4408, 6), -- HP Modifiers
+(14304, 4409, 1), -- MP Modifiers
+(14304, 4410, 13), -- P. Atk. Modifiers
+(14304, 4411, 11), -- M. Atk. Modifiers
+(14304, 4412, 12), -- P. Def. Modifiers
+(14304, 4413, 12), -- M. Def. Modifiers
+(14304, 4414, 2), -- Armor Type
+(14304, 4415, 3), -- Weapon Type
+(14304, 4416, 7), -- Races
+(14304, 5038, 7), -- Summon PVP Penalty
 -- Boxer the Unicorn
 (14305, 4121, 9), -- Summoned Monster Magic Protection
-(14305, 4408, 6), -- HP Very High
-(14305, 4409, 1), -- MP Increase (1x)
-(14305, 4410, 13), -- Slightly Strong P. Atk.
-(14305, 4411, 11), -- Average M. Atk.
-(14305, 4412, 12), -- Slightly Strong P. Def.
-(14305, 4413, 12), -- Slightly Strong M. Def.
-(14305, 4414, 2), -- Standard Type
-(14305, 4415, 3), -- One-handed Sword
-(14305, 4416, 7), -- Spirits
-(14305, 5038, 7), -- Servitor PvP Penalty
+(14305, 4408, 6), -- HP Modifiers
+(14305, 4409, 1), -- MP Modifiers
+(14305, 4410, 13), -- P. Atk. Modifiers
+(14305, 4411, 11), -- M. Atk. Modifiers
+(14305, 4412, 12), -- P. Def. Modifiers
+(14305, 4413, 12), -- M. Def. Modifiers
+(14305, 4414, 2), -- Armor Type
+(14305, 4415, 3), -- Weapon Type
+(14305, 4416, 7), -- Races
+(14305, 5038, 7), -- Summon PVP Penalty
 -- Boxer the Unicorn
 (14306, 4121, 9), -- Summoned Monster Magic Protection
-(14306, 4408, 6), -- HP Very High
-(14306, 4409, 1), -- MP Increase (1x)
-(14306, 4410, 13), -- Slightly Strong P. Atk.
-(14306, 4411, 11), -- Average M. Atk.
-(14306, 4412, 12), -- Slightly Strong P. Def.
-(14306, 4413, 12), -- Slightly Strong M. Def.
-(14306, 4414, 2), -- Standard Type
-(14306, 4415, 3), -- One-handed Sword
-(14306, 4416, 7), -- Spirits
-(14306, 5038, 7), -- Servitor PvP Penalty
+(14306, 4408, 6), -- HP Modifiers
+(14306, 4409, 1), -- MP Modifiers
+(14306, 4410, 13), -- P. Atk. Modifiers
+(14306, 4411, 11), -- M. Atk. Modifiers
+(14306, 4412, 12), -- P. Def. Modifiers
+(14306, 4413, 12), -- M. Def. Modifiers
+(14306, 4414, 2), -- Armor Type
+(14306, 4415, 3), -- Weapon Type
+(14306, 4416, 7), -- Races
+(14306, 5038, 7), -- Summon PVP Penalty
 -- Boxer the Unicorn
 (14307, 4121, 9), -- Summoned Monster Magic Protection
-(14307, 4408, 6), -- HP Very High
-(14307, 4409, 1), -- MP Increase (1x)
-(14307, 4410, 13), -- Slightly Strong P. Atk.
-(14307, 4411, 11), -- Average M. Atk.
-(14307, 4412, 12), -- Slightly Strong P. Def.
-(14307, 4413, 12), -- Slightly Strong M. Def.
-(14307, 4414, 2), -- Standard Type
-(14307, 4415, 3), -- One-handed Sword
-(14307, 4416, 7), -- Spirits
-(14307, 5038, 7), -- Servitor PvP Penalty
+(14307, 4408, 6), -- HP Modifiers
+(14307, 4409, 1), -- MP Modifiers
+(14307, 4410, 13), -- P. Atk. Modifiers
+(14307, 4411, 11), -- M. Atk. Modifiers
+(14307, 4412, 12), -- P. Def. Modifiers
+(14307, 4413, 12), -- M. Def. Modifiers
+(14307, 4414, 2), -- Armor Type
+(14307, 4415, 3), -- Weapon Type
+(14307, 4416, 7), -- Races
+(14307, 5038, 7), -- Summon PVP Penalty
 -- Boxer the Unicorn
 (14308, 4121, 9), -- Summoned Monster Magic Protection
-(14308, 4408, 6), -- HP Very High
-(14308, 4409, 1), -- MP Increase (1x)
-(14308, 4410, 13), -- Slightly Strong P. Atk.
-(14308, 4411, 11), -- Average M. Atk.
-(14308, 4412, 12), -- Slightly Strong P. Def.
-(14308, 4413, 12), -- Slightly Strong M. Def.
-(14308, 4414, 2), -- Standard Type
-(14308, 4415, 3), -- One-handed Sword
-(14308, 4416, 7), -- Spirits
-(14308, 5038, 7), -- Servitor PvP Penalty
+(14308, 4408, 6), -- HP Modifiers
+(14308, 4409, 1), -- MP Modifiers
+(14308, 4410, 13), -- P. Atk. Modifiers
+(14308, 4411, 11), -- M. Atk. Modifiers
+(14308, 4412, 12), -- P. Def. Modifiers
+(14308, 4413, 12), -- M. Def. Modifiers
+(14308, 4414, 2), -- Armor Type
+(14308, 4415, 3), -- Weapon Type
+(14308, 4416, 7), -- Races
+(14308, 5038, 7), -- Summon PVP Penalty
 -- Boxer the Unicorn
 (14309, 4121, 9), -- Summoned Monster Magic Protection
-(14309, 4408, 6), -- HP Very High
-(14309, 4409, 1), -- MP Increase (1x)
-(14309, 4410, 13), -- Slightly Strong P. Atk.
-(14309, 4411, 11), -- Average M. Atk.
-(14309, 4412, 12), -- Slightly Strong P. Def.
-(14309, 4413, 12), -- Slightly Strong M. Def.
-(14309, 4414, 2), -- Standard Type
-(14309, 4415, 3), -- One-handed Sword
-(14309, 4416, 7), -- Spirits
-(14309, 5038, 7), -- Servitor PvP Penalty
+(14309, 4408, 6), -- HP Modifiers
+(14309, 4409, 1), -- MP Modifiers
+(14309, 4410, 13), -- P. Atk. Modifiers
+(14309, 4411, 11), -- M. Atk. Modifiers
+(14309, 4412, 12), -- P. Def. Modifiers
+(14309, 4413, 12), -- M. Def. Modifiers
+(14309, 4414, 2), -- Armor Type
+(14309, 4415, 3), -- Weapon Type
+(14309, 4416, 7), -- Races
+(14309, 5038, 7), -- Summon PVP Penalty
 -- Boxer the Unicorn
 (14310, 4121, 9), -- Summoned Monster Magic Protection
-(14310, 4408, 6), -- HP Very High
-(14310, 4409, 1), -- MP Increase (1x)
-(14310, 4410, 13), -- Slightly Strong P. Atk.
-(14310, 4411, 11), -- Average M. Atk.
-(14310, 4412, 12), -- Slightly Strong P. Def.
-(14310, 4413, 12), -- Slightly Strong M. Def.
-(14310, 4414, 2), -- Standard Type
-(14310, 4415, 3), -- One-handed Sword
-(14310, 4416, 7), -- Spirits
-(14310, 5038, 7), -- Servitor PvP Penalty
+(14310, 4408, 6), -- HP Modifiers
+(14310, 4409, 1), -- MP Modifiers
+(14310, 4410, 13), -- P. Atk. Modifiers
+(14310, 4411, 11), -- M. Atk. Modifiers
+(14310, 4412, 12), -- P. Def. Modifiers
+(14310, 4413, 12), -- M. Def. Modifiers
+(14310, 4414, 2), -- Armor Type
+(14310, 4415, 3), -- Weapon Type
+(14310, 4416, 7), -- Races
+(14310, 5038, 7), -- Summon PVP Penalty
 -- Boxer the Unicorn
 (14311, 4121, 9), -- Summoned Monster Magic Protection
-(14311, 4408, 6), -- HP Very High
-(14311, 4409, 1), -- MP Increase (1x)
-(14311, 4410, 13), -- Slightly Strong P. Atk.
-(14311, 4411, 11), -- Average M. Atk.
-(14311, 4412, 12), -- Slightly Strong P. Def.
-(14311, 4413, 12), -- Slightly Strong M. Def.
-(14311, 4414, 2), -- Standard Type
-(14311, 4415, 3), -- One-handed Sword
-(14311, 4416, 7), -- Spirits
-(14311, 5038, 7), -- Servitor PvP Penalty
+(14311, 4408, 6), -- HP Modifiers
+(14311, 4409, 1), -- MP Modifiers
+(14311, 4410, 13), -- P. Atk. Modifiers
+(14311, 4411, 11), -- M. Atk. Modifiers
+(14311, 4412, 12), -- P. Def. Modifiers
+(14311, 4413, 12), -- M. Def. Modifiers
+(14311, 4414, 2), -- Armor Type
+(14311, 4415, 3), -- Weapon Type
+(14311, 4416, 7), -- Races
+(14311, 5038, 7), -- Summon PVP Penalty
 -- Boxer the Unicorn
 (14312, 4121, 9), -- Summoned Monster Magic Protection
-(14312, 4408, 6), -- HP Very High
-(14312, 4409, 1), -- MP Increase (1x)
-(14312, 4410, 13), -- Slightly Strong P. Atk.
-(14312, 4411, 11), -- Average M. Atk.
-(14312, 4412, 12), -- Slightly Strong P. Def.
-(14312, 4413, 12), -- Slightly Strong M. Def.
-(14312, 4414, 2), -- Standard Type
-(14312, 4415, 3), -- One-handed Sword
-(14312, 4416, 7), -- Spirits
-(14312, 5038, 7), -- Servitor PvP Penalty
+(14312, 4408, 6), -- HP Modifiers
+(14312, 4409, 1), -- MP Modifiers
+(14312, 4410, 13), -- P. Atk. Modifiers
+(14312, 4411, 11), -- M. Atk. Modifiers
+(14312, 4412, 12), -- P. Def. Modifiers
+(14312, 4413, 12), -- M. Def. Modifiers
+(14312, 4414, 2), -- Armor Type
+(14312, 4415, 3), -- Weapon Type
+(14312, 4416, 7), -- Races
+(14312, 5038, 7), -- Summon PVP Penalty
 -- Boxer the Unicorn
 (14313, 4121, 9), -- Summoned Monster Magic Protection
-(14313, 4408, 6), -- HP Very High
-(14313, 4409, 1), -- MP Increase (1x)
-(14313, 4410, 13), -- Slightly Strong P. Atk.
-(14313, 4411, 11), -- Average M. Atk.
-(14313, 4412, 12), -- Slightly Strong P. Def.
-(14313, 4413, 12), -- Slightly Strong M. Def.
-(14313, 4414, 2), -- Standard Type
-(14313, 4415, 3), -- One-handed Sword
-(14313, 4416, 7), -- Spirits
-(14313, 5038, 7), -- Servitor PvP Penalty
+(14313, 4408, 6), -- HP Modifiers
+(14313, 4409, 1), -- MP Modifiers
+(14313, 4410, 13), -- P. Atk. Modifiers
+(14313, 4411, 11), -- M. Atk. Modifiers
+(14313, 4412, 12), -- P. Def. Modifiers
+(14313, 4413, 12), -- M. Def. Modifiers
+(14313, 4414, 2), -- Armor Type
+(14313, 4415, 3), -- Weapon Type
+(14313, 4416, 7), -- Races
+(14313, 5038, 7), -- Summon PVP Penalty
 -- Boxer the Unicorn
 (14314, 4121, 9), -- Summoned Monster Magic Protection
-(14314, 4408, 6), -- HP Very High
-(14314, 4409, 1), -- MP Increase (1x)
-(14314, 4410, 13), -- Slightly Strong P. Atk.
-(14314, 4411, 11), -- Average M. Atk.
-(14314, 4412, 12), -- Slightly Strong P. Def.
-(14314, 4413, 12), -- Slightly Strong M. Def.
-(14314, 4414, 2), -- Standard Type
-(14314, 4415, 3), -- One-handed Sword
-(14314, 4416, 7), -- Spirits
-(14314, 5038, 7), -- Servitor PvP Penalty
+(14314, 4408, 6), -- HP Modifiers
+(14314, 4409, 1), -- MP Modifiers
+(14314, 4410, 13), -- P. Atk. Modifiers
+(14314, 4411, 11), -- M. Atk. Modifiers
+(14314, 4412, 12), -- P. Def. Modifiers
+(14314, 4413, 12), -- M. Def. Modifiers
+(14314, 4414, 2), -- Armor Type
+(14314, 4415, 3), -- Weapon Type
+(14314, 4416, 7), -- Races
+(14314, 5038, 7), -- Summon PVP Penalty
 -- Boxer the Unicorn
 (14315, 4121, 9), -- Summoned Monster Magic Protection
-(14315, 4408, 6), -- HP Very High
-(14315, 4409, 1), -- MP Increase (1x)
-(14315, 4410, 13), -- Slightly Strong P. Atk.
-(14315, 4411, 11), -- Average M. Atk.
-(14315, 4412, 12), -- Slightly Strong P. Def.
-(14315, 4413, 12), -- Slightly Strong M. Def.
-(14315, 4414, 2), -- Standard Type
-(14315, 4415, 3), -- One-handed Sword
-(14315, 4416, 7), -- Spirits
-(14315, 5038, 7), -- Servitor PvP Penalty
+(14315, 4408, 6), -- HP Modifiers
+(14315, 4409, 1), -- MP Modifiers
+(14315, 4410, 13), -- P. Atk. Modifiers
+(14315, 4411, 11), -- M. Atk. Modifiers
+(14315, 4412, 12), -- P. Def. Modifiers
+(14315, 4413, 12), -- M. Def. Modifiers
+(14315, 4414, 2), -- Armor Type
+(14315, 4415, 3), -- Weapon Type
+(14315, 4416, 7), -- Races
+(14315, 5038, 7), -- Summon PVP Penalty
 -- Boxer the Unicorn
 (14316, 4121, 9), -- Summoned Monster Magic Protection
-(14316, 4408, 6), -- HP Very High
-(14316, 4409, 1), -- MP Increase (1x)
-(14316, 4410, 13), -- Slightly Strong P. Atk.
-(14316, 4411, 11), -- Average M. Atk.
-(14316, 4412, 12), -- Slightly Strong P. Def.
-(14316, 4413, 12), -- Slightly Strong M. Def.
-(14316, 4414, 2), -- Standard Type
-(14316, 4415, 3), -- One-handed Sword
-(14316, 4416, 7), -- Spirits
-(14316, 5038, 7), -- Servitor PvP Penalty
+(14316, 4408, 6), -- HP Modifiers
+(14316, 4409, 1), -- MP Modifiers
+(14316, 4410, 13), -- P. Atk. Modifiers
+(14316, 4411, 11), -- M. Atk. Modifiers
+(14316, 4412, 12), -- P. Def. Modifiers
+(14316, 4413, 12), -- M. Def. Modifiers
+(14316, 4414, 2), -- Armor Type
+(14316, 4415, 3), -- Weapon Type
+(14316, 4416, 7), -- Races
+(14316, 5038, 7), -- Summon PVP Penalty
 -- Boxer the Unicorn
 (14317, 4121, 9), -- Summoned Monster Magic Protection
-(14317, 4408, 6), -- HP Very High
-(14317, 4409, 1), -- MP Increase (1x)
-(14317, 4410, 13), -- Slightly Strong P. Atk.
-(14317, 4411, 11), -- Average M. Atk.
-(14317, 4412, 12), -- Slightly Strong P. Def.
-(14317, 4413, 12), -- Slightly Strong M. Def.
-(14317, 4414, 2), -- Standard Type
-(14317, 4415, 3), -- One-handed Sword
-(14317, 4416, 7), -- Spirits
-(14317, 5038, 7), -- Servitor PvP Penalty
+(14317, 4408, 6), -- HP Modifiers
+(14317, 4409, 1), -- MP Modifiers
+(14317, 4410, 13), -- P. Atk. Modifiers
+(14317, 4411, 11), -- M. Atk. Modifiers
+(14317, 4412, 12), -- P. Def. Modifiers
+(14317, 4413, 12), -- M. Def. Modifiers
+(14317, 4414, 2), -- Armor Type
+(14317, 4415, 3), -- Weapon Type
+(14317, 4416, 7), -- Races
+(14317, 5038, 7), -- Summon PVP Penalty
 -- Boxer the Unicorn
 (14318, 4121, 9), -- Summoned Monster Magic Protection
-(14318, 4408, 6), -- HP Very High
-(14318, 4409, 1), -- MP Increase (1x)
-(14318, 4410, 13), -- Slightly Strong P. Atk.
-(14318, 4411, 11), -- Average M. Atk.
-(14318, 4412, 12), -- Slightly Strong P. Def.
-(14318, 4413, 12), -- Slightly Strong M. Def.
-(14318, 4414, 2), -- Standard Type
-(14318, 4415, 3), -- One-handed Sword
-(14318, 4416, 7), -- Spirits
-(14318, 5038, 7), -- Servitor PvP Penalty
+(14318, 4408, 6), -- HP Modifiers
+(14318, 4409, 1), -- MP Modifiers
+(14318, 4410, 13), -- P. Atk. Modifiers
+(14318, 4411, 11), -- M. Atk. Modifiers
+(14318, 4412, 12), -- P. Def. Modifiers
+(14318, 4413, 12), -- M. Def. Modifiers
+(14318, 4414, 2), -- Armor Type
+(14318, 4415, 3), -- Weapon Type
+(14318, 4416, 7), -- Races
+(14318, 5038, 7), -- Summon PVP Penalty
 -- Boxer the Unicorn
 (14319, 4121, 9), -- Summoned Monster Magic Protection
-(14319, 4408, 6), -- HP Very High
-(14319, 4409, 1), -- MP Increase (1x)
-(14319, 4410, 13), -- Slightly Strong P. Atk.
-(14319, 4411, 11), -- Average M. Atk.
-(14319, 4412, 12), -- Slightly Strong P. Def.
-(14319, 4413, 12), -- Slightly Strong M. Def.
-(14319, 4414, 2), -- Standard Type
-(14319, 4415, 3), -- One-handed Sword
-(14319, 4416, 7), -- Spirits
-(14319, 5038, 7), -- Servitor PvP Penalty
+(14319, 4408, 6), -- HP Modifiers
+(14319, 4409, 1), -- MP Modifiers
+(14319, 4410, 13), -- P. Atk. Modifiers
+(14319, 4411, 11), -- M. Atk. Modifiers
+(14319, 4412, 12), -- P. Def. Modifiers
+(14319, 4413, 12), -- M. Def. Modifiers
+(14319, 4414, 2), -- Armor Type
+(14319, 4415, 3), -- Weapon Type
+(14319, 4416, 7), -- Races
+(14319, 5038, 7), -- Summon PVP Penalty
 -- Boxer the Unicorn
 (14320, 4121, 9), -- Summoned Monster Magic Protection
-(14320, 4408, 6), -- HP Very High
-(14320, 4409, 1), -- MP Increase (1x)
-(14320, 4410, 13), -- Slightly Strong P. Atk.
-(14320, 4411, 11), -- Average M. Atk.
-(14320, 4412, 12), -- Slightly Strong P. Def.
-(14320, 4413, 12), -- Slightly Strong M. Def.
-(14320, 4414, 2), -- Standard Type
-(14320, 4415, 3), -- One-handed Sword
-(14320, 4416, 7), -- Spirits
-(14320, 5038, 7), -- Servitor PvP Penalty
+(14320, 4408, 6), -- HP Modifiers
+(14320, 4409, 1), -- MP Modifiers
+(14320, 4410, 13), -- P. Atk. Modifiers
+(14320, 4411, 11), -- M. Atk. Modifiers
+(14320, 4412, 12), -- P. Def. Modifiers
+(14320, 4413, 12), -- M. Def. Modifiers
+(14320, 4414, 2), -- Armor Type
+(14320, 4415, 3), -- Weapon Type
+(14320, 4416, 7), -- Races
+(14320, 5038, 7), -- Summon PVP Penalty
 -- Boxer the Unicorn
 (14321, 4121, 9), -- Summoned Monster Magic Protection
-(14321, 4408, 6), -- HP Very High
-(14321, 4409, 1), -- MP Increase (1x)
-(14321, 4410, 13), -- Slightly Strong P. Atk.
-(14321, 4411, 11), -- Average M. Atk.
-(14321, 4412, 12), -- Slightly Strong P. Def.
-(14321, 4413, 12), -- Slightly Strong M. Def.
-(14321, 4414, 2), -- Standard Type
-(14321, 4415, 3), -- One-handed Sword
-(14321, 4416, 7), -- Spirits
-(14321, 5038, 7), -- Servitor PvP Penalty
+(14321, 4408, 6), -- HP Modifiers
+(14321, 4409, 1), -- MP Modifiers
+(14321, 4410, 13), -- P. Atk. Modifiers
+(14321, 4411, 11), -- M. Atk. Modifiers
+(14321, 4412, 12), -- P. Def. Modifiers
+(14321, 4413, 12), -- M. Def. Modifiers
+(14321, 4414, 2), -- Armor Type
+(14321, 4415, 3), -- Weapon Type
+(14321, 4416, 7), -- Races
+(14321, 5038, 7), -- Summon PVP Penalty
 -- Boxer the Unicorn
 (14322, 4121, 9), -- Summoned Monster Magic Protection
-(14322, 4408, 6), -- HP Very High
-(14322, 4409, 1), -- MP Increase (1x)
-(14322, 4410, 13), -- Slightly Strong P. Atk.
-(14322, 4411, 11), -- Average M. Atk.
-(14322, 4412, 12), -- Slightly Strong P. Def.
-(14322, 4413, 12), -- Slightly Strong M. Def.
-(14322, 4414, 2), -- Standard Type
-(14322, 4415, 3), -- One-handed Sword
-(14322, 4416, 7), -- Spirits
-(14322, 5038, 7), -- Servitor PvP Penalty
+(14322, 4408, 6), -- HP Modifiers
+(14322, 4409, 1), -- MP Modifiers
+(14322, 4410, 13), -- P. Atk. Modifiers
+(14322, 4411, 11), -- M. Atk. Modifiers
+(14322, 4412, 12), -- P. Def. Modifiers
+(14322, 4413, 12), -- M. Def. Modifiers
+(14322, 4414, 2), -- Armor Type
+(14322, 4415, 3), -- Weapon Type
+(14322, 4416, 7), -- Races
+(14322, 5038, 7), -- Summon PVP Penalty
 -- Boxer the Unicorn
 (14323, 4121, 9), -- Summoned Monster Magic Protection
-(14323, 4408, 6), -- HP Very High
-(14323, 4409, 1), -- MP Increase (1x)
-(14323, 4410, 13), -- Slightly Strong P. Atk.
-(14323, 4411, 11), -- Average M. Atk.
-(14323, 4412, 12), -- Slightly Strong P. Def.
-(14323, 4413, 12), -- Slightly Strong M. Def.
-(14323, 4414, 2), -- Standard Type
-(14323, 4415, 3), -- One-handed Sword
-(14323, 4416, 7), -- Spirits
-(14323, 5038, 7), -- Servitor PvP Penalty
+(14323, 4408, 6), -- HP Modifiers
+(14323, 4409, 1), -- MP Modifiers
+(14323, 4410, 13), -- P. Atk. Modifiers
+(14323, 4411, 11), -- M. Atk. Modifiers
+(14323, 4412, 12), -- P. Def. Modifiers
+(14323, 4413, 12), -- M. Def. Modifiers
+(14323, 4414, 2), -- Armor Type
+(14323, 4415, 3), -- Weapon Type
+(14323, 4416, 7), -- Races
+(14323, 5038, 7), -- Summon PVP Penalty
 -- Boxer the Unicorn
 (14324, 4121, 9), -- Summoned Monster Magic Protection
-(14324, 4408, 6), -- HP Very High
-(14324, 4409, 1), -- MP Increase (1x)
-(14324, 4410, 13), -- Slightly Strong P. Atk.
-(14324, 4411, 11), -- Average M. Atk.
-(14324, 4412, 12), -- Slightly Strong P. Def.
-(14324, 4413, 12), -- Slightly Strong M. Def.
-(14324, 4414, 2), -- Standard Type
-(14324, 4415, 3), -- One-handed Sword
-(14324, 4416, 7), -- Spirits
-(14324, 5038, 7), -- Servitor PvP Penalty
+(14324, 4408, 6), -- HP Modifiers
+(14324, 4409, 1), -- MP Modifiers
+(14324, 4410, 13), -- P. Atk. Modifiers
+(14324, 4411, 11), -- M. Atk. Modifiers
+(14324, 4412, 12), -- P. Def. Modifiers
+(14324, 4413, 12), -- M. Def. Modifiers
+(14324, 4414, 2), -- Armor Type
+(14324, 4415, 3), -- Weapon Type
+(14324, 4416, 7), -- Races
+(14324, 5038, 7), -- Summon PVP Penalty
 -- Boxer the Unicorn
 (14325, 4121, 9), -- Summoned Monster Magic Protection
-(14325, 4408, 6), -- HP Very High
-(14325, 4409, 1), -- MP Increase (1x)
-(14325, 4410, 13), -- Slightly Strong P. Atk.
-(14325, 4411, 11), -- Average M. Atk.
-(14325, 4412, 12), -- Slightly Strong P. Def.
-(14325, 4413, 12), -- Slightly Strong M. Def.
-(14325, 4414, 2), -- Standard Type
-(14325, 4415, 3), -- One-handed Sword
-(14325, 4416, 7), -- Spirits
-(14325, 5038, 7), -- Servitor PvP Penalty
+(14325, 4408, 6), -- HP Modifiers
+(14325, 4409, 1), -- MP Modifiers
+(14325, 4410, 13), -- P. Atk. Modifiers
+(14325, 4411, 11), -- M. Atk. Modifiers
+(14325, 4412, 12), -- P. Def. Modifiers
+(14325, 4413, 12), -- M. Def. Modifiers
+(14325, 4414, 2), -- Armor Type
+(14325, 4415, 3), -- Weapon Type
+(14325, 4416, 7), -- Races
+(14325, 5038, 7), -- Summon PVP Penalty
 -- Boxer the Unicorn
 (14326, 4121, 9), -- Summoned Monster Magic Protection
-(14326, 4408, 6), -- HP Very High
-(14326, 4409, 1), -- MP Increase (1x)
-(14326, 4410, 13), -- Slightly Strong P. Atk.
-(14326, 4411, 11), -- Average M. Atk.
-(14326, 4412, 12), -- Slightly Strong P. Def.
-(14326, 4413, 12), -- Slightly Strong M. Def.
-(14326, 4414, 2), -- Standard Type
-(14326, 4415, 3), -- One-handed Sword
-(14326, 4416, 7), -- Spirits
-(14326, 5038, 7), -- Servitor PvP Penalty
+(14326, 4408, 6), -- HP Modifiers
+(14326, 4409, 1), -- MP Modifiers
+(14326, 4410, 13), -- P. Atk. Modifiers
+(14326, 4411, 11), -- M. Atk. Modifiers
+(14326, 4412, 12), -- P. Def. Modifiers
+(14326, 4413, 12), -- M. Def. Modifiers
+(14326, 4414, 2), -- Armor Type
+(14326, 4415, 3), -- Weapon Type
+(14326, 4416, 7), -- Races
+(14326, 5038, 7), -- Summon PVP Penalty
 -- Boxer the Unicorn
 (14327, 4121, 9), -- Summoned Monster Magic Protection
-(14327, 4408, 6), -- HP Very High
-(14327, 4409, 1), -- MP Increase (1x)
-(14327, 4410, 13), -- Slightly Strong P. Atk.
-(14327, 4411, 11), -- Average M. Atk.
-(14327, 4412, 12), -- Slightly Strong P. Def.
-(14327, 4413, 12), -- Slightly Strong M. Def.
-(14327, 4414, 2), -- Standard Type
-(14327, 4415, 3), -- One-handed Sword
-(14327, 4416, 7), -- Spirits
-(14327, 5038, 7), -- Servitor PvP Penalty
+(14327, 4408, 6), -- HP Modifiers
+(14327, 4409, 1), -- MP Modifiers
+(14327, 4410, 13), -- P. Atk. Modifiers
+(14327, 4411, 11), -- M. Atk. Modifiers
+(14327, 4412, 12), -- P. Def. Modifiers
+(14327, 4413, 12), -- M. Def. Modifiers
+(14327, 4414, 2), -- Armor Type
+(14327, 4415, 3), -- Weapon Type
+(14327, 4416, 7), -- Races
+(14327, 5038, 7), -- Summon PVP Penalty
 -- Boxer the Unicorn
 (14328, 4121, 9), -- Summoned Monster Magic Protection
-(14328, 4408, 6), -- HP Very High
-(14328, 4409, 1), -- MP Increase (1x)
-(14328, 4410, 13), -- Slightly Strong P. Atk.
-(14328, 4411, 11), -- Average M. Atk.
-(14328, 4412, 12), -- Slightly Strong P. Def.
-(14328, 4413, 12), -- Slightly Strong M. Def.
-(14328, 4414, 2), -- Standard Type
-(14328, 4415, 3), -- One-handed Sword
-(14328, 4416, 7), -- Spirits
-(14328, 5038, 7), -- Servitor PvP Penalty
+(14328, 4408, 6), -- HP Modifiers
+(14328, 4409, 1), -- MP Modifiers
+(14328, 4410, 13), -- P. Atk. Modifiers
+(14328, 4411, 11), -- M. Atk. Modifiers
+(14328, 4412, 12), -- P. Def. Modifiers
+(14328, 4413, 12), -- M. Def. Modifiers
+(14328, 4414, 2), -- Armor Type
+(14328, 4415, 3), -- Weapon Type
+(14328, 4416, 7), -- Races
+(14328, 5038, 7), -- Summon PVP Penalty
 -- Boxer the Unicorn
 (14329, 4121, 9), -- Summoned Monster Magic Protection
-(14329, 4408, 6), -- HP Very High
-(14329, 4409, 1), -- MP Increase (1x)
-(14329, 4410, 13), -- Slightly Strong P. Atk.
-(14329, 4411, 11), -- Average M. Atk.
-(14329, 4412, 12), -- Slightly Strong P. Def.
-(14329, 4413, 12), -- Slightly Strong M. Def.
-(14329, 4414, 2), -- Standard Type
-(14329, 4415, 3), -- One-handed Sword
-(14329, 4416, 7), -- Spirits
-(14329, 5038, 7), -- Servitor PvP Penalty
+(14329, 4408, 6), -- HP Modifiers
+(14329, 4409, 1), -- MP Modifiers
+(14329, 4410, 13), -- P. Atk. Modifiers
+(14329, 4411, 11), -- M. Atk. Modifiers
+(14329, 4412, 12), -- P. Def. Modifiers
+(14329, 4413, 12), -- M. Def. Modifiers
+(14329, 4414, 2), -- Armor Type
+(14329, 4415, 3), -- Weapon Type
+(14329, 4416, 7), -- Races
+(14329, 5038, 7), -- Summon PVP Penalty
 -- Boxer the Unicorn
 (14330, 4121, 9), -- Summoned Monster Magic Protection
-(14330, 4408, 6), -- HP Very High
-(14330, 4409, 1), -- MP Increase (1x)
-(14330, 4410, 13), -- Slightly Strong P. Atk.
-(14330, 4411, 11), -- Average M. Atk.
-(14330, 4412, 12), -- Slightly Strong P. Def.
-(14330, 4413, 12), -- Slightly Strong M. Def.
-(14330, 4414, 2), -- Standard Type
-(14330, 4415, 3), -- One-handed Sword
-(14330, 4416, 7), -- Spirits
-(14330, 5038, 7), -- Servitor PvP Penalty
+(14330, 4408, 6), -- HP Modifiers
+(14330, 4409, 1), -- MP Modifiers
+(14330, 4410, 13), -- P. Atk. Modifiers
+(14330, 4411, 11), -- M. Atk. Modifiers
+(14330, 4412, 12), -- P. Def. Modifiers
+(14330, 4413, 12), -- M. Def. Modifiers
+(14330, 4414, 2), -- Armor Type
+(14330, 4415, 3), -- Weapon Type
+(14330, 4416, 7), -- Races
+(14330, 5038, 7), -- Summon PVP Penalty
 -- Boxer the Unicorn
 (14331, 4121, 9), -- Summoned Monster Magic Protection
-(14331, 4408, 6), -- HP Very High
-(14331, 4409, 1), -- MP Increase (1x)
-(14331, 4410, 13), -- Slightly Strong P. Atk.
-(14331, 4411, 11), -- Average M. Atk.
-(14331, 4412, 12), -- Slightly Strong P. Def.
-(14331, 4413, 12), -- Slightly Strong M. Def.
-(14331, 4414, 2), -- Standard Type
-(14331, 4415, 3), -- One-handed Sword
-(14331, 4416, 7), -- Spirits
-(14331, 5038, 7), -- Servitor PvP Penalty
+(14331, 4408, 6), -- HP Modifiers
+(14331, 4409, 1), -- MP Modifiers
+(14331, 4410, 13), -- P. Atk. Modifiers
+(14331, 4411, 11), -- M. Atk. Modifiers
+(14331, 4412, 12), -- P. Def. Modifiers
+(14331, 4413, 12), -- M. Def. Modifiers
+(14331, 4414, 2), -- Armor Type
+(14331, 4415, 3), -- Weapon Type
+(14331, 4416, 7), -- Races
+(14331, 5038, 7), -- Summon PVP Penalty
 -- Boxer the Unicorn
 (14332, 4121, 9), -- Summoned Monster Magic Protection
-(14332, 4408, 6), -- HP Very High
-(14332, 4409, 1), -- MP Increase (1x)
-(14332, 4410, 13), -- Slightly Strong P. Atk.
-(14332, 4411, 11), -- Average M. Atk.
-(14332, 4412, 12), -- Slightly Strong P. Def.
-(14332, 4413, 12), -- Slightly Strong M. Def.
-(14332, 4414, 2), -- Standard Type
-(14332, 4415, 3), -- One-handed Sword
-(14332, 4416, 7), -- Spirits
-(14332, 5038, 7), -- Servitor PvP Penalty
+(14332, 4408, 6), -- HP Modifiers
+(14332, 4409, 1), -- MP Modifiers
+(14332, 4410, 13), -- P. Atk. Modifiers
+(14332, 4411, 11), -- M. Atk. Modifiers
+(14332, 4412, 12), -- P. Def. Modifiers
+(14332, 4413, 12), -- M. Def. Modifiers
+(14332, 4414, 2), -- Armor Type
+(14332, 4415, 3), -- Weapon Type
+(14332, 4416, 7), -- Races
+(14332, 5038, 7), -- Summon PVP Penalty
 -- Boxer the Unicorn
 (14333, 4121, 9), -- Summoned Monster Magic Protection
-(14333, 4408, 6), -- HP Very High
-(14333, 4409, 1), -- MP Increase (1x)
-(14333, 4410, 13), -- Slightly Strong P. Atk.
-(14333, 4411, 11), -- Average M. Atk.
-(14333, 4412, 12), -- Slightly Strong P. Def.
-(14333, 4413, 12), -- Slightly Strong M. Def.
-(14333, 4414, 2), -- Standard Type
-(14333, 4415, 3), -- One-handed Sword
-(14333, 4416, 7), -- Spirits
-(14333, 5038, 7), -- Servitor PvP Penalty
+(14333, 4408, 6), -- HP Modifiers
+(14333, 4409, 1), -- MP Modifiers
+(14333, 4410, 13), -- P. Atk. Modifiers
+(14333, 4411, 11), -- M. Atk. Modifiers
+(14333, 4412, 12), -- P. Def. Modifiers
+(14333, 4413, 12), -- M. Def. Modifiers
+(14333, 4414, 2), -- Armor Type
+(14333, 4415, 3), -- Weapon Type
+(14333, 4416, 7), -- Races
+(14333, 5038, 7), -- Summon PVP Penalty
 -- Boxer the Unicorn
 (14334, 4121, 9), -- Summoned Monster Magic Protection
-(14334, 4408, 6), -- HP Very High
-(14334, 4409, 1), -- MP Increase (1x)
-(14334, 4410, 13), -- Slightly Strong P. Atk.
-(14334, 4411, 11), -- Average M. Atk.
-(14334, 4412, 12), -- Slightly Strong P. Def.
-(14334, 4413, 12), -- Slightly Strong M. Def.
-(14334, 4414, 2), -- Standard Type
-(14334, 4415, 3), -- One-handed Sword
-(14334, 4416, 7), -- Spirits
-(14334, 5038, 7), -- Servitor PvP Penalty
+(14334, 4408, 6), -- HP Modifiers
+(14334, 4409, 1), -- MP Modifiers
+(14334, 4410, 13), -- P. Atk. Modifiers
+(14334, 4411, 11), -- M. Atk. Modifiers
+(14334, 4412, 12), -- P. Def. Modifiers
+(14334, 4413, 12), -- M. Def. Modifiers
+(14334, 4414, 2), -- Armor Type
+(14334, 4415, 3), -- Weapon Type
+(14334, 4416, 7), -- Races
+(14334, 5038, 7), -- Summon PVP Penalty
 -- Boxer the Unicorn
 (14335, 4121, 9), -- Summoned Monster Magic Protection
-(14335, 4408, 6), -- HP Very High
-(14335, 4409, 1), -- MP Increase (1x)
-(14335, 4410, 13), -- Slightly Strong P. Atk.
-(14335, 4411, 11), -- Average M. Atk.
-(14335, 4412, 12), -- Slightly Strong P. Def.
-(14335, 4413, 12), -- Slightly Strong M. Def.
-(14335, 4414, 2), -- Standard Type
-(14335, 4415, 3), -- One-handed Sword
-(14335, 4416, 7), -- Spirits
-(14335, 5038, 7), -- Servitor PvP Penalty
+(14335, 4408, 6), -- HP Modifiers
+(14335, 4409, 1), -- MP Modifiers
+(14335, 4410, 13), -- P. Atk. Modifiers
+(14335, 4411, 11), -- M. Atk. Modifiers
+(14335, 4412, 12), -- P. Def. Modifiers
+(14335, 4413, 12), -- M. Def. Modifiers
+(14335, 4414, 2), -- Armor Type
+(14335, 4415, 3), -- Weapon Type
+(14335, 4416, 7), -- Races
+(14335, 5038, 7), -- Summon PVP Penalty
 -- Boxer the Unicorn
 (14336, 4121, 9), -- Summoned Monster Magic Protection
-(14336, 4408, 6), -- HP Very High
-(14336, 4409, 1), -- MP Increase (1x)
-(14336, 4410, 13), -- Slightly Strong P. Atk.
-(14336, 4411, 11), -- Average M. Atk.
-(14336, 4412, 12), -- Slightly Strong P. Def.
-(14336, 4413, 12), -- Slightly Strong M. Def.
-(14336, 4414, 2), -- Standard Type
-(14336, 4415, 3), -- One-handed Sword
-(14336, 4416, 7), -- Spirits
-(14336, 5038, 7), -- Servitor PvP Penalty
+(14336, 4408, 6), -- HP Modifiers
+(14336, 4409, 1), -- MP Modifiers
+(14336, 4410, 13), -- P. Atk. Modifiers
+(14336, 4411, 11), -- M. Atk. Modifiers
+(14336, 4412, 12), -- P. Def. Modifiers
+(14336, 4413, 12), -- M. Def. Modifiers
+(14336, 4414, 2), -- Armor Type
+(14336, 4415, 3), -- Weapon Type
+(14336, 4416, 7), -- Races
+(14336, 5038, 7), -- Summon PVP Penalty
 -- Boxer the Unicorn
 (14337, 4121, 9), -- Summoned Monster Magic Protection
-(14337, 4408, 6), -- HP Very High
-(14337, 4409, 1), -- MP Increase (1x)
-(14337, 4410, 13), -- Slightly Strong P. Atk.
-(14337, 4411, 11), -- Average M. Atk.
-(14337, 4412, 12), -- Slightly Strong P. Def.
-(14337, 4413, 12), -- Slightly Strong M. Def.
-(14337, 4414, 2), -- Standard Type
-(14337, 4415, 3), -- One-handed Sword
-(14337, 4416, 7), -- Spirits
-(14337, 5038, 7), -- Servitor PvP Penalty
+(14337, 4408, 6), -- HP Modifiers
+(14337, 4409, 1), -- MP Modifiers
+(14337, 4410, 13), -- P. Atk. Modifiers
+(14337, 4411, 11), -- M. Atk. Modifiers
+(14337, 4412, 12), -- P. Def. Modifiers
+(14337, 4413, 12), -- M. Def. Modifiers
+(14337, 4414, 2), -- Armor Type
+(14337, 4415, 3), -- Weapon Type
+(14337, 4416, 7), -- Races
+(14337, 5038, 7), -- Summon PVP Penalty
 -- Boxer the Unicorn
 (14338, 4121, 9), -- Summoned Monster Magic Protection
-(14338, 4408, 6), -- HP Very High
-(14338, 4409, 1), -- MP Increase (1x)
-(14338, 4410, 13), -- Slightly Strong P. Atk.
-(14338, 4411, 11), -- Average M. Atk.
-(14338, 4412, 12), -- Slightly Strong P. Def.
-(14338, 4413, 12), -- Slightly Strong M. Def.
-(14338, 4414, 2), -- Standard Type
-(14338, 4415, 3), -- One-handed Sword
-(14338, 4416, 7), -- Spirits
-(14338, 5038, 7), -- Servitor PvP Penalty
+(14338, 4408, 6), -- HP Modifiers
+(14338, 4409, 1), -- MP Modifiers
+(14338, 4410, 13), -- P. Atk. Modifiers
+(14338, 4411, 11), -- M. Atk. Modifiers
+(14338, 4412, 12), -- P. Def. Modifiers
+(14338, 4413, 12), -- M. Def. Modifiers
+(14338, 4414, 2), -- Armor Type
+(14338, 4415, 3), -- Weapon Type
+(14338, 4416, 7), -- Races
+(14338, 5038, 7), -- Summon PVP Penalty
 -- Boxer the Unicorn
 (14339, 4121, 9), -- Summoned Monster Magic Protection
-(14339, 4408, 6), -- HP Very High
-(14339, 4409, 1), -- MP Increase (1x)
-(14339, 4410, 13), -- Slightly Strong P. Atk.
-(14339, 4411, 11), -- Average M. Atk.
-(14339, 4412, 12), -- Slightly Strong P. Def.
-(14339, 4413, 12), -- Slightly Strong M. Def.
-(14339, 4414, 2), -- Standard Type
-(14339, 4415, 3), -- One-handed Sword
-(14339, 4416, 7), -- Spirits
-(14339, 5038, 7), -- Servitor PvP Penalty
+(14339, 4408, 6), -- HP Modifiers
+(14339, 4409, 1), -- MP Modifiers
+(14339, 4410, 13), -- P. Atk. Modifiers
+(14339, 4411, 11), -- M. Atk. Modifiers
+(14339, 4412, 12), -- P. Def. Modifiers
+(14339, 4413, 12), -- M. Def. Modifiers
+(14339, 4414, 2), -- Armor Type
+(14339, 4415, 3), -- Weapon Type
+(14339, 4416, 7), -- Races
+(14339, 5038, 7), -- Summon PVP Penalty
 -- Boxer the Unicorn
 (14340, 4121, 9), -- Summoned Monster Magic Protection
-(14340, 4408, 6), -- HP Very High
-(14340, 4409, 1), -- MP Increase (1x)
-(14340, 4410, 13), -- Slightly Strong P. Atk.
-(14340, 4411, 11), -- Average M. Atk.
-(14340, 4412, 12), -- Slightly Strong P. Def.
-(14340, 4413, 12), -- Slightly Strong M. Def.
-(14340, 4414, 2), -- Standard Type
-(14340, 4415, 3), -- One-handed Sword
-(14340, 4416, 7), -- Spirits
-(14340, 5038, 7), -- Servitor PvP Penalty
+(14340, 4408, 6), -- HP Modifiers
+(14340, 4409, 1), -- MP Modifiers
+(14340, 4410, 13), -- P. Atk. Modifiers
+(14340, 4411, 11), -- M. Atk. Modifiers
+(14340, 4412, 12), -- P. Def. Modifiers
+(14340, 4413, 12), -- M. Def. Modifiers
+(14340, 4414, 2), -- Armor Type
+(14340, 4415, 3), -- Weapon Type
+(14340, 4416, 7), -- Races
+(14340, 5038, 7), -- Summon PVP Penalty
 -- Boxer the Unicorn
 (14341, 4121, 9), -- Summoned Monster Magic Protection
-(14341, 4408, 6), -- HP Very High
-(14341, 4409, 1), -- MP Increase (1x)
-(14341, 4410, 13), -- Slightly Strong P. Atk.
-(14341, 4411, 11), -- Average M. Atk.
-(14341, 4412, 12), -- Slightly Strong P. Def.
-(14341, 4413, 12), -- Slightly Strong M. Def.
-(14341, 4414, 2), -- Standard Type
-(14341, 4415, 3), -- One-handed Sword
-(14341, 4416, 7), -- Spirits
-(14341, 5038, 7), -- Servitor PvP Penalty
+(14341, 4408, 6), -- HP Modifiers
+(14341, 4409, 1), -- MP Modifiers
+(14341, 4410, 13), -- P. Atk. Modifiers
+(14341, 4411, 11), -- M. Atk. Modifiers
+(14341, 4412, 12), -- P. Def. Modifiers
+(14341, 4413, 12), -- M. Def. Modifiers
+(14341, 4414, 2), -- Armor Type
+(14341, 4415, 3), -- Weapon Type
+(14341, 4416, 7), -- Races
+(14341, 5038, 7), -- Summon PVP Penalty
 -- Boxer the Unicorn
 (14342, 4121, 9), -- Summoned Monster Magic Protection
-(14342, 4408, 6), -- HP Very High
-(14342, 4409, 1), -- MP Increase (1x)
-(14342, 4410, 13), -- Slightly Strong P. Atk.
-(14342, 4411, 11), -- Average M. Atk.
-(14342, 4412, 12), -- Slightly Strong P. Def.
-(14342, 4413, 12), -- Slightly Strong M. Def.
-(14342, 4414, 2), -- Standard Type
-(14342, 4415, 3), -- One-handed Sword
-(14342, 4416, 7), -- Spirits
-(14342, 5038, 7), -- Servitor PvP Penalty
+(14342, 4408, 6), -- HP Modifiers
+(14342, 4409, 1), -- MP Modifiers
+(14342, 4410, 13), -- P. Atk. Modifiers
+(14342, 4411, 11), -- M. Atk. Modifiers
+(14342, 4412, 12), -- P. Def. Modifiers
+(14342, 4413, 12), -- M. Def. Modifiers
+(14342, 4414, 2), -- Armor Type
+(14342, 4415, 3), -- Weapon Type
+(14342, 4416, 7), -- Races
+(14342, 5038, 7), -- Summon PVP Penalty
 -- Mirage the Unicorn
 (14343, 4121, 9), -- Summoned Monster Magic Protection
-(14343, 4408, 6), -- HP Very High
-(14343, 4409, 1), -- MP Increase (1x)
-(14343, 4410, 12), -- Slightly Strong P. Atk.
-(14343, 4411, 12), -- Slightly Strong M. Atk.
-(14343, 4412, 11), -- Average P. Def.
-(14343, 4413, 11), -- Average M. Def.
-(14343, 4414, 2), -- Standard Type
-(14343, 4415, 3), -- One-handed Sword
-(14343, 4416, 7), -- Spirits
-(14343, 5038, 7), -- Servitor PvP Penalty
+(14343, 4408, 6), -- HP Modifiers
+(14343, 4409, 1), -- MP Modifiers
+(14343, 4410, 12), -- P. Atk. Modifiers
+(14343, 4411, 12), -- M. Atk. Modifiers
+(14343, 4412, 11), -- P. Def. Modifiers
+(14343, 4413, 11), -- M. Def. Modifiers
+(14343, 4414, 2), -- Armor Type
+(14343, 4415, 3), -- Weapon Type
+(14343, 4416, 7), -- Races
+(14343, 5038, 7), -- Summon PVP Penalty
 -- Mirage the Unicorn 
 (14344, 4121, 9), -- Summoned Monster Magic Protection
-(14344, 4408, 6), -- HP Very High
-(14344, 4409, 1), -- MP Increase (1x)
-(14344, 4410, 12), -- Slightly Strong P. Atk.
-(14344, 4411, 12), -- Slightly Strong M. Atk.
-(14344, 4412, 11), -- Average P. Def.
-(14344, 4413, 11), -- Average M. Def.
-(14344, 4414, 2), -- Standard Type
-(14344, 4415, 3), -- One-handed Sword
-(14344, 4416, 7), -- Spirits
-(14344, 5038, 7), -- Servitor PvP Penalty
+(14344, 4408, 6), -- HP Modifiers
+(14344, 4409, 1), -- MP Modifiers
+(14344, 4410, 12), -- P. Atk. Modifiers
+(14344, 4411, 12), -- M. Atk. Modifiers
+(14344, 4412, 11), -- P. Def. Modifiers
+(14344, 4413, 11), -- M. Def. Modifiers
+(14344, 4414, 2), -- Armor Type
+(14344, 4415, 3), -- Weapon Type
+(14344, 4416, 7), -- Races
+(14344, 5038, 7), -- Summon PVP Penalty
 -- Mirage the Unicorn
 (14345, 4121, 9), -- Summoned Monster Magic Protection
-(14345, 4408, 6), -- HP Very High
-(14345, 4409, 1), -- MP Increase (1x)
-(14345, 4410, 12), -- Slightly Strong P. Atk.
-(14345, 4411, 12), -- Slightly Strong M. Atk.
-(14345, 4412, 11), -- Average P. Def.
-(14345, 4413, 11), -- Average M. Def.
-(14345, 4414, 2), -- Standard Type
-(14345, 4415, 3), -- One-handed Sword
-(14345, 4416, 7), -- Spirits
-(14345, 5038, 7), -- Servitor PvP Penalty
+(14345, 4408, 6), -- HP Modifiers
+(14345, 4409, 1), -- MP Modifiers
+(14345, 4410, 12), -- P. Atk. Modifiers
+(14345, 4411, 12), -- M. Atk. Modifiers
+(14345, 4412, 11), -- P. Def. Modifiers
+(14345, 4413, 11), -- M. Def. Modifiers
+(14345, 4414, 2), -- Armor Type
+(14345, 4415, 3), -- Weapon Type
+(14345, 4416, 7), -- Races
+(14345, 5038, 7), -- Summon PVP Penalty
 -- Mirage the Unicorn 
 (14346, 4121, 9), -- Summoned Monster Magic Protection
-(14346, 4408, 6), -- HP Very High
-(14346, 4409, 1), -- MP Increase (1x)
-(14346, 4410, 12), -- Slightly Strong P. Atk.
-(14346, 4411, 12), -- Slightly Strong M. Atk.
-(14346, 4412, 11), -- Average P. Def.
-(14346, 4413, 11), -- Average M. Def.
-(14346, 4414, 2), -- Standard Type
-(14346, 4415, 3), -- One-handed Sword
-(14346, 4416, 7), -- Spirits
-(14346, 5038, 7), -- Servitor PvP Penalty
+(14346, 4408, 6), -- HP Modifiers
+(14346, 4409, 1), -- MP Modifiers
+(14346, 4410, 12), -- P. Atk. Modifiers
+(14346, 4411, 12), -- M. Atk. Modifiers
+(14346, 4412, 11), -- P. Def. Modifiers
+(14346, 4413, 11), -- M. Def. Modifiers
+(14346, 4414, 2), -- Armor Type
+(14346, 4415, 3), -- Weapon Type
+(14346, 4416, 7), -- Races
+(14346, 5038, 7), -- Summon PVP Penalty
 -- Mirage the Unicorn
 (14347, 4121, 9), -- Summoned Monster Magic Protection
-(14347, 4408, 6), -- HP Very High
-(14347, 4409, 1), -- MP Increase (1x)
-(14347, 4410, 12), -- Slightly Strong P. Atk.
-(14347, 4411, 12), -- Slightly Strong M. Atk.
-(14347, 4412, 12), -- Slightly Strong P. Def.
-(14347, 4413, 12), -- Slightly Strong M. Def.
-(14347, 4414, 2), -- Standard Type
-(14347, 4415, 3), -- One-handed Sword
-(14347, 4416, 7), -- Spirits
-(14347, 5038, 7), -- Servitor PvP Penalty
+(14347, 4408, 6), -- HP Modifiers
+(14347, 4409, 1), -- MP Modifiers
+(14347, 4410, 12), -- P. Atk. Modifiers
+(14347, 4411, 12), -- M. Atk. Modifiers
+(14347, 4412, 12), -- P. Def. Modifiers
+(14347, 4413, 12), -- M. Def. Modifiers
+(14347, 4414, 2), -- Armor Type
+(14347, 4415, 3), -- Weapon Type
+(14347, 4416, 7), -- Races
+(14347, 5038, 7), -- Summon PVP Penalty
 -- Mirage the Unicorn 
 (14348, 4121, 9), -- Summoned Monster Magic Protection
-(14348, 4408, 6), -- HP Very High
-(14348, 4409, 1), -- MP Increase (1x)
-(14348, 4410, 12), -- Slightly Strong P. Atk.
-(14348, 4411, 12), -- Slightly Strong M. Atk.
-(14348, 4412, 12), -- Slightly Strong P. Def.
-(14348, 4413, 12), -- Slightly Strong M. Def.
-(14348, 4414, 2), -- Standard Type
-(14348, 4415, 3), -- One-handed Sword
-(14348, 4416, 7), -- Spirits
-(14348, 5038, 7), -- Servitor PvP Penalty
+(14348, 4408, 6), -- HP Modifiers
+(14348, 4409, 1), -- MP Modifiers
+(14348, 4410, 12), -- P. Atk. Modifiers
+(14348, 4411, 12), -- M. Atk. Modifiers
+(14348, 4412, 12), -- P. Def. Modifiers
+(14348, 4413, 12), -- M. Def. Modifiers
+(14348, 4414, 2), -- Armor Type
+(14348, 4415, 3), -- Weapon Type
+(14348, 4416, 7), -- Races
+(14348, 5038, 7), -- Summon PVP Penalty
 -- Mirage the Unicorn
 (14349, 4121, 9), -- Summoned Monster Magic Protection
-(14349, 4408, 6), -- HP Very High
-(14349, 4409, 1), -- MP Increase (1x)
-(14349, 4410, 12), -- Slightly Strong P. Atk.
-(14349, 4411, 12), -- Slightly Strong M. Atk.
-(14349, 4412, 12), -- Slightly Strong P. Def.
-(14349, 4413, 12), -- Slightly Strong M. Def.
-(14349, 4414, 2), -- Standard Type
-(14349, 4415, 3), -- One-handed Sword
-(14349, 4416, 7), -- Spirits
-(14349, 5038, 7), -- Servitor PvP Penalty
+(14349, 4408, 6), -- HP Modifiers
+(14349, 4409, 1), -- MP Modifiers
+(14349, 4410, 12), -- P. Atk. Modifiers
+(14349, 4411, 12), -- M. Atk. Modifiers
+(14349, 4412, 12), -- P. Def. Modifiers
+(14349, 4413, 12), -- M. Def. Modifiers
+(14349, 4414, 2), -- Armor Type
+(14349, 4415, 3), -- Weapon Type
+(14349, 4416, 7), -- Races
+(14349, 5038, 7), -- Summon PVP Penalty
 -- Mirage the Unicorn
 (14350, 4121, 9), -- Summoned Monster Magic Protection
-(14350, 4408, 6), -- HP Very High
-(14350, 4409, 1), -- MP Increase (1x)
-(14350, 4410, 12), -- Slightly Strong P. Atk.
-(14350, 4411, 12), -- Slightly Strong M. Atk.
-(14350, 4412, 12), -- Slightly Strong P. Def.
-(14350, 4413, 12), -- Slightly Strong M. Def.
-(14350, 4414, 2), -- Standard Type
-(14350, 4415, 3), -- One-handed Sword
-(14350, 4416, 7), -- Spirits
-(14350, 5038, 7), -- Servitor PvP Penalty
+(14350, 4408, 6), -- HP Modifiers
+(14350, 4409, 1), -- MP Modifiers
+(14350, 4410, 12), -- P. Atk. Modifiers
+(14350, 4411, 12), -- M. Atk. Modifiers
+(14350, 4412, 12), -- P. Def. Modifiers
+(14350, 4413, 12), -- M. Def. Modifiers
+(14350, 4414, 2), -- Armor Type
+(14350, 4415, 3), -- Weapon Type
+(14350, 4416, 7), -- Races
+(14350, 5038, 7), -- Summon PVP Penalty
 -- Mirage the Unicorn
 (14351, 4121, 9), -- Summoned Monster Magic Protection
-(14351, 4408, 6), -- HP Very High
-(14351, 4409, 1), -- MP Increase (1x)
-(14351, 4410, 12), -- Slightly Strong P. Atk.
-(14351, 4411, 12), -- Slightly Strong M. Atk.
-(14351, 4412, 12), -- Slightly Strong P. Def.
-(14351, 4413, 12), -- Slightly Strong M. Def.
-(14351, 4414, 2), -- Standard Type
-(14351, 4415, 3), -- One-handed Sword
-(14351, 4416, 7), -- Spirits
-(14351, 5038, 7), -- Servitor PvP Penalty
+(14351, 4408, 6), -- HP Modifiers
+(14351, 4409, 1), -- MP Modifiers
+(14351, 4410, 12), -- P. Atk. Modifiers
+(14351, 4411, 12), -- M. Atk. Modifiers
+(14351, 4412, 12), -- P. Def. Modifiers
+(14351, 4413, 12), -- M. Def. Modifiers
+(14351, 4414, 2), -- Armor Type
+(14351, 4415, 3), -- Weapon Type
+(14351, 4416, 7), -- Races
+(14351, 5038, 7), -- Summon PVP Penalty
 -- Mirage the Unicorn
 (14352, 4121, 9), -- Summoned Monster Magic Protection
-(14352, 4408, 6), -- HP Very High
-(14352, 4409, 1), -- MP Increase (1x)
-(14352, 4410, 12), -- Slightly Strong P. Atk.
-(14352, 4411, 12), -- Slightly Strong M. Atk.
-(14352, 4412, 12), -- Slightly Strong P. Def.
-(14352, 4413, 12), -- Slightly Strong M. Def.
-(14352, 4414, 2), -- Standard Type
-(14352, 4415, 3), -- One-handed Sword
-(14352, 4416, 7), -- Spirits
-(14352, 5038, 7), -- Servitor PvP Penalty
+(14352, 4408, 6), -- HP Modifiers
+(14352, 4409, 1), -- MP Modifiers
+(14352, 4410, 12), -- P. Atk. Modifiers
+(14352, 4411, 12), -- M. Atk. Modifiers
+(14352, 4412, 12), -- P. Def. Modifiers
+(14352, 4413, 12), -- M. Def. Modifiers
+(14352, 4414, 2), -- Armor Type
+(14352, 4415, 3), -- Weapon Type
+(14352, 4416, 7), -- Races
+(14352, 5038, 7), -- Summon PVP Penalty
 -- Mirage the Unicorn
 (14353, 4121, 9), -- Summoned Monster Magic Protection
-(14353, 4408, 6), -- HP Very High
-(14353, 4409, 1), -- MP Increase (1x)
-(14353, 4410, 12), -- Slightly Strong P. Atk.
-(14353, 4411, 12), -- Slightly Strong M. Atk.
-(14353, 4412, 12), -- Slightly Strong P. Def.
-(14353, 4413, 12), -- Slightly Strong M. Def.
-(14353, 4414, 2), -- Standard Type
-(14353, 4415, 3), -- One-handed Sword
-(14353, 4416, 7), -- Spirits
-(14353, 5038, 7), -- Servitor PvP Penalty
+(14353, 4408, 6), -- HP Modifiers
+(14353, 4409, 1), -- MP Modifiers
+(14353, 4410, 12), -- P. Atk. Modifiers
+(14353, 4411, 12), -- M. Atk. Modifiers
+(14353, 4412, 12), -- P. Def. Modifiers
+(14353, 4413, 12), -- M. Def. Modifiers
+(14353, 4414, 2), -- Armor Type
+(14353, 4415, 3), -- Weapon Type
+(14353, 4416, 7), -- Races
+(14353, 5038, 7), -- Summon PVP Penalty
 -- Mirage the Unicorn
 (14354, 4121, 9), -- Summoned Monster Magic Protection
-(14354, 4408, 6), -- HP Very High
-(14354, 4409, 1), -- MP Increase (1x)
-(14354, 4410, 12), -- Slightly Strong P. Atk.
-(14354, 4411, 12), -- Slightly Strong M. Atk.
-(14354, 4412, 12), -- Slightly Strong P. Def.
-(14354, 4413, 12), -- Slightly Strong M. Def.
-(14354, 4414, 2), -- Standard Type
-(14354, 4415, 3), -- One-handed Sword
-(14354, 4416, 7), -- Spirits
-(14354, 5038, 7), -- Servitor PvP Penalty
+(14354, 4408, 6), -- HP Modifiers
+(14354, 4409, 1), -- MP Modifiers
+(14354, 4410, 12), -- P. Atk. Modifiers
+(14354, 4411, 12), -- M. Atk. Modifiers
+(14354, 4412, 12), -- P. Def. Modifiers
+(14354, 4413, 12), -- M. Def. Modifiers
+(14354, 4414, 2), -- Armor Type
+(14354, 4415, 3), -- Weapon Type
+(14354, 4416, 7), -- Races
+(14354, 5038, 7), -- Summon PVP Penalty
 -- Mirage the Unicorn
 (14355, 4121, 9), -- Summoned Monster Magic Protection
-(14355, 4408, 6), -- HP Very High
-(14355, 4409, 1), -- MP Increase (1x)
-(14355, 4410, 12), -- Slightly Strong P. Atk.
-(14355, 4411, 12), -- Slightly Strong M. Atk.
-(14355, 4412, 12), -- Slightly Strong P. Def.
-(14355, 4413, 12), -- Slightly Strong M. Def.
-(14355, 4414, 2), -- Standard Type
-(14355, 4415, 3), -- One-handed Sword
-(14355, 4416, 7), -- Spirits
-(14355, 5038, 7), -- Servitor PvP Penalty
+(14355, 4408, 6), -- HP Modifiers
+(14355, 4409, 1), -- MP Modifiers
+(14355, 4410, 12), -- P. Atk. Modifiers
+(14355, 4411, 12), -- M. Atk. Modifiers
+(14355, 4412, 12), -- P. Def. Modifiers
+(14355, 4413, 12), -- M. Def. Modifiers
+(14355, 4414, 2), -- Armor Type
+(14355, 4415, 3), -- Weapon Type
+(14355, 4416, 7), -- Races
+(14355, 5038, 7), -- Summon PVP Penalty
 -- Mirage the Unicorn
 (14356, 4121, 9), -- Summoned Monster Magic Protection
-(14356, 4408, 6), -- HP Very High
-(14356, 4409, 1), -- MP Increase (1x)
-(14356, 4410, 12), -- Slightly Strong P. Atk.
-(14356, 4411, 12), -- Slightly Strong M. Atk.
-(14356, 4412, 12), -- Slightly Strong P. Def.
-(14356, 4413, 12), -- Slightly Strong M. Def.
-(14356, 4414, 2), -- Standard Type
-(14356, 4415, 3), -- One-handed Sword
-(14356, 4416, 7), -- Spirits
-(14356, 5038, 7), -- Servitor PvP Penalty
+(14356, 4408, 6), -- HP Modifiers
+(14356, 4409, 1), -- MP Modifiers
+(14356, 4410, 12), -- P. Atk. Modifiers
+(14356, 4411, 12), -- M. Atk. Modifiers
+(14356, 4412, 12), -- P. Def. Modifiers
+(14356, 4413, 12), -- M. Def. Modifiers
+(14356, 4414, 2), -- Armor Type
+(14356, 4415, 3), -- Weapon Type
+(14356, 4416, 7), -- Races
+(14356, 5038, 7), -- Summon PVP Penalty
 -- Mirage the Unicorn
 (14357, 4121, 9), -- Summoned Monster Magic Protection
-(14357, 4408, 6), -- HP Very High
-(14357, 4409, 1), -- MP Increase (1x)
-(14357, 4410, 12), -- Slightly Strong P. Atk.
-(14357, 4411, 12), -- Slightly Strong M. Atk.
-(14357, 4412, 12), -- Slightly Strong P. Def.
-(14357, 4413, 12), -- Slightly Strong M. Def.
-(14357, 4414, 2), -- Standard Type
-(14357, 4415, 3), -- One-handed Sword
-(14357, 4416, 7), -- Spirits
-(14357, 5038, 7), -- Servitor PvP Penalty
+(14357, 4408, 6), -- HP Modifiers
+(14357, 4409, 1), -- MP Modifiers
+(14357, 4410, 12), -- P. Atk. Modifiers
+(14357, 4411, 12), -- M. Atk. Modifiers
+(14357, 4412, 12), -- P. Def. Modifiers
+(14357, 4413, 12), -- M. Def. Modifiers
+(14357, 4414, 2), -- Armor Type
+(14357, 4415, 3), -- Weapon Type
+(14357, 4416, 7), -- Races
+(14357, 5038, 7), -- Summon PVP Penalty
 -- Mirage the Unicorn
 (14358, 4121, 9), -- Summoned Monster Magic Protection
-(14358, 4408, 6), -- HP Very High
-(14358, 4409, 1), -- MP Increase (1x)
-(14358, 4410, 12), -- Slightly Strong P. Atk.
-(14358, 4411, 12), -- Slightly Strong M. Atk.
-(14358, 4412, 12), -- Slightly Strong P. Def.
-(14358, 4413, 12), -- Slightly Strong M. Def.
-(14358, 4414, 2), -- Standard Type
-(14358, 4415, 3), -- One-handed Sword
-(14358, 4416, 7), -- Spirits
-(14358, 5038, 7), -- Servitor PvP Penalty
+(14358, 4408, 6), -- HP Modifiers
+(14358, 4409, 1), -- MP Modifiers
+(14358, 4410, 12), -- P. Atk. Modifiers
+(14358, 4411, 12), -- M. Atk. Modifiers
+(14358, 4412, 12), -- P. Def. Modifiers
+(14358, 4413, 12), -- M. Def. Modifiers
+(14358, 4414, 2), -- Armor Type
+(14358, 4415, 3), -- Weapon Type
+(14358, 4416, 7), -- Races
+(14358, 5038, 7), -- Summon PVP Penalty
 -- Mirage the Unicorn
 (14359, 4121, 9), -- Summoned Monster Magic Protection
-(14359, 4408, 6), -- HP Very High
-(14359, 4409, 1), -- MP Increase (1x)
-(14359, 4410, 12), -- Slightly Strong P. Atk.
-(14359, 4411, 12), -- Slightly Strong M. Atk.
-(14359, 4412, 12), -- Slightly Strong P. Def.
-(14359, 4413, 12), -- Slightly Strong M. Def.
-(14359, 4414, 2), -- Standard Type
-(14359, 4415, 3), -- One-handed Sword
-(14359, 4416, 7), -- Spirits
-(14359, 5038, 7), -- Servitor PvP Penalty
+(14359, 4408, 6), -- HP Modifiers
+(14359, 4409, 1), -- MP Modifiers
+(14359, 4410, 12), -- P. Atk. Modifiers
+(14359, 4411, 12), -- M. Atk. Modifiers
+(14359, 4412, 12), -- P. Def. Modifiers
+(14359, 4413, 12), -- M. Def. Modifiers
+(14359, 4414, 2), -- Armor Type
+(14359, 4415, 3), -- Weapon Type
+(14359, 4416, 7), -- Races
+(14359, 5038, 7), -- Summon PVP Penalty
 -- Mirage the Unicorn
 (14360, 4121, 9), -- Summoned Monster Magic Protection
-(14360, 4408, 6), -- HP Very High
-(14360, 4409, 1), -- MP Increase (1x)
-(14360, 4410, 12), -- Slightly Strong P. Atk.
-(14360, 4411, 12), -- Slightly Strong M. Atk.
-(14360, 4412, 12), -- Slightly Strong P. Def.
-(14360, 4413, 12), -- Slightly Strong M. Def.
-(14360, 4414, 2), -- Standard Type
-(14360, 4415, 3), -- One-handed Sword
-(14360, 4416, 7), -- Spirits
-(14360, 5038, 7), -- Servitor PvP Penalty
+(14360, 4408, 6), -- HP Modifiers
+(14360, 4409, 1), -- MP Modifiers
+(14360, 4410, 12), -- P. Atk. Modifiers
+(14360, 4411, 12), -- M. Atk. Modifiers
+(14360, 4412, 12), -- P. Def. Modifiers
+(14360, 4413, 12), -- M. Def. Modifiers
+(14360, 4414, 2), -- Armor Type
+(14360, 4415, 3), -- Weapon Type
+(14360, 4416, 7), -- Races
+(14360, 5038, 7), -- Summon PVP Penalty
 -- Mirage the Unicorn 
 (14361, 4121, 9), -- Summoned Monster Magic Protection
-(14361, 4408, 6), -- HP Very High
-(14361, 4409, 1), -- MP Increase (1x)
-(14361, 4410, 12), -- Slightly Strong P. Atk.
-(14361, 4411, 12), -- Slightly Strong M. Atk.
-(14361, 4412, 12), -- Slightly Strong P. Def.
-(14361, 4413, 12), -- Slightly Strong M. Def.
-(14361, 4414, 2), -- Standard Type
-(14361, 4415, 3), -- One-handed Sword
-(14361, 4416, 7), -- Spirits
-(14361, 5038, 7), -- Servitor PvP Penalty
+(14361, 4408, 6), -- HP Modifiers
+(14361, 4409, 1), -- MP Modifiers
+(14361, 4410, 12), -- P. Atk. Modifiers
+(14361, 4411, 12), -- M. Atk. Modifiers
+(14361, 4412, 12), -- P. Def. Modifiers
+(14361, 4413, 12), -- M. Def. Modifiers
+(14361, 4414, 2), -- Armor Type
+(14361, 4415, 3), -- Weapon Type
+(14361, 4416, 7), -- Races
+(14361, 5038, 7), -- Summon PVP Penalty
 -- Mirage the Unicorn 
 (14362, 4121, 9), -- Summoned Monster Magic Protection
-(14362, 4408, 6), -- HP Very High
-(14362, 4409, 1), -- MP Increase (1x)
-(14362, 4410, 12), -- Slightly Strong P. Atk.
-(14362, 4411, 12), -- Slightly Strong M. Atk.
-(14362, 4412, 12), -- Slightly Strong P. Def.
-(14362, 4413, 12), -- Slightly Strong M. Def.
-(14362, 4414, 2), -- Standard Type
-(14362, 4415, 3), -- One-handed Sword
-(14362, 4416, 7), -- Spirits
-(14362, 5038, 7), -- Servitor PvP Penalty
+(14362, 4408, 6), -- HP Modifiers
+(14362, 4409, 1), -- MP Modifiers
+(14362, 4410, 12), -- P. Atk. Modifiers
+(14362, 4411, 12), -- M. Atk. Modifiers
+(14362, 4412, 12), -- P. Def. Modifiers
+(14362, 4413, 12), -- M. Def. Modifiers
+(14362, 4414, 2), -- Armor Type
+(14362, 4415, 3), -- Weapon Type
+(14362, 4416, 7), -- Races
+(14362, 5038, 7), -- Summon PVP Penalty
 -- Mirage the Unicorn 
 (14363, 4121, 9), -- Summoned Monster Magic Protection
-(14363, 4408, 6), -- HP Very High
-(14363, 4409, 1), -- MP Increase (1x)
-(14363, 4410, 12), -- Slightly Strong P. Atk.
-(14363, 4411, 12), -- Slightly Strong M. Atk.
-(14363, 4412, 12), -- Slightly Strong P. Def.
-(14363, 4413, 12), -- Slightly Strong M. Def.
-(14363, 4414, 2), -- Standard Type
-(14363, 4415, 3), -- One-handed Sword
-(14363, 4416, 7), -- Spirits
-(14363, 5038, 7), -- Servitor PvP Penalty
+(14363, 4408, 6), -- HP Modifiers
+(14363, 4409, 1), -- MP Modifiers
+(14363, 4410, 12), -- P. Atk. Modifiers
+(14363, 4411, 12), -- M. Atk. Modifiers
+(14363, 4412, 12), -- P. Def. Modifiers
+(14363, 4413, 12), -- M. Def. Modifiers
+(14363, 4414, 2), -- Armor Type
+(14363, 4415, 3), -- Weapon Type
+(14363, 4416, 7), -- Races
+(14363, 5038, 7), -- Summon PVP Penalty
 -- Mirage the Unicorn 
 (14364, 4121, 9), -- Summoned Monster Magic Protection
-(14364, 4408, 6), -- HP Very High
-(14364, 4409, 1), -- MP Increase (1x)
-(14364, 4410, 12), -- Slightly Strong P. Atk.
-(14364, 4411, 12), -- Slightly Strong M. Atk.
-(14364, 4412, 12), -- Slightly Strong P. Def.
-(14364, 4413, 12), -- Slightly Strong M. Def.
-(14364, 4414, 2), -- Standard Type
-(14364, 4415, 3), -- One-handed Sword
-(14364, 4416, 7), -- Spirits
-(14364, 5038, 7), -- Servitor PvP Penalty
+(14364, 4408, 6), -- HP Modifiers
+(14364, 4409, 1), -- MP Modifiers
+(14364, 4410, 12), -- P. Atk. Modifiers
+(14364, 4411, 12), -- M. Atk. Modifiers
+(14364, 4412, 12), -- P. Def. Modifiers
+(14364, 4413, 12), -- M. Def. Modifiers
+(14364, 4414, 2), -- Armor Type
+(14364, 4415, 3), -- Weapon Type
+(14364, 4416, 7), -- Races
+(14364, 5038, 7), -- Summon PVP Penalty
 -- Mirage the Unicorn 
 (14365, 4121, 9), -- Summoned Monster Magic Protection
-(14365, 4408, 6), -- HP Very High
-(14365, 4409, 1), -- MP Increase (1x)
-(14365, 4410, 12), -- Slightly Strong P. Atk.
-(14365, 4411, 12), -- Slightly Strong M. Atk.
-(14365, 4412, 12), -- Slightly Strong P. Def.
-(14365, 4413, 12), -- Slightly Strong M. Def.
-(14365, 4414, 2), -- Standard Type
-(14365, 4415, 3), -- One-handed Sword
-(14365, 4416, 7), -- Spirits
-(14365, 5038, 7), -- Servitor PvP Penalty
+(14365, 4408, 6), -- HP Modifiers
+(14365, 4409, 1), -- MP Modifiers
+(14365, 4410, 12), -- P. Atk. Modifiers
+(14365, 4411, 12), -- M. Atk. Modifiers
+(14365, 4412, 12), -- P. Def. Modifiers
+(14365, 4413, 12), -- M. Def. Modifiers
+(14365, 4414, 2), -- Armor Type
+(14365, 4415, 3), -- Weapon Type
+(14365, 4416, 7), -- Races
+(14365, 5038, 7), -- Summon PVP Penalty
 -- Mirage the Unicorn 
 (14366, 4121, 9), -- Summoned Monster Magic Protection
-(14366, 4408, 6), -- HP Very High
-(14366, 4409, 1), -- MP Increase (1x)
-(14366, 4410, 12), -- Slightly Strong P. Atk.
-(14366, 4411, 12), -- Slightly Strong M. Atk.
-(14366, 4412, 12), -- Slightly Strong P. Def.
-(14366, 4413, 12), -- Slightly Strong M. Def.
-(14366, 4414, 2), -- Standard Type
-(14366, 4415, 3), -- One-handed Sword
-(14366, 4416, 7), -- Spirits
-(14366, 5038, 7), -- Servitor PvP Penalty
+(14366, 4408, 6), -- HP Modifiers
+(14366, 4409, 1), -- MP Modifiers
+(14366, 4410, 12), -- P. Atk. Modifiers
+(14366, 4411, 12), -- M. Atk. Modifiers
+(14366, 4412, 12), -- P. Def. Modifiers
+(14366, 4413, 12), -- M. Def. Modifiers
+(14366, 4414, 2), -- Armor Type
+(14366, 4415, 3), -- Weapon Type
+(14366, 4416, 7), -- Races
+(14366, 5038, 7), -- Summon PVP Penalty
 -- Mirage the Unicorn 
 (14367, 4121, 9), -- Summoned Monster Magic Protection
-(14367, 4408, 6), -- HP Very High
-(14367, 4409, 1), -- MP Increase (1x)
-(14367, 4410, 12), -- Slightly Strong P. Atk.
-(14367, 4411, 12), -- Slightly Strong M. Atk.
-(14367, 4412, 12), -- Slightly Strong P. Def.
-(14367, 4413, 12), -- Slightly Strong M. Def.
-(14367, 4414, 2), -- Standard Type
-(14367, 4415, 3), -- One-handed Sword
-(14367, 4416, 7), -- Spirits
-(14367, 5038, 7), -- Servitor PvP Penalty
+(14367, 4408, 6), -- HP Modifiers
+(14367, 4409, 1), -- MP Modifiers
+(14367, 4410, 12), -- P. Atk. Modifiers
+(14367, 4411, 12), -- M. Atk. Modifiers
+(14367, 4412, 12), -- P. Def. Modifiers
+(14367, 4413, 12), -- M. Def. Modifiers
+(14367, 4414, 2), -- Armor Type
+(14367, 4415, 3), -- Weapon Type
+(14367, 4416, 7), -- Races
+(14367, 5038, 7), -- Summon PVP Penalty
 -- Mirage the Unicorn 
 (14368, 4121, 9), -- Summoned Monster Magic Protection
-(14368, 4408, 6), -- HP Very High
-(14368, 4409, 1), -- MP Increase (1x)
-(14368, 4410, 12), -- Slightly Strong P. Atk.
-(14368, 4411, 12), -- Slightly Strong M. Atk.
-(14368, 4412, 12), -- Slightly Strong P. Def.
-(14368, 4413, 12), -- Slightly Strong M. Def.
-(14368, 4414, 2), -- Standard Type
-(14368, 4415, 3), -- One-handed Sword
-(14368, 4416, 7), -- Spirits
-(14368, 5038, 7), -- Servitor PvP Penalty
+(14368, 4408, 6), -- HP Modifiers
+(14368, 4409, 1), -- MP Modifiers
+(14368, 4410, 12), -- P. Atk. Modifiers
+(14368, 4411, 12), -- M. Atk. Modifiers
+(14368, 4412, 12), -- P. Def. Modifiers
+(14368, 4413, 12), -- M. Def. Modifiers
+(14368, 4414, 2), -- Armor Type
+(14368, 4415, 3), -- Weapon Type
+(14368, 4416, 7), -- Races
+(14368, 5038, 7), -- Summon PVP Penalty
 -- Mirage the Unicorn 
 (14369, 4121, 9), -- Summoned Monster Magic Protection
-(14369, 4408, 6), -- HP Very High
-(14369, 4409, 1), -- MP Increase (1x)
-(14369, 4410, 12), -- Slightly Strong P. Atk.
-(14369, 4411, 12), -- Slightly Strong M. Atk.
-(14369, 4412, 12), -- Slightly Strong P. Def.
-(14369, 4413, 12), -- Slightly Strong M. Def.
-(14369, 4414, 2), -- Standard Type
-(14369, 4415, 3), -- One-handed Sword
-(14369, 4416, 7), -- Spirits
-(14369, 5038, 7), -- Servitor PvP Penalty
+(14369, 4408, 6), -- HP Modifiers
+(14369, 4409, 1), -- MP Modifiers
+(14369, 4410, 12), -- P. Atk. Modifiers
+(14369, 4411, 12), -- M. Atk. Modifiers
+(14369, 4412, 12), -- P. Def. Modifiers
+(14369, 4413, 12), -- M. Def. Modifiers
+(14369, 4414, 2), -- Armor Type
+(14369, 4415, 3), -- Weapon Type
+(14369, 4416, 7), -- Races
+(14369, 5038, 7), -- Summon PVP Penalty
 -- Mirage the Unicorn 
 (14370, 4121, 9), -- Summoned Monster Magic Protection
-(14370, 4408, 6), -- HP Very High
-(14370, 4409, 1), -- MP Increase (1x)
-(14370, 4410, 12), -- Slightly Strong P. Atk.
-(14370, 4411, 12), -- Slightly Strong M. Atk.
-(14370, 4412, 12), -- Slightly Strong P. Def.
-(14370, 4413, 12), -- Slightly Strong M. Def.
-(14370, 4414, 2), -- Standard Type
-(14370, 4415, 3), -- One-handed Sword
-(14370, 4416, 7), -- Spirits
-(14370, 5038, 7), -- Servitor PvP Penalty
+(14370, 4408, 6), -- HP Modifiers
+(14370, 4409, 1), -- MP Modifiers
+(14370, 4410, 12), -- P. Atk. Modifiers
+(14370, 4411, 12), -- M. Atk. Modifiers
+(14370, 4412, 12), -- P. Def. Modifiers
+(14370, 4413, 12), -- M. Def. Modifiers
+(14370, 4414, 2), -- Armor Type
+(14370, 4415, 3), -- Weapon Type
+(14370, 4416, 7), -- Races
+(14370, 5038, 7), -- Summon PVP Penalty
 -- Mirage the Unicorn 
 (14371, 4121, 9), -- Summoned Monster Magic Protection
-(14371, 4408, 6), -- HP Very High
-(14371, 4409, 1), -- MP Increase (1x)
-(14371, 4410, 12), -- Slightly Strong P. Atk.
-(14371, 4411, 12), -- Slightly Strong M. Atk.
-(14371, 4412, 12), -- Slightly Strong P. Def.
-(14371, 4413, 12), -- Slightly Strong M. Def.
-(14371, 4414, 2), -- Standard Type
-(14371, 4415, 3), -- One-handed Sword
-(14371, 4416, 7), -- Spirits
-(14371, 5038, 7), -- Servitor PvP Penalty
+(14371, 4408, 6), -- HP Modifiers
+(14371, 4409, 1), -- MP Modifiers
+(14371, 4410, 12), -- P. Atk. Modifiers
+(14371, 4411, 12), -- M. Atk. Modifiers
+(14371, 4412, 12), -- P. Def. Modifiers
+(14371, 4413, 12), -- M. Def. Modifiers
+(14371, 4414, 2), -- Armor Type
+(14371, 4415, 3), -- Weapon Type
+(14371, 4416, 7), -- Races
+(14371, 5038, 7), -- Summon PVP Penalty
 -- Mirage the Unicorn 
 (14372, 4121, 9), -- Summoned Monster Magic Protection
-(14372, 4408, 6), -- HP Very High
-(14372, 4409, 1), -- MP Increase (1x)
-(14372, 4410, 12), -- Slightly Strong P. Atk.
-(14372, 4411, 12), -- Slightly Strong M. Atk.
-(14372, 4412, 12), -- Slightly Strong P. Def.
-(14372, 4413, 12), -- Slightly Strong M. Def.
-(14372, 4414, 2), -- Standard Type
-(14372, 4415, 3), -- One-handed Sword
-(14372, 4416, 7), -- Spirits
-(14372, 5038, 7), -- Servitor PvP Penalty
+(14372, 4408, 6), -- HP Modifiers
+(14372, 4409, 1), -- MP Modifiers
+(14372, 4410, 12), -- P. Atk. Modifiers
+(14372, 4411, 12), -- M. Atk. Modifiers
+(14372, 4412, 12), -- P. Def. Modifiers
+(14372, 4413, 12), -- M. Def. Modifiers
+(14372, 4414, 2), -- Armor Type
+(14372, 4415, 3), -- Weapon Type
+(14372, 4416, 7), -- Races
+(14372, 5038, 7), -- Summon PVP Penalty
 -- Mirage the Unicorn 
 (14373, 4121, 9), -- Summoned Monster Magic Protection
-(14373, 4408, 6), -- HP Very High
-(14373, 4409, 1), -- MP Increase (1x)
-(14373, 4410, 12), -- Slightly Strong P. Atk.
-(14373, 4411, 12), -- Slightly Strong M. Atk.
-(14373, 4412, 12), -- Slightly Strong P. Def.
-(14373, 4413, 12), -- Slightly Strong M. Def.
-(14373, 4414, 2), -- Standard Type
-(14373, 4415, 3), -- One-handed Sword
-(14373, 4416, 7), -- Spirits
-(14373, 5038, 7), -- Servitor PvP Penalty
+(14373, 4408, 6), -- HP Modifiers
+(14373, 4409, 1), -- MP Modifiers
+(14373, 4410, 12), -- P. Atk. Modifiers
+(14373, 4411, 12), -- M. Atk. Modifiers
+(14373, 4412, 12), -- P. Def. Modifiers
+(14373, 4413, 12), -- M. Def. Modifiers
+(14373, 4414, 2), -- Armor Type
+(14373, 4415, 3), -- Weapon Type
+(14373, 4416, 7), -- Races
+(14373, 5038, 7), -- Summon PVP Penalty
 -- Mirage the Unicorn 
 (14374, 4121, 9), -- Summoned Monster Magic Protection
-(14374, 4408, 6), -- HP Very High
-(14374, 4409, 1), -- MP Increase (1x)
-(14374, 4410, 12), -- Slightly Strong P. Atk.
-(14374, 4411, 12), -- Slightly Strong M. Atk.
-(14374, 4412, 12), -- Slightly Strong P. Def.
-(14374, 4413, 12), -- Slightly Strong M. Def.
-(14374, 4414, 2), -- Standard Type
-(14374, 4415, 3), -- One-handed Sword
-(14374, 4416, 7), -- Spirits
-(14374, 5038, 7), -- Servitor PvP Penalty
+(14374, 4408, 6), -- HP Modifiers
+(14374, 4409, 1), -- MP Modifiers
+(14374, 4410, 12), -- P. Atk. Modifiers
+(14374, 4411, 12), -- M. Atk. Modifiers
+(14374, 4412, 12), -- P. Def. Modifiers
+(14374, 4413, 12), -- M. Def. Modifiers
+(14374, 4414, 2), -- Armor Type
+(14374, 4415, 3), -- Weapon Type
+(14374, 4416, 7), -- Races
+(14374, 5038, 7), -- Summon PVP Penalty
 -- Mirage the Unicorn 
 (14375, 4121, 9), -- Summoned Monster Magic Protection
-(14375, 4408, 6), -- HP Very High
-(14375, 4409, 1), -- MP Increase (1x)
-(14375, 4410, 12), -- Slightly Strong P. Atk.
-(14375, 4411, 12), -- Slightly Strong M. Atk.
-(14375, 4412, 12), -- Slightly Strong P. Def.
-(14375, 4413, 12), -- Slightly Strong M. Def.
-(14375, 4414, 2), -- Standard Type
-(14375, 4415, 3), -- One-handed Sword
-(14375, 4416, 7), -- Spirits
-(14375, 5038, 7), -- Servitor PvP Penalty
+(14375, 4408, 6), -- HP Modifiers
+(14375, 4409, 1), -- MP Modifiers
+(14375, 4410, 12), -- P. Atk. Modifiers
+(14375, 4411, 12), -- M. Atk. Modifiers
+(14375, 4412, 12), -- P. Def. Modifiers
+(14375, 4413, 12), -- M. Def. Modifiers
+(14375, 4414, 2), -- Armor Type
+(14375, 4415, 3), -- Weapon Type
+(14375, 4416, 7), -- Races
+(14375, 5038, 7), -- Summon PVP Penalty
 -- Mirage the Unicorn 
 (14376, 4121, 9), -- Summoned Monster Magic Protection
-(14376, 4408, 6), -- HP Very High
-(14376, 4409, 1), -- MP Increase (1x)
-(14376, 4410, 12), -- Slightly Strong P. Atk.
-(14376, 4411, 12), -- Slightly Strong M. Atk.
-(14376, 4412, 12), -- Slightly Strong P. Def.
-(14376, 4413, 12), -- Slightly Strong M. Def.
-(14376, 4414, 2), -- Standard Type
-(14376, 4415, 3), -- One-handed Sword
-(14376, 4416, 7), -- Spirits
-(14376, 5038, 7), -- Servitor PvP Penalty
+(14376, 4408, 6), -- HP Modifiers
+(14376, 4409, 1), -- MP Modifiers
+(14376, 4410, 12), -- P. Atk. Modifiers
+(14376, 4411, 12), -- M. Atk. Modifiers
+(14376, 4412, 12), -- P. Def. Modifiers
+(14376, 4413, 12), -- M. Def. Modifiers
+(14376, 4414, 2), -- Armor Type
+(14376, 4415, 3), -- Weapon Type
+(14376, 4416, 7), -- Races
+(14376, 5038, 7), -- Summon PVP Penalty
 -- Mirage the Unicorn 
 (14377, 4121, 9), -- Summoned Monster Magic Protection
-(14377, 4408, 6), -- HP Very High
-(14377, 4409, 1), -- MP Increase (1x)
-(14377, 4410, 12), -- Slightly Strong P. Atk.
-(14377, 4411, 12), -- Slightly Strong M. Atk.
-(14377, 4412, 12), -- Slightly Strong P. Def.
-(14377, 4413, 12), -- Slightly Strong M. Def.
-(14377, 4414, 2), -- Standard Type
-(14377, 4415, 3), -- One-handed Sword
-(14377, 4416, 7), -- Spirits
-(14377, 5038, 7), -- Servitor PvP Penalty
+(14377, 4408, 6), -- HP Modifiers
+(14377, 4409, 1), -- MP Modifiers
+(14377, 4410, 12), -- P. Atk. Modifiers
+(14377, 4411, 12), -- M. Atk. Modifiers
+(14377, 4412, 12), -- P. Def. Modifiers
+(14377, 4413, 12), -- M. Def. Modifiers
+(14377, 4414, 2), -- Armor Type
+(14377, 4415, 3), -- Weapon Type
+(14377, 4416, 7), -- Races
+(14377, 5038, 7), -- Summon PVP Penalty
 -- Mirage the Unicorn 
 (14378, 4121, 9), -- Summoned Monster Magic Protection
-(14378, 4408, 6), -- HP Very High
-(14378, 4409, 1), -- MP Increase (1x)
-(14378, 4410, 12), -- Slightly Strong P. Atk.
-(14378, 4411, 12), -- Slightly Strong M. Atk.
-(14378, 4412, 12), -- Slightly Strong P. Def.
-(14378, 4413, 12), -- Slightly Strong M. Def.
-(14378, 4414, 2), -- Standard Type
-(14378, 4415, 3), -- One-handed Sword
-(14378, 4416, 7), -- Spirits
-(14378, 5038, 7), -- Servitor PvP Penalty
+(14378, 4408, 6), -- HP Modifiers
+(14378, 4409, 1), -- MP Modifiers
+(14378, 4410, 12), -- P. Atk. Modifiers
+(14378, 4411, 12), -- M. Atk. Modifiers
+(14378, 4412, 12), -- P. Def. Modifiers
+(14378, 4413, 12), -- M. Def. Modifiers
+(14378, 4414, 2), -- Armor Type
+(14378, 4415, 3), -- Weapon Type
+(14378, 4416, 7), -- Races
+(14378, 5038, 7), -- Summon PVP Penalty
 -- Mirage the Unicorn 
 (14379, 4121, 9), -- Summoned Monster Magic Protection
-(14379, 4408, 6), -- HP Very High
-(14379, 4409, 1), -- MP Increase (1x)
-(14379, 4410, 12), -- Slightly Strong P. Atk.
-(14379, 4411, 12), -- Slightly Strong M. Atk.
-(14379, 4412, 12), -- Slightly Strong P. Def.
-(14379, 4413, 12), -- Slightly Strong M. Def.
-(14379, 4414, 2), -- Standard Type
-(14379, 4415, 3), -- One-handed Sword
-(14379, 4416, 7), -- Spirits
-(14379, 5038, 7), -- Servitor PvP Penalty
+(14379, 4408, 6), -- HP Modifiers
+(14379, 4409, 1), -- MP Modifiers
+(14379, 4410, 12), -- P. Atk. Modifiers
+(14379, 4411, 12), -- M. Atk. Modifiers
+(14379, 4412, 12), -- P. Def. Modifiers
+(14379, 4413, 12), -- M. Def. Modifiers
+(14379, 4414, 2), -- Armor Type
+(14379, 4415, 3), -- Weapon Type
+(14379, 4416, 7), -- Races
+(14379, 5038, 7), -- Summon PVP Penalty
 -- Mirage the Unicorn 
 (14380, 4121, 9), -- Summoned Monster Magic Protection
-(14380, 4408, 6), -- HP Very High
-(14380, 4409, 1), -- MP Increase (1x)
-(14380, 4410, 12), -- Slightly Strong P. Atk.
-(14380, 4411, 12), -- Slightly Strong M. Atk.
-(14380, 4412, 12), -- Slightly Strong P. Def.
-(14380, 4413, 12), -- Slightly Strong M. Def.
-(14380, 4414, 2), -- Standard Type
-(14380, 4415, 3), -- One-handed Sword
-(14380, 4416, 7), -- Spirits
-(14380, 5038, 7), -- Servitor PvP Penalty
+(14380, 4408, 6), -- HP Modifiers
+(14380, 4409, 1), -- MP Modifiers
+(14380, 4410, 12), -- P. Atk. Modifiers
+(14380, 4411, 12), -- M. Atk. Modifiers
+(14380, 4412, 12), -- P. Def. Modifiers
+(14380, 4413, 12), -- M. Def. Modifiers
+(14380, 4414, 2), -- Armor Type
+(14380, 4415, 3), -- Weapon Type
+(14380, 4416, 7), -- Races
+(14380, 5038, 7), -- Summon PVP Penalty
 -- Mirage the Unicorn 
 (14381, 4121, 9), -- Summoned Monster Magic Protection
-(14381, 4408, 6), -- HP Very High
-(14381, 4409, 1), -- MP Increase (1x)
-(14381, 4410, 12), -- Slightly Strong P. Atk.
-(14381, 4411, 12), -- Slightly Strong M. Atk.
-(14381, 4412, 12), -- Slightly Strong P. Def.
-(14381, 4413, 12), -- Slightly Strong M. Def.
-(14381, 4414, 2), -- Standard Type
-(14381, 4415, 3), -- One-handed Sword
-(14381, 4416, 7), -- Spirits
-(14381, 5038, 7), -- Servitor PvP Penalty
+(14381, 4408, 6), -- HP Modifiers
+(14381, 4409, 1), -- MP Modifiers
+(14381, 4410, 12), -- P. Atk. Modifiers
+(14381, 4411, 12), -- M. Atk. Modifiers
+(14381, 4412, 12), -- P. Def. Modifiers
+(14381, 4413, 12), -- M. Def. Modifiers
+(14381, 4414, 2), -- Armor Type
+(14381, 4415, 3), -- Weapon Type
+(14381, 4416, 7), -- Races
+(14381, 5038, 7), -- Summon PVP Penalty
 -- Mirage the Unicorn 
 (14382, 4121, 9), -- Summoned Monster Magic Protection
-(14382, 4408, 6), -- HP Very High
-(14382, 4409, 1), -- MP Increase (1x)
-(14382, 4410, 12), -- Slightly Strong P. Atk.
-(14382, 4411, 12), -- Slightly Strong M. Atk.
-(14382, 4412, 12), -- Slightly Strong P. Def.
-(14382, 4413, 12), -- Slightly Strong M. Def.
-(14382, 4414, 2), -- Standard Type
-(14382, 4415, 3), -- One-handed Sword
-(14382, 4416, 7), -- Spirits
-(14382, 5038, 7), -- Servitor PvP Penalty
+(14382, 4408, 6), -- HP Modifiers
+(14382, 4409, 1), -- MP Modifiers
+(14382, 4410, 12), -- P. Atk. Modifiers
+(14382, 4411, 12), -- M. Atk. Modifiers
+(14382, 4412, 12), -- P. Def. Modifiers
+(14382, 4413, 12), -- M. Def. Modifiers
+(14382, 4414, 2), -- Armor Type
+(14382, 4415, 3), -- Weapon Type
+(14382, 4416, 7), -- Races
+(14382, 5038, 7), -- Summon PVP Penalty
 -- Mirage the Unicorn 
 (14383, 4121, 9), -- Summoned Monster Magic Protection
-(14383, 4408, 6), -- HP Very High
-(14383, 4409, 1), -- MP Increase (1x)
-(14383, 4410, 12), -- Slightly Strong P. Atk.
-(14383, 4411, 12), -- Slightly Strong M. Atk.
-(14383, 4412, 12), -- Slightly Strong P. Def.
-(14383, 4413, 12), -- Slightly Strong M. Def.
-(14383, 4414, 2), -- Standard Type
-(14383, 4415, 3), -- One-handed Sword
-(14383, 4416, 7), -- Spirits
-(14383, 5038, 7), -- Servitor PvP Penalty
+(14383, 4408, 6), -- HP Modifiers
+(14383, 4409, 1), -- MP Modifiers
+(14383, 4410, 12), -- P. Atk. Modifiers
+(14383, 4411, 12), -- M. Atk. Modifiers
+(14383, 4412, 12), -- P. Def. Modifiers
+(14383, 4413, 12), -- M. Def. Modifiers
+(14383, 4414, 2), -- Armor Type
+(14383, 4415, 3), -- Weapon Type
+(14383, 4416, 7), -- Races
+(14383, 5038, 7), -- Summon PVP Penalty
 -- Mirage the Unicorn 
 (14384, 4121, 9), -- Summoned Monster Magic Protection
-(14384, 4408, 6), -- HP Very High
-(14384, 4409, 1), -- MP Increase (1x)
-(14384, 4410, 12), -- Slightly Strong P. Atk.
-(14384, 4411, 12), -- Slightly Strong M. Atk.
-(14384, 4412, 12), -- Slightly Strong P. Def.
-(14384, 4413, 12), -- Slightly Strong M. Def.
-(14384, 4414, 2), -- Standard Type
-(14384, 4415, 3), -- One-handed Sword
-(14384, 4416, 7), -- Spirits
-(14384, 5038, 7), -- Servitor PvP Penalty
+(14384, 4408, 6), -- HP Modifiers
+(14384, 4409, 1), -- MP Modifiers
+(14384, 4410, 12), -- P. Atk. Modifiers
+(14384, 4411, 12), -- M. Atk. Modifiers
+(14384, 4412, 12), -- P. Def. Modifiers
+(14384, 4413, 12), -- M. Def. Modifiers
+(14384, 4414, 2), -- Armor Type
+(14384, 4415, 3), -- Weapon Type
+(14384, 4416, 7), -- Races
+(14384, 5038, 7), -- Summon PVP Penalty
 -- Mirage the Unicorn 
 (14385, 4121, 9), -- Summoned Monster Magic Protection
-(14385, 4408, 6), -- HP Very High
-(14385, 4409, 1), -- MP Increase (1x)
-(14385, 4410, 12), -- Slightly Strong P. Atk.
-(14385, 4411, 12), -- Slightly Strong M. Atk.
-(14385, 4412, 12), -- Slightly Strong P. Def.
-(14385, 4413, 12), -- Slightly Strong M. Def.
-(14385, 4414, 2), -- Standard Type
-(14385, 4415, 3), -- One-handed Sword
-(14385, 4416, 7), -- Spirits
-(14385, 5038, 7), -- Servitor PvP Penalty
+(14385, 4408, 6), -- HP Modifiers
+(14385, 4409, 1), -- MP Modifiers
+(14385, 4410, 12), -- P. Atk. Modifiers
+(14385, 4411, 12), -- M. Atk. Modifiers
+(14385, 4412, 12), -- P. Def. Modifiers
+(14385, 4413, 12), -- M. Def. Modifiers
+(14385, 4414, 2), -- Armor Type
+(14385, 4415, 3), -- Weapon Type
+(14385, 4416, 7), -- Races
+(14385, 5038, 7), -- Summon PVP Penalty
 -- Mirage the Unicorn 
 (14386, 4121, 9), -- Summoned Monster Magic Protection
-(14386, 4408, 6), -- HP Very High
-(14386, 4409, 1), -- MP Increase (1x)
-(14386, 4410, 12), -- Slightly Strong P. Atk.
-(14386, 4411, 12), -- Slightly Strong M. Atk.
-(14386, 4412, 12), -- Slightly Strong P. Def.
-(14386, 4413, 12), -- Slightly Strong M. Def.
-(14386, 4414, 2), -- Standard Type
-(14386, 4415, 3), -- One-handed Sword
-(14386, 4416, 7), -- Spirits
-(14386, 5038, 7), -- Servitor PvP Penalty
+(14386, 4408, 6), -- HP Modifiers
+(14386, 4409, 1), -- MP Modifiers
+(14386, 4410, 12), -- P. Atk. Modifiers
+(14386, 4411, 12), -- M. Atk. Modifiers
+(14386, 4412, 12), -- P. Def. Modifiers
+(14386, 4413, 12), -- M. Def. Modifiers
+(14386, 4414, 2), -- Armor Type
+(14386, 4415, 3), -- Weapon Type
+(14386, 4416, 7), -- Races
+(14386, 5038, 7), -- Summon PVP Penalty
 -- Mirage the Unicorn 
 (14387, 4121, 9), -- Summoned Monster Magic Protection
-(14387, 4408, 6), -- HP Very High
-(14387, 4409, 1), -- MP Increase (1x)
-(14387, 4410, 12), -- Slightly Strong P. Atk.
-(14387, 4411, 12), -- Slightly Strong M. Atk.
-(14387, 4412, 12), -- Slightly Strong P. Def.
-(14387, 4413, 12), -- Slightly Strong M. Def.
-(14387, 4414, 2), -- Standard Type
-(14387, 4415, 3), -- One-handed Sword
-(14387, 4416, 7), -- Spirits
-(14387, 5038, 7), -- Servitor PvP Penalty
+(14387, 4408, 6), -- HP Modifiers
+(14387, 4409, 1), -- MP Modifiers
+(14387, 4410, 12), -- P. Atk. Modifiers
+(14387, 4411, 12), -- M. Atk. Modifiers
+(14387, 4412, 12), -- P. Def. Modifiers
+(14387, 4413, 12), -- M. Def. Modifiers
+(14387, 4414, 2), -- Armor Type
+(14387, 4415, 3), -- Weapon Type
+(14387, 4416, 7), -- Races
+(14387, 5038, 7), -- Summon PVP Penalty
 -- Mirage the Unicorn 
 (14388, 4121, 9), -- Summoned Monster Magic Protection
-(14388, 4408, 6), -- HP Very High
-(14388, 4409, 1), -- MP Increase (1x)
-(14388, 4410, 12), -- Slightly Strong P. Atk.
-(14388, 4411, 12), -- Slightly Strong M. Atk.
-(14388, 4412, 12), -- Slightly Strong P. Def.
-(14388, 4413, 12), -- Slightly Strong M. Def.
-(14388, 4414, 2), -- Standard Type
-(14388, 4415, 3), -- One-handed Sword
-(14388, 4416, 7), -- Spirits
-(14388, 5038, 7), -- Servitor PvP Penalty
+(14388, 4408, 6), -- HP Modifiers
+(14388, 4409, 1), -- MP Modifiers
+(14388, 4410, 12), -- P. Atk. Modifiers
+(14388, 4411, 12), -- M. Atk. Modifiers
+(14388, 4412, 12), -- P. Def. Modifiers
+(14388, 4413, 12), -- M. Def. Modifiers
+(14388, 4414, 2), -- Armor Type
+(14388, 4415, 3), -- Weapon Type
+(14388, 4416, 7), -- Races
+(14388, 5038, 7), -- Summon PVP Penalty
 -- Mirage the Unicorn 
 (14389, 4121, 9), -- Summoned Monster Magic Protection
-(14389, 4408, 6), -- HP Very High
-(14389, 4409, 1), -- MP Increase (1x)
-(14389, 4410, 12), -- Slightly Strong P. Atk.
-(14389, 4411, 12), -- Slightly Strong M. Atk.
-(14389, 4412, 12), -- Slightly Strong P. Def.
-(14389, 4413, 12), -- Slightly Strong M. Def.
-(14389, 4414, 2), -- Standard Type
-(14389, 4415, 3), -- One-handed Sword
-(14389, 4416, 7), -- Spirits
-(14389, 5038, 7), -- Servitor PvP Penalty
+(14389, 4408, 6), -- HP Modifiers
+(14389, 4409, 1), -- MP Modifiers
+(14389, 4410, 12), -- P. Atk. Modifiers
+(14389, 4411, 12), -- M. Atk. Modifiers
+(14389, 4412, 12), -- P. Def. Modifiers
+(14389, 4413, 12), -- M. Def. Modifiers
+(14389, 4414, 2), -- Armor Type
+(14389, 4415, 3), -- Weapon Type
+(14389, 4416, 7), -- Races
+(14389, 5038, 7), -- Summon PVP Penalty
 -- Mirage the Unicorn 
 (14390, 4121, 9), -- Summoned Monster Magic Protection
-(14390, 4408, 6), -- HP Very High
-(14390, 4409, 1), -- MP Increase (1x)
-(14390, 4410, 12), -- Slightly Strong P. Atk.
-(14390, 4411, 12), -- Slightly Strong M. Atk.
-(14390, 4412, 12), -- Slightly Strong P. Def.
-(14390, 4413, 12), -- Slightly Strong M. Def.
-(14390, 4414, 2), -- Standard Type
-(14390, 4415, 3), -- One-handed Sword
-(14390, 4416, 7), -- Spirits
-(14390, 5038, 7), -- Servitor PvP Penalty
+(14390, 4408, 6), -- HP Modifiers
+(14390, 4409, 1), -- MP Modifiers
+(14390, 4410, 12), -- P. Atk. Modifiers
+(14390, 4411, 12), -- M. Atk. Modifiers
+(14390, 4412, 12), -- P. Def. Modifiers
+(14390, 4413, 12), -- M. Def. Modifiers
+(14390, 4414, 2), -- Armor Type
+(14390, 4415, 3), -- Weapon Type
+(14390, 4416, 7), -- Races
+(14390, 5038, 7), -- Summon PVP Penalty
 -- Merrow the Unicorn
 (14391, 4121, 9), -- Summoned Monster Magic Protection
-(14391, 4408, 3), -- HP Medium-High
-(14391, 4409, 1), -- MP Increase (1x)
-(14391, 4410, 13), -- Slightly Strong P. Atk.
-(14391, 4411, 13), -- Slightly Strong M. Atk.
-(14391, 4412, 12), -- Slightly Strong P. Def.
-(14391, 4413, 12), -- Slightly Strong M. Def.
-(14391, 4414, 2), -- Standard Type
-(14391, 4415, 3), -- One-handed Sword
-(14391, 4416, 7), -- Spirits
-(14391, 5038, 10), -- Servitor PvP Penalty
+(14391, 4408, 3), -- HP Modifiers
+(14391, 4409, 1), -- MP Modifiers
+(14391, 4410, 13), -- P. Atk. Modifiers
+(14391, 4411, 13), -- M. Atk. Modifiers
+(14391, 4412, 12), -- P. Def. Modifiers
+(14391, 4413, 12), -- M. Def. Modifiers
+(14391, 4414, 2), -- Armor Type
+(14391, 4415, 3), -- Weapon Type
+(14391, 4416, 7), -- Races
+(14391, 5038, 10), -- Summon PVP Penalty
 -- Merrow the Unicorn
 (14392, 4121, 9), -- Summoned Monster Magic Protection
-(14392, 4408, 3), -- HP Medium-High
-(14392, 4409, 1), -- MP Increase (1x)
-(14392, 4410, 13), -- Slightly Strong P. Atk.
-(14392, 4411, 13), -- Slightly Strong M. Atk.
-(14392, 4412, 12), -- Slightly Strong P. Def.
-(14392, 4413, 12), -- Slightly Strong M. Def.
-(14392, 4414, 2), -- Standard Type
-(14392, 4415, 3), -- One-handed Sword
-(14392, 4416, 7), -- Spirits
-(14392, 5038, 10), -- Servitor PvP Penalty
+(14392, 4408, 3), -- HP Modifiers
+(14392, 4409, 1), -- MP Modifiers
+(14392, 4410, 13), -- P. Atk. Modifiers
+(14392, 4411, 13), -- M. Atk. Modifiers
+(14392, 4412, 12), -- P. Def. Modifiers
+(14392, 4413, 12), -- M. Def. Modifiers
+(14392, 4414, 2), -- Armor Type
+(14392, 4415, 3), -- Weapon Type
+(14392, 4416, 7), -- Races
+(14392, 5038, 10), -- Summon PVP Penalty
 -- Merrow the Unicorn
 (14393, 4121, 9), -- Summoned Monster Magic Protection
-(14393, 4408, 3), -- HP Medium-High
-(14393, 4409, 1), -- MP Increase (1x)
-(14393, 4410, 13), -- Slightly Strong P. Atk.
-(14393, 4411, 13), -- Slightly Strong M. Atk.
-(14393, 4412, 12), -- Slightly Strong P. Def.
-(14393, 4413, 12), -- Slightly Strong M. Def.
-(14393, 4414, 2), -- Standard Type
-(14393, 4415, 3), -- One-handed Sword
-(14393, 4416, 7), -- Spirits
-(14393, 5038, 10), -- Servitor PvP Penalty
+(14393, 4408, 3), -- HP Modifiers
+(14393, 4409, 1), -- MP Modifiers
+(14393, 4410, 13), -- P. Atk. Modifiers
+(14393, 4411, 13), -- M. Atk. Modifiers
+(14393, 4412, 12), -- P. Def. Modifiers
+(14393, 4413, 12), -- M. Def. Modifiers
+(14393, 4414, 2), -- Armor Type
+(14393, 4415, 3), -- Weapon Type
+(14393, 4416, 7), -- Races
+(14393, 5038, 10), -- Summon PVP Penalty
 -- Merrow the Unicorn
 (14394, 4121, 9), -- Summoned Monster Magic Protection
-(14394, 4408, 3), -- HP Medium-High
-(14394, 4409, 1), -- MP Increase (1x)
-(14394, 4410, 13), -- Slightly Strong P. Atk.
-(14394, 4411, 13), -- Slightly Strong M. Atk.
-(14394, 4412, 12), -- Slightly Strong P. Def.
-(14394, 4413, 12), -- Slightly Strong M. Def.
-(14394, 4414, 2), -- Standard Type
-(14394, 4415, 3), -- One-handed Sword
-(14394, 4416, 7), -- Spirits
-(14394, 5038, 10), -- Servitor PvP Penalty
+(14394, 4408, 3), -- HP Modifiers
+(14394, 4409, 1), -- MP Modifiers
+(14394, 4410, 13), -- P. Atk. Modifiers
+(14394, 4411, 13), -- M. Atk. Modifiers
+(14394, 4412, 12), -- P. Def. Modifiers
+(14394, 4413, 12), -- M. Def. Modifiers
+(14394, 4414, 2), -- Armor Type
+(14394, 4415, 3), -- Weapon Type
+(14394, 4416, 7), -- Races
+(14394, 5038, 10), -- Summon PVP Penalty
 -- Merrow the Unicorn
 (14395, 4121, 9), -- Summoned Monster Magic Protection
-(14395, 4408, 3), -- HP Medium-High
-(14395, 4409, 1), -- MP Increase (1x)
-(14395, 4410, 13), -- Slightly Strong P. Atk.
-(14395, 4411, 13), -- Slightly Strong M. Atk.
-(14395, 4412, 12), -- Slightly Strong P. Def.
-(14395, 4413, 12), -- Slightly Strong M. Def.
-(14395, 4414, 2), -- Standard Type
-(14395, 4415, 3), -- One-handed Sword
-(14395, 4416, 7), -- Spirits
-(14395, 5038, 10), -- Servitor PvP Penalty
+(14395, 4408, 3), -- HP Modifiers
+(14395, 4409, 1), -- MP Modifiers
+(14395, 4410, 13), -- P. Atk. Modifiers
+(14395, 4411, 13), -- M. Atk. Modifiers
+(14395, 4412, 12), -- P. Def. Modifiers
+(14395, 4413, 12), -- M. Def. Modifiers
+(14395, 4414, 2), -- Armor Type
+(14395, 4415, 3), -- Weapon Type
+(14395, 4416, 7), -- Races
+(14395, 5038, 10), -- Summon PVP Penalty
 -- Merrow the Unicorn
 (14396, 4121, 9), -- Summoned Monster Magic Protection
-(14396, 4408, 3), -- HP Medium-High
-(14396, 4409, 1), -- MP Increase (1x)
-(14396, 4410, 13), -- Slightly Strong P. Atk.
-(14396, 4411, 13), -- Slightly Strong M. Atk.
-(14396, 4412, 12), -- Slightly Strong P. Def.
-(14396, 4413, 12), -- Slightly Strong M. Def.
-(14396, 4414, 2), -- Standard Type
-(14396, 4415, 3), -- One-handed Sword
-(14396, 4416, 7), -- Spirits
-(14396, 5038, 10), -- Servitor PvP Penalty
+(14396, 4408, 3), -- HP Modifiers
+(14396, 4409, 1), -- MP Modifiers
+(14396, 4410, 13), -- P. Atk. Modifiers
+(14396, 4411, 13), -- M. Atk. Modifiers
+(14396, 4412, 12), -- P. Def. Modifiers
+(14396, 4413, 12), -- M. Def. Modifiers
+(14396, 4414, 2), -- Armor Type
+(14396, 4415, 3), -- Weapon Type
+(14396, 4416, 7), -- Races
+(14396, 5038, 10), -- Summon PVP Penalty
 -- Merrow the Unicorn
 (14397, 4121, 9), -- Summoned Monster Magic Protection
-(14397, 4408, 3), -- HP Medium-High
-(14397, 4409, 1), -- MP Increase (1x)
-(14397, 4410, 13), -- Slightly Strong P. Atk.
-(14397, 4411, 13), -- Slightly Strong M. Atk.
-(14397, 4412, 12), -- Slightly Strong P. Def.
-(14397, 4413, 12), -- Slightly Strong M. Def.
-(14397, 4414, 2), -- Standard Type
-(14397, 4415, 3), -- One-handed Sword
-(14397, 4416, 7), -- Spirits
-(14397, 5038, 10), -- Servitor PvP Penalty
+(14397, 4408, 3), -- HP Modifiers
+(14397, 4409, 1), -- MP Modifiers
+(14397, 4410, 13), -- P. Atk. Modifiers
+(14397, 4411, 13), -- M. Atk. Modifiers
+(14397, 4412, 12), -- P. Def. Modifiers
+(14397, 4413, 12), -- M. Def. Modifiers
+(14397, 4414, 2), -- Armor Type
+(14397, 4415, 3), -- Weapon Type
+(14397, 4416, 7), -- Races
+(14397, 5038, 10), -- Summon PVP Penalty
 -- Merrow the Unicorn
 (14398, 4121, 9), -- Summoned Monster Magic Protection
-(14398, 4408, 3), -- HP Medium-High
-(14398, 4409, 1), -- MP Increase (1x)
-(14398, 4410, 13), -- Slightly Strong P. Atk.
-(14398, 4411, 13), -- Slightly Strong M. Atk.
-(14398, 4412, 12), -- Slightly Strong P. Def.
-(14398, 4413, 12), -- Slightly Strong M. Def.
-(14398, 4414, 2), -- Standard Type
-(14398, 4415, 3), -- One-handed Sword
-(14398, 4416, 7), -- Spirits
-(14398, 5038, 10), -- Servitor PvP Penalty
+(14398, 4408, 3), -- HP Modifiers
+(14398, 4409, 1), -- MP Modifiers
+(14398, 4410, 13), -- P. Atk. Modifiers
+(14398, 4411, 13), -- M. Atk. Modifiers
+(14398, 4412, 12), -- P. Def. Modifiers
+(14398, 4413, 12), -- M. Def. Modifiers
+(14398, 4414, 2), -- Armor Type
+(14398, 4415, 3), -- Weapon Type
+(14398, 4416, 7), -- Races
+(14398, 5038, 10), -- Summon PVP Penalty
 -- Merrow the Unicorn
 (14399, 4121, 9), -- Summoned Monster Magic Protection
-(14399, 4408, 3), -- HP Medium-High
-(14399, 4409, 1), -- MP Increase (1x)
-(14399, 4410, 13), -- Slightly Strong P. Atk.
-(14399, 4411, 13), -- Slightly Strong M. Atk.
-(14399, 4412, 12), -- Slightly Strong P. Def.
-(14399, 4413, 12), -- Slightly Strong M. Def.
-(14399, 4414, 2), -- Standard Type
-(14399, 4415, 3), -- One-handed Sword
-(14399, 4416, 7), -- Spirits
-(14399, 5038, 10), -- Servitor PvP Penalty
+(14399, 4408, 3), -- HP Modifiers
+(14399, 4409, 1), -- MP Modifiers
+(14399, 4410, 13), -- P. Atk. Modifiers
+(14399, 4411, 13), -- M. Atk. Modifiers
+(14399, 4412, 12), -- P. Def. Modifiers
+(14399, 4413, 12), -- M. Def. Modifiers
+(14399, 4414, 2), -- Armor Type
+(14399, 4415, 3), -- Weapon Type
+(14399, 4416, 7), -- Races
+(14399, 5038, 10), -- Summon PVP Penalty
 -- Merrow the Unicorn
 (14400, 4121, 9), -- Summoned Monster Magic Protection
-(14400, 4408, 3), -- HP Medium-High
-(14400, 4409, 1), -- MP Increase (1x)
-(14400, 4410, 13), -- Slightly Strong P. Atk.
-(14400, 4411, 13), -- Slightly Strong M. Atk.
-(14400, 4412, 12), -- Slightly Strong P. Def.
-(14400, 4413, 12), -- Slightly Strong M. Def.
-(14400, 4414, 2), -- Standard Type
-(14400, 4415, 3), -- One-handed Sword
-(14400, 4416, 7), -- Spirits
-(14400, 5038, 10), -- Servitor PvP Penalty
+(14400, 4408, 3), -- HP Modifiers
+(14400, 4409, 1), -- MP Modifiers
+(14400, 4410, 13), -- P. Atk. Modifiers
+(14400, 4411, 13), -- M. Atk. Modifiers
+(14400, 4412, 12), -- P. Def. Modifiers
+(14400, 4413, 12), -- M. Def. Modifiers
+(14400, 4414, 2), -- Armor Type
+(14400, 4415, 3), -- Weapon Type
+(14400, 4416, 7), -- Races
+(14400, 5038, 10), -- Summon PVP Penalty
 -- Merrow the Unicorn
 (14401, 4121, 9), -- Summoned Monster Magic Protection
-(14401, 4408, 3), -- HP Medium-High
-(14401, 4409, 1), -- MP Increase (1x)
-(14401, 4410, 13), -- Slightly Strong P. Atk.
-(14401, 4411, 13), -- Slightly Strong M. Atk.
-(14401, 4412, 12), -- Slightly Strong P. Def.
-(14401, 4413, 12), -- Slightly Strong M. Def.
-(14401, 4414, 2), -- Standard Type
-(14401, 4415, 3), -- One-handed Sword
-(14401, 4416, 7), -- Spirits
-(14401, 5038, 10), -- Servitor PvP Penalty
+(14401, 4408, 3), -- HP Modifiers
+(14401, 4409, 1), -- MP Modifiers
+(14401, 4410, 13), -- P. Atk. Modifiers
+(14401, 4411, 13), -- M. Atk. Modifiers
+(14401, 4412, 12), -- P. Def. Modifiers
+(14401, 4413, 12), -- M. Def. Modifiers
+(14401, 4414, 2), -- Armor Type
+(14401, 4415, 3), -- Weapon Type
+(14401, 4416, 7), -- Races
+(14401, 5038, 10), -- Summon PVP Penalty
 -- Merrow the Unicorn
 (14402, 4121, 9), -- Summoned Monster Magic Protection
-(14402, 4408, 3), -- HP Medium-High
-(14402, 4409, 1), -- MP Increase (1x)
-(14402, 4410, 13), -- Slightly Strong P. Atk.
-(14402, 4411, 13), -- Slightly Strong M. Atk.
-(14402, 4412, 12), -- Slightly Strong P. Def.
-(14402, 4413, 12), -- Slightly Strong M. Def.
-(14402, 4414, 2), -- Standard Type
-(14402, 4415, 3), -- One-handed Sword
-(14402, 4416, 7), -- Spirits
-(14402, 5038, 10), -- Servitor PvP Penalty
+(14402, 4408, 3), -- HP Modifiers
+(14402, 4409, 1), -- MP Modifiers
+(14402, 4410, 13), -- P. Atk. Modifiers
+(14402, 4411, 13), -- M. Atk. Modifiers
+(14402, 4412, 12), -- P. Def. Modifiers
+(14402, 4413, 12), -- M. Def. Modifiers
+(14402, 4414, 2), -- Armor Type
+(14402, 4415, 3), -- Weapon Type
+(14402, 4416, 7), -- Races
+(14402, 5038, 10), -- Summon PVP Penalty
 -- Merrow the Unicorn
 (14403, 4121, 9), -- Summoned Monster Magic Protection
-(14403, 4408, 3), -- HP Medium-High
-(14403, 4409, 1), -- MP Increase (1x)
-(14403, 4410, 13), -- Slightly Strong P. Atk.
-(14403, 4411, 13), -- Slightly Strong M. Atk.
-(14403, 4412, 12), -- Slightly Strong P. Def.
-(14403, 4413, 12), -- Slightly Strong M. Def.
-(14403, 4414, 2), -- Standard Type
-(14403, 4415, 3), -- One-handed Sword
-(14403, 4416, 7), -- Spirits
-(14403, 5038, 10), -- Servitor PvP Penalty
+(14403, 4408, 3), -- HP Modifiers
+(14403, 4409, 1), -- MP Modifiers
+(14403, 4410, 13), -- P. Atk. Modifiers
+(14403, 4411, 13), -- M. Atk. Modifiers
+(14403, 4412, 12), -- P. Def. Modifiers
+(14403, 4413, 12), -- M. Def. Modifiers
+(14403, 4414, 2), -- Armor Type
+(14403, 4415, 3), -- Weapon Type
+(14403, 4416, 7), -- Races
+(14403, 5038, 10), -- Summon PVP Penalty
 -- Merrow the Unicorn
 (14404, 4121, 9), -- Summoned Monster Magic Protection
-(14404, 4408, 3), -- HP Medium-High
-(14404, 4409, 1), -- MP Increase (1x)
-(14404, 4410, 13), -- Slightly Strong P. Atk.
-(14404, 4411, 13), -- Slightly Strong M. Atk.
-(14404, 4412, 12), -- Slightly Strong P. Def.
-(14404, 4413, 12), -- Slightly Strong M. Def.
-(14404, 4414, 2), -- Standard Type
-(14404, 4415, 3), -- One-handed Sword
-(14404, 4416, 7), -- Spirits
-(14404, 5038, 10), -- Servitor PvP Penalty
+(14404, 4408, 3), -- HP Modifiers
+(14404, 4409, 1), -- MP Modifiers
+(14404, 4410, 13), -- P. Atk. Modifiers
+(14404, 4411, 13), -- M. Atk. Modifiers
+(14404, 4412, 12), -- P. Def. Modifiers
+(14404, 4413, 12), -- M. Def. Modifiers
+(14404, 4414, 2), -- Armor Type
+(14404, 4415, 3), -- Weapon Type
+(14404, 4416, 7), -- Races
+(14404, 5038, 10), -- Summon PVP Penalty
 -- Merrow the Unicorn
 (14405, 4121, 9), -- Summoned Monster Magic Protection
-(14405, 4408, 3), -- HP Medium-High
-(14405, 4409, 1), -- MP Increase (1x)
-(14405, 4410, 13), -- Slightly Strong P. Atk.
-(14405, 4411, 13), -- Slightly Strong M. Atk.
-(14405, 4412, 12), -- Slightly Strong P. Def.
-(14405, 4413, 12), -- Slightly Strong M. Def.
-(14405, 4414, 2), -- Standard Type
-(14405, 4415, 3), -- One-handed Sword
-(14405, 4416, 7), -- Spirits
-(14405, 5038, 10), -- Servitor PvP Penalty
+(14405, 4408, 3), -- HP Modifiers
+(14405, 4409, 1), -- MP Modifiers
+(14405, 4410, 13), -- P. Atk. Modifiers
+(14405, 4411, 13), -- M. Atk. Modifiers
+(14405, 4412, 12), -- P. Def. Modifiers
+(14405, 4413, 12), -- M. Def. Modifiers
+(14405, 4414, 2), -- Armor Type
+(14405, 4415, 3), -- Weapon Type
+(14405, 4416, 7), -- Races
+(14405, 5038, 10), -- Summon PVP Penalty
 -- Merrow the Unicorn
 (14406, 4121, 9), -- Summoned Monster Magic Protection
-(14406, 4408, 3), -- HP Medium-High
-(14406, 4409, 1), -- MP Increase (1x)
-(14406, 4410, 13), -- Slightly Strong P. Atk.
-(14406, 4411, 13), -- Slightly Strong M. Atk.
-(14406, 4412, 12), -- Slightly Strong P. Def.
-(14406, 4413, 12), -- Slightly Strong M. Def.
-(14406, 4414, 2), -- Standard Type
-(14406, 4415, 3), -- One-handed Sword
-(14406, 4416, 7), -- Spirits
-(14406, 5038, 10), -- Servitor PvP Penalty
+(14406, 4408, 3), -- HP Modifiers
+(14406, 4409, 1), -- MP Modifiers
+(14406, 4410, 13), -- P. Atk. Modifiers
+(14406, 4411, 13), -- M. Atk. Modifiers
+(14406, 4412, 12), -- P. Def. Modifiers
+(14406, 4413, 12), -- M. Def. Modifiers
+(14406, 4414, 2), -- Armor Type
+(14406, 4415, 3), -- Weapon Type
+(14406, 4416, 7), -- Races
+(14406, 5038, 10), -- Summon PVP Penalty
 -- Merrow the Unicorn
 (14407, 4121, 9), -- Summoned Monster Magic Protection
-(14407, 4408, 3), -- HP Medium-High
-(14407, 4409, 1), -- MP Increase (1x)
-(14407, 4410, 13), -- Slightly Strong P. Atk.
-(14407, 4411, 13), -- Slightly Strong M. Atk.
-(14407, 4412, 12), -- Slightly Strong P. Def.
-(14407, 4413, 12), -- Slightly Strong M. Def.
-(14407, 4414, 2), -- Standard Type
-(14407, 4415, 3), -- One-handed Sword
-(14407, 4416, 7), -- Spirits
-(14407, 5038, 10), -- Servitor PvP Penalty
+(14407, 4408, 3), -- HP Modifiers
+(14407, 4409, 1), -- MP Modifiers
+(14407, 4410, 13), -- P. Atk. Modifiers
+(14407, 4411, 13), -- M. Atk. Modifiers
+(14407, 4412, 12), -- P. Def. Modifiers
+(14407, 4413, 12), -- M. Def. Modifiers
+(14407, 4414, 2), -- Armor Type
+(14407, 4415, 3), -- Weapon Type
+(14407, 4416, 7), -- Races
+(14407, 5038, 10), -- Summon PVP Penalty
 -- Merrow the Unicorn
 (14408, 4121, 9), -- Summoned Monster Magic Protection
-(14408, 4408, 3), -- HP Medium-High
-(14408, 4409, 1), -- MP Increase (1x)
-(14408, 4410, 13), -- Slightly Strong P. Atk.
-(14408, 4411, 13), -- Slightly Strong M. Atk.
-(14408, 4412, 12), -- Slightly Strong P. Def.
-(14408, 4413, 12), -- Slightly Strong M. Def.
-(14408, 4414, 2), -- Standard Type
-(14408, 4415, 3), -- One-handed Sword
-(14408, 4416, 7), -- Spirits
-(14408, 5038, 10), -- Servitor PvP Penalty
+(14408, 4408, 3), -- HP Modifiers
+(14408, 4409, 1), -- MP Modifiers
+(14408, 4410, 13), -- P. Atk. Modifiers
+(14408, 4411, 13), -- M. Atk. Modifiers
+(14408, 4412, 12), -- P. Def. Modifiers
+(14408, 4413, 12), -- M. Def. Modifiers
+(14408, 4414, 2), -- Armor Type
+(14408, 4415, 3), -- Weapon Type
+(14408, 4416, 7), -- Races
+(14408, 5038, 10), -- Summon PVP Penalty
 -- Merrow the Unicorn
 (14409, 4121, 9), -- Summoned Monster Magic Protection
-(14409, 4408, 3), -- HP Medium-High
-(14409, 4409, 1), -- MP Increase (1x)
-(14409, 4410, 13), -- Slightly Strong P. Atk.
-(14409, 4411, 13), -- Slightly Strong M. Atk.
-(14409, 4412, 12), -- Slightly Strong P. Def.
-(14409, 4413, 12), -- Slightly Strong M. Def.
-(14409, 4414, 2), -- Standard Type
-(14409, 4415, 3), -- One-handed Sword
-(14409, 4416, 7), -- Spirits
-(14409, 5038, 10), -- Servitor PvP Penalty
+(14409, 4408, 3), -- HP Modifiers
+(14409, 4409, 1), -- MP Modifiers
+(14409, 4410, 13), -- P. Atk. Modifiers
+(14409, 4411, 13), -- M. Atk. Modifiers
+(14409, 4412, 12), -- P. Def. Modifiers
+(14409, 4413, 12), -- M. Def. Modifiers
+(14409, 4414, 2), -- Armor Type
+(14409, 4415, 3), -- Weapon Type
+(14409, 4416, 7), -- Races
+(14409, 5038, 10), -- Summon PVP Penalty
 -- Merrow the Unicorn
 (14410, 4121, 9), -- Summoned Monster Magic Protection
-(14410, 4408, 3), -- HP Medium-High
-(14410, 4409, 1), -- MP Increase (1x)
-(14410, 4410, 13), -- Slightly Strong P. Atk.
-(14410, 4411, 13), -- Slightly Strong M. Atk.
-(14410, 4412, 12), -- Slightly Strong P. Def.
-(14410, 4413, 12), -- Slightly Strong M. Def.
-(14410, 4414, 2), -- Standard Type
-(14410, 4415, 3), -- One-handed Sword
-(14410, 4416, 7), -- Spirits
-(14410, 5038, 10), -- Servitor PvP Penalty
+(14410, 4408, 3), -- HP Modifiers
+(14410, 4409, 1), -- MP Modifiers
+(14410, 4410, 13), -- P. Atk. Modifiers
+(14410, 4411, 13), -- M. Atk. Modifiers
+(14410, 4412, 12), -- P. Def. Modifiers
+(14410, 4413, 12), -- M. Def. Modifiers
+(14410, 4414, 2), -- Armor Type
+(14410, 4415, 3), -- Weapon Type
+(14410, 4416, 7), -- Races
+(14410, 5038, 10), -- Summon PVP Penalty
 -- Merrow the Unicorn
 (14411, 4121, 9), -- Summoned Monster Magic Protection
-(14411, 4408, 3), -- HP Medium-High
-(14411, 4409, 1), -- MP Increase (1x)
-(14411, 4410, 13), -- Slightly Strong P. Atk.
-(14411, 4411, 13), -- Slightly Strong M. Atk.
-(14411, 4412, 12), -- Slightly Strong P. Def.
-(14411, 4413, 12), -- Slightly Strong M. Def.
-(14411, 4414, 2), -- Standard Type
-(14411, 4415, 3), -- One-handed Sword
-(14411, 4416, 7), -- Spirits
-(14411, 5038, 10), -- Servitor PvP Penalty
+(14411, 4408, 3), -- HP Modifiers
+(14411, 4409, 1), -- MP Modifiers
+(14411, 4410, 13), -- P. Atk. Modifiers
+(14411, 4411, 13), -- M. Atk. Modifiers
+(14411, 4412, 12), -- P. Def. Modifiers
+(14411, 4413, 12), -- M. Def. Modifiers
+(14411, 4414, 2), -- Armor Type
+(14411, 4415, 3), -- Weapon Type
+(14411, 4416, 7), -- Races
+(14411, 5038, 10), -- Summon PVP Penalty
 -- Merrow the Unicorn
 (14412, 4121, 9), -- Summoned Monster Magic Protection
-(14412, 4408, 3), -- HP Medium-High
-(14412, 4409, 1), -- MP Increase (1x)
-(14412, 4410, 13), -- Slightly Strong P. Atk.
-(14412, 4411, 13), -- Slightly Strong M. Atk.
-(14412, 4412, 12), -- Slightly Strong P. Def.
-(14412, 4413, 12), -- Slightly Strong M. Def.
-(14412, 4414, 2), -- Standard Type
-(14412, 4415, 3), -- One-handed Sword
-(14412, 4416, 7), -- Spirits
-(14412, 5038, 10), -- Servitor PvP Penalty
+(14412, 4408, 3), -- HP Modifiers
+(14412, 4409, 1), -- MP Modifiers
+(14412, 4410, 13), -- P. Atk. Modifiers
+(14412, 4411, 13), -- M. Atk. Modifiers
+(14412, 4412, 12), -- P. Def. Modifiers
+(14412, 4413, 12), -- M. Def. Modifiers
+(14412, 4414, 2), -- Armor Type
+(14412, 4415, 3), -- Weapon Type
+(14412, 4416, 7), -- Races
+(14412, 5038, 10), -- Summon PVP Penalty
 -- Merrow the Unicorn
 (14413, 4121, 9), -- Summoned Monster Magic Protection
-(14413, 4408, 3), -- HP Medium-High
-(14413, 4409, 1), -- MP Increase (1x)
-(14413, 4410, 13), -- Slightly Strong P. Atk.
-(14413, 4411, 13), -- Slightly Strong M. Atk.
-(14413, 4412, 12), -- Slightly Strong P. Def.
-(14413, 4413, 12), -- Slightly Strong M. Def.
-(14413, 4414, 2), -- Standard Type
-(14413, 4415, 3), -- One-handed Sword
-(14413, 4416, 7), -- Spirits
-(14413, 5038, 10), -- Servitor PvP Penalty
+(14413, 4408, 3), -- HP Modifiers
+(14413, 4409, 1), -- MP Modifiers
+(14413, 4410, 13), -- P. Atk. Modifiers
+(14413, 4411, 13), -- M. Atk. Modifiers
+(14413, 4412, 12), -- P. Def. Modifiers
+(14413, 4413, 12), -- M. Def. Modifiers
+(14413, 4414, 2), -- Armor Type
+(14413, 4415, 3), -- Weapon Type
+(14413, 4416, 7), -- Races
+(14413, 5038, 10), -- Summon PVP Penalty
 -- Merrow the Unicorn
 (14414, 4121, 9), -- Summoned Monster Magic Protection
-(14414, 4408, 3), -- HP Medium-High
-(14414, 4409, 1), -- MP Increase (1x)
-(14414, 4410, 13), -- Slightly Strong P. Atk.
-(14414, 4411, 13), -- Slightly Strong M. Atk.
-(14414, 4412, 12), -- Slightly Strong P. Def.
-(14414, 4413, 12), -- Slightly Strong M. Def.
-(14414, 4414, 2), -- Standard Type
-(14414, 4415, 3), -- One-handed Sword
-(14414, 4416, 7), -- Spirits
-(14414, 5038, 10), -- Servitor PvP Penalty
+(14414, 4408, 3), -- HP Modifiers
+(14414, 4409, 1), -- MP Modifiers
+(14414, 4410, 13), -- P. Atk. Modifiers
+(14414, 4411, 13), -- M. Atk. Modifiers
+(14414, 4412, 12), -- P. Def. Modifiers
+(14414, 4413, 12), -- M. Def. Modifiers
+(14414, 4414, 2), -- Armor Type
+(14414, 4415, 3), -- Weapon Type
+(14414, 4416, 7), -- Races
+(14414, 5038, 10), -- Summon PVP Penalty
 -- Merrow the Unicorn
 (14415, 4121, 9), -- Summoned Monster Magic Protection
-(14415, 4408, 3), -- HP Medium-High
-(14415, 4409, 1), -- MP Increase (1x)
-(14415, 4410, 13), -- Slightly Strong P. Atk.
-(14415, 4411, 13), -- Slightly Strong M. Atk.
-(14415, 4412, 12), -- Slightly Strong P. Def.
-(14415, 4413, 12), -- Slightly Strong M. Def.
-(14415, 4414, 2), -- Standard Type
-(14415, 4415, 3), -- One-handed Sword
-(14415, 4416, 7), -- Spirits
-(14415, 5038, 10), -- Servitor PvP Penalty
+(14415, 4408, 3), -- HP Modifiers
+(14415, 4409, 1), -- MP Modifiers
+(14415, 4410, 13), -- P. Atk. Modifiers
+(14415, 4411, 13), -- M. Atk. Modifiers
+(14415, 4412, 12), -- P. Def. Modifiers
+(14415, 4413, 12), -- M. Def. Modifiers
+(14415, 4414, 2), -- Armor Type
+(14415, 4415, 3), -- Weapon Type
+(14415, 4416, 7), -- Races
+(14415, 5038, 10), -- Summon PVP Penalty
 -- Merrow the Unicorn
 (14416, 4121, 9), -- Summoned Monster Magic Protection
-(14416, 4408, 3), -- HP Medium-High
-(14416, 4409, 1), -- MP Increase (1x)
-(14416, 4410, 13), -- Slightly Strong P. Atk.
-(14416, 4411, 13), -- Slightly Strong M. Atk.
-(14416, 4412, 12), -- Slightly Strong P. Def.
-(14416, 4413, 12), -- Slightly Strong M. Def.
-(14416, 4414, 2), -- Standard Type
-(14416, 4415, 3), -- One-handed Sword
-(14416, 4416, 7), -- Spirits
-(14416, 5038, 10), -- Servitor PvP Penalty
+(14416, 4408, 3), -- HP Modifiers
+(14416, 4409, 1), -- MP Modifiers
+(14416, 4410, 13), -- P. Atk. Modifiers
+(14416, 4411, 13), -- M. Atk. Modifiers
+(14416, 4412, 12), -- P. Def. Modifiers
+(14416, 4413, 12), -- M. Def. Modifiers
+(14416, 4414, 2), -- Armor Type
+(14416, 4415, 3), -- Weapon Type
+(14416, 4416, 7), -- Races
+(14416, 5038, 10), -- Summon PVP Penalty
 -- Merrow the Unicorn
 (14417, 4121, 9), -- Summoned Monster Magic Protection
-(14417, 4408, 3), -- HP Medium-High
-(14417, 4409, 1), -- MP Increase (1x)
-(14417, 4410, 13), -- Slightly Strong P. Atk.
-(14417, 4411, 13), -- Slightly Strong M. Atk.
-(14417, 4412, 12), -- Slightly Strong P. Def.
-(14417, 4413, 12), -- Slightly Strong M. Def.
-(14417, 4414, 2), -- Standard Type
-(14417, 4415, 3), -- One-handed Sword
-(14417, 4416, 7), -- Spirits
-(14417, 5038, 10), -- Servitor PvP Penalty
+(14417, 4408, 3), -- HP Modifiers
+(14417, 4409, 1), -- MP Modifiers
+(14417, 4410, 13), -- P. Atk. Modifiers
+(14417, 4411, 13), -- M. Atk. Modifiers
+(14417, 4412, 12), -- P. Def. Modifiers
+(14417, 4413, 12), -- M. Def. Modifiers
+(14417, 4414, 2), -- Armor Type
+(14417, 4415, 3), -- Weapon Type
+(14417, 4416, 7), -- Races
+(14417, 5038, 10), -- Summon PVP Penalty
 -- Merrow the Unicorn
 (14418, 4121, 9), -- Summoned Monster Magic Protection
-(14418, 4408, 3), -- HP Medium-High
-(14418, 4409, 1), -- MP Increase (1x)
-(14418, 4410, 13), -- Slightly Strong P. Atk.
-(14418, 4411, 13), -- Slightly Strong M. Atk.
-(14418, 4412, 12), -- Slightly Strong P. Def.
-(14418, 4413, 12), -- Slightly Strong M. Def.
-(14418, 4414, 2), -- Standard Type
-(14418, 4415, 3), -- One-handed Sword
-(14418, 4416, 7), -- Spirits
-(14418, 5038, 10), -- Servitor PvP Penalty
+(14418, 4408, 3), -- HP Modifiers
+(14418, 4409, 1), -- MP Modifiers
+(14418, 4410, 13), -- P. Atk. Modifiers
+(14418, 4411, 13), -- M. Atk. Modifiers
+(14418, 4412, 12), -- P. Def. Modifiers
+(14418, 4413, 12), -- M. Def. Modifiers
+(14418, 4414, 2), -- Armor Type
+(14418, 4415, 3), -- Weapon Type
+(14418, 4416, 7), -- Races
+(14418, 5038, 10), -- Summon PVP Penalty
 -- Merrow the Unicorn
 (14419, 4121, 9), -- Summoned Monster Magic Protection
-(14419, 4408, 3), -- HP Medium-High
-(14419, 4409, 1), -- MP Increase (1x)
-(14419, 4410, 13), -- Slightly Strong P. Atk.
-(14419, 4411, 13), -- Slightly Strong M. Atk.
-(14419, 4412, 12), -- Slightly Strong P. Def.
-(14419, 4413, 12), -- Slightly Strong M. Def.
-(14419, 4414, 2), -- Standard Type
-(14419, 4415, 3), -- One-handed Sword
-(14419, 4416, 7), -- Spirits
-(14419, 5038, 10), -- Servitor PvP Penalty
+(14419, 4408, 3), -- HP Modifiers
+(14419, 4409, 1), -- MP Modifiers
+(14419, 4410, 13), -- P. Atk. Modifiers
+(14419, 4411, 13), -- M. Atk. Modifiers
+(14419, 4412, 12), -- P. Def. Modifiers
+(14419, 4413, 12), -- M. Def. Modifiers
+(14419, 4414, 2), -- Armor Type
+(14419, 4415, 3), -- Weapon Type
+(14419, 4416, 7), -- Races
+(14419, 5038, 10), -- Summon PVP Penalty
 -- Merrow the Unicorn
 (14420, 4121, 9), -- Summoned Monster Magic Protection
-(14420, 4408, 3), -- HP Medium-High
-(14420, 4409, 1), -- MP Increase (1x)
-(14420, 4410, 13), -- Slightly Strong P. Atk.
-(14420, 4411, 13), -- Slightly Strong M. Atk.
-(14420, 4412, 12), -- Slightly Strong P. Def.
-(14420, 4413, 12), -- Slightly Strong M. Def.
-(14420, 4414, 2), -- Standard Type
-(14420, 4415, 3), -- One-handed Sword
-(14420, 4416, 7), -- Spirits
-(14420, 5038, 10), -- Servitor PvP Penalty
+(14420, 4408, 3), -- HP Modifiers
+(14420, 4409, 1), -- MP Modifiers
+(14420, 4410, 13), -- P. Atk. Modifiers
+(14420, 4411, 13), -- M. Atk. Modifiers
+(14420, 4412, 12), -- P. Def. Modifiers
+(14420, 4413, 12), -- M. Def. Modifiers
+(14420, 4414, 2), -- Armor Type
+(14420, 4415, 3), -- Weapon Type
+(14420, 4416, 7), -- Races
+(14420, 5038, 10), -- Summon PVP Penalty
 -- Merrow the Unicorn
 (14421, 4121, 9), -- Summoned Monster Magic Protection
-(14421, 4408, 3), -- HP Medium-High
-(14421, 4409, 1), -- MP Increase (1x)
-(14421, 4410, 13), -- Slightly Strong P. Atk.
-(14421, 4411, 13), -- Slightly Strong M. Atk.
-(14421, 4412, 12), -- Slightly Strong P. Def.
-(14421, 4413, 12), -- Slightly Strong M. Def.
-(14421, 4414, 2), -- Standard Type
-(14421, 4415, 3), -- One-handed Sword
-(14421, 4416, 7), -- Spirits
-(14421, 5038, 10), -- Servitor PvP Penalty
+(14421, 4408, 3), -- HP Modifiers
+(14421, 4409, 1), -- MP Modifiers
+(14421, 4410, 13), -- P. Atk. Modifiers
+(14421, 4411, 13), -- M. Atk. Modifiers
+(14421, 4412, 12), -- P. Def. Modifiers
+(14421, 4413, 12), -- M. Def. Modifiers
+(14421, 4414, 2), -- Armor Type
+(14421, 4415, 3), -- Weapon Type
+(14421, 4416, 7), -- Races
+(14421, 5038, 10), -- Summon PVP Penalty
 -- Merrow the Unicorn
 (14422, 4121, 9), -- Summoned Monster Magic Protection
-(14422, 4408, 3), -- HP Medium-High
-(14422, 4409, 1), -- MP Increase (1x)
-(14422, 4410, 13), -- Slightly Strong P. Atk.
-(14422, 4411, 13), -- Slightly Strong M. Atk.
-(14422, 4412, 12), -- Slightly Strong P. Def.
-(14422, 4413, 12), -- Slightly Strong M. Def.
-(14422, 4414, 2), -- Standard Type
-(14422, 4415, 3), -- One-handed Sword
-(14422, 4416, 7), -- Spirits
-(14422, 5038, 10), -- Servitor PvP Penalty
+(14422, 4408, 3), -- HP Modifiers
+(14422, 4409, 1), -- MP Modifiers
+(14422, 4410, 13), -- P. Atk. Modifiers
+(14422, 4411, 13), -- M. Atk. Modifiers
+(14422, 4412, 12), -- P. Def. Modifiers
+(14422, 4413, 12), -- M. Def. Modifiers
+(14422, 4414, 2), -- Armor Type
+(14422, 4415, 3), -- Weapon Type
+(14422, 4416, 7), -- Races
+(14422, 5038, 10), -- Summon PVP Penalty
 -- Merrow the Unicorn
 (14423, 4121, 9), -- Summoned Monster Magic Protection
-(14423, 4408, 3), -- HP Medium-High
-(14423, 4409, 1), -- MP Increase (1x)
-(14423, 4410, 13), -- Slightly Strong P. Atk.
-(14423, 4411, 13), -- Slightly Strong M. Atk.
-(14423, 4412, 12), -- Slightly Strong P. Def.
-(14423, 4413, 12), -- Slightly Strong M. Def.
-(14423, 4414, 2), -- Standard Type
-(14423, 4415, 3), -- One-handed Sword
-(14423, 4416, 7), -- Spirits
-(14423, 5038, 10), -- Servitor PvP Penalty
+(14423, 4408, 3), -- HP Modifiers
+(14423, 4409, 1), -- MP Modifiers
+(14423, 4410, 13), -- P. Atk. Modifiers
+(14423, 4411, 13), -- M. Atk. Modifiers
+(14423, 4412, 12), -- P. Def. Modifiers
+(14423, 4413, 12), -- M. Def. Modifiers
+(14423, 4414, 2), -- Armor Type
+(14423, 4415, 3), -- Weapon Type
+(14423, 4416, 7), -- Races
+(14423, 5038, 10), -- Summon PVP Penalty
 -- Merrow the Unicorn
 (14424, 4121, 9), -- Summoned Monster Magic Protection
-(14424, 4408, 3), -- HP Medium-High
-(14424, 4409, 1), -- MP Increase (1x)
-(14424, 4410, 13), -- Slightly Strong P. Atk.
-(14424, 4411, 13), -- Slightly Strong M. Atk.
-(14424, 4412, 12), -- Slightly Strong P. Def.
-(14424, 4413, 12), -- Slightly Strong M. Def.
-(14424, 4414, 2), -- Standard Type
-(14424, 4415, 3), -- One-handed Sword
-(14424, 4416, 7), -- Spirits
-(14424, 5038, 10), -- Servitor PvP Penalty
+(14424, 4408, 3), -- HP Modifiers
+(14424, 4409, 1), -- MP Modifiers
+(14424, 4410, 13), -- P. Atk. Modifiers
+(14424, 4411, 13), -- M. Atk. Modifiers
+(14424, 4412, 12), -- P. Def. Modifiers
+(14424, 4413, 12), -- M. Def. Modifiers
+(14424, 4414, 2), -- Armor Type
+(14424, 4415, 3), -- Weapon Type
+(14424, 4416, 7), -- Races
+(14424, 5038, 10), -- Summon PVP Penalty
 -- Merrow the Unicorn
 (14425, 4121, 9), -- Summoned Monster Magic Protection
-(14425, 4408, 3), -- HP Medium-High
-(14425, 4409, 1), -- MP Increase (1x)
-(14425, 4410, 13), -- Slightly Strong P. Atk.
-(14425, 4411, 13), -- Slightly Strong M. Atk.
-(14425, 4412, 12), -- Slightly Strong P. Def.
-(14425, 4413, 12), -- Slightly Strong M. Def.
-(14425, 4414, 2), -- Standard Type
-(14425, 4415, 3), -- One-handed Sword
-(14425, 4416, 7), -- Spirits
-(14425, 5038, 10), -- Servitor PvP Penalty
+(14425, 4408, 3), -- HP Modifiers
+(14425, 4409, 1), -- MP Modifiers
+(14425, 4410, 13), -- P. Atk. Modifiers
+(14425, 4411, 13), -- M. Atk. Modifiers
+(14425, 4412, 12), -- P. Def. Modifiers
+(14425, 4413, 12), -- M. Def. Modifiers
+(14425, 4414, 2), -- Armor Type
+(14425, 4415, 3), -- Weapon Type
+(14425, 4416, 7), -- Races
+(14425, 5038, 10), -- Summon PVP Penalty
 -- Merrow the Unicorn
 (14426, 4121, 9), -- Summoned Monster Magic Protection
-(14426, 4408, 3), -- HP Medium-High
-(14426, 4409, 1), -- MP Increase (1x)
-(14426, 4410, 13), -- Slightly Strong P. Atk.
-(14426, 4411, 13), -- Slightly Strong M. Atk.
-(14426, 4412, 12), -- Slightly Strong P. Def.
-(14426, 4413, 12), -- Slightly Strong M. Def.
-(14426, 4414, 2), -- Standard Type
-(14426, 4415, 3), -- One-handed Sword
-(14426, 4416, 7), -- Spirits
-(14426, 5038, 10), -- Servitor PvP Penalty
+(14426, 4408, 3), -- HP Modifiers
+(14426, 4409, 1), -- MP Modifiers
+(14426, 4410, 13), -- P. Atk. Modifiers
+(14426, 4411, 13), -- M. Atk. Modifiers
+(14426, 4412, 12), -- P. Def. Modifiers
+(14426, 4413, 12), -- M. Def. Modifiers
+(14426, 4414, 2), -- Armor Type
+(14426, 4415, 3), -- Weapon Type
+(14426, 4416, 7), -- Races
+(14426, 5038, 10), -- Summon PVP Penalty
 -- Merrow the Unicorn
 (14427, 4121, 9), -- Summoned Monster Magic Protection
-(14427, 4408, 3), -- HP Medium-High
-(14427, 4409, 1), -- MP Increase (1x)
-(14427, 4410, 13), -- Slightly Strong P. Atk.
-(14427, 4411, 13), -- Slightly Strong M. Atk.
-(14427, 4412, 12), -- Slightly Strong P. Def.
-(14427, 4413, 12), -- Slightly Strong M. Def.
-(14427, 4414, 2), -- Standard Type
-(14427, 4415, 3), -- One-handed Sword
-(14427, 4416, 7), -- Spirits
-(14427, 5038, 10), -- Servitor PvP Penalty
+(14427, 4408, 3), -- HP Modifiers
+(14427, 4409, 1), -- MP Modifiers
+(14427, 4410, 13), -- P. Atk. Modifiers
+(14427, 4411, 13), -- M. Atk. Modifiers
+(14427, 4412, 12), -- P. Def. Modifiers
+(14427, 4413, 12), -- M. Def. Modifiers
+(14427, 4414, 2), -- Armor Type
+(14427, 4415, 3), -- Weapon Type
+(14427, 4416, 7), -- Races
+(14427, 5038, 10), -- Summon PVP Penalty
 -- Merrow the Unicorn
 (14428, 4121, 9), -- Summoned Monster Magic Protection
-(14428, 4408, 3), -- HP Medium-High
-(14428, 4409, 1), -- MP Increase (1x)
-(14428, 4410, 13), -- Slightly Strong P. Atk.
-(14428, 4411, 13), -- Slightly Strong M. Atk.
-(14428, 4412, 12), -- Slightly Strong P. Def.
-(14428, 4413, 12), -- Slightly Strong M. Def.
-(14428, 4414, 2), -- Standard Type
-(14428, 4415, 3), -- One-handed Sword
-(14428, 4416, 7), -- Spirits
-(14428, 5038, 10), -- Servitor PvP Penalty
+(14428, 4408, 3), -- HP Modifiers
+(14428, 4409, 1), -- MP Modifiers
+(14428, 4410, 13), -- P. Atk. Modifiers
+(14428, 4411, 13), -- M. Atk. Modifiers
+(14428, 4412, 12), -- P. Def. Modifiers
+(14428, 4413, 12), -- M. Def. Modifiers
+(14428, 4414, 2), -- Armor Type
+(14428, 4415, 3), -- Weapon Type
+(14428, 4416, 7), -- Races
+(14428, 5038, 10), -- Summon PVP Penalty
 -- Merrow the Unicorn
 (14429, 4121, 9), -- Summoned Monster Magic Protection
-(14429, 4408, 3), -- HP Medium-High
-(14429, 4409, 1), -- MP Increase (1x)
-(14429, 4410, 13), -- Slightly Strong P. Atk.
-(14429, 4411, 13), -- Slightly Strong M. Atk.
-(14429, 4412, 12), -- Slightly Strong P. Def.
-(14429, 4413, 12), -- Slightly Strong M. Def.
-(14429, 4414, 2), -- Standard Type
-(14429, 4415, 3), -- One-handed Sword
-(14429, 4416, 7), -- Spirits
-(14429, 5038, 10), -- Servitor PvP Penalty
+(14429, 4408, 3), -- HP Modifiers
+(14429, 4409, 1), -- MP Modifiers
+(14429, 4410, 13), -- P. Atk. Modifiers
+(14429, 4411, 13), -- M. Atk. Modifiers
+(14429, 4412, 12), -- P. Def. Modifiers
+(14429, 4413, 12), -- M. Def. Modifiers
+(14429, 4414, 2), -- Armor Type
+(14429, 4415, 3), -- Weapon Type
+(14429, 4416, 7), -- Races
+(14429, 5038, 10), -- Summon PVP Penalty
 -- Merrow the Unicorn
 (14430, 4121, 9), -- Summoned Monster Magic Protection
-(14430, 4408, 3), -- HP Medium-High
-(14430, 4409, 1), -- MP Increase (1x)
-(14430, 4410, 13), -- Slightly Strong P. Atk.
-(14430, 4411, 13), -- Slightly Strong M. Atk.
-(14430, 4412, 12), -- Slightly Strong P. Def.
-(14430, 4413, 12), -- Slightly Strong M. Def.
-(14430, 4414, 2), -- Standard Type
-(14430, 4415, 3), -- One-handed Sword
-(14430, 4416, 7), -- Spirits
-(14430, 5038, 10), -- Servitor PvP Penalty
+(14430, 4408, 3), -- HP Modifiers
+(14430, 4409, 1), -- MP Modifiers
+(14430, 4410, 13), -- P. Atk. Modifiers
+(14430, 4411, 13), -- M. Atk. Modifiers
+(14430, 4412, 12), -- P. Def. Modifiers
+(14430, 4413, 12), -- M. Def. Modifiers
+(14430, 4414, 2), -- Armor Type
+(14430, 4415, 3), -- Weapon Type
+(14430, 4416, 7), -- Races
+(14430, 5038, 10), -- Summon PVP Penalty
 -- Merrow the Unicorn
 (14431, 4121, 9), -- Summoned Monster Magic Protection
-(14431, 4408, 3), -- HP Medium-High
-(14431, 4409, 1), -- MP Increase (1x)
-(14431, 4410, 13), -- Slightly Strong P. Atk.
-(14431, 4411, 13), -- Slightly Strong M. Atk.
-(14431, 4412, 12), -- Slightly Strong P. Def.
-(14431, 4413, 12), -- Slightly Strong M. Def.
-(14431, 4414, 2), -- Standard Type
-(14431, 4415, 3), -- One-handed Sword
-(14431, 4416, 7), -- Spirits
-(14431, 5038, 10), -- Servitor PvP Penalty
+(14431, 4408, 3), -- HP Modifiers
+(14431, 4409, 1), -- MP Modifiers
+(14431, 4410, 13), -- P. Atk. Modifiers
+(14431, 4411, 13), -- M. Atk. Modifiers
+(14431, 4412, 12), -- P. Def. Modifiers
+(14431, 4413, 12), -- M. Def. Modifiers
+(14431, 4414, 2), -- Armor Type
+(14431, 4415, 3), -- Weapon Type
+(14431, 4416, 7), -- Races
+(14431, 5038, 10), -- Summon PVP Penalty
 -- Merrow the Unicorn
 (14432, 4121, 9), -- Summoned Monster Magic Protection
-(14432, 4408, 3), -- HP Medium-High
-(14432, 4409, 1), -- MP Increase (1x)
-(14432, 4410, 13), -- Slightly Strong P. Atk.
-(14432, 4411, 13), -- Slightly Strong M. Atk.
-(14432, 4412, 12), -- Slightly Strong P. Def.
-(14432, 4413, 12), -- Slightly Strong M. Def.
-(14432, 4414, 2), -- Standard Type
-(14432, 4415, 3), -- One-handed Sword
-(14432, 4416, 7), -- Spirits
-(14432, 5038, 10), -- Servitor PvP Penalty
+(14432, 4408, 3), -- HP Modifiers
+(14432, 4409, 1), -- MP Modifiers
+(14432, 4410, 13), -- P. Atk. Modifiers
+(14432, 4411, 13), -- M. Atk. Modifiers
+(14432, 4412, 12), -- P. Def. Modifiers
+(14432, 4413, 12), -- M. Def. Modifiers
+(14432, 4414, 2), -- Armor Type
+(14432, 4415, 3), -- Weapon Type
+(14432, 4416, 7), -- Races
+(14432, 5038, 10), -- Summon PVP Penalty
 -- Merrow the Unicorn
 (14433, 4121, 9), -- Summoned Monster Magic Protection
-(14433, 4408, 3), -- HP Medium-High
-(14433, 4409, 1), -- MP Increase (1x)
-(14433, 4410, 13), -- Slightly Strong P. Atk.
-(14433, 4411, 13), -- Slightly Strong M. Atk.
-(14433, 4412, 12), -- Slightly Strong P. Def.
-(14433, 4413, 12), -- Slightly Strong M. Def.
-(14433, 4414, 2), -- Standard Type
-(14433, 4415, 3), -- One-handed Sword
-(14433, 4416, 7), -- Spirits
-(14433, 5038, 10), -- Servitor PvP Penalty
+(14433, 4408, 3), -- HP Modifiers
+(14433, 4409, 1), -- MP Modifiers
+(14433, 4410, 13), -- P. Atk. Modifiers
+(14433, 4411, 13), -- M. Atk. Modifiers
+(14433, 4412, 12), -- P. Def. Modifiers
+(14433, 4413, 12), -- M. Def. Modifiers
+(14433, 4414, 2), -- Armor Type
+(14433, 4415, 3), -- Weapon Type
+(14433, 4416, 7), -- Races
+(14433, 5038, 10), -- Summon PVP Penalty
 -- Merrow the Unicorn
 (14434, 4121, 9), -- Summoned Monster Magic Protection
-(14434, 4408, 3), -- HP Medium-High
-(14434, 4409, 1), -- MP Increase (1x)
-(14434, 4410, 13), -- Slightly Strong P. Atk.
-(14434, 4411, 13), -- Slightly Strong M. Atk.
-(14434, 4412, 12), -- Slightly Strong P. Def.
-(14434, 4413, 12), -- Slightly Strong M. Def.
-(14434, 4414, 2), -- Standard Type
-(14434, 4415, 3), -- One-handed Sword
-(14434, 4416, 7), -- Spirits
-(14434, 5038, 10), -- Servitor PvP Penalty
+(14434, 4408, 3), -- HP Modifiers
+(14434, 4409, 1), -- MP Modifiers
+(14434, 4410, 13), -- P. Atk. Modifiers
+(14434, 4411, 13), -- M. Atk. Modifiers
+(14434, 4412, 12), -- P. Def. Modifiers
+(14434, 4413, 12), -- M. Def. Modifiers
+(14434, 4414, 2), -- Armor Type
+(14434, 4415, 3), -- Weapon Type
+(14434, 4416, 7), -- Races
+(14434, 5038, 10), -- Summon PVP Penalty
 -- Unicorn Seraphim
 (14435, 4121, 9), -- Summoned Monster Magic Protection
-(14435, 4408, 1), -- HP Increase (1x)
-(14435, 4409, 1), -- MP Increase (1x)
-(14435, 4410, 11), -- Average P. Atk.
-(14435, 4411, 11), -- Average M. Atk.
-(14435, 4412, 11), -- Average P. Def.
-(14435, 4413, 11), -- Average M. Def.
-(14435, 4414, 2), -- Standard Type
-(14435, 4415, 3), -- One-handed Sword
-(14435, 4416, 7), -- Spirits
+(14435, 4408, 1), -- HP Modifiers
+(14435, 4409, 1), -- MP Modifiers
+(14435, 4410, 11), -- P. Atk. Modifiers
+(14435, 4411, 11), -- M. Atk. Modifiers
+(14435, 4412, 11), -- P. Def. Modifiers
+(14435, 4413, 11), -- M. Def. Modifiers
+(14435, 4414, 2), -- Armor Type
+(14435, 4415, 3), -- Weapon Type
+(14435, 4416, 7), -- Races
 -- Unicorn Seraphim
 (14436, 4121, 9), -- Summoned Monster Magic Protection
-(14436, 4408, 1), -- HP Increase (1x)
-(14436, 4409, 1), -- MP Increase (1x)
-(14436, 4410, 11), -- Average P. Atk.
-(14436, 4411, 11), -- Average M. Atk.
-(14436, 4412, 11), -- Average P. Def.
-(14436, 4413, 11), -- Average M. Def.
-(14436, 4414, 2), -- Standard Type
-(14436, 4415, 3), -- One-handed Sword
-(14436, 4416, 7), -- Spirits
+(14436, 4408, 1), -- HP Modifiers
+(14436, 4409, 1), -- MP Modifiers
+(14436, 4410, 11), -- P. Atk. Modifiers
+(14436, 4411, 11), -- M. Atk. Modifiers
+(14436, 4412, 11), -- P. Def. Modifiers
+(14436, 4413, 11), -- M. Def. Modifiers
+(14436, 4414, 2), -- Armor Type
+(14436, 4415, 3), -- Weapon Type
+(14436, 4416, 7), -- Races
 -- Unicorn Seraphim
 (14437, 4121, 9), -- Summoned Monster Magic Protection
-(14437, 4408, 1), -- HP Increase (1x)
-(14437, 4409, 1), -- MP Increase (1x)
-(14437, 4410, 11), -- Average P. Atk.
-(14437, 4411, 11), -- Average M. Atk.
-(14437, 4412, 11), -- Average P. Def.
-(14437, 4413, 11), -- Average M. Def.
-(14437, 4414, 2), -- Standard Type
-(14437, 4415, 3), -- One-handed Sword
-(14437, 4416, 7), -- Spirits
+(14437, 4408, 1), -- HP Modifiers
+(14437, 4409, 1), -- MP Modifiers
+(14437, 4410, 11), -- P. Atk. Modifiers
+(14437, 4411, 11), -- M. Atk. Modifiers
+(14437, 4412, 11), -- P. Def. Modifiers
+(14437, 4413, 11), -- M. Def. Modifiers
+(14437, 4414, 2), -- Armor Type
+(14437, 4415, 3), -- Weapon Type
+(14437, 4416, 7), -- Races
 -- Unicorn Seraphim
 (14438, 4121, 9), -- Summoned Monster Magic Protection
-(14438, 4408, 1), -- HP Increase (1x)
-(14438, 4409, 1), -- MP Increase (1x)
-(14438, 4410, 11), -- Average P. Atk.
-(14438, 4411, 11), -- Average M. Atk.
-(14438, 4412, 11), -- Average P. Def.
-(14438, 4413, 11), -- Average M. Def.
-(14438, 4414, 2), -- Standard Type
-(14438, 4415, 3), -- One-handed Sword
-(14438, 4416, 7), -- Spirits
+(14438, 4408, 1), -- HP Modifiers
+(14438, 4409, 1), -- MP Modifiers
+(14438, 4410, 11), -- P. Atk. Modifiers
+(14438, 4411, 11), -- M. Atk. Modifiers
+(14438, 4412, 11), -- P. Def. Modifiers
+(14438, 4413, 11), -- M. Def. Modifiers
+(14438, 4414, 2), -- Armor Type
+(14438, 4415, 3), -- Weapon Type
+(14438, 4416, 7), -- Races
 -- Unicorn Seraphim
 (14439, 4121, 9), -- Summoned Monster Magic Protection
-(14439, 4408, 1), -- HP Increase (1x)
-(14439, 4409, 1), -- MP Increase (1x)
-(14439, 4410, 11), -- Average P. Atk.
-(14439, 4411, 11), -- Average M. Atk.
-(14439, 4412, 11), -- Average P. Def.
-(14439, 4413, 11), -- Average M. Def.
-(14439, 4414, 2), -- Standard Type
-(14439, 4415, 3), -- One-handed Sword
-(14439, 4416, 7), -- Spirits
+(14439, 4408, 1), -- HP Modifiers
+(14439, 4409, 1), -- MP Modifiers
+(14439, 4410, 11), -- P. Atk. Modifiers
+(14439, 4411, 11), -- M. Atk. Modifiers
+(14439, 4412, 11), -- P. Def. Modifiers
+(14439, 4413, 11), -- M. Def. Modifiers
+(14439, 4414, 2), -- Armor Type
+(14439, 4415, 3), -- Weapon Type
+(14439, 4416, 7), -- Races
 -- Unicorn Seraphim
 (14440, 4121, 9), -- Summoned Monster Magic Protection
-(14440, 4408, 1), -- HP Increase (1x)
-(14440, 4409, 1), -- MP Increase (1x)
-(14440, 4410, 11), -- Average P. Atk.
-(14440, 4411, 11), -- Average M. Atk.
-(14440, 4412, 11), -- Average P. Def.
-(14440, 4413, 11), -- Average M. Def.
-(14440, 4414, 2), -- Standard Type
-(14440, 4415, 3), -- One-handed Sword
-(14440, 4416, 7), -- Spirits
+(14440, 4408, 1), -- HP Modifiers
+(14440, 4409, 1), -- MP Modifiers
+(14440, 4410, 11), -- P. Atk. Modifiers
+(14440, 4411, 11), -- M. Atk. Modifiers
+(14440, 4412, 11), -- P. Def. Modifiers
+(14440, 4413, 11), -- M. Def. Modifiers
+(14440, 4414, 2), -- Armor Type
+(14440, 4415, 3), -- Weapon Type
+(14440, 4416, 7), -- Races
 -- Unicorn Seraphim
 (14441, 4121, 9), -- Summoned Monster Magic Protection
-(14441, 4408, 1), -- HP Increase (1x)
-(14441, 4409, 1), -- MP Increase (1x)
-(14441, 4410, 11), -- Average P. Atk.
-(14441, 4411, 11), -- Average M. Atk.
-(14441, 4412, 11), -- Average P. Def.
-(14441, 4413, 11), -- Average M. Def.
-(14441, 4414, 2), -- Standard Type
-(14441, 4415, 3), -- One-handed Sword
-(14441, 4416, 7), -- Spirits
+(14441, 4408, 1), -- HP Modifiers
+(14441, 4409, 1), -- MP Modifiers
+(14441, 4410, 11), -- P. Atk. Modifiers
+(14441, 4411, 11), -- M. Atk. Modifiers
+(14441, 4412, 11), -- P. Def. Modifiers
+(14441, 4413, 11), -- M. Def. Modifiers
+(14441, 4414, 2), -- Armor Type
+(14441, 4415, 3), -- Weapon Type
+(14441, 4416, 7), -- Races
 -- Unicorn Seraphim
 (14442, 4121, 9), -- Summoned Monster Magic Protection
-(14442, 4408, 1), -- HP Increase (1x)
-(14442, 4409, 1), -- MP Increase (1x)
-(14442, 4410, 11), -- Average P. Atk.
-(14442, 4411, 11), -- Average M. Atk.
-(14442, 4412, 11), -- Average P. Def.
-(14442, 4413, 11), -- Average M. Def.
-(14442, 4414, 2), -- Standard Type
-(14442, 4415, 3), -- One-handed Sword
-(14442, 4416, 7), -- Spirits
+(14442, 4408, 1), -- HP Modifiers
+(14442, 4409, 1), -- MP Modifiers
+(14442, 4410, 11), -- P. Atk. Modifiers
+(14442, 4411, 11), -- M. Atk. Modifiers
+(14442, 4412, 11), -- P. Def. Modifiers
+(14442, 4413, 11), -- M. Def. Modifiers
+(14442, 4414, 2), -- Armor Type
+(14442, 4415, 3), -- Weapon Type
+(14442, 4416, 7), -- Races
 -- Unicorn Seraphim
 (14443, 4121, 9), -- Summoned Monster Magic Protection
-(14443, 4408, 1), -- HP Increase (1x)
-(14443, 4409, 1), -- MP Increase (1x)
-(14443, 4410, 11), -- Average P. Atk.
-(14443, 4411, 11), -- Average M. Atk.
-(14443, 4412, 11), -- Average P. Def.
-(14443, 4413, 11), -- Average M. Def.
-(14443, 4414, 2), -- Standard Type
-(14443, 4415, 3), -- One-handed Sword
-(14443, 4416, 7), -- Spirits
+(14443, 4408, 1), -- HP Modifiers
+(14443, 4409, 1), -- MP Modifiers
+(14443, 4410, 11), -- P. Atk. Modifiers
+(14443, 4411, 11), -- M. Atk. Modifiers
+(14443, 4412, 11), -- P. Def. Modifiers
+(14443, 4413, 11), -- M. Def. Modifiers
+(14443, 4414, 2), -- Armor Type
+(14443, 4415, 3), -- Weapon Type
+(14443, 4416, 7), -- Races
 -- Unicorn Seraphim
 (14444, 4121, 9), -- Summoned Monster Magic Protection
-(14444, 4408, 1), -- HP Increase (1x)
-(14444, 4409, 1), -- MP Increase (1x)
-(14444, 4410, 11), -- Average P. Atk.
-(14444, 4411, 11), -- Average M. Atk.
-(14444, 4412, 11), -- Average P. Def.
-(14444, 4413, 11), -- Average M. Def.
-(14444, 4414, 2), -- Standard Type
-(14444, 4415, 3), -- One-handed Sword
-(14444, 4416, 7), -- Spirits
+(14444, 4408, 1), -- HP Modifiers
+(14444, 4409, 1), -- MP Modifiers
+(14444, 4410, 11), -- P. Atk. Modifiers
+(14444, 4411, 11), -- M. Atk. Modifiers
+(14444, 4412, 11), -- P. Def. Modifiers
+(14444, 4413, 11), -- M. Def. Modifiers
+(14444, 4414, 2), -- Armor Type
+(14444, 4415, 3), -- Weapon Type
+(14444, 4416, 7), -- Races
 -- Unicorn Seraphim
 (14449, 4121, 9), -- Summoned Monster Magic Protection
-(14449, 4408, 1), -- HP Increase (1x)
-(14449, 4409, 1), -- MP Increase (1x)
-(14449, 4410, 11), -- Average P. Atk.
-(14449, 4411, 11), -- Average M. Atk.
-(14449, 4412, 11), -- Average P. Def.
-(14449, 4413, 11), -- Average M. Def.
-(14449, 4414, 2), -- Standard Type
-(14449, 4415, 3), -- One-handed Sword
-(14449, 4416, 7), -- Spirits
+(14449, 4408, 1), -- HP Modifiers
+(14449, 4409, 1), -- MP Modifiers
+(14449, 4410, 11), -- P. Atk. Modifiers
+(14449, 4411, 11), -- M. Atk. Modifiers
+(14449, 4412, 11), -- P. Def. Modifiers
+(14449, 4413, 11), -- M. Def. Modifiers
+(14449, 4414, 2), -- Armor Type
+(14449, 4415, 3), -- Weapon Type
+(14449, 4416, 7), -- Races
 -- Unicorn Seraphim
 (14450, 4121, 9), -- Summoned Monster Magic Protection
-(14450, 4408, 1), -- HP Increase (1x)
-(14450, 4409, 1), -- MP Increase (1x)
-(14450, 4410, 11), -- Average P. Atk.
-(14450, 4411, 11), -- Average M. Atk.
-(14450, 4412, 11), -- Average P. Def.
-(14450, 4413, 11), -- Average M. Def.
-(14450, 4414, 2), -- Standard Type
-(14450, 4415, 3), -- One-handed Sword
-(14450, 4416, 7), -- Spirits
+(14450, 4408, 1), -- HP Modifiers
+(14450, 4409, 1), -- MP Modifiers
+(14450, 4410, 11), -- P. Atk. Modifiers
+(14450, 4411, 11), -- M. Atk. Modifiers
+(14450, 4412, 11), -- P. Def. Modifiers
+(14450, 4413, 11), -- M. Def. Modifiers
+(14450, 4414, 2), -- Armor Type
+(14450, 4415, 3), -- Weapon Type
+(14450, 4416, 7), -- Races
 -- Unicorn Seraphim
 (14451, 4121, 9), -- Summoned Monster Magic Protection
-(14451, 4408, 1), -- HP Increase (1x)
-(14451, 4409, 1), -- MP Increase (1x)
-(14451, 4410, 11), -- Average P. Atk.
-(14451, 4411, 11), -- Average M. Atk.
-(14451, 4412, 11), -- Average P. Def.
-(14451, 4413, 11), -- Average M. Def.
-(14451, 4414, 2), -- Standard Type
-(14451, 4415, 3), -- One-handed Sword
-(14451, 4416, 7), -- Spirits
+(14451, 4408, 1), -- HP Modifiers
+(14451, 4409, 1), -- MP Modifiers
+(14451, 4410, 11), -- P. Atk. Modifiers
+(14451, 4411, 11), -- M. Atk. Modifiers
+(14451, 4412, 11), -- P. Def. Modifiers
+(14451, 4413, 11), -- M. Def. Modifiers
+(14451, 4414, 2), -- Armor Type
+(14451, 4415, 3), -- Weapon Type
+(14451, 4416, 7), -- Races
 -- Unicorn Seraphim
 (14452, 4121, 9), -- Summoned Monster Magic Protection
-(14452, 4408, 1), -- HP Increase (1x)
-(14452, 4409, 1), -- MP Increase (1x)
-(14452, 4410, 11), -- Average P. Atk.
-(14452, 4411, 11), -- Average M. Atk.
-(14452, 4412, 11), -- Average P. Def.
-(14452, 4413, 11), -- Average M. Def.
-(14452, 4414, 2), -- Standard Type
-(14452, 4415, 3), -- One-handed Sword
-(14452, 4416, 7), -- Spirits
+(14452, 4408, 1), -- HP Modifiers
+(14452, 4409, 1), -- MP Modifiers
+(14452, 4410, 11), -- P. Atk. Modifiers
+(14452, 4411, 11), -- M. Atk. Modifiers
+(14452, 4412, 11), -- P. Def. Modifiers
+(14452, 4413, 11), -- M. Def. Modifiers
+(14452, 4414, 2), -- Armor Type
+(14452, 4415, 3), -- Weapon Type
+(14452, 4416, 7), -- Races
 -- Unicorn Seraphim
 (14453, 4121, 9), -- Summoned Monster Magic Protection
-(14453, 4408, 1), -- HP Increase (1x)
-(14453, 4409, 1), -- MP Increase (1x)
-(14453, 4410, 11), -- Average P. Atk.
-(14453, 4411, 11), -- Average M. Atk.
-(14453, 4412, 11), -- Average P. Def.
-(14453, 4413, 11), -- Average M. Def.
-(14453, 4414, 2), -- Standard Type
-(14453, 4415, 3), -- One-handed Sword
-(14453, 4416, 7), -- Spirits
+(14453, 4408, 1), -- HP Modifiers
+(14453, 4409, 1), -- MP Modifiers
+(14453, 4410, 11), -- P. Atk. Modifiers
+(14453, 4411, 11), -- M. Atk. Modifiers
+(14453, 4412, 11), -- P. Def. Modifiers
+(14453, 4413, 11), -- M. Def. Modifiers
+(14453, 4414, 2), -- Armor Type
+(14453, 4415, 3), -- Weapon Type
+(14453, 4416, 7), -- Races
 -- Unicorn Seraphim
 (14454, 4121, 9), -- Summoned Monster Magic Protection
-(14454, 4408, 1), -- HP Increase (1x)
-(14454, 4409, 1), -- MP Increase (1x)
-(14454, 4410, 11), -- Average P. Atk.
-(14454, 4411, 11), -- Average M. Atk.
-(14454, 4412, 11), -- Average P. Def.
-(14454, 4413, 11), -- Average M. Def.
-(14454, 4414, 2), -- Standard Type
-(14454, 4415, 3), -- One-handed Sword
-(14454, 4416, 7), -- Spirits
+(14454, 4408, 1), -- HP Modifiers
+(14454, 4409, 1), -- MP Modifiers
+(14454, 4410, 11), -- P. Atk. Modifiers
+(14454, 4411, 11), -- M. Atk. Modifiers
+(14454, 4412, 11), -- P. Def. Modifiers
+(14454, 4413, 11), -- M. Def. Modifiers
+(14454, 4414, 2), -- Armor Type
+(14454, 4415, 3), -- Weapon Type
+(14454, 4416, 7), -- Races
 -- Unicorn Seraphim
 (14455, 4121, 9), -- Summoned Monster Magic Protection
-(14455, 4408, 1), -- HP Increase (1x)
-(14455, 4409, 1), -- MP Increase (1x)
-(14455, 4410, 11), -- Average P. Atk.
-(14455, 4411, 11), -- Average M. Atk.
-(14455, 4412, 11), -- Average P. Def.
-(14455, 4413, 11), -- Average M. Def.
-(14455, 4414, 2), -- Standard Type
-(14455, 4415, 3), -- One-handed Sword
-(14455, 4416, 7), -- Spirits
+(14455, 4408, 1), -- HP Modifiers
+(14455, 4409, 1), -- MP Modifiers
+(14455, 4410, 11), -- P. Atk. Modifiers
+(14455, 4411, 11), -- M. Atk. Modifiers
+(14455, 4412, 11), -- P. Def. Modifiers
+(14455, 4413, 11), -- M. Def. Modifiers
+(14455, 4414, 2), -- Armor Type
+(14455, 4415, 3), -- Weapon Type
+(14455, 4416, 7), -- Races
 -- Unicorn Seraphim
 (14456, 4121, 9), -- Summoned Monster Magic Protection
-(14456, 4408, 1), -- HP Increase (1x)
-(14456, 4409, 1), -- MP Increase (1x)
-(14456, 4410, 11), -- Average P. Atk.
-(14456, 4411, 11), -- Average M. Atk.
-(14456, 4412, 11), -- Average P. Def.
-(14456, 4413, 11), -- Average M. Def.
-(14456, 4414, 2), -- Standard Type
-(14456, 4415, 3), -- One-handed Sword
-(14456, 4416, 7), -- Spirits
+(14456, 4408, 1), -- HP Modifiers
+(14456, 4409, 1), -- MP Modifiers
+(14456, 4410, 11), -- P. Atk. Modifiers
+(14456, 4411, 11), -- M. Atk. Modifiers
+(14456, 4412, 11), -- P. Def. Modifiers
+(14456, 4413, 11), -- M. Def. Modifiers
+(14456, 4414, 2), -- Armor Type
+(14456, 4415, 3), -- Weapon Type
+(14456, 4416, 7), -- Races
 -- Unicorn Seraphim
 (14457, 4121, 9), -- Summoned Monster Magic Protection
-(14457, 4408, 1), -- HP Increase (1x)
-(14457, 4409, 1), -- MP Increase (1x)
-(14457, 4410, 11), -- Average P. Atk.
-(14457, 4411, 11), -- Average M. Atk.
-(14457, 4412, 11), -- Average P. Def.
-(14457, 4413, 11), -- Average M. Def.
-(14457, 4414, 2), -- Standard Type
-(14457, 4415, 3), -- One-handed Sword
-(14457, 4416, 7), -- Spirits
+(14457, 4408, 1), -- HP Modifiers
+(14457, 4409, 1), -- MP Modifiers
+(14457, 4410, 11), -- P. Atk. Modifiers
+(14457, 4411, 11), -- M. Atk. Modifiers
+(14457, 4412, 11), -- P. Def. Modifiers
+(14457, 4413, 11), -- M. Def. Modifiers
+(14457, 4414, 2), -- Armor Type
+(14457, 4415, 3), -- Weapon Type
+(14457, 4416, 7), -- Races
 -- Unicorn Seraphim
 (14458, 4121, 9), -- Summoned Monster Magic Protection
-(14458, 4408, 1), -- HP Increase (1x)
-(14458, 4409, 1), -- MP Increase (1x)
-(14458, 4410, 11), -- Average P. Atk.
-(14458, 4411, 11), -- Average M. Atk.
-(14458, 4412, 11), -- Average P. Def.
-(14458, 4413, 11), -- Average M. Def.
-(14458, 4414, 2), -- Standard Type
-(14458, 4415, 3), -- One-handed Sword
-(14458, 4416, 7), -- Spirits
+(14458, 4408, 1), -- HP Modifiers
+(14458, 4409, 1), -- MP Modifiers
+(14458, 4410, 11), -- P. Atk. Modifiers
+(14458, 4411, 11), -- M. Atk. Modifiers
+(14458, 4412, 11), -- P. Def. Modifiers
+(14458, 4413, 11), -- M. Def. Modifiers
+(14458, 4414, 2), -- Armor Type
+(14458, 4415, 3), -- Weapon Type
+(14458, 4416, 7), -- Races
 -- Unicorn Seraphim
 (14459, 4121, 9), -- Summoned Monster Magic Protection
-(14459, 4408, 1), -- HP Increase (1x)
-(14459, 4409, 1), -- MP Increase (1x)
-(14459, 4410, 11), -- Average P. Atk.
-(14459, 4411, 11), -- Average M. Atk.
-(14459, 4412, 11), -- Average P. Def.
-(14459, 4413, 11), -- Average M. Def.
-(14459, 4414, 2), -- Standard Type
-(14459, 4415, 3), -- One-handed Sword
-(14459, 4416, 7), -- Spirits
+(14459, 4408, 1), -- HP Modifiers
+(14459, 4409, 1), -- MP Modifiers
+(14459, 4410, 11), -- P. Atk. Modifiers
+(14459, 4411, 11), -- M. Atk. Modifiers
+(14459, 4412, 11), -- P. Def. Modifiers
+(14459, 4413, 11), -- M. Def. Modifiers
+(14459, 4414, 2), -- Armor Type
+(14459, 4415, 3), -- Weapon Type
+(14459, 4416, 7), -- Races
 -- Unicorn Seraphim
 (14460, 4121, 9), -- Summoned Monster Magic Protection
-(14460, 4408, 1), -- HP Increase (1x)
-(14460, 4409, 1), -- MP Increase (1x)
-(14460, 4410, 11), -- Average P. Atk.
-(14460, 4411, 11), -- Average M. Atk.
-(14460, 4412, 11), -- Average P. Def.
-(14460, 4413, 11), -- Average M. Def.
-(14460, 4414, 2), -- Standard Type
-(14460, 4415, 3), -- One-handed Sword
-(14460, 4416, 7), -- Spirits
+(14460, 4408, 1), -- HP Modifiers
+(14460, 4409, 1), -- MP Modifiers
+(14460, 4410, 11), -- P. Atk. Modifiers
+(14460, 4411, 11), -- M. Atk. Modifiers
+(14460, 4412, 11), -- P. Def. Modifiers
+(14460, 4413, 11), -- M. Def. Modifiers
+(14460, 4414, 2), -- Armor Type
+(14460, 4415, 3), -- Weapon Type
+(14460, 4416, 7), -- Races
 -- Unicorn Seraphim
 (14461, 4121, 9), -- Summoned Monster Magic Protection
-(14461, 4408, 1), -- HP Increase (1x)
-(14461, 4409, 1), -- MP Increase (1x)
-(14461, 4410, 11), -- Average P. Atk.
-(14461, 4411, 11), -- Average M. Atk.
-(14461, 4412, 11), -- Average P. Def.
-(14461, 4413, 11), -- Average M. Def.
-(14461, 4414, 2), -- Standard Type
-(14461, 4415, 3), -- One-handed Sword
-(14461, 4416, 7), -- Spirits
+(14461, 4408, 1), -- HP Modifiers
+(14461, 4409, 1), -- MP Modifiers
+(14461, 4410, 11), -- P. Atk. Modifiers
+(14461, 4411, 11), -- M. Atk. Modifiers
+(14461, 4412, 11), -- P. Def. Modifiers
+(14461, 4413, 11), -- M. Def. Modifiers
+(14461, 4414, 2), -- Armor Type
+(14461, 4415, 3), -- Weapon Type
+(14461, 4416, 7), -- Races
 -- Unicorn Seraphim
 (14462, 4121, 9), -- Summoned Monster Magic Protection
-(14462, 4408, 1), -- HP Increase (1x)
-(14462, 4409, 1), -- MP Increase (1x)
-(14462, 4410, 11), -- Average P. Atk.
-(14462, 4411, 11), -- Average M. Atk.
-(14462, 4412, 11), -- Average P. Def.
-(14462, 4413, 11), -- Average M. Def.
-(14462, 4414, 2), -- Standard Type
-(14462, 4415, 3), -- One-handed Sword
-(14462, 4416, 7), -- Spirits
+(14462, 4408, 1), -- HP Modifiers
+(14462, 4409, 1), -- MP Modifiers
+(14462, 4410, 11), -- P. Atk. Modifiers
+(14462, 4411, 11), -- M. Atk. Modifiers
+(14462, 4412, 11), -- P. Def. Modifiers
+(14462, 4413, 11), -- M. Def. Modifiers
+(14462, 4414, 2), -- Armor Type
+(14462, 4415, 3), -- Weapon Type
+(14462, 4416, 7), -- Races
 -- Unicorn Seraphim
 (14463, 4121, 9), -- Summoned Monster Magic Protection
-(14463, 4408, 1), -- HP Increase (1x)
-(14463, 4409, 1), -- MP Increase (1x)
-(14463, 4410, 11), -- Average P. Atk.
-(14463, 4411, 11), -- Average M. Atk.
-(14463, 4412, 11), -- Average P. Def.
-(14463, 4413, 11), -- Average M. Def.
-(14463, 4414, 2), -- Standard Type
-(14463, 4415, 3), -- One-handed Sword
-(14463, 4416, 7), -- Spirits
+(14463, 4408, 1), -- HP Modifiers
+(14463, 4409, 1), -- MP Modifiers
+(14463, 4410, 11), -- P. Atk. Modifiers
+(14463, 4411, 11), -- M. Atk. Modifiers
+(14463, 4412, 11), -- P. Def. Modifiers
+(14463, 4413, 11), -- M. Def. Modifiers
+(14463, 4414, 2), -- Armor Type
+(14463, 4415, 3), -- Weapon Type
+(14463, 4416, 7), -- Races
 -- Unicorn Seraphim
 (14464, 4121, 9), -- Summoned Monster Magic Protection
-(14464, 4408, 1), -- HP Increase (1x)
-(14464, 4409, 1), -- MP Increase (1x)
-(14464, 4410, 11), -- Average P. Atk.
-(14464, 4411, 11), -- Average M. Atk.
-(14464, 4412, 11), -- Average P. Def.
-(14464, 4413, 11), -- Average M. Def.
-(14464, 4414, 2), -- Standard Type
-(14464, 4415, 3), -- One-handed Sword
-(14464, 4416, 7), -- Spirits
+(14464, 4408, 1), -- HP Modifiers
+(14464, 4409, 1), -- MP Modifiers
+(14464, 4410, 11), -- P. Atk. Modifiers
+(14464, 4411, 11), -- M. Atk. Modifiers
+(14464, 4412, 11), -- P. Def. Modifiers
+(14464, 4413, 11), -- M. Def. Modifiers
+(14464, 4414, 2), -- Armor Type
+(14464, 4415, 3), -- Weapon Type
+(14464, 4416, 7), -- Races
 -- Unicorn Seraphim
 (14465, 4121, 9), -- Summoned Monster Magic Protection
-(14465, 4408, 1), -- HP Increase (1x)
-(14465, 4409, 1), -- MP Increase (1x)
-(14465, 4410, 11), -- Average P. Atk.
-(14465, 4411, 11), -- Average M. Atk.
-(14465, 4412, 11), -- Average P. Def.
-(14465, 4413, 11), -- Average M. Def.
-(14465, 4414, 2), -- Standard Type
-(14465, 4415, 3), -- One-handed Sword
-(14465, 4416, 7), -- Spirits
+(14465, 4408, 1), -- HP Modifiers
+(14465, 4409, 1), -- MP Modifiers
+(14465, 4410, 11), -- P. Atk. Modifiers
+(14465, 4411, 11), -- M. Atk. Modifiers
+(14465, 4412, 11), -- P. Def. Modifiers
+(14465, 4413, 11), -- M. Def. Modifiers
+(14465, 4414, 2), -- Armor Type
+(14465, 4415, 3), -- Weapon Type
+(14465, 4416, 7), -- Races
 -- Unicorn Seraphim
 (14466, 4121, 9), -- Summoned Monster Magic Protection
-(14466, 4408, 1), -- HP Increase (1x)
-(14466, 4409, 1), -- MP Increase (1x)
-(14466, 4410, 11), -- Average P. Atk.
-(14466, 4411, 11), -- Average M. Atk.
-(14466, 4412, 11), -- Average P. Def.
-(14466, 4413, 11), -- Average M. Def.
-(14466, 4414, 2), -- Standard Type
-(14466, 4415, 3), -- One-handed Sword
-(14466, 4416, 7), -- Spirits
+(14466, 4408, 1), -- HP Modifiers
+(14466, 4409, 1), -- MP Modifiers
+(14466, 4410, 11), -- P. Atk. Modifiers
+(14466, 4411, 11), -- M. Atk. Modifiers
+(14466, 4412, 11), -- P. Def. Modifiers
+(14466, 4413, 11), -- M. Def. Modifiers
+(14466, 4414, 2), -- Armor Type
+(14466, 4415, 3), -- Weapon Type
+(14466, 4416, 7), -- Races
 -- Unicorn Seraphim
 (14467, 4121, 9), -- Summoned Monster Magic Protection
-(14467, 4408, 1), -- HP Increase (1x)
-(14467, 4409, 1), -- MP Increase (1x)
-(14467, 4410, 11), -- Average P. Atk.
-(14467, 4411, 11), -- Average M. Atk.
-(14467, 4412, 11), -- Average P. Def.
-(14467, 4413, 11), -- Average M. Def.
-(14467, 4414, 2), -- Standard Type
-(14467, 4415, 3), -- One-handed Sword
-(14467, 4416, 7), -- Spirits
+(14467, 4408, 1), -- HP Modifiers
+(14467, 4409, 1), -- MP Modifiers
+(14467, 4410, 11), -- P. Atk. Modifiers
+(14467, 4411, 11), -- M. Atk. Modifiers
+(14467, 4412, 11), -- P. Def. Modifiers
+(14467, 4413, 11), -- M. Def. Modifiers
+(14467, 4414, 2), -- Armor Type
+(14467, 4415, 3), -- Weapon Type
+(14467, 4416, 7), -- Races
 -- Unicorn Seraphim
 (14468, 4121, 9), -- Summoned Monster Magic Protection
-(14468, 4408, 1), -- HP Increase (1x)
-(14468, 4409, 1), -- MP Increase (1x)
-(14468, 4410, 11), -- Average P. Atk.
-(14468, 4411, 11), -- Average M. Atk.
-(14468, 4412, 11), -- Average P. Def.
-(14468, 4413, 11), -- Average M. Def.
-(14468, 4414, 2), -- Standard Type
-(14468, 4415, 3), -- One-handed Sword
-(14468, 4416, 7), -- Spirits
+(14468, 4408, 1), -- HP Modifiers
+(14468, 4409, 1), -- MP Modifiers
+(14468, 4410, 11), -- P. Atk. Modifiers
+(14468, 4411, 11), -- M. Atk. Modifiers
+(14468, 4412, 11), -- P. Def. Modifiers
+(14468, 4413, 11), -- M. Def. Modifiers
+(14468, 4414, 2), -- Armor Type
+(14468, 4415, 3), -- Weapon Type
+(14468, 4416, 7), -- Races
 -- Unicorn Seraphim
 (14469, 4121, 9), -- Summoned Monster Magic Protection
-(14469, 4408, 1), -- HP Increase (1x)
-(14469, 4409, 1), -- MP Increase (1x)
-(14469, 4410, 11), -- Average P. Atk.
-(14469, 4411, 11), -- Average M. Atk.
-(14469, 4412, 11), -- Average P. Def.
-(14469, 4413, 11), -- Average M. Def.
-(14469, 4414, 2), -- Standard Type
-(14469, 4415, 3), -- One-handed Sword
-(14469, 4416, 7), -- Spirits
+(14469, 4408, 1), -- HP Modifiers
+(14469, 4409, 1), -- MP Modifiers
+(14469, 4410, 11), -- P. Atk. Modifiers
+(14469, 4411, 11), -- M. Atk. Modifiers
+(14469, 4412, 11), -- P. Def. Modifiers
+(14469, 4413, 11), -- M. Def. Modifiers
+(14469, 4414, 2), -- Armor Type
+(14469, 4415, 3), -- Weapon Type
+(14469, 4416, 7), -- Races
 -- Unicorn Seraphim
 (14470, 4121, 9), -- Summoned Monster Magic Protection
-(14470, 4408, 1), -- HP Increase (1x)
-(14470, 4409, 1), -- MP Increase (1x)
-(14470, 4410, 11), -- Average P. Atk.
-(14470, 4411, 11), -- Average M. Atk.
-(14470, 4412, 11), -- Average P. Def.
-(14470, 4413, 11), -- Average M. Def.
-(14470, 4414, 2), -- Standard Type
-(14470, 4415, 3), -- One-handed Sword
-(14470, 4416, 7), -- Spirits
+(14470, 4408, 1), -- HP Modifiers
+(14470, 4409, 1), -- MP Modifiers
+(14470, 4410, 11), -- P. Atk. Modifiers
+(14470, 4411, 11), -- M. Atk. Modifiers
+(14470, 4412, 11), -- P. Def. Modifiers
+(14470, 4413, 11), -- M. Def. Modifiers
+(14470, 4414, 2), -- Armor Type
+(14470, 4415, 3), -- Weapon Type
+(14470, 4416, 7), -- Races
 -- Unicorn Seraphim
 (14471, 4121, 9), -- Summoned Monster Magic Protection
-(14471, 4408, 1), -- HP Increase (1x)
-(14471, 4409, 1), -- MP Increase (1x)
-(14471, 4410, 11), -- Average P. Atk.
-(14471, 4411, 11), -- Average M. Atk.
-(14471, 4412, 11), -- Average P. Def.
-(14471, 4413, 11), -- Average M. Def.
-(14471, 4414, 2), -- Standard Type
-(14471, 4415, 3), -- One-handed Sword
-(14471, 4416, 7), -- Spirits
+(14471, 4408, 1), -- HP Modifiers
+(14471, 4409, 1), -- MP Modifiers
+(14471, 4410, 11), -- P. Atk. Modifiers
+(14471, 4411, 11), -- M. Atk. Modifiers
+(14471, 4412, 11), -- P. Def. Modifiers
+(14471, 4413, 11), -- M. Def. Modifiers
+(14471, 4414, 2), -- Armor Type
+(14471, 4415, 3), -- Weapon Type
+(14471, 4416, 7), -- Races
 -- Unicorn Seraphim
 (14472, 4121, 9), -- Summoned Monster Magic Protection
-(14472, 4408, 1), -- HP Increase (1x)
-(14472, 4409, 1), -- MP Increase (1x)
-(14472, 4410, 11), -- Average P. Atk.
-(14472, 4411, 11), -- Average M. Atk.
-(14472, 4412, 11), -- Average P. Def.
-(14472, 4413, 11), -- Average M. Def.
-(14472, 4414, 2), -- Standard Type
-(14472, 4415, 3), -- One-handed Sword
-(14472, 4416, 7), -- Spirits
+(14472, 4408, 1), -- HP Modifiers
+(14472, 4409, 1), -- MP Modifiers
+(14472, 4410, 11), -- P. Atk. Modifiers
+(14472, 4411, 11), -- M. Atk. Modifiers
+(14472, 4412, 11), -- P. Def. Modifiers
+(14472, 4413, 11), -- M. Def. Modifiers
+(14472, 4414, 2), -- Armor Type
+(14472, 4415, 3), -- Weapon Type
+(14472, 4416, 7), -- Races
 -- Unicorn Seraphim
 (14473, 4121, 9), -- Summoned Monster Magic Protection
-(14473, 4408, 1), -- HP Increase (1x)
-(14473, 4409, 1), -- MP Increase (1x)
-(14473, 4410, 11), -- Average P. Atk.
-(14473, 4411, 11), -- Average M. Atk.
-(14473, 4412, 11), -- Average P. Def.
-(14473, 4413, 11), -- Average M. Def.
-(14473, 4414, 2), -- Standard Type
-(14473, 4415, 3), -- One-handed Sword
-(14473, 4416, 7), -- Spirits
+(14473, 4408, 1), -- HP Modifiers
+(14473, 4409, 1), -- MP Modifiers
+(14473, 4410, 11), -- P. Atk. Modifiers
+(14473, 4411, 11), -- M. Atk. Modifiers
+(14473, 4412, 11), -- P. Def. Modifiers
+(14473, 4413, 11), -- M. Def. Modifiers
+(14473, 4414, 2), -- Armor Type
+(14473, 4415, 3), -- Weapon Type
+(14473, 4416, 7), -- Races
 -- Unicorn Seraphim
 (14474, 4121, 9), -- Summoned Monster Magic Protection
-(14474, 4408, 1), -- HP Increase (1x)
-(14474, 4409, 1), -- MP Increase (1x)
-(14474, 4410, 11), -- Average P. Atk.
-(14474, 4411, 11), -- Average M. Atk.
-(14474, 4412, 11), -- Average P. Def.
-(14474, 4413, 11), -- Average M. Def.
-(14474, 4414, 2), -- Standard Type
-(14474, 4415, 3), -- One-handed Sword
-(14474, 4416, 7), -- Spirits
+(14474, 4408, 1), -- HP Modifiers
+(14474, 4409, 1), -- MP Modifiers
+(14474, 4410, 11), -- P. Atk. Modifiers
+(14474, 4411, 11), -- M. Atk. Modifiers
+(14474, 4412, 11), -- P. Def. Modifiers
+(14474, 4413, 11), -- M. Def. Modifiers
+(14474, 4414, 2), -- Armor Type
+(14474, 4415, 3), -- Weapon Type
+(14474, 4416, 7), -- Races
 -- Unicorn Seraphim
 (14475, 4121, 9), -- Summoned Monster Magic Protection
-(14475, 4408, 1), -- HP Increase (1x)
-(14475, 4409, 1), -- MP Increase (1x)
-(14475, 4410, 11), -- Average P. Atk.
-(14475, 4411, 11), -- Average M. Atk.
-(14475, 4412, 11), -- Average P. Def.
-(14475, 4413, 11), -- Average M. Def.
-(14475, 4414, 2), -- Standard Type
-(14475, 4415, 3), -- One-handed Sword
-(14475, 4416, 7), -- Spirits
+(14475, 4408, 1), -- HP Modifiers
+(14475, 4409, 1), -- MP Modifiers
+(14475, 4410, 11), -- P. Atk. Modifiers
+(14475, 4411, 11), -- M. Atk. Modifiers
+(14475, 4412, 11), -- P. Def. Modifiers
+(14475, 4413, 11), -- M. Def. Modifiers
+(14475, 4414, 2), -- Armor Type
+(14475, 4415, 3), -- Weapon Type
+(14475, 4416, 7), -- Races
 -- Unicorn Seraphim
 (14476, 4121, 9), -- Summoned Monster Magic Protection
-(14476, 4408, 1), -- HP Increase (1x)
-(14476, 4409, 1), -- MP Increase (1x)
-(14476, 4410, 11), -- Average P. Atk.
-(14476, 4411, 11), -- Average M. Atk.
-(14476, 4412, 11), -- Average P. Def.
-(14476, 4413, 11), -- Average M. Def.
-(14476, 4414, 2), -- Standard Type
-(14476, 4415, 3), -- One-handed Sword
-(14476, 4416, 7), -- Spirits
+(14476, 4408, 1), -- HP Modifiers
+(14476, 4409, 1), -- MP Modifiers
+(14476, 4410, 11), -- P. Atk. Modifiers
+(14476, 4411, 11), -- M. Atk. Modifiers
+(14476, 4412, 11), -- P. Def. Modifiers
+(14476, 4413, 11), -- M. Def. Modifiers
+(14476, 4414, 2), -- Armor Type
+(14476, 4415, 3), -- Weapon Type
+(14476, 4416, 7), -- Races
 -- Unicorn Seraphim
 (14477, 4121, 9), -- Summoned Monster Magic Protection
-(14477, 4408, 1), -- HP Increase (1x)
-(14477, 4409, 1), -- MP Increase (1x)
-(14477, 4410, 11), -- Average P. Atk.
-(14477, 4411, 11), -- Average M. Atk.
-(14477, 4412, 11), -- Average P. Def.
-(14477, 4413, 11), -- Average M. Def.
-(14477, 4414, 2), -- Standard Type
-(14477, 4415, 3), -- One-handed Sword
-(14477, 4416, 7), -- Spirits
+(14477, 4408, 1), -- HP Modifiers
+(14477, 4409, 1), -- MP Modifiers
+(14477, 4410, 11), -- P. Atk. Modifiers
+(14477, 4411, 11), -- M. Atk. Modifiers
+(14477, 4412, 11), -- P. Def. Modifiers
+(14477, 4413, 11), -- M. Def. Modifiers
+(14477, 4414, 2), -- Armor Type
+(14477, 4415, 3), -- Weapon Type
+(14477, 4416, 7), -- Races
 -- Unicorn Seraphim
 (14478, 4121, 9), -- Summoned Monster Magic Protection
-(14478, 4408, 1), -- HP Increase (1x)
-(14478, 4409, 1), -- MP Increase (1x)
-(14478, 4410, 11), -- Average P. Atk.
-(14478, 4411, 11), -- Average M. Atk.
-(14478, 4412, 11), -- Average P. Def.
-(14478, 4413, 11), -- Average M. Def.
-(14478, 4414, 2), -- Standard Type
-(14478, 4415, 3), -- One-handed Sword
-(14478, 4416, 7), -- Spirits
+(14478, 4408, 1), -- HP Modifiers
+(14478, 4409, 1), -- MP Modifiers
+(14478, 4410, 11), -- P. Atk. Modifiers
+(14478, 4411, 11), -- M. Atk. Modifiers
+(14478, 4412, 11), -- P. Def. Modifiers
+(14478, 4413, 11), -- M. Def. Modifiers
+(14478, 4414, 2), -- Armor Type
+(14478, 4415, 3), -- Weapon Type
+(14478, 4416, 7), -- Races
 -- Shadow
 (14479, 4121, 9), -- Summoned Monster Magic Protection
-(14479, 4408, 6), -- HP Very High
-(14479, 4409, 1), -- MP Increase (1x)
-(14479, 4410, 13), -- Slightly Strong P. Atk.
-(14479, 4411, 11), -- Average M. Atk.
-(14479, 4412, 11), -- Average P. Def.
-(14479, 4413, 11), -- Average M. Def.
-(14479, 4414, 2), -- Standard Type
-(14479, 4415, 3), -- One-handed Sword
-(14479, 4416, 9), -- Demons
-(14479, 5038, 7), -- Servitor PvP Penalty
+(14479, 4408, 6), -- HP Modifiers
+(14479, 4409, 1), -- MP Modifiers
+(14479, 4410, 13), -- P. Atk. Modifiers
+(14479, 4411, 11), -- M. Atk. Modifiers
+(14479, 4412, 11), -- P. Def. Modifiers
+(14479, 4413, 11), -- M. Def. Modifiers
+(14479, 4414, 2), -- Armor Type
+(14479, 4415, 3), -- Weapon Type
+(14479, 4416, 9), -- Races
+(14479, 5038, 7), -- Summon PVP Penalty
 -- Shadow
 (14480, 4121, 9), -- Summoned Monster Magic Protection
-(14480, 4408, 6), -- HP Very High
-(14480, 4409, 1), -- MP Increase (1x)
-(14480, 4410, 13), -- Slightly Strong P. Atk.
-(14480, 4411, 11), -- Average M. Atk.
-(14480, 4412, 11), -- Average P. Def.
-(14480, 4413, 11), -- Average M. Def.
-(14480, 4414, 2), -- Standard Type
-(14480, 4415, 3), -- One-handed Sword
-(14480, 4416, 9), -- Demons
-(14480, 5038, 7), -- Servitor PvP Penalty
+(14480, 4408, 6), -- HP Modifiers
+(14480, 4409, 1), -- MP Modifiers
+(14480, 4410, 13), -- P. Atk. Modifiers
+(14480, 4411, 11), -- M. Atk. Modifiers
+(14480, 4412, 11), -- P. Def. Modifiers
+(14480, 4413, 11), -- M. Def. Modifiers
+(14480, 4414, 2), -- Armor Type
+(14480, 4415, 3), -- Weapon Type
+(14480, 4416, 9), -- Races
+(14480, 5038, 7), -- Summon PVP Penalty
 -- Shadow
 (14481, 4121, 9), -- Summoned Monster Magic Protection
-(14481, 4408, 6), -- HP Very High
-(14481, 4409, 1), -- MP Increase (1x)
-(14481, 4410, 13), -- Slightly Strong P. Atk.
-(14481, 4411, 11), -- Average M. Atk.
-(14481, 4412, 11), -- Average P. Def.
-(14481, 4413, 11), -- Average M. Def.
-(14481, 4414, 2), -- Standard Type
-(14481, 4415, 3), -- One-handed Sword
-(14481, 4416, 9), -- Demons
-(14481, 5038, 7), -- Servitor PvP Penalty
+(14481, 4408, 6), -- HP Modifiers
+(14481, 4409, 1), -- MP Modifiers
+(14481, 4410, 13), -- P. Atk. Modifiers
+(14481, 4411, 11), -- M. Atk. Modifiers
+(14481, 4412, 11), -- P. Def. Modifiers
+(14481, 4413, 11), -- M. Def. Modifiers
+(14481, 4414, 2), -- Armor Type
+(14481, 4415, 3), -- Weapon Type
+(14481, 4416, 9), -- Races
+(14481, 5038, 7), -- Summon PVP Penalty
 -- Shadow
 (14482, 4121, 9), -- Summoned Monster Magic Protection
-(14482, 4408, 6), -- HP Very High
-(14482, 4409, 1), -- MP Increase (1x)
-(14482, 4410, 13), -- Slightly Strong P. Atk.
-(14482, 4411, 11), -- Average M. Atk.
-(14482, 4412, 11), -- Average P. Def.
-(14482, 4413, 11), -- Average M. Def.
-(14482, 4414, 2), -- Standard Type
-(14482, 4415, 3), -- One-handed Sword
-(14482, 4416, 9), -- Demons
-(14482, 5038, 7), -- Servitor PvP Penalty
+(14482, 4408, 6), -- HP Modifiers
+(14482, 4409, 1), -- MP Modifiers
+(14482, 4410, 13), -- P. Atk. Modifiers
+(14482, 4411, 11), -- M. Atk. Modifiers
+(14482, 4412, 11), -- P. Def. Modifiers
+(14482, 4413, 11), -- M. Def. Modifiers
+(14482, 4414, 2), -- Armor Type
+(14482, 4415, 3), -- Weapon Type
+(14482, 4416, 9), -- Races
+(14482, 5038, 7), -- Summon PVP Penalty
 -- Shadow
 (14483, 4121, 9), -- Summoned Monster Magic Protection
-(14483, 4408, 6), -- HP Very High
-(14483, 4409, 1), -- MP Increase (1x)
-(14483, 4410, 13), -- Slightly Strong P. Atk.
-(14483, 4411, 11), -- Average M. Atk.
-(14483, 4412, 12), -- Slightly Strong P. Def.
-(14483, 4413, 12), -- Slightly Strong M. Def.
-(14483, 4414, 2), -- Standard Type
-(14483, 4415, 3), -- One-handed Sword
-(14483, 4416, 9), -- Demons
-(14483, 5038, 7), -- Servitor PvP Penalty
+(14483, 4408, 6), -- HP Modifiers
+(14483, 4409, 1), -- MP Modifiers
+(14483, 4410, 13), -- P. Atk. Modifiers
+(14483, 4411, 11), -- M. Atk. Modifiers
+(14483, 4412, 12), -- P. Def. Modifiers
+(14483, 4413, 12), -- M. Def. Modifiers
+(14483, 4414, 2), -- Armor Type
+(14483, 4415, 3), -- Weapon Type
+(14483, 4416, 9), -- Races
+(14483, 5038, 7), -- Summon PVP Penalty
 -- Shadow
 (14484, 4121, 9), -- Summoned Monster Magic Protection
-(14484, 4408, 6), -- HP Very High
-(14484, 4409, 1), -- MP Increase (1x)
-(14484, 4410, 13), -- Slightly Strong P. Atk.
-(14484, 4411, 11), -- Average M. Atk.
-(14484, 4412, 12), -- Slightly Strong P. Def.
-(14484, 4413, 12), -- Slightly Strong M. Def.
-(14484, 4414, 2), -- Standard Type
-(14484, 4415, 3), -- One-handed Sword
-(14484, 4416, 9), -- Demons
-(14484, 5038, 7), -- Servitor PvP Penalty
+(14484, 4408, 6), -- HP Modifiers
+(14484, 4409, 1), -- MP Modifiers
+(14484, 4410, 13), -- P. Atk. Modifiers
+(14484, 4411, 11), -- M. Atk. Modifiers
+(14484, 4412, 12), -- P. Def. Modifiers
+(14484, 4413, 12), -- M. Def. Modifiers
+(14484, 4414, 2), -- Armor Type
+(14484, 4415, 3), -- Weapon Type
+(14484, 4416, 9), -- Races
+(14484, 5038, 7), -- Summon PVP Penalty
 -- Shadow
 (14485, 4121, 9), -- Summoned Monster Magic Protection
-(14485, 4408, 6), -- HP Very High
-(14485, 4409, 1), -- MP Increase (1x)
-(14485, 4410, 13), -- Slightly Strong P. Atk.
-(14485, 4411, 11), -- Average M. Atk.
-(14485, 4412, 12), -- Slightly Strong P. Def.
-(14485, 4413, 12), -- Slightly Strong M. Def.
-(14485, 4414, 2), -- Standard Type
-(14485, 4415, 3), -- One-handed Sword
-(14485, 4416, 9), -- Demons
-(14485, 5038, 7), -- Servitor PvP Penalty
+(14485, 4408, 6), -- HP Modifiers
+(14485, 4409, 1), -- MP Modifiers
+(14485, 4410, 13), -- P. Atk. Modifiers
+(14485, 4411, 11), -- M. Atk. Modifiers
+(14485, 4412, 12), -- P. Def. Modifiers
+(14485, 4413, 12), -- M. Def. Modifiers
+(14485, 4414, 2), -- Armor Type
+(14485, 4415, 3), -- Weapon Type
+(14485, 4416, 9), -- Races
+(14485, 5038, 7), -- Summon PVP Penalty
 -- Shadow
 (14486, 4121, 9), -- Summoned Monster Magic Protection
-(14486, 4408, 6), -- HP Very High
-(14486, 4409, 1), -- MP Increase (1x)
-(14486, 4410, 13), -- Slightly Strong P. Atk.
-(14486, 4411, 11), -- Average M. Atk.
-(14486, 4412, 12), -- Slightly Strong P. Def.
-(14486, 4413, 12), -- Slightly Strong M. Def.
-(14486, 4414, 2), -- Standard Type
-(14486, 4415, 3), -- One-handed Sword
-(14486, 4416, 9), -- Demons
-(14486, 5038, 7), -- Servitor PvP Penalty
+(14486, 4408, 6), -- HP Modifiers
+(14486, 4409, 1), -- MP Modifiers
+(14486, 4410, 13), -- P. Atk. Modifiers
+(14486, 4411, 11), -- M. Atk. Modifiers
+(14486, 4412, 12), -- P. Def. Modifiers
+(14486, 4413, 12), -- M. Def. Modifiers
+(14486, 4414, 2), -- Armor Type
+(14486, 4415, 3), -- Weapon Type
+(14486, 4416, 9), -- Races
+(14486, 5038, 7), -- Summon PVP Penalty
 -- Shadow
 (14487, 4121, 9), -- Summoned Monster Magic Protection
-(14487, 4408, 6), -- HP Very High
-(14487, 4409, 1), -- MP Increase (1x)
-(14487, 4410, 13), -- Slightly Strong P. Atk.
-(14487, 4411, 11), -- Average M. Atk.
-(14487, 4412, 12), -- Slightly Strong P. Def.
-(14487, 4413, 12), -- Slightly Strong M. Def.
-(14487, 4414, 2), -- Standard Type
-(14487, 4415, 3), -- One-handed Sword
-(14487, 4416, 9), -- Demons
-(14487, 5038, 7), -- Servitor PvP Penalty
+(14487, 4408, 6), -- HP Modifiers
+(14487, 4409, 1), -- MP Modifiers
+(14487, 4410, 13), -- P. Atk. Modifiers
+(14487, 4411, 11), -- M. Atk. Modifiers
+(14487, 4412, 12), -- P. Def. Modifiers
+(14487, 4413, 12), -- M. Def. Modifiers
+(14487, 4414, 2), -- Armor Type
+(14487, 4415, 3), -- Weapon Type
+(14487, 4416, 9), -- Races
+(14487, 5038, 7), -- Summon PVP Penalty
 -- Shadow
 (14488, 4121, 9), -- Summoned Monster Magic Protection
-(14488, 4408, 6), -- HP Very High
-(14488, 4409, 1), -- MP Increase (1x)
-(14488, 4410, 13), -- Slightly Strong P. Atk.
-(14488, 4411, 11), -- Average M. Atk.
-(14488, 4412, 12), -- Slightly Strong P. Def.
-(14488, 4413, 12), -- Slightly Strong M. Def.
-(14488, 4414, 2), -- Standard Type
-(14488, 4415, 3), -- One-handed Sword
-(14488, 4416, 9), -- Demons
-(14488, 5038, 7), -- Servitor PvP Penalty
+(14488, 4408, 6), -- HP Modifiers
+(14488, 4409, 1), -- MP Modifiers
+(14488, 4410, 13), -- P. Atk. Modifiers
+(14488, 4411, 11), -- M. Atk. Modifiers
+(14488, 4412, 12), -- P. Def. Modifiers
+(14488, 4413, 12), -- M. Def. Modifiers
+(14488, 4414, 2), -- Armor Type
+(14488, 4415, 3), -- Weapon Type
+(14488, 4416, 9), -- Races
+(14488, 5038, 7), -- Summon PVP Penalty
 -- Shadow
 (14489, 4121, 9), -- Summoned Monster Magic Protection
-(14489, 4408, 6), -- HP Very High
-(14489, 4409, 1), -- MP Increase (1x)
-(14489, 4410, 13), -- Slightly Strong P. Atk.
-(14489, 4411, 11), -- Average M. Atk.
-(14489, 4412, 12), -- Slightly Strong P. Def.
-(14489, 4413, 12), -- Slightly Strong M. Def.
-(14489, 4414, 2), -- Standard Type
-(14489, 4415, 3), -- One-handed Sword
-(14489, 4416, 9), -- Demons
-(14489, 5038, 7), -- Servitor PvP Penalty
+(14489, 4408, 6), -- HP Modifiers
+(14489, 4409, 1), -- MP Modifiers
+(14489, 4410, 13), -- P. Atk. Modifiers
+(14489, 4411, 11), -- M. Atk. Modifiers
+(14489, 4412, 12), -- P. Def. Modifiers
+(14489, 4413, 12), -- M. Def. Modifiers
+(14489, 4414, 2), -- Armor Type
+(14489, 4415, 3), -- Weapon Type
+(14489, 4416, 9), -- Races
+(14489, 5038, 7), -- Summon PVP Penalty
 -- Shadow
 (14490, 4121, 9), -- Summoned Monster Magic Protection
-(14490, 4408, 6), -- HP Very High
-(14490, 4409, 1), -- MP Increase (1x)
-(14490, 4410, 13), -- Slightly Strong P. Atk.
-(14490, 4411, 11), -- Average M. Atk.
-(14490, 4412, 12), -- Slightly Strong P. Def.
-(14490, 4413, 12), -- Slightly Strong M. Def.
-(14490, 4414, 2); -- Standard Type
+(14490, 4408, 6), -- HP Modifiers
+(14490, 4409, 1), -- MP Modifiers
+(14490, 4410, 13), -- P. Atk. Modifiers
+(14490, 4411, 11), -- M. Atk. Modifiers
+(14490, 4412, 12), -- P. Def. Modifiers
+(14490, 4413, 12), -- M. Def. Modifiers
+(14490, 4414, 2); -- Armor Type
 
 INSERT INTO `npcskills` VALUES
-(14490, 4415, 3), -- One-handed Sword
-(14490, 4416, 9), -- Demons
-(14490, 5038, 7), -- Servitor PvP Penalty
+(14490, 4415, 3), -- Weapon Type
+(14490, 4416, 9), -- Races
+(14490, 5038, 7), -- Summon PVP Penalty
 -- Shadow
 (14491, 4121, 9), -- Summoned Monster Magic Protection
-(14491, 4408, 6), -- HP Very High
-(14491, 4409, 1), -- MP Increase (1x)
-(14491, 4410, 13), -- Slightly Strong P. Atk.
-(14491, 4411, 11), -- Average M. Atk.
-(14491, 4412, 12), -- Slightly Strong P. Def.
-(14491, 4413, 12), -- Slightly Strong M. Def.
-(14491, 4414, 2), -- Standard Type
-(14491, 4415, 3), -- One-handed Sword
-(14491, 4416, 9), -- Demons
-(14491, 5038, 7), -- Servitor PvP Penalty
+(14491, 4408, 6), -- HP Modifiers
+(14491, 4409, 1), -- MP Modifiers
+(14491, 4410, 13), -- P. Atk. Modifiers
+(14491, 4411, 11), -- M. Atk. Modifiers
+(14491, 4412, 12), -- P. Def. Modifiers
+(14491, 4413, 12), -- M. Def. Modifiers
+(14491, 4414, 2), -- Armor Type
+(14491, 4415, 3), -- Weapon Type
+(14491, 4416, 9), -- Races
+(14491, 5038, 7), -- Summon PVP Penalty
 -- Shadow
 (14492, 4121, 9), -- Summoned Monster Magic Protection
-(14492, 4408, 6), -- HP Very High
-(14492, 4409, 1), -- MP Increase (1x)
-(14492, 4410, 13), -- Slightly Strong P. Atk.
-(14492, 4411, 11), -- Average M. Atk.
-(14492, 4412, 12), -- Slightly Strong P. Def.
-(14492, 4413, 12), -- Slightly Strong M. Def.
-(14492, 4414, 2), -- Standard Type
-(14492, 4415, 3), -- One-handed Sword
-(14492, 4416, 9), -- Demons
-(14492, 5038, 7), -- Servitor PvP Penalty
+(14492, 4408, 6), -- HP Modifiers
+(14492, 4409, 1), -- MP Modifiers
+(14492, 4410, 13), -- P. Atk. Modifiers
+(14492, 4411, 11), -- M. Atk. Modifiers
+(14492, 4412, 12), -- P. Def. Modifiers
+(14492, 4413, 12), -- M. Def. Modifiers
+(14492, 4414, 2), -- Armor Type
+(14492, 4415, 3), -- Weapon Type
+(14492, 4416, 9), -- Races
+(14492, 5038, 7), -- Summon PVP Penalty
 -- Shadow
 (14493, 4121, 9), -- Summoned Monster Magic Protection
-(14493, 4408, 6), -- HP Very High
-(14493, 4409, 1), -- MP Increase (1x)
-(14493, 4410, 13), -- Slightly Strong P. Atk.
-(14493, 4411, 11), -- Average M. Atk.
-(14493, 4412, 12), -- Slightly Strong P. Def.
-(14493, 4413, 12), -- Slightly Strong M. Def.
-(14493, 4414, 2), -- Standard Type
-(14493, 4415, 3), -- One-handed Sword
-(14493, 4416, 9), -- Demons
-(14493, 5038, 7), -- Servitor PvP Penalty
+(14493, 4408, 6), -- HP Modifiers
+(14493, 4409, 1), -- MP Modifiers
+(14493, 4410, 13), -- P. Atk. Modifiers
+(14493, 4411, 11), -- M. Atk. Modifiers
+(14493, 4412, 12), -- P. Def. Modifiers
+(14493, 4413, 12), -- M. Def. Modifiers
+(14493, 4414, 2), -- Armor Type
+(14493, 4415, 3), -- Weapon Type
+(14493, 4416, 9), -- Races
+(14493, 5038, 7), -- Summon PVP Penalty
 -- Shadow
 (14494, 4121, 9), -- Summoned Monster Magic Protection
-(14494, 4408, 6), -- HP Very High
-(14494, 4409, 1), -- MP Increase (1x)
-(14494, 4410, 13), -- Slightly Strong P. Atk.
-(14494, 4411, 11), -- Average M. Atk.
-(14494, 4412, 12), -- Slightly Strong P. Def.
-(14494, 4413, 12), -- Slightly Strong M. Def.
-(14494, 4414, 2), -- Standard Type
-(14494, 4415, 3), -- One-handed Sword
-(14494, 4416, 9), -- Demons
-(14494, 5038, 7), -- Servitor PvP Penalty
+(14494, 4408, 6), -- HP Modifiers
+(14494, 4409, 1), -- MP Modifiers
+(14494, 4410, 13), -- P. Atk. Modifiers
+(14494, 4411, 11), -- M. Atk. Modifiers
+(14494, 4412, 12), -- P. Def. Modifiers
+(14494, 4413, 12), -- M. Def. Modifiers
+(14494, 4414, 2), -- Armor Type
+(14494, 4415, 3), -- Weapon Type
+(14494, 4416, 9), -- Races
+(14494, 5038, 7), -- Summon PVP Penalty
 -- Shadow
 (14495, 4121, 9), -- Summoned Monster Magic Protection
-(14495, 4408, 6), -- HP Very High
-(14495, 4409, 1), -- MP Increase (1x)
-(14495, 4410, 13), -- Slightly Strong P. Atk.
-(14495, 4411, 11), -- Average M. Atk.
-(14495, 4412, 12), -- Slightly Strong P. Def.
-(14495, 4413, 12), -- Slightly Strong M. Def.
-(14495, 4414, 2), -- Standard Type
-(14495, 4415, 3), -- One-handed Sword
-(14495, 4416, 9), -- Demons
-(14495, 5038, 7), -- Servitor PvP Penalty
+(14495, 4408, 6), -- HP Modifiers
+(14495, 4409, 1), -- MP Modifiers
+(14495, 4410, 13), -- P. Atk. Modifiers
+(14495, 4411, 11), -- M. Atk. Modifiers
+(14495, 4412, 12), -- P. Def. Modifiers
+(14495, 4413, 12), -- M. Def. Modifiers
+(14495, 4414, 2), -- Armor Type
+(14495, 4415, 3), -- Weapon Type
+(14495, 4416, 9), -- Races
+(14495, 5038, 7), -- Summon PVP Penalty
 -- Shadow
 (14496, 4121, 9), -- Summoned Monster Magic Protection
-(14496, 4408, 6), -- HP Very High
-(14496, 4409, 1), -- MP Increase (1x)
-(14496, 4410, 13), -- Slightly Strong P. Atk.
-(14496, 4411, 11), -- Average M. Atk.
-(14496, 4412, 12), -- Slightly Strong P. Def.
-(14496, 4413, 12), -- Slightly Strong M. Def.
-(14496, 4414, 2), -- Standard Type
-(14496, 4415, 3), -- One-handed Sword
-(14496, 4416, 9), -- Demons
-(14496, 5038, 7), -- Servitor PvP Penalty
+(14496, 4408, 6), -- HP Modifiers
+(14496, 4409, 1), -- MP Modifiers
+(14496, 4410, 13), -- P. Atk. Modifiers
+(14496, 4411, 11), -- M. Atk. Modifiers
+(14496, 4412, 12), -- P. Def. Modifiers
+(14496, 4413, 12), -- M. Def. Modifiers
+(14496, 4414, 2), -- Armor Type
+(14496, 4415, 3), -- Weapon Type
+(14496, 4416, 9), -- Races
+(14496, 5038, 7), -- Summon PVP Penalty
 -- Shadow
 (14497, 4121, 9), -- Summoned Monster Magic Protection
-(14497, 4408, 6), -- HP Very High
-(14497, 4409, 1), -- MP Increase (1x)
-(14497, 4410, 13), -- Slightly Strong P. Atk.
-(14497, 4411, 11), -- Average M. Atk.
-(14497, 4412, 12), -- Slightly Strong P. Def.
-(14497, 4413, 12), -- Slightly Strong M. Def.
-(14497, 4414, 2), -- Standard Type
-(14497, 4415, 3), -- One-handed Sword
-(14497, 4416, 9), -- Demons
-(14497, 5038, 7), -- Servitor PvP Penalty
+(14497, 4408, 6), -- HP Modifiers
+(14497, 4409, 1), -- MP Modifiers
+(14497, 4410, 13), -- P. Atk. Modifiers
+(14497, 4411, 11), -- M. Atk. Modifiers
+(14497, 4412, 12), -- P. Def. Modifiers
+(14497, 4413, 12), -- M. Def. Modifiers
+(14497, 4414, 2), -- Armor Type
+(14497, 4415, 3), -- Weapon Type
+(14497, 4416, 9), -- Races
+(14497, 5038, 7), -- Summon PVP Penalty
 -- Shadow
 (14498, 4121, 9), -- Summoned Monster Magic Protection
-(14498, 4408, 6), -- HP Very High
-(14498, 4409, 1), -- MP Increase (1x)
-(14498, 4410, 13), -- Slightly Strong P. Atk.
-(14498, 4411, 11), -- Average M. Atk.
-(14498, 4412, 12), -- Slightly Strong P. Def.
-(14498, 4413, 12), -- Slightly Strong M. Def.
-(14498, 4414, 2), -- Standard Type
-(14498, 4415, 3), -- One-handed Sword
-(14498, 4416, 9), -- Demons
-(14498, 5038, 7), -- Servitor PvP Penalty
+(14498, 4408, 6), -- HP Modifiers
+(14498, 4409, 1), -- MP Modifiers
+(14498, 4410, 13), -- P. Atk. Modifiers
+(14498, 4411, 11), -- M. Atk. Modifiers
+(14498, 4412, 12), -- P. Def. Modifiers
+(14498, 4413, 12), -- M. Def. Modifiers
+(14498, 4414, 2), -- Armor Type
+(14498, 4415, 3), -- Weapon Type
+(14498, 4416, 9), -- Races
+(14498, 5038, 7), -- Summon PVP Penalty
 -- Shadow
 (14499, 4121, 9), -- Summoned Monster Magic Protection
-(14499, 4408, 6), -- HP Very High
-(14499, 4409, 1), -- MP Increase (1x)
-(14499, 4410, 13), -- Slightly Strong P. Atk.
-(14499, 4411, 11), -- Average M. Atk.
-(14499, 4412, 12), -- Slightly Strong P. Def.
-(14499, 4413, 12), -- Slightly Strong M. Def.
-(14499, 4414, 2), -- Standard Type
-(14499, 4415, 3), -- One-handed Sword
-(14499, 4416, 9), -- Demons
-(14499, 5038, 7), -- Servitor PvP Penalty
+(14499, 4408, 6), -- HP Modifiers
+(14499, 4409, 1), -- MP Modifiers
+(14499, 4410, 13), -- P. Atk. Modifiers
+(14499, 4411, 11), -- M. Atk. Modifiers
+(14499, 4412, 12), -- P. Def. Modifiers
+(14499, 4413, 12), -- M. Def. Modifiers
+(14499, 4414, 2), -- Armor Type
+(14499, 4415, 3), -- Weapon Type
+(14499, 4416, 9), -- Races
+(14499, 5038, 7), -- Summon PVP Penalty
 -- Shadow
 (14500, 4121, 9), -- Summoned Monster Magic Protection
-(14500, 4408, 6), -- HP Very High
-(14500, 4409, 1), -- MP Increase (1x)
-(14500, 4410, 13), -- Slightly Strong P. Atk.
-(14500, 4411, 11), -- Average M. Atk.
-(14500, 4412, 12), -- Slightly Strong P. Def.
-(14500, 4413, 12), -- Slightly Strong M. Def.
-(14500, 4414, 2), -- Standard Type
-(14500, 4415, 3), -- One-handed Sword
-(14500, 4416, 9), -- Demons
-(14500, 5038, 7), -- Servitor PvP Penalty
+(14500, 4408, 6), -- HP Modifiers
+(14500, 4409, 1), -- MP Modifiers
+(14500, 4410, 13), -- P. Atk. Modifiers
+(14500, 4411, 11), -- M. Atk. Modifiers
+(14500, 4412, 12), -- P. Def. Modifiers
+(14500, 4413, 12), -- M. Def. Modifiers
+(14500, 4414, 2), -- Armor Type
+(14500, 4415, 3), -- Weapon Type
+(14500, 4416, 9), -- Races
+(14500, 5038, 7), -- Summon PVP Penalty
 -- Shadow
 (14501, 4121, 9), -- Summoned Monster Magic Protection
-(14501, 4408, 6), -- HP Very High
-(14501, 4409, 1), -- MP Increase (1x)
-(14501, 4410, 13), -- Slightly Strong P. Atk.
-(14501, 4411, 11), -- Average M. Atk.
-(14501, 4412, 12), -- Slightly Strong P. Def.
-(14501, 4413, 12), -- Slightly Strong M. Def.
-(14501, 4414, 2), -- Standard Type
-(14501, 4415, 3), -- One-handed Sword
-(14501, 4416, 9), -- Demons
-(14501, 5038, 7), -- Servitor PvP Penalty
+(14501, 4408, 6), -- HP Modifiers
+(14501, 4409, 1), -- MP Modifiers
+(14501, 4410, 13), -- P. Atk. Modifiers
+(14501, 4411, 11), -- M. Atk. Modifiers
+(14501, 4412, 12), -- P. Def. Modifiers
+(14501, 4413, 12), -- M. Def. Modifiers
+(14501, 4414, 2), -- Armor Type
+(14501, 4415, 3), -- Weapon Type
+(14501, 4416, 9), -- Races
+(14501, 5038, 7), -- Summon PVP Penalty
 -- Shadow
 (14502, 4121, 9), -- Summoned Monster Magic Protection
-(14502, 4408, 6), -- HP Very High
-(14502, 4409, 1), -- MP Increase (1x)
-(14502, 4410, 13), -- Slightly Strong P. Atk.
-(14502, 4411, 11), -- Average M. Atk.
-(14502, 4412, 12), -- Slightly Strong P. Def.
-(14502, 4413, 12), -- Slightly Strong M. Def.
-(14502, 4414, 2), -- Standard Type
-(14502, 4415, 3), -- One-handed Sword
-(14502, 4416, 9), -- Demons
-(14502, 5038, 7), -- Servitor PvP Penalty
+(14502, 4408, 6), -- HP Modifiers
+(14502, 4409, 1), -- MP Modifiers
+(14502, 4410, 13), -- P. Atk. Modifiers
+(14502, 4411, 11), -- M. Atk. Modifiers
+(14502, 4412, 12), -- P. Def. Modifiers
+(14502, 4413, 12), -- M. Def. Modifiers
+(14502, 4414, 2), -- Armor Type
+(14502, 4415, 3), -- Weapon Type
+(14502, 4416, 9), -- Races
+(14502, 5038, 7), -- Summon PVP Penalty
 -- Shadow
 (14503, 4121, 9), -- Summoned Monster Magic Protection
-(14503, 4408, 6), -- HP Very High
-(14503, 4409, 1), -- MP Increase (1x)
-(14503, 4410, 13), -- Slightly Strong P. Atk.
-(14503, 4411, 11), -- Average M. Atk.
-(14503, 4412, 12), -- Slightly Strong P. Def.
-(14503, 4413, 12), -- Slightly Strong M. Def.
-(14503, 4414, 2), -- Standard Type
-(14503, 4415, 3), -- One-handed Sword
-(14503, 4416, 9), -- Demons
-(14503, 5038, 7), -- Servitor PvP Penalty
+(14503, 4408, 6), -- HP Modifiers
+(14503, 4409, 1), -- MP Modifiers
+(14503, 4410, 13), -- P. Atk. Modifiers
+(14503, 4411, 11), -- M. Atk. Modifiers
+(14503, 4412, 12), -- P. Def. Modifiers
+(14503, 4413, 12), -- M. Def. Modifiers
+(14503, 4414, 2), -- Armor Type
+(14503, 4415, 3), -- Weapon Type
+(14503, 4416, 9), -- Races
+(14503, 5038, 7), -- Summon PVP Penalty
 -- Shadow
 (14504, 4121, 9), -- Summoned Monster Magic Protection
-(14504, 4408, 6), -- HP Very High
-(14504, 4409, 1), -- MP Increase (1x)
-(14504, 4410, 13), -- Slightly Strong P. Atk.
-(14504, 4411, 11), -- Average M. Atk.
-(14504, 4412, 12), -- Slightly Strong P. Def.
-(14504, 4413, 12), -- Slightly Strong M. Def.
-(14504, 4414, 2), -- Standard Type
-(14504, 4415, 3), -- One-handed Sword
-(14504, 4416, 9), -- Demons
-(14504, 5038, 7), -- Servitor PvP Penalty
+(14504, 4408, 6), -- HP Modifiers
+(14504, 4409, 1), -- MP Modifiers
+(14504, 4410, 13), -- P. Atk. Modifiers
+(14504, 4411, 11), -- M. Atk. Modifiers
+(14504, 4412, 12), -- P. Def. Modifiers
+(14504, 4413, 12), -- M. Def. Modifiers
+(14504, 4414, 2), -- Armor Type
+(14504, 4415, 3), -- Weapon Type
+(14504, 4416, 9), -- Races
+(14504, 5038, 7), -- Summon PVP Penalty
 -- Shadow
 (14505, 4121, 9), -- Summoned Monster Magic Protection
-(14505, 4408, 6), -- HP Very High
-(14505, 4409, 1), -- MP Increase (1x)
-(14505, 4410, 13), -- Slightly Strong P. Atk.
-(14505, 4411, 11), -- Average M. Atk.
-(14505, 4412, 12), -- Slightly Strong P. Def.
-(14505, 4413, 12), -- Slightly Strong M. Def.
-(14505, 4414, 2), -- Standard Type
-(14505, 4415, 3), -- One-handed Sword
-(14505, 4416, 9), -- Demons
-(14505, 5038, 7), -- Servitor PvP Penalty
+(14505, 4408, 6), -- HP Modifiers
+(14505, 4409, 1), -- MP Modifiers
+(14505, 4410, 13), -- P. Atk. Modifiers
+(14505, 4411, 11), -- M. Atk. Modifiers
+(14505, 4412, 12), -- P. Def. Modifiers
+(14505, 4413, 12), -- M. Def. Modifiers
+(14505, 4414, 2), -- Armor Type
+(14505, 4415, 3), -- Weapon Type
+(14505, 4416, 9), -- Races
+(14505, 5038, 7), -- Summon PVP Penalty
 -- Shadow
 (14506, 4121, 9), -- Summoned Monster Magic Protection
-(14506, 4408, 6), -- HP Very High
-(14506, 4409, 1), -- MP Increase (1x)
-(14506, 4410, 13), -- Slightly Strong P. Atk.
-(14506, 4411, 11), -- Average M. Atk.
-(14506, 4412, 12), -- Slightly Strong P. Def.
-(14506, 4413, 12), -- Slightly Strong M. Def.
-(14506, 4414, 2), -- Standard Type
-(14506, 4415, 3), -- One-handed Sword
-(14506, 4416, 9), -- Demons
-(14506, 5038, 7), -- Servitor PvP Penalty
+(14506, 4408, 6), -- HP Modifiers
+(14506, 4409, 1), -- MP Modifiers
+(14506, 4410, 13), -- P. Atk. Modifiers
+(14506, 4411, 11), -- M. Atk. Modifiers
+(14506, 4412, 12), -- P. Def. Modifiers
+(14506, 4413, 12), -- M. Def. Modifiers
+(14506, 4414, 2), -- Armor Type
+(14506, 4415, 3), -- Weapon Type
+(14506, 4416, 9), -- Races
+(14506, 5038, 7), -- Summon PVP Penalty
 -- Shadow
 (14507, 4121, 9), -- Summoned Monster Magic Protection
-(14507, 4408, 6), -- HP Very High
-(14507, 4409, 1), -- MP Increase (1x)
-(14507, 4410, 13), -- Slightly Strong P. Atk.
-(14507, 4411, 11), -- Average M. Atk.
-(14507, 4412, 12), -- Slightly Strong P. Def.
-(14507, 4413, 12), -- Slightly Strong M. Def.
-(14507, 4414, 2), -- Standard Type
-(14507, 4415, 3), -- One-handed Sword
-(14507, 4416, 9), -- Demons
-(14507, 5038, 7), -- Servitor PvP Penalty
+(14507, 4408, 6), -- HP Modifiers
+(14507, 4409, 1), -- MP Modifiers
+(14507, 4410, 13), -- P. Atk. Modifiers
+(14507, 4411, 11), -- M. Atk. Modifiers
+(14507, 4412, 12), -- P. Def. Modifiers
+(14507, 4413, 12), -- M. Def. Modifiers
+(14507, 4414, 2), -- Armor Type
+(14507, 4415, 3), -- Weapon Type
+(14507, 4416, 9), -- Races
+(14507, 5038, 7), -- Summon PVP Penalty
 -- Shadow
 (14508, 4121, 9), -- Summoned Monster Magic Protection
-(14508, 4408, 6), -- HP Very High
-(14508, 4409, 1), -- MP Increase (1x)
-(14508, 4410, 13), -- Slightly Strong P. Atk.
-(14508, 4411, 11), -- Average M. Atk.
-(14508, 4412, 12), -- Slightly Strong P. Def.
-(14508, 4413, 12), -- Slightly Strong M. Def.
-(14508, 4414, 2), -- Standard Type
-(14508, 4415, 3), -- One-handed Sword
-(14508, 4416, 9), -- Demons
-(14508, 5038, 7), -- Servitor PvP Penalty
+(14508, 4408, 6), -- HP Modifiers
+(14508, 4409, 1), -- MP Modifiers
+(14508, 4410, 13), -- P. Atk. Modifiers
+(14508, 4411, 11), -- M. Atk. Modifiers
+(14508, 4412, 12), -- P. Def. Modifiers
+(14508, 4413, 12), -- M. Def. Modifiers
+(14508, 4414, 2), -- Armor Type
+(14508, 4415, 3), -- Weapon Type
+(14508, 4416, 9), -- Races
+(14508, 5038, 7), -- Summon PVP Penalty
 -- Shadow
 (14509, 4121, 9), -- Summoned Monster Magic Protection
-(14509, 4408, 6), -- HP Very High
-(14509, 4409, 1), -- MP Increase (1x)
-(14509, 4410, 13), -- Slightly Strong P. Atk.
-(14509, 4411, 11), -- Average M. Atk.
-(14509, 4412, 12), -- Slightly Strong P. Def.
-(14509, 4413, 12), -- Slightly Strong M. Def.
-(14509, 4414, 2), -- Standard Type
-(14509, 4415, 3), -- One-handed Sword
-(14509, 4416, 9), -- Demons
-(14509, 5038, 7), -- Servitor PvP Penalty
+(14509, 4408, 6), -- HP Modifiers
+(14509, 4409, 1), -- MP Modifiers
+(14509, 4410, 13), -- P. Atk. Modifiers
+(14509, 4411, 11), -- M. Atk. Modifiers
+(14509, 4412, 12), -- P. Def. Modifiers
+(14509, 4413, 12), -- M. Def. Modifiers
+(14509, 4414, 2), -- Armor Type
+(14509, 4415, 3), -- Weapon Type
+(14509, 4416, 9), -- Races
+(14509, 5038, 7), -- Summon PVP Penalty
 -- Shadow
 (14510, 4121, 9), -- Summoned Monster Magic Protection
-(14510, 4408, 6), -- HP Very High
-(14510, 4409, 1), -- MP Increase (1x)
-(14510, 4410, 13), -- Slightly Strong P. Atk.
-(14510, 4411, 11), -- Average M. Atk.
-(14510, 4412, 12), -- Slightly Strong P. Def.
-(14510, 4413, 12), -- Slightly Strong M. Def.
-(14510, 4414, 2), -- Standard Type
-(14510, 4415, 3), -- One-handed Sword
-(14510, 4416, 9), -- Demons
-(14510, 5038, 7), -- Servitor PvP Penalty
+(14510, 4408, 6), -- HP Modifiers
+(14510, 4409, 1), -- MP Modifiers
+(14510, 4410, 13), -- P. Atk. Modifiers
+(14510, 4411, 11), -- M. Atk. Modifiers
+(14510, 4412, 12), -- P. Def. Modifiers
+(14510, 4413, 12), -- M. Def. Modifiers
+(14510, 4414, 2), -- Armor Type
+(14510, 4415, 3), -- Weapon Type
+(14510, 4416, 9), -- Races
+(14510, 5038, 7), -- Summon PVP Penalty
 -- Shadow
 (14511, 4121, 9), -- Summoned Monster Magic Protection
-(14511, 4408, 6), -- HP Very High
-(14511, 4409, 1), -- MP Increase (1x)
-(14511, 4410, 13), -- Slightly Strong P. Atk.
-(14511, 4411, 11), -- Average M. Atk.
-(14511, 4412, 12), -- Slightly Strong P. Def.
-(14511, 4413, 12), -- Slightly Strong M. Def.
-(14511, 4414, 2), -- Standard Type
-(14511, 4415, 3), -- One-handed Sword
-(14511, 4416, 9), -- Demons
-(14511, 5038, 7), -- Servitor PvP Penalty
+(14511, 4408, 6), -- HP Modifiers
+(14511, 4409, 1), -- MP Modifiers
+(14511, 4410, 13), -- P. Atk. Modifiers
+(14511, 4411, 11), -- M. Atk. Modifiers
+(14511, 4412, 12), -- P. Def. Modifiers
+(14511, 4413, 12), -- M. Def. Modifiers
+(14511, 4414, 2), -- Armor Type
+(14511, 4415, 3), -- Weapon Type
+(14511, 4416, 9), -- Races
+(14511, 5038, 7), -- Summon PVP Penalty
 -- Shadow
 (14512, 4121, 9), -- Summoned Monster Magic Protection
-(14512, 4408, 6), -- HP Very High
-(14512, 4409, 1), -- MP Increase (1x)
-(14512, 4410, 13), -- Slightly Strong P. Atk.
-(14512, 4411, 11), -- Average M. Atk.
-(14512, 4412, 12), -- Slightly Strong P. Def.
-(14512, 4413, 12), -- Slightly Strong M. Def.
-(14512, 4414, 2), -- Standard Type
-(14512, 4415, 3), -- One-handed Sword
-(14512, 4416, 9), -- Demons
-(14512, 5038, 7), -- Servitor PvP Penalty
+(14512, 4408, 6), -- HP Modifiers
+(14512, 4409, 1), -- MP Modifiers
+(14512, 4410, 13), -- P. Atk. Modifiers
+(14512, 4411, 11), -- M. Atk. Modifiers
+(14512, 4412, 12), -- P. Def. Modifiers
+(14512, 4413, 12), -- M. Def. Modifiers
+(14512, 4414, 2), -- Armor Type
+(14512, 4415, 3), -- Weapon Type
+(14512, 4416, 9), -- Races
+(14512, 5038, 7), -- Summon PVP Penalty
 -- Shadow
 (14513, 4121, 9), -- Summoned Monster Magic Protection
-(14513, 4408, 6), -- HP Very High
-(14513, 4409, 1), -- MP Increase (1x)
-(14513, 4410, 13), -- Slightly Strong P. Atk.
-(14513, 4411, 11), -- Average M. Atk.
-(14513, 4412, 12), -- Slightly Strong P. Def.
-(14513, 4413, 12), -- Slightly Strong M. Def.
-(14513, 4414, 2), -- Standard Type
-(14513, 4415, 3), -- One-handed Sword
-(14513, 4416, 9), -- Demons
-(14513, 5038, 7), -- Servitor PvP Penalty
+(14513, 4408, 6), -- HP Modifiers
+(14513, 4409, 1), -- MP Modifiers
+(14513, 4410, 13), -- P. Atk. Modifiers
+(14513, 4411, 11), -- M. Atk. Modifiers
+(14513, 4412, 12), -- P. Def. Modifiers
+(14513, 4413, 12), -- M. Def. Modifiers
+(14513, 4414, 2), -- Armor Type
+(14513, 4415, 3), -- Weapon Type
+(14513, 4416, 9), -- Races
+(14513, 5038, 7), -- Summon PVP Penalty
 -- Shadow
 (14514, 4121, 9), -- Summoned Monster Magic Protection
-(14514, 4408, 6), -- HP Very High
-(14514, 4409, 1), -- MP Increase (1x)
-(14514, 4410, 13), -- Slightly Strong P. Atk.
-(14514, 4411, 11), -- Average M. Atk.
-(14514, 4412, 12), -- Slightly Strong P. Def.
-(14514, 4413, 12), -- Slightly Strong M. Def.
-(14514, 4414, 2), -- Standard Type
-(14514, 4415, 3), -- One-handed Sword
-(14514, 4416, 9), -- Demons
-(14514, 5038, 7), -- Servitor PvP Penalty
+(14514, 4408, 6), -- HP Modifiers
+(14514, 4409, 1), -- MP Modifiers
+(14514, 4410, 13), -- P. Atk. Modifiers
+(14514, 4411, 11), -- M. Atk. Modifiers
+(14514, 4412, 12), -- P. Def. Modifiers
+(14514, 4413, 12), -- M. Def. Modifiers
+(14514, 4414, 2), -- Armor Type
+(14514, 4415, 3), -- Weapon Type
+(14514, 4416, 9), -- Races
+(14514, 5038, 7), -- Summon PVP Penalty
 -- Shadow
 (14515, 4121, 9), -- Summoned Monster Magic Protection
-(14515, 4408, 6), -- HP Very High
-(14515, 4409, 1), -- MP Increase (1x)
-(14515, 4410, 13), -- Slightly Strong P. Atk.
-(14515, 4411, 11), -- Average M. Atk.
-(14515, 4412, 12), -- Slightly Strong P. Def.
-(14515, 4413, 12), -- Slightly Strong M. Def.
-(14515, 4414, 2), -- Standard Type
-(14515, 4415, 3), -- One-handed Sword
-(14515, 4416, 9), -- Demons
-(14515, 5038, 7), -- Servitor PvP Penalty
+(14515, 4408, 6), -- HP Modifiers
+(14515, 4409, 1), -- MP Modifiers
+(14515, 4410, 13), -- P. Atk. Modifiers
+(14515, 4411, 11), -- M. Atk. Modifiers
+(14515, 4412, 12), -- P. Def. Modifiers
+(14515, 4413, 12), -- M. Def. Modifiers
+(14515, 4414, 2), -- Armor Type
+(14515, 4415, 3), -- Weapon Type
+(14515, 4416, 9), -- Races
+(14515, 5038, 7), -- Summon PVP Penalty
 -- Shadow
 (14516, 4121, 9), -- Summoned Monster Magic Protection
-(14516, 4408, 6), -- HP Very High
-(14516, 4409, 1), -- MP Increase (1x)
-(14516, 4410, 13), -- Slightly Strong P. Atk.
-(14516, 4411, 11), -- Average M. Atk.
-(14516, 4412, 12), -- Slightly Strong P. Def.
-(14516, 4413, 12), -- Slightly Strong M. Def.
-(14516, 4414, 2), -- Standard Type
-(14516, 4415, 3), -- One-handed Sword
-(14516, 4416, 9), -- Demons
-(14516, 5038, 7), -- Servitor PvP Penalty
+(14516, 4408, 6), -- HP Modifiers
+(14516, 4409, 1), -- MP Modifiers
+(14516, 4410, 13), -- P. Atk. Modifiers
+(14516, 4411, 11), -- M. Atk. Modifiers
+(14516, 4412, 12), -- P. Def. Modifiers
+(14516, 4413, 12), -- M. Def. Modifiers
+(14516, 4414, 2), -- Armor Type
+(14516, 4415, 3), -- Weapon Type
+(14516, 4416, 9), -- Races
+(14516, 5038, 7), -- Summon PVP Penalty
 -- Shadow
 (14517, 4121, 9), -- Summoned Monster Magic Protection
-(14517, 4408, 6), -- HP Very High
-(14517, 4409, 1), -- MP Increase (1x)
-(14517, 4410, 13), -- Slightly Strong P. Atk.
-(14517, 4411, 11), -- Average M. Atk.
-(14517, 4412, 12), -- Slightly Strong P. Def.
-(14517, 4413, 12), -- Slightly Strong M. Def.
-(14517, 4414, 2), -- Standard Type
-(14517, 4415, 3), -- One-handed Sword
-(14517, 4416, 9), -- Demons
-(14517, 5038, 7), -- Servitor PvP Penalty
+(14517, 4408, 6), -- HP Modifiers
+(14517, 4409, 1), -- MP Modifiers
+(14517, 4410, 13), -- P. Atk. Modifiers
+(14517, 4411, 11), -- M. Atk. Modifiers
+(14517, 4412, 12), -- P. Def. Modifiers
+(14517, 4413, 12), -- M. Def. Modifiers
+(14517, 4414, 2), -- Armor Type
+(14517, 4415, 3), -- Weapon Type
+(14517, 4416, 9), -- Races
+(14517, 5038, 7), -- Summon PVP Penalty
 -- Shadow
 (14518, 4121, 9), -- Summoned Monster Magic Protection
-(14518, 4408, 6), -- HP Very High
-(14518, 4409, 1), -- MP Increase (1x)
-(14518, 4410, 13), -- Slightly Strong P. Atk.
-(14518, 4411, 11), -- Average M. Atk.
-(14518, 4412, 12), -- Slightly Strong P. Def.
-(14518, 4413, 12), -- Slightly Strong M. Def.
-(14518, 4414, 2), -- Standard Type
-(14518, 4415, 3), -- One-handed Sword
-(14518, 4416, 9), -- Demons
-(14518, 5038, 7), -- Servitor PvP Penalty
+(14518, 4408, 6), -- HP Modifiers
+(14518, 4409, 1), -- MP Modifiers
+(14518, 4410, 13), -- P. Atk. Modifiers
+(14518, 4411, 11), -- M. Atk. Modifiers
+(14518, 4412, 12), -- P. Def. Modifiers
+(14518, 4413, 12), -- M. Def. Modifiers
+(14518, 4414, 2), -- Armor Type
+(14518, 4415, 3), -- Weapon Type
+(14518, 4416, 9), -- Races
+(14518, 5038, 7), -- Summon PVP Penalty
 -- Shadow
 (14519, 4121, 9), -- Summoned Monster Magic Protection
-(14519, 4408, 6), -- HP Very High
-(14519, 4409, 1), -- MP Increase (1x)
-(14519, 4410, 13), -- Slightly Strong P. Atk.
-(14519, 4411, 11), -- Average M. Atk.
-(14519, 4412, 12), -- Slightly Strong P. Def.
-(14519, 4413, 12), -- Slightly Strong M. Def.
-(14519, 4414, 2), -- Standard Type
-(14519, 4415, 3), -- One-handed Sword
-(14519, 4416, 9), -- Demons
-(14519, 5038, 7), -- Servitor PvP Penalty
+(14519, 4408, 6), -- HP Modifiers
+(14519, 4409, 1), -- MP Modifiers
+(14519, 4410, 13), -- P. Atk. Modifiers
+(14519, 4411, 11), -- M. Atk. Modifiers
+(14519, 4412, 12), -- P. Def. Modifiers
+(14519, 4413, 12), -- M. Def. Modifiers
+(14519, 4414, 2), -- Armor Type
+(14519, 4415, 3), -- Weapon Type
+(14519, 4416, 9), -- Races
+(14519, 5038, 7), -- Summon PVP Penalty
 -- Shadow
 (14520, 4121, 9), -- Summoned Monster Magic Protection
-(14520, 4408, 6), -- HP Very High
-(14520, 4409, 1), -- MP Increase (1x)
-(14520, 4410, 13), -- Slightly Strong P. Atk.
-(14520, 4411, 11), -- Average M. Atk.
-(14520, 4412, 12), -- Slightly Strong P. Def.
-(14520, 4413, 12), -- Slightly Strong M. Def.
-(14520, 4414, 2), -- Standard Type
-(14520, 4415, 3), -- One-handed Sword
-(14520, 4416, 9), -- Demons
-(14520, 5038, 7), -- Servitor PvP Penalty
+(14520, 4408, 6), -- HP Modifiers
+(14520, 4409, 1), -- MP Modifiers
+(14520, 4410, 13), -- P. Atk. Modifiers
+(14520, 4411, 11), -- M. Atk. Modifiers
+(14520, 4412, 12), -- P. Def. Modifiers
+(14520, 4413, 12), -- M. Def. Modifiers
+(14520, 4414, 2), -- Armor Type
+(14520, 4415, 3), -- Weapon Type
+(14520, 4416, 9), -- Races
+(14520, 5038, 7), -- Summon PVP Penalty
 -- Shadow
 (14521, 4121, 9), -- Summoned Monster Magic Protection
-(14521, 4408, 6), -- HP Very High
-(14521, 4409, 1), -- MP Increase (1x)
-(14521, 4410, 13), -- Slightly Strong P. Atk.
-(14521, 4411, 11), -- Average M. Atk.
-(14521, 4412, 12), -- Slightly Strong P. Def.
-(14521, 4413, 12), -- Slightly Strong M. Def.
-(14521, 4414, 2), -- Standard Type
-(14521, 4415, 3), -- One-handed Sword
-(14521, 4416, 9), -- Demons
-(14521, 5038, 7), -- Servitor PvP Penalty
+(14521, 4408, 6), -- HP Modifiers
+(14521, 4409, 1), -- MP Modifiers
+(14521, 4410, 13), -- P. Atk. Modifiers
+(14521, 4411, 11), -- M. Atk. Modifiers
+(14521, 4412, 12), -- P. Def. Modifiers
+(14521, 4413, 12), -- M. Def. Modifiers
+(14521, 4414, 2), -- Armor Type
+(14521, 4415, 3), -- Weapon Type
+(14521, 4416, 9), -- Races
+(14521, 5038, 7), -- Summon PVP Penalty
 -- Shadow
 (14522, 4121, 9), -- Summoned Monster Magic Protection
-(14522, 4408, 6), -- HP Very High
-(14522, 4409, 1), -- MP Increase (1x)
-(14522, 4410, 13), -- Slightly Strong P. Atk.
-(14522, 4411, 11), -- Average M. Atk.
-(14522, 4412, 12), -- Slightly Strong P. Def.
-(14522, 4413, 12), -- Slightly Strong M. Def.
-(14522, 4414, 2), -- Standard Type
-(14522, 4415, 3), -- One-handed Sword
-(14522, 4416, 9), -- Demons
-(14522, 5038, 7), -- Servitor PvP Penalty
+(14522, 4408, 6), -- HP Modifiers
+(14522, 4409, 1), -- MP Modifiers
+(14522, 4410, 13), -- P. Atk. Modifiers
+(14522, 4411, 11), -- M. Atk. Modifiers
+(14522, 4412, 12), -- P. Def. Modifiers
+(14522, 4413, 12), -- M. Def. Modifiers
+(14522, 4414, 2), -- Armor Type
+(14522, 4415, 3), -- Weapon Type
+(14522, 4416, 9), -- Races
+(14522, 5038, 7), -- Summon PVP Penalty
 -- Shadow
 (14523, 4121, 9), -- Summoned Monster Magic Protection
-(14523, 4408, 6), -- HP Very High
-(14523, 4409, 1), -- MP Increase (1x)
-(14523, 4410, 13), -- Slightly Strong P. Atk.
-(14523, 4411, 11), -- Average M. Atk.
-(14523, 4412, 12), -- Slightly Strong P. Def.
-(14523, 4413, 12), -- Slightly Strong M. Def.
-(14523, 4414, 2), -- Standard Type
-(14523, 4415, 3), -- One-handed Sword
-(14523, 4416, 9), -- Demons
-(14523, 5038, 7), -- Servitor PvP Penalty
+(14523, 4408, 6), -- HP Modifiers
+(14523, 4409, 1), -- MP Modifiers
+(14523, 4410, 13), -- P. Atk. Modifiers
+(14523, 4411, 11), -- M. Atk. Modifiers
+(14523, 4412, 12), -- P. Def. Modifiers
+(14523, 4413, 12), -- M. Def. Modifiers
+(14523, 4414, 2), -- Armor Type
+(14523, 4415, 3), -- Weapon Type
+(14523, 4416, 9), -- Races
+(14523, 5038, 7), -- Summon PVP Penalty
 -- Shadow
 (14524, 4121, 9), -- Summoned Monster Magic Protection
-(14524, 4408, 6), -- HP Very High
-(14524, 4409, 1), -- MP Increase (1x)
-(14524, 4410, 13), -- Slightly Strong P. Atk.
-(14524, 4411, 11), -- Average M. Atk.
-(14524, 4412, 12), -- Slightly Strong P. Def.
-(14524, 4413, 12), -- Slightly Strong M. Def.
-(14524, 4414, 2), -- Standard Type
-(14524, 4415, 3), -- One-handed Sword
-(14524, 4416, 9), -- Demons
-(14524, 5038, 7), -- Servitor PvP Penalty
+(14524, 4408, 6), -- HP Modifiers
+(14524, 4409, 1), -- MP Modifiers
+(14524, 4410, 13), -- P. Atk. Modifiers
+(14524, 4411, 11), -- M. Atk. Modifiers
+(14524, 4412, 12), -- P. Def. Modifiers
+(14524, 4413, 12), -- M. Def. Modifiers
+(14524, 4414, 2), -- Armor Type
+(14524, 4415, 3), -- Weapon Type
+(14524, 4416, 9), -- Races
+(14524, 5038, 7), -- Summon PVP Penalty
 -- Shadow
 (14525, 4121, 9), -- Summoned Monster Magic Protection
-(14525, 4408, 6), -- HP Very High
-(14525, 4409, 1), -- MP Increase (1x)
-(14525, 4410, 13), -- Slightly Strong P. Atk.
-(14525, 4411, 11), -- Average M. Atk.
-(14525, 4412, 12), -- Slightly Strong P. Def.
-(14525, 4413, 12), -- Slightly Strong M. Def.
-(14525, 4414, 2), -- Standard Type
-(14525, 4415, 3), -- One-handed Sword
-(14525, 4416, 9), -- Demons
-(14525, 5038, 7), -- Servitor PvP Penalty
+(14525, 4408, 6), -- HP Modifiers
+(14525, 4409, 1), -- MP Modifiers
+(14525, 4410, 13), -- P. Atk. Modifiers
+(14525, 4411, 11), -- M. Atk. Modifiers
+(14525, 4412, 12), -- P. Def. Modifiers
+(14525, 4413, 12), -- M. Def. Modifiers
+(14525, 4414, 2), -- Armor Type
+(14525, 4415, 3), -- Weapon Type
+(14525, 4416, 9), -- Races
+(14525, 5038, 7), -- Summon PVP Penalty
 -- Shadow
 (14526, 4121, 9), -- Summoned Monster Magic Protection
-(14526, 4408, 6), -- HP Very High
-(14526, 4409, 1), -- MP Increase (1x)
-(14526, 4410, 13), -- Slightly Strong P. Atk.
-(14526, 4411, 11), -- Average M. Atk.
-(14526, 4412, 12), -- Slightly Strong P. Def.
-(14526, 4413, 12), -- Slightly Strong M. Def.
-(14526, 4414, 2), -- Standard Type
-(14526, 4415, 3), -- One-handed Sword
-(14526, 4416, 9), -- Demons
-(14526, 5038, 7), -- Servitor PvP Penalty
+(14526, 4408, 6), -- HP Modifiers
+(14526, 4409, 1), -- MP Modifiers
+(14526, 4410, 13), -- P. Atk. Modifiers
+(14526, 4411, 11), -- M. Atk. Modifiers
+(14526, 4412, 12), -- P. Def. Modifiers
+(14526, 4413, 12), -- M. Def. Modifiers
+(14526, 4414, 2), -- Armor Type
+(14526, 4415, 3), -- Weapon Type
+(14526, 4416, 9), -- Races
+(14526, 5038, 7), -- Summon PVP Penalty
 -- Silhouette
 (14527, 4121, 9), -- Summoned Monster Magic Protection
-(14527, 4408, 6), -- HP Very High
-(14527, 4409, 1), -- MP Increase (1x)
-(14527, 4410, 12), -- Slightly Strong P. Atk.
-(14527, 4411, 12), -- Slightly Strong M. Atk.
-(14527, 4412, 11), -- Average P. Def.
-(14527, 4413, 11), -- Average M. Def.
-(14527, 4414, 2), -- Standard Type
-(14527, 4415, 3), -- One-handed Sword
-(14527, 4416, 9), -- Demons
-(14527, 5038, 7), -- Servitor PvP Penalty
+(14527, 4408, 6), -- HP Modifiers
+(14527, 4409, 1), -- MP Modifiers
+(14527, 4410, 12), -- P. Atk. Modifiers
+(14527, 4411, 12), -- M. Atk. Modifiers
+(14527, 4412, 11), -- P. Def. Modifiers
+(14527, 4413, 11), -- M. Def. Modifiers
+(14527, 4414, 2), -- Armor Type
+(14527, 4415, 3), -- Weapon Type
+(14527, 4416, 9), -- Races
+(14527, 5038, 7), -- Summon PVP Penalty
 -- Silhouette
 (14528, 4121, 9), -- Summoned Monster Magic Protection
-(14528, 4408, 6), -- HP Very High
-(14528, 4409, 1), -- MP Increase (1x)
-(14528, 4410, 12), -- Slightly Strong P. Atk.
-(14528, 4411, 12), -- Slightly Strong M. Atk.
-(14528, 4412, 11), -- Average P. Def.
-(14528, 4413, 11), -- Average M. Def.
-(14528, 4414, 2), -- Standard Type
-(14528, 4415, 3), -- One-handed Sword
-(14528, 4416, 9), -- Demons
-(14528, 5038, 7), -- Servitor PvP Penalty
+(14528, 4408, 6), -- HP Modifiers
+(14528, 4409, 1), -- MP Modifiers
+(14528, 4410, 12), -- P. Atk. Modifiers
+(14528, 4411, 12), -- M. Atk. Modifiers
+(14528, 4412, 11), -- P. Def. Modifiers
+(14528, 4413, 11), -- M. Def. Modifiers
+(14528, 4414, 2), -- Armor Type
+(14528, 4415, 3), -- Weapon Type
+(14528, 4416, 9), -- Races
+(14528, 5038, 7), -- Summon PVP Penalty
 -- Silhouette
 (14529, 4121, 9), -- Summoned Monster Magic Protection
-(14529, 4408, 6), -- HP Very High
-(14529, 4409, 1), -- MP Increase (1x)
-(14529, 4410, 12), -- Slightly Strong P. Atk.
-(14529, 4411, 12), -- Slightly Strong M. Atk.
-(14529, 4412, 11), -- Average P. Def.
-(14529, 4413, 11), -- Average M. Def.
-(14529, 4414, 2), -- Standard Type
-(14529, 4415, 3), -- One-handed Sword
-(14529, 4416, 9), -- Demons
-(14529, 5038, 7), -- Servitor PvP Penalty
+(14529, 4408, 6), -- HP Modifiers
+(14529, 4409, 1), -- MP Modifiers
+(14529, 4410, 12), -- P. Atk. Modifiers
+(14529, 4411, 12), -- M. Atk. Modifiers
+(14529, 4412, 11), -- P. Def. Modifiers
+(14529, 4413, 11), -- M. Def. Modifiers
+(14529, 4414, 2), -- Armor Type
+(14529, 4415, 3), -- Weapon Type
+(14529, 4416, 9), -- Races
+(14529, 5038, 7), -- Summon PVP Penalty
 -- Silhouette
 (14530, 4121, 9), -- Summoned Monster Magic Protection
-(14530, 4408, 6), -- HP Very High
-(14530, 4409, 1), -- MP Increase (1x)
-(14530, 4410, 12), -- Slightly Strong P. Atk.
-(14530, 4411, 12), -- Slightly Strong M. Atk.
-(14530, 4412, 11), -- Average P. Def.
-(14530, 4413, 11), -- Average M. Def.
-(14530, 4414, 2), -- Standard Type
-(14530, 4415, 3), -- One-handed Sword
-(14530, 4416, 9), -- Demons
-(14530, 5038, 7), -- Servitor PvP Penalty
+(14530, 4408, 6), -- HP Modifiers
+(14530, 4409, 1), -- MP Modifiers
+(14530, 4410, 12), -- P. Atk. Modifiers
+(14530, 4411, 12), -- M. Atk. Modifiers
+(14530, 4412, 11), -- P. Def. Modifiers
+(14530, 4413, 11), -- M. Def. Modifiers
+(14530, 4414, 2), -- Armor Type
+(14530, 4415, 3), -- Weapon Type
+(14530, 4416, 9), -- Races
+(14530, 5038, 7), -- Summon PVP Penalty
 -- Silhouette
 (14531, 4121, 9), -- Summoned Monster Magic Protection
-(14531, 4408, 6), -- HP Very High
-(14531, 4409, 1), -- MP Increase (1x)
-(14531, 4410, 12), -- Slightly Strong P. Atk.
-(14531, 4411, 12), -- Slightly Strong M. Atk.
-(14531, 4412, 12), -- Slightly Strong P. Def.
-(14531, 4413, 12), -- Slightly Strong M. Def.
-(14531, 4414, 2), -- Standard Type
-(14531, 4415, 3), -- One-handed Sword
-(14531, 4416, 9), -- Demons
-(14531, 5038, 7), -- Servitor PvP Penalty
+(14531, 4408, 6), -- HP Modifiers
+(14531, 4409, 1), -- MP Modifiers
+(14531, 4410, 12), -- P. Atk. Modifiers
+(14531, 4411, 12), -- M. Atk. Modifiers
+(14531, 4412, 12), -- P. Def. Modifiers
+(14531, 4413, 12), -- M. Def. Modifiers
+(14531, 4414, 2), -- Armor Type
+(14531, 4415, 3), -- Weapon Type
+(14531, 4416, 9), -- Races
+(14531, 5038, 7), -- Summon PVP Penalty
 -- Silhouette
 (14532, 4121, 9), -- Summoned Monster Magic Protection
-(14532, 4408, 6), -- HP Very High
-(14532, 4409, 1), -- MP Increase (1x)
-(14532, 4410, 12), -- Slightly Strong P. Atk.
-(14532, 4411, 12), -- Slightly Strong M. Atk.
-(14532, 4412, 12), -- Slightly Strong P. Def.
-(14532, 4413, 12), -- Slightly Strong M. Def.
-(14532, 4414, 2), -- Standard Type
-(14532, 4415, 3), -- One-handed Sword
-(14532, 4416, 9), -- Demons
-(14532, 5038, 7), -- Servitor PvP Penalty
+(14532, 4408, 6), -- HP Modifiers
+(14532, 4409, 1), -- MP Modifiers
+(14532, 4410, 12), -- P. Atk. Modifiers
+(14532, 4411, 12), -- M. Atk. Modifiers
+(14532, 4412, 12), -- P. Def. Modifiers
+(14532, 4413, 12), -- M. Def. Modifiers
+(14532, 4414, 2), -- Armor Type
+(14532, 4415, 3), -- Weapon Type
+(14532, 4416, 9), -- Races
+(14532, 5038, 7), -- Summon PVP Penalty
 -- Silhouette
 (14533, 4121, 9), -- Summoned Monster Magic Protection
-(14533, 4408, 6), -- HP Very High
-(14533, 4409, 1), -- MP Increase (1x)
-(14533, 4410, 12), -- Slightly Strong P. Atk.
-(14533, 4411, 12), -- Slightly Strong M. Atk.
-(14533, 4412, 12), -- Slightly Strong P. Def.
-(14533, 4413, 12), -- Slightly Strong M. Def.
-(14533, 4414, 2), -- Standard Type
-(14533, 4415, 3), -- One-handed Sword
-(14533, 4416, 9), -- Demons
-(14533, 5038, 7), -- Servitor PvP Penalty
+(14533, 4408, 6), -- HP Modifiers
+(14533, 4409, 1), -- MP Modifiers
+(14533, 4410, 12), -- P. Atk. Modifiers
+(14533, 4411, 12), -- M. Atk. Modifiers
+(14533, 4412, 12), -- P. Def. Modifiers
+(14533, 4413, 12), -- M. Def. Modifiers
+(14533, 4414, 2), -- Armor Type
+(14533, 4415, 3), -- Weapon Type
+(14533, 4416, 9), -- Races
+(14533, 5038, 7), -- Summon PVP Penalty
 -- Silhouette
 (14534, 4121, 9), -- Summoned Monster Magic Protection
-(14534, 4408, 6), -- HP Very High
-(14534, 4409, 1), -- MP Increase (1x)
-(14534, 4410, 12), -- Slightly Strong P. Atk.
-(14534, 4411, 12), -- Slightly Strong M. Atk.
-(14534, 4412, 12), -- Slightly Strong P. Def.
-(14534, 4413, 12), -- Slightly Strong M. Def.
-(14534, 4414, 2), -- Standard Type
-(14534, 4415, 3), -- One-handed Sword
-(14534, 4416, 9), -- Demons
-(14534, 5038, 7), -- Servitor PvP Penalty
+(14534, 4408, 6), -- HP Modifiers
+(14534, 4409, 1), -- MP Modifiers
+(14534, 4410, 12), -- P. Atk. Modifiers
+(14534, 4411, 12), -- M. Atk. Modifiers
+(14534, 4412, 12), -- P. Def. Modifiers
+(14534, 4413, 12), -- M. Def. Modifiers
+(14534, 4414, 2), -- Armor Type
+(14534, 4415, 3), -- Weapon Type
+(14534, 4416, 9), -- Races
+(14534, 5038, 7), -- Summon PVP Penalty
 -- Silhouette
 (14535, 4121, 9), -- Summoned Monster Magic Protection
-(14535, 4408, 6), -- HP Very High
-(14535, 4409, 1), -- MP Increase (1x)
-(14535, 4410, 12), -- Slightly Strong P. Atk.
-(14535, 4411, 12), -- Slightly Strong M. Atk.
-(14535, 4412, 12), -- Slightly Strong P. Def.
-(14535, 4413, 12), -- Slightly Strong M. Def.
-(14535, 4414, 2), -- Standard Type
-(14535, 4415, 3), -- One-handed Sword
-(14535, 4416, 9), -- Demons
-(14535, 5038, 7), -- Servitor PvP Penalty
+(14535, 4408, 6), -- HP Modifiers
+(14535, 4409, 1), -- MP Modifiers
+(14535, 4410, 12), -- P. Atk. Modifiers
+(14535, 4411, 12), -- M. Atk. Modifiers
+(14535, 4412, 12), -- P. Def. Modifiers
+(14535, 4413, 12), -- M. Def. Modifiers
+(14535, 4414, 2), -- Armor Type
+(14535, 4415, 3), -- Weapon Type
+(14535, 4416, 9), -- Races
+(14535, 5038, 7), -- Summon PVP Penalty
 -- Silhouette
 (14536, 4121, 9), -- Summoned Monster Magic Protection
-(14536, 4408, 6), -- HP Very High
-(14536, 4409, 1), -- MP Increase (1x)
-(14536, 4410, 12), -- Slightly Strong P. Atk.
-(14536, 4411, 12), -- Slightly Strong M. Atk.
-(14536, 4412, 12), -- Slightly Strong P. Def.
-(14536, 4413, 12), -- Slightly Strong M. Def.
-(14536, 4414, 2), -- Standard Type
-(14536, 4415, 3), -- One-handed Sword
-(14536, 4416, 9), -- Demons
-(14536, 5038, 7), -- Servitor PvP Penalty
+(14536, 4408, 6), -- HP Modifiers
+(14536, 4409, 1), -- MP Modifiers
+(14536, 4410, 12), -- P. Atk. Modifiers
+(14536, 4411, 12), -- M. Atk. Modifiers
+(14536, 4412, 12), -- P. Def. Modifiers
+(14536, 4413, 12), -- M. Def. Modifiers
+(14536, 4414, 2), -- Armor Type
+(14536, 4415, 3), -- Weapon Type
+(14536, 4416, 9), -- Races
+(14536, 5038, 7), -- Summon PVP Penalty
 -- Silhouette
 (14537, 4121, 9), -- Summoned Monster Magic Protection
-(14537, 4408, 6), -- HP Very High
-(14537, 4409, 1), -- MP Increase (1x)
-(14537, 4410, 12), -- Slightly Strong P. Atk.
-(14537, 4411, 12), -- Slightly Strong M. Atk.
-(14537, 4412, 12), -- Slightly Strong P. Def.
-(14537, 4413, 12), -- Slightly Strong M. Def.
-(14537, 4414, 2), -- Standard Type
-(14537, 4415, 3), -- One-handed Sword
-(14537, 4416, 9), -- Demons
-(14537, 5038, 7), -- Servitor PvP Penalty
+(14537, 4408, 6), -- HP Modifiers
+(14537, 4409, 1), -- MP Modifiers
+(14537, 4410, 12), -- P. Atk. Modifiers
+(14537, 4411, 12), -- M. Atk. Modifiers
+(14537, 4412, 12), -- P. Def. Modifiers
+(14537, 4413, 12), -- M. Def. Modifiers
+(14537, 4414, 2), -- Armor Type
+(14537, 4415, 3), -- Weapon Type
+(14537, 4416, 9), -- Races
+(14537, 5038, 7), -- Summon PVP Penalty
 -- Silhouette
 (14538, 4121, 9), -- Summoned Monster Magic Protection
-(14538, 4408, 6), -- HP Very High
-(14538, 4409, 1), -- MP Increase (1x)
-(14538, 4410, 12), -- Slightly Strong P. Atk.
-(14538, 4411, 12), -- Slightly Strong M. Atk.
-(14538, 4412, 12), -- Slightly Strong P. Def.
-(14538, 4413, 12), -- Slightly Strong M. Def.
-(14538, 4414, 2), -- Standard Type
-(14538, 4415, 3), -- One-handed Sword
-(14538, 4416, 9), -- Demons
-(14538, 5038, 7), -- Servitor PvP Penalty
+(14538, 4408, 6), -- HP Modifiers
+(14538, 4409, 1), -- MP Modifiers
+(14538, 4410, 12), -- P. Atk. Modifiers
+(14538, 4411, 12), -- M. Atk. Modifiers
+(14538, 4412, 12), -- P. Def. Modifiers
+(14538, 4413, 12), -- M. Def. Modifiers
+(14538, 4414, 2), -- Armor Type
+(14538, 4415, 3), -- Weapon Type
+(14538, 4416, 9), -- Races
+(14538, 5038, 7), -- Summon PVP Penalty
 -- Silhouette
 (14539, 4121, 9), -- Summoned Monster Magic Protection
-(14539, 4408, 6), -- HP Very High
-(14539, 4409, 1), -- MP Increase (1x)
-(14539, 4410, 12), -- Slightly Strong P. Atk.
-(14539, 4411, 12), -- Slightly Strong M. Atk.
-(14539, 4412, 12), -- Slightly Strong P. Def.
-(14539, 4413, 12), -- Slightly Strong M. Def.
-(14539, 4414, 2), -- Standard Type
-(14539, 4415, 3), -- One-handed Sword
-(14539, 4416, 9), -- Demons
-(14539, 5038, 7), -- Servitor PvP Penalty
+(14539, 4408, 6), -- HP Modifiers
+(14539, 4409, 1), -- MP Modifiers
+(14539, 4410, 12), -- P. Atk. Modifiers
+(14539, 4411, 12), -- M. Atk. Modifiers
+(14539, 4412, 12), -- P. Def. Modifiers
+(14539, 4413, 12), -- M. Def. Modifiers
+(14539, 4414, 2), -- Armor Type
+(14539, 4415, 3), -- Weapon Type
+(14539, 4416, 9), -- Races
+(14539, 5038, 7), -- Summon PVP Penalty
 -- Silhouette
 (14540, 4121, 9), -- Summoned Monster Magic Protection
-(14540, 4408, 6), -- HP Very High
-(14540, 4409, 1), -- MP Increase (1x)
-(14540, 4410, 12), -- Slightly Strong P. Atk.
-(14540, 4411, 12), -- Slightly Strong M. Atk.
-(14540, 4412, 12), -- Slightly Strong P. Def.
-(14540, 4413, 12), -- Slightly Strong M. Def.
-(14540, 4414, 2), -- Standard Type
-(14540, 4415, 3), -- One-handed Sword
-(14540, 4416, 9), -- Demons
-(14540, 5038, 7), -- Servitor PvP Penalty
+(14540, 4408, 6), -- HP Modifiers
+(14540, 4409, 1), -- MP Modifiers
+(14540, 4410, 12), -- P. Atk. Modifiers
+(14540, 4411, 12), -- M. Atk. Modifiers
+(14540, 4412, 12), -- P. Def. Modifiers
+(14540, 4413, 12), -- M. Def. Modifiers
+(14540, 4414, 2), -- Armor Type
+(14540, 4415, 3), -- Weapon Type
+(14540, 4416, 9), -- Races
+(14540, 5038, 7), -- Summon PVP Penalty
 -- Silhouette
 (14541, 4121, 9), -- Summoned Monster Magic Protection
-(14541, 4408, 6), -- HP Very High
-(14541, 4409, 1), -- MP Increase (1x)
-(14541, 4410, 12), -- Slightly Strong P. Atk.
-(14541, 4411, 12), -- Slightly Strong M. Atk.
-(14541, 4412, 12), -- Slightly Strong P. Def.
-(14541, 4413, 12), -- Slightly Strong M. Def.
-(14541, 4414, 2), -- Standard Type
-(14541, 4415, 3), -- One-handed Sword
-(14541, 4416, 9), -- Demons
-(14541, 5038, 7), -- Servitor PvP Penalty
+(14541, 4408, 6), -- HP Modifiers
+(14541, 4409, 1), -- MP Modifiers
+(14541, 4410, 12), -- P. Atk. Modifiers
+(14541, 4411, 12), -- M. Atk. Modifiers
+(14541, 4412, 12), -- P. Def. Modifiers
+(14541, 4413, 12), -- M. Def. Modifiers
+(14541, 4414, 2), -- Armor Type
+(14541, 4415, 3), -- Weapon Type
+(14541, 4416, 9), -- Races
+(14541, 5038, 7), -- Summon PVP Penalty
 -- Silhouette
 (14542, 4121, 9), -- Summoned Monster Magic Protection
-(14542, 4408, 6), -- HP Very High
-(14542, 4409, 1), -- MP Increase (1x)
-(14542, 4410, 12), -- Slightly Strong P. Atk.
-(14542, 4411, 12), -- Slightly Strong M. Atk.
-(14542, 4412, 12), -- Slightly Strong P. Def.
-(14542, 4413, 12), -- Slightly Strong M. Def.
-(14542, 4414, 2), -- Standard Type
-(14542, 4415, 3), -- One-handed Sword
-(14542, 4416, 9), -- Demons
-(14542, 5038, 7), -- Servitor PvP Penalty
+(14542, 4408, 6), -- HP Modifiers
+(14542, 4409, 1), -- MP Modifiers
+(14542, 4410, 12), -- P. Atk. Modifiers
+(14542, 4411, 12), -- M. Atk. Modifiers
+(14542, 4412, 12), -- P. Def. Modifiers
+(14542, 4413, 12), -- M. Def. Modifiers
+(14542, 4414, 2), -- Armor Type
+(14542, 4415, 3), -- Weapon Type
+(14542, 4416, 9), -- Races
+(14542, 5038, 7), -- Summon PVP Penalty
 -- Silhouette
 (14543, 4121, 9), -- Summoned Monster Magic Protection
-(14543, 4408, 6), -- HP Very High
-(14543, 4409, 1), -- MP Increase (1x)
-(14543, 4410, 12), -- Slightly Strong P. Atk.
-(14543, 4411, 12), -- Slightly Strong M. Atk.
-(14543, 4412, 12), -- Slightly Strong P. Def.
-(14543, 4413, 12), -- Slightly Strong M. Def.
-(14543, 4414, 2), -- Standard Type
-(14543, 4415, 3), -- One-handed Sword
-(14543, 4416, 9), -- Demons
-(14543, 5038, 7), -- Servitor PvP Penalty
+(14543, 4408, 6), -- HP Modifiers
+(14543, 4409, 1), -- MP Modifiers
+(14543, 4410, 12), -- P. Atk. Modifiers
+(14543, 4411, 12), -- M. Atk. Modifiers
+(14543, 4412, 12), -- P. Def. Modifiers
+(14543, 4413, 12), -- M. Def. Modifiers
+(14543, 4414, 2), -- Armor Type
+(14543, 4415, 3), -- Weapon Type
+(14543, 4416, 9), -- Races
+(14543, 5038, 7), -- Summon PVP Penalty
 -- Silhouette
 (14544, 4121, 9), -- Summoned Monster Magic Protection
-(14544, 4408, 6), -- HP Very High
-(14544, 4409, 1), -- MP Increase (1x)
-(14544, 4410, 12), -- Slightly Strong P. Atk.
-(14544, 4411, 12), -- Slightly Strong M. Atk.
-(14544, 4412, 12), -- Slightly Strong P. Def.
-(14544, 4413, 12), -- Slightly Strong M. Def.
-(14544, 4414, 2), -- Standard Type
-(14544, 4415, 3), -- One-handed Sword
-(14544, 4416, 9), -- Demons
-(14544, 5038, 7), -- Servitor PvP Penalty
+(14544, 4408, 6), -- HP Modifiers
+(14544, 4409, 1), -- MP Modifiers
+(14544, 4410, 12), -- P. Atk. Modifiers
+(14544, 4411, 12), -- M. Atk. Modifiers
+(14544, 4412, 12), -- P. Def. Modifiers
+(14544, 4413, 12), -- M. Def. Modifiers
+(14544, 4414, 2), -- Armor Type
+(14544, 4415, 3), -- Weapon Type
+(14544, 4416, 9), -- Races
+(14544, 5038, 7), -- Summon PVP Penalty
 -- Silhouette
 (14545, 4121, 9), -- Summoned Monster Magic Protection
-(14545, 4408, 6), -- HP Very High
-(14545, 4409, 1), -- MP Increase (1x)
-(14545, 4410, 12), -- Slightly Strong P. Atk.
-(14545, 4411, 12), -- Slightly Strong M. Atk.
-(14545, 4412, 12), -- Slightly Strong P. Def.
-(14545, 4413, 12), -- Slightly Strong M. Def.
-(14545, 4414, 2), -- Standard Type
-(14545, 4415, 3), -- One-handed Sword
-(14545, 4416, 9), -- Demons
-(14545, 5038, 7), -- Servitor PvP Penalty
+(14545, 4408, 6), -- HP Modifiers
+(14545, 4409, 1), -- MP Modifiers
+(14545, 4410, 12), -- P. Atk. Modifiers
+(14545, 4411, 12), -- M. Atk. Modifiers
+(14545, 4412, 12), -- P. Def. Modifiers
+(14545, 4413, 12), -- M. Def. Modifiers
+(14545, 4414, 2), -- Armor Type
+(14545, 4415, 3), -- Weapon Type
+(14545, 4416, 9), -- Races
+(14545, 5038, 7), -- Summon PVP Penalty
 -- Silhouette
 (14546, 4121, 9), -- Summoned Monster Magic Protection
-(14546, 4408, 6), -- HP Very High
-(14546, 4409, 1), -- MP Increase (1x)
-(14546, 4410, 12), -- Slightly Strong P. Atk.
-(14546, 4411, 12), -- Slightly Strong M. Atk.
-(14546, 4412, 12), -- Slightly Strong P. Def.
-(14546, 4413, 12), -- Slightly Strong M. Def.
-(14546, 4414, 2), -- Standard Type
-(14546, 4415, 3), -- One-handed Sword
-(14546, 4416, 9), -- Demons
-(14546, 5038, 7), -- Servitor PvP Penalty
+(14546, 4408, 6), -- HP Modifiers
+(14546, 4409, 1), -- MP Modifiers
+(14546, 4410, 12), -- P. Atk. Modifiers
+(14546, 4411, 12), -- M. Atk. Modifiers
+(14546, 4412, 12), -- P. Def. Modifiers
+(14546, 4413, 12), -- M. Def. Modifiers
+(14546, 4414, 2), -- Armor Type
+(14546, 4415, 3), -- Weapon Type
+(14546, 4416, 9), -- Races
+(14546, 5038, 7), -- Summon PVP Penalty
 -- Silhouette
 (14547, 4121, 9), -- Summoned Monster Magic Protection
-(14547, 4408, 6), -- HP Very High
-(14547, 4409, 1), -- MP Increase (1x)
-(14547, 4410, 12), -- Slightly Strong P. Atk.
-(14547, 4411, 12), -- Slightly Strong M. Atk.
-(14547, 4412, 12), -- Slightly Strong P. Def.
-(14547, 4413, 12), -- Slightly Strong M. Def.
-(14547, 4414, 2), -- Standard Type
-(14547, 4415, 3), -- One-handed Sword
-(14547, 4416, 9), -- Demons
-(14547, 5038, 7), -- Servitor PvP Penalty
+(14547, 4408, 6), -- HP Modifiers
+(14547, 4409, 1), -- MP Modifiers
+(14547, 4410, 12), -- P. Atk. Modifiers
+(14547, 4411, 12), -- M. Atk. Modifiers
+(14547, 4412, 12), -- P. Def. Modifiers
+(14547, 4413, 12), -- M. Def. Modifiers
+(14547, 4414, 2), -- Armor Type
+(14547, 4415, 3), -- Weapon Type
+(14547, 4416, 9), -- Races
+(14547, 5038, 7), -- Summon PVP Penalty
 -- Silhouette
 (14548, 4121, 9), -- Summoned Monster Magic Protection
-(14548, 4408, 6), -- HP Very High
-(14548, 4409, 1), -- MP Increase (1x)
-(14548, 4410, 12), -- Slightly Strong P. Atk.
-(14548, 4411, 12), -- Slightly Strong M. Atk.
-(14548, 4412, 12), -- Slightly Strong P. Def.
-(14548, 4413, 12), -- Slightly Strong M. Def.
-(14548, 4414, 2), -- Standard Type
-(14548, 4415, 3), -- One-handed Sword
-(14548, 4416, 9), -- Demons
-(14548, 5038, 7), -- Servitor PvP Penalty
+(14548, 4408, 6), -- HP Modifiers
+(14548, 4409, 1), -- MP Modifiers
+(14548, 4410, 12), -- P. Atk. Modifiers
+(14548, 4411, 12), -- M. Atk. Modifiers
+(14548, 4412, 12), -- P. Def. Modifiers
+(14548, 4413, 12), -- M. Def. Modifiers
+(14548, 4414, 2), -- Armor Type
+(14548, 4415, 3), -- Weapon Type
+(14548, 4416, 9), -- Races
+(14548, 5038, 7), -- Summon PVP Penalty
 -- Silhouette
 (14549, 4121, 9), -- Summoned Monster Magic Protection
-(14549, 4408, 6), -- HP Very High
-(14549, 4409, 1), -- MP Increase (1x)
-(14549, 4410, 12), -- Slightly Strong P. Atk.
-(14549, 4411, 12), -- Slightly Strong M. Atk.
-(14549, 4412, 12), -- Slightly Strong P. Def.
-(14549, 4413, 12), -- Slightly Strong M. Def.
-(14549, 4414, 2), -- Standard Type
-(14549, 4415, 3), -- One-handed Sword
-(14549, 4416, 9), -- Demons
-(14549, 5038, 7), -- Servitor PvP Penalty
+(14549, 4408, 6), -- HP Modifiers
+(14549, 4409, 1), -- MP Modifiers
+(14549, 4410, 12), -- P. Atk. Modifiers
+(14549, 4411, 12), -- M. Atk. Modifiers
+(14549, 4412, 12), -- P. Def. Modifiers
+(14549, 4413, 12), -- M. Def. Modifiers
+(14549, 4414, 2), -- Armor Type
+(14549, 4415, 3), -- Weapon Type
+(14549, 4416, 9), -- Races
+(14549, 5038, 7), -- Summon PVP Penalty
 -- Silhouette
 (14550, 4121, 9), -- Summoned Monster Magic Protection
-(14550, 4408, 6), -- HP Very High
-(14550, 4409, 1), -- MP Increase (1x)
-(14550, 4410, 12), -- Slightly Strong P. Atk.
-(14550, 4411, 12), -- Slightly Strong M. Atk.
-(14550, 4412, 12), -- Slightly Strong P. Def.
-(14550, 4413, 12), -- Slightly Strong M. Def.
-(14550, 4414, 2), -- Standard Type
-(14550, 4415, 3), -- One-handed Sword
-(14550, 4416, 9), -- Demons
-(14550, 5038, 7), -- Servitor PvP Penalty
+(14550, 4408, 6), -- HP Modifiers
+(14550, 4409, 1), -- MP Modifiers
+(14550, 4410, 12), -- P. Atk. Modifiers
+(14550, 4411, 12), -- M. Atk. Modifiers
+(14550, 4412, 12), -- P. Def. Modifiers
+(14550, 4413, 12), -- M. Def. Modifiers
+(14550, 4414, 2), -- Armor Type
+(14550, 4415, 3), -- Weapon Type
+(14550, 4416, 9), -- Races
+(14550, 5038, 7), -- Summon PVP Penalty
 -- Silhouette
 (14551, 4121, 9), -- Summoned Monster Magic Protection
-(14551, 4408, 6), -- HP Very High
-(14551, 4409, 1), -- MP Increase (1x)
-(14551, 4410, 12), -- Slightly Strong P. Atk.
-(14551, 4411, 12), -- Slightly Strong M. Atk.
-(14551, 4412, 12), -- Slightly Strong P. Def.
-(14551, 4413, 12), -- Slightly Strong M. Def.
-(14551, 4414, 2), -- Standard Type
-(14551, 4415, 3), -- One-handed Sword
-(14551, 4416, 9), -- Demons
-(14551, 5038, 7), -- Servitor PvP Penalty
+(14551, 4408, 6), -- HP Modifiers
+(14551, 4409, 1), -- MP Modifiers
+(14551, 4410, 12), -- P. Atk. Modifiers
+(14551, 4411, 12), -- M. Atk. Modifiers
+(14551, 4412, 12), -- P. Def. Modifiers
+(14551, 4413, 12), -- M. Def. Modifiers
+(14551, 4414, 2), -- Armor Type
+(14551, 4415, 3), -- Weapon Type
+(14551, 4416, 9), -- Races
+(14551, 5038, 7), -- Summon PVP Penalty
 -- Silhouette
 (14552, 4121, 9), -- Summoned Monster Magic Protection
-(14552, 4408, 6), -- HP Very High
-(14552, 4409, 1), -- MP Increase (1x)
-(14552, 4410, 12), -- Slightly Strong P. Atk.
-(14552, 4411, 12), -- Slightly Strong M. Atk.
-(14552, 4412, 12), -- Slightly Strong P. Def.
-(14552, 4413, 12), -- Slightly Strong M. Def.
-(14552, 4414, 2), -- Standard Type
-(14552, 4415, 3), -- One-handed Sword
-(14552, 4416, 9), -- Demons
-(14552, 5038, 7), -- Servitor PvP Penalty
+(14552, 4408, 6), -- HP Modifiers
+(14552, 4409, 1), -- MP Modifiers
+(14552, 4410, 12), -- P. Atk. Modifiers
+(14552, 4411, 12), -- M. Atk. Modifiers
+(14552, 4412, 12), -- P. Def. Modifiers
+(14552, 4413, 12), -- M. Def. Modifiers
+(14552, 4414, 2), -- Armor Type
+(14552, 4415, 3), -- Weapon Type
+(14552, 4416, 9), -- Races
+(14552, 5038, 7), -- Summon PVP Penalty
 -- Silhouette
 (14553, 4121, 9), -- Summoned Monster Magic Protection
-(14553, 4408, 6), -- HP Very High
-(14553, 4409, 1), -- MP Increase (1x)
-(14553, 4410, 12), -- Slightly Strong P. Atk.
-(14553, 4411, 12), -- Slightly Strong M. Atk.
-(14553, 4412, 12), -- Slightly Strong P. Def.
-(14553, 4413, 12), -- Slightly Strong M. Def.
-(14553, 4414, 2), -- Standard Type
-(14553, 4415, 3), -- One-handed Sword
-(14553, 4416, 9), -- Demons
-(14553, 5038, 7), -- Servitor PvP Penalty
+(14553, 4408, 6), -- HP Modifiers
+(14553, 4409, 1), -- MP Modifiers
+(14553, 4410, 12), -- P. Atk. Modifiers
+(14553, 4411, 12), -- M. Atk. Modifiers
+(14553, 4412, 12), -- P. Def. Modifiers
+(14553, 4413, 12), -- M. Def. Modifiers
+(14553, 4414, 2), -- Armor Type
+(14553, 4415, 3), -- Weapon Type
+(14553, 4416, 9), -- Races
+(14553, 5038, 7), -- Summon PVP Penalty
 -- Silhouette
 (14554, 4121, 9), -- Summoned Monster Magic Protection
-(14554, 4408, 6), -- HP Very High
-(14554, 4409, 1), -- MP Increase (1x)
-(14554, 4410, 12), -- Slightly Strong P. Atk.
-(14554, 4411, 12), -- Slightly Strong M. Atk.
-(14554, 4412, 12), -- Slightly Strong P. Def.
-(14554, 4413, 12), -- Slightly Strong M. Def.
-(14554, 4414, 2), -- Standard Type
-(14554, 4415, 3), -- One-handed Sword
-(14554, 4416, 9), -- Demons
-(14554, 5038, 7), -- Servitor PvP Penalty
+(14554, 4408, 6), -- HP Modifiers
+(14554, 4409, 1), -- MP Modifiers
+(14554, 4410, 12), -- P. Atk. Modifiers
+(14554, 4411, 12), -- M. Atk. Modifiers
+(14554, 4412, 12), -- P. Def. Modifiers
+(14554, 4413, 12), -- M. Def. Modifiers
+(14554, 4414, 2), -- Armor Type
+(14554, 4415, 3), -- Weapon Type
+(14554, 4416, 9), -- Races
+(14554, 5038, 7), -- Summon PVP Penalty
 -- Silhouette
 (14555, 4121, 9), -- Summoned Monster Magic Protection
-(14555, 4408, 6), -- HP Very High
-(14555, 4409, 1), -- MP Increase (1x)
-(14555, 4410, 12), -- Slightly Strong P. Atk.
-(14555, 4411, 12), -- Slightly Strong M. Atk.
-(14555, 4412, 12), -- Slightly Strong P. Def.
-(14555, 4413, 12), -- Slightly Strong M. Def.
-(14555, 4414, 2), -- Standard Type
-(14555, 4415, 3), -- One-handed Sword
-(14555, 4416, 9), -- Demons
-(14555, 5038, 7), -- Servitor PvP Penalty
+(14555, 4408, 6), -- HP Modifiers
+(14555, 4409, 1), -- MP Modifiers
+(14555, 4410, 12), -- P. Atk. Modifiers
+(14555, 4411, 12), -- M. Atk. Modifiers
+(14555, 4412, 12), -- P. Def. Modifiers
+(14555, 4413, 12), -- M. Def. Modifiers
+(14555, 4414, 2), -- Armor Type
+(14555, 4415, 3), -- Weapon Type
+(14555, 4416, 9), -- Races
+(14555, 5038, 7), -- Summon PVP Penalty
 -- Silhouette
 (14556, 4121, 9), -- Summoned Monster Magic Protection
-(14556, 4408, 6), -- HP Very High
-(14556, 4409, 1), -- MP Increase (1x)
-(14556, 4410, 12), -- Slightly Strong P. Atk.
-(14556, 4411, 12), -- Slightly Strong M. Atk.
-(14556, 4412, 12), -- Slightly Strong P. Def.
-(14556, 4413, 12), -- Slightly Strong M. Def.
-(14556, 4414, 2), -- Standard Type
-(14556, 4415, 3), -- One-handed Sword
-(14556, 4416, 9), -- Demons
-(14556, 5038, 7), -- Servitor PvP Penalty
+(14556, 4408, 6), -- HP Modifiers
+(14556, 4409, 1), -- MP Modifiers
+(14556, 4410, 12), -- P. Atk. Modifiers
+(14556, 4411, 12), -- M. Atk. Modifiers
+(14556, 4412, 12), -- P. Def. Modifiers
+(14556, 4413, 12), -- M. Def. Modifiers
+(14556, 4414, 2), -- Armor Type
+(14556, 4415, 3), -- Weapon Type
+(14556, 4416, 9), -- Races
+(14556, 5038, 7), -- Summon PVP Penalty
 -- Silhouette
 (14557, 4121, 9), -- Summoned Monster Magic Protection
-(14557, 4408, 6), -- HP Very High
-(14557, 4409, 1), -- MP Increase (1x)
-(14557, 4410, 12), -- Slightly Strong P. Atk.
-(14557, 4411, 12), -- Slightly Strong M. Atk.
-(14557, 4412, 12), -- Slightly Strong P. Def.
-(14557, 4413, 12), -- Slightly Strong M. Def.
-(14557, 4414, 2), -- Standard Type
-(14557, 4415, 3), -- One-handed Sword
-(14557, 4416, 9), -- Demons
-(14557, 5038, 7), -- Servitor PvP Penalty
+(14557, 4408, 6), -- HP Modifiers
+(14557, 4409, 1), -- MP Modifiers
+(14557, 4410, 12), -- P. Atk. Modifiers
+(14557, 4411, 12), -- M. Atk. Modifiers
+(14557, 4412, 12), -- P. Def. Modifiers
+(14557, 4413, 12), -- M. Def. Modifiers
+(14557, 4414, 2), -- Armor Type
+(14557, 4415, 3), -- Weapon Type
+(14557, 4416, 9), -- Races
+(14557, 5038, 7), -- Summon PVP Penalty
 -- Silhouette
 (14558, 4121, 9), -- Summoned Monster Magic Protection
-(14558, 4408, 6), -- HP Very High
-(14558, 4409, 1), -- MP Increase (1x)
-(14558, 4410, 12), -- Slightly Strong P. Atk.
-(14558, 4411, 12), -- Slightly Strong M. Atk.
-(14558, 4412, 12), -- Slightly Strong P. Def.
-(14558, 4413, 12), -- Slightly Strong M. Def.
-(14558, 4414, 2), -- Standard Type
-(14558, 4415, 3), -- One-handed Sword
-(14558, 4416, 9), -- Demons
-(14558, 5038, 7), -- Servitor PvP Penalty
+(14558, 4408, 6), -- HP Modifiers
+(14558, 4409, 1), -- MP Modifiers
+(14558, 4410, 12), -- P. Atk. Modifiers
+(14558, 4411, 12), -- M. Atk. Modifiers
+(14558, 4412, 12), -- P. Def. Modifiers
+(14558, 4413, 12), -- M. Def. Modifiers
+(14558, 4414, 2), -- Armor Type
+(14558, 4415, 3), -- Weapon Type
+(14558, 4416, 9), -- Races
+(14558, 5038, 7), -- Summon PVP Penalty
 -- Silhouette
 (14559, 4121, 9), -- Summoned Monster Magic Protection
-(14559, 4408, 6), -- HP Very High
-(14559, 4409, 1), -- MP Increase (1x)
-(14559, 4410, 12), -- Slightly Strong P. Atk.
-(14559, 4411, 12), -- Slightly Strong M. Atk.
-(14559, 4412, 12), -- Slightly Strong P. Def.
-(14559, 4413, 12), -- Slightly Strong M. Def.
-(14559, 4414, 2), -- Standard Type
-(14559, 4415, 3), -- One-handed Sword
-(14559, 4416, 9), -- Demons
-(14559, 5038, 7), -- Servitor PvP Penalty
+(14559, 4408, 6), -- HP Modifiers
+(14559, 4409, 1), -- MP Modifiers
+(14559, 4410, 12), -- P. Atk. Modifiers
+(14559, 4411, 12), -- M. Atk. Modifiers
+(14559, 4412, 12), -- P. Def. Modifiers
+(14559, 4413, 12), -- M. Def. Modifiers
+(14559, 4414, 2), -- Armor Type
+(14559, 4415, 3), -- Weapon Type
+(14559, 4416, 9), -- Races
+(14559, 5038, 7), -- Summon PVP Penalty
 -- Silhouette
 (14560, 4121, 9), -- Summoned Monster Magic Protection
-(14560, 4408, 6), -- HP Very High
-(14560, 4409, 1), -- MP Increase (1x)
-(14560, 4410, 12), -- Slightly Strong P. Atk.
-(14560, 4411, 12), -- Slightly Strong M. Atk.
-(14560, 4412, 12), -- Slightly Strong P. Def.
-(14560, 4413, 12), -- Slightly Strong M. Def.
-(14560, 4414, 2), -- Standard Type
-(14560, 4415, 3), -- One-handed Sword
-(14560, 4416, 9), -- Demons
-(14560, 5038, 7), -- Servitor PvP Penalty
+(14560, 4408, 6), -- HP Modifiers
+(14560, 4409, 1), -- MP Modifiers
+(14560, 4410, 12), -- P. Atk. Modifiers
+(14560, 4411, 12), -- M. Atk. Modifiers
+(14560, 4412, 12), -- P. Def. Modifiers
+(14560, 4413, 12), -- M. Def. Modifiers
+(14560, 4414, 2), -- Armor Type
+(14560, 4415, 3), -- Weapon Type
+(14560, 4416, 9), -- Races
+(14560, 5038, 7), -- Summon PVP Penalty
 -- Silhouette
 (14561, 4121, 9), -- Summoned Monster Magic Protection
-(14561, 4408, 6), -- HP Very High
-(14561, 4409, 1), -- MP Increase (1x)
-(14561, 4410, 12), -- Slightly Strong P. Atk.
-(14561, 4411, 12), -- Slightly Strong M. Atk.
-(14561, 4412, 12), -- Slightly Strong P. Def.
-(14561, 4413, 12), -- Slightly Strong M. Def.
-(14561, 4414, 2), -- Standard Type
-(14561, 4415, 3), -- One-handed Sword
-(14561, 4416, 9), -- Demons
-(14561, 5038, 7), -- Servitor PvP Penalty
+(14561, 4408, 6), -- HP Modifiers
+(14561, 4409, 1), -- MP Modifiers
+(14561, 4410, 12), -- P. Atk. Modifiers
+(14561, 4411, 12), -- M. Atk. Modifiers
+(14561, 4412, 12), -- P. Def. Modifiers
+(14561, 4413, 12), -- M. Def. Modifiers
+(14561, 4414, 2), -- Armor Type
+(14561, 4415, 3), -- Weapon Type
+(14561, 4416, 9), -- Races
+(14561, 5038, 7), -- Summon PVP Penalty
 -- Silhouette
 (14562, 4121, 9), -- Summoned Monster Magic Protection
-(14562, 4408, 6), -- HP Very High
-(14562, 4409, 1), -- MP Increase (1x)
-(14562, 4410, 12), -- Slightly Strong P. Atk.
-(14562, 4411, 12), -- Slightly Strong M. Atk.
-(14562, 4412, 12), -- Slightly Strong P. Def.
-(14562, 4413, 12), -- Slightly Strong M. Def.
-(14562, 4414, 2), -- Standard Type
-(14562, 4415, 3), -- One-handed Sword
-(14562, 4416, 9), -- Demons
-(14562, 5038, 7), -- Servitor PvP Penalty
+(14562, 4408, 6), -- HP Modifiers
+(14562, 4409, 1), -- MP Modifiers
+(14562, 4410, 12), -- P. Atk. Modifiers
+(14562, 4411, 12), -- M. Atk. Modifiers
+(14562, 4412, 12), -- P. Def. Modifiers
+(14562, 4413, 12), -- M. Def. Modifiers
+(14562, 4414, 2), -- Armor Type
+(14562, 4415, 3), -- Weapon Type
+(14562, 4416, 9), -- Races
+(14562, 5038, 7), -- Summon PVP Penalty
 -- Silhouette
 (14563, 4121, 9), -- Summoned Monster Magic Protection
-(14563, 4408, 6), -- HP Very High
-(14563, 4409, 1), -- MP Increase (1x)
-(14563, 4410, 12), -- Slightly Strong P. Atk.
-(14563, 4411, 12), -- Slightly Strong M. Atk.
-(14563, 4412, 12), -- Slightly Strong P. Def.
-(14563, 4413, 12), -- Slightly Strong M. Def.
-(14563, 4414, 2), -- Standard Type
-(14563, 4415, 3), -- One-handed Sword
-(14563, 4416, 9), -- Demons
-(14563, 5038, 7), -- Servitor PvP Penalty
+(14563, 4408, 6), -- HP Modifiers
+(14563, 4409, 1), -- MP Modifiers
+(14563, 4410, 12), -- P. Atk. Modifiers
+(14563, 4411, 12), -- M. Atk. Modifiers
+(14563, 4412, 12), -- P. Def. Modifiers
+(14563, 4413, 12), -- M. Def. Modifiers
+(14563, 4414, 2), -- Armor Type
+(14563, 4415, 3), -- Weapon Type
+(14563, 4416, 9), -- Races
+(14563, 5038, 7), -- Summon PVP Penalty
 -- Silhouette
 (14564, 4121, 9), -- Summoned Monster Magic Protection
-(14564, 4408, 6), -- HP Very High
-(14564, 4409, 1), -- MP Increase (1x)
-(14564, 4410, 12), -- Slightly Strong P. Atk.
-(14564, 4411, 12), -- Slightly Strong M. Atk.
-(14564, 4412, 12), -- Slightly Strong P. Def.
-(14564, 4413, 12), -- Slightly Strong M. Def.
-(14564, 4414, 2), -- Standard Type
-(14564, 4415, 3), -- One-handed Sword
-(14564, 4416, 9), -- Demons
-(14564, 5038, 7), -- Servitor PvP Penalty
+(14564, 4408, 6), -- HP Modifiers
+(14564, 4409, 1), -- MP Modifiers
+(14564, 4410, 12), -- P. Atk. Modifiers
+(14564, 4411, 12), -- M. Atk. Modifiers
+(14564, 4412, 12), -- P. Def. Modifiers
+(14564, 4413, 12), -- M. Def. Modifiers
+(14564, 4414, 2), -- Armor Type
+(14564, 4415, 3), -- Weapon Type
+(14564, 4416, 9), -- Races
+(14564, 5038, 7), -- Summon PVP Penalty
 -- Silhouette
 (14565, 4121, 9), -- Summoned Monster Magic Protection
-(14565, 4408, 6), -- HP Very High
-(14565, 4409, 1), -- MP Increase (1x)
-(14565, 4410, 12), -- Slightly Strong P. Atk.
-(14565, 4411, 12), -- Slightly Strong M. Atk.
-(14565, 4412, 12), -- Slightly Strong P. Def.
-(14565, 4413, 12), -- Slightly Strong M. Def.
-(14565, 4414, 2), -- Standard Type
-(14565, 4415, 3), -- One-handed Sword
-(14565, 4416, 9), -- Demons
-(14565, 5038, 7), -- Servitor PvP Penalty
+(14565, 4408, 6), -- HP Modifiers
+(14565, 4409, 1), -- MP Modifiers
+(14565, 4410, 12), -- P. Atk. Modifiers
+(14565, 4411, 12), -- M. Atk. Modifiers
+(14565, 4412, 12), -- P. Def. Modifiers
+(14565, 4413, 12), -- M. Def. Modifiers
+(14565, 4414, 2), -- Armor Type
+(14565, 4415, 3), -- Weapon Type
+(14565, 4416, 9), -- Races
+(14565, 5038, 7), -- Summon PVP Penalty
 -- Silhouette
 (14566, 4121, 9), -- Summoned Monster Magic Protection
-(14566, 4408, 6), -- HP Very High
-(14566, 4409, 1), -- MP Increase (1x)
-(14566, 4410, 12), -- Slightly Strong P. Atk.
-(14566, 4411, 12), -- Slightly Strong M. Atk.
-(14566, 4412, 12), -- Slightly Strong P. Def.
-(14566, 4413, 12), -- Slightly Strong M. Def.
-(14566, 4414, 2), -- Standard Type
-(14566, 4415, 3), -- One-handed Sword
-(14566, 4416, 9), -- Demons
-(14566, 5038, 7), -- Servitor PvP Penalty
+(14566, 4408, 6), -- HP Modifiers
+(14566, 4409, 1), -- MP Modifiers
+(14566, 4410, 12), -- P. Atk. Modifiers
+(14566, 4411, 12), -- M. Atk. Modifiers
+(14566, 4412, 12), -- P. Def. Modifiers
+(14566, 4413, 12), -- M. Def. Modifiers
+(14566, 4414, 2), -- Armor Type
+(14566, 4415, 3), -- Weapon Type
+(14566, 4416, 9), -- Races
+(14566, 5038, 7), -- Summon PVP Penalty
 -- Silhouette
 (14567, 4121, 9), -- Summoned Monster Magic Protection
-(14567, 4408, 6), -- HP Very High
-(14567, 4409, 1), -- MP Increase (1x)
-(14567, 4410, 12), -- Slightly Strong P. Atk.
-(14567, 4411, 12), -- Slightly Strong M. Atk.
-(14567, 4412, 12), -- Slightly Strong P. Def.
-(14567, 4413, 12), -- Slightly Strong M. Def.
-(14567, 4414, 2), -- Standard Type
-(14567, 4415, 3), -- One-handed Sword
-(14567, 4416, 9), -- Demons
-(14567, 5038, 7), -- Servitor PvP Penalty
+(14567, 4408, 6), -- HP Modifiers
+(14567, 4409, 1), -- MP Modifiers
+(14567, 4410, 12), -- P. Atk. Modifiers
+(14567, 4411, 12), -- M. Atk. Modifiers
+(14567, 4412, 12), -- P. Def. Modifiers
+(14567, 4413, 12), -- M. Def. Modifiers
+(14567, 4414, 2), -- Armor Type
+(14567, 4415, 3), -- Weapon Type
+(14567, 4416, 9), -- Races
+(14567, 5038, 7), -- Summon PVP Penalty
 -- Silhouette
 (14568, 4121, 9), -- Summoned Monster Magic Protection
-(14568, 4408, 6), -- HP Very High
-(14568, 4409, 1), -- MP Increase (1x)
-(14568, 4410, 12), -- Slightly Strong P. Atk.
-(14568, 4411, 12), -- Slightly Strong M. Atk.
-(14568, 4412, 12), -- Slightly Strong P. Def.
-(14568, 4413, 12), -- Slightly Strong M. Def.
-(14568, 4414, 2), -- Standard Type
-(14568, 4415, 3), -- One-handed Sword
-(14568, 4416, 9), -- Demons
-(14568, 5038, 7), -- Servitor PvP Penalty
+(14568, 4408, 6), -- HP Modifiers
+(14568, 4409, 1), -- MP Modifiers
+(14568, 4410, 12), -- P. Atk. Modifiers
+(14568, 4411, 12), -- M. Atk. Modifiers
+(14568, 4412, 12), -- P. Def. Modifiers
+(14568, 4413, 12), -- M. Def. Modifiers
+(14568, 4414, 2), -- Armor Type
+(14568, 4415, 3), -- Weapon Type
+(14568, 4416, 9), -- Races
+(14568, 5038, 7), -- Summon PVP Penalty
 -- Silhouette
 (14569, 4121, 9), -- Summoned Monster Magic Protection
-(14569, 4408, 6), -- HP Very High
-(14569, 4409, 1), -- MP Increase (1x)
-(14569, 4410, 12), -- Slightly Strong P. Atk.
-(14569, 4411, 12), -- Slightly Strong M. Atk.
-(14569, 4412, 12), -- Slightly Strong P. Def.
-(14569, 4413, 12), -- Slightly Strong M. Def.
-(14569, 4414, 2), -- Standard Type
-(14569, 4415, 3), -- One-handed Sword
-(14569, 4416, 9), -- Demons
-(14569, 5038, 7), -- Servitor PvP Penalty
+(14569, 4408, 6), -- HP Modifiers
+(14569, 4409, 1), -- MP Modifiers
+(14569, 4410, 12), -- P. Atk. Modifiers
+(14569, 4411, 12), -- M. Atk. Modifiers
+(14569, 4412, 12), -- P. Def. Modifiers
+(14569, 4413, 12), -- M. Def. Modifiers
+(14569, 4414, 2), -- Armor Type
+(14569, 4415, 3), -- Weapon Type
+(14569, 4416, 9), -- Races
+(14569, 5038, 7), -- Summon PVP Penalty
 -- Silhouette
 (14570, 4121, 9), -- Summoned Monster Magic Protection
-(14570, 4408, 6), -- HP Very High
-(14570, 4409, 1), -- MP Increase (1x)
-(14570, 4410, 12), -- Slightly Strong P. Atk.
-(14570, 4411, 12), -- Slightly Strong M. Atk.
-(14570, 4412, 12), -- Slightly Strong P. Def.
-(14570, 4413, 12), -- Slightly Strong M. Def.
-(14570, 4414, 2), -- Standard Type
-(14570, 4415, 3), -- One-handed Sword
-(14570, 4416, 9), -- Demons
-(14570, 5038, 7), -- Servitor PvP Penalty
+(14570, 4408, 6), -- HP Modifiers
+(14570, 4409, 1), -- MP Modifiers
+(14570, 4410, 12), -- P. Atk. Modifiers
+(14570, 4411, 12), -- M. Atk. Modifiers
+(14570, 4412, 12), -- P. Def. Modifiers
+(14570, 4413, 12), -- M. Def. Modifiers
+(14570, 4414, 2), -- Armor Type
+(14570, 4415, 3), -- Weapon Type
+(14570, 4416, 9), -- Races
+(14570, 5038, 7), -- Summon PVP Penalty
 -- Silhouette
 (14571, 4121, 9), -- Summoned Monster Magic Protection
-(14571, 4408, 6), -- HP Very High
-(14571, 4409, 1), -- MP Increase (1x)
-(14571, 4410, 12), -- Slightly Strong P. Atk.
-(14571, 4411, 12), -- Slightly Strong M. Atk.
-(14571, 4412, 12), -- Slightly Strong P. Def.
-(14571, 4413, 12), -- Slightly Strong M. Def.
-(14571, 4414, 2), -- Standard Type
-(14571, 4415, 3), -- One-handed Sword
-(14571, 4416, 9), -- Demons
-(14571, 5038, 7), -- Servitor PvP Penalty
+(14571, 4408, 6), -- HP Modifiers
+(14571, 4409, 1), -- MP Modifiers
+(14571, 4410, 12), -- P. Atk. Modifiers
+(14571, 4411, 12), -- M. Atk. Modifiers
+(14571, 4412, 12), -- P. Def. Modifiers
+(14571, 4413, 12), -- M. Def. Modifiers
+(14571, 4414, 2), -- Armor Type
+(14571, 4415, 3), -- Weapon Type
+(14571, 4416, 9), -- Races
+(14571, 5038, 7), -- Summon PVP Penalty
 -- Silhouette
 (14572, 4121, 9), -- Summoned Monster Magic Protection
-(14572, 4408, 6), -- HP Very High
-(14572, 4409, 1), -- MP Increase (1x)
-(14572, 4410, 12), -- Slightly Strong P. Atk.
-(14572, 4411, 12), -- Slightly Strong M. Atk.
-(14572, 4412, 12), -- Slightly Strong P. Def.
-(14572, 4413, 12), -- Slightly Strong M. Def.
-(14572, 4414, 2), -- Standard Type
-(14572, 4415, 3), -- One-handed Sword
-(14572, 4416, 9), -- Demons
-(14572, 5038, 7), -- Servitor PvP Penalty
+(14572, 4408, 6), -- HP Modifiers
+(14572, 4409, 1), -- MP Modifiers
+(14572, 4410, 12), -- P. Atk. Modifiers
+(14572, 4411, 12), -- M. Atk. Modifiers
+(14572, 4412, 12), -- P. Def. Modifiers
+(14572, 4413, 12), -- M. Def. Modifiers
+(14572, 4414, 2), -- Armor Type
+(14572, 4415, 3), -- Weapon Type
+(14572, 4416, 9), -- Races
+(14572, 5038, 7), -- Summon PVP Penalty
 -- Silhouette
 (14573, 4121, 9), -- Summoned Monster Magic Protection
-(14573, 4408, 6), -- HP Very High
-(14573, 4409, 1), -- MP Increase (1x)
-(14573, 4410, 12), -- Slightly Strong P. Atk.
-(14573, 4411, 12), -- Slightly Strong M. Atk.
-(14573, 4412, 12), -- Slightly Strong P. Def.
-(14573, 4413, 12), -- Slightly Strong M. Def.
-(14573, 4414, 2), -- Standard Type
-(14573, 4415, 3), -- One-handed Sword
-(14573, 4416, 9), -- Demons
-(14573, 5038, 7), -- Servitor PvP Penalty
+(14573, 4408, 6), -- HP Modifiers
+(14573, 4409, 1), -- MP Modifiers
+(14573, 4410, 12), -- P. Atk. Modifiers
+(14573, 4411, 12), -- M. Atk. Modifiers
+(14573, 4412, 12), -- P. Def. Modifiers
+(14573, 4413, 12), -- M. Def. Modifiers
+(14573, 4414, 2), -- Armor Type
+(14573, 4415, 3), -- Weapon Type
+(14573, 4416, 9), -- Races
+(14573, 5038, 7), -- Summon PVP Penalty
 -- Silhouette
 (14574, 4121, 9), -- Summoned Monster Magic Protection
-(14574, 4408, 6), -- HP Very High
-(14574, 4409, 1), -- MP Increase (1x)
-(14574, 4410, 12), -- Slightly Strong P. Atk.
-(14574, 4411, 12), -- Slightly Strong M. Atk.
-(14574, 4412, 12), -- Slightly Strong P. Def.
-(14574, 4413, 12), -- Slightly Strong M. Def.
-(14574, 4414, 2), -- Standard Type
-(14574, 4415, 3), -- One-handed Sword
-(14574, 4416, 9), -- Demons
-(14574, 5038, 7), -- Servitor PvP Penalty
+(14574, 4408, 6), -- HP Modifiers
+(14574, 4409, 1), -- MP Modifiers
+(14574, 4410, 12), -- P. Atk. Modifiers
+(14574, 4411, 12), -- M. Atk. Modifiers
+(14574, 4412, 12), -- P. Def. Modifiers
+(14574, 4413, 12), -- M. Def. Modifiers
+(14574, 4414, 2), -- Armor Type
+(14574, 4415, 3), -- Weapon Type
+(14574, 4416, 9), -- Races
+(14574, 5038, 7), -- Summon PVP Penalty
 -- Soulless
 (14575, 4121, 9), -- Summoned Monster Magic Protection
-(14575, 4408, 3), -- HP Medium-High
-(14575, 4409, 1), -- MP Increase (1x)
-(14575, 4410, 13), -- Slightly Strong P. Atk.
-(14575, 4411, 13), -- Slightly Strong M. Atk.
-(14575, 4412, 12), -- Slightly Strong P. Def.
-(14575, 4413, 12), -- Slightly Strong M. Def.
-(14575, 4414, 2), -- Standard Type
-(14575, 4415, 3), -- One-handed Sword
-(14575, 4416, 9), -- Demons
-(14575, 5038, 10), -- Servitor PvP Penalty
+(14575, 4408, 3), -- HP Modifiers
+(14575, 4409, 1), -- MP Modifiers
+(14575, 4410, 13), -- P. Atk. Modifiers
+(14575, 4411, 13), -- M. Atk. Modifiers
+(14575, 4412, 12), -- P. Def. Modifiers
+(14575, 4413, 12), -- M. Def. Modifiers
+(14575, 4414, 2), -- Armor Type
+(14575, 4415, 3), -- Weapon Type
+(14575, 4416, 9), -- Races
+(14575, 5038, 10), -- Summon PVP Penalty
 -- Soulless
 (14576, 4121, 9), -- Summoned Monster Magic Protection
-(14576, 4408, 3), -- HP Medium-High
-(14576, 4409, 1), -- MP Increase (1x)
-(14576, 4410, 13), -- Slightly Strong P. Atk.
-(14576, 4411, 13), -- Slightly Strong M. Atk.
-(14576, 4412, 12), -- Slightly Strong P. Def.
-(14576, 4413, 12), -- Slightly Strong M. Def.
-(14576, 4414, 2), -- Standard Type
-(14576, 4415, 3), -- One-handed Sword
-(14576, 4416, 9), -- Demons
-(14576, 5038, 10), -- Servitor PvP Penalty
+(14576, 4408, 3), -- HP Modifiers
+(14576, 4409, 1), -- MP Modifiers
+(14576, 4410, 13), -- P. Atk. Modifiers
+(14576, 4411, 13), -- M. Atk. Modifiers
+(14576, 4412, 12), -- P. Def. Modifiers
+(14576, 4413, 12), -- M. Def. Modifiers
+(14576, 4414, 2), -- Armor Type
+(14576, 4415, 3), -- Weapon Type
+(14576, 4416, 9), -- Races
+(14576, 5038, 10), -- Summon PVP Penalty
 -- Soulless
 (14577, 4121, 9), -- Summoned Monster Magic Protection
-(14577, 4408, 3), -- HP Medium-High
-(14577, 4409, 1), -- MP Increase (1x)
-(14577, 4410, 13), -- Slightly Strong P. Atk.
-(14577, 4411, 13), -- Slightly Strong M. Atk.
-(14577, 4412, 12), -- Slightly Strong P. Def.
-(14577, 4413, 12), -- Slightly Strong M. Def.
-(14577, 4414, 2), -- Standard Type
-(14577, 4415, 3), -- One-handed Sword
-(14577, 4416, 9), -- Demons
-(14577, 5038, 10), -- Servitor PvP Penalty
+(14577, 4408, 3), -- HP Modifiers
+(14577, 4409, 1), -- MP Modifiers
+(14577, 4410, 13), -- P. Atk. Modifiers
+(14577, 4411, 13), -- M. Atk. Modifiers
+(14577, 4412, 12), -- P. Def. Modifiers
+(14577, 4413, 12), -- M. Def. Modifiers
+(14577, 4414, 2), -- Armor Type
+(14577, 4415, 3), -- Weapon Type
+(14577, 4416, 9), -- Races
+(14577, 5038, 10), -- Summon PVP Penalty
 -- Soulless
 (14578, 4121, 9), -- Summoned Monster Magic Protection
-(14578, 4408, 3), -- HP Medium-High
-(14578, 4409, 1), -- MP Increase (1x)
-(14578, 4410, 13), -- Slightly Strong P. Atk.
-(14578, 4411, 13), -- Slightly Strong M. Atk.
-(14578, 4412, 12), -- Slightly Strong P. Def.
-(14578, 4413, 12), -- Slightly Strong M. Def.
-(14578, 4414, 2), -- Standard Type
-(14578, 4415, 3), -- One-handed Sword
-(14578, 4416, 9), -- Demons
-(14578, 5038, 10), -- Servitor PvP Penalty
+(14578, 4408, 3), -- HP Modifiers
+(14578, 4409, 1), -- MP Modifiers
+(14578, 4410, 13), -- P. Atk. Modifiers
+(14578, 4411, 13), -- M. Atk. Modifiers
+(14578, 4412, 12), -- P. Def. Modifiers
+(14578, 4413, 12), -- M. Def. Modifiers
+(14578, 4414, 2), -- Armor Type
+(14578, 4415, 3), -- Weapon Type
+(14578, 4416, 9), -- Races
+(14578, 5038, 10), -- Summon PVP Penalty
 -- Soulless
 (14579, 4121, 9), -- Summoned Monster Magic Protection
-(14579, 4408, 3), -- HP Medium-High
-(14579, 4409, 1), -- MP Increase (1x)
-(14579, 4410, 13), -- Slightly Strong P. Atk.
-(14579, 4411, 13), -- Slightly Strong M. Atk.
-(14579, 4412, 12), -- Slightly Strong P. Def.
-(14579, 4413, 12), -- Slightly Strong M. Def.
-(14579, 4414, 2), -- Standard Type
-(14579, 4415, 3), -- One-handed Sword
-(14579, 4416, 9), -- Demons
-(14579, 5038, 10), -- Servitor PvP Penalty
+(14579, 4408, 3), -- HP Modifiers
+(14579, 4409, 1), -- MP Modifiers
+(14579, 4410, 13), -- P. Atk. Modifiers
+(14579, 4411, 13), -- M. Atk. Modifiers
+(14579, 4412, 12), -- P. Def. Modifiers
+(14579, 4413, 12), -- M. Def. Modifiers
+(14579, 4414, 2), -- Armor Type
+(14579, 4415, 3), -- Weapon Type
+(14579, 4416, 9), -- Races
+(14579, 5038, 10), -- Summon PVP Penalty
 -- Soulless
 (14580, 4121, 9), -- Summoned Monster Magic Protection
-(14580, 4408, 3), -- HP Medium-High
-(14580, 4409, 1), -- MP Increase (1x)
-(14580, 4410, 13), -- Slightly Strong P. Atk.
-(14580, 4411, 13), -- Slightly Strong M. Atk.
-(14580, 4412, 12), -- Slightly Strong P. Def.
-(14580, 4413, 12), -- Slightly Strong M. Def.
-(14580, 4414, 2), -- Standard Type
-(14580, 4415, 3), -- One-handed Sword
-(14580, 4416, 9), -- Demons
-(14580, 5038, 10), -- Servitor PvP Penalty
+(14580, 4408, 3), -- HP Modifiers
+(14580, 4409, 1), -- MP Modifiers
+(14580, 4410, 13), -- P. Atk. Modifiers
+(14580, 4411, 13), -- M. Atk. Modifiers
+(14580, 4412, 12), -- P. Def. Modifiers
+(14580, 4413, 12), -- M. Def. Modifiers
+(14580, 4414, 2), -- Armor Type
+(14580, 4415, 3), -- Weapon Type
+(14580, 4416, 9), -- Races
+(14580, 5038, 10), -- Summon PVP Penalty
 -- Soulless
 (14581, 4121, 9), -- Summoned Monster Magic Protection
-(14581, 4408, 3), -- HP Medium-High
-(14581, 4409, 1), -- MP Increase (1x)
-(14581, 4410, 13), -- Slightly Strong P. Atk.
-(14581, 4411, 13), -- Slightly Strong M. Atk.
-(14581, 4412, 12), -- Slightly Strong P. Def.
-(14581, 4413, 12), -- Slightly Strong M. Def.
-(14581, 4414, 2), -- Standard Type
-(14581, 4415, 3), -- One-handed Sword
-(14581, 4416, 9), -- Demons
-(14581, 5038, 10), -- Servitor PvP Penalty
+(14581, 4408, 3), -- HP Modifiers
+(14581, 4409, 1), -- MP Modifiers
+(14581, 4410, 13), -- P. Atk. Modifiers
+(14581, 4411, 13), -- M. Atk. Modifiers
+(14581, 4412, 12), -- P. Def. Modifiers
+(14581, 4413, 12), -- M. Def. Modifiers
+(14581, 4414, 2), -- Armor Type
+(14581, 4415, 3), -- Weapon Type
+(14581, 4416, 9), -- Races
+(14581, 5038, 10), -- Summon PVP Penalty
 -- Soulless
 (14582, 4121, 9), -- Summoned Monster Magic Protection
-(14582, 4408, 3), -- HP Medium-High
-(14582, 4409, 1), -- MP Increase (1x)
-(14582, 4410, 13), -- Slightly Strong P. Atk.
-(14582, 4411, 13), -- Slightly Strong M. Atk.
-(14582, 4412, 12), -- Slightly Strong P. Def.
-(14582, 4413, 12), -- Slightly Strong M. Def.
-(14582, 4414, 2), -- Standard Type
-(14582, 4415, 3), -- One-handed Sword
-(14582, 4416, 9), -- Demons
-(14582, 5038, 10), -- Servitor PvP Penalty
+(14582, 4408, 3), -- HP Modifiers
+(14582, 4409, 1), -- MP Modifiers
+(14582, 4410, 13), -- P. Atk. Modifiers
+(14582, 4411, 13), -- M. Atk. Modifiers
+(14582, 4412, 12), -- P. Def. Modifiers
+(14582, 4413, 12), -- M. Def. Modifiers
+(14582, 4414, 2), -- Armor Type
+(14582, 4415, 3), -- Weapon Type
+(14582, 4416, 9), -- Races
+(14582, 5038, 10), -- Summon PVP Penalty
 -- Soulless
 (14583, 4121, 9), -- Summoned Monster Magic Protection
-(14583, 4408, 3), -- HP Medium-High
-(14583, 4409, 1), -- MP Increase (1x)
-(14583, 4410, 13), -- Slightly Strong P. Atk.
-(14583, 4411, 13), -- Slightly Strong M. Atk.
-(14583, 4412, 12), -- Slightly Strong P. Def.
-(14583, 4413, 12), -- Slightly Strong M. Def.
-(14583, 4414, 2), -- Standard Type
-(14583, 4415, 3), -- One-handed Sword
-(14583, 4416, 9), -- Demons
-(14583, 5038, 10), -- Servitor PvP Penalty
+(14583, 4408, 3), -- HP Modifiers
+(14583, 4409, 1), -- MP Modifiers
+(14583, 4410, 13), -- P. Atk. Modifiers
+(14583, 4411, 13), -- M. Atk. Modifiers
+(14583, 4412, 12), -- P. Def. Modifiers
+(14583, 4413, 12), -- M. Def. Modifiers
+(14583, 4414, 2), -- Armor Type
+(14583, 4415, 3), -- Weapon Type
+(14583, 4416, 9), -- Races
+(14583, 5038, 10), -- Summon PVP Penalty
 -- Soulless
 (14584, 4121, 9), -- Summoned Monster Magic Protection
-(14584, 4408, 3), -- HP Medium-High
-(14584, 4409, 1), -- MP Increase (1x)
-(14584, 4410, 13), -- Slightly Strong P. Atk.
-(14584, 4411, 13), -- Slightly Strong M. Atk.
-(14584, 4412, 12), -- Slightly Strong P. Def.
-(14584, 4413, 12), -- Slightly Strong M. Def.
-(14584, 4414, 2), -- Standard Type
-(14584, 4415, 3), -- One-handed Sword
-(14584, 4416, 9), -- Demons
-(14584, 5038, 10), -- Servitor PvP Penalty
+(14584, 4408, 3), -- HP Modifiers
+(14584, 4409, 1), -- MP Modifiers
+(14584, 4410, 13), -- P. Atk. Modifiers
+(14584, 4411, 13), -- M. Atk. Modifiers
+(14584, 4412, 12), -- P. Def. Modifiers
+(14584, 4413, 12), -- M. Def. Modifiers
+(14584, 4414, 2), -- Armor Type
+(14584, 4415, 3), -- Weapon Type
+(14584, 4416, 9), -- Races
+(14584, 5038, 10), -- Summon PVP Penalty
 -- Soulless
 (14585, 4121, 9), -- Summoned Monster Magic Protection
-(14585, 4408, 3), -- HP Medium-High
-(14585, 4409, 1), -- MP Increase (1x)
-(14585, 4410, 13), -- Slightly Strong P. Atk.
-(14585, 4411, 13), -- Slightly Strong M. Atk.
-(14585, 4412, 12), -- Slightly Strong P. Def.
-(14585, 4413, 12), -- Slightly Strong M. Def.
-(14585, 4414, 2), -- Standard Type
-(14585, 4415, 3), -- One-handed Sword
-(14585, 4416, 9), -- Demons
-(14585, 5038, 10), -- Servitor PvP Penalty
+(14585, 4408, 3), -- HP Modifiers
+(14585, 4409, 1), -- MP Modifiers
+(14585, 4410, 13), -- P. Atk. Modifiers
+(14585, 4411, 13), -- M. Atk. Modifiers
+(14585, 4412, 12), -- P. Def. Modifiers
+(14585, 4413, 12), -- M. Def. Modifiers
+(14585, 4414, 2), -- Armor Type
+(14585, 4415, 3), -- Weapon Type
+(14585, 4416, 9), -- Races
+(14585, 5038, 10), -- Summon PVP Penalty
 -- Soulless
 (14586, 4121, 9), -- Summoned Monster Magic Protection
-(14586, 4408, 3), -- HP Medium-High
-(14586, 4409, 1), -- MP Increase (1x)
-(14586, 4410, 13), -- Slightly Strong P. Atk.
-(14586, 4411, 13), -- Slightly Strong M. Atk.
-(14586, 4412, 12), -- Slightly Strong P. Def.
-(14586, 4413, 12), -- Slightly Strong M. Def.
-(14586, 4414, 2), -- Standard Type
-(14586, 4415, 3), -- One-handed Sword
-(14586, 4416, 9), -- Demons
-(14586, 5038, 10), -- Servitor PvP Penalty
+(14586, 4408, 3), -- HP Modifiers
+(14586, 4409, 1), -- MP Modifiers
+(14586, 4410, 13), -- P. Atk. Modifiers
+(14586, 4411, 13), -- M. Atk. Modifiers
+(14586, 4412, 12), -- P. Def. Modifiers
+(14586, 4413, 12), -- M. Def. Modifiers
+(14586, 4414, 2), -- Armor Type
+(14586, 4415, 3), -- Weapon Type
+(14586, 4416, 9), -- Races
+(14586, 5038, 10), -- Summon PVP Penalty
 -- Soulless
 (14587, 4121, 9), -- Summoned Monster Magic Protection
-(14587, 4408, 3), -- HP Medium-High
-(14587, 4409, 1), -- MP Increase (1x)
-(14587, 4410, 13), -- Slightly Strong P. Atk.
-(14587, 4411, 13), -- Slightly Strong M. Atk.
-(14587, 4412, 12), -- Slightly Strong P. Def.
-(14587, 4413, 12), -- Slightly Strong M. Def.
-(14587, 4414, 2), -- Standard Type
-(14587, 4415, 3), -- One-handed Sword
-(14587, 4416, 9), -- Demons
-(14587, 5038, 10), -- Servitor PvP Penalty
+(14587, 4408, 3), -- HP Modifiers
+(14587, 4409, 1), -- MP Modifiers
+(14587, 4410, 13), -- P. Atk. Modifiers
+(14587, 4411, 13), -- M. Atk. Modifiers
+(14587, 4412, 12), -- P. Def. Modifiers
+(14587, 4413, 12), -- M. Def. Modifiers
+(14587, 4414, 2), -- Armor Type
+(14587, 4415, 3), -- Weapon Type
+(14587, 4416, 9), -- Races
+(14587, 5038, 10), -- Summon PVP Penalty
 -- Soulless
 (14588, 4121, 9), -- Summoned Monster Magic Protection
-(14588, 4408, 3), -- HP Medium-High
-(14588, 4409, 1), -- MP Increase (1x)
-(14588, 4410, 13), -- Slightly Strong P. Atk.
-(14588, 4411, 13), -- Slightly Strong M. Atk.
-(14588, 4412, 12), -- Slightly Strong P. Def.
-(14588, 4413, 12), -- Slightly Strong M. Def.
-(14588, 4414, 2), -- Standard Type
-(14588, 4415, 3), -- One-handed Sword
-(14588, 4416, 9), -- Demons
-(14588, 5038, 10), -- Servitor PvP Penalty
+(14588, 4408, 3), -- HP Modifiers
+(14588, 4409, 1), -- MP Modifiers
+(14588, 4410, 13), -- P. Atk. Modifiers
+(14588, 4411, 13), -- M. Atk. Modifiers
+(14588, 4412, 12), -- P. Def. Modifiers
+(14588, 4413, 12), -- M. Def. Modifiers
+(14588, 4414, 2), -- Armor Type
+(14588, 4415, 3), -- Weapon Type
+(14588, 4416, 9), -- Races
+(14588, 5038, 10), -- Summon PVP Penalty
 -- Soulless
 (14589, 4121, 9), -- Summoned Monster Magic Protection
-(14589, 4408, 3), -- HP Medium-High
-(14589, 4409, 1), -- MP Increase (1x)
-(14589, 4410, 13), -- Slightly Strong P. Atk.
-(14589, 4411, 13), -- Slightly Strong M. Atk.
-(14589, 4412, 12), -- Slightly Strong P. Def.
-(14589, 4413, 12), -- Slightly Strong M. Def.
-(14589, 4414, 2), -- Standard Type
-(14589, 4415, 3), -- One-handed Sword
-(14589, 4416, 9), -- Demons
-(14589, 5038, 10), -- Servitor PvP Penalty
+(14589, 4408, 3), -- HP Modifiers
+(14589, 4409, 1), -- MP Modifiers
+(14589, 4410, 13), -- P. Atk. Modifiers
+(14589, 4411, 13), -- M. Atk. Modifiers
+(14589, 4412, 12), -- P. Def. Modifiers
+(14589, 4413, 12), -- M. Def. Modifiers
+(14589, 4414, 2), -- Armor Type
+(14589, 4415, 3), -- Weapon Type
+(14589, 4416, 9), -- Races
+(14589, 5038, 10), -- Summon PVP Penalty
 -- Soulless
 (14590, 4121, 9), -- Summoned Monster Magic Protection
-(14590, 4408, 3), -- HP Medium-High
-(14590, 4409, 1), -- MP Increase (1x)
-(14590, 4410, 13), -- Slightly Strong P. Atk.
-(14590, 4411, 13), -- Slightly Strong M. Atk.
-(14590, 4412, 12), -- Slightly Strong P. Def.
-(14590, 4413, 12), -- Slightly Strong M. Def.
-(14590, 4414, 2), -- Standard Type
-(14590, 4415, 3), -- One-handed Sword
-(14590, 4416, 9), -- Demons
-(14590, 5038, 10), -- Servitor PvP Penalty
+(14590, 4408, 3), -- HP Modifiers
+(14590, 4409, 1), -- MP Modifiers
+(14590, 4410, 13), -- P. Atk. Modifiers
+(14590, 4411, 13), -- M. Atk. Modifiers
+(14590, 4412, 12), -- P. Def. Modifiers
+(14590, 4413, 12), -- M. Def. Modifiers
+(14590, 4414, 2), -- Armor Type
+(14590, 4415, 3), -- Weapon Type
+(14590, 4416, 9), -- Races
+(14590, 5038, 10), -- Summon PVP Penalty
 -- Soulless
 (14591, 4121, 9), -- Summoned Monster Magic Protection
-(14591, 4408, 3), -- HP Medium-High
-(14591, 4409, 1), -- MP Increase (1x)
-(14591, 4410, 13), -- Slightly Strong P. Atk.
-(14591, 4411, 13), -- Slightly Strong M. Atk.
-(14591, 4412, 12), -- Slightly Strong P. Def.
-(14591, 4413, 12), -- Slightly Strong M. Def.
-(14591, 4414, 2), -- Standard Type
-(14591, 4415, 3), -- One-handed Sword
-(14591, 4416, 9), -- Demons
-(14591, 5038, 10), -- Servitor PvP Penalty
+(14591, 4408, 3), -- HP Modifiers
+(14591, 4409, 1), -- MP Modifiers
+(14591, 4410, 13), -- P. Atk. Modifiers
+(14591, 4411, 13), -- M. Atk. Modifiers
+(14591, 4412, 12), -- P. Def. Modifiers
+(14591, 4413, 12), -- M. Def. Modifiers
+(14591, 4414, 2), -- Armor Type
+(14591, 4415, 3), -- Weapon Type
+(14591, 4416, 9), -- Races
+(14591, 5038, 10), -- Summon PVP Penalty
 -- Soulless
 (14592, 4121, 9), -- Summoned Monster Magic Protection
-(14592, 4408, 3), -- HP Medium-High
-(14592, 4409, 1), -- MP Increase (1x)
-(14592, 4410, 13), -- Slightly Strong P. Atk.
-(14592, 4411, 13), -- Slightly Strong M. Atk.
-(14592, 4412, 12), -- Slightly Strong P. Def.
-(14592, 4413, 12), -- Slightly Strong M. Def.
-(14592, 4414, 2), -- Standard Type
-(14592, 4415, 3), -- One-handed Sword
-(14592, 4416, 9), -- Demons
-(14592, 5038, 10), -- Servitor PvP Penalty
+(14592, 4408, 3), -- HP Modifiers
+(14592, 4409, 1), -- MP Modifiers
+(14592, 4410, 13), -- P. Atk. Modifiers
+(14592, 4411, 13), -- M. Atk. Modifiers
+(14592, 4412, 12), -- P. Def. Modifiers
+(14592, 4413, 12), -- M. Def. Modifiers
+(14592, 4414, 2), -- Armor Type
+(14592, 4415, 3), -- Weapon Type
+(14592, 4416, 9), -- Races
+(14592, 5038, 10), -- Summon PVP Penalty
 -- Soulless
 (14593, 4121, 9), -- Summoned Monster Magic Protection
-(14593, 4408, 3), -- HP Medium-High
-(14593, 4409, 1), -- MP Increase (1x)
-(14593, 4410, 13), -- Slightly Strong P. Atk.
-(14593, 4411, 13), -- Slightly Strong M. Atk.
-(14593, 4412, 12), -- Slightly Strong P. Def.
-(14593, 4413, 12), -- Slightly Strong M. Def.
-(14593, 4414, 2), -- Standard Type
-(14593, 4415, 3), -- One-handed Sword
-(14593, 4416, 9), -- Demons
-(14593, 5038, 10), -- Servitor PvP Penalty
+(14593, 4408, 3), -- HP Modifiers
+(14593, 4409, 1), -- MP Modifiers
+(14593, 4410, 13), -- P. Atk. Modifiers
+(14593, 4411, 13), -- M. Atk. Modifiers
+(14593, 4412, 12), -- P. Def. Modifiers
+(14593, 4413, 12), -- M. Def. Modifiers
+(14593, 4414, 2), -- Armor Type
+(14593, 4415, 3), -- Weapon Type
+(14593, 4416, 9), -- Races
+(14593, 5038, 10), -- Summon PVP Penalty
 -- Soulless
 (14594, 4121, 9), -- Summoned Monster Magic Protection
-(14594, 4408, 3), -- HP Medium-High
-(14594, 4409, 1), -- MP Increase (1x)
-(14594, 4410, 13), -- Slightly Strong P. Atk.
-(14594, 4411, 13), -- Slightly Strong M. Atk.
-(14594, 4412, 12), -- Slightly Strong P. Def.
-(14594, 4413, 12), -- Slightly Strong M. Def.
-(14594, 4414, 2), -- Standard Type
-(14594, 4415, 3), -- One-handed Sword
-(14594, 4416, 9), -- Demons
-(14594, 5038, 10), -- Servitor PvP Penalty
+(14594, 4408, 3), -- HP Modifiers
+(14594, 4409, 1), -- MP Modifiers
+(14594, 4410, 13), -- P. Atk. Modifiers
+(14594, 4411, 13), -- M. Atk. Modifiers
+(14594, 4412, 12), -- P. Def. Modifiers
+(14594, 4413, 12), -- M. Def. Modifiers
+(14594, 4414, 2), -- Armor Type
+(14594, 4415, 3), -- Weapon Type
+(14594, 4416, 9), -- Races
+(14594, 5038, 10), -- Summon PVP Penalty
 -- Soulless
 (14595, 4121, 9), -- Summoned Monster Magic Protection
-(14595, 4408, 3), -- HP Medium-High
-(14595, 4409, 1), -- MP Increase (1x)
-(14595, 4410, 13), -- Slightly Strong P. Atk.
-(14595, 4411, 13), -- Slightly Strong M. Atk.
-(14595, 4412, 12), -- Slightly Strong P. Def.
-(14595, 4413, 12), -- Slightly Strong M. Def.
-(14595, 4414, 2), -- Standard Type
-(14595, 4415, 3), -- One-handed Sword
-(14595, 4416, 9), -- Demons
-(14595, 5038, 10), -- Servitor PvP Penalty
+(14595, 4408, 3), -- HP Modifiers
+(14595, 4409, 1), -- MP Modifiers
+(14595, 4410, 13), -- P. Atk. Modifiers
+(14595, 4411, 13), -- M. Atk. Modifiers
+(14595, 4412, 12), -- P. Def. Modifiers
+(14595, 4413, 12), -- M. Def. Modifiers
+(14595, 4414, 2), -- Armor Type
+(14595, 4415, 3), -- Weapon Type
+(14595, 4416, 9), -- Races
+(14595, 5038, 10), -- Summon PVP Penalty
 -- Soulless
 (14596, 4121, 9), -- Summoned Monster Magic Protection
-(14596, 4408, 3), -- HP Medium-High
-(14596, 4409, 1), -- MP Increase (1x)
-(14596, 4410, 13), -- Slightly Strong P. Atk.
-(14596, 4411, 13), -- Slightly Strong M. Atk.
-(14596, 4412, 12), -- Slightly Strong P. Def.
-(14596, 4413, 12), -- Slightly Strong M. Def.
-(14596, 4414, 2), -- Standard Type
-(14596, 4415, 3), -- One-handed Sword
-(14596, 4416, 9), -- Demons
-(14596, 5038, 10), -- Servitor PvP Penalty
+(14596, 4408, 3), -- HP Modifiers
+(14596, 4409, 1), -- MP Modifiers
+(14596, 4410, 13), -- P. Atk. Modifiers
+(14596, 4411, 13), -- M. Atk. Modifiers
+(14596, 4412, 12), -- P. Def. Modifiers
+(14596, 4413, 12), -- M. Def. Modifiers
+(14596, 4414, 2), -- Armor Type
+(14596, 4415, 3), -- Weapon Type
+(14596, 4416, 9), -- Races
+(14596, 5038, 10), -- Summon PVP Penalty
 -- Soulless
 (14597, 4121, 9), -- Summoned Monster Magic Protection
-(14597, 4408, 3), -- HP Medium-High
-(14597, 4409, 1), -- MP Increase (1x)
-(14597, 4410, 13), -- Slightly Strong P. Atk.
-(14597, 4411, 13), -- Slightly Strong M. Atk.
-(14597, 4412, 12), -- Slightly Strong P. Def.
-(14597, 4413, 12), -- Slightly Strong M. Def.
-(14597, 4414, 2), -- Standard Type
-(14597, 4415, 3), -- One-handed Sword
-(14597, 4416, 9), -- Demons
-(14597, 5038, 10), -- Servitor PvP Penalty
+(14597, 4408, 3), -- HP Modifiers
+(14597, 4409, 1), -- MP Modifiers
+(14597, 4410, 13), -- P. Atk. Modifiers
+(14597, 4411, 13), -- M. Atk. Modifiers
+(14597, 4412, 12), -- P. Def. Modifiers
+(14597, 4413, 12), -- M. Def. Modifiers
+(14597, 4414, 2), -- Armor Type
+(14597, 4415, 3), -- Weapon Type
+(14597, 4416, 9), -- Races
+(14597, 5038, 10), -- Summon PVP Penalty
 -- Soulless
 (14598, 4121, 9), -- Summoned Monster Magic Protection
-(14598, 4408, 3), -- HP Medium-High
-(14598, 4409, 1), -- MP Increase (1x)
-(14598, 4410, 13), -- Slightly Strong P. Atk.
-(14598, 4411, 13), -- Slightly Strong M. Atk.
-(14598, 4412, 12), -- Slightly Strong P. Def.
-(14598, 4413, 12), -- Slightly Strong M. Def.
-(14598, 4414, 2), -- Standard Type
-(14598, 4415, 3), -- One-handed Sword
-(14598, 4416, 9), -- Demons
-(14598, 5038, 10), -- Servitor PvP Penalty
+(14598, 4408, 3), -- HP Modifiers
+(14598, 4409, 1), -- MP Modifiers
+(14598, 4410, 13), -- P. Atk. Modifiers
+(14598, 4411, 13), -- M. Atk. Modifiers
+(14598, 4412, 12), -- P. Def. Modifiers
+(14598, 4413, 12), -- M. Def. Modifiers
+(14598, 4414, 2), -- Armor Type
+(14598, 4415, 3), -- Weapon Type
+(14598, 4416, 9), -- Races
+(14598, 5038, 10), -- Summon PVP Penalty
 -- Soulless
 (14599, 4121, 9), -- Summoned Monster Magic Protection
-(14599, 4408, 3), -- HP Medium-High
-(14599, 4409, 1), -- MP Increase (1x)
-(14599, 4410, 13), -- Slightly Strong P. Atk.
-(14599, 4411, 13), -- Slightly Strong M. Atk.
-(14599, 4412, 12), -- Slightly Strong P. Def.
-(14599, 4413, 12), -- Slightly Strong M. Def.
-(14599, 4414, 2), -- Standard Type
-(14599, 4415, 3), -- One-handed Sword
-(14599, 4416, 9), -- Demons
-(14599, 5038, 10), -- Servitor PvP Penalty
+(14599, 4408, 3), -- HP Modifiers
+(14599, 4409, 1), -- MP Modifiers
+(14599, 4410, 13), -- P. Atk. Modifiers
+(14599, 4411, 13), -- M. Atk. Modifiers
+(14599, 4412, 12), -- P. Def. Modifiers
+(14599, 4413, 12), -- M. Def. Modifiers
+(14599, 4414, 2), -- Armor Type
+(14599, 4415, 3), -- Weapon Type
+(14599, 4416, 9), -- Races
+(14599, 5038, 10), -- Summon PVP Penalty
 -- Soulless
 (14600, 4121, 9), -- Summoned Monster Magic Protection
-(14600, 4408, 3), -- HP Medium-High
-(14600, 4409, 1), -- MP Increase (1x)
-(14600, 4410, 13), -- Slightly Strong P. Atk.
-(14600, 4411, 13), -- Slightly Strong M. Atk.
-(14600, 4412, 12), -- Slightly Strong P. Def.
-(14600, 4413, 12), -- Slightly Strong M. Def.
-(14600, 4414, 2), -- Standard Type
-(14600, 4415, 3), -- One-handed Sword
-(14600, 4416, 9), -- Demons
-(14600, 5038, 10), -- Servitor PvP Penalty
+(14600, 4408, 3), -- HP Modifiers
+(14600, 4409, 1), -- MP Modifiers
+(14600, 4410, 13), -- P. Atk. Modifiers
+(14600, 4411, 13), -- M. Atk. Modifiers
+(14600, 4412, 12), -- P. Def. Modifiers
+(14600, 4413, 12), -- M. Def. Modifiers
+(14600, 4414, 2), -- Armor Type
+(14600, 4415, 3), -- Weapon Type
+(14600, 4416, 9), -- Races
+(14600, 5038, 10), -- Summon PVP Penalty
 -- Soulless
 (14601, 4121, 9), -- Summoned Monster Magic Protection
-(14601, 4408, 3), -- HP Medium-High
-(14601, 4409, 1), -- MP Increase (1x)
-(14601, 4410, 13), -- Slightly Strong P. Atk.
-(14601, 4411, 13), -- Slightly Strong M. Atk.
-(14601, 4412, 12), -- Slightly Strong P. Def.
-(14601, 4413, 12), -- Slightly Strong M. Def.
-(14601, 4414, 2), -- Standard Type
-(14601, 4415, 3), -- One-handed Sword
-(14601, 4416, 9), -- Demons
-(14601, 5038, 10), -- Servitor PvP Penalty
+(14601, 4408, 3), -- HP Modifiers
+(14601, 4409, 1), -- MP Modifiers
+(14601, 4410, 13), -- P. Atk. Modifiers
+(14601, 4411, 13), -- M. Atk. Modifiers
+(14601, 4412, 12), -- P. Def. Modifiers
+(14601, 4413, 12), -- M. Def. Modifiers
+(14601, 4414, 2), -- Armor Type
+(14601, 4415, 3), -- Weapon Type
+(14601, 4416, 9), -- Races
+(14601, 5038, 10), -- Summon PVP Penalty
 -- Soulless
 (14602, 4121, 9), -- Summoned Monster Magic Protection
-(14602, 4408, 3), -- HP Medium-High
-(14602, 4409, 1), -- MP Increase (1x)
-(14602, 4410, 13), -- Slightly Strong P. Atk.
-(14602, 4411, 13), -- Slightly Strong M. Atk.
-(14602, 4412, 12), -- Slightly Strong P. Def.
-(14602, 4413, 12), -- Slightly Strong M. Def.
-(14602, 4414, 2), -- Standard Type
-(14602, 4415, 3), -- One-handed Sword
-(14602, 4416, 9), -- Demons
-(14602, 5038, 10), -- Servitor PvP Penalty
+(14602, 4408, 3), -- HP Modifiers
+(14602, 4409, 1), -- MP Modifiers
+(14602, 4410, 13), -- P. Atk. Modifiers
+(14602, 4411, 13), -- M. Atk. Modifiers
+(14602, 4412, 12), -- P. Def. Modifiers
+(14602, 4413, 12), -- M. Def. Modifiers
+(14602, 4414, 2), -- Armor Type
+(14602, 4415, 3), -- Weapon Type
+(14602, 4416, 9), -- Races
+(14602, 5038, 10), -- Summon PVP Penalty
 -- Soulless
 (14603, 4121, 9), -- Summoned Monster Magic Protection
-(14603, 4408, 3), -- HP Medium-High
-(14603, 4409, 1), -- MP Increase (1x)
-(14603, 4410, 13), -- Slightly Strong P. Atk.
-(14603, 4411, 13), -- Slightly Strong M. Atk.
-(14603, 4412, 12), -- Slightly Strong P. Def.
-(14603, 4413, 12), -- Slightly Strong M. Def.
-(14603, 4414, 2), -- Standard Type
-(14603, 4415, 3), -- One-handed Sword
-(14603, 4416, 9), -- Demons
-(14603, 5038, 10), -- Servitor PvP Penalty
+(14603, 4408, 3), -- HP Modifiers
+(14603, 4409, 1), -- MP Modifiers
+(14603, 4410, 13), -- P. Atk. Modifiers
+(14603, 4411, 13), -- M. Atk. Modifiers
+(14603, 4412, 12), -- P. Def. Modifiers
+(14603, 4413, 12), -- M. Def. Modifiers
+(14603, 4414, 2), -- Armor Type
+(14603, 4415, 3), -- Weapon Type
+(14603, 4416, 9), -- Races
+(14603, 5038, 10), -- Summon PVP Penalty
 -- Soulless
 (14604, 4121, 9), -- Summoned Monster Magic Protection
-(14604, 4408, 3), -- HP Medium-High
-(14604, 4409, 1), -- MP Increase (1x)
-(14604, 4410, 13), -- Slightly Strong P. Atk.
-(14604, 4411, 13), -- Slightly Strong M. Atk.
-(14604, 4412, 12), -- Slightly Strong P. Def.
-(14604, 4413, 12), -- Slightly Strong M. Def.
-(14604, 4414, 2), -- Standard Type
-(14604, 4415, 3), -- One-handed Sword
-(14604, 4416, 9), -- Demons
-(14604, 5038, 10), -- Servitor PvP Penalty
+(14604, 4408, 3), -- HP Modifiers
+(14604, 4409, 1), -- MP Modifiers
+(14604, 4410, 13), -- P. Atk. Modifiers
+(14604, 4411, 13), -- M. Atk. Modifiers
+(14604, 4412, 12), -- P. Def. Modifiers
+(14604, 4413, 12), -- M. Def. Modifiers
+(14604, 4414, 2), -- Armor Type
+(14604, 4415, 3), -- Weapon Type
+(14604, 4416, 9), -- Races
+(14604, 5038, 10), -- Summon PVP Penalty
 -- Soulless
 (14605, 4121, 9), -- Summoned Monster Magic Protection
-(14605, 4408, 3), -- HP Medium-High
-(14605, 4409, 1), -- MP Increase (1x)
-(14605, 4410, 13), -- Slightly Strong P. Atk.
-(14605, 4411, 13), -- Slightly Strong M. Atk.
-(14605, 4412, 12), -- Slightly Strong P. Def.
-(14605, 4413, 12), -- Slightly Strong M. Def.
-(14605, 4414, 2), -- Standard Type
-(14605, 4415, 3), -- One-handed Sword
-(14605, 4416, 9), -- Demons
-(14605, 5038, 10), -- Servitor PvP Penalty
+(14605, 4408, 3), -- HP Modifiers
+(14605, 4409, 1), -- MP Modifiers
+(14605, 4410, 13), -- P. Atk. Modifiers
+(14605, 4411, 13), -- M. Atk. Modifiers
+(14605, 4412, 12), -- P. Def. Modifiers
+(14605, 4413, 12), -- M. Def. Modifiers
+(14605, 4414, 2), -- Armor Type
+(14605, 4415, 3), -- Weapon Type
+(14605, 4416, 9), -- Races
+(14605, 5038, 10), -- Summon PVP Penalty
 -- Soulless
 (14606, 4121, 9), -- Summoned Monster Magic Protection
-(14606, 4408, 3), -- HP Medium-High
-(14606, 4409, 1), -- MP Increase (1x)
-(14606, 4410, 13), -- Slightly Strong P. Atk.
-(14606, 4411, 13), -- Slightly Strong M. Atk.
-(14606, 4412, 12), -- Slightly Strong P. Def.
-(14606, 4413, 12), -- Slightly Strong M. Def.
-(14606, 4414, 2), -- Standard Type
-(14606, 4415, 3), -- One-handed Sword
-(14606, 4416, 9), -- Demons
-(14606, 5038, 10), -- Servitor PvP Penalty
+(14606, 4408, 3), -- HP Modifiers
+(14606, 4409, 1), -- MP Modifiers
+(14606, 4410, 13), -- P. Atk. Modifiers
+(14606, 4411, 13), -- M. Atk. Modifiers
+(14606, 4412, 12), -- P. Def. Modifiers
+(14606, 4413, 12), -- M. Def. Modifiers
+(14606, 4414, 2), -- Armor Type
+(14606, 4415, 3), -- Weapon Type
+(14606, 4416, 9), -- Races
+(14606, 5038, 10), -- Summon PVP Penalty
 -- Soulless
 (14607, 4121, 9), -- Summoned Monster Magic Protection
-(14607, 4408, 3), -- HP Medium-High
-(14607, 4409, 1), -- MP Increase (1x)
-(14607, 4410, 13), -- Slightly Strong P. Atk.
-(14607, 4411, 13), -- Slightly Strong M. Atk.
-(14607, 4412, 12), -- Slightly Strong P. Def.
-(14607, 4413, 12), -- Slightly Strong M. Def.
-(14607, 4414, 2), -- Standard Type
-(14607, 4415, 3), -- One-handed Sword
-(14607, 4416, 9), -- Demons
-(14607, 5038, 10), -- Servitor PvP Penalty
+(14607, 4408, 3), -- HP Modifiers
+(14607, 4409, 1), -- MP Modifiers
+(14607, 4410, 13), -- P. Atk. Modifiers
+(14607, 4411, 13), -- M. Atk. Modifiers
+(14607, 4412, 12), -- P. Def. Modifiers
+(14607, 4413, 12), -- M. Def. Modifiers
+(14607, 4414, 2), -- Armor Type
+(14607, 4415, 3), -- Weapon Type
+(14607, 4416, 9), -- Races
+(14607, 5038, 10), -- Summon PVP Penalty
 -- Soulless
 (14608, 4121, 9), -- Summoned Monster Magic Protection
-(14608, 4408, 3), -- HP Medium-High
-(14608, 4409, 1), -- MP Increase (1x)
-(14608, 4410, 13), -- Slightly Strong P. Atk.
-(14608, 4411, 13), -- Slightly Strong M. Atk.
-(14608, 4412, 12), -- Slightly Strong P. Def.
-(14608, 4413, 12), -- Slightly Strong M. Def.
-(14608, 4414, 2), -- Standard Type
-(14608, 4415, 3), -- One-handed Sword
-(14608, 4416, 9), -- Demons
-(14608, 5038, 10), -- Servitor PvP Penalty
+(14608, 4408, 3), -- HP Modifiers
+(14608, 4409, 1), -- MP Modifiers
+(14608, 4410, 13), -- P. Atk. Modifiers
+(14608, 4411, 13), -- M. Atk. Modifiers
+(14608, 4412, 12), -- P. Def. Modifiers
+(14608, 4413, 12), -- M. Def. Modifiers
+(14608, 4414, 2), -- Armor Type
+(14608, 4415, 3), -- Weapon Type
+(14608, 4416, 9), -- Races
+(14608, 5038, 10), -- Summon PVP Penalty
 -- Soulless
 (14609, 4121, 9), -- Summoned Monster Magic Protection
-(14609, 4408, 3), -- HP Medium-High
-(14609, 4409, 1), -- MP Increase (1x)
-(14609, 4410, 13), -- Slightly Strong P. Atk.
-(14609, 4411, 13), -- Slightly Strong M. Atk.
-(14609, 4412, 12), -- Slightly Strong P. Def.
-(14609, 4413, 12), -- Slightly Strong M. Def.
-(14609, 4414, 2), -- Standard Type
-(14609, 4415, 3), -- One-handed Sword
-(14609, 4416, 9), -- Demons
-(14609, 5038, 10), -- Servitor PvP Penalty
+(14609, 4408, 3), -- HP Modifiers
+(14609, 4409, 1), -- MP Modifiers
+(14609, 4410, 13), -- P. Atk. Modifiers
+(14609, 4411, 13), -- M. Atk. Modifiers
+(14609, 4412, 12), -- P. Def. Modifiers
+(14609, 4413, 12), -- M. Def. Modifiers
+(14609, 4414, 2), -- Armor Type
+(14609, 4415, 3), -- Weapon Type
+(14609, 4416, 9), -- Races
+(14609, 5038, 10), -- Summon PVP Penalty
 -- Soulless
 (14610, 4121, 9), -- Summoned Monster Magic Protection
-(14610, 4408, 3), -- HP Medium-High
-(14610, 4409, 1), -- MP Increase (1x)
-(14610, 4410, 13), -- Slightly Strong P. Atk.
-(14610, 4411, 13), -- Slightly Strong M. Atk.
-(14610, 4412, 12), -- Slightly Strong P. Def.
-(14610, 4413, 12), -- Slightly Strong M. Def.
-(14610, 4414, 2), -- Standard Type
-(14610, 4415, 3), -- One-handed Sword
-(14610, 4416, 9), -- Demons
-(14610, 5038, 10), -- Servitor PvP Penalty
+(14610, 4408, 3), -- HP Modifiers
+(14610, 4409, 1), -- MP Modifiers
+(14610, 4410, 13), -- P. Atk. Modifiers
+(14610, 4411, 13), -- M. Atk. Modifiers
+(14610, 4412, 12), -- P. Def. Modifiers
+(14610, 4413, 12), -- M. Def. Modifiers
+(14610, 4414, 2), -- Armor Type
+(14610, 4415, 3), -- Weapon Type
+(14610, 4416, 9), -- Races
+(14610, 5038, 10), -- Summon PVP Penalty
 -- Soulless
 (14611, 4121, 9), -- Summoned Monster Magic Protection
-(14611, 4408, 3), -- HP Medium-High
-(14611, 4409, 1), -- MP Increase (1x)
-(14611, 4410, 13), -- Slightly Strong P. Atk.
-(14611, 4411, 13), -- Slightly Strong M. Atk.
-(14611, 4412, 12), -- Slightly Strong P. Def.
-(14611, 4413, 12), -- Slightly Strong M. Def.
-(14611, 4414, 2), -- Standard Type
-(14611, 4415, 3), -- One-handed Sword
-(14611, 4416, 9), -- Demons
-(14611, 5038, 10), -- Servitor PvP Penalty
+(14611, 4408, 3), -- HP Modifiers
+(14611, 4409, 1), -- MP Modifiers
+(14611, 4410, 13), -- P. Atk. Modifiers
+(14611, 4411, 13), -- M. Atk. Modifiers
+(14611, 4412, 12), -- P. Def. Modifiers
+(14611, 4413, 12), -- M. Def. Modifiers
+(14611, 4414, 2), -- Armor Type
+(14611, 4415, 3), -- Weapon Type
+(14611, 4416, 9), -- Races
+(14611, 5038, 10), -- Summon PVP Penalty
 -- Soulless
 (14612, 4121, 9), -- Summoned Monster Magic Protection
-(14612, 4408, 3), -- HP Medium-High
-(14612, 4409, 1), -- MP Increase (1x)
-(14612, 4410, 13), -- Slightly Strong P. Atk.
-(14612, 4411, 13), -- Slightly Strong M. Atk.
-(14612, 4412, 12), -- Slightly Strong P. Def.
-(14612, 4413, 12), -- Slightly Strong M. Def.
-(14612, 4414, 2), -- Standard Type
-(14612, 4415, 3), -- One-handed Sword
-(14612, 4416, 9), -- Demons
-(14612, 5038, 10), -- Servitor PvP Penalty
+(14612, 4408, 3), -- HP Modifiers
+(14612, 4409, 1), -- MP Modifiers
+(14612, 4410, 13), -- P. Atk. Modifiers
+(14612, 4411, 13), -- M. Atk. Modifiers
+(14612, 4412, 12), -- P. Def. Modifiers
+(14612, 4413, 12), -- M. Def. Modifiers
+(14612, 4414, 2), -- Armor Type
+(14612, 4415, 3), -- Weapon Type
+(14612, 4416, 9), -- Races
+(14612, 5038, 10), -- Summon PVP Penalty
 -- Soulless
 (14613, 4121, 9), -- Summoned Monster Magic Protection
-(14613, 4408, 3), -- HP Medium-High
-(14613, 4409, 1), -- MP Increase (1x)
-(14613, 4410, 13), -- Slightly Strong P. Atk.
-(14613, 4411, 13), -- Slightly Strong M. Atk.
-(14613, 4412, 12), -- Slightly Strong P. Def.
-(14613, 4413, 12), -- Slightly Strong M. Def.
-(14613, 4414, 2), -- Standard Type
-(14613, 4415, 3), -- One-handed Sword
-(14613, 4416, 9), -- Demons
-(14613, 5038, 10), -- Servitor PvP Penalty
+(14613, 4408, 3), -- HP Modifiers
+(14613, 4409, 1), -- MP Modifiers
+(14613, 4410, 13), -- P. Atk. Modifiers
+(14613, 4411, 13), -- M. Atk. Modifiers
+(14613, 4412, 12), -- P. Def. Modifiers
+(14613, 4413, 12), -- M. Def. Modifiers
+(14613, 4414, 2), -- Armor Type
+(14613, 4415, 3), -- Weapon Type
+(14613, 4416, 9), -- Races
+(14613, 5038, 10), -- Summon PVP Penalty
 -- Soulless
 (14614, 4121, 9), -- Summoned Monster Magic Protection
-(14614, 4408, 3), -- HP Medium-High
-(14614, 4409, 1), -- MP Increase (1x)
-(14614, 4410, 13), -- Slightly Strong P. Atk.
-(14614, 4411, 13), -- Slightly Strong M. Atk.
-(14614, 4412, 12), -- Slightly Strong P. Def.
-(14614, 4413, 12), -- Slightly Strong M. Def.
-(14614, 4414, 2), -- Standard Type
-(14614, 4415, 3), -- One-handed Sword
-(14614, 4416, 9), -- Demons
-(14614, 5038, 10), -- Servitor PvP Penalty
+(14614, 4408, 3), -- HP Modifiers
+(14614, 4409, 1), -- MP Modifiers
+(14614, 4410, 13), -- P. Atk. Modifiers
+(14614, 4411, 13), -- M. Atk. Modifiers
+(14614, 4412, 12), -- P. Def. Modifiers
+(14614, 4413, 12), -- M. Def. Modifiers
+(14614, 4414, 2), -- Armor Type
+(14614, 4415, 3), -- Weapon Type
+(14614, 4416, 9), -- Races
+(14614, 5038, 10), -- Summon PVP Penalty
 -- Soulless
 (14615, 4121, 9), -- Summoned Monster Magic Protection
-(14615, 4408, 3), -- HP Medium-High
-(14615, 4409, 1), -- MP Increase (1x)
-(14615, 4410, 13), -- Slightly Strong P. Atk.
-(14615, 4411, 13), -- Slightly Strong M. Atk.
-(14615, 4412, 12), -- Slightly Strong P. Def.
-(14615, 4413, 12), -- Slightly Strong M. Def.
-(14615, 4414, 2), -- Standard Type
-(14615, 4415, 3), -- One-handed Sword
-(14615, 4416, 9), -- Demons
-(14615, 5038, 10), -- Servitor PvP Penalty
+(14615, 4408, 3), -- HP Modifiers
+(14615, 4409, 1), -- MP Modifiers
+(14615, 4410, 13), -- P. Atk. Modifiers
+(14615, 4411, 13), -- M. Atk. Modifiers
+(14615, 4412, 12), -- P. Def. Modifiers
+(14615, 4413, 12), -- M. Def. Modifiers
+(14615, 4414, 2), -- Armor Type
+(14615, 4415, 3), -- Weapon Type
+(14615, 4416, 9), -- Races
+(14615, 5038, 10), -- Summon PVP Penalty
 -- Soulless
 (14616, 4121, 9), -- Summoned Monster Magic Protection
-(14616, 4408, 3), -- HP Medium-High
-(14616, 4409, 1), -- MP Increase (1x)
-(14616, 4410, 13), -- Slightly Strong P. Atk.
-(14616, 4411, 13), -- Slightly Strong M. Atk.
-(14616, 4412, 12), -- Slightly Strong P. Def.
-(14616, 4413, 12), -- Slightly Strong M. Def.
-(14616, 4414, 2), -- Standard Type
-(14616, 4415, 3), -- One-handed Sword
-(14616, 4416, 9), -- Demons
-(14616, 5038, 10), -- Servitor PvP Penalty
+(14616, 4408, 3), -- HP Modifiers
+(14616, 4409, 1), -- MP Modifiers
+(14616, 4410, 13), -- P. Atk. Modifiers
+(14616, 4411, 13), -- M. Atk. Modifiers
+(14616, 4412, 12), -- P. Def. Modifiers
+(14616, 4413, 12), -- M. Def. Modifiers
+(14616, 4414, 2), -- Armor Type
+(14616, 4415, 3), -- Weapon Type
+(14616, 4416, 9), -- Races
+(14616, 5038, 10), -- Summon PVP Penalty
 -- Soulless
 (14617, 4121, 9), -- Summoned Monster Magic Protection
-(14617, 4408, 3), -- HP Medium-High
-(14617, 4409, 1), -- MP Increase (1x)
-(14617, 4410, 13), -- Slightly Strong P. Atk.
-(14617, 4411, 13), -- Slightly Strong M. Atk.
-(14617, 4412, 12), -- Slightly Strong P. Def.
-(14617, 4413, 12), -- Slightly Strong M. Def.
-(14617, 4414, 2), -- Standard Type
-(14617, 4415, 3), -- One-handed Sword
-(14617, 4416, 9), -- Demons
-(14617, 5038, 10), -- Servitor PvP Penalty
+(14617, 4408, 3), -- HP Modifiers
+(14617, 4409, 1), -- MP Modifiers
+(14617, 4410, 13), -- P. Atk. Modifiers
+(14617, 4411, 13), -- M. Atk. Modifiers
+(14617, 4412, 12), -- P. Def. Modifiers
+(14617, 4413, 12), -- M. Def. Modifiers
+(14617, 4414, 2), -- Armor Type
+(14617, 4415, 3), -- Weapon Type
+(14617, 4416, 9), -- Races
+(14617, 5038, 10), -- Summon PVP Penalty
 -- Soulless
 (14618, 4121, 9), -- Summoned Monster Magic Protection
-(14618, 4408, 3), -- HP Medium-High
-(14618, 4409, 1), -- MP Increase (1x)
-(14618, 4410, 13), -- Slightly Strong P. Atk.
-(14618, 4411, 13), -- Slightly Strong M. Atk.
-(14618, 4412, 12), -- Slightly Strong P. Def.
-(14618, 4413, 12), -- Slightly Strong M. Def.
-(14618, 4414, 2), -- Standard Type
-(14618, 4415, 3), -- One-handed Sword
-(14618, 4416, 9), -- Demons
-(14618, 5038, 10), -- Servitor PvP Penalty
+(14618, 4408, 3), -- HP Modifiers
+(14618, 4409, 1), -- MP Modifiers
+(14618, 4410, 13), -- P. Atk. Modifiers
+(14618, 4411, 13), -- M. Atk. Modifiers
+(14618, 4412, 12), -- P. Def. Modifiers
+(14618, 4413, 12), -- M. Def. Modifiers
+(14618, 4414, 2), -- Armor Type
+(14618, 4415, 3), -- Weapon Type
+(14618, 4416, 9), -- Races
+(14618, 5038, 10), -- Summon PVP Penalty
 -- Nightshade
 (14619, 4121, 9), -- Summoned Monster Magic Protection
-(14619, 4408, 10), -- HP Increase (2x)
-(14619, 4409, 1), -- MP Increase (1x)
-(14619, 4410, 11), -- Average P. Atk.
-(14619, 4411, 11), -- Average M. Atk.
-(14619, 4412, 16), -- Very Strong P. Def.
-(14619, 4413, 16), -- Very Strong M. Def.
-(14619, 4414, 2), -- Standard Type
-(14619, 4415, 3), -- One-handed Sword
-(14619, 4416, 9), -- Demons
+(14619, 4408, 10), -- HP Modifiers
+(14619, 4409, 1), -- MP Modifiers
+(14619, 4410, 11), -- P. Atk. Modifiers
+(14619, 4411, 11), -- M. Atk. Modifiers
+(14619, 4412, 16), -- P. Def. Modifiers
+(14619, 4413, 16), -- M. Def. Modifiers
+(14619, 4414, 2), -- Armor Type
+(14619, 4415, 3), -- Weapon Type
+(14619, 4416, 9), -- Races
 -- Nightshade
 (14620, 4121, 9), -- Summoned Monster Magic Protection
-(14620, 4408, 10), -- HP Increase (2x)
-(14620, 4409, 1), -- MP Increase (1x)
-(14620, 4410, 11), -- Average P. Atk.
-(14620, 4411, 11), -- Average M. Atk.
-(14620, 4412, 16), -- Very Strong P. Def.
-(14620, 4413, 16), -- Very Strong M. Def.
-(14620, 4414, 2), -- Standard Type
-(14620, 4415, 3), -- One-handed Sword
-(14620, 4416, 9), -- Demons
+(14620, 4408, 10), -- HP Modifiers
+(14620, 4409, 1), -- MP Modifiers
+(14620, 4410, 11), -- P. Atk. Modifiers
+(14620, 4411, 11), -- M. Atk. Modifiers
+(14620, 4412, 16), -- P. Def. Modifiers
+(14620, 4413, 16), -- M. Def. Modifiers
+(14620, 4414, 2), -- Armor Type
+(14620, 4415, 3), -- Weapon Type
+(14620, 4416, 9), -- Races
 -- Nightshade
 (14621, 4121, 9), -- Summoned Monster Magic Protection
-(14621, 4408, 10), -- HP Increase (2x)
-(14621, 4409, 1), -- MP Increase (1x)
-(14621, 4410, 11), -- Average P. Atk.
-(14621, 4411, 11), -- Average M. Atk.
-(14621, 4412, 16), -- Very Strong P. Def.
-(14621, 4413, 16), -- Very Strong M. Def.
-(14621, 4414, 2), -- Standard Type
-(14621, 4415, 3), -- One-handed Sword
-(14621, 4416, 9), -- Demons
+(14621, 4408, 10), -- HP Modifiers
+(14621, 4409, 1), -- MP Modifiers
+(14621, 4410, 11), -- P. Atk. Modifiers
+(14621, 4411, 11), -- M. Atk. Modifiers
+(14621, 4412, 16), -- P. Def. Modifiers
+(14621, 4413, 16), -- M. Def. Modifiers
+(14621, 4414, 2), -- Armor Type
+(14621, 4415, 3), -- Weapon Type
+(14621, 4416, 9), -- Races
 -- Nightshade
 (14622, 4121, 9), -- Summoned Monster Magic Protection
-(14622, 4408, 10), -- HP Increase (2x)
-(14622, 4409, 1), -- MP Increase (1x)
-(14622, 4410, 11), -- Average P. Atk.
-(14622, 4411, 11), -- Average M. Atk.
-(14622, 4412, 16), -- Very Strong P. Def.
-(14622, 4413, 16), -- Very Strong M. Def.
-(14622, 4414, 2), -- Standard Type
-(14622, 4415, 3), -- One-handed Sword
-(14622, 4416, 9), -- Demons
+(14622, 4408, 10), -- HP Modifiers
+(14622, 4409, 1), -- MP Modifiers
+(14622, 4410, 11), -- P. Atk. Modifiers
+(14622, 4411, 11), -- M. Atk. Modifiers
+(14622, 4412, 16), -- P. Def. Modifiers
+(14622, 4413, 16), -- M. Def. Modifiers
+(14622, 4414, 2), -- Armor Type
+(14622, 4415, 3), -- Weapon Type
+(14622, 4416, 9), -- Races
 -- Nightshade
 (14623, 4121, 9), -- Summoned Monster Magic Protection
-(14623, 4408, 10), -- HP Increase (2x)
-(14623, 4409, 1), -- MP Increase (1x)
-(14623, 4410, 11), -- Average P. Atk.
-(14623, 4411, 11), -- Average M. Atk.
-(14623, 4412, 16), -- Very Strong P. Def.
-(14623, 4413, 16), -- Very Strong M. Def.
-(14623, 4414, 2), -- Standard Type
-(14623, 4415, 3), -- One-handed Sword
-(14623, 4416, 9), -- Demons
+(14623, 4408, 10), -- HP Modifiers
+(14623, 4409, 1), -- MP Modifiers
+(14623, 4410, 11), -- P. Atk. Modifiers
+(14623, 4411, 11), -- M. Atk. Modifiers
+(14623, 4412, 16), -- P. Def. Modifiers
+(14623, 4413, 16), -- M. Def. Modifiers
+(14623, 4414, 2), -- Armor Type
+(14623, 4415, 3), -- Weapon Type
+(14623, 4416, 9), -- Races
 -- Nightshade
 (14624, 4121, 9), -- Summoned Monster Magic Protection
-(14624, 4408, 10), -- HP Increase (2x)
-(14624, 4409, 1), -- MP Increase (1x)
-(14624, 4410, 11), -- Average P. Atk.
-(14624, 4411, 11), -- Average M. Atk.
-(14624, 4412, 16), -- Very Strong P. Def.
-(14624, 4413, 16), -- Very Strong M. Def.
-(14624, 4414, 2), -- Standard Type
-(14624, 4415, 3), -- One-handed Sword
-(14624, 4416, 9), -- Demons
+(14624, 4408, 10), -- HP Modifiers
+(14624, 4409, 1), -- MP Modifiers
+(14624, 4410, 11), -- P. Atk. Modifiers
+(14624, 4411, 11), -- M. Atk. Modifiers
+(14624, 4412, 16), -- P. Def. Modifiers
+(14624, 4413, 16), -- M. Def. Modifiers
+(14624, 4414, 2), -- Armor Type
+(14624, 4415, 3), -- Weapon Type
+(14624, 4416, 9), -- Races
 -- Nightshade
 (14625, 4121, 9), -- Summoned Monster Magic Protection
-(14625, 4408, 10), -- HP Increase (2x)
-(14625, 4409, 1), -- MP Increase (1x)
-(14625, 4410, 11), -- Average P. Atk.
-(14625, 4411, 11), -- Average M. Atk.
-(14625, 4412, 16), -- Very Strong P. Def.
-(14625, 4413, 16), -- Very Strong M. Def.
-(14625, 4414, 2), -- Standard Type
-(14625, 4415, 3), -- One-handed Sword
-(14625, 4416, 9), -- Demons
+(14625, 4408, 10), -- HP Modifiers
+(14625, 4409, 1), -- MP Modifiers
+(14625, 4410, 11), -- P. Atk. Modifiers
+(14625, 4411, 11), -- M. Atk. Modifiers
+(14625, 4412, 16), -- P. Def. Modifiers
+(14625, 4413, 16), -- M. Def. Modifiers
+(14625, 4414, 2), -- Armor Type
+(14625, 4415, 3), -- Weapon Type
+(14625, 4416, 9), -- Races
 -- Nightshade
 (14626, 4121, 9), -- Summoned Monster Magic Protection
-(14626, 4408, 10), -- HP Increase (2x)
-(14626, 4409, 1), -- MP Increase (1x)
-(14626, 4410, 11), -- Average P. Atk.
-(14626, 4411, 11), -- Average M. Atk.
-(14626, 4412, 16), -- Very Strong P. Def.
-(14626, 4413, 16), -- Very Strong M. Def.
-(14626, 4414, 2), -- Standard Type
-(14626, 4415, 3), -- One-handed Sword
-(14626, 4416, 9), -- Demons
+(14626, 4408, 10), -- HP Modifiers
+(14626, 4409, 1), -- MP Modifiers
+(14626, 4410, 11), -- P. Atk. Modifiers
+(14626, 4411, 11), -- M. Atk. Modifiers
+(14626, 4412, 16), -- P. Def. Modifiers
+(14626, 4413, 16), -- M. Def. Modifiers
+(14626, 4414, 2), -- Armor Type
+(14626, 4415, 3), -- Weapon Type
+(14626, 4416, 9), -- Races
 -- Nightshade
 (14627, 4121, 9), -- Summoned Monster Magic Protection
-(14627, 4408, 10), -- HP Increase (2x)
-(14627, 4409, 1), -- MP Increase (1x)
-(14627, 4410, 11), -- Average P. Atk.
-(14627, 4411, 11), -- Average M. Atk.
-(14627, 4412, 16), -- Very Strong P. Def.
-(14627, 4413, 16), -- Very Strong M. Def.
-(14627, 4414, 2), -- Standard Type
-(14627, 4415, 3), -- One-handed Sword
-(14627, 4416, 9), -- Demons
+(14627, 4408, 10), -- HP Modifiers
+(14627, 4409, 1), -- MP Modifiers
+(14627, 4410, 11), -- P. Atk. Modifiers
+(14627, 4411, 11), -- M. Atk. Modifiers
+(14627, 4412, 16), -- P. Def. Modifiers
+(14627, 4413, 16), -- M. Def. Modifiers
+(14627, 4414, 2), -- Armor Type
+(14627, 4415, 3), -- Weapon Type
+(14627, 4416, 9), -- Races
 -- Nightshade
 (14628, 4121, 9), -- Summoned Monster Magic Protection
-(14628, 4408, 10), -- HP Increase (2x)
-(14628, 4409, 1), -- MP Increase (1x)
-(14628, 4410, 11), -- Average P. Atk.
-(14628, 4411, 11), -- Average M. Atk.
-(14628, 4412, 16), -- Very Strong P. Def.
-(14628, 4413, 16), -- Very Strong M. Def.
-(14628, 4414, 2), -- Standard Type
-(14628, 4415, 3), -- One-handed Sword
-(14628, 4416, 9), -- Demons
+(14628, 4408, 10), -- HP Modifiers
+(14628, 4409, 1), -- MP Modifiers
+(14628, 4410, 11), -- P. Atk. Modifiers
+(14628, 4411, 11), -- M. Atk. Modifiers
+(14628, 4412, 16), -- P. Def. Modifiers
+(14628, 4413, 16), -- M. Def. Modifiers
+(14628, 4414, 2), -- Armor Type
+(14628, 4415, 3), -- Weapon Type
+(14628, 4416, 9), -- Races
 -- Nightshade
 (14633, 4121, 9), -- Summoned Monster Magic Protection
-(14633, 4408, 10), -- HP Increase (2x)
-(14633, 4409, 1), -- MP Increase (1x)
-(14633, 4410, 11), -- Average P. Atk.
-(14633, 4411, 11), -- Average M. Atk.
-(14633, 4412, 16), -- Very Strong P. Def.
-(14633, 4413, 16), -- Very Strong M. Def.
-(14633, 4414, 2), -- Standard Type
-(14633, 4415, 3), -- One-handed Sword
-(14633, 4416, 9), -- Demons
+(14633, 4408, 10), -- HP Modifiers
+(14633, 4409, 1), -- MP Modifiers
+(14633, 4410, 11), -- P. Atk. Modifiers
+(14633, 4411, 11), -- M. Atk. Modifiers
+(14633, 4412, 16), -- P. Def. Modifiers
+(14633, 4413, 16), -- M. Def. Modifiers
+(14633, 4414, 2), -- Armor Type
+(14633, 4415, 3), -- Weapon Type
+(14633, 4416, 9), -- Races
 -- Nightshade
 (14634, 4121, 9), -- Summoned Monster Magic Protection
-(14634, 4408, 10), -- HP Increase (2x)
-(14634, 4409, 1), -- MP Increase (1x)
-(14634, 4410, 11), -- Average P. Atk.
-(14634, 4411, 11), -- Average M. Atk.
-(14634, 4412, 16), -- Very Strong P. Def.
-(14634, 4413, 16), -- Very Strong M. Def.
-(14634, 4414, 2), -- Standard Type
-(14634, 4415, 3), -- One-handed Sword
-(14634, 4416, 9), -- Demons
+(14634, 4408, 10), -- HP Modifiers
+(14634, 4409, 1), -- MP Modifiers
+(14634, 4410, 11), -- P. Atk. Modifiers
+(14634, 4411, 11), -- M. Atk. Modifiers
+(14634, 4412, 16), -- P. Def. Modifiers
+(14634, 4413, 16), -- M. Def. Modifiers
+(14634, 4414, 2), -- Armor Type
+(14634, 4415, 3), -- Weapon Type
+(14634, 4416, 9), -- Races
 -- Nightshade
 (14635, 4121, 9), -- Summoned Monster Magic Protection
-(14635, 4408, 10), -- HP Increase (2x)
-(14635, 4409, 1), -- MP Increase (1x)
-(14635, 4410, 11), -- Average P. Atk.
-(14635, 4411, 11), -- Average M. Atk.
-(14635, 4412, 16), -- Very Strong P. Def.
-(14635, 4413, 16), -- Very Strong M. Def.
-(14635, 4414, 2), -- Standard Type
-(14635, 4415, 3), -- One-handed Sword
-(14635, 4416, 9), -- Demons
+(14635, 4408, 10), -- HP Modifiers
+(14635, 4409, 1), -- MP Modifiers
+(14635, 4410, 11), -- P. Atk. Modifiers
+(14635, 4411, 11), -- M. Atk. Modifiers
+(14635, 4412, 16), -- P. Def. Modifiers
+(14635, 4413, 16), -- M. Def. Modifiers
+(14635, 4414, 2), -- Armor Type
+(14635, 4415, 3), -- Weapon Type
+(14635, 4416, 9), -- Races
 -- Nightshade
 (14636, 4121, 9), -- Summoned Monster Magic Protection
-(14636, 4408, 10), -- HP Increase (2x)
-(14636, 4409, 1), -- MP Increase (1x)
-(14636, 4410, 11), -- Average P. Atk.
-(14636, 4411, 11), -- Average M. Atk.
-(14636, 4412, 16), -- Very Strong P. Def.
-(14636, 4413, 16), -- Very Strong M. Def.
-(14636, 4414, 2), -- Standard Type
-(14636, 4415, 3), -- One-handed Sword
-(14636, 4416, 9), -- Demons
+(14636, 4408, 10), -- HP Modifiers
+(14636, 4409, 1), -- MP Modifiers
+(14636, 4410, 11), -- P. Atk. Modifiers
+(14636, 4411, 11), -- M. Atk. Modifiers
+(14636, 4412, 16), -- P. Def. Modifiers
+(14636, 4413, 16), -- M. Def. Modifiers
+(14636, 4414, 2), -- Armor Type
+(14636, 4415, 3), -- Weapon Type
+(14636, 4416, 9), -- Races
 -- Nightshade
 (14637, 4121, 9), -- Summoned Monster Magic Protection
-(14637, 4408, 10), -- HP Increase (2x)
-(14637, 4409, 1), -- MP Increase (1x)
-(14637, 4410, 11), -- Average P. Atk.
-(14637, 4411, 11), -- Average M. Atk.
-(14637, 4412, 16), -- Very Strong P. Def.
-(14637, 4413, 16), -- Very Strong M. Def.
-(14637, 4414, 2), -- Standard Type
-(14637, 4415, 3), -- One-handed Sword
-(14637, 4416, 9), -- Demons
+(14637, 4408, 10), -- HP Modifiers
+(14637, 4409, 1), -- MP Modifiers
+(14637, 4410, 11), -- P. Atk. Modifiers
+(14637, 4411, 11), -- M. Atk. Modifiers
+(14637, 4412, 16), -- P. Def. Modifiers
+(14637, 4413, 16), -- M. Def. Modifiers
+(14637, 4414, 2), -- Armor Type
+(14637, 4415, 3), -- Weapon Type
+(14637, 4416, 9), -- Races
 -- Nightshade
 (14638, 4121, 9), -- Summoned Monster Magic Protection
-(14638, 4408, 10), -- HP Increase (2x)
-(14638, 4409, 1), -- MP Increase (1x)
-(14638, 4410, 11), -- Average P. Atk.
-(14638, 4411, 11), -- Average M. Atk.
-(14638, 4412, 16), -- Very Strong P. Def.
-(14638, 4413, 16), -- Very Strong M. Def.
-(14638, 4414, 2), -- Standard Type
-(14638, 4415, 3), -- One-handed Sword
-(14638, 4416, 9), -- Demons
+(14638, 4408, 10), -- HP Modifiers
+(14638, 4409, 1), -- MP Modifiers
+(14638, 4410, 11), -- P. Atk. Modifiers
+(14638, 4411, 11), -- M. Atk. Modifiers
+(14638, 4412, 16), -- P. Def. Modifiers
+(14638, 4413, 16), -- M. Def. Modifiers
+(14638, 4414, 2), -- Armor Type
+(14638, 4415, 3), -- Weapon Type
+(14638, 4416, 9), -- Races
 -- Nightshade
 (14639, 4121, 9), -- Summoned Monster Magic Protection
-(14639, 4408, 10), -- HP Increase (2x)
-(14639, 4409, 1), -- MP Increase (1x)
-(14639, 4410, 11), -- Average P. Atk.
-(14639, 4411, 11), -- Average M. Atk.
-(14639, 4412, 16), -- Very Strong P. Def.
-(14639, 4413, 16), -- Very Strong M. Def.
-(14639, 4414, 2), -- Standard Type
-(14639, 4415, 3), -- One-handed Sword
-(14639, 4416, 9), -- Demons
+(14639, 4408, 10), -- HP Modifiers
+(14639, 4409, 1), -- MP Modifiers
+(14639, 4410, 11), -- P. Atk. Modifiers
+(14639, 4411, 11), -- M. Atk. Modifiers
+(14639, 4412, 16), -- P. Def. Modifiers
+(14639, 4413, 16), -- M. Def. Modifiers
+(14639, 4414, 2), -- Armor Type
+(14639, 4415, 3), -- Weapon Type
+(14639, 4416, 9), -- Races
 -- Nightshade
 (14640, 4121, 9), -- Summoned Monster Magic Protection
-(14640, 4408, 10), -- HP Increase (2x)
-(14640, 4409, 1), -- MP Increase (1x)
-(14640, 4410, 11), -- Average P. Atk.
-(14640, 4411, 11), -- Average M. Atk.
-(14640, 4412, 16), -- Very Strong P. Def.
-(14640, 4413, 16), -- Very Strong M. Def.
-(14640, 4414, 2), -- Standard Type
-(14640, 4415, 3), -- One-handed Sword
-(14640, 4416, 9), -- Demons
+(14640, 4408, 10), -- HP Modifiers
+(14640, 4409, 1), -- MP Modifiers
+(14640, 4410, 11), -- P. Atk. Modifiers
+(14640, 4411, 11), -- M. Atk. Modifiers
+(14640, 4412, 16), -- P. Def. Modifiers
+(14640, 4413, 16), -- M. Def. Modifiers
+(14640, 4414, 2), -- Armor Type
+(14640, 4415, 3), -- Weapon Type
+(14640, 4416, 9), -- Races
 -- Nightshade
 (14641, 4121, 9), -- Summoned Monster Magic Protection
-(14641, 4408, 10), -- HP Increase (2x)
-(14641, 4409, 1), -- MP Increase (1x)
-(14641, 4410, 11), -- Average P. Atk.
-(14641, 4411, 11), -- Average M. Atk.
-(14641, 4412, 16), -- Very Strong P. Def.
-(14641, 4413, 16), -- Very Strong M. Def.
-(14641, 4414, 2), -- Standard Type
-(14641, 4415, 3), -- One-handed Sword
-(14641, 4416, 9), -- Demons
+(14641, 4408, 10), -- HP Modifiers
+(14641, 4409, 1), -- MP Modifiers
+(14641, 4410, 11), -- P. Atk. Modifiers
+(14641, 4411, 11), -- M. Atk. Modifiers
+(14641, 4412, 16), -- P. Def. Modifiers
+(14641, 4413, 16), -- M. Def. Modifiers
+(14641, 4414, 2), -- Armor Type
+(14641, 4415, 3), -- Weapon Type
+(14641, 4416, 9), -- Races
 -- Nightshade
 (14642, 4121, 9), -- Summoned Monster Magic Protection
-(14642, 4408, 10), -- HP Increase (2x)
-(14642, 4409, 1), -- MP Increase (1x)
-(14642, 4410, 11), -- Average P. Atk.
-(14642, 4411, 11), -- Average M. Atk.
-(14642, 4412, 16), -- Very Strong P. Def.
-(14642, 4413, 16), -- Very Strong M. Def.
-(14642, 4414, 2), -- Standard Type
-(14642, 4415, 3), -- One-handed Sword
-(14642, 4416, 9), -- Demons
+(14642, 4408, 10), -- HP Modifiers
+(14642, 4409, 1), -- MP Modifiers
+(14642, 4410, 11), -- P. Atk. Modifiers
+(14642, 4411, 11), -- M. Atk. Modifiers
+(14642, 4412, 16), -- P. Def. Modifiers
+(14642, 4413, 16), -- M. Def. Modifiers
+(14642, 4414, 2), -- Armor Type
+(14642, 4415, 3), -- Weapon Type
+(14642, 4416, 9), -- Races
 -- Nightshade
 (14643, 4121, 9), -- Summoned Monster Magic Protection
-(14643, 4408, 10), -- HP Increase (2x)
-(14643, 4409, 1), -- MP Increase (1x)
-(14643, 4410, 11), -- Average P. Atk.
-(14643, 4411, 11), -- Average M. Atk.
-(14643, 4412, 16), -- Very Strong P. Def.
-(14643, 4413, 16), -- Very Strong M. Def.
-(14643, 4414, 2), -- Standard Type
-(14643, 4415, 3), -- One-handed Sword
-(14643, 4416, 9), -- Demons
+(14643, 4408, 10), -- HP Modifiers
+(14643, 4409, 1), -- MP Modifiers
+(14643, 4410, 11), -- P. Atk. Modifiers
+(14643, 4411, 11), -- M. Atk. Modifiers
+(14643, 4412, 16), -- P. Def. Modifiers
+(14643, 4413, 16), -- M. Def. Modifiers
+(14643, 4414, 2), -- Armor Type
+(14643, 4415, 3), -- Weapon Type
+(14643, 4416, 9), -- Races
 -- Nightshade
 (14644, 4121, 9), -- Summoned Monster Magic Protection
-(14644, 4408, 10), -- HP Increase (2x)
-(14644, 4409, 1), -- MP Increase (1x)
-(14644, 4410, 11), -- Average P. Atk.
-(14644, 4411, 11), -- Average M. Atk.
-(14644, 4412, 16), -- Very Strong P. Def.
-(14644, 4413, 16), -- Very Strong M. Def.
-(14644, 4414, 2), -- Standard Type
-(14644, 4415, 3), -- One-handed Sword
-(14644, 4416, 9), -- Demons
+(14644, 4408, 10), -- HP Modifiers
+(14644, 4409, 1), -- MP Modifiers
+(14644, 4410, 11), -- P. Atk. Modifiers
+(14644, 4411, 11), -- M. Atk. Modifiers
+(14644, 4412, 16), -- P. Def. Modifiers
+(14644, 4413, 16), -- M. Def. Modifiers
+(14644, 4414, 2), -- Armor Type
+(14644, 4415, 3), -- Weapon Type
+(14644, 4416, 9), -- Races
 -- Nightshade
 (14645, 4121, 9), -- Summoned Monster Magic Protection
-(14645, 4408, 10), -- HP Increase (2x)
-(14645, 4409, 1), -- MP Increase (1x)
-(14645, 4410, 11), -- Average P. Atk.
-(14645, 4411, 11), -- Average M. Atk.
-(14645, 4412, 16), -- Very Strong P. Def.
-(14645, 4413, 16), -- Very Strong M. Def.
-(14645, 4414, 2), -- Standard Type
-(14645, 4415, 3), -- One-handed Sword
-(14645, 4416, 9), -- Demons
+(14645, 4408, 10), -- HP Modifiers
+(14645, 4409, 1), -- MP Modifiers
+(14645, 4410, 11), -- P. Atk. Modifiers
+(14645, 4411, 11), -- M. Atk. Modifiers
+(14645, 4412, 16), -- P. Def. Modifiers
+(14645, 4413, 16), -- M. Def. Modifiers
+(14645, 4414, 2), -- Armor Type
+(14645, 4415, 3), -- Weapon Type
+(14645, 4416, 9), -- Races
 -- Nightshade
 (14646, 4121, 9), -- Summoned Monster Magic Protection
-(14646, 4408, 10), -- HP Increase (2x)
-(14646, 4409, 1), -- MP Increase (1x)
-(14646, 4410, 11), -- Average P. Atk.
-(14646, 4411, 11), -- Average M. Atk.
-(14646, 4412, 16), -- Very Strong P. Def.
-(14646, 4413, 16), -- Very Strong M. Def.
-(14646, 4414, 2), -- Standard Type
-(14646, 4415, 3), -- One-handed Sword
-(14646, 4416, 9), -- Demons
+(14646, 4408, 10), -- HP Modifiers
+(14646, 4409, 1), -- MP Modifiers
+(14646, 4410, 11), -- P. Atk. Modifiers
+(14646, 4411, 11), -- M. Atk. Modifiers
+(14646, 4412, 16), -- P. Def. Modifiers
+(14646, 4413, 16), -- M. Def. Modifiers
+(14646, 4414, 2), -- Armor Type
+(14646, 4415, 3), -- Weapon Type
+(14646, 4416, 9), -- Races
 -- Nightshade
 (14647, 4121, 9), -- Summoned Monster Magic Protection
-(14647, 4408, 10), -- HP Increase (2x)
-(14647, 4409, 1), -- MP Increase (1x)
-(14647, 4410, 11), -- Average P. Atk.
-(14647, 4411, 11), -- Average M. Atk.
-(14647, 4412, 16), -- Very Strong P. Def.
-(14647, 4413, 16), -- Very Strong M. Def.
-(14647, 4414, 2), -- Standard Type
-(14647, 4415, 3), -- One-handed Sword
-(14647, 4416, 9), -- Demons
+(14647, 4408, 10), -- HP Modifiers
+(14647, 4409, 1), -- MP Modifiers
+(14647, 4410, 11), -- P. Atk. Modifiers
+(14647, 4411, 11), -- M. Atk. Modifiers
+(14647, 4412, 16), -- P. Def. Modifiers
+(14647, 4413, 16), -- M. Def. Modifiers
+(14647, 4414, 2), -- Armor Type
+(14647, 4415, 3), -- Weapon Type
+(14647, 4416, 9), -- Races
 -- Nightshade
 (14648, 4121, 9), -- Summoned Monster Magic Protection
-(14648, 4408, 10), -- HP Increase (2x)
-(14648, 4409, 1), -- MP Increase (1x)
-(14648, 4410, 11), -- Average P. Atk.
-(14648, 4411, 11), -- Average M. Atk.
-(14648, 4412, 16), -- Very Strong P. Def.
-(14648, 4413, 16), -- Very Strong M. Def.
-(14648, 4414, 2), -- Standard Type
-(14648, 4415, 3), -- One-handed Sword
-(14648, 4416, 9), -- Demons
+(14648, 4408, 10), -- HP Modifiers
+(14648, 4409, 1), -- MP Modifiers
+(14648, 4410, 11), -- P. Atk. Modifiers
+(14648, 4411, 11), -- M. Atk. Modifiers
+(14648, 4412, 16), -- P. Def. Modifiers
+(14648, 4413, 16), -- M. Def. Modifiers
+(14648, 4414, 2), -- Armor Type
+(14648, 4415, 3), -- Weapon Type
+(14648, 4416, 9), -- Races
 -- Nightshade
 (14649, 4121, 9), -- Summoned Monster Magic Protection
-(14649, 4408, 10), -- HP Increase (2x)
-(14649, 4409, 1), -- MP Increase (1x)
-(14649, 4410, 11), -- Average P. Atk.
-(14649, 4411, 11), -- Average M. Atk.
-(14649, 4412, 16), -- Very Strong P. Def.
-(14649, 4413, 16), -- Very Strong M. Def.
-(14649, 4414, 2), -- Standard Type
-(14649, 4415, 3), -- One-handed Sword
-(14649, 4416, 9), -- Demons
+(14649, 4408, 10), -- HP Modifiers
+(14649, 4409, 1), -- MP Modifiers
+(14649, 4410, 11), -- P. Atk. Modifiers
+(14649, 4411, 11), -- M. Atk. Modifiers
+(14649, 4412, 16), -- P. Def. Modifiers
+(14649, 4413, 16), -- M. Def. Modifiers
+(14649, 4414, 2), -- Armor Type
+(14649, 4415, 3), -- Weapon Type
+(14649, 4416, 9), -- Races
 -- Nightshade
 (14650, 4121, 9), -- Summoned Monster Magic Protection
-(14650, 4408, 10), -- HP Increase (2x)
-(14650, 4409, 1), -- MP Increase (1x)
-(14650, 4410, 11), -- Average P. Atk.
-(14650, 4411, 11), -- Average M. Atk.
-(14650, 4412, 16), -- Very Strong P. Def.
-(14650, 4413, 16), -- Very Strong M. Def.
-(14650, 4414, 2), -- Standard Type
-(14650, 4415, 3), -- One-handed Sword
-(14650, 4416, 9), -- Demons
+(14650, 4408, 10), -- HP Modifiers
+(14650, 4409, 1), -- MP Modifiers
+(14650, 4410, 11), -- P. Atk. Modifiers
+(14650, 4411, 11), -- M. Atk. Modifiers
+(14650, 4412, 16), -- P. Def. Modifiers
+(14650, 4413, 16), -- M. Def. Modifiers
+(14650, 4414, 2), -- Armor Type
+(14650, 4415, 3), -- Weapon Type
+(14650, 4416, 9), -- Races
 -- Nightshade
 (14651, 4121, 9), -- Summoned Monster Magic Protection
-(14651, 4408, 10), -- HP Increase (2x)
-(14651, 4409, 1), -- MP Increase (1x)
-(14651, 4410, 11), -- Average P. Atk.
-(14651, 4411, 11), -- Average M. Atk.
-(14651, 4412, 16), -- Very Strong P. Def.
-(14651, 4413, 16), -- Very Strong M. Def.
-(14651, 4414, 2), -- Standard Type
-(14651, 4415, 3), -- One-handed Sword
-(14651, 4416, 9), -- Demons
+(14651, 4408, 10), -- HP Modifiers
+(14651, 4409, 1), -- MP Modifiers
+(14651, 4410, 11), -- P. Atk. Modifiers
+(14651, 4411, 11), -- M. Atk. Modifiers
+(14651, 4412, 16), -- P. Def. Modifiers
+(14651, 4413, 16), -- M. Def. Modifiers
+(14651, 4414, 2), -- Armor Type
+(14651, 4415, 3), -- Weapon Type
+(14651, 4416, 9), -- Races
 -- Nightshade
 (14652, 4121, 9), -- Summoned Monster Magic Protection
-(14652, 4408, 10), -- HP Increase (2x)
-(14652, 4409, 1), -- MP Increase (1x)
-(14652, 4410, 11), -- Average P. Atk.
-(14652, 4411, 11), -- Average M. Atk.
-(14652, 4412, 16), -- Very Strong P. Def.
-(14652, 4413, 16), -- Very Strong M. Def.
-(14652, 4414, 2), -- Standard Type
-(14652, 4415, 3), -- One-handed Sword
-(14652, 4416, 9), -- Demons
+(14652, 4408, 10), -- HP Modifiers
+(14652, 4409, 1), -- MP Modifiers
+(14652, 4410, 11), -- P. Atk. Modifiers
+(14652, 4411, 11), -- M. Atk. Modifiers
+(14652, 4412, 16), -- P. Def. Modifiers
+(14652, 4413, 16), -- M. Def. Modifiers
+(14652, 4414, 2), -- Armor Type
+(14652, 4415, 3), -- Weapon Type
+(14652, 4416, 9), -- Races
 -- Nightshade
 (14653, 4121, 9), -- Summoned Monster Magic Protection
-(14653, 4408, 10), -- HP Increase (2x)
-(14653, 4409, 1), -- MP Increase (1x)
-(14653, 4410, 11), -- Average P. Atk.
-(14653, 4411, 11), -- Average M. Atk.
-(14653, 4412, 16), -- Very Strong P. Def.
-(14653, 4413, 16), -- Very Strong M. Def.
-(14653, 4414, 2), -- Standard Type
-(14653, 4415, 3), -- One-handed Sword
-(14653, 4416, 9), -- Demons
+(14653, 4408, 10), -- HP Modifiers
+(14653, 4409, 1), -- MP Modifiers
+(14653, 4410, 11), -- P. Atk. Modifiers
+(14653, 4411, 11), -- M. Atk. Modifiers
+(14653, 4412, 16), -- P. Def. Modifiers
+(14653, 4413, 16), -- M. Def. Modifiers
+(14653, 4414, 2), -- Armor Type
+(14653, 4415, 3), -- Weapon Type
+(14653, 4416, 9), -- Races
 -- Nightshade
 (14654, 4121, 9), -- Summoned Monster Magic Protection
-(14654, 4408, 10), -- HP Increase (2x)
-(14654, 4409, 1), -- MP Increase (1x)
-(14654, 4410, 11), -- Average P. Atk.
-(14654, 4411, 11), -- Average M. Atk.
-(14654, 4412, 16), -- Very Strong P. Def.
-(14654, 4413, 16), -- Very Strong M. Def.
-(14654, 4414, 2), -- Standard Type
-(14654, 4415, 3), -- One-handed Sword
-(14654, 4416, 9), -- Demons
+(14654, 4408, 10), -- HP Modifiers
+(14654, 4409, 1), -- MP Modifiers
+(14654, 4410, 11), -- P. Atk. Modifiers
+(14654, 4411, 11), -- M. Atk. Modifiers
+(14654, 4412, 16), -- P. Def. Modifiers
+(14654, 4413, 16), -- M. Def. Modifiers
+(14654, 4414, 2), -- Armor Type
+(14654, 4415, 3), -- Weapon Type
+(14654, 4416, 9), -- Races
 -- Nightshade
 (14655, 4121, 9), -- Summoned Monster Magic Protection
-(14655, 4408, 10), -- HP Increase (2x)
-(14655, 4409, 1), -- MP Increase (1x)
-(14655, 4410, 11), -- Average P. Atk.
-(14655, 4411, 11), -- Average M. Atk.
-(14655, 4412, 16), -- Very Strong P. Def.
-(14655, 4413, 16), -- Very Strong M. Def.
-(14655, 4414, 2), -- Standard Type
-(14655, 4415, 3), -- One-handed Sword
-(14655, 4416, 9), -- Demons
+(14655, 4408, 10), -- HP Modifiers
+(14655, 4409, 1), -- MP Modifiers
+(14655, 4410, 11), -- P. Atk. Modifiers
+(14655, 4411, 11), -- M. Atk. Modifiers
+(14655, 4412, 16), -- P. Def. Modifiers
+(14655, 4413, 16), -- M. Def. Modifiers
+(14655, 4414, 2), -- Armor Type
+(14655, 4415, 3), -- Weapon Type
+(14655, 4416, 9), -- Races
 -- Nightshade
 (14656, 4121, 9), -- Summoned Monster Magic Protection
-(14656, 4408, 10), -- HP Increase (2x)
-(14656, 4409, 1), -- MP Increase (1x)
-(14656, 4410, 11), -- Average P. Atk.
-(14656, 4411, 11), -- Average M. Atk.
-(14656, 4412, 16), -- Very Strong P. Def.
-(14656, 4413, 16), -- Very Strong M. Def.
-(14656, 4414, 2), -- Standard Type
-(14656, 4415, 3), -- One-handed Sword
-(14656, 4416, 9), -- Demons
+(14656, 4408, 10), -- HP Modifiers
+(14656, 4409, 1), -- MP Modifiers
+(14656, 4410, 11), -- P. Atk. Modifiers
+(14656, 4411, 11), -- M. Atk. Modifiers
+(14656, 4412, 16), -- P. Def. Modifiers
+(14656, 4413, 16), -- M. Def. Modifiers
+(14656, 4414, 2), -- Armor Type
+(14656, 4415, 3), -- Weapon Type
+(14656, 4416, 9), -- Races
 -- Nightshade
 (14657, 4121, 9), -- Summoned Monster Magic Protection
-(14657, 4408, 10), -- HP Increase (2x)
-(14657, 4409, 1), -- MP Increase (1x)
-(14657, 4410, 11), -- Average P. Atk.
-(14657, 4411, 11), -- Average M. Atk.
-(14657, 4412, 16), -- Very Strong P. Def.
-(14657, 4413, 16), -- Very Strong M. Def.
-(14657, 4414, 2), -- Standard Type
-(14657, 4415, 3), -- One-handed Sword
-(14657, 4416, 9), -- Demons
+(14657, 4408, 10), -- HP Modifiers
+(14657, 4409, 1), -- MP Modifiers
+(14657, 4410, 11), -- P. Atk. Modifiers
+(14657, 4411, 11), -- M. Atk. Modifiers
+(14657, 4412, 16), -- P. Def. Modifiers
+(14657, 4413, 16), -- M. Def. Modifiers
+(14657, 4414, 2), -- Armor Type
+(14657, 4415, 3), -- Weapon Type
+(14657, 4416, 9), -- Races
 -- Nightshade
 (14658, 4121, 9), -- Summoned Monster Magic Protection
-(14658, 4408, 10), -- HP Increase (2x)
-(14658, 4409, 1), -- MP Increase (1x)
-(14658, 4410, 11), -- Average P. Atk.
-(14658, 4411, 11), -- Average M. Atk.
-(14658, 4412, 16), -- Very Strong P. Def.
-(14658, 4413, 16), -- Very Strong M. Def.
-(14658, 4414, 2), -- Standard Type
-(14658, 4415, 3), -- One-handed Sword
-(14658, 4416, 9), -- Demons
+(14658, 4408, 10), -- HP Modifiers
+(14658, 4409, 1), -- MP Modifiers
+(14658, 4410, 11), -- P. Atk. Modifiers
+(14658, 4411, 11), -- M. Atk. Modifiers
+(14658, 4412, 16), -- P. Def. Modifiers
+(14658, 4413, 16), -- M. Def. Modifiers
+(14658, 4414, 2), -- Armor Type
+(14658, 4415, 3), -- Weapon Type
+(14658, 4416, 9), -- Races
 -- Nightshade
 (14659, 4121, 9), -- Summoned Monster Magic Protection
-(14659, 4408, 10), -- HP Increase (2x)
-(14659, 4409, 1), -- MP Increase (1x)
-(14659, 4410, 11), -- Average P. Atk.
-(14659, 4411, 11), -- Average M. Atk.
-(14659, 4412, 16), -- Very Strong P. Def.
-(14659, 4413, 16), -- Very Strong M. Def.
-(14659, 4414, 2), -- Standard Type
-(14659, 4415, 3), -- One-handed Sword
-(14659, 4416, 9), -- Demons
+(14659, 4408, 10), -- HP Modifiers
+(14659, 4409, 1), -- MP Modifiers
+(14659, 4410, 11), -- P. Atk. Modifiers
+(14659, 4411, 11), -- M. Atk. Modifiers
+(14659, 4412, 16), -- P. Def. Modifiers
+(14659, 4413, 16), -- M. Def. Modifiers
+(14659, 4414, 2), -- Armor Type
+(14659, 4415, 3), -- Weapon Type
+(14659, 4416, 9), -- Races
 -- Nightshade
 (14660, 4121, 9), -- Summoned Monster Magic Protection
-(14660, 4408, 10), -- HP Increase (2x)
-(14660, 4409, 1), -- MP Increase (1x)
-(14660, 4410, 11), -- Average P. Atk.
-(14660, 4411, 11), -- Average M. Atk.
-(14660, 4412, 16), -- Very Strong P. Def.
-(14660, 4413, 16), -- Very Strong M. Def.
-(14660, 4414, 2), -- Standard Type
-(14660, 4415, 3), -- One-handed Sword
-(14660, 4416, 9), -- Demons
+(14660, 4408, 10), -- HP Modifiers
+(14660, 4409, 1), -- MP Modifiers
+(14660, 4410, 11), -- P. Atk. Modifiers
+(14660, 4411, 11), -- M. Atk. Modifiers
+(14660, 4412, 16), -- P. Def. Modifiers
+(14660, 4413, 16), -- M. Def. Modifiers
+(14660, 4414, 2), -- Armor Type
+(14660, 4415, 3), -- Weapon Type
+(14660, 4416, 9), -- Races
 -- Nightshade
 (14661, 4121, 9), -- Summoned Monster Magic Protection
-(14661, 4408, 10), -- HP Increase (2x)
-(14661, 4409, 1), -- MP Increase (1x)
-(14661, 4410, 11), -- Average P. Atk.
-(14661, 4411, 11), -- Average M. Atk.
-(14661, 4412, 16), -- Very Strong P. Def.
-(14661, 4413, 16), -- Very Strong M. Def.
-(14661, 4414, 2), -- Standard Type
-(14661, 4415, 3), -- One-handed Sword
-(14661, 4416, 9), -- Demons
+(14661, 4408, 10), -- HP Modifiers
+(14661, 4409, 1), -- MP Modifiers
+(14661, 4410, 11), -- P. Atk. Modifiers
+(14661, 4411, 11), -- M. Atk. Modifiers
+(14661, 4412, 16), -- P. Def. Modifiers
+(14661, 4413, 16), -- M. Def. Modifiers
+(14661, 4414, 2), -- Armor Type
+(14661, 4415, 3), -- Weapon Type
+(14661, 4416, 9), -- Races
 -- Nightshade
 (14662, 4121, 9), -- Summoned Monster Magic Protection
-(14662, 4408, 10), -- HP Increase (2x)
-(14662, 4409, 1), -- MP Increase (1x)
-(14662, 4410, 11), -- Average P. Atk.
-(14662, 4411, 11), -- Average M. Atk.
-(14662, 4412, 16), -- Very Strong P. Def.
-(14662, 4413, 16), -- Very Strong M. Def.
-(14662, 4414, 2), -- Standard Type
-(14662, 4415, 3), -- One-handed Sword
-(14662, 4416, 9), -- Demons
+(14662, 4408, 10), -- HP Modifiers
+(14662, 4409, 1), -- MP Modifiers
+(14662, 4410, 11), -- P. Atk. Modifiers
+(14662, 4411, 11), -- M. Atk. Modifiers
+(14662, 4412, 16), -- P. Def. Modifiers
+(14662, 4413, 16), -- M. Def. Modifiers
+(14662, 4414, 2), -- Armor Type
+(14662, 4415, 3), -- Weapon Type
+(14662, 4416, 9), -- Races
 -- Mechanic Golem
 (14663, 4121, 6), -- Summoned Monster Magic Protection
-(14663, 4408, 4), -- HP High
-(14663, 4409, 1), -- MP Increase (1x)
-(14663, 4410, 11), -- Average P. Atk.
-(14663, 4411, 13), -- Slightly Strong M. Atk.
-(14663, 4412, 11), -- Average P. Def.
-(14663, 4413, 11), -- Average M. Def.
-(14663, 4414, 2), -- Standard Type
-(14663, 4415, 3), -- One-handed Sword
-(14663, 4416, 2), -- Magic Creatures
-(14663, 5038, 15), -- Servitor PvP Penalty
+(14663, 4408, 4), -- HP Modifiers
+(14663, 4409, 1), -- MP Modifiers
+(14663, 4410, 11), -- P. Atk. Modifiers
+(14663, 4411, 13), -- M. Atk. Modifiers
+(14663, 4412, 11), -- P. Def. Modifiers
+(14663, 4413, 11), -- M. Def. Modifiers
+(14663, 4414, 2), -- Armor Type
+(14663, 4415, 3), -- Weapon Type
+(14663, 4416, 2), -- Races
+(14663, 5038, 15), -- Summon PVP Penalty
 -- Mechanic Golem
 (14664, 4121, 6), -- Summoned Monster Magic Protection
-(14664, 4408, 4), -- HP High
-(14664, 4409, 1), -- MP Increase (1x)
-(14664, 4410, 11), -- Average P. Atk.
-(14664, 4411, 13), -- Slightly Strong M. Atk.
-(14664, 4412, 11), -- Average P. Def.
-(14664, 4413, 11), -- Average M. Def.
-(14664, 4414, 2), -- Standard Type
-(14664, 4415, 3), -- One-handed Sword
-(14664, 4416, 2), -- Magic Creatures
-(14664, 5038, 15), -- Servitor PvP Penalty
+(14664, 4408, 4), -- HP Modifiers
+(14664, 4409, 1), -- MP Modifiers
+(14664, 4410, 11), -- P. Atk. Modifiers
+(14664, 4411, 13), -- M. Atk. Modifiers
+(14664, 4412, 11), -- P. Def. Modifiers
+(14664, 4413, 11), -- M. Def. Modifiers
+(14664, 4414, 2), -- Armor Type
+(14664, 4415, 3), -- Weapon Type
+(14664, 4416, 2), -- Races
+(14664, 5038, 15), -- Summon PVP Penalty
 -- Mechanic Golem
 (14665, 4121, 6), -- Summoned Monster Magic Protection
-(14665, 4408, 4), -- HP High
-(14665, 4409, 1), -- MP Increase (1x)
-(14665, 4410, 11), -- Average P. Atk.
-(14665, 4411, 13), -- Slightly Strong M. Atk.
-(14665, 4412, 11), -- Average P. Def.
-(14665, 4413, 11), -- Average M. Def.
-(14665, 4414, 2), -- Standard Type
-(14665, 4415, 3), -- One-handed Sword
-(14665, 4416, 2), -- Magic Creatures
-(14665, 5038, 15), -- Servitor PvP Penalty
+(14665, 4408, 4), -- HP Modifiers
+(14665, 4409, 1), -- MP Modifiers
+(14665, 4410, 11), -- P. Atk. Modifiers
+(14665, 4411, 13), -- M. Atk. Modifiers
+(14665, 4412, 11), -- P. Def. Modifiers
+(14665, 4413, 11), -- M. Def. Modifiers
+(14665, 4414, 2), -- Armor Type
+(14665, 4415, 3), -- Weapon Type
+(14665, 4416, 2), -- Races
+(14665, 5038, 15), -- Summon PVP Penalty
 -- Mechanic Golem
 (14666, 4121, 6), -- Summoned Monster Magic Protection
-(14666, 4408, 4), -- HP High
-(14666, 4409, 1), -- MP Increase (1x)
-(14666, 4410, 11), -- Average P. Atk.
-(14666, 4411, 13), -- Slightly Strong M. Atk.
-(14666, 4412, 11), -- Average P. Def.
-(14666, 4413, 11), -- Average M. Def.
-(14666, 4414, 2), -- Standard Type
-(14666, 4415, 3), -- One-handed Sword
-(14666, 4416, 2), -- Magic Creatures
-(14666, 5038, 15), -- Servitor PvP Penalty
+(14666, 4408, 4), -- HP Modifiers
+(14666, 4409, 1), -- MP Modifiers
+(14666, 4410, 11), -- P. Atk. Modifiers
+(14666, 4411, 13), -- M. Atk. Modifiers
+(14666, 4412, 11), -- P. Def. Modifiers
+(14666, 4413, 11), -- M. Def. Modifiers
+(14666, 4414, 2), -- Armor Type
+(14666, 4415, 3), -- Weapon Type
+(14666, 4416, 2), -- Races
+(14666, 5038, 15), -- Summon PVP Penalty
 -- Mechanic Golem
 (14667, 4121, 6), -- Summoned Monster Magic Protection
-(14667, 4408, 4), -- HP High
-(14667, 4409, 1), -- MP Increase (1x)
-(14667, 4410, 11), -- Average P. Atk.
-(14667, 4411, 13), -- Slightly Strong M. Atk.
-(14667, 4412, 11), -- Average P. Def.
-(14667, 4413, 11), -- Average M. Def.
-(14667, 4414, 2), -- Standard Type
-(14667, 4415, 3), -- One-handed Sword
-(14667, 4416, 2), -- Magic Creatures
-(14667, 5038, 15), -- Servitor PvP Penalty
+(14667, 4408, 4), -- HP Modifiers
+(14667, 4409, 1), -- MP Modifiers
+(14667, 4410, 11), -- P. Atk. Modifiers
+(14667, 4411, 13), -- M. Atk. Modifiers
+(14667, 4412, 11), -- P. Def. Modifiers
+(14667, 4413, 11), -- M. Def. Modifiers
+(14667, 4414, 2), -- Armor Type
+(14667, 4415, 3), -- Weapon Type
+(14667, 4416, 2), -- Races
+(14667, 5038, 15), -- Summon PVP Penalty
 -- Mechanic Golem
 (14668, 4121, 6), -- Summoned Monster Magic Protection
-(14668, 4408, 4), -- HP High
-(14668, 4409, 1), -- MP Increase (1x)
-(14668, 4410, 11), -- Average P. Atk.
-(14668, 4411, 13), -- Slightly Strong M. Atk.
-(14668, 4412, 11), -- Average P. Def.
-(14668, 4413, 11), -- Average M. Def.
-(14668, 4414, 2), -- Standard Type
-(14668, 4415, 3), -- One-handed Sword
-(14668, 4416, 2), -- Magic Creatures
-(14668, 5038, 15), -- Servitor PvP Penalty
+(14668, 4408, 4), -- HP Modifiers
+(14668, 4409, 1), -- MP Modifiers
+(14668, 4410, 11), -- P. Atk. Modifiers
+(14668, 4411, 13), -- M. Atk. Modifiers
+(14668, 4412, 11), -- P. Def. Modifiers
+(14668, 4413, 11), -- M. Def. Modifiers
+(14668, 4414, 2), -- Armor Type
+(14668, 4415, 3), -- Weapon Type
+(14668, 4416, 2), -- Races
+(14668, 5038, 15), -- Summon PVP Penalty
 -- Mechanic Golem
 (14669, 4121, 6), -- Summoned Monster Magic Protection
-(14669, 4408, 4), -- HP High
-(14669, 4409, 1), -- MP Increase (1x)
-(14669, 4410, 11), -- Average P. Atk.
-(14669, 4411, 13), -- Slightly Strong M. Atk.
-(14669, 4412, 11), -- Average P. Def.
-(14669, 4413, 11), -- Average M. Def.
-(14669, 4414, 2), -- Standard Type
-(14669, 4415, 3), -- One-handed Sword
-(14669, 4416, 2), -- Magic Creatures
-(14669, 5038, 15), -- Servitor PvP Penalty
+(14669, 4408, 4), -- HP Modifiers
+(14669, 4409, 1), -- MP Modifiers
+(14669, 4410, 11), -- P. Atk. Modifiers
+(14669, 4411, 13), -- M. Atk. Modifiers
+(14669, 4412, 11), -- P. Def. Modifiers
+(14669, 4413, 11), -- M. Def. Modifiers
+(14669, 4414, 2), -- Armor Type
+(14669, 4415, 3), -- Weapon Type
+(14669, 4416, 2), -- Races
+(14669, 5038, 15), -- Summon PVP Penalty
 -- Mechanic Golem
 (14670, 4121, 6), -- Summoned Monster Magic Protection
-(14670, 4408, 4), -- HP High
-(14670, 4409, 1), -- MP Increase (1x)
-(14670, 4410, 11), -- Average P. Atk.
-(14670, 4411, 13), -- Slightly Strong M. Atk.
-(14670, 4412, 11), -- Average P. Def.
-(14670, 4413, 11), -- Average M. Def.
-(14670, 4414, 2), -- Standard Type
-(14670, 4415, 3), -- One-handed Sword
-(14670, 4416, 2), -- Magic Creatures
-(14670, 5038, 15), -- Servitor PvP Penalty
+(14670, 4408, 4), -- HP Modifiers
+(14670, 4409, 1), -- MP Modifiers
+(14670, 4410, 11), -- P. Atk. Modifiers
+(14670, 4411, 13), -- M. Atk. Modifiers
+(14670, 4412, 11), -- P. Def. Modifiers
+(14670, 4413, 11), -- M. Def. Modifiers
+(14670, 4414, 2), -- Armor Type
+(14670, 4415, 3), -- Weapon Type
+(14670, 4416, 2), -- Races
+(14670, 5038, 15), -- Summon PVP Penalty
 -- Mechanic Golem
 (14671, 4121, 6), -- Summoned Monster Magic Protection
-(14671, 4408, 4), -- HP High
-(14671, 4409, 1), -- MP Increase (1x)
-(14671, 4410, 11), -- Average P. Atk.
-(14671, 4411, 13), -- Slightly Strong M. Atk.
-(14671, 4412, 11), -- Average P. Def.
-(14671, 4413, 11), -- Average M. Def.
-(14671, 4414, 2), -- Standard Type
-(14671, 4415, 3), -- One-handed Sword
-(14671, 4416, 2), -- Magic Creatures
-(14671, 5038, 15), -- Servitor PvP Penalty
+(14671, 4408, 4), -- HP Modifiers
+(14671, 4409, 1), -- MP Modifiers
+(14671, 4410, 11), -- P. Atk. Modifiers
+(14671, 4411, 13), -- M. Atk. Modifiers
+(14671, 4412, 11), -- P. Def. Modifiers
+(14671, 4413, 11), -- M. Def. Modifiers
+(14671, 4414, 2), -- Armor Type
+(14671, 4415, 3), -- Weapon Type
+(14671, 4416, 2), -- Races
+(14671, 5038, 15), -- Summon PVP Penalty
 -- Mechanic Golem
 (14672, 4121, 6), -- Summoned Monster Magic Protection
-(14672, 4408, 4), -- HP High
-(14672, 4409, 1), -- MP Increase (1x)
-(14672, 4410, 11), -- Average P. Atk.
-(14672, 4411, 13), -- Slightly Strong M. Atk.
-(14672, 4412, 11), -- Average P. Def.
-(14672, 4413, 11), -- Average M. Def.
-(14672, 4414, 2), -- Standard Type
-(14672, 4415, 3), -- One-handed Sword
-(14672, 4416, 2), -- Magic Creatures
-(14672, 5038, 15), -- Servitor PvP Penalty
+(14672, 4408, 4), -- HP Modifiers
+(14672, 4409, 1), -- MP Modifiers
+(14672, 4410, 11), -- P. Atk. Modifiers
+(14672, 4411, 13), -- M. Atk. Modifiers
+(14672, 4412, 11), -- P. Def. Modifiers
+(14672, 4413, 11), -- M. Def. Modifiers
+(14672, 4414, 2), -- Armor Type
+(14672, 4415, 3), -- Weapon Type
+(14672, 4416, 2), -- Races
+(14672, 5038, 15), -- Summon PVP Penalty
 -- Mechanic Golem
 (14673, 4121, 6), -- Summoned Monster Magic Protection
-(14673, 4408, 4), -- HP High
-(14673, 4409, 1), -- MP Increase (1x)
-(14673, 4410, 11), -- Average P. Atk.
-(14673, 4411, 13), -- Slightly Strong M. Atk.
-(14673, 4412, 11), -- Average P. Def.
-(14673, 4413, 11), -- Average M. Def.
-(14673, 4414, 2), -- Standard Type
-(14673, 4415, 3), -- One-handed Sword
-(14673, 4416, 2), -- Magic Creatures
-(14673, 5038, 15), -- Servitor PvP Penalty
+(14673, 4408, 4), -- HP Modifiers
+(14673, 4409, 1), -- MP Modifiers
+(14673, 4410, 11), -- P. Atk. Modifiers
+(14673, 4411, 13), -- M. Atk. Modifiers
+(14673, 4412, 11), -- P. Def. Modifiers
+(14673, 4413, 11), -- M. Def. Modifiers
+(14673, 4414, 2), -- Armor Type
+(14673, 4415, 3), -- Weapon Type
+(14673, 4416, 2), -- Races
+(14673, 5038, 15), -- Summon PVP Penalty
 -- Mechanic Golem
 (14674, 4121, 6), -- Summoned Monster Magic Protection
-(14674, 4408, 4), -- HP High
-(14674, 4409, 1), -- MP Increase (1x)
-(14674, 4410, 11), -- Average P. Atk.
-(14674, 4411, 13), -- Slightly Strong M. Atk.
-(14674, 4412, 11), -- Average P. Def.
-(14674, 4413, 11), -- Average M. Def.
-(14674, 4414, 2), -- Standard Type
-(14674, 4415, 3), -- One-handed Sword
-(14674, 4416, 2), -- Magic Creatures
-(14674, 5038, 15), -- Servitor PvP Penalty
+(14674, 4408, 4), -- HP Modifiers
+(14674, 4409, 1), -- MP Modifiers
+(14674, 4410, 11), -- P. Atk. Modifiers
+(14674, 4411, 13), -- M. Atk. Modifiers
+(14674, 4412, 11), -- P. Def. Modifiers
+(14674, 4413, 11), -- M. Def. Modifiers
+(14674, 4414, 2), -- Armor Type
+(14674, 4415, 3), -- Weapon Type
+(14674, 4416, 2), -- Races
+(14674, 5038, 15), -- Summon PVP Penalty
 -- Mechanic Golem
 (14675, 4121, 6), -- Summoned Monster Magic Protection
-(14675, 4408, 4), -- HP High
-(14675, 4409, 1), -- MP Increase (1x)
-(14675, 4410, 11), -- Average P. Atk.
-(14675, 4411, 13), -- Slightly Strong M. Atk.
-(14675, 4412, 11), -- Average P. Def.
-(14675, 4413, 11), -- Average M. Def.
-(14675, 4414, 2), -- Standard Type
-(14675, 4415, 3), -- One-handed Sword
-(14675, 4416, 2), -- Magic Creatures
-(14675, 5038, 15), -- Servitor PvP Penalty
+(14675, 4408, 4), -- HP Modifiers
+(14675, 4409, 1), -- MP Modifiers
+(14675, 4410, 11), -- P. Atk. Modifiers
+(14675, 4411, 13), -- M. Atk. Modifiers
+(14675, 4412, 11), -- P. Def. Modifiers
+(14675, 4413, 11), -- M. Def. Modifiers
+(14675, 4414, 2), -- Armor Type
+(14675, 4415, 3), -- Weapon Type
+(14675, 4416, 2), -- Races
+(14675, 5038, 15), -- Summon PVP Penalty
 -- Mechanic Golem
 (14676, 4121, 6), -- Summoned Monster Magic Protection
-(14676, 4408, 4), -- HP High
-(14676, 4409, 1), -- MP Increase (1x)
-(14676, 4410, 11), -- Average P. Atk.
-(14676, 4411, 13), -- Slightly Strong M. Atk.
-(14676, 4412, 11), -- Average P. Def.
-(14676, 4413, 11), -- Average M. Def.
-(14676, 4414, 2), -- Standard Type
-(14676, 4415, 3), -- One-handed Sword
-(14676, 4416, 2), -- Magic Creatures
-(14676, 5038, 15), -- Servitor PvP Penalty
+(14676, 4408, 4), -- HP Modifiers
+(14676, 4409, 1), -- MP Modifiers
+(14676, 4410, 11), -- P. Atk. Modifiers
+(14676, 4411, 13), -- M. Atk. Modifiers
+(14676, 4412, 11), -- P. Def. Modifiers
+(14676, 4413, 11), -- M. Def. Modifiers
+(14676, 4414, 2), -- Armor Type
+(14676, 4415, 3), -- Weapon Type
+(14676, 4416, 2), -- Races
+(14676, 5038, 15), -- Summon PVP Penalty
 -- Mechanic Golem
 (14677, 4121, 6), -- Summoned Monster Magic Protection
-(14677, 4408, 4), -- HP High
-(14677, 4409, 1), -- MP Increase (1x)
-(14677, 4410, 11), -- Average P. Atk.
-(14677, 4411, 13), -- Slightly Strong M. Atk.
-(14677, 4412, 11), -- Average P. Def.
-(14677, 4413, 11), -- Average M. Def.
-(14677, 4414, 2), -- Standard Type
-(14677, 4415, 3), -- One-handed Sword
-(14677, 4416, 2), -- Magic Creatures
-(14677, 5038, 15), -- Servitor PvP Penalty
+(14677, 4408, 4), -- HP Modifiers
+(14677, 4409, 1), -- MP Modifiers
+(14677, 4410, 11), -- P. Atk. Modifiers
+(14677, 4411, 13), -- M. Atk. Modifiers
+(14677, 4412, 11), -- P. Def. Modifiers
+(14677, 4413, 11), -- M. Def. Modifiers
+(14677, 4414, 2), -- Armor Type
+(14677, 4415, 3), -- Weapon Type
+(14677, 4416, 2), -- Races
+(14677, 5038, 15), -- Summon PVP Penalty
 -- Mechanic Golem
 (14678, 4121, 6), -- Summoned Monster Magic Protection
-(14678, 4408, 4), -- HP High
-(14678, 4409, 1), -- MP Increase (1x)
-(14678, 4410, 11), -- Average P. Atk.
-(14678, 4411, 13), -- Slightly Strong M. Atk.
-(14678, 4412, 11), -- Average P. Def.
-(14678, 4413, 11), -- Average M. Def.
-(14678, 4414, 2), -- Standard Type
-(14678, 4415, 3), -- One-handed Sword
-(14678, 4416, 2), -- Magic Creatures
-(14678, 5038, 15), -- Servitor PvP Penalty
+(14678, 4408, 4), -- HP Modifiers
+(14678, 4409, 1), -- MP Modifiers
+(14678, 4410, 11), -- P. Atk. Modifiers
+(14678, 4411, 13), -- M. Atk. Modifiers
+(14678, 4412, 11), -- P. Def. Modifiers
+(14678, 4413, 11), -- M. Def. Modifiers
+(14678, 4414, 2), -- Armor Type
+(14678, 4415, 3), -- Weapon Type
+(14678, 4416, 2), -- Races
+(14678, 5038, 15), -- Summon PVP Penalty
 -- Mechanic Golem
 (14679, 4121, 6), -- Summoned Monster Magic Protection
-(14679, 4408, 4), -- HP High
-(14679, 4409, 1), -- MP Increase (1x)
-(14679, 4410, 11), -- Average P. Atk.
-(14679, 4411, 13), -- Slightly Strong M. Atk.
-(14679, 4412, 11), -- Average P. Def.
-(14679, 4413, 11), -- Average M. Def.
-(14679, 4414, 2), -- Standard Type
-(14679, 4415, 3), -- One-handed Sword
-(14679, 4416, 2), -- Magic Creatures
-(14679, 5038, 15), -- Servitor PvP Penalty
+(14679, 4408, 4), -- HP Modifiers
+(14679, 4409, 1), -- MP Modifiers
+(14679, 4410, 11), -- P. Atk. Modifiers
+(14679, 4411, 13), -- M. Atk. Modifiers
+(14679, 4412, 11), -- P. Def. Modifiers
+(14679, 4413, 11), -- M. Def. Modifiers
+(14679, 4414, 2), -- Armor Type
+(14679, 4415, 3), -- Weapon Type
+(14679, 4416, 2), -- Races
+(14679, 5038, 15), -- Summon PVP Penalty
 -- Mechanic Golem
 (14680, 4121, 6), -- Summoned Monster Magic Protection
-(14680, 4408, 4), -- HP High
-(14680, 4409, 1), -- MP Increase (1x)
-(14680, 4410, 11); -- Average P. Atk.
+(14680, 4408, 4), -- HP Modifiers
+(14680, 4409, 1), -- MP Modifiers
+(14680, 4410, 11); -- P. Atk. Modifiers
 
 INSERT INTO `npcskills` VALUES
-(14680, 4411, 13), -- Slightly Strong M. Atk.
-(14680, 4412, 11), -- Average P. Def.
-(14680, 4413, 11), -- Average M. Def.
-(14680, 4414, 2), -- Standard Type
-(14680, 4415, 3), -- One-handed Sword
-(14680, 4416, 2), -- Magic Creatures
-(14680, 5038, 15), -- Servitor PvP Penalty
+(14680, 4411, 13), -- M. Atk. Modifiers
+(14680, 4412, 11), -- P. Def. Modifiers
+(14680, 4413, 11), -- M. Def. Modifiers
+(14680, 4414, 2), -- Armor Type
+(14680, 4415, 3), -- Weapon Type
+(14680, 4416, 2), -- Races
+(14680, 5038, 15), -- Summon PVP Penalty
 -- Mechanic Golem
 (14681, 4121, 6), -- Summoned Monster Magic Protection
-(14681, 4408, 4), -- HP High
-(14681, 4409, 1), -- MP Increase (1x)
-(14681, 4410, 11), -- Average P. Atk.
-(14681, 4411, 13), -- Slightly Strong M. Atk.
-(14681, 4412, 11), -- Average P. Def.
-(14681, 4413, 11), -- Average M. Def.
-(14681, 4414, 2), -- Standard Type
-(14681, 4415, 3), -- One-handed Sword
-(14681, 4416, 2), -- Magic Creatures
-(14681, 5038, 15), -- Servitor PvP Penalty
+(14681, 4408, 4), -- HP Modifiers
+(14681, 4409, 1), -- MP Modifiers
+(14681, 4410, 11), -- P. Atk. Modifiers
+(14681, 4411, 13), -- M. Atk. Modifiers
+(14681, 4412, 11), -- P. Def. Modifiers
+(14681, 4413, 11), -- M. Def. Modifiers
+(14681, 4414, 2), -- Armor Type
+(14681, 4415, 3), -- Weapon Type
+(14681, 4416, 2), -- Races
+(14681, 5038, 15), -- Summon PVP Penalty
 -- Mechanic Golem
 (14682, 4121, 6), -- Summoned Monster Magic Protection
-(14682, 4408, 4), -- HP High
-(14682, 4409, 1), -- MP Increase (1x)
-(14682, 4410, 11), -- Average P. Atk.
-(14682, 4411, 13), -- Slightly Strong M. Atk.
-(14682, 4412, 11), -- Average P. Def.
-(14682, 4413, 11), -- Average M. Def.
-(14682, 4414, 2), -- Standard Type
-(14682, 4415, 3), -- One-handed Sword
-(14682, 4416, 2), -- Magic Creatures
-(14682, 5038, 15), -- Servitor PvP Penalty
+(14682, 4408, 4), -- HP Modifiers
+(14682, 4409, 1), -- MP Modifiers
+(14682, 4410, 11), -- P. Atk. Modifiers
+(14682, 4411, 13), -- M. Atk. Modifiers
+(14682, 4412, 11), -- P. Def. Modifiers
+(14682, 4413, 11), -- M. Def. Modifiers
+(14682, 4414, 2), -- Armor Type
+(14682, 4415, 3), -- Weapon Type
+(14682, 4416, 2), -- Races
+(14682, 5038, 15), -- Summon PVP Penalty
 -- Mechanic Golem
 (14683, 4121, 6), -- Summoned Monster Magic Protection
-(14683, 4408, 4), -- HP High
-(14683, 4409, 1), -- MP Increase (1x)
-(14683, 4410, 11), -- Average P. Atk.
-(14683, 4411, 13), -- Slightly Strong M. Atk.
-(14683, 4412, 11), -- Average P. Def.
-(14683, 4413, 11), -- Average M. Def.
-(14683, 4414, 2), -- Standard Type
-(14683, 4415, 3), -- One-handed Sword
-(14683, 4416, 2), -- Magic Creatures
-(14683, 5038, 15), -- Servitor PvP Penalty
+(14683, 4408, 4), -- HP Modifiers
+(14683, 4409, 1), -- MP Modifiers
+(14683, 4410, 11), -- P. Atk. Modifiers
+(14683, 4411, 13), -- M. Atk. Modifiers
+(14683, 4412, 11), -- P. Def. Modifiers
+(14683, 4413, 11), -- M. Def. Modifiers
+(14683, 4414, 2), -- Armor Type
+(14683, 4415, 3), -- Weapon Type
+(14683, 4416, 2), -- Races
+(14683, 5038, 15), -- Summon PVP Penalty
 -- Mechanic Golem
 (14684, 4121, 6), -- Summoned Monster Magic Protection
-(14684, 4408, 4), -- HP High
-(14684, 4409, 1), -- MP Increase (1x)
-(14684, 4410, 11), -- Average P. Atk.
-(14684, 4411, 13), -- Slightly Strong M. Atk.
-(14684, 4412, 11), -- Average P. Def.
-(14684, 4413, 11), -- Average M. Def.
-(14684, 4414, 2), -- Standard Type
-(14684, 4415, 3), -- One-handed Sword
-(14684, 4416, 2), -- Magic Creatures
-(14684, 5038, 15), -- Servitor PvP Penalty
+(14684, 4408, 4), -- HP Modifiers
+(14684, 4409, 1), -- MP Modifiers
+(14684, 4410, 11), -- P. Atk. Modifiers
+(14684, 4411, 13), -- M. Atk. Modifiers
+(14684, 4412, 11), -- P. Def. Modifiers
+(14684, 4413, 11), -- M. Def. Modifiers
+(14684, 4414, 2), -- Armor Type
+(14684, 4415, 3), -- Weapon Type
+(14684, 4416, 2), -- Races
+(14684, 5038, 15), -- Summon PVP Penalty
 -- Mechanic Golem
 (14685, 4121, 6), -- Summoned Monster Magic Protection
-(14685, 4408, 4), -- HP High
-(14685, 4409, 1), -- MP Increase (1x)
-(14685, 4410, 11), -- Average P. Atk.
-(14685, 4411, 13), -- Slightly Strong M. Atk.
-(14685, 4412, 11), -- Average P. Def.
-(14685, 4413, 11), -- Average M. Def.
-(14685, 4414, 2), -- Standard Type
-(14685, 4415, 3), -- One-handed Sword
-(14685, 4416, 2), -- Magic Creatures
-(14685, 5038, 15), -- Servitor PvP Penalty
+(14685, 4408, 4), -- HP Modifiers
+(14685, 4409, 1), -- MP Modifiers
+(14685, 4410, 11), -- P. Atk. Modifiers
+(14685, 4411, 13), -- M. Atk. Modifiers
+(14685, 4412, 11), -- P. Def. Modifiers
+(14685, 4413, 11), -- M. Def. Modifiers
+(14685, 4414, 2), -- Armor Type
+(14685, 4415, 3), -- Weapon Type
+(14685, 4416, 2), -- Races
+(14685, 5038, 15), -- Summon PVP Penalty
 -- Mechanic Golem
 (14686, 4121, 6), -- Summoned Monster Magic Protection
-(14686, 4408, 4), -- HP High
-(14686, 4409, 1), -- MP Increase (1x)
-(14686, 4410, 11), -- Average P. Atk.
-(14686, 4411, 13), -- Slightly Strong M. Atk.
-(14686, 4412, 11), -- Average P. Def.
-(14686, 4413, 11), -- Average M. Def.
-(14686, 4414, 2), -- Standard Type
-(14686, 4415, 3), -- One-handed Sword
-(14686, 4416, 2), -- Magic Creatures
-(14686, 5038, 15), -- Servitor PvP Penalty
+(14686, 4408, 4), -- HP Modifiers
+(14686, 4409, 1), -- MP Modifiers
+(14686, 4410, 11), -- P. Atk. Modifiers
+(14686, 4411, 13), -- M. Atk. Modifiers
+(14686, 4412, 11), -- P. Def. Modifiers
+(14686, 4413, 11), -- M. Def. Modifiers
+(14686, 4414, 2), -- Armor Type
+(14686, 4415, 3), -- Weapon Type
+(14686, 4416, 2), -- Races
+(14686, 5038, 15), -- Summon PVP Penalty
 -- Mechanic Golem
 (14687, 4121, 6), -- Summoned Monster Magic Protection
-(14687, 4408, 4), -- HP High
-(14687, 4409, 1), -- MP Increase (1x)
-(14687, 4410, 11), -- Average P. Atk.
-(14687, 4411, 13), -- Slightly Strong M. Atk.
-(14687, 4412, 11), -- Average P. Def.
-(14687, 4413, 11), -- Average M. Def.
-(14687, 4414, 2), -- Standard Type
-(14687, 4415, 3), -- One-handed Sword
-(14687, 4416, 2), -- Magic Creatures
-(14687, 5038, 15), -- Servitor PvP Penalty
+(14687, 4408, 4), -- HP Modifiers
+(14687, 4409, 1), -- MP Modifiers
+(14687, 4410, 11), -- P. Atk. Modifiers
+(14687, 4411, 13), -- M. Atk. Modifiers
+(14687, 4412, 11), -- P. Def. Modifiers
+(14687, 4413, 11), -- M. Def. Modifiers
+(14687, 4414, 2), -- Armor Type
+(14687, 4415, 3), -- Weapon Type
+(14687, 4416, 2), -- Races
+(14687, 5038, 15), -- Summon PVP Penalty
 -- Mechanic Golem
 (14688, 4121, 6), -- Summoned Monster Magic Protection
-(14688, 4408, 4), -- HP High
-(14688, 4409, 1), -- MP Increase (1x)
-(14688, 4410, 11), -- Average P. Atk.
-(14688, 4411, 13), -- Slightly Strong M. Atk.
-(14688, 4412, 11), -- Average P. Def.
-(14688, 4413, 11), -- Average M. Def.
-(14688, 4414, 2), -- Standard Type
-(14688, 4415, 3), -- One-handed Sword
-(14688, 4416, 2), -- Magic Creatures
-(14688, 5038, 15), -- Servitor PvP Penalty
+(14688, 4408, 4), -- HP Modifiers
+(14688, 4409, 1), -- MP Modifiers
+(14688, 4410, 11), -- P. Atk. Modifiers
+(14688, 4411, 13), -- M. Atk. Modifiers
+(14688, 4412, 11), -- P. Def. Modifiers
+(14688, 4413, 11), -- M. Def. Modifiers
+(14688, 4414, 2), -- Armor Type
+(14688, 4415, 3), -- Weapon Type
+(14688, 4416, 2), -- Races
+(14688, 5038, 15), -- Summon PVP Penalty
 -- Mechanic Golem
 (14689, 4121, 6), -- Summoned Monster Magic Protection
-(14689, 4408, 4), -- HP High
-(14689, 4409, 1), -- MP Increase (1x)
-(14689, 4410, 11), -- Average P. Atk.
-(14689, 4411, 13), -- Slightly Strong M. Atk.
-(14689, 4412, 11), -- Average P. Def.
-(14689, 4413, 11), -- Average M. Def.
-(14689, 4414, 2), -- Standard Type
-(14689, 4415, 3), -- One-handed Sword
-(14689, 4416, 2), -- Magic Creatures
-(14689, 5038, 15), -- Servitor PvP Penalty
+(14689, 4408, 4), -- HP Modifiers
+(14689, 4409, 1), -- MP Modifiers
+(14689, 4410, 11), -- P. Atk. Modifiers
+(14689, 4411, 13), -- M. Atk. Modifiers
+(14689, 4412, 11), -- P. Def. Modifiers
+(14689, 4413, 11), -- M. Def. Modifiers
+(14689, 4414, 2), -- Armor Type
+(14689, 4415, 3), -- Weapon Type
+(14689, 4416, 2), -- Races
+(14689, 5038, 15), -- Summon PVP Penalty
 -- Mechanic Golem
 (14690, 4121, 6), -- Summoned Monster Magic Protection
-(14690, 4408, 4), -- HP High
-(14690, 4409, 1), -- MP Increase (1x)
-(14690, 4410, 11), -- Average P. Atk.
-(14690, 4411, 13), -- Slightly Strong M. Atk.
-(14690, 4412, 11), -- Average P. Def.
-(14690, 4413, 11), -- Average M. Def.
-(14690, 4414, 2), -- Standard Type
-(14690, 4415, 3), -- One-handed Sword
-(14690, 4416, 2), -- Magic Creatures
-(14690, 5038, 15), -- Servitor PvP Penalty
+(14690, 4408, 4), -- HP Modifiers
+(14690, 4409, 1), -- MP Modifiers
+(14690, 4410, 11), -- P. Atk. Modifiers
+(14690, 4411, 13), -- M. Atk. Modifiers
+(14690, 4412, 11), -- P. Def. Modifiers
+(14690, 4413, 11), -- M. Def. Modifiers
+(14690, 4414, 2), -- Armor Type
+(14690, 4415, 3), -- Weapon Type
+(14690, 4416, 2), -- Races
+(14690, 5038, 15), -- Summon PVP Penalty
 -- Mechanic Golem
 (14691, 4121, 6), -- Summoned Monster Magic Protection
-(14691, 4408, 4), -- HP High
-(14691, 4409, 1), -- MP Increase (1x)
-(14691, 4410, 11), -- Average P. Atk.
-(14691, 4411, 13), -- Slightly Strong M. Atk.
-(14691, 4412, 11), -- Average P. Def.
-(14691, 4413, 11), -- Average M. Def.
-(14691, 4414, 2), -- Standard Type
-(14691, 4415, 3), -- One-handed Sword
-(14691, 4416, 2), -- Magic Creatures
-(14691, 5038, 15), -- Servitor PvP Penalty
+(14691, 4408, 4), -- HP Modifiers
+(14691, 4409, 1), -- MP Modifiers
+(14691, 4410, 11), -- P. Atk. Modifiers
+(14691, 4411, 13), -- M. Atk. Modifiers
+(14691, 4412, 11), -- P. Def. Modifiers
+(14691, 4413, 11), -- M. Def. Modifiers
+(14691, 4414, 2), -- Armor Type
+(14691, 4415, 3), -- Weapon Type
+(14691, 4416, 2), -- Races
+(14691, 5038, 15), -- Summon PVP Penalty
 -- Mechanic Golem
 (14692, 4121, 6), -- Summoned Monster Magic Protection
-(14692, 4408, 4), -- HP High
-(14692, 4409, 1), -- MP Increase (1x)
-(14692, 4410, 11), -- Average P. Atk.
-(14692, 4411, 13), -- Slightly Strong M. Atk.
-(14692, 4412, 11), -- Average P. Def.
-(14692, 4413, 11), -- Average M. Def.
-(14692, 4414, 2), -- Standard Type
-(14692, 4415, 3), -- One-handed Sword
-(14692, 4416, 2), -- Magic Creatures
-(14692, 5038, 15), -- Servitor PvP Penalty
+(14692, 4408, 4), -- HP Modifiers
+(14692, 4409, 1), -- MP Modifiers
+(14692, 4410, 11), -- P. Atk. Modifiers
+(14692, 4411, 13), -- M. Atk. Modifiers
+(14692, 4412, 11), -- P. Def. Modifiers
+(14692, 4413, 11), -- M. Def. Modifiers
+(14692, 4414, 2), -- Armor Type
+(14692, 4415, 3), -- Weapon Type
+(14692, 4416, 2), -- Races
+(14692, 5038, 15), -- Summon PVP Penalty
 -- Mechanic Golem
 (14693, 4121, 6), -- Summoned Monster Magic Protection
-(14693, 4408, 4), -- HP High
-(14693, 4409, 1), -- MP Increase (1x)
-(14693, 4410, 11), -- Average P. Atk.
-(14693, 4411, 13), -- Slightly Strong M. Atk.
-(14693, 4412, 11), -- Average P. Def.
-(14693, 4413, 11), -- Average M. Def.
-(14693, 4414, 2), -- Standard Type
-(14693, 4415, 3), -- One-handed Sword
-(14693, 4416, 2), -- Magic Creatures
-(14693, 5038, 15), -- Servitor PvP Penalty
+(14693, 4408, 4), -- HP Modifiers
+(14693, 4409, 1), -- MP Modifiers
+(14693, 4410, 11), -- P. Atk. Modifiers
+(14693, 4411, 13), -- M. Atk. Modifiers
+(14693, 4412, 11), -- P. Def. Modifiers
+(14693, 4413, 11), -- M. Def. Modifiers
+(14693, 4414, 2), -- Armor Type
+(14693, 4415, 3), -- Weapon Type
+(14693, 4416, 2), -- Races
+(14693, 5038, 15), -- Summon PVP Penalty
 -- Mechanic Golem
 (14694, 4121, 6), -- Summoned Monster Magic Protection
-(14694, 4408, 4), -- HP High
-(14694, 4409, 1), -- MP Increase (1x)
-(14694, 4410, 11), -- Average P. Atk.
-(14694, 4411, 13), -- Slightly Strong M. Atk.
-(14694, 4412, 11), -- Average P. Def.
-(14694, 4413, 11), -- Average M. Def.
-(14694, 4414, 2), -- Standard Type
-(14694, 4415, 3), -- One-handed Sword
-(14694, 4416, 2), -- Magic Creatures
-(14694, 5038, 15), -- Servitor PvP Penalty
+(14694, 4408, 4), -- HP Modifiers
+(14694, 4409, 1), -- MP Modifiers
+(14694, 4410, 11), -- P. Atk. Modifiers
+(14694, 4411, 13), -- M. Atk. Modifiers
+(14694, 4412, 11), -- P. Def. Modifiers
+(14694, 4413, 11), -- M. Def. Modifiers
+(14694, 4414, 2), -- Armor Type
+(14694, 4415, 3), -- Weapon Type
+(14694, 4416, 2), -- Races
+(14694, 5038, 15), -- Summon PVP Penalty
 -- Mechanic Golem
 (14695, 4121, 6), -- Summoned Monster Magic Protection
-(14695, 4408, 4), -- HP High
-(14695, 4409, 1), -- MP Increase (1x)
-(14695, 4410, 11), -- Average P. Atk.
-(14695, 4411, 13), -- Slightly Strong M. Atk.
-(14695, 4412, 11), -- Average P. Def.
-(14695, 4413, 11), -- Average M. Def.
-(14695, 4414, 2), -- Standard Type
-(14695, 4415, 3), -- One-handed Sword
-(14695, 4416, 2), -- Magic Creatures
-(14695, 5038, 15), -- Servitor PvP Penalty
+(14695, 4408, 4), -- HP Modifiers
+(14695, 4409, 1), -- MP Modifiers
+(14695, 4410, 11), -- P. Atk. Modifiers
+(14695, 4411, 13), -- M. Atk. Modifiers
+(14695, 4412, 11), -- P. Def. Modifiers
+(14695, 4413, 11), -- M. Def. Modifiers
+(14695, 4414, 2), -- Armor Type
+(14695, 4415, 3), -- Weapon Type
+(14695, 4416, 2), -- Races
+(14695, 5038, 15), -- Summon PVP Penalty
 -- Mechanic Golem
 (14696, 4121, 6), -- Summoned Monster Magic Protection
-(14696, 4408, 4), -- HP High
-(14696, 4409, 1), -- MP Increase (1x)
-(14696, 4410, 11), -- Average P. Atk.
-(14696, 4411, 13), -- Slightly Strong M. Atk.
-(14696, 4412, 11), -- Average P. Def.
-(14696, 4413, 11), -- Average M. Def.
-(14696, 4414, 2), -- Standard Type
-(14696, 4415, 3), -- One-handed Sword
-(14696, 4416, 2), -- Magic Creatures
-(14696, 5038, 15), -- Servitor PvP Penalty
+(14696, 4408, 4), -- HP Modifiers
+(14696, 4409, 1), -- MP Modifiers
+(14696, 4410, 11), -- P. Atk. Modifiers
+(14696, 4411, 13), -- M. Atk. Modifiers
+(14696, 4412, 11), -- P. Def. Modifiers
+(14696, 4413, 11), -- M. Def. Modifiers
+(14696, 4414, 2), -- Armor Type
+(14696, 4415, 3), -- Weapon Type
+(14696, 4416, 2), -- Races
+(14696, 5038, 15), -- Summon PVP Penalty
 -- Mechanic Golem
 (14697, 4121, 6), -- Summoned Monster Magic Protection
-(14697, 4408, 4), -- HP High
-(14697, 4409, 1), -- MP Increase (1x)
-(14697, 4410, 11), -- Average P. Atk.
-(14697, 4411, 13), -- Slightly Strong M. Atk.
-(14697, 4412, 11), -- Average P. Def.
-(14697, 4413, 11), -- Average M. Def.
-(14697, 4414, 2), -- Standard Type
-(14697, 4415, 3), -- One-handed Sword
-(14697, 4416, 2), -- Magic Creatures
-(14697, 5038, 15), -- Servitor PvP Penalty
+(14697, 4408, 4), -- HP Modifiers
+(14697, 4409, 1), -- MP Modifiers
+(14697, 4410, 11), -- P. Atk. Modifiers
+(14697, 4411, 13), -- M. Atk. Modifiers
+(14697, 4412, 11), -- P. Def. Modifiers
+(14697, 4413, 11), -- M. Def. Modifiers
+(14697, 4414, 2), -- Armor Type
+(14697, 4415, 3), -- Weapon Type
+(14697, 4416, 2), -- Races
+(14697, 5038, 15), -- Summon PVP Penalty
 -- Mechanic Golem
 (14698, 4121, 6), -- Summoned Monster Magic Protection
-(14698, 4408, 4), -- HP High
-(14698, 4409, 1), -- MP Increase (1x)
-(14698, 4410, 11), -- Average P. Atk.
-(14698, 4411, 13), -- Slightly Strong M. Atk.
-(14698, 4412, 11), -- Average P. Def.
-(14698, 4413, 11), -- Average M. Def.
-(14698, 4414, 2), -- Standard Type
-(14698, 4415, 3), -- One-handed Sword
-(14698, 4416, 2), -- Magic Creatures
-(14698, 5038, 15), -- Servitor PvP Penalty
+(14698, 4408, 4), -- HP Modifiers
+(14698, 4409, 1), -- MP Modifiers
+(14698, 4410, 11), -- P. Atk. Modifiers
+(14698, 4411, 13), -- M. Atk. Modifiers
+(14698, 4412, 11), -- P. Def. Modifiers
+(14698, 4413, 11), -- M. Def. Modifiers
+(14698, 4414, 2), -- Armor Type
+(14698, 4415, 3), -- Weapon Type
+(14698, 4416, 2), -- Races
+(14698, 5038, 15), -- Summon PVP Penalty
 -- Mechanic Golem
 (14699, 4121, 6), -- Summoned Monster Magic Protection
-(14699, 4408, 4), -- HP High
-(14699, 4409, 1), -- MP Increase (1x)
-(14699, 4410, 11), -- Average P. Atk.
-(14699, 4411, 13), -- Slightly Strong M. Atk.
-(14699, 4412, 11), -- Average P. Def.
-(14699, 4413, 11), -- Average M. Def.
-(14699, 4414, 2), -- Standard Type
-(14699, 4415, 3), -- One-handed Sword
-(14699, 4416, 2), -- Magic Creatures
-(14699, 5038, 15), -- Servitor PvP Penalty
+(14699, 4408, 4), -- HP Modifiers
+(14699, 4409, 1), -- MP Modifiers
+(14699, 4410, 11), -- P. Atk. Modifiers
+(14699, 4411, 13), -- M. Atk. Modifiers
+(14699, 4412, 11), -- P. Def. Modifiers
+(14699, 4413, 11), -- M. Def. Modifiers
+(14699, 4414, 2), -- Armor Type
+(14699, 4415, 3), -- Weapon Type
+(14699, 4416, 2), -- Races
+(14699, 5038, 15), -- Summon PVP Penalty
 -- Mechanic Golem
 (14700, 4121, 6), -- Summoned Monster Magic Protection
-(14700, 4408, 4), -- HP High
-(14700, 4409, 1), -- MP Increase (1x)
-(14700, 4410, 11), -- Average P. Atk.
-(14700, 4411, 13), -- Slightly Strong M. Atk.
-(14700, 4412, 11), -- Average P. Def.
-(14700, 4413, 11), -- Average M. Def.
-(14700, 4414, 2), -- Standard Type
-(14700, 4415, 3), -- One-handed Sword
-(14700, 4416, 2), -- Magic Creatures
-(14700, 5038, 15), -- Servitor PvP Penalty
+(14700, 4408, 4), -- HP Modifiers
+(14700, 4409, 1), -- MP Modifiers
+(14700, 4410, 11), -- P. Atk. Modifiers
+(14700, 4411, 13), -- M. Atk. Modifiers
+(14700, 4412, 11), -- P. Def. Modifiers
+(14700, 4413, 11), -- M. Def. Modifiers
+(14700, 4414, 2), -- Armor Type
+(14700, 4415, 3), -- Weapon Type
+(14700, 4416, 2), -- Races
+(14700, 5038, 15), -- Summon PVP Penalty
 -- Mechanic Golem
 (14701, 4121, 6), -- Summoned Monster Magic Protection
-(14701, 4408, 4), -- HP High
-(14701, 4409, 1), -- MP Increase (1x)
-(14701, 4410, 11), -- Average P. Atk.
-(14701, 4411, 13), -- Slightly Strong M. Atk.
-(14701, 4412, 11), -- Average P. Def.
-(14701, 4413, 11), -- Average M. Def.
-(14701, 4414, 2), -- Standard Type
-(14701, 4415, 3), -- One-handed Sword
-(14701, 4416, 2), -- Magic Creatures
-(14701, 5038, 15), -- Servitor PvP Penalty
+(14701, 4408, 4), -- HP Modifiers
+(14701, 4409, 1), -- MP Modifiers
+(14701, 4410, 11), -- P. Atk. Modifiers
+(14701, 4411, 13), -- M. Atk. Modifiers
+(14701, 4412, 11), -- P. Def. Modifiers
+(14701, 4413, 11), -- M. Def. Modifiers
+(14701, 4414, 2), -- Armor Type
+(14701, 4415, 3), -- Weapon Type
+(14701, 4416, 2), -- Races
+(14701, 5038, 15), -- Summon PVP Penalty
 -- Big Boom
 (14702, 4121, 6), -- Summoned Monster Magic Protection
 (14702, 4139, 6), -- Boom Attack
-(14702, 4408, 1), -- HP Increase (1x)
-(14702, 4409, 1), -- MP Increase (1x)
-(14702, 4410, 11), -- Average P. Atk.
-(14702, 4411, 11), -- Average M. Atk.
-(14702, 4412, 11), -- Average P. Def.
-(14702, 4413, 11), -- Average M. Def.
-(14702, 4414, 2), -- Standard Type
-(14702, 4415, 3), -- One-handed Sword
-(14702, 4416, 2), -- Magic Creatures
+(14702, 4408, 1), -- HP Modifiers
+(14702, 4409, 1), -- MP Modifiers
+(14702, 4410, 11), -- P. Atk. Modifiers
+(14702, 4411, 11), -- M. Atk. Modifiers
+(14702, 4412, 11), -- P. Def. Modifiers
+(14702, 4413, 11), -- M. Def. Modifiers
+(14702, 4414, 2), -- Armor Type
+(14702, 4415, 3), -- Weapon Type
+(14702, 4416, 2), -- Races
 -- Big Boom
 (14703, 4121, 6), -- Summoned Monster Magic Protection
 (14703, 4139, 6), -- Boom Attack
-(14703, 4408, 1), -- HP Increase (1x)
-(14703, 4409, 1), -- MP Increase (1x)
-(14703, 4410, 11), -- Average P. Atk.
-(14703, 4411, 11), -- Average M. Atk.
-(14703, 4412, 11), -- Average P. Def.
-(14703, 4413, 11), -- Average M. Def.
-(14703, 4414, 2), -- Standard Type
-(14703, 4415, 3), -- One-handed Sword
-(14703, 4416, 2), -- Magic Creatures
+(14703, 4408, 1), -- HP Modifiers
+(14703, 4409, 1), -- MP Modifiers
+(14703, 4410, 11), -- P. Atk. Modifiers
+(14703, 4411, 11), -- M. Atk. Modifiers
+(14703, 4412, 11), -- P. Def. Modifiers
+(14703, 4413, 11), -- M. Def. Modifiers
+(14703, 4414, 2), -- Armor Type
+(14703, 4415, 3), -- Weapon Type
+(14703, 4416, 2), -- Races
 -- Big Boom
 (14704, 4121, 6), -- Summoned Monster Magic Protection
-(14704, 4408, 1), -- HP Increase (1x)
-(14704, 4409, 1), -- MP Increase (1x)
-(14704, 4410, 11), -- Average P. Atk.
-(14704, 4411, 11), -- Average M. Atk.
-(14704, 4412, 11), -- Average P. Def.
-(14704, 4413, 11), -- Average M. Def.
-(14704, 4414, 2), -- Standard Type
-(14704, 4415, 3), -- One-handed Sword
-(14704, 4416, 2), -- Magic Creatures
+(14704, 4408, 1), -- HP Modifiers
+(14704, 4409, 1), -- MP Modifiers
+(14704, 4410, 11), -- P. Atk. Modifiers
+(14704, 4411, 11), -- M. Atk. Modifiers
+(14704, 4412, 11), -- P. Def. Modifiers
+(14704, 4413, 11), -- M. Def. Modifiers
+(14704, 4414, 2), -- Armor Type
+(14704, 4415, 3), -- Weapon Type
+(14704, 4416, 2), -- Races
 -- Big Boom
 (14705, 4121, 6), -- Summoned Monster Magic Protection
-(14705, 4408, 1), -- HP Increase (1x)
-(14705, 4409, 1), -- MP Increase (1x)
-(14705, 4410, 11), -- Average P. Atk.
-(14705, 4411, 11), -- Average M. Atk.
-(14705, 4412, 11), -- Average P. Def.
-(14705, 4413, 11), -- Average M. Def.
-(14705, 4414, 2), -- Standard Type
-(14705, 4415, 3), -- One-handed Sword
-(14705, 4416, 2), -- Magic Creatures
+(14705, 4408, 1), -- HP Modifiers
+(14705, 4409, 1), -- MP Modifiers
+(14705, 4410, 11), -- P. Atk. Modifiers
+(14705, 4411, 11), -- M. Atk. Modifiers
+(14705, 4412, 11), -- P. Def. Modifiers
+(14705, 4413, 11), -- M. Def. Modifiers
+(14705, 4414, 2), -- Armor Type
+(14705, 4415, 3), -- Weapon Type
+(14705, 4416, 2), -- Races
 -- Big Boom
 (14706, 4121, 6), -- Summoned Monster Magic Protection
-(14706, 4408, 1), -- HP Increase (1x)
-(14706, 4409, 1), -- MP Increase (1x)
-(14706, 4410, 11), -- Average P. Atk.
-(14706, 4411, 11), -- Average M. Atk.
-(14706, 4412, 11), -- Average P. Def.
-(14706, 4413, 11), -- Average M. Def.
-(14706, 4414, 2), -- Standard Type
-(14706, 4415, 3), -- One-handed Sword
-(14706, 4416, 2), -- Magic Creatures
+(14706, 4408, 1), -- HP Modifiers
+(14706, 4409, 1), -- MP Modifiers
+(14706, 4410, 11), -- P. Atk. Modifiers
+(14706, 4411, 11), -- M. Atk. Modifiers
+(14706, 4412, 11), -- P. Def. Modifiers
+(14706, 4413, 11), -- M. Def. Modifiers
+(14706, 4414, 2), -- Armor Type
+(14706, 4415, 3), -- Weapon Type
+(14706, 4416, 2), -- Races
 -- Big Boom
 (14707, 4121, 6), -- Summoned Monster Magic Protection
-(14707, 4408, 1), -- HP Increase (1x)
-(14707, 4409, 1), -- MP Increase (1x)
-(14707, 4410, 11), -- Average P. Atk.
-(14707, 4411, 11), -- Average M. Atk.
-(14707, 4412, 11), -- Average P. Def.
-(14707, 4413, 11), -- Average M. Def.
-(14707, 4414, 2), -- Standard Type
-(14707, 4415, 3), -- One-handed Sword
-(14707, 4416, 2), -- Magic Creatures
+(14707, 4408, 1), -- HP Modifiers
+(14707, 4409, 1), -- MP Modifiers
+(14707, 4410, 11), -- P. Atk. Modifiers
+(14707, 4411, 11), -- M. Atk. Modifiers
+(14707, 4412, 11), -- P. Def. Modifiers
+(14707, 4413, 11), -- M. Def. Modifiers
+(14707, 4414, 2), -- Armor Type
+(14707, 4415, 3), -- Weapon Type
+(14707, 4416, 2), -- Races
 -- Big Boom
 (14708, 4121, 6), -- Summoned Monster Magic Protection
-(14708, 4408, 1), -- HP Increase (1x)
-(14708, 4409, 1), -- MP Increase (1x)
-(14708, 4410, 11), -- Average P. Atk.
-(14708, 4411, 11), -- Average M. Atk.
-(14708, 4412, 11), -- Average P. Def.
-(14708, 4413, 11), -- Average M. Def.
-(14708, 4414, 2), -- Standard Type
-(14708, 4415, 3), -- One-handed Sword
-(14708, 4416, 2), -- Magic Creatures
+(14708, 4408, 1), -- HP Modifiers
+(14708, 4409, 1), -- MP Modifiers
+(14708, 4410, 11), -- P. Atk. Modifiers
+(14708, 4411, 11), -- M. Atk. Modifiers
+(14708, 4412, 11), -- P. Def. Modifiers
+(14708, 4413, 11), -- M. Def. Modifiers
+(14708, 4414, 2), -- Armor Type
+(14708, 4415, 3), -- Weapon Type
+(14708, 4416, 2), -- Races
 -- Big Boom
 (14709, 4121, 6), -- Summoned Monster Magic Protection
-(14709, 4408, 1), -- HP Increase (1x)
-(14709, 4409, 1), -- MP Increase (1x)
-(14709, 4410, 11), -- Average P. Atk.
-(14709, 4411, 11), -- Average M. Atk.
-(14709, 4412, 11), -- Average P. Def.
-(14709, 4413, 11), -- Average M. Def.
-(14709, 4414, 2), -- Standard Type
-(14709, 4415, 3), -- One-handed Sword
-(14709, 4416, 2), -- Magic Creatures
+(14709, 4408, 1), -- HP Modifiers
+(14709, 4409, 1), -- MP Modifiers
+(14709, 4410, 11), -- P. Atk. Modifiers
+(14709, 4411, 11), -- M. Atk. Modifiers
+(14709, 4412, 11), -- P. Def. Modifiers
+(14709, 4413, 11), -- M. Def. Modifiers
+(14709, 4414, 2), -- Armor Type
+(14709, 4415, 3), -- Weapon Type
+(14709, 4416, 2), -- Races
 -- Big Boom
 (14710, 4121, 6), -- Summoned Monster Magic Protection
-(14710, 4408, 1), -- HP Increase (1x)
-(14710, 4409, 1), -- MP Increase (1x)
-(14710, 4410, 11), -- Average P. Atk.
-(14710, 4411, 11), -- Average M. Atk.
-(14710, 4412, 11), -- Average P. Def.
-(14710, 4413, 11), -- Average M. Def.
-(14710, 4414, 2), -- Standard Type
-(14710, 4415, 3), -- One-handed Sword
-(14710, 4416, 2), -- Magic Creatures
+(14710, 4408, 1), -- HP Modifiers
+(14710, 4409, 1), -- MP Modifiers
+(14710, 4410, 11), -- P. Atk. Modifiers
+(14710, 4411, 11), -- M. Atk. Modifiers
+(14710, 4412, 11), -- P. Def. Modifiers
+(14710, 4413, 11), -- M. Def. Modifiers
+(14710, 4414, 2), -- Armor Type
+(14710, 4415, 3), -- Weapon Type
+(14710, 4416, 2), -- Races
 -- Big Boom
 (14711, 4121, 6), -- Summoned Monster Magic Protection
-(14711, 4408, 1), -- HP Increase (1x)
-(14711, 4409, 1), -- MP Increase (1x)
-(14711, 4410, 11), -- Average P. Atk.
-(14711, 4411, 11), -- Average M. Atk.
-(14711, 4412, 11), -- Average P. Def.
-(14711, 4413, 11), -- Average M. Def.
-(14711, 4414, 2), -- Standard Type
-(14711, 4415, 3), -- One-handed Sword
-(14711, 4416, 2), -- Magic Creatures
+(14711, 4408, 1), -- HP Modifiers
+(14711, 4409, 1), -- MP Modifiers
+(14711, 4410, 11), -- P. Atk. Modifiers
+(14711, 4411, 11), -- M. Atk. Modifiers
+(14711, 4412, 11), -- P. Def. Modifiers
+(14711, 4413, 11), -- M. Def. Modifiers
+(14711, 4414, 2), -- Armor Type
+(14711, 4415, 3), -- Weapon Type
+(14711, 4416, 2), -- Races
 -- Big Boom
 (14712, 4121, 6), -- Summoned Monster Magic Protection
-(14712, 4408, 1), -- HP Increase (1x)
-(14712, 4409, 1), -- MP Increase (1x)
-(14712, 4410, 11), -- Average P. Atk.
-(14712, 4411, 11), -- Average M. Atk.
-(14712, 4412, 11), -- Average P. Def.
-(14712, 4413, 11), -- Average M. Def.
-(14712, 4414, 2), -- Standard Type
-(14712, 4415, 3), -- One-handed Sword
-(14712, 4416, 2), -- Magic Creatures
+(14712, 4408, 1), -- HP Modifiers
+(14712, 4409, 1), -- MP Modifiers
+(14712, 4410, 11), -- P. Atk. Modifiers
+(14712, 4411, 11), -- M. Atk. Modifiers
+(14712, 4412, 11), -- P. Def. Modifiers
+(14712, 4413, 11), -- M. Def. Modifiers
+(14712, 4414, 2), -- Armor Type
+(14712, 4415, 3), -- Weapon Type
+(14712, 4416, 2), -- Races
 -- Big Boom
 (14713, 4121, 6), -- Summoned Monster Magic Protection
-(14713, 4408, 1), -- HP Increase (1x)
-(14713, 4409, 1), -- MP Increase (1x)
-(14713, 4410, 11), -- Average P. Atk.
-(14713, 4411, 11), -- Average M. Atk.
-(14713, 4412, 11), -- Average P. Def.
-(14713, 4413, 11), -- Average M. Def.
-(14713, 4414, 2), -- Standard Type
-(14713, 4415, 3), -- One-handed Sword
-(14713, 4416, 2), -- Magic Creatures
+(14713, 4408, 1), -- HP Modifiers
+(14713, 4409, 1), -- MP Modifiers
+(14713, 4410, 11), -- P. Atk. Modifiers
+(14713, 4411, 11), -- M. Atk. Modifiers
+(14713, 4412, 11), -- P. Def. Modifiers
+(14713, 4413, 11), -- M. Def. Modifiers
+(14713, 4414, 2), -- Armor Type
+(14713, 4415, 3), -- Weapon Type
+(14713, 4416, 2), -- Races
 -- Big Boom
 (14714, 4121, 6), -- Summoned Monster Magic Protection
-(14714, 4408, 1), -- HP Increase (1x)
-(14714, 4409, 1), -- MP Increase (1x)
-(14714, 4410, 11), -- Average P. Atk.
-(14714, 4411, 11), -- Average M. Atk.
-(14714, 4412, 11), -- Average P. Def.
-(14714, 4413, 11), -- Average M. Def.
-(14714, 4414, 2), -- Standard Type
-(14714, 4415, 3), -- One-handed Sword
-(14714, 4416, 2), -- Magic Creatures
+(14714, 4408, 1), -- HP Modifiers
+(14714, 4409, 1), -- MP Modifiers
+(14714, 4410, 11), -- P. Atk. Modifiers
+(14714, 4411, 11), -- M. Atk. Modifiers
+(14714, 4412, 11), -- P. Def. Modifiers
+(14714, 4413, 11), -- M. Def. Modifiers
+(14714, 4414, 2), -- Armor Type
+(14714, 4415, 3), -- Weapon Type
+(14714, 4416, 2), -- Races
 -- Big Boom
 (14715, 4121, 6), -- Summoned Monster Magic Protection
-(14715, 4408, 1), -- HP Increase (1x)
-(14715, 4409, 1), -- MP Increase (1x)
-(14715, 4410, 11), -- Average P. Atk.
-(14715, 4411, 11), -- Average M. Atk.
-(14715, 4412, 11), -- Average P. Def.
-(14715, 4413, 11), -- Average M. Def.
-(14715, 4414, 2), -- Standard Type
-(14715, 4415, 3), -- One-handed Sword
-(14715, 4416, 2), -- Magic Creatures
+(14715, 4408, 1), -- HP Modifiers
+(14715, 4409, 1), -- MP Modifiers
+(14715, 4410, 11), -- P. Atk. Modifiers
+(14715, 4411, 11), -- M. Atk. Modifiers
+(14715, 4412, 11), -- P. Def. Modifiers
+(14715, 4413, 11), -- M. Def. Modifiers
+(14715, 4414, 2), -- Armor Type
+(14715, 4415, 3), -- Weapon Type
+(14715, 4416, 2), -- Races
 -- Big Boom
 (14716, 4121, 6), -- Summoned Monster Magic Protection
-(14716, 4408, 1), -- HP Increase (1x)
-(14716, 4409, 1), -- MP Increase (1x)
-(14716, 4410, 11), -- Average P. Atk.
-(14716, 4411, 11), -- Average M. Atk.
-(14716, 4412, 11), -- Average P. Def.
-(14716, 4413, 11), -- Average M. Def.
-(14716, 4414, 2), -- Standard Type
-(14716, 4415, 3), -- One-handed Sword
-(14716, 4416, 2), -- Magic Creatures
+(14716, 4408, 1), -- HP Modifiers
+(14716, 4409, 1), -- MP Modifiers
+(14716, 4410, 11), -- P. Atk. Modifiers
+(14716, 4411, 11), -- M. Atk. Modifiers
+(14716, 4412, 11), -- P. Def. Modifiers
+(14716, 4413, 11), -- M. Def. Modifiers
+(14716, 4414, 2), -- Armor Type
+(14716, 4415, 3), -- Weapon Type
+(14716, 4416, 2), -- Races
 -- Big Boom
 (14717, 4121, 6), -- Summoned Monster Magic Protection
-(14717, 4408, 1), -- HP Increase (1x)
-(14717, 4409, 1), -- MP Increase (1x)
-(14717, 4410, 11), -- Average P. Atk.
-(14717, 4411, 11), -- Average M. Atk.
-(14717, 4412, 11), -- Average P. Def.
-(14717, 4413, 11), -- Average M. Def.
-(14717, 4414, 2), -- Standard Type
-(14717, 4415, 3), -- One-handed Sword
-(14717, 4416, 2), -- Magic Creatures
+(14717, 4408, 1), -- HP Modifiers
+(14717, 4409, 1), -- MP Modifiers
+(14717, 4410, 11), -- P. Atk. Modifiers
+(14717, 4411, 11), -- M. Atk. Modifiers
+(14717, 4412, 11), -- P. Def. Modifiers
+(14717, 4413, 11), -- M. Def. Modifiers
+(14717, 4414, 2), -- Armor Type
+(14717, 4415, 3), -- Weapon Type
+(14717, 4416, 2), -- Races
 -- Big Boom
 (14718, 4121, 6), -- Summoned Monster Magic Protection
-(14718, 4408, 1), -- HP Increase (1x)
-(14718, 4409, 1), -- MP Increase (1x)
-(14718, 4410, 11), -- Average P. Atk.
-(14718, 4411, 11), -- Average M. Atk.
-(14718, 4412, 11), -- Average P. Def.
-(14718, 4413, 11), -- Average M. Def.
-(14718, 4414, 2), -- Standard Type
-(14718, 4415, 3), -- One-handed Sword
-(14718, 4416, 2), -- Magic Creatures
+(14718, 4408, 1), -- HP Modifiers
+(14718, 4409, 1), -- MP Modifiers
+(14718, 4410, 11), -- P. Atk. Modifiers
+(14718, 4411, 11), -- M. Atk. Modifiers
+(14718, 4412, 11), -- P. Def. Modifiers
+(14718, 4413, 11), -- M. Def. Modifiers
+(14718, 4414, 2), -- Armor Type
+(14718, 4415, 3), -- Weapon Type
+(14718, 4416, 2), -- Races
 -- Big Boom
 (14719, 4121, 6), -- Summoned Monster Magic Protection
-(14719, 4408, 1), -- HP Increase (1x)
-(14719, 4409, 1), -- MP Increase (1x)
-(14719, 4410, 11), -- Average P. Atk.
-(14719, 4411, 11), -- Average M. Atk.
-(14719, 4412, 11), -- Average P. Def.
-(14719, 4413, 11), -- Average M. Def.
-(14719, 4414, 2), -- Standard Type
-(14719, 4415, 3), -- One-handed Sword
-(14719, 4416, 2), -- Magic Creatures
+(14719, 4408, 1), -- HP Modifiers
+(14719, 4409, 1), -- MP Modifiers
+(14719, 4410, 11), -- P. Atk. Modifiers
+(14719, 4411, 11), -- M. Atk. Modifiers
+(14719, 4412, 11), -- P. Def. Modifiers
+(14719, 4413, 11), -- M. Def. Modifiers
+(14719, 4414, 2), -- Armor Type
+(14719, 4415, 3), -- Weapon Type
+(14719, 4416, 2), -- Races
 -- Big Boom
 (14720, 4121, 6), -- Summoned Monster Magic Protection
-(14720, 4408, 1), -- HP Increase (1x)
-(14720, 4409, 1), -- MP Increase (1x)
-(14720, 4410, 11), -- Average P. Atk.
-(14720, 4411, 11), -- Average M. Atk.
-(14720, 4412, 11), -- Average P. Def.
-(14720, 4413, 11), -- Average M. Def.
-(14720, 4414, 2), -- Standard Type
-(14720, 4415, 3), -- One-handed Sword
-(14720, 4416, 2), -- Magic Creatures
+(14720, 4408, 1), -- HP Modifiers
+(14720, 4409, 1), -- MP Modifiers
+(14720, 4410, 11), -- P. Atk. Modifiers
+(14720, 4411, 11), -- M. Atk. Modifiers
+(14720, 4412, 11), -- P. Def. Modifiers
+(14720, 4413, 11), -- M. Def. Modifiers
+(14720, 4414, 2), -- Armor Type
+(14720, 4415, 3), -- Weapon Type
+(14720, 4416, 2), -- Races
 -- Big Boom
 (14721, 4121, 6), -- Summoned Monster Magic Protection
-(14721, 4408, 1), -- HP Increase (1x)
-(14721, 4409, 1), -- MP Increase (1x)
-(14721, 4410, 11), -- Average P. Atk.
-(14721, 4411, 11), -- Average M. Atk.
-(14721, 4412, 11), -- Average P. Def.
-(14721, 4413, 11), -- Average M. Def.
-(14721, 4414, 2), -- Standard Type
-(14721, 4415, 3), -- One-handed Sword
-(14721, 4416, 2), -- Magic Creatures
+(14721, 4408, 1), -- HP Modifiers
+(14721, 4409, 1), -- MP Modifiers
+(14721, 4410, 11), -- P. Atk. Modifiers
+(14721, 4411, 11), -- M. Atk. Modifiers
+(14721, 4412, 11), -- P. Def. Modifiers
+(14721, 4413, 11), -- M. Def. Modifiers
+(14721, 4414, 2), -- Armor Type
+(14721, 4415, 3), -- Weapon Type
+(14721, 4416, 2), -- Races
 -- Big Boom
 (14722, 4121, 6), -- Summoned Monster Magic Protection
-(14722, 4408, 1), -- HP Increase (1x)
-(14722, 4409, 1), -- MP Increase (1x)
-(14722, 4410, 11), -- Average P. Atk.
-(14722, 4411, 11), -- Average M. Atk.
-(14722, 4412, 11), -- Average P. Def.
-(14722, 4413, 11), -- Average M. Def.
-(14722, 4414, 2), -- Standard Type
-(14722, 4415, 3), -- One-handed Sword
-(14722, 4416, 2), -- Magic Creatures
+(14722, 4408, 1), -- HP Modifiers
+(14722, 4409, 1), -- MP Modifiers
+(14722, 4410, 11), -- P. Atk. Modifiers
+(14722, 4411, 11), -- M. Atk. Modifiers
+(14722, 4412, 11), -- P. Def. Modifiers
+(14722, 4413, 11), -- M. Def. Modifiers
+(14722, 4414, 2), -- Armor Type
+(14722, 4415, 3), -- Weapon Type
+(14722, 4416, 2), -- Races
 -- Big Boom
 (14723, 4121, 6), -- Summoned Monster Magic Protection
-(14723, 4408, 1), -- HP Increase (1x)
-(14723, 4409, 1), -- MP Increase (1x)
-(14723, 4410, 11), -- Average P. Atk.
-(14723, 4411, 11), -- Average M. Atk.
-(14723, 4412, 11), -- Average P. Def.
-(14723, 4413, 11), -- Average M. Def.
-(14723, 4414, 2), -- Standard Type
-(14723, 4415, 3), -- One-handed Sword
-(14723, 4416, 2), -- Magic Creatures
+(14723, 4408, 1), -- HP Modifiers
+(14723, 4409, 1), -- MP Modifiers
+(14723, 4410, 11), -- P. Atk. Modifiers
+(14723, 4411, 11), -- M. Atk. Modifiers
+(14723, 4412, 11), -- P. Def. Modifiers
+(14723, 4413, 11), -- M. Def. Modifiers
+(14723, 4414, 2), -- Armor Type
+(14723, 4415, 3), -- Weapon Type
+(14723, 4416, 2), -- Races
 -- Big Boom
 (14724, 4121, 6), -- Summoned Monster Magic Protection
-(14724, 4408, 1), -- HP Increase (1x)
-(14724, 4409, 1), -- MP Increase (1x)
-(14724, 4410, 11), -- Average P. Atk.
-(14724, 4411, 11), -- Average M. Atk.
-(14724, 4412, 11), -- Average P. Def.
-(14724, 4413, 11), -- Average M. Def.
-(14724, 4414, 2), -- Standard Type
-(14724, 4415, 3), -- One-handed Sword
-(14724, 4416, 2), -- Magic Creatures
+(14724, 4408, 1), -- HP Modifiers
+(14724, 4409, 1), -- MP Modifiers
+(14724, 4410, 11), -- P. Atk. Modifiers
+(14724, 4411, 11), -- M. Atk. Modifiers
+(14724, 4412, 11), -- P. Def. Modifiers
+(14724, 4413, 11), -- M. Def. Modifiers
+(14724, 4414, 2), -- Armor Type
+(14724, 4415, 3), -- Weapon Type
+(14724, 4416, 2), -- Races
 -- Big Boom
 (14725, 4121, 6), -- Summoned Monster Magic Protection
-(14725, 4408, 1), -- HP Increase (1x)
-(14725, 4409, 1), -- MP Increase (1x)
-(14725, 4410, 11), -- Average P. Atk.
-(14725, 4411, 11), -- Average M. Atk.
-(14725, 4412, 11), -- Average P. Def.
-(14725, 4413, 11), -- Average M. Def.
-(14725, 4414, 2), -- Standard Type
-(14725, 4415, 3), -- One-handed Sword
-(14725, 4416, 2), -- Magic Creatures
+(14725, 4408, 1), -- HP Modifiers
+(14725, 4409, 1), -- MP Modifiers
+(14725, 4410, 11), -- P. Atk. Modifiers
+(14725, 4411, 11), -- M. Atk. Modifiers
+(14725, 4412, 11), -- P. Def. Modifiers
+(14725, 4413, 11), -- M. Def. Modifiers
+(14725, 4414, 2), -- Armor Type
+(14725, 4415, 3), -- Weapon Type
+(14725, 4416, 2), -- Races
 -- Big Boom
 (14726, 4121, 6), -- Summoned Monster Magic Protection
-(14726, 4408, 1), -- HP Increase (1x)
-(14726, 4409, 1), -- MP Increase (1x)
-(14726, 4410, 11), -- Average P. Atk.
-(14726, 4411, 11), -- Average M. Atk.
-(14726, 4412, 11), -- Average P. Def.
-(14726, 4413, 11), -- Average M. Def.
-(14726, 4414, 2), -- Standard Type
-(14726, 4415, 3), -- One-handed Sword
-(14726, 4416, 2), -- Magic Creatures
+(14726, 4408, 1), -- HP Modifiers
+(14726, 4409, 1), -- MP Modifiers
+(14726, 4410, 11), -- P. Atk. Modifiers
+(14726, 4411, 11), -- M. Atk. Modifiers
+(14726, 4412, 11), -- P. Def. Modifiers
+(14726, 4413, 11), -- M. Def. Modifiers
+(14726, 4414, 2), -- Armor Type
+(14726, 4415, 3), -- Weapon Type
+(14726, 4416, 2), -- Races
 -- Big Boom
 (14727, 4121, 6), -- Summoned Monster Magic Protection
-(14727, 4408, 1), -- HP Increase (1x)
-(14727, 4409, 1), -- MP Increase (1x)
-(14727, 4410, 11), -- Average P. Atk.
-(14727, 4411, 11), -- Average M. Atk.
-(14727, 4412, 11), -- Average P. Def.
-(14727, 4413, 11), -- Average M. Def.
-(14727, 4414, 2), -- Standard Type
-(14727, 4415, 3), -- One-handed Sword
-(14727, 4416, 2), -- Magic Creatures
+(14727, 4408, 1), -- HP Modifiers
+(14727, 4409, 1), -- MP Modifiers
+(14727, 4410, 11), -- P. Atk. Modifiers
+(14727, 4411, 11), -- M. Atk. Modifiers
+(14727, 4412, 11), -- P. Def. Modifiers
+(14727, 4413, 11), -- M. Def. Modifiers
+(14727, 4414, 2), -- Armor Type
+(14727, 4415, 3), -- Weapon Type
+(14727, 4416, 2), -- Races
 -- Big Boom
 (14728, 4121, 6), -- Summoned Monster Magic Protection
-(14728, 4408, 1), -- HP Increase (1x)
-(14728, 4409, 1), -- MP Increase (1x)
-(14728, 4410, 11), -- Average P. Atk.
-(14728, 4411, 11), -- Average M. Atk.
-(14728, 4412, 11), -- Average P. Def.
-(14728, 4413, 11), -- Average M. Def.
-(14728, 4414, 2), -- Standard Type
-(14728, 4415, 3), -- One-handed Sword
-(14728, 4416, 2), -- Magic Creatures
+(14728, 4408, 1), -- HP Modifiers
+(14728, 4409, 1), -- MP Modifiers
+(14728, 4410, 11), -- P. Atk. Modifiers
+(14728, 4411, 11), -- M. Atk. Modifiers
+(14728, 4412, 11), -- P. Def. Modifiers
+(14728, 4413, 11), -- M. Def. Modifiers
+(14728, 4414, 2), -- Armor Type
+(14728, 4415, 3), -- Weapon Type
+(14728, 4416, 2), -- Races
 -- Big Boom
 (14729, 4121, 6), -- Summoned Monster Magic Protection
-(14729, 4408, 1), -- HP Increase (1x)
-(14729, 4409, 1), -- MP Increase (1x)
-(14729, 4410, 11), -- Average P. Atk.
-(14729, 4411, 11), -- Average M. Atk.
-(14729, 4412, 11), -- Average P. Def.
-(14729, 4413, 11), -- Average M. Def.
-(14729, 4414, 2), -- Standard Type
-(14729, 4415, 3), -- One-handed Sword
-(14729, 4416, 2), -- Magic Creatures
+(14729, 4408, 1), -- HP Modifiers
+(14729, 4409, 1), -- MP Modifiers
+(14729, 4410, 11), -- P. Atk. Modifiers
+(14729, 4411, 11), -- M. Atk. Modifiers
+(14729, 4412, 11), -- P. Def. Modifiers
+(14729, 4413, 11), -- M. Def. Modifiers
+(14729, 4414, 2), -- Armor Type
+(14729, 4415, 3), -- Weapon Type
+(14729, 4416, 2), -- Races
 -- Big Boom
 (14730, 4121, 6), -- Summoned Monster Magic Protection
-(14730, 4408, 1), -- HP Increase (1x)
-(14730, 4409, 1), -- MP Increase (1x)
-(14730, 4410, 11), -- Average P. Atk.
-(14730, 4411, 11), -- Average M. Atk.
-(14730, 4412, 11), -- Average P. Def.
-(14730, 4413, 11), -- Average M. Def.
-(14730, 4414, 2), -- Standard Type
-(14730, 4415, 3), -- One-handed Sword
-(14730, 4416, 2), -- Magic Creatures
+(14730, 4408, 1), -- HP Modifiers
+(14730, 4409, 1), -- MP Modifiers
+(14730, 4410, 11), -- P. Atk. Modifiers
+(14730, 4411, 11), -- M. Atk. Modifiers
+(14730, 4412, 11), -- P. Def. Modifiers
+(14730, 4413, 11), -- M. Def. Modifiers
+(14730, 4414, 2), -- Armor Type
+(14730, 4415, 3), -- Weapon Type
+(14730, 4416, 2), -- Races
 -- Big Boom
 (14731, 4121, 6), -- Summoned Monster Magic Protection
-(14731, 4408, 1), -- HP Increase (1x)
-(14731, 4409, 1), -- MP Increase (1x)
-(14731, 4410, 11), -- Average P. Atk.
-(14731, 4411, 11), -- Average M. Atk.
-(14731, 4412, 11), -- Average P. Def.
-(14731, 4413, 11), -- Average M. Def.
-(14731, 4414, 2), -- Standard Type
-(14731, 4415, 3), -- One-handed Sword
-(14731, 4416, 2), -- Magic Creatures
+(14731, 4408, 1), -- HP Modifiers
+(14731, 4409, 1), -- MP Modifiers
+(14731, 4410, 11), -- P. Atk. Modifiers
+(14731, 4411, 11), -- M. Atk. Modifiers
+(14731, 4412, 11), -- P. Def. Modifiers
+(14731, 4413, 11), -- M. Def. Modifiers
+(14731, 4414, 2), -- Armor Type
+(14731, 4415, 3), -- Weapon Type
+(14731, 4416, 2), -- Races
 -- Big Boom
 (14732, 4121, 6), -- Summoned Monster Magic Protection
-(14732, 4408, 1), -- HP Increase (1x)
-(14732, 4409, 1), -- MP Increase (1x)
-(14732, 4410, 11), -- Average P. Atk.
-(14732, 4411, 11), -- Average M. Atk.
-(14732, 4412, 11), -- Average P. Def.
-(14732, 4413, 11), -- Average M. Def.
-(14732, 4414, 2), -- Standard Type
-(14732, 4415, 3), -- One-handed Sword
-(14732, 4416, 2), -- Magic Creatures
+(14732, 4408, 1), -- HP Modifiers
+(14732, 4409, 1), -- MP Modifiers
+(14732, 4410, 11), -- P. Atk. Modifiers
+(14732, 4411, 11), -- M. Atk. Modifiers
+(14732, 4412, 11), -- P. Def. Modifiers
+(14732, 4413, 11), -- M. Def. Modifiers
+(14732, 4414, 2), -- Armor Type
+(14732, 4415, 3), -- Weapon Type
+(14732, 4416, 2), -- Races
 -- Big Boom
 (14733, 4121, 6), -- Summoned Monster Magic Protection
-(14733, 4408, 1), -- HP Increase (1x)
-(14733, 4409, 1), -- MP Increase (1x)
-(14733, 4410, 11), -- Average P. Atk.
-(14733, 4411, 11), -- Average M. Atk.
-(14733, 4412, 11), -- Average P. Def.
-(14733, 4413, 11), -- Average M. Def.
-(14733, 4414, 2), -- Standard Type
-(14733, 4415, 3), -- One-handed Sword
-(14733, 4416, 2), -- Magic Creatures
+(14733, 4408, 1), -- HP Modifiers
+(14733, 4409, 1), -- MP Modifiers
+(14733, 4410, 11), -- P. Atk. Modifiers
+(14733, 4411, 11), -- M. Atk. Modifiers
+(14733, 4412, 11), -- P. Def. Modifiers
+(14733, 4413, 11), -- M. Def. Modifiers
+(14733, 4414, 2), -- Armor Type
+(14733, 4415, 3), -- Weapon Type
+(14733, 4416, 2), -- Races
 -- Big Boom
 (14734, 4121, 6), -- Summoned Monster Magic Protection
-(14734, 4408, 1), -- HP Increase (1x)
-(14734, 4409, 1), -- MP Increase (1x)
-(14734, 4410, 11), -- Average P. Atk.
-(14734, 4411, 11), -- Average M. Atk.
-(14734, 4412, 11), -- Average P. Def.
-(14734, 4413, 11), -- Average M. Def.
-(14734, 4414, 2), -- Standard Type
-(14734, 4415, 3), -- One-handed Sword
-(14734, 4416, 2), -- Magic Creatures
+(14734, 4408, 1), -- HP Modifiers
+(14734, 4409, 1), -- MP Modifiers
+(14734, 4410, 11), -- P. Atk. Modifiers
+(14734, 4411, 11), -- M. Atk. Modifiers
+(14734, 4412, 11), -- P. Def. Modifiers
+(14734, 4413, 11), -- M. Def. Modifiers
+(14734, 4414, 2), -- Armor Type
+(14734, 4415, 3), -- Weapon Type
+(14734, 4416, 2), -- Races
 -- Big Boom
 (14735, 4121, 6), -- Summoned Monster Magic Protection
-(14735, 4408, 1), -- HP Increase (1x)
-(14735, 4409, 1), -- MP Increase (1x)
-(14735, 4410, 11), -- Average P. Atk.
-(14735, 4411, 11), -- Average M. Atk.
-(14735, 4412, 11), -- Average P. Def.
-(14735, 4413, 11), -- Average M. Def.
-(14735, 4414, 2), -- Standard Type
-(14735, 4415, 3), -- One-handed Sword
-(14735, 4416, 2), -- Magic Creatures
+(14735, 4408, 1), -- HP Modifiers
+(14735, 4409, 1), -- MP Modifiers
+(14735, 4410, 11), -- P. Atk. Modifiers
+(14735, 4411, 11), -- M. Atk. Modifiers
+(14735, 4412, 11), -- P. Def. Modifiers
+(14735, 4413, 11), -- M. Def. Modifiers
+(14735, 4414, 2), -- Armor Type
+(14735, 4415, 3), -- Weapon Type
+(14735, 4416, 2), -- Races
 -- Big Boom
 (14736, 4121, 6), -- Summoned Monster Magic Protection
-(14736, 4408, 1), -- HP Increase (1x)
-(14736, 4409, 1), -- MP Increase (1x)
-(14736, 4410, 11), -- Average P. Atk.
-(14736, 4411, 11), -- Average M. Atk.
-(14736, 4412, 11), -- Average P. Def.
-(14736, 4413, 11), -- Average M. Def.
-(14736, 4414, 2), -- Standard Type
-(14736, 4415, 3), -- One-handed Sword
-(14736, 4416, 2), -- Magic Creatures
+(14736, 4408, 1), -- HP Modifiers
+(14736, 4409, 1), -- MP Modifiers
+(14736, 4410, 11), -- P. Atk. Modifiers
+(14736, 4411, 11), -- M. Atk. Modifiers
+(14736, 4412, 11), -- P. Def. Modifiers
+(14736, 4413, 11), -- M. Def. Modifiers
+(14736, 4414, 2), -- Armor Type
+(14736, 4415, 3), -- Weapon Type
+(14736, 4416, 2), -- Races
 -- Siege Golem
 (14737, 4332, 1), -- Mental Aegis
-(14737, 4408, 1), -- HP Increase (1x)
-(14737, 4409, 1), -- MP Increase (1x)
-(14737, 4410, 11), -- Average P. Atk.
-(14737, 4411, 11), -- Average M. Atk.
-(14737, 4412, 11), -- Average P. Def.
-(14737, 4413, 11), -- Average M. Def.
-(14737, 4414, 2), -- Standard Type
-(14737, 4415, 11), -- Spears
-(14737, 4416, 21), -- Siege Weapons
+(14737, 4408, 1), -- HP Modifiers
+(14737, 4409, 1), -- MP Modifiers
+(14737, 4410, 11), -- P. Atk. Modifiers
+(14737, 4411, 11), -- M. Atk. Modifiers
+(14737, 4412, 11), -- P. Def. Modifiers
+(14737, 4413, 11), -- M. Def. Modifiers
+(14737, 4414, 2), -- Armor Type
+(14737, 4415, 11), -- Weapon Type
+(14737, 4416, 21), -- Races
 -- Siege Golem
 (14738, 4332, 1), -- Mental Aegis
-(14738, 4408, 1), -- HP Increase (1x)
-(14738, 4409, 1), -- MP Increase (1x)
-(14738, 4410, 11), -- Average P. Atk.
-(14738, 4411, 11), -- Average M. Atk.
-(14738, 4412, 11), -- Average P. Def.
-(14738, 4413, 11), -- Average M. Def.
-(14738, 4414, 2), -- Standard Type
-(14738, 4415, 11), -- Spears
-(14738, 4416, 21), -- Siege Weapons
+(14738, 4408, 1), -- HP Modifiers
+(14738, 4409, 1), -- MP Modifiers
+(14738, 4410, 11), -- P. Atk. Modifiers
+(14738, 4411, 11), -- M. Atk. Modifiers
+(14738, 4412, 11), -- P. Def. Modifiers
+(14738, 4413, 11), -- M. Def. Modifiers
+(14738, 4414, 2), -- Armor Type
+(14738, 4415, 11), -- Weapon Type
+(14738, 4416, 21), -- Races
 -- Siege Golem
 (14739, 4332, 1), -- Mental Aegis
-(14739, 4408, 1), -- HP Increase (1x)
-(14739, 4409, 1), -- MP Increase (1x)
-(14739, 4410, 11), -- Average P. Atk.
-(14739, 4411, 11), -- Average M. Atk.
-(14739, 4412, 11), -- Average P. Def.
-(14739, 4413, 11), -- Average M. Def.
-(14739, 4414, 2), -- Standard Type
-(14739, 4415, 11), -- Spears
-(14739, 4416, 21), -- Siege Weapons
+(14739, 4408, 1), -- HP Modifiers
+(14739, 4409, 1), -- MP Modifiers
+(14739, 4410, 11), -- P. Atk. Modifiers
+(14739, 4411, 11), -- M. Atk. Modifiers
+(14739, 4412, 11), -- P. Def. Modifiers
+(14739, 4413, 11), -- M. Def. Modifiers
+(14739, 4414, 2), -- Armor Type
+(14739, 4415, 11), -- Weapon Type
+(14739, 4416, 21), -- Races
 -- Siege Golem
 (14740, 4332, 1), -- Mental Aegis
-(14740, 4408, 1), -- HP Increase (1x)
-(14740, 4409, 1), -- MP Increase (1x)
-(14740, 4410, 11), -- Average P. Atk.
-(14740, 4411, 11), -- Average M. Atk.
-(14740, 4412, 11), -- Average P. Def.
-(14740, 4413, 11), -- Average M. Def.
-(14740, 4414, 2), -- Standard Type
-(14740, 4415, 11), -- Spears
-(14740, 4416, 21), -- Siege Weapons
+(14740, 4408, 1), -- HP Modifiers
+(14740, 4409, 1), -- MP Modifiers
+(14740, 4410, 11), -- P. Atk. Modifiers
+(14740, 4411, 11), -- M. Atk. Modifiers
+(14740, 4412, 11), -- P. Def. Modifiers
+(14740, 4413, 11), -- M. Def. Modifiers
+(14740, 4414, 2), -- Armor Type
+(14740, 4415, 11), -- Weapon Type
+(14740, 4416, 21), -- Races
 -- Siege Golem
 (14741, 4332, 1), -- Mental Aegis
-(14741, 4408, 1), -- HP Increase (1x)
-(14741, 4409, 1), -- MP Increase (1x)
-(14741, 4410, 11), -- Average P. Atk.
-(14741, 4411, 11), -- Average M. Atk.
-(14741, 4412, 11), -- Average P. Def.
-(14741, 4413, 11), -- Average M. Def.
-(14741, 4414, 2), -- Standard Type
-(14741, 4415, 11), -- Spears
-(14741, 4416, 21), -- Siege Weapons
+(14741, 4408, 1), -- HP Modifiers
+(14741, 4409, 1), -- MP Modifiers
+(14741, 4410, 11), -- P. Atk. Modifiers
+(14741, 4411, 11), -- M. Atk. Modifiers
+(14741, 4412, 11), -- P. Def. Modifiers
+(14741, 4413, 11), -- M. Def. Modifiers
+(14741, 4414, 2), -- Armor Type
+(14741, 4415, 11), -- Weapon Type
+(14741, 4416, 21), -- Races
 -- Siege Golem
 (14742, 4332, 1), -- Mental Aegis
-(14742, 4408, 1), -- HP Increase (1x)
-(14742, 4409, 1), -- MP Increase (1x)
-(14742, 4410, 11), -- Average P. Atk.
-(14742, 4411, 11), -- Average M. Atk.
-(14742, 4412, 11), -- Average P. Def.
-(14742, 4413, 11), -- Average M. Def.
-(14742, 4414, 2), -- Standard Type
-(14742, 4415, 11), -- Spears
-(14742, 4416, 21), -- Siege Weapons
+(14742, 4408, 1), -- HP Modifiers
+(14742, 4409, 1), -- MP Modifiers
+(14742, 4410, 11), -- P. Atk. Modifiers
+(14742, 4411, 11), -- M. Atk. Modifiers
+(14742, 4412, 11), -- P. Def. Modifiers
+(14742, 4413, 11), -- M. Def. Modifiers
+(14742, 4414, 2), -- Armor Type
+(14742, 4415, 11), -- Weapon Type
+(14742, 4416, 21), -- Races
 -- Siege Golem
 (14743, 4332, 1), -- Mental Aegis
-(14743, 4408, 1), -- HP Increase (1x)
-(14743, 4409, 1), -- MP Increase (1x)
-(14743, 4410, 11), -- Average P. Atk.
-(14743, 4411, 11), -- Average M. Atk.
-(14743, 4412, 11), -- Average P. Def.
-(14743, 4413, 11), -- Average M. Def.
-(14743, 4414, 2), -- Standard Type
-(14743, 4415, 11), -- Spears
-(14743, 4416, 21), -- Siege Weapons
+(14743, 4408, 1), -- HP Modifiers
+(14743, 4409, 1), -- MP Modifiers
+(14743, 4410, 11), -- P. Atk. Modifiers
+(14743, 4411, 11), -- M. Atk. Modifiers
+(14743, 4412, 11), -- P. Def. Modifiers
+(14743, 4413, 11), -- M. Def. Modifiers
+(14743, 4414, 2), -- Armor Type
+(14743, 4415, 11), -- Weapon Type
+(14743, 4416, 21), -- Races
 -- Siege Golem
 (14744, 4332, 1), -- Mental Aegis
-(14744, 4408, 1), -- HP Increase (1x)
-(14744, 4409, 1), -- MP Increase (1x)
-(14744, 4410, 11), -- Average P. Atk.
-(14744, 4411, 11), -- Average M. Atk.
-(14744, 4412, 11), -- Average P. Def.
-(14744, 4413, 11), -- Average M. Def.
-(14744, 4414, 2), -- Standard Type
-(14744, 4415, 11), -- Spears
-(14744, 4416, 21), -- Siege Weapons
+(14744, 4408, 1), -- HP Modifiers
+(14744, 4409, 1), -- MP Modifiers
+(14744, 4410, 11), -- P. Atk. Modifiers
+(14744, 4411, 11), -- M. Atk. Modifiers
+(14744, 4412, 11), -- P. Def. Modifiers
+(14744, 4413, 11), -- M. Def. Modifiers
+(14744, 4414, 2), -- Armor Type
+(14744, 4415, 11), -- Weapon Type
+(14744, 4416, 21), -- Races
 -- Siege Golem
 (14745, 4332, 1), -- Mental Aegis
-(14745, 4408, 1), -- HP Increase (1x)
-(14745, 4409, 1), -- MP Increase (1x)
-(14745, 4410, 11), -- Average P. Atk.
-(14745, 4411, 11), -- Average M. Atk.
-(14745, 4412, 11), -- Average P. Def.
-(14745, 4413, 11), -- Average M. Def.
-(14745, 4414, 2), -- Standard Type
-(14745, 4415, 11), -- Spears
-(14745, 4416, 21), -- Siege Weapons
+(14745, 4408, 1), -- HP Modifiers
+(14745, 4409, 1), -- MP Modifiers
+(14745, 4410, 11), -- P. Atk. Modifiers
+(14745, 4411, 11), -- M. Atk. Modifiers
+(14745, 4412, 11), -- P. Def. Modifiers
+(14745, 4413, 11), -- M. Def. Modifiers
+(14745, 4414, 2), -- Armor Type
+(14745, 4415, 11), -- Weapon Type
+(14745, 4416, 21), -- Races
 -- Siege Golem
 (14746, 4332, 1), -- Mental Aegis
-(14746, 4408, 1), -- HP Increase (1x)
-(14746, 4409, 1), -- MP Increase (1x)
-(14746, 4410, 11), -- Average P. Atk.
-(14746, 4411, 11), -- Average M. Atk.
-(14746, 4412, 11), -- Average P. Def.
-(14746, 4413, 11), -- Average M. Def.
-(14746, 4414, 2), -- Standard Type
-(14746, 4415, 11), -- Spears
-(14746, 4416, 21), -- Siege Weapons
+(14746, 4408, 1), -- HP Modifiers
+(14746, 4409, 1), -- MP Modifiers
+(14746, 4410, 11), -- P. Atk. Modifiers
+(14746, 4411, 11), -- M. Atk. Modifiers
+(14746, 4412, 11), -- P. Def. Modifiers
+(14746, 4413, 11), -- M. Def. Modifiers
+(14746, 4414, 2), -- Armor Type
+(14746, 4415, 11), -- Weapon Type
+(14746, 4416, 21), -- Races
 -- Siege Golem
 (14747, 4332, 1), -- Mental Aegis
-(14747, 4408, 1), -- HP Increase (1x)
-(14747, 4409, 1), -- MP Increase (1x)
-(14747, 4410, 11), -- Average P. Atk.
-(14747, 4411, 11), -- Average M. Atk.
-(14747, 4412, 11), -- Average P. Def.
-(14747, 4413, 11), -- Average M. Def.
-(14747, 4414, 2), -- Standard Type
-(14747, 4415, 11), -- Spears
-(14747, 4416, 21), -- Siege Weapons
+(14747, 4408, 1), -- HP Modifiers
+(14747, 4409, 1), -- MP Modifiers
+(14747, 4410, 11), -- P. Atk. Modifiers
+(14747, 4411, 11), -- M. Atk. Modifiers
+(14747, 4412, 11), -- P. Def. Modifiers
+(14747, 4413, 11), -- M. Def. Modifiers
+(14747, 4414, 2), -- Armor Type
+(14747, 4415, 11), -- Weapon Type
+(14747, 4416, 21), -- Races
 -- Siege Golem
 (14748, 4332, 1), -- Mental Aegis
-(14748, 4408, 1), -- HP Increase (1x)
-(14748, 4409, 1), -- MP Increase (1x)
-(14748, 4410, 11), -- Average P. Atk.
-(14748, 4411, 11), -- Average M. Atk.
-(14748, 4412, 11), -- Average P. Def.
-(14748, 4413, 11), -- Average M. Def.
-(14748, 4414, 2), -- Standard Type
-(14748, 4415, 11), -- Spears
-(14748, 4416, 21), -- Siege Weapons
+(14748, 4408, 1), -- HP Modifiers
+(14748, 4409, 1), -- MP Modifiers
+(14748, 4410, 11), -- P. Atk. Modifiers
+(14748, 4411, 11), -- M. Atk. Modifiers
+(14748, 4412, 11), -- P. Def. Modifiers
+(14748, 4413, 11), -- M. Def. Modifiers
+(14748, 4414, 2), -- Armor Type
+(14748, 4415, 11), -- Weapon Type
+(14748, 4416, 21), -- Races
 -- Siege Golem
 (14749, 4332, 1), -- Mental Aegis
-(14749, 4408, 1), -- HP Increase (1x)
-(14749, 4409, 1), -- MP Increase (1x)
-(14749, 4410, 11), -- Average P. Atk.
-(14749, 4411, 11), -- Average M. Atk.
-(14749, 4412, 11), -- Average P. Def.
-(14749, 4413, 11), -- Average M. Def.
-(14749, 4414, 2), -- Standard Type
-(14749, 4415, 11), -- Spears
-(14749, 4416, 21), -- Siege Weapons
+(14749, 4408, 1), -- HP Modifiers
+(14749, 4409, 1), -- MP Modifiers
+(14749, 4410, 11), -- P. Atk. Modifiers
+(14749, 4411, 11), -- M. Atk. Modifiers
+(14749, 4412, 11), -- P. Def. Modifiers
+(14749, 4413, 11), -- M. Def. Modifiers
+(14749, 4414, 2), -- Armor Type
+(14749, 4415, 11), -- Weapon Type
+(14749, 4416, 21), -- Races
 -- Siege Golem
 (14750, 4332, 1), -- Mental Aegis
-(14750, 4408, 1), -- HP Increase (1x)
-(14750, 4409, 1), -- MP Increase (1x)
-(14750, 4410, 11), -- Average P. Atk.
-(14750, 4411, 11), -- Average M. Atk.
-(14750, 4412, 11), -- Average P. Def.
-(14750, 4413, 11), -- Average M. Def.
-(14750, 4414, 2), -- Standard Type
-(14750, 4415, 11), -- Spears
-(14750, 4416, 21), -- Siege Weapons
+(14750, 4408, 1), -- HP Modifiers
+(14750, 4409, 1), -- MP Modifiers
+(14750, 4410, 11), -- P. Atk. Modifiers
+(14750, 4411, 11), -- M. Atk. Modifiers
+(14750, 4412, 11), -- P. Def. Modifiers
+(14750, 4413, 11), -- M. Def. Modifiers
+(14750, 4414, 2), -- Armor Type
+(14750, 4415, 11), -- Weapon Type
+(14750, 4416, 21), -- Races
 -- Siege Golem
 (14751, 4332, 1), -- Mental Aegis
-(14751, 4408, 1), -- HP Increase (1x)
-(14751, 4409, 1), -- MP Increase (1x)
-(14751, 4410, 11), -- Average P. Atk.
-(14751, 4411, 11), -- Average M. Atk.
-(14751, 4412, 11), -- Average P. Def.
-(14751, 4413, 11), -- Average M. Def.
-(14751, 4414, 2), -- Standard Type
-(14751, 4415, 11), -- Spears
-(14751, 4416, 21), -- Siege Weapons
+(14751, 4408, 1), -- HP Modifiers
+(14751, 4409, 1), -- MP Modifiers
+(14751, 4410, 11), -- P. Atk. Modifiers
+(14751, 4411, 11), -- M. Atk. Modifiers
+(14751, 4412, 11), -- P. Def. Modifiers
+(14751, 4413, 11), -- M. Def. Modifiers
+(14751, 4414, 2), -- Armor Type
+(14751, 4415, 11), -- Weapon Type
+(14751, 4416, 21), -- Races
 -- Siege Golem
 (14752, 4332, 1), -- Mental Aegis
-(14752, 4408, 1), -- HP Increase (1x)
-(14752, 4409, 1), -- MP Increase (1x)
-(14752, 4410, 11), -- Average P. Atk.
-(14752, 4411, 11), -- Average M. Atk.
-(14752, 4412, 11), -- Average P. Def.
-(14752, 4413, 11), -- Average M. Def.
-(14752, 4414, 2), -- Standard Type
-(14752, 4415, 11), -- Spears
-(14752, 4416, 21), -- Siege Weapons
+(14752, 4408, 1), -- HP Modifiers
+(14752, 4409, 1), -- MP Modifiers
+(14752, 4410, 11), -- P. Atk. Modifiers
+(14752, 4411, 11), -- M. Atk. Modifiers
+(14752, 4412, 11), -- P. Def. Modifiers
+(14752, 4413, 11), -- M. Def. Modifiers
+(14752, 4414, 2), -- Armor Type
+(14752, 4415, 11), -- Weapon Type
+(14752, 4416, 21), -- Races
 -- Siege Golem
 (14753, 4332, 1), -- Mental Aegis
-(14753, 4408, 1), -- HP Increase (1x)
-(14753, 4409, 1), -- MP Increase (1x)
-(14753, 4410, 11), -- Average P. Atk.
-(14753, 4411, 11), -- Average M. Atk.
-(14753, 4412, 11), -- Average P. Def.
-(14753, 4413, 11), -- Average M. Def.
-(14753, 4414, 2), -- Standard Type
-(14753, 4415, 11), -- Spears
-(14753, 4416, 21), -- Siege Weapons
+(14753, 4408, 1), -- HP Modifiers
+(14753, 4409, 1), -- MP Modifiers
+(14753, 4410, 11), -- P. Atk. Modifiers
+(14753, 4411, 11), -- M. Atk. Modifiers
+(14753, 4412, 11), -- P. Def. Modifiers
+(14753, 4413, 11), -- M. Def. Modifiers
+(14753, 4414, 2), -- Armor Type
+(14753, 4415, 11), -- Weapon Type
+(14753, 4416, 21), -- Races
 -- Siege Golem
 (14754, 4332, 1), -- Mental Aegis
-(14754, 4408, 1), -- HP Increase (1x)
-(14754, 4409, 1), -- MP Increase (1x)
-(14754, 4410, 11), -- Average P. Atk.
-(14754, 4411, 11), -- Average M. Atk.
-(14754, 4412, 11), -- Average P. Def.
-(14754, 4413, 11), -- Average M. Def.
-(14754, 4414, 2), -- Standard Type
-(14754, 4415, 11), -- Spears
-(14754, 4416, 21), -- Siege Weapons
+(14754, 4408, 1), -- HP Modifiers
+(14754, 4409, 1), -- MP Modifiers
+(14754, 4410, 11), -- P. Atk. Modifiers
+(14754, 4411, 11), -- M. Atk. Modifiers
+(14754, 4412, 11), -- P. Def. Modifiers
+(14754, 4413, 11), -- M. Def. Modifiers
+(14754, 4414, 2), -- Armor Type
+(14754, 4415, 11), -- Weapon Type
+(14754, 4416, 21), -- Races
 -- Siege Golem
 (14755, 4332, 1), -- Mental Aegis
-(14755, 4408, 1), -- HP Increase (1x)
-(14755, 4409, 1), -- MP Increase (1x)
-(14755, 4410, 11), -- Average P. Atk.
-(14755, 4411, 11), -- Average M. Atk.
-(14755, 4412, 11), -- Average P. Def.
-(14755, 4413, 11), -- Average M. Def.
-(14755, 4414, 2), -- Standard Type
-(14755, 4415, 11), -- Spears
-(14755, 4416, 21), -- Siege Weapons
+(14755, 4408, 1), -- HP Modifiers
+(14755, 4409, 1), -- MP Modifiers
+(14755, 4410, 11), -- P. Atk. Modifiers
+(14755, 4411, 11), -- M. Atk. Modifiers
+(14755, 4412, 11), -- P. Def. Modifiers
+(14755, 4413, 11), -- M. Def. Modifiers
+(14755, 4414, 2), -- Armor Type
+(14755, 4415, 11), -- Weapon Type
+(14755, 4416, 21), -- Races
 -- Siege Golem
 (14756, 4332, 1), -- Mental Aegis
-(14756, 4408, 1), -- HP Increase (1x)
-(14756, 4409, 1), -- MP Increase (1x)
-(14756, 4410, 11), -- Average P. Atk.
-(14756, 4411, 11), -- Average M. Atk.
-(14756, 4412, 11), -- Average P. Def.
-(14756, 4413, 11), -- Average M. Def.
-(14756, 4414, 2), -- Standard Type
-(14756, 4415, 11), -- Spears
-(14756, 4416, 21), -- Siege Weapons
+(14756, 4408, 1), -- HP Modifiers
+(14756, 4409, 1), -- MP Modifiers
+(14756, 4410, 11), -- P. Atk. Modifiers
+(14756, 4411, 11), -- M. Atk. Modifiers
+(14756, 4412, 11), -- P. Def. Modifiers
+(14756, 4413, 11), -- M. Def. Modifiers
+(14756, 4414, 2), -- Armor Type
+(14756, 4415, 11), -- Weapon Type
+(14756, 4416, 21), -- Races
 -- Siege Golem
 (14757, 4332, 1), -- Mental Aegis
-(14757, 4408, 1), -- HP Increase (1x)
-(14757, 4409, 1), -- MP Increase (1x)
-(14757, 4410, 11), -- Average P. Atk.
-(14757, 4411, 11), -- Average M. Atk.
-(14757, 4412, 11), -- Average P. Def.
-(14757, 4413, 11), -- Average M. Def.
-(14757, 4414, 2), -- Standard Type
-(14757, 4415, 11), -- Spears
-(14757, 4416, 21), -- Siege Weapons
+(14757, 4408, 1), -- HP Modifiers
+(14757, 4409, 1), -- MP Modifiers
+(14757, 4410, 11), -- P. Atk. Modifiers
+(14757, 4411, 11), -- M. Atk. Modifiers
+(14757, 4412, 11), -- P. Def. Modifiers
+(14757, 4413, 11), -- M. Def. Modifiers
+(14757, 4414, 2), -- Armor Type
+(14757, 4415, 11), -- Weapon Type
+(14757, 4416, 21), -- Races
 -- Siege Golem
 (14758, 4332, 1), -- Mental Aegis
-(14758, 4408, 1), -- HP Increase (1x)
-(14758, 4409, 1), -- MP Increase (1x)
-(14758, 4410, 11), -- Average P. Atk.
-(14758, 4411, 11), -- Average M. Atk.
-(14758, 4412, 11), -- Average P. Def.
-(14758, 4413, 11), -- Average M. Def.
-(14758, 4414, 2), -- Standard Type
-(14758, 4415, 11), -- Spears
-(14758, 4416, 21), -- Siege Weapons
+(14758, 4408, 1), -- HP Modifiers
+(14758, 4409, 1), -- MP Modifiers
+(14758, 4410, 11), -- P. Atk. Modifiers
+(14758, 4411, 11), -- M. Atk. Modifiers
+(14758, 4412, 11), -- P. Def. Modifiers
+(14758, 4413, 11), -- M. Def. Modifiers
+(14758, 4414, 2), -- Armor Type
+(14758, 4415, 11), -- Weapon Type
+(14758, 4416, 21), -- Races
 -- Siege Golem
 (14759, 4332, 1), -- Mental Aegis
-(14759, 4408, 1), -- HP Increase (1x)
-(14759, 4409, 1), -- MP Increase (1x)
-(14759, 4410, 11), -- Average P. Atk.
-(14759, 4411, 11), -- Average M. Atk.
-(14759, 4412, 11), -- Average P. Def.
-(14759, 4413, 11), -- Average M. Def.
-(14759, 4414, 2), -- Standard Type
-(14759, 4415, 11), -- Spears
-(14759, 4416, 21), -- Siege Weapons
+(14759, 4408, 1), -- HP Modifiers
+(14759, 4409, 1), -- MP Modifiers
+(14759, 4410, 11), -- P. Atk. Modifiers
+(14759, 4411, 11), -- M. Atk. Modifiers
+(14759, 4412, 11), -- P. Def. Modifiers
+(14759, 4413, 11), -- M. Def. Modifiers
+(14759, 4414, 2), -- Armor Type
+(14759, 4415, 11), -- Weapon Type
+(14759, 4416, 21), -- Races
 -- Siege Golem
 (14760, 4332, 1), -- Mental Aegis
-(14760, 4408, 1), -- HP Increase (1x)
-(14760, 4409, 1), -- MP Increase (1x)
-(14760, 4410, 11), -- Average P. Atk.
-(14760, 4411, 11), -- Average M. Atk.
-(14760, 4412, 11), -- Average P. Def.
-(14760, 4413, 11), -- Average M. Def.
-(14760, 4414, 2), -- Standard Type
-(14760, 4415, 11), -- Spears
-(14760, 4416, 21), -- Siege Weapons
+(14760, 4408, 1), -- HP Modifiers
+(14760, 4409, 1), -- MP Modifiers
+(14760, 4410, 11), -- P. Atk. Modifiers
+(14760, 4411, 11), -- M. Atk. Modifiers
+(14760, 4412, 11), -- P. Def. Modifiers
+(14760, 4413, 11), -- M. Def. Modifiers
+(14760, 4414, 2), -- Armor Type
+(14760, 4415, 11), -- Weapon Type
+(14760, 4416, 21), -- Races
 -- Siege Golem
 (14761, 4332, 1), -- Mental Aegis
-(14761, 4408, 1), -- HP Increase (1x)
-(14761, 4409, 1), -- MP Increase (1x)
-(14761, 4410, 11), -- Average P. Atk.
-(14761, 4411, 11), -- Average M. Atk.
-(14761, 4412, 11), -- Average P. Def.
-(14761, 4413, 11), -- Average M. Def.
-(14761, 4414, 2), -- Standard Type
-(14761, 4415, 11), -- Spears
-(14761, 4416, 21), -- Siege Weapons
+(14761, 4408, 1), -- HP Modifiers
+(14761, 4409, 1), -- MP Modifiers
+(14761, 4410, 11), -- P. Atk. Modifiers
+(14761, 4411, 11), -- M. Atk. Modifiers
+(14761, 4412, 11), -- P. Def. Modifiers
+(14761, 4413, 11), -- M. Def. Modifiers
+(14761, 4414, 2), -- Armor Type
+(14761, 4415, 11), -- Weapon Type
+(14761, 4416, 21), -- Races
 -- Siege Golem
 (14762, 4332, 1), -- Mental Aegis
-(14762, 4408, 1), -- HP Increase (1x)
-(14762, 4409, 1), -- MP Increase (1x)
-(14762, 4410, 11), -- Average P. Atk.
-(14762, 4411, 11), -- Average M. Atk.
-(14762, 4412, 11), -- Average P. Def.
-(14762, 4413, 11), -- Average M. Def.
-(14762, 4414, 2), -- Standard Type
-(14762, 4415, 11), -- Spears
-(14762, 4416, 21), -- Siege Weapons
+(14762, 4408, 1), -- HP Modifiers
+(14762, 4409, 1), -- MP Modifiers
+(14762, 4410, 11), -- P. Atk. Modifiers
+(14762, 4411, 11), -- M. Atk. Modifiers
+(14762, 4412, 11), -- P. Def. Modifiers
+(14762, 4413, 11), -- M. Def. Modifiers
+(14762, 4414, 2), -- Armor Type
+(14762, 4415, 11), -- Weapon Type
+(14762, 4416, 21), -- Races
 -- Siege Golem
 (14763, 4332, 1), -- Mental Aegis
-(14763, 4408, 1), -- HP Increase (1x)
-(14763, 4409, 1), -- MP Increase (1x)
-(14763, 4410, 11), -- Average P. Atk.
-(14763, 4411, 11), -- Average M. Atk.
-(14763, 4412, 11), -- Average P. Def.
-(14763, 4413, 11), -- Average M. Def.
-(14763, 4414, 2), -- Standard Type
-(14763, 4415, 11), -- Spears
-(14763, 4416, 21), -- Siege Weapons
+(14763, 4408, 1), -- HP Modifiers
+(14763, 4409, 1), -- MP Modifiers
+(14763, 4410, 11), -- P. Atk. Modifiers
+(14763, 4411, 11), -- M. Atk. Modifiers
+(14763, 4412, 11), -- P. Def. Modifiers
+(14763, 4413, 11), -- M. Def. Modifiers
+(14763, 4414, 2), -- Armor Type
+(14763, 4415, 11), -- Weapon Type
+(14763, 4416, 21), -- Races
 -- Siege Golem
 (14764, 4332, 1), -- Mental Aegis
-(14764, 4408, 1), -- HP Increase (1x)
-(14764, 4409, 1), -- MP Increase (1x)
-(14764, 4410, 11), -- Average P. Atk.
-(14764, 4411, 11), -- Average M. Atk.
-(14764, 4412, 11), -- Average P. Def.
-(14764, 4413, 11), -- Average M. Def.
-(14764, 4414, 2), -- Standard Type
-(14764, 4415, 11), -- Spears
-(14764, 4416, 21), -- Siege Weapons
+(14764, 4408, 1), -- HP Modifiers
+(14764, 4409, 1), -- MP Modifiers
+(14764, 4410, 11), -- P. Atk. Modifiers
+(14764, 4411, 11), -- M. Atk. Modifiers
+(14764, 4412, 11), -- P. Def. Modifiers
+(14764, 4413, 11), -- M. Def. Modifiers
+(14764, 4414, 2), -- Armor Type
+(14764, 4415, 11), -- Weapon Type
+(14764, 4416, 21), -- Races
 -- Siege Golem
 (14765, 4332, 1), -- Mental Aegis
-(14765, 4408, 1), -- HP Increase (1x)
-(14765, 4409, 1), -- MP Increase (1x)
-(14765, 4410, 11), -- Average P. Atk.
-(14765, 4411, 11), -- Average M. Atk.
-(14765, 4412, 11), -- Average P. Def.
-(14765, 4413, 11), -- Average M. Def.
-(14765, 4414, 2), -- Standard Type
-(14765, 4415, 11), -- Spears
-(14765, 4416, 21), -- Siege Weapons
+(14765, 4408, 1), -- HP Modifiers
+(14765, 4409, 1), -- MP Modifiers
+(14765, 4410, 11), -- P. Atk. Modifiers
+(14765, 4411, 11), -- M. Atk. Modifiers
+(14765, 4412, 11), -- P. Def. Modifiers
+(14765, 4413, 11), -- M. Def. Modifiers
+(14765, 4414, 2), -- Armor Type
+(14765, 4415, 11), -- Weapon Type
+(14765, 4416, 21), -- Races
 -- Siege Golem
 (14766, 4332, 1), -- Mental Aegis
-(14766, 4408, 1), -- HP Increase (1x)
-(14766, 4409, 1), -- MP Increase (1x)
-(14766, 4410, 11), -- Average P. Atk.
-(14766, 4411, 11), -- Average M. Atk.
-(14766, 4412, 11), -- Average P. Def.
-(14766, 4413, 11), -- Average M. Def.
-(14766, 4414, 2), -- Standard Type
-(14766, 4415, 11), -- Spears
-(14766, 4416, 21), -- Siege Weapons
+(14766, 4408, 1), -- HP Modifiers
+(14766, 4409, 1), -- MP Modifiers
+(14766, 4410, 11), -- P. Atk. Modifiers
+(14766, 4411, 11), -- M. Atk. Modifiers
+(14766, 4412, 11), -- P. Def. Modifiers
+(14766, 4413, 11), -- M. Def. Modifiers
+(14766, 4414, 2), -- Armor Type
+(14766, 4415, 11), -- Weapon Type
+(14766, 4416, 21), -- Races
 -- Siege Golem
 (14767, 4332, 1), -- Mental Aegis
-(14767, 4408, 1), -- HP Increase (1x)
-(14767, 4409, 1), -- MP Increase (1x)
-(14767, 4410, 11), -- Average P. Atk.
-(14767, 4411, 11), -- Average M. Atk.
-(14767, 4412, 11), -- Average P. Def.
-(14767, 4413, 11), -- Average M. Def.
-(14767, 4414, 2), -- Standard Type
-(14767, 4415, 11), -- Spears
-(14767, 4416, 21), -- Siege Weapons
+(14767, 4408, 1), -- HP Modifiers
+(14767, 4409, 1), -- MP Modifiers
+(14767, 4410, 11), -- P. Atk. Modifiers
+(14767, 4411, 11), -- M. Atk. Modifiers
+(14767, 4412, 11), -- P. Def. Modifiers
+(14767, 4413, 11), -- M. Def. Modifiers
+(14767, 4414, 2), -- Armor Type
+(14767, 4415, 11), -- Weapon Type
+(14767, 4416, 21), -- Races
 -- Wild Hog Cannon
 (14768, 4332, 1), -- Mental Aegis
-(14768, 4408, 11), -- HP Increase (3x)
-(14768, 4409, 1), -- MP Increase (1x)
-(14768, 4410, 11), -- Average P. Atk.
-(14768, 4411, 11), -- Average M. Atk.
-(14768, 4412, 18), -- Extremely Strong P. Def.
-(14768, 4413, 18), -- Extremely Strong M. Def.
-(14768, 4414, 2), -- Standard Type
-(14768, 4415, 3), -- One-handed Sword
-(14768, 4416, 21), -- Siege Weapons
+(14768, 4408, 11), -- HP Modifiers
+(14768, 4409, 1), -- MP Modifiers
+(14768, 4410, 11), -- P. Atk. Modifiers
+(14768, 4411, 11), -- M. Atk. Modifiers
+(14768, 4412, 18), -- P. Def. Modifiers
+(14768, 4413, 18), -- M. Def. Modifiers
+(14768, 4414, 2), -- Armor Type
+(14768, 4415, 3), -- Weapon Type
+(14768, 4416, 21), -- Races
 -- Wild Hog Cannon
 (14769, 4332, 1), -- Mental Aegis
-(14769, 4408, 11), -- HP Increase (3x)
-(14769, 4409, 1), -- MP Increase (1x)
-(14769, 4410, 11), -- Average P. Atk.
-(14769, 4411, 11), -- Average M. Atk.
-(14769, 4412, 18), -- Extremely Strong P. Def.
-(14769, 4413, 18), -- Extremely Strong M. Def.
-(14769, 4414, 2), -- Standard Type
-(14769, 4415, 3), -- One-handed Sword
-(14769, 4416, 21), -- Siege Weapons
+(14769, 4408, 11), -- HP Modifiers
+(14769, 4409, 1), -- MP Modifiers
+(14769, 4410, 11), -- P. Atk. Modifiers
+(14769, 4411, 11), -- M. Atk. Modifiers
+(14769, 4412, 18), -- P. Def. Modifiers
+(14769, 4413, 18), -- M. Def. Modifiers
+(14769, 4414, 2), -- Armor Type
+(14769, 4415, 3), -- Weapon Type
+(14769, 4416, 21), -- Races
 -- Wild Hog Cannon
 (14770, 4332, 1), -- Mental Aegis
-(14770, 4408, 11), -- HP Increase (3x)
-(14770, 4409, 1), -- MP Increase (1x)
-(14770, 4410, 11), -- Average P. Atk.
-(14770, 4411, 11), -- Average M. Atk.
-(14770, 4412, 18), -- Extremely Strong P. Def.
-(14770, 4413, 18), -- Extremely Strong M. Def.
-(14770, 4414, 2), -- Standard Type
-(14770, 4415, 3), -- One-handed Sword
-(14770, 4416, 21), -- Siege Weapons
+(14770, 4408, 11), -- HP Modifiers
+(14770, 4409, 1), -- MP Modifiers
+(14770, 4410, 11), -- P. Atk. Modifiers
+(14770, 4411, 11), -- M. Atk. Modifiers
+(14770, 4412, 18), -- P. Def. Modifiers
+(14770, 4413, 18), -- M. Def. Modifiers
+(14770, 4414, 2), -- Armor Type
+(14770, 4415, 3), -- Weapon Type
+(14770, 4416, 21), -- Races
 -- Wild Hog Cannon
 (14771, 4332, 1), -- Mental Aegis
-(14771, 4408, 11), -- HP Increase (3x)
-(14771, 4409, 1), -- MP Increase (1x)
-(14771, 4410, 11), -- Average P. Atk.
-(14771, 4411, 11), -- Average M. Atk.
-(14771, 4412, 18), -- Extremely Strong P. Def.
-(14771, 4413, 18), -- Extremely Strong M. Def.
-(14771, 4414, 2), -- Standard Type
-(14771, 4415, 3), -- One-handed Sword
-(14771, 4416, 21), -- Siege Weapons
+(14771, 4408, 11), -- HP Modifiers
+(14771, 4409, 1), -- MP Modifiers
+(14771, 4410, 11), -- P. Atk. Modifiers
+(14771, 4411, 11), -- M. Atk. Modifiers
+(14771, 4412, 18), -- P. Def. Modifiers
+(14771, 4413, 18), -- M. Def. Modifiers
+(14771, 4414, 2), -- Armor Type
+(14771, 4415, 3), -- Weapon Type
+(14771, 4416, 21), -- Races
 -- Wild Hog Cannon
 (14772, 4332, 1), -- Mental Aegis
-(14772, 4408, 11), -- HP Increase (3x)
-(14772, 4409, 1), -- MP Increase (1x)
-(14772, 4410, 11), -- Average P. Atk.
-(14772, 4411, 11), -- Average M. Atk.
-(14772, 4412, 18), -- Extremely Strong P. Def.
-(14772, 4413, 18), -- Extremely Strong M. Def.
-(14772, 4414, 2), -- Standard Type
-(14772, 4415, 3), -- One-handed Sword
-(14772, 4416, 21), -- Siege Weapons
+(14772, 4408, 11), -- HP Modifiers
+(14772, 4409, 1), -- MP Modifiers
+(14772, 4410, 11), -- P. Atk. Modifiers
+(14772, 4411, 11), -- M. Atk. Modifiers
+(14772, 4412, 18), -- P. Def. Modifiers
+(14772, 4413, 18), -- M. Def. Modifiers
+(14772, 4414, 2), -- Armor Type
+(14772, 4415, 3), -- Weapon Type
+(14772, 4416, 21), -- Races
 -- Wild Hog Cannon
 (14773, 4332, 1), -- Mental Aegis
-(14773, 4408, 11), -- HP Increase (3x)
-(14773, 4409, 1), -- MP Increase (1x)
-(14773, 4410, 11), -- Average P. Atk.
-(14773, 4411, 11), -- Average M. Atk.
-(14773, 4412, 18), -- Extremely Strong P. Def.
-(14773, 4413, 18), -- Extremely Strong M. Def.
-(14773, 4414, 2), -- Standard Type
-(14773, 4415, 3), -- One-handed Sword
-(14773, 4416, 21), -- Siege Weapons
+(14773, 4408, 11), -- HP Modifiers
+(14773, 4409, 1), -- MP Modifiers
+(14773, 4410, 11), -- P. Atk. Modifiers
+(14773, 4411, 11), -- M. Atk. Modifiers
+(14773, 4412, 18), -- P. Def. Modifiers
+(14773, 4413, 18), -- M. Def. Modifiers
+(14773, 4414, 2), -- Armor Type
+(14773, 4415, 3), -- Weapon Type
+(14773, 4416, 21), -- Races
 -- Wild Hog Cannon
 (14774, 4332, 1), -- Mental Aegis
-(14774, 4408, 11), -- HP Increase (3x)
-(14774, 4409, 1), -- MP Increase (1x)
-(14774, 4410, 11), -- Average P. Atk.
-(14774, 4411, 11), -- Average M. Atk.
-(14774, 4412, 18), -- Extremely Strong P. Def.
-(14774, 4413, 18), -- Extremely Strong M. Def.
-(14774, 4414, 2), -- Standard Type
-(14774, 4415, 3), -- One-handed Sword
-(14774, 4416, 21), -- Siege Weapons
+(14774, 4408, 11), -- HP Modifiers
+(14774, 4409, 1), -- MP Modifiers
+(14774, 4410, 11), -- P. Atk. Modifiers
+(14774, 4411, 11), -- M. Atk. Modifiers
+(14774, 4412, 18), -- P. Def. Modifiers
+(14774, 4413, 18), -- M. Def. Modifiers
+(14774, 4414, 2), -- Armor Type
+(14774, 4415, 3), -- Weapon Type
+(14774, 4416, 21), -- Races
 -- Wild Hog Cannon
 (14775, 4332, 1), -- Mental Aegis
-(14775, 4408, 11), -- HP Increase (3x)
-(14775, 4409, 1), -- MP Increase (1x)
-(14775, 4410, 11), -- Average P. Atk.
-(14775, 4411, 11), -- Average M. Atk.
-(14775, 4412, 18), -- Extremely Strong P. Def.
-(14775, 4413, 18), -- Extremely Strong M. Def.
-(14775, 4414, 2), -- Standard Type
-(14775, 4415, 3), -- One-handed Sword
-(14775, 4416, 21), -- Siege Weapons
+(14775, 4408, 11), -- HP Modifiers
+(14775, 4409, 1), -- MP Modifiers
+(14775, 4410, 11), -- P. Atk. Modifiers
+(14775, 4411, 11), -- M. Atk. Modifiers
+(14775, 4412, 18), -- P. Def. Modifiers
+(14775, 4413, 18), -- M. Def. Modifiers
+(14775, 4414, 2), -- Armor Type
+(14775, 4415, 3), -- Weapon Type
+(14775, 4416, 21), -- Races
 -- Wild Hog Cannon
 (14776, 4332, 1), -- Mental Aegis
-(14776, 4408, 11), -- HP Increase (3x)
-(14776, 4409, 1), -- MP Increase (1x)
-(14776, 4410, 11), -- Average P. Atk.
-(14776, 4411, 11), -- Average M. Atk.
-(14776, 4412, 18), -- Extremely Strong P. Def.
-(14776, 4413, 18), -- Extremely Strong M. Def.
-(14776, 4414, 2), -- Standard Type
-(14776, 4415, 3), -- One-handed Sword
-(14776, 4416, 21), -- Siege Weapons
+(14776, 4408, 11), -- HP Modifiers
+(14776, 4409, 1), -- MP Modifiers
+(14776, 4410, 11), -- P. Atk. Modifiers
+(14776, 4411, 11), -- M. Atk. Modifiers
+(14776, 4412, 18), -- P. Def. Modifiers
+(14776, 4413, 18), -- M. Def. Modifiers
+(14776, 4414, 2), -- Armor Type
+(14776, 4415, 3), -- Weapon Type
+(14776, 4416, 21), -- Races
 -- Wild Hog Cannon
 (14777, 4332, 1), -- Mental Aegis
-(14777, 4408, 11), -- HP Increase (3x)
-(14777, 4409, 1), -- MP Increase (1x)
-(14777, 4410, 11), -- Average P. Atk.
-(14777, 4411, 11), -- Average M. Atk.
-(14777, 4412, 18), -- Extremely Strong P. Def.
-(14777, 4413, 18), -- Extremely Strong M. Def.
-(14777, 4414, 2), -- Standard Type
-(14777, 4415, 3), -- One-handed Sword
-(14777, 4416, 21), -- Siege Weapons
+(14777, 4408, 11), -- HP Modifiers
+(14777, 4409, 1), -- MP Modifiers
+(14777, 4410, 11), -- P. Atk. Modifiers
+(14777, 4411, 11), -- M. Atk. Modifiers
+(14777, 4412, 18), -- P. Def. Modifiers
+(14777, 4413, 18), -- M. Def. Modifiers
+(14777, 4414, 2), -- Armor Type
+(14777, 4415, 3), -- Weapon Type
+(14777, 4416, 21), -- Races
 -- Wild Hog Cannon
 (14778, 4332, 1), -- Mental Aegis
-(14778, 4408, 11), -- HP Increase (3x)
-(14778, 4409, 1), -- MP Increase (1x)
-(14778, 4410, 11), -- Average P. Atk.
-(14778, 4411, 11), -- Average M. Atk.
-(14778, 4412, 18), -- Extremely Strong P. Def.
-(14778, 4413, 18), -- Extremely Strong M. Def.
-(14778, 4414, 2), -- Standard Type
-(14778, 4415, 3), -- One-handed Sword
-(14778, 4416, 21), -- Siege Weapons
+(14778, 4408, 11), -- HP Modifiers
+(14778, 4409, 1), -- MP Modifiers
+(14778, 4410, 11), -- P. Atk. Modifiers
+(14778, 4411, 11), -- M. Atk. Modifiers
+(14778, 4412, 18), -- P. Def. Modifiers
+(14778, 4413, 18), -- M. Def. Modifiers
+(14778, 4414, 2), -- Armor Type
+(14778, 4415, 3), -- Weapon Type
+(14778, 4416, 21), -- Races
 -- Wild Hog Cannon
 (14779, 4332, 1), -- Mental Aegis
-(14779, 4408, 11), -- HP Increase (3x)
-(14779, 4409, 1), -- MP Increase (1x)
-(14779, 4410, 11), -- Average P. Atk.
-(14779, 4411, 11), -- Average M. Atk.
-(14779, 4412, 18), -- Extremely Strong P. Def.
-(14779, 4413, 18), -- Extremely Strong M. Def.
-(14779, 4414, 2), -- Standard Type
-(14779, 4415, 3), -- One-handed Sword
-(14779, 4416, 21), -- Siege Weapons
+(14779, 4408, 11), -- HP Modifiers
+(14779, 4409, 1), -- MP Modifiers
+(14779, 4410, 11), -- P. Atk. Modifiers
+(14779, 4411, 11), -- M. Atk. Modifiers
+(14779, 4412, 18), -- P. Def. Modifiers
+(14779, 4413, 18), -- M. Def. Modifiers
+(14779, 4414, 2), -- Armor Type
+(14779, 4415, 3), -- Weapon Type
+(14779, 4416, 21), -- Races
 -- Wild Hog Cannon
 (14780, 4332, 1), -- Mental Aegis
-(14780, 4408, 11), -- HP Increase (3x)
-(14780, 4409, 1), -- MP Increase (1x)
-(14780, 4410, 11), -- Average P. Atk.
-(14780, 4411, 11), -- Average M. Atk.
-(14780, 4412, 18), -- Extremely Strong P. Def.
-(14780, 4413, 18), -- Extremely Strong M. Def.
-(14780, 4414, 2), -- Standard Type
-(14780, 4415, 3), -- One-handed Sword
-(14780, 4416, 21), -- Siege Weapons
+(14780, 4408, 11), -- HP Modifiers
+(14780, 4409, 1), -- MP Modifiers
+(14780, 4410, 11), -- P. Atk. Modifiers
+(14780, 4411, 11), -- M. Atk. Modifiers
+(14780, 4412, 18), -- P. Def. Modifiers
+(14780, 4413, 18), -- M. Def. Modifiers
+(14780, 4414, 2), -- Armor Type
+(14780, 4415, 3), -- Weapon Type
+(14780, 4416, 21), -- Races
 -- Wild Hog Cannon
 (14781, 4332, 1), -- Mental Aegis
-(14781, 4408, 11), -- HP Increase (3x)
-(14781, 4409, 1), -- MP Increase (1x)
-(14781, 4410, 11), -- Average P. Atk.
-(14781, 4411, 11), -- Average M. Atk.
-(14781, 4412, 18), -- Extremely Strong P. Def.
-(14781, 4413, 18), -- Extremely Strong M. Def.
-(14781, 4414, 2), -- Standard Type
-(14781, 4415, 3), -- One-handed Sword
-(14781, 4416, 21), -- Siege Weapons
+(14781, 4408, 11), -- HP Modifiers
+(14781, 4409, 1), -- MP Modifiers
+(14781, 4410, 11), -- P. Atk. Modifiers
+(14781, 4411, 11), -- M. Atk. Modifiers
+(14781, 4412, 18), -- P. Def. Modifiers
+(14781, 4413, 18), -- M. Def. Modifiers
+(14781, 4414, 2), -- Armor Type
+(14781, 4415, 3), -- Weapon Type
+(14781, 4416, 21), -- Races
 -- Wild Hog Cannon
 (14782, 4332, 1), -- Mental Aegis
-(14782, 4408, 11), -- HP Increase (3x)
-(14782, 4409, 1), -- MP Increase (1x)
-(14782, 4410, 11), -- Average P. Atk.
-(14782, 4411, 11), -- Average M. Atk.
-(14782, 4412, 18), -- Extremely Strong P. Def.
-(14782, 4413, 18), -- Extremely Strong M. Def.
-(14782, 4414, 2), -- Standard Type
-(14782, 4415, 3), -- One-handed Sword
-(14782, 4416, 21), -- Siege Weapons
+(14782, 4408, 11), -- HP Modifiers
+(14782, 4409, 1), -- MP Modifiers
+(14782, 4410, 11), -- P. Atk. Modifiers
+(14782, 4411, 11), -- M. Atk. Modifiers
+(14782, 4412, 18), -- P. Def. Modifiers
+(14782, 4413, 18), -- M. Def. Modifiers
+(14782, 4414, 2), -- Armor Type
+(14782, 4415, 3), -- Weapon Type
+(14782, 4416, 21), -- Races
 -- Wild Hog Cannon
 (14783, 4332, 1), -- Mental Aegis
-(14783, 4408, 11), -- HP Increase (3x)
-(14783, 4409, 1), -- MP Increase (1x)
-(14783, 4410, 11), -- Average P. Atk.
-(14783, 4411, 11), -- Average M. Atk.
-(14783, 4412, 18), -- Extremely Strong P. Def.
-(14783, 4413, 18), -- Extremely Strong M. Def.
-(14783, 4414, 2), -- Standard Type
-(14783, 4415, 3), -- One-handed Sword
-(14783, 4416, 21), -- Siege Weapons
+(14783, 4408, 11), -- HP Modifiers
+(14783, 4409, 1), -- MP Modifiers
+(14783, 4410, 11), -- P. Atk. Modifiers
+(14783, 4411, 11), -- M. Atk. Modifiers
+(14783, 4412, 18), -- P. Def. Modifiers
+(14783, 4413, 18), -- M. Def. Modifiers
+(14783, 4414, 2), -- Armor Type
+(14783, 4415, 3), -- Weapon Type
+(14783, 4416, 21), -- Races
 -- Wild Hog Cannon
 (14784, 4332, 1), -- Mental Aegis
-(14784, 4408, 11), -- HP Increase (3x)
-(14784, 4409, 1), -- MP Increase (1x)
-(14784, 4410, 11), -- Average P. Atk.
-(14784, 4411, 11), -- Average M. Atk.
-(14784, 4412, 18), -- Extremely Strong P. Def.
-(14784, 4413, 18), -- Extremely Strong M. Def.
-(14784, 4414, 2), -- Standard Type
-(14784, 4415, 3), -- One-handed Sword
-(14784, 4416, 21), -- Siege Weapons
+(14784, 4408, 11), -- HP Modifiers
+(14784, 4409, 1), -- MP Modifiers
+(14784, 4410, 11), -- P. Atk. Modifiers
+(14784, 4411, 11), -- M. Atk. Modifiers
+(14784, 4412, 18), -- P. Def. Modifiers
+(14784, 4413, 18), -- M. Def. Modifiers
+(14784, 4414, 2), -- Armor Type
+(14784, 4415, 3), -- Weapon Type
+(14784, 4416, 21), -- Races
 -- Wild Hog Cannon
 (14785, 4332, 1), -- Mental Aegis
-(14785, 4408, 11), -- HP Increase (3x)
-(14785, 4409, 1), -- MP Increase (1x)
-(14785, 4410, 11), -- Average P. Atk.
-(14785, 4411, 11), -- Average M. Atk.
-(14785, 4412, 18), -- Extremely Strong P. Def.
-(14785, 4413, 18), -- Extremely Strong M. Def.
-(14785, 4414, 2), -- Standard Type
-(14785, 4415, 3), -- One-handed Sword
-(14785, 4416, 21), -- Siege Weapons
+(14785, 4408, 11), -- HP Modifiers
+(14785, 4409, 1), -- MP Modifiers
+(14785, 4410, 11), -- P. Atk. Modifiers
+(14785, 4411, 11), -- M. Atk. Modifiers
+(14785, 4412, 18), -- P. Def. Modifiers
+(14785, 4413, 18), -- M. Def. Modifiers
+(14785, 4414, 2), -- Armor Type
+(14785, 4415, 3), -- Weapon Type
+(14785, 4416, 21), -- Races
 -- Wild Hog Cannon
 (14786, 4332, 1), -- Mental Aegis
-(14786, 4408, 11), -- HP Increase (3x)
-(14786, 4409, 1), -- MP Increase (1x)
-(14786, 4410, 11), -- Average P. Atk.
-(14786, 4411, 11), -- Average M. Atk.
-(14786, 4412, 18), -- Extremely Strong P. Def.
-(14786, 4413, 18), -- Extremely Strong M. Def.
-(14786, 4414, 2), -- Standard Type
-(14786, 4415, 3), -- One-handed Sword
-(14786, 4416, 21), -- Siege Weapons
+(14786, 4408, 11), -- HP Modifiers
+(14786, 4409, 1), -- MP Modifiers
+(14786, 4410, 11), -- P. Atk. Modifiers
+(14786, 4411, 11), -- M. Atk. Modifiers
+(14786, 4412, 18), -- P. Def. Modifiers
+(14786, 4413, 18), -- M. Def. Modifiers
+(14786, 4414, 2), -- Armor Type
+(14786, 4415, 3), -- Weapon Type
+(14786, 4416, 21), -- Races
 -- Wild Hog Cannon
 (14787, 4332, 1), -- Mental Aegis
-(14787, 4408, 11), -- HP Increase (3x)
-(14787, 4409, 1), -- MP Increase (1x)
-(14787, 4410, 11), -- Average P. Atk.
-(14787, 4411, 11), -- Average M. Atk.
-(14787, 4412, 18), -- Extremely Strong P. Def.
-(14787, 4413, 18), -- Extremely Strong M. Def.
-(14787, 4414, 2), -- Standard Type
-(14787, 4415, 3), -- One-handed Sword
-(14787, 4416, 21), -- Siege Weapons
+(14787, 4408, 11), -- HP Modifiers
+(14787, 4409, 1), -- MP Modifiers
+(14787, 4410, 11), -- P. Atk. Modifiers
+(14787, 4411, 11), -- M. Atk. Modifiers
+(14787, 4412, 18), -- P. Def. Modifiers
+(14787, 4413, 18), -- M. Def. Modifiers
+(14787, 4414, 2), -- Armor Type
+(14787, 4415, 3), -- Weapon Type
+(14787, 4416, 21), -- Races
 -- Wild Hog Cannon
 (14788, 4332, 1), -- Mental Aegis
-(14788, 4408, 11), -- HP Increase (3x)
-(14788, 4409, 1), -- MP Increase (1x)
-(14788, 4410, 11), -- Average P. Atk.
-(14788, 4411, 11), -- Average M. Atk.
-(14788, 4412, 18), -- Extremely Strong P. Def.
-(14788, 4413, 18), -- Extremely Strong M. Def.
-(14788, 4414, 2), -- Standard Type
-(14788, 4415, 3), -- One-handed Sword
-(14788, 4416, 21), -- Siege Weapons
+(14788, 4408, 11), -- HP Modifiers
+(14788, 4409, 1), -- MP Modifiers
+(14788, 4410, 11), -- P. Atk. Modifiers
+(14788, 4411, 11), -- M. Atk. Modifiers
+(14788, 4412, 18), -- P. Def. Modifiers
+(14788, 4413, 18), -- M. Def. Modifiers
+(14788, 4414, 2), -- Armor Type
+(14788, 4415, 3), -- Weapon Type
+(14788, 4416, 21), -- Races
 -- Wild Hog Cannon
 (14789, 4332, 1), -- Mental Aegis
-(14789, 4408, 11), -- HP Increase (3x)
-(14789, 4409, 1), -- MP Increase (1x)
-(14789, 4410, 11), -- Average P. Atk.
-(14789, 4411, 11), -- Average M. Atk.
-(14789, 4412, 18), -- Extremely Strong P. Def.
-(14789, 4413, 18), -- Extremely Strong M. Def.
-(14789, 4414, 2), -- Standard Type
-(14789, 4415, 3), -- One-handed Sword
-(14789, 4416, 21), -- Siege Weapons
+(14789, 4408, 11), -- HP Modifiers
+(14789, 4409, 1), -- MP Modifiers
+(14789, 4410, 11), -- P. Atk. Modifiers
+(14789, 4411, 11), -- M. Atk. Modifiers
+(14789, 4412, 18), -- P. Def. Modifiers
+(14789, 4413, 18), -- M. Def. Modifiers
+(14789, 4414, 2), -- Armor Type
+(14789, 4415, 3), -- Weapon Type
+(14789, 4416, 21), -- Races
 -- Wild Hog Cannon
 (14790, 4332, 1), -- Mental Aegis
-(14790, 4408, 11), -- HP Increase (3x)
-(14790, 4409, 1), -- MP Increase (1x)
-(14790, 4410, 11), -- Average P. Atk.
-(14790, 4411, 11), -- Average M. Atk.
-(14790, 4412, 18), -- Extremely Strong P. Def.
-(14790, 4413, 18), -- Extremely Strong M. Def.
-(14790, 4414, 2), -- Standard Type
-(14790, 4415, 3), -- One-handed Sword
-(14790, 4416, 21), -- Siege Weapons
+(14790, 4408, 11), -- HP Modifiers
+(14790, 4409, 1), -- MP Modifiers
+(14790, 4410, 11), -- P. Atk. Modifiers
+(14790, 4411, 11), -- M. Atk. Modifiers
+(14790, 4412, 18), -- P. Def. Modifiers
+(14790, 4413, 18), -- M. Def. Modifiers
+(14790, 4414, 2), -- Armor Type
+(14790, 4415, 3), -- Weapon Type
+(14790, 4416, 21), -- Races
 -- Wild Hog Cannon
 (14791, 4332, 1), -- Mental Aegis
-(14791, 4408, 11), -- HP Increase (3x)
-(14791, 4409, 1), -- MP Increase (1x)
-(14791, 4410, 11), -- Average P. Atk.
-(14791, 4411, 11), -- Average M. Atk.
-(14791, 4412, 18), -- Extremely Strong P. Def.
-(14791, 4413, 18), -- Extremely Strong M. Def.
-(14791, 4414, 2), -- Standard Type
-(14791, 4415, 3), -- One-handed Sword
-(14791, 4416, 21), -- Siege Weapons
+(14791, 4408, 11), -- HP Modifiers
+(14791, 4409, 1), -- MP Modifiers
+(14791, 4410, 11), -- P. Atk. Modifiers
+(14791, 4411, 11), -- M. Atk. Modifiers
+(14791, 4412, 18), -- P. Def. Modifiers
+(14791, 4413, 18), -- M. Def. Modifiers
+(14791, 4414, 2), -- Armor Type
+(14791, 4415, 3), -- Weapon Type
+(14791, 4416, 21), -- Races
 -- Wild Hog Cannon
 (14792, 4332, 1), -- Mental Aegis
-(14792, 4408, 11), -- HP Increase (3x)
-(14792, 4409, 1), -- MP Increase (1x)
-(14792, 4410, 11), -- Average P. Atk.
-(14792, 4411, 11), -- Average M. Atk.
-(14792, 4412, 18), -- Extremely Strong P. Def.
-(14792, 4413, 18), -- Extremely Strong M. Def.
-(14792, 4414, 2), -- Standard Type
-(14792, 4415, 3), -- One-handed Sword
-(14792, 4416, 21), -- Siege Weapons
+(14792, 4408, 11), -- HP Modifiers
+(14792, 4409, 1), -- MP Modifiers
+(14792, 4410, 11), -- P. Atk. Modifiers
+(14792, 4411, 11), -- M. Atk. Modifiers
+(14792, 4412, 18), -- P. Def. Modifiers
+(14792, 4413, 18), -- M. Def. Modifiers
+(14792, 4414, 2), -- Armor Type
+(14792, 4415, 3), -- Weapon Type
+(14792, 4416, 21), -- Races
 -- Wild Hog Cannon
 (14793, 4332, 1), -- Mental Aegis
-(14793, 4408, 11), -- HP Increase (3x)
-(14793, 4409, 1), -- MP Increase (1x)
-(14793, 4410, 11), -- Average P. Atk.
-(14793, 4411, 11), -- Average M. Atk.
-(14793, 4412, 18), -- Extremely Strong P. Def.
-(14793, 4413, 18), -- Extremely Strong M. Def.
-(14793, 4414, 2), -- Standard Type
-(14793, 4415, 3), -- One-handed Sword
-(14793, 4416, 21), -- Siege Weapons
+(14793, 4408, 11), -- HP Modifiers
+(14793, 4409, 1), -- MP Modifiers
+(14793, 4410, 11), -- P. Atk. Modifiers
+(14793, 4411, 11), -- M. Atk. Modifiers
+(14793, 4412, 18), -- P. Def. Modifiers
+(14793, 4413, 18), -- M. Def. Modifiers
+(14793, 4414, 2), -- Armor Type
+(14793, 4415, 3), -- Weapon Type
+(14793, 4416, 21), -- Races
 -- Wild Hog Cannon
 (14794, 4332, 1), -- Mental Aegis
-(14794, 4408, 11), -- HP Increase (3x)
-(14794, 4409, 1), -- MP Increase (1x)
-(14794, 4410, 11), -- Average P. Atk.
-(14794, 4411, 11), -- Average M. Atk.
-(14794, 4412, 18), -- Extremely Strong P. Def.
-(14794, 4413, 18), -- Extremely Strong M. Def.
-(14794, 4414, 2), -- Standard Type
-(14794, 4415, 3), -- One-handed Sword
-(14794, 4416, 21), -- Siege Weapons
+(14794, 4408, 11), -- HP Modifiers
+(14794, 4409, 1), -- MP Modifiers
+(14794, 4410, 11), -- P. Atk. Modifiers
+(14794, 4411, 11), -- M. Atk. Modifiers
+(14794, 4412, 18), -- P. Def. Modifiers
+(14794, 4413, 18), -- M. Def. Modifiers
+(14794, 4414, 2), -- Armor Type
+(14794, 4415, 3), -- Weapon Type
+(14794, 4416, 21), -- Races
 -- Wild Hog Cannon
 (14795, 4332, 1), -- Mental Aegis
-(14795, 4408, 11), -- HP Increase (3x)
-(14795, 4409, 1), -- MP Increase (1x)
-(14795, 4410, 11), -- Average P. Atk.
-(14795, 4411, 11), -- Average M. Atk.
-(14795, 4412, 18), -- Extremely Strong P. Def.
-(14795, 4413, 18), -- Extremely Strong M. Def.
-(14795, 4414, 2), -- Standard Type
-(14795, 4415, 3), -- One-handed Sword
-(14795, 4416, 21), -- Siege Weapons
+(14795, 4408, 11), -- HP Modifiers
+(14795, 4409, 1), -- MP Modifiers
+(14795, 4410, 11), -- P. Atk. Modifiers
+(14795, 4411, 11), -- M. Atk. Modifiers
+(14795, 4412, 18), -- P. Def. Modifiers
+(14795, 4413, 18), -- M. Def. Modifiers
+(14795, 4414, 2), -- Armor Type
+(14795, 4415, 3), -- Weapon Type
+(14795, 4416, 21), -- Races
 -- Wild Hog Cannon
 (14796, 4332, 1), -- Mental Aegis
-(14796, 4408, 11), -- HP Increase (3x)
-(14796, 4409, 1), -- MP Increase (1x)
-(14796, 4410, 11), -- Average P. Atk.
-(14796, 4411, 11), -- Average M. Atk.
-(14796, 4412, 18), -- Extremely Strong P. Def.
-(14796, 4413, 18), -- Extremely Strong M. Def.
-(14796, 4414, 2), -- Standard Type
-(14796, 4415, 3), -- One-handed Sword
-(14796, 4416, 21), -- Siege Weapons
+(14796, 4408, 11), -- HP Modifiers
+(14796, 4409, 1), -- MP Modifiers
+(14796, 4410, 11), -- P. Atk. Modifiers
+(14796, 4411, 11), -- M. Atk. Modifiers
+(14796, 4412, 18), -- P. Def. Modifiers
+(14796, 4413, 18), -- M. Def. Modifiers
+(14796, 4414, 2), -- Armor Type
+(14796, 4415, 3), -- Weapon Type
+(14796, 4416, 21), -- Races
 -- Wild Hog Cannon
 (14797, 4332, 1), -- Mental Aegis
-(14797, 4408, 11), -- HP Increase (3x)
-(14797, 4409, 1), -- MP Increase (1x)
-(14797, 4410, 11), -- Average P. Atk.
-(14797, 4411, 11), -- Average M. Atk.
-(14797, 4412, 18), -- Extremely Strong P. Def.
-(14797, 4413, 18), -- Extremely Strong M. Def.
-(14797, 4414, 2), -- Standard Type
-(14797, 4415, 3), -- One-handed Sword
-(14797, 4416, 21), -- Siege Weapons
+(14797, 4408, 11), -- HP Modifiers
+(14797, 4409, 1), -- MP Modifiers
+(14797, 4410, 11), -- P. Atk. Modifiers
+(14797, 4411, 11), -- M. Atk. Modifiers
+(14797, 4412, 18), -- P. Def. Modifiers
+(14797, 4413, 18), -- M. Def. Modifiers
+(14797, 4414, 2), -- Armor Type
+(14797, 4415, 3), -- Weapon Type
+(14797, 4416, 21), -- Races
 -- Wild Hog Cannon
 (14798, 4332, 1), -- Mental Aegis
-(14798, 4408, 11), -- HP Increase (3x)
-(14798, 4409, 1), -- MP Increase (1x)
-(14798, 4410, 11), -- Average P. Atk.
-(14798, 4411, 11), -- Average M. Atk.
-(14798, 4412, 18), -- Extremely Strong P. Def.
-(14798, 4413, 18), -- Extremely Strong M. Def.
-(14798, 4414, 2), -- Standard Type
-(14798, 4415, 3), -- One-handed Sword
-(14798, 4416, 21), -- Siege Weapons
+(14798, 4408, 11), -- HP Modifiers
+(14798, 4409, 1), -- MP Modifiers
+(14798, 4410, 11), -- P. Atk. Modifiers
+(14798, 4411, 11), -- M. Atk. Modifiers
+(14798, 4412, 18), -- P. Def. Modifiers
+(14798, 4413, 18), -- M. Def. Modifiers
+(14798, 4414, 2), -- Armor Type
+(14798, 4415, 3), -- Weapon Type
+(14798, 4416, 21), -- Races
 -- Dark Panther
 (14799, 4121, 6), -- Summoned Monster Magic Protection
-(14799, 4408, 4), -- HP High
-(14799, 4409, 1), -- MP Increase (1x)
-(14799, 4410, 12), -- Slightly Strong P. Atk.
-(14799, 4411, 11), -- Average M. Atk.
-(14799, 4412, 11), -- Average P. Def.
-(14799, 4413, 11), -- Average M. Def.
-(14799, 4414, 2), -- Standard Type
-(14799, 4415, 3), -- One-handed Sword
-(14799, 4416, 4), -- Animals
-(14799, 5038, 15), -- Servitor PvP Penalty
+(14799, 4408, 4), -- HP Modifiers
+(14799, 4409, 1), -- MP Modifiers
+(14799, 4410, 12), -- P. Atk. Modifiers
+(14799, 4411, 11), -- M. Atk. Modifiers
+(14799, 4412, 11), -- P. Def. Modifiers
+(14799, 4413, 11), -- M. Def. Modifiers
+(14799, 4414, 2), -- Armor Type
+(14799, 4415, 3), -- Weapon Type
+(14799, 4416, 4), -- Races
+(14799, 5038, 15), -- Summon PVP Penalty
 -- Dark Panther
 (14800, 4121, 6), -- Summoned Monster Magic Protection
-(14800, 4408, 4), -- HP High
-(14800, 4409, 1), -- MP Increase (1x)
-(14800, 4410, 12), -- Slightly Strong P. Atk.
-(14800, 4411, 11), -- Average M. Atk.
-(14800, 4412, 11), -- Average P. Def.
-(14800, 4413, 11), -- Average M. Def.
-(14800, 4414, 2), -- Standard Type
-(14800, 4415, 3), -- One-handed Sword
-(14800, 4416, 4), -- Animals
-(14800, 5038, 15), -- Servitor PvP Penalty
+(14800, 4408, 4), -- HP Modifiers
+(14800, 4409, 1), -- MP Modifiers
+(14800, 4410, 12), -- P. Atk. Modifiers
+(14800, 4411, 11), -- M. Atk. Modifiers
+(14800, 4412, 11), -- P. Def. Modifiers
+(14800, 4413, 11), -- M. Def. Modifiers
+(14800, 4414, 2), -- Armor Type
+(14800, 4415, 3), -- Weapon Type
+(14800, 4416, 4), -- Races
+(14800, 5038, 15), -- Summon PVP Penalty
 -- Dark Panther
 (14801, 4121, 6), -- Summoned Monster Magic Protection
-(14801, 4408, 4), -- HP High
-(14801, 4409, 1), -- MP Increase (1x)
-(14801, 4410, 12), -- Slightly Strong P. Atk.
-(14801, 4411, 11), -- Average M. Atk.
-(14801, 4412, 11), -- Average P. Def.
-(14801, 4413, 11), -- Average M. Def.
-(14801, 4414, 2), -- Standard Type
-(14801, 4415, 3), -- One-handed Sword
-(14801, 4416, 4), -- Animals
-(14801, 5038, 15), -- Servitor PvP Penalty
+(14801, 4408, 4), -- HP Modifiers
+(14801, 4409, 1), -- MP Modifiers
+(14801, 4410, 12), -- P. Atk. Modifiers
+(14801, 4411, 11), -- M. Atk. Modifiers
+(14801, 4412, 11), -- P. Def. Modifiers
+(14801, 4413, 11), -- M. Def. Modifiers
+(14801, 4414, 2), -- Armor Type
+(14801, 4415, 3), -- Weapon Type
+(14801, 4416, 4), -- Races
+(14801, 5038, 15), -- Summon PVP Penalty
 -- Dark Panther
 (14802, 4121, 6), -- Summoned Monster Magic Protection
-(14802, 4408, 4), -- HP High
-(14802, 4409, 1), -- MP Increase (1x)
-(14802, 4410, 12), -- Slightly Strong P. Atk.
-(14802, 4411, 11), -- Average M. Atk.
-(14802, 4412, 11), -- Average P. Def.
-(14802, 4413, 11), -- Average M. Def.
-(14802, 4414, 2), -- Standard Type
-(14802, 4415, 3), -- One-handed Sword
-(14802, 4416, 4), -- Animals
-(14802, 5038, 15), -- Servitor PvP Penalty
+(14802, 4408, 4), -- HP Modifiers
+(14802, 4409, 1), -- MP Modifiers
+(14802, 4410, 12), -- P. Atk. Modifiers
+(14802, 4411, 11), -- M. Atk. Modifiers
+(14802, 4412, 11), -- P. Def. Modifiers
+(14802, 4413, 11), -- M. Def. Modifiers
+(14802, 4414, 2), -- Armor Type
+(14802, 4415, 3), -- Weapon Type
+(14802, 4416, 4), -- Races
+(14802, 5038, 15), -- Summon PVP Penalty
 -- Dark Panther
 (14803, 4121, 6), -- Summoned Monster Magic Protection
-(14803, 4408, 4), -- HP High
-(14803, 4409, 1), -- MP Increase (1x)
-(14803, 4410, 12), -- Slightly Strong P. Atk.
-(14803, 4411, 11), -- Average M. Atk.
-(14803, 4412, 11), -- Average P. Def.
-(14803, 4413, 11), -- Average M. Def.
-(14803, 4414, 2), -- Standard Type
-(14803, 4415, 3), -- One-handed Sword
-(14803, 4416, 4), -- Animals
-(14803, 5038, 15), -- Servitor PvP Penalty
+(14803, 4408, 4), -- HP Modifiers
+(14803, 4409, 1), -- MP Modifiers
+(14803, 4410, 12), -- P. Atk. Modifiers
+(14803, 4411, 11), -- M. Atk. Modifiers
+(14803, 4412, 11), -- P. Def. Modifiers
+(14803, 4413, 11), -- M. Def. Modifiers
+(14803, 4414, 2), -- Armor Type
+(14803, 4415, 3), -- Weapon Type
+(14803, 4416, 4), -- Races
+(14803, 5038, 15), -- Summon PVP Penalty
 -- Dark Panther
 (14804, 4121, 6), -- Summoned Monster Magic Protection
-(14804, 4408, 4), -- HP High
-(14804, 4409, 1), -- MP Increase (1x)
-(14804, 4410, 12), -- Slightly Strong P. Atk.
-(14804, 4411, 11), -- Average M. Atk.
-(14804, 4412, 11), -- Average P. Def.
-(14804, 4413, 11), -- Average M. Def.
-(14804, 4414, 2), -- Standard Type
-(14804, 4415, 3), -- One-handed Sword
-(14804, 4416, 4), -- Animals
-(14804, 5038, 15), -- Servitor PvP Penalty
+(14804, 4408, 4), -- HP Modifiers
+(14804, 4409, 1), -- MP Modifiers
+(14804, 4410, 12), -- P. Atk. Modifiers
+(14804, 4411, 11), -- M. Atk. Modifiers
+(14804, 4412, 11), -- P. Def. Modifiers
+(14804, 4413, 11), -- M. Def. Modifiers
+(14804, 4414, 2), -- Armor Type
+(14804, 4415, 3), -- Weapon Type
+(14804, 4416, 4), -- Races
+(14804, 5038, 15), -- Summon PVP Penalty
 -- Dark Panther
 (14805, 4121, 6), -- Summoned Monster Magic Protection
-(14805, 4408, 4), -- HP High
-(14805, 4409, 1), -- MP Increase (1x)
-(14805, 4410, 12), -- Slightly Strong P. Atk.
-(14805, 4411, 11), -- Average M. Atk.
-(14805, 4412, 11), -- Average P. Def.
-(14805, 4413, 11), -- Average M. Def.
-(14805, 4414, 2), -- Standard Type
-(14805, 4415, 3), -- One-handed Sword
-(14805, 4416, 4), -- Animals
-(14805, 5038, 15), -- Servitor PvP Penalty
+(14805, 4408, 4), -- HP Modifiers
+(14805, 4409, 1), -- MP Modifiers
+(14805, 4410, 12), -- P. Atk. Modifiers
+(14805, 4411, 11), -- M. Atk. Modifiers
+(14805, 4412, 11), -- P. Def. Modifiers
+(14805, 4413, 11), -- M. Def. Modifiers
+(14805, 4414, 2), -- Armor Type
+(14805, 4415, 3), -- Weapon Type
+(14805, 4416, 4), -- Races
+(14805, 5038, 15), -- Summon PVP Penalty
 -- Dark Panther
 (14806, 4121, 6), -- Summoned Monster Magic Protection
-(14806, 4408, 4), -- HP High
-(14806, 4409, 1), -- MP Increase (1x)
-(14806, 4410, 12), -- Slightly Strong P. Atk.
-(14806, 4411, 11), -- Average M. Atk.
-(14806, 4412, 11), -- Average P. Def.
-(14806, 4413, 11), -- Average M. Def.
-(14806, 4414, 2), -- Standard Type
-(14806, 4415, 3), -- One-handed Sword
-(14806, 4416, 4), -- Animals
-(14806, 5038, 15), -- Servitor PvP Penalty
+(14806, 4408, 4), -- HP Modifiers
+(14806, 4409, 1), -- MP Modifiers
+(14806, 4410, 12), -- P. Atk. Modifiers
+(14806, 4411, 11), -- M. Atk. Modifiers
+(14806, 4412, 11), -- P. Def. Modifiers
+(14806, 4413, 11), -- M. Def. Modifiers
+(14806, 4414, 2), -- Armor Type
+(14806, 4415, 3), -- Weapon Type
+(14806, 4416, 4), -- Races
+(14806, 5038, 15), -- Summon PVP Penalty
 -- Dark Panther
 (14807, 4121, 6), -- Summoned Monster Magic Protection
-(14807, 4408, 4), -- HP High
-(14807, 4409, 1), -- MP Increase (1x)
-(14807, 4410, 12), -- Slightly Strong P. Atk.
-(14807, 4411, 11), -- Average M. Atk.
-(14807, 4412, 11), -- Average P. Def.
-(14807, 4413, 11), -- Average M. Def.
-(14807, 4414, 2), -- Standard Type
-(14807, 4415, 3), -- One-handed Sword
-(14807, 4416, 4), -- Animals
-(14807, 5038, 15), -- Servitor PvP Penalty
+(14807, 4408, 4), -- HP Modifiers
+(14807, 4409, 1), -- MP Modifiers
+(14807, 4410, 12), -- P. Atk. Modifiers
+(14807, 4411, 11), -- M. Atk. Modifiers
+(14807, 4412, 11), -- P. Def. Modifiers
+(14807, 4413, 11), -- M. Def. Modifiers
+(14807, 4414, 2), -- Armor Type
+(14807, 4415, 3), -- Weapon Type
+(14807, 4416, 4), -- Races
+(14807, 5038, 15), -- Summon PVP Penalty
 -- Dark Panther
 (14808, 4121, 6), -- Summoned Monster Magic Protection
-(14808, 4408, 4), -- HP High
-(14808, 4409, 1), -- MP Increase (1x)
-(14808, 4410, 12), -- Slightly Strong P. Atk.
-(14808, 4411, 11), -- Average M. Atk.
-(14808, 4412, 11), -- Average P. Def.
-(14808, 4413, 11), -- Average M. Def.
-(14808, 4414, 2), -- Standard Type
-(14808, 4415, 3), -- One-handed Sword
-(14808, 4416, 4), -- Animals
-(14808, 5038, 15), -- Servitor PvP Penalty
+(14808, 4408, 4), -- HP Modifiers
+(14808, 4409, 1), -- MP Modifiers
+(14808, 4410, 12), -- P. Atk. Modifiers
+(14808, 4411, 11), -- M. Atk. Modifiers
+(14808, 4412, 11), -- P. Def. Modifiers
+(14808, 4413, 11), -- M. Def. Modifiers
+(14808, 4414, 2), -- Armor Type
+(14808, 4415, 3), -- Weapon Type
+(14808, 4416, 4), -- Races
+(14808, 5038, 15), -- Summon PVP Penalty
 -- Dark Panther
 (14809, 4121, 6), -- Summoned Monster Magic Protection
-(14809, 4408, 4), -- HP High
-(14809, 4409, 1), -- MP Increase (1x)
-(14809, 4410, 12), -- Slightly Strong P. Atk.
-(14809, 4411, 11), -- Average M. Atk.
-(14809, 4412, 11), -- Average P. Def.
-(14809, 4413, 11), -- Average M. Def.
-(14809, 4414, 2), -- Standard Type
-(14809, 4415, 3), -- One-handed Sword
-(14809, 4416, 4), -- Animals
-(14809, 5038, 15), -- Servitor PvP Penalty
+(14809, 4408, 4), -- HP Modifiers
+(14809, 4409, 1), -- MP Modifiers
+(14809, 4410, 12), -- P. Atk. Modifiers
+(14809, 4411, 11), -- M. Atk. Modifiers
+(14809, 4412, 11), -- P. Def. Modifiers
+(14809, 4413, 11), -- M. Def. Modifiers
+(14809, 4414, 2), -- Armor Type
+(14809, 4415, 3), -- Weapon Type
+(14809, 4416, 4), -- Races
+(14809, 5038, 15), -- Summon PVP Penalty
 -- Dark Panther
 (14810, 4121, 6), -- Summoned Monster Magic Protection
-(14810, 4408, 4), -- HP High
-(14810, 4409, 1), -- MP Increase (1x)
-(14810, 4410, 12), -- Slightly Strong P. Atk.
-(14810, 4411, 11), -- Average M. Atk.
-(14810, 4412, 11), -- Average P. Def.
-(14810, 4413, 11), -- Average M. Def.
-(14810, 4414, 2), -- Standard Type
-(14810, 4415, 3), -- One-handed Sword
-(14810, 4416, 4), -- Animals
-(14810, 5038, 15), -- Servitor PvP Penalty
+(14810, 4408, 4), -- HP Modifiers
+(14810, 4409, 1), -- MP Modifiers
+(14810, 4410, 12), -- P. Atk. Modifiers
+(14810, 4411, 11), -- M. Atk. Modifiers
+(14810, 4412, 11), -- P. Def. Modifiers
+(14810, 4413, 11), -- M. Def. Modifiers
+(14810, 4414, 2), -- Armor Type
+(14810, 4415, 3), -- Weapon Type
+(14810, 4416, 4), -- Races
+(14810, 5038, 15), -- Summon PVP Penalty
 -- Dark Panther
 (14811, 4121, 6), -- Summoned Monster Magic Protection
-(14811, 4408, 4), -- HP High
-(14811, 4409, 1), -- MP Increase (1x)
-(14811, 4410, 12), -- Slightly Strong P. Atk.
-(14811, 4411, 11), -- Average M. Atk.
-(14811, 4412, 11), -- Average P. Def.
-(14811, 4413, 11), -- Average M. Def.
-(14811, 4414, 2), -- Standard Type
-(14811, 4415, 3), -- One-handed Sword
-(14811, 4416, 4), -- Animals
-(14811, 5038, 15), -- Servitor PvP Penalty
+(14811, 4408, 4), -- HP Modifiers
+(14811, 4409, 1), -- MP Modifiers
+(14811, 4410, 12), -- P. Atk. Modifiers
+(14811, 4411, 11), -- M. Atk. Modifiers
+(14811, 4412, 11), -- P. Def. Modifiers
+(14811, 4413, 11), -- M. Def. Modifiers
+(14811, 4414, 2), -- Armor Type
+(14811, 4415, 3), -- Weapon Type
+(14811, 4416, 4), -- Races
+(14811, 5038, 15), -- Summon PVP Penalty
 -- Dark Panther
 (14812, 4121, 6), -- Summoned Monster Magic Protection
-(14812, 4408, 4), -- HP High
-(14812, 4409, 1), -- MP Increase (1x)
-(14812, 4410, 12), -- Slightly Strong P. Atk.
-(14812, 4411, 11), -- Average M. Atk.
-(14812, 4412, 11), -- Average P. Def.
-(14812, 4413, 11), -- Average M. Def.
-(14812, 4414, 2), -- Standard Type
-(14812, 4415, 3), -- One-handed Sword
-(14812, 4416, 4), -- Animals
-(14812, 5038, 15), -- Servitor PvP Penalty
+(14812, 4408, 4), -- HP Modifiers
+(14812, 4409, 1), -- MP Modifiers
+(14812, 4410, 12), -- P. Atk. Modifiers
+(14812, 4411, 11), -- M. Atk. Modifiers
+(14812, 4412, 11), -- P. Def. Modifiers
+(14812, 4413, 11), -- M. Def. Modifiers
+(14812, 4414, 2), -- Armor Type
+(14812, 4415, 3), -- Weapon Type
+(14812, 4416, 4), -- Races
+(14812, 5038, 15), -- Summon PVP Penalty
 -- Dark Panther
 (14813, 4121, 6), -- Summoned Monster Magic Protection
-(14813, 4408, 4), -- HP High
-(14813, 4409, 1), -- MP Increase (1x)
-(14813, 4410, 12), -- Slightly Strong P. Atk.
-(14813, 4411, 11), -- Average M. Atk.
-(14813, 4412, 11), -- Average P. Def.
-(14813, 4413, 11), -- Average M. Def.
-(14813, 4414, 2), -- Standard Type
-(14813, 4415, 3), -- One-handed Sword
-(14813, 4416, 4), -- Animals
-(14813, 5038, 15), -- Servitor PvP Penalty
+(14813, 4408, 4), -- HP Modifiers
+(14813, 4409, 1), -- MP Modifiers
+(14813, 4410, 12), -- P. Atk. Modifiers
+(14813, 4411, 11), -- M. Atk. Modifiers
+(14813, 4412, 11), -- P. Def. Modifiers
+(14813, 4413, 11), -- M. Def. Modifiers
+(14813, 4414, 2), -- Armor Type
+(14813, 4415, 3), -- Weapon Type
+(14813, 4416, 4), -- Races
+(14813, 5038, 15), -- Summon PVP Penalty
 -- Dark Panther
 (14814, 4121, 6), -- Summoned Monster Magic Protection
-(14814, 4408, 4), -- HP High
-(14814, 4409, 1), -- MP Increase (1x)
-(14814, 4410, 12), -- Slightly Strong P. Atk.
-(14814, 4411, 11), -- Average M. Atk.
-(14814, 4412, 11), -- Average P. Def.
-(14814, 4413, 11), -- Average M. Def.
-(14814, 4414, 2), -- Standard Type
-(14814, 4415, 3), -- One-handed Sword
-(14814, 4416, 4), -- Animals
-(14814, 5038, 15), -- Servitor PvP Penalty
+(14814, 4408, 4), -- HP Modifiers
+(14814, 4409, 1), -- MP Modifiers
+(14814, 4410, 12), -- P. Atk. Modifiers
+(14814, 4411, 11), -- M. Atk. Modifiers
+(14814, 4412, 11), -- P. Def. Modifiers
+(14814, 4413, 11), -- M. Def. Modifiers
+(14814, 4414, 2), -- Armor Type
+(14814, 4415, 3), -- Weapon Type
+(14814, 4416, 4), -- Races
+(14814, 5038, 15), -- Summon PVP Penalty
 -- Dark Panther
 (14815, 4121, 6), -- Summoned Monster Magic Protection
-(14815, 4408, 4), -- HP High
-(14815, 4409, 1), -- MP Increase (1x)
-(14815, 4410, 12), -- Slightly Strong P. Atk.
-(14815, 4411, 11), -- Average M. Atk.
-(14815, 4412, 11), -- Average P. Def.
-(14815, 4413, 11), -- Average M. Def.
-(14815, 4414, 2), -- Standard Type
-(14815, 4415, 3), -- One-handed Sword
-(14815, 4416, 4), -- Animals
-(14815, 5038, 15), -- Servitor PvP Penalty
+(14815, 4408, 4), -- HP Modifiers
+(14815, 4409, 1), -- MP Modifiers
+(14815, 4410, 12), -- P. Atk. Modifiers
+(14815, 4411, 11), -- M. Atk. Modifiers
+(14815, 4412, 11), -- P. Def. Modifiers
+(14815, 4413, 11), -- M. Def. Modifiers
+(14815, 4414, 2), -- Armor Type
+(14815, 4415, 3), -- Weapon Type
+(14815, 4416, 4), -- Races
+(14815, 5038, 15), -- Summon PVP Penalty
 -- Dark Panther
 (14816, 4121, 6), -- Summoned Monster Magic Protection
-(14816, 4408, 4), -- HP High
-(14816, 4409, 1), -- MP Increase (1x)
-(14816, 4410, 12), -- Slightly Strong P. Atk.
-(14816, 4411, 11), -- Average M. Atk.
-(14816, 4412, 11), -- Average P. Def.
-(14816, 4413, 11), -- Average M. Def.
-(14816, 4414, 2), -- Standard Type
-(14816, 4415, 3), -- One-handed Sword
-(14816, 4416, 4), -- Animals
-(14816, 5038, 15), -- Servitor PvP Penalty
+(14816, 4408, 4), -- HP Modifiers
+(14816, 4409, 1), -- MP Modifiers
+(14816, 4410, 12), -- P. Atk. Modifiers
+(14816, 4411, 11), -- M. Atk. Modifiers
+(14816, 4412, 11), -- P. Def. Modifiers
+(14816, 4413, 11), -- M. Def. Modifiers
+(14816, 4414, 2), -- Armor Type
+(14816, 4415, 3), -- Weapon Type
+(14816, 4416, 4), -- Races
+(14816, 5038, 15), -- Summon PVP Penalty
 -- Dark Panther
 (14817, 4121, 6), -- Summoned Monster Magic Protection
-(14817, 4408, 4), -- HP High
-(14817, 4409, 1), -- MP Increase (1x)
-(14817, 4410, 12), -- Slightly Strong P. Atk.
-(14817, 4411, 11), -- Average M. Atk.
-(14817, 4412, 11), -- Average P. Def.
-(14817, 4413, 11), -- Average M. Def.
-(14817, 4414, 2), -- Standard Type
-(14817, 4415, 3), -- One-handed Sword
-(14817, 4416, 4), -- Animals
-(14817, 5038, 15), -- Servitor PvP Penalty
+(14817, 4408, 4), -- HP Modifiers
+(14817, 4409, 1), -- MP Modifiers
+(14817, 4410, 12), -- P. Atk. Modifiers
+(14817, 4411, 11), -- M. Atk. Modifiers
+(14817, 4412, 11), -- P. Def. Modifiers
+(14817, 4413, 11), -- M. Def. Modifiers
+(14817, 4414, 2), -- Armor Type
+(14817, 4415, 3), -- Weapon Type
+(14817, 4416, 4), -- Races
+(14817, 5038, 15), -- Summon PVP Penalty
 -- Dark Panther
 (14818, 4121, 6), -- Summoned Monster Magic Protection
-(14818, 4408, 4), -- HP High
-(14818, 4409, 1), -- MP Increase (1x)
-(14818, 4410, 12), -- Slightly Strong P. Atk.
-(14818, 4411, 11), -- Average M. Atk.
-(14818, 4412, 11), -- Average P. Def.
-(14818, 4413, 11), -- Average M. Def.
-(14818, 4414, 2), -- Standard Type
-(14818, 4415, 3), -- One-handed Sword
-(14818, 4416, 4), -- Animals
-(14818, 5038, 15), -- Servitor PvP Penalty
+(14818, 4408, 4), -- HP Modifiers
+(14818, 4409, 1), -- MP Modifiers
+(14818, 4410, 12), -- P. Atk. Modifiers
+(14818, 4411, 11), -- M. Atk. Modifiers
+(14818, 4412, 11), -- P. Def. Modifiers
+(14818, 4413, 11), -- M. Def. Modifiers
+(14818, 4414, 2), -- Armor Type
+(14818, 4415, 3), -- Weapon Type
+(14818, 4416, 4), -- Races
+(14818, 5038, 15), -- Summon PVP Penalty
 -- Dark Panther
 (14819, 4121, 6), -- Summoned Monster Magic Protection
-(14819, 4408, 4), -- HP High
-(14819, 4409, 1), -- MP Increase (1x)
-(14819, 4410, 12), -- Slightly Strong P. Atk.
-(14819, 4411, 11), -- Average M. Atk.
-(14819, 4412, 11), -- Average P. Def.
-(14819, 4413, 11), -- Average M. Def.
-(14819, 4414, 2), -- Standard Type
-(14819, 4415, 3), -- One-handed Sword
-(14819, 4416, 4), -- Animals
-(14819, 5038, 15), -- Servitor PvP Penalty
+(14819, 4408, 4), -- HP Modifiers
+(14819, 4409, 1), -- MP Modifiers
+(14819, 4410, 12), -- P. Atk. Modifiers
+(14819, 4411, 11), -- M. Atk. Modifiers
+(14819, 4412, 11), -- P. Def. Modifiers
+(14819, 4413, 11), -- M. Def. Modifiers
+(14819, 4414, 2), -- Armor Type
+(14819, 4415, 3), -- Weapon Type
+(14819, 4416, 4), -- Races
+(14819, 5038, 15), -- Summon PVP Penalty
 -- Dark Panther
 (14820, 4121, 6), -- Summoned Monster Magic Protection
-(14820, 4408, 4), -- HP High
-(14820, 4409, 1), -- MP Increase (1x)
-(14820, 4410, 12), -- Slightly Strong P. Atk.
-(14820, 4411, 11), -- Average M. Atk.
-(14820, 4412, 11), -- Average P. Def.
-(14820, 4413, 11), -- Average M. Def.
-(14820, 4414, 2), -- Standard Type
-(14820, 4415, 3), -- One-handed Sword
-(14820, 4416, 4), -- Animals
-(14820, 5038, 15), -- Servitor PvP Penalty
+(14820, 4408, 4), -- HP Modifiers
+(14820, 4409, 1), -- MP Modifiers
+(14820, 4410, 12), -- P. Atk. Modifiers
+(14820, 4411, 11), -- M. Atk. Modifiers
+(14820, 4412, 11), -- P. Def. Modifiers
+(14820, 4413, 11), -- M. Def. Modifiers
+(14820, 4414, 2), -- Armor Type
+(14820, 4415, 3), -- Weapon Type
+(14820, 4416, 4), -- Races
+(14820, 5038, 15), -- Summon PVP Penalty
 -- Dark Panther
 (14821, 4121, 6), -- Summoned Monster Magic Protection
-(14821, 4408, 4), -- HP High
-(14821, 4409, 1), -- MP Increase (1x)
-(14821, 4410, 12), -- Slightly Strong P. Atk.
-(14821, 4411, 11), -- Average M. Atk.
-(14821, 4412, 11), -- Average P. Def.
-(14821, 4413, 11), -- Average M. Def.
-(14821, 4414, 2), -- Standard Type
-(14821, 4415, 3), -- One-handed Sword
-(14821, 4416, 4), -- Animals
-(14821, 5038, 15), -- Servitor PvP Penalty
+(14821, 4408, 4), -- HP Modifiers
+(14821, 4409, 1), -- MP Modifiers
+(14821, 4410, 12), -- P. Atk. Modifiers
+(14821, 4411, 11), -- M. Atk. Modifiers
+(14821, 4412, 11), -- P. Def. Modifiers
+(14821, 4413, 11), -- M. Def. Modifiers
+(14821, 4414, 2), -- Armor Type
+(14821, 4415, 3), -- Weapon Type
+(14821, 4416, 4), -- Races
+(14821, 5038, 15), -- Summon PVP Penalty
 -- Dark Panther
 (14822, 4121, 6), -- Summoned Monster Magic Protection
-(14822, 4408, 4), -- HP High
-(14822, 4409, 1), -- MP Increase (1x)
-(14822, 4410, 12), -- Slightly Strong P. Atk.
-(14822, 4411, 11), -- Average M. Atk.
-(14822, 4412, 11), -- Average P. Def.
-(14822, 4413, 11), -- Average M. Def.
-(14822, 4414, 2), -- Standard Type
-(14822, 4415, 3), -- One-handed Sword
-(14822, 4416, 4), -- Animals
-(14822, 5038, 15), -- Servitor PvP Penalty
+(14822, 4408, 4), -- HP Modifiers
+(14822, 4409, 1), -- MP Modifiers
+(14822, 4410, 12), -- P. Atk. Modifiers
+(14822, 4411, 11), -- M. Atk. Modifiers
+(14822, 4412, 11), -- P. Def. Modifiers
+(14822, 4413, 11), -- M. Def. Modifiers
+(14822, 4414, 2), -- Armor Type
+(14822, 4415, 3), -- Weapon Type
+(14822, 4416, 4), -- Races
+(14822, 5038, 15), -- Summon PVP Penalty
 -- Dark Panther
 (14823, 4121, 6), -- Summoned Monster Magic Protection
-(14823, 4408, 4), -- HP High
-(14823, 4409, 1), -- MP Increase (1x)
-(14823, 4410, 12), -- Slightly Strong P. Atk.
-(14823, 4411, 11), -- Average M. Atk.
-(14823, 4412, 11), -- Average P. Def.
-(14823, 4413, 11), -- Average M. Def.
-(14823, 4414, 2), -- Standard Type
-(14823, 4415, 3), -- One-handed Sword
-(14823, 4416, 4), -- Animals
-(14823, 5038, 15), -- Servitor PvP Penalty
+(14823, 4408, 4), -- HP Modifiers
+(14823, 4409, 1), -- MP Modifiers
+(14823, 4410, 12), -- P. Atk. Modifiers
+(14823, 4411, 11), -- M. Atk. Modifiers
+(14823, 4412, 11), -- P. Def. Modifiers
+(14823, 4413, 11), -- M. Def. Modifiers
+(14823, 4414, 2), -- Armor Type
+(14823, 4415, 3), -- Weapon Type
+(14823, 4416, 4), -- Races
+(14823, 5038, 15), -- Summon PVP Penalty
 -- Dark Panther
 (14824, 4121, 6), -- Summoned Monster Magic Protection
-(14824, 4408, 4), -- HP High
-(14824, 4409, 1), -- MP Increase (1x)
-(14824, 4410, 12), -- Slightly Strong P. Atk.
-(14824, 4411, 11), -- Average M. Atk.
-(14824, 4412, 11), -- Average P. Def.
-(14824, 4413, 11), -- Average M. Def.
-(14824, 4414, 2), -- Standard Type
-(14824, 4415, 3), -- One-handed Sword
-(14824, 4416, 4), -- Animals
-(14824, 5038, 15), -- Servitor PvP Penalty
+(14824, 4408, 4), -- HP Modifiers
+(14824, 4409, 1), -- MP Modifiers
+(14824, 4410, 12), -- P. Atk. Modifiers
+(14824, 4411, 11), -- M. Atk. Modifiers
+(14824, 4412, 11), -- P. Def. Modifiers
+(14824, 4413, 11), -- M. Def. Modifiers
+(14824, 4414, 2), -- Armor Type
+(14824, 4415, 3), -- Weapon Type
+(14824, 4416, 4), -- Races
+(14824, 5038, 15), -- Summon PVP Penalty
 -- Dark Panther
 (14825, 4121, 6), -- Summoned Monster Magic Protection
-(14825, 4408, 4), -- HP High
-(14825, 4409, 1), -- MP Increase (1x)
-(14825, 4410, 12), -- Slightly Strong P. Atk.
-(14825, 4411, 11), -- Average M. Atk.
-(14825, 4412, 11), -- Average P. Def.
-(14825, 4413, 11), -- Average M. Def.
-(14825, 4414, 2), -- Standard Type
-(14825, 4415, 3), -- One-handed Sword
-(14825, 4416, 4), -- Animals
-(14825, 5038, 15), -- Servitor PvP Penalty
+(14825, 4408, 4), -- HP Modifiers
+(14825, 4409, 1), -- MP Modifiers
+(14825, 4410, 12), -- P. Atk. Modifiers
+(14825, 4411, 11), -- M. Atk. Modifiers
+(14825, 4412, 11), -- P. Def. Modifiers
+(14825, 4413, 11), -- M. Def. Modifiers
+(14825, 4414, 2), -- Armor Type
+(14825, 4415, 3), -- Weapon Type
+(14825, 4416, 4), -- Races
+(14825, 5038, 15), -- Summon PVP Penalty
 -- Dark Panther
 (14826, 4121, 6), -- Summoned Monster Magic Protection
-(14826, 4408, 4), -- HP High
-(14826, 4409, 1), -- MP Increase (1x)
-(14826, 4410, 12), -- Slightly Strong P. Atk.
-(14826, 4411, 11), -- Average M. Atk.
-(14826, 4412, 11), -- Average P. Def.
-(14826, 4413, 11), -- Average M. Def.
-(14826, 4414, 2), -- Standard Type
-(14826, 4415, 3), -- One-handed Sword
-(14826, 4416, 4), -- Animals
-(14826, 5038, 15), -- Servitor PvP Penalty
+(14826, 4408, 4), -- HP Modifiers
+(14826, 4409, 1), -- MP Modifiers
+(14826, 4410, 12), -- P. Atk. Modifiers
+(14826, 4411, 11), -- M. Atk. Modifiers
+(14826, 4412, 11), -- P. Def. Modifiers
+(14826, 4413, 11), -- M. Def. Modifiers
+(14826, 4414, 2), -- Armor Type
+(14826, 4415, 3), -- Weapon Type
+(14826, 4416, 4), -- Races
+(14826, 5038, 15), -- Summon PVP Penalty
 -- Dark Panther
 (14827, 4121, 6), -- Summoned Monster Magic Protection
-(14827, 4408, 4), -- HP High
-(14827, 4409, 1), -- MP Increase (1x)
-(14827, 4410, 12), -- Slightly Strong P. Atk.
-(14827, 4411, 11), -- Average M. Atk.
-(14827, 4412, 11), -- Average P. Def.
-(14827, 4413, 11), -- Average M. Def.
-(14827, 4414, 2), -- Standard Type
-(14827, 4415, 3), -- One-handed Sword
-(14827, 4416, 4), -- Animals
-(14827, 5038, 15), -- Servitor PvP Penalty
+(14827, 4408, 4), -- HP Modifiers
+(14827, 4409, 1), -- MP Modifiers
+(14827, 4410, 12), -- P. Atk. Modifiers
+(14827, 4411, 11), -- M. Atk. Modifiers
+(14827, 4412, 11), -- P. Def. Modifiers
+(14827, 4413, 11), -- M. Def. Modifiers
+(14827, 4414, 2), -- Armor Type
+(14827, 4415, 3), -- Weapon Type
+(14827, 4416, 4), -- Races
+(14827, 5038, 15), -- Summon PVP Penalty
 -- Dark Panther
 (14828, 4121, 6), -- Summoned Monster Magic Protection
-(14828, 4408, 4), -- HP High
-(14828, 4409, 1), -- MP Increase (1x)
-(14828, 4410, 12), -- Slightly Strong P. Atk.
-(14828, 4411, 11), -- Average M. Atk.
-(14828, 4412, 11), -- Average P. Def.
-(14828, 4413, 11), -- Average M. Def.
-(14828, 4414, 2), -- Standard Type
-(14828, 4415, 3), -- One-handed Sword
-(14828, 4416, 4), -- Animals
-(14828, 5038, 15), -- Servitor PvP Penalty
+(14828, 4408, 4), -- HP Modifiers
+(14828, 4409, 1), -- MP Modifiers
+(14828, 4410, 12), -- P. Atk. Modifiers
+(14828, 4411, 11), -- M. Atk. Modifiers
+(14828, 4412, 11), -- P. Def. Modifiers
+(14828, 4413, 11), -- M. Def. Modifiers
+(14828, 4414, 2), -- Armor Type
+(14828, 4415, 3), -- Weapon Type
+(14828, 4416, 4), -- Races
+(14828, 5038, 15), -- Summon PVP Penalty
 -- Dark Panther
 (14829, 4121, 6), -- Summoned Monster Magic Protection
-(14829, 4408, 4), -- HP High
-(14829, 4409, 1), -- MP Increase (1x)
-(14829, 4410, 12), -- Slightly Strong P. Atk.
-(14829, 4411, 11), -- Average M. Atk.
-(14829, 4412, 11), -- Average P. Def.
-(14829, 4413, 11), -- Average M. Def.
-(14829, 4414, 2), -- Standard Type
-(14829, 4415, 3), -- One-handed Sword
-(14829, 4416, 4), -- Animals
-(14829, 5038, 15), -- Servitor PvP Penalty
+(14829, 4408, 4), -- HP Modifiers
+(14829, 4409, 1), -- MP Modifiers
+(14829, 4410, 12), -- P. Atk. Modifiers
+(14829, 4411, 11), -- M. Atk. Modifiers
+(14829, 4412, 11), -- P. Def. Modifiers
+(14829, 4413, 11), -- M. Def. Modifiers
+(14829, 4414, 2), -- Armor Type
+(14829, 4415, 3), -- Weapon Type
+(14829, 4416, 4), -- Races
+(14829, 5038, 15), -- Summon PVP Penalty
 -- Dark Panther
 (14830, 4121, 6), -- Summoned Monster Magic Protection
-(14830, 4408, 4), -- HP High
-(14830, 4409, 1), -- MP Increase (1x)
-(14830, 4410, 12), -- Slightly Strong P. Atk.
-(14830, 4411, 11), -- Average M. Atk.
-(14830, 4412, 11), -- Average P. Def.
-(14830, 4413, 11), -- Average M. Def.
-(14830, 4414, 2), -- Standard Type
-(14830, 4415, 3), -- One-handed Sword
-(14830, 4416, 4), -- Animals
-(14830, 5038, 15), -- Servitor PvP Penalty
+(14830, 4408, 4), -- HP Modifiers
+(14830, 4409, 1), -- MP Modifiers
+(14830, 4410, 12), -- P. Atk. Modifiers
+(14830, 4411, 11), -- M. Atk. Modifiers
+(14830, 4412, 11), -- P. Def. Modifiers
+(14830, 4413, 11), -- M. Def. Modifiers
+(14830, 4414, 2), -- Armor Type
+(14830, 4415, 3), -- Weapon Type
+(14830, 4416, 4), -- Races
+(14830, 5038, 15), -- Summon PVP Penalty
 -- Dark Panther
 (14831, 4121, 6), -- Summoned Monster Magic Protection
-(14831, 4408, 4), -- HP High
-(14831, 4409, 1), -- MP Increase (1x)
-(14831, 4410, 12), -- Slightly Strong P. Atk.
-(14831, 4411, 11), -- Average M. Atk.
-(14831, 4412, 11), -- Average P. Def.
-(14831, 4413, 11), -- Average M. Def.
-(14831, 4414, 2), -- Standard Type
-(14831, 4415, 3), -- One-handed Sword
-(14831, 4416, 4), -- Animals
-(14831, 5038, 15), -- Servitor PvP Penalty
+(14831, 4408, 4), -- HP Modifiers
+(14831, 4409, 1), -- MP Modifiers
+(14831, 4410, 12), -- P. Atk. Modifiers
+(14831, 4411, 11), -- M. Atk. Modifiers
+(14831, 4412, 11), -- P. Def. Modifiers
+(14831, 4413, 11), -- M. Def. Modifiers
+(14831, 4414, 2), -- Armor Type
+(14831, 4415, 3), -- Weapon Type
+(14831, 4416, 4), -- Races
+(14831, 5038, 15), -- Summon PVP Penalty
 -- Dark Panther
 (14832, 4121, 6), -- Summoned Monster Magic Protection
-(14832, 4408, 4), -- HP High
-(14832, 4409, 1), -- MP Increase (1x)
-(14832, 4410, 12), -- Slightly Strong P. Atk.
-(14832, 4411, 11), -- Average M. Atk.
-(14832, 4412, 11), -- Average P. Def.
-(14832, 4413, 11), -- Average M. Def.
-(14832, 4414, 2), -- Standard Type
-(14832, 4415, 3), -- One-handed Sword
-(14832, 4416, 4), -- Animals
-(14832, 5038, 15), -- Servitor PvP Penalty
+(14832, 4408, 4), -- HP Modifiers
+(14832, 4409, 1), -- MP Modifiers
+(14832, 4410, 12), -- P. Atk. Modifiers
+(14832, 4411, 11), -- M. Atk. Modifiers
+(14832, 4412, 11), -- P. Def. Modifiers
+(14832, 4413, 11), -- M. Def. Modifiers
+(14832, 4414, 2), -- Armor Type
+(14832, 4415, 3), -- Weapon Type
+(14832, 4416, 4), -- Races
+(14832, 5038, 15), -- Summon PVP Penalty
 -- Dark Panther
 (14833, 4121, 6), -- Summoned Monster Magic Protection
-(14833, 4408, 4), -- HP High
-(14833, 4409, 1), -- MP Increase (1x)
-(14833, 4410, 12), -- Slightly Strong P. Atk.
-(14833, 4411, 11), -- Average M. Atk.
-(14833, 4412, 11), -- Average P. Def.
-(14833, 4413, 11), -- Average M. Def.
-(14833, 4414, 2), -- Standard Type
-(14833, 4415, 3), -- One-handed Sword
-(14833, 4416, 4), -- Animals
-(14833, 5038, 15), -- Servitor PvP Penalty
+(14833, 4408, 4), -- HP Modifiers
+(14833, 4409, 1), -- MP Modifiers
+(14833, 4410, 12), -- P. Atk. Modifiers
+(14833, 4411, 11), -- M. Atk. Modifiers
+(14833, 4412, 11), -- P. Def. Modifiers
+(14833, 4413, 11), -- M. Def. Modifiers
+(14833, 4414, 2), -- Armor Type
+(14833, 4415, 3), -- Weapon Type
+(14833, 4416, 4), -- Races
+(14833, 5038, 15), -- Summon PVP Penalty
 -- Dark Panther
 (14834, 4121, 6), -- Summoned Monster Magic Protection
-(14834, 4408, 4), -- HP High
-(14834, 4409, 1), -- MP Increase (1x)
-(14834, 4410, 12), -- Slightly Strong P. Atk.
-(14834, 4411, 11), -- Average M. Atk.
-(14834, 4412, 11), -- Average P. Def.
-(14834, 4413, 11), -- Average M. Def.
-(14834, 4414, 2), -- Standard Type
-(14834, 4415, 3), -- One-handed Sword
-(14834, 4416, 4), -- Animals
-(14834, 5038, 15), -- Servitor PvP Penalty
+(14834, 4408, 4), -- HP Modifiers
+(14834, 4409, 1), -- MP Modifiers
+(14834, 4410, 12), -- P. Atk. Modifiers
+(14834, 4411, 11), -- M. Atk. Modifiers
+(14834, 4412, 11), -- P. Def. Modifiers
+(14834, 4413, 11), -- M. Def. Modifiers
+(14834, 4414, 2), -- Armor Type
+(14834, 4415, 3), -- Weapon Type
+(14834, 4416, 4), -- Races
+(14834, 5038, 15), -- Summon PVP Penalty
 -- Dark Panther
 (14835, 4121, 6), -- Summoned Monster Magic Protection
-(14835, 4408, 4), -- HP High
-(14835, 4409, 1), -- MP Increase (1x)
-(14835, 4410, 12), -- Slightly Strong P. Atk.
-(14835, 4411, 11), -- Average M. Atk.
-(14835, 4412, 11), -- Average P. Def.
-(14835, 4413, 11), -- Average M. Def.
-(14835, 4414, 2), -- Standard Type
-(14835, 4415, 3), -- One-handed Sword
-(14835, 4416, 4), -- Animals
-(14835, 5038, 15), -- Servitor PvP Penalty
+(14835, 4408, 4), -- HP Modifiers
+(14835, 4409, 1), -- MP Modifiers
+(14835, 4410, 12), -- P. Atk. Modifiers
+(14835, 4411, 11), -- M. Atk. Modifiers
+(14835, 4412, 11), -- P. Def. Modifiers
+(14835, 4413, 11), -- M. Def. Modifiers
+(14835, 4414, 2), -- Armor Type
+(14835, 4415, 3), -- Weapon Type
+(14835, 4416, 4), -- Races
+(14835, 5038, 15), -- Summon PVP Penalty
 -- Feline King
 (14836, 4121, 9), -- Summoned Monster Magic Protection
-(14836, 4408, 4), -- HP High
-(14836, 4409, 1), -- MP Increase (1x)
-(14836, 4410, 15), -- Strong P. Atk.
-(14836, 4411, 13), -- Slightly Strong M. Atk.
-(14836, 4412, 12), -- Slightly Strong P. Def.
-(14836, 4413, 12), -- Slightly Strong M. Def.
-(14836, 4414, 2), -- Standard Type
-(14836, 4415, 3), -- One-handed Sword
-(14836, 4416, 7), -- Spirits
-(14836, 5038, 15), -- Servitor PvP Penalty
+(14836, 4408, 4), -- HP Modifiers
+(14836, 4409, 1), -- MP Modifiers
+(14836, 4410, 15), -- P. Atk. Modifiers
+(14836, 4411, 13), -- M. Atk. Modifiers
+(14836, 4412, 12), -- P. Def. Modifiers
+(14836, 4413, 12), -- M. Def. Modifiers
+(14836, 4414, 2), -- Armor Type
+(14836, 4415, 3), -- Weapon Type
+(14836, 4416, 7), -- Races
+(14836, 5038, 15), -- Summon PVP Penalty
 -- Magnus the Unicorn
 (14837, 4121, 9), -- Summoned Monster Magic Protection
-(14837, 4408, 4), -- HP High
-(14837, 4409, 1), -- MP Increase (1x)
-(14837, 4410, 15), -- Strong P. Atk.
-(14837, 4411, 13), -- Slightly Strong M. Atk.
-(14837, 4412, 12), -- Slightly Strong P. Def.
-(14837, 4413, 12), -- Slightly Strong M. Def.
-(14837, 4414, 2), -- Standard Type
-(14837, 4415, 3), -- One-handed Sword
-(14837, 4416, 7), -- Spirits
-(14837, 5038, 15), -- Servitor PvP Penalty
+(14837, 4408, 4), -- HP Modifiers
+(14837, 4409, 1), -- MP Modifiers
+(14837, 4410, 15), -- P. Atk. Modifiers
+(14837, 4411, 13), -- M. Atk. Modifiers
+(14837, 4412, 12), -- P. Def. Modifiers
+(14837, 4413, 12), -- M. Def. Modifiers
+(14837, 4414, 2), -- Armor Type
+(14837, 4415, 3), -- Weapon Type
+(14837, 4416, 7), -- Races
+(14837, 5038, 15), -- Summon PVP Penalty
 -- Spectral Lord
 (14838, 4121, 9), -- Summoned Monster Magic Protection
-(14838, 4408, 4), -- HP High
-(14838, 4409, 1), -- MP Increase (1x)
-(14838, 4410, 15), -- Strong P. Atk.
-(14838, 4411, 13), -- Slightly Strong M. Atk.
-(14838, 4412, 12), -- Slightly Strong P. Def.
-(14838, 4413, 12), -- Slightly Strong M. Def.
-(14838, 4414, 2), -- Standard Type
-(14838, 4415, 3), -- One-handed Sword
-(14838, 4416, 9), -- Demons
-(14838, 5038, 15), -- Servitor PvP Penalty
+(14838, 4408, 4), -- HP Modifiers
+(14838, 4409, 1), -- MP Modifiers
+(14838, 4410, 15), -- P. Atk. Modifiers
+(14838, 4411, 13), -- M. Atk. Modifiers
+(14838, 4412, 12), -- P. Def. Modifiers
+(14838, 4413, 12), -- M. Def. Modifiers
+(14838, 4414, 2), -- Armor Type
+(14838, 4415, 3), -- Weapon Type
+(14838, 4416, 9), -- Races
+(14838, 5038, 15), -- Summon PVP Penalty
 -- Swoop Cannon
 (14839, 4332, 1), -- Mental Aegis
-(14839, 4408, 1), -- HP Increase (1x)
-(14839, 4409, 1), -- MP Increase (1x)
-(14839, 4410, 11), -- Average P. Atk.
-(14839, 4411, 11), -- Average M. Atk.
-(14839, 4412, 11), -- Average P. Def.
-(14839, 4413, 11), -- Average M. Def.
-(14839, 4414, 2), -- Standard Type
-(14839, 4415, 11), -- Spears
-(14839, 4416, 21), -- Siege Weapons
+(14839, 4408, 1), -- HP Modifiers
+(14839, 4409, 1), -- MP Modifiers
+(14839, 4410, 11), -- P. Atk. Modifiers
+(14839, 4411, 11), -- M. Atk. Modifiers
+(14839, 4412, 11), -- P. Def. Modifiers
+(14839, 4413, 11), -- M. Def. Modifiers
+(14839, 4414, 2), -- Armor Type
+(14839, 4415, 11), -- Weapon Type
+(14839, 4416, 21), -- Races
 -- Swoop Cannon
 (14840, 4332, 1), -- Mental Aegis
-(14840, 4408, 1), -- HP Increase (1x)
-(14840, 4409, 1), -- MP Increase (1x)
-(14840, 4410, 11), -- Average P. Atk.
-(14840, 4411, 11), -- Average M. Atk.
-(14840, 4412, 11), -- Average P. Def.
-(14840, 4413, 11), -- Average M. Def.
-(14840, 4414, 2), -- Standard Type
-(14840, 4415, 11), -- Spears
-(14840, 4416, 21), -- Siege Weapons
+(14840, 4408, 1), -- HP Modifiers
+(14840, 4409, 1), -- MP Modifiers
+(14840, 4410, 11), -- P. Atk. Modifiers
+(14840, 4411, 11), -- M. Atk. Modifiers
+(14840, 4412, 11), -- P. Def. Modifiers
+(14840, 4413, 11), -- M. Def. Modifiers
+(14840, 4414, 2), -- Armor Type
+(14840, 4415, 11), -- Weapon Type
+(14840, 4416, 21), -- Races
 -- Swoop Cannon
 (14841, 4332, 1), -- Mental Aegis
-(14841, 4408, 1), -- HP Increase (1x)
-(14841, 4409, 1), -- MP Increase (1x)
-(14841, 4410, 11), -- Average P. Atk.
-(14841, 4411, 11), -- Average M. Atk.
-(14841, 4412, 11), -- Average P. Def.
-(14841, 4413, 11), -- Average M. Def.
-(14841, 4414, 2), -- Standard Type
-(14841, 4415, 11), -- Spears
-(14841, 4416, 21), -- Siege Weapons
+(14841, 4408, 1), -- HP Modifiers
+(14841, 4409, 1), -- MP Modifiers
+(14841, 4410, 11), -- P. Atk. Modifiers
+(14841, 4411, 11), -- M. Atk. Modifiers
+(14841, 4412, 11), -- P. Def. Modifiers
+(14841, 4413, 11), -- M. Def. Modifiers
+(14841, 4414, 2), -- Armor Type
+(14841, 4415, 11), -- Weapon Type
+(14841, 4416, 21), -- Races
 -- Swoop Cannon
 (14842, 4332, 1), -- Mental Aegis
-(14842, 4408, 1), -- HP Increase (1x)
-(14842, 4409, 1), -- MP Increase (1x)
-(14842, 4410, 11), -- Average P. Atk.
-(14842, 4411, 11), -- Average M. Atk.
-(14842, 4412, 11), -- Average P. Def.
-(14842, 4413, 11), -- Average M. Def.
-(14842, 4414, 2), -- Standard Type
-(14842, 4415, 11), -- Spears
-(14842, 4416, 21), -- Siege Weapons
+(14842, 4408, 1), -- HP Modifiers
+(14842, 4409, 1), -- MP Modifiers
+(14842, 4410, 11), -- P. Atk. Modifiers
+(14842, 4411, 11), -- M. Atk. Modifiers
+(14842, 4412, 11), -- P. Def. Modifiers
+(14842, 4413, 11), -- M. Def. Modifiers
+(14842, 4414, 2), -- Armor Type
+(14842, 4415, 11), -- Weapon Type
+(14842, 4416, 21), -- Races
 -- Swoop Cannon
 (14843, 4332, 1), -- Mental Aegis
-(14843, 4408, 1), -- HP Increase (1x)
-(14843, 4409, 1), -- MP Increase (1x)
-(14843, 4410, 11), -- Average P. Atk.
-(14843, 4411, 11), -- Average M. Atk.
-(14843, 4412, 11), -- Average P. Def.
-(14843, 4413, 11), -- Average M. Def.
-(14843, 4414, 2), -- Standard Type
-(14843, 4415, 11), -- Spears
-(14843, 4416, 21), -- Siege Weapons
+(14843, 4408, 1), -- HP Modifiers
+(14843, 4409, 1), -- MP Modifiers
+(14843, 4410, 11), -- P. Atk. Modifiers
+(14843, 4411, 11), -- M. Atk. Modifiers
+(14843, 4412, 11), -- P. Def. Modifiers
+(14843, 4413, 11), -- M. Def. Modifiers
+(14843, 4414, 2), -- Armor Type
+(14843, 4415, 11), -- Weapon Type
+(14843, 4416, 21), -- Races
 -- Swoop Cannon
 (14844, 4332, 1), -- Mental Aegis
-(14844, 4408, 1), -- HP Increase (1x)
-(14844, 4409, 1), -- MP Increase (1x)
-(14844, 4410, 11), -- Average P. Atk.
-(14844, 4411, 11), -- Average M. Atk.
-(14844, 4412, 11), -- Average P. Def.
-(14844, 4413, 11), -- Average M. Def.
-(14844, 4414, 2), -- Standard Type
-(14844, 4415, 11), -- Spears
-(14844, 4416, 21), -- Siege Weapons
+(14844, 4408, 1), -- HP Modifiers
+(14844, 4409, 1), -- MP Modifiers
+(14844, 4410, 11), -- P. Atk. Modifiers
+(14844, 4411, 11), -- M. Atk. Modifiers
+(14844, 4412, 11), -- P. Def. Modifiers
+(14844, 4413, 11), -- M. Def. Modifiers
+(14844, 4414, 2), -- Armor Type
+(14844, 4415, 11), -- Weapon Type
+(14844, 4416, 21), -- Races
 -- Swoop Cannon
 (14845, 4332, 1), -- Mental Aegis
-(14845, 4408, 1), -- HP Increase (1x)
-(14845, 4409, 1), -- MP Increase (1x)
-(14845, 4410, 11), -- Average P. Atk.
-(14845, 4411, 11), -- Average M. Atk.
-(14845, 4412, 11), -- Average P. Def.
-(14845, 4413, 11), -- Average M. Def.
-(14845, 4414, 2), -- Standard Type
-(14845, 4415, 11), -- Spears
-(14845, 4416, 21), -- Siege Weapons
+(14845, 4408, 1), -- HP Modifiers
+(14845, 4409, 1), -- MP Modifiers
+(14845, 4410, 11), -- P. Atk. Modifiers
+(14845, 4411, 11), -- M. Atk. Modifiers
+(14845, 4412, 11), -- P. Def. Modifiers
+(14845, 4413, 11), -- M. Def. Modifiers
+(14845, 4414, 2), -- Armor Type
+(14845, 4415, 11), -- Weapon Type
+(14845, 4416, 21), -- Races
 -- Swoop Cannon
 (14846, 4332, 1), -- Mental Aegis
-(14846, 4408, 1), -- HP Increase (1x)
-(14846, 4409, 1), -- MP Increase (1x)
-(14846, 4410, 11), -- Average P. Atk.
-(14846, 4411, 11), -- Average M. Atk.
-(14846, 4412, 11), -- Average P. Def.
-(14846, 4413, 11), -- Average M. Def.
-(14846, 4414, 2), -- Standard Type
-(14846, 4415, 11), -- Spears
-(14846, 4416, 21), -- Siege Weapons
+(14846, 4408, 1), -- HP Modifiers
+(14846, 4409, 1), -- MP Modifiers
+(14846, 4410, 11), -- P. Atk. Modifiers
+(14846, 4411, 11), -- M. Atk. Modifiers
+(14846, 4412, 11), -- P. Def. Modifiers
+(14846, 4413, 11), -- M. Def. Modifiers
+(14846, 4414, 2), -- Armor Type
+(14846, 4415, 11), -- Weapon Type
+(14846, 4416, 21), -- Races
 -- Swoop Cannon
 (14847, 4332, 1), -- Mental Aegis
-(14847, 4408, 1), -- HP Increase (1x)
-(14847, 4409, 1), -- MP Increase (1x)
-(14847, 4410, 11), -- Average P. Atk.
-(14847, 4411, 11), -- Average M. Atk.
-(14847, 4412, 11), -- Average P. Def.
-(14847, 4413, 11), -- Average M. Def.
-(14847, 4414, 2), -- Standard Type
-(14847, 4415, 11), -- Spears
-(14847, 4416, 21), -- Siege Weapons
+(14847, 4408, 1), -- HP Modifiers
+(14847, 4409, 1), -- MP Modifiers
+(14847, 4410, 11), -- P. Atk. Modifiers
+(14847, 4411, 11), -- M. Atk. Modifiers
+(14847, 4412, 11), -- P. Def. Modifiers
+(14847, 4413, 11), -- M. Def. Modifiers
+(14847, 4414, 2), -- Armor Type
+(14847, 4415, 11), -- Weapon Type
+(14847, 4416, 21), -- Races
 -- Swoop Cannon
 (14848, 4332, 1), -- Mental Aegis
-(14848, 4408, 1), -- HP Increase (1x)
-(14848, 4409, 1), -- MP Increase (1x)
-(14848, 4410, 11), -- Average P. Atk.
-(14848, 4411, 11), -- Average M. Atk.
-(14848, 4412, 11), -- Average P. Def.
-(14848, 4413, 11), -- Average M. Def.
-(14848, 4414, 2), -- Standard Type
-(14848, 4415, 11), -- Spears
-(14848, 4416, 21), -- Siege Weapons
+(14848, 4408, 1), -- HP Modifiers
+(14848, 4409, 1), -- MP Modifiers
+(14848, 4410, 11), -- P. Atk. Modifiers
+(14848, 4411, 11), -- M. Atk. Modifiers
+(14848, 4412, 11), -- P. Def. Modifiers
+(14848, 4413, 11), -- M. Def. Modifiers
+(14848, 4414, 2), -- Armor Type
+(14848, 4415, 11), -- Weapon Type
+(14848, 4416, 21), -- Races
 -- Swoop Cannon
 (14849, 4332, 1), -- Mental Aegis
-(14849, 4408, 1), -- HP Increase (1x)
-(14849, 4409, 1), -- MP Increase (1x)
-(14849, 4410, 11), -- Average P. Atk.
-(14849, 4411, 11), -- Average M. Atk.
-(14849, 4412, 11), -- Average P. Def.
-(14849, 4413, 11), -- Average M. Def.
-(14849, 4414, 2), -- Standard Type
-(14849, 4415, 11), -- Spears
-(14849, 4416, 21), -- Siege Weapons
+(14849, 4408, 1), -- HP Modifiers
+(14849, 4409, 1), -- MP Modifiers
+(14849, 4410, 11), -- P. Atk. Modifiers
+(14849, 4411, 11), -- M. Atk. Modifiers
+(14849, 4412, 11), -- P. Def. Modifiers
+(14849, 4413, 11), -- M. Def. Modifiers
+(14849, 4414, 2), -- Armor Type
+(14849, 4415, 11), -- Weapon Type
+(14849, 4416, 21), -- Races
 -- Swoop Cannon
 (14850, 4332, 1), -- Mental Aegis
-(14850, 4408, 1), -- HP Increase (1x)
-(14850, 4409, 1), -- MP Increase (1x)
-(14850, 4410, 11), -- Average P. Atk.
-(14850, 4411, 11), -- Average M. Atk.
-(14850, 4412, 11), -- Average P. Def.
-(14850, 4413, 11), -- Average M. Def.
-(14850, 4414, 2), -- Standard Type
-(14850, 4415, 11), -- Spears
-(14850, 4416, 21), -- Siege Weapons
+(14850, 4408, 1), -- HP Modifiers
+(14850, 4409, 1), -- MP Modifiers
+(14850, 4410, 11), -- P. Atk. Modifiers
+(14850, 4411, 11), -- M. Atk. Modifiers
+(14850, 4412, 11), -- P. Def. Modifiers
+(14850, 4413, 11), -- M. Def. Modifiers
+(14850, 4414, 2), -- Armor Type
+(14850, 4415, 11), -- Weapon Type
+(14850, 4416, 21), -- Races
 -- Swoop Cannon
 (14851, 4332, 1), -- Mental Aegis
-(14851, 4408, 1), -- HP Increase (1x)
-(14851, 4409, 1), -- MP Increase (1x)
-(14851, 4410, 11), -- Average P. Atk.
-(14851, 4411, 11), -- Average M. Atk.
-(14851, 4412, 11), -- Average P. Def.
-(14851, 4413, 11), -- Average M. Def.
-(14851, 4414, 2), -- Standard Type
-(14851, 4415, 11), -- Spears
-(14851, 4416, 21), -- Siege Weapons
+(14851, 4408, 1), -- HP Modifiers
+(14851, 4409, 1), -- MP Modifiers
+(14851, 4410, 11), -- P. Atk. Modifiers
+(14851, 4411, 11), -- M. Atk. Modifiers
+(14851, 4412, 11), -- P. Def. Modifiers
+(14851, 4413, 11), -- M. Def. Modifiers
+(14851, 4414, 2), -- Armor Type
+(14851, 4415, 11), -- Weapon Type
+(14851, 4416, 21), -- Races
 -- Swoop Cannon
 (14852, 4332, 1), -- Mental Aegis
-(14852, 4408, 1), -- HP Increase (1x)
-(14852, 4409, 1), -- MP Increase (1x)
-(14852, 4410, 11), -- Average P. Atk.
-(14852, 4411, 11), -- Average M. Atk.
-(14852, 4412, 11), -- Average P. Def.
-(14852, 4413, 11), -- Average M. Def.
-(14852, 4414, 2), -- Standard Type
-(14852, 4415, 11), -- Spears
-(14852, 4416, 21), -- Siege Weapons
+(14852, 4408, 1), -- HP Modifiers
+(14852, 4409, 1), -- MP Modifiers
+(14852, 4410, 11), -- P. Atk. Modifiers
+(14852, 4411, 11), -- M. Atk. Modifiers
+(14852, 4412, 11), -- P. Def. Modifiers
+(14852, 4413, 11), -- M. Def. Modifiers
+(14852, 4414, 2), -- Armor Type
+(14852, 4415, 11), -- Weapon Type
+(14852, 4416, 21), -- Races
 -- Swoop Cannon
 (14853, 4332, 1), -- Mental Aegis
-(14853, 4408, 1), -- HP Increase (1x)
-(14853, 4409, 1), -- MP Increase (1x)
-(14853, 4410, 11), -- Average P. Atk.
-(14853, 4411, 11), -- Average M. Atk.
-(14853, 4412, 11), -- Average P. Def.
-(14853, 4413, 11), -- Average M. Def.
-(14853, 4414, 2), -- Standard Type
-(14853, 4415, 11), -- Spears
-(14853, 4416, 21), -- Siege Weapons
+(14853, 4408, 1), -- HP Modifiers
+(14853, 4409, 1), -- MP Modifiers
+(14853, 4410, 11), -- P. Atk. Modifiers
+(14853, 4411, 11), -- M. Atk. Modifiers
+(14853, 4412, 11), -- P. Def. Modifiers
+(14853, 4413, 11), -- M. Def. Modifiers
+(14853, 4414, 2), -- Armor Type
+(14853, 4415, 11), -- Weapon Type
+(14853, 4416, 21), -- Races
 -- Swoop Cannon
 (14854, 4332, 1), -- Mental Aegis
-(14854, 4408, 1), -- HP Increase (1x)
-(14854, 4409, 1), -- MP Increase (1x)
-(14854, 4410, 11), -- Average P. Atk.
-(14854, 4411, 11), -- Average M. Atk.
-(14854, 4412, 11), -- Average P. Def.
-(14854, 4413, 11), -- Average M. Def.
-(14854, 4414, 2), -- Standard Type
-(14854, 4415, 11), -- Spears
-(14854, 4416, 21), -- Siege Weapons
+(14854, 4408, 1), -- HP Modifiers
+(14854, 4409, 1), -- MP Modifiers
+(14854, 4410, 11), -- P. Atk. Modifiers
+(14854, 4411, 11), -- M. Atk. Modifiers
+(14854, 4412, 11), -- P. Def. Modifiers
+(14854, 4413, 11), -- M. Def. Modifiers
+(14854, 4414, 2), -- Armor Type
+(14854, 4415, 11), -- Weapon Type
+(14854, 4416, 21), -- Races
 -- Swoop Cannon
 (14855, 4332, 1), -- Mental Aegis
-(14855, 4408, 1), -- HP Increase (1x)
-(14855, 4409, 1), -- MP Increase (1x)
-(14855, 4410, 11), -- Average P. Atk.
-(14855, 4411, 11), -- Average M. Atk.
-(14855, 4412, 11), -- Average P. Def.
-(14855, 4413, 11), -- Average M. Def.
-(14855, 4414, 2), -- Standard Type
-(14855, 4415, 11), -- Spears
-(14855, 4416, 21), -- Siege Weapons
+(14855, 4408, 1), -- HP Modifiers
+(14855, 4409, 1), -- MP Modifiers
+(14855, 4410, 11), -- P. Atk. Modifiers
+(14855, 4411, 11), -- M. Atk. Modifiers
+(14855, 4412, 11), -- P. Def. Modifiers
+(14855, 4413, 11), -- M. Def. Modifiers
+(14855, 4414, 2), -- Armor Type
+(14855, 4415, 11), -- Weapon Type
+(14855, 4416, 21), -- Races
 -- Swoop Cannon
 (14856, 4332, 1), -- Mental Aegis
-(14856, 4408, 1), -- HP Increase (1x)
-(14856, 4409, 1), -- MP Increase (1x)
-(14856, 4410, 11), -- Average P. Atk.
-(14856, 4411, 11), -- Average M. Atk.
-(14856, 4412, 11), -- Average P. Def.
-(14856, 4413, 11), -- Average M. Def.
-(14856, 4414, 2), -- Standard Type
-(14856, 4415, 11), -- Spears
-(14856, 4416, 21), -- Siege Weapons
+(14856, 4408, 1), -- HP Modifiers
+(14856, 4409, 1), -- MP Modifiers
+(14856, 4410, 11), -- P. Atk. Modifiers
+(14856, 4411, 11), -- M. Atk. Modifiers
+(14856, 4412, 11), -- P. Def. Modifiers
+(14856, 4413, 11), -- M. Def. Modifiers
+(14856, 4414, 2), -- Armor Type
+(14856, 4415, 11), -- Weapon Type
+(14856, 4416, 21), -- Races
 -- Swoop Cannon
 (14857, 4332, 1), -- Mental Aegis
-(14857, 4408, 1), -- HP Increase (1x)
-(14857, 4409, 1), -- MP Increase (1x)
-(14857, 4410, 11), -- Average P. Atk.
-(14857, 4411, 11), -- Average M. Atk.
-(14857, 4412, 11), -- Average P. Def.
-(14857, 4413, 11), -- Average M. Def.
-(14857, 4414, 2), -- Standard Type
-(14857, 4415, 11), -- Spears
-(14857, 4416, 21), -- Siege Weapons
+(14857, 4408, 1), -- HP Modifiers
+(14857, 4409, 1), -- MP Modifiers
+(14857, 4410, 11), -- P. Atk. Modifiers
+(14857, 4411, 11), -- M. Atk. Modifiers
+(14857, 4412, 11), -- P. Def. Modifiers
+(14857, 4413, 11), -- M. Def. Modifiers
+(14857, 4414, 2), -- Armor Type
+(14857, 4415, 11), -- Weapon Type
+(14857, 4416, 21), -- Races
 -- Swoop Cannon
 (14858, 4332, 1), -- Mental Aegis
-(14858, 4408, 1), -- HP Increase (1x)
-(14858, 4409, 1), -- MP Increase (1x)
-(14858, 4410, 11), -- Average P. Atk.
-(14858, 4411, 11), -- Average M. Atk.
-(14858, 4412, 11), -- Average P. Def.
-(14858, 4413, 11), -- Average M. Def.
-(14858, 4414, 2), -- Standard Type
-(14858, 4415, 11), -- Spears
-(14858, 4416, 21), -- Siege Weapons
+(14858, 4408, 1), -- HP Modifiers
+(14858, 4409, 1), -- MP Modifiers
+(14858, 4410, 11), -- P. Atk. Modifiers
+(14858, 4411, 11), -- M. Atk. Modifiers
+(14858, 4412, 11), -- P. Def. Modifiers
+(14858, 4413, 11), -- M. Def. Modifiers
+(14858, 4414, 2), -- Armor Type
+(14858, 4415, 11), -- Weapon Type
+(14858, 4416, 21), -- Races
 -- Swoop Cannon
 (14859, 4332, 1), -- Mental Aegis
-(14859, 4408, 1), -- HP Increase (1x)
-(14859, 4409, 1), -- MP Increase (1x)
-(14859, 4410, 11), -- Average P. Atk.
-(14859, 4411, 11), -- Average M. Atk.
-(14859, 4412, 11), -- Average P. Def.
-(14859, 4413, 11), -- Average M. Def.
-(14859, 4414, 2), -- Standard Type
-(14859, 4415, 11), -- Spears
-(14859, 4416, 21), -- Siege Weapons
+(14859, 4408, 1), -- HP Modifiers
+(14859, 4409, 1), -- MP Modifiers
+(14859, 4410, 11), -- P. Atk. Modifiers
+(14859, 4411, 11), -- M. Atk. Modifiers
+(14859, 4412, 11), -- P. Def. Modifiers
+(14859, 4413, 11), -- M. Def. Modifiers
+(14859, 4414, 2), -- Armor Type
+(14859, 4415, 11), -- Weapon Type
+(14859, 4416, 21), -- Races
 -- Swoop Cannon
 (14860, 4332, 1), -- Mental Aegis
-(14860, 4408, 1), -- HP Increase (1x)
-(14860, 4409, 1), -- MP Increase (1x)
-(14860, 4410, 11), -- Average P. Atk.
-(14860, 4411, 11), -- Average M. Atk.
-(14860, 4412, 11), -- Average P. Def.
-(14860, 4413, 11), -- Average M. Def.
-(14860, 4414, 2), -- Standard Type
-(14860, 4415, 11), -- Spears
-(14860, 4416, 21), -- Siege Weapons
+(14860, 4408, 1), -- HP Modifiers
+(14860, 4409, 1), -- MP Modifiers
+(14860, 4410, 11), -- P. Atk. Modifiers
+(14860, 4411, 11), -- M. Atk. Modifiers
+(14860, 4412, 11), -- P. Def. Modifiers
+(14860, 4413, 11), -- M. Def. Modifiers
+(14860, 4414, 2), -- Armor Type
+(14860, 4415, 11), -- Weapon Type
+(14860, 4416, 21), -- Races
 -- Swoop Cannon
 (14861, 4332, 1), -- Mental Aegis
-(14861, 4408, 1), -- HP Increase (1x)
-(14861, 4409, 1), -- MP Increase (1x)
-(14861, 4410, 11), -- Average P. Atk.
-(14861, 4411, 11), -- Average M. Atk.
-(14861, 4412, 11), -- Average P. Def.
-(14861, 4413, 11), -- Average M. Def.
-(14861, 4414, 2), -- Standard Type
-(14861, 4415, 11), -- Spears
-(14861, 4416, 21), -- Siege Weapons
+(14861, 4408, 1), -- HP Modifiers
+(14861, 4409, 1), -- MP Modifiers
+(14861, 4410, 11), -- P. Atk. Modifiers
+(14861, 4411, 11), -- M. Atk. Modifiers
+(14861, 4412, 11), -- P. Def. Modifiers
+(14861, 4413, 11), -- M. Def. Modifiers
+(14861, 4414, 2), -- Armor Type
+(14861, 4415, 11), -- Weapon Type
+(14861, 4416, 21), -- Races
 -- Swoop Cannon
 (14862, 4332, 1), -- Mental Aegis
-(14862, 4408, 1), -- HP Increase (1x)
-(14862, 4409, 1), -- MP Increase (1x)
-(14862, 4410, 11), -- Average P. Atk.
-(14862, 4411, 11), -- Average M. Atk.
-(14862, 4412, 11), -- Average P. Def.
-(14862, 4413, 11), -- Average M. Def.
-(14862, 4414, 2), -- Standard Type
-(14862, 4415, 11), -- Spears
-(14862, 4416, 21), -- Siege Weapons
+(14862, 4408, 1), -- HP Modifiers
+(14862, 4409, 1), -- MP Modifiers
+(14862, 4410, 11), -- P. Atk. Modifiers
+(14862, 4411, 11), -- M. Atk. Modifiers
+(14862, 4412, 11), -- P. Def. Modifiers
+(14862, 4413, 11), -- M. Def. Modifiers
+(14862, 4414, 2), -- Armor Type
+(14862, 4415, 11), -- Weapon Type
+(14862, 4416, 21), -- Races
 -- Swoop Cannon
 (14863, 4332, 1), -- Mental Aegis
-(14863, 4408, 1), -- HP Increase (1x)
-(14863, 4409, 1), -- MP Increase (1x)
-(14863, 4410, 11), -- Average P. Atk.
-(14863, 4411, 11), -- Average M. Atk.
-(14863, 4412, 11), -- Average P. Def.
-(14863, 4413, 11), -- Average M. Def.
-(14863, 4414, 2), -- Standard Type
-(14863, 4415, 11), -- Spears
-(14863, 4416, 21), -- Siege Weapons
+(14863, 4408, 1), -- HP Modifiers
+(14863, 4409, 1), -- MP Modifiers
+(14863, 4410, 11), -- P. Atk. Modifiers
+(14863, 4411, 11), -- M. Atk. Modifiers
+(14863, 4412, 11), -- P. Def. Modifiers
+(14863, 4413, 11), -- M. Def. Modifiers
+(14863, 4414, 2), -- Armor Type
+(14863, 4415, 11), -- Weapon Type
+(14863, 4416, 21), -- Races
 -- Swoop Cannon
 (14864, 4332, 1), -- Mental Aegis
-(14864, 4408, 1), -- HP Increase (1x)
-(14864, 4409, 1), -- MP Increase (1x)
-(14864, 4410, 11), -- Average P. Atk.
-(14864, 4411, 11), -- Average M. Atk.
-(14864, 4412, 11), -- Average P. Def.
-(14864, 4413, 11), -- Average M. Def.
-(14864, 4414, 2), -- Standard Type
-(14864, 4415, 11), -- Spears
-(14864, 4416, 21), -- Siege Weapons
+(14864, 4408, 1), -- HP Modifiers
+(14864, 4409, 1), -- MP Modifiers
+(14864, 4410, 11), -- P. Atk. Modifiers
+(14864, 4411, 11), -- M. Atk. Modifiers
+(14864, 4412, 11), -- P. Def. Modifiers
+(14864, 4413, 11), -- M. Def. Modifiers
+(14864, 4414, 2), -- Armor Type
+(14864, 4415, 11), -- Weapon Type
+(14864, 4416, 21), -- Races
 -- Swoop Cannon
 (14865, 4332, 1), -- Mental Aegis
-(14865, 4408, 1), -- HP Increase (1x)
-(14865, 4409, 1), -- MP Increase (1x)
-(14865, 4410, 11), -- Average P. Atk.
-(14865, 4411, 11), -- Average M. Atk.
-(14865, 4412, 11), -- Average P. Def.
-(14865, 4413, 11), -- Average M. Def.
-(14865, 4414, 2), -- Standard Type
-(14865, 4415, 11), -- Spears
-(14865, 4416, 21), -- Siege Weapons
+(14865, 4408, 1), -- HP Modifiers
+(14865, 4409, 1), -- MP Modifiers
+(14865, 4410, 11), -- P. Atk. Modifiers
+(14865, 4411, 11), -- M. Atk. Modifiers
+(14865, 4412, 11), -- P. Def. Modifiers
+(14865, 4413, 11), -- M. Def. Modifiers
+(14865, 4414, 2), -- Armor Type
+(14865, 4415, 11), -- Weapon Type
+(14865, 4416, 21), -- Races
 -- Swoop Cannon
 (14866, 4332, 1), -- Mental Aegis
-(14866, 4408, 1), -- HP Increase (1x)
-(14866, 4409, 1), -- MP Increase (1x)
-(14866, 4410, 11), -- Average P. Atk.
-(14866, 4411, 11), -- Average M. Atk.
-(14866, 4412, 11), -- Average P. Def.
-(14866, 4413, 11), -- Average M. Def.
-(14866, 4414, 2), -- Standard Type
-(14866, 4415, 11), -- Spears
-(14866, 4416, 21), -- Siege Weapons
+(14866, 4408, 1), -- HP Modifiers
+(14866, 4409, 1), -- MP Modifiers
+(14866, 4410, 11), -- P. Atk. Modifiers
+(14866, 4411, 11), -- M. Atk. Modifiers
+(14866, 4412, 11), -- P. Def. Modifiers
+(14866, 4413, 11), -- M. Def. Modifiers
+(14866, 4414, 2), -- Armor Type
+(14866, 4415, 11), -- Weapon Type
+(14866, 4416, 21), -- Races
 -- Swoop Cannon
 (14867, 4332, 1), -- Mental Aegis
-(14867, 4408, 1), -- HP Increase (1x)
-(14867, 4409, 1), -- MP Increase (1x)
-(14867, 4410, 11), -- Average P. Atk.
-(14867, 4411, 11), -- Average M. Atk.
-(14867, 4412, 11), -- Average P. Def.
-(14867, 4413, 11), -- Average M. Def.
-(14867, 4414, 2), -- Standard Type
-(14867, 4415, 11), -- Spears
-(14867, 4416, 21), -- Siege Weapons
+(14867, 4408, 1), -- HP Modifiers
+(14867, 4409, 1), -- MP Modifiers
+(14867, 4410, 11), -- P. Atk. Modifiers
+(14867, 4411, 11), -- M. Atk. Modifiers
+(14867, 4412, 11), -- P. Def. Modifiers
+(14867, 4413, 11), -- M. Def. Modifiers
+(14867, 4414, 2), -- Armor Type
+(14867, 4415, 11), -- Weapon Type
+(14867, 4416, 21), -- Races
 -- Swoop Cannon
 (14868, 4332, 1), -- Mental Aegis
-(14868, 4408, 1), -- HP Increase (1x)
-(14868, 4409, 1), -- MP Increase (1x)
-(14868, 4410, 11), -- Average P. Atk.
-(14868, 4411, 11), -- Average M. Atk.
-(14868, 4412, 11), -- Average P. Def.
-(14868, 4413, 11), -- Average M. Def.
-(14868, 4414, 2), -- Standard Type
-(14868, 4415, 11), -- Spears
-(14868, 4416, 21), -- Siege Weapons
+(14868, 4408, 1), -- HP Modifiers
+(14868, 4409, 1), -- MP Modifiers
+(14868, 4410, 11), -- P. Atk. Modifiers
+(14868, 4411, 11), -- M. Atk. Modifiers
+(14868, 4412, 11), -- P. Def. Modifiers
+(14868, 4413, 11), -- M. Def. Modifiers
+(14868, 4414, 2), -- Armor Type
+(14868, 4415, 11), -- Weapon Type
+(14868, 4416, 21), -- Races
 -- Swoop Cannon
 (14869, 4332, 1), -- Mental Aegis
-(14869, 4408, 1), -- HP Increase (1x)
-(14869, 4409, 1), -- MP Increase (1x)
-(14869, 4410, 11), -- Average P. Atk.
-(14869, 4411, 11), -- Average M. Atk.
-(14869, 4412, 11), -- Average P. Def.
-(14869, 4413, 11), -- Average M. Def.
-(14869, 4414, 2), -- Standard Type
-(14869, 4415, 11), -- Spears
-(14869, 4416, 21), -- Siege Weapons
+(14869, 4408, 1), -- HP Modifiers
+(14869, 4409, 1), -- MP Modifiers
+(14869, 4410, 11), -- P. Atk. Modifiers
+(14869, 4411, 11), -- M. Atk. Modifiers
+(14869, 4412, 11), -- P. Def. Modifiers
+(14869, 4413, 11), -- M. Def. Modifiers
+(14869, 4414, 2), -- Armor Type
+(14869, 4415, 11), -- Weapon Type
+(14869, 4416, 21), -- Races
 -- Divine Beast
 (14870, 4121, 9), -- Summoned Monster Magic Protection
-(14870, 4408, 6), -- HP Very High
-(14870, 4409, 1), -- MP Increase (1x)
-(14870, 4410, 15), -- Strong P. Atk.
-(14870, 4411, 13), -- Slightly Strong M. Atk.
-(14870, 4412, 11), -- Average P. Def.
-(14870, 4413, 13), -- Slightly Strong M. Def.
-(14870, 4414, 2), -- Standard Type
-(14870, 4415, 3), -- One-handed Sword
-(14870, 4416, 8), -- Angels
-(14870, 5038, 15), -- Servitor PvP Penalty
+(14870, 4408, 6), -- HP Modifiers
+(14870, 4409, 1), -- MP Modifiers
+(14870, 4410, 15), -- P. Atk. Modifiers
+(14870, 4411, 13), -- M. Atk. Modifiers
+(14870, 4412, 11), -- P. Def. Modifiers
+(14870, 4413, 13), -- M. Def. Modifiers
+(14870, 4414, 2), -- Armor Type
+(14870, 4415, 3), -- Weapon Type
+(14870, 4416, 8), -- Races
+(14870, 5038, 15), -- Summon PVP Penalty
 -- Feline King
 (14871, 4121, 9), -- Summoned Monster Magic Protection
-(14871, 4408, 4), -- HP High
-(14871, 4409, 1), -- MP Increase (1x)
-(14871, 4410, 15), -- Strong P. Atk.
-(14871, 4411, 13), -- Slightly Strong M. Atk.
-(14871, 4412, 12), -- Slightly Strong P. Def.
-(14871, 4413, 12), -- Slightly Strong M. Def.
-(14871, 4414, 2), -- Standard Type
-(14871, 4415, 3), -- One-handed Sword
-(14871, 4416, 7), -- Spirits
-(14871, 5038, 15), -- Servitor PvP Penalty
+(14871, 4408, 4), -- HP Modifiers
+(14871, 4409, 1), -- MP Modifiers
+(14871, 4410, 15), -- P. Atk. Modifiers
+(14871, 4411, 13), -- M. Atk. Modifiers
+(14871, 4412, 12), -- P. Def. Modifiers
+(14871, 4413, 12), -- M. Def. Modifiers
+(14871, 4414, 2), -- Armor Type
+(14871, 4415, 3), -- Weapon Type
+(14871, 4416, 7), -- Races
+(14871, 5038, 15), -- Summon PVP Penalty
 -- Feline King
 (14872, 4121, 9), -- Summoned Monster Magic Protection
-(14872, 4408, 4), -- HP High
-(14872, 4409, 1), -- MP Increase (1x)
-(14872, 4410, 15), -- Strong P. Atk.
-(14872, 4411, 13), -- Slightly Strong M. Atk.
-(14872, 4412, 12), -- Slightly Strong P. Def.
-(14872, 4413, 12), -- Slightly Strong M. Def.
-(14872, 4414, 2), -- Standard Type
-(14872, 4415, 3), -- One-handed Sword
-(14872, 4416, 7), -- Spirits
-(14872, 5038, 15), -- Servitor PvP Penalty
+(14872, 4408, 4), -- HP Modifiers
+(14872, 4409, 1), -- MP Modifiers
+(14872, 4410, 15), -- P. Atk. Modifiers
+(14872, 4411, 13), -- M. Atk. Modifiers
+(14872, 4412, 12), -- P. Def. Modifiers
+(14872, 4413, 12), -- M. Def. Modifiers
+(14872, 4414, 2), -- Armor Type
+(14872, 4415, 3), -- Weapon Type
+(14872, 4416, 7), -- Races
+(14872, 5038, 15), -- Summon PVP Penalty
 -- Feline King
 (14873, 4121, 9), -- Summoned Monster Magic Protection
-(14873, 4408, 4), -- HP High
-(14873, 4409, 1), -- MP Increase (1x)
-(14873, 4410, 15), -- Strong P. Atk.
-(14873, 4411, 13), -- Slightly Strong M. Atk.
-(14873, 4412, 12), -- Slightly Strong P. Def.
-(14873, 4413, 12), -- Slightly Strong M. Def.
-(14873, 4414, 2), -- Standard Type
-(14873, 4415, 3); -- One-handed Sword
+(14873, 4408, 4), -- HP Modifiers
+(14873, 4409, 1), -- MP Modifiers
+(14873, 4410, 15), -- P. Atk. Modifiers
+(14873, 4411, 13), -- M. Atk. Modifiers
+(14873, 4412, 12), -- P. Def. Modifiers
+(14873, 4413, 12), -- M. Def. Modifiers
+(14873, 4414, 2), -- Armor Type
+(14873, 4415, 3); -- Weapon Type
 
 INSERT INTO `npcskills` VALUES
-(14873, 4416, 7), -- Spirits
-(14873, 5038, 15), -- Servitor PvP Penalty
+(14873, 4416, 7), -- Races
+(14873, 5038, 15), -- Summon PVP Penalty
 -- Feline King
 (14874, 4121, 9), -- Summoned Monster Magic Protection
-(14874, 4408, 4), -- HP High
-(14874, 4409, 1), -- MP Increase (1x)
-(14874, 4410, 15), -- Strong P. Atk.
-(14874, 4411, 13), -- Slightly Strong M. Atk.
-(14874, 4412, 12), -- Slightly Strong P. Def.
-(14874, 4413, 12), -- Slightly Strong M. Def.
-(14874, 4414, 2), -- Standard Type
-(14874, 4415, 3), -- One-handed Sword
-(14874, 4416, 7), -- Spirits
-(14874, 5038, 15), -- Servitor PvP Penalty
+(14874, 4408, 4), -- HP Modifiers
+(14874, 4409, 1), -- MP Modifiers
+(14874, 4410, 15), -- P. Atk. Modifiers
+(14874, 4411, 13), -- M. Atk. Modifiers
+(14874, 4412, 12), -- P. Def. Modifiers
+(14874, 4413, 12), -- M. Def. Modifiers
+(14874, 4414, 2), -- Armor Type
+(14874, 4415, 3), -- Weapon Type
+(14874, 4416, 7), -- Races
+(14874, 5038, 15), -- Summon PVP Penalty
 -- Feline King
 (14875, 4121, 9), -- Summoned Monster Magic Protection
-(14875, 4408, 4), -- HP High
-(14875, 4409, 1), -- MP Increase (1x)
-(14875, 4410, 15), -- Strong P. Atk.
-(14875, 4411, 13), -- Slightly Strong M. Atk.
-(14875, 4412, 12), -- Slightly Strong P. Def.
-(14875, 4413, 12), -- Slightly Strong M. Def.
-(14875, 4414, 2), -- Standard Type
-(14875, 4415, 3), -- One-handed Sword
-(14875, 4416, 7), -- Spirits
-(14875, 5038, 15), -- Servitor PvP Penalty
+(14875, 4408, 4), -- HP Modifiers
+(14875, 4409, 1), -- MP Modifiers
+(14875, 4410, 15), -- P. Atk. Modifiers
+(14875, 4411, 13), -- M. Atk. Modifiers
+(14875, 4412, 12), -- P. Def. Modifiers
+(14875, 4413, 12), -- M. Def. Modifiers
+(14875, 4414, 2), -- Armor Type
+(14875, 4415, 3), -- Weapon Type
+(14875, 4416, 7), -- Races
+(14875, 5038, 15), -- Summon PVP Penalty
 -- Feline King
 (14876, 4121, 9), -- Summoned Monster Magic Protection
-(14876, 4408, 4), -- HP High
-(14876, 4409, 1), -- MP Increase (1x)
-(14876, 4410, 15), -- Strong P. Atk.
-(14876, 4411, 13), -- Slightly Strong M. Atk.
-(14876, 4412, 12), -- Slightly Strong P. Def.
-(14876, 4413, 12), -- Slightly Strong M. Def.
-(14876, 4414, 2), -- Standard Type
-(14876, 4415, 3), -- One-handed Sword
-(14876, 4416, 7), -- Spirits
-(14876, 5038, 15), -- Servitor PvP Penalty
+(14876, 4408, 4), -- HP Modifiers
+(14876, 4409, 1), -- MP Modifiers
+(14876, 4410, 15), -- P. Atk. Modifiers
+(14876, 4411, 13), -- M. Atk. Modifiers
+(14876, 4412, 12), -- P. Def. Modifiers
+(14876, 4413, 12), -- M. Def. Modifiers
+(14876, 4414, 2), -- Armor Type
+(14876, 4415, 3), -- Weapon Type
+(14876, 4416, 7), -- Races
+(14876, 5038, 15), -- Summon PVP Penalty
 -- Feline King
 (14877, 4121, 9), -- Summoned Monster Magic Protection
-(14877, 4408, 4), -- HP High
-(14877, 4409, 1), -- MP Increase (1x)
-(14877, 4410, 15), -- Strong P. Atk.
-(14877, 4411, 13), -- Slightly Strong M. Atk.
-(14877, 4412, 12), -- Slightly Strong P. Def.
-(14877, 4413, 12), -- Slightly Strong M. Def.
-(14877, 4414, 2), -- Standard Type
-(14877, 4415, 3), -- One-handed Sword
-(14877, 4416, 7), -- Spirits
-(14877, 5038, 15), -- Servitor PvP Penalty
+(14877, 4408, 4), -- HP Modifiers
+(14877, 4409, 1), -- MP Modifiers
+(14877, 4410, 15), -- P. Atk. Modifiers
+(14877, 4411, 13), -- M. Atk. Modifiers
+(14877, 4412, 12), -- P. Def. Modifiers
+(14877, 4413, 12), -- M. Def. Modifiers
+(14877, 4414, 2), -- Armor Type
+(14877, 4415, 3), -- Weapon Type
+(14877, 4416, 7), -- Races
+(14877, 5038, 15), -- Summon PVP Penalty
 -- Feline King
 (14878, 4121, 9), -- Summoned Monster Magic Protection
-(14878, 4408, 4), -- HP High
-(14878, 4409, 1), -- MP Increase (1x)
-(14878, 4410, 15), -- Strong P. Atk.
-(14878, 4411, 13), -- Slightly Strong M. Atk.
-(14878, 4412, 12), -- Slightly Strong P. Def.
-(14878, 4413, 12), -- Slightly Strong M. Def.
-(14878, 4414, 2), -- Standard Type
-(14878, 4415, 3), -- One-handed Sword
-(14878, 4416, 7), -- Spirits
-(14878, 5038, 15), -- Servitor PvP Penalty
+(14878, 4408, 4), -- HP Modifiers
+(14878, 4409, 1), -- MP Modifiers
+(14878, 4410, 15), -- P. Atk. Modifiers
+(14878, 4411, 13), -- M. Atk. Modifiers
+(14878, 4412, 12), -- P. Def. Modifiers
+(14878, 4413, 12), -- M. Def. Modifiers
+(14878, 4414, 2), -- Armor Type
+(14878, 4415, 3), -- Weapon Type
+(14878, 4416, 7), -- Races
+(14878, 5038, 15), -- Summon PVP Penalty
 -- Feline King
 (14879, 4121, 9), -- Summoned Monster Magic Protection
-(14879, 4408, 4), -- HP High
-(14879, 4409, 1), -- MP Increase (1x)
-(14879, 4410, 15), -- Strong P. Atk.
-(14879, 4411, 13), -- Slightly Strong M. Atk.
-(14879, 4412, 12), -- Slightly Strong P. Def.
-(14879, 4413, 12), -- Slightly Strong M. Def.
-(14879, 4414, 2), -- Standard Type
-(14879, 4415, 3), -- One-handed Sword
-(14879, 4416, 7), -- Spirits
-(14879, 5038, 15), -- Servitor PvP Penalty
+(14879, 4408, 4), -- HP Modifiers
+(14879, 4409, 1), -- MP Modifiers
+(14879, 4410, 15), -- P. Atk. Modifiers
+(14879, 4411, 13), -- M. Atk. Modifiers
+(14879, 4412, 12), -- P. Def. Modifiers
+(14879, 4413, 12), -- M. Def. Modifiers
+(14879, 4414, 2), -- Armor Type
+(14879, 4415, 3), -- Weapon Type
+(14879, 4416, 7), -- Races
+(14879, 5038, 15), -- Summon PVP Penalty
 -- Feline King
 (14880, 4121, 9), -- Summoned Monster Magic Protection
-(14880, 4408, 4), -- HP High
-(14880, 4409, 1), -- MP Increase (1x)
-(14880, 4410, 15), -- Strong P. Atk.
-(14880, 4411, 13), -- Slightly Strong M. Atk.
-(14880, 4412, 12), -- Slightly Strong P. Def.
-(14880, 4413, 12), -- Slightly Strong M. Def.
-(14880, 4414, 2), -- Standard Type
-(14880, 4415, 3), -- One-handed Sword
-(14880, 4416, 7), -- Spirits
-(14880, 5038, 15), -- Servitor PvP Penalty
+(14880, 4408, 4), -- HP Modifiers
+(14880, 4409, 1), -- MP Modifiers
+(14880, 4410, 15), -- P. Atk. Modifiers
+(14880, 4411, 13), -- M. Atk. Modifiers
+(14880, 4412, 12), -- P. Def. Modifiers
+(14880, 4413, 12), -- M. Def. Modifiers
+(14880, 4414, 2), -- Armor Type
+(14880, 4415, 3), -- Weapon Type
+(14880, 4416, 7), -- Races
+(14880, 5038, 15), -- Summon PVP Penalty
 -- Feline King
 (14881, 4121, 9), -- Summoned Monster Magic Protection
-(14881, 4408, 4), -- HP High
-(14881, 4409, 1), -- MP Increase (1x)
-(14881, 4410, 15), -- Strong P. Atk.
-(14881, 4411, 13), -- Slightly Strong M. Atk.
-(14881, 4412, 12), -- Slightly Strong P. Def.
-(14881, 4413, 12), -- Slightly Strong M. Def.
-(14881, 4414, 2), -- Standard Type
-(14881, 4415, 3), -- One-handed Sword
-(14881, 4416, 7), -- Spirits
-(14881, 5038, 15), -- Servitor PvP Penalty
+(14881, 4408, 4), -- HP Modifiers
+(14881, 4409, 1), -- MP Modifiers
+(14881, 4410, 15), -- P. Atk. Modifiers
+(14881, 4411, 13), -- M. Atk. Modifiers
+(14881, 4412, 12), -- P. Def. Modifiers
+(14881, 4413, 12), -- M. Def. Modifiers
+(14881, 4414, 2), -- Armor Type
+(14881, 4415, 3), -- Weapon Type
+(14881, 4416, 7), -- Races
+(14881, 5038, 15), -- Summon PVP Penalty
 -- Feline King
 (14882, 4121, 9), -- Summoned Monster Magic Protection
-(14882, 4408, 4), -- HP High
-(14882, 4409, 1), -- MP Increase (1x)
-(14882, 4410, 15), -- Strong P. Atk.
-(14882, 4411, 13), -- Slightly Strong M. Atk.
-(14882, 4412, 12), -- Slightly Strong P. Def.
-(14882, 4413, 12), -- Slightly Strong M. Def.
-(14882, 4414, 2), -- Standard Type
-(14882, 4415, 3), -- One-handed Sword
-(14882, 4416, 7), -- Spirits
-(14882, 5038, 15), -- Servitor PvP Penalty
+(14882, 4408, 4), -- HP Modifiers
+(14882, 4409, 1), -- MP Modifiers
+(14882, 4410, 15), -- P. Atk. Modifiers
+(14882, 4411, 13), -- M. Atk. Modifiers
+(14882, 4412, 12), -- P. Def. Modifiers
+(14882, 4413, 12), -- M. Def. Modifiers
+(14882, 4414, 2), -- Armor Type
+(14882, 4415, 3), -- Weapon Type
+(14882, 4416, 7), -- Races
+(14882, 5038, 15), -- Summon PVP Penalty
 -- Feline King
 (14883, 4121, 9), -- Summoned Monster Magic Protection
-(14883, 4408, 4), -- HP High
-(14883, 4409, 1), -- MP Increase (1x)
-(14883, 4410, 15), -- Strong P. Atk.
-(14883, 4411, 13), -- Slightly Strong M. Atk.
-(14883, 4412, 12), -- Slightly Strong P. Def.
-(14883, 4413, 12), -- Slightly Strong M. Def.
-(14883, 4414, 2), -- Standard Type
-(14883, 4415, 3), -- One-handed Sword
-(14883, 4416, 7), -- Spirits
-(14883, 5038, 15), -- Servitor PvP Penalty
+(14883, 4408, 4), -- HP Modifiers
+(14883, 4409, 1), -- MP Modifiers
+(14883, 4410, 15), -- P. Atk. Modifiers
+(14883, 4411, 13), -- M. Atk. Modifiers
+(14883, 4412, 12), -- P. Def. Modifiers
+(14883, 4413, 12), -- M. Def. Modifiers
+(14883, 4414, 2), -- Armor Type
+(14883, 4415, 3), -- Weapon Type
+(14883, 4416, 7), -- Races
+(14883, 5038, 15), -- Summon PVP Penalty
 -- Feline King
 (14884, 4121, 9), -- Summoned Monster Magic Protection
-(14884, 4408, 4), -- HP High
-(14884, 4409, 1), -- MP Increase (1x)
-(14884, 4410, 15), -- Strong P. Atk.
-(14884, 4411, 13), -- Slightly Strong M. Atk.
-(14884, 4412, 12), -- Slightly Strong P. Def.
-(14884, 4413, 12), -- Slightly Strong M. Def.
-(14884, 4414, 2), -- Standard Type
-(14884, 4415, 3), -- One-handed Sword
-(14884, 4416, 7), -- Spirits
-(14884, 5038, 15), -- Servitor PvP Penalty
+(14884, 4408, 4), -- HP Modifiers
+(14884, 4409, 1), -- MP Modifiers
+(14884, 4410, 15), -- P. Atk. Modifiers
+(14884, 4411, 13), -- M. Atk. Modifiers
+(14884, 4412, 12), -- P. Def. Modifiers
+(14884, 4413, 12), -- M. Def. Modifiers
+(14884, 4414, 2), -- Armor Type
+(14884, 4415, 3), -- Weapon Type
+(14884, 4416, 7), -- Races
+(14884, 5038, 15), -- Summon PVP Penalty
 -- Feline King
 (14885, 4121, 9), -- Summoned Monster Magic Protection
-(14885, 4408, 4), -- HP High
-(14885, 4409, 1), -- MP Increase (1x)
-(14885, 4410, 15), -- Strong P. Atk.
-(14885, 4411, 13), -- Slightly Strong M. Atk.
-(14885, 4412, 12), -- Slightly Strong P. Def.
-(14885, 4413, 12), -- Slightly Strong M. Def.
-(14885, 4414, 2), -- Standard Type
-(14885, 4415, 3), -- One-handed Sword
-(14885, 4416, 7), -- Spirits
-(14885, 5038, 15), -- Servitor PvP Penalty
+(14885, 4408, 4), -- HP Modifiers
+(14885, 4409, 1), -- MP Modifiers
+(14885, 4410, 15), -- P. Atk. Modifiers
+(14885, 4411, 13), -- M. Atk. Modifiers
+(14885, 4412, 12), -- P. Def. Modifiers
+(14885, 4413, 12), -- M. Def. Modifiers
+(14885, 4414, 2), -- Armor Type
+(14885, 4415, 3), -- Weapon Type
+(14885, 4416, 7), -- Races
+(14885, 5038, 15), -- Summon PVP Penalty
 -- Magnus the Unicorn
 (14886, 4121, 9), -- Summoned Monster Magic Protection
-(14886, 4408, 4), -- HP High
-(14886, 4409, 1), -- MP Increase (1x)
-(14886, 4410, 15), -- Strong P. Atk.
-(14886, 4411, 13), -- Slightly Strong M. Atk.
-(14886, 4412, 12), -- Slightly Strong P. Def.
-(14886, 4413, 12), -- Slightly Strong M. Def.
-(14886, 4414, 2), -- Standard Type
-(14886, 4415, 3), -- One-handed Sword
-(14886, 4416, 7), -- Spirits
-(14886, 5038, 15), -- Servitor PvP Penalty
+(14886, 4408, 4), -- HP Modifiers
+(14886, 4409, 1), -- MP Modifiers
+(14886, 4410, 15), -- P. Atk. Modifiers
+(14886, 4411, 13), -- M. Atk. Modifiers
+(14886, 4412, 12), -- P. Def. Modifiers
+(14886, 4413, 12), -- M. Def. Modifiers
+(14886, 4414, 2), -- Armor Type
+(14886, 4415, 3), -- Weapon Type
+(14886, 4416, 7), -- Races
+(14886, 5038, 15), -- Summon PVP Penalty
 -- Magnus the Unicorn
 (14887, 4121, 9), -- Summoned Monster Magic Protection
-(14887, 4408, 4), -- HP High
-(14887, 4409, 1), -- MP Increase (1x)
-(14887, 4410, 15), -- Strong P. Atk.
-(14887, 4411, 13), -- Slightly Strong M. Atk.
-(14887, 4412, 12), -- Slightly Strong P. Def.
-(14887, 4413, 12), -- Slightly Strong M. Def.
-(14887, 4414, 2), -- Standard Type
-(14887, 4415, 3), -- One-handed Sword
-(14887, 4416, 7), -- Spirits
-(14887, 5038, 15), -- Servitor PvP Penalty
+(14887, 4408, 4), -- HP Modifiers
+(14887, 4409, 1), -- MP Modifiers
+(14887, 4410, 15), -- P. Atk. Modifiers
+(14887, 4411, 13), -- M. Atk. Modifiers
+(14887, 4412, 12), -- P. Def. Modifiers
+(14887, 4413, 12), -- M. Def. Modifiers
+(14887, 4414, 2), -- Armor Type
+(14887, 4415, 3), -- Weapon Type
+(14887, 4416, 7), -- Races
+(14887, 5038, 15), -- Summon PVP Penalty
 -- Magnus the Unicorn
 (14888, 4121, 9), -- Summoned Monster Magic Protection
-(14888, 4408, 4), -- HP High
-(14888, 4409, 1), -- MP Increase (1x)
-(14888, 4410, 15), -- Strong P. Atk.
-(14888, 4411, 13), -- Slightly Strong M. Atk.
-(14888, 4412, 12), -- Slightly Strong P. Def.
-(14888, 4413, 12), -- Slightly Strong M. Def.
-(14888, 4414, 2), -- Standard Type
-(14888, 4415, 3), -- One-handed Sword
-(14888, 4416, 7), -- Spirits
-(14888, 5038, 15), -- Servitor PvP Penalty
+(14888, 4408, 4), -- HP Modifiers
+(14888, 4409, 1), -- MP Modifiers
+(14888, 4410, 15), -- P. Atk. Modifiers
+(14888, 4411, 13), -- M. Atk. Modifiers
+(14888, 4412, 12), -- P. Def. Modifiers
+(14888, 4413, 12), -- M. Def. Modifiers
+(14888, 4414, 2), -- Armor Type
+(14888, 4415, 3), -- Weapon Type
+(14888, 4416, 7), -- Races
+(14888, 5038, 15), -- Summon PVP Penalty
 -- Magnus the Unicorn
 (14889, 4121, 9), -- Summoned Monster Magic Protection
-(14889, 4408, 4), -- HP High
-(14889, 4409, 1), -- MP Increase (1x)
-(14889, 4410, 15), -- Strong P. Atk.
-(14889, 4411, 13), -- Slightly Strong M. Atk.
-(14889, 4412, 12), -- Slightly Strong P. Def.
-(14889, 4413, 12), -- Slightly Strong M. Def.
-(14889, 4414, 2), -- Standard Type
-(14889, 4415, 3), -- One-handed Sword
-(14889, 4416, 7), -- Spirits
-(14889, 5038, 15), -- Servitor PvP Penalty
+(14889, 4408, 4), -- HP Modifiers
+(14889, 4409, 1), -- MP Modifiers
+(14889, 4410, 15), -- P. Atk. Modifiers
+(14889, 4411, 13), -- M. Atk. Modifiers
+(14889, 4412, 12), -- P. Def. Modifiers
+(14889, 4413, 12), -- M. Def. Modifiers
+(14889, 4414, 2), -- Armor Type
+(14889, 4415, 3), -- Weapon Type
+(14889, 4416, 7), -- Races
+(14889, 5038, 15), -- Summon PVP Penalty
 -- Magnus the Unicorn
 (14890, 4121, 9), -- Summoned Monster Magic Protection
-(14890, 4408, 4), -- HP High
-(14890, 4409, 1), -- MP Increase (1x)
-(14890, 4410, 15), -- Strong P. Atk.
-(14890, 4411, 13), -- Slightly Strong M. Atk.
-(14890, 4412, 12), -- Slightly Strong P. Def.
-(14890, 4413, 12), -- Slightly Strong M. Def.
-(14890, 4414, 2), -- Standard Type
-(14890, 4415, 3), -- One-handed Sword
-(14890, 4416, 7), -- Spirits
-(14890, 5038, 15), -- Servitor PvP Penalty
+(14890, 4408, 4), -- HP Modifiers
+(14890, 4409, 1), -- MP Modifiers
+(14890, 4410, 15), -- P. Atk. Modifiers
+(14890, 4411, 13), -- M. Atk. Modifiers
+(14890, 4412, 12), -- P. Def. Modifiers
+(14890, 4413, 12), -- M. Def. Modifiers
+(14890, 4414, 2), -- Armor Type
+(14890, 4415, 3), -- Weapon Type
+(14890, 4416, 7), -- Races
+(14890, 5038, 15), -- Summon PVP Penalty
 -- Magnus the Unicorn
 (14891, 4121, 9), -- Summoned Monster Magic Protection
-(14891, 4408, 4), -- HP High
-(14891, 4409, 1), -- MP Increase (1x)
-(14891, 4410, 15), -- Strong P. Atk.
-(14891, 4411, 13), -- Slightly Strong M. Atk.
-(14891, 4412, 12), -- Slightly Strong P. Def.
-(14891, 4413, 12), -- Slightly Strong M. Def.
-(14891, 4414, 2), -- Standard Type
-(14891, 4415, 3), -- One-handed Sword
-(14891, 4416, 7), -- Spirits
-(14891, 5038, 15), -- Servitor PvP Penalty
+(14891, 4408, 4), -- HP Modifiers
+(14891, 4409, 1), -- MP Modifiers
+(14891, 4410, 15), -- P. Atk. Modifiers
+(14891, 4411, 13), -- M. Atk. Modifiers
+(14891, 4412, 12), -- P. Def. Modifiers
+(14891, 4413, 12), -- M. Def. Modifiers
+(14891, 4414, 2), -- Armor Type
+(14891, 4415, 3), -- Weapon Type
+(14891, 4416, 7), -- Races
+(14891, 5038, 15), -- Summon PVP Penalty
 -- Magnus the Unicorn
 (14892, 4121, 9), -- Summoned Monster Magic Protection
-(14892, 4408, 4), -- HP High
-(14892, 4409, 1), -- MP Increase (1x)
-(14892, 4410, 15), -- Strong P. Atk.
-(14892, 4411, 13), -- Slightly Strong M. Atk.
-(14892, 4412, 12), -- Slightly Strong P. Def.
-(14892, 4413, 12), -- Slightly Strong M. Def.
-(14892, 4414, 2), -- Standard Type
-(14892, 4415, 3), -- One-handed Sword
-(14892, 4416, 7), -- Spirits
-(14892, 5038, 15), -- Servitor PvP Penalty
+(14892, 4408, 4), -- HP Modifiers
+(14892, 4409, 1), -- MP Modifiers
+(14892, 4410, 15), -- P. Atk. Modifiers
+(14892, 4411, 13), -- M. Atk. Modifiers
+(14892, 4412, 12), -- P. Def. Modifiers
+(14892, 4413, 12), -- M. Def. Modifiers
+(14892, 4414, 2), -- Armor Type
+(14892, 4415, 3), -- Weapon Type
+(14892, 4416, 7), -- Races
+(14892, 5038, 15), -- Summon PVP Penalty
 -- Magnus the Unicorn
 (14893, 4121, 9), -- Summoned Monster Magic Protection
-(14893, 4408, 4), -- HP High
-(14893, 4409, 1), -- MP Increase (1x)
-(14893, 4410, 15), -- Strong P. Atk.
-(14893, 4411, 13), -- Slightly Strong M. Atk.
-(14893, 4412, 12), -- Slightly Strong P. Def.
-(14893, 4413, 12), -- Slightly Strong M. Def.
-(14893, 4414, 2), -- Standard Type
-(14893, 4415, 3), -- One-handed Sword
-(14893, 4416, 7), -- Spirits
-(14893, 5038, 15), -- Servitor PvP Penalty
+(14893, 4408, 4), -- HP Modifiers
+(14893, 4409, 1), -- MP Modifiers
+(14893, 4410, 15), -- P. Atk. Modifiers
+(14893, 4411, 13), -- M. Atk. Modifiers
+(14893, 4412, 12), -- P. Def. Modifiers
+(14893, 4413, 12), -- M. Def. Modifiers
+(14893, 4414, 2), -- Armor Type
+(14893, 4415, 3), -- Weapon Type
+(14893, 4416, 7), -- Races
+(14893, 5038, 15), -- Summon PVP Penalty
 -- Magnus the Unicorn
 (14894, 4121, 9), -- Summoned Monster Magic Protection
-(14894, 4408, 4), -- HP High
-(14894, 4409, 1), -- MP Increase (1x)
-(14894, 4410, 15), -- Strong P. Atk.
-(14894, 4411, 13), -- Slightly Strong M. Atk.
-(14894, 4412, 12), -- Slightly Strong P. Def.
-(14894, 4413, 12), -- Slightly Strong M. Def.
-(14894, 4414, 2), -- Standard Type
-(14894, 4415, 3), -- One-handed Sword
-(14894, 4416, 7), -- Spirits
-(14894, 5038, 15), -- Servitor PvP Penalty
+(14894, 4408, 4), -- HP Modifiers
+(14894, 4409, 1), -- MP Modifiers
+(14894, 4410, 15), -- P. Atk. Modifiers
+(14894, 4411, 13), -- M. Atk. Modifiers
+(14894, 4412, 12), -- P. Def. Modifiers
+(14894, 4413, 12), -- M. Def. Modifiers
+(14894, 4414, 2), -- Armor Type
+(14894, 4415, 3), -- Weapon Type
+(14894, 4416, 7), -- Races
+(14894, 5038, 15), -- Summon PVP Penalty
 -- Magnus the Unicorn
 (14895, 4121, 9), -- Summoned Monster Magic Protection
-(14895, 4408, 4), -- HP High
-(14895, 4409, 1), -- MP Increase (1x)
-(14895, 4410, 15), -- Strong P. Atk.
-(14895, 4411, 13), -- Slightly Strong M. Atk.
-(14895, 4412, 12), -- Slightly Strong P. Def.
-(14895, 4413, 12), -- Slightly Strong M. Def.
-(14895, 4414, 2), -- Standard Type
-(14895, 4415, 3), -- One-handed Sword
-(14895, 4416, 7), -- Spirits
-(14895, 5038, 15), -- Servitor PvP Penalty
+(14895, 4408, 4), -- HP Modifiers
+(14895, 4409, 1), -- MP Modifiers
+(14895, 4410, 15), -- P. Atk. Modifiers
+(14895, 4411, 13), -- M. Atk. Modifiers
+(14895, 4412, 12), -- P. Def. Modifiers
+(14895, 4413, 12), -- M. Def. Modifiers
+(14895, 4414, 2), -- Armor Type
+(14895, 4415, 3), -- Weapon Type
+(14895, 4416, 7), -- Races
+(14895, 5038, 15), -- Summon PVP Penalty
 -- Magnus the Unicorn
 (14896, 4121, 9), -- Summoned Monster Magic Protection
-(14896, 4408, 4), -- HP High
-(14896, 4409, 1), -- MP Increase (1x)
-(14896, 4410, 15), -- Strong P. Atk.
-(14896, 4411, 13), -- Slightly Strong M. Atk.
-(14896, 4412, 12), -- Slightly Strong P. Def.
-(14896, 4413, 12), -- Slightly Strong M. Def.
-(14896, 4414, 2), -- Standard Type
-(14896, 4415, 3), -- One-handed Sword
-(14896, 4416, 7), -- Spirits
-(14896, 5038, 15), -- Servitor PvP Penalty
+(14896, 4408, 4), -- HP Modifiers
+(14896, 4409, 1), -- MP Modifiers
+(14896, 4410, 15), -- P. Atk. Modifiers
+(14896, 4411, 13), -- M. Atk. Modifiers
+(14896, 4412, 12), -- P. Def. Modifiers
+(14896, 4413, 12), -- M. Def. Modifiers
+(14896, 4414, 2), -- Armor Type
+(14896, 4415, 3), -- Weapon Type
+(14896, 4416, 7), -- Races
+(14896, 5038, 15), -- Summon PVP Penalty
 -- Magnus the Unicorn
 (14897, 4121, 9), -- Summoned Monster Magic Protection
-(14897, 4408, 4), -- HP High
-(14897, 4409, 1), -- MP Increase (1x)
-(14897, 4410, 15), -- Strong P. Atk.
-(14897, 4411, 13), -- Slightly Strong M. Atk.
-(14897, 4412, 12), -- Slightly Strong P. Def.
-(14897, 4413, 12), -- Slightly Strong M. Def.
-(14897, 4414, 2), -- Standard Type
-(14897, 4415, 3), -- One-handed Sword
-(14897, 4416, 7), -- Spirits
-(14897, 5038, 15), -- Servitor PvP Penalty
+(14897, 4408, 4), -- HP Modifiers
+(14897, 4409, 1), -- MP Modifiers
+(14897, 4410, 15), -- P. Atk. Modifiers
+(14897, 4411, 13), -- M. Atk. Modifiers
+(14897, 4412, 12), -- P. Def. Modifiers
+(14897, 4413, 12), -- M. Def. Modifiers
+(14897, 4414, 2), -- Armor Type
+(14897, 4415, 3), -- Weapon Type
+(14897, 4416, 7), -- Races
+(14897, 5038, 15), -- Summon PVP Penalty
 -- Magnus the Unicorn
 (14898, 4121, 9), -- Summoned Monster Magic Protection
-(14898, 4408, 4), -- HP High
-(14898, 4409, 1), -- MP Increase (1x)
-(14898, 4410, 15), -- Strong P. Atk.
-(14898, 4411, 13), -- Slightly Strong M. Atk.
-(14898, 4412, 12), -- Slightly Strong P. Def.
-(14898, 4413, 12), -- Slightly Strong M. Def.
-(14898, 4414, 2), -- Standard Type
-(14898, 4415, 3), -- One-handed Sword
-(14898, 4416, 7), -- Spirits
-(14898, 5038, 15), -- Servitor PvP Penalty
+(14898, 4408, 4), -- HP Modifiers
+(14898, 4409, 1), -- MP Modifiers
+(14898, 4410, 15), -- P. Atk. Modifiers
+(14898, 4411, 13), -- M. Atk. Modifiers
+(14898, 4412, 12), -- P. Def. Modifiers
+(14898, 4413, 12), -- M. Def. Modifiers
+(14898, 4414, 2), -- Armor Type
+(14898, 4415, 3), -- Weapon Type
+(14898, 4416, 7), -- Races
+(14898, 5038, 15), -- Summon PVP Penalty
 -- Magnus the Unicorn
 (14899, 4121, 9), -- Summoned Monster Magic Protection
-(14899, 4408, 4), -- HP High
-(14899, 4409, 1), -- MP Increase (1x)
-(14899, 4410, 15), -- Strong P. Atk.
-(14899, 4411, 13), -- Slightly Strong M. Atk.
-(14899, 4412, 12), -- Slightly Strong P. Def.
-(14899, 4413, 12), -- Slightly Strong M. Def.
-(14899, 4414, 2), -- Standard Type
-(14899, 4415, 3), -- One-handed Sword
-(14899, 4416, 7), -- Spirits
-(14899, 5038, 15), -- Servitor PvP Penalty
+(14899, 4408, 4), -- HP Modifiers
+(14899, 4409, 1), -- MP Modifiers
+(14899, 4410, 15), -- P. Atk. Modifiers
+(14899, 4411, 13), -- M. Atk. Modifiers
+(14899, 4412, 12), -- P. Def. Modifiers
+(14899, 4413, 12), -- M. Def. Modifiers
+(14899, 4414, 2), -- Armor Type
+(14899, 4415, 3), -- Weapon Type
+(14899, 4416, 7), -- Races
+(14899, 5038, 15), -- Summon PVP Penalty
 -- Magnus the Unicorn
 (14900, 4121, 9), -- Summoned Monster Magic Protection
-(14900, 4408, 4), -- HP High
-(14900, 4409, 1), -- MP Increase (1x)
-(14900, 4410, 15), -- Strong P. Atk.
-(14900, 4411, 13), -- Slightly Strong M. Atk.
-(14900, 4412, 12), -- Slightly Strong P. Def.
-(14900, 4413, 12), -- Slightly Strong M. Def.
-(14900, 4414, 2), -- Standard Type
-(14900, 4415, 3), -- One-handed Sword
-(14900, 4416, 7), -- Spirits
-(14900, 5038, 15), -- Servitor PvP Penalty
+(14900, 4408, 4), -- HP Modifiers
+(14900, 4409, 1), -- MP Modifiers
+(14900, 4410, 15), -- P. Atk. Modifiers
+(14900, 4411, 13), -- M. Atk. Modifiers
+(14900, 4412, 12), -- P. Def. Modifiers
+(14900, 4413, 12), -- M. Def. Modifiers
+(14900, 4414, 2), -- Armor Type
+(14900, 4415, 3), -- Weapon Type
+(14900, 4416, 7), -- Races
+(14900, 5038, 15), -- Summon PVP Penalty
 -- Spectral Lord
 (14901, 4121, 9), -- Summoned Monster Magic Protection
-(14901, 4408, 4), -- HP High
-(14901, 4409, 1), -- MP Increase (1x)
-(14901, 4410, 15), -- Strong P. Atk.
-(14901, 4411, 13), -- Slightly Strong M. Atk.
-(14901, 4412, 12), -- Slightly Strong P. Def.
-(14901, 4413, 12), -- Slightly Strong M. Def.
-(14901, 4414, 2), -- Standard Type
-(14901, 4415, 3), -- One-handed Sword
-(14901, 4416, 9), -- Demons
-(14901, 5038, 15), -- Servitor PvP Penalty
+(14901, 4408, 4), -- HP Modifiers
+(14901, 4409, 1), -- MP Modifiers
+(14901, 4410, 15), -- P. Atk. Modifiers
+(14901, 4411, 13), -- M. Atk. Modifiers
+(14901, 4412, 12), -- P. Def. Modifiers
+(14901, 4413, 12), -- M. Def. Modifiers
+(14901, 4414, 2), -- Armor Type
+(14901, 4415, 3), -- Weapon Type
+(14901, 4416, 9), -- Races
+(14901, 5038, 15), -- Summon PVP Penalty
 -- Spectral Lord
 (14902, 4121, 9), -- Summoned Monster Magic Protection
-(14902, 4408, 4), -- HP High
-(14902, 4409, 1), -- MP Increase (1x)
-(14902, 4410, 15), -- Strong P. Atk.
-(14902, 4411, 13), -- Slightly Strong M. Atk.
-(14902, 4412, 12), -- Slightly Strong P. Def.
-(14902, 4413, 12), -- Slightly Strong M. Def.
-(14902, 4414, 2), -- Standard Type
-(14902, 4415, 3), -- One-handed Sword
-(14902, 4416, 9), -- Demons
-(14902, 5038, 15), -- Servitor PvP Penalty
+(14902, 4408, 4), -- HP Modifiers
+(14902, 4409, 1), -- MP Modifiers
+(14902, 4410, 15), -- P. Atk. Modifiers
+(14902, 4411, 13), -- M. Atk. Modifiers
+(14902, 4412, 12), -- P. Def. Modifiers
+(14902, 4413, 12), -- M. Def. Modifiers
+(14902, 4414, 2), -- Armor Type
+(14902, 4415, 3), -- Weapon Type
+(14902, 4416, 9), -- Races
+(14902, 5038, 15), -- Summon PVP Penalty
 -- Spectral Lord
 (14903, 4121, 9), -- Summoned Monster Magic Protection
-(14903, 4408, 4), -- HP High
-(14903, 4409, 1), -- MP Increase (1x)
-(14903, 4410, 15), -- Strong P. Atk.
-(14903, 4411, 13), -- Slightly Strong M. Atk.
-(14903, 4412, 12), -- Slightly Strong P. Def.
-(14903, 4413, 12), -- Slightly Strong M. Def.
-(14903, 4414, 2), -- Standard Type
-(14903, 4415, 3), -- One-handed Sword
-(14903, 4416, 9), -- Demons
-(14903, 5038, 15), -- Servitor PvP Penalty
+(14903, 4408, 4), -- HP Modifiers
+(14903, 4409, 1), -- MP Modifiers
+(14903, 4410, 15), -- P. Atk. Modifiers
+(14903, 4411, 13), -- M. Atk. Modifiers
+(14903, 4412, 12), -- P. Def. Modifiers
+(14903, 4413, 12), -- M. Def. Modifiers
+(14903, 4414, 2), -- Armor Type
+(14903, 4415, 3), -- Weapon Type
+(14903, 4416, 9), -- Races
+(14903, 5038, 15), -- Summon PVP Penalty
 -- Spectral Lord
 (14904, 4121, 9), -- Summoned Monster Magic Protection
-(14904, 4408, 4), -- HP High
-(14904, 4409, 1), -- MP Increase (1x)
-(14904, 4410, 15), -- Strong P. Atk.
-(14904, 4411, 13), -- Slightly Strong M. Atk.
-(14904, 4412, 12), -- Slightly Strong P. Def.
-(14904, 4413, 12), -- Slightly Strong M. Def.
-(14904, 4414, 2), -- Standard Type
-(14904, 4415, 3), -- One-handed Sword
-(14904, 4416, 9), -- Demons
-(14904, 5038, 15), -- Servitor PvP Penalty
+(14904, 4408, 4), -- HP Modifiers
+(14904, 4409, 1), -- MP Modifiers
+(14904, 4410, 15), -- P. Atk. Modifiers
+(14904, 4411, 13), -- M. Atk. Modifiers
+(14904, 4412, 12), -- P. Def. Modifiers
+(14904, 4413, 12), -- M. Def. Modifiers
+(14904, 4414, 2), -- Armor Type
+(14904, 4415, 3), -- Weapon Type
+(14904, 4416, 9), -- Races
+(14904, 5038, 15), -- Summon PVP Penalty
 -- Spectral Lord
 (14905, 4121, 9), -- Summoned Monster Magic Protection
-(14905, 4408, 4), -- HP High
-(14905, 4409, 1), -- MP Increase (1x)
-(14905, 4410, 15), -- Strong P. Atk.
-(14905, 4411, 13), -- Slightly Strong M. Atk.
-(14905, 4412, 12), -- Slightly Strong P. Def.
-(14905, 4413, 12), -- Slightly Strong M. Def.
-(14905, 4414, 2), -- Standard Type
-(14905, 4415, 3), -- One-handed Sword
-(14905, 4416, 9), -- Demons
-(14905, 5038, 15), -- Servitor PvP Penalty
+(14905, 4408, 4), -- HP Modifiers
+(14905, 4409, 1), -- MP Modifiers
+(14905, 4410, 15), -- P. Atk. Modifiers
+(14905, 4411, 13), -- M. Atk. Modifiers
+(14905, 4412, 12), -- P. Def. Modifiers
+(14905, 4413, 12), -- M. Def. Modifiers
+(14905, 4414, 2), -- Armor Type
+(14905, 4415, 3), -- Weapon Type
+(14905, 4416, 9), -- Races
+(14905, 5038, 15), -- Summon PVP Penalty
 -- Spectral Lord
 (14906, 4121, 9), -- Summoned Monster Magic Protection
-(14906, 4408, 4), -- HP High
-(14906, 4409, 1), -- MP Increase (1x)
-(14906, 4410, 15), -- Strong P. Atk.
-(14906, 4411, 13), -- Slightly Strong M. Atk.
-(14906, 4412, 12), -- Slightly Strong P. Def.
-(14906, 4413, 12), -- Slightly Strong M. Def.
-(14906, 4414, 2), -- Standard Type
-(14906, 4415, 3), -- One-handed Sword
-(14906, 4416, 9), -- Demons
-(14906, 5038, 15), -- Servitor PvP Penalty
+(14906, 4408, 4), -- HP Modifiers
+(14906, 4409, 1), -- MP Modifiers
+(14906, 4410, 15), -- P. Atk. Modifiers
+(14906, 4411, 13), -- M. Atk. Modifiers
+(14906, 4412, 12), -- P. Def. Modifiers
+(14906, 4413, 12), -- M. Def. Modifiers
+(14906, 4414, 2), -- Armor Type
+(14906, 4415, 3), -- Weapon Type
+(14906, 4416, 9), -- Races
+(14906, 5038, 15), -- Summon PVP Penalty
 -- Spectral Lord
 (14907, 4121, 9), -- Summoned Monster Magic Protection
-(14907, 4408, 4), -- HP High
-(14907, 4409, 1), -- MP Increase (1x)
-(14907, 4410, 15), -- Strong P. Atk.
-(14907, 4411, 13), -- Slightly Strong M. Atk.
-(14907, 4412, 12), -- Slightly Strong P. Def.
-(14907, 4413, 12), -- Slightly Strong M. Def.
-(14907, 4414, 2), -- Standard Type
-(14907, 4415, 3), -- One-handed Sword
-(14907, 4416, 9), -- Demons
-(14907, 5038, 15), -- Servitor PvP Penalty
+(14907, 4408, 4), -- HP Modifiers
+(14907, 4409, 1), -- MP Modifiers
+(14907, 4410, 15), -- P. Atk. Modifiers
+(14907, 4411, 13), -- M. Atk. Modifiers
+(14907, 4412, 12), -- P. Def. Modifiers
+(14907, 4413, 12), -- M. Def. Modifiers
+(14907, 4414, 2), -- Armor Type
+(14907, 4415, 3), -- Weapon Type
+(14907, 4416, 9), -- Races
+(14907, 5038, 15), -- Summon PVP Penalty
 -- Spectral Lord
 (14908, 4121, 9), -- Summoned Monster Magic Protection
-(14908, 4408, 4), -- HP High
-(14908, 4409, 1), -- MP Increase (1x)
-(14908, 4410, 15), -- Strong P. Atk.
-(14908, 4411, 13), -- Slightly Strong M. Atk.
-(14908, 4412, 12), -- Slightly Strong P. Def.
-(14908, 4413, 12), -- Slightly Strong M. Def.
-(14908, 4414, 2), -- Standard Type
-(14908, 4415, 3), -- One-handed Sword
-(14908, 4416, 9), -- Demons
-(14908, 5038, 15), -- Servitor PvP Penalty
+(14908, 4408, 4), -- HP Modifiers
+(14908, 4409, 1), -- MP Modifiers
+(14908, 4410, 15), -- P. Atk. Modifiers
+(14908, 4411, 13), -- M. Atk. Modifiers
+(14908, 4412, 12), -- P. Def. Modifiers
+(14908, 4413, 12), -- M. Def. Modifiers
+(14908, 4414, 2), -- Armor Type
+(14908, 4415, 3), -- Weapon Type
+(14908, 4416, 9), -- Races
+(14908, 5038, 15), -- Summon PVP Penalty
 -- Spectral Lord
 (14909, 4121, 9), -- Summoned Monster Magic Protection
-(14909, 4408, 4), -- HP High
-(14909, 4409, 1), -- MP Increase (1x)
-(14909, 4410, 15), -- Strong P. Atk.
-(14909, 4411, 13), -- Slightly Strong M. Atk.
-(14909, 4412, 12), -- Slightly Strong P. Def.
-(14909, 4413, 12), -- Slightly Strong M. Def.
-(14909, 4414, 2), -- Standard Type
-(14909, 4415, 3), -- One-handed Sword
-(14909, 4416, 9), -- Demons
-(14909, 5038, 15), -- Servitor PvP Penalty
+(14909, 4408, 4), -- HP Modifiers
+(14909, 4409, 1), -- MP Modifiers
+(14909, 4410, 15), -- P. Atk. Modifiers
+(14909, 4411, 13), -- M. Atk. Modifiers
+(14909, 4412, 12), -- P. Def. Modifiers
+(14909, 4413, 12), -- M. Def. Modifiers
+(14909, 4414, 2), -- Armor Type
+(14909, 4415, 3), -- Weapon Type
+(14909, 4416, 9), -- Races
+(14909, 5038, 15), -- Summon PVP Penalty
 -- Spectral Lord
 (14910, 4121, 9), -- Summoned Monster Magic Protection
-(14910, 4408, 4), -- HP High
-(14910, 4409, 1), -- MP Increase (1x)
-(14910, 4410, 15), -- Strong P. Atk.
-(14910, 4411, 13), -- Slightly Strong M. Atk.
-(14910, 4412, 12), -- Slightly Strong P. Def.
-(14910, 4413, 12), -- Slightly Strong M. Def.
-(14910, 4414, 2), -- Standard Type
-(14910, 4415, 3), -- One-handed Sword
-(14910, 4416, 9), -- Demons
-(14910, 5038, 15), -- Servitor PvP Penalty
+(14910, 4408, 4), -- HP Modifiers
+(14910, 4409, 1), -- MP Modifiers
+(14910, 4410, 15), -- P. Atk. Modifiers
+(14910, 4411, 13), -- M. Atk. Modifiers
+(14910, 4412, 12), -- P. Def. Modifiers
+(14910, 4413, 12), -- M. Def. Modifiers
+(14910, 4414, 2), -- Armor Type
+(14910, 4415, 3), -- Weapon Type
+(14910, 4416, 9), -- Races
+(14910, 5038, 15), -- Summon PVP Penalty
 -- Spectral Lord
 (14911, 4121, 9), -- Summoned Monster Magic Protection
-(14911, 4408, 4), -- HP High
-(14911, 4409, 1), -- MP Increase (1x)
-(14911, 4410, 15), -- Strong P. Atk.
-(14911, 4411, 13), -- Slightly Strong M. Atk.
-(14911, 4412, 12), -- Slightly Strong P. Def.
-(14911, 4413, 12), -- Slightly Strong M. Def.
-(14911, 4414, 2), -- Standard Type
-(14911, 4415, 3), -- One-handed Sword
-(14911, 4416, 9), -- Demons
-(14911, 5038, 15), -- Servitor PvP Penalty
+(14911, 4408, 4), -- HP Modifiers
+(14911, 4409, 1), -- MP Modifiers
+(14911, 4410, 15), -- P. Atk. Modifiers
+(14911, 4411, 13), -- M. Atk. Modifiers
+(14911, 4412, 12), -- P. Def. Modifiers
+(14911, 4413, 12), -- M. Def. Modifiers
+(14911, 4414, 2), -- Armor Type
+(14911, 4415, 3), -- Weapon Type
+(14911, 4416, 9), -- Races
+(14911, 5038, 15), -- Summon PVP Penalty
 -- Spectral Lord
 (14912, 4121, 9), -- Summoned Monster Magic Protection
-(14912, 4408, 4), -- HP High
-(14912, 4409, 1), -- MP Increase (1x)
-(14912, 4410, 15), -- Strong P. Atk.
-(14912, 4411, 13), -- Slightly Strong M. Atk.
-(14912, 4412, 12), -- Slightly Strong P. Def.
-(14912, 4413, 12), -- Slightly Strong M. Def.
-(14912, 4414, 2), -- Standard Type
-(14912, 4415, 3), -- One-handed Sword
-(14912, 4416, 9), -- Demons
-(14912, 5038, 15), -- Servitor PvP Penalty
+(14912, 4408, 4), -- HP Modifiers
+(14912, 4409, 1), -- MP Modifiers
+(14912, 4410, 15), -- P. Atk. Modifiers
+(14912, 4411, 13), -- M. Atk. Modifiers
+(14912, 4412, 12), -- P. Def. Modifiers
+(14912, 4413, 12), -- M. Def. Modifiers
+(14912, 4414, 2), -- Armor Type
+(14912, 4415, 3), -- Weapon Type
+(14912, 4416, 9), -- Races
+(14912, 5038, 15), -- Summon PVP Penalty
 -- Spectral Lord
 (14913, 4121, 9), -- Summoned Monster Magic Protection
-(14913, 4408, 4), -- HP High
-(14913, 4409, 1), -- MP Increase (1x)
-(14913, 4410, 15), -- Strong P. Atk.
-(14913, 4411, 13), -- Slightly Strong M. Atk.
-(14913, 4412, 12), -- Slightly Strong P. Def.
-(14913, 4413, 12), -- Slightly Strong M. Def.
-(14913, 4414, 2), -- Standard Type
-(14913, 4415, 3), -- One-handed Sword
-(14913, 4416, 9), -- Demons
-(14913, 5038, 15), -- Servitor PvP Penalty
+(14913, 4408, 4), -- HP Modifiers
+(14913, 4409, 1), -- MP Modifiers
+(14913, 4410, 15), -- P. Atk. Modifiers
+(14913, 4411, 13), -- M. Atk. Modifiers
+(14913, 4412, 12), -- P. Def. Modifiers
+(14913, 4413, 12), -- M. Def. Modifiers
+(14913, 4414, 2), -- Armor Type
+(14913, 4415, 3), -- Weapon Type
+(14913, 4416, 9), -- Races
+(14913, 5038, 15), -- Summon PVP Penalty
 -- Spectral Lord
 (14914, 4121, 9), -- Summoned Monster Magic Protection
-(14914, 4408, 4), -- HP High
-(14914, 4409, 1), -- MP Increase (1x)
-(14914, 4410, 15), -- Strong P. Atk.
-(14914, 4411, 13), -- Slightly Strong M. Atk.
-(14914, 4412, 12), -- Slightly Strong P. Def.
-(14914, 4413, 12), -- Slightly Strong M. Def.
-(14914, 4414, 2), -- Standard Type
-(14914, 4415, 3), -- One-handed Sword
-(14914, 4416, 9), -- Demons
-(14914, 5038, 15), -- Servitor PvP Penalty
+(14914, 4408, 4), -- HP Modifiers
+(14914, 4409, 1), -- MP Modifiers
+(14914, 4410, 15), -- P. Atk. Modifiers
+(14914, 4411, 13), -- M. Atk. Modifiers
+(14914, 4412, 12), -- P. Def. Modifiers
+(14914, 4413, 12), -- M. Def. Modifiers
+(14914, 4414, 2), -- Armor Type
+(14914, 4415, 3), -- Weapon Type
+(14914, 4416, 9), -- Races
+(14914, 5038, 15), -- Summon PVP Penalty
 -- Spectral Lord
 (14915, 4121, 9), -- Summoned Monster Magic Protection
-(14915, 4408, 4), -- HP High
-(14915, 4409, 1), -- MP Increase (1x)
-(14915, 4410, 15), -- Strong P. Atk.
-(14915, 4411, 13), -- Slightly Strong M. Atk.
-(14915, 4412, 12), -- Slightly Strong P. Def.
-(14915, 4413, 12), -- Slightly Strong M. Def.
-(14915, 4414, 2), -- Standard Type
-(14915, 4415, 3), -- One-handed Sword
-(14915, 4416, 9), -- Demons
-(14915, 5038, 15), -- Servitor PvP Penalty
+(14915, 4408, 4), -- HP Modifiers
+(14915, 4409, 1), -- MP Modifiers
+(14915, 4410, 15), -- P. Atk. Modifiers
+(14915, 4411, 13), -- M. Atk. Modifiers
+(14915, 4412, 12), -- P. Def. Modifiers
+(14915, 4413, 12), -- M. Def. Modifiers
+(14915, 4414, 2), -- Armor Type
+(14915, 4415, 3), -- Weapon Type
+(14915, 4416, 9), -- Races
+(14915, 5038, 15), -- Summon PVP Penalty
 -- Tigress
 (14916, 4121, 9), -- Summoned Monster Magic Protection
-(14916, 4408, 2), -- HP Medium-High
-(14916, 4409, 1), -- MP Increase (1x)
-(14916, 4410, 12), -- Slightly Strong P. Atk.
-(14916, 4411, 11), -- Average M. Atk.
-(14916, 4412, 12), -- Slightly Strong P. Def.
-(14916, 4413, 12), -- Slightly Strong M. Def.
-(14916, 4414, 2), -- Standard Type
-(14916, 4415, 3), -- One-handed Sword
-(14916, 4416, 3), -- Beasts
-(14916, 5038, 7), -- Servitor PvP Penalty
+(14916, 4408, 2), -- HP Modifiers
+(14916, 4409, 1), -- MP Modifiers
+(14916, 4410, 12), -- P. Atk. Modifiers
+(14916, 4411, 11), -- M. Atk. Modifiers
+(14916, 4412, 12), -- P. Def. Modifiers
+(14916, 4413, 12), -- M. Def. Modifiers
+(14916, 4414, 2), -- Armor Type
+(14916, 4415, 3), -- Weapon Type
+(14916, 4416, 3), -- Races
+(14916, 5038, 7), -- Summon PVP Penalty
 -- Tigress
 (14917, 4121, 9), -- Summoned Monster Magic Protection
-(14917, 4408, 2), -- HP Medium-High
-(14917, 4409, 1), -- MP Increase (1x)
-(14917, 4410, 14), -- Strong P. Atk.
-(14917, 4411, 11), -- Average M. Atk.
-(14917, 4412, 14), -- Strong P. Def.
-(14917, 4413, 14), -- Strong M. Def.
-(14917, 4414, 2), -- Standard Type
-(14917, 4415, 3), -- One-handed Sword
-(14917, 4416, 3), -- Beasts
-(14917, 5038, 7), -- Servitor PvP Penalty
+(14917, 4408, 2), -- HP Modifiers
+(14917, 4409, 1), -- MP Modifiers
+(14917, 4410, 14), -- P. Atk. Modifiers
+(14917, 4411, 11), -- M. Atk. Modifiers
+(14917, 4412, 14), -- P. Def. Modifiers
+(14917, 4413, 14), -- M. Def. Modifiers
+(14917, 4414, 2), -- Armor Type
+(14917, 4415, 3), -- Weapon Type
+(14917, 4416, 3), -- Races
+(14917, 5038, 7), -- Summon PVP Penalty
 -- Imperial Phoenix
 (14918, 4121, 9), -- Summoned Monster Magic Protection
-(14918, 4408, 6), -- HP Very High
-(14918, 4409, 1), -- MP Increase (1x)
-(14918, 4410, 13), -- Slightly Strong P. Atk.
-(14918, 4411, 13), -- Slightly Strong M. Atk.
-(14918, 4412, 11), -- Average P. Def.
-(14918, 4413, 13), -- Slightly Strong M. Def.
-(14918, 4414, 2), -- Standard Type
-(14918, 4415, 3), -- One-handed Sword
-(14918, 4416, 7), -- Spirits
-(14918, 5038, 15), -- Servitor PvP Penalty
+(14918, 4408, 6), -- HP Modifiers
+(14918, 4409, 1), -- MP Modifiers
+(14918, 4410, 13), -- P. Atk. Modifiers
+(14918, 4411, 13), -- M. Atk. Modifiers
+(14918, 4412, 11), -- P. Def. Modifiers
+(14918, 4413, 13), -- M. Def. Modifiers
+(14918, 4414, 2), -- Armor Type
+(14918, 4415, 3), -- Weapon Type
+(14918, 4416, 7), -- Races
+(14918, 5038, 15), -- Summon PVP Penalty
 -- Trained Buffalo
 (16013, 4045, 1), -- Resist Full Magic Attack
-(16013, 4408, 1), -- HP Increase (1x)
-(16013, 4409, 1), -- MP Increase (1x)
-(16013, 4410, 11), -- Average P. Atk.
-(16013, 4411, 11), -- Average M. Atk.
-(16013, 4412, 11), -- Average P. Def.
-(16013, 4413, 11), -- Average M. Def.
-(16013, 4414, 2), -- Standard Type
-(16013, 4415, 1), -- Bare Hands
-(16013, 4416, 3), -- Beasts
+(16013, 4408, 1), -- HP Modifiers
+(16013, 4409, 1), -- MP Modifiers
+(16013, 4410, 11), -- P. Atk. Modifiers
+(16013, 4411, 11), -- M. Atk. Modifiers
+(16013, 4412, 11), -- P. Def. Modifiers
+(16013, 4413, 11), -- M. Def. Modifiers
+(16013, 4414, 2), -- Armor Type
+(16013, 4415, 1), -- Weapon Type
+(16013, 4416, 3), -- Races
 (16013, 5186, 2), -- Pet Haste
 (16013, 5187, 4), -- Pet Vampiric Rage
 (16013, 5188, 3), -- Pet Regeneration
@@ -15943,15 +15943,15 @@ INSERT INTO `npcskills` VALUES
 (16013, 5197, 2), -- Pet Hex
 -- Trained Buffalo
 (16014, 4045, 1), -- Resist Full Magic Attack
-(16014, 4408, 1), -- HP Increase (1x)
-(16014, 4409, 1), -- MP Increase (1x)
-(16014, 4410, 11), -- Average P. Atk.
-(16014, 4411, 11), -- Average M. Atk.
-(16014, 4412, 11), -- Average P. Def.
-(16014, 4413, 11), -- Average M. Def.
-(16014, 4414, 2), -- Standard Type
-(16014, 4415, 1), -- Bare Hands
-(16014, 4416, 3), -- Beasts
+(16014, 4408, 1), -- HP Modifiers
+(16014, 4409, 1), -- MP Modifiers
+(16014, 4410, 11), -- P. Atk. Modifiers
+(16014, 4411, 11), -- M. Atk. Modifiers
+(16014, 4412, 11), -- P. Def. Modifiers
+(16014, 4413, 11), -- M. Def. Modifiers
+(16014, 4414, 2), -- Armor Type
+(16014, 4415, 1), -- Weapon Type
+(16014, 4416, 3), -- Races
 (16014, 5190, 6), -- Pet Blessed Soul
 (16014, 5192, 2), -- Pet Wind Walk
 (16014, 5193, 3), -- Pet Acumen
@@ -15962,15 +15962,15 @@ INSERT INTO `npcskills` VALUES
 (16014, 5201, 1), -- Pet Concentration
 -- Trained Cougar
 (16015, 4045, 1), -- Resist Full Magic Attack
-(16015, 4408, 1), -- HP Increase (1x)
-(16015, 4409, 1), -- MP Increase (1x)
-(16015, 4410, 11), -- Average P. Atk.
-(16015, 4411, 11), -- Average M. Atk.
-(16015, 4412, 11), -- Average P. Def.
-(16015, 4413, 11), -- Average M. Def.
-(16015, 4414, 2), -- Standard Type
-(16015, 4415, 1), -- Bare Hands
-(16015, 4416, 3), -- Beasts
+(16015, 4408, 1), -- HP Modifiers
+(16015, 4409, 1), -- MP Modifiers
+(16015, 4410, 11), -- P. Atk. Modifiers
+(16015, 4411, 11), -- M. Atk. Modifiers
+(16015, 4412, 11), -- P. Def. Modifiers
+(16015, 4413, 11), -- M. Def. Modifiers
+(16015, 4414, 2), -- Armor Type
+(16015, 4415, 1), -- Weapon Type
+(16015, 4416, 3), -- Races
 (16015, 5186, 2), -- Pet Haste
 (16015, 5187, 4), -- Pet Vampiric Rage
 (16015, 5188, 3), -- Pet Regeneration
@@ -15981,15 +15981,15 @@ INSERT INTO `npcskills` VALUES
 (16015, 5197, 3), -- Pet Hex
 -- Trained Cougar
 (16016, 4045, 1), -- Resist Full Magic Attack
-(16016, 4408, 1), -- HP Increase (1x)
-(16016, 4409, 1), -- MP Increase (1x)
-(16016, 4410, 11), -- Average P. Atk.
-(16016, 4411, 11), -- Average M. Atk.
-(16016, 4412, 11), -- Average P. Def.
-(16016, 4413, 11), -- Average M. Def.
-(16016, 4414, 2), -- Standard Type
-(16016, 4415, 1), -- Bare Hands
-(16016, 4416, 3), -- Beasts
+(16016, 4408, 1), -- HP Modifiers
+(16016, 4409, 1), -- MP Modifiers
+(16016, 4410, 11), -- P. Atk. Modifiers
+(16016, 4411, 11), -- M. Atk. Modifiers
+(16016, 4412, 11), -- P. Def. Modifiers
+(16016, 4413, 11), -- M. Def. Modifiers
+(16016, 4414, 2), -- Armor Type
+(16016, 4415, 1), -- Weapon Type
+(16016, 4416, 3), -- Races
 (16016, 5190, 6), -- Pet Blessed Soul
 (16016, 5192, 2), -- Pet Wind Walk
 (16016, 5193, 3), -- Pet Acumen
@@ -16000,15 +16000,15 @@ INSERT INTO `npcskills` VALUES
 (16016, 5201, 2), -- Pet Concentration
 -- Trained Kookaburra
 (16017, 4045, 1), -- Resist Full Magic Attack
-(16017, 4408, 1), -- HP Increase (1x)
-(16017, 4409, 1), -- MP Increase (1x)
-(16017, 4410, 11), -- Average P. Atk.
-(16017, 4411, 11), -- Average M. Atk.
-(16017, 4412, 11), -- Average P. Def.
-(16017, 4413, 11), -- Average M. Def.
-(16017, 4414, 2), -- Standard Type
-(16017, 4415, 1), -- Bare Hands
-(16017, 4416, 3), -- Beasts
+(16017, 4408, 1), -- HP Modifiers
+(16017, 4409, 1), -- MP Modifiers
+(16017, 4410, 11), -- P. Atk. Modifiers
+(16017, 4411, 11), -- M. Atk. Modifiers
+(16017, 4412, 11), -- P. Def. Modifiers
+(16017, 4413, 11), -- M. Def. Modifiers
+(16017, 4414, 2), -- Armor Type
+(16017, 4415, 1), -- Weapon Type
+(16017, 4416, 3), -- Races
 (16017, 5186, 2), -- Pet Haste
 (16017, 5187, 4), -- Pet Vampiric Rage
 (16017, 5188, 3), -- Pet Regeneration
@@ -16019,15 +16019,15 @@ INSERT INTO `npcskills` VALUES
 (16017, 5197, 1), -- Pet Hex
 -- Trained Kookaburra
 (16018, 4045, 1), -- Resist Full Magic Attack
-(16018, 4408, 1), -- HP Increase (1x)
-(16018, 4409, 1), -- MP Increase (1x)
-(16018, 4410, 11), -- Average P. Atk.
-(16018, 4411, 11), -- Average M. Atk.
-(16018, 4412, 11), -- Average P. Def.
-(16018, 4413, 11), -- Average M. Def.
-(16018, 4414, 2), -- Standard Type
-(16018, 4415, 1), -- Bare Hands
-(16018, 4416, 3), -- Beasts
+(16018, 4408, 1), -- HP Modifiers
+(16018, 4409, 1), -- MP Modifiers
+(16018, 4410, 11), -- P. Atk. Modifiers
+(16018, 4411, 11), -- M. Atk. Modifiers
+(16018, 4412, 11), -- P. Def. Modifiers
+(16018, 4413, 11), -- M. Def. Modifiers
+(16018, 4414, 2), -- Armor Type
+(16018, 4415, 1), -- Weapon Type
+(16018, 4416, 3), -- Races
 (16018, 5190, 6), -- Pet Blessed Soul
 (16018, 5192, 2), -- Pet Wind Walk
 (16018, 5193, 3), -- Pet Acumen
@@ -16039,29 +16039,29 @@ INSERT INTO `npcskills` VALUES
 -- Tiny Baby Buffalo
 (16019, 2188, 1), -- Golden Spice
 (16019, 4045, 1), -- Resist Full Magic Attack
-(16019, 4067, 6), -- Blow
-(16019, 4072, 6), -- Stun
-(16019, 4074, 2), -- Haste
-(16019, 4408, 9), -- HP Increase (1/2x)
-(16019, 4409, 1), -- MP Increase (1x)
-(16019, 4410, 11), -- Average P. Atk.
-(16019, 4411, 11), -- Average M. Atk.
-(16019, 4412, 11), -- Average P. Def.
-(16019, 4413, 11), -- Average M. Def.
-(16019, 4414, 2), -- Standard Type
-(16019, 4415, 1), -- Bare Hands
-(16019, 4416, 3), -- Beasts
+(16019, 4067, 6), -- NPC Mortal Blow
+(16019, 4072, 6), -- Shock
+(16019, 4074, 2), -- NPC Haste
+(16019, 4408, 9), -- HP Modifiers
+(16019, 4409, 1), -- MP Modifiers
+(16019, 4410, 11), -- P. Atk. Modifiers
+(16019, 4411, 11), -- M. Atk. Modifiers
+(16019, 4412, 11), -- P. Def. Modifiers
+(16019, 4413, 11), -- M. Def. Modifiers
+(16019, 4414, 2), -- Armor Type
+(16019, 4415, 1), -- Weapon Type
+(16019, 4416, 3), -- Races
 -- Trained Tiny Baby Buffalo
 (16020, 4045, 1), -- Resist Full Magic Attack
-(16020, 4408, 9), -- HP Increase (1/2x)
-(16020, 4409, 1), -- MP Increase (1x)
-(16020, 4410, 11), -- Average P. Atk.
-(16020, 4411, 11), -- Average M. Atk.
-(16020, 4412, 11), -- Average P. Def.
-(16020, 4413, 11), -- Average M. Def.
-(16020, 4414, 2), -- Standard Type
-(16020, 4415, 1), -- Bare Hands
-(16020, 4416, 3), -- Beasts
+(16020, 4408, 9), -- HP Modifiers
+(16020, 4409, 1), -- MP Modifiers
+(16020, 4410, 11), -- P. Atk. Modifiers
+(16020, 4411, 11), -- M. Atk. Modifiers
+(16020, 4412, 11), -- P. Def. Modifiers
+(16020, 4413, 11), -- M. Def. Modifiers
+(16020, 4414, 2), -- Armor Type
+(16020, 4415, 1), -- Weapon Type
+(16020, 4416, 3), -- Races
 (16020, 5186, 2), -- Pet Haste
 (16020, 5187, 4), -- Pet Vampiric Rage
 (16020, 5188, 3), -- Pet Regeneration
@@ -16073,29 +16073,29 @@ INSERT INTO `npcskills` VALUES
 -- Tiny Baby Cougar
 (16021, 2188, 1), -- Golden Spice
 (16021, 4045, 1), -- Resist Full Magic Attack
-(16021, 4073, 6), -- Stun
-(16021, 4074, 2), -- Haste
-(16021, 4232, 6), -- Whirlwind
-(16021, 4408, 9), -- HP Increase (1/2x)
-(16021, 4409, 1), -- MP Increase (1x)
-(16021, 4410, 11), -- Average P. Atk.
-(16021, 4411, 11), -- Average M. Atk.
-(16021, 4412, 11), -- Average P. Def.
-(16021, 4413, 11), -- Average M. Def.
-(16021, 4414, 2), -- Standard Type
-(16021, 4415, 1), -- Bare Hands
-(16021, 4416, 3), -- Beasts
+(16021, 4073, 6), -- Shock
+(16021, 4074, 2), -- NPC Haste
+(16021, 4232, 6), -- NPC AE Strike
+(16021, 4408, 9), -- HP Modifiers
+(16021, 4409, 1), -- MP Modifiers
+(16021, 4410, 11), -- P. Atk. Modifiers
+(16021, 4411, 11), -- M. Atk. Modifiers
+(16021, 4412, 11), -- P. Def. Modifiers
+(16021, 4413, 11), -- M. Def. Modifiers
+(16021, 4414, 2), -- Armor Type
+(16021, 4415, 1), -- Weapon Type
+(16021, 4416, 3), -- Races
 -- Trained Tiny Baby Cougar
 (16022, 4045, 1), -- Resist Full Magic Attack
-(16022, 4408, 9), -- HP Increase (1/2x)
-(16022, 4409, 1), -- MP Increase (1x)
-(16022, 4410, 11), -- Average P. Atk.
-(16022, 4411, 11), -- Average M. Atk.
-(16022, 4412, 11), -- Average P. Def.
-(16022, 4413, 11), -- Average M. Def.
-(16022, 4414, 2), -- Standard Type
-(16022, 4415, 1), -- Bare Hands
-(16022, 4416, 3), -- Beasts
+(16022, 4408, 9), -- HP Modifiers
+(16022, 4409, 1), -- MP Modifiers
+(16022, 4410, 11), -- P. Atk. Modifiers
+(16022, 4411, 11), -- M. Atk. Modifiers
+(16022, 4412, 11), -- P. Def. Modifiers
+(16022, 4413, 11), -- M. Def. Modifiers
+(16022, 4414, 2), -- Armor Type
+(16022, 4415, 1), -- Weapon Type
+(16022, 4416, 3), -- Races
 (16022, 5186, 2), -- Pet Haste
 (16022, 5187, 4), -- Pet Vampiric Rage
 (16022, 5188, 3), -- Pet Regeneration
@@ -16107,30 +16107,30 @@ INSERT INTO `npcskills` VALUES
 -- Tiny Baby Kookaburra
 (16023, 2188, 1), -- Golden Spice
 (16023, 4045, 1), -- Resist Full Magic Attack
-(16023, 4160, 6), -- Aura Burn
-(16023, 4408, 9), -- HP Increase (1/2x)
-(16023, 4409, 1), -- MP Increase (1x)
-(16023, 4410, 11), -- Average P. Atk.
-(16023, 4411, 11), -- Average M. Atk.
-(16023, 4412, 11), -- Average P. Def.
-(16023, 4413, 11), -- Average M. Def.
-(16023, 4414, 2), -- Standard Type
-(16023, 4415, 1), -- Bare Hands
-(16023, 4416, 3), -- Beasts
-(16023, 4566, 6), -- Rain of Fire
-(16023, 4571, 6), -- Blazing Circle
-(16023, 4633, 3), -- Acumen Berserker Empower
+(16023, 4160, 6), -- NPC Aura Burn - Magic
+(16023, 4408, 9), -- HP Modifiers
+(16023, 4409, 1), -- MP Modifiers
+(16023, 4410, 11), -- P. Atk. Modifiers
+(16023, 4411, 11), -- M. Atk. Modifiers
+(16023, 4412, 11), -- P. Def. Modifiers
+(16023, 4413, 11), -- M. Def. Modifiers
+(16023, 4414, 2), -- Armor Type
+(16023, 4415, 1), -- Weapon Type
+(16023, 4416, 3), -- Races
+(16023, 4566, 6), -- NPC Eruption - Magic
+(16023, 4571, 6), -- NPC Blazing Circle
+(16023, 4633, 3), -- NPC Buff - Acumen Empower Berserk
 -- Trained Tiny Baby Kookaburra
 (16024, 4045, 1), -- Resist Full Magic Attack
-(16024, 4408, 9), -- HP Increase (1/2x)
-(16024, 4409, 1), -- MP Increase (1x)
-(16024, 4410, 11), -- Average P. Atk.
-(16024, 4411, 11), -- Average M. Atk.
-(16024, 4412, 11), -- Average P. Def.
-(16024, 4413, 11), -- Average M. Def.
-(16024, 4414, 2), -- Standard Type
-(16024, 4415, 1), -- Bare Hands
-(16024, 4416, 3), -- Beasts
+(16024, 4408, 9), -- HP Modifiers
+(16024, 4409, 1), -- MP Modifiers
+(16024, 4410, 11), -- P. Atk. Modifiers
+(16024, 4411, 11), -- M. Atk. Modifiers
+(16024, 4412, 11), -- P. Def. Modifiers
+(16024, 4413, 11), -- M. Def. Modifiers
+(16024, 4414, 2), -- Armor Type
+(16024, 4415, 1), -- Weapon Type
+(16024, 4416, 3), -- Races
 (16024, 5190, 6), -- Pet Blessed Soul
 (16024, 5192, 2), -- Pet Wind Walk
 (16024, 5193, 3), -- Pet Acumen
@@ -16141,10746 +16141,10746 @@ INSERT INTO `npcskills` VALUES
 (16024, 5201, 1), -- Pet Concentration
 -- Great Wolf
 (16025, 4121, 1), -- Summoned Monster Magic Protection
-(16025, 4408, 1), -- HP Increase (1x)
-(16025, 4409, 1), -- MP Increase (1x)
-(16025, 4410, 11), -- Average P. Atk.
-(16025, 4411, 11), -- Average M. Atk.
-(16025, 4412, 11), -- Average P. Def.
-(16025, 4413, 11), -- Average M. Def.
-(16025, 4414, 2), -- Standard Type
-(16025, 4415, 1), -- Bare Hands
-(16025, 4416, 3), -- Beasts
+(16025, 4408, 1), -- HP Modifiers
+(16025, 4409, 1), -- MP Modifiers
+(16025, 4410, 11), -- P. Atk. Modifiers
+(16025, 4411, 11), -- M. Atk. Modifiers
+(16025, 4412, 11), -- P. Def. Modifiers
+(16025, 4413, 11), -- M. Def. Modifiers
+(16025, 4414, 2), -- Armor Type
+(16025, 4415, 1), -- Weapon Type
+(16025, 4416, 3), -- Races
 -- Beastly Agathion
-(16026, 4408, 1), -- HP Increase (1x)
-(16026, 4409, 1), -- MP Increase (1x)
-(16026, 4410, 11), -- Average P. Atk.
-(16026, 4411, 11), -- Average M. Atk.
-(16026, 4412, 11), -- Average P. Def.
-(16026, 4413, 11), -- Average M. Def.
-(16026, 4414, 2), -- Standard Type
-(16026, 4415, 1), -- Bare Hands
-(16026, 4416, 19), -- Others
+(16026, 4408, 1), -- HP Modifiers
+(16026, 4409, 1), -- MP Modifiers
+(16026, 4410, 11), -- P. Atk. Modifiers
+(16026, 4411, 11), -- M. Atk. Modifiers
+(16026, 4412, 11), -- P. Def. Modifiers
+(16026, 4413, 11), -- M. Def. Modifiers
+(16026, 4414, 2), -- Armor Type
+(16026, 4415, 1), -- Weapon Type
+(16026, 4416, 19), -- Races
 -- Rainbow Agathion
-(16027, 4408, 1), -- HP Increase (1x)
-(16027, 4409, 1), -- MP Increase (1x)
-(16027, 4410, 11), -- Average P. Atk.
-(16027, 4411, 11), -- Average M. Atk.
-(16027, 4412, 11), -- Average P. Def.
-(16027, 4413, 11), -- Average M. Def.
-(16027, 4414, 2), -- Standard Type
-(16027, 4415, 1), -- Bare Hands
-(16027, 4416, 19), -- Others
+(16027, 4408, 1), -- HP Modifiers
+(16027, 4409, 1), -- MP Modifiers
+(16027, 4410, 11), -- P. Atk. Modifiers
+(16027, 4411, 11), -- M. Atk. Modifiers
+(16027, 4412, 11), -- P. Def. Modifiers
+(16027, 4413, 11), -- M. Def. Modifiers
+(16027, 4414, 2), -- Armor Type
+(16027, 4415, 1), -- Weapon Type
+(16027, 4416, 19), -- Races
 -- Lord Agathion
-(16028, 4408, 1), -- HP Increase (1x)
-(16028, 4409, 1), -- MP Increase (1x)
-(16028, 4410, 11), -- Average P. Atk.
-(16028, 4411, 11), -- Average M. Atk.
-(16028, 4412, 11), -- Average P. Def.
-(16028, 4413, 11), -- Average M. Def.
-(16028, 4414, 2), -- Standard Type
-(16028, 4415, 1), -- Bare Hands
-(16028, 4416, 19), -- Others
+(16028, 4408, 1), -- HP Modifiers
+(16028, 4409, 1), -- MP Modifiers
+(16028, 4410, 11), -- P. Atk. Modifiers
+(16028, 4411, 11), -- M. Atk. Modifiers
+(16028, 4412, 11), -- P. Def. Modifiers
+(16028, 4413, 11), -- M. Def. Modifiers
+(16028, 4414, 2), -- Armor Type
+(16028, 4415, 1), -- Weapon Type
+(16028, 4416, 19), -- Races
 -- Fortress Agasion
-(16029, 4408, 1), -- HP Increase (1x)
-(16029, 4409, 1), -- MP Increase (1x)
-(16029, 4410, 11), -- Average P. Atk.
-(16029, 4411, 11), -- Average M. Atk.
-(16029, 4412, 11), -- Average P. Def.
-(16029, 4413, 11), -- Average M. Def.
-(16029, 4414, 2), -- Standard Type
-(16029, 4415, 1), -- Bare Hands
-(16029, 4416, 19), -- Others
+(16029, 4408, 1), -- HP Modifiers
+(16029, 4409, 1), -- MP Modifiers
+(16029, 4410, 11), -- P. Atk. Modifiers
+(16029, 4411, 11), -- M. Atk. Modifiers
+(16029, 4412, 11), -- P. Def. Modifiers
+(16029, 4413, 11), -- M. Def. Modifiers
+(16029, 4414, 2), -- Armor Type
+(16029, 4415, 1), -- Weapon Type
+(16029, 4416, 19), -- Races
 -- Great Wolf
 (16030, 4121, 1), -- Summoned Monster Magic Protection
-(16030, 4408, 1), -- HP Increase (1x)
-(16030, 4409, 1), -- MP Increase (1x)
-(16030, 4410, 11), -- Average P. Atk.
-(16030, 4411, 11), -- Average M. Atk.
-(16030, 4412, 11), -- Average P. Def.
-(16030, 4413, 11), -- Average M. Def.
-(16030, 4414, 2), -- Standard Type
-(16030, 4415, 1), -- Bare Hands
-(16030, 4416, 3), -- Beasts
+(16030, 4408, 1), -- HP Modifiers
+(16030, 4409, 1), -- MP Modifiers
+(16030, 4410, 11), -- P. Atk. Modifiers
+(16030, 4411, 11), -- M. Atk. Modifiers
+(16030, 4412, 11), -- P. Def. Modifiers
+(16030, 4413, 11), -- M. Def. Modifiers
+(16030, 4414, 2), -- Armor Type
+(16030, 4415, 1), -- Weapon Type
+(16030, 4416, 3), -- Races
 -- Little Angel Agathion
-(16031, 4408, 1), -- HP Increase (1x)
-(16031, 4409, 1), -- MP Increase (1x)
-(16031, 4410, 11), -- Average P. Atk.
-(16031, 4411, 11), -- Average M. Atk.
-(16031, 4412, 11), -- Average P. Def.
-(16031, 4413, 11), -- Average M. Def.
-(16031, 4414, 2), -- Standard Type
-(16031, 4415, 1), -- Bare Hands
-(16031, 4416, 19), -- Others
+(16031, 4408, 1), -- HP Modifiers
+(16031, 4409, 1), -- MP Modifiers
+(16031, 4410, 11), -- P. Atk. Modifiers
+(16031, 4411, 11), -- M. Atk. Modifiers
+(16031, 4412, 11), -- P. Def. Modifiers
+(16031, 4413, 11), -- M. Def. Modifiers
+(16031, 4414, 2), -- Armor Type
+(16031, 4415, 1), -- Weapon Type
+(16031, 4416, 19), -- Races
 -- Little Devil Agathion
-(16032, 4408, 1), -- HP Increase (1x)
-(16032, 4409, 1), -- MP Increase (1x)
-(16032, 4410, 11), -- Average P. Atk.
-(16032, 4411, 11), -- Average M. Atk.
-(16032, 4412, 11), -- Average P. Def.
-(16032, 4413, 11), -- Average M. Def.
-(16032, 4414, 2), -- Standard Type
-(16032, 4415, 1), -- Bare Hands
-(16032, 4416, 19), -- Others
+(16032, 4408, 1), -- HP Modifiers
+(16032, 4409, 1), -- MP Modifiers
+(16032, 4410, 11), -- P. Atk. Modifiers
+(16032, 4411, 11), -- M. Atk. Modifiers
+(16032, 4412, 11), -- P. Def. Modifiers
+(16032, 4413, 11), -- M. Def. Modifiers
+(16032, 4414, 2), -- Armor Type
+(16032, 4415, 1), -- Weapon Type
+(16032, 4416, 19), -- Races
 -- Rudolph Agathion
-(16033, 4408, 1), -- HP Increase (1x)
-(16033, 4409, 1), -- MP Increase (1x)
-(16033, 4410, 11), -- Average P. Atk.
-(16033, 4411, 11), -- Average M. Atk.
-(16033, 4412, 11), -- Average P. Def.
-(16033, 4413, 11), -- Average M. Def.
-(16033, 4414, 2), -- Standard Type
-(16033, 4415, 1), -- Bare Hands
-(16033, 4416, 19), -- Others
+(16033, 4408, 1), -- HP Modifiers
+(16033, 4409, 1), -- MP Modifiers
+(16033, 4410, 11), -- P. Atk. Modifiers
+(16033, 4411, 11), -- M. Atk. Modifiers
+(16033, 4412, 11), -- P. Def. Modifiers
+(16033, 4413, 11), -- M. Def. Modifiers
+(16033, 4414, 2), -- Armor Type
+(16033, 4415, 1), -- Weapon Type
+(16033, 4416, 19), -- Races
 -- Improved Baby Buffalo
 (16034, 4121, 1), -- Summoned Monster Magic Protection
-(16034, 4408, 1), -- HP Increase (1x)
-(16034, 4409, 1), -- MP Increase (1x)
-(16034, 4410, 11), -- Average P. Atk.
-(16034, 4411, 11), -- Average M. Atk.
-(16034, 4412, 11), -- Average P. Def.
-(16034, 4413, 11), -- Average M. Def.
-(16034, 4414, 2), -- Standard Type
-(16034, 4415, 1), -- Bare Hands
-(16034, 4416, 3), -- Beasts
+(16034, 4408, 1), -- HP Modifiers
+(16034, 4409, 1), -- MP Modifiers
+(16034, 4410, 11), -- P. Atk. Modifiers
+(16034, 4411, 11), -- M. Atk. Modifiers
+(16034, 4412, 11), -- P. Def. Modifiers
+(16034, 4413, 11), -- M. Def. Modifiers
+(16034, 4414, 2), -- Armor Type
+(16034, 4415, 1), -- Weapon Type
+(16034, 4416, 3), -- Races
 -- Improved Baby Kookaburra
 (16035, 4121, 1), -- Summoned Monster Magic Protection
-(16035, 4408, 1), -- HP Increase (1x)
-(16035, 4409, 1), -- MP Increase (1x)
-(16035, 4410, 11), -- Average P. Atk.
-(16035, 4411, 11), -- Average M. Atk.
-(16035, 4412, 11), -- Average P. Def.
-(16035, 4413, 11), -- Average M. Def.
-(16035, 4414, 2), -- Standard Type
-(16035, 4415, 1), -- Bare Hands
-(16035, 4416, 3), -- Beasts
+(16035, 4408, 1), -- HP Modifiers
+(16035, 4409, 1), -- MP Modifiers
+(16035, 4410, 11), -- P. Atk. Modifiers
+(16035, 4411, 11), -- M. Atk. Modifiers
+(16035, 4412, 11), -- P. Def. Modifiers
+(16035, 4413, 11), -- M. Def. Modifiers
+(16035, 4414, 2), -- Armor Type
+(16035, 4415, 1), -- Weapon Type
+(16035, 4416, 3), -- Races
 -- Improved Baby Cougar
 (16036, 4121, 1), -- Summoned Monster Magic Protection
-(16036, 4408, 1), -- HP Increase (1x)
-(16036, 4409, 1), -- MP Increase (1x)
-(16036, 4410, 11), -- Average P. Atk.
-(16036, 4411, 11), -- Average M. Atk.
-(16036, 4412, 11), -- Average P. Def.
-(16036, 4413, 11), -- Average M. Def.
-(16036, 4414, 2), -- Standard Type
-(16036, 4415, 1), -- Bare Hands
-(16036, 4416, 3), -- Beasts
+(16036, 4408, 1), -- HP Modifiers
+(16036, 4409, 1), -- MP Modifiers
+(16036, 4410, 11), -- P. Atk. Modifiers
+(16036, 4411, 11), -- M. Atk. Modifiers
+(16036, 4412, 11), -- P. Def. Modifiers
+(16036, 4413, 11), -- M. Def. Modifiers
+(16036, 4414, 2), -- Armor Type
+(16036, 4415, 1), -- Weapon Type
+(16036, 4416, 3), -- Races
 -- Great Snow Wolf
 (16037, 4121, 1), -- Summoned Monster Magic Protection
-(16037, 4408, 1), -- HP Increase (1x)
-(16037, 4409, 1), -- MP Increase (1x)
-(16037, 4410, 11), -- Average P. Atk.
-(16037, 4411, 11), -- Average M. Atk.
-(16037, 4412, 11), -- Average P. Def.
-(16037, 4413, 11), -- Average M. Def.
-(16037, 4414, 2), -- Standard Type
-(16037, 4415, 1), -- Bare Hands
-(16037, 4416, 3), -- Beasts
+(16037, 4408, 1), -- HP Modifiers
+(16037, 4409, 1), -- MP Modifiers
+(16037, 4410, 11), -- P. Atk. Modifiers
+(16037, 4411, 11), -- M. Atk. Modifiers
+(16037, 4412, 11), -- P. Def. Modifiers
+(16037, 4413, 11), -- M. Def. Modifiers
+(16037, 4414, 2), -- Armor Type
+(16037, 4415, 1), -- Weapon Type
+(16037, 4416, 3), -- Races
 -- Red Wind Strider
 (16038, 4121, 1), -- Summoned Monster Magic Protection
-(16038, 4408, 1), -- HP Increase (1x)
-(16038, 4409, 1), -- MP Increase (1x)
-(16038, 4410, 11), -- Average P. Atk.
-(16038, 4411, 11), -- Average M. Atk.
-(16038, 4412, 11), -- Average P. Def.
-(16038, 4413, 11), -- Average M. Def.
-(16038, 4414, 2), -- Standard Type
-(16038, 4415, 1), -- Bare Hands
-(16038, 4416, 10), -- Dragons
+(16038, 4408, 1), -- HP Modifiers
+(16038, 4409, 1), -- MP Modifiers
+(16038, 4410, 11), -- P. Atk. Modifiers
+(16038, 4411, 11), -- M. Atk. Modifiers
+(16038, 4412, 11), -- P. Def. Modifiers
+(16038, 4413, 11), -- M. Def. Modifiers
+(16038, 4414, 2), -- Armor Type
+(16038, 4415, 1), -- Weapon Type
+(16038, 4416, 10), -- Races
 -- Red Star Strider
 (16039, 4121, 1), -- Summoned Monster Magic Protection
-(16039, 4408, 1), -- HP Increase (1x)
-(16039, 4409, 1), -- MP Increase (1x)
-(16039, 4410, 11), -- Average P. Atk.
-(16039, 4411, 11), -- Average M. Atk.
-(16039, 4412, 11), -- Average P. Def.
-(16039, 4413, 11), -- Average M. Def.
-(16039, 4414, 2), -- Standard Type
-(16039, 4415, 1), -- Bare Hands
-(16039, 4416, 10), -- Dragons
+(16039, 4408, 1), -- HP Modifiers
+(16039, 4409, 1), -- MP Modifiers
+(16039, 4410, 11), -- P. Atk. Modifiers
+(16039, 4411, 11), -- M. Atk. Modifiers
+(16039, 4412, 11), -- P. Def. Modifiers
+(16039, 4413, 11), -- M. Def. Modifiers
+(16039, 4414, 2), -- Armor Type
+(16039, 4415, 1), -- Weapon Type
+(16039, 4416, 10), -- Races
 -- Red Twilight Strider
 (16040, 4121, 1), -- Summoned Monster Magic Protection
-(16040, 4408, 1), -- HP Increase (1x)
-(16040, 4409, 1), -- MP Increase (1x)
-(16040, 4410, 11), -- Average P. Atk.
-(16040, 4411, 11), -- Average M. Atk.
-(16040, 4412, 11), -- Average P. Def.
-(16040, 4413, 11), -- Average M. Def.
-(16040, 4414, 2), -- Standard Type
-(16040, 4415, 1), -- Bare Hands
-(16040, 4416, 10), -- Dragons
+(16040, 4408, 1), -- HP Modifiers
+(16040, 4409, 1), -- MP Modifiers
+(16040, 4410, 11), -- P. Atk. Modifiers
+(16040, 4411, 11), -- M. Atk. Modifiers
+(16040, 4412, 11), -- P. Def. Modifiers
+(16040, 4413, 11), -- M. Def. Modifiers
+(16040, 4414, 2), -- Armor Type
+(16040, 4415, 1), -- Weapon Type
+(16040, 4416, 10), -- Races
 -- Fenrir
 (16041, 4121, 1), -- Summoned Monster Magic Protection
-(16041, 4408, 1), -- HP Increase (1x)
-(16041, 4409, 1), -- MP Increase (1x)
-(16041, 4410, 11), -- Average P. Atk.
-(16041, 4411, 11), -- Average M. Atk.
-(16041, 4412, 11), -- Average P. Def.
-(16041, 4413, 11), -- Average M. Def.
-(16041, 4414, 2), -- Standard Type
-(16041, 4415, 1), -- Bare Hands
-(16041, 4416, 3), -- Beasts
+(16041, 4408, 1), -- HP Modifiers
+(16041, 4409, 1), -- MP Modifiers
+(16041, 4410, 11), -- P. Atk. Modifiers
+(16041, 4411, 11), -- M. Atk. Modifiers
+(16041, 4412, 11), -- P. Def. Modifiers
+(16041, 4413, 11), -- M. Def. Modifiers
+(16041, 4414, 2), -- Armor Type
+(16041, 4415, 1), -- Weapon Type
+(16041, 4416, 3), -- Races
 (16041, 5442, 1), -- Bite Attack
 (16041, 5443, 1), -- Cry of the Wolf
 (16041, 5444, 1), -- Maul
 (16041, 5445, 1), -- Awakening
 -- Snow Fenrir
 (16042, 4121, 1), -- Summoned Monster Magic Protection
-(16042, 4408, 1), -- HP Increase (1x)
-(16042, 4409, 1), -- MP Increase (1x)
-(16042, 4410, 11), -- Average P. Atk.
-(16042, 4411, 11), -- Average M. Atk.
-(16042, 4412, 11), -- Average P. Def.
-(16042, 4413, 11), -- Average M. Def.
-(16042, 4414, 2), -- Standard Type
-(16042, 4415, 1), -- Bare Hands
-(16042, 4416, 3), -- Beasts
+(16042, 4408, 1), -- HP Modifiers
+(16042, 4409, 1), -- MP Modifiers
+(16042, 4410, 11), -- P. Atk. Modifiers
+(16042, 4411, 11), -- M. Atk. Modifiers
+(16042, 4412, 11), -- P. Def. Modifiers
+(16042, 4413, 11), -- M. Def. Modifiers
+(16042, 4414, 2), -- Armor Type
+(16042, 4415, 1), -- Weapon Type
+(16042, 4416, 3), -- Races
 -- Fox Shaman
 (16043, 4121, 1), -- Summoned Monster Magic Protection
-(16043, 4408, 1), -- HP Increase (1x)
-(16043, 4409, 1), -- MP Increase (1x)
-(16043, 4410, 11), -- Average P. Atk.
-(16043, 4411, 11), -- Average M. Atk.
-(16043, 4412, 11), -- Average P. Def.
-(16043, 4413, 11), -- Average M. Def.
-(16043, 4414, 2), -- Standard Type
-(16043, 4415, 1), -- Bare Hands
-(16043, 4416, 6), -- Humanoids
+(16043, 4408, 1), -- HP Modifiers
+(16043, 4409, 1), -- MP Modifiers
+(16043, 4410, 11), -- P. Atk. Modifiers
+(16043, 4411, 11), -- M. Atk. Modifiers
+(16043, 4412, 11), -- P. Def. Modifiers
+(16043, 4413, 11), -- M. Def. Modifiers
+(16043, 4414, 2), -- Armor Type
+(16043, 4415, 1), -- Weapon Type
+(16043, 4416, 6), -- Races
 -- Wild Beast Fighter
 (16044, 4121, 1), -- Summoned Monster Magic Protection
-(16044, 4408, 1), -- HP Increase (1x)
-(16044, 4409, 1), -- MP Increase (1x)
-(16044, 4410, 11), -- Average P. Atk.
-(16044, 4411, 11), -- Average M. Atk.
-(16044, 4412, 11), -- Average P. Def.
-(16044, 4413, 11), -- Average M. Def.
-(16044, 4414, 2), -- Standard Type
-(16044, 4415, 1), -- Bare Hands
-(16044, 4416, 3), -- Beasts
+(16044, 4408, 1), -- HP Modifiers
+(16044, 4409, 1), -- MP Modifiers
+(16044, 4410, 11), -- P. Atk. Modifiers
+(16044, 4411, 11), -- M. Atk. Modifiers
+(16044, 4412, 11), -- P. Def. Modifiers
+(16044, 4413, 11), -- M. Def. Modifiers
+(16044, 4414, 2), -- Armor Type
+(16044, 4415, 1), -- Weapon Type
+(16044, 4416, 3), -- Races
 -- White Weasel
 (16045, 4121, 1), -- Summoned Monster Magic Protection
-(16045, 4408, 1), -- HP Increase (1x)
-(16045, 4409, 1), -- MP Increase (1x)
-(16045, 4410, 11), -- Average P. Atk.
-(16045, 4411, 11), -- Average M. Atk.
-(16045, 4412, 11), -- Average P. Def.
-(16045, 4413, 11), -- Average M. Def.
-(16045, 4414, 2), -- Standard Type
-(16045, 4415, 1), -- Bare Hands
-(16045, 4416, 3), -- Beasts
+(16045, 4408, 1), -- HP Modifiers
+(16045, 4409, 1), -- MP Modifiers
+(16045, 4410, 11), -- P. Atk. Modifiers
+(16045, 4411, 11), -- M. Atk. Modifiers
+(16045, 4412, 11), -- P. Def. Modifiers
+(16045, 4413, 11), -- M. Def. Modifiers
+(16045, 4414, 2), -- Armor Type
+(16045, 4415, 1), -- Weapon Type
+(16045, 4416, 3), -- Races
 -- Fairy Princess
 (16046, 4121, 1), -- Summoned Monster Magic Protection
-(16046, 4408, 1), -- HP Increase (1x)
-(16046, 4409, 1), -- MP Increase (1x)
-(16046, 4410, 11), -- Average P. Atk.
-(16046, 4411, 11), -- Average M. Atk.
-(16046, 4412, 11), -- Average P. Def.
-(16046, 4413, 11), -- Average M. Def.
-(16046, 4414, 2), -- Standard Type
-(16046, 4415, 1), -- Bare Hands
-(16046, 4416, 3), -- Beasts
+(16046, 4408, 1), -- HP Modifiers
+(16046, 4409, 1), -- MP Modifiers
+(16046, 4410, 11), -- P. Atk. Modifiers
+(16046, 4411, 11), -- M. Atk. Modifiers
+(16046, 4412, 11), -- P. Def. Modifiers
+(16046, 4413, 11), -- M. Def. Modifiers
+(16046, 4414, 2), -- Armor Type
+(16046, 4415, 1), -- Weapon Type
+(16046, 4416, 3), -- Races
 -- Love Agathion
-(16049, 4408, 1), -- HP Increase (1x)
-(16049, 4409, 1), -- MP Increase (1x)
-(16049, 4410, 11), -- Average P. Atk.
-(16049, 4411, 11), -- Average M. Atk.
-(16049, 4412, 11), -- Average P. Def.
-(16049, 4413, 11), -- Average M. Def.
-(16049, 4414, 2), -- Standard Type
-(16049, 4415, 1), -- Bare Hands
-(16049, 4416, 19), -- Others
+(16049, 4408, 1), -- HP Modifiers
+(16049, 4409, 1), -- MP Modifiers
+(16049, 4410, 11), -- P. Atk. Modifiers
+(16049, 4411, 11), -- M. Atk. Modifiers
+(16049, 4412, 11), -- P. Def. Modifiers
+(16049, 4413, 11), -- M. Def. Modifiers
+(16049, 4414, 2), -- Armor Type
+(16049, 4415, 1), -- Weapon Type
+(16049, 4416, 19), -- Races
 -- Owl Monk
 (16050, 4121, 1), -- Summoned Monster Magic Protection
-(16050, 4408, 1), -- HP Increase (1x)
-(16050, 4409, 1), -- MP Increase (1x)
-(16050, 4410, 11), -- Average P. Atk.
-(16050, 4411, 11), -- Average M. Atk.
-(16050, 4412, 11), -- Average P. Def.
-(16050, 4413, 11), -- Average M. Def.
-(16050, 4414, 2), -- Standard Type
-(16050, 4415, 1), -- Bare Hands
-(16050, 4416, 4), -- Animals
+(16050, 4408, 1), -- HP Modifiers
+(16050, 4409, 1), -- MP Modifiers
+(16050, 4410, 11), -- P. Atk. Modifiers
+(16050, 4411, 11), -- M. Atk. Modifiers
+(16050, 4412, 11), -- P. Def. Modifiers
+(16050, 4413, 11), -- M. Def. Modifiers
+(16050, 4414, 2), -- Armor Type
+(16050, 4415, 1), -- Weapon Type
+(16050, 4416, 4), -- Races
 -- Spirit Shaman
 (16051, 4121, 1), -- Summoned Monster Magic Protection
-(16051, 4408, 1), -- HP Increase (1x)
-(16051, 4409, 1), -- MP Increase (1x)
-(16051, 4410, 11), -- Average P. Atk.
-(16051, 4411, 11), -- Average M. Atk.
-(16051, 4412, 11), -- Average P. Def.
-(16051, 4413, 11), -- Average M. Def.
-(16051, 4414, 2), -- Standard Type
-(16051, 4415, 1), -- Bare Hands
-(16051, 4416, 7), -- Spirits
+(16051, 4408, 1), -- HP Modifiers
+(16051, 4409, 1), -- MP Modifiers
+(16051, 4410, 11), -- P. Atk. Modifiers
+(16051, 4411, 11), -- M. Atk. Modifiers
+(16051, 4412, 11), -- P. Def. Modifiers
+(16051, 4413, 11), -- M. Def. Modifiers
+(16051, 4414, 2), -- Armor Type
+(16051, 4415, 1), -- Weapon Type
+(16051, 4416, 7), -- Races
 -- Toy Knight
 (16052, 4121, 1), -- Summoned Monster Magic Protection
-(16052, 4408, 1), -- HP Increase (1x)
-(16052, 4409, 1), -- MP Increase (1x)
-(16052, 4410, 11), -- Average P. Atk.
-(16052, 4411, 11), -- Average M. Atk.
-(16052, 4412, 11), -- Average P. Def.
-(16052, 4413, 11), -- Average M. Def.
-(16052, 4414, 2), -- Standard Type
-(16052, 4415, 1), -- Bare Hands
-(16052, 4416, 2), -- Magic Creatures
+(16052, 4408, 1), -- HP Modifiers
+(16052, 4409, 1), -- MP Modifiers
+(16052, 4410, 11), -- P. Atk. Modifiers
+(16052, 4411, 11), -- M. Atk. Modifiers
+(16052, 4412, 11), -- P. Def. Modifiers
+(16052, 4413, 11), -- M. Def. Modifiers
+(16052, 4414, 2), -- Armor Type
+(16052, 4415, 1), -- Weapon Type
+(16052, 4416, 2), -- Races
 -- Turtle Ascetic
 (16053, 4121, 1), -- Summoned Monster Magic Protection
-(16053, 4408, 1), -- HP Increase (1x)
-(16053, 4409, 1), -- MP Increase (1x)
-(16053, 4410, 11), -- Average P. Atk.
-(16053, 4411, 11), -- Average M. Atk.
-(16053, 4412, 11), -- Average P. Def.
-(16053, 4413, 11), -- Average M. Def.
-(16053, 4414, 2), -- Standard Type
-(16053, 4415, 1), -- Bare Hands
-(16053, 4416, 4), -- Animals
+(16053, 4408, 1), -- HP Modifiers
+(16053, 4409, 1), -- MP Modifiers
+(16053, 4410, 11), -- P. Atk. Modifiers
+(16053, 4411, 11), -- M. Atk. Modifiers
+(16053, 4412, 11), -- P. Def. Modifiers
+(16053, 4413, 11), -- M. Def. Modifiers
+(16053, 4414, 2), -- Armor Type
+(16053, 4415, 1), -- Weapon Type
+(16053, 4416, 4), -- Races
 -- Monkey
-(16054, 4408, 1), -- HP Increase (1x)
-(16054, 4409, 1), -- MP Increase (1x)
-(16054, 4410, 11), -- Average P. Atk.
-(16054, 4411, 11), -- Average M. Atk.
-(16054, 4412, 11), -- Average P. Def.
-(16054, 4413, 11), -- Average M. Def.
-(16054, 4414, 2), -- Standard Type
-(16054, 4415, 1), -- Bare Hands
-(16054, 4416, 19), -- Others
+(16054, 4408, 1), -- HP Modifiers
+(16054, 4409, 1), -- MP Modifiers
+(16054, 4410, 11), -- P. Atk. Modifiers
+(16054, 4411, 11), -- M. Atk. Modifiers
+(16054, 4412, 11), -- P. Def. Modifiers
+(16054, 4413, 11), -- M. Def. Modifiers
+(16054, 4414, 2), -- Armor Type
+(16054, 4415, 1), -- Weapon Type
+(16054, 4416, 19), -- Races
 -- Griffon
-(16055, 4408, 1), -- HP Increase (1x)
-(16055, 4409, 1), -- MP Increase (1x)
-(16055, 4410, 11), -- Average P. Atk.
-(16055, 4411, 11), -- Average M. Atk.
-(16055, 4412, 11), -- Average P. Def.
-(16055, 4413, 11), -- Average M. Def.
-(16055, 4414, 2), -- Standard Type
-(16055, 4415, 1), -- Bare Hands
-(16055, 4416, 19), -- Others
+(16055, 4408, 1), -- HP Modifiers
+(16055, 4409, 1), -- MP Modifiers
+(16055, 4410, 11), -- P. Atk. Modifiers
+(16055, 4411, 11), -- M. Atk. Modifiers
+(16055, 4412, 11), -- P. Def. Modifiers
+(16055, 4413, 11), -- M. Def. Modifiers
+(16055, 4414, 2), -- Armor Type
+(16055, 4415, 1), -- Weapon Type
+(16055, 4416, 19), -- Races
 -- Joy
-(16056, 4408, 1), -- HP Increase (1x)
-(16056, 4409, 1), -- MP Increase (1x)
-(16056, 4410, 11), -- Average P. Atk.
-(16056, 4411, 11), -- Average M. Atk.
-(16056, 4412, 11), -- Average P. Def.
-(16056, 4413, 11), -- Average M. Def.
-(16056, 4414, 2), -- Standard Type
-(16056, 4415, 1), -- Bare Hands
-(16056, 4416, 19), -- Others
+(16056, 4408, 1), -- HP Modifiers
+(16056, 4409, 1), -- MP Modifiers
+(16056, 4410, 11), -- P. Atk. Modifiers
+(16056, 4411, 11), -- M. Atk. Modifiers
+(16056, 4412, 11), -- P. Def. Modifiers
+(16056, 4413, 11), -- M. Def. Modifiers
+(16056, 4414, 2), -- Armor Type
+(16056, 4415, 1), -- Weapon Type
+(16056, 4416, 19), -- Races
 -- Sorrow
-(16057, 4408, 1), -- HP Increase (1x)
-(16057, 4409, 1), -- MP Increase (1x)
-(16057, 4410, 11), -- Average P. Atk.
-(16057, 4411, 11), -- Average M. Atk.
-(16057, 4412, 11), -- Average P. Def.
-(16057, 4413, 11), -- Average M. Def.
-(16057, 4414, 2), -- Standard Type
-(16057, 4415, 1), -- Bare Hands
-(16057, 4416, 19), -- Others
+(16057, 4408, 1), -- HP Modifiers
+(16057, 4409, 1), -- MP Modifiers
+(16057, 4410, 11), -- P. Atk. Modifiers
+(16057, 4411, 11), -- M. Atk. Modifiers
+(16057, 4412, 11), -- P. Def. Modifiers
+(16057, 4413, 11), -- M. Def. Modifiers
+(16057, 4414, 2), -- Armor Type
+(16057, 4415, 1), -- Weapon Type
+(16057, 4416, 19), -- Races
 -- Anger
-(16058, 4408, 1), -- HP Increase (1x)
-(16058, 4409, 1), -- MP Increase (1x)
-(16058, 4410, 11), -- Average P. Atk.
-(16058, 4411, 11), -- Average M. Atk.
-(16058, 4412, 11), -- Average P. Def.
-(16058, 4413, 11), -- Average M. Def.
-(16058, 4414, 2), -- Standard Type
-(16058, 4415, 1), -- Bare Hands
-(16058, 4416, 19), -- Others
+(16058, 4408, 1), -- HP Modifiers
+(16058, 4409, 1), -- MP Modifiers
+(16058, 4410, 11), -- P. Atk. Modifiers
+(16058, 4411, 11), -- M. Atk. Modifiers
+(16058, 4412, 11), -- P. Def. Modifiers
+(16058, 4413, 11), -- M. Def. Modifiers
+(16058, 4414, 2), -- Armor Type
+(16058, 4415, 1), -- Weapon Type
+(16058, 4416, 19), -- Races
 -- Boy Bear
-(16059, 4408, 1), -- HP Increase (1x)
-(16059, 4409, 1), -- MP Increase (1x)
-(16059, 4410, 11), -- Average P. Atk.
-(16059, 4411, 11), -- Average M. Atk.
-(16059, 4412, 11), -- Average P. Def.
-(16059, 4413, 11), -- Average M. Def.
-(16059, 4414, 2), -- Standard Type
-(16059, 4415, 1), -- Bare Hands
-(16059, 4416, 2), -- Magic Creatures
+(16059, 4408, 1), -- HP Modifiers
+(16059, 4409, 1), -- MP Modifiers
+(16059, 4410, 11), -- P. Atk. Modifiers
+(16059, 4411, 11), -- M. Atk. Modifiers
+(16059, 4412, 11), -- P. Def. Modifiers
+(16059, 4413, 11), -- M. Def. Modifiers
+(16059, 4414, 2), -- Armor Type
+(16059, 4415, 1), -- Weapon Type
+(16059, 4416, 2), -- Races
 -- Girl Bear
-(16060, 4408, 1), -- HP Increase (1x)
-(16060, 4409, 1), -- MP Increase (1x)
-(16060, 4410, 11), -- Average P. Atk.
-(16060, 4411, 11), -- Average M. Atk.
-(16060, 4412, 11), -- Average P. Def.
-(16060, 4413, 11), -- Average M. Def.
-(16060, 4414, 2), -- Standard Type
-(16060, 4415, 1), -- Bare Hands
-(16060, 4416, 2), -- Magic Creatures
+(16060, 4408, 1), -- HP Modifiers
+(16060, 4409, 1), -- MP Modifiers
+(16060, 4410, 11), -- P. Atk. Modifiers
+(16060, 4411, 11), -- M. Atk. Modifiers
+(16060, 4412, 11), -- P. Def. Modifiers
+(16060, 4413, 11), -- M. Def. Modifiers
+(16060, 4414, 2), -- Armor Type
+(16060, 4415, 1), -- Weapon Type
+(16060, 4416, 2), -- Races
 -- Collection Device
-(16061, 4408, 1), -- HP Increase (1x)
-(16061, 4409, 1), -- MP Increase (1x)
-(16061, 4410, 11), -- Average P. Atk.
-(16061, 4411, 11), -- Average M. Atk.
-(16061, 4412, 11), -- Average P. Def.
-(16061, 4413, 11), -- Average M. Def.
-(16061, 4414, 2), -- Standard Type
-(16061, 4415, 1), -- Bare Hands
-(16061, 4416, 2), -- Magic Creatures
+(16061, 4408, 1), -- HP Modifiers
+(16061, 4409, 1), -- MP Modifiers
+(16061, 4410, 11), -- P. Atk. Modifiers
+(16061, 4411, 11), -- M. Atk. Modifiers
+(16061, 4412, 11), -- P. Def. Modifiers
+(16061, 4413, 11), -- M. Def. Modifiers
+(16061, 4414, 2), -- Armor Type
+(16061, 4415, 1), -- Weapon Type
+(16061, 4416, 2), -- Races
 -- Knight
-(16062, 4408, 1), -- HP Increase (1x)
-(16062, 4409, 1), -- MP Increase (1x)
-(16062, 4410, 11), -- Average P. Atk.
-(16062, 4411, 11), -- Average M. Atk.
-(16062, 4412, 11), -- Average P. Def.
-(16062, 4413, 11), -- Average M. Def.
-(16062, 4414, 2), -- Standard Type
-(16062, 4415, 1), -- Bare Hands
-(16062, 4416, 2), -- Magic Creatures
+(16062, 4408, 1), -- HP Modifiers
+(16062, 4409, 1), -- MP Modifiers
+(16062, 4410, 11), -- P. Atk. Modifiers
+(16062, 4411, 11), -- M. Atk. Modifiers
+(16062, 4412, 11), -- P. Def. Modifiers
+(16062, 4413, 11), -- M. Def. Modifiers
+(16062, 4414, 2), -- Armor Type
+(16062, 4415, 1), -- Weapon Type
+(16062, 4416, 2), -- Races
 -- Neolithica
-(16063, 4408, 1), -- HP Increase (1x)
-(16063, 4409, 1), -- MP Increase (1x)
-(16063, 4410, 11), -- Average P. Atk.
-(16063, 4411, 11), -- Average M. Atk.
-(16063, 4412, 11), -- Average P. Def.
-(16063, 4413, 11), -- Average M. Def.
-(16063, 4414, 2), -- Standard Type
-(16063, 4415, 1), -- Bare Hands
-(16063, 4416, 2), -- Magic Creatures
+(16063, 4408, 1), -- HP Modifiers
+(16063, 4409, 1), -- MP Modifiers
+(16063, 4410, 11), -- P. Atk. Modifiers
+(16063, 4411, 11), -- M. Atk. Modifiers
+(16063, 4412, 11), -- P. Def. Modifiers
+(16063, 4413, 11), -- M. Def. Modifiers
+(16063, 4414, 2), -- Armor Type
+(16063, 4415, 1), -- Weapon Type
+(16063, 4416, 2), -- Races
 -- Juju
-(16064, 4408, 1), -- HP Increase (1x)
-(16064, 4409, 1), -- MP Increase (1x)
-(16064, 4410, 11), -- Average P. Atk.
-(16064, 4411, 11), -- Average M. Atk.
-(16064, 4412, 11), -- Average P. Def.
-(16064, 4413, 11), -- Average M. Def.
-(16064, 4414, 2), -- Standard Type
-(16064, 4415, 1), -- Bare Hands
-(16064, 4416, 2), -- Magic Creatures
+(16064, 4408, 1), -- HP Modifiers
+(16064, 4409, 1), -- MP Modifiers
+(16064, 4410, 11), -- P. Atk. Modifiers
+(16064, 4411, 11), -- M. Atk. Modifiers
+(16064, 4412, 11), -- P. Def. Modifiers
+(16064, 4413, 11), -- M. Def. Modifiers
+(16064, 4414, 2), -- Armor Type
+(16064, 4415, 1), -- Weapon Type
+(16064, 4416, 2), -- Races
 -- Oink Oink
-(16065, 4408, 1), -- HP Increase (1x)
-(16065, 4409, 1), -- MP Increase (1x)
-(16065, 4410, 11), -- Average P. Atk.
-(16065, 4411, 11), -- Average M. Atk.
-(16065, 4412, 11), -- Average P. Def.
-(16065, 4413, 11), -- Average M. Def.
-(16065, 4414, 2), -- Standard Type
-(16065, 4415, 1), -- Bare Hands
-(16065, 4416, 7), -- Spirits
+(16065, 4408, 1), -- HP Modifiers
+(16065, 4409, 1), -- MP Modifiers
+(16065, 4410, 11), -- P. Atk. Modifiers
+(16065, 4411, 11), -- M. Atk. Modifiers
+(16065, 4412, 11), -- P. Def. Modifiers
+(16065, 4413, 11), -- M. Def. Modifiers
+(16065, 4414, 2), -- Armor Type
+(16065, 4415, 1), -- Weapon Type
+(16065, 4416, 7), -- Races
 -- Light of Dawn
-(16066, 4408, 1), -- HP Increase (1x)
-(16066, 4409, 1), -- MP Increase (1x)
-(16066, 4410, 11), -- Average P. Atk.
-(16066, 4411, 11), -- Average M. Atk.
-(16066, 4412, 11), -- Average P. Def.
-(16066, 4413, 11), -- Average M. Def.
-(16066, 4414, 2), -- Standard Type
-(16066, 4415, 1), -- Bare Hands
-(16066, 4416, 7), -- Spirits
+(16066, 4408, 1), -- HP Modifiers
+(16066, 4409, 1), -- MP Modifiers
+(16066, 4410, 11), -- P. Atk. Modifiers
+(16066, 4411, 11), -- M. Atk. Modifiers
+(16066, 4412, 11), -- P. Def. Modifiers
+(16066, 4413, 11), -- M. Def. Modifiers
+(16066, 4414, 2), -- Armor Type
+(16066, 4415, 1), -- Weapon Type
+(16066, 4416, 7), -- Races
 -- Deinonychus
 (16067, 4121, 1), -- Summoned Monster Magic Protection
-(16067, 4408, 1), -- HP Increase (1x)
-(16067, 4409, 1), -- MP Increase (1x)
-(16067, 4410, 11), -- Average P. Atk.
-(16067, 4411, 11), -- Average M. Atk.
-(16067, 4412, 11), -- Average P. Def.
-(16067, 4413, 11), -- Average M. Def.
-(16067, 4414, 2), -- Standard Type
-(16067, 4415, 5), -- Blunt Weapons
-(16067, 4416, 3), -- Beasts
+(16067, 4408, 1), -- HP Modifiers
+(16067, 4409, 1), -- MP Modifiers
+(16067, 4410, 11), -- P. Atk. Modifiers
+(16067, 4411, 11), -- M. Atk. Modifiers
+(16067, 4412, 11), -- P. Def. Modifiers
+(16067, 4413, 11), -- M. Def. Modifiers
+(16067, 4414, 2), -- Armor Type
+(16067, 4415, 5), -- Weapon Type
+(16067, 4416, 3), -- Races
 -- Guardian's Strider
 (16068, 4121, 1), -- Summoned Monster Magic Protection
-(16068, 4408, 1), -- HP Increase (1x)
-(16068, 4409, 1), -- MP Increase (1x)
-(16068, 4410, 11), -- Average P. Atk.
-(16068, 4411, 11), -- Average M. Atk.
-(16068, 4412, 11), -- Average P. Def.
-(16068, 4413, 11), -- Average M. Def.
-(16068, 4414, 2), -- Standard Type
-(16068, 4415, 1), -- Bare Hands
-(16068, 4416, 10), -- Dragons
+(16068, 4408, 1), -- HP Modifiers
+(16068, 4409, 1), -- MP Modifiers
+(16068, 4410, 11), -- P. Atk. Modifiers
+(16068, 4411, 11), -- M. Atk. Modifiers
+(16068, 4412, 11), -- P. Def. Modifiers
+(16068, 4413, 11), -- M. Def. Modifiers
+(16068, 4414, 2), -- Armor Type
+(16068, 4415, 1), -- Weapon Type
+(16068, 4416, 10), -- Races
 -- Pona
-(16069, 4408, 1), -- HP Increase (1x)
-(16069, 4409, 1), -- MP Increase (1x)
-(16069, 4410, 11), -- Average P. Atk.
-(16069, 4411, 11), -- Average M. Atk.
-(16069, 4412, 11), -- Average P. Def.
-(16069, 4413, 11), -- Average M. Def.
-(16069, 4414, 2), -- Standard Type
-(16069, 4415, 1), -- Bare Hands
-(16069, 4416, 2), -- Magic Creatures
+(16069, 4408, 1), -- HP Modifiers
+(16069, 4409, 1), -- MP Modifiers
+(16069, 4410, 11), -- P. Atk. Modifiers
+(16069, 4411, 11), -- M. Atk. Modifiers
+(16069, 4412, 11), -- P. Def. Modifiers
+(16069, 4413, 11), -- M. Def. Modifiers
+(16069, 4414, 2), -- Armor Type
+(16069, 4415, 1), -- Weapon Type
+(16069, 4416, 2), -- Races
 -- Towbat
-(16070, 4408, 1), -- HP Increase (1x)
-(16070, 4409, 1), -- MP Increase (1x)
-(16070, 4410, 11), -- Average P. Atk.
-(16070, 4411, 11), -- Average M. Atk.
-(16070, 4412, 11), -- Average P. Def.
-(16070, 4413, 11), -- Average M. Def.
-(16070, 4414, 2), -- Standard Type
-(16070, 4415, 1), -- Bare Hands
+(16070, 4408, 1), -- HP Modifiers
+(16070, 4409, 1), -- MP Modifiers
+(16070, 4410, 11), -- P. Atk. Modifiers
+(16070, 4411, 11), -- M. Atk. Modifiers
+(16070, 4412, 11), -- P. Def. Modifiers
+(16070, 4413, 11), -- M. Def. Modifiers
+(16070, 4414, 2), -- Armor Type
+(16070, 4415, 1), -- Weapon Type
 -- Maguen
 (16071, 4121, 1), -- Summoned Monster Magic Protection
-(16071, 4408, 1), -- HP Increase (1x)
-(16071, 4409, 1), -- MP Increase (1x)
-(16071, 4410, 11), -- Average P. Atk.
-(16071, 4411, 11), -- Average M. Atk.
-(16071, 4412, 11), -- Average P. Def.
-(16071, 4413, 11), -- Average M. Def.
-(16071, 4414, 2), -- Standard Type
-(16071, 4415, 5), -- Blunt Weapons
-(16071, 4416, 3), -- Beasts
+(16071, 4408, 1), -- HP Modifiers
+(16071, 4409, 1), -- MP Modifiers
+(16071, 4410, 11), -- P. Atk. Modifiers
+(16071, 4411, 11), -- M. Atk. Modifiers
+(16071, 4412, 11), -- P. Def. Modifiers
+(16071, 4413, 11), -- M. Def. Modifiers
+(16071, 4414, 2), -- Armor Type
+(16071, 4415, 5), -- Weapon Type
+(16071, 4416, 3), -- Races
 -- Elite Maguen
 (16072, 4121, 1), -- Summoned Monster Magic Protection
-(16072, 4408, 1), -- HP Increase (1x)
-(16072, 4409, 1), -- MP Increase (1x)
-(16072, 4410, 11), -- Average P. Atk.
-(16072, 4411, 11), -- Average M. Atk.
-(16072, 4412, 11), -- Average P. Def.
-(16072, 4413, 11), -- Average M. Def.
-(16072, 4414, 2), -- Standard Type
-(16072, 4415, 5), -- Blunt Weapons
-(16072, 4416, 3), -- Beasts
+(16072, 4408, 1), -- HP Modifiers
+(16072, 4409, 1), -- MP Modifiers
+(16072, 4410, 11), -- P. Atk. Modifiers
+(16072, 4411, 11), -- M. Atk. Modifiers
+(16072, 4412, 11), -- P. Def. Modifiers
+(16072, 4413, 11), -- M. Def. Modifiers
+(16072, 4414, 2), -- Armor Type
+(16072, 4415, 5), -- Weapon Type
+(16072, 4416, 3), -- Races
 -- Rudolph Agathion
-(16073, 4408, 1), -- HP Increase (1x)
-(16073, 4409, 1), -- MP Increase (1x)
-(16073, 4410, 11), -- Average P. Atk.
-(16073, 4411, 11), -- Average M. Atk.
-(16073, 4412, 11), -- Average P. Def.
-(16073, 4413, 11), -- Average M. Def.
-(16073, 4414, 2), -- Standard Type
-(16073, 4415, 1), -- Bare Hands
-(16073, 4416, 19), -- Others
+(16073, 4408, 1), -- HP Modifiers
+(16073, 4409, 1), -- MP Modifiers
+(16073, 4410, 11), -- P. Atk. Modifiers
+(16073, 4411, 11), -- M. Atk. Modifiers
+(16073, 4412, 11), -- P. Def. Modifiers
+(16073, 4413, 11), -- M. Def. Modifiers
+(16073, 4414, 2), -- Armor Type
+(16073, 4415, 1), -- Weapon Type
+(16073, 4416, 19), -- Races
 -- Blood Queen
-(18001, 4002, 6), -- HP Drain
+(18001, 4002, 6), -- NPC HP Drain
 (18001, 4035, 6), -- Poison
-(18001, 4039, 6), -- Mana Drain
-(18001, 4408, 1), -- HP Increase (1x)
-(18001, 4409, 1), -- MP Increase (1x)
-(18001, 4410, 11), -- Average P. Atk.
-(18001, 4411, 11), -- Average M. Atk.
-(18001, 4412, 11), -- Average P. Def.
-(18001, 4413, 11), -- Average M. Def.
-(18001, 4414, 2), -- Standard Type
-(18001, 4415, 3), -- One-handed Sword
-(18001, 4416, 9), -- Demons
+(18001, 4039, 6), -- NPC MP Drain
+(18001, 4408, 1), -- HP Modifiers
+(18001, 4409, 1), -- MP Modifiers
+(18001, 4410, 11), -- P. Atk. Modifiers
+(18001, 4411, 11), -- M. Atk. Modifiers
+(18001, 4412, 11), -- P. Def. Modifiers
+(18001, 4413, 11), -- M. Def. Modifiers
+(18001, 4414, 2), -- Armor Type
+(18001, 4415, 3), -- Weapon Type
+(18001, 4416, 9), -- Races
 -- Blood Queen
-(18002, 4002, 6), -- HP Drain
+(18002, 4002, 6), -- NPC HP Drain
 (18002, 4035, 6), -- Poison
-(18002, 4039, 6), -- Mana Drain
-(18002, 4408, 1), -- HP Increase (1x)
-(18002, 4409, 1), -- MP Increase (1x)
-(18002, 4410, 11), -- Average P. Atk.
-(18002, 4411, 11), -- Average M. Atk.
-(18002, 4412, 11), -- Average P. Def.
-(18002, 4413, 11), -- Average M. Def.
-(18002, 4414, 2), -- Standard Type
-(18002, 4415, 3), -- One-handed Sword
-(18002, 4416, 9), -- Demons
+(18002, 4039, 6), -- NPC MP Drain
+(18002, 4408, 1), -- HP Modifiers
+(18002, 4409, 1), -- MP Modifiers
+(18002, 4410, 11), -- P. Atk. Modifiers
+(18002, 4411, 11), -- M. Atk. Modifiers
+(18002, 4412, 11), -- P. Def. Modifiers
+(18002, 4413, 11), -- M. Def. Modifiers
+(18002, 4414, 2), -- Armor Type
+(18002, 4415, 3), -- Weapon Type
+(18002, 4416, 9), -- Races
 -- Bearded Keltir
-(18003, 4408, 1), -- HP Increase (1x)
-(18003, 4409, 1), -- MP Increase (1x)
-(18003, 4410, 11), -- Average P. Atk.
-(18003, 4411, 11), -- Average M. Atk.
-(18003, 4412, 11), -- Average P. Def.
-(18003, 4413, 11), -- Average M. Def.
-(18003, 4414, 2), -- Standard Type
-(18003, 4415, 3), -- One-handed Sword
-(18003, 4416, 4), -- Animals
+(18003, 4408, 1), -- HP Modifiers
+(18003, 4409, 1), -- MP Modifiers
+(18003, 4410, 11), -- P. Atk. Modifiers
+(18003, 4411, 11), -- M. Atk. Modifiers
+(18003, 4412, 11), -- P. Def. Modifiers
+(18003, 4413, 11), -- M. Def. Modifiers
+(18003, 4414, 2), -- Armor Type
+(18003, 4415, 3), -- Weapon Type
+(18003, 4416, 4), -- Races
 -- Susceptor Prime
-(18004, 4273, 3), -- Resist Daggers/Rapier Weapon
-(18004, 4274, 1), -- Blunt Weapon Weak Point
-(18004, 4408, 1), -- HP Increase (1x)
-(18004, 4409, 1), -- MP Increase (1x)
-(18004, 4410, 11), -- Average P. Atk.
-(18004, 4411, 11), -- Average M. Atk.
-(18004, 4412, 11), -- Average P. Def.
-(18004, 4413, 11), -- Average M. Def.
-(18004, 4414, 2), -- Standard Type
-(18004, 4415, 9), -- Bows
-(18004, 4416, 2), -- Magic Creatures
+(18004, 4273, 3), -- Resist Dagger
+(18004, 4274, 1), -- Blunt Attack Weak Point
+(18004, 4408, 1), -- HP Modifiers
+(18004, 4409, 1), -- MP Modifiers
+(18004, 4410, 11), -- P. Atk. Modifiers
+(18004, 4411, 11), -- M. Atk. Modifiers
+(18004, 4412, 11), -- P. Def. Modifiers
+(18004, 4413, 11), -- M. Def. Modifiers
+(18004, 4414, 2), -- Armor Type
+(18004, 4415, 9), -- Weapon Type
+(18004, 4416, 2), -- Races
 (18004, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Mimic
-(18005, 4408, 1), -- HP Increase (1x)
-(18005, 4409, 1), -- MP Increase (1x)
-(18005, 4410, 11), -- Average P. Atk.
-(18005, 4411, 11), -- Average M. Atk.
-(18005, 4412, 11), -- Average P. Def.
-(18005, 4413, 11), -- Average M. Def.
-(18005, 4414, 2), -- Standard Type
-(18005, 4415, 3), -- One-handed Sword
-(18005, 4416, 2), -- Magic Creatures
+(18005, 4408, 1), -- HP Modifiers
+(18005, 4409, 1), -- MP Modifiers
+(18005, 4410, 11), -- P. Atk. Modifiers
+(18005, 4411, 11), -- M. Atk. Modifiers
+(18005, 4412, 11), -- P. Def. Modifiers
+(18005, 4413, 11), -- M. Def. Modifiers
+(18005, 4414, 2), -- Armor Type
+(18005, 4415, 3), -- Weapon Type
+(18005, 4416, 2), -- Races
 -- Maluk Lord
-(18006, 4002, 6), -- HP Drain
+(18006, 4002, 6), -- NPC HP Drain
 (18006, 4046, 6), -- Sleep
-(18006, 4094, 6), -- Cancellation
-(18006, 4098, 6), -- Silence
-(18006, 4408, 1), -- HP Increase (1x)
-(18006, 4409, 1), -- MP Increase (1x)
-(18006, 4410, 11), -- Average P. Atk.
-(18006, 4411, 11), -- Average M. Atk.
-(18006, 4412, 11), -- Average P. Def.
-(18006, 4413, 11), -- Average M. Def.
-(18006, 4414, 2), -- Standard Type
-(18006, 4415, 3), -- One-handed Sword
-(18006, 4416, 1), -- Undead
+(18006, 4094, 6), -- NPC Cancel Magic
+(18006, 4098, 6), -- Magic Skill Block
+(18006, 4408, 1), -- HP Modifiers
+(18006, 4409, 1), -- MP Modifiers
+(18006, 4410, 11), -- P. Atk. Modifiers
+(18006, 4411, 11), -- M. Atk. Modifiers
+(18006, 4412, 11), -- P. Def. Modifiers
+(18006, 4413, 11), -- M. Def. Modifiers
+(18006, 4414, 2), -- Armor Type
+(18006, 4415, 3), -- Weapon Type
+(18006, 4416, 1), -- Races
 -- Limal Karinness
-(18007, 4002, 6), -- HP Drain
+(18007, 4002, 6), -- NPC HP Drain
 (18007, 4047, 6), -- Hold
 (18007, 4118, 6), -- Paralysis
-(18007, 4408, 1), -- HP Increase (1x)
-(18007, 4409, 1), -- MP Increase (1x)
-(18007, 4410, 11), -- Average P. Atk.
-(18007, 4411, 11), -- Average M. Atk.
-(18007, 4412, 11), -- Average P. Def.
-(18007, 4413, 11), -- Average M. Def.
-(18007, 4414, 2), -- Standard Type
-(18007, 4415, 3), -- One-handed Sword
-(18007, 4416, 9), -- Demons
+(18007, 4408, 1), -- HP Modifiers
+(18007, 4409, 1), -- MP Modifiers
+(18007, 4410, 11), -- P. Atk. Modifiers
+(18007, 4411, 11), -- M. Atk. Modifiers
+(18007, 4412, 11), -- P. Def. Modifiers
+(18007, 4413, 11), -- M. Def. Modifiers
+(18007, 4414, 2), -- Armor Type
+(18007, 4415, 3), -- Weapon Type
+(18007, 4416, 9), -- Races
 -- Karik
 (18008, 4047, 7), -- Hold
-(18008, 4071, 5), -- Resist Bow/Crossbow Weapons
-(18008, 4085, 1), -- Critical Damage
+(18008, 4071, 5), -- Resist Archery
+(18008, 4085, 1), -- Critical Power
 (18008, 4086, 1), -- Critical Chance
-(18008, 4408, 1), -- HP Increase (1x)
-(18008, 4409, 1), -- MP Increase (1x)
-(18008, 4410, 11), -- Average P. Atk.
-(18008, 4411, 11), -- Average M. Atk.
-(18008, 4412, 14), -- Strong P. Def.
-(18008, 4413, 11), -- Average M. Def.
-(18008, 4414, 2), -- Standard Type
-(18008, 4415, 3), -- One-handed Sword
-(18008, 4416, 9), -- Demons
+(18008, 4408, 1), -- HP Modifiers
+(18008, 4409, 1), -- MP Modifiers
+(18008, 4410, 11), -- P. Atk. Modifiers
+(18008, 4411, 11), -- M. Atk. Modifiers
+(18008, 4412, 14), -- P. Def. Modifiers
+(18008, 4413, 11), -- M. Def. Modifiers
+(18008, 4414, 2), -- Armor Type
+(18008, 4415, 3), -- Weapon Type
+(18008, 4416, 9), -- Races
 -- Offering of the Branded, Elder
-(18009, 4078, 3), -- Flame Strike
-(18009, 4273, 3), -- Resist Daggers/Rapier Weapon
-(18009, 4274, 1), -- Blunt Weapon Weak Point
-(18009, 4408, 1), -- HP Increase (1x)
-(18009, 4409, 1), -- MP Increase (1x)
-(18009, 4410, 11), -- Average P. Atk.
-(18009, 4411, 11), -- Average M. Atk.
-(18009, 4412, 11), -- Average P. Def.
-(18009, 4413, 11), -- Average M. Def.
-(18009, 4414, 2), -- Standard Type
-(18009, 4415, 3), -- One-handed Sword
-(18009, 4416, 6), -- Humanoids
+(18009, 4078, 3), -- NPC Flamestrike
+(18009, 4273, 3), -- Resist Dagger
+(18009, 4274, 1), -- Blunt Attack Weak Point
+(18009, 4408, 1), -- HP Modifiers
+(18009, 4409, 1), -- MP Modifiers
+(18009, 4410, 11), -- P. Atk. Modifiers
+(18009, 4411, 11), -- M. Atk. Modifiers
+(18009, 4412, 11), -- P. Def. Modifiers
+(18009, 4413, 11), -- M. Def. Modifiers
+(18009, 4414, 2), -- Armor Type
+(18009, 4415, 3), -- Weapon Type
+(18009, 4416, 6), -- Races
 (18009, 4438, 2), -- Greater Resist Sleep
 (18009, 4439, 2), -- Greater Resist Hold
 (18009, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Offering of the Branded
-(18010, 4408, 1), -- HP Increase (1x)
-(18010, 4409, 1), -- MP Increase (1x)
-(18010, 4410, 11), -- Average P. Atk.
-(18010, 4411, 11), -- Average M. Atk.
-(18010, 4412, 11), -- Average P. Def.
-(18010, 4413, 11), -- Average M. Def.
-(18010, 4414, 3), -- Light Armor Type
-(18010, 4415, 7), -- Daggers
-(18010, 4416, 6), -- Humanoids
+(18010, 4408, 1), -- HP Modifiers
+(18010, 4409, 1), -- MP Modifiers
+(18010, 4410, 11), -- P. Atk. Modifiers
+(18010, 4411, 11), -- M. Atk. Modifiers
+(18010, 4412, 11), -- P. Def. Modifiers
+(18010, 4413, 11), -- M. Def. Modifiers
+(18010, 4414, 3), -- Armor Type
+(18010, 4415, 7), -- Weapon Type
+(18010, 4416, 6), -- Races
 (18010, 4438, 2), -- Greater Resist Sleep
 (18010, 4439, 2), -- Greater Resist Hold
 (18010, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 (18010, 4445, 2), -- Greater Resist Spear Weapons
 -- Offering of the Branded, Archer
-(18011, 4408, 1), -- HP Increase (1x)
-(18011, 4409, 1), -- MP Increase (1x)
-(18011, 4410, 11), -- Average P. Atk.
-(18011, 4411, 11), -- Average M. Atk.
-(18011, 4412, 11), -- Average P. Def.
-(18011, 4413, 11), -- Average M. Def.
-(18011, 4414, 3), -- Light Armor Type
-(18011, 4415, 9), -- Bows
-(18011, 4416, 6), -- Humanoids
+(18011, 4408, 1), -- HP Modifiers
+(18011, 4409, 1), -- MP Modifiers
+(18011, 4410, 11), -- P. Atk. Modifiers
+(18011, 4411, 11), -- M. Atk. Modifiers
+(18011, 4412, 11), -- P. Def. Modifiers
+(18011, 4413, 11), -- M. Def. Modifiers
+(18011, 4414, 3), -- Armor Type
+(18011, 4415, 9), -- Weapon Type
+(18011, 4416, 6), -- Races
 (18011, 4438, 2), -- Greater Resist Sleep
 (18011, 4439, 2), -- Greater Resist Hold
 -- Offering of the Branded, Warrior
-(18012, 4071, 5), -- Resist Bow/Crossbow Weapons
-(18012, 4087, 3), -- Blaze
-(18012, 4273, 3), -- Resist Daggers/Rapier Weapon
-(18012, 4274, 1), -- Blunt Weapon Weak Point
-(18012, 4408, 1), -- HP Increase (1x)
-(18012, 4409, 1), -- MP Increase (1x)
-(18012, 4410, 11), -- Average P. Atk.
-(18012, 4411, 11), -- Average M. Atk.
-(18012, 4412, 11), -- Average P. Def.
-(18012, 4413, 11), -- Average M. Def.
-(18012, 4414, 2), -- Standard Type
-(18012, 4415, 3), -- One-handed Sword
-(18012, 4416, 6), -- Humanoids
+(18012, 4071, 5), -- Resist Archery
+(18012, 4087, 3), -- NPC Blaze
+(18012, 4273, 3), -- Resist Dagger
+(18012, 4274, 1), -- Blunt Attack Weak Point
+(18012, 4408, 1), -- HP Modifiers
+(18012, 4409, 1), -- MP Modifiers
+(18012, 4410, 11), -- P. Atk. Modifiers
+(18012, 4411, 11), -- M. Atk. Modifiers
+(18012, 4412, 11), -- P. Def. Modifiers
+(18012, 4413, 11), -- M. Def. Modifiers
+(18012, 4414, 2), -- Armor Type
+(18012, 4415, 3), -- Weapon Type
+(18012, 4416, 6), -- Races
 (18012, 4438, 2), -- Greater Resist Sleep
 (18012, 4439, 2), -- Greater Resist Hold
 -- Offering of the Branded, Follower
-(18013, 4151, 2), -- Wind Strike
-(18013, 4160, 2), -- Aura Burn
-(18013, 4225, 5), -- Resist Stun Attacks
-(18013, 4408, 1), -- HP Increase (1x)
-(18013, 4409, 1), -- MP Increase (1x)
-(18013, 4410, 11), -- Average P. Atk.
-(18013, 4411, 11), -- Average M. Atk.
-(18013, 4412, 11), -- Average P. Def.
-(18013, 4413, 15), -- Strong M. Def.
-(18013, 4414, 3), -- Light Armor Type
-(18013, 4415, 7), -- Daggers
-(18013, 4416, 6), -- Humanoids
+(18013, 4151, 2), -- NPC Windstrike - Magic
+(18013, 4160, 2), -- NPC Aura Burn - Magic
+(18013, 4225, 5), -- Resist Shock
+(18013, 4408, 1), -- HP Modifiers
+(18013, 4409, 1), -- MP Modifiers
+(18013, 4410, 11), -- P. Atk. Modifiers
+(18013, 4411, 11), -- M. Atk. Modifiers
+(18013, 4412, 11), -- P. Def. Modifiers
+(18013, 4413, 15), -- M. Def. Modifiers
+(18013, 4414, 3), -- Armor Type
+(18013, 4415, 7), -- Weapon Type
+(18013, 4416, 6), -- Races
 (18013, 4438, 2), -- Greater Resist Sleep
 (18013, 4439, 2), -- Greater Resist Hold
 (18013, 4445, 2), -- Greater Resist Spear Weapons
 -- Offering of the Branded, Berserker
-(18014, 4071, 5), -- Resist Bow/Crossbow Weapons
-(18014, 4244, 3), -- Wild Sweep
-(18014, 4273, 3), -- Resist Daggers/Rapier Weapon
-(18014, 4274, 1), -- Blunt Weapon Weak Point
-(18014, 4408, 1), -- HP Increase (1x)
-(18014, 4409, 1), -- MP Increase (1x)
-(18014, 4410, 11), -- Average P. Atk.
-(18014, 4411, 11), -- Average M. Atk.
-(18014, 4412, 11), -- Average P. Def.
-(18014, 4413, 15), -- Strong M. Def.
-(18014, 4414, 2), -- Standard Type
-(18014, 4415, 3), -- One-handed Sword
-(18014, 4416, 6), -- Humanoids
+(18014, 4071, 5), -- Resist Archery
+(18014, 4244, 3), -- NPC Wild Sweep
+(18014, 4273, 3), -- Resist Dagger
+(18014, 4274, 1), -- Blunt Attack Weak Point
+(18014, 4408, 1), -- HP Modifiers
+(18014, 4409, 1), -- MP Modifiers
+(18014, 4410, 11), -- P. Atk. Modifiers
+(18014, 4411, 11), -- M. Atk. Modifiers
+(18014, 4412, 11), -- P. Def. Modifiers
+(18014, 4413, 15), -- M. Def. Modifiers
+(18014, 4414, 2), -- Armor Type
+(18014, 4415, 3), -- Weapon Type
+(18014, 4416, 6), -- Races
 (18014, 4438, 2), -- Greater Resist Sleep
 (18014, 4439, 2), -- Greater Resist Hold
 -- Offering of the Branded, Zealot
-(18015, 4032, 3), -- Power Strike
-(18015, 4225, 5), -- Resist Stun Attacks
-(18015, 4408, 1), -- HP Increase (1x)
-(18015, 4409, 1), -- MP Increase (1x)
-(18015, 4410, 11), -- Average P. Atk.
-(18015, 4411, 11), -- Average M. Atk.
-(18015, 4412, 11), -- Average P. Def.
-(18015, 4413, 11), -- Average M. Def.
-(18015, 4414, 3), -- Light Armor Type
-(18015, 4415, 7), -- Daggers
-(18015, 4416, 6), -- Humanoids
+(18015, 4032, 3), -- NPC Strike
+(18015, 4225, 5), -- Resist Shock
+(18015, 4408, 1), -- HP Modifiers
+(18015, 4409, 1), -- MP Modifiers
+(18015, 4410, 11), -- P. Atk. Modifiers
+(18015, 4411, 11), -- M. Atk. Modifiers
+(18015, 4412, 11), -- P. Def. Modifiers
+(18015, 4413, 11), -- M. Def. Modifiers
+(18015, 4414, 3), -- Armor Type
+(18015, 4415, 7), -- Weapon Type
+(18015, 4416, 6), -- Races
 (18015, 4438, 2), -- Greater Resist Sleep
 (18015, 4439, 2), -- Greater Resist Hold
 (18015, 4445, 2), -- Greater Resist Spear Weapons
 -- Offering of the Branded, Marksman
-(18016, 4408, 1), -- HP Increase (1x)
-(18016, 4409, 1), -- MP Increase (1x)
-(18016, 4410, 11), -- Average P. Atk.
-(18016, 4411, 11), -- Average M. Atk.
-(18016, 4412, 11), -- Average P. Def.
-(18016, 4413, 11), -- Average M. Def.
-(18016, 4414, 3), -- Light Armor Type
-(18016, 4415, 9), -- Bows
-(18016, 4416, 6), -- Humanoids
+(18016, 4408, 1), -- HP Modifiers
+(18016, 4409, 1), -- MP Modifiers
+(18016, 4410, 11), -- P. Atk. Modifiers
+(18016, 4411, 11), -- M. Atk. Modifiers
+(18016, 4412, 11), -- P. Def. Modifiers
+(18016, 4413, 11), -- M. Def. Modifiers
+(18016, 4414, 3), -- Armor Type
+(18016, 4415, 9), -- Weapon Type
+(18016, 4416, 6), -- Races
 (18016, 4438, 2), -- Greater Resist Sleep
 (18016, 4439, 2), -- Greater Resist Hold
 -- Offering of the Branded, Disciple
-(18017, 4032, 4), -- Power Strike
-(18017, 4408, 1), -- HP Increase (1x)
-(18017, 4409, 1), -- MP Increase (1x)
-(18017, 4410, 11), -- Average P. Atk.
-(18017, 4411, 11), -- Average M. Atk.
-(18017, 4412, 11), -- Average P. Def.
-(18017, 4413, 11), -- Average M. Def.
-(18017, 4414, 2), -- Standard Type
-(18017, 4415, 3), -- One-handed Sword
-(18017, 4416, 6), -- Humanoids
+(18017, 4032, 4), -- NPC Strike
+(18017, 4408, 1), -- HP Modifiers
+(18017, 4409, 1), -- MP Modifiers
+(18017, 4410, 11), -- P. Atk. Modifiers
+(18017, 4411, 11), -- M. Atk. Modifiers
+(18017, 4412, 11), -- P. Def. Modifiers
+(18017, 4413, 11), -- M. Def. Modifiers
+(18017, 4414, 2), -- Armor Type
+(18017, 4415, 3), -- Weapon Type
+(18017, 4416, 6), -- Races
 (18017, 4438, 2), -- Greater Resist Sleep
 (18017, 4439, 2), -- Greater Resist Hold
 -- Offering of the Branded, Saint
-(18018, 4071, 5), -- Resist Bow/Crossbow Weapons
-(18018, 4073, 4), -- Stun
-(18018, 4273, 3), -- Resist Daggers/Rapier Weapon
-(18018, 4408, 1), -- HP Increase (1x)
-(18018, 4409, 1), -- MP Increase (1x)
-(18018, 4410, 11), -- Average P. Atk.
-(18018, 4411, 11), -- Average M. Atk.
-(18018, 4412, 11), -- Average P. Def.
-(18018, 4413, 11), -- Average M. Def.
-(18018, 4414, 2), -- Standard Type
-(18018, 4415, 3), -- One-handed Sword
-(18018, 4416, 6), -- Humanoids
+(18018, 4071, 5), -- Resist Archery
+(18018, 4073, 4), -- Shock
+(18018, 4273, 3), -- Resist Dagger
+(18018, 4408, 1), -- HP Modifiers
+(18018, 4409, 1), -- MP Modifiers
+(18018, 4410, 11), -- P. Atk. Modifiers
+(18018, 4411, 11), -- M. Atk. Modifiers
+(18018, 4412, 11), -- P. Def. Modifiers
+(18018, 4413, 11), -- M. Def. Modifiers
+(18018, 4414, 2), -- Armor Type
+(18018, 4415, 3), -- Weapon Type
+(18018, 4416, 6), -- Races
 (18018, 4438, 2), -- Greater Resist Sleep
 (18018, 4439, 2), -- Greater Resist Hold
 -- Apostate's Offering, Elder
-(18019, 4078, 4), -- Flame Strike
-(18019, 4273, 3), -- Resist Daggers/Rapier Weapon
-(18019, 4274, 1), -- Blunt Weapon Weak Point
-(18019, 4408, 1), -- HP Increase (1x)
-(18019, 4409, 1), -- MP Increase (1x)
-(18019, 4410, 11), -- Average P. Atk.
-(18019, 4411, 11), -- Average M. Atk.
-(18019, 4412, 11), -- Average P. Def.
-(18019, 4413, 11), -- Average M. Def.
-(18019, 4414, 2), -- Standard Type
-(18019, 4415, 3), -- One-handed Sword
-(18019, 4416, 6), -- Humanoids
+(18019, 4078, 4), -- NPC Flamestrike
+(18019, 4273, 3), -- Resist Dagger
+(18019, 4274, 1), -- Blunt Attack Weak Point
+(18019, 4408, 1), -- HP Modifiers
+(18019, 4409, 1), -- MP Modifiers
+(18019, 4410, 11), -- P. Atk. Modifiers
+(18019, 4411, 11), -- M. Atk. Modifiers
+(18019, 4412, 11), -- P. Def. Modifiers
+(18019, 4413, 11), -- M. Def. Modifiers
+(18019, 4414, 2), -- Armor Type
+(18019, 4415, 3), -- Weapon Type
+(18019, 4416, 6), -- Races
 (18019, 4438, 2), -- Greater Resist Sleep
 (18019, 4439, 2), -- Greater Resist Hold
 (18019, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Apostate's Offering
-(18020, 4408, 1), -- HP Increase (1x)
-(18020, 4409, 1), -- MP Increase (1x)
-(18020, 4410, 11), -- Average P. Atk.
-(18020, 4411, 11), -- Average M. Atk.
-(18020, 4412, 11), -- Average P. Def.
-(18020, 4413, 11), -- Average M. Def.
-(18020, 4414, 3), -- Light Armor Type
-(18020, 4415, 7), -- Daggers
-(18020, 4416, 6), -- Humanoids
+(18020, 4408, 1), -- HP Modifiers
+(18020, 4409, 1), -- MP Modifiers
+(18020, 4410, 11), -- P. Atk. Modifiers
+(18020, 4411, 11), -- M. Atk. Modifiers
+(18020, 4412, 11), -- P. Def. Modifiers
+(18020, 4413, 11), -- M. Def. Modifiers
+(18020, 4414, 3), -- Armor Type
+(18020, 4415, 7), -- Weapon Type
+(18020, 4416, 6), -- Races
 (18020, 4438, 2), -- Greater Resist Sleep
 (18020, 4439, 2), -- Greater Resist Hold
 (18020, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 (18020, 4445, 2), -- Greater Resist Spear Weapons
 -- Apostate's Offering, Archer
-(18021, 4408, 1), -- HP Increase (1x)
-(18021, 4409, 1), -- MP Increase (1x)
-(18021, 4410, 11), -- Average P. Atk.
-(18021, 4411, 11), -- Average M. Atk.
-(18021, 4412, 11), -- Average P. Def.
-(18021, 4413, 11), -- Average M. Def.
-(18021, 4414, 3), -- Light Armor Type
-(18021, 4415, 9), -- Bows
-(18021, 4416, 6), -- Humanoids
+(18021, 4408, 1), -- HP Modifiers
+(18021, 4409, 1), -- MP Modifiers
+(18021, 4410, 11), -- P. Atk. Modifiers
+(18021, 4411, 11), -- M. Atk. Modifiers
+(18021, 4412, 11), -- P. Def. Modifiers
+(18021, 4413, 11), -- M. Def. Modifiers
+(18021, 4414, 3), -- Armor Type
+(18021, 4415, 9), -- Weapon Type
+(18021, 4416, 6), -- Races
 (18021, 4438, 2), -- Greater Resist Sleep
 (18021, 4439, 2), -- Greater Resist Hold
 -- Apostate's Offering, Warrior
-(18022, 4071, 5), -- Resist Bow/Crossbow Weapons
-(18022, 4087, 4), -- Blaze
-(18022, 4273, 3), -- Resist Daggers/Rapier Weapon
-(18022, 4274, 1), -- Blunt Weapon Weak Point
-(18022, 4408, 1), -- HP Increase (1x)
-(18022, 4409, 1), -- MP Increase (1x)
-(18022, 4410, 11), -- Average P. Atk.
-(18022, 4411, 11), -- Average M. Atk.
-(18022, 4412, 11), -- Average P. Def.
-(18022, 4413, 11), -- Average M. Def.
-(18022, 4414, 2), -- Standard Type
-(18022, 4415, 3), -- One-handed Sword
-(18022, 4416, 6), -- Humanoids
+(18022, 4071, 5), -- Resist Archery
+(18022, 4087, 4), -- NPC Blaze
+(18022, 4273, 3), -- Resist Dagger
+(18022, 4274, 1), -- Blunt Attack Weak Point
+(18022, 4408, 1), -- HP Modifiers
+(18022, 4409, 1), -- MP Modifiers
+(18022, 4410, 11), -- P. Atk. Modifiers
+(18022, 4411, 11), -- M. Atk. Modifiers
+(18022, 4412, 11), -- P. Def. Modifiers
+(18022, 4413, 11), -- M. Def. Modifiers
+(18022, 4414, 2), -- Armor Type
+(18022, 4415, 3), -- Weapon Type
+(18022, 4416, 6), -- Races
 (18022, 4438, 2), -- Greater Resist Sleep
 (18022, 4439, 2), -- Greater Resist Hold
 -- Apostate's Offering, Follower
-(18023, 4151, 4), -- Wind Strike
-(18023, 4160, 4), -- Aura Burn
-(18023, 4225, 5), -- Resist Stun Attacks
-(18023, 4408, 1), -- HP Increase (1x)
-(18023, 4409, 1), -- MP Increase (1x)
-(18023, 4410, 11), -- Average P. Atk.
-(18023, 4411, 11), -- Average M. Atk.
-(18023, 4412, 11), -- Average P. Def.
-(18023, 4413, 15), -- Strong M. Def.
-(18023, 4414, 3), -- Light Armor Type
-(18023, 4415, 7), -- Daggers
-(18023, 4416, 6), -- Humanoids
+(18023, 4151, 4), -- NPC Windstrike - Magic
+(18023, 4160, 4), -- NPC Aura Burn - Magic
+(18023, 4225, 5), -- Resist Shock
+(18023, 4408, 1), -- HP Modifiers
+(18023, 4409, 1), -- MP Modifiers
+(18023, 4410, 11), -- P. Atk. Modifiers
+(18023, 4411, 11), -- M. Atk. Modifiers
+(18023, 4412, 11), -- P. Def. Modifiers
+(18023, 4413, 15), -- M. Def. Modifiers
+(18023, 4414, 3), -- Armor Type
+(18023, 4415, 7), -- Weapon Type
+(18023, 4416, 6), -- Races
 (18023, 4438, 2), -- Greater Resist Sleep
 (18023, 4439, 2), -- Greater Resist Hold
 (18023, 4445, 2), -- Greater Resist Spear Weapons
 -- Apostate's Offering, Berserker
-(18024, 4071, 5), -- Resist Bow/Crossbow Weapons
-(18024, 4244, 4), -- Wild Sweep
-(18024, 4273, 3), -- Resist Daggers/Rapier Weapon
-(18024, 4274, 1), -- Blunt Weapon Weak Point
-(18024, 4408, 1), -- HP Increase (1x)
-(18024, 4409, 1), -- MP Increase (1x)
-(18024, 4410, 11), -- Average P. Atk.
-(18024, 4411, 11), -- Average M. Atk.
-(18024, 4412, 11), -- Average P. Def.
-(18024, 4413, 15), -- Strong M. Def.
-(18024, 4414, 2), -- Standard Type
-(18024, 4415, 3), -- One-handed Sword
-(18024, 4416, 6), -- Humanoids
+(18024, 4071, 5), -- Resist Archery
+(18024, 4244, 4), -- NPC Wild Sweep
+(18024, 4273, 3), -- Resist Dagger
+(18024, 4274, 1), -- Blunt Attack Weak Point
+(18024, 4408, 1), -- HP Modifiers
+(18024, 4409, 1), -- MP Modifiers
+(18024, 4410, 11), -- P. Atk. Modifiers
+(18024, 4411, 11), -- M. Atk. Modifiers
+(18024, 4412, 11), -- P. Def. Modifiers
+(18024, 4413, 15), -- M. Def. Modifiers
+(18024, 4414, 2), -- Armor Type
+(18024, 4415, 3), -- Weapon Type
+(18024, 4416, 6), -- Races
 (18024, 4438, 2), -- Greater Resist Sleep
 (18024, 4439, 2), -- Greater Resist Hold
 -- Apostate's Offering, Zealot
-(18025, 4032, 4), -- Power Strike
-(18025, 4225, 5), -- Resist Stun Attacks
-(18025, 4408, 1), -- HP Increase (1x)
-(18025, 4409, 1), -- MP Increase (1x)
-(18025, 4410, 11), -- Average P. Atk.
-(18025, 4411, 11), -- Average M. Atk.
-(18025, 4412, 11), -- Average P. Def.
-(18025, 4413, 11), -- Average M. Def.
-(18025, 4414, 3), -- Light Armor Type
-(18025, 4415, 7), -- Daggers
-(18025, 4416, 6), -- Humanoids
+(18025, 4032, 4), -- NPC Strike
+(18025, 4225, 5), -- Resist Shock
+(18025, 4408, 1), -- HP Modifiers
+(18025, 4409, 1), -- MP Modifiers
+(18025, 4410, 11), -- P. Atk. Modifiers
+(18025, 4411, 11), -- M. Atk. Modifiers
+(18025, 4412, 11), -- P. Def. Modifiers
+(18025, 4413, 11), -- M. Def. Modifiers
+(18025, 4414, 3), -- Armor Type
+(18025, 4415, 7), -- Weapon Type
+(18025, 4416, 6), -- Races
 (18025, 4438, 2), -- Greater Resist Sleep
 (18025, 4439, 2), -- Greater Resist Hold
 (18025, 4445, 2), -- Greater Resist Spear Weapons
 -- Apostate's Offering, Marksman
-(18026, 4408, 1), -- HP Increase (1x)
-(18026, 4409, 1), -- MP Increase (1x)
-(18026, 4410, 11), -- Average P. Atk.
-(18026, 4411, 11), -- Average M. Atk.
-(18026, 4412, 11), -- Average P. Def.
-(18026, 4413, 11), -- Average M. Def.
-(18026, 4414, 3), -- Light Armor Type
-(18026, 4415, 9), -- Bows
-(18026, 4416, 6), -- Humanoids
+(18026, 4408, 1), -- HP Modifiers
+(18026, 4409, 1), -- MP Modifiers
+(18026, 4410, 11), -- P. Atk. Modifiers
+(18026, 4411, 11), -- M. Atk. Modifiers
+(18026, 4412, 11), -- P. Def. Modifiers
+(18026, 4413, 11), -- M. Def. Modifiers
+(18026, 4414, 3), -- Armor Type
+(18026, 4415, 9), -- Weapon Type
+(18026, 4416, 6), -- Races
 (18026, 4438, 2), -- Greater Resist Sleep
 (18026, 4439, 2), -- Greater Resist Hold
 -- Apostate's Offering, Disciple
-(18027, 4032, 5), -- Power Strike
-(18027, 4408, 1), -- HP Increase (1x)
-(18027, 4409, 1), -- MP Increase (1x)
-(18027, 4410, 11), -- Average P. Atk.
-(18027, 4411, 11), -- Average M. Atk.
-(18027, 4412, 11), -- Average P. Def.
-(18027, 4413, 11), -- Average M. Def.
-(18027, 4414, 2), -- Standard Type
-(18027, 4415, 3), -- One-handed Sword
-(18027, 4416, 6), -- Humanoids
+(18027, 4032, 5), -- NPC Strike
+(18027, 4408, 1), -- HP Modifiers
+(18027, 4409, 1), -- MP Modifiers
+(18027, 4410, 11), -- P. Atk. Modifiers
+(18027, 4411, 11), -- M. Atk. Modifiers
+(18027, 4412, 11), -- P. Def. Modifiers
+(18027, 4413, 11), -- M. Def. Modifiers
+(18027, 4414, 2), -- Armor Type
+(18027, 4415, 3), -- Weapon Type
+(18027, 4416, 6), -- Races
 (18027, 4438, 2), -- Greater Resist Sleep
 (18027, 4439, 2), -- Greater Resist Hold
 -- Apostate's Offering, Saint
-(18028, 4071, 5), -- Resist Bow/Crossbow Weapons
-(18028, 4073, 5), -- Stun
-(18028, 4273, 3), -- Resist Daggers/Rapier Weapon
-(18028, 4408, 1), -- HP Increase (1x)
-(18028, 4409, 1), -- MP Increase (1x)
-(18028, 4410, 11), -- Average P. Atk.
-(18028, 4411, 11), -- Average M. Atk.
-(18028, 4412, 11), -- Average P. Def.
-(18028, 4413, 11), -- Average M. Def.
-(18028, 4414, 2), -- Standard Type
-(18028, 4415, 3), -- One-handed Sword
-(18028, 4416, 6), -- Humanoids
+(18028, 4071, 5), -- Resist Archery
+(18028, 4073, 5), -- Shock
+(18028, 4273, 3), -- Resist Dagger
+(18028, 4408, 1), -- HP Modifiers
+(18028, 4409, 1), -- MP Modifiers
+(18028, 4410, 11), -- P. Atk. Modifiers
+(18028, 4411, 11), -- M. Atk. Modifiers
+(18028, 4412, 11), -- P. Def. Modifiers
+(18028, 4413, 11), -- M. Def. Modifiers
+(18028, 4414, 2), -- Armor Type
+(18028, 4415, 3), -- Weapon Type
+(18028, 4416, 6), -- Races
 (18028, 4438, 2), -- Greater Resist Sleep
 (18028, 4439, 2), -- Greater Resist Hold
 -- Witch's Offering, Elder
-(18029, 4078, 5), -- Flame Strike
-(18029, 4273, 3), -- Resist Daggers/Rapier Weapon
-(18029, 4274, 1), -- Blunt Weapon Weak Point
-(18029, 4408, 1), -- HP Increase (1x)
-(18029, 4409, 1), -- MP Increase (1x)
-(18029, 4410, 11), -- Average P. Atk.
-(18029, 4411, 11), -- Average M. Atk.
-(18029, 4412, 11), -- Average P. Def.
-(18029, 4413, 11), -- Average M. Def.
-(18029, 4414, 2), -- Standard Type
-(18029, 4415, 3), -- One-handed Sword
-(18029, 4416, 6), -- Humanoids
+(18029, 4078, 5), -- NPC Flamestrike
+(18029, 4273, 3), -- Resist Dagger
+(18029, 4274, 1), -- Blunt Attack Weak Point
+(18029, 4408, 1), -- HP Modifiers
+(18029, 4409, 1), -- MP Modifiers
+(18029, 4410, 11), -- P. Atk. Modifiers
+(18029, 4411, 11), -- M. Atk. Modifiers
+(18029, 4412, 11), -- P. Def. Modifiers
+(18029, 4413, 11), -- M. Def. Modifiers
+(18029, 4414, 2), -- Armor Type
+(18029, 4415, 3), -- Weapon Type
+(18029, 4416, 6), -- Races
 (18029, 4438, 2), -- Greater Resist Sleep
 (18029, 4439, 2), -- Greater Resist Hold
 (18029, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Witch's Offering
-(18030, 4408, 1), -- HP Increase (1x)
-(18030, 4409, 1), -- MP Increase (1x)
-(18030, 4410, 11), -- Average P. Atk.
-(18030, 4411, 11), -- Average M. Atk.
-(18030, 4412, 11), -- Average P. Def.
-(18030, 4413, 11), -- Average M. Def.
-(18030, 4414, 3), -- Light Armor Type
-(18030, 4415, 7), -- Daggers
-(18030, 4416, 6), -- Humanoids
+(18030, 4408, 1), -- HP Modifiers
+(18030, 4409, 1), -- MP Modifiers
+(18030, 4410, 11), -- P. Atk. Modifiers
+(18030, 4411, 11), -- M. Atk. Modifiers
+(18030, 4412, 11), -- P. Def. Modifiers
+(18030, 4413, 11), -- M. Def. Modifiers
+(18030, 4414, 3), -- Armor Type
+(18030, 4415, 7), -- Weapon Type
+(18030, 4416, 6), -- Races
 (18030, 4438, 2), -- Greater Resist Sleep
 (18030, 4439, 2), -- Greater Resist Hold
 (18030, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 (18030, 4445, 2), -- Greater Resist Spear Weapons
 -- Witch's Offering, Archer
-(18031, 4408, 1), -- HP Increase (1x)
-(18031, 4409, 1), -- MP Increase (1x)
-(18031, 4410, 11), -- Average P. Atk.
-(18031, 4411, 11), -- Average M. Atk.
-(18031, 4412, 11), -- Average P. Def.
-(18031, 4413, 11), -- Average M. Def.
-(18031, 4414, 3), -- Light Armor Type
-(18031, 4415, 9), -- Bows
-(18031, 4416, 6), -- Humanoids
+(18031, 4408, 1), -- HP Modifiers
+(18031, 4409, 1), -- MP Modifiers
+(18031, 4410, 11), -- P. Atk. Modifiers
+(18031, 4411, 11), -- M. Atk. Modifiers
+(18031, 4412, 11), -- P. Def. Modifiers
+(18031, 4413, 11), -- M. Def. Modifiers
+(18031, 4414, 3), -- Armor Type
+(18031, 4415, 9), -- Weapon Type
+(18031, 4416, 6), -- Races
 (18031, 4438, 2), -- Greater Resist Sleep
 (18031, 4439, 2), -- Greater Resist Hold
 -- Witch's Offering, Warrior
-(18032, 4071, 5), -- Resist Bow/Crossbow Weapons
-(18032, 4087, 5), -- Blaze
-(18032, 4273, 3), -- Resist Daggers/Rapier Weapon
-(18032, 4274, 1), -- Blunt Weapon Weak Point
-(18032, 4408, 1), -- HP Increase (1x)
-(18032, 4409, 1), -- MP Increase (1x)
-(18032, 4410, 11), -- Average P. Atk.
-(18032, 4411, 11), -- Average M. Atk.
-(18032, 4412, 11), -- Average P. Def.
-(18032, 4413, 11), -- Average M. Def.
-(18032, 4414, 2), -- Standard Type
-(18032, 4415, 3), -- One-handed Sword
-(18032, 4416, 6), -- Humanoids
+(18032, 4071, 5), -- Resist Archery
+(18032, 4087, 5), -- NPC Blaze
+(18032, 4273, 3), -- Resist Dagger
+(18032, 4274, 1), -- Blunt Attack Weak Point
+(18032, 4408, 1), -- HP Modifiers
+(18032, 4409, 1), -- MP Modifiers
+(18032, 4410, 11), -- P. Atk. Modifiers
+(18032, 4411, 11), -- M. Atk. Modifiers
+(18032, 4412, 11), -- P. Def. Modifiers
+(18032, 4413, 11), -- M. Def. Modifiers
+(18032, 4414, 2), -- Armor Type
+(18032, 4415, 3), -- Weapon Type
+(18032, 4416, 6), -- Races
 (18032, 4438, 2), -- Greater Resist Sleep
 (18032, 4439, 2), -- Greater Resist Hold
 -- Witch's Offering, Follower
-(18033, 4151, 5), -- Wind Strike
-(18033, 4160, 5), -- Aura Burn
-(18033, 4225, 5), -- Resist Stun Attacks
-(18033, 4408, 1), -- HP Increase (1x)
-(18033, 4409, 1), -- MP Increase (1x)
-(18033, 4410, 11), -- Average P. Atk.
-(18033, 4411, 11), -- Average M. Atk.
-(18033, 4412, 11), -- Average P. Def.
-(18033, 4413, 15), -- Strong M. Def.
-(18033, 4414, 3), -- Light Armor Type
-(18033, 4415, 7), -- Daggers
-(18033, 4416, 6), -- Humanoids
+(18033, 4151, 5), -- NPC Windstrike - Magic
+(18033, 4160, 5), -- NPC Aura Burn - Magic
+(18033, 4225, 5), -- Resist Shock
+(18033, 4408, 1), -- HP Modifiers
+(18033, 4409, 1), -- MP Modifiers
+(18033, 4410, 11), -- P. Atk. Modifiers
+(18033, 4411, 11), -- M. Atk. Modifiers
+(18033, 4412, 11), -- P. Def. Modifiers
+(18033, 4413, 15), -- M. Def. Modifiers
+(18033, 4414, 3), -- Armor Type
+(18033, 4415, 7), -- Weapon Type
+(18033, 4416, 6), -- Races
 (18033, 4438, 2), -- Greater Resist Sleep
 (18033, 4439, 2), -- Greater Resist Hold
 (18033, 4445, 2), -- Greater Resist Spear Weapons
 -- Witch's Offering, Berserker
-(18034, 4071, 5), -- Resist Bow/Crossbow Weapons
-(18034, 4244, 5), -- Wild Sweep
-(18034, 4273, 3), -- Resist Daggers/Rapier Weapon
-(18034, 4274, 1), -- Blunt Weapon Weak Point
-(18034, 4408, 1), -- HP Increase (1x)
-(18034, 4409, 1), -- MP Increase (1x)
-(18034, 4410, 11), -- Average P. Atk.
-(18034, 4411, 11), -- Average M. Atk.
-(18034, 4412, 11), -- Average P. Def.
-(18034, 4413, 15), -- Strong M. Def.
-(18034, 4414, 2), -- Standard Type
-(18034, 4415, 3), -- One-handed Sword
-(18034, 4416, 6), -- Humanoids
+(18034, 4071, 5), -- Resist Archery
+(18034, 4244, 5), -- NPC Wild Sweep
+(18034, 4273, 3), -- Resist Dagger
+(18034, 4274, 1), -- Blunt Attack Weak Point
+(18034, 4408, 1), -- HP Modifiers
+(18034, 4409, 1), -- MP Modifiers
+(18034, 4410, 11), -- P. Atk. Modifiers
+(18034, 4411, 11), -- M. Atk. Modifiers
+(18034, 4412, 11), -- P. Def. Modifiers
+(18034, 4413, 15), -- M. Def. Modifiers
+(18034, 4414, 2), -- Armor Type
+(18034, 4415, 3), -- Weapon Type
+(18034, 4416, 6), -- Races
 (18034, 4438, 2), -- Greater Resist Sleep
 (18034, 4439, 2), -- Greater Resist Hold
 -- Witch's Offering, Zealot
-(18035, 4032, 5), -- Power Strike
-(18035, 4225, 5), -- Resist Stun Attacks
-(18035, 4408, 1), -- HP Increase (1x)
-(18035, 4409, 1), -- MP Increase (1x)
-(18035, 4410, 11), -- Average P. Atk.
-(18035, 4411, 11), -- Average M. Atk.
-(18035, 4412, 11), -- Average P. Def.
-(18035, 4413, 11), -- Average M. Def.
-(18035, 4414, 3), -- Light Armor Type
-(18035, 4415, 7), -- Daggers
-(18035, 4416, 6), -- Humanoids
+(18035, 4032, 5), -- NPC Strike
+(18035, 4225, 5), -- Resist Shock
+(18035, 4408, 1), -- HP Modifiers
+(18035, 4409, 1), -- MP Modifiers
+(18035, 4410, 11), -- P. Atk. Modifiers
+(18035, 4411, 11), -- M. Atk. Modifiers
+(18035, 4412, 11), -- P. Def. Modifiers
+(18035, 4413, 11), -- M. Def. Modifiers
+(18035, 4414, 3), -- Armor Type
+(18035, 4415, 7), -- Weapon Type
+(18035, 4416, 6), -- Races
 (18035, 4438, 2), -- Greater Resist Sleep
 (18035, 4439, 2), -- Greater Resist Hold
 (18035, 4445, 2), -- Greater Resist Spear Weapons
 -- Witch's Offering, Marksman
-(18036, 4408, 1), -- HP Increase (1x)
-(18036, 4409, 1), -- MP Increase (1x)
-(18036, 4410, 11), -- Average P. Atk.
-(18036, 4411, 11), -- Average M. Atk.
-(18036, 4412, 11), -- Average P. Def.
-(18036, 4413, 11), -- Average M. Def.
-(18036, 4414, 3), -- Light Armor Type
-(18036, 4415, 9), -- Bows
-(18036, 4416, 6), -- Humanoids
+(18036, 4408, 1), -- HP Modifiers
+(18036, 4409, 1), -- MP Modifiers
+(18036, 4410, 11), -- P. Atk. Modifiers
+(18036, 4411, 11), -- M. Atk. Modifiers
+(18036, 4412, 11), -- P. Def. Modifiers
+(18036, 4413, 11), -- M. Def. Modifiers
+(18036, 4414, 3), -- Armor Type
+(18036, 4415, 9), -- Weapon Type
+(18036, 4416, 6), -- Races
 (18036, 4438, 2), -- Greater Resist Sleep
 (18036, 4439, 2), -- Greater Resist Hold
 -- Witch's Offering, Disciple
-(18037, 4032, 6), -- Power Strike
-(18037, 4408, 1), -- HP Increase (1x)
-(18037, 4409, 1), -- MP Increase (1x)
-(18037, 4410, 11), -- Average P. Atk.
-(18037, 4411, 11), -- Average M. Atk.
-(18037, 4412, 11), -- Average P. Def.
-(18037, 4413, 11), -- Average M. Def.
-(18037, 4414, 2), -- Standard Type
-(18037, 4415, 3), -- One-handed Sword
-(18037, 4416, 6), -- Humanoids
+(18037, 4032, 6), -- NPC Strike
+(18037, 4408, 1), -- HP Modifiers
+(18037, 4409, 1), -- MP Modifiers
+(18037, 4410, 11), -- P. Atk. Modifiers
+(18037, 4411, 11), -- M. Atk. Modifiers
+(18037, 4412, 11), -- P. Def. Modifiers
+(18037, 4413, 11), -- M. Def. Modifiers
+(18037, 4414, 2), -- Armor Type
+(18037, 4415, 3), -- Weapon Type
+(18037, 4416, 6), -- Races
 (18037, 4438, 2), -- Greater Resist Sleep
 (18037, 4439, 2), -- Greater Resist Hold
 -- Witch's Offering, Saint
-(18038, 4071, 5), -- Resist Bow/Crossbow Weapons
-(18038, 4073, 6), -- Stun
-(18038, 4273, 3), -- Resist Daggers/Rapier Weapon
-(18038, 4408, 1), -- HP Increase (1x)
-(18038, 4409, 1), -- MP Increase (1x)
-(18038, 4410, 11), -- Average P. Atk.
-(18038, 4411, 11), -- Average M. Atk.
-(18038, 4412, 11), -- Average P. Def.
-(18038, 4413, 11), -- Average M. Def.
-(18038, 4414, 2), -- Standard Type
-(18038, 4415, 3), -- One-handed Sword
-(18038, 4416, 6), -- Humanoids
+(18038, 4071, 5), -- Resist Archery
+(18038, 4073, 6), -- Shock
+(18038, 4273, 3), -- Resist Dagger
+(18038, 4408, 1), -- HP Modifiers
+(18038, 4409, 1), -- MP Modifiers
+(18038, 4410, 11), -- P. Atk. Modifiers
+(18038, 4411, 11), -- M. Atk. Modifiers
+(18038, 4412, 11), -- P. Def. Modifiers
+(18038, 4413, 11), -- M. Def. Modifiers
+(18038, 4414, 2), -- Armor Type
+(18038, 4415, 3), -- Weapon Type
+(18038, 4416, 6), -- Races
 (18038, 4438, 2), -- Greater Resist Sleep
 (18038, 4439, 2), -- Greater Resist Hold
 -- Dark Omen Offering Elder
-(18039, 4078, 6), -- Flame Strike
-(18039, 4273, 3), -- Resist Daggers/Rapier Weapon
-(18039, 4274, 1), -- Blunt Weapon Weak Point
-(18039, 4408, 1), -- HP Increase (1x)
-(18039, 4409, 1), -- MP Increase (1x)
-(18039, 4410, 11), -- Average P. Atk.
-(18039, 4411, 11), -- Average M. Atk.
-(18039, 4412, 11), -- Average P. Def.
-(18039, 4413, 11), -- Average M. Def.
-(18039, 4414, 2), -- Standard Type
-(18039, 4415, 3), -- One-handed Sword
-(18039, 4416, 6), -- Humanoids
+(18039, 4078, 6), -- NPC Flamestrike
+(18039, 4273, 3), -- Resist Dagger
+(18039, 4274, 1), -- Blunt Attack Weak Point
+(18039, 4408, 1), -- HP Modifiers
+(18039, 4409, 1), -- MP Modifiers
+(18039, 4410, 11), -- P. Atk. Modifiers
+(18039, 4411, 11), -- M. Atk. Modifiers
+(18039, 4412, 11), -- P. Def. Modifiers
+(18039, 4413, 11), -- M. Def. Modifiers
+(18039, 4414, 2), -- Armor Type
+(18039, 4415, 3), -- Weapon Type
+(18039, 4416, 6), -- Races
 (18039, 4438, 2), -- Greater Resist Sleep
 (18039, 4439, 2), -- Greater Resist Hold
 (18039, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Dark Omen Offering
-(18040, 4408, 1), -- HP Increase (1x)
-(18040, 4409, 1), -- MP Increase (1x)
-(18040, 4410, 11), -- Average P. Atk.
-(18040, 4411, 11), -- Average M. Atk.
-(18040, 4412, 11), -- Average P. Def.
-(18040, 4413, 11), -- Average M. Def.
-(18040, 4414, 3), -- Light Armor Type
-(18040, 4415, 7), -- Daggers
-(18040, 4416, 6), -- Humanoids
+(18040, 4408, 1), -- HP Modifiers
+(18040, 4409, 1), -- MP Modifiers
+(18040, 4410, 11), -- P. Atk. Modifiers
+(18040, 4411, 11), -- M. Atk. Modifiers
+(18040, 4412, 11), -- P. Def. Modifiers
+(18040, 4413, 11), -- M. Def. Modifiers
+(18040, 4414, 3), -- Armor Type
+(18040, 4415, 7), -- Weapon Type
+(18040, 4416, 6), -- Races
 (18040, 4438, 2), -- Greater Resist Sleep
 (18040, 4439, 2), -- Greater Resist Hold
 (18040, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 (18040, 4445, 2), -- Greater Resist Spear Weapons
 -- Dark Omen Offering Archer
-(18041, 4408, 1), -- HP Increase (1x)
-(18041, 4409, 1), -- MP Increase (1x)
-(18041, 4410, 11), -- Average P. Atk.
-(18041, 4411, 11), -- Average M. Atk.
-(18041, 4412, 11), -- Average P. Def.
-(18041, 4413, 11), -- Average M. Def.
-(18041, 4414, 3), -- Light Armor Type
-(18041, 4415, 9), -- Bows
-(18041, 4416, 6), -- Humanoids
+(18041, 4408, 1), -- HP Modifiers
+(18041, 4409, 1), -- MP Modifiers
+(18041, 4410, 11), -- P. Atk. Modifiers
+(18041, 4411, 11), -- M. Atk. Modifiers
+(18041, 4412, 11), -- P. Def. Modifiers
+(18041, 4413, 11), -- M. Def. Modifiers
+(18041, 4414, 3), -- Armor Type
+(18041, 4415, 9), -- Weapon Type
+(18041, 4416, 6), -- Races
 (18041, 4438, 2), -- Greater Resist Sleep
 (18041, 4439, 2), -- Greater Resist Hold
 -- Dark Omen Offering Warrior
-(18042, 4071, 5), -- Resist Bow/Crossbow Weapons
-(18042, 4087, 6), -- Blaze
-(18042, 4273, 3), -- Resist Daggers/Rapier Weapon
-(18042, 4274, 1), -- Blunt Weapon Weak Point
-(18042, 4408, 1), -- HP Increase (1x)
-(18042, 4409, 1), -- MP Increase (1x)
-(18042, 4410, 11), -- Average P. Atk.
-(18042, 4411, 11), -- Average M. Atk.
-(18042, 4412, 11), -- Average P. Def.
-(18042, 4413, 11), -- Average M. Def.
-(18042, 4414, 2), -- Standard Type
-(18042, 4415, 3), -- One-handed Sword
-(18042, 4416, 6), -- Humanoids
+(18042, 4071, 5), -- Resist Archery
+(18042, 4087, 6), -- NPC Blaze
+(18042, 4273, 3), -- Resist Dagger
+(18042, 4274, 1), -- Blunt Attack Weak Point
+(18042, 4408, 1), -- HP Modifiers
+(18042, 4409, 1), -- MP Modifiers
+(18042, 4410, 11), -- P. Atk. Modifiers
+(18042, 4411, 11), -- M. Atk. Modifiers
+(18042, 4412, 11), -- P. Def. Modifiers
+(18042, 4413, 11), -- M. Def. Modifiers
+(18042, 4414, 2), -- Armor Type
+(18042, 4415, 3), -- Weapon Type
+(18042, 4416, 6), -- Races
 (18042, 4438, 2), -- Greater Resist Sleep
 (18042, 4439, 2), -- Greater Resist Hold
 -- Dark Omen Offering Follower
-(18043, 4151, 6), -- Wind Strike
-(18043, 4160, 6), -- Aura Burn
-(18043, 4225, 5), -- Resist Stun Attacks
-(18043, 4408, 1), -- HP Increase (1x)
-(18043, 4409, 1), -- MP Increase (1x)
-(18043, 4410, 11), -- Average P. Atk.
-(18043, 4411, 11), -- Average M. Atk.
-(18043, 4412, 11), -- Average P. Def.
-(18043, 4413, 15), -- Strong M. Def.
-(18043, 4414, 3), -- Light Armor Type
-(18043, 4415, 7), -- Daggers
-(18043, 4416, 6), -- Humanoids
+(18043, 4151, 6), -- NPC Windstrike - Magic
+(18043, 4160, 6), -- NPC Aura Burn - Magic
+(18043, 4225, 5), -- Resist Shock
+(18043, 4408, 1), -- HP Modifiers
+(18043, 4409, 1), -- MP Modifiers
+(18043, 4410, 11), -- P. Atk. Modifiers
+(18043, 4411, 11), -- M. Atk. Modifiers
+(18043, 4412, 11), -- P. Def. Modifiers
+(18043, 4413, 15), -- M. Def. Modifiers
+(18043, 4414, 3), -- Armor Type
+(18043, 4415, 7), -- Weapon Type
+(18043, 4416, 6), -- Races
 (18043, 4438, 2), -- Greater Resist Sleep
 (18043, 4439, 2), -- Greater Resist Hold
 (18043, 4445, 2), -- Greater Resist Spear Weapons
 -- Dark Omen Offering Berserker
-(18044, 4071, 5), -- Resist Bow/Crossbow Weapons
-(18044, 4244, 6), -- Wild Sweep
-(18044, 4273, 3), -- Resist Daggers/Rapier Weapon
-(18044, 4274, 1), -- Blunt Weapon Weak Point
-(18044, 4408, 1), -- HP Increase (1x)
-(18044, 4409, 1), -- MP Increase (1x)
-(18044, 4410, 11), -- Average P. Atk.
-(18044, 4411, 11), -- Average M. Atk.
-(18044, 4412, 11), -- Average P. Def.
-(18044, 4413, 15), -- Strong M. Def.
-(18044, 4414, 2), -- Standard Type
-(18044, 4415, 3), -- One-handed Sword
-(18044, 4416, 6), -- Humanoids
+(18044, 4071, 5), -- Resist Archery
+(18044, 4244, 6), -- NPC Wild Sweep
+(18044, 4273, 3), -- Resist Dagger
+(18044, 4274, 1), -- Blunt Attack Weak Point
+(18044, 4408, 1), -- HP Modifiers
+(18044, 4409, 1), -- MP Modifiers
+(18044, 4410, 11), -- P. Atk. Modifiers
+(18044, 4411, 11), -- M. Atk. Modifiers
+(18044, 4412, 11), -- P. Def. Modifiers
+(18044, 4413, 15), -- M. Def. Modifiers
+(18044, 4414, 2), -- Armor Type
+(18044, 4415, 3), -- Weapon Type
+(18044, 4416, 6), -- Races
 (18044, 4438, 2), -- Greater Resist Sleep
 (18044, 4439, 2), -- Greater Resist Hold
 -- Dark Omen Offering Zealot
-(18045, 4032, 6), -- Power Strike
-(18045, 4225, 5), -- Resist Stun Attacks
-(18045, 4408, 1), -- HP Increase (1x)
-(18045, 4409, 1), -- MP Increase (1x)
-(18045, 4410, 11), -- Average P. Atk.
-(18045, 4411, 11), -- Average M. Atk.
-(18045, 4412, 11), -- Average P. Def.
-(18045, 4413, 11), -- Average M. Def.
-(18045, 4414, 3), -- Light Armor Type
-(18045, 4415, 7), -- Daggers
-(18045, 4416, 6), -- Humanoids
+(18045, 4032, 6), -- NPC Strike
+(18045, 4225, 5), -- Resist Shock
+(18045, 4408, 1), -- HP Modifiers
+(18045, 4409, 1), -- MP Modifiers
+(18045, 4410, 11), -- P. Atk. Modifiers
+(18045, 4411, 11), -- M. Atk. Modifiers
+(18045, 4412, 11), -- P. Def. Modifiers
+(18045, 4413, 11), -- M. Def. Modifiers
+(18045, 4414, 3), -- Armor Type
+(18045, 4415, 7), -- Weapon Type
+(18045, 4416, 6), -- Races
 (18045, 4438, 2), -- Greater Resist Sleep
 (18045, 4439, 2), -- Greater Resist Hold
 (18045, 4445, 2), -- Greater Resist Spear Weapons
 -- Dark Omen Offering Marksman
-(18046, 4408, 1), -- HP Increase (1x)
-(18046, 4409, 1), -- MP Increase (1x)
-(18046, 4410, 11), -- Average P. Atk.
-(18046, 4411, 11), -- Average M. Atk.
-(18046, 4412, 11), -- Average P. Def.
-(18046, 4413, 11), -- Average M. Def.
-(18046, 4414, 3), -- Light Armor Type
-(18046, 4415, 9), -- Bows
-(18046, 4416, 6), -- Humanoids
+(18046, 4408, 1), -- HP Modifiers
+(18046, 4409, 1), -- MP Modifiers
+(18046, 4410, 11), -- P. Atk. Modifiers
+(18046, 4411, 11), -- M. Atk. Modifiers
+(18046, 4412, 11), -- P. Def. Modifiers
+(18046, 4413, 11), -- M. Def. Modifiers
+(18046, 4414, 3), -- Armor Type
+(18046, 4415, 9), -- Weapon Type
+(18046, 4416, 6), -- Races
 (18046, 4438, 2), -- Greater Resist Sleep
 (18046, 4439, 2), -- Greater Resist Hold
 -- Dark Omen Offering Disciple
-(18047, 4032, 7), -- Power Strike
-(18047, 4408, 1), -- HP Increase (1x)
-(18047, 4409, 1), -- MP Increase (1x)
-(18047, 4410, 11), -- Average P. Atk.
-(18047, 4411, 11), -- Average M. Atk.
-(18047, 4412, 11), -- Average P. Def.
-(18047, 4413, 11), -- Average M. Def.
-(18047, 4414, 2), -- Standard Type
-(18047, 4415, 3), -- One-handed Sword
-(18047, 4416, 6), -- Humanoids
+(18047, 4032, 7), -- NPC Strike
+(18047, 4408, 1), -- HP Modifiers
+(18047, 4409, 1), -- MP Modifiers
+(18047, 4410, 11), -- P. Atk. Modifiers
+(18047, 4411, 11), -- M. Atk. Modifiers
+(18047, 4412, 11), -- P. Def. Modifiers
+(18047, 4413, 11), -- M. Def. Modifiers
+(18047, 4414, 2), -- Armor Type
+(18047, 4415, 3), -- Weapon Type
+(18047, 4416, 6), -- Races
 (18047, 4438, 2), -- Greater Resist Sleep
 (18047, 4439, 2), -- Greater Resist Hold
 -- Dark Omen Offering Saint
-(18048, 4071, 5), -- Resist Bow/Crossbow Weapons
-(18048, 4073, 7), -- Stun
-(18048, 4273, 3), -- Resist Daggers/Rapier Weapon
-(18048, 4408, 1), -- HP Increase (1x)
-(18048, 4409, 1), -- MP Increase (1x)
-(18048, 4410, 11), -- Average P. Atk.
-(18048, 4411, 11), -- Average M. Atk.
-(18048, 4412, 11), -- Average P. Def.
-(18048, 4413, 11), -- Average M. Def.
-(18048, 4414, 2), -- Standard Type
-(18048, 4415, 3), -- One-handed Sword
-(18048, 4416, 6), -- Humanoids
+(18048, 4071, 5), -- Resist Archery
+(18048, 4073, 7), -- Shock
+(18048, 4273, 3), -- Resist Dagger
+(18048, 4408, 1), -- HP Modifiers
+(18048, 4409, 1), -- MP Modifiers
+(18048, 4410, 11), -- P. Atk. Modifiers
+(18048, 4411, 11), -- M. Atk. Modifiers
+(18048, 4412, 11), -- P. Def. Modifiers
+(18048, 4413, 11), -- M. Def. Modifiers
+(18048, 4414, 2), -- Armor Type
+(18048, 4415, 3), -- Weapon Type
+(18048, 4416, 6), -- Races
 (18048, 4438, 2), -- Greater Resist Sleep
 (18048, 4439, 2), -- Greater Resist Hold
 -- Offering of Forbidden Path, Elder
-(18049, 4078, 7), -- Flame Strike
-(18049, 4273, 3), -- Resist Daggers/Rapier Weapon
-(18049, 4274, 1), -- Blunt Weapon Weak Point
-(18049, 4408, 1), -- HP Increase (1x)
-(18049, 4409, 1), -- MP Increase (1x)
-(18049, 4410, 11), -- Average P. Atk.
-(18049, 4411, 11), -- Average M. Atk.
-(18049, 4412, 11), -- Average P. Def.
-(18049, 4413, 11), -- Average M. Def.
-(18049, 4414, 2), -- Standard Type
-(18049, 4415, 3), -- One-handed Sword
-(18049, 4416, 6), -- Humanoids
+(18049, 4078, 7), -- NPC Flamestrike
+(18049, 4273, 3), -- Resist Dagger
+(18049, 4274, 1), -- Blunt Attack Weak Point
+(18049, 4408, 1), -- HP Modifiers
+(18049, 4409, 1), -- MP Modifiers
+(18049, 4410, 11), -- P. Atk. Modifiers
+(18049, 4411, 11), -- M. Atk. Modifiers
+(18049, 4412, 11), -- P. Def. Modifiers
+(18049, 4413, 11), -- M. Def. Modifiers
+(18049, 4414, 2), -- Armor Type
+(18049, 4415, 3), -- Weapon Type
+(18049, 4416, 6), -- Races
 (18049, 4438, 2), -- Greater Resist Sleep
 (18049, 4439, 2), -- Greater Resist Hold
 (18049, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Offering of Forbidden Path
-(18050, 4408, 1), -- HP Increase (1x)
-(18050, 4409, 1), -- MP Increase (1x)
-(18050, 4410, 11), -- Average P. Atk.
-(18050, 4411, 11), -- Average M. Atk.
-(18050, 4412, 11), -- Average P. Def.
-(18050, 4413, 11), -- Average M. Def.
-(18050, 4414, 3), -- Light Armor Type
-(18050, 4415, 7), -- Daggers
-(18050, 4416, 6), -- Humanoids
+(18050, 4408, 1), -- HP Modifiers
+(18050, 4409, 1), -- MP Modifiers
+(18050, 4410, 11), -- P. Atk. Modifiers
+(18050, 4411, 11), -- M. Atk. Modifiers
+(18050, 4412, 11), -- P. Def. Modifiers
+(18050, 4413, 11), -- M. Def. Modifiers
+(18050, 4414, 3), -- Armor Type
+(18050, 4415, 7), -- Weapon Type
+(18050, 4416, 6), -- Races
 (18050, 4438, 2), -- Greater Resist Sleep
 (18050, 4439, 2), -- Greater Resist Hold
 (18050, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 (18050, 4445, 2), -- Greater Resist Spear Weapons
 -- Offering of Forbidden Path, Archer
-(18051, 4408, 1), -- HP Increase (1x)
-(18051, 4409, 1), -- MP Increase (1x)
-(18051, 4410, 11), -- Average P. Atk.
-(18051, 4411, 11), -- Average M. Atk.
-(18051, 4412, 11), -- Average P. Def.
-(18051, 4413, 11), -- Average M. Def.
-(18051, 4414, 3), -- Light Armor Type
-(18051, 4415, 9), -- Bows
-(18051, 4416, 6), -- Humanoids
+(18051, 4408, 1), -- HP Modifiers
+(18051, 4409, 1), -- MP Modifiers
+(18051, 4410, 11), -- P. Atk. Modifiers
+(18051, 4411, 11), -- M. Atk. Modifiers
+(18051, 4412, 11), -- P. Def. Modifiers
+(18051, 4413, 11), -- M. Def. Modifiers
+(18051, 4414, 3), -- Armor Type
+(18051, 4415, 9), -- Weapon Type
+(18051, 4416, 6), -- Races
 (18051, 4438, 2), -- Greater Resist Sleep
 (18051, 4439, 2), -- Greater Resist Hold
 -- Offering of Forbidden Path, Warrior
-(18052, 4071, 5), -- Resist Bow/Crossbow Weapons
-(18052, 4087, 7), -- Blaze
-(18052, 4273, 3), -- Resist Daggers/Rapier Weapon
-(18052, 4274, 1), -- Blunt Weapon Weak Point
-(18052, 4408, 1), -- HP Increase (1x)
-(18052, 4409, 1), -- MP Increase (1x)
-(18052, 4410, 11), -- Average P. Atk.
-(18052, 4411, 11), -- Average M. Atk.
-(18052, 4412, 11), -- Average P. Def.
-(18052, 4413, 11), -- Average M. Def.
-(18052, 4414, 2), -- Standard Type
-(18052, 4415, 3), -- One-handed Sword
-(18052, 4416, 6), -- Humanoids
+(18052, 4071, 5), -- Resist Archery
+(18052, 4087, 7), -- NPC Blaze
+(18052, 4273, 3), -- Resist Dagger
+(18052, 4274, 1), -- Blunt Attack Weak Point
+(18052, 4408, 1), -- HP Modifiers
+(18052, 4409, 1), -- MP Modifiers
+(18052, 4410, 11), -- P. Atk. Modifiers
+(18052, 4411, 11), -- M. Atk. Modifiers
+(18052, 4412, 11), -- P. Def. Modifiers
+(18052, 4413, 11), -- M. Def. Modifiers
+(18052, 4414, 2), -- Armor Type
+(18052, 4415, 3), -- Weapon Type
+(18052, 4416, 6), -- Races
 (18052, 4438, 2), -- Greater Resist Sleep
 (18052, 4439, 2), -- Greater Resist Hold
 -- Offering of Forbidden Path, Follower
-(18053, 4151, 7), -- Wind Strike
-(18053, 4160, 7), -- Aura Burn
-(18053, 4225, 5), -- Resist Stun Attacks
-(18053, 4408, 1), -- HP Increase (1x)
-(18053, 4409, 1), -- MP Increase (1x)
-(18053, 4410, 11), -- Average P. Atk.
-(18053, 4411, 11), -- Average M. Atk.
-(18053, 4412, 11), -- Average P. Def.
-(18053, 4413, 15), -- Strong M. Def.
-(18053, 4414, 3), -- Light Armor Type
-(18053, 4415, 7), -- Daggers
-(18053, 4416, 6), -- Humanoids
+(18053, 4151, 7), -- NPC Windstrike - Magic
+(18053, 4160, 7), -- NPC Aura Burn - Magic
+(18053, 4225, 5), -- Resist Shock
+(18053, 4408, 1), -- HP Modifiers
+(18053, 4409, 1), -- MP Modifiers
+(18053, 4410, 11), -- P. Atk. Modifiers
+(18053, 4411, 11), -- M. Atk. Modifiers
+(18053, 4412, 11), -- P. Def. Modifiers
+(18053, 4413, 15), -- M. Def. Modifiers
+(18053, 4414, 3), -- Armor Type
+(18053, 4415, 7), -- Weapon Type
+(18053, 4416, 6), -- Races
 (18053, 4438, 2), -- Greater Resist Sleep
 (18053, 4439, 2), -- Greater Resist Hold
 (18053, 4445, 2), -- Greater Resist Spear Weapons
 -- Offering of Forbidden Path, Berserker
-(18054, 4071, 5), -- Resist Bow/Crossbow Weapons
-(18054, 4244, 7), -- Wild Sweep
-(18054, 4273, 3), -- Resist Daggers/Rapier Weapon
-(18054, 4274, 1), -- Blunt Weapon Weak Point
-(18054, 4408, 1), -- HP Increase (1x)
-(18054, 4409, 1), -- MP Increase (1x)
-(18054, 4410, 11), -- Average P. Atk.
-(18054, 4411, 11), -- Average M. Atk.
-(18054, 4412, 11), -- Average P. Def.
-(18054, 4413, 15), -- Strong M. Def.
-(18054, 4414, 2), -- Standard Type
-(18054, 4415, 3), -- One-handed Sword
-(18054, 4416, 6), -- Humanoids
+(18054, 4071, 5), -- Resist Archery
+(18054, 4244, 7), -- NPC Wild Sweep
+(18054, 4273, 3), -- Resist Dagger
+(18054, 4274, 1), -- Blunt Attack Weak Point
+(18054, 4408, 1), -- HP Modifiers
+(18054, 4409, 1), -- MP Modifiers
+(18054, 4410, 11), -- P. Atk. Modifiers
+(18054, 4411, 11), -- M. Atk. Modifiers
+(18054, 4412, 11), -- P. Def. Modifiers
+(18054, 4413, 15), -- M. Def. Modifiers
+(18054, 4414, 2), -- Armor Type
+(18054, 4415, 3), -- Weapon Type
+(18054, 4416, 6), -- Races
 (18054, 4438, 2), -- Greater Resist Sleep
 (18054, 4439, 2), -- Greater Resist Hold
 -- Offering of Forbidden Path, Zealot
-(18055, 4032, 7), -- Power Strike
-(18055, 4225, 5), -- Resist Stun Attacks
-(18055, 4408, 1), -- HP Increase (1x)
-(18055, 4409, 1), -- MP Increase (1x)
-(18055, 4410, 11), -- Average P. Atk.
-(18055, 4411, 11), -- Average M. Atk.
-(18055, 4412, 11), -- Average P. Def.
-(18055, 4413, 11), -- Average M. Def.
-(18055, 4414, 3), -- Light Armor Type
-(18055, 4415, 7), -- Daggers
-(18055, 4416, 6), -- Humanoids
+(18055, 4032, 7), -- NPC Strike
+(18055, 4225, 5), -- Resist Shock
+(18055, 4408, 1), -- HP Modifiers
+(18055, 4409, 1), -- MP Modifiers
+(18055, 4410, 11), -- P. Atk. Modifiers
+(18055, 4411, 11), -- M. Atk. Modifiers
+(18055, 4412, 11), -- P. Def. Modifiers
+(18055, 4413, 11), -- M. Def. Modifiers
+(18055, 4414, 3), -- Armor Type
+(18055, 4415, 7), -- Weapon Type
+(18055, 4416, 6), -- Races
 (18055, 4438, 2), -- Greater Resist Sleep
 (18055, 4439, 2), -- Greater Resist Hold
 (18055, 4445, 2), -- Greater Resist Spear Weapons
 -- Offering of Forbidden Path, Marksman
-(18056, 4408, 1), -- HP Increase (1x)
-(18056, 4409, 1), -- MP Increase (1x)
-(18056, 4410, 11), -- Average P. Atk.
-(18056, 4411, 11), -- Average M. Atk.
-(18056, 4412, 11), -- Average P. Def.
-(18056, 4413, 11), -- Average M. Def.
-(18056, 4414, 3), -- Light Armor Type
-(18056, 4415, 9), -- Bows
-(18056, 4416, 6), -- Humanoids
+(18056, 4408, 1), -- HP Modifiers
+(18056, 4409, 1), -- MP Modifiers
+(18056, 4410, 11), -- P. Atk. Modifiers
+(18056, 4411, 11), -- M. Atk. Modifiers
+(18056, 4412, 11), -- P. Def. Modifiers
+(18056, 4413, 11), -- M. Def. Modifiers
+(18056, 4414, 3), -- Armor Type
+(18056, 4415, 9), -- Weapon Type
+(18056, 4416, 6), -- Races
 (18056, 4438, 2), -- Greater Resist Sleep
 (18056, 4439, 2), -- Greater Resist Hold
 -- Offering of Forbidden Path, Disciple
-(18057, 4032, 7), -- Power Strike
-(18057, 4408, 1), -- HP Increase (1x)
-(18057, 4409, 1), -- MP Increase (1x)
-(18057, 4410, 11), -- Average P. Atk.
-(18057, 4411, 11), -- Average M. Atk.
-(18057, 4412, 11), -- Average P. Def.
-(18057, 4413, 11), -- Average M. Def.
-(18057, 4414, 2), -- Standard Type
-(18057, 4415, 3), -- One-handed Sword
-(18057, 4416, 6), -- Humanoids
+(18057, 4032, 7), -- NPC Strike
+(18057, 4408, 1), -- HP Modifiers
+(18057, 4409, 1), -- MP Modifiers
+(18057, 4410, 11), -- P. Atk. Modifiers
+(18057, 4411, 11), -- M. Atk. Modifiers
+(18057, 4412, 11), -- P. Def. Modifiers
+(18057, 4413, 11), -- M. Def. Modifiers
+(18057, 4414, 2), -- Armor Type
+(18057, 4415, 3), -- Weapon Type
+(18057, 4416, 6), -- Races
 (18057, 4438, 2), -- Greater Resist Sleep
 (18057, 4439, 2), -- Greater Resist Hold
 -- Offering of Forbidden Path, Saint
-(18058, 4071, 5), -- Resist Bow/Crossbow Weapons
-(18058, 4073, 7), -- Stun
-(18058, 4273, 3), -- Resist Daggers/Rapier Weapon
-(18058, 4408, 1), -- HP Increase (1x)
-(18058, 4409, 1), -- MP Increase (1x)
-(18058, 4410, 11), -- Average P. Atk.
-(18058, 4411, 11), -- Average M. Atk.
-(18058, 4412, 11), -- Average P. Def.
-(18058, 4413, 11), -- Average M. Def.
-(18058, 4414, 2), -- Standard Type
-(18058, 4415, 3), -- One-handed Sword
-(18058, 4416, 6), -- Humanoids
+(18058, 4071, 5), -- Resist Archery
+(18058, 4073, 7), -- Shock
+(18058, 4273, 3), -- Resist Dagger
+(18058, 4408, 1), -- HP Modifiers
+(18058, 4409, 1), -- MP Modifiers
+(18058, 4410, 11), -- P. Atk. Modifiers
+(18058, 4411, 11), -- M. Atk. Modifiers
+(18058, 4412, 11), -- P. Def. Modifiers
+(18058, 4413, 11), -- M. Def. Modifiers
+(18058, 4414, 2), -- Armor Type
+(18058, 4415, 3), -- Weapon Type
+(18058, 4416, 6), -- Races
 (18058, 4438, 2), -- Greater Resist Sleep
 (18058, 4439, 2), -- Greater Resist Hold
 -- Offering of the Branded, Elder
-(18059, 4078, 3), -- Flame Strike
-(18059, 4273, 3), -- Resist Daggers/Rapier Weapon
-(18059, 4274, 1), -- Blunt Weapon Weak Point
-(18059, 4408, 1), -- HP Increase (1x)
-(18059, 4409, 1), -- MP Increase (1x)
-(18059, 4410, 11), -- Average P. Atk.
-(18059, 4411, 11), -- Average M. Atk.
-(18059, 4412, 11), -- Average P. Def.
-(18059, 4413, 11), -- Average M. Def.
-(18059, 4414, 2), -- Standard Type
-(18059, 4415, 3), -- One-handed Sword
-(18059, 4416, 6), -- Humanoids
+(18059, 4078, 3), -- NPC Flamestrike
+(18059, 4273, 3), -- Resist Dagger
+(18059, 4274, 1), -- Blunt Attack Weak Point
+(18059, 4408, 1), -- HP Modifiers
+(18059, 4409, 1), -- MP Modifiers
+(18059, 4410, 11), -- P. Atk. Modifiers
+(18059, 4411, 11), -- M. Atk. Modifiers
+(18059, 4412, 11), -- P. Def. Modifiers
+(18059, 4413, 11), -- M. Def. Modifiers
+(18059, 4414, 2), -- Armor Type
+(18059, 4415, 3), -- Weapon Type
+(18059, 4416, 6), -- Races
 (18059, 4438, 2), -- Greater Resist Sleep
 (18059, 4439, 2), -- Greater Resist Hold
 (18059, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Offering of the Branded
-(18060, 4408, 1), -- HP Increase (1x)
-(18060, 4409, 1), -- MP Increase (1x)
-(18060, 4410, 11), -- Average P. Atk.
-(18060, 4411, 11), -- Average M. Atk.
-(18060, 4412, 11), -- Average P. Def.
-(18060, 4413, 11), -- Average M. Def.
-(18060, 4414, 3), -- Light Armor Type
-(18060, 4415, 7), -- Daggers
-(18060, 4416, 6), -- Humanoids
+(18060, 4408, 1), -- HP Modifiers
+(18060, 4409, 1), -- MP Modifiers
+(18060, 4410, 11), -- P. Atk. Modifiers
+(18060, 4411, 11), -- M. Atk. Modifiers
+(18060, 4412, 11), -- P. Def. Modifiers
+(18060, 4413, 11), -- M. Def. Modifiers
+(18060, 4414, 3), -- Armor Type
+(18060, 4415, 7), -- Weapon Type
+(18060, 4416, 6), -- Races
 (18060, 4438, 2), -- Greater Resist Sleep
 (18060, 4439, 2), -- Greater Resist Hold
 (18060, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 (18060, 4445, 2), -- Greater Resist Spear Weapons
 -- Offering of the Branded, Archer
-(18061, 4408, 1), -- HP Increase (1x)
-(18061, 4409, 1), -- MP Increase (1x)
-(18061, 4410, 11), -- Average P. Atk.
-(18061, 4411, 11), -- Average M. Atk.
-(18061, 4412, 11), -- Average P. Def.
-(18061, 4413, 11), -- Average M. Def.
-(18061, 4414, 3), -- Light Armor Type
-(18061, 4415, 9), -- Bows
-(18061, 4416, 6), -- Humanoids
+(18061, 4408, 1), -- HP Modifiers
+(18061, 4409, 1), -- MP Modifiers
+(18061, 4410, 11), -- P. Atk. Modifiers
+(18061, 4411, 11), -- M. Atk. Modifiers
+(18061, 4412, 11), -- P. Def. Modifiers
+(18061, 4413, 11), -- M. Def. Modifiers
+(18061, 4414, 3), -- Armor Type
+(18061, 4415, 9), -- Weapon Type
+(18061, 4416, 6), -- Races
 (18061, 4438, 2), -- Greater Resist Sleep
 (18061, 4439, 2), -- Greater Resist Hold
 -- Offering of the Branded, Warrior
-(18062, 4071, 5), -- Resist Bow/Crossbow Weapons
-(18062, 4087, 3), -- Blaze
-(18062, 4273, 3), -- Resist Daggers/Rapier Weapon
-(18062, 4274, 1), -- Blunt Weapon Weak Point
-(18062, 4408, 1), -- HP Increase (1x)
-(18062, 4409, 1), -- MP Increase (1x)
-(18062, 4410, 11), -- Average P. Atk.
-(18062, 4411, 11), -- Average M. Atk.
-(18062, 4412, 11), -- Average P. Def.
-(18062, 4413, 11), -- Average M. Def.
-(18062, 4414, 2), -- Standard Type
-(18062, 4415, 3), -- One-handed Sword
-(18062, 4416, 6), -- Humanoids
+(18062, 4071, 5), -- Resist Archery
+(18062, 4087, 3), -- NPC Blaze
+(18062, 4273, 3), -- Resist Dagger
+(18062, 4274, 1), -- Blunt Attack Weak Point
+(18062, 4408, 1), -- HP Modifiers
+(18062, 4409, 1), -- MP Modifiers
+(18062, 4410, 11), -- P. Atk. Modifiers
+(18062, 4411, 11), -- M. Atk. Modifiers
+(18062, 4412, 11), -- P. Def. Modifiers
+(18062, 4413, 11), -- M. Def. Modifiers
+(18062, 4414, 2), -- Armor Type
+(18062, 4415, 3), -- Weapon Type
+(18062, 4416, 6), -- Races
 (18062, 4438, 2), -- Greater Resist Sleep
 (18062, 4439, 2), -- Greater Resist Hold
 -- Offering of the Branded, Follower
-(18063, 4151, 2), -- Wind Strike
-(18063, 4160, 2), -- Aura Burn
-(18063, 4225, 5), -- Resist Stun Attacks
-(18063, 4408, 1), -- HP Increase (1x)
-(18063, 4409, 1), -- MP Increase (1x)
-(18063, 4410, 11), -- Average P. Atk.
-(18063, 4411, 11), -- Average M. Atk.
-(18063, 4412, 11), -- Average P. Def.
-(18063, 4413, 15), -- Strong M. Def.
-(18063, 4414, 3), -- Light Armor Type
-(18063, 4415, 7), -- Daggers
-(18063, 4416, 6), -- Humanoids
+(18063, 4151, 2), -- NPC Windstrike - Magic
+(18063, 4160, 2), -- NPC Aura Burn - Magic
+(18063, 4225, 5), -- Resist Shock
+(18063, 4408, 1), -- HP Modifiers
+(18063, 4409, 1), -- MP Modifiers
+(18063, 4410, 11), -- P. Atk. Modifiers
+(18063, 4411, 11), -- M. Atk. Modifiers
+(18063, 4412, 11), -- P. Def. Modifiers
+(18063, 4413, 15), -- M. Def. Modifiers
+(18063, 4414, 3), -- Armor Type
+(18063, 4415, 7), -- Weapon Type
+(18063, 4416, 6), -- Races
 (18063, 4438, 2), -- Greater Resist Sleep
 (18063, 4439, 2), -- Greater Resist Hold
 (18063, 4445, 2), -- Greater Resist Spear Weapons
 -- Offering of the Branded, Berserker
-(18064, 4071, 5), -- Resist Bow/Crossbow Weapons
-(18064, 4244, 3), -- Wild Sweep
-(18064, 4273, 3), -- Resist Daggers/Rapier Weapon
-(18064, 4274, 1), -- Blunt Weapon Weak Point
-(18064, 4408, 1), -- HP Increase (1x)
-(18064, 4409, 1), -- MP Increase (1x)
-(18064, 4410, 11), -- Average P. Atk.
-(18064, 4411, 11), -- Average M. Atk.
-(18064, 4412, 11), -- Average P. Def.
-(18064, 4413, 15), -- Strong M. Def.
-(18064, 4414, 2), -- Standard Type
-(18064, 4415, 3), -- One-handed Sword
-(18064, 4416, 6), -- Humanoids
+(18064, 4071, 5), -- Resist Archery
+(18064, 4244, 3), -- NPC Wild Sweep
+(18064, 4273, 3), -- Resist Dagger
+(18064, 4274, 1), -- Blunt Attack Weak Point
+(18064, 4408, 1), -- HP Modifiers
+(18064, 4409, 1), -- MP Modifiers
+(18064, 4410, 11), -- P. Atk. Modifiers
+(18064, 4411, 11), -- M. Atk. Modifiers
+(18064, 4412, 11), -- P. Def. Modifiers
+(18064, 4413, 15), -- M. Def. Modifiers
+(18064, 4414, 2), -- Armor Type
+(18064, 4415, 3), -- Weapon Type
+(18064, 4416, 6), -- Races
 (18064, 4438, 2), -- Greater Resist Sleep
 (18064, 4439, 2); -- Greater Resist Hold
 
 INSERT INTO `npcskills` VALUES
 -- Offering of the Branded, Zealot
-(18065, 4032, 3), -- Power Strike
-(18065, 4225, 5), -- Resist Stun Attacks
-(18065, 4408, 1), -- HP Increase (1x)
-(18065, 4409, 1), -- MP Increase (1x)
-(18065, 4410, 11), -- Average P. Atk.
-(18065, 4411, 11), -- Average M. Atk.
-(18065, 4412, 11), -- Average P. Def.
-(18065, 4413, 11), -- Average M. Def.
-(18065, 4414, 3), -- Light Armor Type
-(18065, 4415, 7), -- Daggers
-(18065, 4416, 6), -- Humanoids
+(18065, 4032, 3), -- NPC Strike
+(18065, 4225, 5), -- Resist Shock
+(18065, 4408, 1), -- HP Modifiers
+(18065, 4409, 1), -- MP Modifiers
+(18065, 4410, 11), -- P. Atk. Modifiers
+(18065, 4411, 11), -- M. Atk. Modifiers
+(18065, 4412, 11), -- P. Def. Modifiers
+(18065, 4413, 11), -- M. Def. Modifiers
+(18065, 4414, 3), -- Armor Type
+(18065, 4415, 7), -- Weapon Type
+(18065, 4416, 6), -- Races
 (18065, 4438, 2), -- Greater Resist Sleep
 (18065, 4439, 2), -- Greater Resist Hold
 (18065, 4445, 2), -- Greater Resist Spear Weapons
 -- Offering of the Branded, Marksman
-(18066, 4408, 1), -- HP Increase (1x)
-(18066, 4409, 1), -- MP Increase (1x)
-(18066, 4410, 11), -- Average P. Atk.
-(18066, 4411, 11), -- Average M. Atk.
-(18066, 4412, 11), -- Average P. Def.
-(18066, 4413, 11), -- Average M. Def.
-(18066, 4414, 3), -- Light Armor Type
-(18066, 4415, 9), -- Bows
-(18066, 4416, 6), -- Humanoids
+(18066, 4408, 1), -- HP Modifiers
+(18066, 4409, 1), -- MP Modifiers
+(18066, 4410, 11), -- P. Atk. Modifiers
+(18066, 4411, 11), -- M. Atk. Modifiers
+(18066, 4412, 11), -- P. Def. Modifiers
+(18066, 4413, 11), -- M. Def. Modifiers
+(18066, 4414, 3), -- Armor Type
+(18066, 4415, 9), -- Weapon Type
+(18066, 4416, 6), -- Races
 (18066, 4438, 2), -- Greater Resist Sleep
 (18066, 4439, 2), -- Greater Resist Hold
 -- Offering of the Branded, Disciple
-(18067, 4032, 4), -- Power Strike
-(18067, 4408, 1), -- HP Increase (1x)
-(18067, 4409, 1), -- MP Increase (1x)
-(18067, 4410, 11), -- Average P. Atk.
-(18067, 4411, 11), -- Average M. Atk.
-(18067, 4412, 11), -- Average P. Def.
-(18067, 4413, 11), -- Average M. Def.
-(18067, 4414, 2), -- Standard Type
-(18067, 4415, 3), -- One-handed Sword
-(18067, 4416, 6), -- Humanoids
+(18067, 4032, 4), -- NPC Strike
+(18067, 4408, 1), -- HP Modifiers
+(18067, 4409, 1), -- MP Modifiers
+(18067, 4410, 11), -- P. Atk. Modifiers
+(18067, 4411, 11), -- M. Atk. Modifiers
+(18067, 4412, 11), -- P. Def. Modifiers
+(18067, 4413, 11), -- M. Def. Modifiers
+(18067, 4414, 2), -- Armor Type
+(18067, 4415, 3), -- Weapon Type
+(18067, 4416, 6), -- Races
 (18067, 4438, 2), -- Greater Resist Sleep
 (18067, 4439, 2), -- Greater Resist Hold
 -- Offering of the Branded, Saint
-(18068, 4071, 5), -- Resist Bow/Crossbow Weapons
-(18068, 4073, 4), -- Stun
-(18068, 4273, 3), -- Resist Daggers/Rapier Weapon
-(18068, 4408, 1), -- HP Increase (1x)
-(18068, 4409, 1), -- MP Increase (1x)
-(18068, 4410, 11), -- Average P. Atk.
-(18068, 4411, 11), -- Average M. Atk.
-(18068, 4412, 11), -- Average P. Def.
-(18068, 4413, 11), -- Average M. Def.
-(18068, 4414, 2), -- Standard Type
-(18068, 4415, 3), -- One-handed Sword
-(18068, 4416, 6), -- Humanoids
+(18068, 4071, 5), -- Resist Archery
+(18068, 4073, 4), -- Shock
+(18068, 4273, 3), -- Resist Dagger
+(18068, 4408, 1), -- HP Modifiers
+(18068, 4409, 1), -- MP Modifiers
+(18068, 4410, 11), -- P. Atk. Modifiers
+(18068, 4411, 11), -- M. Atk. Modifiers
+(18068, 4412, 11), -- P. Def. Modifiers
+(18068, 4413, 11), -- M. Def. Modifiers
+(18068, 4414, 2), -- Armor Type
+(18068, 4415, 3), -- Weapon Type
+(18068, 4416, 6), -- Races
 (18068, 4438, 2), -- Greater Resist Sleep
 (18068, 4439, 2), -- Greater Resist Hold
 -- Apostate's Offering, Elder
-(18069, 4078, 4), -- Flame Strike
-(18069, 4273, 3), -- Resist Daggers/Rapier Weapon
-(18069, 4274, 1), -- Blunt Weapon Weak Point
-(18069, 4408, 1), -- HP Increase (1x)
-(18069, 4409, 1), -- MP Increase (1x)
-(18069, 4410, 11), -- Average P. Atk.
-(18069, 4411, 11), -- Average M. Atk.
-(18069, 4412, 11), -- Average P. Def.
-(18069, 4413, 11), -- Average M. Def.
-(18069, 4414, 2), -- Standard Type
-(18069, 4415, 3), -- One-handed Sword
-(18069, 4416, 6), -- Humanoids
+(18069, 4078, 4), -- NPC Flamestrike
+(18069, 4273, 3), -- Resist Dagger
+(18069, 4274, 1), -- Blunt Attack Weak Point
+(18069, 4408, 1), -- HP Modifiers
+(18069, 4409, 1), -- MP Modifiers
+(18069, 4410, 11), -- P. Atk. Modifiers
+(18069, 4411, 11), -- M. Atk. Modifiers
+(18069, 4412, 11), -- P. Def. Modifiers
+(18069, 4413, 11), -- M. Def. Modifiers
+(18069, 4414, 2), -- Armor Type
+(18069, 4415, 3), -- Weapon Type
+(18069, 4416, 6), -- Races
 (18069, 4438, 2), -- Greater Resist Sleep
 (18069, 4439, 2), -- Greater Resist Hold
 (18069, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Apostate's Offering
-(18070, 4408, 1), -- HP Increase (1x)
-(18070, 4409, 1), -- MP Increase (1x)
-(18070, 4410, 11), -- Average P. Atk.
-(18070, 4411, 11), -- Average M. Atk.
-(18070, 4412, 11), -- Average P. Def.
-(18070, 4413, 11), -- Average M. Def.
-(18070, 4414, 3), -- Light Armor Type
-(18070, 4415, 7), -- Daggers
-(18070, 4416, 6), -- Humanoids
+(18070, 4408, 1), -- HP Modifiers
+(18070, 4409, 1), -- MP Modifiers
+(18070, 4410, 11), -- P. Atk. Modifiers
+(18070, 4411, 11), -- M. Atk. Modifiers
+(18070, 4412, 11), -- P. Def. Modifiers
+(18070, 4413, 11), -- M. Def. Modifiers
+(18070, 4414, 3), -- Armor Type
+(18070, 4415, 7), -- Weapon Type
+(18070, 4416, 6), -- Races
 (18070, 4438, 2), -- Greater Resist Sleep
 (18070, 4439, 2), -- Greater Resist Hold
 (18070, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 (18070, 4445, 2), -- Greater Resist Spear Weapons
 -- Apostate's Offering, Archer
-(18071, 4408, 1), -- HP Increase (1x)
-(18071, 4409, 1), -- MP Increase (1x)
-(18071, 4410, 11), -- Average P. Atk.
-(18071, 4411, 11), -- Average M. Atk.
-(18071, 4412, 11), -- Average P. Def.
-(18071, 4413, 11), -- Average M. Def.
-(18071, 4414, 3), -- Light Armor Type
-(18071, 4415, 9), -- Bows
-(18071, 4416, 6), -- Humanoids
+(18071, 4408, 1), -- HP Modifiers
+(18071, 4409, 1), -- MP Modifiers
+(18071, 4410, 11), -- P. Atk. Modifiers
+(18071, 4411, 11), -- M. Atk. Modifiers
+(18071, 4412, 11), -- P. Def. Modifiers
+(18071, 4413, 11), -- M. Def. Modifiers
+(18071, 4414, 3), -- Armor Type
+(18071, 4415, 9), -- Weapon Type
+(18071, 4416, 6), -- Races
 (18071, 4438, 2), -- Greater Resist Sleep
 (18071, 4439, 2), -- Greater Resist Hold
 -- Apostate's Offering, Warrior
-(18072, 4071, 5), -- Resist Bow/Crossbow Weapons
-(18072, 4087, 4), -- Blaze
-(18072, 4273, 3), -- Resist Daggers/Rapier Weapon
-(18072, 4274, 1), -- Blunt Weapon Weak Point
-(18072, 4408, 1), -- HP Increase (1x)
-(18072, 4409, 1), -- MP Increase (1x)
-(18072, 4410, 11), -- Average P. Atk.
-(18072, 4411, 11), -- Average M. Atk.
-(18072, 4412, 11), -- Average P. Def.
-(18072, 4413, 11), -- Average M. Def.
-(18072, 4414, 2), -- Standard Type
-(18072, 4415, 3), -- One-handed Sword
-(18072, 4416, 6), -- Humanoids
+(18072, 4071, 5), -- Resist Archery
+(18072, 4087, 4), -- NPC Blaze
+(18072, 4273, 3), -- Resist Dagger
+(18072, 4274, 1), -- Blunt Attack Weak Point
+(18072, 4408, 1), -- HP Modifiers
+(18072, 4409, 1), -- MP Modifiers
+(18072, 4410, 11), -- P. Atk. Modifiers
+(18072, 4411, 11), -- M. Atk. Modifiers
+(18072, 4412, 11), -- P. Def. Modifiers
+(18072, 4413, 11), -- M. Def. Modifiers
+(18072, 4414, 2), -- Armor Type
+(18072, 4415, 3), -- Weapon Type
+(18072, 4416, 6), -- Races
 (18072, 4438, 2), -- Greater Resist Sleep
 (18072, 4439, 2), -- Greater Resist Hold
 -- Apostate's Offering, Follower
-(18073, 4151, 4), -- Wind Strike
-(18073, 4160, 4), -- Aura Burn
-(18073, 4225, 5), -- Resist Stun Attacks
-(18073, 4408, 1), -- HP Increase (1x)
-(18073, 4409, 1), -- MP Increase (1x)
-(18073, 4410, 11), -- Average P. Atk.
-(18073, 4411, 11), -- Average M. Atk.
-(18073, 4412, 11), -- Average P. Def.
-(18073, 4413, 15), -- Strong M. Def.
-(18073, 4414, 3), -- Light Armor Type
-(18073, 4415, 7), -- Daggers
-(18073, 4416, 6), -- Humanoids
+(18073, 4151, 4), -- NPC Windstrike - Magic
+(18073, 4160, 4), -- NPC Aura Burn - Magic
+(18073, 4225, 5), -- Resist Shock
+(18073, 4408, 1), -- HP Modifiers
+(18073, 4409, 1), -- MP Modifiers
+(18073, 4410, 11), -- P. Atk. Modifiers
+(18073, 4411, 11), -- M. Atk. Modifiers
+(18073, 4412, 11), -- P. Def. Modifiers
+(18073, 4413, 15), -- M. Def. Modifiers
+(18073, 4414, 3), -- Armor Type
+(18073, 4415, 7), -- Weapon Type
+(18073, 4416, 6), -- Races
 (18073, 4438, 2), -- Greater Resist Sleep
 (18073, 4439, 2), -- Greater Resist Hold
 (18073, 4445, 2), -- Greater Resist Spear Weapons
 -- Apostate's Offering, Berserker
-(18074, 4071, 5), -- Resist Bow/Crossbow Weapons
-(18074, 4244, 4), -- Wild Sweep
-(18074, 4273, 3), -- Resist Daggers/Rapier Weapon
-(18074, 4274, 1), -- Blunt Weapon Weak Point
-(18074, 4408, 1), -- HP Increase (1x)
-(18074, 4409, 1), -- MP Increase (1x)
-(18074, 4410, 11), -- Average P. Atk.
-(18074, 4411, 11), -- Average M. Atk.
-(18074, 4412, 11), -- Average P. Def.
-(18074, 4413, 15), -- Strong M. Def.
-(18074, 4414, 2), -- Standard Type
-(18074, 4415, 3), -- One-handed Sword
-(18074, 4416, 6), -- Humanoids
+(18074, 4071, 5), -- Resist Archery
+(18074, 4244, 4), -- NPC Wild Sweep
+(18074, 4273, 3), -- Resist Dagger
+(18074, 4274, 1), -- Blunt Attack Weak Point
+(18074, 4408, 1), -- HP Modifiers
+(18074, 4409, 1), -- MP Modifiers
+(18074, 4410, 11), -- P. Atk. Modifiers
+(18074, 4411, 11), -- M. Atk. Modifiers
+(18074, 4412, 11), -- P. Def. Modifiers
+(18074, 4413, 15), -- M. Def. Modifiers
+(18074, 4414, 2), -- Armor Type
+(18074, 4415, 3), -- Weapon Type
+(18074, 4416, 6), -- Races
 (18074, 4438, 2), -- Greater Resist Sleep
 (18074, 4439, 2), -- Greater Resist Hold
 -- Apostate's Offering, Zealot
-(18075, 4032, 4), -- Power Strike
-(18075, 4225, 5), -- Resist Stun Attacks
-(18075, 4408, 1), -- HP Increase (1x)
-(18075, 4409, 1), -- MP Increase (1x)
-(18075, 4410, 11), -- Average P. Atk.
-(18075, 4411, 11), -- Average M. Atk.
-(18075, 4412, 11), -- Average P. Def.
-(18075, 4413, 11), -- Average M. Def.
-(18075, 4414, 3), -- Light Armor Type
-(18075, 4415, 7), -- Daggers
-(18075, 4416, 6), -- Humanoids
+(18075, 4032, 4), -- NPC Strike
+(18075, 4225, 5), -- Resist Shock
+(18075, 4408, 1), -- HP Modifiers
+(18075, 4409, 1), -- MP Modifiers
+(18075, 4410, 11), -- P. Atk. Modifiers
+(18075, 4411, 11), -- M. Atk. Modifiers
+(18075, 4412, 11), -- P. Def. Modifiers
+(18075, 4413, 11), -- M. Def. Modifiers
+(18075, 4414, 3), -- Armor Type
+(18075, 4415, 7), -- Weapon Type
+(18075, 4416, 6), -- Races
 (18075, 4438, 2), -- Greater Resist Sleep
 (18075, 4439, 2), -- Greater Resist Hold
 (18075, 4445, 2), -- Greater Resist Spear Weapons
 -- Apostate's Offering, Marksman
-(18076, 4408, 1), -- HP Increase (1x)
-(18076, 4409, 1), -- MP Increase (1x)
-(18076, 4410, 11), -- Average P. Atk.
-(18076, 4411, 11), -- Average M. Atk.
-(18076, 4412, 11), -- Average P. Def.
-(18076, 4413, 11), -- Average M. Def.
-(18076, 4414, 3), -- Light Armor Type
-(18076, 4415, 9), -- Bows
-(18076, 4416, 6), -- Humanoids
+(18076, 4408, 1), -- HP Modifiers
+(18076, 4409, 1), -- MP Modifiers
+(18076, 4410, 11), -- P. Atk. Modifiers
+(18076, 4411, 11), -- M. Atk. Modifiers
+(18076, 4412, 11), -- P. Def. Modifiers
+(18076, 4413, 11), -- M. Def. Modifiers
+(18076, 4414, 3), -- Armor Type
+(18076, 4415, 9), -- Weapon Type
+(18076, 4416, 6), -- Races
 (18076, 4438, 2), -- Greater Resist Sleep
 (18076, 4439, 2), -- Greater Resist Hold
 -- Apostate's Offering, Disciple
-(18077, 4032, 5), -- Power Strike
-(18077, 4408, 1), -- HP Increase (1x)
-(18077, 4409, 1), -- MP Increase (1x)
-(18077, 4410, 11), -- Average P. Atk.
-(18077, 4411, 11), -- Average M. Atk.
-(18077, 4412, 11), -- Average P. Def.
-(18077, 4413, 11), -- Average M. Def.
-(18077, 4414, 2), -- Standard Type
-(18077, 4415, 3), -- One-handed Sword
-(18077, 4416, 6), -- Humanoids
+(18077, 4032, 5), -- NPC Strike
+(18077, 4408, 1), -- HP Modifiers
+(18077, 4409, 1), -- MP Modifiers
+(18077, 4410, 11), -- P. Atk. Modifiers
+(18077, 4411, 11), -- M. Atk. Modifiers
+(18077, 4412, 11), -- P. Def. Modifiers
+(18077, 4413, 11), -- M. Def. Modifiers
+(18077, 4414, 2), -- Armor Type
+(18077, 4415, 3), -- Weapon Type
+(18077, 4416, 6), -- Races
 (18077, 4438, 2), -- Greater Resist Sleep
 (18077, 4439, 2), -- Greater Resist Hold
 -- Apostate's Offering, Saint
-(18078, 4071, 5), -- Resist Bow/Crossbow Weapons
-(18078, 4073, 5), -- Stun
-(18078, 4273, 3), -- Resist Daggers/Rapier Weapon
-(18078, 4408, 1), -- HP Increase (1x)
-(18078, 4409, 1), -- MP Increase (1x)
-(18078, 4410, 11), -- Average P. Atk.
-(18078, 4411, 11), -- Average M. Atk.
-(18078, 4412, 11), -- Average P. Def.
-(18078, 4413, 11), -- Average M. Def.
-(18078, 4414, 2), -- Standard Type
-(18078, 4415, 3), -- One-handed Sword
-(18078, 4416, 6), -- Humanoids
+(18078, 4071, 5), -- Resist Archery
+(18078, 4073, 5), -- Shock
+(18078, 4273, 3), -- Resist Dagger
+(18078, 4408, 1), -- HP Modifiers
+(18078, 4409, 1), -- MP Modifiers
+(18078, 4410, 11), -- P. Atk. Modifiers
+(18078, 4411, 11), -- M. Atk. Modifiers
+(18078, 4412, 11), -- P. Def. Modifiers
+(18078, 4413, 11), -- M. Def. Modifiers
+(18078, 4414, 2), -- Armor Type
+(18078, 4415, 3), -- Weapon Type
+(18078, 4416, 6), -- Races
 (18078, 4438, 2), -- Greater Resist Sleep
 (18078, 4439, 2), -- Greater Resist Hold
 -- Witch's Offering, Elder
-(18079, 4078, 5), -- Flame Strike
-(18079, 4273, 3), -- Resist Daggers/Rapier Weapon
-(18079, 4274, 1), -- Blunt Weapon Weak Point
-(18079, 4408, 1), -- HP Increase (1x)
-(18079, 4409, 1), -- MP Increase (1x)
-(18079, 4410, 11), -- Average P. Atk.
-(18079, 4411, 11), -- Average M. Atk.
-(18079, 4412, 11), -- Average P. Def.
-(18079, 4413, 11), -- Average M. Def.
-(18079, 4414, 2), -- Standard Type
-(18079, 4415, 3), -- One-handed Sword
-(18079, 4416, 6), -- Humanoids
+(18079, 4078, 5), -- NPC Flamestrike
+(18079, 4273, 3), -- Resist Dagger
+(18079, 4274, 1), -- Blunt Attack Weak Point
+(18079, 4408, 1), -- HP Modifiers
+(18079, 4409, 1), -- MP Modifiers
+(18079, 4410, 11), -- P. Atk. Modifiers
+(18079, 4411, 11), -- M. Atk. Modifiers
+(18079, 4412, 11), -- P. Def. Modifiers
+(18079, 4413, 11), -- M. Def. Modifiers
+(18079, 4414, 2), -- Armor Type
+(18079, 4415, 3), -- Weapon Type
+(18079, 4416, 6), -- Races
 (18079, 4438, 2), -- Greater Resist Sleep
 (18079, 4439, 2), -- Greater Resist Hold
 (18079, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Witch's Offering,
-(18080, 4408, 1), -- HP Increase (1x)
-(18080, 4409, 1), -- MP Increase (1x)
-(18080, 4410, 11), -- Average P. Atk.
-(18080, 4411, 11), -- Average M. Atk.
-(18080, 4412, 11), -- Average P. Def.
-(18080, 4413, 11), -- Average M. Def.
-(18080, 4414, 3), -- Light Armor Type
-(18080, 4415, 7), -- Daggers
-(18080, 4416, 6), -- Humanoids
+(18080, 4408, 1), -- HP Modifiers
+(18080, 4409, 1), -- MP Modifiers
+(18080, 4410, 11), -- P. Atk. Modifiers
+(18080, 4411, 11), -- M. Atk. Modifiers
+(18080, 4412, 11), -- P. Def. Modifiers
+(18080, 4413, 11), -- M. Def. Modifiers
+(18080, 4414, 3), -- Armor Type
+(18080, 4415, 7), -- Weapon Type
+(18080, 4416, 6), -- Races
 (18080, 4438, 2), -- Greater Resist Sleep
 (18080, 4439, 2), -- Greater Resist Hold
 (18080, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 (18080, 4445, 2), -- Greater Resist Spear Weapons
 -- Witch's Offering, Archer
-(18081, 4408, 1), -- HP Increase (1x)
-(18081, 4409, 1), -- MP Increase (1x)
-(18081, 4410, 11), -- Average P. Atk.
-(18081, 4411, 11), -- Average M. Atk.
-(18081, 4412, 11), -- Average P. Def.
-(18081, 4413, 11), -- Average M. Def.
-(18081, 4414, 3), -- Light Armor Type
-(18081, 4415, 9), -- Bows
-(18081, 4416, 6), -- Humanoids
+(18081, 4408, 1), -- HP Modifiers
+(18081, 4409, 1), -- MP Modifiers
+(18081, 4410, 11), -- P. Atk. Modifiers
+(18081, 4411, 11), -- M. Atk. Modifiers
+(18081, 4412, 11), -- P. Def. Modifiers
+(18081, 4413, 11), -- M. Def. Modifiers
+(18081, 4414, 3), -- Armor Type
+(18081, 4415, 9), -- Weapon Type
+(18081, 4416, 6), -- Races
 (18081, 4438, 2), -- Greater Resist Sleep
 (18081, 4439, 2), -- Greater Resist Hold
 -- Witch's Offering, Warrior
-(18082, 4071, 5), -- Resist Bow/Crossbow Weapons
-(18082, 4087, 5), -- Blaze
-(18082, 4273, 3), -- Resist Daggers/Rapier Weapon
-(18082, 4274, 1), -- Blunt Weapon Weak Point
-(18082, 4408, 1), -- HP Increase (1x)
-(18082, 4409, 1), -- MP Increase (1x)
-(18082, 4410, 11), -- Average P. Atk.
-(18082, 4411, 11), -- Average M. Atk.
-(18082, 4412, 11), -- Average P. Def.
-(18082, 4413, 11), -- Average M. Def.
-(18082, 4414, 2), -- Standard Type
-(18082, 4415, 3), -- One-handed Sword
-(18082, 4416, 6), -- Humanoids
+(18082, 4071, 5), -- Resist Archery
+(18082, 4087, 5), -- NPC Blaze
+(18082, 4273, 3), -- Resist Dagger
+(18082, 4274, 1), -- Blunt Attack Weak Point
+(18082, 4408, 1), -- HP Modifiers
+(18082, 4409, 1), -- MP Modifiers
+(18082, 4410, 11), -- P. Atk. Modifiers
+(18082, 4411, 11), -- M. Atk. Modifiers
+(18082, 4412, 11), -- P. Def. Modifiers
+(18082, 4413, 11), -- M. Def. Modifiers
+(18082, 4414, 2), -- Armor Type
+(18082, 4415, 3), -- Weapon Type
+(18082, 4416, 6), -- Races
 (18082, 4438, 2), -- Greater Resist Sleep
 (18082, 4439, 2), -- Greater Resist Hold
 -- Witch's Offering, Follower
-(18083, 4151, 5), -- Wind Strike
-(18083, 4160, 5), -- Aura Burn
-(18083, 4225, 5), -- Resist Stun Attacks
-(18083, 4408, 1), -- HP Increase (1x)
-(18083, 4409, 1), -- MP Increase (1x)
-(18083, 4410, 11), -- Average P. Atk.
-(18083, 4411, 11), -- Average M. Atk.
-(18083, 4412, 11), -- Average P. Def.
-(18083, 4413, 15), -- Strong M. Def.
-(18083, 4414, 3), -- Light Armor Type
-(18083, 4415, 7), -- Daggers
-(18083, 4416, 6), -- Humanoids
+(18083, 4151, 5), -- NPC Windstrike - Magic
+(18083, 4160, 5), -- NPC Aura Burn - Magic
+(18083, 4225, 5), -- Resist Shock
+(18083, 4408, 1), -- HP Modifiers
+(18083, 4409, 1), -- MP Modifiers
+(18083, 4410, 11), -- P. Atk. Modifiers
+(18083, 4411, 11), -- M. Atk. Modifiers
+(18083, 4412, 11), -- P. Def. Modifiers
+(18083, 4413, 15), -- M. Def. Modifiers
+(18083, 4414, 3), -- Armor Type
+(18083, 4415, 7), -- Weapon Type
+(18083, 4416, 6), -- Races
 (18083, 4438, 2), -- Greater Resist Sleep
 (18083, 4439, 2), -- Greater Resist Hold
 (18083, 4445, 2), -- Greater Resist Spear Weapons
 -- Witch's Offering, Berserker
-(18084, 4071, 5), -- Resist Bow/Crossbow Weapons
-(18084, 4244, 5), -- Wild Sweep
-(18084, 4273, 3), -- Resist Daggers/Rapier Weapon
-(18084, 4274, 1), -- Blunt Weapon Weak Point
-(18084, 4408, 1), -- HP Increase (1x)
-(18084, 4409, 1), -- MP Increase (1x)
-(18084, 4410, 11), -- Average P. Atk.
-(18084, 4411, 11), -- Average M. Atk.
-(18084, 4412, 11), -- Average P. Def.
-(18084, 4413, 15), -- Strong M. Def.
-(18084, 4414, 2), -- Standard Type
-(18084, 4415, 3), -- One-handed Sword
-(18084, 4416, 6), -- Humanoids
+(18084, 4071, 5), -- Resist Archery
+(18084, 4244, 5), -- NPC Wild Sweep
+(18084, 4273, 3), -- Resist Dagger
+(18084, 4274, 1), -- Blunt Attack Weak Point
+(18084, 4408, 1), -- HP Modifiers
+(18084, 4409, 1), -- MP Modifiers
+(18084, 4410, 11), -- P. Atk. Modifiers
+(18084, 4411, 11), -- M. Atk. Modifiers
+(18084, 4412, 11), -- P. Def. Modifiers
+(18084, 4413, 15), -- M. Def. Modifiers
+(18084, 4414, 2), -- Armor Type
+(18084, 4415, 3), -- Weapon Type
+(18084, 4416, 6), -- Races
 (18084, 4438, 2), -- Greater Resist Sleep
 (18084, 4439, 2), -- Greater Resist Hold
 -- Witch's Offering, Zealot
-(18085, 4032, 5), -- Power Strike
-(18085, 4225, 5), -- Resist Stun Attacks
-(18085, 4408, 1), -- HP Increase (1x)
-(18085, 4409, 1), -- MP Increase (1x)
-(18085, 4410, 11), -- Average P. Atk.
-(18085, 4411, 11), -- Average M. Atk.
-(18085, 4412, 11), -- Average P. Def.
-(18085, 4413, 11), -- Average M. Def.
-(18085, 4414, 3), -- Light Armor Type
-(18085, 4415, 7), -- Daggers
-(18085, 4416, 6), -- Humanoids
+(18085, 4032, 5), -- NPC Strike
+(18085, 4225, 5), -- Resist Shock
+(18085, 4408, 1), -- HP Modifiers
+(18085, 4409, 1), -- MP Modifiers
+(18085, 4410, 11), -- P. Atk. Modifiers
+(18085, 4411, 11), -- M. Atk. Modifiers
+(18085, 4412, 11), -- P. Def. Modifiers
+(18085, 4413, 11), -- M. Def. Modifiers
+(18085, 4414, 3), -- Armor Type
+(18085, 4415, 7), -- Weapon Type
+(18085, 4416, 6), -- Races
 (18085, 4438, 2), -- Greater Resist Sleep
 (18085, 4439, 2), -- Greater Resist Hold
 (18085, 4445, 2), -- Greater Resist Spear Weapons
 -- Witch's Offering, Marksman
-(18086, 4408, 1), -- HP Increase (1x)
-(18086, 4409, 1), -- MP Increase (1x)
-(18086, 4410, 11), -- Average P. Atk.
-(18086, 4411, 11), -- Average M. Atk.
-(18086, 4412, 11), -- Average P. Def.
-(18086, 4413, 11), -- Average M. Def.
-(18086, 4414, 3), -- Light Armor Type
-(18086, 4415, 9), -- Bows
-(18086, 4416, 6), -- Humanoids
+(18086, 4408, 1), -- HP Modifiers
+(18086, 4409, 1), -- MP Modifiers
+(18086, 4410, 11), -- P. Atk. Modifiers
+(18086, 4411, 11), -- M. Atk. Modifiers
+(18086, 4412, 11), -- P. Def. Modifiers
+(18086, 4413, 11), -- M. Def. Modifiers
+(18086, 4414, 3), -- Armor Type
+(18086, 4415, 9), -- Weapon Type
+(18086, 4416, 6), -- Races
 (18086, 4438, 2), -- Greater Resist Sleep
 (18086, 4439, 2), -- Greater Resist Hold
 -- Witch's Offering, Disciple
-(18087, 4032, 6), -- Power Strike
-(18087, 4408, 1), -- HP Increase (1x)
-(18087, 4409, 1), -- MP Increase (1x)
-(18087, 4410, 11), -- Average P. Atk.
-(18087, 4411, 11), -- Average M. Atk.
-(18087, 4412, 11), -- Average P. Def.
-(18087, 4413, 11), -- Average M. Def.
-(18087, 4414, 2), -- Standard Type
-(18087, 4415, 3), -- One-handed Sword
-(18087, 4416, 6), -- Humanoids
+(18087, 4032, 6), -- NPC Strike
+(18087, 4408, 1), -- HP Modifiers
+(18087, 4409, 1), -- MP Modifiers
+(18087, 4410, 11), -- P. Atk. Modifiers
+(18087, 4411, 11), -- M. Atk. Modifiers
+(18087, 4412, 11), -- P. Def. Modifiers
+(18087, 4413, 11), -- M. Def. Modifiers
+(18087, 4414, 2), -- Armor Type
+(18087, 4415, 3), -- Weapon Type
+(18087, 4416, 6), -- Races
 (18087, 4438, 2), -- Greater Resist Sleep
 (18087, 4439, 2), -- Greater Resist Hold
 -- Witch's Offering, Saint
-(18088, 4071, 5), -- Resist Bow/Crossbow Weapons
-(18088, 4073, 6), -- Stun
-(18088, 4273, 3), -- Resist Daggers/Rapier Weapon
-(18088, 4408, 1), -- HP Increase (1x)
-(18088, 4409, 1), -- MP Increase (1x)
-(18088, 4410, 11), -- Average P. Atk.
-(18088, 4411, 11), -- Average M. Atk.
-(18088, 4412, 11), -- Average P. Def.
-(18088, 4413, 11), -- Average M. Def.
-(18088, 4414, 2), -- Standard Type
-(18088, 4415, 3), -- One-handed Sword
-(18088, 4416, 6), -- Humanoids
+(18088, 4071, 5), -- Resist Archery
+(18088, 4073, 6), -- Shock
+(18088, 4273, 3), -- Resist Dagger
+(18088, 4408, 1), -- HP Modifiers
+(18088, 4409, 1), -- MP Modifiers
+(18088, 4410, 11), -- P. Atk. Modifiers
+(18088, 4411, 11), -- M. Atk. Modifiers
+(18088, 4412, 11), -- P. Def. Modifiers
+(18088, 4413, 11), -- M. Def. Modifiers
+(18088, 4414, 2), -- Armor Type
+(18088, 4415, 3), -- Weapon Type
+(18088, 4416, 6), -- Races
 (18088, 4438, 2), -- Greater Resist Sleep
 (18088, 4439, 2), -- Greater Resist Hold
 -- Dark Omen Offering Elder
-(18089, 4078, 6), -- Flame Strike
-(18089, 4273, 3), -- Resist Daggers/Rapier Weapon
-(18089, 4274, 1), -- Blunt Weapon Weak Point
-(18089, 4408, 1), -- HP Increase (1x)
-(18089, 4409, 1), -- MP Increase (1x)
-(18089, 4410, 11), -- Average P. Atk.
-(18089, 4411, 11), -- Average M. Atk.
-(18089, 4412, 11), -- Average P. Def.
-(18089, 4413, 11), -- Average M. Def.
-(18089, 4414, 2), -- Standard Type
-(18089, 4415, 3), -- One-handed Sword
-(18089, 4416, 6), -- Humanoids
+(18089, 4078, 6), -- NPC Flamestrike
+(18089, 4273, 3), -- Resist Dagger
+(18089, 4274, 1), -- Blunt Attack Weak Point
+(18089, 4408, 1), -- HP Modifiers
+(18089, 4409, 1), -- MP Modifiers
+(18089, 4410, 11), -- P. Atk. Modifiers
+(18089, 4411, 11), -- M. Atk. Modifiers
+(18089, 4412, 11), -- P. Def. Modifiers
+(18089, 4413, 11), -- M. Def. Modifiers
+(18089, 4414, 2), -- Armor Type
+(18089, 4415, 3), -- Weapon Type
+(18089, 4416, 6), -- Races
 (18089, 4438, 2), -- Greater Resist Sleep
 (18089, 4439, 2), -- Greater Resist Hold
 (18089, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Dark Omen Offering
-(18090, 4408, 1), -- HP Increase (1x)
-(18090, 4409, 1), -- MP Increase (1x)
-(18090, 4410, 11), -- Average P. Atk.
-(18090, 4411, 11), -- Average M. Atk.
-(18090, 4412, 11), -- Average P. Def.
-(18090, 4413, 11), -- Average M. Def.
-(18090, 4414, 3), -- Light Armor Type
-(18090, 4415, 7), -- Daggers
-(18090, 4416, 6), -- Humanoids
+(18090, 4408, 1), -- HP Modifiers
+(18090, 4409, 1), -- MP Modifiers
+(18090, 4410, 11), -- P. Atk. Modifiers
+(18090, 4411, 11), -- M. Atk. Modifiers
+(18090, 4412, 11), -- P. Def. Modifiers
+(18090, 4413, 11), -- M. Def. Modifiers
+(18090, 4414, 3), -- Armor Type
+(18090, 4415, 7), -- Weapon Type
+(18090, 4416, 6), -- Races
 (18090, 4438, 2), -- Greater Resist Sleep
 (18090, 4439, 2), -- Greater Resist Hold
 (18090, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 (18090, 4445, 2), -- Greater Resist Spear Weapons
 -- Dark Omen Offering Archer
-(18091, 4408, 1), -- HP Increase (1x)
-(18091, 4409, 1), -- MP Increase (1x)
-(18091, 4410, 11), -- Average P. Atk.
-(18091, 4411, 11), -- Average M. Atk.
-(18091, 4412, 11), -- Average P. Def.
-(18091, 4413, 11), -- Average M. Def.
-(18091, 4414, 3), -- Light Armor Type
-(18091, 4415, 9), -- Bows
-(18091, 4416, 6), -- Humanoids
+(18091, 4408, 1), -- HP Modifiers
+(18091, 4409, 1), -- MP Modifiers
+(18091, 4410, 11), -- P. Atk. Modifiers
+(18091, 4411, 11), -- M. Atk. Modifiers
+(18091, 4412, 11), -- P. Def. Modifiers
+(18091, 4413, 11), -- M. Def. Modifiers
+(18091, 4414, 3), -- Armor Type
+(18091, 4415, 9), -- Weapon Type
+(18091, 4416, 6), -- Races
 (18091, 4438, 2), -- Greater Resist Sleep
 (18091, 4439, 2), -- Greater Resist Hold
 -- Dark Omen Offering Warrior
-(18092, 4071, 5), -- Resist Bow/Crossbow Weapons
-(18092, 4087, 6), -- Blaze
-(18092, 4273, 3), -- Resist Daggers/Rapier Weapon
-(18092, 4274, 1), -- Blunt Weapon Weak Point
-(18092, 4408, 1), -- HP Increase (1x)
-(18092, 4409, 1), -- MP Increase (1x)
-(18092, 4410, 11), -- Average P. Atk.
-(18092, 4411, 11), -- Average M. Atk.
-(18092, 4412, 11), -- Average P. Def.
-(18092, 4413, 11), -- Average M. Def.
-(18092, 4414, 2), -- Standard Type
-(18092, 4415, 3), -- One-handed Sword
-(18092, 4416, 6), -- Humanoids
+(18092, 4071, 5), -- Resist Archery
+(18092, 4087, 6), -- NPC Blaze
+(18092, 4273, 3), -- Resist Dagger
+(18092, 4274, 1), -- Blunt Attack Weak Point
+(18092, 4408, 1), -- HP Modifiers
+(18092, 4409, 1), -- MP Modifiers
+(18092, 4410, 11), -- P. Atk. Modifiers
+(18092, 4411, 11), -- M. Atk. Modifiers
+(18092, 4412, 11), -- P. Def. Modifiers
+(18092, 4413, 11), -- M. Def. Modifiers
+(18092, 4414, 2), -- Armor Type
+(18092, 4415, 3), -- Weapon Type
+(18092, 4416, 6), -- Races
 (18092, 4438, 2), -- Greater Resist Sleep
 (18092, 4439, 2), -- Greater Resist Hold
 -- Dark Omen Offering Follower
-(18093, 4151, 6), -- Wind Strike
-(18093, 4160, 6), -- Aura Burn
-(18093, 4225, 5), -- Resist Stun Attacks
-(18093, 4408, 1), -- HP Increase (1x)
-(18093, 4409, 1), -- MP Increase (1x)
-(18093, 4410, 11), -- Average P. Atk.
-(18093, 4411, 11), -- Average M. Atk.
-(18093, 4412, 11), -- Average P. Def.
-(18093, 4413, 15), -- Strong M. Def.
-(18093, 4414, 3), -- Light Armor Type
-(18093, 4415, 7), -- Daggers
-(18093, 4416, 6), -- Humanoids
+(18093, 4151, 6), -- NPC Windstrike - Magic
+(18093, 4160, 6), -- NPC Aura Burn - Magic
+(18093, 4225, 5), -- Resist Shock
+(18093, 4408, 1), -- HP Modifiers
+(18093, 4409, 1), -- MP Modifiers
+(18093, 4410, 11), -- P. Atk. Modifiers
+(18093, 4411, 11), -- M. Atk. Modifiers
+(18093, 4412, 11), -- P. Def. Modifiers
+(18093, 4413, 15), -- M. Def. Modifiers
+(18093, 4414, 3), -- Armor Type
+(18093, 4415, 7), -- Weapon Type
+(18093, 4416, 6), -- Races
 (18093, 4438, 2), -- Greater Resist Sleep
 (18093, 4439, 2), -- Greater Resist Hold
 (18093, 4445, 2), -- Greater Resist Spear Weapons
 -- Dark Omen Offering Berserker
-(18094, 4071, 5), -- Resist Bow/Crossbow Weapons
-(18094, 4244, 7), -- Wild Sweep
-(18094, 4273, 3), -- Resist Daggers/Rapier Weapon
-(18094, 4274, 1), -- Blunt Weapon Weak Point
-(18094, 4408, 1), -- HP Increase (1x)
-(18094, 4409, 1), -- MP Increase (1x)
-(18094, 4410, 11), -- Average P. Atk.
-(18094, 4411, 11), -- Average M. Atk.
-(18094, 4412, 11), -- Average P. Def.
-(18094, 4413, 15), -- Strong M. Def.
-(18094, 4414, 2), -- Standard Type
-(18094, 4415, 3), -- One-handed Sword
-(18094, 4416, 6), -- Humanoids
+(18094, 4071, 5), -- Resist Archery
+(18094, 4244, 7), -- NPC Wild Sweep
+(18094, 4273, 3), -- Resist Dagger
+(18094, 4274, 1), -- Blunt Attack Weak Point
+(18094, 4408, 1), -- HP Modifiers
+(18094, 4409, 1), -- MP Modifiers
+(18094, 4410, 11), -- P. Atk. Modifiers
+(18094, 4411, 11), -- M. Atk. Modifiers
+(18094, 4412, 11), -- P. Def. Modifiers
+(18094, 4413, 15), -- M. Def. Modifiers
+(18094, 4414, 2), -- Armor Type
+(18094, 4415, 3), -- Weapon Type
+(18094, 4416, 6), -- Races
 (18094, 4438, 2), -- Greater Resist Sleep
 (18094, 4439, 2), -- Greater Resist Hold
 -- Dark Omen Offering Zealot
-(18095, 4032, 6), -- Power Strike
-(18095, 4225, 5), -- Resist Stun Attacks
-(18095, 4408, 1), -- HP Increase (1x)
-(18095, 4409, 1), -- MP Increase (1x)
-(18095, 4410, 11), -- Average P. Atk.
-(18095, 4411, 11), -- Average M. Atk.
-(18095, 4412, 11), -- Average P. Def.
-(18095, 4413, 11), -- Average M. Def.
-(18095, 4414, 3), -- Light Armor Type
-(18095, 4415, 7), -- Daggers
-(18095, 4416, 6), -- Humanoids
+(18095, 4032, 6), -- NPC Strike
+(18095, 4225, 5), -- Resist Shock
+(18095, 4408, 1), -- HP Modifiers
+(18095, 4409, 1), -- MP Modifiers
+(18095, 4410, 11), -- P. Atk. Modifiers
+(18095, 4411, 11), -- M. Atk. Modifiers
+(18095, 4412, 11), -- P. Def. Modifiers
+(18095, 4413, 11), -- M. Def. Modifiers
+(18095, 4414, 3), -- Armor Type
+(18095, 4415, 7), -- Weapon Type
+(18095, 4416, 6), -- Races
 (18095, 4438, 2), -- Greater Resist Sleep
 (18095, 4439, 2), -- Greater Resist Hold
 (18095, 4445, 2), -- Greater Resist Spear Weapons
 -- Dark Omen Offering Marksman
-(18096, 4408, 1), -- HP Increase (1x)
-(18096, 4409, 1), -- MP Increase (1x)
-(18096, 4410, 11), -- Average P. Atk.
-(18096, 4411, 11), -- Average M. Atk.
-(18096, 4412, 11), -- Average P. Def.
-(18096, 4413, 11), -- Average M. Def.
-(18096, 4414, 3), -- Light Armor Type
-(18096, 4415, 9), -- Bows
-(18096, 4416, 6), -- Humanoids
+(18096, 4408, 1), -- HP Modifiers
+(18096, 4409, 1), -- MP Modifiers
+(18096, 4410, 11), -- P. Atk. Modifiers
+(18096, 4411, 11), -- M. Atk. Modifiers
+(18096, 4412, 11), -- P. Def. Modifiers
+(18096, 4413, 11), -- M. Def. Modifiers
+(18096, 4414, 3), -- Armor Type
+(18096, 4415, 9), -- Weapon Type
+(18096, 4416, 6), -- Races
 (18096, 4438, 2), -- Greater Resist Sleep
 (18096, 4439, 2), -- Greater Resist Hold
 -- Dark Omen Offering Disciple
-(18097, 4032, 7), -- Power Strike
-(18097, 4408, 1), -- HP Increase (1x)
-(18097, 4409, 1), -- MP Increase (1x)
-(18097, 4410, 11), -- Average P. Atk.
-(18097, 4411, 11), -- Average M. Atk.
-(18097, 4412, 11), -- Average P. Def.
-(18097, 4413, 11), -- Average M. Def.
-(18097, 4414, 2), -- Standard Type
-(18097, 4415, 3), -- One-handed Sword
-(18097, 4416, 6), -- Humanoids
+(18097, 4032, 7), -- NPC Strike
+(18097, 4408, 1), -- HP Modifiers
+(18097, 4409, 1), -- MP Modifiers
+(18097, 4410, 11), -- P. Atk. Modifiers
+(18097, 4411, 11), -- M. Atk. Modifiers
+(18097, 4412, 11), -- P. Def. Modifiers
+(18097, 4413, 11), -- M. Def. Modifiers
+(18097, 4414, 2), -- Armor Type
+(18097, 4415, 3), -- Weapon Type
+(18097, 4416, 6), -- Races
 (18097, 4438, 2), -- Greater Resist Sleep
 (18097, 4439, 2), -- Greater Resist Hold
 -- Dark Omen Offering Saint
-(18098, 4071, 5), -- Resist Bow/Crossbow Weapons
-(18098, 4073, 7), -- Stun
-(18098, 4273, 3), -- Resist Daggers/Rapier Weapon
-(18098, 4408, 1), -- HP Increase (1x)
-(18098, 4409, 1), -- MP Increase (1x)
-(18098, 4410, 11), -- Average P. Atk.
-(18098, 4411, 11), -- Average M. Atk.
-(18098, 4412, 11), -- Average P. Def.
-(18098, 4413, 11), -- Average M. Def.
-(18098, 4414, 2), -- Standard Type
-(18098, 4415, 3), -- One-handed Sword
-(18098, 4416, 6), -- Humanoids
+(18098, 4071, 5), -- Resist Archery
+(18098, 4073, 7), -- Shock
+(18098, 4273, 3), -- Resist Dagger
+(18098, 4408, 1), -- HP Modifiers
+(18098, 4409, 1), -- MP Modifiers
+(18098, 4410, 11), -- P. Atk. Modifiers
+(18098, 4411, 11), -- M. Atk. Modifiers
+(18098, 4412, 11), -- P. Def. Modifiers
+(18098, 4413, 11), -- M. Def. Modifiers
+(18098, 4414, 2), -- Armor Type
+(18098, 4415, 3), -- Weapon Type
+(18098, 4416, 6), -- Races
 (18098, 4438, 2), -- Greater Resist Sleep
 (18098, 4439, 2), -- Greater Resist Hold
 -- Offering of Forbidden Path, Elder
-(18099, 4078, 8), -- Flame Strike
-(18099, 4273, 3), -- Resist Daggers/Rapier Weapon
-(18099, 4274, 1), -- Blunt Weapon Weak Point
-(18099, 4408, 1), -- HP Increase (1x)
-(18099, 4409, 1), -- MP Increase (1x)
-(18099, 4410, 11), -- Average P. Atk.
-(18099, 4411, 11), -- Average M. Atk.
-(18099, 4412, 11), -- Average P. Def.
-(18099, 4413, 11), -- Average M. Def.
-(18099, 4414, 2), -- Standard Type
-(18099, 4415, 3), -- One-handed Sword
-(18099, 4416, 6), -- Humanoids
+(18099, 4078, 8), -- NPC Flamestrike
+(18099, 4273, 3), -- Resist Dagger
+(18099, 4274, 1), -- Blunt Attack Weak Point
+(18099, 4408, 1), -- HP Modifiers
+(18099, 4409, 1), -- MP Modifiers
+(18099, 4410, 11), -- P. Atk. Modifiers
+(18099, 4411, 11), -- M. Atk. Modifiers
+(18099, 4412, 11), -- P. Def. Modifiers
+(18099, 4413, 11), -- M. Def. Modifiers
+(18099, 4414, 2), -- Armor Type
+(18099, 4415, 3), -- Weapon Type
+(18099, 4416, 6), -- Races
 (18099, 4438, 2), -- Greater Resist Sleep
 (18099, 4439, 2), -- Greater Resist Hold
 (18099, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Offering of Forbidden Path
-(18100, 4408, 1), -- HP Increase (1x)
-(18100, 4409, 1), -- MP Increase (1x)
-(18100, 4410, 11), -- Average P. Atk.
-(18100, 4411, 11), -- Average M. Atk.
-(18100, 4412, 11), -- Average P. Def.
-(18100, 4413, 11), -- Average M. Def.
-(18100, 4414, 3), -- Light Armor Type
-(18100, 4415, 7), -- Daggers
-(18100, 4416, 6), -- Humanoids
+(18100, 4408, 1), -- HP Modifiers
+(18100, 4409, 1), -- MP Modifiers
+(18100, 4410, 11), -- P. Atk. Modifiers
+(18100, 4411, 11), -- M. Atk. Modifiers
+(18100, 4412, 11), -- P. Def. Modifiers
+(18100, 4413, 11), -- M. Def. Modifiers
+(18100, 4414, 3), -- Armor Type
+(18100, 4415, 7), -- Weapon Type
+(18100, 4416, 6), -- Races
 (18100, 4438, 2), -- Greater Resist Sleep
 (18100, 4439, 2), -- Greater Resist Hold
 (18100, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 (18100, 4445, 2), -- Greater Resist Spear Weapons
 -- Offering of Forbidden Path, Archer
-(18101, 4408, 1), -- HP Increase (1x)
-(18101, 4409, 1), -- MP Increase (1x)
-(18101, 4410, 11), -- Average P. Atk.
-(18101, 4411, 11), -- Average M. Atk.
-(18101, 4412, 11), -- Average P. Def.
-(18101, 4413, 11), -- Average M. Def.
-(18101, 4414, 3), -- Light Armor Type
-(18101, 4415, 9), -- Bows
-(18101, 4416, 6), -- Humanoids
+(18101, 4408, 1), -- HP Modifiers
+(18101, 4409, 1), -- MP Modifiers
+(18101, 4410, 11), -- P. Atk. Modifiers
+(18101, 4411, 11), -- M. Atk. Modifiers
+(18101, 4412, 11), -- P. Def. Modifiers
+(18101, 4413, 11), -- M. Def. Modifiers
+(18101, 4414, 3), -- Armor Type
+(18101, 4415, 9), -- Weapon Type
+(18101, 4416, 6), -- Races
 (18101, 4438, 2), -- Greater Resist Sleep
 (18101, 4439, 2), -- Greater Resist Hold
 -- Offering of Forbidden Path, Warrior
-(18102, 4071, 5), -- Resist Bow/Crossbow Weapons
-(18102, 4087, 9), -- Blaze
-(18102, 4273, 3), -- Resist Daggers/Rapier Weapon
-(18102, 4274, 1), -- Blunt Weapon Weak Point
-(18102, 4408, 1), -- HP Increase (1x)
-(18102, 4409, 1), -- MP Increase (1x)
-(18102, 4410, 11), -- Average P. Atk.
-(18102, 4411, 11), -- Average M. Atk.
-(18102, 4412, 11), -- Average P. Def.
-(18102, 4413, 11), -- Average M. Def.
-(18102, 4414, 2), -- Standard Type
-(18102, 4415, 3), -- One-handed Sword
-(18102, 4416, 6), -- Humanoids
+(18102, 4071, 5), -- Resist Archery
+(18102, 4087, 9), -- NPC Blaze
+(18102, 4273, 3), -- Resist Dagger
+(18102, 4274, 1), -- Blunt Attack Weak Point
+(18102, 4408, 1), -- HP Modifiers
+(18102, 4409, 1), -- MP Modifiers
+(18102, 4410, 11), -- P. Atk. Modifiers
+(18102, 4411, 11), -- M. Atk. Modifiers
+(18102, 4412, 11), -- P. Def. Modifiers
+(18102, 4413, 11), -- M. Def. Modifiers
+(18102, 4414, 2), -- Armor Type
+(18102, 4415, 3), -- Weapon Type
+(18102, 4416, 6), -- Races
 (18102, 4438, 2), -- Greater Resist Sleep
 (18102, 4439, 2), -- Greater Resist Hold
 -- Offering of Forbidden Path, Follower
-(18103, 4151, 9), -- Wind Strike
-(18103, 4160, 9), -- Aura Burn
-(18103, 4225, 5), -- Resist Stun Attacks
-(18103, 4408, 1), -- HP Increase (1x)
-(18103, 4409, 1), -- MP Increase (1x)
-(18103, 4410, 11), -- Average P. Atk.
-(18103, 4411, 11), -- Average M. Atk.
-(18103, 4412, 11), -- Average P. Def.
-(18103, 4413, 15), -- Strong M. Def.
-(18103, 4414, 3), -- Light Armor Type
-(18103, 4415, 7), -- Daggers
-(18103, 4416, 6), -- Humanoids
+(18103, 4151, 9), -- NPC Windstrike - Magic
+(18103, 4160, 9), -- NPC Aura Burn - Magic
+(18103, 4225, 5), -- Resist Shock
+(18103, 4408, 1), -- HP Modifiers
+(18103, 4409, 1), -- MP Modifiers
+(18103, 4410, 11), -- P. Atk. Modifiers
+(18103, 4411, 11), -- M. Atk. Modifiers
+(18103, 4412, 11), -- P. Def. Modifiers
+(18103, 4413, 15), -- M. Def. Modifiers
+(18103, 4414, 3), -- Armor Type
+(18103, 4415, 7), -- Weapon Type
+(18103, 4416, 6), -- Races
 (18103, 4438, 2), -- Greater Resist Sleep
 (18103, 4439, 2), -- Greater Resist Hold
 (18103, 4445, 2), -- Greater Resist Spear Weapons
 -- Offering of Forbidden Path, Berserker
-(18104, 4071, 5), -- Resist Bow/Crossbow Weapons
-(18104, 4244, 9), -- Wild Sweep
-(18104, 4273, 3), -- Resist Daggers/Rapier Weapon
-(18104, 4274, 1), -- Blunt Weapon Weak Point
-(18104, 4408, 1), -- HP Increase (1x)
-(18104, 4409, 1), -- MP Increase (1x)
-(18104, 4410, 11), -- Average P. Atk.
-(18104, 4411, 11), -- Average M. Atk.
-(18104, 4412, 11), -- Average P. Def.
-(18104, 4413, 15), -- Strong M. Def.
-(18104, 4414, 2), -- Standard Type
-(18104, 4415, 3), -- One-handed Sword
-(18104, 4416, 6), -- Humanoids
+(18104, 4071, 5), -- Resist Archery
+(18104, 4244, 9), -- NPC Wild Sweep
+(18104, 4273, 3), -- Resist Dagger
+(18104, 4274, 1), -- Blunt Attack Weak Point
+(18104, 4408, 1), -- HP Modifiers
+(18104, 4409, 1), -- MP Modifiers
+(18104, 4410, 11), -- P. Atk. Modifiers
+(18104, 4411, 11), -- M. Atk. Modifiers
+(18104, 4412, 11), -- P. Def. Modifiers
+(18104, 4413, 15), -- M. Def. Modifiers
+(18104, 4414, 2), -- Armor Type
+(18104, 4415, 3), -- Weapon Type
+(18104, 4416, 6), -- Races
 (18104, 4438, 2), -- Greater Resist Sleep
 (18104, 4439, 2), -- Greater Resist Hold
 -- Offering of Forbidden Path, Zealot
-(18105, 4032, 8), -- Power Strike
-(18105, 4225, 5), -- Resist Stun Attacks
-(18105, 4408, 1), -- HP Increase (1x)
-(18105, 4409, 1), -- MP Increase (1x)
-(18105, 4410, 11), -- Average P. Atk.
-(18105, 4411, 11), -- Average M. Atk.
-(18105, 4412, 11), -- Average P. Def.
-(18105, 4413, 11), -- Average M. Def.
-(18105, 4414, 3), -- Light Armor Type
-(18105, 4415, 7), -- Daggers
-(18105, 4416, 6), -- Humanoids
+(18105, 4032, 8), -- NPC Strike
+(18105, 4225, 5), -- Resist Shock
+(18105, 4408, 1), -- HP Modifiers
+(18105, 4409, 1), -- MP Modifiers
+(18105, 4410, 11), -- P. Atk. Modifiers
+(18105, 4411, 11), -- M. Atk. Modifiers
+(18105, 4412, 11), -- P. Def. Modifiers
+(18105, 4413, 11), -- M. Def. Modifiers
+(18105, 4414, 3), -- Armor Type
+(18105, 4415, 7), -- Weapon Type
+(18105, 4416, 6), -- Races
 (18105, 4438, 2), -- Greater Resist Sleep
 (18105, 4439, 2), -- Greater Resist Hold
 (18105, 4445, 2), -- Greater Resist Spear Weapons
 -- Offering of Forbidden Path, Marksman
-(18106, 4408, 1), -- HP Increase (1x)
-(18106, 4409, 1), -- MP Increase (1x)
-(18106, 4410, 11), -- Average P. Atk.
-(18106, 4411, 11), -- Average M. Atk.
-(18106, 4412, 11), -- Average P. Def.
-(18106, 4413, 11), -- Average M. Def.
-(18106, 4414, 3), -- Light Armor Type
-(18106, 4415, 9), -- Bows
-(18106, 4416, 6), -- Humanoids
+(18106, 4408, 1), -- HP Modifiers
+(18106, 4409, 1), -- MP Modifiers
+(18106, 4410, 11), -- P. Atk. Modifiers
+(18106, 4411, 11), -- M. Atk. Modifiers
+(18106, 4412, 11), -- P. Def. Modifiers
+(18106, 4413, 11), -- M. Def. Modifiers
+(18106, 4414, 3), -- Armor Type
+(18106, 4415, 9), -- Weapon Type
+(18106, 4416, 6), -- Races
 (18106, 4438, 2), -- Greater Resist Sleep
 (18106, 4439, 2), -- Greater Resist Hold
 -- Offering of Forbidden Path, Disciple
-(18107, 4032, 8), -- Power Strike
-(18107, 4408, 1), -- HP Increase (1x)
-(18107, 4409, 1), -- MP Increase (1x)
-(18107, 4410, 11), -- Average P. Atk.
-(18107, 4411, 11), -- Average M. Atk.
-(18107, 4412, 11), -- Average P. Def.
-(18107, 4413, 11), -- Average M. Def.
-(18107, 4414, 2), -- Standard Type
-(18107, 4415, 3), -- One-handed Sword
-(18107, 4416, 6), -- Humanoids
+(18107, 4032, 8), -- NPC Strike
+(18107, 4408, 1), -- HP Modifiers
+(18107, 4409, 1), -- MP Modifiers
+(18107, 4410, 11), -- P. Atk. Modifiers
+(18107, 4411, 11), -- M. Atk. Modifiers
+(18107, 4412, 11), -- P. Def. Modifiers
+(18107, 4413, 11), -- M. Def. Modifiers
+(18107, 4414, 2), -- Armor Type
+(18107, 4415, 3), -- Weapon Type
+(18107, 4416, 6), -- Races
 (18107, 4438, 2), -- Greater Resist Sleep
 (18107, 4439, 2), -- Greater Resist Hold
 -- Offering of Forbidden Path, Saint
-(18108, 4071, 5), -- Resist Bow/Crossbow Weapons
-(18108, 4073, 9), -- Stun
-(18108, 4273, 3), -- Resist Daggers/Rapier Weapon
-(18108, 4408, 1), -- HP Increase (1x)
-(18108, 4409, 1), -- MP Increase (1x)
-(18108, 4410, 11), -- Average P. Atk.
-(18108, 4411, 11), -- Average M. Atk.
-(18108, 4412, 11), -- Average P. Def.
-(18108, 4413, 11), -- Average M. Def.
-(18108, 4414, 2), -- Standard Type
-(18108, 4415, 3), -- One-handed Sword
-(18108, 4416, 6), -- Humanoids
+(18108, 4071, 5), -- Resist Archery
+(18108, 4073, 9), -- Shock
+(18108, 4273, 3), -- Resist Dagger
+(18108, 4408, 1), -- HP Modifiers
+(18108, 4409, 1), -- MP Modifiers
+(18108, 4410, 11), -- P. Atk. Modifiers
+(18108, 4411, 11), -- M. Atk. Modifiers
+(18108, 4412, 11), -- P. Def. Modifiers
+(18108, 4413, 11), -- M. Def. Modifiers
+(18108, 4414, 2), -- Armor Type
+(18108, 4415, 3), -- Weapon Type
+(18108, 4416, 6), -- Races
 (18108, 4438, 2), -- Greater Resist Sleep
 (18108, 4439, 2), -- Greater Resist Hold
 -- Treasures of the Festival
 (18109, 4045, 1), -- Resist Full Magic Attack
-(18109, 4408, 1), -- HP Increase (1x)
-(18109, 4409, 1), -- MP Increase (1x)
-(18109, 4410, 11), -- Average P. Atk.
-(18109, 4411, 11), -- Average M. Atk.
-(18109, 4412, 11), -- Average P. Def.
-(18109, 4413, 17), -- Very Strong M. Def.
-(18109, 4414, 3), -- Light Armor Type
-(18109, 4415, 5), -- Blunt Weapons
-(18109, 4416, 2), -- Magic Creatures
+(18109, 4408, 1), -- HP Modifiers
+(18109, 4409, 1), -- MP Modifiers
+(18109, 4410, 11), -- P. Atk. Modifiers
+(18109, 4411, 11), -- M. Atk. Modifiers
+(18109, 4412, 11), -- P. Def. Modifiers
+(18109, 4413, 17), -- M. Def. Modifiers
+(18109, 4414, 3), -- Armor Type
+(18109, 4415, 5), -- Weapon Type
+(18109, 4416, 2), -- Races
 -- Treasures of the Festival
 (18110, 4045, 1), -- Resist Full Magic Attack
-(18110, 4408, 1), -- HP Increase (1x)
-(18110, 4409, 1), -- MP Increase (1x)
-(18110, 4410, 11), -- Average P. Atk.
-(18110, 4411, 11), -- Average M. Atk.
-(18110, 4412, 11), -- Average P. Def.
-(18110, 4413, 17), -- Very Strong M. Def.
-(18110, 4414, 3), -- Light Armor Type
-(18110, 4415, 5), -- Blunt Weapons
-(18110, 4416, 2), -- Magic Creatures
+(18110, 4408, 1), -- HP Modifiers
+(18110, 4409, 1), -- MP Modifiers
+(18110, 4410, 11), -- P. Atk. Modifiers
+(18110, 4411, 11), -- M. Atk. Modifiers
+(18110, 4412, 11), -- P. Def. Modifiers
+(18110, 4413, 17), -- M. Def. Modifiers
+(18110, 4414, 3), -- Armor Type
+(18110, 4415, 5), -- Weapon Type
+(18110, 4416, 2), -- Races
 -- Treasures of the Festival
 (18111, 4045, 1), -- Resist Full Magic Attack
-(18111, 4408, 1), -- HP Increase (1x)
-(18111, 4409, 1), -- MP Increase (1x)
-(18111, 4410, 11), -- Average P. Atk.
-(18111, 4411, 11), -- Average M. Atk.
-(18111, 4412, 11), -- Average P. Def.
-(18111, 4413, 17), -- Very Strong M. Def.
-(18111, 4414, 3), -- Light Armor Type
-(18111, 4415, 5), -- Blunt Weapons
-(18111, 4416, 2), -- Magic Creatures
+(18111, 4408, 1), -- HP Modifiers
+(18111, 4409, 1), -- MP Modifiers
+(18111, 4410, 11), -- P. Atk. Modifiers
+(18111, 4411, 11), -- M. Atk. Modifiers
+(18111, 4412, 11), -- P. Def. Modifiers
+(18111, 4413, 17), -- M. Def. Modifiers
+(18111, 4414, 3), -- Armor Type
+(18111, 4415, 5), -- Weapon Type
+(18111, 4416, 2), -- Races
 -- Treasures of the Festival
 (18112, 4045, 1), -- Resist Full Magic Attack
-(18112, 4408, 1), -- HP Increase (1x)
-(18112, 4409, 1), -- MP Increase (1x)
-(18112, 4410, 11), -- Average P. Atk.
-(18112, 4411, 11), -- Average M. Atk.
-(18112, 4412, 11), -- Average P. Def.
-(18112, 4413, 17), -- Very Strong M. Def.
-(18112, 4414, 3), -- Light Armor Type
-(18112, 4415, 5), -- Blunt Weapons
-(18112, 4416, 2), -- Magic Creatures
+(18112, 4408, 1), -- HP Modifiers
+(18112, 4409, 1), -- MP Modifiers
+(18112, 4410, 11), -- P. Atk. Modifiers
+(18112, 4411, 11), -- M. Atk. Modifiers
+(18112, 4412, 11), -- P. Def. Modifiers
+(18112, 4413, 17), -- M. Def. Modifiers
+(18112, 4414, 3), -- Armor Type
+(18112, 4415, 5), -- Weapon Type
+(18112, 4416, 2), -- Races
 -- Treasures of the Festival
 (18113, 4045, 1), -- Resist Full Magic Attack
-(18113, 4408, 1), -- HP Increase (1x)
-(18113, 4409, 1), -- MP Increase (1x)
-(18113, 4410, 11), -- Average P. Atk.
-(18113, 4411, 11), -- Average M. Atk.
-(18113, 4412, 11), -- Average P. Def.
-(18113, 4413, 17), -- Very Strong M. Def.
-(18113, 4414, 3), -- Light Armor Type
-(18113, 4415, 5), -- Blunt Weapons
-(18113, 4416, 2), -- Magic Creatures
+(18113, 4408, 1), -- HP Modifiers
+(18113, 4409, 1), -- MP Modifiers
+(18113, 4410, 11), -- P. Atk. Modifiers
+(18113, 4411, 11), -- M. Atk. Modifiers
+(18113, 4412, 11), -- P. Def. Modifiers
+(18113, 4413, 17), -- M. Def. Modifiers
+(18113, 4414, 3), -- Armor Type
+(18113, 4415, 5), -- Weapon Type
+(18113, 4416, 2), -- Races
 -- Treasures of the Festival
 (18114, 4045, 1), -- Resist Full Magic Attack
-(18114, 4408, 1), -- HP Increase (1x)
-(18114, 4409, 1), -- MP Increase (1x)
-(18114, 4410, 11), -- Average P. Atk.
-(18114, 4411, 11), -- Average M. Atk.
-(18114, 4412, 11), -- Average P. Def.
-(18114, 4413, 17), -- Very Strong M. Def.
-(18114, 4414, 3), -- Light Armor Type
-(18114, 4415, 5), -- Blunt Weapons
-(18114, 4416, 2), -- Magic Creatures
+(18114, 4408, 1), -- HP Modifiers
+(18114, 4409, 1), -- MP Modifiers
+(18114, 4410, 11), -- P. Atk. Modifiers
+(18114, 4411, 11), -- M. Atk. Modifiers
+(18114, 4412, 11), -- P. Def. Modifiers
+(18114, 4413, 17), -- M. Def. Modifiers
+(18114, 4414, 3), -- Armor Type
+(18114, 4415, 5), -- Weapon Type
+(18114, 4416, 2), -- Races
 -- Treasures of the Festival
 (18115, 4045, 1), -- Resist Full Magic Attack
-(18115, 4408, 1), -- HP Increase (1x)
-(18115, 4409, 1), -- MP Increase (1x)
-(18115, 4410, 11), -- Average P. Atk.
-(18115, 4411, 11), -- Average M. Atk.
-(18115, 4412, 11), -- Average P. Def.
-(18115, 4413, 17), -- Very Strong M. Def.
-(18115, 4414, 3), -- Light Armor Type
-(18115, 4415, 5), -- Blunt Weapons
-(18115, 4416, 2), -- Magic Creatures
+(18115, 4408, 1), -- HP Modifiers
+(18115, 4409, 1), -- MP Modifiers
+(18115, 4410, 11), -- P. Atk. Modifiers
+(18115, 4411, 11), -- M. Atk. Modifiers
+(18115, 4412, 11), -- P. Def. Modifiers
+(18115, 4413, 17), -- M. Def. Modifiers
+(18115, 4414, 3), -- Armor Type
+(18115, 4415, 5), -- Weapon Type
+(18115, 4416, 2), -- Races
 -- Treasures of the Festival
 (18116, 4045, 1), -- Resist Full Magic Attack
-(18116, 4408, 1), -- HP Increase (1x)
-(18116, 4409, 1), -- MP Increase (1x)
-(18116, 4410, 11), -- Average P. Atk.
-(18116, 4411, 11), -- Average M. Atk.
-(18116, 4412, 11), -- Average P. Def.
-(18116, 4413, 17), -- Very Strong M. Def.
-(18116, 4414, 3), -- Light Armor Type
-(18116, 4415, 5), -- Blunt Weapons
-(18116, 4416, 2), -- Magic Creatures
+(18116, 4408, 1), -- HP Modifiers
+(18116, 4409, 1), -- MP Modifiers
+(18116, 4410, 11), -- P. Atk. Modifiers
+(18116, 4411, 11), -- M. Atk. Modifiers
+(18116, 4412, 11), -- P. Def. Modifiers
+(18116, 4413, 17), -- M. Def. Modifiers
+(18116, 4414, 3), -- Armor Type
+(18116, 4415, 5), -- Weapon Type
+(18116, 4416, 2), -- Races
 -- Treasures of the Festival
 (18117, 4045, 1), -- Resist Full Magic Attack
-(18117, 4408, 1), -- HP Increase (1x)
-(18117, 4409, 1), -- MP Increase (1x)
-(18117, 4410, 11), -- Average P. Atk.
-(18117, 4411, 11), -- Average M. Atk.
-(18117, 4412, 11), -- Average P. Def.
-(18117, 4413, 17), -- Very Strong M. Def.
-(18117, 4414, 3), -- Light Armor Type
-(18117, 4415, 5), -- Blunt Weapons
-(18117, 4416, 2), -- Magic Creatures
+(18117, 4408, 1), -- HP Modifiers
+(18117, 4409, 1), -- MP Modifiers
+(18117, 4410, 11), -- P. Atk. Modifiers
+(18117, 4411, 11), -- M. Atk. Modifiers
+(18117, 4412, 11), -- P. Def. Modifiers
+(18117, 4413, 17), -- M. Def. Modifiers
+(18117, 4414, 3), -- Armor Type
+(18117, 4415, 5), -- Weapon Type
+(18117, 4416, 2), -- Races
 -- Treasures of the Festival
 (18118, 4045, 1), -- Resist Full Magic Attack
-(18118, 4408, 1), -- HP Increase (1x)
-(18118, 4409, 1), -- MP Increase (1x)
-(18118, 4410, 11), -- Average P. Atk.
-(18118, 4411, 11), -- Average M. Atk.
-(18118, 4412, 11), -- Average P. Def.
-(18118, 4413, 17), -- Very Strong M. Def.
-(18118, 4414, 3), -- Light Armor Type
-(18118, 4415, 5), -- Blunt Weapons
-(18118, 4416, 2), -- Magic Creatures
+(18118, 4408, 1), -- HP Modifiers
+(18118, 4409, 1), -- MP Modifiers
+(18118, 4410, 11), -- P. Atk. Modifiers
+(18118, 4411, 11), -- M. Atk. Modifiers
+(18118, 4412, 11), -- P. Def. Modifiers
+(18118, 4413, 17), -- M. Def. Modifiers
+(18118, 4414, 3), -- Armor Type
+(18118, 4415, 5), -- Weapon Type
+(18118, 4416, 2), -- Races
 -- Corpse of Deadman
-(18119, 4408, 1), -- HP Increase (1x)
-(18119, 4409, 1), -- MP Increase (1x)
-(18119, 4410, 11), -- Average P. Atk.
-(18119, 4411, 11), -- Average M. Atk.
-(18119, 4412, 11), -- Average P. Def.
-(18119, 4413, 11), -- Average M. Def.
-(18119, 4414, 2), -- Standard Type
-(18119, 4415, 3), -- One-handed Sword
-(18119, 4416, 1), -- Undead
+(18119, 4408, 1), -- HP Modifiers
+(18119, 4409, 1), -- MP Modifiers
+(18119, 4410, 11), -- P. Atk. Modifiers
+(18119, 4411, 11), -- M. Atk. Modifiers
+(18119, 4412, 11), -- P. Def. Modifiers
+(18119, 4413, 11), -- M. Def. Modifiers
+(18119, 4414, 2), -- Armor Type
+(18119, 4415, 3), -- Weapon Type
+(18119, 4416, 1), -- Races
 -- Halisha's Officer
-(18120, 4285, 5), -- Resist Sleep Attacks
-(18120, 4287, 5), -- Resist Hold Attacks
+(18120, 4285, 5), -- Resist Sleep
+(18120, 4287, 5), -- Resist Hold
 (18120, 4318, 1), -- Ultimate Buff
-(18120, 4340, 1), -- Ultimate Buff
-(18120, 4341, 1), -- Ultimate Buff
-(18120, 4408, 14), -- HP Increase (6x)
-(18120, 4409, 1), -- MP Increase (1x)
-(18120, 4410, 11), -- Average P. Atk.
-(18120, 4411, 11), -- Average M. Atk.
-(18120, 4412, 11), -- Average P. Def.
-(18120, 4413, 11), -- Average M. Def.
-(18120, 4414, 2), -- Standard Type
-(18120, 4415, 3), -- One-handed Sword
-(18120, 4416, 1), -- Undead
-(18120, 4572, 9), -- Triple Sonic Slash
+(18120, 4340, 1), -- Ultimate Buff, 2nd
+(18120, 4341, 1), -- Ultimate Buff, 3rd
+(18120, 4408, 14), -- HP Modifiers
+(18120, 4409, 1), -- MP Modifiers
+(18120, 4410, 11), -- P. Atk. Modifiers
+(18120, 4411, 11), -- M. Atk. Modifiers
+(18120, 4412, 11), -- P. Def. Modifiers
+(18120, 4413, 11), -- M. Def. Modifiers
+(18120, 4414, 2), -- Armor Type
+(18120, 4415, 3), -- Weapon Type
+(18120, 4416, 1), -- Races
+(18120, 4572, 9), -- NPC Triple Sonic Slash
 (18120, 4589, 9), -- Decrease Speed
 -- Halisha's Officer
-(18121, 4285, 5), -- Resist Sleep Attacks
-(18121, 4287, 5), -- Resist Hold Attacks
-(18121, 4408, 14), -- HP Increase (6x)
-(18121, 4409, 1), -- MP Increase (1x)
-(18121, 4410, 11), -- Average P. Atk.
-(18121, 4411, 11), -- Average M. Atk.
-(18121, 4412, 11), -- Average P. Def.
-(18121, 4413, 11), -- Average M. Def.
-(18121, 4414, 2), -- Standard Type
-(18121, 4415, 3), -- One-handed Sword
-(18121, 4416, 1), -- Undead
-(18121, 4572, 9), -- Triple Sonic Slash
+(18121, 4285, 5), -- Resist Sleep
+(18121, 4287, 5), -- Resist Hold
+(18121, 4408, 14), -- HP Modifiers
+(18121, 4409, 1), -- MP Modifiers
+(18121, 4410, 11), -- P. Atk. Modifiers
+(18121, 4411, 11), -- M. Atk. Modifiers
+(18121, 4412, 11), -- P. Def. Modifiers
+(18121, 4413, 11), -- M. Def. Modifiers
+(18121, 4414, 2), -- Armor Type
+(18121, 4415, 3), -- Weapon Type
+(18121, 4416, 1), -- Races
+(18121, 4572, 9), -- NPC Triple Sonic Slash
 (18121, 4589, 9), -- Decrease Speed
-(18121, 4694, 1), -- Absolute Curse
-(18121, 4695, 1), -- Absolute Curse
-(18121, 4696, 1), -- Absolute Curse
+(18121, 4694, 1), -- Ultimate Debuff
+(18121, 4695, 1), -- Ultimate Debuff
+(18121, 4696, 1), -- Ultimate Debuff
 -- Halisha's Officer
-(18122, 4408, 14), -- HP Increase (6x)
-(18122, 4409, 1), -- MP Increase (1x)
-(18122, 4410, 11), -- Average P. Atk.
-(18122, 4411, 11), -- Average M. Atk.
-(18122, 4412, 11), -- Average P. Def.
-(18122, 4413, 11), -- Average M. Def.
-(18122, 4414, 2), -- Standard Type
-(18122, 4415, 3), -- One-handed Sword
-(18122, 4416, 1), -- Undead
+(18122, 4408, 14), -- HP Modifiers
+(18122, 4409, 1), -- MP Modifiers
+(18122, 4410, 11), -- P. Atk. Modifiers
+(18122, 4411, 11), -- M. Atk. Modifiers
+(18122, 4412, 11), -- P. Def. Modifiers
+(18122, 4413, 11), -- M. Def. Modifiers
+(18122, 4414, 2), -- Armor Type
+(18122, 4415, 3), -- Weapon Type
+(18122, 4416, 1), -- Races
 (18122, 4438, 4), -- Greater Resist Sleep
 (18122, 4439, 4), -- Greater Resist Hold
-(18122, 4572, 9), -- Triple Sonic Slash
+(18122, 4572, 9), -- NPC Triple Sonic Slash
 (18122, 4589, 9), -- Decrease Speed
-(18122, 4618, 1), -- Target Cancellation
+(18122, 4618, 1), -- NPC Cancel PC Target
 (18122, 4657, 9), -- Hold
 -- Halisha's Officer
-(18123, 4285, 5), -- Resist Sleep Attacks
-(18123, 4287, 5), -- Resist Hold Attacks
+(18123, 4285, 5), -- Resist Sleep
+(18123, 4287, 5), -- Resist Hold
 (18123, 4318, 1), -- Ultimate Buff
-(18123, 4340, 1), -- Ultimate Buff
-(18123, 4341, 1), -- Ultimate Buff
-(18123, 4408, 14), -- HP Increase (6x)
-(18123, 4409, 1), -- MP Increase (1x)
-(18123, 4410, 11), -- Average P. Atk.
-(18123, 4411, 11), -- Average M. Atk.
-(18123, 4412, 11), -- Average P. Def.
-(18123, 4413, 11), -- Average M. Def.
-(18123, 4414, 2), -- Standard Type
-(18123, 4415, 3), -- One-handed Sword
-(18123, 4416, 1), -- Undead
-(18123, 4572, 9), -- Triple Sonic Slash
+(18123, 4340, 1), -- Ultimate Buff, 2nd
+(18123, 4341, 1), -- Ultimate Buff, 3rd
+(18123, 4408, 14), -- HP Modifiers
+(18123, 4409, 1), -- MP Modifiers
+(18123, 4410, 11), -- P. Atk. Modifiers
+(18123, 4411, 11), -- M. Atk. Modifiers
+(18123, 4412, 11), -- P. Def. Modifiers
+(18123, 4413, 11), -- M. Def. Modifiers
+(18123, 4414, 2), -- Armor Type
+(18123, 4415, 3), -- Weapon Type
+(18123, 4416, 1), -- Races
+(18123, 4572, 9), -- NPC Triple Sonic Slash
 (18123, 4589, 9), -- Decrease Speed
 -- Halisha's Officer
-(18124, 4285, 5), -- Resist Sleep Attacks
-(18124, 4287, 5), -- Resist Hold Attacks
-(18124, 4408, 14), -- HP Increase (6x)
-(18124, 4409, 1), -- MP Increase (1x)
-(18124, 4410, 11), -- Average P. Atk.
-(18124, 4411, 11), -- Average M. Atk.
-(18124, 4412, 11), -- Average P. Def.
-(18124, 4413, 11), -- Average M. Def.
-(18124, 4414, 2), -- Standard Type
-(18124, 4415, 3), -- One-handed Sword
-(18124, 4416, 1), -- Undead
-(18124, 4572, 9), -- Triple Sonic Slash
+(18124, 4285, 5), -- Resist Sleep
+(18124, 4287, 5), -- Resist Hold
+(18124, 4408, 14), -- HP Modifiers
+(18124, 4409, 1), -- MP Modifiers
+(18124, 4410, 11), -- P. Atk. Modifiers
+(18124, 4411, 11), -- M. Atk. Modifiers
+(18124, 4412, 11), -- P. Def. Modifiers
+(18124, 4413, 11), -- M. Def. Modifiers
+(18124, 4414, 2), -- Armor Type
+(18124, 4415, 3), -- Weapon Type
+(18124, 4416, 1), -- Races
+(18124, 4572, 9), -- NPC Triple Sonic Slash
 (18124, 4589, 9), -- Decrease Speed
-(18124, 4694, 1), -- Absolute Curse
-(18124, 4695, 1), -- Absolute Curse
-(18124, 4696, 1), -- Absolute Curse
+(18124, 4694, 1), -- Ultimate Debuff
+(18124, 4695, 1), -- Ultimate Debuff
+(18124, 4696, 1), -- Ultimate Debuff
 -- Halisha's Officer
-(18125, 4408, 14), -- HP Increase (6x)
-(18125, 4409, 1), -- MP Increase (1x)
-(18125, 4410, 11), -- Average P. Atk.
-(18125, 4411, 11), -- Average M. Atk.
-(18125, 4412, 11), -- Average P. Def.
-(18125, 4413, 11), -- Average M. Def.
-(18125, 4414, 2), -- Standard Type
-(18125, 4415, 3), -- One-handed Sword
-(18125, 4416, 1), -- Undead
+(18125, 4408, 14), -- HP Modifiers
+(18125, 4409, 1), -- MP Modifiers
+(18125, 4410, 11), -- P. Atk. Modifiers
+(18125, 4411, 11), -- M. Atk. Modifiers
+(18125, 4412, 11), -- P. Def. Modifiers
+(18125, 4413, 11), -- M. Def. Modifiers
+(18125, 4414, 2), -- Armor Type
+(18125, 4415, 3), -- Weapon Type
+(18125, 4416, 1), -- Races
 (18125, 4438, 4), -- Greater Resist Sleep
 (18125, 4439, 4), -- Greater Resist Hold
-(18125, 4572, 9), -- Triple Sonic Slash
+(18125, 4572, 9), -- NPC Triple Sonic Slash
 (18125, 4589, 9), -- Decrease Speed
-(18125, 4618, 1), -- Target Cancellation
+(18125, 4618, 1), -- NPC Cancel PC Target
 (18125, 4657, 9), -- Hold
 -- Halisha's Officer
-(18126, 4285, 5), -- Resist Sleep Attacks
-(18126, 4287, 5), -- Resist Hold Attacks
+(18126, 4285, 5), -- Resist Sleep
+(18126, 4287, 5), -- Resist Hold
 (18126, 4318, 1), -- Ultimate Buff
-(18126, 4340, 1), -- Ultimate Buff
-(18126, 4341, 1), -- Ultimate Buff
-(18126, 4408, 14), -- HP Increase (6x)
-(18126, 4409, 1), -- MP Increase (1x)
-(18126, 4410, 11), -- Average P. Atk.
-(18126, 4411, 11), -- Average M. Atk.
-(18126, 4412, 11), -- Average P. Def.
-(18126, 4413, 11), -- Average M. Def.
-(18126, 4414, 2), -- Standard Type
-(18126, 4415, 3), -- One-handed Sword
-(18126, 4416, 1), -- Undead
-(18126, 4572, 9), -- Triple Sonic Slash
+(18126, 4340, 1), -- Ultimate Buff, 2nd
+(18126, 4341, 1), -- Ultimate Buff, 3rd
+(18126, 4408, 14), -- HP Modifiers
+(18126, 4409, 1), -- MP Modifiers
+(18126, 4410, 11), -- P. Atk. Modifiers
+(18126, 4411, 11), -- M. Atk. Modifiers
+(18126, 4412, 11), -- P. Def. Modifiers
+(18126, 4413, 11), -- M. Def. Modifiers
+(18126, 4414, 2), -- Armor Type
+(18126, 4415, 3), -- Weapon Type
+(18126, 4416, 1), -- Races
+(18126, 4572, 9), -- NPC Triple Sonic Slash
 (18126, 4589, 9), -- Decrease Speed
 -- Halisha's Officer
-(18127, 4285, 5), -- Resist Sleep Attacks
-(18127, 4287, 5), -- Resist Hold Attacks
-(18127, 4408, 14), -- HP Increase (6x)
-(18127, 4409, 1), -- MP Increase (1x)
-(18127, 4410, 11), -- Average P. Atk.
-(18127, 4411, 11), -- Average M. Atk.
-(18127, 4412, 11), -- Average P. Def.
-(18127, 4413, 11), -- Average M. Def.
-(18127, 4414, 2), -- Standard Type
-(18127, 4415, 3), -- One-handed Sword
-(18127, 4416, 1), -- Undead
-(18127, 4572, 9), -- Triple Sonic Slash
+(18127, 4285, 5), -- Resist Sleep
+(18127, 4287, 5), -- Resist Hold
+(18127, 4408, 14), -- HP Modifiers
+(18127, 4409, 1), -- MP Modifiers
+(18127, 4410, 11), -- P. Atk. Modifiers
+(18127, 4411, 11), -- M. Atk. Modifiers
+(18127, 4412, 11), -- P. Def. Modifiers
+(18127, 4413, 11), -- M. Def. Modifiers
+(18127, 4414, 2), -- Armor Type
+(18127, 4415, 3), -- Weapon Type
+(18127, 4416, 1), -- Races
+(18127, 4572, 9), -- NPC Triple Sonic Slash
 (18127, 4589, 9), -- Decrease Speed
-(18127, 4694, 1), -- Absolute Curse
-(18127, 4695, 1), -- Absolute Curse
-(18127, 4696, 1), -- Absolute Curse
+(18127, 4694, 1), -- Ultimate Debuff
+(18127, 4695, 1), -- Ultimate Debuff
+(18127, 4696, 1), -- Ultimate Debuff
 -- Halisha's Officer
-(18128, 4408, 14), -- HP Increase (6x)
-(18128, 4409, 1), -- MP Increase (1x)
-(18128, 4410, 11), -- Average P. Atk.
-(18128, 4411, 11), -- Average M. Atk.
-(18128, 4412, 11), -- Average P. Def.
-(18128, 4413, 11), -- Average M. Def.
-(18128, 4414, 2), -- Standard Type
-(18128, 4415, 3), -- One-handed Sword
-(18128, 4416, 1), -- Undead
+(18128, 4408, 14), -- HP Modifiers
+(18128, 4409, 1), -- MP Modifiers
+(18128, 4410, 11), -- P. Atk. Modifiers
+(18128, 4411, 11), -- M. Atk. Modifiers
+(18128, 4412, 11), -- P. Def. Modifiers
+(18128, 4413, 11), -- M. Def. Modifiers
+(18128, 4414, 2), -- Armor Type
+(18128, 4415, 3), -- Weapon Type
+(18128, 4416, 1), -- Races
 (18128, 4438, 4), -- Greater Resist Sleep
 (18128, 4439, 4), -- Greater Resist Hold
-(18128, 4572, 9), -- Triple Sonic Slash
+(18128, 4572, 9), -- NPC Triple Sonic Slash
 (18128, 4589, 9), -- Decrease Speed
-(18128, 4618, 1), -- Target Cancellation
+(18128, 4618, 1), -- NPC Cancel PC Target
 (18128, 4657, 9), -- Hold
 -- Halisha's Officer
-(18129, 4285, 5), -- Resist Sleep Attacks
-(18129, 4287, 5), -- Resist Hold Attacks
+(18129, 4285, 5), -- Resist Sleep
+(18129, 4287, 5), -- Resist Hold
 (18129, 4318, 1), -- Ultimate Buff
-(18129, 4340, 1), -- Ultimate Buff
-(18129, 4341, 1), -- Ultimate Buff
-(18129, 4408, 14), -- HP Increase (6x)
-(18129, 4409, 1), -- MP Increase (1x)
-(18129, 4410, 11), -- Average P. Atk.
-(18129, 4411, 11), -- Average M. Atk.
-(18129, 4412, 11), -- Average P. Def.
-(18129, 4413, 11), -- Average M. Def.
-(18129, 4414, 2), -- Standard Type
-(18129, 4415, 3), -- One-handed Sword
-(18129, 4416, 1), -- Undead
-(18129, 4572, 9), -- Triple Sonic Slash
+(18129, 4340, 1), -- Ultimate Buff, 2nd
+(18129, 4341, 1), -- Ultimate Buff, 3rd
+(18129, 4408, 14), -- HP Modifiers
+(18129, 4409, 1), -- MP Modifiers
+(18129, 4410, 11), -- P. Atk. Modifiers
+(18129, 4411, 11), -- M. Atk. Modifiers
+(18129, 4412, 11), -- P. Def. Modifiers
+(18129, 4413, 11), -- M. Def. Modifiers
+(18129, 4414, 2), -- Armor Type
+(18129, 4415, 3), -- Weapon Type
+(18129, 4416, 1), -- Races
+(18129, 4572, 9), -- NPC Triple Sonic Slash
 (18129, 4589, 9), -- Decrease Speed
 -- Halisha's Officer
-(18130, 4285, 5), -- Resist Sleep Attacks
-(18130, 4287, 5), -- Resist Hold Attacks
-(18130, 4408, 14), -- HP Increase (6x)
-(18130, 4409, 1), -- MP Increase (1x)
-(18130, 4410, 11), -- Average P. Atk.
-(18130, 4411, 11), -- Average M. Atk.
-(18130, 4412, 11), -- Average P. Def.
-(18130, 4413, 11), -- Average M. Def.
-(18130, 4414, 2), -- Standard Type
-(18130, 4415, 3), -- One-handed Sword
-(18130, 4416, 1), -- Undead
-(18130, 4572, 9), -- Triple Sonic Slash
+(18130, 4285, 5), -- Resist Sleep
+(18130, 4287, 5), -- Resist Hold
+(18130, 4408, 14), -- HP Modifiers
+(18130, 4409, 1), -- MP Modifiers
+(18130, 4410, 11), -- P. Atk. Modifiers
+(18130, 4411, 11), -- M. Atk. Modifiers
+(18130, 4412, 11), -- P. Def. Modifiers
+(18130, 4413, 11), -- M. Def. Modifiers
+(18130, 4414, 2), -- Armor Type
+(18130, 4415, 3), -- Weapon Type
+(18130, 4416, 1), -- Races
+(18130, 4572, 9), -- NPC Triple Sonic Slash
 (18130, 4589, 9), -- Decrease Speed
-(18130, 4694, 1), -- Absolute Curse
-(18130, 4695, 1), -- Absolute Curse
-(18130, 4696, 1), -- Absolute Curse
+(18130, 4694, 1), -- Ultimate Debuff
+(18130, 4695, 1), -- Ultimate Debuff
+(18130, 4696, 1), -- Ultimate Debuff
 -- Halisha's Officer
-(18131, 4408, 14), -- HP Increase (6x)
-(18131, 4409, 1), -- MP Increase (1x)
-(18131, 4410, 11), -- Average P. Atk.
-(18131, 4411, 11), -- Average M. Atk.
-(18131, 4412, 11), -- Average P. Def.
-(18131, 4413, 11), -- Average M. Def.
-(18131, 4414, 2), -- Standard Type
-(18131, 4415, 3), -- One-handed Sword
-(18131, 4416, 1), -- Undead
+(18131, 4408, 14), -- HP Modifiers
+(18131, 4409, 1), -- MP Modifiers
+(18131, 4410, 11), -- P. Atk. Modifiers
+(18131, 4411, 11), -- M. Atk. Modifiers
+(18131, 4412, 11), -- P. Def. Modifiers
+(18131, 4413, 11), -- M. Def. Modifiers
+(18131, 4414, 2), -- Armor Type
+(18131, 4415, 3), -- Weapon Type
+(18131, 4416, 1), -- Races
 (18131, 4438, 4), -- Greater Resist Sleep
 (18131, 4439, 4), -- Greater Resist Hold
-(18131, 4572, 9), -- Triple Sonic Slash
+(18131, 4572, 9), -- NPC Triple Sonic Slash
 (18131, 4589, 9), -- Decrease Speed
-(18131, 4618, 1), -- Target Cancellation
+(18131, 4618, 1), -- NPC Cancel PC Target
 (18131, 4657, 9), -- Hold
 -- Imperial Healer
-(18132, 4071, 5), -- Resist Bow/Crossbow Weapons
-(18132, 4285, 5), -- Resist Sleep Attacks
-(18132, 4408, 14), -- HP Increase (6x)
-(18132, 4409, 1), -- MP Increase (1x)
-(18132, 4410, 11), -- Average P. Atk.
-(18132, 4411, 11), -- Average M. Atk.
-(18132, 4412, 11), -- Average P. Def.
-(18132, 4413, 17), -- Very Strong M. Def.
-(18132, 4414, 2), -- Standard Type
-(18132, 4415, 3), -- One-handed Sword
-(18132, 4416, 12), -- Bugs
-(18132, 4569, 9), -- Solar Flare
-(18132, 4613, 9), -- Clan Heal
+(18132, 4071, 5), -- Resist Archery
+(18132, 4285, 5), -- Resist Sleep
+(18132, 4408, 14), -- HP Modifiers
+(18132, 4409, 1), -- MP Modifiers
+(18132, 4410, 11), -- P. Atk. Modifiers
+(18132, 4411, 11), -- M. Atk. Modifiers
+(18132, 4412, 11), -- P. Def. Modifiers
+(18132, 4413, 17), -- M. Def. Modifiers
+(18132, 4414, 2), -- Armor Type
+(18132, 4415, 3), -- Weapon Type
+(18132, 4416, 12), -- Races
+(18132, 4569, 9), -- NPC AE Solar Flare - Magic
+(18132, 4613, 9), -- NPC Clan Heal
 (18132, 4640, 9), -- Sleep
 -- Imperial Mosaic
-(18133, 4408, 14), -- HP Increase (6x)
-(18133, 4409, 1), -- MP Increase (1x)
-(18133, 4410, 11), -- Average P. Atk.
-(18133, 4411, 11), -- Average M. Atk.
-(18133, 4412, 17), -- Very Strong P. Def.
-(18133, 4413, 11), -- Average M. Def.
-(18133, 4414, 2), -- Standard Type
-(18133, 4415, 7), -- Daggers
-(18133, 4416, 12), -- Bugs
+(18133, 4408, 14), -- HP Modifiers
+(18133, 4409, 1), -- MP Modifiers
+(18133, 4410, 11), -- P. Atk. Modifiers
+(18133, 4411, 11), -- M. Atk. Modifiers
+(18133, 4412, 17), -- P. Def. Modifiers
+(18133, 4413, 11), -- M. Def. Modifiers
+(18133, 4414, 2), -- Armor Type
+(18133, 4415, 7), -- Weapon Type
+(18133, 4416, 12), -- Races
 (18133, 4582, 9), -- Poison
 -- Imperial Mosaic
-(18134, 4285, 5), -- Resist Sleep Attacks
-(18134, 4408, 14), -- HP Increase (6x)
-(18134, 4409, 1), -- MP Increase (1x)
-(18134, 4410, 11), -- Average P. Atk.
-(18134, 4411, 11), -- Average M. Atk.
-(18134, 4412, 11), -- Average P. Def.
-(18134, 4413, 11), -- Average M. Def.
-(18134, 4414, 2), -- Standard Type
-(18134, 4415, 7), -- Daggers
-(18134, 4416, 12), -- Bugs
-(18134, 4573, 9), -- Sonic Blaster
+(18134, 4285, 5), -- Resist Sleep
+(18134, 4408, 14), -- HP Modifiers
+(18134, 4409, 1), -- MP Modifiers
+(18134, 4410, 11), -- P. Atk. Modifiers
+(18134, 4411, 11), -- M. Atk. Modifiers
+(18134, 4412, 11), -- P. Def. Modifiers
+(18134, 4413, 11), -- M. Def. Modifiers
+(18134, 4414, 2), -- Armor Type
+(18134, 4415, 7), -- Weapon Type
+(18134, 4416, 12), -- Races
+(18134, 4573, 9), -- NPC Sonic Blaster
 -- Imperial Mosaic
-(18135, 4032, 9), -- Power Strike
-(18135, 4408, 14), -- HP Increase (6x)
-(18135, 4409, 1), -- MP Increase (1x)
-(18135, 4410, 11), -- Average P. Atk.
-(18135, 4411, 11), -- Average M. Atk.
-(18135, 4412, 11), -- Average P. Def.
-(18135, 4413, 17), -- Very Strong M. Def.
-(18135, 4414, 2), -- Standard Type
-(18135, 4415, 7), -- Daggers
-(18135, 4416, 12), -- Bugs
-(18135, 4573, 9), -- Sonic Blaster
+(18135, 4032, 9), -- NPC Strike
+(18135, 4408, 14), -- HP Modifiers
+(18135, 4409, 1), -- MP Modifiers
+(18135, 4410, 11), -- P. Atk. Modifiers
+(18135, 4411, 11), -- M. Atk. Modifiers
+(18135, 4412, 11), -- P. Def. Modifiers
+(18135, 4413, 17), -- M. Def. Modifiers
+(18135, 4414, 2), -- Armor Type
+(18135, 4415, 7), -- Weapon Type
+(18135, 4416, 12), -- Races
+(18135, 4573, 9), -- NPC Sonic Blaster
 -- Imperial Mosaic
-(18136, 4091, 1), -- Spirit Ogre
-(18136, 4408, 14), -- HP Increase (6x)
-(18136, 4409, 1), -- MP Increase (1x)
-(18136, 4410, 11), -- Average P. Atk.
-(18136, 4411, 11), -- Average M. Atk.
-(18136, 4412, 11), -- Average P. Def.
-(18136, 4413, 17), -- Very Strong M. Def.
-(18136, 4414, 2), -- Standard Type
-(18136, 4415, 7), -- Daggers
-(18136, 4416, 12), -- Bugs
+(18136, 4091, 1), -- NPC Ogre Spirit Totem
+(18136, 4408, 14), -- HP Modifiers
+(18136, 4409, 1), -- MP Modifiers
+(18136, 4410, 11), -- P. Atk. Modifiers
+(18136, 4411, 11), -- M. Atk. Modifiers
+(18136, 4412, 11), -- P. Def. Modifiers
+(18136, 4413, 17), -- M. Def. Modifiers
+(18136, 4414, 2), -- Armor Type
+(18136, 4415, 7), -- Weapon Type
+(18136, 4416, 12), -- Races
 (18136, 4582, 9), -- Poison
 -- Imperial Mosaic
-(18137, 4160, 9), -- Aura Burn
-(18137, 4285, 5), -- Resist Sleep Attacks
-(18137, 4408, 14), -- HP Increase (6x)
-(18137, 4409, 1), -- MP Increase (1x)
-(18137, 4410, 11), -- Average P. Atk.
-(18137, 4411, 11), -- Average M. Atk.
-(18137, 4412, 11), -- Average P. Def.
-(18137, 4413, 11), -- Average M. Def.
-(18137, 4414, 2), -- Standard Type
-(18137, 4415, 5), -- Blunt Weapons
-(18137, 4416, 12), -- Bugs
-(18137, 4563, 9), -- Solar Flare
+(18137, 4160, 9), -- NPC Aura Burn - Magic
+(18137, 4285, 5), -- Resist Sleep
+(18137, 4408, 14), -- HP Modifiers
+(18137, 4409, 1), -- MP Modifiers
+(18137, 4410, 11), -- P. Atk. Modifiers
+(18137, 4411, 11), -- M. Atk. Modifiers
+(18137, 4412, 11), -- P. Def. Modifiers
+(18137, 4413, 11), -- M. Def. Modifiers
+(18137, 4414, 2), -- Armor Type
+(18137, 4415, 5), -- Weapon Type
+(18137, 4416, 12), -- Races
+(18137, 4563, 9), -- NPC Solar Flare - Magic
 -- Imperial Mosaic
-(18138, 4160, 9), -- Aura Burn
-(18138, 4408, 14), -- HP Increase (6x)
-(18138, 4409, 1), -- MP Increase (1x)
-(18138, 4410, 11), -- Average P. Atk.
-(18138, 4411, 11), -- Average M. Atk.
-(18138, 4412, 17), -- Very Strong P. Def.
-(18138, 4413, 11), -- Average M. Def.
-(18138, 4414, 2), -- Standard Type
-(18138, 4415, 5), -- Blunt Weapons
-(18138, 4416, 12), -- Bugs
-(18138, 4563, 9), -- Solar Flare
-(18138, 4609, 4), -- Vampiric Rage
+(18138, 4160, 9), -- NPC Aura Burn - Magic
+(18138, 4408, 14), -- HP Modifiers
+(18138, 4409, 1), -- MP Modifiers
+(18138, 4410, 11), -- P. Atk. Modifiers
+(18138, 4411, 11), -- M. Atk. Modifiers
+(18138, 4412, 17), -- P. Def. Modifiers
+(18138, 4413, 11), -- M. Def. Modifiers
+(18138, 4414, 2), -- Armor Type
+(18138, 4415, 5), -- Weapon Type
+(18138, 4416, 12), -- Races
+(18138, 4563, 9), -- NPC Solar Flare - Magic
+(18138, 4609, 4), -- NPC Clan Buff - Vampiric Rage
 -- Imperial Mosaic
-(18139, 4160, 9), -- Aura Burn
-(18139, 4408, 14), -- HP Increase (6x)
-(18139, 4409, 1), -- MP Increase (1x)
-(18139, 4410, 11), -- Average P. Atk.
-(18139, 4411, 11), -- Average M. Atk.
-(18139, 4412, 17), -- Very Strong P. Def.
-(18139, 4413, 11), -- Average M. Def.
-(18139, 4414, 2), -- Standard Type
-(18139, 4415, 5), -- Blunt Weapons
-(18139, 4416, 12), -- Bugs
-(18139, 4563, 9), -- Solar Flare
+(18139, 4160, 9), -- NPC Aura Burn - Magic
+(18139, 4408, 14), -- HP Modifiers
+(18139, 4409, 1), -- MP Modifiers
+(18139, 4410, 11), -- P. Atk. Modifiers
+(18139, 4411, 11), -- M. Atk. Modifiers
+(18139, 4412, 17), -- P. Def. Modifiers
+(18139, 4413, 11), -- M. Def. Modifiers
+(18139, 4414, 2), -- Armor Type
+(18139, 4415, 5), -- Weapon Type
+(18139, 4416, 12), -- Races
+(18139, 4563, 9), -- NPC Solar Flare - Magic
 (18139, 4587, 9), -- Decrease P. Atk.
 -- Imperial Mosaic
-(18140, 4033, 9), -- Aura Burn
-(18140, 4160, 9), -- Aura Burn
-(18140, 4408, 14), -- HP Increase (6x)
-(18140, 4409, 1), -- MP Increase (1x)
-(18140, 4410, 11), -- Average P. Atk.
-(18140, 4411, 11), -- Average M. Atk.
-(18140, 4412, 17), -- Very Strong P. Def.
-(18140, 4413, 11), -- Average M. Def.
-(18140, 4414, 2), -- Standard Type
-(18140, 4415, 5), -- Blunt Weapons
-(18140, 4416, 12), -- Bugs
+(18140, 4033, 9), -- NPC Burn
+(18140, 4160, 9), -- NPC Aura Burn - Magic
+(18140, 4408, 14), -- HP Modifiers
+(18140, 4409, 1), -- MP Modifiers
+(18140, 4410, 11), -- P. Atk. Modifiers
+(18140, 4411, 11), -- M. Atk. Modifiers
+(18140, 4412, 17), -- P. Def. Modifiers
+(18140, 4413, 11), -- M. Def. Modifiers
+(18140, 4414, 2), -- Armor Type
+(18140, 4415, 5), -- Weapon Type
+(18140, 4416, 12), -- Races
 -- Beetle of Grave
-(18141, 4285, 5), -- Resist Sleep Attacks
-(18141, 4287, 5), -- Resist Hold Attacks
-(18141, 4408, 12), -- HP Increase (4x)
-(18141, 4409, 1), -- MP Increase (1x)
-(18141, 4410, 11), -- Average P. Atk.
-(18141, 4411, 11), -- Average M. Atk.
-(18141, 4412, 11), -- Average P. Def.
-(18141, 4413, 11), -- Average M. Def.
-(18141, 4414, 2), -- Standard Type
-(18141, 4415, 5), -- Blunt Weapons
-(18141, 4416, 12), -- Bugs
-(18141, 4568, 9), -- Solar Flare
-(18141, 4572, 9), -- Triple Sonic Slash
-(18141, 4576, 3), -- Reflect Damage
+(18141, 4285, 5), -- Resist Sleep
+(18141, 4287, 5), -- Resist Hold
+(18141, 4408, 12), -- HP Modifiers
+(18141, 4409, 1), -- MP Modifiers
+(18141, 4410, 11), -- P. Atk. Modifiers
+(18141, 4411, 11), -- M. Atk. Modifiers
+(18141, 4412, 11), -- P. Def. Modifiers
+(18141, 4413, 11), -- M. Def. Modifiers
+(18141, 4414, 2), -- Armor Type
+(18141, 4415, 5), -- Weapon Type
+(18141, 4416, 12), -- Races
+(18141, 4568, 9), -- NPC AE Solar Flare
+(18141, 4572, 9), -- NPC Triple Sonic Slash
+(18141, 4576, 3), -- NPC Clan Buff - Damage Shield
 -- Beetle of Grave
-(18142, 4285, 5), -- Resist Sleep Attacks
-(18142, 4287, 5), -- Resist Hold Attacks
-(18142, 4408, 12), -- HP Increase (4x)
-(18142, 4409, 1), -- MP Increase (1x)
-(18142, 4410, 11), -- Average P. Atk.
-(18142, 4411, 11), -- Average M. Atk.
-(18142, 4412, 11), -- Average P. Def.
-(18142, 4413, 11), -- Average M. Def.
-(18142, 4414, 2), -- Standard Type
-(18142, 4415, 5), -- Blunt Weapons
-(18142, 4416, 12), -- Bugs
-(18142, 4568, 9), -- Solar Flare
-(18142, 4572, 9), -- Triple Sonic Slash
-(18142, 4576, 3), -- Reflect Damage
+(18142, 4285, 5), -- Resist Sleep
+(18142, 4287, 5), -- Resist Hold
+(18142, 4408, 12), -- HP Modifiers
+(18142, 4409, 1), -- MP Modifiers
+(18142, 4410, 11), -- P. Atk. Modifiers
+(18142, 4411, 11), -- M. Atk. Modifiers
+(18142, 4412, 11), -- P. Def. Modifiers
+(18142, 4413, 11), -- M. Def. Modifiers
+(18142, 4414, 2), -- Armor Type
+(18142, 4415, 5), -- Weapon Type
+(18142, 4416, 12), -- Races
+(18142, 4568, 9), -- NPC AE Solar Flare
+(18142, 4572, 9), -- NPC Triple Sonic Slash
+(18142, 4576, 3), -- NPC Clan Buff - Damage Shield
 -- Beetle of Grave
-(18143, 4285, 5), -- Resist Sleep Attacks
-(18143, 4287, 5), -- Resist Hold Attacks
-(18143, 4408, 12), -- HP Increase (4x)
-(18143, 4409, 1), -- MP Increase (1x)
-(18143, 4410, 11), -- Average P. Atk.
-(18143, 4411, 11), -- Average M. Atk.
-(18143, 4412, 11), -- Average P. Def.
-(18143, 4413, 11), -- Average M. Def.
-(18143, 4414, 2), -- Standard Type
-(18143, 4415, 5), -- Blunt Weapons
-(18143, 4416, 12), -- Bugs
-(18143, 4568, 9), -- Solar Flare
-(18143, 4572, 9), -- Triple Sonic Slash
-(18143, 4576, 3), -- Reflect Damage
+(18143, 4285, 5), -- Resist Sleep
+(18143, 4287, 5), -- Resist Hold
+(18143, 4408, 12), -- HP Modifiers
+(18143, 4409, 1), -- MP Modifiers
+(18143, 4410, 11), -- P. Atk. Modifiers
+(18143, 4411, 11), -- M. Atk. Modifiers
+(18143, 4412, 11), -- P. Def. Modifiers
+(18143, 4413, 11), -- M. Def. Modifiers
+(18143, 4414, 2), -- Armor Type
+(18143, 4415, 5), -- Weapon Type
+(18143, 4416, 12), -- Races
+(18143, 4568, 9), -- NPC AE Solar Flare
+(18143, 4572, 9), -- NPC Triple Sonic Slash
+(18143, 4576, 3), -- NPC Clan Buff - Damage Shield
 -- Beetle of Grave
-(18144, 4285, 5), -- Resist Sleep Attacks
-(18144, 4287, 5), -- Resist Hold Attacks
-(18144, 4408, 12), -- HP Increase (4x)
-(18144, 4409, 1), -- MP Increase (1x)
-(18144, 4410, 11), -- Average P. Atk.
-(18144, 4411, 11), -- Average M. Atk.
-(18144, 4412, 11), -- Average P. Def.
-(18144, 4413, 11), -- Average M. Def.
-(18144, 4414, 2), -- Standard Type
-(18144, 4415, 5), -- Blunt Weapons
-(18144, 4416, 12), -- Bugs
-(18144, 4568, 9), -- Solar Flare
-(18144, 4572, 9), -- Triple Sonic Slash
-(18144, 4576, 3), -- Reflect Damage
+(18144, 4285, 5), -- Resist Sleep
+(18144, 4287, 5), -- Resist Hold
+(18144, 4408, 12), -- HP Modifiers
+(18144, 4409, 1), -- MP Modifiers
+(18144, 4410, 11), -- P. Atk. Modifiers
+(18144, 4411, 11), -- M. Atk. Modifiers
+(18144, 4412, 11), -- P. Def. Modifiers
+(18144, 4413, 11), -- M. Def. Modifiers
+(18144, 4414, 2), -- Armor Type
+(18144, 4415, 5), -- Weapon Type
+(18144, 4416, 12), -- Races
+(18144, 4568, 9), -- NPC AE Solar Flare
+(18144, 4572, 9), -- NPC Triple Sonic Slash
+(18144, 4576, 3), -- NPC Clan Buff - Damage Shield
 -- Beetle of Grave
-(18145, 4031, 3), -- Might
-(18145, 4155, 9), -- Twister
-(18145, 4160, 9), -- Aura Burn
-(18145, 4285, 5), -- Resist Sleep Attacks
-(18145, 4408, 12), -- HP Increase (4x)
-(18145, 4409, 1), -- MP Increase (1x)
-(18145, 4410, 11), -- Average P. Atk.
-(18145, 4411, 11), -- Average M. Atk.
-(18145, 4412, 11), -- Average P. Def.
-(18145, 4413, 11), -- Average M. Def.
-(18145, 4414, 2), -- Standard Type
-(18145, 4415, 5), -- Blunt Weapons
-(18145, 4416, 12), -- Bugs
+(18145, 4031, 3), -- NPC Clan Aegis
+(18145, 4155, 9), -- NPC Twister - Magic
+(18145, 4160, 9), -- NPC Aura Burn - Magic
+(18145, 4285, 5), -- Resist Sleep
+(18145, 4408, 12), -- HP Modifiers
+(18145, 4409, 1), -- MP Modifiers
+(18145, 4410, 11), -- P. Atk. Modifiers
+(18145, 4411, 11), -- M. Atk. Modifiers
+(18145, 4412, 11), -- P. Def. Modifiers
+(18145, 4413, 11), -- M. Def. Modifiers
+(18145, 4414, 2), -- Armor Type
+(18145, 4415, 5), -- Weapon Type
+(18145, 4416, 12), -- Races
 -- Beetle of Grave
-(18146, 4032, 9), -- Power Strike
-(18146, 4285, 5), -- Resist Sleep Attacks
-(18146, 4408, 12), -- HP Increase (4x)
-(18146, 4409, 1), -- MP Increase (1x)
-(18146, 4410, 11), -- Average P. Atk.
-(18146, 4411, 11), -- Average M. Atk.
-(18146, 4412, 11), -- Average P. Def.
-(18146, 4413, 11), -- Average M. Def.
-(18146, 4414, 2), -- Standard Type
-(18146, 4415, 5), -- Blunt Weapons
-(18146, 4416, 12), -- Bugs
-(18146, 4573, 9), -- Sonic Blaster
+(18146, 4032, 9), -- NPC Strike
+(18146, 4285, 5), -- Resist Sleep
+(18146, 4408, 12), -- HP Modifiers
+(18146, 4409, 1), -- MP Modifiers
+(18146, 4410, 11), -- P. Atk. Modifiers
+(18146, 4411, 11), -- M. Atk. Modifiers
+(18146, 4412, 11), -- P. Def. Modifiers
+(18146, 4413, 11), -- M. Def. Modifiers
+(18146, 4414, 2), -- Armor Type
+(18146, 4415, 5), -- Weapon Type
+(18146, 4416, 12), -- Races
+(18146, 4573, 9), -- NPC Sonic Blaster
 -- Beetle of Grave
-(18147, 4155, 9), -- Twister
-(18147, 4160, 9), -- Aura Burn
-(18147, 4285, 5), -- Resist Sleep Attacks
-(18147, 4408, 12), -- HP Increase (4x)
-(18147, 4409, 1), -- MP Increase (1x)
-(18147, 4410, 11), -- Average P. Atk.
-(18147, 4411, 11), -- Average M. Atk.
-(18147, 4412, 11), -- Average P. Def.
-(18147, 4413, 11), -- Average M. Def.
-(18147, 4414, 2), -- Standard Type
-(18147, 4415, 5), -- Blunt Weapons
-(18147, 4416, 12), -- Bugs
+(18147, 4155, 9), -- NPC Twister - Magic
+(18147, 4160, 9), -- NPC Aura Burn - Magic
+(18147, 4285, 5), -- Resist Sleep
+(18147, 4408, 12), -- HP Modifiers
+(18147, 4409, 1), -- MP Modifiers
+(18147, 4410, 11), -- P. Atk. Modifiers
+(18147, 4411, 11), -- M. Atk. Modifiers
+(18147, 4412, 11), -- P. Def. Modifiers
+(18147, 4413, 11), -- M. Def. Modifiers
+(18147, 4414, 2), -- Armor Type
+(18147, 4415, 5), -- Weapon Type
+(18147, 4416, 12), -- Races
 -- Beetle of Grave
-(18148, 4074, 2), -- Haste
-(18148, 4285, 5), -- Resist Sleep Attacks
-(18148, 4408, 12), -- HP Increase (4x)
-(18148, 4409, 1), -- MP Increase (1x)
-(18148, 4410, 11), -- Average P. Atk.
-(18148, 4411, 11), -- Average M. Atk.
-(18148, 4412, 11), -- Average P. Def.
-(18148, 4413, 11), -- Average M. Def.
-(18148, 4414, 2), -- Standard Type
-(18148, 4415, 5), -- Blunt Weapons
-(18148, 4416, 12), -- Bugs
+(18148, 4074, 2), -- NPC Haste
+(18148, 4285, 5), -- Resist Sleep
+(18148, 4408, 12), -- HP Modifiers
+(18148, 4409, 1), -- MP Modifiers
+(18148, 4410, 11), -- P. Atk. Modifiers
+(18148, 4411, 11), -- M. Atk. Modifiers
+(18148, 4412, 11), -- P. Def. Modifiers
+(18148, 4413, 11), -- M. Def. Modifiers
+(18148, 4414, 2), -- Armor Type
+(18148, 4415, 5), -- Weapon Type
+(18148, 4416, 12), -- Races
 (18148, 4581, 9), -- Hold
 -- Beetle of Grave
-(18149, 4408, 12), -- HP Increase (4x)
-(18149, 4409, 1), -- MP Increase (1x)
-(18149, 4410, 11), -- Average P. Atk.
-(18149, 4411, 11), -- Average M. Atk.
-(18149, 4412, 11), -- Average P. Def.
-(18149, 4413, 11), -- Average M. Def.
-(18149, 4414, 2), -- Standard Type
-(18149, 4415, 5), -- Blunt Weapons
-(18149, 4416, 12), -- Bugs
+(18149, 4408, 12), -- HP Modifiers
+(18149, 4409, 1), -- MP Modifiers
+(18149, 4410, 11), -- P. Atk. Modifiers
+(18149, 4411, 11), -- M. Atk. Modifiers
+(18149, 4412, 11), -- P. Def. Modifiers
+(18149, 4413, 11), -- M. Def. Modifiers
+(18149, 4414, 2), -- Armor Type
+(18149, 4415, 5), -- Weapon Type
+(18149, 4416, 12), -- Races
 (18149, 4438, 4), -- Greater Resist Sleep
 (18149, 4439, 4), -- Greater Resist Hold
 (18149, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
-(18149, 4614, 9), -- Death Bomb
+(18149, 4614, 9), -- NPC Death Bomb
 -- Victim
-(18150, 4408, 1), -- HP Increase (1x)
-(18150, 4409, 1), -- MP Increase (1x)
-(18150, 4410, 11), -- Average P. Atk.
-(18150, 4411, 11), -- Average M. Atk.
-(18150, 4412, 11), -- Average P. Def.
-(18150, 4413, 11), -- Average M. Def.
-(18150, 4414, 2), -- Standard Type
-(18150, 4415, 3), -- One-handed Sword
-(18150, 4416, 14), -- Humans
-(18150, 4697, 9), -- Aggression
+(18150, 4408, 1), -- HP Modifiers
+(18150, 4409, 1), -- MP Modifiers
+(18150, 4410, 11), -- P. Atk. Modifiers
+(18150, 4411, 11), -- M. Atk. Modifiers
+(18150, 4412, 11), -- P. Def. Modifiers
+(18150, 4413, 11), -- M. Def. Modifiers
+(18150, 4414, 2), -- Armor Type
+(18150, 4415, 3), -- Weapon Type
+(18150, 4416, 14), -- Races
+(18150, 4697, 9), -- NPC Monster Hate
 -- Victim
-(18151, 4408, 1), -- HP Increase (1x)
-(18151, 4409, 1), -- MP Increase (1x)
-(18151, 4410, 11), -- Average P. Atk.
-(18151, 4411, 11), -- Average M. Atk.
-(18151, 4412, 11), -- Average P. Def.
-(18151, 4413, 11), -- Average M. Def.
-(18151, 4414, 2), -- Standard Type
-(18151, 4415, 3), -- One-handed Sword
-(18151, 4416, 14), -- Humans
-(18151, 4697, 9), -- Aggression
+(18151, 4408, 1), -- HP Modifiers
+(18151, 4409, 1), -- MP Modifiers
+(18151, 4410, 11), -- P. Atk. Modifiers
+(18151, 4411, 11), -- M. Atk. Modifiers
+(18151, 4412, 11), -- P. Def. Modifiers
+(18151, 4413, 11), -- M. Def. Modifiers
+(18151, 4414, 2), -- Armor Type
+(18151, 4415, 3), -- Weapon Type
+(18151, 4416, 14), -- Races
+(18151, 4697, 9), -- NPC Monster Hate
 -- Victim
-(18152, 4408, 1), -- HP Increase (1x)
-(18152, 4409, 1), -- MP Increase (1x)
-(18152, 4410, 11), -- Average P. Atk.
-(18152, 4411, 11), -- Average M. Atk.
-(18152, 4412, 11), -- Average P. Def.
-(18152, 4413, 11), -- Average M. Def.
-(18152, 4414, 2), -- Standard Type
-(18152, 4415, 3), -- One-handed Sword
-(18152, 4416, 14), -- Humans
-(18152, 4697, 9), -- Aggression
+(18152, 4408, 1), -- HP Modifiers
+(18152, 4409, 1), -- MP Modifiers
+(18152, 4410, 11), -- P. Atk. Modifiers
+(18152, 4411, 11), -- M. Atk. Modifiers
+(18152, 4412, 11), -- P. Def. Modifiers
+(18152, 4413, 11), -- M. Def. Modifiers
+(18152, 4414, 2), -- Armor Type
+(18152, 4415, 3), -- Weapon Type
+(18152, 4416, 14), -- Races
+(18152, 4697, 9), -- NPC Monster Hate
 -- Victim
-(18153, 4408, 1), -- HP Increase (1x)
-(18153, 4409, 1), -- MP Increase (1x)
-(18153, 4410, 11), -- Average P. Atk.
-(18153, 4411, 11), -- Average M. Atk.
-(18153, 4412, 11), -- Average P. Def.
-(18153, 4413, 11), -- Average M. Def.
-(18153, 4414, 2), -- Standard Type
-(18153, 4415, 3), -- One-handed Sword
-(18153, 4416, 14), -- Humans
-(18153, 4697, 9), -- Aggression
+(18153, 4408, 1), -- HP Modifiers
+(18153, 4409, 1), -- MP Modifiers
+(18153, 4410, 11), -- P. Atk. Modifiers
+(18153, 4411, 11), -- M. Atk. Modifiers
+(18153, 4412, 11), -- P. Def. Modifiers
+(18153, 4413, 11), -- M. Def. Modifiers
+(18153, 4414, 2), -- Armor Type
+(18153, 4415, 3), -- Weapon Type
+(18153, 4416, 14), -- Races
+(18153, 4697, 9), -- NPC Monster Hate
 -- Victim
-(18154, 4408, 1), -- HP Increase (1x)
-(18154, 4409, 1), -- MP Increase (1x)
-(18154, 4410, 11), -- Average P. Atk.
-(18154, 4411, 11), -- Average M. Atk.
-(18154, 4412, 11), -- Average P. Def.
-(18154, 4413, 11), -- Average M. Def.
-(18154, 4414, 2), -- Standard Type
-(18154, 4415, 3), -- One-handed Sword
-(18154, 4416, 14), -- Humans
-(18154, 4697, 9), -- Aggression
+(18154, 4408, 1), -- HP Modifiers
+(18154, 4409, 1), -- MP Modifiers
+(18154, 4410, 11), -- P. Atk. Modifiers
+(18154, 4411, 11), -- M. Atk. Modifiers
+(18154, 4412, 11), -- P. Def. Modifiers
+(18154, 4413, 11), -- M. Def. Modifiers
+(18154, 4414, 2), -- Armor Type
+(18154, 4415, 3), -- Weapon Type
+(18154, 4416, 14), -- Races
+(18154, 4697, 9), -- NPC Monster Hate
 -- Victim
-(18155, 4408, 1), -- HP Increase (1x)
-(18155, 4409, 1), -- MP Increase (1x)
-(18155, 4410, 11), -- Average P. Atk.
-(18155, 4411, 11), -- Average M. Atk.
-(18155, 4412, 11), -- Average P. Def.
-(18155, 4413, 11), -- Average M. Def.
-(18155, 4414, 2), -- Standard Type
-(18155, 4415, 3), -- One-handed Sword
-(18155, 4416, 14), -- Humans
-(18155, 4697, 9), -- Aggression
+(18155, 4408, 1), -- HP Modifiers
+(18155, 4409, 1), -- MP Modifiers
+(18155, 4410, 11), -- P. Atk. Modifiers
+(18155, 4411, 11), -- M. Atk. Modifiers
+(18155, 4412, 11), -- P. Def. Modifiers
+(18155, 4413, 11), -- M. Def. Modifiers
+(18155, 4414, 2), -- Armor Type
+(18155, 4415, 3), -- Weapon Type
+(18155, 4416, 14), -- Races
+(18155, 4697, 9), -- NPC Monster Hate
 -- Victim
-(18156, 4408, 1), -- HP Increase (1x)
-(18156, 4409, 1), -- MP Increase (1x)
-(18156, 4410, 11), -- Average P. Atk.
-(18156, 4411, 11), -- Average M. Atk.
-(18156, 4412, 11), -- Average P. Def.
-(18156, 4413, 11), -- Average M. Def.
-(18156, 4414, 2), -- Standard Type
-(18156, 4415, 3), -- One-handed Sword
-(18156, 4416, 14), -- Humans
-(18156, 4697, 9), -- Aggression
+(18156, 4408, 1), -- HP Modifiers
+(18156, 4409, 1), -- MP Modifiers
+(18156, 4410, 11), -- P. Atk. Modifiers
+(18156, 4411, 11), -- M. Atk. Modifiers
+(18156, 4412, 11), -- P. Def. Modifiers
+(18156, 4413, 11), -- M. Def. Modifiers
+(18156, 4414, 2), -- Armor Type
+(18156, 4415, 3), -- Weapon Type
+(18156, 4416, 14), -- Races
+(18156, 4697, 9), -- NPC Monster Hate
 -- Victim
-(18157, 4408, 1), -- HP Increase (1x)
-(18157, 4409, 1), -- MP Increase (1x)
-(18157, 4410, 11), -- Average P. Atk.
-(18157, 4411, 11), -- Average M. Atk.
-(18157, 4412, 11), -- Average P. Def.
-(18157, 4413, 11), -- Average M. Def.
-(18157, 4414, 2), -- Standard Type
-(18157, 4415, 3), -- One-handed Sword
-(18157, 4416, 14), -- Humans
-(18157, 4697, 9), -- Aggression
+(18157, 4408, 1), -- HP Modifiers
+(18157, 4409, 1), -- MP Modifiers
+(18157, 4410, 11), -- P. Atk. Modifiers
+(18157, 4411, 11), -- M. Atk. Modifiers
+(18157, 4412, 11), -- P. Def. Modifiers
+(18157, 4413, 11), -- M. Def. Modifiers
+(18157, 4414, 2), -- Armor Type
+(18157, 4415, 3), -- Weapon Type
+(18157, 4416, 14), -- Races
+(18157, 4697, 9), -- NPC Monster Hate
 -- Executioner of Halisha
 (18158, 4318, 1), -- Ultimate Buff
-(18158, 4408, 14), -- HP Increase (6x)
-(18158, 4409, 1), -- MP Increase (1x)
-(18158, 4410, 11), -- Average P. Atk.
-(18158, 4411, 11), -- Average M. Atk.
-(18158, 4412, 21), -- Extremely Strong P. Def.
-(18158, 4413, 16), -- Very Strong M. Def.
-(18158, 4414, 2), -- Standard Type
-(18158, 4415, 6), -- Blunt Weapons
-(18158, 4416, 9), -- Demons
+(18158, 4408, 14), -- HP Modifiers
+(18158, 4409, 1), -- MP Modifiers
+(18158, 4410, 11), -- P. Atk. Modifiers
+(18158, 4411, 11), -- M. Atk. Modifiers
+(18158, 4412, 21), -- P. Def. Modifiers
+(18158, 4413, 16), -- M. Def. Modifiers
+(18158, 4414, 2), -- Armor Type
+(18158, 4415, 6), -- Weapon Type
+(18158, 4416, 9), -- Races
 (18158, 4582, 9), -- Poison
-(18158, 4621, 9), -- Drain Health
+(18158, 4621, 9), -- NPC AE - 80% HP Drain
 -- Executioner of Halisha
 (18159, 4318, 1), -- Ultimate Buff
-(18159, 4408, 14), -- HP Increase (6x)
-(18159, 4409, 1), -- MP Increase (1x)
-(18159, 4410, 11), -- Average P. Atk.
-(18159, 4411, 11), -- Average M. Atk.
-(18159, 4412, 16), -- Very Strong P. Def.
-(18159, 4413, 21), -- Extremely Strong M. Def.
-(18159, 4414, 2), -- Standard Type
-(18159, 4415, 6), -- Blunt Weapons
-(18159, 4416, 9), -- Demons
+(18159, 4408, 14), -- HP Modifiers
+(18159, 4409, 1), -- MP Modifiers
+(18159, 4410, 11), -- P. Atk. Modifiers
+(18159, 4411, 11), -- M. Atk. Modifiers
+(18159, 4412, 16), -- P. Def. Modifiers
+(18159, 4413, 21), -- M. Def. Modifiers
+(18159, 4414, 2), -- Armor Type
+(18159, 4415, 6), -- Weapon Type
+(18159, 4416, 9), -- Races
 (18159, 4582, 9), -- Poison
 (18159, 4657, 9), -- Hold
 -- Executioner of Halisha
 (18160, 4318, 1), -- Ultimate Buff
-(18160, 4408, 14), -- HP Increase (6x)
-(18160, 4409, 1), -- MP Increase (1x)
-(18160, 4410, 11), -- Average P. Atk.
-(18160, 4411, 11), -- Average M. Atk.
-(18160, 4412, 21), -- Extremely Strong P. Def.
-(18160, 4413, 16), -- Very Strong M. Def.
-(18160, 4414, 2), -- Standard Type
-(18160, 4415, 6), -- Blunt Weapons
-(18160, 4416, 9), -- Demons
+(18160, 4408, 14), -- HP Modifiers
+(18160, 4409, 1), -- MP Modifiers
+(18160, 4410, 11), -- P. Atk. Modifiers
+(18160, 4411, 11), -- M. Atk. Modifiers
+(18160, 4412, 21), -- P. Def. Modifiers
+(18160, 4413, 16), -- M. Def. Modifiers
+(18160, 4414, 2), -- Armor Type
+(18160, 4415, 6), -- Weapon Type
+(18160, 4416, 9), -- Races
 (18160, 4582, 9), -- Poison
-(18160, 4621, 9), -- Drain Health
+(18160, 4621, 9), -- NPC AE - 80% HP Drain
 -- Executioner of Halisha
 (18161, 4318, 1), -- Ultimate Buff
-(18161, 4408, 14), -- HP Increase (6x)
-(18161, 4409, 1), -- MP Increase (1x)
-(18161, 4410, 11), -- Average P. Atk.
-(18161, 4411, 11), -- Average M. Atk.
-(18161, 4412, 16), -- Very Strong P. Def.
-(18161, 4413, 21), -- Extremely Strong M. Def.
-(18161, 4414, 2), -- Standard Type
-(18161, 4415, 6), -- Blunt Weapons
-(18161, 4416, 9), -- Demons
+(18161, 4408, 14), -- HP Modifiers
+(18161, 4409, 1), -- MP Modifiers
+(18161, 4410, 11), -- P. Atk. Modifiers
+(18161, 4411, 11), -- M. Atk. Modifiers
+(18161, 4412, 16), -- P. Def. Modifiers
+(18161, 4413, 21), -- M. Def. Modifiers
+(18161, 4414, 2), -- Armor Type
+(18161, 4415, 6), -- Weapon Type
+(18161, 4416, 9), -- Races
 (18161, 4582, 9), -- Poison
 (18161, 4657, 9), -- Hold
 -- Executioner of Halisha
 (18162, 4318, 1), -- Ultimate Buff
-(18162, 4408, 14), -- HP Increase (6x)
-(18162, 4409, 1), -- MP Increase (1x)
-(18162, 4410, 11), -- Average P. Atk.
-(18162, 4411, 11), -- Average M. Atk.
-(18162, 4412, 21), -- Extremely Strong P. Def.
-(18162, 4413, 16), -- Very Strong M. Def.
-(18162, 4414, 2), -- Standard Type
-(18162, 4415, 6), -- Blunt Weapons
-(18162, 4416, 9), -- Demons
+(18162, 4408, 14), -- HP Modifiers
+(18162, 4409, 1), -- MP Modifiers
+(18162, 4410, 11), -- P. Atk. Modifiers
+(18162, 4411, 11), -- M. Atk. Modifiers
+(18162, 4412, 21), -- P. Def. Modifiers
+(18162, 4413, 16), -- M. Def. Modifiers
+(18162, 4414, 2), -- Armor Type
+(18162, 4415, 6), -- Weapon Type
+(18162, 4416, 9), -- Races
 (18162, 4582, 9), -- Poison
-(18162, 4621, 9), -- Drain Health
+(18162, 4621, 9), -- NPC AE - 80% HP Drain
 -- Executioner of Halisha
 (18163, 4318, 1), -- Ultimate Buff
-(18163, 4408, 14), -- HP Increase (6x)
-(18163, 4409, 1), -- MP Increase (1x)
-(18163, 4410, 11), -- Average P. Atk.
-(18163, 4411, 11), -- Average M. Atk.
-(18163, 4412, 16), -- Very Strong P. Def.
-(18163, 4413, 21), -- Extremely Strong M. Def.
-(18163, 4414, 2), -- Standard Type
-(18163, 4415, 6), -- Blunt Weapons
-(18163, 4416, 9), -- Demons
+(18163, 4408, 14), -- HP Modifiers
+(18163, 4409, 1), -- MP Modifiers
+(18163, 4410, 11), -- P. Atk. Modifiers
+(18163, 4411, 11), -- M. Atk. Modifiers
+(18163, 4412, 16), -- P. Def. Modifiers
+(18163, 4413, 21), -- M. Def. Modifiers
+(18163, 4414, 2), -- Armor Type
+(18163, 4415, 6), -- Weapon Type
+(18163, 4416, 9), -- Races
 (18163, 4582, 9), -- Poison
 (18163, 4657, 9), -- Hold
 -- Executioner of Halisha
 (18164, 4318, 1), -- Ultimate Buff
-(18164, 4408, 14), -- HP Increase (6x)
-(18164, 4409, 1), -- MP Increase (1x)
-(18164, 4410, 11), -- Average P. Atk.
-(18164, 4411, 11), -- Average M. Atk.
-(18164, 4412, 21), -- Extremely Strong P. Def.
-(18164, 4413, 16), -- Very Strong M. Def.
-(18164, 4414, 2), -- Standard Type
-(18164, 4415, 6), -- Blunt Weapons
-(18164, 4416, 9), -- Demons
+(18164, 4408, 14), -- HP Modifiers
+(18164, 4409, 1), -- MP Modifiers
+(18164, 4410, 11), -- P. Atk. Modifiers
+(18164, 4411, 11), -- M. Atk. Modifiers
+(18164, 4412, 21), -- P. Def. Modifiers
+(18164, 4413, 16), -- M. Def. Modifiers
+(18164, 4414, 2), -- Armor Type
+(18164, 4415, 6), -- Weapon Type
+(18164, 4416, 9), -- Races
 (18164, 4582, 9), -- Poison
-(18164, 4621, 9), -- Drain Health
+(18164, 4621, 9), -- NPC AE - 80% HP Drain
 -- Executioner of Halisha
 (18165, 4318, 1), -- Ultimate Buff
-(18165, 4408, 14), -- HP Increase (6x)
-(18165, 4409, 1), -- MP Increase (1x)
-(18165, 4410, 11), -- Average P. Atk.
-(18165, 4411, 11), -- Average M. Atk.
-(18165, 4412, 16), -- Very Strong P. Def.
-(18165, 4413, 21), -- Extremely Strong M. Def.
-(18165, 4414, 2), -- Standard Type
-(18165, 4415, 6), -- Blunt Weapons
-(18165, 4416, 9), -- Demons
+(18165, 4408, 14), -- HP Modifiers
+(18165, 4409, 1), -- MP Modifiers
+(18165, 4410, 11), -- P. Atk. Modifiers
+(18165, 4411, 11), -- M. Atk. Modifiers
+(18165, 4412, 16), -- P. Def. Modifiers
+(18165, 4413, 21), -- M. Def. Modifiers
+(18165, 4414, 2), -- Armor Type
+(18165, 4415, 6), -- Weapon Type
+(18165, 4416, 9), -- Races
 (18165, 4582, 9), -- Poison
 (18165, 4657, 9), -- Hold
 -- Imperial Guard
-(18166, 4408, 14), -- HP Increase (6x)
-(18166, 4409, 1), -- MP Increase (1x)
-(18166, 4410, 11), -- Average P. Atk.
-(18166, 4411, 11), -- Average M. Atk.
-(18166, 4412, 11), -- Average P. Def.
-(18166, 4413, 11), -- Average M. Def.
-(18166, 4414, 2), -- Standard Type
-(18166, 4415, 3), -- One-handed Sword
-(18166, 4416, 1), -- Undead
-(18166, 4572, 9), -- Triple Sonic Slash
+(18166, 4408, 14), -- HP Modifiers
+(18166, 4409, 1), -- MP Modifiers
+(18166, 4410, 11), -- P. Atk. Modifiers
+(18166, 4411, 11), -- M. Atk. Modifiers
+(18166, 4412, 11), -- P. Def. Modifiers
+(18166, 4413, 11), -- M. Def. Modifiers
+(18166, 4414, 2), -- Armor Type
+(18166, 4415, 3), -- Weapon Type
+(18166, 4416, 1), -- Races
+(18166, 4572, 9), -- NPC Triple Sonic Slash
 -- Imperial Guard
-(18167, 4285, 5), -- Resist Sleep Attacks
-(18167, 4408, 14), -- HP Increase (6x)
-(18167, 4409, 1), -- MP Increase (1x)
-(18167, 4410, 11), -- Average P. Atk.
-(18167, 4411, 11), -- Average M. Atk.
-(18167, 4412, 11), -- Average P. Def.
-(18167, 4413, 11), -- Average M. Def.
-(18167, 4414, 2), -- Standard Type
-(18167, 4415, 3), -- One-handed Sword
-(18167, 4416, 1), -- Undead
-(18167, 4573, 9), -- Sonic Blaster
+(18167, 4285, 5), -- Resist Sleep
+(18167, 4408, 14), -- HP Modifiers
+(18167, 4409, 1), -- MP Modifiers
+(18167, 4410, 11), -- P. Atk. Modifiers
+(18167, 4411, 11), -- M. Atk. Modifiers
+(18167, 4412, 11), -- P. Def. Modifiers
+(18167, 4413, 11), -- M. Def. Modifiers
+(18167, 4414, 2), -- Armor Type
+(18167, 4415, 3), -- Weapon Type
+(18167, 4416, 1), -- Races
+(18167, 4573, 9), -- NPC Sonic Blaster
 -- Imperial Guard
-(18168, 4408, 14), -- HP Increase (6x)
-(18168, 4409, 1), -- MP Increase (1x)
-(18168, 4410, 11), -- Average P. Atk.
-(18168, 4411, 11), -- Average M. Atk.
-(18168, 4412, 11), -- Average P. Def.
-(18168, 4413, 11), -- Average M. Def.
-(18168, 4414, 2), -- Standard Type
-(18168, 4415, 3), -- One-handed Sword
-(18168, 4416, 1), -- Undead
-(18168, 4572, 9), -- Triple Sonic Slash
-(18168, 4573, 9), -- Sonic Blaster
+(18168, 4408, 14), -- HP Modifiers
+(18168, 4409, 1), -- MP Modifiers
+(18168, 4410, 11), -- P. Atk. Modifiers
+(18168, 4411, 11), -- M. Atk. Modifiers
+(18168, 4412, 11), -- P. Def. Modifiers
+(18168, 4413, 11), -- M. Def. Modifiers
+(18168, 4414, 2), -- Armor Type
+(18168, 4415, 3), -- Weapon Type
+(18168, 4416, 1), -- Races
+(18168, 4572, 9), -- NPC Triple Sonic Slash
+(18168, 4573, 9), -- NPC Sonic Blaster
 -- Imperial Guard
-(18169, 4091, 1), -- Spirit Ogre
-(18169, 4408, 14), -- HP Increase (6x)
-(18169, 4409, 1), -- MP Increase (1x)
-(18169, 4410, 11), -- Average P. Atk.
-(18169, 4411, 11), -- Average M. Atk.
-(18169, 4412, 11), -- Average P. Def.
-(18169, 4413, 11), -- Average M. Def.
-(18169, 4414, 2), -- Standard Type
-(18169, 4415, 3), -- One-handed Sword
-(18169, 4416, 1), -- Undead
-(18169, 4574, 9), -- Sonic Storm
+(18169, 4091, 1), -- NPC Ogre Spirit Totem
+(18169, 4408, 14), -- HP Modifiers
+(18169, 4409, 1), -- MP Modifiers
+(18169, 4410, 11), -- P. Atk. Modifiers
+(18169, 4411, 11), -- M. Atk. Modifiers
+(18169, 4412, 11), -- P. Def. Modifiers
+(18169, 4413, 11), -- M. Def. Modifiers
+(18169, 4414, 2), -- Armor Type
+(18169, 4415, 3), -- Weapon Type
+(18169, 4416, 1), -- Races
+(18169, 4574, 9), -- NPC Sonic Storm
 -- Imperial Guard
-(18170, 4285, 5), -- Resist Sleep Attacks
-(18170, 4408, 14), -- HP Increase (6x)
-(18170, 4409, 1), -- MP Increase (1x)
-(18170, 4410, 11), -- Average P. Atk.
-(18170, 4411, 11), -- Average M. Atk.
-(18170, 4412, 11), -- Average P. Def.
-(18170, 4413, 11), -- Average M. Def.
-(18170, 4414, 2), -- Standard Type
-(18170, 4415, 7), -- Daggers
-(18170, 4416, 1), -- Undead
-(18170, 4561, 9), -- Fire Burn
+(18170, 4285, 5), -- Resist Sleep
+(18170, 4408, 14), -- HP Modifiers
+(18170, 4409, 1), -- MP Modifiers
+(18170, 4410, 11), -- P. Atk. Modifiers
+(18170, 4411, 11), -- M. Atk. Modifiers
+(18170, 4412, 11), -- P. Def. Modifiers
+(18170, 4413, 11), -- M. Def. Modifiers
+(18170, 4414, 2), -- Armor Type
+(18170, 4415, 7), -- Weapon Type
+(18170, 4416, 1), -- Races
+(18170, 4561, 9), -- NPC Fire Burn - Magic
 (18170, 4603, 9), -- Decrease P. Atk.
 -- Imperial Guard
-(18171, 4408, 14), -- HP Increase (6x)
-(18171, 4409, 1), -- MP Increase (1x)
-(18171, 4410, 11), -- Average P. Atk.
-(18171, 4411, 11), -- Average M. Atk.
-(18171, 4412, 11), -- Average P. Def.
-(18171, 4413, 11), -- Average M. Def.
-(18171, 4414, 2), -- Standard Type
-(18171, 4415, 7), -- Daggers
-(18171, 4416, 1), -- Undead
-(18171, 4561, 9), -- Fire Burn
+(18171, 4408, 14), -- HP Modifiers
+(18171, 4409, 1), -- MP Modifiers
+(18171, 4410, 11), -- P. Atk. Modifiers
+(18171, 4411, 11), -- M. Atk. Modifiers
+(18171, 4412, 11), -- P. Def. Modifiers
+(18171, 4413, 11), -- M. Def. Modifiers
+(18171, 4414, 2), -- Armor Type
+(18171, 4415, 7), -- Weapon Type
+(18171, 4416, 1), -- Races
+(18171, 4561, 9), -- NPC Fire Burn - Magic
 (18171, 4603, 9), -- Decrease P. Atk.
-(18171, 4609, 4), -- Vampiric Rage
+(18171, 4609, 4), -- NPC Clan Buff - Vampiric Rage
 -- Imperial Guard
-(18172, 4408, 14), -- HP Increase (6x)
-(18172, 4409, 1), -- MP Increase (1x)
-(18172, 4410, 11), -- Average P. Atk.
-(18172, 4411, 11), -- Average M. Atk.
-(18172, 4412, 11), -- Average P. Def.
-(18172, 4413, 11), -- Average M. Def.
-(18172, 4414, 2), -- Standard Type
-(18172, 4415, 7), -- Daggers
-(18172, 4416, 1), -- Undead
-(18172, 4561, 9), -- Fire Burn
+(18172, 4408, 14), -- HP Modifiers
+(18172, 4409, 1), -- MP Modifiers
+(18172, 4410, 11), -- P. Atk. Modifiers
+(18172, 4411, 11), -- M. Atk. Modifiers
+(18172, 4412, 11), -- P. Def. Modifiers
+(18172, 4413, 11), -- M. Def. Modifiers
+(18172, 4414, 2), -- Armor Type
+(18172, 4415, 7), -- Weapon Type
+(18172, 4416, 1), -- Races
+(18172, 4561, 9), -- NPC Fire Burn - Magic
 (18172, 4589, 9), -- Decrease Speed
 -- Halisha's Foreman
-(18173, 4073, 9), -- Stun
-(18173, 4285, 5), -- Resist Sleep Attacks
-(18173, 4287, 5), -- Resist Hold Attacks
-(18173, 4408, 14), -- HP Increase (6x)
-(18173, 4409, 1), -- MP Increase (1x)
-(18173, 4410, 11), -- Average P. Atk.
-(18173, 4411, 11), -- Average M. Atk.
-(18173, 4412, 11), -- Average P. Def.
-(18173, 4413, 11), -- Average M. Def.
-(18173, 4414, 2), -- Standard Type
-(18173, 4415, 3), -- One-handed Sword
-(18173, 4416, 9), -- Demons
-(18173, 4565, 9), -- Rain of Fire
-(18173, 4601, 3), -- Acumen Focus
+(18173, 4073, 9), -- Shock
+(18173, 4285, 5), -- Resist Sleep
+(18173, 4287, 5), -- Resist Hold
+(18173, 4408, 14), -- HP Modifiers
+(18173, 4409, 1), -- MP Modifiers
+(18173, 4410, 11), -- P. Atk. Modifiers
+(18173, 4411, 11), -- M. Atk. Modifiers
+(18173, 4412, 11), -- P. Def. Modifiers
+(18173, 4413, 11), -- M. Def. Modifiers
+(18173, 4414, 2), -- Armor Type
+(18173, 4415, 3), -- Weapon Type
+(18173, 4416, 9), -- Races
+(18173, 4565, 9), -- NPC Eruption
+(18173, 4601, 3), -- NPC Clan Buff - Acumen Focus
 -- Halisha's Foreman
-(18174, 4073, 9), -- Stun
-(18174, 4285, 5), -- Resist Sleep Attacks
-(18174, 4287, 5), -- Resist Hold Attacks
-(18174, 4408, 14), -- HP Increase (6x)
-(18174, 4409, 1), -- MP Increase (1x)
-(18174, 4410, 11), -- Average P. Atk.
-(18174, 4411, 11), -- Average M. Atk.
-(18174, 4412, 11), -- Average P. Def.
-(18174, 4413, 11), -- Average M. Def.
-(18174, 4414, 2), -- Standard Type
-(18174, 4415, 3), -- One-handed Sword
-(18174, 4416, 9), -- Demons
+(18174, 4073, 9), -- Shock
+(18174, 4285, 5), -- Resist Sleep
+(18174, 4287, 5), -- Resist Hold
+(18174, 4408, 14), -- HP Modifiers
+(18174, 4409, 1), -- MP Modifiers
+(18174, 4410, 11), -- P. Atk. Modifiers
+(18174, 4411, 11), -- M. Atk. Modifiers
+(18174, 4412, 11), -- P. Def. Modifiers
+(18174, 4413, 11), -- M. Def. Modifiers
+(18174, 4414, 2), -- Armor Type
+(18174, 4415, 3), -- Weapon Type
+(18174, 4416, 9), -- Races
 (18174, 4589, 9), -- Decrease Speed
-(18174, 4694, 1), -- Absolute Curse
-(18174, 4695, 1), -- Absolute Curse
-(18174, 4696, 1), -- Absolute Curse
+(18174, 4694, 1), -- Ultimate Debuff
+(18174, 4695, 1), -- Ultimate Debuff
+(18174, 4696, 1), -- Ultimate Debuff
 -- Halisha's Foreman
-(18175, 4073, 9), -- Stun
-(18175, 4408, 14), -- HP Increase (6x)
-(18175, 4409, 1), -- MP Increase (1x)
-(18175, 4410, 11), -- Average P. Atk.
-(18175, 4411, 11), -- Average M. Atk.
-(18175, 4412, 11), -- Average P. Def.
-(18175, 4413, 11), -- Average M. Def.
-(18175, 4414, 2), -- Standard Type
-(18175, 4415, 3), -- One-handed Sword
-(18175, 4416, 9), -- Demons
+(18175, 4073, 9), -- Shock
+(18175, 4408, 14), -- HP Modifiers
+(18175, 4409, 1), -- MP Modifiers
+(18175, 4410, 11), -- P. Atk. Modifiers
+(18175, 4411, 11), -- M. Atk. Modifiers
+(18175, 4412, 11), -- P. Def. Modifiers
+(18175, 4413, 11), -- M. Def. Modifiers
+(18175, 4414, 2), -- Armor Type
+(18175, 4415, 3), -- Weapon Type
+(18175, 4416, 9), -- Races
 (18175, 4438, 4), -- Greater Resist Sleep
 (18175, 4439, 4), -- Greater Resist Hold
 (18175, 4589, 9), -- Decrease Speed
-(18175, 4618, 1), -- Target Cancellation
+(18175, 4618, 1), -- NPC Cancel PC Target
 (18175, 4657, 9), -- Hold
 -- Halisha's Foreman
-(18176, 4073, 9), -- Stun
-(18176, 4285, 5), -- Resist Sleep Attacks
-(18176, 4287, 5), -- Resist Hold Attacks
-(18176, 4408, 14), -- HP Increase (6x)
-(18176, 4409, 1), -- MP Increase (1x)
-(18176, 4410, 11), -- Average P. Atk.
-(18176, 4411, 11), -- Average M. Atk.
-(18176, 4412, 11), -- Average P. Def.
-(18176, 4413, 11), -- Average M. Def.
-(18176, 4414, 2), -- Standard Type
-(18176, 4415, 3), -- One-handed Sword
-(18176, 4416, 9), -- Demons
-(18176, 4565, 9), -- Rain of Fire
-(18176, 4601, 3), -- Acumen Focus
+(18176, 4073, 9), -- Shock
+(18176, 4285, 5), -- Resist Sleep
+(18176, 4287, 5), -- Resist Hold
+(18176, 4408, 14), -- HP Modifiers
+(18176, 4409, 1), -- MP Modifiers
+(18176, 4410, 11), -- P. Atk. Modifiers
+(18176, 4411, 11), -- M. Atk. Modifiers
+(18176, 4412, 11), -- P. Def. Modifiers
+(18176, 4413, 11), -- M. Def. Modifiers
+(18176, 4414, 2), -- Armor Type
+(18176, 4415, 3), -- Weapon Type
+(18176, 4416, 9), -- Races
+(18176, 4565, 9), -- NPC Eruption
+(18176, 4601, 3), -- NPC Clan Buff - Acumen Focus
 -- Halisha's Foreman
-(18177, 4073, 9), -- Stun
-(18177, 4285, 5), -- Resist Sleep Attacks
-(18177, 4287, 5), -- Resist Hold Attacks
-(18177, 4408, 14), -- HP Increase (6x)
-(18177, 4409, 1), -- MP Increase (1x)
-(18177, 4410, 11), -- Average P. Atk.
-(18177, 4411, 11), -- Average M. Atk.
-(18177, 4412, 11), -- Average P. Def.
-(18177, 4413, 11), -- Average M. Def.
-(18177, 4414, 2), -- Standard Type
-(18177, 4415, 3), -- One-handed Sword
-(18177, 4416, 9), -- Demons
+(18177, 4073, 9), -- Shock
+(18177, 4285, 5), -- Resist Sleep
+(18177, 4287, 5), -- Resist Hold
+(18177, 4408, 14), -- HP Modifiers
+(18177, 4409, 1), -- MP Modifiers
+(18177, 4410, 11), -- P. Atk. Modifiers
+(18177, 4411, 11), -- M. Atk. Modifiers
+(18177, 4412, 11), -- P. Def. Modifiers
+(18177, 4413, 11), -- M. Def. Modifiers
+(18177, 4414, 2), -- Armor Type
+(18177, 4415, 3), -- Weapon Type
+(18177, 4416, 9), -- Races
 (18177, 4589, 9), -- Decrease Speed
-(18177, 4694, 1), -- Absolute Curse
-(18177, 4695, 1), -- Absolute Curse
-(18177, 4696, 1), -- Absolute Curse
+(18177, 4694, 1), -- Ultimate Debuff
+(18177, 4695, 1), -- Ultimate Debuff
+(18177, 4696, 1), -- Ultimate Debuff
 -- Halisha's Foreman
-(18178, 4073, 9), -- Stun
-(18178, 4408, 14), -- HP Increase (6x)
-(18178, 4409, 1), -- MP Increase (1x)
-(18178, 4410, 11), -- Average P. Atk.
-(18178, 4411, 11), -- Average M. Atk.
-(18178, 4412, 11), -- Average P. Def.
-(18178, 4413, 11), -- Average M. Def.
-(18178, 4414, 2), -- Standard Type
-(18178, 4415, 3), -- One-handed Sword
-(18178, 4416, 9), -- Demons
+(18178, 4073, 9), -- Shock
+(18178, 4408, 14), -- HP Modifiers
+(18178, 4409, 1), -- MP Modifiers
+(18178, 4410, 11), -- P. Atk. Modifiers
+(18178, 4411, 11), -- M. Atk. Modifiers
+(18178, 4412, 11), -- P. Def. Modifiers
+(18178, 4413, 11), -- M. Def. Modifiers
+(18178, 4414, 2), -- Armor Type
+(18178, 4415, 3), -- Weapon Type
+(18178, 4416, 9), -- Races
 (18178, 4438, 4), -- Greater Resist Sleep
 (18178, 4439, 4), -- Greater Resist Hold
 (18178, 4589, 9), -- Decrease Speed
-(18178, 4618, 1), -- Target Cancellation
+(18178, 4618, 1), -- NPC Cancel PC Target
 (18178, 4657, 9), -- Hold
 -- Halisha's Foreman
-(18179, 4073, 9), -- Stun
-(18179, 4285, 5), -- Resist Sleep Attacks
-(18179, 4287, 5), -- Resist Hold Attacks
-(18179, 4408, 14), -- HP Increase (6x)
-(18179, 4409, 1), -- MP Increase (1x)
-(18179, 4410, 11), -- Average P. Atk.
-(18179, 4411, 11), -- Average M. Atk.
-(18179, 4412, 11), -- Average P. Def.
-(18179, 4413, 11), -- Average M. Def.
-(18179, 4414, 2), -- Standard Type
-(18179, 4415, 3), -- One-handed Sword
-(18179, 4416, 9), -- Demons
-(18179, 4565, 9), -- Rain of Fire
-(18179, 4601, 3), -- Acumen Focus
+(18179, 4073, 9), -- Shock
+(18179, 4285, 5), -- Resist Sleep
+(18179, 4287, 5), -- Resist Hold
+(18179, 4408, 14), -- HP Modifiers
+(18179, 4409, 1), -- MP Modifiers
+(18179, 4410, 11), -- P. Atk. Modifiers
+(18179, 4411, 11), -- M. Atk. Modifiers
+(18179, 4412, 11), -- P. Def. Modifiers
+(18179, 4413, 11), -- M. Def. Modifiers
+(18179, 4414, 2), -- Armor Type
+(18179, 4415, 3), -- Weapon Type
+(18179, 4416, 9), -- Races
+(18179, 4565, 9), -- NPC Eruption
+(18179, 4601, 3), -- NPC Clan Buff - Acumen Focus
 -- Halisha's Foreman
-(18180, 4073, 9), -- Stun
-(18180, 4285, 5), -- Resist Sleep Attacks
-(18180, 4287, 5), -- Resist Hold Attacks
-(18180, 4408, 14), -- HP Increase (6x)
-(18180, 4409, 1), -- MP Increase (1x)
-(18180, 4410, 11), -- Average P. Atk.
-(18180, 4411, 11), -- Average M. Atk.
-(18180, 4412, 11), -- Average P. Def.
-(18180, 4413, 11), -- Average M. Def.
-(18180, 4414, 2), -- Standard Type
-(18180, 4415, 3), -- One-handed Sword
-(18180, 4416, 9), -- Demons
+(18180, 4073, 9), -- Shock
+(18180, 4285, 5), -- Resist Sleep
+(18180, 4287, 5), -- Resist Hold
+(18180, 4408, 14), -- HP Modifiers
+(18180, 4409, 1), -- MP Modifiers
+(18180, 4410, 11), -- P. Atk. Modifiers
+(18180, 4411, 11), -- M. Atk. Modifiers
+(18180, 4412, 11), -- P. Def. Modifiers
+(18180, 4413, 11), -- M. Def. Modifiers
+(18180, 4414, 2), -- Armor Type
+(18180, 4415, 3), -- Weapon Type
+(18180, 4416, 9), -- Races
 (18180, 4589, 9), -- Decrease Speed
-(18180, 4694, 1), -- Absolute Curse
-(18180, 4695, 1), -- Absolute Curse
-(18180, 4696, 1), -- Absolute Curse
+(18180, 4694, 1), -- Ultimate Debuff
+(18180, 4695, 1), -- Ultimate Debuff
+(18180, 4696, 1), -- Ultimate Debuff
 -- Halisha's Foreman
-(18181, 4073, 9), -- Stun
-(18181, 4408, 14), -- HP Increase (6x)
-(18181, 4409, 1), -- MP Increase (1x)
-(18181, 4410, 11), -- Average P. Atk.
-(18181, 4411, 11), -- Average M. Atk.
-(18181, 4412, 11), -- Average P. Def.
-(18181, 4413, 11), -- Average M. Def.
-(18181, 4414, 2), -- Standard Type
-(18181, 4415, 3), -- One-handed Sword
-(18181, 4416, 9), -- Demons
+(18181, 4073, 9), -- Shock
+(18181, 4408, 14), -- HP Modifiers
+(18181, 4409, 1), -- MP Modifiers
+(18181, 4410, 11), -- P. Atk. Modifiers
+(18181, 4411, 11), -- M. Atk. Modifiers
+(18181, 4412, 11), -- P. Def. Modifiers
+(18181, 4413, 11), -- M. Def. Modifiers
+(18181, 4414, 2), -- Armor Type
+(18181, 4415, 3), -- Weapon Type
+(18181, 4416, 9), -- Races
 (18181, 4438, 4), -- Greater Resist Sleep
 (18181, 4439, 4), -- Greater Resist Hold
 (18181, 4589, 9), -- Decrease Speed
-(18181, 4618, 1), -- Target Cancellation
+(18181, 4618, 1), -- NPC Cancel PC Target
 (18181, 4657, 9), -- Hold
 -- Halisha's Foreman
-(18182, 4073, 9), -- Stun
-(18182, 4285, 5), -- Resist Sleep Attacks
-(18182, 4287, 5), -- Resist Hold Attacks
-(18182, 4408, 14), -- HP Increase (6x)
-(18182, 4409, 1), -- MP Increase (1x)
-(18182, 4410, 11), -- Average P. Atk.
-(18182, 4411, 11), -- Average M. Atk.
-(18182, 4412, 11), -- Average P. Def.
-(18182, 4413, 11), -- Average M. Def.
-(18182, 4414, 2), -- Standard Type
-(18182, 4415, 3), -- One-handed Sword
-(18182, 4416, 9), -- Demons
-(18182, 4565, 9), -- Rain of Fire
-(18182, 4601, 3), -- Acumen Focus
+(18182, 4073, 9), -- Shock
+(18182, 4285, 5), -- Resist Sleep
+(18182, 4287, 5), -- Resist Hold
+(18182, 4408, 14), -- HP Modifiers
+(18182, 4409, 1), -- MP Modifiers
+(18182, 4410, 11), -- P. Atk. Modifiers
+(18182, 4411, 11), -- M. Atk. Modifiers
+(18182, 4412, 11), -- P. Def. Modifiers
+(18182, 4413, 11), -- M. Def. Modifiers
+(18182, 4414, 2), -- Armor Type
+(18182, 4415, 3), -- Weapon Type
+(18182, 4416, 9), -- Races
+(18182, 4565, 9), -- NPC Eruption
+(18182, 4601, 3), -- NPC Clan Buff - Acumen Focus
 -- Halisha's Foreman
-(18183, 4073, 9), -- Stun
-(18183, 4285, 5), -- Resist Sleep Attacks
-(18183, 4287, 5), -- Resist Hold Attacks
-(18183, 4408, 14), -- HP Increase (6x)
-(18183, 4409, 1), -- MP Increase (1x)
-(18183, 4410, 11), -- Average P. Atk.
-(18183, 4411, 11), -- Average M. Atk.
-(18183, 4412, 11), -- Average P. Def.
-(18183, 4413, 11), -- Average M. Def.
-(18183, 4414, 2), -- Standard Type
-(18183, 4415, 3), -- One-handed Sword
-(18183, 4416, 9), -- Demons
+(18183, 4073, 9), -- Shock
+(18183, 4285, 5), -- Resist Sleep
+(18183, 4287, 5), -- Resist Hold
+(18183, 4408, 14), -- HP Modifiers
+(18183, 4409, 1), -- MP Modifiers
+(18183, 4410, 11), -- P. Atk. Modifiers
+(18183, 4411, 11), -- M. Atk. Modifiers
+(18183, 4412, 11), -- P. Def. Modifiers
+(18183, 4413, 11), -- M. Def. Modifiers
+(18183, 4414, 2), -- Armor Type
+(18183, 4415, 3), -- Weapon Type
+(18183, 4416, 9), -- Races
 (18183, 4589, 9), -- Decrease Speed
-(18183, 4694, 1), -- Absolute Curse
-(18183, 4695, 1), -- Absolute Curse
-(18183, 4696, 1), -- Absolute Curse
+(18183, 4694, 1), -- Ultimate Debuff
+(18183, 4695, 1), -- Ultimate Debuff
+(18183, 4696, 1), -- Ultimate Debuff
 -- Halisha's Foreman
-(18184, 4073, 9), -- Stun
-(18184, 4408, 14), -- HP Increase (6x)
-(18184, 4409, 1), -- MP Increase (1x)
-(18184, 4410, 11), -- Average P. Atk.
-(18184, 4411, 11), -- Average M. Atk.
-(18184, 4412, 11), -- Average P. Def.
-(18184, 4413, 11), -- Average M. Def.
-(18184, 4414, 2), -- Standard Type
-(18184, 4415, 3), -- One-handed Sword
-(18184, 4416, 9), -- Demons
+(18184, 4073, 9), -- Shock
+(18184, 4408, 14), -- HP Modifiers
+(18184, 4409, 1), -- MP Modifiers
+(18184, 4410, 11), -- P. Atk. Modifiers
+(18184, 4411, 11), -- M. Atk. Modifiers
+(18184, 4412, 11), -- P. Def. Modifiers
+(18184, 4413, 11), -- M. Def. Modifiers
+(18184, 4414, 2), -- Armor Type
+(18184, 4415, 3), -- Weapon Type
+(18184, 4416, 9), -- Races
 (18184, 4438, 4), -- Greater Resist Sleep
 (18184, 4439, 4), -- Greater Resist Hold
 (18184, 4589, 9), -- Decrease Speed
-(18184, 4618, 1), -- Target Cancellation
+(18184, 4618, 1), -- NPC Cancel PC Target
 (18184, 4657, 9), -- Hold
 -- Evil Astrologer
-(18185, 4033, 9), -- Aura Burn
+(18185, 4033, 9), -- NPC Burn
 (18185, 4036, 9), -- Poison
-(18185, 4071, 5), -- Resist Bow/Crossbow Weapons
-(18185, 4285, 5), -- Resist Sleep Attacks
-(18185, 4408, 14), -- HP Increase (6x)
-(18185, 4409, 1), -- MP Increase (1x)
-(18185, 4410, 11), -- Average P. Atk.
-(18185, 4411, 11), -- Average M. Atk.
-(18185, 4412, 11), -- Average P. Def.
-(18185, 4413, 17), -- Very Strong M. Def.
-(18185, 4414, 2), -- Standard Type
-(18185, 4415, 3), -- One-handed Sword
-(18185, 4416, 9), -- Demons
-(18185, 4613, 9), -- Clan Heal
+(18185, 4071, 5), -- Resist Archery
+(18185, 4285, 5), -- Resist Sleep
+(18185, 4408, 14), -- HP Modifiers
+(18185, 4409, 1), -- MP Modifiers
+(18185, 4410, 11), -- P. Atk. Modifiers
+(18185, 4411, 11), -- M. Atk. Modifiers
+(18185, 4412, 11), -- P. Def. Modifiers
+(18185, 4413, 17), -- M. Def. Modifiers
+(18185, 4414, 2), -- Armor Type
+(18185, 4415, 3), -- Weapon Type
+(18185, 4416, 9), -- Races
+(18185, 4613, 9), -- NPC Clan Heal
 -- Evil Astrologer
-(18186, 4033, 9), -- Aura Burn
-(18186, 4071, 5), -- Resist Bow/Crossbow Weapons
-(18186, 4285, 5), -- Resist Sleep Attacks
-(18186, 4408, 14), -- HP Increase (6x)
-(18186, 4409, 1), -- MP Increase (1x)
-(18186, 4410, 11), -- Average P. Atk.
-(18186, 4411, 11), -- Average M. Atk.
-(18186, 4412, 11), -- Average P. Def.
-(18186, 4413, 17), -- Very Strong M. Def.
-(18186, 4414, 2), -- Standard Type
-(18186, 4415, 3), -- One-handed Sword
-(18186, 4416, 9), -- Demons
+(18186, 4033, 9), -- NPC Burn
+(18186, 4071, 5), -- Resist Archery
+(18186, 4285, 5), -- Resist Sleep
+(18186, 4408, 14), -- HP Modifiers
+(18186, 4409, 1), -- MP Modifiers
+(18186, 4410, 11), -- P. Atk. Modifiers
+(18186, 4411, 11), -- M. Atk. Modifiers
+(18186, 4412, 11), -- P. Def. Modifiers
+(18186, 4413, 17), -- M. Def. Modifiers
+(18186, 4414, 2), -- Armor Type
+(18186, 4415, 3), -- Weapon Type
+(18186, 4416, 9), -- Races
 (18186, 4597, 9), -- Bleed
-(18186, 4613, 9), -- Clan Heal
+(18186, 4613, 9), -- NPC Clan Heal
 (18186, 4657, 9), -- Hold
 -- Knight of Darkness
-(18187, 4408, 14), -- HP Increase (6x)
-(18187, 4409, 1), -- MP Increase (1x)
-(18187, 4410, 11), -- Average P. Atk.
-(18187, 4411, 11), -- Average M. Atk.
-(18187, 4412, 17), -- Very Strong P. Def.
-(18187, 4413, 11), -- Average M. Def.
-(18187, 4414, 2), -- Standard Type
-(18187, 4415, 3), -- One-handed Sword
-(18187, 4416, 1), -- Undead
+(18187, 4408, 14), -- HP Modifiers
+(18187, 4409, 1), -- MP Modifiers
+(18187, 4410, 11), -- P. Atk. Modifiers
+(18187, 4411, 11), -- M. Atk. Modifiers
+(18187, 4412, 17), -- P. Def. Modifiers
+(18187, 4413, 11), -- M. Def. Modifiers
+(18187, 4414, 2), -- Armor Type
+(18187, 4415, 3), -- Weapon Type
+(18187, 4416, 1), -- Races
 (18187, 4582, 9), -- Poison
 -- Knight of Darkness
-(18188, 4408, 14), -- HP Increase (6x)
-(18188, 4409, 1), -- MP Increase (1x)
-(18188, 4410, 11), -- Average P. Atk.
-(18188, 4411, 11), -- Average M. Atk.
-(18188, 4412, 11), -- Average P. Def.
-(18188, 4413, 11), -- Average M. Def.
-(18188, 4414, 2), -- Standard Type
-(18188, 4415, 3), -- One-handed Sword
-(18188, 4416, 1), -- Undead
-(18188, 4573, 9), -- Sonic Blaster
+(18188, 4408, 14), -- HP Modifiers
+(18188, 4409, 1), -- MP Modifiers
+(18188, 4410, 11), -- P. Atk. Modifiers
+(18188, 4411, 11), -- M. Atk. Modifiers
+(18188, 4412, 11), -- P. Def. Modifiers
+(18188, 4413, 11), -- M. Def. Modifiers
+(18188, 4414, 2), -- Armor Type
+(18188, 4415, 3), -- Weapon Type
+(18188, 4416, 1), -- Races
+(18188, 4573, 9), -- NPC Sonic Blaster
 -- Knight of Darkness
-(18189, 4032, 9), -- Power Strike
-(18189, 4408, 14), -- HP Increase (6x)
-(18189, 4409, 1), -- MP Increase (1x)
-(18189, 4410, 11), -- Average P. Atk.
-(18189, 4411, 11), -- Average M. Atk.
-(18189, 4412, 11), -- Average P. Def.
-(18189, 4413, 17), -- Very Strong M. Def.
-(18189, 4414, 2), -- Standard Type
-(18189, 4415, 3), -- One-handed Sword
-(18189, 4416, 1), -- Undead
-(18189, 4573, 9), -- Sonic Blaster
+(18189, 4032, 9), -- NPC Strike
+(18189, 4408, 14), -- HP Modifiers
+(18189, 4409, 1), -- MP Modifiers
+(18189, 4410, 11), -- P. Atk. Modifiers
+(18189, 4411, 11), -- M. Atk. Modifiers
+(18189, 4412, 11), -- P. Def. Modifiers
+(18189, 4413, 17), -- M. Def. Modifiers
+(18189, 4414, 2), -- Armor Type
+(18189, 4415, 3), -- Weapon Type
+(18189, 4416, 1), -- Races
+(18189, 4573, 9), -- NPC Sonic Blaster
 -- Knight of Darkness
-(18190, 4091, 1), -- Spirit Ogre
-(18190, 4408, 14), -- HP Increase (6x)
-(18190, 4409, 1), -- MP Increase (1x)
-(18190, 4410, 11), -- Average P. Atk.
-(18190, 4411, 11), -- Average M. Atk.
-(18190, 4412, 11), -- Average P. Def.
-(18190, 4413, 17), -- Very Strong M. Def.
-(18190, 4414, 2), -- Standard Type
-(18190, 4415, 3), -- One-handed Sword
-(18190, 4416, 1), -- Undead
+(18190, 4091, 1), -- NPC Ogre Spirit Totem
+(18190, 4408, 14), -- HP Modifiers
+(18190, 4409, 1), -- MP Modifiers
+(18190, 4410, 11), -- P. Atk. Modifiers
+(18190, 4411, 11), -- M. Atk. Modifiers
+(18190, 4412, 11), -- P. Def. Modifiers
+(18190, 4413, 17), -- M. Def. Modifiers
+(18190, 4414, 2), -- Armor Type
+(18190, 4415, 3), -- Weapon Type
+(18190, 4416, 1), -- Races
 (18190, 4582, 9), -- Poison
 -- Witch of dust
-(18191, 4160, 9), -- Aura Burn
-(18191, 4408, 14), -- HP Increase (6x)
-(18191, 4409, 1), -- MP Increase (1x)
-(18191, 4410, 11), -- Average P. Atk.
-(18191, 4411, 11), -- Average M. Atk.
-(18191, 4412, 11), -- Average P. Def.
-(18191, 4413, 11), -- Average M. Def.
-(18191, 4414, 2), -- Standard Type
-(18191, 4415, 3), -- One-handed Sword
-(18191, 4416, 9), -- Demons
-(18191, 4563, 9), -- Solar Flare
+(18191, 4160, 9), -- NPC Aura Burn - Magic
+(18191, 4408, 14), -- HP Modifiers
+(18191, 4409, 1), -- MP Modifiers
+(18191, 4410, 11), -- P. Atk. Modifiers
+(18191, 4411, 11), -- M. Atk. Modifiers
+(18191, 4412, 11), -- P. Def. Modifiers
+(18191, 4413, 11), -- M. Def. Modifiers
+(18191, 4414, 2), -- Armor Type
+(18191, 4415, 3), -- Weapon Type
+(18191, 4416, 9), -- Races
+(18191, 4563, 9), -- NPC Solar Flare - Magic
 -- Witch of dust
-(18192, 4160, 9), -- Aura Burn
-(18192, 4408, 14), -- HP Increase (6x)
-(18192, 4409, 1), -- MP Increase (1x)
-(18192, 4410, 11), -- Average P. Atk.
-(18192, 4411, 11), -- Average M. Atk.
-(18192, 4412, 17), -- Very Strong P. Def.
-(18192, 4413, 11), -- Average M. Def.
-(18192, 4414, 2), -- Standard Type
-(18192, 4415, 3), -- One-handed Sword
-(18192, 4416, 9), -- Demons
-(18192, 4563, 9), -- Solar Flare
-(18192, 4609, 4), -- Vampiric Rage
+(18192, 4160, 9), -- NPC Aura Burn - Magic
+(18192, 4408, 14), -- HP Modifiers
+(18192, 4409, 1), -- MP Modifiers
+(18192, 4410, 11), -- P. Atk. Modifiers
+(18192, 4411, 11), -- M. Atk. Modifiers
+(18192, 4412, 17), -- P. Def. Modifiers
+(18192, 4413, 11), -- M. Def. Modifiers
+(18192, 4414, 2), -- Armor Type
+(18192, 4415, 3), -- Weapon Type
+(18192, 4416, 9), -- Races
+(18192, 4563, 9), -- NPC Solar Flare - Magic
+(18192, 4609, 4), -- NPC Clan Buff - Vampiric Rage
 -- Witch of dust
-(18193, 4160, 9), -- Aura Burn
-(18193, 4408, 14), -- HP Increase (6x)
-(18193, 4409, 1), -- MP Increase (1x)
-(18193, 4410, 11), -- Average P. Atk.
-(18193, 4411, 11), -- Average M. Atk.
-(18193, 4412, 17), -- Very Strong P. Def.
-(18193, 4413, 11), -- Average M. Def.
-(18193, 4414, 2), -- Standard Type
-(18193, 4415, 3), -- One-handed Sword
-(18193, 4416, 9), -- Demons
-(18193, 4563, 9), -- Solar Flare
+(18193, 4160, 9), -- NPC Aura Burn - Magic
+(18193, 4408, 14), -- HP Modifiers
+(18193, 4409, 1), -- MP Modifiers
+(18193, 4410, 11), -- P. Atk. Modifiers
+(18193, 4411, 11), -- M. Atk. Modifiers
+(18193, 4412, 17), -- P. Def. Modifiers
+(18193, 4413, 11), -- M. Def. Modifiers
+(18193, 4414, 2), -- Armor Type
+(18193, 4415, 3), -- Weapon Type
+(18193, 4416, 9), -- Races
+(18193, 4563, 9), -- NPC Solar Flare - Magic
 (18193, 4587, 9), -- Decrease P. Atk.
 -- Witch of dust
-(18194, 4033, 9), -- Aura Burn
-(18194, 4160, 9), -- Aura Burn
-(18194, 4408, 14), -- HP Increase (6x)
-(18194, 4409, 1), -- MP Increase (1x)
-(18194, 4410, 11), -- Average P. Atk.
-(18194, 4411, 11), -- Average M. Atk.
-(18194, 4412, 17), -- Very Strong P. Def.
-(18194, 4413, 11), -- Average M. Def.
-(18194, 4414, 2), -- Standard Type
-(18194, 4415, 3), -- One-handed Sword
-(18194, 4416, 9), -- Demons
+(18194, 4033, 9), -- NPC Burn
+(18194, 4160, 9), -- NPC Aura Burn - Magic
+(18194, 4408, 14), -- HP Modifiers
+(18194, 4409, 1), -- MP Modifiers
+(18194, 4410, 11), -- P. Atk. Modifiers
+(18194, 4411, 11), -- M. Atk. Modifiers
+(18194, 4412, 17), -- P. Def. Modifiers
+(18194, 4413, 11), -- M. Def. Modifiers
+(18194, 4414, 2), -- Armor Type
+(18194, 4415, 3), -- Weapon Type
+(18194, 4416, 9), -- Races
 -- Signet of Emperor
-(18195, 4408, 14), -- HP Increase (6x)
-(18195, 4409, 1), -- MP Increase (1x)
-(18195, 4410, 11), -- Average P. Atk.
-(18195, 4411, 11), -- Average M. Atk.
-(18195, 4412, 11), -- Average P. Def.
-(18195, 4413, 11), -- Average M. Def.
-(18195, 4414, 2), -- Standard Type
-(18195, 4415, 3), -- One-handed Sword
-(18195, 4416, 12), -- Bugs
+(18195, 4408, 14), -- HP Modifiers
+(18195, 4409, 1), -- MP Modifiers
+(18195, 4410, 11), -- P. Atk. Modifiers
+(18195, 4411, 11), -- M. Atk. Modifiers
+(18195, 4412, 11), -- P. Def. Modifiers
+(18195, 4413, 11), -- M. Def. Modifiers
+(18195, 4414, 2), -- Armor Type
+(18195, 4415, 3), -- Weapon Type
+(18195, 4416, 12), -- Races
 (18195, 4438, 4), -- Greater Resist Sleep
 (18195, 4439, 4), -- Greater Resist Hold
 (18195, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
-(18195, 4614, 9), -- Death Bomb
+(18195, 4614, 9), -- NPC Death Bomb
 -- Charm of Corner
-(18196, 4408, 14), -- HP Increase (6x)
-(18196, 4409, 1), -- MP Increase (1x)
-(18196, 4410, 11), -- Average P. Atk.
-(18196, 4411, 11), -- Average M. Atk.
-(18196, 4412, 20), -- Extremely Strong P. Def.
-(18196, 4413, 20), -- Extremely Strong M. Def.
-(18196, 4414, 2), -- Standard Type
-(18196, 4415, 3), -- One-handed Sword
-(18196, 4416, 2), -- Magic Creatures
+(18196, 4408, 14), -- HP Modifiers
+(18196, 4409, 1), -- MP Modifiers
+(18196, 4410, 11), -- P. Atk. Modifiers
+(18196, 4411, 11), -- M. Atk. Modifiers
+(18196, 4412, 20), -- P. Def. Modifiers
+(18196, 4413, 20), -- M. Def. Modifiers
+(18196, 4414, 2), -- Armor Type
+(18196, 4415, 3), -- Weapon Type
+(18196, 4416, 2), -- Races
 (18196, 4436, 5), -- Greater Resist Poison
 (18196, 4437, 5), -- Greater Resist Bleeding
 (18196, 4628, 1), -- Mysterious Aura
 -- Charm of Corner
-(18197, 4408, 14), -- HP Increase (6x)
-(18197, 4409, 1), -- MP Increase (1x)
-(18197, 4410, 11), -- Average P. Atk.
-(18197, 4411, 11), -- Average M. Atk.
-(18197, 4412, 20), -- Extremely Strong P. Def.
-(18197, 4413, 20), -- Extremely Strong M. Def.
-(18197, 4414, 2), -- Standard Type
-(18197, 4415, 3), -- One-handed Sword
-(18197, 4416, 2), -- Magic Creatures
+(18197, 4408, 14), -- HP Modifiers
+(18197, 4409, 1), -- MP Modifiers
+(18197, 4410, 11), -- P. Atk. Modifiers
+(18197, 4411, 11), -- M. Atk. Modifiers
+(18197, 4412, 20), -- P. Def. Modifiers
+(18197, 4413, 20), -- M. Def. Modifiers
+(18197, 4414, 2), -- Armor Type
+(18197, 4415, 3), -- Weapon Type
+(18197, 4416, 2), -- Races
 (18197, 4436, 5), -- Greater Resist Poison
 (18197, 4437, 5), -- Greater Resist Bleeding
 (18197, 4628, 1), -- Mysterious Aura
 -- Charm of Corner
-(18198, 4408, 14), -- HP Increase (6x)
-(18198, 4409, 1), -- MP Increase (1x)
-(18198, 4410, 11), -- Average P. Atk.
-(18198, 4411, 11), -- Average M. Atk.
-(18198, 4412, 20), -- Extremely Strong P. Def.
-(18198, 4413, 20), -- Extremely Strong M. Def.
-(18198, 4414, 2), -- Standard Type
-(18198, 4415, 3), -- One-handed Sword
-(18198, 4416, 2), -- Magic Creatures
+(18198, 4408, 14), -- HP Modifiers
+(18198, 4409, 1), -- MP Modifiers
+(18198, 4410, 11), -- P. Atk. Modifiers
+(18198, 4411, 11), -- M. Atk. Modifiers
+(18198, 4412, 20), -- P. Def. Modifiers
+(18198, 4413, 20), -- M. Def. Modifiers
+(18198, 4414, 2), -- Armor Type
+(18198, 4415, 3), -- Weapon Type
+(18198, 4416, 2), -- Races
 (18198, 4436, 5), -- Greater Resist Poison
 (18198, 4437, 5), -- Greater Resist Bleeding
 (18198, 4628, 1), -- Mysterious Aura
 -- Charm of Corner
-(18199, 4408, 14), -- HP Increase (6x)
-(18199, 4409, 1), -- MP Increase (1x)
-(18199, 4410, 11), -- Average P. Atk.
-(18199, 4411, 11), -- Average M. Atk.
-(18199, 4412, 20), -- Extremely Strong P. Def.
-(18199, 4413, 20), -- Extremely Strong M. Def.
-(18199, 4414, 2), -- Standard Type
-(18199, 4415, 3), -- One-handed Sword
-(18199, 4416, 2), -- Magic Creatures
+(18199, 4408, 14), -- HP Modifiers
+(18199, 4409, 1), -- MP Modifiers
+(18199, 4410, 11), -- P. Atk. Modifiers
+(18199, 4411, 11), -- M. Atk. Modifiers
+(18199, 4412, 20), -- P. Def. Modifiers
+(18199, 4413, 20), -- M. Def. Modifiers
+(18199, 4414, 2), -- Armor Type
+(18199, 4415, 3), -- Weapon Type
+(18199, 4416, 2), -- Races
 (18199, 4436, 5), -- Greater Resist Poison
 (18199, 4437, 5), -- Greater Resist Bleeding
 (18199, 4628, 1), -- Mysterious Aura
 -- Charm of Corner
-(18200, 4408, 14), -- HP Increase (6x)
-(18200, 4409, 1), -- MP Increase (1x)
-(18200, 4410, 11), -- Average P. Atk.
-(18200, 4411, 11), -- Average M. Atk.
-(18200, 4412, 20), -- Extremely Strong P. Def.
-(18200, 4413, 20), -- Extremely Strong M. Def.
-(18200, 4414, 2), -- Standard Type
-(18200, 4415, 3), -- One-handed Sword
-(18200, 4416, 2), -- Magic Creatures
+(18200, 4408, 14), -- HP Modifiers
+(18200, 4409, 1), -- MP Modifiers
+(18200, 4410, 11), -- P. Atk. Modifiers
+(18200, 4411, 11), -- M. Atk. Modifiers
+(18200, 4412, 20), -- P. Def. Modifiers
+(18200, 4413, 20), -- M. Def. Modifiers
+(18200, 4414, 2), -- Armor Type
+(18200, 4415, 3), -- Weapon Type
+(18200, 4416, 2), -- Races
 (18200, 4436, 5), -- Greater Resist Poison
 (18200, 4437, 5), -- Greater Resist Bleeding
 (18200, 4628, 1), -- Mysterious Aura
 -- Charm of Corner
-(18201, 4408, 14), -- HP Increase (6x)
-(18201, 4409, 1), -- MP Increase (1x)
-(18201, 4410, 11), -- Average P. Atk.
-(18201, 4411, 11), -- Average M. Atk.
-(18201, 4412, 20), -- Extremely Strong P. Def.
-(18201, 4413, 20), -- Extremely Strong M. Def.
-(18201, 4414, 2), -- Standard Type
-(18201, 4415, 3), -- One-handed Sword
-(18201, 4416, 2), -- Magic Creatures
+(18201, 4408, 14), -- HP Modifiers
+(18201, 4409, 1), -- MP Modifiers
+(18201, 4410, 11), -- P. Atk. Modifiers
+(18201, 4411, 11), -- M. Atk. Modifiers
+(18201, 4412, 20), -- P. Def. Modifiers
+(18201, 4413, 20), -- M. Def. Modifiers
+(18201, 4414, 2), -- Armor Type
+(18201, 4415, 3), -- Weapon Type
+(18201, 4416, 2), -- Races
 (18201, 4436, 5), -- Greater Resist Poison
 (18201, 4437, 5), -- Greater Resist Bleeding
 (18201, 4628, 1), -- Mysterious Aura
 -- Charm of Corner
-(18202, 4408, 14), -- HP Increase (6x)
-(18202, 4409, 1), -- MP Increase (1x)
-(18202, 4410, 11), -- Average P. Atk.
-(18202, 4411, 11), -- Average M. Atk.
-(18202, 4412, 20), -- Extremely Strong P. Def.
-(18202, 4413, 20), -- Extremely Strong M. Def.
-(18202, 4414, 2), -- Standard Type
-(18202, 4415, 3), -- One-handed Sword
-(18202, 4416, 2), -- Magic Creatures
+(18202, 4408, 14), -- HP Modifiers
+(18202, 4409, 1), -- MP Modifiers
+(18202, 4410, 11), -- P. Atk. Modifiers
+(18202, 4411, 11), -- M. Atk. Modifiers
+(18202, 4412, 20), -- P. Def. Modifiers
+(18202, 4413, 20), -- M. Def. Modifiers
+(18202, 4414, 2), -- Armor Type
+(18202, 4415, 3), -- Weapon Type
+(18202, 4416, 2), -- Races
 (18202, 4436, 5), -- Greater Resist Poison
 (18202, 4437, 5), -- Greater Resist Bleeding
 (18202, 4628, 1), -- Mysterious Aura
 -- Charm of Corner
-(18203, 4408, 14), -- HP Increase (6x)
-(18203, 4409, 1), -- MP Increase (1x)
-(18203, 4410, 11), -- Average P. Atk.
-(18203, 4411, 11), -- Average M. Atk.
-(18203, 4412, 20), -- Extremely Strong P. Def.
-(18203, 4413, 20), -- Extremely Strong M. Def.
-(18203, 4414, 2), -- Standard Type
-(18203, 4415, 3), -- One-handed Sword
-(18203, 4416, 2), -- Magic Creatures
+(18203, 4408, 14), -- HP Modifiers
+(18203, 4409, 1), -- MP Modifiers
+(18203, 4410, 11), -- P. Atk. Modifiers
+(18203, 4411, 11), -- M. Atk. Modifiers
+(18203, 4412, 20), -- P. Def. Modifiers
+(18203, 4413, 20), -- M. Def. Modifiers
+(18203, 4414, 2), -- Armor Type
+(18203, 4415, 3), -- Weapon Type
+(18203, 4416, 2), -- Races
 (18203, 4436, 5), -- Greater Resist Poison
 (18203, 4437, 5), -- Greater Resist Bleeding
 (18203, 4628, 1), -- Mysterious Aura
 -- Charm of Corner
-(18204, 4408, 14), -- HP Increase (6x)
-(18204, 4409, 1), -- MP Increase (1x)
-(18204, 4410, 11), -- Average P. Atk.
-(18204, 4411, 11), -- Average M. Atk.
-(18204, 4412, 20), -- Extremely Strong P. Def.
-(18204, 4413, 20), -- Extremely Strong M. Def.
-(18204, 4414, 2), -- Standard Type
-(18204, 4415, 3), -- One-handed Sword
-(18204, 4416, 2), -- Magic Creatures
+(18204, 4408, 14), -- HP Modifiers
+(18204, 4409, 1), -- MP Modifiers
+(18204, 4410, 11), -- P. Atk. Modifiers
+(18204, 4411, 11), -- M. Atk. Modifiers
+(18204, 4412, 20), -- P. Def. Modifiers
+(18204, 4413, 20), -- M. Def. Modifiers
+(18204, 4414, 2), -- Armor Type
+(18204, 4415, 3), -- Weapon Type
+(18204, 4416, 2), -- Races
 (18204, 4436, 5), -- Greater Resist Poison
 (18204, 4437, 5), -- Greater Resist Bleeding
 (18204, 4628, 1), -- Mysterious Aura
 -- Charm of Corner
-(18205, 4408, 14), -- HP Increase (6x)
-(18205, 4409, 1), -- MP Increase (1x)
-(18205, 4410, 11), -- Average P. Atk.
-(18205, 4411, 11), -- Average M. Atk.
-(18205, 4412, 20), -- Extremely Strong P. Def.
-(18205, 4413, 20), -- Extremely Strong M. Def.
-(18205, 4414, 2), -- Standard Type
-(18205, 4415, 3), -- One-handed Sword
-(18205, 4416, 2), -- Magic Creatures
+(18205, 4408, 14), -- HP Modifiers
+(18205, 4409, 1), -- MP Modifiers
+(18205, 4410, 11), -- P. Atk. Modifiers
+(18205, 4411, 11), -- M. Atk. Modifiers
+(18205, 4412, 20), -- P. Def. Modifiers
+(18205, 4413, 20), -- M. Def. Modifiers
+(18205, 4414, 2), -- Armor Type
+(18205, 4415, 3), -- Weapon Type
+(18205, 4416, 2), -- Races
 (18205, 4436, 5), -- Greater Resist Poison
 (18205, 4437, 5), -- Greater Resist Bleeding
 (18205, 4628, 1), -- Mysterious Aura
 -- Charm of Corner
-(18206, 4408, 14), -- HP Increase (6x)
-(18206, 4409, 1), -- MP Increase (1x)
-(18206, 4410, 11), -- Average P. Atk.
-(18206, 4411, 11), -- Average M. Atk.
-(18206, 4412, 20), -- Extremely Strong P. Def.
-(18206, 4413, 20), -- Extremely Strong M. Def.
-(18206, 4414, 2), -- Standard Type
-(18206, 4415, 3), -- One-handed Sword
-(18206, 4416, 2), -- Magic Creatures
+(18206, 4408, 14), -- HP Modifiers
+(18206, 4409, 1), -- MP Modifiers
+(18206, 4410, 11), -- P. Atk. Modifiers
+(18206, 4411, 11), -- M. Atk. Modifiers
+(18206, 4412, 20), -- P. Def. Modifiers
+(18206, 4413, 20), -- M. Def. Modifiers
+(18206, 4414, 2), -- Armor Type
+(18206, 4415, 3), -- Weapon Type
+(18206, 4416, 2), -- Races
 (18206, 4436, 5), -- Greater Resist Poison
 (18206, 4437, 5), -- Greater Resist Bleeding
 (18206, 4628, 1), -- Mysterious Aura
 -- Charm of Corner
-(18207, 4408, 14), -- HP Increase (6x)
-(18207, 4409, 1), -- MP Increase (1x)
-(18207, 4410, 11), -- Average P. Atk.
-(18207, 4411, 11), -- Average M. Atk.
-(18207, 4412, 20), -- Extremely Strong P. Def.
-(18207, 4413, 20), -- Extremely Strong M. Def.
-(18207, 4414, 2), -- Standard Type
-(18207, 4415, 3), -- One-handed Sword
-(18207, 4416, 2), -- Magic Creatures
+(18207, 4408, 14), -- HP Modifiers
+(18207, 4409, 1), -- MP Modifiers
+(18207, 4410, 11), -- P. Atk. Modifiers
+(18207, 4411, 11), -- M. Atk. Modifiers
+(18207, 4412, 20), -- P. Def. Modifiers
+(18207, 4413, 20), -- M. Def. Modifiers
+(18207, 4414, 2), -- Armor Type
+(18207, 4415, 3), -- Weapon Type
+(18207, 4416, 2), -- Races
 (18207, 4436, 5), -- Greater Resist Poison
 (18207, 4437, 5), -- Greater Resist Bleeding
 (18207, 4628, 1), -- Mysterious Aura
 -- Charm of Corner
-(18208, 4408, 14), -- HP Increase (6x)
-(18208, 4409, 1), -- MP Increase (1x)
-(18208, 4410, 11), -- Average P. Atk.
-(18208, 4411, 11), -- Average M. Atk.
-(18208, 4412, 20), -- Extremely Strong P. Def.
-(18208, 4413, 20), -- Extremely Strong M. Def.
-(18208, 4414, 2), -- Standard Type
-(18208, 4415, 3), -- One-handed Sword
-(18208, 4416, 2), -- Magic Creatures
+(18208, 4408, 14), -- HP Modifiers
+(18208, 4409, 1), -- MP Modifiers
+(18208, 4410, 11), -- P. Atk. Modifiers
+(18208, 4411, 11), -- M. Atk. Modifiers
+(18208, 4412, 20), -- P. Def. Modifiers
+(18208, 4413, 20), -- M. Def. Modifiers
+(18208, 4414, 2), -- Armor Type
+(18208, 4415, 3), -- Weapon Type
+(18208, 4416, 2), -- Races
 (18208, 4436, 5), -- Greater Resist Poison
 (18208, 4437, 5), -- Greater Resist Bleeding
 (18208, 4628, 1), -- Mysterious Aura
 -- Charm of Corner
-(18209, 4408, 14), -- HP Increase (6x)
-(18209, 4409, 1), -- MP Increase (1x)
-(18209, 4410, 11), -- Average P. Atk.
-(18209, 4411, 11), -- Average M. Atk.
-(18209, 4412, 20), -- Extremely Strong P. Def.
-(18209, 4413, 20), -- Extremely Strong M. Def.
-(18209, 4414, 2), -- Standard Type
-(18209, 4415, 3), -- One-handed Sword
-(18209, 4416, 2), -- Magic Creatures
+(18209, 4408, 14), -- HP Modifiers
+(18209, 4409, 1), -- MP Modifiers
+(18209, 4410, 11), -- P. Atk. Modifiers
+(18209, 4411, 11), -- M. Atk. Modifiers
+(18209, 4412, 20), -- P. Def. Modifiers
+(18209, 4413, 20), -- M. Def. Modifiers
+(18209, 4414, 2), -- Armor Type
+(18209, 4415, 3), -- Weapon Type
+(18209, 4416, 2), -- Races
 (18209, 4436, 5), -- Greater Resist Poison
 (18209, 4437, 5), -- Greater Resist Bleeding
 (18209, 4628, 1), -- Mysterious Aura
 -- Charm of Corner
-(18210, 4408, 14), -- HP Increase (6x)
-(18210, 4409, 1), -- MP Increase (1x)
-(18210, 4410, 11), -- Average P. Atk.
-(18210, 4411, 11), -- Average M. Atk.
-(18210, 4412, 20), -- Extremely Strong P. Def.
-(18210, 4413, 20), -- Extremely Strong M. Def.
-(18210, 4414, 2), -- Standard Type
-(18210, 4415, 3), -- One-handed Sword
-(18210, 4416, 2), -- Magic Creatures
+(18210, 4408, 14), -- HP Modifiers
+(18210, 4409, 1), -- MP Modifiers
+(18210, 4410, 11), -- P. Atk. Modifiers
+(18210, 4411, 11), -- M. Atk. Modifiers
+(18210, 4412, 20), -- P. Def. Modifiers
+(18210, 4413, 20), -- M. Def. Modifiers
+(18210, 4414, 2), -- Armor Type
+(18210, 4415, 3), -- Weapon Type
+(18210, 4416, 2), -- Races
 (18210, 4436, 5), -- Greater Resist Poison
 (18210, 4437, 5), -- Greater Resist Bleeding
 (18210, 4628, 1), -- Mysterious Aura
 -- Charm of Corner
-(18211, 4408, 14), -- HP Increase (6x)
-(18211, 4409, 1), -- MP Increase (1x)
-(18211, 4410, 11), -- Average P. Atk.
-(18211, 4411, 11), -- Average M. Atk.
-(18211, 4412, 20), -- Extremely Strong P. Def.
-(18211, 4413, 20), -- Extremely Strong M. Def.
-(18211, 4414, 2), -- Standard Type
-(18211, 4415, 3), -- One-handed Sword
-(18211, 4416, 2), -- Magic Creatures
+(18211, 4408, 14), -- HP Modifiers
+(18211, 4409, 1), -- MP Modifiers
+(18211, 4410, 11), -- P. Atk. Modifiers
+(18211, 4411, 11), -- M. Atk. Modifiers
+(18211, 4412, 20), -- P. Def. Modifiers
+(18211, 4413, 20), -- M. Def. Modifiers
+(18211, 4414, 2), -- Armor Type
+(18211, 4415, 3), -- Weapon Type
+(18211, 4416, 2), -- Races
 (18211, 4436, 5), -- Greater Resist Poison
 (18211, 4437, 5), -- Greater Resist Bleeding
 (18211, 4628, 1), -- Mysterious Aura
 -- Archon of Halisha
-(18212, 4285, 5), -- Resist Sleep Attacks
-(18212, 4287, 5), -- Resist Hold Attacks
-(18212, 4408, 14), -- HP Increase (6x)
-(18212, 4409, 1), -- MP Increase (1x)
-(18212, 4410, 11), -- Average P. Atk.
-(18212, 4411, 11), -- Average M. Atk.
-(18212, 4412, 20), -- Extremely Strong P. Def.
-(18212, 4413, 20), -- Extremely Strong M. Def.
-(18212, 4414, 2), -- Standard Type
-(18212, 4415, 4), -- One-handed Sword
-(18212, 4416, 9), -- Demons
+(18212, 4285, 5), -- Resist Sleep
+(18212, 4287, 5), -- Resist Hold
+(18212, 4408, 14), -- HP Modifiers
+(18212, 4409, 1), -- MP Modifiers
+(18212, 4410, 11), -- P. Atk. Modifiers
+(18212, 4411, 11), -- M. Atk. Modifiers
+(18212, 4412, 20), -- P. Def. Modifiers
+(18212, 4413, 20), -- M. Def. Modifiers
+(18212, 4414, 2), -- Armor Type
+(18212, 4415, 4), -- Weapon Type
+(18212, 4416, 9), -- Races
 (18212, 4589, 9), -- Decrease Speed
 (18212, 4605, 9), -- Surrender To Fire
-(18212, 4639, 3), -- Acumen Empower Berserker
+(18212, 4639, 3), -- NPC Clan Buff - Acumen Empower Berserk
 -- Archon of Halisha
-(18213, 4285, 5), -- Resist Sleep Attacks
-(18213, 4287, 5), -- Resist Hold Attacks
-(18213, 4408, 14), -- HP Increase (6x)
-(18213, 4409, 1), -- MP Increase (1x)
-(18213, 4410, 11), -- Average P. Atk.
-(18213, 4411, 11), -- Average M. Atk.
-(18213, 4412, 20), -- Extremely Strong P. Def.
-(18213, 4413, 20), -- Extremely Strong M. Def.
-(18213, 4414, 2), -- Standard Type
-(18213, 4415, 4), -- One-handed Sword
-(18213, 4416, 9), -- Demons
+(18213, 4285, 5), -- Resist Sleep
+(18213, 4287, 5), -- Resist Hold
+(18213, 4408, 14), -- HP Modifiers
+(18213, 4409, 1), -- MP Modifiers
+(18213, 4410, 11), -- P. Atk. Modifiers
+(18213, 4411, 11), -- M. Atk. Modifiers
+(18213, 4412, 20), -- P. Def. Modifiers
+(18213, 4413, 20), -- M. Def. Modifiers
+(18213, 4414, 2), -- Armor Type
+(18213, 4415, 4), -- Weapon Type
+(18213, 4416, 9), -- Races
 (18213, 4589, 9), -- Decrease Speed
 (18213, 4605, 9), -- Surrender To Fire
-(18213, 4639, 3), -- Acumen Empower Berserker
+(18213, 4639, 3), -- NPC Clan Buff - Acumen Empower Berserk
 -- Archon of Halisha
-(18214, 4285, 5), -- Resist Sleep Attacks
-(18214, 4287, 5), -- Resist Hold Attacks
-(18214, 4408, 14), -- HP Increase (6x)
-(18214, 4409, 1), -- MP Increase (1x)
-(18214, 4410, 11), -- Average P. Atk.
-(18214, 4411, 11), -- Average M. Atk.
-(18214, 4412, 20), -- Extremely Strong P. Def.
-(18214, 4413, 20), -- Extremely Strong M. Def.
-(18214, 4414, 2), -- Standard Type
-(18214, 4415, 4), -- One-handed Sword
-(18214, 4416, 9), -- Demons
+(18214, 4285, 5), -- Resist Sleep
+(18214, 4287, 5), -- Resist Hold
+(18214, 4408, 14), -- HP Modifiers
+(18214, 4409, 1), -- MP Modifiers
+(18214, 4410, 11), -- P. Atk. Modifiers
+(18214, 4411, 11), -- M. Atk. Modifiers
+(18214, 4412, 20), -- P. Def. Modifiers
+(18214, 4413, 20), -- M. Def. Modifiers
+(18214, 4414, 2), -- Armor Type
+(18214, 4415, 4), -- Weapon Type
+(18214, 4416, 9), -- Races
 (18214, 4589, 9), -- Decrease Speed
 (18214, 4605, 9), -- Surrender To Fire
-(18214, 4639, 3), -- Acumen Empower Berserker
+(18214, 4639, 3), -- NPC Clan Buff - Acumen Empower Berserk
 -- Archon of Halisha
-(18215, 4285, 5), -- Resist Sleep Attacks
-(18215, 4287, 5), -- Resist Hold Attacks
-(18215, 4408, 14), -- HP Increase (6x)
-(18215, 4409, 1), -- MP Increase (1x)
-(18215, 4410, 11), -- Average P. Atk.
-(18215, 4411, 11), -- Average M. Atk.
-(18215, 4412, 20), -- Extremely Strong P. Def.
-(18215, 4413, 20), -- Extremely Strong M. Def.
-(18215, 4414, 2), -- Standard Type
-(18215, 4415, 4), -- One-handed Sword
-(18215, 4416, 9), -- Demons
+(18215, 4285, 5), -- Resist Sleep
+(18215, 4287, 5), -- Resist Hold
+(18215, 4408, 14), -- HP Modifiers
+(18215, 4409, 1), -- MP Modifiers
+(18215, 4410, 11), -- P. Atk. Modifiers
+(18215, 4411, 11), -- M. Atk. Modifiers
+(18215, 4412, 20), -- P. Def. Modifiers
+(18215, 4413, 20), -- M. Def. Modifiers
+(18215, 4414, 2), -- Armor Type
+(18215, 4415, 4), -- Weapon Type
+(18215, 4416, 9), -- Races
 (18215, 4589, 9), -- Decrease Speed
 (18215, 4605, 9), -- Surrender To Fire
-(18215, 4639, 3), -- Acumen Empower Berserker
+(18215, 4639, 3), -- NPC Clan Buff - Acumen Empower Berserk
 -- Archon of Halisha
-(18216, 4285, 5), -- Resist Sleep Attacks
-(18216, 4287, 5), -- Resist Hold Attacks
-(18216, 4408, 14), -- HP Increase (6x)
-(18216, 4409, 1), -- MP Increase (1x)
-(18216, 4410, 11), -- Average P. Atk.
-(18216, 4411, 11), -- Average M. Atk.
-(18216, 4412, 20), -- Extremely Strong P. Def.
-(18216, 4413, 20), -- Extremely Strong M. Def.
-(18216, 4414, 2), -- Standard Type
-(18216, 4415, 4), -- One-handed Sword
-(18216, 4416, 9), -- Demons
+(18216, 4285, 5), -- Resist Sleep
+(18216, 4287, 5), -- Resist Hold
+(18216, 4408, 14), -- HP Modifiers
+(18216, 4409, 1), -- MP Modifiers
+(18216, 4410, 11), -- P. Atk. Modifiers
+(18216, 4411, 11), -- M. Atk. Modifiers
+(18216, 4412, 20), -- P. Def. Modifiers
+(18216, 4413, 20), -- M. Def. Modifiers
+(18216, 4414, 2), -- Armor Type
+(18216, 4415, 4), -- Weapon Type
+(18216, 4416, 9), -- Races
 (18216, 4589, 9), -- Decrease Speed
 (18216, 4605, 9), -- Surrender To Fire
-(18216, 4639, 3), -- Acumen Empower Berserker
+(18216, 4639, 3), -- NPC Clan Buff - Acumen Empower Berserk
 -- Archon of Halisha
-(18217, 4285, 5), -- Resist Sleep Attacks
-(18217, 4287, 5), -- Resist Hold Attacks
-(18217, 4408, 14), -- HP Increase (6x)
-(18217, 4409, 1), -- MP Increase (1x)
-(18217, 4410, 11), -- Average P. Atk.
-(18217, 4411, 11), -- Average M. Atk.
-(18217, 4412, 20), -- Extremely Strong P. Def.
-(18217, 4413, 20), -- Extremely Strong M. Def.
-(18217, 4414, 2), -- Standard Type
-(18217, 4415, 4), -- One-handed Sword
-(18217, 4416, 9), -- Demons
+(18217, 4285, 5), -- Resist Sleep
+(18217, 4287, 5), -- Resist Hold
+(18217, 4408, 14), -- HP Modifiers
+(18217, 4409, 1), -- MP Modifiers
+(18217, 4410, 11), -- P. Atk. Modifiers
+(18217, 4411, 11), -- M. Atk. Modifiers
+(18217, 4412, 20), -- P. Def. Modifiers
+(18217, 4413, 20), -- M. Def. Modifiers
+(18217, 4414, 2), -- Armor Type
+(18217, 4415, 4), -- Weapon Type
+(18217, 4416, 9), -- Races
 (18217, 4589, 9), -- Decrease Speed
 (18217, 4605, 9), -- Surrender To Fire
-(18217, 4639, 3), -- Acumen Empower Berserker
+(18217, 4639, 3), -- NPC Clan Buff - Acumen Empower Berserk
 -- Archon of Halisha
-(18218, 4285, 5), -- Resist Sleep Attacks
-(18218, 4287, 5), -- Resist Hold Attacks
-(18218, 4408, 14), -- HP Increase (6x)
-(18218, 4409, 1), -- MP Increase (1x)
-(18218, 4410, 11), -- Average P. Atk.
-(18218, 4411, 11), -- Average M. Atk.
-(18218, 4412, 20), -- Extremely Strong P. Def.
-(18218, 4413, 20), -- Extremely Strong M. Def.
-(18218, 4414, 2), -- Standard Type
-(18218, 4415, 4), -- One-handed Sword
-(18218, 4416, 9), -- Demons
+(18218, 4285, 5), -- Resist Sleep
+(18218, 4287, 5), -- Resist Hold
+(18218, 4408, 14), -- HP Modifiers
+(18218, 4409, 1), -- MP Modifiers
+(18218, 4410, 11), -- P. Atk. Modifiers
+(18218, 4411, 11), -- M. Atk. Modifiers
+(18218, 4412, 20), -- P. Def. Modifiers
+(18218, 4413, 20), -- M. Def. Modifiers
+(18218, 4414, 2), -- Armor Type
+(18218, 4415, 4), -- Weapon Type
+(18218, 4416, 9), -- Races
 (18218, 4589, 9), -- Decrease Speed
 (18218, 4605, 9), -- Surrender To Fire
-(18218, 4639, 3), -- Acumen Empower Berserker
+(18218, 4639, 3), -- NPC Clan Buff - Acumen Empower Berserk
 -- Archon of Halisha
-(18219, 4285, 5), -- Resist Sleep Attacks
-(18219, 4287, 5), -- Resist Hold Attacks
-(18219, 4408, 14), -- HP Increase (6x)
-(18219, 4409, 1), -- MP Increase (1x)
-(18219, 4410, 11), -- Average P. Atk.
-(18219, 4411, 11), -- Average M. Atk.
-(18219, 4412, 20), -- Extremely Strong P. Def.
-(18219, 4413, 20), -- Extremely Strong M. Def.
-(18219, 4414, 2), -- Standard Type
-(18219, 4415, 4), -- One-handed Sword
-(18219, 4416, 9), -- Demons
+(18219, 4285, 5), -- Resist Sleep
+(18219, 4287, 5), -- Resist Hold
+(18219, 4408, 14), -- HP Modifiers
+(18219, 4409, 1), -- MP Modifiers
+(18219, 4410, 11), -- P. Atk. Modifiers
+(18219, 4411, 11), -- M. Atk. Modifiers
+(18219, 4412, 20), -- P. Def. Modifiers
+(18219, 4413, 20), -- M. Def. Modifiers
+(18219, 4414, 2), -- Armor Type
+(18219, 4415, 4), -- Weapon Type
+(18219, 4416, 9), -- Races
 (18219, 4589, 9), -- Decrease Speed
 (18219, 4605, 9), -- Surrender To Fire
-(18219, 4639, 3), -- Acumen Empower Berserker
+(18219, 4639, 3), -- NPC Clan Buff - Acumen Empower Berserk
 -- Shaman of Darkness
-(18220, 4033, 9), -- Aura Burn
-(18220, 4071, 5), -- Resist Bow/Crossbow Weapons
-(18220, 4285, 5), -- Resist Sleep Attacks
-(18220, 4408, 14), -- HP Increase (6x)
-(18220, 4409, 1), -- MP Increase (1x)
-(18220, 4410, 11), -- Average P. Atk.
-(18220, 4411, 11), -- Average M. Atk.
-(18220, 4412, 11), -- Average P. Def.
-(18220, 4413, 17), -- Very Strong M. Def.
-(18220, 4414, 2), -- Standard Type
-(18220, 4415, 3), -- One-handed Sword
-(18220, 4416, 9), -- Demons
+(18220, 4033, 9), -- NPC Burn
+(18220, 4071, 5), -- Resist Archery
+(18220, 4285, 5), -- Resist Sleep
+(18220, 4408, 14), -- HP Modifiers
+(18220, 4409, 1), -- MP Modifiers
+(18220, 4410, 11), -- P. Atk. Modifiers
+(18220, 4411, 11), -- M. Atk. Modifiers
+(18220, 4412, 11), -- P. Def. Modifiers
+(18220, 4413, 17), -- M. Def. Modifiers
+(18220, 4414, 2), -- Armor Type
+(18220, 4415, 3), -- Weapon Type
+(18220, 4416, 9), -- Races
 (18220, 4587, 9), -- Decrease P. Atk.
-(18220, 4613, 9), -- Clan Heal
+(18220, 4613, 9), -- NPC Clan Heal
 -- Shaman of Darkness
-(18221, 4033, 9), -- Aura Burn
-(18221, 4071, 5), -- Resist Bow/Crossbow Weapons
-(18221, 4285, 5), -- Resist Sleep Attacks
-(18221, 4408, 14), -- HP Increase (6x)
-(18221, 4409, 1), -- MP Increase (1x)
-(18221, 4410, 11), -- Average P. Atk.
-(18221, 4411, 11), -- Average M. Atk.
-(18221, 4412, 11), -- Average P. Def.
-(18221, 4413, 17), -- Very Strong M. Def.
-(18221, 4414, 2); -- Standard Type
+(18221, 4033, 9), -- NPC Burn
+(18221, 4071, 5), -- Resist Archery
+(18221, 4285, 5), -- Resist Sleep
+(18221, 4408, 14), -- HP Modifiers
+(18221, 4409, 1), -- MP Modifiers
+(18221, 4410, 11), -- P. Atk. Modifiers
+(18221, 4411, 11), -- M. Atk. Modifiers
+(18221, 4412, 11), -- P. Def. Modifiers
+(18221, 4413, 17), -- M. Def. Modifiers
+(18221, 4414, 2); -- Armor Type
 
 INSERT INTO `npcskills` VALUES
-(18221, 4415, 3), -- One-handed Sword
-(18221, 4416, 9), -- Demons
+(18221, 4415, 3), -- Weapon Type
+(18221, 4416, 9), -- Races
 (18221, 4597, 9), -- Bleed
 (18221, 4600, 9), -- Reducing P. Def Stun
-(18221, 4613, 9), -- Clan Heal
+(18221, 4613, 9), -- NPC Clan Heal
 -- Assassin of Darkness
-(18222, 4408, 14), -- HP Increase (6x)
-(18222, 4409, 1), -- MP Increase (1x)
-(18222, 4410, 11), -- Average P. Atk.
-(18222, 4411, 11), -- Average M. Atk.
-(18222, 4412, 17), -- Very Strong P. Def.
-(18222, 4413, 11), -- Average M. Def.
-(18222, 4414, 2), -- Standard Type
-(18222, 4415, 3), -- One-handed Sword
-(18222, 4416, 9), -- Demons
-(18222, 4560, 9), -- Fire Burn
+(18222, 4408, 14), -- HP Modifiers
+(18222, 4409, 1), -- MP Modifiers
+(18222, 4410, 11), -- P. Atk. Modifiers
+(18222, 4411, 11), -- M. Atk. Modifiers
+(18222, 4412, 17), -- P. Def. Modifiers
+(18222, 4413, 11), -- M. Def. Modifiers
+(18222, 4414, 2), -- Armor Type
+(18222, 4415, 3), -- Weapon Type
+(18222, 4416, 9), -- Races
+(18222, 4560, 9), -- NPC Fire Burn
 -- Assassin of Darkness
-(18223, 4408, 14), -- HP Increase (6x)
-(18223, 4409, 1), -- MP Increase (1x)
-(18223, 4410, 11), -- Average P. Atk.
-(18223, 4411, 11), -- Average M. Atk.
-(18223, 4412, 11), -- Average P. Def.
-(18223, 4413, 11), -- Average M. Def.
-(18223, 4414, 2), -- Standard Type
-(18223, 4415, 3), -- One-handed Sword
-(18223, 4416, 9), -- Demons
-(18223, 4573, 9), -- Sonic Blaster
+(18223, 4408, 14), -- HP Modifiers
+(18223, 4409, 1), -- MP Modifiers
+(18223, 4410, 11), -- P. Atk. Modifiers
+(18223, 4411, 11), -- M. Atk. Modifiers
+(18223, 4412, 11), -- P. Def. Modifiers
+(18223, 4413, 11), -- M. Def. Modifiers
+(18223, 4414, 2), -- Armor Type
+(18223, 4415, 3), -- Weapon Type
+(18223, 4416, 9), -- Races
+(18223, 4573, 9), -- NPC Sonic Blaster
 -- Assassin of Darkness
-(18224, 4408, 14), -- HP Increase (6x)
-(18224, 4409, 1), -- MP Increase (1x)
-(18224, 4410, 11), -- Average P. Atk.
-(18224, 4411, 11), -- Average M. Atk.
-(18224, 4412, 17), -- Very Strong P. Def.
-(18224, 4413, 11), -- Average M. Def.
-(18224, 4414, 2), -- Standard Type
-(18224, 4415, 3), -- One-handed Sword
-(18224, 4416, 9), -- Demons
-(18224, 4560, 9), -- Fire Burn
-(18224, 4573, 9), -- Sonic Blaster
+(18224, 4408, 14), -- HP Modifiers
+(18224, 4409, 1), -- MP Modifiers
+(18224, 4410, 11), -- P. Atk. Modifiers
+(18224, 4411, 11), -- M. Atk. Modifiers
+(18224, 4412, 17), -- P. Def. Modifiers
+(18224, 4413, 11), -- M. Def. Modifiers
+(18224, 4414, 2), -- Armor Type
+(18224, 4415, 3), -- Weapon Type
+(18224, 4416, 9), -- Races
+(18224, 4560, 9), -- NPC Fire Burn
+(18224, 4573, 9), -- NPC Sonic Blaster
 -- Assassin of Darkness
-(18225, 4091, 1), -- Spirit Ogre
-(18225, 4408, 14), -- HP Increase (6x)
-(18225, 4409, 1), -- MP Increase (1x)
-(18225, 4410, 11), -- Average P. Atk.
-(18225, 4411, 11), -- Average M. Atk.
-(18225, 4412, 17), -- Very Strong P. Def.
-(18225, 4413, 11), -- Average M. Def.
-(18225, 4414, 2), -- Standard Type
-(18225, 4415, 3), -- One-handed Sword
-(18225, 4416, 9), -- Demons
-(18225, 4560, 9), -- Fire Burn
+(18225, 4091, 1), -- NPC Ogre Spirit Totem
+(18225, 4408, 14), -- HP Modifiers
+(18225, 4409, 1), -- MP Modifiers
+(18225, 4410, 11), -- P. Atk. Modifiers
+(18225, 4411, 11), -- M. Atk. Modifiers
+(18225, 4412, 17), -- P. Def. Modifiers
+(18225, 4413, 11), -- M. Def. Modifiers
+(18225, 4414, 2), -- Armor Type
+(18225, 4415, 3), -- Weapon Type
+(18225, 4416, 9), -- Races
+(18225, 4560, 9), -- NPC Fire Burn
 -- Caster of Darkness
-(18226, 4157, 9), -- Blaze
-(18226, 4408, 14), -- HP Increase (6x)
-(18226, 4409, 1), -- MP Increase (1x)
-(18226, 4410, 11), -- Average P. Atk.
-(18226, 4411, 11), -- Average M. Atk.
-(18226, 4412, 11), -- Average P. Def.
-(18226, 4413, 11), -- Average M. Def.
-(18226, 4414, 2), -- Standard Type
-(18226, 4415, 3), -- One-handed Sword
-(18226, 4416, 9), -- Demons
-(18226, 4561, 9), -- Fire Burn
+(18226, 4157, 9), -- NPC Blaze - Magic
+(18226, 4408, 14), -- HP Modifiers
+(18226, 4409, 1), -- MP Modifiers
+(18226, 4410, 11), -- P. Atk. Modifiers
+(18226, 4411, 11), -- M. Atk. Modifiers
+(18226, 4412, 11), -- P. Def. Modifiers
+(18226, 4413, 11), -- M. Def. Modifiers
+(18226, 4414, 2), -- Armor Type
+(18226, 4415, 3), -- Weapon Type
+(18226, 4416, 9), -- Races
+(18226, 4561, 9), -- NPC Fire Burn - Magic
 -- Caster of Darkness
-(18227, 4157, 9), -- Blaze
-(18227, 4408, 14), -- HP Increase (6x)
-(18227, 4409, 1), -- MP Increase (1x)
-(18227, 4410, 11), -- Average P. Atk.
-(18227, 4411, 11), -- Average M. Atk.
-(18227, 4412, 17), -- Very Strong P. Def.
-(18227, 4413, 11), -- Average M. Def.
-(18227, 4414, 2), -- Standard Type
-(18227, 4415, 3), -- One-handed Sword
-(18227, 4416, 9), -- Demons
-(18227, 4561, 9), -- Fire Burn
-(18227, 4575, 2), -- Haste
+(18227, 4157, 9), -- NPC Blaze - Magic
+(18227, 4408, 14), -- HP Modifiers
+(18227, 4409, 1), -- MP Modifiers
+(18227, 4410, 11), -- P. Atk. Modifiers
+(18227, 4411, 11), -- M. Atk. Modifiers
+(18227, 4412, 17), -- P. Def. Modifiers
+(18227, 4413, 11), -- M. Def. Modifiers
+(18227, 4414, 2), -- Armor Type
+(18227, 4415, 3), -- Weapon Type
+(18227, 4416, 9), -- Races
+(18227, 4561, 9), -- NPC Fire Burn - Magic
+(18227, 4575, 2), -- NPC Clan Buff - Haste
 -- Caster of Darkness
-(18228, 4102, 2), -- Surrender To Fire
-(18228, 4157, 9), -- Blaze
-(18228, 4408, 14), -- HP Increase (6x)
-(18228, 4409, 1), -- MP Increase (1x)
-(18228, 4410, 11), -- Average P. Atk.
-(18228, 4411, 11), -- Average M. Atk.
-(18228, 4412, 17), -- Very Strong P. Def.
-(18228, 4413, 11), -- Average M. Def.
-(18228, 4414, 2), -- Standard Type
-(18228, 4415, 3), -- One-handed Sword
-(18228, 4416, 9), -- Demons
-(18228, 4561, 9), -- Fire Burn
+(18228, 4102, 2), -- Become weak against line of fire
+(18228, 4157, 9), -- NPC Blaze - Magic
+(18228, 4408, 14), -- HP Modifiers
+(18228, 4409, 1), -- MP Modifiers
+(18228, 4410, 11), -- P. Atk. Modifiers
+(18228, 4411, 11), -- M. Atk. Modifiers
+(18228, 4412, 17), -- P. Def. Modifiers
+(18228, 4413, 11), -- M. Def. Modifiers
+(18228, 4414, 2), -- Armor Type
+(18228, 4415, 3), -- Weapon Type
+(18228, 4416, 9), -- Races
+(18228, 4561, 9), -- NPC Fire Burn - Magic
 -- Caster of Darkness
-(18229, 4033, 9), -- Aura Burn
-(18229, 4408, 14), -- HP Increase (6x)
-(18229, 4409, 1), -- MP Increase (1x)
-(18229, 4410, 11), -- Average P. Atk.
-(18229, 4411, 11), -- Average M. Atk.
-(18229, 4412, 17), -- Very Strong P. Def.
-(18229, 4413, 11), -- Average M. Def.
-(18229, 4414, 2), -- Standard Type
-(18229, 4415, 3), -- One-handed Sword
-(18229, 4416, 9), -- Demons
-(18229, 4561, 9), -- Fire Burn
+(18229, 4033, 9), -- NPC Burn
+(18229, 4408, 14), -- HP Modifiers
+(18229, 4409, 1), -- MP Modifiers
+(18229, 4410, 11), -- P. Atk. Modifiers
+(18229, 4411, 11), -- M. Atk. Modifiers
+(18229, 4412, 17), -- P. Def. Modifiers
+(18229, 4413, 11), -- M. Def. Modifiers
+(18229, 4414, 2), -- Armor Type
+(18229, 4415, 3), -- Weapon Type
+(18229, 4416, 9), -- Races
+(18229, 4561, 9), -- NPC Fire Burn - Magic
 -- Signet of Emperor
-(18230, 4408, 11), -- HP Increase (3x)
-(18230, 4409, 1), -- MP Increase (1x)
-(18230, 4410, 11), -- Average P. Atk.
-(18230, 4411, 11), -- Average M. Atk.
-(18230, 4412, 11), -- Average P. Def.
-(18230, 4413, 11), -- Average M. Def.
-(18230, 4414, 2), -- Standard Type
-(18230, 4415, 3), -- One-handed Sword
-(18230, 4416, 12), -- Bugs
+(18230, 4408, 11), -- HP Modifiers
+(18230, 4409, 1), -- MP Modifiers
+(18230, 4410, 11), -- P. Atk. Modifiers
+(18230, 4411, 11), -- M. Atk. Modifiers
+(18230, 4412, 11), -- P. Def. Modifiers
+(18230, 4413, 11), -- M. Def. Modifiers
+(18230, 4414, 2), -- Armor Type
+(18230, 4415, 3), -- Weapon Type
+(18230, 4416, 12), -- Races
 (18230, 4438, 4), -- Greater Resist Sleep
 (18230, 4439, 4), -- Greater Resist Hold
 (18230, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
-(18230, 4614, 9), -- Death Bomb
+(18230, 4614, 9), -- NPC Death Bomb
 -- Statue of Protection
-(18231, 4071, 5), -- Resist Bow/Crossbow Weapons
-(18231, 4274, 1), -- Blunt Weapon Weak Point
-(18231, 4408, 14), -- HP Increase (6x)
-(18231, 4409, 1), -- MP Increase (1x)
-(18231, 4410, 11), -- Average P. Atk.
-(18231, 4411, 11), -- Average M. Atk.
-(18231, 4412, 17), -- Very Strong P. Def.
-(18231, 4413, 17), -- Very Strong M. Def.
-(18231, 4414, 2), -- Standard Type
-(18231, 4415, 3), -- One-handed Sword
-(18231, 4416, 2), -- Magic Creatures
+(18231, 4071, 5), -- Resist Archery
+(18231, 4274, 1), -- Blunt Attack Weak Point
+(18231, 4408, 14), -- HP Modifiers
+(18231, 4409, 1), -- MP Modifiers
+(18231, 4410, 11), -- P. Atk. Modifiers
+(18231, 4411, 11), -- M. Atk. Modifiers
+(18231, 4412, 17), -- P. Def. Modifiers
+(18231, 4413, 17), -- M. Def. Modifiers
+(18231, 4414, 2), -- Armor Type
+(18231, 4415, 3), -- Weapon Type
+(18231, 4416, 2), -- Races
 (18231, 4436, 5), -- Greater Resist Poison
 (18231, 4437, 5), -- Greater Resist Bleeding
 -- Statue of Protection
-(18232, 4071, 5), -- Resist Bow/Crossbow Weapons
-(18232, 4274, 1), -- Blunt Weapon Weak Point
-(18232, 4408, 14), -- HP Increase (6x)
-(18232, 4409, 1), -- MP Increase (1x)
-(18232, 4410, 11), -- Average P. Atk.
-(18232, 4411, 11), -- Average M. Atk.
-(18232, 4412, 17), -- Very Strong P. Def.
-(18232, 4413, 17), -- Very Strong M. Def.
-(18232, 4414, 2), -- Standard Type
-(18232, 4415, 3), -- One-handed Sword
-(18232, 4416, 2), -- Magic Creatures
+(18232, 4071, 5), -- Resist Archery
+(18232, 4274, 1), -- Blunt Attack Weak Point
+(18232, 4408, 14), -- HP Modifiers
+(18232, 4409, 1), -- MP Modifiers
+(18232, 4410, 11), -- P. Atk. Modifiers
+(18232, 4411, 11), -- M. Atk. Modifiers
+(18232, 4412, 17), -- P. Def. Modifiers
+(18232, 4413, 17), -- M. Def. Modifiers
+(18232, 4414, 2), -- Armor Type
+(18232, 4415, 3), -- Weapon Type
+(18232, 4416, 2), -- Races
 (18232, 4436, 5), -- Greater Resist Poison
 (18232, 4437, 5), -- Greater Resist Bleeding
 -- Statue of Protection
-(18233, 4071, 5), -- Resist Bow/Crossbow Weapons
-(18233, 4274, 1), -- Blunt Weapon Weak Point
-(18233, 4408, 14), -- HP Increase (6x)
-(18233, 4409, 1), -- MP Increase (1x)
-(18233, 4410, 11), -- Average P. Atk.
-(18233, 4411, 11), -- Average M. Atk.
-(18233, 4412, 17), -- Very Strong P. Def.
-(18233, 4413, 17), -- Very Strong M. Def.
-(18233, 4414, 2), -- Standard Type
-(18233, 4415, 3), -- One-handed Sword
-(18233, 4416, 2), -- Magic Creatures
+(18233, 4071, 5), -- Resist Archery
+(18233, 4274, 1), -- Blunt Attack Weak Point
+(18233, 4408, 14), -- HP Modifiers
+(18233, 4409, 1), -- MP Modifiers
+(18233, 4410, 11), -- P. Atk. Modifiers
+(18233, 4411, 11), -- M. Atk. Modifiers
+(18233, 4412, 17), -- P. Def. Modifiers
+(18233, 4413, 17), -- M. Def. Modifiers
+(18233, 4414, 2), -- Armor Type
+(18233, 4415, 3), -- Weapon Type
+(18233, 4416, 2), -- Races
 (18233, 4436, 5), -- Greater Resist Poison
 (18233, 4437, 5), -- Greater Resist Bleeding
 -- Statue of Protection
-(18234, 4071, 5), -- Resist Bow/Crossbow Weapons
-(18234, 4274, 1), -- Blunt Weapon Weak Point
-(18234, 4408, 14), -- HP Increase (6x)
-(18234, 4409, 1), -- MP Increase (1x)
-(18234, 4410, 11), -- Average P. Atk.
-(18234, 4411, 11), -- Average M. Atk.
-(18234, 4412, 17), -- Very Strong P. Def.
-(18234, 4413, 17), -- Very Strong M. Def.
-(18234, 4414, 2), -- Standard Type
-(18234, 4415, 3), -- One-handed Sword
-(18234, 4416, 2), -- Magic Creatures
+(18234, 4071, 5), -- Resist Archery
+(18234, 4274, 1), -- Blunt Attack Weak Point
+(18234, 4408, 14), -- HP Modifiers
+(18234, 4409, 1), -- MP Modifiers
+(18234, 4410, 11), -- P. Atk. Modifiers
+(18234, 4411, 11), -- M. Atk. Modifiers
+(18234, 4412, 17), -- P. Def. Modifiers
+(18234, 4413, 17), -- M. Def. Modifiers
+(18234, 4414, 2), -- Armor Type
+(18234, 4415, 3), -- Weapon Type
+(18234, 4416, 2), -- Races
 (18234, 4436, 5), -- Greater Resist Poison
 (18234, 4437, 5), -- Greater Resist Bleeding
 -- Statue of Protection
-(18235, 4071, 5), -- Resist Bow/Crossbow Weapons
-(18235, 4274, 1), -- Blunt Weapon Weak Point
-(18235, 4408, 14), -- HP Increase (6x)
-(18235, 4409, 1), -- MP Increase (1x)
-(18235, 4410, 11), -- Average P. Atk.
-(18235, 4411, 11), -- Average M. Atk.
-(18235, 4412, 17), -- Very Strong P. Def.
-(18235, 4413, 17), -- Very Strong M. Def.
-(18235, 4414, 2), -- Standard Type
-(18235, 4415, 3), -- One-handed Sword
-(18235, 4416, 2), -- Magic Creatures
+(18235, 4071, 5), -- Resist Archery
+(18235, 4274, 1), -- Blunt Attack Weak Point
+(18235, 4408, 14), -- HP Modifiers
+(18235, 4409, 1), -- MP Modifiers
+(18235, 4410, 11), -- P. Atk. Modifiers
+(18235, 4411, 11), -- M. Atk. Modifiers
+(18235, 4412, 17), -- P. Def. Modifiers
+(18235, 4413, 17), -- M. Def. Modifiers
+(18235, 4414, 2), -- Armor Type
+(18235, 4415, 3), -- Weapon Type
+(18235, 4416, 2), -- Races
 (18235, 4436, 5), -- Greater Resist Poison
 (18235, 4437, 5), -- Greater Resist Bleeding
 -- Statue of Protection
-(18236, 4071, 5), -- Resist Bow/Crossbow Weapons
-(18236, 4274, 1), -- Blunt Weapon Weak Point
-(18236, 4408, 14), -- HP Increase (6x)
-(18236, 4409, 1), -- MP Increase (1x)
-(18236, 4410, 11), -- Average P. Atk.
-(18236, 4411, 11), -- Average M. Atk.
-(18236, 4412, 17), -- Very Strong P. Def.
-(18236, 4413, 17), -- Very Strong M. Def.
-(18236, 4414, 2), -- Standard Type
-(18236, 4415, 3), -- One-handed Sword
-(18236, 4416, 2), -- Magic Creatures
+(18236, 4071, 5), -- Resist Archery
+(18236, 4274, 1), -- Blunt Attack Weak Point
+(18236, 4408, 14), -- HP Modifiers
+(18236, 4409, 1), -- MP Modifiers
+(18236, 4410, 11), -- P. Atk. Modifiers
+(18236, 4411, 11), -- M. Atk. Modifiers
+(18236, 4412, 17), -- P. Def. Modifiers
+(18236, 4413, 17), -- M. Def. Modifiers
+(18236, 4414, 2), -- Armor Type
+(18236, 4415, 3), -- Weapon Type
+(18236, 4416, 2), -- Races
 (18236, 4436, 5), -- Greater Resist Poison
 (18236, 4437, 5), -- Greater Resist Bleeding
 -- Statue of Protection
-(18237, 4071, 5), -- Resist Bow/Crossbow Weapons
-(18237, 4274, 1), -- Blunt Weapon Weak Point
-(18237, 4408, 14), -- HP Increase (6x)
-(18237, 4409, 1), -- MP Increase (1x)
-(18237, 4410, 11), -- Average P. Atk.
-(18237, 4411, 11), -- Average M. Atk.
-(18237, 4412, 17), -- Very Strong P. Def.
-(18237, 4413, 17), -- Very Strong M. Def.
-(18237, 4414, 2), -- Standard Type
-(18237, 4415, 3), -- One-handed Sword
-(18237, 4416, 2), -- Magic Creatures
+(18237, 4071, 5), -- Resist Archery
+(18237, 4274, 1), -- Blunt Attack Weak Point
+(18237, 4408, 14), -- HP Modifiers
+(18237, 4409, 1), -- MP Modifiers
+(18237, 4410, 11), -- P. Atk. Modifiers
+(18237, 4411, 11), -- M. Atk. Modifiers
+(18237, 4412, 17), -- P. Def. Modifiers
+(18237, 4413, 17), -- M. Def. Modifiers
+(18237, 4414, 2), -- Armor Type
+(18237, 4415, 3), -- Weapon Type
+(18237, 4416, 2), -- Races
 (18237, 4436, 5), -- Greater Resist Poison
 (18237, 4437, 5), -- Greater Resist Bleeding
 -- Statue of Protection
-(18238, 4071, 5), -- Resist Bow/Crossbow Weapons
-(18238, 4274, 1), -- Blunt Weapon Weak Point
-(18238, 4408, 14), -- HP Increase (6x)
-(18238, 4409, 1), -- MP Increase (1x)
-(18238, 4410, 11), -- Average P. Atk.
-(18238, 4411, 11), -- Average M. Atk.
-(18238, 4412, 17), -- Very Strong P. Def.
-(18238, 4413, 17), -- Very Strong M. Def.
-(18238, 4414, 2), -- Standard Type
-(18238, 4415, 3), -- One-handed Sword
-(18238, 4416, 2), -- Magic Creatures
+(18238, 4071, 5), -- Resist Archery
+(18238, 4274, 1), -- Blunt Attack Weak Point
+(18238, 4408, 14), -- HP Modifiers
+(18238, 4409, 1), -- MP Modifiers
+(18238, 4410, 11), -- P. Atk. Modifiers
+(18238, 4411, 11), -- M. Atk. Modifiers
+(18238, 4412, 17), -- P. Def. Modifiers
+(18238, 4413, 17), -- M. Def. Modifiers
+(18238, 4414, 2), -- Armor Type
+(18238, 4415, 3), -- Weapon Type
+(18238, 4416, 2), -- Races
 (18238, 4436, 5), -- Greater Resist Poison
 (18238, 4437, 5), -- Greater Resist Bleeding
 -- Statue of Protection
-(18239, 4071, 5), -- Resist Bow/Crossbow Weapons
-(18239, 4274, 1), -- Blunt Weapon Weak Point
-(18239, 4408, 14), -- HP Increase (6x)
-(18239, 4409, 1), -- MP Increase (1x)
-(18239, 4410, 11), -- Average P. Atk.
-(18239, 4411, 11), -- Average M. Atk.
-(18239, 4412, 17), -- Very Strong P. Def.
-(18239, 4413, 17), -- Very Strong M. Def.
-(18239, 4414, 2), -- Standard Type
-(18239, 4415, 3), -- One-handed Sword
-(18239, 4416, 2), -- Magic Creatures
+(18239, 4071, 5), -- Resist Archery
+(18239, 4274, 1), -- Blunt Attack Weak Point
+(18239, 4408, 14), -- HP Modifiers
+(18239, 4409, 1), -- MP Modifiers
+(18239, 4410, 11), -- P. Atk. Modifiers
+(18239, 4411, 11), -- M. Atk. Modifiers
+(18239, 4412, 17), -- P. Def. Modifiers
+(18239, 4413, 17), -- M. Def. Modifiers
+(18239, 4414, 2), -- Armor Type
+(18239, 4415, 3), -- Weapon Type
+(18239, 4416, 2), -- Races
 (18239, 4436, 5), -- Greater Resist Poison
 (18239, 4437, 5), -- Greater Resist Bleeding
 -- Statue of Protection
-(18240, 4071, 5), -- Resist Bow/Crossbow Weapons
-(18240, 4274, 1), -- Blunt Weapon Weak Point
-(18240, 4408, 14), -- HP Increase (6x)
-(18240, 4409, 1), -- MP Increase (1x)
-(18240, 4410, 11), -- Average P. Atk.
-(18240, 4411, 11), -- Average M. Atk.
-(18240, 4412, 17), -- Very Strong P. Def.
-(18240, 4413, 17), -- Very Strong M. Def.
-(18240, 4414, 2), -- Standard Type
-(18240, 4415, 3), -- One-handed Sword
-(18240, 4416, 2), -- Magic Creatures
+(18240, 4071, 5), -- Resist Archery
+(18240, 4274, 1), -- Blunt Attack Weak Point
+(18240, 4408, 14), -- HP Modifiers
+(18240, 4409, 1), -- MP Modifiers
+(18240, 4410, 11), -- P. Atk. Modifiers
+(18240, 4411, 11), -- M. Atk. Modifiers
+(18240, 4412, 17), -- P. Def. Modifiers
+(18240, 4413, 17), -- M. Def. Modifiers
+(18240, 4414, 2), -- Armor Type
+(18240, 4415, 3), -- Weapon Type
+(18240, 4416, 2), -- Races
 (18240, 4436, 5), -- Greater Resist Poison
 (18240, 4437, 5), -- Greater Resist Bleeding
 -- Statue of Protection
-(18241, 4071, 5), -- Resist Bow/Crossbow Weapons
-(18241, 4274, 1), -- Blunt Weapon Weak Point
-(18241, 4408, 14), -- HP Increase (6x)
-(18241, 4409, 1), -- MP Increase (1x)
-(18241, 4410, 11), -- Average P. Atk.
-(18241, 4411, 11), -- Average M. Atk.
-(18241, 4412, 17), -- Very Strong P. Def.
-(18241, 4413, 17), -- Very Strong M. Def.
-(18241, 4414, 2), -- Standard Type
-(18241, 4415, 3), -- One-handed Sword
-(18241, 4416, 2), -- Magic Creatures
+(18241, 4071, 5), -- Resist Archery
+(18241, 4274, 1), -- Blunt Attack Weak Point
+(18241, 4408, 14), -- HP Modifiers
+(18241, 4409, 1), -- MP Modifiers
+(18241, 4410, 11), -- P. Atk. Modifiers
+(18241, 4411, 11), -- M. Atk. Modifiers
+(18241, 4412, 17), -- P. Def. Modifiers
+(18241, 4413, 17), -- M. Def. Modifiers
+(18241, 4414, 2), -- Armor Type
+(18241, 4415, 3), -- Weapon Type
+(18241, 4416, 2), -- Races
 (18241, 4436, 5), -- Greater Resist Poison
 (18241, 4437, 5), -- Greater Resist Bleeding
 -- Statue of Protection
-(18242, 4071, 5), -- Resist Bow/Crossbow Weapons
-(18242, 4274, 1), -- Blunt Weapon Weak Point
-(18242, 4408, 14), -- HP Increase (6x)
-(18242, 4409, 1), -- MP Increase (1x)
-(18242, 4410, 11), -- Average P. Atk.
-(18242, 4411, 11), -- Average M. Atk.
-(18242, 4412, 17), -- Very Strong P. Def.
-(18242, 4413, 17), -- Very Strong M. Def.
-(18242, 4414, 2), -- Standard Type
-(18242, 4415, 3), -- One-handed Sword
-(18242, 4416, 2), -- Magic Creatures
+(18242, 4071, 5), -- Resist Archery
+(18242, 4274, 1), -- Blunt Attack Weak Point
+(18242, 4408, 14), -- HP Modifiers
+(18242, 4409, 1), -- MP Modifiers
+(18242, 4410, 11), -- P. Atk. Modifiers
+(18242, 4411, 11), -- M. Atk. Modifiers
+(18242, 4412, 17), -- P. Def. Modifiers
+(18242, 4413, 17), -- M. Def. Modifiers
+(18242, 4414, 2), -- Armor Type
+(18242, 4415, 3), -- Weapon Type
+(18242, 4416, 2), -- Races
 (18242, 4436, 5), -- Greater Resist Poison
 (18242, 4437, 5), -- Greater Resist Bleeding
 -- Statue of Protection
-(18243, 4071, 5), -- Resist Bow/Crossbow Weapons
-(18243, 4072, 9), -- Stun
-(18243, 4274, 1), -- Blunt Weapon Weak Point
-(18243, 4383, 1), -- Aggression Stone
-(18243, 4408, 14), -- HP Increase (6x)
-(18243, 4409, 1), -- MP Increase (1x)
-(18243, 4410, 11), -- Average P. Atk.
-(18243, 4411, 11), -- Average M. Atk.
-(18243, 4412, 17), -- Very Strong P. Def.
-(18243, 4413, 17), -- Very Strong M. Def.
-(18243, 4414, 2), -- Standard Type
-(18243, 4415, 3), -- One-handed Sword
-(18243, 4416, 2), -- Magic Creatures
+(18243, 4071, 5), -- Resist Archery
+(18243, 4072, 9), -- Shock
+(18243, 4274, 1), -- Blunt Attack Weak Point
+(18243, 4383, 1), -- NPC Hate Stone
+(18243, 4408, 14), -- HP Modifiers
+(18243, 4409, 1), -- MP Modifiers
+(18243, 4410, 11), -- P. Atk. Modifiers
+(18243, 4411, 11), -- M. Atk. Modifiers
+(18243, 4412, 17), -- P. Def. Modifiers
+(18243, 4413, 17), -- M. Def. Modifiers
+(18243, 4414, 2), -- Armor Type
+(18243, 4415, 3), -- Weapon Type
+(18243, 4416, 2), -- Races
 (18243, 4436, 5), -- Greater Resist Poison
 (18243, 4437, 5), -- Greater Resist Bleeding
 (18243, 4605, 9), -- Surrender To Fire
 (18243, 4616, 1), -- Fake Petrification
 (18243, 4620, 9), -- Paralysis
 -- Watchman of Grave
-(18244, 4408, 12), -- HP Increase (4x)
-(18244, 4409, 1), -- MP Increase (1x)
-(18244, 4410, 11), -- Average P. Atk.
-(18244, 4411, 11), -- Average M. Atk.
-(18244, 4412, 11), -- Average P. Def.
-(18244, 4413, 11), -- Average M. Def.
-(18244, 4414, 2), -- Standard Type
-(18244, 4415, 3), -- One-handed Sword
-(18244, 4416, 2), -- Magic Creatures
+(18244, 4408, 12), -- HP Modifiers
+(18244, 4409, 1), -- MP Modifiers
+(18244, 4410, 11), -- P. Atk. Modifiers
+(18244, 4411, 11), -- M. Atk. Modifiers
+(18244, 4412, 11), -- P. Def. Modifiers
+(18244, 4413, 11), -- M. Def. Modifiers
+(18244, 4414, 2), -- Armor Type
+(18244, 4415, 3), -- Weapon Type
+(18244, 4416, 2), -- Races
 (18244, 4438, 4), -- Greater Resist Sleep
 (18244, 4439, 4), -- Greater Resist Hold
 (18244, 4606, 9), -- Poison
-(18244, 4613, 9), -- Clan Heal
-(18244, 4614, 9), -- Death Bomb
+(18244, 4613, 9), -- NPC Clan Heal
+(18244, 4614, 9), -- NPC Death Bomb
 -- Watchman of Grave
-(18245, 4408, 12), -- HP Increase (4x)
-(18245, 4409, 1), -- MP Increase (1x)
-(18245, 4410, 11), -- Average P. Atk.
-(18245, 4411, 11), -- Average M. Atk.
-(18245, 4412, 11), -- Average P. Def.
-(18245, 4413, 11), -- Average M. Def.
-(18245, 4414, 2), -- Standard Type
-(18245, 4415, 3), -- One-handed Sword
-(18245, 4416, 2), -- Magic Creatures
+(18245, 4408, 12), -- HP Modifiers
+(18245, 4409, 1), -- MP Modifiers
+(18245, 4410, 11), -- P. Atk. Modifiers
+(18245, 4411, 11), -- M. Atk. Modifiers
+(18245, 4412, 11), -- P. Def. Modifiers
+(18245, 4413, 11), -- M. Def. Modifiers
+(18245, 4414, 2), -- Armor Type
+(18245, 4415, 3), -- Weapon Type
+(18245, 4416, 2), -- Races
 (18245, 4438, 4), -- Greater Resist Sleep
 (18245, 4439, 4), -- Greater Resist Hold
 (18245, 4606, 9), -- Poison
-(18245, 4613, 9), -- Clan Heal
-(18245, 4614, 9), -- Death Bomb
+(18245, 4613, 9), -- NPC Clan Heal
+(18245, 4614, 9), -- NPC Death Bomb
 -- Watchman of Grave
-(18246, 4408, 12), -- HP Increase (4x)
-(18246, 4409, 1), -- MP Increase (1x)
-(18246, 4410, 11), -- Average P. Atk.
-(18246, 4411, 11), -- Average M. Atk.
-(18246, 4412, 11), -- Average P. Def.
-(18246, 4413, 11), -- Average M. Def.
-(18246, 4414, 2), -- Standard Type
-(18246, 4415, 3), -- One-handed Sword
-(18246, 4416, 2), -- Magic Creatures
+(18246, 4408, 12), -- HP Modifiers
+(18246, 4409, 1), -- MP Modifiers
+(18246, 4410, 11), -- P. Atk. Modifiers
+(18246, 4411, 11), -- M. Atk. Modifiers
+(18246, 4412, 11), -- P. Def. Modifiers
+(18246, 4413, 11), -- M. Def. Modifiers
+(18246, 4414, 2), -- Armor Type
+(18246, 4415, 3), -- Weapon Type
+(18246, 4416, 2), -- Races
 (18246, 4438, 4), -- Greater Resist Sleep
 (18246, 4439, 4), -- Greater Resist Hold
 (18246, 4606, 9), -- Poison
-(18246, 4613, 9), -- Clan Heal
-(18246, 4614, 9), -- Death Bomb
+(18246, 4613, 9), -- NPC Clan Heal
+(18246, 4614, 9), -- NPC Death Bomb
 -- Watchman of Grave
-(18247, 4408, 12), -- HP Increase (4x)
-(18247, 4409, 1), -- MP Increase (1x)
-(18247, 4410, 11), -- Average P. Atk.
-(18247, 4411, 11), -- Average M. Atk.
-(18247, 4412, 11), -- Average P. Def.
-(18247, 4413, 11), -- Average M. Def.
-(18247, 4414, 2), -- Standard Type
-(18247, 4415, 3), -- One-handed Sword
-(18247, 4416, 2), -- Magic Creatures
+(18247, 4408, 12), -- HP Modifiers
+(18247, 4409, 1), -- MP Modifiers
+(18247, 4410, 11), -- P. Atk. Modifiers
+(18247, 4411, 11), -- M. Atk. Modifiers
+(18247, 4412, 11), -- P. Def. Modifiers
+(18247, 4413, 11), -- M. Def. Modifiers
+(18247, 4414, 2), -- Armor Type
+(18247, 4415, 3), -- Weapon Type
+(18247, 4416, 2), -- Races
 (18247, 4438, 4), -- Greater Resist Sleep
 (18247, 4439, 4), -- Greater Resist Hold
 (18247, 4606, 9), -- Poison
-(18247, 4613, 9), -- Clan Heal
-(18247, 4614, 9), -- Death Bomb
+(18247, 4613, 9), -- NPC Clan Heal
+(18247, 4614, 9), -- NPC Death Bomb
 -- Watchman of Grave
-(18248, 4408, 12), -- HP Increase (4x)
-(18248, 4409, 1), -- MP Increase (1x)
-(18248, 4410, 11), -- Average P. Atk.
-(18248, 4411, 11), -- Average M. Atk.
-(18248, 4412, 11), -- Average P. Def.
-(18248, 4413, 11), -- Average M. Def.
-(18248, 4414, 2), -- Standard Type
-(18248, 4415, 3), -- One-handed Sword
-(18248, 4416, 2), -- Magic Creatures
+(18248, 4408, 12), -- HP Modifiers
+(18248, 4409, 1), -- MP Modifiers
+(18248, 4410, 11), -- P. Atk. Modifiers
+(18248, 4411, 11), -- M. Atk. Modifiers
+(18248, 4412, 11), -- P. Def. Modifiers
+(18248, 4413, 11), -- M. Def. Modifiers
+(18248, 4414, 2), -- Armor Type
+(18248, 4415, 3), -- Weapon Type
+(18248, 4416, 2), -- Races
 (18248, 4438, 4), -- Greater Resist Sleep
 (18248, 4439, 4), -- Greater Resist Hold
 (18248, 4606, 9), -- Poison
-(18248, 4613, 9), -- Clan Heal
-(18248, 4614, 9), -- Death Bomb
+(18248, 4613, 9), -- NPC Clan Heal
+(18248, 4614, 9), -- NPC Death Bomb
 -- Watchman of Grave
-(18249, 4408, 12), -- HP Increase (4x)
-(18249, 4409, 1), -- MP Increase (1x)
-(18249, 4410, 11), -- Average P. Atk.
-(18249, 4411, 11), -- Average M. Atk.
-(18249, 4412, 11), -- Average P. Def.
-(18249, 4413, 11), -- Average M. Def.
-(18249, 4414, 2), -- Standard Type
-(18249, 4415, 3), -- One-handed Sword
-(18249, 4416, 2), -- Magic Creatures
+(18249, 4408, 12), -- HP Modifiers
+(18249, 4409, 1), -- MP Modifiers
+(18249, 4410, 11), -- P. Atk. Modifiers
+(18249, 4411, 11), -- M. Atk. Modifiers
+(18249, 4412, 11), -- P. Def. Modifiers
+(18249, 4413, 11), -- M. Def. Modifiers
+(18249, 4414, 2), -- Armor Type
+(18249, 4415, 3), -- Weapon Type
+(18249, 4416, 2), -- Races
 (18249, 4438, 4), -- Greater Resist Sleep
 (18249, 4439, 4), -- Greater Resist Hold
 (18249, 4606, 9), -- Poison
-(18249, 4613, 9), -- Clan Heal
-(18249, 4614, 9), -- Death Bomb
+(18249, 4613, 9), -- NPC Clan Heal
+(18249, 4614, 9), -- NPC Death Bomb
 -- Watchman of Grave
-(18250, 4408, 12), -- HP Increase (4x)
-(18250, 4409, 1), -- MP Increase (1x)
-(18250, 4410, 11), -- Average P. Atk.
-(18250, 4411, 11), -- Average M. Atk.
-(18250, 4412, 11), -- Average P. Def.
-(18250, 4413, 11), -- Average M. Def.
-(18250, 4414, 2), -- Standard Type
-(18250, 4415, 3), -- One-handed Sword
-(18250, 4416, 2), -- Magic Creatures
+(18250, 4408, 12), -- HP Modifiers
+(18250, 4409, 1), -- MP Modifiers
+(18250, 4410, 11), -- P. Atk. Modifiers
+(18250, 4411, 11), -- M. Atk. Modifiers
+(18250, 4412, 11), -- P. Def. Modifiers
+(18250, 4413, 11), -- M. Def. Modifiers
+(18250, 4414, 2), -- Armor Type
+(18250, 4415, 3), -- Weapon Type
+(18250, 4416, 2), -- Races
 (18250, 4438, 4), -- Greater Resist Sleep
 (18250, 4439, 4), -- Greater Resist Hold
 (18250, 4606, 9), -- Poison
-(18250, 4613, 9), -- Clan Heal
-(18250, 4614, 9), -- Death Bomb
+(18250, 4613, 9), -- NPC Clan Heal
+(18250, 4614, 9), -- NPC Death Bomb
 -- Watchman of Grave
-(18251, 4408, 12), -- HP Increase (4x)
-(18251, 4409, 1), -- MP Increase (1x)
-(18251, 4410, 11), -- Average P. Atk.
-(18251, 4411, 11), -- Average M. Atk.
-(18251, 4412, 11), -- Average P. Def.
-(18251, 4413, 11), -- Average M. Def.
-(18251, 4414, 2), -- Standard Type
-(18251, 4415, 3), -- One-handed Sword
-(18251, 4416, 2), -- Magic Creatures
+(18251, 4408, 12), -- HP Modifiers
+(18251, 4409, 1), -- MP Modifiers
+(18251, 4410, 11), -- P. Atk. Modifiers
+(18251, 4411, 11), -- M. Atk. Modifiers
+(18251, 4412, 11), -- P. Def. Modifiers
+(18251, 4413, 11), -- M. Def. Modifiers
+(18251, 4414, 2), -- Armor Type
+(18251, 4415, 3), -- Weapon Type
+(18251, 4416, 2), -- Races
 (18251, 4438, 4), -- Greater Resist Sleep
 (18251, 4439, 4), -- Greater Resist Hold
 (18251, 4606, 9), -- Poison
-(18251, 4613, 9), -- Clan Heal
-(18251, 4614, 9), -- Death Bomb
+(18251, 4613, 9), -- NPC Clan Heal
+(18251, 4614, 9), -- NPC Death Bomb
 -- Watchman of Grave
-(18252, 4408, 12), -- HP Increase (4x)
-(18252, 4409, 1), -- MP Increase (1x)
-(18252, 4410, 11), -- Average P. Atk.
-(18252, 4411, 11), -- Average M. Atk.
-(18252, 4412, 11), -- Average P. Def.
-(18252, 4413, 11), -- Average M. Def.
-(18252, 4414, 2), -- Standard Type
-(18252, 4415, 3), -- One-handed Sword
-(18252, 4416, 2), -- Magic Creatures
+(18252, 4408, 12), -- HP Modifiers
+(18252, 4409, 1), -- MP Modifiers
+(18252, 4410, 11), -- P. Atk. Modifiers
+(18252, 4411, 11), -- M. Atk. Modifiers
+(18252, 4412, 11), -- P. Def. Modifiers
+(18252, 4413, 11), -- M. Def. Modifiers
+(18252, 4414, 2), -- Armor Type
+(18252, 4415, 3), -- Weapon Type
+(18252, 4416, 2), -- Races
 (18252, 4438, 4), -- Greater Resist Sleep
 (18252, 4439, 4), -- Greater Resist Hold
 (18252, 4606, 9), -- Poison
-(18252, 4613, 9), -- Clan Heal
-(18252, 4614, 9), -- Death Bomb
+(18252, 4613, 9), -- NPC Clan Heal
+(18252, 4614, 9), -- NPC Death Bomb
 -- Watchman of Grave
-(18253, 4408, 12), -- HP Increase (4x)
-(18253, 4409, 1), -- MP Increase (1x)
-(18253, 4410, 11), -- Average P. Atk.
-(18253, 4411, 11), -- Average M. Atk.
-(18253, 4412, 11), -- Average P. Def.
-(18253, 4413, 11), -- Average M. Def.
-(18253, 4414, 2), -- Standard Type
-(18253, 4415, 3), -- One-handed Sword
-(18253, 4416, 2), -- Magic Creatures
+(18253, 4408, 12), -- HP Modifiers
+(18253, 4409, 1), -- MP Modifiers
+(18253, 4410, 11), -- P. Atk. Modifiers
+(18253, 4411, 11), -- M. Atk. Modifiers
+(18253, 4412, 11), -- P. Def. Modifiers
+(18253, 4413, 11), -- M. Def. Modifiers
+(18253, 4414, 2), -- Armor Type
+(18253, 4415, 3), -- Weapon Type
+(18253, 4416, 2), -- Races
 (18253, 4438, 4), -- Greater Resist Sleep
 (18253, 4439, 4), -- Greater Resist Hold
 (18253, 4606, 9), -- Poison
-(18253, 4613, 9), -- Clan Heal
-(18253, 4614, 9), -- Death Bomb
+(18253, 4613, 9), -- NPC Clan Heal
+(18253, 4614, 9), -- NPC Death Bomb
 -- Watchman of Grave
-(18254, 4408, 12), -- HP Increase (4x)
-(18254, 4409, 1), -- MP Increase (1x)
-(18254, 4410, 11), -- Average P. Atk.
-(18254, 4411, 11), -- Average M. Atk.
-(18254, 4412, 11), -- Average P. Def.
-(18254, 4413, 11), -- Average M. Def.
-(18254, 4414, 2), -- Standard Type
-(18254, 4415, 3), -- One-handed Sword
-(18254, 4416, 2), -- Magic Creatures
+(18254, 4408, 12), -- HP Modifiers
+(18254, 4409, 1), -- MP Modifiers
+(18254, 4410, 11), -- P. Atk. Modifiers
+(18254, 4411, 11), -- M. Atk. Modifiers
+(18254, 4412, 11), -- P. Def. Modifiers
+(18254, 4413, 11), -- M. Def. Modifiers
+(18254, 4414, 2), -- Armor Type
+(18254, 4415, 3), -- Weapon Type
+(18254, 4416, 2), -- Races
 (18254, 4438, 4), -- Greater Resist Sleep
 (18254, 4439, 4), -- Greater Resist Hold
 (18254, 4606, 9), -- Poison
-(18254, 4613, 9), -- Clan Heal
-(18254, 4614, 9), -- Death Bomb
+(18254, 4613, 9), -- NPC Clan Heal
+(18254, 4614, 9), -- NPC Death Bomb
 -- Watchman of Grave
-(18255, 4408, 12), -- HP Increase (4x)
-(18255, 4409, 1), -- MP Increase (1x)
-(18255, 4410, 11), -- Average P. Atk.
-(18255, 4411, 11), -- Average M. Atk.
-(18255, 4412, 11), -- Average P. Def.
-(18255, 4413, 11), -- Average M. Def.
-(18255, 4414, 2), -- Standard Type
-(18255, 4415, 3), -- One-handed Sword
-(18255, 4416, 2), -- Magic Creatures
+(18255, 4408, 12), -- HP Modifiers
+(18255, 4409, 1), -- MP Modifiers
+(18255, 4410, 11), -- P. Atk. Modifiers
+(18255, 4411, 11), -- M. Atk. Modifiers
+(18255, 4412, 11), -- P. Def. Modifiers
+(18255, 4413, 11), -- M. Def. Modifiers
+(18255, 4414, 2), -- Armor Type
+(18255, 4415, 3), -- Weapon Type
+(18255, 4416, 2), -- Races
 (18255, 4438, 4), -- Greater Resist Sleep
 (18255, 4439, 4), -- Greater Resist Hold
 (18255, 4606, 9), -- Poison
-(18255, 4613, 9), -- Clan Heal
-(18255, 4614, 9), -- Death Bomb
+(18255, 4613, 9), -- NPC Clan Heal
+(18255, 4614, 9), -- NPC Death Bomb
 -- Halisha's Treasure Chest
 (18256, 4045, 1), -- Resist Full Magic Attack
-(18256, 4408, 1), -- HP Increase (1x)
-(18256, 4409, 1), -- MP Increase (1x)
-(18256, 4410, 11), -- Average P. Atk.
-(18256, 4411, 11), -- Average M. Atk.
-(18256, 4412, 11), -- Average P. Def.
-(18256, 4413, 11), -- Average M. Def.
-(18256, 4414, 2), -- Standard Type
-(18256, 4415, 3), -- One-handed Sword
-(18256, 4416, 2), -- Magic Creatures
+(18256, 4408, 1), -- HP Modifiers
+(18256, 4409, 1), -- MP Modifiers
+(18256, 4410, 11), -- P. Atk. Modifiers
+(18256, 4411, 11), -- M. Atk. Modifiers
+(18256, 4412, 11), -- P. Def. Modifiers
+(18256, 4413, 11), -- M. Def. Modifiers
+(18256, 4414, 2), -- Armor Type
+(18256, 4415, 3), -- Weapon Type
+(18256, 4416, 2), -- Races
 -- Treasure Chest
 (18257, 4045, 1), -- Resist Full Magic Attack
-(18257, 4408, 1), -- HP Increase (1x)
-(18257, 4409, 1), -- MP Increase (1x)
-(18257, 4410, 11), -- Average P. Atk.
-(18257, 4411, 11), -- Average M. Atk.
-(18257, 4412, 11), -- Average P. Def.
-(18257, 4413, 11), -- Average M. Def.
-(18257, 4414, 2), -- Standard Type
-(18257, 4415, 3), -- One-handed Sword
-(18257, 4416, 2), -- Magic Creatures
+(18257, 4408, 1), -- HP Modifiers
+(18257, 4409, 1), -- MP Modifiers
+(18257, 4410, 11), -- P. Atk. Modifiers
+(18257, 4411, 11), -- M. Atk. Modifiers
+(18257, 4412, 11), -- P. Def. Modifiers
+(18257, 4413, 11), -- M. Def. Modifiers
+(18257, 4414, 2), -- Armor Type
+(18257, 4415, 3), -- Weapon Type
+(18257, 4416, 2), -- Races
 -- Treasure Chest
 (18258, 4045, 1), -- Resist Full Magic Attack
-(18258, 4408, 1), -- HP Increase (1x)
-(18258, 4409, 1), -- MP Increase (1x)
-(18258, 4410, 11), -- Average P. Atk.
-(18258, 4411, 11), -- Average M. Atk.
-(18258, 4412, 11), -- Average P. Def.
-(18258, 4413, 11), -- Average M. Def.
-(18258, 4414, 2), -- Standard Type
-(18258, 4415, 3), -- One-handed Sword
-(18258, 4416, 2), -- Magic Creatures
+(18258, 4408, 1), -- HP Modifiers
+(18258, 4409, 1), -- MP Modifiers
+(18258, 4410, 11), -- P. Atk. Modifiers
+(18258, 4411, 11), -- M. Atk. Modifiers
+(18258, 4412, 11), -- P. Def. Modifiers
+(18258, 4413, 11), -- M. Def. Modifiers
+(18258, 4414, 2), -- Armor Type
+(18258, 4415, 3), -- Weapon Type
+(18258, 4416, 2), -- Races
 -- Treasure Chest
 (18259, 4045, 1), -- Resist Full Magic Attack
-(18259, 4408, 1), -- HP Increase (1x)
-(18259, 4409, 1), -- MP Increase (1x)
-(18259, 4410, 11), -- Average P. Atk.
-(18259, 4411, 11), -- Average M. Atk.
-(18259, 4412, 11), -- Average P. Def.
-(18259, 4413, 11), -- Average M. Def.
-(18259, 4414, 2), -- Standard Type
-(18259, 4415, 3), -- One-handed Sword
-(18259, 4416, 2), -- Magic Creatures
+(18259, 4408, 1), -- HP Modifiers
+(18259, 4409, 1), -- MP Modifiers
+(18259, 4410, 11), -- P. Atk. Modifiers
+(18259, 4411, 11), -- M. Atk. Modifiers
+(18259, 4412, 11), -- P. Def. Modifiers
+(18259, 4413, 11), -- M. Def. Modifiers
+(18259, 4414, 2), -- Armor Type
+(18259, 4415, 3), -- Weapon Type
+(18259, 4416, 2), -- Races
 -- Treasure Chest
 (18260, 4045, 1), -- Resist Full Magic Attack
-(18260, 4408, 1), -- HP Increase (1x)
-(18260, 4409, 1), -- MP Increase (1x)
-(18260, 4410, 11), -- Average P. Atk.
-(18260, 4411, 11), -- Average M. Atk.
-(18260, 4412, 11), -- Average P. Def.
-(18260, 4413, 11), -- Average M. Def.
-(18260, 4414, 2), -- Standard Type
-(18260, 4415, 3), -- One-handed Sword
-(18260, 4416, 2), -- Magic Creatures
+(18260, 4408, 1), -- HP Modifiers
+(18260, 4409, 1), -- MP Modifiers
+(18260, 4410, 11), -- P. Atk. Modifiers
+(18260, 4411, 11), -- M. Atk. Modifiers
+(18260, 4412, 11), -- P. Def. Modifiers
+(18260, 4413, 11), -- M. Def. Modifiers
+(18260, 4414, 2), -- Armor Type
+(18260, 4415, 3), -- Weapon Type
+(18260, 4416, 2), -- Races
 -- Treasure Chest
 (18261, 4045, 1), -- Resist Full Magic Attack
-(18261, 4408, 1), -- HP Increase (1x)
-(18261, 4409, 1), -- MP Increase (1x)
-(18261, 4410, 11), -- Average P. Atk.
-(18261, 4411, 11), -- Average M. Atk.
-(18261, 4412, 11), -- Average P. Def.
-(18261, 4413, 11), -- Average M. Def.
-(18261, 4414, 2), -- Standard Type
-(18261, 4415, 3), -- One-handed Sword
-(18261, 4416, 2), -- Magic Creatures
+(18261, 4408, 1), -- HP Modifiers
+(18261, 4409, 1), -- MP Modifiers
+(18261, 4410, 11), -- P. Atk. Modifiers
+(18261, 4411, 11), -- M. Atk. Modifiers
+(18261, 4412, 11), -- P. Def. Modifiers
+(18261, 4413, 11), -- M. Def. Modifiers
+(18261, 4414, 2), -- Armor Type
+(18261, 4415, 3), -- Weapon Type
+(18261, 4416, 2), -- Races
 -- Treasure Chest
 (18262, 4045, 1), -- Resist Full Magic Attack
-(18262, 4408, 1), -- HP Increase (1x)
-(18262, 4409, 1), -- MP Increase (1x)
-(18262, 4410, 11), -- Average P. Atk.
-(18262, 4411, 11), -- Average M. Atk.
-(18262, 4412, 11), -- Average P. Def.
-(18262, 4413, 11), -- Average M. Def.
-(18262, 4414, 2), -- Standard Type
-(18262, 4415, 3), -- One-handed Sword
-(18262, 4416, 2), -- Magic Creatures
+(18262, 4408, 1), -- HP Modifiers
+(18262, 4409, 1), -- MP Modifiers
+(18262, 4410, 11), -- P. Atk. Modifiers
+(18262, 4411, 11), -- M. Atk. Modifiers
+(18262, 4412, 11), -- P. Def. Modifiers
+(18262, 4413, 11), -- M. Def. Modifiers
+(18262, 4414, 2), -- Armor Type
+(18262, 4415, 3), -- Weapon Type
+(18262, 4416, 2), -- Races
 -- Treasure Chest
 (18263, 4045, 1), -- Resist Full Magic Attack
-(18263, 4408, 1), -- HP Increase (1x)
-(18263, 4409, 1), -- MP Increase (1x)
-(18263, 4410, 11), -- Average P. Atk.
-(18263, 4411, 11), -- Average M. Atk.
-(18263, 4412, 11), -- Average P. Def.
-(18263, 4413, 11), -- Average M. Def.
-(18263, 4414, 2), -- Standard Type
-(18263, 4415, 3), -- One-handed Sword
-(18263, 4416, 2), -- Magic Creatures
+(18263, 4408, 1), -- HP Modifiers
+(18263, 4409, 1), -- MP Modifiers
+(18263, 4410, 11), -- P. Atk. Modifiers
+(18263, 4411, 11), -- M. Atk. Modifiers
+(18263, 4412, 11), -- P. Def. Modifiers
+(18263, 4413, 11), -- M. Def. Modifiers
+(18263, 4414, 2), -- Armor Type
+(18263, 4415, 3), -- Weapon Type
+(18263, 4416, 2), -- Races
 -- Treasure Chest
 (18264, 4045, 1), -- Resist Full Magic Attack
-(18264, 4408, 1), -- HP Increase (1x)
-(18264, 4409, 1), -- MP Increase (1x)
-(18264, 4410, 11), -- Average P. Atk.
-(18264, 4411, 11), -- Average M. Atk.
-(18264, 4412, 11), -- Average P. Def.
-(18264, 4413, 11), -- Average M. Def.
-(18264, 4414, 2), -- Standard Type
-(18264, 4415, 3), -- One-handed Sword
-(18264, 4416, 2), -- Magic Creatures
+(18264, 4408, 1), -- HP Modifiers
+(18264, 4409, 1), -- MP Modifiers
+(18264, 4410, 11), -- P. Atk. Modifiers
+(18264, 4411, 11), -- M. Atk. Modifiers
+(18264, 4412, 11), -- P. Def. Modifiers
+(18264, 4413, 11), -- M. Def. Modifiers
+(18264, 4414, 2), -- Armor Type
+(18264, 4415, 3), -- Weapon Type
+(18264, 4416, 2), -- Races
 -- Treasure Chest
 (18265, 4045, 1), -- Resist Full Magic Attack
-(18265, 4408, 1), -- HP Increase (1x)
-(18265, 4409, 1), -- MP Increase (1x)
-(18265, 4410, 11), -- Average P. Atk.
-(18265, 4411, 11), -- Average M. Atk.
-(18265, 4412, 11), -- Average P. Def.
-(18265, 4413, 21), -- Extremely Strong M. Def.
-(18265, 4414, 2), -- Standard Type
-(18265, 4415, 3), -- One-handed Sword
-(18265, 4416, 2), -- Magic Creatures
+(18265, 4408, 1), -- HP Modifiers
+(18265, 4409, 1), -- MP Modifiers
+(18265, 4410, 11), -- P. Atk. Modifiers
+(18265, 4411, 11), -- M. Atk. Modifiers
+(18265, 4412, 11), -- P. Def. Modifiers
+(18265, 4413, 21), -- M. Def. Modifiers
+(18265, 4414, 2), -- Armor Type
+(18265, 4415, 3), -- Weapon Type
+(18265, 4416, 2), -- Races
 -- Treasure Chest
 (18266, 4045, 1), -- Resist Full Magic Attack
-(18266, 4408, 1), -- HP Increase (1x)
-(18266, 4409, 1), -- MP Increase (1x)
-(18266, 4410, 11), -- Average P. Atk.
-(18266, 4411, 11), -- Average M. Atk.
-(18266, 4412, 11), -- Average P. Def.
-(18266, 4413, 21), -- Extremely Strong M. Def.
-(18266, 4414, 2), -- Standard Type
-(18266, 4415, 3), -- One-handed Sword
-(18266, 4416, 2), -- Magic Creatures
+(18266, 4408, 1), -- HP Modifiers
+(18266, 4409, 1), -- MP Modifiers
+(18266, 4410, 11), -- P. Atk. Modifiers
+(18266, 4411, 11), -- M. Atk. Modifiers
+(18266, 4412, 11), -- P. Def. Modifiers
+(18266, 4413, 21), -- M. Def. Modifiers
+(18266, 4414, 2), -- Armor Type
+(18266, 4415, 3), -- Weapon Type
+(18266, 4416, 2), -- Races
 -- Treasure Chest
 (18267, 4045, 1), -- Resist Full Magic Attack
-(18267, 4408, 1), -- HP Increase (1x)
-(18267, 4409, 1), -- MP Increase (1x)
-(18267, 4410, 11), -- Average P. Atk.
-(18267, 4411, 11), -- Average M. Atk.
-(18267, 4412, 11), -- Average P. Def.
-(18267, 4413, 21), -- Extremely Strong M. Def.
-(18267, 4414, 2), -- Standard Type
-(18267, 4415, 3), -- One-handed Sword
-(18267, 4416, 2), -- Magic Creatures
+(18267, 4408, 1), -- HP Modifiers
+(18267, 4409, 1), -- MP Modifiers
+(18267, 4410, 11), -- P. Atk. Modifiers
+(18267, 4411, 11), -- M. Atk. Modifiers
+(18267, 4412, 11), -- P. Def. Modifiers
+(18267, 4413, 21), -- M. Def. Modifiers
+(18267, 4414, 2), -- Armor Type
+(18267, 4415, 3), -- Weapon Type
+(18267, 4416, 2), -- Races
 -- Treasure Chest
 (18268, 4045, 1), -- Resist Full Magic Attack
-(18268, 4408, 1), -- HP Increase (1x)
-(18268, 4409, 1), -- MP Increase (1x)
-(18268, 4410, 11), -- Average P. Atk.
-(18268, 4411, 11), -- Average M. Atk.
-(18268, 4412, 11), -- Average P. Def.
-(18268, 4413, 21), -- Extremely Strong M. Def.
-(18268, 4414, 2), -- Standard Type
-(18268, 4415, 3), -- One-handed Sword
-(18268, 4416, 2), -- Magic Creatures
+(18268, 4408, 1), -- HP Modifiers
+(18268, 4409, 1), -- MP Modifiers
+(18268, 4410, 11), -- P. Atk. Modifiers
+(18268, 4411, 11), -- M. Atk. Modifiers
+(18268, 4412, 11), -- P. Def. Modifiers
+(18268, 4413, 21), -- M. Def. Modifiers
+(18268, 4414, 2), -- Armor Type
+(18268, 4415, 3), -- Weapon Type
+(18268, 4416, 2), -- Races
 -- Treasure Chest
 (18269, 4045, 1), -- Resist Full Magic Attack
-(18269, 4408, 1), -- HP Increase (1x)
-(18269, 4409, 1), -- MP Increase (1x)
-(18269, 4410, 11), -- Average P. Atk.
-(18269, 4411, 11), -- Average M. Atk.
-(18269, 4412, 11), -- Average P. Def.
-(18269, 4413, 21), -- Extremely Strong M. Def.
-(18269, 4414, 2), -- Standard Type
-(18269, 4415, 3), -- One-handed Sword
-(18269, 4416, 2), -- Magic Creatures
+(18269, 4408, 1), -- HP Modifiers
+(18269, 4409, 1), -- MP Modifiers
+(18269, 4410, 11), -- P. Atk. Modifiers
+(18269, 4411, 11), -- M. Atk. Modifiers
+(18269, 4412, 11), -- P. Def. Modifiers
+(18269, 4413, 21), -- M. Def. Modifiers
+(18269, 4414, 2), -- Armor Type
+(18269, 4415, 3), -- Weapon Type
+(18269, 4416, 2), -- Races
 -- Treasure Chest
 (18270, 4045, 1), -- Resist Full Magic Attack
-(18270, 4408, 1), -- HP Increase (1x)
-(18270, 4409, 1), -- MP Increase (1x)
-(18270, 4410, 11), -- Average P. Atk.
-(18270, 4411, 11), -- Average M. Atk.
-(18270, 4412, 11), -- Average P. Def.
-(18270, 4413, 21), -- Extremely Strong M. Def.
-(18270, 4414, 2), -- Standard Type
-(18270, 4415, 3), -- One-handed Sword
-(18270, 4416, 2), -- Magic Creatures
+(18270, 4408, 1), -- HP Modifiers
+(18270, 4409, 1), -- MP Modifiers
+(18270, 4410, 11), -- P. Atk. Modifiers
+(18270, 4411, 11), -- M. Atk. Modifiers
+(18270, 4412, 11), -- P. Def. Modifiers
+(18270, 4413, 21), -- M. Def. Modifiers
+(18270, 4414, 2), -- Armor Type
+(18270, 4415, 3), -- Weapon Type
+(18270, 4416, 2), -- Races
 -- Treasure Chest
 (18271, 4045, 1), -- Resist Full Magic Attack
-(18271, 4408, 1), -- HP Increase (1x)
-(18271, 4409, 1), -- MP Increase (1x)
-(18271, 4410, 11), -- Average P. Atk.
-(18271, 4411, 11), -- Average M. Atk.
-(18271, 4412, 11), -- Average P. Def.
-(18271, 4413, 21), -- Extremely Strong M. Def.
-(18271, 4414, 2), -- Standard Type
-(18271, 4415, 3), -- One-handed Sword
-(18271, 4416, 2), -- Magic Creatures
+(18271, 4408, 1), -- HP Modifiers
+(18271, 4409, 1), -- MP Modifiers
+(18271, 4410, 11), -- P. Atk. Modifiers
+(18271, 4411, 11), -- M. Atk. Modifiers
+(18271, 4412, 11), -- P. Def. Modifiers
+(18271, 4413, 21), -- M. Def. Modifiers
+(18271, 4414, 2), -- Armor Type
+(18271, 4415, 3), -- Weapon Type
+(18271, 4416, 2), -- Races
 -- Treasure Chest
 (18272, 4045, 1), -- Resist Full Magic Attack
-(18272, 4408, 1), -- HP Increase (1x)
-(18272, 4409, 1), -- MP Increase (1x)
-(18272, 4410, 11), -- Average P. Atk.
-(18272, 4411, 11), -- Average M. Atk.
-(18272, 4412, 11), -- Average P. Def.
-(18272, 4413, 21), -- Extremely Strong M. Def.
-(18272, 4414, 2), -- Standard Type
-(18272, 4415, 3), -- One-handed Sword
-(18272, 4416, 2), -- Magic Creatures
+(18272, 4408, 1), -- HP Modifiers
+(18272, 4409, 1), -- MP Modifiers
+(18272, 4410, 11), -- P. Atk. Modifiers
+(18272, 4411, 11), -- M. Atk. Modifiers
+(18272, 4412, 11), -- P. Def. Modifiers
+(18272, 4413, 21), -- M. Def. Modifiers
+(18272, 4414, 2), -- Armor Type
+(18272, 4415, 3), -- Weapon Type
+(18272, 4416, 2), -- Races
 -- Treasure Chest
 (18273, 4045, 1), -- Resist Full Magic Attack
-(18273, 4408, 1), -- HP Increase (1x)
-(18273, 4409, 1), -- MP Increase (1x)
-(18273, 4410, 11), -- Average P. Atk.
-(18273, 4411, 11), -- Average M. Atk.
-(18273, 4412, 11), -- Average P. Def.
-(18273, 4413, 21), -- Extremely Strong M. Def.
-(18273, 4414, 2), -- Standard Type
-(18273, 4415, 3), -- One-handed Sword
-(18273, 4416, 2), -- Magic Creatures
+(18273, 4408, 1), -- HP Modifiers
+(18273, 4409, 1), -- MP Modifiers
+(18273, 4410, 11), -- P. Atk. Modifiers
+(18273, 4411, 11), -- M. Atk. Modifiers
+(18273, 4412, 11), -- P. Def. Modifiers
+(18273, 4413, 21), -- M. Def. Modifiers
+(18273, 4414, 2), -- Armor Type
+(18273, 4415, 3), -- Weapon Type
+(18273, 4416, 2), -- Races
 -- Treasure Chest
 (18274, 4045, 1), -- Resist Full Magic Attack
-(18274, 4408, 1), -- HP Increase (1x)
-(18274, 4409, 1), -- MP Increase (1x)
-(18274, 4410, 11), -- Average P. Atk.
-(18274, 4411, 11), -- Average M. Atk.
-(18274, 4412, 11), -- Average P. Def.
-(18274, 4413, 21), -- Extremely Strong M. Def.
-(18274, 4414, 2), -- Standard Type
-(18274, 4415, 3), -- One-handed Sword
-(18274, 4416, 2), -- Magic Creatures
+(18274, 4408, 1), -- HP Modifiers
+(18274, 4409, 1), -- MP Modifiers
+(18274, 4410, 11), -- P. Atk. Modifiers
+(18274, 4411, 11), -- M. Atk. Modifiers
+(18274, 4412, 11), -- P. Def. Modifiers
+(18274, 4413, 21), -- M. Def. Modifiers
+(18274, 4414, 2), -- Armor Type
+(18274, 4415, 3), -- Weapon Type
+(18274, 4416, 2), -- Races
 -- Treasure Chest
 (18275, 4045, 1), -- Resist Full Magic Attack
-(18275, 4408, 1), -- HP Increase (1x)
-(18275, 4409, 1), -- MP Increase (1x)
-(18275, 4410, 11), -- Average P. Atk.
-(18275, 4411, 11), -- Average M. Atk.
-(18275, 4412, 11), -- Average P. Def.
-(18275, 4413, 21), -- Extremely Strong M. Def.
-(18275, 4414, 2), -- Standard Type
-(18275, 4415, 3), -- One-handed Sword
-(18275, 4416, 2), -- Magic Creatures
+(18275, 4408, 1), -- HP Modifiers
+(18275, 4409, 1), -- MP Modifiers
+(18275, 4410, 11), -- P. Atk. Modifiers
+(18275, 4411, 11), -- M. Atk. Modifiers
+(18275, 4412, 11), -- P. Def. Modifiers
+(18275, 4413, 21), -- M. Def. Modifiers
+(18275, 4414, 2), -- Armor Type
+(18275, 4415, 3), -- Weapon Type
+(18275, 4416, 2), -- Races
 -- Treasure Chest
 (18276, 4045, 1), -- Resist Full Magic Attack
-(18276, 4408, 1), -- HP Increase (1x)
-(18276, 4409, 1), -- MP Increase (1x)
-(18276, 4410, 11), -- Average P. Atk.
-(18276, 4411, 11), -- Average M. Atk.
-(18276, 4412, 11), -- Average P. Def.
-(18276, 4413, 21), -- Extremely Strong M. Def.
-(18276, 4414, 2), -- Standard Type
-(18276, 4415, 3), -- One-handed Sword
-(18276, 4416, 2), -- Magic Creatures
+(18276, 4408, 1), -- HP Modifiers
+(18276, 4409, 1), -- MP Modifiers
+(18276, 4410, 11), -- P. Atk. Modifiers
+(18276, 4411, 11), -- M. Atk. Modifiers
+(18276, 4412, 11), -- P. Def. Modifiers
+(18276, 4413, 21), -- M. Def. Modifiers
+(18276, 4414, 2), -- Armor Type
+(18276, 4415, 3), -- Weapon Type
+(18276, 4416, 2), -- Races
 -- Treasure Chest
 (18277, 4045, 1), -- Resist Full Magic Attack
-(18277, 4408, 1), -- HP Increase (1x)
-(18277, 4409, 1), -- MP Increase (1x)
-(18277, 4410, 11), -- Average P. Atk.
-(18277, 4411, 11), -- Average M. Atk.
-(18277, 4412, 11), -- Average P. Def.
-(18277, 4413, 21), -- Extremely Strong M. Def.
-(18277, 4414, 2), -- Standard Type
-(18277, 4415, 3), -- One-handed Sword
-(18277, 4416, 2), -- Magic Creatures
+(18277, 4408, 1), -- HP Modifiers
+(18277, 4409, 1), -- MP Modifiers
+(18277, 4410, 11), -- P. Atk. Modifiers
+(18277, 4411, 11), -- M. Atk. Modifiers
+(18277, 4412, 11), -- P. Def. Modifiers
+(18277, 4413, 21), -- M. Def. Modifiers
+(18277, 4414, 2), -- Armor Type
+(18277, 4415, 3), -- Weapon Type
+(18277, 4416, 2), -- Races
 -- Treasure Chest
 (18278, 4045, 1), -- Resist Full Magic Attack
-(18278, 4408, 1), -- HP Increase (1x)
-(18278, 4409, 1), -- MP Increase (1x)
-(18278, 4410, 11), -- Average P. Atk.
-(18278, 4411, 11), -- Average M. Atk.
-(18278, 4412, 11), -- Average P. Def.
-(18278, 4413, 21), -- Extremely Strong M. Def.
-(18278, 4414, 2), -- Standard Type
-(18278, 4415, 3), -- One-handed Sword
-(18278, 4416, 2), -- Magic Creatures
+(18278, 4408, 1), -- HP Modifiers
+(18278, 4409, 1), -- MP Modifiers
+(18278, 4410, 11), -- P. Atk. Modifiers
+(18278, 4411, 11), -- M. Atk. Modifiers
+(18278, 4412, 11), -- P. Def. Modifiers
+(18278, 4413, 21), -- M. Def. Modifiers
+(18278, 4414, 2), -- Armor Type
+(18278, 4415, 3), -- Weapon Type
+(18278, 4416, 2), -- Races
 -- Treasure Chest
 (18279, 4045, 1), -- Resist Full Magic Attack
-(18279, 4408, 1), -- HP Increase (1x)
-(18279, 4409, 1), -- MP Increase (1x)
-(18279, 4410, 11), -- Average P. Atk.
-(18279, 4411, 11), -- Average M. Atk.
-(18279, 4412, 11), -- Average P. Def.
-(18279, 4413, 21), -- Extremely Strong M. Def.
-(18279, 4414, 2), -- Standard Type
-(18279, 4415, 3), -- One-handed Sword
-(18279, 4416, 2), -- Magic Creatures
+(18279, 4408, 1), -- HP Modifiers
+(18279, 4409, 1), -- MP Modifiers
+(18279, 4410, 11), -- P. Atk. Modifiers
+(18279, 4411, 11), -- M. Atk. Modifiers
+(18279, 4412, 11), -- P. Def. Modifiers
+(18279, 4413, 21), -- M. Def. Modifiers
+(18279, 4414, 2), -- Armor Type
+(18279, 4415, 3), -- Weapon Type
+(18279, 4416, 2), -- Races
 -- Treasure Chest
 (18280, 4045, 1), -- Resist Full Magic Attack
-(18280, 4408, 1), -- HP Increase (1x)
-(18280, 4409, 1), -- MP Increase (1x)
-(18280, 4410, 11), -- Average P. Atk.
-(18280, 4411, 11), -- Average M. Atk.
-(18280, 4412, 11), -- Average P. Def.
-(18280, 4413, 21), -- Extremely Strong M. Def.
-(18280, 4414, 2), -- Standard Type
-(18280, 4415, 3), -- One-handed Sword
-(18280, 4416, 2), -- Magic Creatures
+(18280, 4408, 1), -- HP Modifiers
+(18280, 4409, 1), -- MP Modifiers
+(18280, 4410, 11), -- P. Atk. Modifiers
+(18280, 4411, 11), -- M. Atk. Modifiers
+(18280, 4412, 11), -- P. Def. Modifiers
+(18280, 4413, 21), -- M. Def. Modifiers
+(18280, 4414, 2), -- Armor Type
+(18280, 4415, 3), -- Weapon Type
+(18280, 4416, 2), -- Races
 -- Treasure Chest
 (18281, 4045, 1), -- Resist Full Magic Attack
-(18281, 4408, 1), -- HP Increase (1x)
-(18281, 4409, 1), -- MP Increase (1x)
-(18281, 4410, 11), -- Average P. Atk.
-(18281, 4411, 11), -- Average M. Atk.
-(18281, 4412, 11), -- Average P. Def.
-(18281, 4413, 21), -- Extremely Strong M. Def.
-(18281, 4414, 2), -- Standard Type
-(18281, 4415, 3), -- One-handed Sword
-(18281, 4416, 2), -- Magic Creatures
+(18281, 4408, 1), -- HP Modifiers
+(18281, 4409, 1), -- MP Modifiers
+(18281, 4410, 11), -- P. Atk. Modifiers
+(18281, 4411, 11), -- M. Atk. Modifiers
+(18281, 4412, 11), -- P. Def. Modifiers
+(18281, 4413, 21), -- M. Def. Modifiers
+(18281, 4414, 2), -- Armor Type
+(18281, 4415, 3), -- Weapon Type
+(18281, 4416, 2), -- Races
 -- Treasure Chest
 (18282, 4045, 1), -- Resist Full Magic Attack
-(18282, 4408, 1), -- HP Increase (1x)
-(18282, 4409, 1), -- MP Increase (1x)
-(18282, 4410, 11), -- Average P. Atk.
-(18282, 4411, 11), -- Average M. Atk.
-(18282, 4412, 11), -- Average P. Def.
-(18282, 4413, 21), -- Extremely Strong M. Def.
-(18282, 4414, 2), -- Standard Type
-(18282, 4415, 3), -- One-handed Sword
-(18282, 4416, 2), -- Magic Creatures
+(18282, 4408, 1), -- HP Modifiers
+(18282, 4409, 1), -- MP Modifiers
+(18282, 4410, 11), -- P. Atk. Modifiers
+(18282, 4411, 11), -- M. Atk. Modifiers
+(18282, 4412, 11), -- P. Def. Modifiers
+(18282, 4413, 21), -- M. Def. Modifiers
+(18282, 4414, 2), -- Armor Type
+(18282, 4415, 3), -- Weapon Type
+(18282, 4416, 2), -- Races
 -- Treasure Chest
 (18283, 4045, 1), -- Resist Full Magic Attack
-(18283, 4408, 1), -- HP Increase (1x)
-(18283, 4409, 1), -- MP Increase (1x)
-(18283, 4410, 11), -- Average P. Atk.
-(18283, 4411, 11), -- Average M. Atk.
-(18283, 4412, 11), -- Average P. Def.
-(18283, 4413, 21), -- Extremely Strong M. Def.
-(18283, 4414, 2), -- Standard Type
-(18283, 4415, 3), -- One-handed Sword
-(18283, 4416, 2), -- Magic Creatures
+(18283, 4408, 1), -- HP Modifiers
+(18283, 4409, 1), -- MP Modifiers
+(18283, 4410, 11), -- P. Atk. Modifiers
+(18283, 4411, 11), -- M. Atk. Modifiers
+(18283, 4412, 11), -- P. Def. Modifiers
+(18283, 4413, 21), -- M. Def. Modifiers
+(18283, 4414, 2), -- Armor Type
+(18283, 4415, 3), -- Weapon Type
+(18283, 4416, 2), -- Races
 -- Treasure Chest
 (18284, 4045, 1), -- Resist Full Magic Attack
-(18284, 4408, 1), -- HP Increase (1x)
-(18284, 4409, 1), -- MP Increase (1x)
-(18284, 4410, 11), -- Average P. Atk.
-(18284, 4411, 11), -- Average M. Atk.
-(18284, 4412, 11), -- Average P. Def.
-(18284, 4413, 21), -- Extremely Strong M. Def.
-(18284, 4414, 2), -- Standard Type
-(18284, 4415, 3), -- One-handed Sword
-(18284, 4416, 2), -- Magic Creatures
+(18284, 4408, 1), -- HP Modifiers
+(18284, 4409, 1), -- MP Modifiers
+(18284, 4410, 11), -- P. Atk. Modifiers
+(18284, 4411, 11), -- M. Atk. Modifiers
+(18284, 4412, 11), -- P. Def. Modifiers
+(18284, 4413, 21), -- M. Def. Modifiers
+(18284, 4414, 2), -- Armor Type
+(18284, 4415, 3), -- Weapon Type
+(18284, 4416, 2), -- Races
 -- Treasure Chest
 (18285, 4045, 1), -- Resist Full Magic Attack
-(18285, 4408, 1), -- HP Increase (1x)
-(18285, 4409, 1), -- MP Increase (1x)
-(18285, 4410, 11), -- Average P. Atk.
-(18285, 4411, 11), -- Average M. Atk.
-(18285, 4412, 11), -- Average P. Def.
-(18285, 4413, 21), -- Extremely Strong M. Def.
-(18285, 4414, 2), -- Standard Type
-(18285, 4415, 3), -- One-handed Sword
-(18285, 4416, 2), -- Magic Creatures
+(18285, 4408, 1), -- HP Modifiers
+(18285, 4409, 1), -- MP Modifiers
+(18285, 4410, 11), -- P. Atk. Modifiers
+(18285, 4411, 11), -- M. Atk. Modifiers
+(18285, 4412, 11), -- P. Def. Modifiers
+(18285, 4413, 21), -- M. Def. Modifiers
+(18285, 4414, 2), -- Armor Type
+(18285, 4415, 3), -- Weapon Type
+(18285, 4416, 2), -- Races
 -- Treasure Chest
 (18286, 4045, 1), -- Resist Full Magic Attack
-(18286, 4408, 1), -- HP Increase (1x)
-(18286, 4409, 1), -- MP Increase (1x)
-(18286, 4410, 11), -- Average P. Atk.
-(18286, 4411, 11), -- Average M. Atk.
-(18286, 4412, 11), -- Average P. Def.
-(18286, 4413, 21), -- Extremely Strong M. Def.
-(18286, 4414, 2), -- Standard Type
-(18286, 4415, 3), -- One-handed Sword
-(18286, 4416, 2), -- Magic Creatures
+(18286, 4408, 1), -- HP Modifiers
+(18286, 4409, 1), -- MP Modifiers
+(18286, 4410, 11), -- P. Atk. Modifiers
+(18286, 4411, 11), -- M. Atk. Modifiers
+(18286, 4412, 11), -- P. Def. Modifiers
+(18286, 4413, 21), -- M. Def. Modifiers
+(18286, 4414, 2), -- Armor Type
+(18286, 4415, 3), -- Weapon Type
+(18286, 4416, 2), -- Races
 -- Otherworldly Invader Food
 (18287, 4045, 1), -- Resist Full Magic Attack
-(18287, 4408, 1), -- HP Increase (1x)
-(18287, 4409, 1), -- MP Increase (1x)
-(18287, 4410, 11), -- Average P. Atk.
-(18287, 4411, 11), -- Average M. Atk.
-(18287, 4412, 11), -- Average P. Def.
-(18287, 4413, 11), -- Average M. Def.
-(18287, 4414, 2), -- Standard Type
-(18287, 4415, 3), -- One-handed Sword
-(18287, 4416, 2), -- Magic Creatures
+(18287, 4408, 1), -- HP Modifiers
+(18287, 4409, 1), -- MP Modifiers
+(18287, 4410, 11), -- P. Atk. Modifiers
+(18287, 4411, 11), -- M. Atk. Modifiers
+(18287, 4412, 11), -- P. Def. Modifiers
+(18287, 4413, 11), -- M. Def. Modifiers
+(18287, 4414, 2), -- Armor Type
+(18287, 4415, 3), -- Weapon Type
+(18287, 4416, 2), -- Races
 -- Otherworldly Invader Food
 (18288, 4045, 1), -- Resist Full Magic Attack
-(18288, 4408, 1), -- HP Increase (1x)
-(18288, 4409, 1), -- MP Increase (1x)
-(18288, 4410, 11), -- Average P. Atk.
-(18288, 4411, 11), -- Average M. Atk.
-(18288, 4412, 11), -- Average P. Def.
-(18288, 4413, 11), -- Average M. Def.
-(18288, 4414, 2), -- Standard Type
-(18288, 4415, 3), -- One-handed Sword
-(18288, 4416, 2), -- Magic Creatures
+(18288, 4408, 1), -- HP Modifiers
+(18288, 4409, 1), -- MP Modifiers
+(18288, 4410, 11), -- P. Atk. Modifiers
+(18288, 4411, 11), -- M. Atk. Modifiers
+(18288, 4412, 11), -- P. Def. Modifiers
+(18288, 4413, 11), -- M. Def. Modifiers
+(18288, 4414, 2), -- Armor Type
+(18288, 4415, 3), -- Weapon Type
+(18288, 4416, 2), -- Races
 -- Dimension Invader Food
 (18289, 4045, 1), -- Resist Full Magic Attack
-(18289, 4408, 1), -- HP Increase (1x)
-(18289, 4409, 1), -- MP Increase (1x)
-(18289, 4410, 11), -- Average P. Atk.
-(18289, 4411, 11), -- Average M. Atk.
-(18289, 4412, 11), -- Average P. Def.
-(18289, 4413, 11), -- Average M. Def.
-(18289, 4414, 2), -- Standard Type
-(18289, 4415, 3), -- One-handed Sword
-(18289, 4416, 2), -- Magic Creatures
+(18289, 4408, 1), -- HP Modifiers
+(18289, 4409, 1), -- MP Modifiers
+(18289, 4410, 11), -- P. Atk. Modifiers
+(18289, 4411, 11), -- M. Atk. Modifiers
+(18289, 4412, 11), -- P. Def. Modifiers
+(18289, 4413, 11), -- M. Def. Modifiers
+(18289, 4414, 2), -- Armor Type
+(18289, 4415, 3), -- Weapon Type
+(18289, 4416, 2), -- Races
 -- Dimension Invader Food
 (18290, 4045, 1), -- Resist Full Magic Attack
-(18290, 4408, 1), -- HP Increase (1x)
-(18290, 4409, 1), -- MP Increase (1x)
-(18290, 4410, 11), -- Average P. Atk.
-(18290, 4411, 11), -- Average M. Atk.
-(18290, 4412, 11), -- Average P. Def.
-(18290, 4413, 11), -- Average M. Def.
-(18290, 4414, 2), -- Standard Type
-(18290, 4415, 3), -- One-handed Sword
-(18290, 4416, 2), -- Magic Creatures
+(18290, 4408, 1), -- HP Modifiers
+(18290, 4409, 1), -- MP Modifiers
+(18290, 4410, 11), -- P. Atk. Modifiers
+(18290, 4411, 11), -- M. Atk. Modifiers
+(18290, 4412, 11), -- P. Def. Modifiers
+(18290, 4413, 11), -- M. Def. Modifiers
+(18290, 4414, 2), -- Armor Type
+(18290, 4415, 3), -- Weapon Type
+(18290, 4416, 2), -- Races
 -- Purgatory Invader Food
 (18291, 4045, 1), -- Resist Full Magic Attack
-(18291, 4408, 1), -- HP Increase (1x)
-(18291, 4409, 1), -- MP Increase (1x)
-(18291, 4410, 11), -- Average P. Atk.
-(18291, 4411, 11), -- Average M. Atk.
-(18291, 4412, 11), -- Average P. Def.
-(18291, 4413, 11), -- Average M. Def.
-(18291, 4414, 2), -- Standard Type
-(18291, 4415, 3), -- One-handed Sword
-(18291, 4416, 2), -- Magic Creatures
+(18291, 4408, 1), -- HP Modifiers
+(18291, 4409, 1), -- MP Modifiers
+(18291, 4410, 11), -- P. Atk. Modifiers
+(18291, 4411, 11), -- M. Atk. Modifiers
+(18291, 4412, 11), -- P. Def. Modifiers
+(18291, 4413, 11), -- M. Def. Modifiers
+(18291, 4414, 2), -- Armor Type
+(18291, 4415, 3), -- Weapon Type
+(18291, 4416, 2), -- Races
 -- Purgatory Invader Food
 (18292, 4045, 1), -- Resist Full Magic Attack
-(18292, 4408, 1), -- HP Increase (1x)
-(18292, 4409, 1), -- MP Increase (1x)
-(18292, 4410, 11), -- Average P. Atk.
-(18292, 4411, 11), -- Average M. Atk.
-(18292, 4412, 11), -- Average P. Def.
-(18292, 4413, 11), -- Average M. Def.
-(18292, 4414, 2), -- Standard Type
-(18292, 4415, 3), -- One-handed Sword
-(18292, 4416, 2), -- Magic Creatures
+(18292, 4408, 1), -- HP Modifiers
+(18292, 4409, 1), -- MP Modifiers
+(18292, 4410, 11), -- P. Atk. Modifiers
+(18292, 4411, 11), -- M. Atk. Modifiers
+(18292, 4412, 11), -- P. Def. Modifiers
+(18292, 4413, 11), -- M. Def. Modifiers
+(18292, 4414, 2), -- Armor Type
+(18292, 4415, 3), -- Weapon Type
+(18292, 4416, 2), -- Races
 -- Forbidden Path Invader Food
 (18293, 4045, 1), -- Resist Full Magic Attack
-(18293, 4408, 1), -- HP Increase (1x)
-(18293, 4409, 1), -- MP Increase (1x)
-(18293, 4410, 11), -- Average P. Atk.
-(18293, 4411, 11), -- Average M. Atk.
-(18293, 4412, 11), -- Average P. Def.
-(18293, 4413, 11), -- Average M. Def.
-(18293, 4414, 2), -- Standard Type
-(18293, 4415, 3), -- One-handed Sword
-(18293, 4416, 2), -- Magic Creatures
+(18293, 4408, 1), -- HP Modifiers
+(18293, 4409, 1), -- MP Modifiers
+(18293, 4410, 11), -- P. Atk. Modifiers
+(18293, 4411, 11), -- M. Atk. Modifiers
+(18293, 4412, 11), -- P. Def. Modifiers
+(18293, 4413, 11), -- M. Def. Modifiers
+(18293, 4414, 2), -- Armor Type
+(18293, 4415, 3), -- Weapon Type
+(18293, 4416, 2), -- Races
 -- Forbidden Path Invader Food
 (18294, 4045, 1), -- Resist Full Magic Attack
-(18294, 4408, 1), -- HP Increase (1x)
-(18294, 4409, 1), -- MP Increase (1x)
-(18294, 4410, 11), -- Average P. Atk.
-(18294, 4411, 11), -- Average M. Atk.
-(18294, 4412, 11), -- Average P. Def.
-(18294, 4413, 11), -- Average M. Def.
-(18294, 4414, 2), -- Standard Type
-(18294, 4415, 3), -- One-handed Sword
-(18294, 4416, 2), -- Magic Creatures
+(18294, 4408, 1), -- HP Modifiers
+(18294, 4409, 1), -- MP Modifiers
+(18294, 4410, 11), -- P. Atk. Modifiers
+(18294, 4411, 11), -- M. Atk. Modifiers
+(18294, 4412, 11), -- P. Def. Modifiers
+(18294, 4413, 11), -- M. Def. Modifiers
+(18294, 4414, 2), -- Armor Type
+(18294, 4415, 3), -- Weapon Type
+(18294, 4416, 2), -- Races
 -- Dark Omen Invader Food
 (18295, 4045, 1), -- Resist Full Magic Attack
-(18295, 4408, 1), -- HP Increase (1x)
-(18295, 4409, 1), -- MP Increase (1x)
-(18295, 4410, 11), -- Average P. Atk.
-(18295, 4411, 11), -- Average M. Atk.
-(18295, 4412, 11), -- Average P. Def.
-(18295, 4413, 11), -- Average M. Def.
-(18295, 4414, 2), -- Standard Type
-(18295, 4415, 3), -- One-handed Sword
-(18295, 4416, 2), -- Magic Creatures
+(18295, 4408, 1), -- HP Modifiers
+(18295, 4409, 1), -- MP Modifiers
+(18295, 4410, 11), -- P. Atk. Modifiers
+(18295, 4411, 11), -- M. Atk. Modifiers
+(18295, 4412, 11), -- P. Def. Modifiers
+(18295, 4413, 11), -- M. Def. Modifiers
+(18295, 4414, 2), -- Armor Type
+(18295, 4415, 3), -- Weapon Type
+(18295, 4416, 2), -- Races
 -- Dark Omen Invader Food
 (18296, 4045, 1), -- Resist Full Magic Attack
-(18296, 4408, 1), -- HP Increase (1x)
-(18296, 4409, 1), -- MP Increase (1x)
-(18296, 4410, 11), -- Average P. Atk.
-(18296, 4411, 11), -- Average M. Atk.
-(18296, 4412, 11), -- Average P. Def.
-(18296, 4413, 11), -- Average M. Def.
-(18296, 4414, 2), -- Standard Type
-(18296, 4415, 3), -- One-handed Sword
-(18296, 4416, 2), -- Magic Creatures
+(18296, 4408, 1), -- HP Modifiers
+(18296, 4409, 1), -- MP Modifiers
+(18296, 4410, 11), -- P. Atk. Modifiers
+(18296, 4411, 11), -- M. Atk. Modifiers
+(18296, 4412, 11), -- P. Def. Modifiers
+(18296, 4413, 11), -- M. Def. Modifiers
+(18296, 4414, 2), -- Armor Type
+(18296, 4415, 3), -- Weapon Type
+(18296, 4416, 2), -- Races
 -- Messenger Invader Food
 (18297, 4045, 1), -- Resist Full Magic Attack
-(18297, 4408, 1), -- HP Increase (1x)
-(18297, 4409, 1), -- MP Increase (1x)
-(18297, 4410, 11), -- Average P. Atk.
-(18297, 4411, 11), -- Average M. Atk.
-(18297, 4412, 11), -- Average P. Def.
-(18297, 4413, 11), -- Average M. Def.
-(18297, 4414, 2), -- Standard Type
-(18297, 4415, 3), -- One-handed Sword
-(18297, 4416, 2), -- Magic Creatures
+(18297, 4408, 1), -- HP Modifiers
+(18297, 4409, 1), -- MP Modifiers
+(18297, 4410, 11), -- P. Atk. Modifiers
+(18297, 4411, 11), -- M. Atk. Modifiers
+(18297, 4412, 11), -- P. Def. Modifiers
+(18297, 4413, 11), -- M. Def. Modifiers
+(18297, 4414, 2), -- Armor Type
+(18297, 4415, 3), -- Weapon Type
+(18297, 4416, 2), -- Races
 -- Messenger Invader Food
 (18298, 4045, 1), -- Resist Full Magic Attack
-(18298, 4408, 1), -- HP Increase (1x)
-(18298, 4409, 1), -- MP Increase (1x)
-(18298, 4410, 11), -- Average P. Atk.
-(18298, 4411, 11), -- Average M. Atk.
-(18298, 4412, 11), -- Average P. Def.
-(18298, 4413, 11), -- Average M. Def.
-(18298, 4414, 2), -- Standard Type
-(18298, 4415, 3), -- One-handed Sword
-(18298, 4416, 2), -- Magic Creatures
+(18298, 4408, 1), -- HP Modifiers
+(18298, 4409, 1), -- MP Modifiers
+(18298, 4410, 11), -- P. Atk. Modifiers
+(18298, 4411, 11), -- M. Atk. Modifiers
+(18298, 4412, 11), -- P. Def. Modifiers
+(18298, 4413, 11), -- M. Def. Modifiers
+(18298, 4414, 2), -- Armor Type
+(18298, 4415, 3), -- Weapon Type
+(18298, 4416, 2), -- Races
 -- Flame of the Branded
-(18299, 4408, 11), -- HP Increase (3x)
-(18299, 4409, 1), -- MP Increase (1x)
-(18299, 4410, 11), -- Average P. Atk.
-(18299, 4411, 11), -- Average M. Atk.
-(18299, 4412, 11), -- Average P. Def.
-(18299, 4413, 19), -- Extremely Strong M. Def.
-(18299, 4414, 2), -- Standard Type
-(18299, 4415, 5), -- Blunt Weapons
-(18299, 4416, 2), -- Magic Creatures
+(18299, 4408, 11), -- HP Modifiers
+(18299, 4409, 1), -- MP Modifiers
+(18299, 4410, 11), -- P. Atk. Modifiers
+(18299, 4411, 11), -- M. Atk. Modifiers
+(18299, 4412, 11), -- P. Def. Modifiers
+(18299, 4413, 19), -- M. Def. Modifiers
+(18299, 4414, 2), -- Armor Type
+(18299, 4415, 5), -- Weapon Type
+(18299, 4416, 2), -- Races
 (18299, 4438, 2), -- Greater Resist Sleep
 (18299, 4439, 2), -- Greater Resist Hold
 (18299, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
-(18299, 4614, 4), -- Death Bomb
+(18299, 4614, 4), -- NPC Death Bomb
 -- Offering of the Branded, Evoked Spirit
-(18300, 4408, 1), -- HP Increase (1x)
-(18300, 4409, 1), -- MP Increase (1x)
-(18300, 4410, 11), -- Average P. Atk.
-(18300, 4411, 11), -- Average M. Atk.
-(18300, 4412, 11), -- Average P. Def.
-(18300, 4413, 15), -- Strong M. Def.
-(18300, 4414, 2), -- Standard Type
-(18300, 4415, 3), -- One-handed Sword
-(18300, 4416, 6), -- Humanoids
+(18300, 4408, 1), -- HP Modifiers
+(18300, 4409, 1), -- MP Modifiers
+(18300, 4410, 11), -- P. Atk. Modifiers
+(18300, 4411, 11), -- M. Atk. Modifiers
+(18300, 4412, 11), -- P. Def. Modifiers
+(18300, 4413, 15), -- M. Def. Modifiers
+(18300, 4414, 2), -- Armor Type
+(18300, 4415, 3), -- Weapon Type
+(18300, 4416, 6), -- Races
 (18300, 4438, 2), -- Greater Resist Sleep
 (18300, 4439, 2), -- Greater Resist Hold
-(18300, 4572, 3), -- Triple Sonic Slash
+(18300, 4572, 3), -- NPC Triple Sonic Slash
 -- Flame of Apostates
-(18301, 4408, 11), -- HP Increase (3x)
-(18301, 4409, 1), -- MP Increase (1x)
-(18301, 4410, 11), -- Average P. Atk.
-(18301, 4411, 11), -- Average M. Atk.
-(18301, 4412, 11), -- Average P. Def.
-(18301, 4413, 19), -- Extremely Strong M. Def.
-(18301, 4414, 2), -- Standard Type
-(18301, 4415, 5), -- Blunt Weapons
-(18301, 4416, 2), -- Magic Creatures
+(18301, 4408, 11), -- HP Modifiers
+(18301, 4409, 1), -- MP Modifiers
+(18301, 4410, 11), -- P. Atk. Modifiers
+(18301, 4411, 11), -- M. Atk. Modifiers
+(18301, 4412, 11), -- P. Def. Modifiers
+(18301, 4413, 19), -- M. Def. Modifiers
+(18301, 4414, 2), -- Armor Type
+(18301, 4415, 5), -- Weapon Type
+(18301, 4416, 2), -- Races
 (18301, 4438, 2), -- Greater Resist Sleep
 (18301, 4439, 2), -- Greater Resist Hold
 (18301, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
-(18301, 4614, 5), -- Death Bomb
+(18301, 4614, 5), -- NPC Death Bomb
 -- Apostate's Offering, Evoked Spirit
-(18302, 4408, 1), -- HP Increase (1x)
-(18302, 4409, 1), -- MP Increase (1x)
-(18302, 4410, 11), -- Average P. Atk.
-(18302, 4411, 11), -- Average M. Atk.
-(18302, 4412, 11), -- Average P. Def.
-(18302, 4413, 15), -- Strong M. Def.
-(18302, 4414, 2), -- Standard Type
-(18302, 4415, 3), -- One-handed Sword
-(18302, 4416, 6), -- Humanoids
+(18302, 4408, 1), -- HP Modifiers
+(18302, 4409, 1), -- MP Modifiers
+(18302, 4410, 11), -- P. Atk. Modifiers
+(18302, 4411, 11), -- M. Atk. Modifiers
+(18302, 4412, 11), -- P. Def. Modifiers
+(18302, 4413, 15), -- M. Def. Modifiers
+(18302, 4414, 2), -- Armor Type
+(18302, 4415, 3), -- Weapon Type
+(18302, 4416, 6), -- Races
 (18302, 4438, 2), -- Greater Resist Sleep
 (18302, 4439, 2), -- Greater Resist Hold
-(18302, 4572, 4), -- Triple Sonic Slash
+(18302, 4572, 4), -- NPC Triple Sonic Slash
 -- Flame of the Witch
-(18303, 4408, 11), -- HP Increase (3x)
-(18303, 4409, 1), -- MP Increase (1x)
-(18303, 4410, 11), -- Average P. Atk.
-(18303, 4411, 11), -- Average M. Atk.
-(18303, 4412, 11), -- Average P. Def.
-(18303, 4413, 19), -- Extremely Strong M. Def.
-(18303, 4414, 2), -- Standard Type
-(18303, 4415, 5), -- Blunt Weapons
-(18303, 4416, 2), -- Magic Creatures
+(18303, 4408, 11), -- HP Modifiers
+(18303, 4409, 1), -- MP Modifiers
+(18303, 4410, 11), -- P. Atk. Modifiers
+(18303, 4411, 11), -- M. Atk. Modifiers
+(18303, 4412, 11), -- P. Def. Modifiers
+(18303, 4413, 19), -- M. Def. Modifiers
+(18303, 4414, 2), -- Armor Type
+(18303, 4415, 5), -- Weapon Type
+(18303, 4416, 2), -- Races
 (18303, 4438, 2), -- Greater Resist Sleep
 (18303, 4439, 2), -- Greater Resist Hold
 (18303, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
-(18303, 4614, 6), -- Death Bomb
+(18303, 4614, 6), -- NPC Death Bomb
 -- Witch's Offering, Evoked Spirit
-(18304, 4408, 1), -- HP Increase (1x)
-(18304, 4409, 1), -- MP Increase (1x)
-(18304, 4410, 11), -- Average P. Atk.
-(18304, 4411, 11), -- Average M. Atk.
-(18304, 4412, 11), -- Average P. Def.
-(18304, 4413, 15), -- Strong M. Def.
-(18304, 4414, 2), -- Standard Type
-(18304, 4415, 3), -- One-handed Sword
-(18304, 4416, 6), -- Humanoids
+(18304, 4408, 1), -- HP Modifiers
+(18304, 4409, 1), -- MP Modifiers
+(18304, 4410, 11), -- P. Atk. Modifiers
+(18304, 4411, 11), -- M. Atk. Modifiers
+(18304, 4412, 11), -- P. Def. Modifiers
+(18304, 4413, 15), -- M. Def. Modifiers
+(18304, 4414, 2), -- Armor Type
+(18304, 4415, 3), -- Weapon Type
+(18304, 4416, 6), -- Races
 (18304, 4438, 2), -- Greater Resist Sleep
 (18304, 4439, 2), -- Greater Resist Hold
-(18304, 4572, 5), -- Triple Sonic Slash
+(18304, 4572, 5), -- NPC Triple Sonic Slash
 -- Flame of Dark Omen
-(18305, 4408, 11), -- HP Increase (3x)
-(18305, 4409, 1), -- MP Increase (1x)
-(18305, 4410, 11), -- Average P. Atk.
-(18305, 4411, 11), -- Average M. Atk.
-(18305, 4412, 11), -- Average P. Def.
-(18305, 4413, 19), -- Extremely Strong M. Def.
-(18305, 4414, 2), -- Standard Type
-(18305, 4415, 5), -- Blunt Weapons
-(18305, 4416, 2), -- Magic Creatures
+(18305, 4408, 11), -- HP Modifiers
+(18305, 4409, 1), -- MP Modifiers
+(18305, 4410, 11), -- P. Atk. Modifiers
+(18305, 4411, 11), -- M. Atk. Modifiers
+(18305, 4412, 11), -- P. Def. Modifiers
+(18305, 4413, 19), -- M. Def. Modifiers
+(18305, 4414, 2), -- Armor Type
+(18305, 4415, 5), -- Weapon Type
+(18305, 4416, 2), -- Races
 (18305, 4438, 2), -- Greater Resist Sleep
 (18305, 4439, 2), -- Greater Resist Hold
 (18305, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
-(18305, 4614, 7), -- Death Bomb
+(18305, 4614, 7), -- NPC Death Bomb
 -- Offering of Dark Omen, Evoked Spirit
-(18306, 4408, 1), -- HP Increase (1x)
-(18306, 4409, 1), -- MP Increase (1x)
-(18306, 4410, 11), -- Average P. Atk.
-(18306, 4411, 11), -- Average M. Atk.
-(18306, 4412, 11), -- Average P. Def.
-(18306, 4413, 15), -- Strong M. Def.
-(18306, 4414, 2), -- Standard Type
-(18306, 4415, 3), -- One-handed Sword
-(18306, 4416, 6), -- Humanoids
+(18306, 4408, 1), -- HP Modifiers
+(18306, 4409, 1), -- MP Modifiers
+(18306, 4410, 11), -- P. Atk. Modifiers
+(18306, 4411, 11), -- M. Atk. Modifiers
+(18306, 4412, 11), -- P. Def. Modifiers
+(18306, 4413, 15), -- M. Def. Modifiers
+(18306, 4414, 2), -- Armor Type
+(18306, 4415, 3), -- Weapon Type
+(18306, 4416, 6), -- Races
 (18306, 4438, 2), -- Greater Resist Sleep
 (18306, 4439, 2), -- Greater Resist Hold
-(18306, 4572, 6), -- Triple Sonic Slash
+(18306, 4572, 6), -- NPC Triple Sonic Slash
 -- Flame of Forbidden Path
-(18307, 4408, 11), -- HP Increase (3x)
-(18307, 4409, 1), -- MP Increase (1x)
-(18307, 4410, 11), -- Average P. Atk.
-(18307, 4411, 11), -- Average M. Atk.
-(18307, 4412, 11), -- Average P. Def.
-(18307, 4413, 19), -- Extremely Strong M. Def.
-(18307, 4414, 2), -- Standard Type
-(18307, 4415, 5), -- Blunt Weapons
-(18307, 4416, 2), -- Magic Creatures
+(18307, 4408, 11), -- HP Modifiers
+(18307, 4409, 1), -- MP Modifiers
+(18307, 4410, 11), -- P. Atk. Modifiers
+(18307, 4411, 11), -- M. Atk. Modifiers
+(18307, 4412, 11), -- P. Def. Modifiers
+(18307, 4413, 19), -- M. Def. Modifiers
+(18307, 4414, 2), -- Armor Type
+(18307, 4415, 5), -- Weapon Type
+(18307, 4416, 2), -- Races
 (18307, 4438, 2), -- Greater Resist Sleep
 (18307, 4439, 2), -- Greater Resist Hold
 (18307, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
-(18307, 4614, 9), -- Death Bomb
+(18307, 4614, 9), -- NPC Death Bomb
 -- Offering of Forbidden Path, Evoked Spirit
-(18308, 4408, 1), -- HP Increase (1x)
-(18308, 4409, 1), -- MP Increase (1x)
-(18308, 4410, 11), -- Average P. Atk.
-(18308, 4411, 11), -- Average M. Atk.
-(18308, 4412, 11), -- Average P. Def.
-(18308, 4413, 15), -- Strong M. Def.
-(18308, 4414, 2), -- Standard Type
-(18308, 4415, 3), -- One-handed Sword
-(18308, 4416, 6), -- Humanoids
+(18308, 4408, 1), -- HP Modifiers
+(18308, 4409, 1), -- MP Modifiers
+(18308, 4410, 11), -- P. Atk. Modifiers
+(18308, 4411, 11), -- M. Atk. Modifiers
+(18308, 4412, 11), -- P. Def. Modifiers
+(18308, 4413, 15), -- M. Def. Modifiers
+(18308, 4414, 2), -- Armor Type
+(18308, 4415, 3), -- Weapon Type
+(18308, 4416, 6), -- Races
 (18308, 4438, 2), -- Greater Resist Sleep
 (18308, 4439, 2), -- Greater Resist Hold
-(18308, 4572, 8), -- Triple Sonic Slash
+(18308, 4572, 8), -- NPC Triple Sonic Slash
 -- Flame of the Branded
-(18309, 4408, 11), -- HP Increase (3x)
-(18309, 4409, 1), -- MP Increase (1x)
-(18309, 4410, 11), -- Average P. Atk.
-(18309, 4411, 11), -- Average M. Atk.
-(18309, 4412, 11), -- Average P. Def.
-(18309, 4413, 19), -- Extremely Strong M. Def.
-(18309, 4414, 2), -- Standard Type
-(18309, 4415, 5), -- Blunt Weapons
-(18309, 4416, 2), -- Magic Creatures
+(18309, 4408, 11), -- HP Modifiers
+(18309, 4409, 1), -- MP Modifiers
+(18309, 4410, 11), -- P. Atk. Modifiers
+(18309, 4411, 11), -- M. Atk. Modifiers
+(18309, 4412, 11), -- P. Def. Modifiers
+(18309, 4413, 19), -- M. Def. Modifiers
+(18309, 4414, 2), -- Armor Type
+(18309, 4415, 5), -- Weapon Type
+(18309, 4416, 2), -- Races
 (18309, 4438, 2), -- Greater Resist Sleep
 (18309, 4439, 2), -- Greater Resist Hold
 (18309, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
-(18309, 4614, 4), -- Death Bomb
+(18309, 4614, 4), -- NPC Death Bomb
 -- Offering of the Branded, Evoked Spirit
-(18310, 4408, 1), -- HP Increase (1x)
-(18310, 4409, 1), -- MP Increase (1x)
-(18310, 4410, 11), -- Average P. Atk.
-(18310, 4411, 11), -- Average M. Atk.
-(18310, 4412, 11), -- Average P. Def.
-(18310, 4413, 15), -- Strong M. Def.
-(18310, 4414, 2), -- Standard Type
-(18310, 4415, 3), -- One-handed Sword
-(18310, 4416, 6), -- Humanoids
+(18310, 4408, 1), -- HP Modifiers
+(18310, 4409, 1), -- MP Modifiers
+(18310, 4410, 11), -- P. Atk. Modifiers
+(18310, 4411, 11), -- M. Atk. Modifiers
+(18310, 4412, 11), -- P. Def. Modifiers
+(18310, 4413, 15), -- M. Def. Modifiers
+(18310, 4414, 2), -- Armor Type
+(18310, 4415, 3), -- Weapon Type
+(18310, 4416, 6), -- Races
 (18310, 4438, 2), -- Greater Resist Sleep
 (18310, 4439, 2), -- Greater Resist Hold
-(18310, 4572, 3), -- Triple Sonic Slash
+(18310, 4572, 3), -- NPC Triple Sonic Slash
 -- Flame of Apostates
-(18311, 4408, 11), -- HP Increase (3x)
-(18311, 4409, 1), -- MP Increase (1x)
-(18311, 4410, 11), -- Average P. Atk.
-(18311, 4411, 11), -- Average M. Atk.
-(18311, 4412, 11), -- Average P. Def.
-(18311, 4413, 19), -- Extremely Strong M. Def.
-(18311, 4414, 2), -- Standard Type
-(18311, 4415, 5), -- Blunt Weapons
-(18311, 4416, 2), -- Magic Creatures
+(18311, 4408, 11), -- HP Modifiers
+(18311, 4409, 1), -- MP Modifiers
+(18311, 4410, 11), -- P. Atk. Modifiers
+(18311, 4411, 11), -- M. Atk. Modifiers
+(18311, 4412, 11), -- P. Def. Modifiers
+(18311, 4413, 19), -- M. Def. Modifiers
+(18311, 4414, 2), -- Armor Type
+(18311, 4415, 5), -- Weapon Type
+(18311, 4416, 2), -- Races
 (18311, 4438, 2), -- Greater Resist Sleep
 (18311, 4439, 2), -- Greater Resist Hold
 (18311, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
-(18311, 4614, 5), -- Death Bomb
+(18311, 4614, 5), -- NPC Death Bomb
 -- Apostate's Offering, Evoked Spirit
-(18312, 4408, 1), -- HP Increase (1x)
-(18312, 4409, 1), -- MP Increase (1x)
-(18312, 4410, 11), -- Average P. Atk.
-(18312, 4411, 11), -- Average M. Atk.
-(18312, 4412, 11), -- Average P. Def.
-(18312, 4413, 15), -- Strong M. Def.
-(18312, 4414, 2), -- Standard Type
-(18312, 4415, 3), -- One-handed Sword
-(18312, 4416, 6), -- Humanoids
+(18312, 4408, 1), -- HP Modifiers
+(18312, 4409, 1), -- MP Modifiers
+(18312, 4410, 11), -- P. Atk. Modifiers
+(18312, 4411, 11), -- M. Atk. Modifiers
+(18312, 4412, 11), -- P. Def. Modifiers
+(18312, 4413, 15), -- M. Def. Modifiers
+(18312, 4414, 2), -- Armor Type
+(18312, 4415, 3), -- Weapon Type
+(18312, 4416, 6), -- Races
 (18312, 4438, 2), -- Greater Resist Sleep
 (18312, 4439, 2), -- Greater Resist Hold
-(18312, 4572, 4), -- Triple Sonic Slash
+(18312, 4572, 4), -- NPC Triple Sonic Slash
 -- Flame of the Witch
-(18313, 4408, 11), -- HP Increase (3x)
-(18313, 4409, 1), -- MP Increase (1x)
-(18313, 4410, 11), -- Average P. Atk.
-(18313, 4411, 11), -- Average M. Atk.
-(18313, 4412, 11), -- Average P. Def.
-(18313, 4413, 19), -- Extremely Strong M. Def.
-(18313, 4414, 2), -- Standard Type
-(18313, 4415, 5), -- Blunt Weapons
-(18313, 4416, 2), -- Magic Creatures
+(18313, 4408, 11), -- HP Modifiers
+(18313, 4409, 1), -- MP Modifiers
+(18313, 4410, 11), -- P. Atk. Modifiers
+(18313, 4411, 11), -- M. Atk. Modifiers
+(18313, 4412, 11), -- P. Def. Modifiers
+(18313, 4413, 19), -- M. Def. Modifiers
+(18313, 4414, 2), -- Armor Type
+(18313, 4415, 5), -- Weapon Type
+(18313, 4416, 2), -- Races
 (18313, 4438, 2), -- Greater Resist Sleep
 (18313, 4439, 2), -- Greater Resist Hold
 (18313, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
-(18313, 4614, 6), -- Death Bomb
+(18313, 4614, 6), -- NPC Death Bomb
 -- Witch's Offering, Evoked Spirit
-(18314, 4408, 1), -- HP Increase (1x)
-(18314, 4409, 1), -- MP Increase (1x)
-(18314, 4410, 11), -- Average P. Atk.
-(18314, 4411, 11), -- Average M. Atk.
-(18314, 4412, 11), -- Average P. Def.
-(18314, 4413, 15), -- Strong M. Def.
-(18314, 4414, 2), -- Standard Type
-(18314, 4415, 3), -- One-handed Sword
-(18314, 4416, 6), -- Humanoids
+(18314, 4408, 1), -- HP Modifiers
+(18314, 4409, 1), -- MP Modifiers
+(18314, 4410, 11), -- P. Atk. Modifiers
+(18314, 4411, 11), -- M. Atk. Modifiers
+(18314, 4412, 11), -- P. Def. Modifiers
+(18314, 4413, 15), -- M. Def. Modifiers
+(18314, 4414, 2), -- Armor Type
+(18314, 4415, 3), -- Weapon Type
+(18314, 4416, 6), -- Races
 (18314, 4438, 2), -- Greater Resist Sleep
 (18314, 4439, 2), -- Greater Resist Hold
-(18314, 4572, 5), -- Triple Sonic Slash
+(18314, 4572, 5), -- NPC Triple Sonic Slash
 -- Flame of Dark Omen
-(18315, 4408, 11), -- HP Increase (3x)
-(18315, 4409, 1), -- MP Increase (1x)
-(18315, 4410, 11), -- Average P. Atk.
-(18315, 4411, 11), -- Average M. Atk.
-(18315, 4412, 11), -- Average P. Def.
-(18315, 4413, 19), -- Extremely Strong M. Def.
-(18315, 4414, 2), -- Standard Type
-(18315, 4415, 5), -- Blunt Weapons
-(18315, 4416, 2), -- Magic Creatures
+(18315, 4408, 11), -- HP Modifiers
+(18315, 4409, 1), -- MP Modifiers
+(18315, 4410, 11), -- P. Atk. Modifiers
+(18315, 4411, 11), -- M. Atk. Modifiers
+(18315, 4412, 11), -- P. Def. Modifiers
+(18315, 4413, 19), -- M. Def. Modifiers
+(18315, 4414, 2), -- Armor Type
+(18315, 4415, 5), -- Weapon Type
+(18315, 4416, 2), -- Races
 (18315, 4438, 2), -- Greater Resist Sleep
 (18315, 4439, 2), -- Greater Resist Hold
 (18315, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
-(18315, 4614, 7), -- Death Bomb
+(18315, 4614, 7), -- NPC Death Bomb
 -- Offering of Dark Omen, Evoked Spirit
-(18316, 4408, 1), -- HP Increase (1x)
-(18316, 4409, 1), -- MP Increase (1x)
-(18316, 4410, 11), -- Average P. Atk.
-(18316, 4411, 11), -- Average M. Atk.
-(18316, 4412, 11), -- Average P. Def.
-(18316, 4413, 15), -- Strong M. Def.
-(18316, 4414, 2), -- Standard Type
-(18316, 4415, 3), -- One-handed Sword
-(18316, 4416, 6), -- Humanoids
+(18316, 4408, 1), -- HP Modifiers
+(18316, 4409, 1), -- MP Modifiers
+(18316, 4410, 11), -- P. Atk. Modifiers
+(18316, 4411, 11), -- M. Atk. Modifiers
+(18316, 4412, 11), -- P. Def. Modifiers
+(18316, 4413, 15), -- M. Def. Modifiers
+(18316, 4414, 2), -- Armor Type
+(18316, 4415, 3), -- Weapon Type
+(18316, 4416, 6), -- Races
 (18316, 4438, 2), -- Greater Resist Sleep
 (18316, 4439, 2), -- Greater Resist Hold
-(18316, 4572, 6), -- Triple Sonic Slash
+(18316, 4572, 6), -- NPC Triple Sonic Slash
 -- Flame of Forbidden Path
-(18317, 4408, 11), -- HP Increase (3x)
-(18317, 4409, 1), -- MP Increase (1x)
-(18317, 4410, 11), -- Average P. Atk.
-(18317, 4411, 11), -- Average M. Atk.
-(18317, 4412, 11), -- Average P. Def.
-(18317, 4413, 19), -- Extremely Strong M. Def.
-(18317, 4414, 2), -- Standard Type
-(18317, 4415, 5), -- Blunt Weapons
-(18317, 4416, 2), -- Magic Creatures
+(18317, 4408, 11), -- HP Modifiers
+(18317, 4409, 1), -- MP Modifiers
+(18317, 4410, 11), -- P. Atk. Modifiers
+(18317, 4411, 11), -- M. Atk. Modifiers
+(18317, 4412, 11), -- P. Def. Modifiers
+(18317, 4413, 19), -- M. Def. Modifiers
+(18317, 4414, 2), -- Armor Type
+(18317, 4415, 5), -- Weapon Type
+(18317, 4416, 2), -- Races
 (18317, 4438, 2), -- Greater Resist Sleep
 (18317, 4439, 2), -- Greater Resist Hold
 (18317, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
-(18317, 4614, 9), -- Death Bomb
+(18317, 4614, 9), -- NPC Death Bomb
 -- Offering of Forbidden Path, Evoked Spirit
-(18318, 4408, 1), -- HP Increase (1x)
-(18318, 4409, 1), -- MP Increase (1x)
-(18318, 4410, 11), -- Average P. Atk.
-(18318, 4411, 11), -- Average M. Atk.
-(18318, 4412, 11), -- Average P. Def.
-(18318, 4413, 15), -- Strong M. Def.
-(18318, 4414, 2), -- Standard Type
-(18318, 4415, 3), -- One-handed Sword
-(18318, 4416, 6), -- Humanoids
+(18318, 4408, 1), -- HP Modifiers
+(18318, 4409, 1), -- MP Modifiers
+(18318, 4410, 11), -- P. Atk. Modifiers
+(18318, 4411, 11), -- M. Atk. Modifiers
+(18318, 4412, 11), -- P. Def. Modifiers
+(18318, 4413, 15), -- M. Def. Modifiers
+(18318, 4414, 2), -- Armor Type
+(18318, 4415, 3), -- Weapon Type
+(18318, 4416, 6), -- Races
 (18318, 4438, 2), -- Greater Resist Sleep
 (18318, 4439, 2), -- Greater Resist Hold
-(18318, 4572, 8), -- Triple Sonic Slash
+(18318, 4572, 8), -- NPC Triple Sonic Slash
 -- Caught Frog
 (18319, 4382, 1), -- Curse of Lake Ghost
-(18319, 4408, 1), -- HP Increase (1x)
-(18319, 4409, 1), -- MP Increase (1x)
-(18319, 4410, 11), -- Average P. Atk.
-(18319, 4411, 11), -- Average M. Atk.
-(18319, 4412, 11), -- Average P. Def.
-(18319, 4413, 15), -- Strong M. Def.
-(18319, 4414, 3), -- Light Armor Type
-(18319, 4415, 5), -- Blunt Weapons
-(18319, 4416, 4), -- Animals
+(18319, 4408, 1), -- HP Modifiers
+(18319, 4409, 1), -- MP Modifiers
+(18319, 4410, 11), -- P. Atk. Modifiers
+(18319, 4411, 11), -- M. Atk. Modifiers
+(18319, 4412, 11), -- P. Def. Modifiers
+(18319, 4413, 15), -- M. Def. Modifiers
+(18319, 4414, 3), -- Armor Type
+(18319, 4415, 5), -- Weapon Type
+(18319, 4416, 4), -- Races
 (18319, 4438, 2), -- Greater Resist Sleep
 (18319, 4439, 2), -- Greater Resist Hold
 -- Caught Undine
 (18320, 4382, 2), -- Curse of Lake Ghost
-(18320, 4408, 1), -- HP Increase (1x)
-(18320, 4409, 1), -- MP Increase (1x)
-(18320, 4410, 11), -- Average P. Atk.
-(18320, 4411, 11), -- Average M. Atk.
-(18320, 4412, 11), -- Average P. Def.
-(18320, 4413, 15), -- Strong M. Def.
-(18320, 4414, 3), -- Light Armor Type
-(18320, 4415, 1), -- Bare Hands
-(18320, 4416, 7), -- Spirits
+(18320, 4408, 1), -- HP Modifiers
+(18320, 4409, 1), -- MP Modifiers
+(18320, 4410, 11), -- P. Atk. Modifiers
+(18320, 4411, 11), -- M. Atk. Modifiers
+(18320, 4412, 11), -- P. Def. Modifiers
+(18320, 4413, 15), -- M. Def. Modifiers
+(18320, 4414, 3), -- Armor Type
+(18320, 4415, 1), -- Weapon Type
+(18320, 4416, 7), -- Races
 (18320, 4438, 2), -- Greater Resist Sleep
 (18320, 4439, 2), -- Greater Resist Hold
 -- Caught Rakul
 (18321, 4382, 3), -- Curse of Lake Ghost
-(18321, 4408, 1), -- HP Increase (1x)
-(18321, 4409, 1), -- MP Increase (1x)
-(18321, 4410, 11), -- Average P. Atk.
-(18321, 4411, 11), -- Average M. Atk.
-(18321, 4412, 11), -- Average P. Def.
-(18321, 4413, 15), -- Strong M. Def.
-(18321, 4414, 3), -- Light Armor Type
-(18321, 4415, 5), -- Blunt Weapons
-(18321, 4416, 1), -- Undead
+(18321, 4408, 1), -- HP Modifiers
+(18321, 4409, 1), -- MP Modifiers
+(18321, 4410, 11), -- P. Atk. Modifiers
+(18321, 4411, 11), -- M. Atk. Modifiers
+(18321, 4412, 11), -- P. Def. Modifiers
+(18321, 4413, 15), -- M. Def. Modifiers
+(18321, 4414, 3), -- Armor Type
+(18321, 4415, 5), -- Weapon Type
+(18321, 4416, 1), -- Races
 (18321, 4438, 2), -- Greater Resist Sleep
 (18321, 4439, 2), -- Greater Resist Hold
 -- Caught Sea Giant
 (18322, 4382, 4), -- Curse of Lake Ghost
-(18322, 4408, 1), -- HP Increase (1x)
-(18322, 4409, 1), -- MP Increase (1x)
-(18322, 4410, 11), -- Average P. Atk.
-(18322, 4411, 11), -- Average M. Atk.
-(18322, 4412, 11), -- Average P. Def.
-(18322, 4413, 15), -- Strong M. Def.
-(18322, 4414, 3), -- Light Armor Type
-(18322, 4415, 3), -- One-handed Sword
-(18322, 4416, 11), -- Giants
+(18322, 4408, 1), -- HP Modifiers
+(18322, 4409, 1), -- MP Modifiers
+(18322, 4410, 11), -- P. Atk. Modifiers
+(18322, 4411, 11), -- M. Atk. Modifiers
+(18322, 4412, 11), -- P. Def. Modifiers
+(18322, 4413, 15), -- M. Def. Modifiers
+(18322, 4414, 3), -- Armor Type
+(18322, 4415, 3), -- Weapon Type
+(18322, 4416, 11), -- Races
 (18322, 4438, 2), -- Greater Resist Sleep
 (18322, 4439, 2), -- Greater Resist Hold
 -- Caught Sea Horse Soldier
 (18323, 4382, 5), -- Curse of Lake Ghost
-(18323, 4408, 1), -- HP Increase (1x)
-(18323, 4409, 1), -- MP Increase (1x)
-(18323, 4410, 11), -- Average P. Atk.
-(18323, 4411, 11), -- Average M. Atk.
-(18323, 4412, 11), -- Average P. Def.
-(18323, 4413, 15), -- Strong M. Def.
-(18323, 4414, 3), -- Light Armor Type
-(18323, 4415, 11), -- Spears
-(18323, 4416, 7), -- Spirits
+(18323, 4408, 1), -- HP Modifiers
+(18323, 4409, 1), -- MP Modifiers
+(18323, 4410, 11), -- P. Atk. Modifiers
+(18323, 4411, 11), -- M. Atk. Modifiers
+(18323, 4412, 11), -- P. Def. Modifiers
+(18323, 4413, 15), -- M. Def. Modifiers
+(18323, 4414, 3), -- Armor Type
+(18323, 4415, 11), -- Weapon Type
+(18323, 4416, 7), -- Races
 (18323, 4438, 2), -- Greater Resist Sleep
 (18323, 4439, 2), -- Greater Resist Hold
 -- Caught Homunculus
 (18324, 4382, 6), -- Curse of Lake Ghost
-(18324, 4408, 1), -- HP Increase (1x)
-(18324, 4409, 1), -- MP Increase (1x)
-(18324, 4410, 11), -- Average P. Atk.
-(18324, 4411, 11), -- Average M. Atk.
-(18324, 4412, 11), -- Average P. Def.
-(18324, 4413, 15), -- Strong M. Def.
-(18324, 4414, 3), -- Light Armor Type
-(18324, 4415, 1), -- Bare Hands
-(18324, 4416, 2), -- Magic Creatures
+(18324, 4408, 1), -- HP Modifiers
+(18324, 4409, 1), -- MP Modifiers
+(18324, 4410, 11), -- P. Atk. Modifiers
+(18324, 4411, 11), -- M. Atk. Modifiers
+(18324, 4412, 11), -- P. Def. Modifiers
+(18324, 4413, 15), -- M. Def. Modifiers
+(18324, 4414, 3), -- Armor Type
+(18324, 4415, 1), -- Weapon Type
+(18324, 4416, 2), -- Races
 (18324, 4438, 2), -- Greater Resist Sleep
 (18324, 4439, 2), -- Greater Resist Hold
 -- Caught Flava
 (18325, 4382, 7), -- Curse of Lake Ghost
-(18325, 4408, 1), -- HP Increase (1x)
-(18325, 4409, 1), -- MP Increase (1x)
-(18325, 4410, 11), -- Average P. Atk.
-(18325, 4411, 11), -- Average M. Atk.
-(18325, 4412, 11), -- Average P. Def.
-(18325, 4413, 15), -- Strong M. Def.
-(18325, 4414, 3), -- Light Armor Type
-(18325, 4415, 5), -- Blunt Weapons
-(18325, 4416, 5), -- Plants
+(18325, 4408, 1), -- HP Modifiers
+(18325, 4409, 1), -- MP Modifiers
+(18325, 4410, 11), -- P. Atk. Modifiers
+(18325, 4411, 11), -- M. Atk. Modifiers
+(18325, 4412, 11), -- P. Def. Modifiers
+(18325, 4413, 15), -- M. Def. Modifiers
+(18325, 4414, 3), -- Armor Type
+(18325, 4415, 5), -- Weapon Type
+(18325, 4416, 5), -- Races
 (18325, 4438, 2), -- Greater Resist Sleep
 (18325, 4439, 2), -- Greater Resist Hold
 -- Caught Gigantic Eye
 (18326, 4382, 9), -- Curse of Lake Ghost
-(18326, 4408, 1), -- HP Increase (1x)
-(18326, 4409, 1), -- MP Increase (1x)
-(18326, 4410, 11), -- Average P. Atk.
-(18326, 4411, 11), -- Average M. Atk.
-(18326, 4412, 11), -- Average P. Def.
-(18326, 4413, 15), -- Strong M. Def.
-(18326, 4414, 3), -- Light Armor Type
-(18326, 4415, 5), -- Blunt Weapons
-(18326, 4416, 2), -- Magic Creatures
+(18326, 4408, 1), -- HP Modifiers
+(18326, 4409, 1), -- MP Modifiers
+(18326, 4410, 11), -- P. Atk. Modifiers
+(18326, 4411, 11), -- M. Atk. Modifiers
+(18326, 4412, 11), -- P. Def. Modifiers
+(18326, 4413, 15), -- M. Def. Modifiers
+(18326, 4414, 3), -- Armor Type
+(18326, 4415, 5), -- Weapon Type
+(18326, 4416, 2), -- Races
 (18326, 4438, 2), -- Greater Resist Sleep
 (18326, 4439, 2), -- Greater Resist Hold
 -- Freya's Servant
-(18327, 4032, 5), -- Power Strike
-(18327, 4379, 5), -- Resist Spear Weapons
-(18327, 4408, 16), -- HP Increase (8x)
-(18327, 4409, 1), -- MP Increase (1x)
-(18327, 4410, 19), -- Extremely Strong P. Atk.
-(18327, 4411, 11), -- Average M. Atk.
-(18327, 4412, 11), -- Average P. Def.
-(18327, 4413, 20), -- Extremely Strong M. Def.
-(18327, 4414, 1), -- Heavy Armor Type
-(18327, 4415, 7), -- Daggers
-(18327, 4416, 2), -- Magic Creatures
-(18327, 4417, 5), -- Beasts
+(18327, 4032, 5), -- NPC Strike
+(18327, 4379, 5), -- Resist Pole Arm
+(18327, 4408, 16), -- HP Modifiers
+(18327, 4409, 1), -- MP Modifiers
+(18327, 4410, 19), -- P. Atk. Modifiers
+(18327, 4411, 11), -- M. Atk. Modifiers
+(18327, 4412, 11), -- P. Def. Modifiers
+(18327, 4413, 20), -- M. Def. Modifiers
+(18327, 4414, 1), -- Armor Type
+(18327, 4415, 7), -- Weapon Type
+(18327, 4416, 2), -- Races
+(18327, 4417, 5), -- Race Types
 -- Hall Alarm Device
-(18328, 4408, 16), -- HP Increase (8x)
-(18328, 4409, 1), -- MP Increase (1x)
-(18328, 4410, 11), -- Average P. Atk.
-(18328, 4411, 11), -- Average M. Atk.
-(18328, 4412, 11), -- Average P. Def.
-(18328, 4413, 16), -- Very Strong M. Def.
-(18328, 4414, 2), -- Standard Type
-(18328, 4415, 3), -- One-handed Sword
-(18328, 4416, 2), -- Magic Creatures
+(18328, 4408, 16), -- HP Modifiers
+(18328, 4409, 1), -- MP Modifiers
+(18328, 4410, 11), -- P. Atk. Modifiers
+(18328, 4411, 11), -- M. Atk. Modifiers
+(18328, 4412, 11), -- P. Def. Modifiers
+(18328, 4413, 16), -- M. Def. Modifiers
+(18328, 4414, 2), -- Armor Type
+(18328, 4415, 3), -- Weapon Type
+(18328, 4416, 2), -- Races
 -- Hall Keeper Captain
-(18329, 4028, 3), -- Might
-(18329, 4032, 9), -- Power Strike
-(18329, 4408, 13), -- HP Increase (5x)
-(18329, 4409, 1), -- MP Increase (1x)
-(18329, 4410, 16), -- Very Strong P. Atk.
-(18329, 4411, 11), -- Average M. Atk.
-(18329, 4412, 13), -- Slightly Strong P. Def.
-(18329, 4413, 11), -- Average M. Def.
-(18329, 4414, 1), -- Heavy Armor Type
-(18329, 4415, 3), -- One-handed Sword
-(18329, 4416, 1), -- Undead
-(18329, 4417, 35), -- Undead
+(18329, 4028, 3), -- NPC Might
+(18329, 4032, 9), -- NPC Strike
+(18329, 4408, 13), -- HP Modifiers
+(18329, 4409, 1), -- MP Modifiers
+(18329, 4410, 16), -- P. Atk. Modifiers
+(18329, 4411, 11), -- M. Atk. Modifiers
+(18329, 4412, 13), -- P. Def. Modifiers
+(18329, 4413, 11), -- M. Def. Modifiers
+(18329, 4414, 1), -- Armor Type
+(18329, 4415, 3), -- Weapon Type
+(18329, 4416, 1), -- Races
+(18329, 4417, 35), -- Race Types
 (18329, 4438, 5), -- Greater Resist Sleep
 (18329, 4439, 5), -- Greater Resist Hold
 (18329, 5467, 1), -- Dark Attacks
 -- Hall Keeper Wizard
 (18330, 4137, 9), -- Hydro Screw
-(18330, 4408, 12), -- HP Increase (4x)
-(18330, 4409, 1), -- MP Increase (1x)
-(18330, 4410, 11), -- Average P. Atk.
-(18330, 4411, 16), -- Very Strong M. Atk.
-(18330, 4412, 11), -- Average P. Def.
-(18330, 4413, 15), -- Strong M. Def.
-(18330, 4415, 1), -- Bare Hands
-(18330, 4416, 9), -- Demons
-(18330, 4417, 34), -- Undead
+(18330, 4408, 12), -- HP Modifiers
+(18330, 4409, 1), -- MP Modifiers
+(18330, 4410, 11), -- P. Atk. Modifiers
+(18330, 4411, 16), -- M. Atk. Modifiers
+(18330, 4412, 11), -- P. Def. Modifiers
+(18330, 4413, 15), -- M. Def. Modifiers
+(18330, 4415, 1), -- Weapon Type
+(18330, 4416, 9), -- Races
+(18330, 4417, 34), -- Race Types
 (18330, 4438, 2), -- Greater Resist Sleep
-(18330, 4560, 9), -- Fire Burn
+(18330, 4560, 9), -- NPC Fire Burn
 (18330, 5467, 1), -- Dark Attacks
 -- Hall Keeper Guard
-(18331, 4028, 3), -- Might
-(18331, 4032, 9), -- Power Strike
-(18331, 4408, 12), -- HP Increase (4x)
-(18331, 4409, 1), -- MP Increase (1x)
-(18331, 4410, 16), -- Very Strong P. Atk.
-(18331, 4411, 11), -- Average M. Atk.
-(18331, 4412, 13), -- Slightly Strong P. Def.
-(18331, 4413, 11), -- Average M. Def.
-(18331, 4414, 2), -- Standard Type
-(18331, 4415, 3), -- One-handed Sword
-(18331, 4416, 1), -- Undead
-(18331, 4417, 36), -- Undead
+(18331, 4028, 3), -- NPC Might
+(18331, 4032, 9), -- NPC Strike
+(18331, 4408, 12), -- HP Modifiers
+(18331, 4409, 1), -- MP Modifiers
+(18331, 4410, 16), -- P. Atk. Modifiers
+(18331, 4411, 11), -- M. Atk. Modifiers
+(18331, 4412, 13), -- P. Def. Modifiers
+(18331, 4413, 11), -- M. Def. Modifiers
+(18331, 4414, 2), -- Armor Type
+(18331, 4415, 3), -- Weapon Type
+(18331, 4416, 1), -- Races
+(18331, 4417, 36), -- Race Types
 (18331, 4438, 2), -- Greater Resist Sleep
 (18331, 4439, 5), -- Greater Resist Hold
 (18331, 5467, 1), -- Dark Attacks
 -- Hall Keeper Patrol
-(18332, 4028, 3), -- Might
-(18332, 4101, 9), -- Whirlwind
-(18332, 4408, 12), -- HP Increase (4x)
-(18332, 4409, 1), -- MP Increase (1x)
-(18332, 4410, 16), -- Very Strong P. Atk.
-(18332, 4411, 11), -- Average M. Atk.
-(18332, 4412, 13), -- Slightly Strong P. Def.
-(18332, 4413, 11), -- Average M. Def.
-(18332, 4414, 2), -- Standard Type
-(18332, 4415, 3), -- One-handed Sword
-(18332, 4416, 1), -- Undead
-(18332, 4417, 36), -- Undead
+(18332, 4028, 3), -- NPC Might
+(18332, 4101, 9), -- NPC Spinning Slash
+(18332, 4408, 12), -- HP Modifiers
+(18332, 4409, 1), -- MP Modifiers
+(18332, 4410, 16), -- P. Atk. Modifiers
+(18332, 4411, 11), -- M. Atk. Modifiers
+(18332, 4412, 13), -- P. Def. Modifiers
+(18332, 4413, 11), -- M. Def. Modifiers
+(18332, 4414, 2), -- Armor Type
+(18332, 4415, 3), -- Weapon Type
+(18332, 4416, 1), -- Races
+(18332, 4417, 36), -- Race Types
 (18332, 4438, 5), -- Greater Resist Sleep
 (18332, 4439, 2), -- Greater Resist Hold
 (18332, 5467, 1), -- Dark Attacks
 -- Hall Keeper Suicidal Soldier
-(18333, 4256, 1), -- Resist Shock
-(18333, 4408, 12), -- HP Increase (4x)
-(18333, 4409, 1), -- MP Increase (1x)
-(18333, 4410, 16), -- Very Strong P. Atk.
-(18333, 4411, 11), -- Average M. Atk.
-(18333, 4412, 13), -- Slightly Strong P. Def.
-(18333, 4413, 11), -- Average M. Def.
-(18333, 4414, 2), -- Standard Type
-(18333, 4415, 1), -- Bare Hands
-(18333, 4416, 1), -- Undead
-(18333, 4417, 13), -- Demons
+(18333, 4256, 1), -- 100% Stun Resistance.
+(18333, 4408, 12), -- HP Modifiers
+(18333, 4409, 1), -- MP Modifiers
+(18333, 4410, 16), -- P. Atk. Modifiers
+(18333, 4411, 11), -- M. Atk. Modifiers
+(18333, 4412, 13), -- P. Def. Modifiers
+(18333, 4413, 11), -- M. Def. Modifiers
+(18333, 4414, 2), -- Armor Type
+(18333, 4415, 1), -- Weapon Type
+(18333, 4416, 1), -- Races
+(18333, 4417, 13), -- Race Types
 (18333, 4438, 5), -- Greater Resist Sleep
 (18333, 4439, 5), -- Greater Resist Hold
-(18333, 4614, 9), -- Death Bomb
+(18333, 4614, 9), -- NPC Death Bomb
 (18333, 5467, 1), -- Dark Attacks
 -- Dark Choir Captain
-(18334, 4246, 1), -- Resist Bow Magic
-(18334, 4256, 1), -- Resist Shock
+(18334, 4246, 1), -- Strong in 'nan' activity magic DOT
+(18334, 4256, 1), -- 100% Stun Resistance.
 (18334, 4286, 1), -- Greater Resist Sleep
-(18334, 4408, 13), -- HP Increase (5x)
-(18334, 4409, 1), -- MP Increase (1x)
-(18334, 4410, 16), -- Very Strong P. Atk.
-(18334, 4411, 11), -- Average M. Atk.
-(18334, 4412, 13), -- Slightly Strong P. Def.
-(18334, 4413, 11), -- Average M. Def.
-(18334, 4414, 2), -- Standard Type
-(18334, 4415, 6), -- Blunt Weapons
-(18334, 4416, 9), -- Demons
-(18334, 4417, 14), -- Demons
+(18334, 4408, 13), -- HP Modifiers
+(18334, 4409, 1), -- MP Modifiers
+(18334, 4410, 16), -- P. Atk. Modifiers
+(18334, 4411, 11), -- M. Atk. Modifiers
+(18334, 4412, 13), -- P. Def. Modifiers
+(18334, 4413, 11), -- M. Def. Modifiers
+(18334, 4414, 2), -- Armor Type
+(18334, 4415, 6), -- Weapon Type
+(18334, 4416, 9), -- Races
+(18334, 4417, 14), -- Race Types
 (18334, 5467, 1), -- Dark Attacks
 -- Dark Choir Prima Donna
-(18335, 4028, 3), -- Might
-(18335, 4032, 9), -- Power Strike
-(18335, 4408, 12), -- HP Increase (4x)
-(18335, 4409, 1), -- MP Increase (1x)
-(18335, 4410, 16), -- Very Strong P. Atk.
-(18335, 4411, 11), -- Average M. Atk.
-(18335, 4412, 13), -- Slightly Strong P. Def.
-(18335, 4413, 11), -- Average M. Def.
-(18335, 4414, 3), -- Light Armor Type
-(18335, 4415, 1), -- Bare Hands
-(18335, 4416, 9), -- Demons
-(18335, 4417, 14), -- Demons
+(18335, 4028, 3), -- NPC Might
+(18335, 4032, 9), -- NPC Strike
+(18335, 4408, 12), -- HP Modifiers
+(18335, 4409, 1), -- MP Modifiers
+(18335, 4410, 16), -- P. Atk. Modifiers
+(18335, 4411, 11), -- M. Atk. Modifiers
+(18335, 4412, 13), -- P. Def. Modifiers
+(18335, 4413, 11), -- M. Def. Modifiers
+(18335, 4414, 3), -- Armor Type
+(18335, 4415, 1), -- Weapon Type
+(18335, 4416, 9), -- Races
+(18335, 4417, 14), -- Race Types
 (18335, 4438, 5), -- Greater Resist Sleep
 (18335, 4439, 2), -- Greater Resist Hold
 (18335, 5467, 1), -- Dark Attacks
 -- Dark Choir Lancer
-(18336, 4028, 3), -- Might
-(18336, 4032, 9), -- Power Strike
-(18336, 4408, 12), -- HP Increase (4x)
-(18336, 4409, 1), -- MP Increase (1x)
-(18336, 4410, 16), -- Very Strong P. Atk.
-(18336, 4411, 11), -- Average M. Atk.
-(18336, 4412, 13), -- Slightly Strong P. Def.
-(18336, 4413, 11), -- Average M. Def.
-(18336, 4414, 3), -- Light Armor Type
-(18336, 4415, 1), -- Bare Hands
-(18336, 4416, 1), -- Undead
-(18336, 4417, 14), -- Demons
+(18336, 4028, 3), -- NPC Might
+(18336, 4032, 9), -- NPC Strike
+(18336, 4408, 12), -- HP Modifiers
+(18336, 4409, 1), -- MP Modifiers
+(18336, 4410, 16), -- P. Atk. Modifiers
+(18336, 4411, 11), -- M. Atk. Modifiers
+(18336, 4412, 13), -- P. Def. Modifiers
+(18336, 4413, 11), -- M. Def. Modifiers
+(18336, 4414, 3), -- Armor Type
+(18336, 4415, 1), -- Weapon Type
+(18336, 4416, 1), -- Races
+(18336, 4417, 14), -- Race Types
 (18336, 4438, 2), -- Greater Resist Sleep
 (18336, 4439, 5), -- Greater Resist Hold
 (18336, 5467, 1), -- Dark Attacks
 -- Dark Choir Archer
-(18337, 4040, 9), -- Power Shot
-(18337, 4408, 12), -- HP Increase (4x)
-(18337, 4409, 1), -- MP Increase (1x)
-(18337, 4410, 16), -- Very Strong P. Atk.
-(18337, 4411, 11), -- Average M. Atk.
-(18337, 4412, 13), -- Slightly Strong P. Def.
-(18337, 4413, 11), -- Average M. Def.
-(18337, 4414, 3), -- Light Armor Type
-(18337, 4415, 5), -- Blunt Weapons
-(18337, 4416, 1), -- Undead
-(18337, 4417, 36), -- Undead
+(18337, 4040, 9), -- NPC Bow Attack
+(18337, 4408, 12), -- HP Modifiers
+(18337, 4409, 1), -- MP Modifiers
+(18337, 4410, 16), -- P. Atk. Modifiers
+(18337, 4411, 11), -- M. Atk. Modifiers
+(18337, 4412, 13), -- P. Def. Modifiers
+(18337, 4413, 11), -- M. Def. Modifiers
+(18337, 4414, 3), -- Armor Type
+(18337, 4415, 5), -- Weapon Type
+(18337, 4416, 1), -- Races
+(18337, 4417, 36), -- Race Types
 (18337, 4438, 2), -- Greater Resist Sleep
 (18337, 4439, 2), -- Greater Resist Hold
 (18337, 5467, 1), -- Dark Attacks
 -- Dark Choir Witch Doctor
 (18338, 4137, 9), -- Hydro Screw
-(18338, 4408, 11), -- HP Increase (3x)
-(18338, 4409, 1), -- MP Increase (1x)
-(18338, 4410, 11), -- Average P. Atk.
-(18338, 4411, 16), -- Very Strong M. Atk.
-(18338, 4412, 11), -- Average P. Def.
-(18338, 4413, 15), -- Strong M. Def.
-(18338, 4414, 3), -- Light Armor Type
-(18338, 4415, 1), -- Bare Hands
-(18338, 4416, 9), -- Demons
-(18338, 4417, 14), -- Demons
+(18338, 4408, 11), -- HP Modifiers
+(18338, 4409, 1), -- MP Modifiers
+(18338, 4410, 11), -- P. Atk. Modifiers
+(18338, 4411, 16), -- M. Atk. Modifiers
+(18338, 4412, 11), -- P. Def. Modifiers
+(18338, 4413, 15), -- M. Def. Modifiers
+(18338, 4414, 3), -- Armor Type
+(18338, 4415, 1), -- Weapon Type
+(18338, 4416, 9), -- Races
+(18338, 4417, 14), -- Race Types
 (18338, 4438, 5), -- Greater Resist Sleep
 (18338, 4439, 2), -- Greater Resist Hold
-(18338, 4560, 9), -- Fire Burn
+(18338, 4560, 9), -- NPC Fire Burn
 (18338, 5467, 1), -- Dark Attacks
 -- Dark Choir Player
-(18339, 4408, 12), -- HP Increase (4x)
-(18339, 4409, 1), -- MP Increase (1x)
-(18339, 4410, 16), -- Very Strong P. Atk.
-(18339, 4411, 11), -- Average M. Atk.
-(18339, 4412, 13), -- Slightly Strong P. Def.
-(18339, 4413, 11), -- Average M. Def.
-(18339, 4414, 2), -- Standard Type
-(18339, 4415, 3), -- One-handed Sword
-(18339, 4416, 1), -- Undead
-(18339, 4417, 36), -- Undead
+(18339, 4408, 12), -- HP Modifiers
+(18339, 4409, 1), -- MP Modifiers
+(18339, 4410, 16), -- P. Atk. Modifiers
+(18339, 4411, 11), -- M. Atk. Modifiers
+(18339, 4412, 13), -- P. Def. Modifiers
+(18339, 4413, 11), -- M. Def. Modifiers
+(18339, 4414, 2), -- Armor Type
+(18339, 4415, 3), -- Weapon Type
+(18339, 4416, 1), -- Races
+(18339, 4417, 36), -- Race Types
 (18339, 5467, 1), -- Dark Attacks
 -- Hall Keeper Suicidal Soldier
-(18340, 4256, 1), -- Resist Shock
-(18340, 4408, 12), -- HP Increase (4x)
-(18340, 4409, 1), -- MP Increase (1x)
-(18340, 4410, 11), -- Average P. Atk.
-(18340, 4411, 11), -- Average M. Atk.
-(18340, 4412, 11), -- Average P. Def.
-(18340, 4413, 11), -- Average M. Def.
-(18340, 4414, 2), -- Standard Type
-(18340, 4415, 1), -- Bare Hands
-(18340, 4416, 1), -- Undead
-(18340, 4417, 13), -- Demons
+(18340, 4256, 1), -- 100% Stun Resistance.
+(18340, 4408, 12), -- HP Modifiers
+(18340, 4409, 1), -- MP Modifiers
+(18340, 4410, 11), -- P. Atk. Modifiers
+(18340, 4411, 11), -- M. Atk. Modifiers
+(18340, 4412, 11), -- P. Def. Modifiers
+(18340, 4413, 11), -- M. Def. Modifiers
+(18340, 4414, 2), -- Armor Type
+(18340, 4415, 1), -- Weapon Type
+(18340, 4416, 1), -- Races
+(18340, 4417, 13), -- Race Types
 (18340, 4438, 5), -- Greater Resist Sleep
 (18340, 4439, 5), -- Greater Resist Hold
-(18340, 5042, 9), -- Bomb Dispell
+(18340, 5042, 9), -- NPC Dispel Bomb
 (18340, 5467, 1), -- Dark Attacks
 -- Hall Keeper Suicidal Soldier
-(18341, 4256, 1), -- Resist Shock
-(18341, 4408, 12), -- HP Increase (4x)
-(18341, 4409, 1), -- MP Increase (1x)
-(18341, 4410, 16), -- Very Strong P. Atk.
-(18341, 4411, 11), -- Average M. Atk.
-(18341, 4412, 13), -- Slightly Strong P. Def.
-(18341, 4413, 11), -- Average M. Def.
-(18341, 4414, 2), -- Standard Type
-(18341, 4415, 1), -- Bare Hands
-(18341, 4416, 1), -- Undead
-(18341, 4417, 13), -- Demons
+(18341, 4256, 1), -- 100% Stun Resistance.
+(18341, 4408, 12), -- HP Modifiers
+(18341, 4409, 1), -- MP Modifiers
+(18341, 4410, 16), -- P. Atk. Modifiers
+(18341, 4411, 11), -- M. Atk. Modifiers
+(18341, 4412, 13), -- P. Def. Modifiers
+(18341, 4413, 11), -- M. Def. Modifiers
+(18341, 4414, 2), -- Armor Type
+(18341, 4415, 1), -- Weapon Type
+(18341, 4416, 1), -- Races
+(18341, 4417, 13), -- Race Types
 (18341, 4438, 5), -- Greater Resist Sleep
 (18341, 4439, 5), -- Greater Resist Hold
-(18341, 5042, 9), -- Bomb Dispell
+(18341, 5042, 9), -- NPC Dispel Bomb
 (18341, 5467, 1), -- Dark Attacks
 -- Gremlin
-(18342, 4408, 1), -- HP Increase (1x)
-(18342, 4409, 1), -- MP Increase (1x)
-(18342, 4410, 11), -- Average P. Atk.
-(18342, 4411, 11), -- Average M. Atk.
-(18342, 4412, 11), -- Average P. Def.
-(18342, 4413, 11), -- Average M. Def.
-(18342, 4414, 2), -- Standard Type
-(18342, 4415, 3), -- One-handed Sword
-(18342, 4416, 13), -- Fairies
+(18342, 4408, 1), -- HP Modifiers
+(18342, 4409, 1), -- MP Modifiers
+(18342, 4410, 11), -- P. Atk. Modifiers
+(18342, 4411, 11), -- M. Atk. Modifiers
+(18342, 4412, 11), -- P. Def. Modifiers
+(18342, 4413, 11), -- M. Def. Modifiers
+(18342, 4414, 2), -- Armor Type
+(18342, 4415, 3), -- Weapon Type
+(18342, 4416, 13), -- Races
 -- Doorman Zombie
-(18343, 4408, 16), -- HP Increase (8x)
-(18343, 4409, 1), -- MP Increase (1x)
-(18343, 4410, 11), -- Average P. Atk.
-(18343, 4411, 15), -- Strong M. Atk.
-(18343, 4412, 11), -- Average P. Def.
-(18343, 4413, 11), -- Average M. Def.
-(18343, 4414, 3), -- Light Armor Type
-(18343, 4415, 5), -- Blunt Weapons
-(18343, 4416, 1), -- Undead
-(18343, 4417, 35), -- Undead
-(18343, 5043, 10), -- Super Sonic Blaster
+(18343, 4408, 16), -- HP Modifiers
+(18343, 4409, 1), -- MP Modifiers
+(18343, 4410, 11), -- P. Atk. Modifiers
+(18343, 4411, 15), -- M. Atk. Modifiers
+(18343, 4412, 11), -- P. Def. Modifiers
+(18343, 4413, 11), -- M. Def. Modifiers
+(18343, 4414, 3), -- Armor Type
+(18343, 4415, 5), -- Weapon Type
+(18343, 4416, 1), -- Races
+(18343, 4417, 35), -- Race Types
+(18343, 5043, 10), -- NPC Super Sonic Blaster
 -- Ancient Egg
-(18344, 4408, 8), -- HP Increase (1/4x)
-(18344, 4409, 1), -- MP Increase (1x)
-(18344, 4410, 11), -- Average P. Atk.
-(18344, 4411, 11), -- Average M. Atk.
-(18344, 4412, 11), -- Average P. Def.
-(18344, 4413, 11), -- Average M. Def.
-(18344, 4414, 2), -- Standard Type
-(18344, 4415, 5), -- Blunt Weapons
-(18344, 4416, 19), -- Others
+(18344, 4408, 8), -- HP Modifiers
+(18344, 4409, 1), -- MP Modifiers
+(18344, 4410, 11), -- P. Atk. Modifiers
+(18344, 4411, 11), -- M. Atk. Modifiers
+(18344, 4412, 11), -- P. Def. Modifiers
+(18344, 4413, 11), -- M. Def. Modifiers
+(18344, 4414, 2), -- Armor Type
+(18344, 4415, 5), -- Weapon Type
+(18344, 4416, 19), -- Races
 -- Sprigant
-(18345, 4285, 5), -- Resist Sleep Attacks
-(18345, 4408, 8), -- HP Increase (1/4x)
-(18345, 4409, 1), -- MP Increase (1x)
-(18345, 4410, 11), -- Average P. Atk.
-(18345, 4411, 11), -- Average M. Atk.
-(18345, 4412, 11), -- Average P. Def.
-(18345, 4413, 11), -- Average M. Def.
-(18345, 4414, 2), -- Standard Type
-(18345, 4415, 5), -- Blunt Weapons
-(18345, 4416, 5), -- Plants
-(18345, 4417, 33), -- Plants
+(18345, 4285, 5), -- Resist Sleep
+(18345, 4408, 8), -- HP Modifiers
+(18345, 4409, 1), -- MP Modifiers
+(18345, 4410, 11), -- P. Atk. Modifiers
+(18345, 4411, 11), -- M. Atk. Modifiers
+(18345, 4412, 11), -- P. Def. Modifiers
+(18345, 4413, 11), -- M. Def. Modifiers
+(18345, 4414, 2), -- Armor Type
+(18345, 4415, 5), -- Weapon Type
+(18345, 4416, 5), -- Races
+(18345, 4417, 33), -- Race Types
 (18345, 5085, 1), -- Anesthesia
 -- Sprigant
-(18346, 4285, 5), -- Resist Sleep Attacks
-(18346, 4408, 8), -- HP Increase (1/4x)
-(18346, 4409, 1), -- MP Increase (1x)
-(18346, 4410, 11), -- Average P. Atk.
-(18346, 4411, 11), -- Average M. Atk.
-(18346, 4412, 11), -- Average P. Def.
-(18346, 4413, 11), -- Average M. Def.
-(18346, 4414, 2), -- Standard Type
-(18346, 4415, 5), -- Blunt Weapons
-(18346, 4416, 5), -- Plants
-(18346, 4417, 33), -- Plants
+(18346, 4285, 5), -- Resist Sleep
+(18346, 4408, 8), -- HP Modifiers
+(18346, 4409, 1), -- MP Modifiers
+(18346, 4410, 11), -- P. Atk. Modifiers
+(18346, 4411, 11), -- M. Atk. Modifiers
+(18346, 4412, 11), -- P. Def. Modifiers
+(18346, 4413, 11), -- M. Def. Modifiers
+(18346, 4414, 2), -- Armor Type
+(18346, 4415, 5), -- Weapon Type
+(18346, 4416, 5), -- Races
+(18346, 4417, 33), -- Race Types
 (18346, 5086, 1), -- Deadly Poison
 -- Garden Guard
-(18347, 4078, 2), -- Flame Strike
-(18347, 4408, 1), -- HP Increase (1x)
-(18347, 4409, 1), -- MP Increase (1x)
-(18347, 4410, 11), -- Average P. Atk.
-(18347, 4411, 11), -- Average M. Atk.
-(18347, 4412, 11), -- Average P. Def.
-(18347, 4413, 11), -- Average M. Def.
-(18347, 4414, 2), -- Standard Type
-(18347, 4415, 3), -- One-handed Sword
-(18347, 4416, 6), -- Humanoids
+(18347, 4078, 2), -- NPC Flamestrike
+(18347, 4408, 1), -- HP Modifiers
+(18347, 4409, 1), -- MP Modifiers
+(18347, 4410, 11), -- P. Atk. Modifiers
+(18347, 4411, 11), -- M. Atk. Modifiers
+(18347, 4412, 11), -- P. Def. Modifiers
+(18347, 4413, 11), -- M. Def. Modifiers
+(18347, 4414, 2), -- Armor Type
+(18347, 4415, 3), -- Weapon Type
+(18347, 4416, 6), -- Races
 -- Garden Guard
-(18348, 4032, 2), -- Power Strike
-(18348, 4408, 1), -- HP Increase (1x)
-(18348, 4409, 1), -- MP Increase (1x)
-(18348, 4410, 11), -- Average P. Atk.
-(18348, 4411, 11), -- Average M. Atk.
-(18348, 4412, 11), -- Average P. Def.
-(18348, 4413, 11), -- Average M. Def.
-(18348, 4414, 2), -- Standard Type
-(18348, 4415, 3), -- One-handed Sword
-(18348, 4416, 6), -- Humanoids
+(18348, 4032, 2), -- NPC Strike
+(18348, 4408, 1), -- HP Modifiers
+(18348, 4409, 1), -- MP Modifiers
+(18348, 4410, 11), -- P. Atk. Modifiers
+(18348, 4411, 11), -- M. Atk. Modifiers
+(18348, 4412, 11), -- P. Def. Modifiers
+(18348, 4413, 11), -- M. Def. Modifiers
+(18348, 4414, 2), -- Armor Type
+(18348, 4415, 3), -- Weapon Type
+(18348, 4416, 6), -- Races
 -- Garden Guard
-(18349, 4408, 1), -- HP Increase (1x)
-(18349, 4409, 1), -- MP Increase (1x)
-(18349, 4410, 11), -- Average P. Atk.
-(18349, 4411, 11), -- Average M. Atk.
-(18349, 4412, 11), -- Average P. Def.
-(18349, 4413, 11), -- Average M. Def.
-(18349, 4414, 2), -- Standard Type
-(18349, 4416, 6), -- Humanoids
-(18349, 5492, 2), -- Power Shot
+(18349, 4408, 1), -- HP Modifiers
+(18349, 4409, 1), -- MP Modifiers
+(18349, 4410, 11), -- P. Atk. Modifiers
+(18349, 4411, 11), -- M. Atk. Modifiers
+(18349, 4412, 11), -- P. Def. Modifiers
+(18349, 4413, 11), -- M. Def. Modifiers
+(18349, 4414, 2), -- Armor Type
+(18349, 4416, 6), -- Races
+(18349, 5492, 2), -- NPC CrossBow Attack
 -- Garden Guard
-(18350, 4001, 2), -- Windstrike
-(18350, 4077, 2), -- Aura Burn
-(18350, 4408, 1), -- HP Increase (1x)
-(18350, 4409, 1), -- MP Increase (1x)
-(18350, 4410, 11), -- Average P. Atk.
-(18350, 4411, 11), -- Average M. Atk.
-(18350, 4412, 11), -- Average P. Def.
-(18350, 4413, 11), -- Average M. Def.
-(18350, 4414, 2), -- Standard Type
-(18350, 4415, 3), -- One-handed Sword
-(18350, 4416, 6), -- Humanoids
+(18350, 4001, 2), -- NPC Wind Strike
+(18350, 4077, 2), -- NPC Aura Burn
+(18350, 4408, 1), -- HP Modifiers
+(18350, 4409, 1), -- MP Modifiers
+(18350, 4410, 11), -- P. Atk. Modifiers
+(18350, 4411, 11), -- M. Atk. Modifiers
+(18350, 4412, 11), -- P. Def. Modifiers
+(18350, 4413, 11), -- M. Def. Modifiers
+(18350, 4414, 2), -- Armor Type
+(18350, 4415, 3), -- Weapon Type
+(18350, 4416, 6), -- Races
 -- Garden Guard
-(18351, 4033, 2), -- Aura Burn
-(18351, 4066, 2), -- Twister
-(18351, 4408, 1), -- HP Increase (1x)
-(18351, 4409, 1), -- MP Increase (1x)
-(18351, 4410, 11), -- Average P. Atk.
-(18351, 4411, 11), -- Average M. Atk.
-(18351, 4412, 11), -- Average P. Def.
-(18351, 4413, 11), -- Average M. Def.
-(18351, 4414, 2), -- Standard Type
-(18351, 4415, 3), -- One-handed Sword
-(18351, 4416, 6), -- Humanoids
+(18351, 4033, 2), -- NPC Burn
+(18351, 4066, 2), -- NPC Twister
+(18351, 4408, 1), -- HP Modifiers
+(18351, 4409, 1), -- MP Modifiers
+(18351, 4410, 11), -- P. Atk. Modifiers
+(18351, 4411, 11), -- M. Atk. Modifiers
+(18351, 4412, 11), -- P. Def. Modifiers
+(18351, 4413, 11), -- M. Def. Modifiers
+(18351, 4414, 2), -- Armor Type
+(18351, 4415, 3), -- Weapon Type
+(18351, 4416, 6), -- Races
 -- Kamael Guard
-(18352, 4032, 2), -- Power Strike
-(18352, 4408, 10), -- HP Increase (2x)
-(18352, 4409, 1), -- MP Increase (1x)
-(18352, 4410, 13), -- Slightly Strong P. Atk.
-(18352, 4411, 11), -- Average M. Atk.
-(18352, 4412, 13), -- Slightly Strong P. Def.
-(18352, 4413, 11), -- Average M. Def.
-(18352, 4414, 2), -- Standard Type
-(18352, 4415, 3), -- One-handed Sword
-(18352, 4416, 6), -- Humanoids
+(18352, 4032, 2), -- NPC Strike
+(18352, 4408, 10), -- HP Modifiers
+(18352, 4409, 1), -- MP Modifiers
+(18352, 4410, 13), -- P. Atk. Modifiers
+(18352, 4411, 11), -- M. Atk. Modifiers
+(18352, 4412, 13), -- P. Def. Modifiers
+(18352, 4413, 11), -- M. Def. Modifiers
+(18352, 4414, 2), -- Armor Type
+(18352, 4415, 3), -- Weapon Type
+(18352, 4416, 6), -- Races
 -- Guardian of Records
-(18353, 4408, 11), -- HP Increase (3x)
-(18353, 4409, 1), -- MP Increase (1x)
-(18353, 4410, 13), -- Slightly Strong P. Atk.
-(18353, 4411, 11), -- Average M. Atk.
-(18353, 4412, 13), -- Slightly Strong P. Def.
-(18353, 4413, 11), -- Average M. Def.
-(18353, 4414, 2), -- Standard Type
-(18353, 4415, 3), -- One-handed Sword
-(18353, 4416, 6), -- Humanoids
+(18353, 4408, 11), -- HP Modifiers
+(18353, 4409, 1), -- MP Modifiers
+(18353, 4410, 13), -- P. Atk. Modifiers
+(18353, 4411, 11), -- M. Atk. Modifiers
+(18353, 4412, 13), -- P. Def. Modifiers
+(18353, 4413, 11), -- M. Def. Modifiers
+(18353, 4414, 2), -- Armor Type
+(18353, 4415, 3), -- Weapon Type
+(18353, 4416, 6), -- Races
 (18353, 5260, 2), -- Disarm
 -- Guardian of Observation
-(18354, 4032, 2), -- Power Strike
-(18354, 4408, 10), -- HP Increase (2x)
-(18354, 4409, 1), -- MP Increase (1x)
-(18354, 4410, 13), -- Slightly Strong P. Atk.
-(18354, 4411, 11), -- Average M. Atk.
-(18354, 4412, 13), -- Slightly Strong P. Def.
-(18354, 4413, 11), -- Average M. Def.
-(18354, 4414, 2), -- Standard Type
-(18354, 4415, 3), -- One-handed Sword
-(18354, 4416, 6), -- Humanoids
+(18354, 4032, 2), -- NPC Strike
+(18354, 4408, 10), -- HP Modifiers
+(18354, 4409, 1), -- MP Modifiers
+(18354, 4410, 13), -- P. Atk. Modifiers
+(18354, 4411, 11), -- M. Atk. Modifiers
+(18354, 4412, 13), -- P. Def. Modifiers
+(18354, 4413, 11), -- M. Def. Modifiers
+(18354, 4414, 2), -- Armor Type
+(18354, 4415, 3), -- Weapon Type
+(18354, 4416, 6), -- Races
 -- Spicula's Guard
-(18355, 4077, 2), -- Aura Burn
+(18355, 4077, 2), -- NPC Aura Burn
 (18355, 4137, 2), -- Hydro Screw
-(18355, 4408, 11), -- HP Increase (3x)
-(18355, 4409, 1), -- MP Increase (1x)
-(18355, 4410, 11), -- Average P. Atk.
-(18355, 4411, 13), -- Slightly Strong M. Atk.
-(18355, 4412, 13), -- Slightly Strong P. Def.
-(18355, 4413, 11), -- Average M. Def.
-(18355, 4414, 2), -- Standard Type
-(18355, 4415, 3), -- One-handed Sword
-(18355, 4416, 6), -- Humanoids
+(18355, 4408, 11), -- HP Modifiers
+(18355, 4409, 1), -- MP Modifiers
+(18355, 4410, 11), -- P. Atk. Modifiers
+(18355, 4411, 13), -- M. Atk. Modifiers
+(18355, 4412, 13), -- P. Def. Modifiers
+(18355, 4413, 11), -- M. Def. Modifiers
+(18355, 4414, 2), -- Armor Type
+(18355, 4415, 3), -- Weapon Type
+(18355, 4416, 6), -- Races
 -- Harkilgamed's Gatekeeper
-(18356, 4408, 11), -- HP Increase (3x)
-(18356, 4409, 1), -- MP Increase (1x)
-(18356, 4410, 13), -- Slightly Strong P. Atk.
-(18356, 4411, 11), -- Average M. Atk.
-(18356, 4412, 13), -- Slightly Strong P. Def.
-(18356, 4413, 11), -- Average M. Def.
-(18356, 4414, 2), -- Standard Type
-(18356, 4416, 6), -- Humanoids
-(18356, 5262, 2), -- Rising Shot
+(18356, 4408, 11), -- HP Modifiers
+(18356, 4409, 1), -- MP Modifiers
+(18356, 4410, 13), -- P. Atk. Modifiers
+(18356, 4411, 11), -- M. Atk. Modifiers
+(18356, 4412, 13), -- P. Def. Modifiers
+(18356, 4413, 11), -- M. Def. Modifiers
+(18356, 4414, 2), -- Armor Type
+(18356, 4416, 6), -- Races
+(18356, 5262, 2), -- NPC - Rise Shot
 -- Rodenpicula's Gatekeeper
-(18357, 4408, 11), -- HP Increase (3x)
-(18357, 4409, 1), -- MP Increase (1x)
-(18357, 4410, 13), -- Slightly Strong P. Atk.
-(18357, 4411, 11), -- Average M. Atk.
-(18357, 4412, 13), -- Slightly Strong P. Def.
-(18357, 4413, 11), -- Average M. Def.
-(18357, 4414, 2), -- Standard Type
-(18357, 4415, 3), -- One-handed Sword
-(18357, 4416, 6), -- Humanoids
-(18357, 5263, 2), -- Chain Lightning
+(18357, 4408, 11), -- HP Modifiers
+(18357, 4409, 1), -- MP Modifiers
+(18357, 4410, 13), -- P. Atk. Modifiers
+(18357, 4411, 11), -- M. Atk. Modifiers
+(18357, 4412, 13), -- P. Def. Modifiers
+(18357, 4413, 11), -- M. Def. Modifiers
+(18357, 4414, 2), -- Armor Type
+(18357, 4415, 3), -- Weapon Type
+(18357, 4416, 6), -- Races
+(18357, 5263, 2), -- NPC _ Chain Lightning
 -- Guardian of Secrets
-(18358, 4032, 2), -- Power Strike
-(18358, 4408, 10), -- HP Increase (2x)
-(18358, 4409, 1), -- MP Increase (1x)
-(18358, 4410, 13), -- Slightly Strong P. Atk.
-(18358, 4411, 11), -- Average M. Atk.
-(18358, 4412, 13), -- Slightly Strong P. Def.
-(18358, 4413, 11), -- Average M. Def.
-(18358, 4414, 2), -- Standard Type
-(18358, 4415, 3), -- One-handed Sword
-(18358, 4416, 6), -- Humanoids
+(18358, 4032, 2), -- NPC Strike
+(18358, 4408, 10), -- HP Modifiers
+(18358, 4409, 1), -- MP Modifiers
+(18358, 4410, 13), -- P. Atk. Modifiers
+(18358, 4411, 11), -- M. Atk. Modifiers
+(18358, 4412, 13), -- P. Def. Modifiers
+(18358, 4413, 11), -- M. Def. Modifiers
+(18358, 4414, 2), -- Armor Type
+(18358, 4415, 3), -- Weapon Type
+(18358, 4416, 6), -- Races
 -- Arviterre's Guardian
-(18359, 4032, 2), -- Power Strike
-(18359, 4408, 10), -- HP Increase (2x)
-(18359, 4409, 1), -- MP Increase (1x)
-(18359, 4410, 13), -- Slightly Strong P. Atk.
-(18359, 4411, 11), -- Average M. Atk.
-(18359, 4412, 13), -- Slightly Strong P. Def.
-(18359, 4413, 11), -- Average M. Def.
-(18359, 4414, 2), -- Standard Type
-(18359, 4415, 3), -- One-handed Sword
-(18359, 4416, 6), -- Humanoids
+(18359, 4032, 2), -- NPC Strike
+(18359, 4408, 10), -- HP Modifiers
+(18359, 4409, 1), -- MP Modifiers
+(18359, 4410, 13), -- P. Atk. Modifiers
+(18359, 4411, 11), -- M. Atk. Modifiers
+(18359, 4412, 13), -- P. Def. Modifiers
+(18359, 4413, 11), -- M. Def. Modifiers
+(18359, 4414, 2), -- Armor Type
+(18359, 4415, 3), -- Weapon Type
+(18359, 4416, 6), -- Races
 -- Katenar's Gatekeeper
-(18360, 4032, 2), -- Power Strike
-(18360, 4408, 10), -- HP Increase (2x)
-(18360, 4409, 1), -- MP Increase (1x)
-(18360, 4410, 13), -- Slightly Strong P. Atk.
-(18360, 4411, 11), -- Average M. Atk.
-(18360, 4412, 13), -- Slightly Strong P. Def.
-(18360, 4413, 11), -- Average M. Def.
-(18360, 4414, 2), -- Standard Type
-(18360, 4415, 3), -- One-handed Sword
-(18360, 4416, 6), -- Humanoids
+(18360, 4032, 2), -- NPC Strike
+(18360, 4408, 10), -- HP Modifiers
+(18360, 4409, 1), -- MP Modifiers
+(18360, 4410, 13), -- P. Atk. Modifiers
+(18360, 4411, 11), -- M. Atk. Modifiers
+(18360, 4412, 13), -- P. Def. Modifiers
+(18360, 4413, 11), -- M. Def. Modifiers
+(18360, 4414, 2), -- Armor Type
+(18360, 4415, 3), -- Weapon Type
+(18360, 4416, 6), -- Races
 -- Guardian of Prediction
-(18361, 4408, 11), -- HP Increase (3x)
-(18361, 4409, 1), -- MP Increase (1x)
-(18361, 4410, 13), -- Slightly Strong P. Atk.
-(18361, 4411, 11), -- Average M. Atk.
-(18361, 4412, 13), -- Slightly Strong P. Def.
-(18361, 4413, 11), -- Average M. Def.
-(18361, 4414, 2), -- Standard Type
-(18361, 4415, 3), -- One-handed Sword
-(18361, 4416, 6), -- Humanoids
+(18361, 4408, 11), -- HP Modifiers
+(18361, 4409, 1), -- MP Modifiers
+(18361, 4410, 13), -- P. Atk. Modifiers
+(18361, 4411, 11), -- M. Atk. Modifiers
+(18361, 4412, 13), -- P. Def. Modifiers
+(18361, 4413, 11), -- M. Def. Modifiers
+(18361, 4414, 2), -- Armor Type
+(18361, 4415, 3), -- Weapon Type
+(18361, 4416, 6), -- Races
 (18361, 5264, 2), -- Death Mark
 -- Garden Guard
-(18362, 4032, 2), -- Power Strike
-(18362, 4408, 1), -- HP Increase (1x)
-(18362, 4409, 1), -- MP Increase (1x)
-(18362, 4410, 11), -- Average P. Atk.
-(18362, 4411, 11), -- Average M. Atk.
-(18362, 4412, 11), -- Average P. Def.
-(18362, 4413, 11), -- Average M. Def.
-(18362, 4414, 2), -- Standard Type
-(18362, 4415, 3), -- One-handed Sword
-(18362, 4416, 6), -- Humanoids
+(18362, 4032, 2), -- NPC Strike
+(18362, 4408, 1), -- HP Modifiers
+(18362, 4409, 1), -- MP Modifiers
+(18362, 4410, 11), -- P. Atk. Modifiers
+(18362, 4411, 11), -- M. Atk. Modifiers
+(18362, 4412, 11), -- P. Def. Modifiers
+(18362, 4413, 11), -- M. Def. Modifiers
+(18362, 4414, 2), -- Armor Type
+(18362, 4415, 3), -- Weapon Type
+(18362, 4416, 6), -- Races
 -- Garden Guard
-(18363, 4408, 1), -- HP Increase (1x)
-(18363, 4409, 1), -- MP Increase (1x)
-(18363, 4410, 11), -- Average P. Atk.
-(18363, 4411, 11), -- Average M. Atk.
-(18363, 4412, 11), -- Average P. Def.
-(18363, 4413, 11), -- Average M. Def.
-(18363, 4414, 2), -- Standard Type
-(18363, 4416, 6), -- Humanoids
-(18363, 5492, 2), -- Power Shot
+(18363, 4408, 1), -- HP Modifiers
+(18363, 4409, 1), -- MP Modifiers
+(18363, 4410, 11), -- P. Atk. Modifiers
+(18363, 4411, 11), -- M. Atk. Modifiers
+(18363, 4412, 11), -- P. Def. Modifiers
+(18363, 4413, 11), -- M. Def. Modifiers
+(18363, 4414, 2), -- Armor Type
+(18363, 4416, 6), -- Races
+(18363, 5492, 2), -- NPC CrossBow Attack
 -- Witch Warder
-(18364, 4085, 1), -- Critical Damage
+(18364, 4085, 1), -- Critical Power
 (18364, 4095, 1), -- Damage Shield
 (18364, 4332, 1), -- Mental Aegis
-(18364, 4408, 13), -- HP Increase (5x)
-(18364, 4409, 1), -- MP Increase (1x)
-(18364, 4410, 11), -- Average P. Atk.
-(18364, 4411, 11), -- Average M. Atk.
-(18364, 4412, 11), -- Average P. Def.
-(18364, 4413, 11), -- Average M. Def.
-(18364, 4414, 2), -- Standard Type
-(18364, 4415, 1), -- Bare Hands
-(18364, 4416, 3), -- Beasts
-(18364, 4471, 10), -- Anger
-(18364, 5334, 2), -- Power Strike
+(18364, 4408, 13), -- HP Modifiers
+(18364, 4409, 1), -- MP Modifiers
+(18364, 4410, 11), -- P. Atk. Modifiers
+(18364, 4411, 11), -- M. Atk. Modifiers
+(18364, 4412, 11), -- P. Def. Modifiers
+(18364, 4413, 11), -- M. Def. Modifiers
+(18364, 4414, 2), -- Armor Type
+(18364, 4415, 1), -- Weapon Type
+(18364, 4416, 3), -- Races
+(18364, 4471, 10), -- NPC Anger
+(18364, 5334, 2), -- NPC(party) - Physical Single Close Range Attack
 -- Witch Warder
-(18365, 4085, 1), -- Critical Damage
+(18365, 4085, 1), -- Critical Power
 (18365, 4095, 1), -- Damage Shield
 (18365, 4332, 1), -- Mental Aegis
-(18365, 4408, 13), -- HP Increase (5x)
-(18365, 4409, 1), -- MP Increase (1x)
-(18365, 4410, 11), -- Average P. Atk.
-(18365, 4411, 11), -- Average M. Atk.
-(18365, 4412, 11), -- Average P. Def.
-(18365, 4413, 11), -- Average M. Def.
-(18365, 4414, 2), -- Standard Type
-(18365, 4415, 1), -- Bare Hands
-(18365, 4416, 3), -- Beasts
-(18365, 4471, 10), -- Anger
-(18365, 5374, 2), -- Flame Strike
-(18365, 5393, 2), -- Mana Burn
+(18365, 4408, 13), -- HP Modifiers
+(18365, 4409, 1), -- MP Modifiers
+(18365, 4410, 11), -- P. Atk. Modifiers
+(18365, 4411, 11), -- M. Atk. Modifiers
+(18365, 4412, 11), -- P. Def. Modifiers
+(18365, 4413, 11), -- M. Def. Modifiers
+(18365, 4414, 2), -- Armor Type
+(18365, 4415, 1), -- Weapon Type
+(18365, 4416, 3), -- Races
+(18365, 4471, 10), -- NPC Anger
+(18365, 5374, 2), -- NPC(party) -Magic Range Long Range DD - Fire
+(18365, 5393, 2), -- NPC MP Burn
 -- Witch Warder
-(18366, 4085, 1), -- Critical Damage
+(18366, 4085, 1), -- Critical Power
 (18366, 4095, 1), -- Damage Shield
 (18366, 4332, 1), -- Mental Aegis
-(18366, 4408, 13), -- HP Increase (5x)
-(18366, 4409, 1), -- MP Increase (1x)
-(18366, 4410, 11), -- Average P. Atk.
-(18366, 4411, 11), -- Average M. Atk.
-(18366, 4412, 11), -- Average P. Def.
-(18366, 4413, 11), -- Average M. Def.
-(18366, 4414, 2), -- Standard Type
-(18366, 4415, 1), -- Bare Hands
-(18366, 4416, 3), -- Beasts
-(18366, 5334, 3), -- Power Strike
-(18366, 5374, 3), -- Flame Strike
+(18366, 4408, 13), -- HP Modifiers
+(18366, 4409, 1), -- MP Modifiers
+(18366, 4410, 11), -- P. Atk. Modifiers
+(18366, 4411, 11), -- M. Atk. Modifiers
+(18366, 4412, 11), -- P. Def. Modifiers
+(18366, 4413, 11), -- M. Def. Modifiers
+(18366, 4414, 2), -- Armor Type
+(18366, 4415, 1), -- Weapon Type
+(18366, 4416, 3), -- Races
+(18366, 5334, 3), -- NPC(party) - Physical Single Close Range Attack
+(18366, 5374, 3), -- NPC(party) -Magic Range Long Range DD - Fire
 -- Prison Guard
-(18367, 4408, 1), -- HP Increase (1x)
-(18367, 4409, 1), -- MP Increase (1x)
-(18367, 4410, 11), -- Average P. Atk.
-(18367, 4411, 11), -- Average M. Atk.
-(18367, 4412, 11), -- Average P. Def.
-(18367, 4413, 11), -- Average M. Def.
-(18367, 4414, 2), -- Standard Type
-(18367, 4415, 3), -- One-handed Sword
-(18367, 4416, 1), -- Undead
+(18367, 4408, 1), -- HP Modifiers
+(18367, 4409, 1), -- MP Modifiers
+(18367, 4410, 11), -- P. Atk. Modifiers
+(18367, 4411, 11), -- M. Atk. Modifiers
+(18367, 4412, 11), -- P. Def. Modifiers
+(18367, 4413, 11), -- M. Def. Modifiers
+(18367, 4414, 2), -- Armor Type
+(18367, 4415, 3), -- Weapon Type
+(18367, 4416, 1), -- Races
 -- Prison Guard
-(18368, 4408, 1), -- HP Increase (1x)
-(18368, 4409, 1), -- MP Increase (1x)
-(18368, 4410, 11), -- Average P. Atk.
-(18368, 4411, 11), -- Average M. Atk.
-(18368, 4412, 11), -- Average P. Def.
-(18368, 4413, 11), -- Average M. Def.
-(18368, 4414, 2), -- Standard Type
-(18368, 4415, 3), -- One-handed Sword
-(18368, 4416, 1), -- Undead
-(18368, 5360, 3), -- Whirlwind
+(18368, 4408, 1), -- HP Modifiers
+(18368, 4409, 1), -- MP Modifiers
+(18368, 4410, 11), -- P. Atk. Modifiers
+(18368, 4411, 11), -- M. Atk. Modifiers
+(18368, 4412, 11), -- P. Def. Modifiers
+(18368, 4413, 11), -- M. Def. Modifiers
+(18368, 4414, 2), -- Armor Type
+(18368, 4415, 3), -- Weapon Type
+(18368, 4416, 1), -- Races
+(18368, 5360, 3), -- NPC(party) - Physical Range Close Range Attack - Dark
 -- Chromatic Crystalline Golem
-(18369, 4101, 9), -- Whirlwind
-(18369, 4408, 1), -- HP Increase (1x)
-(18369, 4409, 1), -- MP Increase (1x)
-(18369, 4410, 11), -- Average P. Atk.
-(18369, 4411, 11), -- Average M. Atk.
-(18369, 4412, 11), -- Average P. Def.
-(18369, 4413, 11), -- Average M. Def.
-(18369, 4414, 2), -- Standard Type
-(18369, 4415, 3), -- One-handed Sword
-(18369, 4416, 2), -- Magic Creatures
+(18369, 4101, 9), -- NPC Spinning Slash
+(18369, 4408, 1), -- HP Modifiers
+(18369, 4409, 1), -- MP Modifiers
+(18369, 4410, 11), -- P. Atk. Modifiers
+(18369, 4411, 11), -- M. Atk. Modifiers
+(18369, 4412, 11), -- P. Def. Modifiers
+(18369, 4413, 11), -- M. Def. Modifiers
+(18369, 4414, 2), -- Armor Type
+(18369, 4415, 3), -- Weapon Type
+(18369, 4416, 2), -- Races
 -- Chromatic Crystalline Golem
-(18370, 4408, 1), -- HP Increase (1x)
-(18370, 4409, 1), -- MP Increase (1x)
-(18370, 4410, 11), -- Average P. Atk.
-(18370, 4411, 11), -- Average M. Atk.
-(18370, 4412, 11), -- Average P. Def.
-(18370, 4413, 11), -- Average M. Def.
-(18370, 4414, 2), -- Standard Type
-(18370, 4415, 3), -- One-handed Sword
-(18370, 4416, 2), -- Magic Creatures
-(18370, 4477, 10), -- Frost Wall
+(18370, 4408, 1), -- HP Modifiers
+(18370, 4409, 1), -- MP Modifiers
+(18370, 4410, 11), -- P. Atk. Modifiers
+(18370, 4411, 11), -- M. Atk. Modifiers
+(18370, 4412, 11), -- P. Def. Modifiers
+(18370, 4413, 11), -- M. Def. Modifiers
+(18370, 4414, 2), -- Armor Type
+(18370, 4415, 3), -- Weapon Type
+(18370, 4416, 2), -- Races
+(18370, 4477, 10), -- NPC Frost Wall
 (18370, 4597, 10), -- Bleed
 -- Beleth's Sample
-(18371, 4408, 1), -- HP Increase (1x)
-(18371, 4409, 1), -- MP Increase (1x)
-(18371, 4410, 11), -- Average P. Atk.
-(18371, 4411, 11), -- Average M. Atk.
-(18371, 4412, 11), -- Average P. Def.
-(18371, 4413, 11), -- Average M. Def.
-(18371, 4414, 2), -- Standard Type
-(18371, 4415, 3), -- One-handed Sword
-(18371, 4416, 1), -- Undead
+(18371, 4408, 1), -- HP Modifiers
+(18371, 4409, 1), -- MP Modifiers
+(18371, 4410, 11), -- P. Atk. Modifiers
+(18371, 4411, 11), -- M. Atk. Modifiers
+(18371, 4412, 11), -- P. Def. Modifiers
+(18371, 4413, 11), -- M. Def. Modifiers
+(18371, 4414, 2), -- Armor Type
+(18371, 4415, 3), -- Weapon Type
+(18371, 4416, 1), -- Races
 -- Beleth's Sample
-(18372, 4408, 1), -- HP Increase (1x)
-(18372, 4409, 1), -- MP Increase (1x)
-(18372, 4410, 11), -- Average P. Atk.
-(18372, 4411, 11), -- Average M. Atk.
-(18372, 4412, 11), -- Average P. Def.
-(18372, 4413, 11), -- Average M. Def.
-(18372, 4414, 2), -- Standard Type
-(18372, 4415, 3), -- One-handed Sword
-(18372, 4416, 1), -- Undead
+(18372, 4408, 1), -- HP Modifiers
+(18372, 4409, 1), -- MP Modifiers
+(18372, 4410, 11), -- P. Atk. Modifiers
+(18372, 4411, 11), -- M. Atk. Modifiers
+(18372, 4412, 11), -- P. Def. Modifiers
+(18372, 4413, 11), -- M. Def. Modifiers
+(18372, 4414, 2), -- Armor Type
+(18372, 4415, 3), -- Weapon Type
+(18372, 4416, 1), -- Races
 -- Beleth's Sample
-(18373, 4408, 1), -- HP Increase (1x)
-(18373, 4409, 1), -- MP Increase (1x)
-(18373, 4410, 11), -- Average P. Atk.
-(18373, 4411, 11), -- Average M. Atk.
-(18373, 4412, 11), -- Average P. Def.
-(18373, 4413, 11), -- Average M. Def.
-(18373, 4414, 2), -- Standard Type
-(18373, 4415, 3), -- One-handed Sword
-(18373, 4416, 1), -- Undead
+(18373, 4408, 1), -- HP Modifiers
+(18373, 4409, 1), -- MP Modifiers
+(18373, 4410, 11), -- P. Atk. Modifiers
+(18373, 4411, 11), -- M. Atk. Modifiers
+(18373, 4412, 11), -- P. Def. Modifiers
+(18373, 4413, 11), -- M. Def. Modifiers
+(18373, 4414, 2), -- Armor Type
+(18373, 4415, 3), -- Weapon Type
+(18373, 4416, 1), -- Races
 -- Beleth's Sample
-(18374, 4408, 1), -- HP Increase (1x)
-(18374, 4409, 1), -- MP Increase (1x)
-(18374, 4410, 11), -- Average P. Atk.
-(18374, 4411, 11), -- Average M. Atk.
-(18374, 4412, 11), -- Average P. Def.
-(18374, 4413, 11), -- Average M. Def.
-(18374, 4414, 2), -- Standard Type
-(18374, 4415, 3), -- One-handed Sword
-(18374, 4416, 1), -- Undead
+(18374, 4408, 1), -- HP Modifiers
+(18374, 4409, 1), -- MP Modifiers
+(18374, 4410, 11), -- P. Atk. Modifiers
+(18374, 4411, 11), -- M. Atk. Modifiers
+(18374, 4412, 11), -- P. Def. Modifiers
+(18374, 4413, 11), -- M. Def. Modifiers
+(18374, 4414, 2), -- Armor Type
+(18374, 4415, 3), -- Weapon Type
+(18374, 4416, 1), -- Races
 -- Beleth's Sample
-(18375, 4408, 1), -- HP Increase (1x)
-(18375, 4409, 1), -- MP Increase (1x)
-(18375, 4410, 11), -- Average P. Atk.
-(18375, 4411, 11), -- Average M. Atk.
-(18375, 4412, 11), -- Average P. Def.
-(18375, 4413, 11), -- Average M. Def.
-(18375, 4414, 2), -- Standard Type
-(18375, 4415, 3), -- One-handed Sword
-(18375, 4416, 1), -- Undead
+(18375, 4408, 1), -- HP Modifiers
+(18375, 4409, 1), -- MP Modifiers
+(18375, 4410, 11), -- P. Atk. Modifiers
+(18375, 4411, 11), -- M. Atk. Modifiers
+(18375, 4412, 11), -- P. Def. Modifiers
+(18375, 4413, 11), -- M. Def. Modifiers
+(18375, 4414, 2), -- Armor Type
+(18375, 4415, 3), -- Weapon Type
+(18375, 4416, 1), -- Races
 -- Beleth's Sample
-(18376, 4408, 1), -- HP Increase (1x)
-(18376, 4409, 1), -- MP Increase (1x)
-(18376, 4410, 11), -- Average P. Atk.
-(18376, 4411, 11), -- Average M. Atk.
-(18376, 4412, 11), -- Average P. Def.
-(18376, 4413, 11), -- Average M. Def.
-(18376, 4414, 2), -- Standard Type
-(18376, 4415, 3), -- One-handed Sword
-(18376, 4416, 9), -- Demons
+(18376, 4408, 1), -- HP Modifiers
+(18376, 4409, 1), -- MP Modifiers
+(18376, 4410, 11), -- P. Atk. Modifiers
+(18376, 4411, 11), -- M. Atk. Modifiers
+(18376, 4412, 11), -- P. Def. Modifiers
+(18376, 4413, 11), -- M. Def. Modifiers
+(18376, 4414, 2), -- Armor Type
+(18376, 4415, 3), -- Weapon Type
+(18376, 4416, 9), -- Races
 -- Beleth's Sample
-(18377, 4408, 1), -- HP Increase (1x)
-(18377, 4409, 1), -- MP Increase (1x)
-(18377, 4410, 11), -- Average P. Atk.
-(18377, 4411, 11), -- Average M. Atk.
-(18377, 4412, 11), -- Average P. Def.
-(18377, 4413, 11), -- Average M. Def.
-(18377, 4414, 2), -- Standard Type
-(18377, 4415, 3), -- One-handed Sword
-(18377, 4416, 1), -- Undead
+(18377, 4408, 1), -- HP Modifiers
+(18377, 4409, 1), -- MP Modifiers
+(18377, 4410, 11), -- P. Atk. Modifiers
+(18377, 4411, 11), -- M. Atk. Modifiers
+(18377, 4412, 11), -- P. Def. Modifiers
+(18377, 4413, 11), -- M. Def. Modifiers
+(18377, 4414, 2), -- Armor Type
+(18377, 4415, 3), -- Weapon Type
+(18377, 4416, 1), -- Races
 -- Trap
-(18378, 4408, 1), -- HP Increase (1x)
-(18378, 4409, 1), -- MP Increase (1x)
-(18378, 4410, 11), -- Average P. Atk.
-(18378, 4411, 11), -- Average M. Atk.
-(18378, 4412, 11), -- Average P. Def.
-(18378, 4413, 11), -- Average M. Def.
-(18378, 4414, 2), -- Standard Type
-(18378, 4415, 3), -- One-handed Sword
-(18378, 4416, 2), -- Magic Creatures
+(18378, 4408, 1), -- HP Modifiers
+(18378, 4409, 1), -- MP Modifiers
+(18378, 4410, 11), -- P. Atk. Modifiers
+(18378, 4411, 11), -- M. Atk. Modifiers
+(18378, 4412, 11), -- P. Def. Modifiers
+(18378, 4413, 11), -- M. Def. Modifiers
+(18378, 4414, 2), -- Armor Type
+(18378, 4415, 3), -- Weapon Type
+(18378, 4416, 2), -- Races
 -- Trap
-(18379, 4408, 1), -- HP Increase (1x)
-(18379, 4409, 1), -- MP Increase (1x)
-(18379, 4410, 11), -- Average P. Atk.
-(18379, 4411, 11), -- Average M. Atk.
-(18379, 4412, 11), -- Average P. Def.
-(18379, 4413, 11), -- Average M. Def.
-(18379, 4414, 2), -- Standard Type
-(18379, 4415, 3), -- One-handed Sword
-(18379, 4416, 2), -- Magic Creatures
+(18379, 4408, 1), -- HP Modifiers
+(18379, 4409, 1), -- MP Modifiers
+(18379, 4410, 11), -- P. Atk. Modifiers
+(18379, 4411, 11), -- M. Atk. Modifiers
+(18379, 4412, 11), -- P. Def. Modifiers
+(18379, 4413, 11), -- M. Def. Modifiers
+(18379, 4414, 2), -- Armor Type
+(18379, 4415, 3), -- Weapon Type
+(18379, 4416, 2), -- Races
 (18379, 5422, 9), -- Flame
 -- Trap
-(18380, 4408, 1), -- HP Increase (1x)
-(18380, 4409, 1), -- MP Increase (1x)
-(18380, 4410, 11), -- Average P. Atk.
-(18380, 4411, 11), -- Average M. Atk.
-(18380, 4412, 11), -- Average P. Def.
-(18380, 4413, 11), -- Average M. Def.
-(18380, 4414, 2), -- Standard Type
-(18380, 4415, 3), -- One-handed Sword
-(18380, 4416, 2), -- Magic Creatures
+(18380, 4408, 1), -- HP Modifiers
+(18380, 4409, 1), -- MP Modifiers
+(18380, 4410, 11), -- P. Atk. Modifiers
+(18380, 4411, 11), -- M. Atk. Modifiers
+(18380, 4412, 11), -- P. Def. Modifiers
+(18380, 4413, 11), -- M. Def. Modifiers
+(18380, 4414, 2), -- Armor Type
+(18380, 4415, 3), -- Weapon Type
+(18380, 4416, 2), -- Races
 (18380, 5422, 9), -- Flame
 -- Trap
-(18381, 4408, 1), -- HP Increase (1x)
-(18381, 4409, 1), -- MP Increase (1x)
-(18381, 4410, 11), -- Average P. Atk.
-(18381, 4411, 11), -- Average M. Atk.
-(18381, 4412, 11), -- Average P. Def.
-(18381, 4413, 11), -- Average M. Def.
-(18381, 4414, 2), -- Standard Type
-(18381, 4415, 3), -- One-handed Sword
-(18381, 4416, 2), -- Magic Creatures
+(18381, 4408, 1), -- HP Modifiers
+(18381, 4409, 1), -- MP Modifiers
+(18381, 4410, 11), -- P. Atk. Modifiers
+(18381, 4411, 11), -- M. Atk. Modifiers
+(18381, 4412, 11), -- P. Def. Modifiers
+(18381, 4413, 11), -- M. Def. Modifiers
+(18381, 4414, 2), -- Armor Type
+(18381, 4415, 3), -- Weapon Type
+(18381, 4416, 2), -- Races
 (18381, 5422, 9), -- Flame
 -- Trap
-(18382, 4408, 1), -- HP Increase (1x)
-(18382, 4409, 1), -- MP Increase (1x)
-(18382, 4410, 11), -- Average P. Atk.
-(18382, 4411, 11), -- Average M. Atk.
-(18382, 4412, 11), -- Average P. Def.
-(18382, 4413, 11), -- Average M. Def.
-(18382, 4414, 2), -- Standard Type
-(18382, 4415, 3), -- One-handed Sword
-(18382, 4416, 2), -- Magic Creatures
+(18382, 4408, 1), -- HP Modifiers
+(18382, 4409, 1), -- MP Modifiers
+(18382, 4410, 11), -- P. Atk. Modifiers
+(18382, 4411, 11), -- M. Atk. Modifiers
+(18382, 4412, 11), -- P. Def. Modifiers
+(18382, 4413, 11), -- M. Def. Modifiers
+(18382, 4414, 2), -- Armor Type
+(18382, 4415, 3), -- Weapon Type
+(18382, 4416, 2), -- Races
 (18382, 5422, 9), -- Flame
 -- Trap
-(18383, 4408, 1), -- HP Increase (1x)
-(18383, 4409, 1), -- MP Increase (1x)
-(18383, 4410, 11), -- Average P. Atk.
-(18383, 4411, 11), -- Average M. Atk.
-(18383, 4412, 11), -- Average P. Def.
-(18383, 4413, 11), -- Average M. Def.
-(18383, 4414, 2), -- Standard Type
-(18383, 4415, 3), -- One-handed Sword
-(18383, 4416, 2), -- Magic Creatures
+(18383, 4408, 1), -- HP Modifiers
+(18383, 4409, 1), -- MP Modifiers
+(18383, 4410, 11), -- P. Atk. Modifiers
+(18383, 4411, 11), -- M. Atk. Modifiers
+(18383, 4412, 11), -- P. Def. Modifiers
+(18383, 4413, 11), -- M. Def. Modifiers
+(18383, 4414, 2), -- Armor Type
+(18383, 4415, 3), -- Weapon Type
+(18383, 4416, 2), -- Races
 (18383, 5422, 9), -- Flame
 -- Trap
-(18384, 4408, 1), -- HP Increase (1x)
-(18384, 4409, 1), -- MP Increase (1x)
-(18384, 4410, 11), -- Average P. Atk.
-(18384, 4411, 11), -- Average M. Atk.
-(18384, 4412, 11), -- Average P. Def.
-(18384, 4413, 11), -- Average M. Def.
-(18384, 4414, 2), -- Standard Type
-(18384, 4415, 3), -- One-handed Sword
-(18384, 4416, 2), -- Magic Creatures
+(18384, 4408, 1), -- HP Modifiers
+(18384, 4409, 1), -- MP Modifiers
+(18384, 4410, 11), -- P. Atk. Modifiers
+(18384, 4411, 11), -- M. Atk. Modifiers
+(18384, 4412, 11), -- P. Def. Modifiers
+(18384, 4413, 11), -- M. Def. Modifiers
+(18384, 4414, 2), -- Armor Type
+(18384, 4415, 3), -- Weapon Type
+(18384, 4416, 2), -- Races
 (18384, 5422, 9), -- Flame
 -- Trap
-(18385, 4408, 1), -- HP Increase (1x)
-(18385, 4409, 1), -- MP Increase (1x)
-(18385, 4410, 11), -- Average P. Atk.
-(18385, 4411, 11), -- Average M. Atk.
-(18385, 4412, 11), -- Average P. Def.
-(18385, 4413, 11), -- Average M. Def.
-(18385, 4414, 2), -- Standard Type
-(18385, 4415, 3), -- One-handed Sword
-(18385, 4416, 2), -- Magic Creatures
+(18385, 4408, 1), -- HP Modifiers
+(18385, 4409, 1), -- MP Modifiers
+(18385, 4410, 11), -- P. Atk. Modifiers
+(18385, 4411, 11), -- M. Atk. Modifiers
+(18385, 4412, 11), -- P. Def. Modifiers
+(18385, 4413, 11), -- M. Def. Modifiers
+(18385, 4414, 2), -- Armor Type
+(18385, 4415, 3), -- Weapon Type
+(18385, 4416, 2), -- Races
 (18385, 5422, 9), -- Flame
 -- Trap
-(18386, 4408, 1), -- HP Increase (1x)
-(18386, 4409, 1), -- MP Increase (1x)
-(18386, 4410, 11), -- Average P. Atk.
-(18386, 4411, 11), -- Average M. Atk.
-(18386, 4412, 11), -- Average P. Def.
-(18386, 4413, 11), -- Average M. Def.
-(18386, 4414, 2), -- Standard Type
-(18386, 4415, 3), -- One-handed Sword
-(18386, 4416, 2), -- Magic Creatures
+(18386, 4408, 1), -- HP Modifiers
+(18386, 4409, 1), -- MP Modifiers
+(18386, 4410, 11), -- P. Atk. Modifiers
+(18386, 4411, 11), -- M. Atk. Modifiers
+(18386, 4412, 11), -- P. Def. Modifiers
+(18386, 4413, 11), -- M. Def. Modifiers
+(18386, 4414, 2), -- Armor Type
+(18386, 4415, 3), -- Weapon Type
+(18386, 4416, 2), -- Races
 (18386, 5422, 9), -- Flame
 -- Trap
-(18387, 4408, 1), -- HP Increase (1x)
-(18387, 4409, 1), -- MP Increase (1x)
-(18387, 4410, 11), -- Average P. Atk.
-(18387, 4411, 11), -- Average M. Atk.
-(18387, 4412, 11), -- Average P. Def.
-(18387, 4413, 11), -- Average M. Def.
-(18387, 4414, 2), -- Standard Type
-(18387, 4415, 3), -- One-handed Sword
-(18387, 4416, 2), -- Magic Creatures
+(18387, 4408, 1), -- HP Modifiers
+(18387, 4409, 1), -- MP Modifiers
+(18387, 4410, 11), -- P. Atk. Modifiers
+(18387, 4411, 11), -- M. Atk. Modifiers
+(18387, 4412, 11), -- P. Def. Modifiers
+(18387, 4413, 11), -- M. Def. Modifiers
+(18387, 4414, 2), -- Armor Type
+(18387, 4415, 3), -- Weapon Type
+(18387, 4416, 2), -- Races
 (18387, 5423, 9), -- Poison
 (18387, 5424, 9), -- Bleed
 -- Trap
-(18388, 4408, 1), -- HP Increase (1x)
-(18388, 4409, 1), -- MP Increase (1x)
-(18388, 4410, 11), -- Average P. Atk.
-(18388, 4411, 11), -- Average M. Atk.
-(18388, 4412, 11), -- Average P. Def.
-(18388, 4413, 11), -- Average M. Def.
-(18388, 4414, 2), -- Standard Type
-(18388, 4415, 3), -- One-handed Sword
-(18388, 4416, 2), -- Magic Creatures
+(18388, 4408, 1), -- HP Modifiers
+(18388, 4409, 1), -- MP Modifiers
+(18388, 4410, 11), -- P. Atk. Modifiers
+(18388, 4411, 11), -- M. Atk. Modifiers
+(18388, 4412, 11), -- P. Def. Modifiers
+(18388, 4413, 11), -- M. Def. Modifiers
+(18388, 4414, 2), -- Armor Type
+(18388, 4415, 3), -- Weapon Type
+(18388, 4416, 2), -- Races
 (18388, 5423, 9), -- Poison
 (18388, 5424, 9), -- Bleed
 -- Trap
-(18389, 4408, 1), -- HP Increase (1x)
-(18389, 4409, 1), -- MP Increase (1x)
-(18389, 4410, 11), -- Average P. Atk.
-(18389, 4411, 11), -- Average M. Atk.
-(18389, 4412, 11), -- Average P. Def.
-(18389, 4413, 11), -- Average M. Def.
-(18389, 4414, 2), -- Standard Type
-(18389, 4415, 3), -- One-handed Sword
-(18389, 4416, 2), -- Magic Creatures
+(18389, 4408, 1), -- HP Modifiers
+(18389, 4409, 1), -- MP Modifiers
+(18389, 4410, 11), -- P. Atk. Modifiers
+(18389, 4411, 11), -- M. Atk. Modifiers
+(18389, 4412, 11), -- P. Def. Modifiers
+(18389, 4413, 11), -- M. Def. Modifiers
+(18389, 4414, 2), -- Armor Type
+(18389, 4415, 3), -- Weapon Type
+(18389, 4416, 2), -- Races
 (18389, 5423, 9), -- Poison
 (18389, 5424, 9), -- Bleed
 -- Trap
-(18390, 4408, 1), -- HP Increase (1x)
-(18390, 4409, 1), -- MP Increase (1x)
-(18390, 4410, 11), -- Average P. Atk.
-(18390, 4411, 11), -- Average M. Atk.
-(18390, 4412, 11), -- Average P. Def.
-(18390, 4413, 11), -- Average M. Def.
-(18390, 4414, 2), -- Standard Type
-(18390, 4415, 3), -- One-handed Sword
-(18390, 4416, 2), -- Magic Creatures
+(18390, 4408, 1), -- HP Modifiers
+(18390, 4409, 1), -- MP Modifiers
+(18390, 4410, 11), -- P. Atk. Modifiers
+(18390, 4411, 11), -- M. Atk. Modifiers
+(18390, 4412, 11), -- P. Def. Modifiers
+(18390, 4413, 11), -- M. Def. Modifiers
+(18390, 4414, 2), -- Armor Type
+(18390, 4415, 3), -- Weapon Type
+(18390, 4416, 2), -- Races
 (18390, 5423, 9), -- Poison
 (18390, 5424, 9), -- Bleed
 -- Trap
-(18391, 4408, 1), -- HP Increase (1x)
-(18391, 4409, 1), -- MP Increase (1x)
-(18391, 4410, 11), -- Average P. Atk.
-(18391, 4411, 11), -- Average M. Atk.
-(18391, 4412, 11), -- Average P. Def.
-(18391, 4413, 11), -- Average M. Def.
-(18391, 4414, 2), -- Standard Type
-(18391, 4415, 3), -- One-handed Sword
-(18391, 4416, 2), -- Magic Creatures
+(18391, 4408, 1), -- HP Modifiers
+(18391, 4409, 1), -- MP Modifiers
+(18391, 4410, 11), -- P. Atk. Modifiers
+(18391, 4411, 11), -- M. Atk. Modifiers
+(18391, 4412, 11), -- P. Def. Modifiers
+(18391, 4413, 11), -- M. Def. Modifiers
+(18391, 4414, 2), -- Armor Type
+(18391, 4415, 3), -- Weapon Type
+(18391, 4416, 2), -- Races
 (18391, 5423, 9), -- Poison
 (18391, 5424, 9), -- Bleed
 -- Trap
-(18392, 4408, 1), -- HP Increase (1x)
-(18392, 4409, 1), -- MP Increase (1x)
-(18392, 4410, 11), -- Average P. Atk.
-(18392, 4411, 11), -- Average M. Atk.
-(18392, 4412, 11), -- Average P. Def.
-(18392, 4413, 11), -- Average M. Def.
-(18392, 4414, 2), -- Standard Type
-(18392, 4415, 3), -- One-handed Sword
-(18392, 4416, 2), -- Magic Creatures
+(18392, 4408, 1), -- HP Modifiers
+(18392, 4409, 1), -- MP Modifiers
+(18392, 4410, 11), -- P. Atk. Modifiers
+(18392, 4411, 11), -- M. Atk. Modifiers
+(18392, 4412, 11), -- P. Def. Modifiers
+(18392, 4413, 11), -- M. Def. Modifiers
+(18392, 4414, 2), -- Armor Type
+(18392, 4415, 3), -- Weapon Type
+(18392, 4416, 2), -- Races
 (18392, 5423, 9), -- Poison
 (18392, 5424, 9), -- Bleed
 -- Trap
-(18393, 4408, 1), -- HP Increase (1x)
-(18393, 4409, 1), -- MP Increase (1x)
-(18393, 4410, 11), -- Average P. Atk.
-(18393, 4411, 11), -- Average M. Atk.
-(18393, 4412, 11), -- Average P. Def.
-(18393, 4413, 11), -- Average M. Def.
-(18393, 4414, 2), -- Standard Type
-(18393, 4415, 3), -- One-handed Sword
-(18393, 4416, 2), -- Magic Creatures
+(18393, 4408, 1), -- HP Modifiers
+(18393, 4409, 1), -- MP Modifiers
+(18393, 4410, 11), -- P. Atk. Modifiers
+(18393, 4411, 11), -- M. Atk. Modifiers
+(18393, 4412, 11), -- P. Def. Modifiers
+(18393, 4413, 11), -- M. Def. Modifiers
+(18393, 4414, 2), -- Armor Type
+(18393, 4415, 3), -- Weapon Type
+(18393, 4416, 2), -- Races
 (18393, 5423, 9), -- Poison
 (18393, 5424, 9), -- Bleed
 -- Trap
-(18394, 4408, 1), -- HP Increase (1x)
-(18394, 4409, 1), -- MP Increase (1x)
-(18394, 4410, 11), -- Average P. Atk.
-(18394, 4411, 11), -- Average M. Atk.
-(18394, 4412, 11), -- Average P. Def.
-(18394, 4413, 11), -- Average M. Def.
-(18394, 4414, 2), -- Standard Type
-(18394, 4415, 3), -- One-handed Sword
-(18394, 4416, 2), -- Magic Creatures
+(18394, 4408, 1), -- HP Modifiers
+(18394, 4409, 1), -- MP Modifiers
+(18394, 4410, 11), -- P. Atk. Modifiers
+(18394, 4411, 11), -- M. Atk. Modifiers
+(18394, 4412, 11), -- P. Def. Modifiers
+(18394, 4413, 11), -- M. Def. Modifiers
+(18394, 4414, 2), -- Armor Type
+(18394, 4415, 3), -- Weapon Type
+(18394, 4416, 2), -- Races
 (18394, 5423, 9), -- Poison
 (18394, 5424, 9), -- Bleed
 -- Trap
-(18395, 4408, 1), -- HP Increase (1x)
-(18395, 4409, 1), -- MP Increase (1x)
-(18395, 4410, 11), -- Average P. Atk.
-(18395, 4411, 11), -- Average M. Atk.
-(18395, 4412, 11), -- Average P. Def.
-(18395, 4413, 11), -- Average M. Def.
-(18395, 4414, 2), -- Standard Type
-(18395, 4415, 3), -- One-handed Sword
-(18395, 4416, 2), -- Magic Creatures
+(18395, 4408, 1), -- HP Modifiers
+(18395, 4409, 1), -- MP Modifiers
+(18395, 4410, 11), -- P. Atk. Modifiers
+(18395, 4411, 11), -- M. Atk. Modifiers
+(18395, 4412, 11), -- P. Def. Modifiers
+(18395, 4413, 11), -- M. Def. Modifiers
+(18395, 4414, 2), -- Armor Type
+(18395, 4415, 3), -- Weapon Type
+(18395, 4416, 2), -- Races
 (18395, 5423, 9), -- Poison
 (18395, 5424, 9), -- Bleed
 -- Trap
-(18396, 4408, 1), -- HP Increase (1x)
-(18396, 4409, 1), -- MP Increase (1x)
-(18396, 4410, 11), -- Average P. Atk.
-(18396, 4411, 11), -- Average M. Atk.
-(18396, 4412, 11), -- Average P. Def.
-(18396, 4413, 11), -- Average M. Def.
-(18396, 4414, 2), -- Standard Type
-(18396, 4415, 3), -- One-handed Sword
-(18396, 4416, 2), -- Magic Creatures
+(18396, 4408, 1), -- HP Modifiers
+(18396, 4409, 1), -- MP Modifiers
+(18396, 4410, 11), -- P. Atk. Modifiers
+(18396, 4411, 11), -- M. Atk. Modifiers
+(18396, 4412, 11), -- P. Def. Modifiers
+(18396, 4413, 11), -- M. Def. Modifiers
+(18396, 4414, 2), -- Armor Type
+(18396, 4415, 3), -- Weapon Type
+(18396, 4416, 2), -- Races
 (18396, 5423, 9), -- Poison
 (18396, 5424, 9), -- Bleed
 -- Trap
-(18397, 4408, 1), -- HP Increase (1x)
-(18397, 4409, 1); -- MP Increase (1x)
+(18397, 4408, 1), -- HP Modifiers
+(18397, 4409, 1); -- MP Modifiers
 
 INSERT INTO `npcskills` VALUES
-(18397, 4410, 11), -- Average P. Atk.
-(18397, 4411, 11), -- Average M. Atk.
-(18397, 4412, 11), -- Average P. Def.
-(18397, 4413, 11), -- Average M. Def.
-(18397, 4414, 2), -- Standard Type
-(18397, 4415, 3), -- One-handed Sword
-(18397, 4416, 2), -- Magic Creatures
+(18397, 4410, 11), -- P. Atk. Modifiers
+(18397, 4411, 11), -- M. Atk. Modifiers
+(18397, 4412, 11), -- P. Def. Modifiers
+(18397, 4413, 11), -- M. Def. Modifiers
+(18397, 4414, 2), -- Armor Type
+(18397, 4415, 3), -- Weapon Type
+(18397, 4416, 2), -- Races
 (18397, 5423, 9), -- Poison
 (18397, 5424, 9), -- Bleed
 -- Trap
-(18398, 4408, 1), -- HP Increase (1x)
-(18398, 4409, 1), -- MP Increase (1x)
-(18398, 4410, 11), -- Average P. Atk.
-(18398, 4411, 11), -- Average M. Atk.
-(18398, 4412, 11), -- Average P. Def.
-(18398, 4413, 11), -- Average M. Def.
-(18398, 4414, 2), -- Standard Type
-(18398, 4415, 3), -- One-handed Sword
-(18398, 4416, 2), -- Magic Creatures
+(18398, 4408, 1), -- HP Modifiers
+(18398, 4409, 1), -- MP Modifiers
+(18398, 4410, 11), -- P. Atk. Modifiers
+(18398, 4411, 11), -- M. Atk. Modifiers
+(18398, 4412, 11), -- P. Def. Modifiers
+(18398, 4413, 11), -- M. Def. Modifiers
+(18398, 4414, 2), -- Armor Type
+(18398, 4415, 3), -- Weapon Type
+(18398, 4416, 2), -- Races
 (18398, 5423, 9), -- Poison
 (18398, 5424, 9), -- Bleed
 -- Trap
-(18399, 4408, 1), -- HP Increase (1x)
-(18399, 4409, 1), -- MP Increase (1x)
-(18399, 4410, 11), -- Average P. Atk.
-(18399, 4411, 11), -- Average M. Atk.
-(18399, 4412, 11), -- Average P. Def.
-(18399, 4413, 11), -- Average M. Def.
-(18399, 4414, 2), -- Standard Type
-(18399, 4415, 3), -- One-handed Sword
-(18399, 4416, 2), -- Magic Creatures
+(18399, 4408, 1), -- HP Modifiers
+(18399, 4409, 1), -- MP Modifiers
+(18399, 4410, 11), -- P. Atk. Modifiers
+(18399, 4411, 11), -- M. Atk. Modifiers
+(18399, 4412, 11), -- P. Def. Modifiers
+(18399, 4413, 11), -- M. Def. Modifiers
+(18399, 4414, 2), -- Armor Type
+(18399, 4415, 3), -- Weapon Type
+(18399, 4416, 2), -- Races
 (18399, 5423, 9), -- Poison
 (18399, 5424, 9), -- Bleed
 -- Trap
-(18400, 4408, 1), -- HP Increase (1x)
-(18400, 4409, 1), -- MP Increase (1x)
-(18400, 4410, 11), -- Average P. Atk.
-(18400, 4411, 11), -- Average M. Atk.
-(18400, 4412, 11), -- Average P. Def.
-(18400, 4413, 11), -- Average M. Def.
-(18400, 4414, 2), -- Standard Type
-(18400, 4415, 3), -- One-handed Sword
-(18400, 4416, 2), -- Magic Creatures
+(18400, 4408, 1), -- HP Modifiers
+(18400, 4409, 1), -- MP Modifiers
+(18400, 4410, 11), -- P. Atk. Modifiers
+(18400, 4411, 11), -- M. Atk. Modifiers
+(18400, 4412, 11), -- P. Def. Modifiers
+(18400, 4413, 11), -- M. Def. Modifiers
+(18400, 4414, 2), -- Armor Type
+(18400, 4415, 3), -- Weapon Type
+(18400, 4416, 2), -- Races
 (18400, 5423, 9), -- Poison
 (18400, 5424, 9), -- Bleed
 -- Trap
-(18401, 4408, 1), -- HP Increase (1x)
-(18401, 4409, 1), -- MP Increase (1x)
-(18401, 4410, 11), -- Average P. Atk.
-(18401, 4411, 11), -- Average M. Atk.
-(18401, 4412, 11), -- Average P. Def.
-(18401, 4413, 11), -- Average M. Def.
-(18401, 4414, 2), -- Standard Type
-(18401, 4415, 3), -- One-handed Sword
-(18401, 4416, 2), -- Magic Creatures
+(18401, 4408, 1), -- HP Modifiers
+(18401, 4409, 1), -- MP Modifiers
+(18401, 4410, 11), -- P. Atk. Modifiers
+(18401, 4411, 11), -- M. Atk. Modifiers
+(18401, 4412, 11), -- P. Def. Modifiers
+(18401, 4413, 11), -- M. Def. Modifiers
+(18401, 4414, 2), -- Armor Type
+(18401, 4415, 3), -- Weapon Type
+(18401, 4416, 2), -- Races
 (18401, 5423, 9), -- Poison
 (18401, 5424, 9), -- Bleed
 -- Trap
-(18402, 4408, 1), -- HP Increase (1x)
-(18402, 4409, 1), -- MP Increase (1x)
-(18402, 4410, 11), -- Average P. Atk.
-(18402, 4411, 11), -- Average M. Atk.
-(18402, 4412, 11), -- Average P. Def.
-(18402, 4413, 11), -- Average M. Def.
-(18402, 4414, 2), -- Standard Type
-(18402, 4415, 3), -- One-handed Sword
-(18402, 4416, 2), -- Magic Creatures
+(18402, 4408, 1), -- HP Modifiers
+(18402, 4409, 1), -- MP Modifiers
+(18402, 4410, 11), -- P. Atk. Modifiers
+(18402, 4411, 11), -- M. Atk. Modifiers
+(18402, 4412, 11), -- P. Def. Modifiers
+(18402, 4413, 11), -- M. Def. Modifiers
+(18402, 4414, 2), -- Armor Type
+(18402, 4415, 3), -- Weapon Type
+(18402, 4416, 2), -- Races
 (18402, 5423, 9), -- Poison
 (18402, 5424, 9), -- Bleed
 -- Trap
-(18403, 4408, 1), -- HP Increase (1x)
-(18403, 4409, 1), -- MP Increase (1x)
-(18403, 4410, 11), -- Average P. Atk.
-(18403, 4411, 11), -- Average M. Atk.
-(18403, 4412, 11), -- Average P. Def.
-(18403, 4413, 11), -- Average M. Def.
-(18403, 4414, 2), -- Standard Type
-(18403, 4415, 3), -- One-handed Sword
-(18403, 4416, 2), -- Magic Creatures
+(18403, 4408, 1), -- HP Modifiers
+(18403, 4409, 1), -- MP Modifiers
+(18403, 4410, 11), -- P. Atk. Modifiers
+(18403, 4411, 11), -- M. Atk. Modifiers
+(18403, 4412, 11), -- P. Def. Modifiers
+(18403, 4413, 11), -- M. Def. Modifiers
+(18403, 4414, 2), -- Armor Type
+(18403, 4415, 3), -- Weapon Type
+(18403, 4416, 2), -- Races
 (18403, 5423, 9), -- Poison
 (18403, 5424, 9), -- Bleed
 -- Trap
-(18404, 4408, 1), -- HP Increase (1x)
-(18404, 4409, 1), -- MP Increase (1x)
-(18404, 4410, 11), -- Average P. Atk.
-(18404, 4411, 11), -- Average M. Atk.
-(18404, 4412, 11), -- Average P. Def.
-(18404, 4413, 11), -- Average M. Def.
-(18404, 4414, 2), -- Standard Type
-(18404, 4415, 3), -- One-handed Sword
-(18404, 4416, 2), -- Magic Creatures
+(18404, 4408, 1), -- HP Modifiers
+(18404, 4409, 1), -- MP Modifiers
+(18404, 4410, 11), -- P. Atk. Modifiers
+(18404, 4411, 11), -- M. Atk. Modifiers
+(18404, 4412, 11), -- P. Def. Modifiers
+(18404, 4413, 11), -- M. Def. Modifiers
+(18404, 4414, 2), -- Armor Type
+(18404, 4415, 3), -- Weapon Type
+(18404, 4416, 2), -- Races
 (18404, 5423, 9), -- Poison
 (18404, 5424, 9), -- Bleed
 -- Trap
-(18405, 4408, 1), -- HP Increase (1x)
-(18405, 4409, 1), -- MP Increase (1x)
-(18405, 4410, 11), -- Average P. Atk.
-(18405, 4411, 11), -- Average M. Atk.
-(18405, 4412, 11), -- Average P. Def.
-(18405, 4413, 11), -- Average M. Def.
-(18405, 4414, 2), -- Standard Type
-(18405, 4415, 3), -- One-handed Sword
-(18405, 4416, 2), -- Magic Creatures
+(18405, 4408, 1), -- HP Modifiers
+(18405, 4409, 1), -- MP Modifiers
+(18405, 4410, 11), -- P. Atk. Modifiers
+(18405, 4411, 11), -- M. Atk. Modifiers
+(18405, 4412, 11), -- P. Def. Modifiers
+(18405, 4413, 11), -- M. Def. Modifiers
+(18405, 4414, 2), -- Armor Type
+(18405, 4415, 3), -- Weapon Type
+(18405, 4416, 2), -- Races
 (18405, 5423, 9), -- Poison
 (18405, 5424, 9), -- Bleed
 -- Trap
-(18406, 4408, 1), -- HP Increase (1x)
-(18406, 4409, 1), -- MP Increase (1x)
-(18406, 4410, 11), -- Average P. Atk.
-(18406, 4411, 11), -- Average M. Atk.
-(18406, 4412, 11), -- Average P. Def.
-(18406, 4413, 11), -- Average M. Def.
-(18406, 4414, 2), -- Standard Type
-(18406, 4415, 3), -- One-handed Sword
-(18406, 4416, 2), -- Magic Creatures
+(18406, 4408, 1), -- HP Modifiers
+(18406, 4409, 1), -- MP Modifiers
+(18406, 4410, 11), -- P. Atk. Modifiers
+(18406, 4411, 11), -- M. Atk. Modifiers
+(18406, 4412, 11), -- P. Def. Modifiers
+(18406, 4413, 11), -- M. Def. Modifiers
+(18406, 4414, 2), -- Armor Type
+(18406, 4415, 3), -- Weapon Type
+(18406, 4416, 2), -- Races
 (18406, 5423, 9), -- Poison
 (18406, 5424, 9), -- Bleed
 -- Trap
-(18407, 4408, 1), -- HP Increase (1x)
-(18407, 4409, 1), -- MP Increase (1x)
-(18407, 4410, 11), -- Average P. Atk.
-(18407, 4411, 11), -- Average M. Atk.
-(18407, 4412, 11), -- Average P. Def.
-(18407, 4413, 11), -- Average M. Def.
-(18407, 4414, 2), -- Standard Type
-(18407, 4415, 3), -- One-handed Sword
-(18407, 4416, 2), -- Magic Creatures
+(18407, 4408, 1), -- HP Modifiers
+(18407, 4409, 1), -- MP Modifiers
+(18407, 4410, 11), -- P. Atk. Modifiers
+(18407, 4411, 11), -- M. Atk. Modifiers
+(18407, 4412, 11), -- P. Def. Modifiers
+(18407, 4413, 11), -- M. Def. Modifiers
+(18407, 4414, 2), -- Armor Type
+(18407, 4415, 3), -- Weapon Type
+(18407, 4416, 2), -- Races
 (18407, 5423, 9), -- Poison
 (18407, 5424, 9), -- Bleed
 -- Trap
-(18408, 4408, 1), -- HP Increase (1x)
-(18408, 4409, 1), -- MP Increase (1x)
-(18408, 4410, 11), -- Average P. Atk.
-(18408, 4411, 11), -- Average M. Atk.
-(18408, 4412, 11), -- Average P. Def.
-(18408, 4413, 11), -- Average M. Def.
-(18408, 4414, 2), -- Standard Type
-(18408, 4415, 3), -- One-handed Sword
-(18408, 4416, 2), -- Magic Creatures
+(18408, 4408, 1), -- HP Modifiers
+(18408, 4409, 1), -- MP Modifiers
+(18408, 4410, 11), -- P. Atk. Modifiers
+(18408, 4411, 11), -- M. Atk. Modifiers
+(18408, 4412, 11), -- P. Def. Modifiers
+(18408, 4413, 11), -- M. Def. Modifiers
+(18408, 4414, 2), -- Armor Type
+(18408, 4415, 3), -- Weapon Type
+(18408, 4416, 2), -- Races
 (18408, 5423, 9), -- Poison
 (18408, 5424, 9), -- Bleed
 -- Trap
-(18409, 4408, 1), -- HP Increase (1x)
-(18409, 4409, 1), -- MP Increase (1x)
-(18409, 4410, 11), -- Average P. Atk.
-(18409, 4411, 11), -- Average M. Atk.
-(18409, 4412, 11), -- Average P. Def.
-(18409, 4413, 11), -- Average M. Def.
-(18409, 4414, 2), -- Standard Type
-(18409, 4415, 3), -- One-handed Sword
-(18409, 4416, 2), -- Magic Creatures
+(18409, 4408, 1), -- HP Modifiers
+(18409, 4409, 1), -- MP Modifiers
+(18409, 4410, 11), -- P. Atk. Modifiers
+(18409, 4411, 11), -- M. Atk. Modifiers
+(18409, 4412, 11), -- P. Def. Modifiers
+(18409, 4413, 11), -- M. Def. Modifiers
+(18409, 4414, 2), -- Armor Type
+(18409, 4415, 3), -- Weapon Type
+(18409, 4416, 2), -- Races
 (18409, 5423, 9), -- Poison
 (18409, 5424, 9), -- Bleed
 -- Trap
-(18410, 4408, 1), -- HP Increase (1x)
-(18410, 4409, 1), -- MP Increase (1x)
-(18410, 4410, 11), -- Average P. Atk.
-(18410, 4411, 11), -- Average M. Atk.
-(18410, 4412, 11), -- Average P. Def.
-(18410, 4413, 11), -- Average M. Def.
-(18410, 4414, 2), -- Standard Type
-(18410, 4415, 3), -- One-handed Sword
-(18410, 4416, 2), -- Magic Creatures
+(18410, 4408, 1), -- HP Modifiers
+(18410, 4409, 1), -- MP Modifiers
+(18410, 4410, 11), -- P. Atk. Modifiers
+(18410, 4411, 11), -- M. Atk. Modifiers
+(18410, 4412, 11), -- P. Def. Modifiers
+(18410, 4413, 11), -- M. Def. Modifiers
+(18410, 4414, 2), -- Armor Type
+(18410, 4415, 3), -- Weapon Type
+(18410, 4416, 2), -- Races
 (18410, 5423, 9), -- Poison
 (18410, 5424, 9), -- Bleed
 -- Trap
-(18411, 4408, 1), -- HP Increase (1x)
-(18411, 4409, 1), -- MP Increase (1x)
-(18411, 4410, 11), -- Average P. Atk.
-(18411, 4411, 11), -- Average M. Atk.
-(18411, 4412, 11), -- Average P. Def.
-(18411, 4413, 11), -- Average M. Def.
-(18411, 4414, 2), -- Standard Type
-(18411, 4415, 3), -- One-handed Sword
-(18411, 4416, 2), -- Magic Creatures
+(18411, 4408, 1), -- HP Modifiers
+(18411, 4409, 1), -- MP Modifiers
+(18411, 4410, 11), -- P. Atk. Modifiers
+(18411, 4411, 11), -- M. Atk. Modifiers
+(18411, 4412, 11), -- P. Def. Modifiers
+(18411, 4413, 11), -- M. Def. Modifiers
+(18411, 4414, 2), -- Armor Type
+(18411, 4415, 3), -- Weapon Type
+(18411, 4416, 2), -- Races
 (18411, 5423, 9), -- Poison
 (18411, 5424, 9), -- Bleed
 -- Trap
-(18412, 4408, 1), -- HP Increase (1x)
-(18412, 4409, 1), -- MP Increase (1x)
-(18412, 4410, 11), -- Average P. Atk.
-(18412, 4411, 11), -- Average M. Atk.
-(18412, 4412, 11), -- Average P. Def.
-(18412, 4413, 11), -- Average M. Def.
-(18412, 4414, 2), -- Standard Type
-(18412, 4415, 3), -- One-handed Sword
-(18412, 4416, 2), -- Magic Creatures
+(18412, 4408, 1), -- HP Modifiers
+(18412, 4409, 1), -- MP Modifiers
+(18412, 4410, 11), -- P. Atk. Modifiers
+(18412, 4411, 11), -- M. Atk. Modifiers
+(18412, 4412, 11), -- P. Def. Modifiers
+(18412, 4413, 11), -- M. Def. Modifiers
+(18412, 4414, 2), -- Armor Type
+(18412, 4415, 3), -- Weapon Type
+(18412, 4416, 2), -- Races
 (18412, 5423, 9), -- Poison
 (18412, 5424, 9), -- Bleed
 -- Trap
-(18413, 4408, 1), -- HP Increase (1x)
-(18413, 4409, 1), -- MP Increase (1x)
-(18413, 4410, 11), -- Average P. Atk.
-(18413, 4411, 11), -- Average M. Atk.
-(18413, 4412, 11), -- Average P. Def.
-(18413, 4413, 11), -- Average M. Def.
-(18413, 4414, 2), -- Standard Type
-(18413, 4415, 3), -- One-handed Sword
-(18413, 4416, 2), -- Magic Creatures
+(18413, 4408, 1), -- HP Modifiers
+(18413, 4409, 1), -- MP Modifiers
+(18413, 4410, 11), -- P. Atk. Modifiers
+(18413, 4411, 11), -- M. Atk. Modifiers
+(18413, 4412, 11), -- P. Def. Modifiers
+(18413, 4413, 11), -- M. Def. Modifiers
+(18413, 4414, 2), -- Armor Type
+(18413, 4415, 3), -- Weapon Type
+(18413, 4416, 2), -- Races
 (18413, 5423, 12), -- Poison
 (18413, 5424, 12), -- Bleed
 -- Warrior's Gatekeeper
-(18414, 4408, 1), -- HP Increase (1x)
-(18414, 4409, 1), -- MP Increase (1x)
-(18414, 4410, 11), -- Average P. Atk.
-(18414, 4411, 11), -- Average M. Atk.
-(18414, 4412, 11), -- Average P. Def.
-(18414, 4413, 11), -- Average M. Def.
-(18414, 4414, 2), -- Standard Type
-(18414, 4415, 3), -- One-handed Sword
-(18414, 4416, 19), -- Others
+(18414, 4408, 1), -- HP Modifiers
+(18414, 4409, 1), -- MP Modifiers
+(18414, 4410, 11), -- P. Atk. Modifiers
+(18414, 4411, 11), -- M. Atk. Modifiers
+(18414, 4412, 11), -- P. Def. Modifiers
+(18414, 4413, 11), -- M. Def. Modifiers
+(18414, 4414, 2), -- Armor Type
+(18414, 4415, 3), -- Weapon Type
+(18414, 4416, 19), -- Races
 -- Midway Gatekeeper
-(18415, 4408, 1), -- HP Increase (1x)
-(18415, 4409, 1), -- MP Increase (1x)
-(18415, 4410, 11), -- Average P. Atk.
-(18415, 4411, 11), -- Average M. Atk.
-(18415, 4412, 11), -- Average P. Def.
-(18415, 4413, 11), -- Average M. Def.
-(18415, 4414, 2), -- Standard Type
-(18415, 4415, 3), -- One-handed Sword
-(18415, 4416, 19), -- Others
+(18415, 4408, 1), -- HP Modifiers
+(18415, 4409, 1), -- MP Modifiers
+(18415, 4410, 11), -- P. Atk. Modifiers
+(18415, 4411, 11), -- M. Atk. Modifiers
+(18415, 4412, 11), -- P. Def. Modifiers
+(18415, 4413, 11), -- M. Def. Modifiers
+(18415, 4414, 2), -- Armor Type
+(18415, 4415, 3), -- Weapon Type
+(18415, 4416, 19), -- Races
 -- Doorman
-(18416, 4408, 1), -- HP Increase (1x)
-(18416, 4409, 1), -- MP Increase (1x)
-(18416, 4410, 11), -- Average P. Atk.
-(18416, 4411, 11), -- Average M. Atk.
-(18416, 4412, 11), -- Average P. Def.
-(18416, 4413, 11), -- Average M. Def.
-(18416, 4414, 2), -- Standard Type
-(18416, 4415, 3), -- One-handed Sword
-(18416, 4416, 19), -- Others
+(18416, 4408, 1), -- HP Modifiers
+(18416, 4409, 1), -- MP Modifiers
+(18416, 4410, 11), -- P. Atk. Modifiers
+(18416, 4411, 11), -- M. Atk. Modifiers
+(18416, 4412, 11), -- P. Def. Modifiers
+(18416, 4413, 11), -- M. Def. Modifiers
+(18416, 4414, 2), -- Armor Type
+(18416, 4415, 3), -- Weapon Type
+(18416, 4416, 19), -- Races
 -- Bridge Keeper
-(18417, 4408, 1), -- HP Increase (1x)
-(18417, 4409, 1), -- MP Increase (1x)
-(18417, 4410, 11), -- Average P. Atk.
-(18417, 4411, 11), -- Average M. Atk.
-(18417, 4412, 11), -- Average P. Def.
-(18417, 4413, 11), -- Average M. Def.
-(18417, 4414, 2), -- Standard Type
-(18417, 4415, 3), -- One-handed Sword
-(18417, 4416, 19), -- Others
+(18417, 4408, 1), -- HP Modifiers
+(18417, 4409, 1), -- MP Modifiers
+(18417, 4410, 11), -- P. Atk. Modifiers
+(18417, 4411, 11), -- M. Atk. Modifiers
+(18417, 4412, 11), -- P. Def. Modifiers
+(18417, 4413, 11), -- M. Def. Modifiers
+(18417, 4414, 2), -- Armor Type
+(18417, 4415, 3), -- Weapon Type
+(18417, 4416, 19), -- Races
 -- Bridge Keeper
-(18418, 4408, 1), -- HP Increase (1x)
-(18418, 4409, 1), -- MP Increase (1x)
-(18418, 4410, 11), -- Average P. Atk.
-(18418, 4411, 11), -- Average M. Atk.
-(18418, 4412, 11), -- Average P. Def.
-(18418, 4413, 11), -- Average M. Def.
-(18418, 4414, 2), -- Standard Type
-(18418, 4415, 3), -- One-handed Sword
-(18418, 4416, 19), -- Others
+(18418, 4408, 1), -- HP Modifiers
+(18418, 4409, 1), -- MP Modifiers
+(18418, 4410, 11), -- P. Atk. Modifiers
+(18418, 4411, 11), -- M. Atk. Modifiers
+(18418, 4412, 11), -- P. Def. Modifiers
+(18418, 4413, 11), -- M. Def. Modifiers
+(18418, 4414, 2), -- Armor Type
+(18418, 4415, 3), -- Weapon Type
+(18418, 4416, 19), -- Races
 -- Bridge Keeper
-(18419, 4408, 1), -- HP Increase (1x)
-(18419, 4409, 1), -- MP Increase (1x)
-(18419, 4410, 11), -- Average P. Atk.
-(18419, 4411, 11), -- Average M. Atk.
-(18419, 4412, 11), -- Average P. Def.
-(18419, 4413, 11), -- Average M. Def.
-(18419, 4414, 2), -- Standard Type
-(18419, 4415, 3), -- One-handed Sword
-(18419, 4416, 19), -- Others
+(18419, 4408, 1), -- HP Modifiers
+(18419, 4409, 1), -- MP Modifiers
+(18419, 4410, 11), -- P. Atk. Modifiers
+(18419, 4411, 11), -- M. Atk. Modifiers
+(18419, 4412, 11), -- P. Def. Modifiers
+(18419, 4413, 11), -- M. Def. Modifiers
+(18419, 4414, 2), -- Armor Type
+(18419, 4415, 3), -- Weapon Type
+(18419, 4416, 19), -- Races
 -- Trap
-(18420, 4408, 1), -- HP Increase (1x)
-(18420, 4409, 1), -- MP Increase (1x)
-(18420, 4410, 11), -- Average P. Atk.
-(18420, 4411, 11), -- Average M. Atk.
-(18420, 4412, 11), -- Average P. Def.
-(18420, 4413, 11), -- Average M. Def.
-(18420, 4414, 2), -- Standard Type
-(18420, 4415, 3), -- One-handed Sword
-(18420, 4416, 19), -- Others
+(18420, 4408, 1), -- HP Modifiers
+(18420, 4409, 1), -- MP Modifiers
+(18420, 4410, 11), -- P. Atk. Modifiers
+(18420, 4411, 11), -- M. Atk. Modifiers
+(18420, 4412, 11), -- P. Def. Modifiers
+(18420, 4413, 11), -- M. Def. Modifiers
+(18420, 4414, 2), -- Armor Type
+(18420, 4415, 3), -- Weapon Type
+(18420, 4416, 19), -- Races
 -- 
-(18427, 4408, 1), -- HP Increase (1x)
-(18427, 4409, 1), -- MP Increase (1x)
-(18427, 4410, 11), -- Average P. Atk.
-(18427, 4411, 11), -- Average M. Atk.
-(18427, 4412, 11), -- Average P. Def.
-(18427, 4413, 11), -- Average M. Def.
-(18427, 4414, 2), -- Standard Type
-(18427, 4415, 3), -- One-handed Sword
-(18427, 4416, 2), -- Magic Creatures
+(18427, 4408, 1), -- HP Modifiers
+(18427, 4409, 1), -- MP Modifiers
+(18427, 4410, 11), -- P. Atk. Modifiers
+(18427, 4411, 11), -- M. Atk. Modifiers
+(18427, 4412, 11), -- P. Def. Modifiers
+(18427, 4413, 11), -- M. Def. Modifiers
+(18427, 4414, 2), -- Armor Type
+(18427, 4415, 3), -- Weapon Type
+(18427, 4416, 2), -- Races
 -- 
-(18428, 4408, 1), -- HP Increase (1x)
-(18428, 4409, 1), -- MP Increase (1x)
-(18428, 4410, 11), -- Average P. Atk.
-(18428, 4411, 11), -- Average M. Atk.
-(18428, 4412, 11), -- Average P. Def.
-(18428, 4413, 11), -- Average M. Def.
-(18428, 4414, 2), -- Standard Type
-(18428, 4415, 3), -- One-handed Sword
-(18428, 4416, 2), -- Magic Creatures
+(18428, 4408, 1), -- HP Modifiers
+(18428, 4409, 1), -- MP Modifiers
+(18428, 4410, 11), -- P. Atk. Modifiers
+(18428, 4411, 11), -- M. Atk. Modifiers
+(18428, 4412, 11), -- P. Def. Modifiers
+(18428, 4413, 11), -- M. Def. Modifiers
+(18428, 4414, 2), -- Armor Type
+(18428, 4415, 3), -- Weapon Type
+(18428, 4416, 2), -- Races
 -- 
-(18429, 4408, 1), -- HP Increase (1x)
-(18429, 4409, 1), -- MP Increase (1x)
-(18429, 4410, 11), -- Average P. Atk.
-(18429, 4411, 11), -- Average M. Atk.
-(18429, 4412, 11), -- Average P. Def.
-(18429, 4413, 11), -- Average M. Def.
-(18429, 4414, 2), -- Standard Type
-(18429, 4415, 3), -- One-handed Sword
-(18429, 4416, 2), -- Magic Creatures
+(18429, 4408, 1), -- HP Modifiers
+(18429, 4409, 1), -- MP Modifiers
+(18429, 4410, 11), -- P. Atk. Modifiers
+(18429, 4411, 11), -- M. Atk. Modifiers
+(18429, 4412, 11), -- P. Def. Modifiers
+(18429, 4413, 11), -- M. Def. Modifiers
+(18429, 4414, 2), -- Armor Type
+(18429, 4415, 3), -- Weapon Type
+(18429, 4416, 2), -- Races
 -- 
-(18430, 4408, 1), -- HP Increase (1x)
-(18430, 4409, 1), -- MP Increase (1x)
-(18430, 4410, 11), -- Average P. Atk.
-(18430, 4411, 11), -- Average M. Atk.
-(18430, 4412, 11), -- Average P. Def.
-(18430, 4413, 11), -- Average M. Def.
-(18430, 4414, 2), -- Standard Type
-(18430, 4415, 3), -- One-handed Sword
-(18430, 4416, 2), -- Magic Creatures
+(18430, 4408, 1), -- HP Modifiers
+(18430, 4409, 1), -- MP Modifiers
+(18430, 4410, 11), -- P. Atk. Modifiers
+(18430, 4411, 11), -- M. Atk. Modifiers
+(18430, 4412, 11), -- P. Def. Modifiers
+(18430, 4413, 11), -- M. Def. Modifiers
+(18430, 4414, 2), -- Armor Type
+(18430, 4415, 3), -- Weapon Type
+(18430, 4416, 2), -- Races
 -- Trap
-(18431, 4408, 1), -- HP Increase (1x)
-(18431, 4409, 1), -- MP Increase (1x)
-(18431, 4410, 11), -- Average P. Atk.
-(18431, 4411, 11), -- Average M. Atk.
-(18431, 4412, 11), -- Average P. Def.
-(18431, 4413, 11), -- Average M. Def.
-(18431, 4414, 2), -- Standard Type
-(18431, 4415, 3), -- One-handed Sword
-(18431, 4416, 2), -- Magic Creatures
+(18431, 4408, 1), -- HP Modifiers
+(18431, 4409, 1), -- MP Modifiers
+(18431, 4410, 11), -- P. Atk. Modifiers
+(18431, 4411, 11), -- M. Atk. Modifiers
+(18431, 4412, 11), -- P. Def. Modifiers
+(18431, 4413, 11), -- M. Def. Modifiers
+(18431, 4414, 2), -- Armor Type
+(18431, 4415, 3), -- Weapon Type
+(18431, 4416, 2), -- Races
 -- Trap
-(18432, 4408, 1), -- HP Increase (1x)
-(18432, 4409, 1), -- MP Increase (1x)
-(18432, 4410, 11), -- Average P. Atk.
-(18432, 4411, 11), -- Average M. Atk.
-(18432, 4412, 11), -- Average P. Def.
-(18432, 4413, 11), -- Average M. Def.
-(18432, 4414, 2), -- Standard Type
-(18432, 4415, 3), -- One-handed Sword
-(18432, 4416, 2), -- Magic Creatures
+(18432, 4408, 1), -- HP Modifiers
+(18432, 4409, 1), -- MP Modifiers
+(18432, 4410, 11), -- P. Atk. Modifiers
+(18432, 4411, 11), -- M. Atk. Modifiers
+(18432, 4412, 11), -- P. Def. Modifiers
+(18432, 4413, 11), -- M. Def. Modifiers
+(18432, 4414, 2), -- Armor Type
+(18432, 4415, 3), -- Weapon Type
+(18432, 4416, 2), -- Races
 -- Trap
-(18433, 4408, 1), -- HP Increase (1x)
-(18433, 4409, 1), -- MP Increase (1x)
-(18433, 4410, 11), -- Average P. Atk.
-(18433, 4411, 11), -- Average M. Atk.
-(18433, 4412, 11), -- Average P. Def.
-(18433, 4413, 11), -- Average M. Def.
-(18433, 4414, 2), -- Standard Type
-(18433, 4415, 3), -- One-handed Sword
-(18433, 4416, 2), -- Magic Creatures
+(18433, 4408, 1), -- HP Modifiers
+(18433, 4409, 1), -- MP Modifiers
+(18433, 4410, 11), -- P. Atk. Modifiers
+(18433, 4411, 11), -- M. Atk. Modifiers
+(18433, 4412, 11), -- P. Def. Modifiers
+(18433, 4413, 11), -- M. Def. Modifiers
+(18433, 4414, 2), -- Armor Type
+(18433, 4415, 3), -- Weapon Type
+(18433, 4416, 2), -- Races
 (18433, 5423, 9), -- Poison
 (18433, 5424, 9), -- Bleed
 -- Trap
-(18434, 4408, 1), -- HP Increase (1x)
-(18434, 4409, 1), -- MP Increase (1x)
-(18434, 4410, 11), -- Average P. Atk.
-(18434, 4411, 11), -- Average M. Atk.
-(18434, 4412, 11), -- Average P. Def.
-(18434, 4413, 11), -- Average M. Def.
-(18434, 4414, 2), -- Standard Type
-(18434, 4415, 3), -- One-handed Sword
-(18434, 4416, 2), -- Magic Creatures
+(18434, 4408, 1), -- HP Modifiers
+(18434, 4409, 1), -- MP Modifiers
+(18434, 4410, 11), -- P. Atk. Modifiers
+(18434, 4411, 11), -- M. Atk. Modifiers
+(18434, 4412, 11), -- P. Def. Modifiers
+(18434, 4413, 11), -- M. Def. Modifiers
+(18434, 4414, 2), -- Armor Type
+(18434, 4415, 3), -- Weapon Type
+(18434, 4416, 2), -- Races
 -- Trap
-(18435, 4408, 1), -- HP Increase (1x)
-(18435, 4409, 1), -- MP Increase (1x)
-(18435, 4410, 11), -- Average P. Atk.
-(18435, 4411, 11), -- Average M. Atk.
-(18435, 4412, 11), -- Average P. Def.
-(18435, 4413, 11), -- Average M. Def.
-(18435, 4414, 2), -- Standard Type
-(18435, 4415, 3), -- One-handed Sword
-(18435, 4416, 2), -- Magic Creatures
+(18435, 4408, 1), -- HP Modifiers
+(18435, 4409, 1), -- MP Modifiers
+(18435, 4410, 11), -- P. Atk. Modifiers
+(18435, 4411, 11), -- M. Atk. Modifiers
+(18435, 4412, 11), -- P. Def. Modifiers
+(18435, 4413, 11), -- M. Def. Modifiers
+(18435, 4414, 2), -- Armor Type
+(18435, 4415, 3), -- Weapon Type
+(18435, 4416, 2), -- Races
 -- Trap
-(18436, 4408, 1), -- HP Increase (1x)
-(18436, 4409, 1), -- MP Increase (1x)
-(18436, 4410, 11), -- Average P. Atk.
-(18436, 4411, 11), -- Average M. Atk.
-(18436, 4412, 11), -- Average P. Def.
-(18436, 4413, 11), -- Average M. Def.
-(18436, 4414, 2), -- Standard Type
-(18436, 4415, 3), -- One-handed Sword
-(18436, 4416, 2), -- Magic Creatures
+(18436, 4408, 1), -- HP Modifiers
+(18436, 4409, 1), -- MP Modifiers
+(18436, 4410, 11), -- P. Atk. Modifiers
+(18436, 4411, 11), -- M. Atk. Modifiers
+(18436, 4412, 11), -- P. Def. Modifiers
+(18436, 4413, 11), -- M. Def. Modifiers
+(18436, 4414, 2), -- Armor Type
+(18436, 4415, 3), -- Weapon Type
+(18436, 4416, 2), -- Races
 -- 
-(18437, 4094, 12), -- Cancellation
-(18437, 4322, 1), -- Adventurer's Wind Walk
-(18437, 4324, 1), -- Adventurer's Bless the Body
-(18437, 4327, 1), -- Adventurer's Haste
-(18437, 4329, 1), -- Adventurer's Acumen
-(18437, 4408, 1), -- HP Increase (1x)
-(18437, 4409, 1), -- MP Increase (1x)
-(18437, 4410, 11), -- Average P. Atk.
-(18437, 4411, 11), -- Average M. Atk.
-(18437, 4412, 11), -- Average P. Def.
-(18437, 4413, 11), -- Average M. Def.
-(18437, 4414, 2), -- Standard Type
-(18437, 4415, 3), -- One-handed Sword
-(18437, 4416, 2), -- Magic Creatures
+(18437, 4094, 12), -- NPC Cancel Magic
+(18437, 4322, 1), -- Wind Walk for Beginners
+(18437, 4324, 1), -- Bless the Body for Beginners
+(18437, 4327, 1), -- Haste for Beginners
+(18437, 4329, 1), -- Acumen for Beginners
+(18437, 4408, 1), -- HP Modifiers
+(18437, 4409, 1), -- MP Modifiers
+(18437, 4410, 11), -- P. Atk. Modifiers
+(18437, 4411, 11), -- M. Atk. Modifiers
+(18437, 4412, 11), -- P. Def. Modifiers
+(18437, 4413, 11), -- M. Def. Modifiers
+(18437, 4414, 2), -- Armor Type
+(18437, 4415, 3), -- Weapon Type
+(18437, 4416, 2), -- Races
 -- Trap
-(18438, 4408, 1), -- HP Increase (1x)
-(18438, 4409, 1), -- MP Increase (1x)
-(18438, 4410, 11), -- Average P. Atk.
-(18438, 4411, 11), -- Average M. Atk.
-(18438, 4412, 11), -- Average P. Def.
-(18438, 4413, 11), -- Average M. Def.
-(18438, 4414, 2), -- Standard Type
-(18438, 4415, 3), -- One-handed Sword
-(18438, 4416, 19), -- Others
+(18438, 4408, 1), -- HP Modifiers
+(18438, 4409, 1), -- MP Modifiers
+(18438, 4410, 11), -- P. Atk. Modifiers
+(18438, 4411, 11), -- M. Atk. Modifiers
+(18438, 4412, 11), -- P. Def. Modifiers
+(18438, 4413, 11), -- M. Def. Modifiers
+(18438, 4414, 2), -- Armor Type
+(18438, 4415, 3), -- Weapon Type
+(18438, 4416, 19), -- Races
 -- Kamael Gatekeeper
-(18441, 4408, 1), -- HP Increase (1x)
-(18441, 4409, 1), -- MP Increase (1x)
-(18441, 4410, 11), -- Average P. Atk.
-(18441, 4411, 11), -- Average M. Atk.
-(18441, 4412, 11), -- Average P. Def.
-(18441, 4413, 11), -- Average M. Def.
-(18441, 4414, 2), -- Standard Type
-(18441, 4415, 3), -- One-handed Sword
-(18441, 4416, 19), -- Others
+(18441, 4408, 1), -- HP Modifiers
+(18441, 4409, 1), -- MP Modifiers
+(18441, 4410, 11), -- P. Atk. Modifiers
+(18441, 4411, 11), -- M. Atk. Modifiers
+(18441, 4412, 11), -- P. Def. Modifiers
+(18441, 4413, 11), -- M. Def. Modifiers
+(18441, 4414, 2), -- Armor Type
+(18441, 4415, 3), -- Weapon Type
+(18441, 4416, 19), -- Races
 -- Trap
-(18442, 4408, 1), -- HP Increase (1x)
-(18442, 4409, 1), -- MP Increase (1x)
-(18442, 4410, 11), -- Average P. Atk.
-(18442, 4411, 11), -- Average M. Atk.
-(18442, 4412, 11), -- Average P. Def.
-(18442, 4413, 11), -- Average M. Def.
-(18442, 4414, 2), -- Standard Type
-(18442, 4415, 3), -- One-handed Sword
-(18442, 4416, 19), -- Others
+(18442, 4408, 1), -- HP Modifiers
+(18442, 4409, 1), -- MP Modifiers
+(18442, 4410, 11), -- P. Atk. Modifiers
+(18442, 4411, 11), -- M. Atk. Modifiers
+(18442, 4412, 11), -- P. Def. Modifiers
+(18442, 4413, 11), -- M. Def. Modifiers
+(18442, 4414, 2), -- Armor Type
+(18442, 4415, 3), -- Weapon Type
+(18442, 4416, 19), -- Races
 -- Trap
-(18443, 4408, 1), -- HP Increase (1x)
-(18443, 4409, 1), -- MP Increase (1x)
-(18443, 4410, 11), -- Average P. Atk.
-(18443, 4411, 11), -- Average M. Atk.
-(18443, 4412, 11), -- Average P. Def.
-(18443, 4413, 11), -- Average M. Def.
-(18443, 4414, 2), -- Standard Type
-(18443, 4415, 3), -- One-handed Sword
-(18443, 4416, 2), -- Magic Creatures
+(18443, 4408, 1), -- HP Modifiers
+(18443, 4409, 1), -- MP Modifiers
+(18443, 4410, 11), -- P. Atk. Modifiers
+(18443, 4411, 11), -- M. Atk. Modifiers
+(18443, 4412, 11), -- P. Def. Modifiers
+(18443, 4413, 11), -- M. Def. Modifiers
+(18443, 4414, 2), -- Armor Type
+(18443, 4415, 3), -- Weapon Type
+(18443, 4416, 2), -- Races
 (18443, 5423, 9), -- Poison
 (18443, 5424, 9), -- Bleed
 -- Garden Guard
-(18444, 4032, 2), -- Power Strike
-(18444, 4408, 1), -- HP Increase (1x)
-(18444, 4409, 1), -- MP Increase (1x)
-(18444, 4410, 11), -- Average P. Atk.
-(18444, 4411, 11), -- Average M. Atk.
-(18444, 4412, 11), -- Average P. Def.
-(18444, 4413, 11), -- Average M. Def.
-(18444, 4414, 2), -- Standard Type
-(18444, 4415, 3), -- One-handed Sword
-(18444, 4416, 6), -- Humanoids
+(18444, 4032, 2), -- NPC Strike
+(18444, 4408, 1), -- HP Modifiers
+(18444, 4409, 1), -- MP Modifiers
+(18444, 4410, 11), -- P. Atk. Modifiers
+(18444, 4411, 11), -- M. Atk. Modifiers
+(18444, 4412, 11), -- P. Def. Modifiers
+(18444, 4413, 11), -- M. Def. Modifiers
+(18444, 4414, 2), -- Armor Type
+(18444, 4415, 3), -- Weapon Type
+(18444, 4416, 6), -- Races
 -- Tully's Gatekeeper
 (18445, 4045, 1), -- Resist Full Magic Attack
-(18445, 4408, 1), -- HP Increase (1x)
-(18445, 4409, 1), -- MP Increase (1x)
-(18445, 4410, 11), -- Average P. Atk.
-(18445, 4411, 11), -- Average M. Atk.
-(18445, 4412, 11), -- Average P. Def.
-(18445, 4413, 11), -- Average M. Def.
-(18445, 4414, 2), -- Standard Type
-(18445, 4415, 3), -- One-handed Sword
-(18445, 4416, 19), -- Others
+(18445, 4408, 1), -- HP Modifiers
+(18445, 4409, 1), -- MP Modifiers
+(18445, 4410, 11), -- P. Atk. Modifiers
+(18445, 4411, 11), -- M. Atk. Modifiers
+(18445, 4412, 11), -- P. Def. Modifiers
+(18445, 4413, 11), -- M. Def. Modifiers
+(18445, 4414, 2), -- Armor Type
+(18445, 4415, 3), -- Weapon Type
+(18445, 4416, 19), -- Races
 (18445, 5479, 1), -- Boss Petrification Resistance
 -- Tully's Gatekeeper
 (18446, 4045, 1), -- Resist Full Magic Attack
-(18446, 4408, 1), -- HP Increase (1x)
-(18446, 4409, 1), -- MP Increase (1x)
-(18446, 4410, 11), -- Average P. Atk.
-(18446, 4411, 11), -- Average M. Atk.
-(18446, 4412, 11), -- Average P. Def.
-(18446, 4413, 11), -- Average M. Def.
-(18446, 4414, 2), -- Standard Type
-(18446, 4415, 3), -- One-handed Sword
-(18446, 4416, 19), -- Others
+(18446, 4408, 1), -- HP Modifiers
+(18446, 4409, 1), -- MP Modifiers
+(18446, 4410, 11), -- P. Atk. Modifiers
+(18446, 4411, 11), -- M. Atk. Modifiers
+(18446, 4412, 11), -- P. Def. Modifiers
+(18446, 4413, 11), -- M. Def. Modifiers
+(18446, 4414, 2), -- Armor Type
+(18446, 4415, 3), -- Weapon Type
+(18446, 4416, 19), -- Races
 (18446, 5479, 1), -- Boss Petrification Resistance
 -- Tully's Gatekeeper
 (18447, 4045, 1), -- Resist Full Magic Attack
-(18447, 4408, 1), -- HP Increase (1x)
-(18447, 4409, 1), -- MP Increase (1x)
-(18447, 4410, 11), -- Average P. Atk.
-(18447, 4411, 11), -- Average M. Atk.
-(18447, 4412, 11), -- Average P. Def.
-(18447, 4413, 11), -- Average M. Def.
-(18447, 4414, 2), -- Standard Type
-(18447, 4415, 3), -- One-handed Sword
-(18447, 4416, 19), -- Others
+(18447, 4408, 1), -- HP Modifiers
+(18447, 4409, 1), -- MP Modifiers
+(18447, 4410, 11), -- P. Atk. Modifiers
+(18447, 4411, 11), -- M. Atk. Modifiers
+(18447, 4412, 11), -- P. Def. Modifiers
+(18447, 4413, 11), -- M. Def. Modifiers
+(18447, 4414, 2), -- Armor Type
+(18447, 4415, 3), -- Weapon Type
+(18447, 4416, 19), -- Races
 (18447, 5479, 1), -- Boss Petrification Resistance
 -- Tully's Gatekeeper
 (18448, 4045, 1), -- Resist Full Magic Attack
-(18448, 4408, 1), -- HP Increase (1x)
-(18448, 4409, 1), -- MP Increase (1x)
-(18448, 4410, 11), -- Average P. Atk.
-(18448, 4411, 11), -- Average M. Atk.
-(18448, 4412, 11), -- Average P. Def.
-(18448, 4413, 11), -- Average M. Def.
-(18448, 4414, 2), -- Standard Type
-(18448, 4415, 3), -- One-handed Sword
-(18448, 4416, 19), -- Others
+(18448, 4408, 1), -- HP Modifiers
+(18448, 4409, 1), -- MP Modifiers
+(18448, 4410, 11), -- P. Atk. Modifiers
+(18448, 4411, 11), -- M. Atk. Modifiers
+(18448, 4412, 11), -- P. Def. Modifiers
+(18448, 4413, 11), -- M. Def. Modifiers
+(18448, 4414, 2), -- Armor Type
+(18448, 4415, 3), -- Weapon Type
+(18448, 4416, 19), -- Races
 (18448, 5479, 1), -- Boss Petrification Resistance
 -- Tully's Gatekeeper
 (18449, 4045, 1), -- Resist Full Magic Attack
-(18449, 4408, 1), -- HP Increase (1x)
-(18449, 4409, 1), -- MP Increase (1x)
-(18449, 4410, 11), -- Average P. Atk.
-(18449, 4411, 11), -- Average M. Atk.
-(18449, 4412, 11), -- Average P. Def.
-(18449, 4413, 11), -- Average M. Def.
-(18449, 4414, 2), -- Standard Type
-(18449, 4415, 3), -- One-handed Sword
-(18449, 4416, 19), -- Others
+(18449, 4408, 1), -- HP Modifiers
+(18449, 4409, 1), -- MP Modifiers
+(18449, 4410, 11), -- P. Atk. Modifiers
+(18449, 4411, 11), -- M. Atk. Modifiers
+(18449, 4412, 11), -- P. Def. Modifiers
+(18449, 4413, 11), -- M. Def. Modifiers
+(18449, 4414, 2), -- Armor Type
+(18449, 4415, 3), -- Weapon Type
+(18449, 4416, 19), -- Races
 (18449, 5479, 1), -- Boss Petrification Resistance
 -- Tully's Gatekeeper
 (18450, 4045, 1), -- Resist Full Magic Attack
-(18450, 4408, 1), -- HP Increase (1x)
-(18450, 4409, 1), -- MP Increase (1x)
-(18450, 4410, 11), -- Average P. Atk.
-(18450, 4411, 11), -- Average M. Atk.
-(18450, 4412, 11), -- Average P. Def.
-(18450, 4413, 11), -- Average M. Def.
-(18450, 4414, 2), -- Standard Type
-(18450, 4415, 3), -- One-handed Sword
-(18450, 4416, 19), -- Others
+(18450, 4408, 1), -- HP Modifiers
+(18450, 4409, 1), -- MP Modifiers
+(18450, 4410, 11), -- P. Atk. Modifiers
+(18450, 4411, 11), -- M. Atk. Modifiers
+(18450, 4412, 11), -- P. Def. Modifiers
+(18450, 4413, 11), -- M. Def. Modifiers
+(18450, 4414, 2), -- Armor Type
+(18450, 4415, 3), -- Weapon Type
+(18450, 4416, 19), -- Races
 (18450, 5479, 1), -- Boss Petrification Resistance
 -- Tully's Gatekeeper
 (18451, 4045, 1), -- Resist Full Magic Attack
-(18451, 4408, 1), -- HP Increase (1x)
-(18451, 4409, 1), -- MP Increase (1x)
-(18451, 4410, 11), -- Average P. Atk.
-(18451, 4411, 11), -- Average M. Atk.
-(18451, 4412, 11), -- Average P. Def.
-(18451, 4413, 11), -- Average M. Def.
-(18451, 4414, 2), -- Standard Type
-(18451, 4415, 3), -- One-handed Sword
-(18451, 4416, 19), -- Others
+(18451, 4408, 1), -- HP Modifiers
+(18451, 4409, 1), -- MP Modifiers
+(18451, 4410, 11), -- P. Atk. Modifiers
+(18451, 4411, 11), -- M. Atk. Modifiers
+(18451, 4412, 11), -- P. Def. Modifiers
+(18451, 4413, 11), -- M. Def. Modifiers
+(18451, 4414, 2), -- Armor Type
+(18451, 4415, 3), -- Weapon Type
+(18451, 4416, 19), -- Races
 (18451, 5479, 1), -- Boss Petrification Resistance
 -- Tully's Gatekeeper
 (18452, 4045, 1), -- Resist Full Magic Attack
-(18452, 4408, 1), -- HP Increase (1x)
-(18452, 4409, 1), -- MP Increase (1x)
-(18452, 4410, 11), -- Average P. Atk.
-(18452, 4411, 11), -- Average M. Atk.
-(18452, 4412, 11), -- Average P. Def.
-(18452, 4413, 11), -- Average M. Def.
-(18452, 4414, 2), -- Standard Type
-(18452, 4415, 3), -- One-handed Sword
-(18452, 4416, 19), -- Others
+(18452, 4408, 1), -- HP Modifiers
+(18452, 4409, 1), -- MP Modifiers
+(18452, 4410, 11), -- P. Atk. Modifiers
+(18452, 4411, 11), -- M. Atk. Modifiers
+(18452, 4412, 11), -- P. Def. Modifiers
+(18452, 4413, 11), -- M. Def. Modifiers
+(18452, 4414, 2), -- Armor Type
+(18452, 4415, 3), -- Weapon Type
+(18452, 4416, 19), -- Races
 (18452, 5479, 1), -- Boss Petrification Resistance
 -- Tully's Gatekeeper
 (18453, 4045, 1), -- Resist Full Magic Attack
-(18453, 4408, 1), -- HP Increase (1x)
-(18453, 4409, 1), -- MP Increase (1x)
-(18453, 4410, 11), -- Average P. Atk.
-(18453, 4411, 11), -- Average M. Atk.
-(18453, 4412, 11), -- Average P. Def.
-(18453, 4413, 11), -- Average M. Def.
-(18453, 4414, 2), -- Standard Type
-(18453, 4415, 3), -- One-handed Sword
-(18453, 4416, 19), -- Others
+(18453, 4408, 1), -- HP Modifiers
+(18453, 4409, 1), -- MP Modifiers
+(18453, 4410, 11), -- P. Atk. Modifiers
+(18453, 4411, 11), -- M. Atk. Modifiers
+(18453, 4412, 11), -- P. Def. Modifiers
+(18453, 4413, 11), -- M. Def. Modifiers
+(18453, 4414, 2), -- Armor Type
+(18453, 4415, 3), -- Weapon Type
+(18453, 4416, 19), -- Races
 (18453, 5479, 1), -- Boss Petrification Resistance
 -- Tully's Gatekeeper
 (18454, 4045, 1), -- Resist Full Magic Attack
-(18454, 4408, 1), -- HP Increase (1x)
-(18454, 4409, 1), -- MP Increase (1x)
-(18454, 4410, 11), -- Average P. Atk.
-(18454, 4411, 11), -- Average M. Atk.
-(18454, 4412, 11), -- Average P. Def.
-(18454, 4413, 11), -- Average M. Def.
-(18454, 4414, 2), -- Standard Type
-(18454, 4415, 3), -- One-handed Sword
-(18454, 4416, 19), -- Others
+(18454, 4408, 1), -- HP Modifiers
+(18454, 4409, 1), -- MP Modifiers
+(18454, 4410, 11), -- P. Atk. Modifiers
+(18454, 4411, 11), -- M. Atk. Modifiers
+(18454, 4412, 11), -- P. Def. Modifiers
+(18454, 4413, 11), -- M. Def. Modifiers
+(18454, 4414, 2), -- Armor Type
+(18454, 4415, 3), -- Weapon Type
+(18454, 4416, 19), -- Races
 (18454, 5479, 1), -- Boss Petrification Resistance
 -- Tully's Gatekeeper
 (18455, 4045, 1), -- Resist Full Magic Attack
-(18455, 4408, 1), -- HP Increase (1x)
-(18455, 4409, 1), -- MP Increase (1x)
-(18455, 4410, 11), -- Average P. Atk.
-(18455, 4411, 11), -- Average M. Atk.
-(18455, 4412, 11), -- Average P. Def.
-(18455, 4413, 11), -- Average M. Def.
-(18455, 4414, 2), -- Standard Type
-(18455, 4415, 3), -- One-handed Sword
-(18455, 4416, 19), -- Others
+(18455, 4408, 1), -- HP Modifiers
+(18455, 4409, 1), -- MP Modifiers
+(18455, 4410, 11), -- P. Atk. Modifiers
+(18455, 4411, 11), -- M. Atk. Modifiers
+(18455, 4412, 11), -- P. Def. Modifiers
+(18455, 4413, 11), -- M. Def. Modifiers
+(18455, 4414, 2), -- Armor Type
+(18455, 4415, 3), -- Weapon Type
+(18455, 4416, 19), -- Races
 (18455, 5479, 1), -- Boss Petrification Resistance
 -- Tully's Gatekeeper
 (18456, 4045, 1), -- Resist Full Magic Attack
-(18456, 4408, 1), -- HP Increase (1x)
-(18456, 4409, 1), -- MP Increase (1x)
-(18456, 4410, 11), -- Average P. Atk.
-(18456, 4411, 11), -- Average M. Atk.
-(18456, 4412, 11), -- Average P. Def.
-(18456, 4413, 11), -- Average M. Def.
-(18456, 4414, 2), -- Standard Type
-(18456, 4415, 3), -- One-handed Sword
-(18456, 4416, 19), -- Others
+(18456, 4408, 1), -- HP Modifiers
+(18456, 4409, 1), -- MP Modifiers
+(18456, 4410, 11), -- P. Atk. Modifiers
+(18456, 4411, 11), -- M. Atk. Modifiers
+(18456, 4412, 11), -- P. Def. Modifiers
+(18456, 4413, 11), -- M. Def. Modifiers
+(18456, 4414, 2), -- Armor Type
+(18456, 4415, 3), -- Weapon Type
+(18456, 4416, 19), -- Races
 (18456, 5479, 1), -- Boss Petrification Resistance
 -- Tully's Gatekeeper
 (18457, 4045, 1), -- Resist Full Magic Attack
-(18457, 4408, 1), -- HP Increase (1x)
-(18457, 4409, 1), -- MP Increase (1x)
-(18457, 4410, 11), -- Average P. Atk.
-(18457, 4411, 11), -- Average M. Atk.
-(18457, 4412, 11), -- Average P. Def.
-(18457, 4413, 11), -- Average M. Def.
-(18457, 4414, 2), -- Standard Type
-(18457, 4415, 3), -- One-handed Sword
-(18457, 4416, 19), -- Others
+(18457, 4408, 1), -- HP Modifiers
+(18457, 4409, 1), -- MP Modifiers
+(18457, 4410, 11), -- P. Atk. Modifiers
+(18457, 4411, 11), -- M. Atk. Modifiers
+(18457, 4412, 11), -- P. Def. Modifiers
+(18457, 4413, 11), -- M. Def. Modifiers
+(18457, 4414, 2), -- Armor Type
+(18457, 4415, 3), -- Weapon Type
+(18457, 4416, 19), -- Races
 (18457, 5479, 1), -- Boss Petrification Resistance
 -- Tully's Gatekeeper
 (18458, 4045, 1), -- Resist Full Magic Attack
-(18458, 4408, 1), -- HP Increase (1x)
-(18458, 4409, 1), -- MP Increase (1x)
-(18458, 4410, 11), -- Average P. Atk.
-(18458, 4411, 11), -- Average M. Atk.
-(18458, 4412, 11), -- Average P. Def.
-(18458, 4413, 11), -- Average M. Def.
-(18458, 4414, 2), -- Standard Type
-(18458, 4415, 3), -- One-handed Sword
-(18458, 4416, 19), -- Others
+(18458, 4408, 1), -- HP Modifiers
+(18458, 4409, 1), -- MP Modifiers
+(18458, 4410, 11), -- P. Atk. Modifiers
+(18458, 4411, 11), -- M. Atk. Modifiers
+(18458, 4412, 11), -- P. Def. Modifiers
+(18458, 4413, 11), -- M. Def. Modifiers
+(18458, 4414, 2), -- Armor Type
+(18458, 4415, 3), -- Weapon Type
+(18458, 4416, 19), -- Races
 (18458, 5479, 1), -- Boss Petrification Resistance
 -- Tully's Gatekeeper
 (18459, 4045, 1), -- Resist Full Magic Attack
-(18459, 4408, 1), -- HP Increase (1x)
-(18459, 4409, 1), -- MP Increase (1x)
-(18459, 4410, 11), -- Average P. Atk.
-(18459, 4411, 11), -- Average M. Atk.
-(18459, 4412, 11), -- Average P. Def.
-(18459, 4413, 11), -- Average M. Def.
-(18459, 4414, 2), -- Standard Type
-(18459, 4415, 3), -- One-handed Sword
-(18459, 4416, 19), -- Others
+(18459, 4408, 1), -- HP Modifiers
+(18459, 4409, 1), -- MP Modifiers
+(18459, 4410, 11), -- P. Atk. Modifiers
+(18459, 4411, 11), -- M. Atk. Modifiers
+(18459, 4412, 11), -- P. Def. Modifiers
+(18459, 4413, 11), -- M. Def. Modifiers
+(18459, 4414, 2), -- Armor Type
+(18459, 4415, 3), -- Weapon Type
+(18459, 4416, 19), -- Races
 (18459, 5479, 1), -- Boss Petrification Resistance
 -- Tully's Gatekeeper
 (18460, 4045, 1), -- Resist Full Magic Attack
-(18460, 4408, 1), -- HP Increase (1x)
-(18460, 4409, 1), -- MP Increase (1x)
-(18460, 4410, 11), -- Average P. Atk.
-(18460, 4411, 11), -- Average M. Atk.
-(18460, 4412, 11), -- Average P. Def.
-(18460, 4413, 11), -- Average M. Def.
-(18460, 4414, 2), -- Standard Type
-(18460, 4415, 3), -- One-handed Sword
-(18460, 4416, 19), -- Others
+(18460, 4408, 1), -- HP Modifiers
+(18460, 4409, 1), -- MP Modifiers
+(18460, 4410, 11), -- P. Atk. Modifiers
+(18460, 4411, 11), -- M. Atk. Modifiers
+(18460, 4412, 11), -- P. Def. Modifiers
+(18460, 4413, 11), -- M. Def. Modifiers
+(18460, 4414, 2), -- Armor Type
+(18460, 4415, 3), -- Weapon Type
+(18460, 4416, 19), -- Races
 (18460, 5479, 1), -- Boss Petrification Resistance
 -- Tully's Gatekeeper
 (18461, 4045, 1), -- Resist Full Magic Attack
-(18461, 4408, 1), -- HP Increase (1x)
-(18461, 4409, 1), -- MP Increase (1x)
-(18461, 4410, 11), -- Average P. Atk.
-(18461, 4411, 11), -- Average M. Atk.
-(18461, 4412, 11), -- Average P. Def.
-(18461, 4413, 11), -- Average M. Def.
-(18461, 4414, 2), -- Standard Type
-(18461, 4415, 3), -- One-handed Sword
-(18461, 4416, 19), -- Others
+(18461, 4408, 1), -- HP Modifiers
+(18461, 4409, 1), -- MP Modifiers
+(18461, 4410, 11), -- P. Atk. Modifiers
+(18461, 4411, 11), -- M. Atk. Modifiers
+(18461, 4412, 11), -- P. Def. Modifiers
+(18461, 4413, 11), -- M. Def. Modifiers
+(18461, 4414, 2), -- Armor Type
+(18461, 4415, 3), -- Weapon Type
+(18461, 4416, 19), -- Races
 (18461, 5479, 1), -- Boss Petrification Resistance
 -- Remnant Diabolist
-(18463, 4408, 1), -- HP Increase (1x)
-(18463, 4409, 1), -- MP Increase (1x)
-(18463, 4410, 8), -- Weak P. Atk.
-(18463, 4411, 11), -- Average M. Atk.
-(18463, 4412, 14), -- Strong P. Def.
-(18463, 4413, 11), -- Average M. Def.
-(18463, 4414, 2), -- Standard Type
-(18463, 4415, 9), -- Bows
-(18463, 4416, 1), -- Undead
-(18463, 5335, 3), -- Power Shot
+(18463, 4408, 1), -- HP Modifiers
+(18463, 4409, 1), -- MP Modifiers
+(18463, 4410, 8), -- P. Atk. Modifiers
+(18463, 4411, 11), -- M. Atk. Modifiers
+(18463, 4412, 14), -- P. Def. Modifiers
+(18463, 4413, 11), -- M. Def. Modifiers
+(18463, 4414, 2), -- Armor Type
+(18463, 4415, 9), -- Weapon Type
+(18463, 4416, 1), -- Races
+(18463, 5335, 3), -- NPC(party) - Physical Single Long Range Attack
 -- Remnant Diviner
-(18464, 4408, 1), -- HP Increase (1x)
-(18464, 4409, 1), -- MP Increase (1x)
-(18464, 4410, 11), -- Average P. Atk.
-(18464, 4411, 8), -- Weak M. Atk.
-(18464, 4412, 11), -- Average P. Def.
-(18464, 4413, 14), -- Strong M. Def.
-(18464, 4414, 2), -- Standard Type
-(18464, 4415, 3), -- One-handed Sword
-(18464, 4416, 1), -- Undead
-(18464, 5265, 10), -- Soul Emission
-(18464, 5332, 4), -- Mana Burn
+(18464, 4408, 1), -- HP Modifiers
+(18464, 4409, 1), -- MP Modifiers
+(18464, 4410, 11), -- P. Atk. Modifiers
+(18464, 4411, 8), -- M. Atk. Modifiers
+(18464, 4412, 11), -- P. Def. Modifiers
+(18464, 4413, 14), -- M. Def. Modifiers
+(18464, 4414, 2), -- Armor Type
+(18464, 4415, 3), -- Weapon Type
+(18464, 4416, 1), -- Races
+(18464, 5265, 10), -- NPC - Soul Emission
+(18464, 5332, 4), -- NPC MP Burn
 -- Derek
-(18465, 4408, 1), -- HP Increase (1x)
-(18465, 4409, 1), -- MP Increase (1x)
-(18465, 4410, 11), -- Average P. Atk.
-(18465, 4411, 11), -- Average M. Atk.
-(18465, 4412, 11), -- Average P. Def.
-(18465, 4413, 11), -- Average M. Def.
-(18465, 4414, 2), -- Standard Type
-(18465, 4415, 3), -- One-handed Sword
-(18465, 4416, 1), -- Undead
-(18465, 5372, 4), -- Aura Flare
-(18465, 5393, 4), -- Mana Burn
+(18465, 4408, 1), -- HP Modifiers
+(18465, 4409, 1), -- MP Modifiers
+(18465, 4410, 11), -- P. Atk. Modifiers
+(18465, 4411, 11), -- M. Atk. Modifiers
+(18465, 4412, 11), -- P. Def. Modifiers
+(18465, 4413, 11), -- M. Def. Modifiers
+(18465, 4414, 2), -- Armor Type
+(18465, 4415, 3), -- Weapon Type
+(18465, 4416, 1), -- Races
+(18465, 5372, 4), -- NPC(party) - Magic Close Range DD - less powerful
+(18465, 5393, 4), -- NPC MP Burn
 -- Outpost Captain
-(18466, 4408, 1), -- HP Increase (1x)
-(18466, 4409, 1), -- MP Increase (1x)
-(18466, 4410, 11), -- Average P. Atk.
-(18466, 4411, 11), -- Average M. Atk.
-(18466, 4412, 11), -- Average P. Def.
-(18466, 4413, 11), -- Average M. Def.
-(18466, 4414, 2), -- Standard Type
-(18466, 4415, 3), -- One-handed Sword
-(18466, 4416, 9), -- Demons
+(18466, 4408, 1), -- HP Modifiers
+(18466, 4409, 1), -- MP Modifiers
+(18466, 4410, 11), -- P. Atk. Modifiers
+(18466, 4411, 11), -- M. Atk. Modifiers
+(18466, 4412, 11), -- P. Def. Modifiers
+(18466, 4413, 11), -- M. Def. Modifiers
+(18466, 4414, 2), -- Armor Type
+(18466, 4415, 3), -- Weapon Type
+(18466, 4416, 9), -- Races
 (18466, 4466, 3), -- Surrender To Darkness
 (18466, 5306, 4), -- Paralysis
 (18466, 5467, 1), -- Dark Attacks
 -- Wounded Land Guard
-(18467, 4408, 1), -- HP Increase (1x)
-(18467, 4409, 1), -- MP Increase (1x)
-(18467, 4410, 11), -- Average P. Atk.
-(18467, 4411, 11), -- Average M. Atk.
-(18467, 4412, 11), -- Average P. Def.
-(18467, 4413, 11), -- Average M. Def.
-(18467, 4414, 2), -- Standard Type
-(18467, 4415, 3), -- One-handed Sword
-(18467, 4416, 9), -- Demons
+(18467, 4408, 1), -- HP Modifiers
+(18467, 4409, 1), -- MP Modifiers
+(18467, 4410, 11), -- P. Atk. Modifiers
+(18467, 4411, 11), -- M. Atk. Modifiers
+(18467, 4412, 11), -- P. Def. Modifiers
+(18467, 4413, 11), -- M. Def. Modifiers
+(18467, 4414, 2), -- Armor Type
+(18467, 4415, 3), -- Weapon Type
+(18467, 4416, 9), -- Races
 (18467, 5302, 4), -- Poison
 (18467, 5467, 1), -- Dark Attacks
 -- Doorman
-(18468, 4408, 1), -- HP Increase (1x)
-(18468, 4409, 1), -- MP Increase (1x)
-(18468, 4410, 11), -- Average P. Atk.
-(18468, 4411, 11), -- Average M. Atk.
-(18468, 4412, 11), -- Average P. Def.
-(18468, 4413, 11), -- Average M. Def.
-(18468, 4414, 2), -- Standard Type
-(18468, 4415, 3), -- One-handed Sword
-(18468, 4416, 19), -- Others
+(18468, 4408, 1), -- HP Modifiers
+(18468, 4409, 1), -- MP Modifiers
+(18468, 4410, 11), -- P. Atk. Modifiers
+(18468, 4411, 11), -- M. Atk. Modifiers
+(18468, 4412, 11), -- P. Def. Modifiers
+(18468, 4413, 11), -- M. Def. Modifiers
+(18468, 4414, 2), -- Armor Type
+(18468, 4415, 3), -- Weapon Type
+(18468, 4416, 19), -- Races
 -- Hall Guard
-(18469, 4072, 10), -- Stun
-(18469, 4408, 11), -- HP Increase (3x)
-(18469, 4409, 1), -- MP Increase (1x)
-(18469, 4410, 11), -- Average P. Atk.
-(18469, 4411, 11), -- Average M. Atk.
-(18469, 4412, 11), -- Average P. Def.
-(18469, 4413, 11), -- Average M. Def.
-(18469, 4414, 1), -- Heavy Armor Type
-(18469, 4415, 3), -- One-handed Sword
-(18469, 4416, 6), -- Humanoids
-(18469, 5273, 4), -- Power Strike
+(18469, 4072, 10), -- Shock
+(18469, 4408, 11), -- HP Modifiers
+(18469, 4409, 1), -- MP Modifiers
+(18469, 4410, 11), -- P. Atk. Modifiers
+(18469, 4411, 11), -- M. Atk. Modifiers
+(18469, 4412, 11), -- P. Def. Modifiers
+(18469, 4413, 11), -- M. Def. Modifiers
+(18469, 4414, 1), -- Armor Type
+(18469, 4415, 3), -- Weapon Type
+(18469, 4416, 6), -- Races
+(18469, 5273, 4), -- NPC(party) - Physical Single Close Range Attack
 (18469, 5463, 1), -- Water Attacks
 -- Hall Guard
-(18470, 4408, 1), -- HP Increase (1x)
-(18470, 4409, 1), -- MP Increase (1x)
-(18470, 4410, 11), -- Average P. Atk.
-(18470, 4411, 11), -- Average M. Atk.
-(18470, 4412, 11), -- Average P. Def.
-(18470, 4413, 11), -- Average M. Def.
-(18470, 4414, 2), -- Standard Type
-(18470, 4415, 3), -- One-handed Sword
-(18470, 4416, 6), -- Humanoids
-(18470, 5283, 4), -- Whirlwind
+(18470, 4408, 1), -- HP Modifiers
+(18470, 4409, 1), -- MP Modifiers
+(18470, 4410, 11), -- P. Atk. Modifiers
+(18470, 4411, 11), -- M. Atk. Modifiers
+(18470, 4412, 11), -- P. Def. Modifiers
+(18470, 4413, 11), -- M. Def. Modifiers
+(18470, 4414, 2), -- Armor Type
+(18470, 4415, 3), -- Weapon Type
+(18470, 4416, 6), -- Races
+(18470, 5283, 4), -- NPC(party) - Physical Range Close Range Attack - Water
 (18470, 5463, 1), -- Water Attacks
 -- Hall Guard
-(18471, 4408, 9), -- HP Increase (1/2x)
-(18471, 4409, 1), -- MP Increase (1x)
-(18471, 4410, 11), -- Average P. Atk.
-(18471, 4411, 11), -- Average M. Atk.
-(18471, 4412, 11), -- Average P. Def.
-(18471, 4413, 11), -- Average M. Def.
-(18471, 4414, 2), -- Standard Type
-(18471, 4415, 1), -- Bare Hands
-(18471, 4416, 9), -- Demons
-(18471, 4613, 10), -- Clan Heal
-(18471, 5316, 4), -- Hydro Blast
-(18471, 5318, 4), -- Frost Wall
+(18471, 4408, 9), -- HP Modifiers
+(18471, 4409, 1), -- MP Modifiers
+(18471, 4410, 11), -- P. Atk. Modifiers
+(18471, 4411, 11), -- M. Atk. Modifiers
+(18471, 4412, 11), -- P. Def. Modifiers
+(18471, 4413, 11), -- M. Def. Modifiers
+(18471, 4414, 2), -- Armor Type
+(18471, 4415, 1), -- Weapon Type
+(18471, 4416, 9), -- Races
+(18471, 4613, 10), -- NPC Clan Heal
+(18471, 5316, 4), -- NPC(party) -Magic Single Long Range DD - Water
+(18471, 5318, 4), -- NPC(party) -Magic Range Close Range DD - Water
 (18471, 5463, 1), -- Water Attacks
 -- Hall Guard
-(18472, 4408, 1), -- HP Increase (1x)
-(18472, 4409, 1), -- MP Increase (1x)
-(18472, 4410, 11), -- Average P. Atk.
-(18472, 4411, 11), -- Average M. Atk.
-(18472, 4412, 11), -- Average P. Def.
-(18472, 4413, 11), -- Average M. Def.
-(18472, 4414, 2), -- Standard Type
-(18472, 4415, 3), -- One-handed Sword
-(18472, 4416, 9), -- Demons
-(18472, 5273, 4), -- Power Strike
+(18472, 4408, 1), -- HP Modifiers
+(18472, 4409, 1), -- MP Modifiers
+(18472, 4410, 11), -- P. Atk. Modifiers
+(18472, 4411, 11), -- M. Atk. Modifiers
+(18472, 4412, 11), -- P. Def. Modifiers
+(18472, 4413, 11), -- M. Def. Modifiers
+(18472, 4414, 2), -- Armor Type
+(18472, 4415, 3), -- Weapon Type
+(18472, 4416, 9), -- Races
+(18472, 5273, 4), -- NPC(party) - Physical Single Close Range Attack
 (18472, 5301, 4), -- Stun
 (18472, 5463, 1), -- Water Attacks
 -- Hall Captain
-(18473, 4408, 1), -- HP Increase (1x)
-(18473, 4409, 1), -- MP Increase (1x)
-(18473, 4410, 11), -- Average P. Atk.
-(18473, 4411, 11), -- Average M. Atk.
-(18473, 4412, 11), -- Average P. Def.
-(18473, 4413, 11), -- Average M. Def.
-(18473, 4414, 1), -- Heavy Armor Type
-(18473, 4415, 3), -- One-handed Sword
-(18473, 4416, 6), -- Humanoids
-(18473, 5318, 4), -- Frost Wall
+(18473, 4408, 1), -- HP Modifiers
+(18473, 4409, 1), -- MP Modifiers
+(18473, 4410, 11), -- P. Atk. Modifiers
+(18473, 4411, 11), -- M. Atk. Modifiers
+(18473, 4412, 11), -- P. Def. Modifiers
+(18473, 4413, 11), -- M. Def. Modifiers
+(18473, 4414, 1), -- Armor Type
+(18473, 4415, 3), -- Weapon Type
+(18473, 4416, 6), -- Races
+(18473, 5318, 4), -- NPC(party) -Magic Range Close Range DD - Water
 (18473, 5333, 4), -- Poison
 (18473, 5463, 1), -- Water Attacks
 -- Alarm
-(18474, 4408, 1), -- HP Increase (1x)
-(18474, 4409, 1), -- MP Increase (1x)
-(18474, 4410, 11), -- Average P. Atk.
-(18474, 4411, 11), -- Average M. Atk.
-(18474, 4412, 11), -- Average P. Def.
-(18474, 4413, 11), -- Average M. Def.
-(18474, 4414, 2), -- Standard Type
-(18474, 4415, 3), -- One-handed Sword
-(18474, 4416, 19), -- Others
+(18474, 4408, 1), -- HP Modifiers
+(18474, 4409, 1), -- MP Modifiers
+(18474, 4410, 11), -- P. Atk. Modifiers
+(18474, 4411, 11), -- M. Atk. Modifiers
+(18474, 4412, 11), -- P. Def. Modifiers
+(18474, 4413, 11), -- M. Def. Modifiers
+(18474, 4414, 2), -- Armor Type
+(18474, 4415, 3), -- Weapon Type
+(18474, 4416, 19), -- Races
 -- Hall Guard
-(18475, 4408, 1), -- HP Increase (1x)
-(18475, 4409, 1), -- MP Increase (1x)
-(18475, 4410, 11), -- Average P. Atk.
-(18475, 4411, 11), -- Average M. Atk.
-(18475, 4412, 11), -- Average P. Def.
-(18475, 4413, 11), -- Average M. Def.
-(18475, 4414, 2), -- Standard Type
-(18475, 4415, 3), -- One-handed Sword
-(18475, 4416, 7), -- Spirits
+(18475, 4408, 1), -- HP Modifiers
+(18475, 4409, 1), -- MP Modifiers
+(18475, 4410, 11), -- P. Atk. Modifiers
+(18475, 4411, 11), -- M. Atk. Modifiers
+(18475, 4412, 11), -- P. Def. Modifiers
+(18475, 4413, 11), -- M. Def. Modifiers
+(18475, 4414, 2), -- Armor Type
+(18475, 4415, 3), -- Weapon Type
+(18475, 4416, 7), -- Races
 (18475, 4463, 3), -- Surrender To Water
-(18475, 5317, 4), -- Mass Hydro Blast
-(18475, 5318, 4), -- Frost Wall
+(18475, 5317, 4), -- NPC(party) -Magic Range Long Range DD - Water
+(18475, 5318, 4), -- NPC(party) -Magic Range Close Range DD - Water
 (18475, 5463, 1), -- Water Attacks
 -- Hall Guard
-(18476, 4408, 1), -- HP Increase (1x)
-(18476, 4409, 1), -- MP Increase (1x)
-(18476, 4410, 11), -- Average P. Atk.
-(18476, 4411, 11), -- Average M. Atk.
-(18476, 4412, 11), -- Average P. Def.
-(18476, 4413, 11), -- Average M. Def.
-(18476, 4414, 3), -- Light Armor Type
-(18476, 4415, 3), -- One-handed Sword
-(18476, 4416, 3), -- Beasts
-(18476, 5283, 4), -- Whirlwind
+(18476, 4408, 1), -- HP Modifiers
+(18476, 4409, 1), -- MP Modifiers
+(18476, 4410, 11), -- P. Atk. Modifiers
+(18476, 4411, 11), -- M. Atk. Modifiers
+(18476, 4412, 11), -- P. Def. Modifiers
+(18476, 4413, 11), -- M. Def. Modifiers
+(18476, 4414, 3), -- Armor Type
+(18476, 4415, 3), -- Weapon Type
+(18476, 4416, 3), -- Races
+(18476, 5283, 4), -- NPC(party) - Physical Range Close Range Attack - Water
 (18476, 5304, 4), -- Paralysis
 (18476, 5463, 1), -- Water Attacks
 -- Coral Treasure Chest
-(18477, 4408, 15), -- HP Increase (7x)
-(18477, 4409, 1), -- MP Increase (1x)
-(18477, 4410, 11), -- Average P. Atk.
-(18477, 4411, 11), -- Average M. Atk.
-(18477, 4412, 11), -- Average P. Def.
-(18477, 4413, 11), -- Average M. Def.
-(18477, 4414, 2), -- Standard Type
-(18477, 4415, 3), -- One-handed Sword
-(18477, 4416, 2), -- Magic Creatures
+(18477, 4408, 15), -- HP Modifiers
+(18477, 4409, 1), -- MP Modifiers
+(18477, 4410, 11), -- P. Atk. Modifiers
+(18477, 4411, 11), -- M. Atk. Modifiers
+(18477, 4412, 11), -- P. Def. Modifiers
+(18477, 4413, 11), -- M. Def. Modifiers
+(18477, 4414, 2), -- Armor Type
+(18477, 4415, 3), -- Weapon Type
+(18477, 4416, 2), -- Races
 -- Herb Jar
-(18478, 4408, 8), -- HP Increase (1/4x)
-(18478, 4409, 1), -- MP Increase (1x)
-(18478, 4410, 11), -- Average P. Atk.
-(18478, 4411, 11), -- Average M. Atk.
-(18478, 4412, 11), -- Average P. Def.
-(18478, 4413, 11), -- Average M. Def.
-(18478, 4414, 2), -- Standard Type
-(18478, 4415, 3), -- One-handed Sword
-(18478, 4416, 2), -- Magic Creatures
+(18478, 4408, 8), -- HP Modifiers
+(18478, 4409, 1), -- MP Modifiers
+(18478, 4410, 11), -- P. Atk. Modifiers
+(18478, 4411, 11), -- M. Atk. Modifiers
+(18478, 4412, 11), -- P. Def. Modifiers
+(18478, 4413, 11), -- M. Def. Modifiers
+(18478, 4414, 2), -- Armor Type
+(18478, 4415, 3), -- Weapon Type
+(18478, 4416, 2), -- Races
 -- Inner Castle Sentry
-(18479, 4032, 10), -- Power Strike
-(18479, 4408, 12), -- HP Increase (4x)
-(18479, 4409, 1), -- MP Increase (1x)
-(18479, 4410, 11), -- Average P. Atk.
-(18479, 4411, 11), -- Average M. Atk.
-(18479, 4412, 11), -- Average P. Def.
-(18479, 4413, 11), -- Average M. Def.
-(18479, 4414, 3), -- Light Armor Type
-(18479, 4415, 3), -- One-handed Sword
-(18479, 4416, 6), -- Humanoids
+(18479, 4032, 10), -- NPC Strike
+(18479, 4408, 12), -- HP Modifiers
+(18479, 4409, 1), -- MP Modifiers
+(18479, 4410, 11), -- P. Atk. Modifiers
+(18479, 4411, 11), -- M. Atk. Modifiers
+(18479, 4412, 11), -- P. Def. Modifiers
+(18479, 4413, 11), -- M. Def. Modifiers
+(18479, 4414, 3), -- Armor Type
+(18479, 4415, 3), -- Weapon Type
+(18479, 4416, 6), -- Races
 (18479, 4581, 10), -- Hold
 (18479, 5467, 1), -- Dark Attacks
 -- Inner Castle Guard
-(18480, 4032, 10), -- Power Strike
-(18480, 4408, 14), -- HP Increase (6x)
-(18480, 4409, 1), -- MP Increase (1x)
-(18480, 4410, 11), -- Average P. Atk.
-(18480, 4411, 11), -- Average M. Atk.
-(18480, 4412, 11), -- Average P. Def.
-(18480, 4413, 11), -- Average M. Def.
-(18480, 4414, 2), -- Standard Type
-(18480, 4415, 3), -- One-handed Sword
-(18480, 4416, 9), -- Demons
-(18480, 4574, 10), -- Sonic Storm
+(18480, 4032, 10), -- NPC Strike
+(18480, 4408, 14), -- HP Modifiers
+(18480, 4409, 1), -- MP Modifiers
+(18480, 4410, 11), -- P. Atk. Modifiers
+(18480, 4411, 11), -- M. Atk. Modifiers
+(18480, 4412, 11), -- P. Def. Modifiers
+(18480, 4413, 11), -- M. Def. Modifiers
+(18480, 4414, 2), -- Armor Type
+(18480, 4415, 3), -- Weapon Type
+(18480, 4416, 9), -- Races
+(18480, 4574, 10), -- NPC Sonic Storm
 (18480, 5467, 1), -- Dark Attacks
 -- Inner Castle Seer
-(18481, 4408, 12), -- HP Increase (4x)
-(18481, 4409, 1), -- MP Increase (1x)
-(18481, 4410, 11), -- Average P. Atk.
-(18481, 4411, 11), -- Average M. Atk.
-(18481, 4412, 11), -- Average P. Def.
-(18481, 4413, 11), -- Average M. Def.
-(18481, 4414, 2), -- Standard Type
-(18481, 4415, 3), -- One-handed Sword
-(18481, 4416, 9), -- Demons
-(18481, 4622, 10), -- Drain Health
-(18481, 5311, 4), -- Aura Flare
+(18481, 4408, 12), -- HP Modifiers
+(18481, 4409, 1), -- MP Modifiers
+(18481, 4410, 11), -- P. Atk. Modifiers
+(18481, 4411, 11), -- M. Atk. Modifiers
+(18481, 4412, 11), -- P. Def. Modifiers
+(18481, 4413, 11), -- M. Def. Modifiers
+(18481, 4414, 2), -- Armor Type
+(18481, 4415, 3), -- Weapon Type
+(18481, 4416, 9), -- Races
+(18481, 4622, 10), -- NPC AE - 80% HP Drain - Magic
+(18481, 5311, 4), -- NPC(party) - Magic Close Range DD - less powerful
 (18481, 5467, 1), -- Dark Attacks
 -- Fafurion Kindred
 (18482, 4045, 1), -- Resist Full Magic Attack
-(18482, 4408, 10), -- HP Increase (2x)
-(18482, 4409, 1), -- MP Increase (1x)
-(18482, 4410, 13), -- Slightly Strong P. Atk.
-(18482, 4411, 13), -- Slightly Strong M. Atk.
-(18482, 4412, 11), -- Average P. Def.
-(18482, 4413, 11), -- Average M. Def.
-(18482, 4414, 2), -- Standard Type
-(18482, 4415, 1), -- Bare Hands
-(18482, 4416, 10), -- Dragons
+(18482, 4408, 10), -- HP Modifiers
+(18482, 4409, 1), -- MP Modifiers
+(18482, 4410, 13), -- P. Atk. Modifiers
+(18482, 4411, 13), -- M. Atk. Modifiers
+(18482, 4412, 11), -- P. Def. Modifiers
+(18482, 4413, 11), -- M. Def. Modifiers
+(18482, 4414, 2), -- Armor Type
+(18482, 4415, 1), -- Weapon Type
+(18482, 4416, 10), -- Races
 (18482, 4441, 5), -- Greater Resist Mental Derangement
 (18482, 5463, 1), -- Water Attacks
 -- Garden Guard
-(18483, 4032, 2), -- Power Strike
-(18483, 4408, 10), -- HP Increase (2x)
-(18483, 4409, 1), -- MP Increase (1x)
-(18483, 4410, 11), -- Average P. Atk.
-(18483, 4411, 11), -- Average M. Atk.
-(18483, 4412, 11), -- Average P. Def.
-(18483, 4413, 11), -- Average M. Def.
-(18483, 4414, 2), -- Standard Type
-(18483, 4415, 3), -- One-handed Sword
-(18483, 4416, 6), -- Humanoids
+(18483, 4032, 2), -- NPC Strike
+(18483, 4408, 10), -- HP Modifiers
+(18483, 4409, 1), -- MP Modifiers
+(18483, 4410, 11), -- P. Atk. Modifiers
+(18483, 4411, 11), -- M. Atk. Modifiers
+(18483, 4412, 11), -- P. Def. Modifiers
+(18483, 4413, 11), -- M. Def. Modifiers
+(18483, 4414, 2), -- Armor Type
+(18483, 4415, 3), -- Weapon Type
+(18483, 4416, 6), -- Races
 -- Naia Failan
-(18484, 4408, 1), -- HP Increase (1x)
-(18484, 4409, 1), -- MP Increase (1x)
-(18484, 4410, 11), -- Average P. Atk.
-(18484, 4411, 11), -- Average M. Atk.
-(18484, 4412, 11), -- Average P. Def.
-(18484, 4413, 11), -- Average M. Def.
-(18484, 4414, 2), -- Standard Type
-(18484, 4415, 3), -- One-handed Sword
-(18484, 4416, 19), -- Others
+(18484, 4408, 1), -- HP Modifiers
+(18484, 4409, 1), -- MP Modifiers
+(18484, 4410, 11), -- P. Atk. Modifiers
+(18484, 4411, 11), -- M. Atk. Modifiers
+(18484, 4412, 11), -- P. Def. Modifiers
+(18484, 4413, 11), -- M. Def. Modifiers
+(18484, 4414, 2), -- Armor Type
+(18484, 4415, 3), -- Weapon Type
+(18484, 4416, 19), -- Races
 -- 
-(18485, 4408, 1), -- HP Increase (1x)
-(18485, 4409, 1), -- MP Increase (1x)
-(18485, 4410, 11), -- Average P. Atk.
-(18485, 4411, 11), -- Average M. Atk.
-(18485, 4412, 11), -- Average P. Def.
-(18485, 4413, 11), -- Average M. Def.
-(18485, 4414, 2), -- Standard Type
-(18485, 4415, 3), -- One-handed Sword
-(18485, 4416, 2), -- Magic Creatures
+(18485, 4408, 1), -- HP Modifiers
+(18485, 4409, 1), -- MP Modifiers
+(18485, 4410, 11), -- P. Atk. Modifiers
+(18485, 4411, 11), -- M. Atk. Modifiers
+(18485, 4412, 11), -- P. Def. Modifiers
+(18485, 4413, 11), -- M. Def. Modifiers
+(18485, 4414, 2), -- Armor Type
+(18485, 4415, 3), -- Weapon Type
+(18485, 4416, 2), -- Races
 -- 
-(18486, 4408, 1), -- HP Increase (1x)
-(18486, 4409, 1), -- MP Increase (1x)
-(18486, 4410, 11), -- Average P. Atk.
-(18486, 4411, 11), -- Average M. Atk.
-(18486, 4412, 11), -- Average P. Def.
-(18486, 4413, 11), -- Average M. Def.
-(18486, 4414, 2), -- Standard Type
-(18486, 4415, 3), -- One-handed Sword
-(18486, 4416, 2), -- Magic Creatures
+(18486, 4408, 1), -- HP Modifiers
+(18486, 4409, 1), -- MP Modifiers
+(18486, 4410, 11), -- P. Atk. Modifiers
+(18486, 4411, 11), -- M. Atk. Modifiers
+(18486, 4412, 11), -- P. Def. Modifiers
+(18486, 4413, 11), -- M. Def. Modifiers
+(18486, 4414, 2), -- Armor Type
+(18486, 4415, 3), -- Weapon Type
+(18486, 4416, 2), -- Races
 -- 
-(18487, 4408, 1), -- HP Increase (1x)
-(18487, 4409, 1), -- MP Increase (1x)
-(18487, 4410, 11), -- Average P. Atk.
-(18487, 4411, 11), -- Average M. Atk.
-(18487, 4412, 11), -- Average P. Def.
-(18487, 4413, 11), -- Average M. Def.
-(18487, 4414, 2), -- Standard Type
-(18487, 4415, 3), -- One-handed Sword
-(18487, 4416, 2), -- Magic Creatures
+(18487, 4408, 1), -- HP Modifiers
+(18487, 4409, 1), -- MP Modifiers
+(18487, 4410, 11), -- P. Atk. Modifiers
+(18487, 4411, 11), -- M. Atk. Modifiers
+(18487, 4412, 11), -- P. Def. Modifiers
+(18487, 4413, 11), -- M. Def. Modifiers
+(18487, 4414, 2), -- Armor Type
+(18487, 4415, 3), -- Weapon Type
+(18487, 4416, 2), -- Races
 -- 
-(18488, 4408, 1), -- HP Increase (1x)
-(18488, 4409, 1), -- MP Increase (1x)
-(18488, 4410, 11), -- Average P. Atk.
-(18488, 4411, 11), -- Average M. Atk.
-(18488, 4412, 11), -- Average P. Def.
-(18488, 4413, 11), -- Average M. Def.
-(18488, 4414, 2), -- Standard Type
-(18488, 4415, 3), -- One-handed Sword
-(18488, 4416, 2), -- Magic Creatures
+(18488, 4408, 1), -- HP Modifiers
+(18488, 4409, 1), -- MP Modifiers
+(18488, 4410, 11), -- P. Atk. Modifiers
+(18488, 4411, 11), -- M. Atk. Modifiers
+(18488, 4412, 11), -- P. Def. Modifiers
+(18488, 4413, 11), -- M. Def. Modifiers
+(18488, 4414, 2), -- Armor Type
+(18488, 4415, 3), -- Weapon Type
+(18488, 4416, 2), -- Races
 -- 
-(18489, 4408, 1), -- HP Increase (1x)
-(18489, 4409, 1), -- MP Increase (1x)
-(18489, 4410, 11), -- Average P. Atk.
-(18489, 4411, 11), -- Average M. Atk.
-(18489, 4412, 11), -- Average P. Def.
-(18489, 4413, 11), -- Average M. Def.
-(18489, 4414, 2), -- Standard Type
-(18489, 4415, 3), -- One-handed Sword
-(18489, 4416, 2), -- Magic Creatures
+(18489, 4408, 1), -- HP Modifiers
+(18489, 4409, 1), -- MP Modifiers
+(18489, 4410, 11), -- P. Atk. Modifiers
+(18489, 4411, 11), -- M. Atk. Modifiers
+(18489, 4412, 11), -- P. Def. Modifiers
+(18489, 4413, 11), -- M. Def. Modifiers
+(18489, 4414, 2), -- Armor Type
+(18489, 4415, 3), -- Weapon Type
+(18489, 4416, 2), -- Races
 -- Beleth's Slave
-(18490, 4032, 11), -- Power Strike
-(18490, 4408, 1), -- HP Increase (1x)
-(18490, 4409, 1), -- MP Increase (1x)
-(18490, 4410, 3), -- Extremely Weak P. Atk.
-(18490, 4411, 11), -- Average M. Atk.
-(18490, 4412, 11), -- Average P. Def.
-(18490, 4413, 11), -- Average M. Def.
-(18490, 4414, 3), -- Light Armor Type
-(18490, 4415, 1), -- Bare Hands
-(18490, 4416, 9), -- Demons
-(18490, 5328, 5), -- Unholy Strike
-(18490, 5372, 4), -- Aura Flare
+(18490, 4032, 11), -- NPC Strike
+(18490, 4408, 1), -- HP Modifiers
+(18490, 4409, 1), -- MP Modifiers
+(18490, 4410, 3), -- P. Atk. Modifiers
+(18490, 4411, 11), -- M. Atk. Modifiers
+(18490, 4412, 11), -- P. Def. Modifiers
+(18490, 4413, 11), -- M. Def. Modifiers
+(18490, 4414, 3), -- Armor Type
+(18490, 4415, 1), -- Weapon Type
+(18490, 4416, 9), -- Races
+(18490, 5328, 5), -- NPC(party) -Magic Single Long Range DD - Dark
+(18490, 5372, 4), -- NPC(party) - Magic Close Range DD - less powerful
 (18490, 5467, 1), -- Dark Attacks
 (18490, 5528, 1), -- Self-Destruct
 (18490, 5597, 1), -- Invalid Skill cancel
 -- Lock
-(18491, 4408, 1), -- HP Increase (1x)
-(18491, 4409, 1), -- MP Increase (1x)
-(18491, 4410, 19), -- Extremely Strong P. Atk.
-(18491, 4411, 11), -- Average M. Atk.
-(18491, 4412, 11), -- Average P. Def.
-(18491, 4413, 11), -- Average M. Def.
-(18491, 4414, 2), -- Standard Type
-(18491, 4415, 3), -- One-handed Sword
-(18491, 4416, 2), -- Magic Creatures
+(18491, 4408, 1), -- HP Modifiers
+(18491, 4409, 1), -- MP Modifiers
+(18491, 4410, 19), -- P. Atk. Modifiers
+(18491, 4411, 11), -- M. Atk. Modifiers
+(18491, 4412, 11), -- P. Def. Modifiers
+(18491, 4413, 11), -- M. Def. Modifiers
+(18491, 4414, 2), -- Armor Type
+(18491, 4415, 3), -- Weapon Type
+(18491, 4416, 2), -- Races
 -- Controller
-(18492, 4408, 1), -- HP Increase (1x)
-(18492, 4409, 1), -- MP Increase (1x)
-(18492, 4410, 11), -- Average P. Atk.
-(18492, 4411, 11), -- Average M. Atk.
-(18492, 4412, 11), -- Average P. Def.
-(18492, 4413, 11), -- Average M. Def.
-(18492, 4414, 2), -- Standard Type
-(18492, 4415, 3), -- One-handed Sword
-(18492, 4416, 2), -- Magic Creatures
+(18492, 4408, 1), -- HP Modifiers
+(18492, 4409, 1), -- MP Modifiers
+(18492, 4410, 11), -- P. Atk. Modifiers
+(18492, 4411, 11), -- M. Atk. Modifiers
+(18492, 4412, 11), -- P. Def. Modifiers
+(18492, 4413, 11), -- M. Def. Modifiers
+(18492, 4414, 2), -- Armor Type
+(18492, 4415, 3), -- Weapon Type
+(18492, 4416, 2), -- Races
 (18492, 5527, 1), -- Overflow
 -- Ward
-(18493, 4389, 5), -- Resist Mental Attacks
-(18493, 4408, 1), -- HP Increase (1x)
-(18493, 4409, 1), -- MP Increase (1x)
-(18493, 4410, 11), -- Average P. Atk.
-(18493, 4411, 13), -- Slightly Strong M. Atk.
-(18493, 4412, 11), -- Average P. Def.
-(18493, 4413, 11), -- Average M. Def.
-(18493, 4414, 2), -- Standard Type
-(18493, 4415, 5), -- Blunt Weapons
-(18493, 4416, 2), -- Magic Creatures
-(18493, 4642, 3), -- Fast Spell Casting
-(18493, 5372, 5), -- Aura Flare
-(18493, 5383, 5), -- Rock Strike
+(18493, 4389, 5), -- Resist Mental Derangement
+(18493, 4408, 1), -- HP Modifiers
+(18493, 4409, 1), -- MP Modifiers
+(18493, 4410, 11), -- P. Atk. Modifiers
+(18493, 4411, 13), -- M. Atk. Modifiers
+(18493, 4412, 11), -- P. Def. Modifiers
+(18493, 4413, 11), -- M. Def. Modifiers
+(18493, 4414, 2), -- Armor Type
+(18493, 4415, 5), -- Weapon Type
+(18493, 4416, 2), -- Races
+(18493, 4642, 3), -- NPC Fast Spell Casting
+(18493, 5372, 5), -- NPC(party) - Magic Close Range DD - less powerful
+(18493, 5383, 5), -- NPC(party) -Magic Single Long Range DD - Earth
 -- Ingenious Contraption
 (18494, 4045, 1), -- Resist Full Magic Attack
-(18494, 4408, 1), -- HP Increase (1x)
-(18494, 4409, 1), -- MP Increase (1x)
-(18494, 4410, 11), -- Average P. Atk.
-(18494, 4411, 11), -- Average M. Atk.
-(18494, 4412, 11), -- Average P. Def.
-(18494, 4413, 11), -- Average M. Def.
-(18494, 4414, 2), -- Standard Type
-(18494, 4415, 3), -- One-handed Sword
-(18494, 4416, 2), -- Magic Creatures
+(18494, 4408, 1), -- HP Modifiers
+(18494, 4409, 1), -- MP Modifiers
+(18494, 4410, 11), -- P. Atk. Modifiers
+(18494, 4411, 11), -- M. Atk. Modifiers
+(18494, 4412, 11), -- P. Def. Modifiers
+(18494, 4413, 11), -- M. Def. Modifiers
+(18494, 4414, 2), -- Armor Type
+(18494, 4415, 3), -- Weapon Type
+(18494, 4416, 2), -- Races
 -- Ingenious Contraption
 (18495, 4045, 1), -- Resist Full Magic Attack
-(18495, 4408, 1), -- HP Increase (1x)
-(18495, 4409, 1), -- MP Increase (1x)
-(18495, 4410, 11), -- Average P. Atk.
-(18495, 4411, 11), -- Average M. Atk.
-(18495, 4412, 11), -- Average P. Def.
-(18495, 4413, 11), -- Average M. Def.
-(18495, 4414, 2), -- Standard Type
-(18495, 4415, 3), -- One-handed Sword
-(18495, 4416, 2), -- Magic Creatures
+(18495, 4408, 1), -- HP Modifiers
+(18495, 4409, 1), -- MP Modifiers
+(18495, 4410, 11), -- P. Atk. Modifiers
+(18495, 4411, 11), -- M. Atk. Modifiers
+(18495, 4412, 11), -- P. Def. Modifiers
+(18495, 4413, 11), -- M. Def. Modifiers
+(18495, 4414, 2), -- Armor Type
+(18495, 4415, 3), -- Weapon Type
+(18495, 4416, 2), -- Races
 -- Ingenious Contraption
 (18496, 4045, 1), -- Resist Full Magic Attack
-(18496, 4408, 1), -- HP Increase (1x)
-(18496, 4409, 1), -- MP Increase (1x)
-(18496, 4410, 11), -- Average P. Atk.
-(18496, 4411, 11), -- Average M. Atk.
-(18496, 4412, 11), -- Average P. Def.
-(18496, 4413, 11), -- Average M. Def.
-(18496, 4414, 2), -- Standard Type
-(18496, 4415, 3), -- One-handed Sword
-(18496, 4416, 2), -- Magic Creatures
+(18496, 4408, 1), -- HP Modifiers
+(18496, 4409, 1), -- MP Modifiers
+(18496, 4410, 11), -- P. Atk. Modifiers
+(18496, 4411, 11), -- M. Atk. Modifiers
+(18496, 4412, 11), -- P. Def. Modifiers
+(18496, 4413, 11), -- M. Def. Modifiers
+(18496, 4414, 2), -- Armor Type
+(18496, 4415, 3), -- Weapon Type
+(18496, 4416, 2), -- Races
 -- Ingenious Contraption
 (18497, 4045, 1), -- Resist Full Magic Attack
-(18497, 4408, 1), -- HP Increase (1x)
-(18497, 4409, 1), -- MP Increase (1x)
-(18497, 4410, 11), -- Average P. Atk.
-(18497, 4411, 11), -- Average M. Atk.
-(18497, 4412, 11), -- Average P. Def.
-(18497, 4413, 11), -- Average M. Def.
-(18497, 4414, 2), -- Standard Type
-(18497, 4415, 3), -- One-handed Sword
-(18497, 4416, 2), -- Magic Creatures
+(18497, 4408, 1), -- HP Modifiers
+(18497, 4409, 1), -- MP Modifiers
+(18497, 4410, 11), -- P. Atk. Modifiers
+(18497, 4411, 11), -- M. Atk. Modifiers
+(18497, 4412, 11), -- P. Def. Modifiers
+(18497, 4413, 11), -- M. Def. Modifiers
+(18497, 4414, 2), -- Armor Type
+(18497, 4415, 3), -- Weapon Type
+(18497, 4416, 2), -- Races
 -- Ingenious Contraption
 (18498, 4045, 1), -- Resist Full Magic Attack
-(18498, 4408, 1), -- HP Increase (1x)
-(18498, 4409, 1), -- MP Increase (1x)
-(18498, 4410, 11), -- Average P. Atk.
-(18498, 4411, 11), -- Average M. Atk.
-(18498, 4412, 11), -- Average P. Def.
-(18498, 4413, 11), -- Average M. Def.
-(18498, 4414, 2), -- Standard Type
-(18498, 4415, 3), -- One-handed Sword
-(18498, 4416, 2), -- Magic Creatures
+(18498, 4408, 1), -- HP Modifiers
+(18498, 4409, 1), -- MP Modifiers
+(18498, 4410, 11), -- P. Atk. Modifiers
+(18498, 4411, 11), -- M. Atk. Modifiers
+(18498, 4412, 11), -- P. Def. Modifiers
+(18498, 4413, 11), -- M. Def. Modifiers
+(18498, 4414, 2), -- Armor Type
+(18498, 4415, 3), -- Weapon Type
+(18498, 4416, 2), -- Races
 -- Ingenious Contraption
 (18499, 4045, 1), -- Resist Full Magic Attack
-(18499, 4408, 1), -- HP Increase (1x)
-(18499, 4409, 1), -- MP Increase (1x)
-(18499, 4410, 11), -- Average P. Atk.
-(18499, 4411, 11), -- Average M. Atk.
-(18499, 4412, 11), -- Average P. Def.
-(18499, 4413, 11), -- Average M. Def.
-(18499, 4414, 2), -- Standard Type
-(18499, 4415, 3), -- One-handed Sword
-(18499, 4416, 2), -- Magic Creatures
+(18499, 4408, 1), -- HP Modifiers
+(18499, 4409, 1), -- MP Modifiers
+(18499, 4410, 11), -- P. Atk. Modifiers
+(18499, 4411, 11), -- M. Atk. Modifiers
+(18499, 4412, 11), -- P. Def. Modifiers
+(18499, 4413, 11), -- M. Def. Modifiers
+(18499, 4414, 2), -- Armor Type
+(18499, 4415, 3), -- Weapon Type
+(18499, 4416, 2), -- Races
 -- Ingenious Contraption
 (18500, 4045, 1), -- Resist Full Magic Attack
-(18500, 4408, 1), -- HP Increase (1x)
-(18500, 4409, 1), -- MP Increase (1x)
-(18500, 4410, 11), -- Average P. Atk.
-(18500, 4411, 11), -- Average M. Atk.
-(18500, 4412, 11), -- Average P. Def.
-(18500, 4413, 11), -- Average M. Def.
-(18500, 4414, 2), -- Standard Type
-(18500, 4415, 3), -- One-handed Sword
-(18500, 4416, 2), -- Magic Creatures
+(18500, 4408, 1), -- HP Modifiers
+(18500, 4409, 1), -- MP Modifiers
+(18500, 4410, 11), -- P. Atk. Modifiers
+(18500, 4411, 11), -- M. Atk. Modifiers
+(18500, 4412, 11), -- P. Def. Modifiers
+(18500, 4413, 11), -- M. Def. Modifiers
+(18500, 4414, 2), -- Armor Type
+(18500, 4415, 3), -- Weapon Type
+(18500, 4416, 2), -- Races
 -- Ingenious Contraption
 (18501, 4045, 1), -- Resist Full Magic Attack
-(18501, 4408, 1), -- HP Increase (1x)
-(18501, 4409, 1), -- MP Increase (1x)
-(18501, 4410, 11), -- Average P. Atk.
-(18501, 4411, 11), -- Average M. Atk.
-(18501, 4412, 11), -- Average P. Def.
-(18501, 4413, 11), -- Average M. Def.
-(18501, 4414, 2), -- Standard Type
-(18501, 4415, 3), -- One-handed Sword
-(18501, 4416, 2), -- Magic Creatures
+(18501, 4408, 1), -- HP Modifiers
+(18501, 4409, 1), -- MP Modifiers
+(18501, 4410, 11), -- P. Atk. Modifiers
+(18501, 4411, 11), -- M. Atk. Modifiers
+(18501, 4412, 11), -- P. Def. Modifiers
+(18501, 4413, 11), -- M. Def. Modifiers
+(18501, 4414, 2), -- Armor Type
+(18501, 4415, 3), -- Weapon Type
+(18501, 4416, 2), -- Races
 -- Ingenious Contraption
 (18502, 4045, 1), -- Resist Full Magic Attack
-(18502, 4408, 1), -- HP Increase (1x)
-(18502, 4409, 1), -- MP Increase (1x)
-(18502, 4410, 11), -- Average P. Atk.
-(18502, 4411, 11), -- Average M. Atk.
-(18502, 4412, 11), -- Average P. Def.
-(18502, 4413, 11), -- Average M. Def.
-(18502, 4414, 2), -- Standard Type
-(18502, 4415, 3), -- One-handed Sword
-(18502, 4416, 2), -- Magic Creatures
+(18502, 4408, 1), -- HP Modifiers
+(18502, 4409, 1), -- MP Modifiers
+(18502, 4410, 11), -- P. Atk. Modifiers
+(18502, 4411, 11), -- M. Atk. Modifiers
+(18502, 4412, 11), -- P. Def. Modifiers
+(18502, 4413, 11), -- M. Def. Modifiers
+(18502, 4414, 2), -- Armor Type
+(18502, 4415, 3), -- Weapon Type
+(18502, 4416, 2), -- Races
 -- Ingenious Contraption
 (18503, 4045, 1), -- Resist Full Magic Attack
-(18503, 4408, 1), -- HP Increase (1x)
-(18503, 4409, 1), -- MP Increase (1x)
-(18503, 4410, 11), -- Average P. Atk.
-(18503, 4411, 11), -- Average M. Atk.
-(18503, 4412, 11), -- Average P. Def.
-(18503, 4413, 11), -- Average M. Def.
-(18503, 4414, 2), -- Standard Type
-(18503, 4415, 3), -- One-handed Sword
-(18503, 4416, 2), -- Magic Creatures
+(18503, 4408, 1), -- HP Modifiers
+(18503, 4409, 1), -- MP Modifiers
+(18503, 4410, 11), -- P. Atk. Modifiers
+(18503, 4411, 11), -- M. Atk. Modifiers
+(18503, 4412, 11), -- P. Def. Modifiers
+(18503, 4413, 11), -- M. Def. Modifiers
+(18503, 4414, 2), -- Armor Type
+(18503, 4415, 3), -- Weapon Type
+(18503, 4416, 2), -- Races
 -- Ingenious Contraption
 (18504, 4045, 1), -- Resist Full Magic Attack
-(18504, 4408, 1), -- HP Increase (1x)
-(18504, 4409, 1), -- MP Increase (1x)
-(18504, 4410, 11), -- Average P. Atk.
-(18504, 4411, 11), -- Average M. Atk.
-(18504, 4412, 11), -- Average P. Def.
-(18504, 4413, 11), -- Average M. Def.
-(18504, 4414, 2), -- Standard Type
-(18504, 4415, 3), -- One-handed Sword
-(18504, 4416, 2), -- Magic Creatures
+(18504, 4408, 1), -- HP Modifiers
+(18504, 4409, 1), -- MP Modifiers
+(18504, 4410, 11), -- P. Atk. Modifiers
+(18504, 4411, 11), -- M. Atk. Modifiers
+(18504, 4412, 11), -- P. Def. Modifiers
+(18504, 4413, 11), -- M. Def. Modifiers
+(18504, 4414, 2), -- Armor Type
+(18504, 4415, 3), -- Weapon Type
+(18504, 4416, 2), -- Races
 -- Ingenious Contraption
 (18505, 4045, 1), -- Resist Full Magic Attack
-(18505, 4408, 1), -- HP Increase (1x)
-(18505, 4409, 1), -- MP Increase (1x)
-(18505, 4410, 11), -- Average P. Atk.
-(18505, 4411, 11), -- Average M. Atk.
-(18505, 4412, 11), -- Average P. Def.
-(18505, 4413, 11), -- Average M. Def.
-(18505, 4414, 2), -- Standard Type
-(18505, 4415, 3), -- One-handed Sword
-(18505, 4416, 2), -- Magic Creatures
+(18505, 4408, 1), -- HP Modifiers
+(18505, 4409, 1), -- MP Modifiers
+(18505, 4410, 11), -- P. Atk. Modifiers
+(18505, 4411, 11), -- M. Atk. Modifiers
+(18505, 4412, 11), -- P. Def. Modifiers
+(18505, 4413, 11), -- M. Def. Modifiers
+(18505, 4414, 2), -- Armor Type
+(18505, 4415, 3), -- Weapon Type
+(18505, 4416, 2), -- Races
 -- Soul Crystal Pillar
-(18506, 4408, 1), -- HP Increase (1x)
-(18506, 4409, 1), -- MP Increase (1x)
-(18506, 4410, 11), -- Average P. Atk.
-(18506, 4411, 11), -- Average M. Atk.
-(18506, 4412, 11), -- Average P. Def.
-(18506, 4413, 11), -- Average M. Def.
-(18506, 4414, 2), -- Standard Type
-(18506, 4415, 3), -- One-handed Sword
-(18506, 4416, 2), -- Magic Creatures
+(18506, 4408, 1), -- HP Modifiers
+(18506, 4409, 1), -- MP Modifiers
+(18506, 4410, 11), -- P. Atk. Modifiers
+(18506, 4411, 11), -- M. Atk. Modifiers
+(18506, 4412, 11), -- P. Def. Modifiers
+(18506, 4413, 11), -- M. Def. Modifiers
+(18506, 4414, 2), -- Armor Type
+(18506, 4415, 3), -- Weapon Type
+(18506, 4416, 2), -- Races
 (18506, 5417, 1), -- Invincible
 -- 
-(18507, 4408, 1), -- HP Increase (1x)
-(18507, 4409, 1), -- MP Increase (1x)
-(18507, 4410, 11), -- Average P. Atk.
-(18507, 4411, 11), -- Average M. Atk.
-(18507, 4412, 11), -- Average P. Def.
-(18507, 4413, 11), -- Average M. Def.
-(18507, 4414, 2), -- Standard Type
-(18507, 4415, 3), -- One-handed Sword
-(18507, 4416, 2), -- Magic Creatures
+(18507, 4408, 1), -- HP Modifiers
+(18507, 4409, 1), -- MP Modifiers
+(18507, 4410, 11), -- P. Atk. Modifiers
+(18507, 4411, 11), -- M. Atk. Modifiers
+(18507, 4412, 11), -- P. Def. Modifiers
+(18507, 4413, 11), -- M. Def. Modifiers
+(18507, 4414, 2), -- Armor Type
+(18507, 4415, 3), -- Weapon Type
+(18507, 4416, 2), -- Races
 (18507, 5424, 9), -- Bleed
 -- 
-(18508, 4408, 1), -- HP Increase (1x)
-(18508, 4409, 1), -- MP Increase (1x)
-(18508, 4410, 11), -- Average P. Atk.
-(18508, 4411, 11), -- Average M. Atk.
-(18508, 4412, 11), -- Average P. Def.
-(18508, 4413, 11), -- Average M. Def.
-(18508, 4414, 2), -- Standard Type
-(18508, 4415, 3), -- One-handed Sword
-(18508, 4416, 2), -- Magic Creatures
+(18508, 4408, 1), -- HP Modifiers
+(18508, 4409, 1), -- MP Modifiers
+(18508, 4410, 11), -- P. Atk. Modifiers
+(18508, 4411, 11), -- M. Atk. Modifiers
+(18508, 4412, 11), -- P. Def. Modifiers
+(18508, 4413, 11), -- M. Def. Modifiers
+(18508, 4414, 2), -- Armor Type
+(18508, 4415, 3), -- Weapon Type
+(18508, 4416, 2), -- Races
 (18508, 5424, 9), -- Bleed
 -- 
-(18509, 4408, 1), -- HP Increase (1x)
-(18509, 4409, 1), -- MP Increase (1x)
-(18509, 4410, 11), -- Average P. Atk.
-(18509, 4411, 11), -- Average M. Atk.
-(18509, 4412, 11), -- Average P. Def.
-(18509, 4413, 11), -- Average M. Def.
-(18509, 4414, 2), -- Standard Type
-(18509, 4415, 3), -- One-handed Sword
-(18509, 4416, 2), -- Magic Creatures
+(18509, 4408, 1), -- HP Modifiers
+(18509, 4409, 1), -- MP Modifiers
+(18509, 4410, 11), -- P. Atk. Modifiers
+(18509, 4411, 11), -- M. Atk. Modifiers
+(18509, 4412, 11), -- P. Def. Modifiers
+(18509, 4413, 11), -- M. Def. Modifiers
+(18509, 4414, 2), -- Armor Type
+(18509, 4415, 3), -- Weapon Type
+(18509, 4416, 2), -- Races
 (18509, 5424, 9), -- Bleed
 -- 
-(18510, 4408, 1), -- HP Increase (1x)
-(18510, 4409, 1), -- MP Increase (1x)
-(18510, 4410, 11), -- Average P. Atk.
-(18510, 4411, 11), -- Average M. Atk.
-(18510, 4412, 11), -- Average P. Def.
-(18510, 4413, 11), -- Average M. Def.
-(18510, 4414, 2), -- Standard Type
-(18510, 4415, 3), -- One-handed Sword
-(18510, 4416, 2), -- Magic Creatures
+(18510, 4408, 1), -- HP Modifiers
+(18510, 4409, 1), -- MP Modifiers
+(18510, 4410, 11), -- P. Atk. Modifiers
+(18510, 4411, 11), -- M. Atk. Modifiers
+(18510, 4412, 11), -- P. Def. Modifiers
+(18510, 4413, 11), -- M. Def. Modifiers
+(18510, 4414, 2), -- Armor Type
+(18510, 4415, 3), -- Weapon Type
+(18510, 4416, 2), -- Races
 (18510, 5424, 9), -- Bleed
 -- 
-(18511, 4408, 1), -- HP Increase (1x)
-(18511, 4409, 1), -- MP Increase (1x)
-(18511, 4410, 11), -- Average P. Atk.
-(18511, 4411, 11), -- Average M. Atk.
-(18511, 4412, 11), -- Average P. Def.
-(18511, 4413, 11), -- Average M. Def.
-(18511, 4414, 2), -- Standard Type
-(18511, 4415, 3), -- One-handed Sword
-(18511, 4416, 2), -- Magic Creatures
+(18511, 4408, 1), -- HP Modifiers
+(18511, 4409, 1), -- MP Modifiers
+(18511, 4410, 11), -- P. Atk. Modifiers
+(18511, 4411, 11), -- M. Atk. Modifiers
+(18511, 4412, 11), -- P. Def. Modifiers
+(18511, 4413, 11), -- M. Def. Modifiers
+(18511, 4414, 2), -- Armor Type
+(18511, 4415, 3), -- Weapon Type
+(18511, 4416, 2), -- Races
 (18511, 5424, 9), -- Bleed
 -- 
-(18512, 4408, 1), -- HP Increase (1x)
-(18512, 4409, 1), -- MP Increase (1x)
-(18512, 4410, 11), -- Average P. Atk.
-(18512, 4411, 11), -- Average M. Atk.
-(18512, 4412, 11), -- Average P. Def.
-(18512, 4413, 11), -- Average M. Def.
-(18512, 4414, 2), -- Standard Type
-(18512, 4415, 3), -- One-handed Sword
-(18512, 4416, 2), -- Magic Creatures
+(18512, 4408, 1), -- HP Modifiers
+(18512, 4409, 1), -- MP Modifiers
+(18512, 4410, 11), -- P. Atk. Modifiers
+(18512, 4411, 11), -- M. Atk. Modifiers
+(18512, 4412, 11), -- P. Def. Modifiers
+(18512, 4413, 11), -- M. Def. Modifiers
+(18512, 4414, 2), -- Armor Type
+(18512, 4415, 3), -- Weapon Type
+(18512, 4416, 2), -- Races
 (18512, 5424, 9), -- Bleed
 -- 
-(18513, 4408, 1), -- HP Increase (1x)
-(18513, 4409, 1), -- MP Increase (1x)
-(18513, 4410, 11), -- Average P. Atk.
-(18513, 4411, 11), -- Average M. Atk.
-(18513, 4412, 11), -- Average P. Def.
-(18513, 4413, 11), -- Average M. Def.
-(18513, 4414, 2), -- Standard Type
-(18513, 4415, 3), -- One-handed Sword
-(18513, 4416, 2), -- Magic Creatures
+(18513, 4408, 1), -- HP Modifiers
+(18513, 4409, 1), -- MP Modifiers
+(18513, 4410, 11), -- P. Atk. Modifiers
+(18513, 4411, 11), -- M. Atk. Modifiers
+(18513, 4412, 11), -- P. Def. Modifiers
+(18513, 4413, 11), -- M. Def. Modifiers
+(18513, 4414, 2), -- Armor Type
+(18513, 4415, 3), -- Weapon Type
+(18513, 4416, 2), -- Races
 (18513, 5424, 9), -- Bleed
 -- 
-(18514, 4408, 1), -- HP Increase (1x)
-(18514, 4409, 1), -- MP Increase (1x)
-(18514, 4410, 11), -- Average P. Atk.
-(18514, 4411, 11), -- Average M. Atk.
-(18514, 4412, 11), -- Average P. Def.
-(18514, 4413, 11), -- Average M. Def.
-(18514, 4414, 2), -- Standard Type
-(18514, 4415, 3), -- One-handed Sword
-(18514, 4416, 2), -- Magic Creatures
+(18514, 4408, 1), -- HP Modifiers
+(18514, 4409, 1), -- MP Modifiers
+(18514, 4410, 11), -- P. Atk. Modifiers
+(18514, 4411, 11), -- M. Atk. Modifiers
+(18514, 4412, 11), -- P. Def. Modifiers
+(18514, 4413, 11), -- M. Def. Modifiers
+(18514, 4414, 2), -- Armor Type
+(18514, 4415, 3), -- Weapon Type
+(18514, 4416, 2), -- Races
 (18514, 5424, 9), -- Bleed
 -- 
-(18515, 4408, 1), -- HP Increase (1x)
-(18515, 4409, 1), -- MP Increase (1x)
-(18515, 4410, 11), -- Average P. Atk.
-(18515, 4411, 11), -- Average M. Atk.
-(18515, 4412, 11), -- Average P. Def.
-(18515, 4413, 11), -- Average M. Def.
-(18515, 4414, 2), -- Standard Type
-(18515, 4415, 3), -- One-handed Sword
-(18515, 4416, 2), -- Magic Creatures
+(18515, 4408, 1), -- HP Modifiers
+(18515, 4409, 1), -- MP Modifiers
+(18515, 4410, 11), -- P. Atk. Modifiers
+(18515, 4411, 11), -- M. Atk. Modifiers
+(18515, 4412, 11), -- P. Def. Modifiers
+(18515, 4413, 11), -- M. Def. Modifiers
+(18515, 4414, 2), -- Armor Type
+(18515, 4415, 3), -- Weapon Type
+(18515, 4416, 2), -- Races
 (18515, 5424, 9), -- Bleed
 -- 
-(18516, 4408, 1), -- HP Increase (1x)
-(18516, 4409, 1), -- MP Increase (1x)
-(18516, 4410, 11), -- Average P. Atk.
-(18516, 4411, 11), -- Average M. Atk.
-(18516, 4412, 11), -- Average P. Def.
-(18516, 4413, 11), -- Average M. Def.
-(18516, 4414, 2), -- Standard Type
-(18516, 4415, 3), -- One-handed Sword
-(18516, 4416, 2), -- Magic Creatures
+(18516, 4408, 1), -- HP Modifiers
+(18516, 4409, 1), -- MP Modifiers
+(18516, 4410, 11), -- P. Atk. Modifiers
+(18516, 4411, 11), -- M. Atk. Modifiers
+(18516, 4412, 11), -- P. Def. Modifiers
+(18516, 4413, 11), -- M. Def. Modifiers
+(18516, 4414, 2), -- Armor Type
+(18516, 4415, 3), -- Weapon Type
+(18516, 4416, 2), -- Races
 (18516, 5423, 9), -- Poison
 -- 
-(18517, 4408, 1), -- HP Increase (1x)
-(18517, 4409, 1), -- MP Increase (1x)
-(18517, 4410, 11), -- Average P. Atk.
-(18517, 4411, 11), -- Average M. Atk.
-(18517, 4412, 11), -- Average P. Def.
-(18517, 4413, 11), -- Average M. Def.
-(18517, 4414, 2), -- Standard Type
-(18517, 4415, 3), -- One-handed Sword
-(18517, 4416, 2), -- Magic Creatures
+(18517, 4408, 1), -- HP Modifiers
+(18517, 4409, 1), -- MP Modifiers
+(18517, 4410, 11), -- P. Atk. Modifiers
+(18517, 4411, 11), -- M. Atk. Modifiers
+(18517, 4412, 11), -- P. Def. Modifiers
+(18517, 4413, 11), -- M. Def. Modifiers
+(18517, 4414, 2), -- Armor Type
+(18517, 4415, 3), -- Weapon Type
+(18517, 4416, 2), -- Races
 (18517, 5423, 9), -- Poison
 -- 
-(18518, 4408, 1), -- HP Increase (1x)
-(18518, 4409, 1), -- MP Increase (1x)
-(18518, 4410, 11), -- Average P. Atk.
-(18518, 4411, 11), -- Average M. Atk.
-(18518, 4412, 11), -- Average P. Def.
-(18518, 4413, 11), -- Average M. Def.
-(18518, 4414, 2), -- Standard Type
-(18518, 4415, 3), -- One-handed Sword
-(18518, 4416, 2), -- Magic Creatures
+(18518, 4408, 1), -- HP Modifiers
+(18518, 4409, 1), -- MP Modifiers
+(18518, 4410, 11), -- P. Atk. Modifiers
+(18518, 4411, 11), -- M. Atk. Modifiers
+(18518, 4412, 11), -- P. Def. Modifiers
+(18518, 4413, 11), -- M. Def. Modifiers
+(18518, 4414, 2), -- Armor Type
+(18518, 4415, 3), -- Weapon Type
+(18518, 4416, 2), -- Races
 (18518, 5423, 9), -- Poison
 -- 
-(18519, 4408, 1), -- HP Increase (1x)
-(18519, 4409, 1), -- MP Increase (1x)
-(18519, 4410, 11), -- Average P. Atk.
-(18519, 4411, 11), -- Average M. Atk.
-(18519, 4412, 11), -- Average P. Def.
-(18519, 4413, 11), -- Average M. Def.
-(18519, 4414, 2), -- Standard Type
-(18519, 4415, 3), -- One-handed Sword
-(18519, 4416, 2), -- Magic Creatures
+(18519, 4408, 1), -- HP Modifiers
+(18519, 4409, 1), -- MP Modifiers
+(18519, 4410, 11), -- P. Atk. Modifiers
+(18519, 4411, 11), -- M. Atk. Modifiers
+(18519, 4412, 11), -- P. Def. Modifiers
+(18519, 4413, 11), -- M. Def. Modifiers
+(18519, 4414, 2), -- Armor Type
+(18519, 4415, 3), -- Weapon Type
+(18519, 4416, 2), -- Races
 (18519, 5423, 9), -- Poison
 -- 
-(18520, 4408, 1), -- HP Increase (1x)
-(18520, 4409, 1), -- MP Increase (1x)
-(18520, 4410, 11), -- Average P. Atk.
-(18520, 4411, 11), -- Average M. Atk.
-(18520, 4412, 11), -- Average P. Def.
-(18520, 4413, 11), -- Average M. Def.
-(18520, 4414, 2), -- Standard Type
-(18520, 4415, 3), -- One-handed Sword
-(18520, 4416, 2), -- Magic Creatures
+(18520, 4408, 1), -- HP Modifiers
+(18520, 4409, 1), -- MP Modifiers
+(18520, 4410, 11), -- P. Atk. Modifiers
+(18520, 4411, 11), -- M. Atk. Modifiers
+(18520, 4412, 11), -- P. Def. Modifiers
+(18520, 4413, 11), -- M. Def. Modifiers
+(18520, 4414, 2), -- Armor Type
+(18520, 4415, 3), -- Weapon Type
+(18520, 4416, 2), -- Races
 (18520, 5423, 9), -- Poison
 -- 
-(18521, 4408, 1), -- HP Increase (1x)
-(18521, 4409, 1), -- MP Increase (1x)
-(18521, 4410, 11), -- Average P. Atk.
-(18521, 4411, 11), -- Average M. Atk.
-(18521, 4412, 11), -- Average P. Def.
-(18521, 4413, 11), -- Average M. Def.
-(18521, 4414, 2), -- Standard Type
-(18521, 4415, 3), -- One-handed Sword
-(18521, 4416, 2), -- Magic Creatures
+(18521, 4408, 1), -- HP Modifiers
+(18521, 4409, 1), -- MP Modifiers
+(18521, 4410, 11), -- P. Atk. Modifiers
+(18521, 4411, 11), -- M. Atk. Modifiers
+(18521, 4412, 11), -- P. Def. Modifiers
+(18521, 4413, 11), -- M. Def. Modifiers
+(18521, 4414, 2), -- Armor Type
+(18521, 4415, 3), -- Weapon Type
+(18521, 4416, 2), -- Races
 (18521, 5423, 9), -- Poison
 -- 
-(18522, 4408, 1), -- HP Increase (1x)
-(18522, 4409, 1), -- MP Increase (1x)
-(18522, 4410, 11), -- Average P. Atk.
-(18522, 4411, 11), -- Average M. Atk.
-(18522, 4412, 11), -- Average P. Def.
-(18522, 4413, 11), -- Average M. Def.
-(18522, 4414, 2), -- Standard Type
-(18522, 4415, 3), -- One-handed Sword
-(18522, 4416, 2), -- Magic Creatures
+(18522, 4408, 1), -- HP Modifiers
+(18522, 4409, 1), -- MP Modifiers
+(18522, 4410, 11), -- P. Atk. Modifiers
+(18522, 4411, 11), -- M. Atk. Modifiers
+(18522, 4412, 11), -- P. Def. Modifiers
+(18522, 4413, 11), -- M. Def. Modifiers
+(18522, 4414, 2), -- Armor Type
+(18522, 4415, 3), -- Weapon Type
+(18522, 4416, 2), -- Races
 (18522, 5423, 9), -- Poison
 -- 
-(18523, 4408, 1), -- HP Increase (1x)
-(18523, 4409, 1), -- MP Increase (1x)
-(18523, 4410, 11), -- Average P. Atk.
-(18523, 4411, 11), -- Average M. Atk.
-(18523, 4412, 11), -- Average P. Def.
-(18523, 4413, 11), -- Average M. Def.
-(18523, 4414, 2), -- Standard Type
-(18523, 4415, 3), -- One-handed Sword
-(18523, 4416, 2), -- Magic Creatures
+(18523, 4408, 1), -- HP Modifiers
+(18523, 4409, 1), -- MP Modifiers
+(18523, 4410, 11), -- P. Atk. Modifiers
+(18523, 4411, 11), -- M. Atk. Modifiers
+(18523, 4412, 11), -- P. Def. Modifiers
+(18523, 4413, 11), -- M. Def. Modifiers
+(18523, 4414, 2), -- Armor Type
+(18523, 4415, 3), -- Weapon Type
+(18523, 4416, 2), -- Races
 (18523, 5423, 9), -- Poison
 -- 
-(18524, 4408, 1), -- HP Increase (1x)
-(18524, 4409, 1), -- MP Increase (1x)
-(18524, 4410, 11), -- Average P. Atk.
-(18524, 4411, 11), -- Average M. Atk.
-(18524, 4412, 11), -- Average P. Def.
-(18524, 4413, 11), -- Average M. Def.
-(18524, 4414, 2), -- Standard Type
-(18524, 4415, 3), -- One-handed Sword
-(18524, 4416, 2), -- Magic Creatures
+(18524, 4408, 1), -- HP Modifiers
+(18524, 4409, 1), -- MP Modifiers
+(18524, 4410, 11), -- P. Atk. Modifiers
+(18524, 4411, 11), -- M. Atk. Modifiers
+(18524, 4412, 11), -- P. Def. Modifiers
+(18524, 4413, 11), -- M. Def. Modifiers
+(18524, 4414, 2), -- Armor Type
+(18524, 4415, 3), -- Weapon Type
+(18524, 4416, 2), -- Races
 (18524, 5423, 9), -- Poison
 -- 
-(18525, 4408, 1), -- HP Increase (1x)
-(18525, 4409, 1), -- MP Increase (1x)
-(18525, 4410, 11), -- Average P. Atk.
-(18525, 4411, 11), -- Average M. Atk.
-(18525, 4412, 11), -- Average P. Def.
-(18525, 4413, 11), -- Average M. Def.
-(18525, 4414, 2), -- Standard Type
-(18525, 4415, 3), -- One-handed Sword
-(18525, 4416, 2), -- Magic Creatures
+(18525, 4408, 1), -- HP Modifiers
+(18525, 4409, 1), -- MP Modifiers
+(18525, 4410, 11), -- P. Atk. Modifiers
+(18525, 4411, 11), -- M. Atk. Modifiers
+(18525, 4412, 11), -- P. Def. Modifiers
+(18525, 4413, 11), -- M. Def. Modifiers
+(18525, 4414, 2), -- Armor Type
+(18525, 4415, 3), -- Weapon Type
+(18525, 4416, 2), -- Races
 (18525, 5422, 9), -- Flame
 -- 
-(18526, 4408, 1), -- HP Increase (1x)
-(18526, 4409, 1), -- MP Increase (1x)
-(18526, 4410, 11), -- Average P. Atk.
-(18526, 4411, 11), -- Average M. Atk.
-(18526, 4412, 11), -- Average P. Def.
-(18526, 4413, 11), -- Average M. Def.
-(18526, 4414, 2), -- Standard Type
-(18526, 4415, 3), -- One-handed Sword
-(18526, 4416, 2), -- Magic Creatures
+(18526, 4408, 1), -- HP Modifiers
+(18526, 4409, 1), -- MP Modifiers
+(18526, 4410, 11), -- P. Atk. Modifiers
+(18526, 4411, 11), -- M. Atk. Modifiers
+(18526, 4412, 11), -- P. Def. Modifiers
+(18526, 4413, 11), -- M. Def. Modifiers
+(18526, 4414, 2), -- Armor Type
+(18526, 4415, 3), -- Weapon Type
+(18526, 4416, 2), -- Races
 (18526, 5422, 9), -- Flame
 -- 
-(18527, 4408, 1), -- HP Increase (1x)
-(18527, 4409, 1), -- MP Increase (1x)
-(18527, 4410, 11), -- Average P. Atk.
-(18527, 4411, 11), -- Average M. Atk.
-(18527, 4412, 11), -- Average P. Def.
-(18527, 4413, 11), -- Average M. Def.
-(18527, 4414, 2), -- Standard Type
-(18527, 4415, 3), -- One-handed Sword
-(18527, 4416, 2), -- Magic Creatures
+(18527, 4408, 1), -- HP Modifiers
+(18527, 4409, 1), -- MP Modifiers
+(18527, 4410, 11), -- P. Atk. Modifiers
+(18527, 4411, 11), -- M. Atk. Modifiers
+(18527, 4412, 11), -- P. Def. Modifiers
+(18527, 4413, 11), -- M. Def. Modifiers
+(18527, 4414, 2), -- Armor Type
+(18527, 4415, 3), -- Weapon Type
+(18527, 4416, 2), -- Races
 (18527, 5422, 9), -- Flame
 -- 
-(18528, 4408, 1), -- HP Increase (1x)
-(18528, 4409, 1), -- MP Increase (1x)
-(18528, 4410, 11), -- Average P. Atk.
-(18528, 4411, 11), -- Average M. Atk.
-(18528, 4412, 11), -- Average P. Def.
-(18528, 4413, 11), -- Average M. Def.
-(18528, 4414, 2), -- Standard Type
-(18528, 4415, 3), -- One-handed Sword
-(18528, 4416, 2), -- Magic Creatures
+(18528, 4408, 1), -- HP Modifiers
+(18528, 4409, 1), -- MP Modifiers
+(18528, 4410, 11), -- P. Atk. Modifiers
+(18528, 4411, 11), -- M. Atk. Modifiers
+(18528, 4412, 11), -- P. Def. Modifiers
+(18528, 4413, 11), -- M. Def. Modifiers
+(18528, 4414, 2), -- Armor Type
+(18528, 4415, 3), -- Weapon Type
+(18528, 4416, 2), -- Races
 (18528, 5422, 9), -- Flame
 -- 
-(18529, 4408, 1), -- HP Increase (1x)
-(18529, 4409, 1), -- MP Increase (1x)
-(18529, 4410, 11), -- Average P. Atk.
-(18529, 4411, 11), -- Average M. Atk.
-(18529, 4412, 11), -- Average P. Def.
-(18529, 4413, 11), -- Average M. Def.
-(18529, 4414, 2), -- Standard Type
-(18529, 4415, 3), -- One-handed Sword
-(18529, 4416, 2), -- Magic Creatures
+(18529, 4408, 1), -- HP Modifiers
+(18529, 4409, 1), -- MP Modifiers
+(18529, 4410, 11), -- P. Atk. Modifiers
+(18529, 4411, 11), -- M. Atk. Modifiers
+(18529, 4412, 11), -- P. Def. Modifiers
+(18529, 4413, 11), -- M. Def. Modifiers
+(18529, 4414, 2), -- Armor Type
+(18529, 4415, 3), -- Weapon Type
+(18529, 4416, 2), -- Races
 (18529, 5422, 9), -- Flame
 -- 
-(18530, 4408, 1), -- HP Increase (1x)
-(18530, 4409, 1), -- MP Increase (1x)
-(18530, 4410, 11), -- Average P. Atk.
-(18530, 4411, 11), -- Average M. Atk.
-(18530, 4412, 11), -- Average P. Def.
-(18530, 4413, 11), -- Average M. Def.
-(18530, 4414, 2), -- Standard Type
-(18530, 4415, 3), -- One-handed Sword
-(18530, 4416, 2), -- Magic Creatures
+(18530, 4408, 1), -- HP Modifiers
+(18530, 4409, 1), -- MP Modifiers
+(18530, 4410, 11), -- P. Atk. Modifiers
+(18530, 4411, 11), -- M. Atk. Modifiers
+(18530, 4412, 11), -- P. Def. Modifiers
+(18530, 4413, 11), -- M. Def. Modifiers
+(18530, 4414, 2), -- Armor Type
+(18530, 4415, 3), -- Weapon Type
+(18530, 4416, 2), -- Races
 (18530, 5422, 9), -- Flame
 -- 
-(18531, 4408, 1), -- HP Increase (1x)
-(18531, 4409, 1), -- MP Increase (1x)
-(18531, 4410, 11), -- Average P. Atk.
-(18531, 4411, 11), -- Average M. Atk.
-(18531, 4412, 11), -- Average P. Def.
-(18531, 4413, 11), -- Average M. Def.
-(18531, 4414, 2), -- Standard Type
-(18531, 4415, 3), -- One-handed Sword
-(18531, 4416, 2), -- Magic Creatures
+(18531, 4408, 1), -- HP Modifiers
+(18531, 4409, 1), -- MP Modifiers
+(18531, 4410, 11), -- P. Atk. Modifiers
+(18531, 4411, 11), -- M. Atk. Modifiers
+(18531, 4412, 11), -- P. Def. Modifiers
+(18531, 4413, 11), -- M. Def. Modifiers
+(18531, 4414, 2), -- Armor Type
+(18531, 4415, 3), -- Weapon Type
+(18531, 4416, 2), -- Races
 (18531, 5422, 9), -- Flame
 -- 
-(18532, 4408, 1), -- HP Increase (1x)
-(18532, 4409, 1), -- MP Increase (1x)
-(18532, 4410, 11), -- Average P. Atk.
-(18532, 4411, 11), -- Average M. Atk.
-(18532, 4412, 11), -- Average P. Def.
-(18532, 4413, 11), -- Average M. Def.
-(18532, 4414, 2), -- Standard Type
-(18532, 4415, 3), -- One-handed Sword
-(18532, 4416, 2), -- Magic Creatures
+(18532, 4408, 1), -- HP Modifiers
+(18532, 4409, 1), -- MP Modifiers
+(18532, 4410, 11), -- P. Atk. Modifiers
+(18532, 4411, 11), -- M. Atk. Modifiers
+(18532, 4412, 11), -- P. Def. Modifiers
+(18532, 4413, 11), -- M. Def. Modifiers
+(18532, 4414, 2), -- Armor Type
+(18532, 4415, 3), -- Weapon Type
+(18532, 4416, 2), -- Races
 (18532, 5422, 9), -- Flame
 -- 
-(18533, 4408, 1), -- HP Increase (1x)
-(18533, 4409, 1), -- MP Increase (1x)
-(18533, 4410, 11), -- Average P. Atk.
-(18533, 4411, 11), -- Average M. Atk.
-(18533, 4412, 11), -- Average P. Def.
-(18533, 4413, 11), -- Average M. Def.
-(18533, 4414, 2), -- Standard Type
-(18533, 4415, 3), -- One-handed Sword
-(18533, 4416, 2), -- Magic Creatures
+(18533, 4408, 1), -- HP Modifiers
+(18533, 4409, 1), -- MP Modifiers
+(18533, 4410, 11), -- P. Atk. Modifiers
+(18533, 4411, 11), -- M. Atk. Modifiers
+(18533, 4412, 11), -- P. Def. Modifiers
+(18533, 4413, 11), -- M. Def. Modifiers
+(18533, 4414, 2), -- Armor Type
+(18533, 4415, 3), -- Weapon Type
+(18533, 4416, 2), -- Races
 (18533, 5422, 9), -- Flame
 -- Kertang's Treasure Chest
-(18534, 4408, 1), -- HP Increase (1x)
-(18534, 4409, 1), -- MP Increase (1x)
-(18534, 4410, 11), -- Average P. Atk.
-(18534, 4411, 11), -- Average M. Atk.
-(18534, 4412, 11), -- Average P. Def.
-(18534, 4413, 11), -- Average M. Def.
-(18534, 4414, 2), -- Standard Type
-(18534, 4415, 3), -- One-handed Sword
-(18534, 4416, 2), -- Magic Creatures
+(18534, 4408, 1), -- HP Modifiers
+(18534, 4409, 1), -- MP Modifiers
+(18534, 4410, 11), -- P. Atk. Modifiers
+(18534, 4411, 11), -- M. Atk. Modifiers
+(18534, 4412, 11), -- P. Def. Modifiers
+(18534, 4413, 11), -- M. Def. Modifiers
+(18534, 4414, 2), -- Armor Type
+(18534, 4415, 3), -- Weapon Type
+(18534, 4416, 2), -- Races
 -- Kertang's Treasure Chest
-(18535, 4408, 1), -- HP Increase (1x)
-(18535, 4409, 1), -- MP Increase (1x)
-(18535, 4410, 11), -- Average P. Atk.
-(18535, 4411, 11), -- Average M. Atk.
-(18535, 4412, 11), -- Average P. Def.
-(18535, 4413, 11), -- Average M. Def.
-(18535, 4414, 2), -- Standard Type
-(18535, 4415, 3), -- One-handed Sword
-(18535, 4416, 2), -- Magic Creatures
+(18535, 4408, 1), -- HP Modifiers
+(18535, 4409, 1), -- MP Modifiers
+(18535, 4410, 11), -- P. Atk. Modifiers
+(18535, 4411, 11), -- M. Atk. Modifiers
+(18535, 4412, 11), -- P. Def. Modifiers
+(18535, 4413, 11), -- M. Def. Modifiers
+(18535, 4414, 2), -- Armor Type
+(18535, 4415, 3), -- Weapon Type
+(18535, 4416, 2), -- Races
 -- Kertang's Treasure Chest
-(18536, 4408, 1), -- HP Increase (1x)
-(18536, 4409, 1), -- MP Increase (1x)
-(18536, 4410, 11), -- Average P. Atk.
-(18536, 4411, 11), -- Average M. Atk.
-(18536, 4412, 11), -- Average P. Def.
-(18536, 4413, 11), -- Average M. Def.
-(18536, 4414, 2), -- Standard Type
-(18536, 4415, 3), -- One-handed Sword
-(18536, 4416, 2), -- Magic Creatures
+(18536, 4408, 1), -- HP Modifiers
+(18536, 4409, 1), -- MP Modifiers
+(18536, 4410, 11), -- P. Atk. Modifiers
+(18536, 4411, 11), -- M. Atk. Modifiers
+(18536, 4412, 11), -- P. Def. Modifiers
+(18536, 4413, 11), -- M. Def. Modifiers
+(18536, 4414, 2), -- Armor Type
+(18536, 4415, 3), -- Weapon Type
+(18536, 4416, 2), -- Races
 -- Kertang's Treasure Chest
-(18537, 4408, 1), -- HP Increase (1x)
-(18537, 4409, 1), -- MP Increase (1x)
-(18537, 4410, 11), -- Average P. Atk.
-(18537, 4411, 11), -- Average M. Atk.
-(18537, 4412, 11), -- Average P. Def.
-(18537, 4413, 11), -- Average M. Def.
-(18537, 4414, 2), -- Standard Type
-(18537, 4415, 3), -- One-handed Sword
-(18537, 4416, 2), -- Magic Creatures
+(18537, 4408, 1), -- HP Modifiers
+(18537, 4409, 1), -- MP Modifiers
+(18537, 4410, 11), -- P. Atk. Modifiers
+(18537, 4411, 11), -- M. Atk. Modifiers
+(18537, 4412, 11), -- P. Def. Modifiers
+(18537, 4413, 11), -- M. Def. Modifiers
+(18537, 4414, 2), -- Armor Type
+(18537, 4415, 3), -- Weapon Type
+(18537, 4416, 2), -- Races
 -- Kertang's Treasure Chest
-(18538, 4408, 1), -- HP Increase (1x)
-(18538, 4409, 1), -- MP Increase (1x)
-(18538, 4410, 11), -- Average P. Atk.
-(18538, 4411, 11), -- Average M. Atk.
-(18538, 4412, 11), -- Average P. Def.
-(18538, 4413, 11), -- Average M. Def.
-(18538, 4414, 2), -- Standard Type
-(18538, 4415, 3), -- One-handed Sword
-(18538, 4416, 2), -- Magic Creatures
+(18538, 4408, 1), -- HP Modifiers
+(18538, 4409, 1), -- MP Modifiers
+(18538, 4410, 11), -- P. Atk. Modifiers
+(18538, 4411, 11), -- M. Atk. Modifiers
+(18538, 4412, 11), -- P. Def. Modifiers
+(18538, 4413, 11), -- M. Def. Modifiers
+(18538, 4414, 2), -- Armor Type
+(18538, 4415, 3), -- Weapon Type
+(18538, 4416, 2), -- Races
 -- Resurrection Tower
-(18539, 4390, 1), -- Mystic Immunity
-(18539, 4408, 1), -- HP Increase (1x)
-(18539, 4409, 1), -- MP Increase (1x)
-(18539, 4410, 11), -- Average P. Atk.
-(18539, 4411, 11), -- Average M. Atk.
-(18539, 4412, 11), -- Average P. Def.
-(18539, 4413, 11), -- Average M. Def.
-(18539, 4414, 2), -- Standard Type
-(18539, 4415, 3), -- One-handed Sword
-(18539, 4416, 2), -- Magic Creatures
+(18539, 4390, 1), -- NPC Abnormal Immunity
+(18539, 4408, 1), -- HP Modifiers
+(18539, 4409, 1), -- MP Modifiers
+(18539, 4410, 11), -- P. Atk. Modifiers
+(18539, 4411, 11), -- M. Atk. Modifiers
+(18539, 4412, 11), -- P. Def. Modifiers
+(18539, 4413, 11), -- M. Def. Modifiers
+(18539, 4414, 2), -- Armor Type
+(18539, 4415, 3), -- Weapon Type
+(18539, 4416, 2), -- Races
 -- Resurrection Tower
-(18540, 4390, 1), -- Mystic Immunity
-(18540, 4408, 1), -- HP Increase (1x)
-(18540, 4409, 1), -- MP Increase (1x)
-(18540, 4410, 11), -- Average P. Atk.
-(18540, 4411, 11), -- Average M. Atk.
-(18540, 4412, 11), -- Average P. Def.
-(18540, 4413, 11), -- Average M. Def.
-(18540, 4414, 2), -- Standard Type
-(18540, 4415, 3), -- One-handed Sword
-(18540, 4416, 2), -- Magic Creatures
+(18540, 4390, 1), -- NPC Abnormal Immunity
+(18540, 4408, 1), -- HP Modifiers
+(18540, 4409, 1), -- MP Modifiers
+(18540, 4410, 11), -- P. Atk. Modifiers
+(18540, 4411, 11), -- M. Atk. Modifiers
+(18540, 4412, 11), -- P. Def. Modifiers
+(18540, 4413, 11), -- M. Def. Modifiers
+(18540, 4414, 2), -- Armor Type
+(18540, 4415, 3), -- Weapon Type
+(18540, 4416, 2), -- Races
 -- Resurrection Tower
-(18541, 4390, 1), -- Mystic Immunity
-(18541, 4408, 1), -- HP Increase (1x)
-(18541, 4409, 1), -- MP Increase (1x)
-(18541, 4410, 11), -- Average P. Atk.
-(18541, 4411, 11), -- Average M. Atk.
-(18541, 4412, 11), -- Average P. Def.
-(18541, 4413, 11), -- Average M. Def.
-(18541, 4414, 2), -- Standard Type
-(18541, 4415, 3), -- One-handed Sword
-(18541, 4416, 2), -- Magic Creatures
+(18541, 4390, 1), -- NPC Abnormal Immunity
+(18541, 4408, 1), -- HP Modifiers
+(18541, 4409, 1), -- MP Modifiers
+(18541, 4410, 11), -- P. Atk. Modifiers
+(18541, 4411, 11), -- M. Atk. Modifiers
+(18541, 4412, 11), -- P. Def. Modifiers
+(18541, 4413, 11), -- M. Def. Modifiers
+(18541, 4414, 2), -- Armor Type
+(18541, 4415, 3), -- Weapon Type
+(18541, 4416, 2), -- Races
 -- Resurrection Tower
-(18542, 4390, 1), -- Mystic Immunity
-(18542, 4408, 1), -- HP Increase (1x)
-(18542, 4409, 1), -- MP Increase (1x)
-(18542, 4410, 11), -- Average P. Atk.
-(18542, 4411, 11), -- Average M. Atk.
-(18542, 4412, 11), -- Average P. Def.
-(18542, 4413, 11), -- Average M. Def.
-(18542, 4414, 2), -- Standard Type
-(18542, 4415, 3), -- One-handed Sword
-(18542, 4416, 2), -- Magic Creatures
+(18542, 4390, 1), -- NPC Abnormal Immunity
+(18542, 4408, 1), -- HP Modifiers
+(18542, 4409, 1), -- MP Modifiers
+(18542, 4410, 11), -- P. Atk. Modifiers
+(18542, 4411, 11), -- M. Atk. Modifiers
+(18542, 4412, 11), -- P. Def. Modifiers
+(18542, 4413, 11), -- M. Def. Modifiers
+(18542, 4414, 2), -- Armor Type
+(18542, 4415, 3), -- Weapon Type
+(18542, 4416, 2), -- Races
 -- Resurrection Tower
-(18543, 4390, 1), -- Mystic Immunity
-(18543, 4408, 1), -- HP Increase (1x)
-(18543, 4409, 1), -- MP Increase (1x)
-(18543, 4410, 11), -- Average P. Atk.
-(18543, 4411, 11), -- Average M. Atk.
-(18543, 4412, 11), -- Average P. Def.
-(18543, 4413, 11), -- Average M. Def.
-(18543, 4414, 2), -- Standard Type
-(18543, 4415, 3), -- One-handed Sword
-(18543, 4416, 2), -- Magic Creatures
+(18543, 4390, 1), -- NPC Abnormal Immunity
+(18543, 4408, 1), -- HP Modifiers
+(18543, 4409, 1), -- MP Modifiers
+(18543, 4410, 11), -- P. Atk. Modifiers
+(18543, 4411, 11), -- M. Atk. Modifiers
+(18543, 4412, 11), -- P. Def. Modifiers
+(18543, 4413, 11), -- M. Def. Modifiers
+(18543, 4414, 2), -- Armor Type
+(18543, 4415, 3), -- Weapon Type
+(18543, 4416, 2), -- Races
 -- Cruma Border
 (18544, 4045, 1), -- Resist Full Magic Attack
-(18544, 4354, 3), -- Vampiric Rage
-(18544, 4357, 2), -- Haste
-(18544, 4358, 3), -- Guidance
-(18544, 4359, 3), -- Focus
-(18544, 4408, 8), -- HP Increase (1/4x)
-(18544, 4409, 1), -- MP Increase (1x)
-(18544, 4410, 11), -- Average P. Atk.
-(18544, 4411, 11), -- Average M. Atk.
-(18544, 4412, 4), -- Extremely Weak P. Def.
-(18544, 4413, 16), -- Very Strong M. Def.
-(18544, 4414, 2), -- Standard Type
-(18544, 4415, 3), -- One-handed Sword
-(18544, 4416, 2), -- Magic Creatures
+(18544, 4354, 3), -- Clan Hall: Vampiric Rage
+(18544, 4357, 2), -- Clan Hall: Haste
+(18544, 4358, 3), -- Clan Hall: Guidance
+(18544, 4359, 3), -- Clan Hall: Focus
+(18544, 4408, 8), -- HP Modifiers
+(18544, 4409, 1), -- MP Modifiers
+(18544, 4410, 11), -- P. Atk. Modifiers
+(18544, 4411, 11), -- M. Atk. Modifiers
+(18544, 4412, 4), -- P. Def. Modifiers
+(18544, 4413, 16), -- M. Def. Modifiers
+(18544, 4414, 2), -- Armor Type
+(18544, 4415, 3), -- Weapon Type
+(18544, 4416, 2), -- Races
 -- Ancient Experiment
-(18545, 4028, 2), -- Might
-(18545, 4032, 5), -- Power Strike
-(18545, 4085, 1), -- Critical Damage
-(18545, 4408, 16), -- HP Increase (8x)
-(18545, 4409, 1), -- MP Increase (1x)
-(18545, 4410, 16), -- Very Strong P. Atk.
-(18545, 4411, 15), -- Strong M. Atk.
-(18545, 4412, 15), -- Strong P. Def.
-(18545, 4413, 19), -- Extremely Strong M. Def.
-(18545, 4414, 3), -- Light Armor Type
-(18545, 4415, 3), -- One-handed Sword
-(18545, 4416, 6), -- Humanoids
+(18545, 4028, 2), -- NPC Might
+(18545, 4032, 5), -- NPC Strike
+(18545, 4085, 1), -- Critical Power
+(18545, 4408, 16), -- HP Modifiers
+(18545, 4409, 1), -- MP Modifiers
+(18545, 4410, 16), -- P. Atk. Modifiers
+(18545, 4411, 15), -- M. Atk. Modifiers
+(18545, 4412, 15), -- P. Def. Modifiers
+(18545, 4413, 19), -- M. Def. Modifiers
+(18545, 4414, 3), -- Armor Type
+(18545, 4415, 3), -- Weapon Type
+(18545, 4416, 6), -- Races
 -- Ancient Experiment
-(18546, 4028, 2), -- Might
-(18546, 4071, 1), -- Resist Bow/Crossbow Weapons
-(18546, 4077, 5), -- Aura Burn
-(18546, 4157, 4), -- Blaze
-(18546, 4274, 1), -- Blunt Weapon Weak Point
-(18546, 4408, 1), -- HP Increase (1x)
-(18546, 4409, 1), -- MP Increase (1x)
-(18546, 4410, 8), -- Weak P. Atk.
-(18546, 4411, 11), -- Average M. Atk.
-(18546, 4412, 11), -- Average P. Def.
-(18546, 4413, 11), -- Average M. Def.
-(18546, 4414, 2), -- Standard Type
-(18546, 4415, 5), -- Blunt Weapons
-(18546, 4416, 2), -- Magic Creatures
+(18546, 4028, 2), -- NPC Might
+(18546, 4071, 1), -- Resist Archery
+(18546, 4077, 5), -- NPC Aura Burn
+(18546, 4157, 4), -- NPC Blaze - Magic
+(18546, 4274, 1), -- Blunt Attack Weak Point
+(18546, 4408, 1), -- HP Modifiers
+(18546, 4409, 1), -- MP Modifiers
+(18546, 4410, 8), -- P. Atk. Modifiers
+(18546, 4411, 11), -- M. Atk. Modifiers
+(18546, 4412, 11), -- P. Def. Modifiers
+(18546, 4413, 11), -- M. Def. Modifiers
+(18546, 4414, 2), -- Armor Type
+(18546, 4415, 5), -- Weapon Type
+(18546, 4416, 2), -- Races
 (18546, 4436, 5), -- Greater Resist Poison
 (18546, 4437, 5), -- Greater Resist Bleeding
 (18546, 4438, 5), -- Greater Resist Sleep
 -- Ancient Experiment
-(18547, 4028, 2), -- Might
-(18547, 4077, 4), -- Aura Burn
-(18547, 4157, 4), -- Blaze
-(18547, 4408, 1), -- HP Increase (1x)
-(18547, 4409, 1), -- MP Increase (1x)
-(18547, 4410, 12), -- Slightly Strong P. Atk.
-(18547, 4411, 11), -- Average M. Atk.
-(18547, 4412, 11), -- Average P. Def.
-(18547, 4413, 11), -- Average M. Def.
-(18547, 4414, 2), -- Standard Type
-(18547, 4415, 1), -- Bare Hands
-(18547, 4416, 3), -- Beasts
+(18547, 4028, 2), -- NPC Might
+(18547, 4077, 4), -- NPC Aura Burn
+(18547, 4157, 4), -- NPC Blaze - Magic
+(18547, 4408, 1), -- HP Modifiers
+(18547, 4409, 1), -- MP Modifiers
+(18547, 4410, 12), -- P. Atk. Modifiers
+(18547, 4411, 11), -- M. Atk. Modifiers
+(18547, 4412, 11), -- P. Def. Modifiers
+(18547, 4413, 11), -- M. Def. Modifiers
+(18547, 4414, 2), -- Armor Type
+(18547, 4415, 1), -- Weapon Type
+(18547, 4416, 3), -- Races
 -- Ancient Experiment
-(18548, 4032, 4), -- Power Strike
-(18548, 4408, 9), -- HP Increase (1/2x)
-(18548, 4409, 1), -- MP Increase (1x)
-(18548, 4410, 11), -- Average P. Atk.
-(18548, 4411, 11), -- Average M. Atk.
-(18548, 4412, 11), -- Average P. Def.
-(18548, 4413, 13), -- Slightly Strong M. Def.
-(18548, 4414, 2), -- Standard Type
-(18548, 4415, 1), -- Bare Hands
-(18548, 4416, 3), -- Beasts
+(18548, 4032, 4), -- NPC Strike
+(18548, 4408, 9), -- HP Modifiers
+(18548, 4409, 1), -- MP Modifiers
+(18548, 4410, 11), -- P. Atk. Modifiers
+(18548, 4411, 11), -- M. Atk. Modifiers
+(18548, 4412, 11), -- P. Def. Modifiers
+(18548, 4413, 13), -- M. Def. Modifiers
+(18548, 4414, 2), -- Armor Type
+(18548, 4415, 1), -- Weapon Type
+(18548, 4416, 3), -- Races
 (18548, 4453, 2), -- Sleep Attack Weak Point
 (18548, 4454, 1), -- Hold Attack Weak Point
 -- Ancient Experiment
-(18549, 4065, 4), -- Heal
-(18549, 4408, 9), -- HP Increase (1/2x)
-(18549, 4409, 1), -- MP Increase (1x)
-(18549, 4410, 3), -- Extremely Weak P. Atk.
-(18549, 4411, 13), -- Slightly Strong M. Atk.
-(18549, 4412, 10), -- Slightly Weak P. Def.
-(18549, 4413, 13), -- Slightly Strong M. Def.
-(18549, 4414, 2), -- Standard Type
-(18549, 4415, 1), -- Bare Hands
-(18549, 4416, 3), -- Beasts
+(18549, 4065, 4), -- NPC Heal
+(18549, 4408, 9), -- HP Modifiers
+(18549, 4409, 1), -- MP Modifiers
+(18549, 4410, 3), -- P. Atk. Modifiers
+(18549, 4411, 13), -- M. Atk. Modifiers
+(18549, 4412, 10), -- P. Def. Modifiers
+(18549, 4413, 13), -- M. Def. Modifiers
+(18549, 4414, 2), -- Armor Type
+(18549, 4415, 1), -- Weapon Type
+(18549, 4416, 3), -- Races
 (18549, 4453, 1), -- Sleep Attack Weak Point
 (18549, 4454, 2), -- Hold Attack Weak Point
 -- Cruma Phantom
-(18550, 4028, 2), -- Might
-(18550, 4077, 4), -- Aura Burn
-(18550, 4157, 4), -- Blaze
-(18550, 4225, 1), -- Resist Stun Attacks
-(18550, 4408, 10), -- HP Increase (2x)
-(18550, 4409, 1), -- MP Increase (1x)
-(18550, 4410, 11), -- Average P. Atk.
-(18550, 4411, 11), -- Average M. Atk.
-(18550, 4412, 11), -- Average P. Def.
-(18550, 4413, 13), -- Slightly Strong M. Def.
-(18550, 4414, 3), -- Light Armor Type
-(18550, 4415, 1), -- Bare Hands
-(18550, 4416, 1), -- Undead
+(18550, 4028, 2), -- NPC Might
+(18550, 4077, 4), -- NPC Aura Burn
+(18550, 4157, 4), -- NPC Blaze - Magic
+(18550, 4225, 1), -- Resist Shock
+(18550, 4408, 10), -- HP Modifiers
+(18550, 4409, 1), -- MP Modifiers
+(18550, 4410, 11), -- P. Atk. Modifiers
+(18550, 4411, 11), -- M. Atk. Modifiers
+(18550, 4412, 11), -- P. Def. Modifiers
+(18550, 4413, 13), -- M. Def. Modifiers
+(18550, 4414, 3), -- Armor Type
+(18550, 4415, 1), -- Weapon Type
+(18550, 4416, 1), -- Races
 -- Cruma Phantom
-(18551, 4028, 2), -- Might
-(18551, 4032, 4), -- Power Strike
-(18551, 4094, 5), -- Cancellation
-(18551, 4225, 1), -- Resist Stun Attacks
-(18551, 4408, 1), -- HP Increase (1x)
-(18551, 4409, 1), -- MP Increase (1x)
-(18551, 4410, 13), -- Slightly Strong P. Atk.
-(18551, 4411, 11), -- Average M. Atk.
-(18551, 4412, 11), -- Average P. Def.
-(18551, 4413, 13), -- Slightly Strong M. Def.
-(18551, 4414, 2), -- Standard Type
-(18551, 4415, 5), -- Blunt Weapons
-(18551, 4416, 2), -- Magic Creatures
+(18551, 4028, 2), -- NPC Might
+(18551, 4032, 4), -- NPC Strike
+(18551, 4094, 5), -- NPC Cancel Magic
+(18551, 4225, 1), -- Resist Shock
+(18551, 4408, 1), -- HP Modifiers
+(18551, 4409, 1), -- MP Modifiers
+(18551, 4410, 13), -- P. Atk. Modifiers
+(18551, 4411, 11), -- M. Atk. Modifiers
+(18551, 4412, 11), -- P. Def. Modifiers
+(18551, 4413, 13), -- M. Def. Modifiers
+(18551, 4414, 2), -- Armor Type
+(18551, 4415, 5), -- Weapon Type
+(18551, 4416, 2), -- Races
 -- Cruma Phantom
-(18552, 4077, 4), -- Aura Burn
-(18552, 4157, 4), -- Blaze
-(18552, 4225, 1), -- Resist Stun Attacks
-(18552, 4408, 1), -- HP Increase (1x)
-(18552, 4409, 1), -- MP Increase (1x)
-(18552, 4410, 6), -- Very Weak P. Atk.
-(18552, 4411, 10), -- Slightly Weak M. Atk.
-(18552, 4412, 11), -- Average P. Def.
-(18552, 4413, 13), -- Slightly Strong M. Def.
-(18552, 4414, 2), -- Standard Type
-(18552, 4415, 3), -- One-handed Sword
-(18552, 4416, 2), -- Magic Creatures
+(18552, 4077, 4), -- NPC Aura Burn
+(18552, 4157, 4), -- NPC Blaze - Magic
+(18552, 4225, 1), -- Resist Shock
+(18552, 4408, 1), -- HP Modifiers
+(18552, 4409, 1), -- MP Modifiers
+(18552, 4410, 6), -- P. Atk. Modifiers
+(18552, 4411, 10), -- M. Atk. Modifiers
+(18552, 4412, 11), -- P. Def. Modifiers
+(18552, 4413, 13), -- M. Def. Modifiers
+(18552, 4414, 2), -- Armor Type
+(18552, 4415, 3), -- Weapon Type
+(18552, 4416, 2), -- Races
 (18552, 4453, 2), -- Sleep Attack Weak Point
 (18552, 4454, 2), -- Hold Attack Weak Point
 -- Cruma Phantom
-(18553, 4033, 4), -- Aura Burn
-(18553, 4065, 4), -- Heal
-(18553, 4157, 4), -- Blaze
-(18553, 4225, 1), -- Resist Stun Attacks
-(18553, 4408, 1), -- HP Increase (1x)
-(18553, 4409, 1), -- MP Increase (1x)
-(18553, 4410, 6), -- Very Weak P. Atk.
-(18553, 4411, 12), -- Slightly Strong M. Atk.
-(18553, 4412, 11), -- Average P. Def.
-(18553, 4413, 13), -- Slightly Strong M. Def.
-(18553, 4414, 1), -- Heavy Armor Type
-(18553, 4415, 3), -- One-handed Sword
-(18553, 4416, 2), -- Magic Creatures
+(18553, 4033, 4), -- NPC Burn
+(18553, 4065, 4), -- NPC Heal
+(18553, 4157, 4), -- NPC Blaze - Magic
+(18553, 4225, 1), -- Resist Shock
+(18553, 4408, 1), -- HP Modifiers
+(18553, 4409, 1), -- MP Modifiers
+(18553, 4410, 6), -- P. Atk. Modifiers
+(18553, 4411, 12), -- M. Atk. Modifiers
+(18553, 4412, 11), -- P. Def. Modifiers
+(18553, 4413, 13), -- M. Def. Modifiers
+(18553, 4414, 1), -- Armor Type
+(18553, 4415, 3), -- Weapon Type
+(18553, 4416, 2), -- Races
 (18553, 4453, 2), -- Sleep Attack Weak Point
 (18553, 4454, 2), -- Hold Attack Weak Point
 -- Tomlan Kamos
 (18554, 4045, 1), -- Resist Full Magic Attack
 (18554, 4172, 2), -- Stun
-(18554, 4408, 10), -- HP Increase (2x)
-(18554, 4409, 1), -- MP Increase (1x)
-(18554, 4410, 11), -- Average P. Atk.
-(18554, 4411, 11), -- Average M. Atk.
-(18554, 4412, 14), -- Strong P. Def.
-(18554, 4413, 14), -- Strong M. Def.
-(18554, 4414, 2), -- Standard Type
-(18554, 4415, 5), -- Blunt Weapons
-(18554, 4416, 11), -- Giants
-(18554, 4719, 1), -- Power Strike
+(18554, 4408, 10), -- HP Modifiers
+(18554, 4409, 1), -- MP Modifiers
+(18554, 4410, 11), -- P. Atk. Modifiers
+(18554, 4411, 11), -- M. Atk. Modifiers
+(18554, 4412, 14), -- P. Def. Modifiers
+(18554, 4413, 14), -- M. Def. Modifiers
+(18554, 4414, 2), -- Armor Type
+(18554, 4415, 5), -- Weapon Type
+(18554, 4416, 11), -- Races
+(18554, 4719, 1), -- BOSS Strike
 (18554, 5597, 1), -- Invalid Skill cancel
 -- Ol Ariosh
 (18555, 4045, 1), -- Resist Full Magic Attack
-(18555, 4408, 10), -- HP Increase (2x)
-(18555, 4409, 1), -- MP Increase (1x)
-(18555, 4410, 11), -- Average P. Atk.
-(18555, 4411, 11), -- Average M. Atk.
-(18555, 4412, 14), -- Strong P. Def.
-(18555, 4413, 14), -- Strong M. Def.
-(18555, 4414, 2), -- Standard Type
-(18555, 4415, 3), -- One-handed Sword
-(18555, 4416, 6), -- Humanoids
-(18555, 4736, 2), -- Whirlwind
+(18555, 4408, 10), -- HP Modifiers
+(18555, 4409, 1), -- MP Modifiers
+(18555, 4410, 11), -- P. Atk. Modifiers
+(18555, 4411, 11), -- M. Atk. Modifiers
+(18555, 4412, 14), -- P. Def. Modifiers
+(18555, 4413, 14), -- M. Def. Modifiers
+(18555, 4414, 2), -- Armor Type
+(18555, 4415, 3), -- Weapon Type
+(18555, 4416, 6), -- Races
+(18555, 4736, 2), -- BOSS Spinning Slash
 (18555, 5597, 1), -- Invalid Skill cancel
 -- Follower of Ariosh
-(18556, 4408, 11), -- HP Increase (3x)
-(18556, 4409, 1), -- MP Increase (1x)
-(18556, 4410, 14), -- Strong P. Atk.
-(18556, 4411, 11), -- Average M. Atk.
-(18556, 4412, 13), -- Slightly Strong P. Def.
-(18556, 4413, 11), -- Average M. Def.
-(18556, 4414, 2), -- Standard Type
-(18556, 4415, 3), -- One-handed Sword
-(18556, 4416, 6), -- Humanoids
-(18556, 4719, 1), -- Power Strike
+(18556, 4408, 11), -- HP Modifiers
+(18556, 4409, 1), -- MP Modifiers
+(18556, 4410, 14), -- P. Atk. Modifiers
+(18556, 4411, 11), -- M. Atk. Modifiers
+(18556, 4412, 13), -- P. Def. Modifiers
+(18556, 4413, 11), -- M. Def. Modifiers
+(18556, 4414, 2), -- Armor Type
+(18556, 4415, 3), -- Weapon Type
+(18556, 4416, 6), -- Races
+(18556, 4719, 1), -- BOSS Strike
 -- Ranc Deumus
 (18557, 4045, 1), -- Resist Full Magic Attack
-(18557, 4408, 1), -- HP Increase (1x)
-(18557, 4409, 1), -- MP Increase (1x)
-(18557, 4410, 11), -- Average P. Atk.
-(18557, 4411, 11), -- Average M. Atk.
-(18557, 4412, 14), -- Strong P. Def.
-(18557, 4413, 14), -- Strong M. Def.
-(18557, 4414, 2), -- Standard Type
-(18557, 4415, 11), -- Spears
-(18557, 4416, 6), -- Humanoids
-(18557, 4740, 2), -- Power Strike
-(18557, 4741, 3), -- Power Strike
+(18557, 4408, 1), -- HP Modifiers
+(18557, 4409, 1), -- MP Modifiers
+(18557, 4410, 11), -- P. Atk. Modifiers
+(18557, 4411, 11), -- M. Atk. Modifiers
+(18557, 4412, 14), -- P. Def. Modifiers
+(18557, 4413, 14), -- M. Def. Modifiers
+(18557, 4414, 2), -- Armor Type
+(18557, 4415, 11), -- Weapon Type
+(18557, 4416, 6), -- Races
+(18557, 4740, 2), -- BOSS Strike
+(18557, 4741, 3), -- BOSS Strike
 (18557, 5597, 1), -- Invalid Skill cancel
 -- Crimson Hatu Otis
 (18558, 4045, 1), -- Resist Full Magic Attack
-(18558, 4175, 3), -- Haste
-(18558, 4408, 1), -- HP Increase (1x)
-(18558, 4409, 1), -- MP Increase (1x)
-(18558, 4410, 11), -- Average P. Atk.
-(18558, 4411, 11), -- Average M. Atk.
-(18558, 4412, 14), -- Strong P. Def.
-(18558, 4413, 14), -- Strong M. Def.
-(18558, 4414, 2), -- Standard Type
-(18558, 4415, 3), -- One-handed Sword
-(18558, 4416, 4), -- Animals
-(18558, 4737, 3), -- Whirlwind
+(18558, 4175, 3), -- BOSS Haste
+(18558, 4408, 1), -- HP Modifiers
+(18558, 4409, 1), -- MP Modifiers
+(18558, 4410, 11), -- P. Atk. Modifiers
+(18558, 4411, 11), -- M. Atk. Modifiers
+(18558, 4412, 14), -- P. Def. Modifiers
+(18558, 4413, 14), -- M. Def. Modifiers
+(18558, 4414, 2), -- Armor Type
+(18558, 4415, 3), -- Weapon Type
+(18558, 4416, 4), -- Races
+(18558, 4737, 3), -- BOSS Spinning Slash
 (18558, 5597, 1), -- Invalid Skill cancel
 (18558, 5622, 1), -- Double Skill Attack
 -- Seer Flouros
 (18559, 4045, 1), -- Resist Full Magic Attack
-(18559, 4192, 4), -- Vampiric Touch
-(18559, 4194, 3), -- Aura Burn
-(18559, 4408, 1), -- HP Increase (1x)
-(18559, 4409, 1), -- MP Increase (1x)
-(18559, 4410, 11), -- Average P. Atk.
-(18559, 4411, 11), -- Average M. Atk.
-(18559, 4412, 14), -- Strong P. Def.
-(18559, 4413, 14), -- Strong M. Def.
-(18559, 4414, 2), -- Standard Type
-(18559, 4415, 3), -- One-handed Sword
-(18559, 4416, 2), -- Magic Creatures
+(18559, 4192, 4), -- BOSS HP Drain
+(18559, 4194, 3), -- BOSS Aura Burn
+(18559, 4408, 1), -- HP Modifiers
+(18559, 4409, 1), -- MP Modifiers
+(18559, 4410, 11), -- P. Atk. Modifiers
+(18559, 4411, 11), -- M. Atk. Modifiers
+(18559, 4412, 14), -- P. Def. Modifiers
+(18559, 4413, 14), -- M. Def. Modifiers
+(18559, 4414, 2), -- Armor Type
+(18559, 4415, 3), -- Weapon Type
+(18559, 4416, 2), -- Races
 (18559, 5597, 1), -- Invalid Skill cancel
 -- Follower of Flouros
-(18560, 4194, 3), -- Aura Burn
-(18560, 4408, 11), -- HP Increase (3x)
-(18560, 4409, 1), -- MP Increase (1x)
-(18560, 4410, 14), -- Strong P. Atk.
-(18560, 4411, 11), -- Average M. Atk.
-(18560, 4412, 13), -- Slightly Strong P. Def.
-(18560, 4413, 11), -- Average M. Def.
-(18560, 4414, 2), -- Standard Type
-(18560, 4415, 5), -- Blunt Weapons
-(18560, 4416, 2), -- Magic Creatures
+(18560, 4194, 3), -- BOSS Aura Burn
+(18560, 4408, 11), -- HP Modifiers
+(18560, 4409, 1), -- MP Modifiers
+(18560, 4410, 14), -- P. Atk. Modifiers
+(18560, 4411, 11), -- M. Atk. Modifiers
+(18560, 4412, 13), -- P. Def. Modifiers
+(18560, 4413, 11), -- M. Def. Modifiers
+(18560, 4414, 2), -- Armor Type
+(18560, 4415, 5), -- Weapon Type
+(18560, 4416, 2), -- Races
 -- Granitick Duerga
 (18561, 4045, 1), -- Resist Full Magic Attack
 (18561, 4188, 3), -- Bleed
-(18561, 4191, 3), -- Wind Strike
-(18561, 4408, 1), -- HP Increase (1x)
-(18561, 4409, 1), -- MP Increase (1x)
-(18561, 4410, 11), -- Average P. Atk.
-(18561, 4411, 11), -- Average M. Atk.
-(18561, 4412, 11), -- Average P. Def.
-(18561, 4413, 11), -- Average M. Def.
-(18561, 4414, 2), -- Standard Type
-(18561, 4415, 5), -- Blunt Weapons
-(18561, 4416, 2), -- Magic Creatures
+(18561, 4191, 3), -- BOSS Wind Strike
+(18561, 4408, 1), -- HP Modifiers
+(18561, 4409, 1), -- MP Modifiers
+(18561, 4410, 11), -- P. Atk. Modifiers
+(18561, 4411, 11), -- M. Atk. Modifiers
+(18561, 4412, 11), -- P. Def. Modifiers
+(18561, 4413, 11), -- M. Def. Modifiers
+(18561, 4414, 2), -- Armor Type
+(18561, 4415, 5), -- Weapon Type
+(18561, 4416, 2), -- Races
 -- Blade Otis
 (18562, 4045, 1), -- Resist Full Magic Attack
-(18562, 4087, 4), -- Blaze
-(18562, 4178, 4), -- Flame Strike
-(18562, 4408, 1), -- HP Increase (1x)
-(18562, 4409, 1), -- MP Increase (1x)
-(18562, 4410, 11), -- Average P. Atk.
-(18562, 4411, 11), -- Average M. Atk.
-(18562, 4412, 14), -- Strong P. Def.
-(18562, 4413, 14), -- Strong M. Def.
-(18562, 4414, 2), -- Standard Type
-(18562, 4415, 3), -- One-handed Sword
-(18562, 4416, 6), -- Humanoids
-(18562, 4641, 4), -- Super Strike
+(18562, 4087, 4), -- NPC Blaze
+(18562, 4178, 4), -- BOSS Flame Strike
+(18562, 4408, 1), -- HP Modifiers
+(18562, 4409, 1), -- MP Modifiers
+(18562, 4410, 11), -- P. Atk. Modifiers
+(18562, 4411, 11), -- M. Atk. Modifiers
+(18562, 4412, 14), -- P. Def. Modifiers
+(18562, 4413, 14), -- M. Def. Modifiers
+(18562, 4414, 2), -- Armor Type
+(18562, 4415, 3), -- Weapon Type
+(18562, 4416, 6), -- Races
+(18562, 4641, 4), -- NPC Super Strike
 (18562, 5597, 1), -- Invalid Skill cancel
 -- Follower of Otis
-(18563, 4065, 1), -- Heal
-(18563, 4209, 6), -- Heal
-(18563, 4408, 11), -- HP Increase (3x)
-(18563, 4409, 1), -- MP Increase (1x)
-(18563, 4410, 14), -- Strong P. Atk.
-(18563, 4411, 11), -- Average M. Atk.
-(18563, 4412, 13), -- Slightly Strong P. Def.
-(18563, 4413, 11), -- Average M. Def.
-(18563, 4414, 2), -- Standard Type
-(18563, 4415, 3), -- One-handed Sword
-(18563, 4416, 6), -- Humanoids
+(18563, 4065, 1), -- NPC Heal
+(18563, 4209, 6), -- BOSS Heal
+(18563, 4408, 11), -- HP Modifiers
+(18563, 4409, 1), -- MP Modifiers
+(18563, 4410, 14), -- P. Atk. Modifiers
+(18563, 4411, 11), -- M. Atk. Modifiers
+(18563, 4412, 13), -- P. Def. Modifiers
+(18563, 4413, 11), -- M. Def. Modifiers
+(18563, 4414, 2), -- Armor Type
+(18563, 4415, 3), -- Weapon Type
+(18563, 4416, 6), -- Races
 -- Weird Bunei
 (18564, 4045, 1), -- Resist Full Magic Attack
 (18564, 4137, 4), -- Hydro Screw
-(18564, 4408, 10), -- HP Increase (2x)
-(18564, 4409, 1), -- MP Increase (1x)
-(18564, 4410, 11), -- Average P. Atk.
-(18564, 4411, 11), -- Average M. Atk.
-(18564, 4412, 14), -- Strong P. Def.
-(18564, 4413, 14), -- Strong M. Def.
-(18564, 4414, 2), -- Standard Type
-(18564, 4415, 1), -- Bare Hands
-(18564, 4416, 10), -- Dragons
-(18564, 5249, 4), -- Dark Circle
+(18564, 4408, 10), -- HP Modifiers
+(18564, 4409, 1), -- MP Modifiers
+(18564, 4410, 11), -- P. Atk. Modifiers
+(18564, 4411, 11), -- M. Atk. Modifiers
+(18564, 4412, 14), -- P. Def. Modifiers
+(18564, 4413, 14), -- M. Def. Modifiers
+(18564, 4414, 2), -- Armor Type
+(18564, 4415, 1), -- Weapon Type
+(18564, 4416, 10), -- Races
+(18564, 5249, 4), -- Boss Dark Circle
 (18564, 5597, 1), -- Invalid Skill cancel
 (18564, 5620, 4), -- Short-Range Physical Attack Weakness
 (18564, 5625, 1), -- Soul Confinement
 -- Brave Martim
 (18565, 4045, 1), -- Resist Full Magic Attack
-(18565, 4101, 10), -- Whirlwind
+(18565, 4101, 10), -- NPC Spinning Slash
 (18565, 4187, 4), -- Decrease Speed
-(18565, 4408, 1), -- HP Increase (1x)
-(18565, 4409, 1), -- MP Increase (1x)
-(18565, 4410, 11), -- Average P. Atk.
-(18565, 4411, 11), -- Average M. Atk.
-(18565, 4412, 11), -- Average P. Def.
-(18565, 4413, 11), -- Average M. Def.
-(18565, 4414, 2), -- Standard Type
-(18565, 4415, 11), -- Spears
-(18565, 4416, 11), -- Giants
+(18565, 4408, 1), -- HP Modifiers
+(18565, 4409, 1), -- MP Modifiers
+(18565, 4410, 11), -- P. Atk. Modifiers
+(18565, 4411, 11), -- M. Atk. Modifiers
+(18565, 4412, 11), -- P. Def. Modifiers
+(18565, 4413, 11), -- M. Def. Modifiers
+(18565, 4414, 2), -- Armor Type
+(18565, 4415, 11), -- Weapon Type
+(18565, 4416, 11), -- Races
 (18565, 5203, 4), -- Fear
-(18565, 5218, 1), -- Teleport
+(18565, 5218, 1), -- Production: Event Teleport
 (18565, 5597, 1), -- Invalid Skill cancel
 -- Kaim Abigore
 (18566, 4045, 1), -- Resist Full Magic Attack
-(18566, 4408, 1), -- HP Increase (1x)
-(18566, 4409, 1), -- MP Increase (1x)
-(18566, 4410, 11), -- Average P. Atk.
-(18566, 4411, 11), -- Average M. Atk.
-(18566, 4412, 14), -- Strong P. Def.
-(18566, 4413, 14), -- Strong M. Def.
-(18566, 4414, 2), -- Standard Type
-(18566, 4415, 3), -- One-handed Sword
-(18566, 4416, 9), -- Demons
-(18566, 5043, 5), -- Super Sonic Blaster
+(18566, 4408, 1), -- HP Modifiers
+(18566, 4409, 1), -- MP Modifiers
+(18566, 4410, 11), -- P. Atk. Modifiers
+(18566, 4411, 11), -- M. Atk. Modifiers
+(18566, 4412, 14), -- P. Def. Modifiers
+(18566, 4413, 14), -- M. Def. Modifiers
+(18566, 4414, 2), -- Armor Type
+(18566, 4415, 3), -- Weapon Type
+(18566, 4416, 9), -- Races
+(18566, 5043, 5), -- NPC Super Sonic Blaster
 (18566, 5260, 5), -- Disarm
 (18566, 5597, 1), -- Invalid Skill cancel
 -- Follower of Abigore
-(18567, 4408, 11), -- HP Increase (3x)
-(18567, 4409, 1), -- MP Increase (1x)
-(18567, 4410, 14), -- Strong P. Atk.
-(18567, 4411, 11), -- Average M. Atk.
-(18567, 4412, 13), -- Slightly Strong P. Def.
-(18567, 4413, 11), -- Average M. Def.
-(18567, 4414, 2), -- Standard Type
-(18567, 4415, 3), -- One-handed Sword
-(18567, 4416, 2), -- Magic Creatures
-(18567, 4614, 6), -- Death Bomb
+(18567, 4408, 11), -- HP Modifiers
+(18567, 4409, 1), -- MP Modifiers
+(18567, 4410, 14), -- P. Atk. Modifiers
+(18567, 4411, 11), -- M. Atk. Modifiers
+(18567, 4412, 13), -- P. Def. Modifiers
+(18567, 4413, 11), -- M. Def. Modifiers
+(18567, 4414, 2), -- Armor Type
+(18567, 4415, 3), -- Weapon Type
+(18567, 4416, 2), -- Races
+(18567, 4614, 6), -- NPC Death Bomb
 -- Knight Montagnar
 (18568, 4045, 1), -- Resist Full Magic Attack
-(18568, 4408, 1), -- HP Increase (1x)
-(18568, 4409, 1), -- MP Increase (1x)
-(18568, 4410, 11), -- Average P. Atk.
-(18568, 4411, 11), -- Average M. Atk.
-(18568, 4412, 14), -- Strong P. Def.
-(18568, 4413, 14), -- Strong M. Def.
-(18568, 4414, 2), -- Standard Type
-(18568, 4415, 3), -- One-handed Sword
-(18568, 4416, 1), -- Undead
-(18568, 5043, 7), -- Super Sonic Blaster
+(18568, 4408, 1), -- HP Modifiers
+(18568, 4409, 1), -- MP Modifiers
+(18568, 4410, 11), -- P. Atk. Modifiers
+(18568, 4411, 11), -- M. Atk. Modifiers
+(18568, 4412, 14), -- P. Def. Modifiers
+(18568, 4413, 14), -- M. Def. Modifiers
+(18568, 4414, 2), -- Armor Type
+(18568, 4415, 3), -- Weapon Type
+(18568, 4416, 1), -- Races
+(18568, 5043, 7), -- NPC Super Sonic Blaster
 (18568, 5597, 1), -- Invalid Skill cancel
 -- Follower of Montagnar
-(18569, 4408, 11), -- HP Increase (3x)
-(18569, 4409, 1), -- MP Increase (1x)
-(18569, 4410, 13), -- Slightly Strong P. Atk.
-(18569, 4411, 11), -- Average M. Atk.
-(18569, 4412, 13), -- Slightly Strong P. Def.
-(18569, 4413, 11), -- Average M. Def.
-(18569, 4414, 2), -- Standard Type
-(18569, 4415, 3), -- One-handed Sword
-(18569, 4416, 4), -- Animals
+(18569, 4408, 11), -- HP Modifiers
+(18569, 4409, 1), -- MP Modifiers
+(18569, 4410, 13), -- P. Atk. Modifiers
+(18569, 4411, 11), -- M. Atk. Modifiers
+(18569, 4412, 13), -- P. Def. Modifiers
+(18569, 4413, 11), -- M. Def. Modifiers
+(18569, 4414, 2), -- Armor Type
+(18569, 4415, 3), -- Weapon Type
+(18569, 4416, 4), -- Races
 -- Summer Yaganitan
 (18570, 4045, 1), -- Resist Full Magic Attack
 (18570, 4169, 5), -- Stun
 (18570, 4187, 5), -- Decrease Speed
-(18570, 4408, 10), -- HP Increase (2x)
-(18570, 4409, 1), -- MP Increase (1x)
-(18570, 4410, 11), -- Average P. Atk.
-(18570, 4411, 11), -- Average M. Atk.
-(18570, 4412, 14), -- Strong P. Def.
-(18570, 4413, 14), -- Strong M. Def.
-(18570, 4414, 2), -- Standard Type
-(18570, 4415, 3), -- One-handed Sword
-(18570, 4416, 5), -- Plants
+(18570, 4408, 10), -- HP Modifiers
+(18570, 4409, 1), -- MP Modifiers
+(18570, 4410, 11), -- P. Atk. Modifiers
+(18570, 4411, 11), -- M. Atk. Modifiers
+(18570, 4412, 14), -- P. Def. Modifiers
+(18570, 4413, 14), -- M. Def. Modifiers
+(18570, 4414, 2), -- Armor Type
+(18570, 4415, 3), -- Weapon Type
+(18570, 4416, 5), -- Races
 (18570, 5597, 1), -- Invalid Skill cancel
 -- Venomous Storace
 (18571, 4045, 1), -- Resist Full Magic Attack
-(18571, 4171, 6), -- Whirlwind
-(18571, 4408, 1), -- HP Increase (1x)
-(18571, 4409, 1), -- MP Increase (1x)
-(18571, 4410, 11), -- Average P. Atk.
-(18571, 4411, 11), -- Average M. Atk.
-(18571, 4412, 11), -- Average P. Def.
-(18571, 4413, 11), -- Average M. Def.
-(18571, 4414, 2), -- Standard Type
-(18571, 4415, 3), -- One-handed Sword
-(18571, 4416, 3), -- Beasts
+(18571, 4171, 6), -- BOSS Spinning Slash
+(18571, 4408, 1), -- HP Modifiers
+(18571, 4409, 1), -- MP Modifiers
+(18571, 4410, 11), -- P. Atk. Modifiers
+(18571, 4411, 11), -- M. Atk. Modifiers
+(18571, 4412, 11), -- P. Def. Modifiers
+(18571, 4413, 11), -- M. Def. Modifiers
+(18571, 4414, 2), -- Armor Type
+(18571, 4415, 3), -- Weapon Type
+(18571, 4416, 3), -- Races
 (18571, 5597, 1), -- Invalid Skill cancel
 -- Follower of Storace
-(18572, 4408, 11), -- HP Increase (3x)
-(18572, 4409, 1), -- MP Increase (1x)
-(18572, 4410, 14), -- Strong P. Atk.
-(18572, 4411, 11), -- Average M. Atk.
-(18572, 4412, 13), -- Slightly Strong P. Def.
-(18572, 4413, 11), -- Average M. Def.
-(18572, 4414, 3), -- Light Armor Type
-(18572, 4415, 3), -- One-handed Sword
-(18572, 4416, 3), -- Beasts
-(18572, 4723, 5), -- Power Strike
+(18572, 4408, 11), -- HP Modifiers
+(18572, 4409, 1), -- MP Modifiers
+(18572, 4410, 14), -- P. Atk. Modifiers
+(18572, 4411, 11), -- M. Atk. Modifiers
+(18572, 4412, 13), -- P. Def. Modifiers
+(18572, 4413, 11), -- M. Def. Modifiers
+(18572, 4414, 3), -- Armor Type
+(18572, 4415, 3), -- Weapon Type
+(18572, 4416, 3), -- Races
+(18572, 4723, 5), -- BOSS Strike
 -- Kel Bilette
 (18573, 4045, 1), -- Resist Full Magic Attack
-(18573, 4244, 6), -- Wild Sweep
-(18573, 4408, 1), -- HP Increase (1x)
-(18573, 4409, 1), -- MP Increase (1x)
-(18573, 4410, 11), -- Average P. Atk.
-(18573, 4411, 11), -- Average M. Atk.
-(18573, 4412, 11), -- Average P. Def.
-(18573, 4413, 11), -- Average M. Def.
-(18573, 4414, 2), -- Standard Type
-(18573, 4415, 3), -- One-handed Sword
-(18573, 4416, 8), -- Angels
+(18573, 4244, 6), -- NPC Wild Sweep
+(18573, 4408, 1), -- HP Modifiers
+(18573, 4409, 1), -- MP Modifiers
+(18573, 4410, 11), -- P. Atk. Modifiers
+(18573, 4411, 11), -- M. Atk. Modifiers
+(18573, 4412, 11), -- P. Def. Modifiers
+(18573, 4413, 11), -- M. Def. Modifiers
+(18573, 4414, 2), -- Armor Type
+(18573, 4415, 3), -- Weapon Type
+(18573, 4416, 8), -- Races
 (18573, 4748, 6), -- Stun
 (18573, 5203, 6), -- Fear
 (18573, 5597, 1), -- Invalid Skill cancel
 -- Follower of Bilette
-(18574, 4065, 6), -- Heal
-(18574, 4408, 12), -- HP Increase (4x)
-(18574, 4409, 1), -- MP Increase (1x)
-(18574, 4410, 17), -- Very Strong P. Atk.
-(18574, 4411, 11), -- Average M. Atk.
-(18574, 4412, 13), -- Slightly Strong P. Def.
-(18574, 4413, 11), -- Average M. Def.
-(18574, 4414, 3), -- Light Armor Type
-(18574, 4415, 5), -- Blunt Weapons
-(18574, 4416, 8), -- Angels
+(18574, 4065, 6), -- NPC Heal
+(18574, 4408, 12), -- HP Modifiers
+(18574, 4409, 1), -- MP Modifiers
+(18574, 4410, 17), -- P. Atk. Modifiers
+(18574, 4411, 11), -- M. Atk. Modifiers
+(18574, 4412, 13), -- P. Def. Modifiers
+(18574, 4413, 11), -- M. Def. Modifiers
+(18574, 4414, 3), -- Armor Type
+(18574, 4415, 5), -- Weapon Type
+(18574, 4416, 8), -- Races
 -- Warlord Tamuze
 (18575, 4045, 1), -- Resist Full Magic Attack
 (18575, 4188, 7), -- Bleed
-(18575, 4408, 9), -- HP Increase (1/2x)
-(18575, 4409, 1), -- MP Increase (1x)
-(18575, 4410, 11), -- Average P. Atk.
-(18575, 4411, 11), -- Average M. Atk.
-(18575, 4412, 11), -- Average P. Def.
-(18575, 4413, 11), -- Average M. Def.
-(18575, 4414, 2), -- Standard Type
-(18575, 4415, 3), -- One-handed Sword
-(18575, 4416, 9), -- Demons
-(18575, 4738, 6), -- Whirlwind
+(18575, 4408, 9), -- HP Modifiers
+(18575, 4409, 1), -- MP Modifiers
+(18575, 4410, 11), -- P. Atk. Modifiers
+(18575, 4411, 11), -- M. Atk. Modifiers
+(18575, 4412, 11), -- P. Def. Modifiers
+(18575, 4413, 11), -- M. Def. Modifiers
+(18575, 4414, 2), -- Armor Type
+(18575, 4415, 3), -- Weapon Type
+(18575, 4416, 9), -- Races
+(18575, 4738, 6), -- BOSS Spinning Slash
 (18575, 5597, 1), -- Invalid Skill cancel
 -- Follower of Tamuze
 (18576, 4045, 1), -- Resist Full Magic Attack
 (18576, 4139, 6), -- Boom Attack
-(18576, 4408, 12), -- HP Increase (4x)
-(18576, 4409, 1), -- MP Increase (1x)
-(18576, 4410, 17), -- Very Strong P. Atk.
-(18576, 4411, 11), -- Average M. Atk.
-(18576, 4412, 13), -- Slightly Strong P. Def.
-(18576, 4413, 11), -- Average M. Def.
-(18576, 4414, 2), -- Standard Type
-(18576, 4415, 1), -- Bare Hands
-(18576, 4416, 1), -- Undead
+(18576, 4408, 12), -- HP Modifiers
+(18576, 4409, 1), -- MP Modifiers
+(18576, 4410, 17), -- P. Atk. Modifiers
+(18576, 4411, 11), -- M. Atk. Modifiers
+(18576, 4412, 13), -- P. Def. Modifiers
+(18576, 4413, 11), -- M. Def. Modifiers
+(18576, 4414, 2), -- Armor Type
+(18576, 4415, 1), -- Weapon Type
+(18576, 4416, 1), -- Races
 (18576, 5479, 1), -- Boss Petrification Resistance
 -- White Allosce
 (18577, 4045, 1), -- Resist Full Magic Attack
-(18577, 4196, 7), -- Decrease Speed
+(18577, 4196, 7), -- Decreases Speed
 (18577, 4200, 7), -- Decrease Atk. Spd.
-(18577, 4408, 1), -- HP Increase (1x)
-(18577, 4409, 1), -- MP Increase (1x)
-(18577, 4410, 11), -- Average P. Atk.
-(18577, 4411, 11), -- Average M. Atk.
-(18577, 4412, 14), -- Strong P. Def.
-(18577, 4413, 14), -- Strong M. Def.
-(18577, 4414, 2), -- Standard Type
-(18577, 4415, 5), -- Blunt Weapons
-(18577, 4416, 2), -- Magic Creatures
+(18577, 4408, 1), -- HP Modifiers
+(18577, 4409, 1), -- MP Modifiers
+(18577, 4410, 11), -- P. Atk. Modifiers
+(18577, 4411, 11), -- M. Atk. Modifiers
+(18577, 4412, 14), -- P. Def. Modifiers
+(18577, 4413, 14), -- M. Def. Modifiers
+(18577, 4414, 2), -- Armor Type
+(18577, 4415, 5), -- Weapon Type
+(18577, 4416, 2), -- Races
 (18577, 5597, 1), -- Invalid Skill cancel
 -- Follower of Allosce
-(18578, 4408, 12), -- HP Increase (4x)
-(18578, 4409, 1), -- MP Increase (1x)
-(18578, 4410, 15), -- Strong P. Atk.
-(18578, 4411, 11), -- Average M. Atk.
-(18578, 4412, 13), -- Slightly Strong P. Def.
-(18578, 4413, 11), -- Average M. Def.
-(18578, 4414, 2), -- Standard Type
-(18578, 4415, 5), -- Blunt Weapons
-(18578, 4416, 2), -- Magic Creatures
+(18578, 4408, 12), -- HP Modifiers
+(18578, 4409, 1), -- MP Modifiers
+(18578, 4410, 15), -- P. Atk. Modifiers
+(18578, 4411, 11), -- M. Atk. Modifiers
+(18578, 4412, 13), -- P. Def. Modifiers
+(18578, 4413, 11), -- M. Def. Modifiers
+(18578, 4414, 2), -- Armor Type
+(18578, 4415, 5), -- Weapon Type
+(18578, 4416, 2), -- Races
 (18578, 5624, 1), -- Soul Confinement
 -- Hunting Ground Keeper
-(18579, 4408, 1), -- HP Increase (1x)
-(18579, 4409, 1), -- MP Increase (1x)
-(18579, 4410, 11), -- Average P. Atk.
-(18579, 4411, 11), -- Average M. Atk.
-(18579, 4412, 7), -- Weak P. Def.
-(18579, 4413, 8), -- Weak M. Def.
-(18579, 4414, 2), -- Standard Type
-(18579, 4415, 6), -- Blunt Weapons
-(18579, 4416, 1), -- Undead
-(18579, 5728, 2), -- Shovel Attack
-(18579, 5729, 2), -- Shovel Whirlwind
+(18579, 4408, 1), -- HP Modifiers
+(18579, 4409, 1), -- MP Modifiers
+(18579, 4410, 11), -- P. Atk. Modifiers
+(18579, 4411, 11), -- M. Atk. Modifiers
+(18579, 4412, 7), -- P. Def. Modifiers
+(18579, 4413, 8), -- M. Def. Modifiers
+(18579, 4414, 2), -- Armor Type
+(18579, 4415, 6), -- Weapon Type
+(18579, 4416, 1), -- Races
+(18579, 5728, 2), -- Shobel Attack
+(18579, 5729, 2), -- Shobel Whirlwind
 -- Cursed Girl
-(18580, 4408, 1), -- HP Increase (1x)
-(18580, 4409, 1), -- MP Increase (1x)
-(18580, 4410, 11), -- Average P. Atk.
-(18580, 4411, 11), -- Average M. Atk.
-(18580, 4412, 7), -- Weak P. Def.
-(18580, 4413, 8), -- Weak M. Def.
-(18580, 4414, 2), -- Standard Type
-(18580, 4415, 3), -- One-handed Sword
-(18580, 4416, 1), -- Undead
+(18580, 4408, 1), -- HP Modifiers
+(18580, 4409, 1), -- MP Modifiers
+(18580, 4410, 11), -- P. Atk. Modifiers
+(18580, 4411, 11), -- M. Atk. Modifiers
+(18580, 4412, 7), -- P. Def. Modifiers
+(18580, 4413, 8), -- M. Def. Modifiers
+(18580, 4414, 2), -- Armor Type
+(18580, 4415, 3), -- Weapon Type
+(18580, 4416, 1), -- Races
 (18580, 5720, 2), -- Blade Cut
 (18580, 5721, 2), -- Blade Strike
 -- Gardener
-(18581, 4408, 1), -- HP Increase (1x)
-(18581, 4409, 1), -- MP Increase (1x)
-(18581, 4410, 11), -- Average P. Atk.
-(18581, 4411, 11), -- Average M. Atk.
-(18581, 4412, 7), -- Weak P. Def.
-(18581, 4413, 8), -- Weak M. Def.
-(18581, 4414, 2), -- Standard Type
-(18581, 4415, 3), -- One-handed Sword
-(18581, 4416, 1), -- Undead
+(18581, 4408, 1), -- HP Modifiers
+(18581, 4409, 1), -- MP Modifiers
+(18581, 4410, 11), -- P. Atk. Modifiers
+(18581, 4411, 11), -- M. Atk. Modifiers
+(18581, 4412, 7), -- P. Def. Modifiers
+(18581, 4413, 8), -- M. Def. Modifiers
+(18581, 4414, 2), -- Armor Type
+(18581, 4415, 3), -- Weapon Type
+(18581, 4416, 1), -- Races
 (18581, 5726, 2), -- Scissors Attack
 (18581, 5727, 2), -- Scissors Strike
 -- Turned Girl
-(18582, 4408, 10), -- HP Increase (2x)
-(18582, 4409, 1), -- MP Increase (1x)
-(18582, 4410, 13), -- Slightly Strong P. Atk.
-(18582, 4411, 12), -- Slightly Strong M. Atk.
-(18582, 4412, 7), -- Weak P. Def.
-(18582, 4413, 8), -- Weak M. Def.
-(18582, 4414, 2), -- Standard Type
-(18582, 4415, 3), -- One-handed Sword
-(18582, 4416, 1), -- Undead
+(18582, 4408, 10), -- HP Modifiers
+(18582, 4409, 1), -- MP Modifiers
+(18582, 4410, 13), -- P. Atk. Modifiers
+(18582, 4411, 12), -- M. Atk. Modifiers
+(18582, 4412, 7), -- P. Def. Modifiers
+(18582, 4413, 8), -- M. Def. Modifiers
+(18582, 4414, 2), -- Armor Type
+(18582, 4415, 3), -- Weapon Type
+(18582, 4416, 1), -- Races
 (18582, 5720, 2), -- Blade Cut
 (18582, 5721, 2), -- Blade Strike
 -- Housekeeper
-(18583, 4408, 1), -- HP Increase (1x)
-(18583, 4409, 1), -- MP Increase (1x)
-(18583, 4410, 11), -- Average P. Atk.
-(18583, 4411, 11), -- Average M. Atk.
-(18583, 4412, 7), -- Weak P. Def.
-(18583, 4413, 8), -- Weak M. Def.
-(18583, 4414, 2), -- Standard Type
-(18583, 4415, 3), -- One-handed Sword
-(18583, 4416, 1), -- Undead
+(18583, 4408, 1), -- HP Modifiers
+(18583, 4409, 1), -- MP Modifiers
+(18583, 4410, 11), -- P. Atk. Modifiers
+(18583, 4411, 11), -- M. Atk. Modifiers
+(18583, 4412, 7), -- P. Def. Modifiers
+(18583, 4413, 8), -- M. Def. Modifiers
+(18583, 4414, 2), -- Armor Type
+(18583, 4415, 3), -- Weapon Type
+(18583, 4416, 1), -- Races
 (18583, 5724, 2), -- Broom Strike
 (18583, 5725, 2), -- Broom Trusting
 -- Turned Boy
-(18584, 4408, 1), -- HP Increase (1x)
-(18584, 4409, 1), -- MP Increase (1x)
-(18584, 4410, 11), -- Average P. Atk.
-(18584, 4411, 11), -- Average M. Atk.
-(18584, 4412, 7), -- Weak P. Def.
-(18584, 4413, 8), -- Weak M. Def.
-(18584, 4414, 2), -- Standard Type
-(18584, 4415, 3), -- One-handed Sword
-(18584, 4416, 1), -- Undead
+(18584, 4408, 1), -- HP Modifiers
+(18584, 4409, 1), -- MP Modifiers
+(18584, 4410, 11), -- P. Atk. Modifiers
+(18584, 4411, 11), -- M. Atk. Modifiers
+(18584, 4412, 7), -- P. Def. Modifiers
+(18584, 4413, 8), -- M. Def. Modifiers
+(18584, 4414, 2), -- Armor Type
+(18584, 4415, 3), -- Weapon Type
+(18584, 4416, 1), -- Races
 (18584, 5722, 3), -- Hammer Assault
 (18584, 5723, 3), -- Hammer Swing
 -- Cursed Girl
-(18585, 4408, 1), -- HP Increase (1x)
-(18585, 4409, 1), -- MP Increase (1x)
-(18585, 4410, 11), -- Average P. Atk.
-(18585, 4411, 11), -- Average M. Atk.
-(18585, 4412, 7), -- Weak P. Def.
-(18585, 4413, 8), -- Weak M. Def.
-(18585, 4414, 2), -- Standard Type
-(18585, 4415, 3), -- One-handed Sword
-(18585, 4416, 1), -- Undead
+(18585, 4408, 1), -- HP Modifiers
+(18585, 4409, 1), -- MP Modifiers
+(18585, 4410, 11), -- P. Atk. Modifiers
+(18585, 4411, 11), -- M. Atk. Modifiers
+(18585, 4412, 7), -- P. Def. Modifiers
+(18585, 4413, 8), -- M. Def. Modifiers
+(18585, 4414, 2), -- Armor Type
+(18585, 4415, 3), -- Weapon Type
+(18585, 4416, 1), -- Races
 (18585, 5720, 3), -- Blade Cut
 (18585, 5721, 3), -- Blade Strike
 -- Gardener
-(18586, 4408, 1), -- HP Increase (1x)
-(18586, 4409, 1), -- MP Increase (1x)
-(18586, 4410, 11), -- Average P. Atk.
-(18586, 4411, 11), -- Average M. Atk.
-(18586, 4412, 7), -- Weak P. Def.
-(18586, 4413, 8), -- Weak M. Def.
-(18586, 4414, 2), -- Standard Type
-(18586, 4415, 3), -- One-handed Sword
-(18586, 4416, 1), -- Undead
+(18586, 4408, 1), -- HP Modifiers
+(18586, 4409, 1), -- MP Modifiers
+(18586, 4410, 11), -- P. Atk. Modifiers
+(18586, 4411, 11), -- M. Atk. Modifiers
+(18586, 4412, 7), -- P. Def. Modifiers
+(18586, 4413, 8), -- M. Def. Modifiers
+(18586, 4414, 2), -- Armor Type
+(18586, 4415, 3), -- Weapon Type
+(18586, 4416, 1), -- Races
 (18586, 5726, 3), -- Scissors Attack
 (18586, 5727, 3), -- Scissors Strike
 -- Begrudged Maid
-(18587, 4408, 1), -- HP Increase (1x)
-(18587, 4409, 1), -- MP Increase (1x)
-(18587, 4410, 11), -- Average P. Atk.
-(18587, 4411, 11), -- Average M. Atk.
-(18587, 4412, 7), -- Weak P. Def.
-(18587, 4413, 8), -- Weak M. Def.
-(18587, 4414, 2), -- Standard Type
-(18587, 4415, 3), -- One-handed Sword
-(18587, 4416, 1), -- Undead
+(18587, 4408, 1), -- HP Modifiers
+(18587, 4409, 1), -- MP Modifiers
+(18587, 4410, 11), -- P. Atk. Modifiers
+(18587, 4411, 11), -- M. Atk. Modifiers
+(18587, 4412, 7), -- P. Def. Modifiers
+(18587, 4413, 8), -- M. Def. Modifiers
+(18587, 4414, 2), -- Armor Type
+(18587, 4415, 3), -- Weapon Type
+(18587, 4416, 1), -- Races
 (18587, 5730, 3), -- Made Fireball
 (18587, 5732, 3), -- Flame Strike
 -- Hunting Ground Keeper
-(18588, 4408, 1), -- HP Increase (1x)
-(18588, 4409, 1), -- MP Increase (1x)
-(18588, 4410, 11), -- Average P. Atk.
-(18588, 4411, 11), -- Average M. Atk.
-(18588, 4412, 7), -- Weak P. Def.
-(18588, 4413, 8), -- Weak M. Def.
-(18588, 4414, 2), -- Standard Type
-(18588, 4415, 6), -- Blunt Weapons
-(18588, 4416, 1), -- Undead
-(18588, 5728, 3), -- Shovel Attack
-(18588, 5729, 3), -- Shovel Whirlwind
+(18588, 4408, 1), -- HP Modifiers
+(18588, 4409, 1), -- MP Modifiers
+(18588, 4410, 11), -- P. Atk. Modifiers
+(18588, 4411, 11), -- M. Atk. Modifiers
+(18588, 4412, 7), -- P. Def. Modifiers
+(18588, 4413, 8), -- M. Def. Modifiers
+(18588, 4414, 2), -- Armor Type
+(18588, 4415, 6), -- Weapon Type
+(18588, 4416, 1), -- Races
+(18588, 5728, 3), -- Shobel Attack
+(18588, 5729, 3), -- Shobel Whirlwind
 -- Cursed Gardener
-(18589, 4408, 1), -- HP Increase (1x)
-(18589, 4409, 1), -- MP Increase (1x)
-(18589, 4410, 11), -- Average P. Atk.
-(18589, 4411, 11), -- Average M. Atk.
-(18589, 4412, 7), -- Weak P. Def.
-(18589, 4413, 8), -- Weak M. Def.
-(18589, 4414, 2), -- Standard Type
-(18589, 4415, 3), -- One-handed Sword
-(18589, 4416, 1), -- Undead
+(18589, 4408, 1), -- HP Modifiers
+(18589, 4409, 1), -- MP Modifiers
+(18589, 4410, 11), -- P. Atk. Modifiers
+(18589, 4411, 11), -- M. Atk. Modifiers
+(18589, 4412, 7), -- P. Def. Modifiers
+(18589, 4413, 8), -- M. Def. Modifiers
+(18589, 4414, 2), -- Armor Type
+(18589, 4415, 3), -- Weapon Type
+(18589, 4416, 1), -- Races
 (18589, 5726, 3), -- Scissors Attack
 (18589, 5727, 3), -- Scissors Strike
 -- Baroness' Employee
-(18590, 4408, 1), -- HP Increase (1x)
-(18590, 4409, 1), -- MP Increase (1x)
-(18590, 4410, 11), -- Average P. Atk.
-(18590, 4411, 11), -- Average M. Atk.
-(18590, 4412, 7), -- Weak P. Def.
-(18590, 4413, 8), -- Weak M. Def.
-(18590, 4414, 2), -- Standard Type
-(18590, 4415, 6), -- Blunt Weapons
-(18590, 4416, 1), -- Undead
-(18590, 5728, 3), -- Shovel Attack
-(18590, 5729, 3), -- Shovel Whirlwind
+(18590, 4408, 1), -- HP Modifiers
+(18590, 4409, 1), -- MP Modifiers
+(18590, 4410, 11), -- P. Atk. Modifiers
+(18590, 4411, 11), -- M. Atk. Modifiers
+(18590, 4412, 7), -- P. Def. Modifiers
+(18590, 4413, 8), -- M. Def. Modifiers
+(18590, 4414, 2), -- Armor Type
+(18590, 4415, 6), -- Weapon Type
+(18590, 4416, 1), -- Races
+(18590, 5728, 3), -- Shobel Attack
+(18590, 5729, 3), -- Shobel Whirlwind
 -- Begrudged Boy
-(18591, 4408, 1), -- HP Increase (1x)
-(18591, 4409, 1), -- MP Increase (1x)
-(18591, 4410, 11), -- Average P. Atk.
-(18591, 4411, 11), -- Average M. Atk.
-(18591, 4412, 7), -- Weak P. Def.
-(18591, 4413, 8), -- Weak M. Def.
-(18591, 4414, 2), -- Standard Type
-(18591, 4415, 3), -- One-handed Sword
-(18591, 4416, 1), -- Undead
+(18591, 4408, 1), -- HP Modifiers
+(18591, 4409, 1), -- MP Modifiers
+(18591, 4410, 11), -- P. Atk. Modifiers
+(18591, 4411, 11), -- M. Atk. Modifiers
+(18591, 4412, 7), -- P. Def. Modifiers
+(18591, 4413, 8), -- M. Def. Modifiers
+(18591, 4414, 2), -- Armor Type
+(18591, 4415, 3), -- Weapon Type
+(18591, 4416, 1), -- Races
 (18591, 5722, 3), -- Hammer Assault
 (18591, 5723, 3), -- Hammer Swing
 -- Kratei's Steward
-(18592, 4408, 1), -- HP Increase (1x)
-(18592, 4409, 1), -- MP Increase (1x)
-(18592, 4410, 11); -- Average P. Atk.
+(18592, 4408, 1), -- HP Modifiers
+(18592, 4409, 1), -- MP Modifiers
+(18592, 4410, 11); -- P. Atk. Modifiers
 
 INSERT INTO `npcskills` VALUES
-(18592, 4411, 11), -- Average M. Atk.
-(18592, 4412, 7), -- Weak P. Def.
-(18592, 4413, 8), -- Weak M. Def.
-(18592, 4414, 2), -- Standard Type
-(18592, 4415, 3), -- One-handed Sword
-(18592, 4416, 1), -- Undead
+(18592, 4411, 11), -- M. Atk. Modifiers
+(18592, 4412, 7), -- P. Def. Modifiers
+(18592, 4413, 8), -- M. Def. Modifiers
+(18592, 4414, 2), -- Armor Type
+(18592, 4415, 3), -- Weapon Type
+(18592, 4416, 1), -- Races
 (18592, 5736, 4), -- Katar Trusting
 (18592, 5737, 4), -- Power Stamp
 (18592, 5738, 4), -- Power Roar
 -- Housekeeper
-(18593, 4408, 1), -- HP Increase (1x)
-(18593, 4409, 1), -- MP Increase (1x)
-(18593, 4410, 11), -- Average P. Atk.
-(18593, 4411, 11), -- Average M. Atk.
-(18593, 4412, 7), -- Weak P. Def.
-(18593, 4413, 8), -- Weak M. Def.
-(18593, 4414, 2), -- Standard Type
-(18593, 4415, 3), -- One-handed Sword
-(18593, 4416, 1), -- Undead
+(18593, 4408, 1), -- HP Modifiers
+(18593, 4409, 1), -- MP Modifiers
+(18593, 4410, 11), -- P. Atk. Modifiers
+(18593, 4411, 11), -- M. Atk. Modifiers
+(18593, 4412, 7), -- P. Def. Modifiers
+(18593, 4413, 8), -- M. Def. Modifiers
+(18593, 4414, 2), -- Armor Type
+(18593, 4415, 3), -- Weapon Type
+(18593, 4416, 1), -- Races
 (18593, 5467, 1), -- Dark Attacks
 (18593, 5724, 4), -- Broom Strike
 (18593, 5725, 4), -- Broom Trusting
 -- Mansion Guide
-(18594, 4408, 1), -- HP Increase (1x)
-(18594, 4409, 1), -- MP Increase (1x)
-(18594, 4410, 11), -- Average P. Atk.
-(18594, 4411, 11), -- Average M. Atk.
-(18594, 4412, 7), -- Weak P. Def.
-(18594, 4413, 8), -- Weak M. Def.
-(18594, 4414, 2), -- Standard Type
-(18594, 4415, 3), -- One-handed Sword
-(18594, 4416, 1), -- Undead
+(18594, 4408, 1), -- HP Modifiers
+(18594, 4409, 1), -- MP Modifiers
+(18594, 4410, 11), -- P. Atk. Modifiers
+(18594, 4411, 11), -- M. Atk. Modifiers
+(18594, 4412, 7), -- P. Def. Modifiers
+(18594, 4413, 8), -- M. Def. Modifiers
+(18594, 4414, 2), -- Armor Type
+(18594, 4415, 3), -- Weapon Type
+(18594, 4416, 1), -- Races
 (18594, 5467, 1), -- Dark Attacks
 (18594, 5724, 4), -- Broom Strike
 (18594, 5725, 4), -- Broom Trusting
 -- Baroness' Employee
-(18595, 4408, 1), -- HP Increase (1x)
-(18595, 4409, 1), -- MP Increase (1x)
-(18595, 4410, 11), -- Average P. Atk.
-(18595, 4411, 11), -- Average M. Atk.
-(18595, 4412, 7), -- Weak P. Def.
-(18595, 4413, 8), -- Weak M. Def.
-(18595, 4414, 2), -- Standard Type
-(18595, 4415, 6), -- Blunt Weapons
-(18595, 4416, 1), -- Undead
+(18595, 4408, 1), -- HP Modifiers
+(18595, 4409, 1), -- MP Modifiers
+(18595, 4410, 11), -- P. Atk. Modifiers
+(18595, 4411, 11), -- M. Atk. Modifiers
+(18595, 4412, 7), -- P. Def. Modifiers
+(18595, 4413, 8), -- M. Def. Modifiers
+(18595, 4414, 2), -- Armor Type
+(18595, 4415, 6), -- Weapon Type
+(18595, 4416, 1), -- Races
 (18595, 5467, 1), -- Dark Attacks
-(18595, 5728, 4), -- Shovel Attack
-(18595, 5729, 4), -- Shovel Whirlwind
+(18595, 5728, 4), -- Shobel Attack
+(18595, 5729, 4), -- Shobel Whirlwind
 -- Cursed Gardener
-(18596, 4408, 1), -- HP Increase (1x)
-(18596, 4409, 1), -- MP Increase (1x)
-(18596, 4410, 11), -- Average P. Atk.
-(18596, 4411, 11), -- Average M. Atk.
-(18596, 4412, 7), -- Weak P. Def.
-(18596, 4413, 8), -- Weak M. Def.
-(18596, 4414, 2), -- Standard Type
-(18596, 4415, 3), -- One-handed Sword
-(18596, 4416, 1), -- Undead
+(18596, 4408, 1), -- HP Modifiers
+(18596, 4409, 1), -- MP Modifiers
+(18596, 4410, 11), -- P. Atk. Modifiers
+(18596, 4411, 11), -- M. Atk. Modifiers
+(18596, 4412, 7), -- P. Def. Modifiers
+(18596, 4413, 8), -- M. Def. Modifiers
+(18596, 4414, 2), -- Armor Type
+(18596, 4415, 3), -- Weapon Type
+(18596, 4416, 1), -- Races
 (18596, 5467, 1), -- Dark Attacks
 (18596, 5726, 4), -- Scissors Attack
 (18596, 5727, 4), -- Scissors Strike
 -- Begrudged Maid
-(18597, 4408, 1), -- HP Increase (1x)
-(18597, 4409, 1), -- MP Increase (1x)
-(18597, 4410, 11), -- Average P. Atk.
-(18597, 4411, 11), -- Average M. Atk.
-(18597, 4412, 7), -- Weak P. Def.
-(18597, 4413, 8), -- Weak M. Def.
-(18597, 4414, 2), -- Standard Type
-(18597, 4415, 3), -- One-handed Sword
-(18597, 4416, 1), -- Undead
+(18597, 4408, 1), -- HP Modifiers
+(18597, 4409, 1), -- MP Modifiers
+(18597, 4410, 11), -- P. Atk. Modifiers
+(18597, 4411, 11), -- M. Atk. Modifiers
+(18597, 4412, 7), -- P. Def. Modifiers
+(18597, 4413, 8), -- M. Def. Modifiers
+(18597, 4414, 2), -- Armor Type
+(18597, 4415, 3), -- Weapon Type
+(18597, 4416, 1), -- Races
 (18597, 5467, 1), -- Dark Attacks
 (18597, 5730, 4), -- Made Fireball
 (18597, 5732, 4), -- Flame Strike
 -- Cursed Head Maid
-(18598, 4408, 1), -- HP Increase (1x)
-(18598, 4409, 1), -- MP Increase (1x)
-(18598, 4410, 11), -- Average P. Atk.
-(18598, 4411, 11), -- Average M. Atk.
-(18598, 4412, 7), -- Weak P. Def.
-(18598, 4413, 8), -- Weak M. Def.
-(18598, 4414, 2), -- Standard Type
-(18598, 4415, 3), -- One-handed Sword
-(18598, 4416, 1), -- Undead
+(18598, 4408, 1), -- HP Modifiers
+(18598, 4409, 1), -- MP Modifiers
+(18598, 4410, 11), -- P. Atk. Modifiers
+(18598, 4411, 11), -- M. Atk. Modifiers
+(18598, 4412, 7), -- P. Def. Modifiers
+(18598, 4413, 8), -- M. Def. Modifiers
+(18598, 4414, 2), -- Armor Type
+(18598, 4415, 3), -- Weapon Type
+(18598, 4416, 1), -- Races
 (18598, 5467, 1), -- Dark Attacks
 (18598, 5730, 5), -- Made Fireball
 (18598, 5731, 5), -- Incense of Death
 (18598, 5732, 5), -- Flame Strike
 -- Mansion Manager
-(18599, 4408, 1), -- HP Increase (1x)
-(18599, 4409, 1), -- MP Increase (1x)
-(18599, 4410, 11), -- Average P. Atk.
-(18599, 4411, 11), -- Average M. Atk.
-(18599, 4412, 7), -- Weak P. Def.
-(18599, 4413, 8), -- Weak M. Def.
-(18599, 4414, 2), -- Standard Type
-(18599, 4415, 3), -- One-handed Sword
-(18599, 4416, 1), -- Undead
+(18599, 4408, 1), -- HP Modifiers
+(18599, 4409, 1), -- MP Modifiers
+(18599, 4410, 11), -- P. Atk. Modifiers
+(18599, 4411, 11), -- M. Atk. Modifiers
+(18599, 4412, 7), -- P. Def. Modifiers
+(18599, 4413, 8), -- M. Def. Modifiers
+(18599, 4414, 2), -- Armor Type
+(18599, 4415, 3), -- Weapon Type
+(18599, 4416, 1), -- Races
 (18599, 5467, 1), -- Dark Attacks
 (18599, 5733, 5), -- Fear of Steward
 (18599, 5734, 5), -- Gust of Wind
 (18599, 5735, 5), -- Curse of Steward
 -- Kratei's Steward
-(18600, 4408, 1), -- HP Increase (1x)
-(18600, 4409, 1), -- MP Increase (1x)
-(18600, 4410, 11), -- Average P. Atk.
-(18600, 4411, 11), -- Average M. Atk.
-(18600, 4412, 7), -- Weak P. Def.
-(18600, 4413, 8), -- Weak M. Def.
-(18600, 4414, 2), -- Standard Type
-(18600, 4415, 3), -- One-handed Sword
-(18600, 4416, 1), -- Undead
+(18600, 4408, 1), -- HP Modifiers
+(18600, 4409, 1), -- MP Modifiers
+(18600, 4410, 11), -- P. Atk. Modifiers
+(18600, 4411, 11), -- M. Atk. Modifiers
+(18600, 4412, 7), -- P. Def. Modifiers
+(18600, 4413, 8), -- M. Def. Modifiers
+(18600, 4414, 2), -- Armor Type
+(18600, 4415, 3), -- Weapon Type
+(18600, 4416, 1), -- Races
 (18600, 5467, 1), -- Dark Attacks
 (18600, 5736, 5), -- Katar Trusting
 (18600, 5737, 5), -- Power Stamp
 (18600, 5738, 5), -- Power Roar
 -- Kratei's Watcher
-(18601, 4408, 1), -- HP Increase (1x)
-(18601, 4409, 1), -- MP Increase (1x)
-(18601, 4410, 11), -- Average P. Atk.
-(18601, 4411, 11), -- Average M. Atk.
-(18601, 4412, 4), -- Extremely Weak P. Def.
-(18601, 4413, 5), -- Very Weak M. Def.
-(18601, 4414, 2), -- Standard Type
-(18601, 4415, 3), -- One-handed Sword
-(18601, 4416, 2), -- Magic Creatures
+(18601, 4408, 1), -- HP Modifiers
+(18601, 4409, 1), -- MP Modifiers
+(18601, 4410, 11), -- P. Atk. Modifiers
+(18601, 4411, 11), -- M. Atk. Modifiers
+(18601, 4412, 4), -- P. Def. Modifiers
+(18601, 4413, 5), -- M. Def. Modifiers
+(18601, 4414, 2), -- Armor Type
+(18601, 4415, 3), -- Weapon Type
+(18601, 4416, 2), -- Races
 -- Kratei's Watcher
-(18602, 4408, 1), -- HP Increase (1x)
-(18602, 4409, 1), -- MP Increase (1x)
-(18602, 4410, 11), -- Average P. Atk.
-(18602, 4411, 11), -- Average M. Atk.
-(18602, 4412, 4), -- Extremely Weak P. Def.
-(18602, 4413, 5), -- Very Weak M. Def.
-(18602, 4414, 2), -- Standard Type
-(18602, 4415, 3), -- One-handed Sword
-(18602, 4416, 2), -- Magic Creatures
+(18602, 4408, 1), -- HP Modifiers
+(18602, 4409, 1), -- MP Modifiers
+(18602, 4410, 11), -- P. Atk. Modifiers
+(18602, 4411, 11), -- M. Atk. Modifiers
+(18602, 4412, 4), -- P. Def. Modifiers
+(18602, 4413, 5), -- M. Def. Modifiers
+(18602, 4414, 2), -- Armor Type
+(18602, 4415, 3), -- Weapon Type
+(18602, 4416, 2), -- Races
 -- 
-(18603, 4408, 1), -- HP Increase (1x)
-(18603, 4409, 1), -- MP Increase (1x)
-(18603, 4410, 11), -- Average P. Atk.
-(18603, 4411, 11), -- Average M. Atk.
-(18603, 4412, 11), -- Average P. Def.
-(18603, 4413, 11), -- Average M. Def.
-(18603, 4414, 2), -- Standard Type
-(18603, 4415, 3), -- One-handed Sword
-(18603, 4416, 2), -- Magic Creatures
+(18603, 4408, 1), -- HP Modifiers
+(18603, 4409, 1), -- MP Modifiers
+(18603, 4410, 11), -- P. Atk. Modifiers
+(18603, 4411, 11), -- M. Atk. Modifiers
+(18603, 4412, 11), -- P. Def. Modifiers
+(18603, 4413, 11), -- M. Def. Modifiers
+(18603, 4414, 2), -- Armor Type
+(18603, 4415, 3), -- Weapon Type
+(18603, 4416, 2), -- Races
 -- 
-(18604, 4408, 1), -- HP Increase (1x)
-(18604, 4409, 1), -- MP Increase (1x)
-(18604, 4410, 11), -- Average P. Atk.
-(18604, 4411, 11), -- Average M. Atk.
-(18604, 4412, 11), -- Average P. Def.
-(18604, 4413, 11), -- Average M. Def.
-(18604, 4414, 2), -- Standard Type
-(18604, 4415, 3), -- One-handed Sword
-(18604, 4416, 2), -- Magic Creatures
+(18604, 4408, 1), -- HP Modifiers
+(18604, 4409, 1), -- MP Modifiers
+(18604, 4410, 11), -- P. Atk. Modifiers
+(18604, 4411, 11), -- M. Atk. Modifiers
+(18604, 4412, 11), -- P. Def. Modifiers
+(18604, 4413, 11), -- M. Def. Modifiers
+(18604, 4414, 2), -- Armor Type
+(18604, 4415, 3), -- Weapon Type
+(18604, 4416, 2), -- Races
 -- 
-(18605, 4408, 1), -- HP Increase (1x)
-(18605, 4409, 1), -- MP Increase (1x)
-(18605, 4410, 11), -- Average P. Atk.
-(18605, 4411, 11), -- Average M. Atk.
-(18605, 4412, 11), -- Average P. Def.
-(18605, 4413, 11), -- Average M. Def.
-(18605, 4414, 2), -- Standard Type
-(18605, 4415, 3), -- One-handed Sword
-(18605, 4416, 2), -- Magic Creatures
+(18605, 4408, 1), -- HP Modifiers
+(18605, 4409, 1), -- MP Modifiers
+(18605, 4410, 11), -- P. Atk. Modifiers
+(18605, 4411, 11), -- M. Atk. Modifiers
+(18605, 4412, 11), -- P. Def. Modifiers
+(18605, 4413, 11), -- M. Def. Modifiers
+(18605, 4414, 2), -- Armor Type
+(18605, 4415, 3), -- Weapon Type
+(18605, 4416, 2), -- Races
 -- 
-(18606, 4408, 1), -- HP Increase (1x)
-(18606, 4409, 1), -- MP Increase (1x)
-(18606, 4410, 11), -- Average P. Atk.
-(18606, 4411, 11), -- Average M. Atk.
-(18606, 4412, 11), -- Average P. Def.
-(18606, 4413, 11), -- Average M. Def.
-(18606, 4414, 2), -- Standard Type
-(18606, 4415, 3), -- One-handed Sword
-(18606, 4416, 2), -- Magic Creatures
+(18606, 4408, 1), -- HP Modifiers
+(18606, 4409, 1), -- MP Modifiers
+(18606, 4410, 11), -- P. Atk. Modifiers
+(18606, 4411, 11), -- M. Atk. Modifiers
+(18606, 4412, 11), -- P. Def. Modifiers
+(18606, 4413, 11), -- M. Def. Modifiers
+(18606, 4414, 2), -- Armor Type
+(18606, 4415, 3), -- Weapon Type
+(18606, 4416, 2), -- Races
 -- Gargos
-(18607, 4032, 3), -- Power Strike
-(18607, 4287, 2), -- Resist Hold Attacks
-(18607, 4408, 1), -- HP Increase (1x)
-(18607, 4409, 1), -- MP Increase (1x)
-(18607, 4410, 11), -- Average P. Atk.
-(18607, 4411, 11), -- Average M. Atk.
-(18607, 4412, 11), -- Average P. Def.
-(18607, 4413, 11), -- Average M. Def.
-(18607, 4414, 2), -- Standard Type
-(18607, 4415, 3), -- One-handed Sword
-(18607, 4416, 9), -- Demons
-(18607, 4664, 4), -- Drain Health
+(18607, 4032, 3), -- NPC Strike
+(18607, 4287, 2), -- Resist Hold
+(18607, 4408, 1), -- HP Modifiers
+(18607, 4409, 1), -- MP Modifiers
+(18607, 4410, 11), -- P. Atk. Modifiers
+(18607, 4411, 11), -- M. Atk. Modifiers
+(18607, 4412, 11), -- P. Def. Modifiers
+(18607, 4413, 11), -- M. Def. Modifiers
+(18607, 4414, 2), -- Armor Type
+(18607, 4415, 3), -- Weapon Type
+(18607, 4416, 9), -- Races
+(18607, 4664, 4), -- NPC 100% HP Drain
 -- Kinsus
-(18608, 4287, 2), -- Resist Hold Attacks
-(18608, 4408, 1), -- HP Increase (1x)
-(18608, 4409, 1), -- MP Increase (1x)
-(18608, 4410, 11), -- Average P. Atk.
-(18608, 4411, 11), -- Average M. Atk.
-(18608, 4412, 11), -- Average P. Def.
-(18608, 4413, 11), -- Average M. Def.
-(18608, 4414, 3), -- Light Armor Type
-(18608, 4415, 1), -- Bare Hands
-(18608, 4416, 9), -- Demons
-(18608, 4664, 4), -- Drain Health
+(18608, 4287, 2), -- Resist Hold
+(18608, 4408, 1), -- HP Modifiers
+(18608, 4409, 1), -- MP Modifiers
+(18608, 4410, 11), -- P. Atk. Modifiers
+(18608, 4411, 11), -- M. Atk. Modifiers
+(18608, 4412, 11), -- P. Def. Modifiers
+(18608, 4413, 11), -- M. Def. Modifiers
+(18608, 4414, 3), -- Armor Type
+(18608, 4415, 1), -- Weapon Type
+(18608, 4416, 9), -- Races
+(18608, 4664, 4), -- NPC 100% HP Drain
 -- Papion
 (18609, 4137, 4), -- Hydro Screw
-(18609, 4287, 2), -- Resist Hold Attacks
-(18609, 4408, 1), -- HP Increase (1x)
-(18609, 4409, 1), -- MP Increase (1x)
-(18609, 4410, 11), -- Average P. Atk.
-(18609, 4411, 11), -- Average M. Atk.
-(18609, 4412, 11), -- Average P. Def.
-(18609, 4413, 11), -- Average M. Def.
-(18609, 4414, 3), -- Light Armor Type
-(18609, 4415, 1), -- Bare Hands
-(18609, 4416, 9), -- Demons
-(18609, 4664, 4), -- Drain Health
+(18609, 4287, 2), -- Resist Hold
+(18609, 4408, 1), -- HP Modifiers
+(18609, 4409, 1), -- MP Modifiers
+(18609, 4410, 11), -- P. Atk. Modifiers
+(18609, 4411, 11), -- M. Atk. Modifiers
+(18609, 4412, 11), -- P. Def. Modifiers
+(18609, 4413, 11), -- M. Def. Modifiers
+(18609, 4414, 3), -- Armor Type
+(18609, 4415, 1), -- Weapon Type
+(18609, 4416, 9), -- Races
+(18609, 4664, 4), -- NPC 100% HP Drain
 -- Hillas
-(18610, 4065, 3), -- Heal
-(18610, 4287, 2), -- Resist Hold Attacks
-(18610, 4408, 1), -- HP Increase (1x)
-(18610, 4409, 10), -- MP Increase (2x)
-(18610, 4410, 11), -- Average P. Atk.
-(18610, 4411, 11), -- Average M. Atk.
-(18610, 4412, 11), -- Average P. Def.
-(18610, 4413, 11), -- Average M. Def.
-(18610, 4414, 2), -- Standard Type
-(18610, 4415, 3), -- One-handed Sword
-(18610, 4416, 7), -- Spirits
-(18610, 4664, 4), -- Drain Health
+(18610, 4065, 3), -- NPC Heal
+(18610, 4287, 2), -- Resist Hold
+(18610, 4408, 1), -- HP Modifiers
+(18610, 4409, 10), -- MP Modifiers
+(18610, 4410, 11), -- P. Atk. Modifiers
+(18610, 4411, 11), -- M. Atk. Modifiers
+(18610, 4412, 11), -- P. Def. Modifiers
+(18610, 4413, 11), -- M. Def. Modifiers
+(18610, 4414, 2), -- Armor Type
+(18610, 4415, 3), -- Weapon Type
+(18610, 4416, 7), -- Races
+(18610, 4664, 4), -- NPC 100% HP Drain
 -- Spirit of Water
 (18611, 4137, 4), -- Hydro Screw
-(18611, 4408, 9), -- HP Increase (1/2x)
-(18611, 4409, 1), -- MP Increase (1x)
-(18611, 4410, 11), -- Average P. Atk.
-(18611, 4411, 11), -- Average M. Atk.
-(18611, 4412, 11), -- Average P. Def.
-(18611, 4413, 11), -- Average M. Def.
-(18611, 4414, 2), -- Standard Type
-(18611, 4415, 3), -- One-handed Sword
-(18611, 4416, 7), -- Spirits
-(18611, 4664, 4), -- Drain Health
+(18611, 4408, 9), -- HP Modifiers
+(18611, 4409, 1), -- MP Modifiers
+(18611, 4410, 11), -- P. Atk. Modifiers
+(18611, 4411, 11), -- M. Atk. Modifiers
+(18611, 4412, 11), -- P. Def. Modifiers
+(18611, 4413, 11), -- M. Def. Modifiers
+(18611, 4414, 2), -- Armor Type
+(18611, 4415, 3), -- Weapon Type
+(18611, 4416, 7), -- Races
+(18611, 4664, 4), -- NPC 100% HP Drain
 (18611, 5773, 1), -- Surrender to Water
 -- Spirit of Water
 (18612, 4137, 4), -- Hydro Screw
-(18612, 4408, 9), -- HP Increase (1/2x)
-(18612, 4409, 1), -- MP Increase (1x)
-(18612, 4410, 11), -- Average P. Atk.
-(18612, 4411, 11), -- Average M. Atk.
-(18612, 4412, 11), -- Average P. Def.
-(18612, 4413, 11), -- Average M. Def.
-(18612, 4414, 2), -- Standard Type
-(18612, 4415, 3), -- One-handed Sword
-(18612, 4416, 7), -- Spirits
-(18612, 4664, 4), -- Drain Health
+(18612, 4408, 9), -- HP Modifiers
+(18612, 4409, 1), -- MP Modifiers
+(18612, 4410, 11), -- P. Atk. Modifiers
+(18612, 4411, 11), -- M. Atk. Modifiers
+(18612, 4412, 11), -- P. Def. Modifiers
+(18612, 4413, 11), -- M. Def. Modifiers
+(18612, 4414, 2), -- Armor Type
+(18612, 4415, 3), -- Weapon Type
+(18612, 4416, 7), -- Races
+(18612, 4664, 4), -- NPC 100% HP Drain
 (18612, 5773, 1), -- Surrender to Water
 -- Spirit of Water
 (18613, 4137, 4), -- Hydro Screw
-(18613, 4408, 9), -- HP Increase (1/2x)
-(18613, 4409, 1), -- MP Increase (1x)
-(18613, 4410, 11), -- Average P. Atk.
-(18613, 4411, 11), -- Average M. Atk.
-(18613, 4412, 11), -- Average P. Def.
-(18613, 4413, 11), -- Average M. Def.
-(18613, 4414, 2), -- Standard Type
-(18613, 4415, 3), -- One-handed Sword
-(18613, 4416, 7), -- Spirits
-(18613, 4664, 4), -- Drain Health
+(18613, 4408, 9), -- HP Modifiers
+(18613, 4409, 1), -- MP Modifiers
+(18613, 4410, 11), -- P. Atk. Modifiers
+(18613, 4411, 11), -- M. Atk. Modifiers
+(18613, 4412, 11), -- P. Def. Modifiers
+(18613, 4413, 11), -- M. Def. Modifiers
+(18613, 4414, 2), -- Armor Type
+(18613, 4415, 3), -- Weapon Type
+(18613, 4416, 7), -- Races
+(18613, 4664, 4), -- NPC 100% HP Drain
 (18613, 5773, 1), -- Surrender to Water
 -- Spirit of Fire
-(18614, 4078, 4), -- Flame Strike
-(18614, 4408, 9), -- HP Increase (1/2x)
-(18614, 4409, 1), -- MP Increase (1x)
-(18614, 4410, 11), -- Average P. Atk.
-(18614, 4411, 11), -- Average M. Atk.
-(18614, 4412, 11), -- Average P. Def.
-(18614, 4413, 11), -- Average M. Def.
-(18614, 4414, 2), -- Standard Type
-(18614, 4415, 3), -- One-handed Sword
-(18614, 4416, 1), -- Undead
-(18614, 4664, 4), -- Drain Health
+(18614, 4078, 4), -- NPC Flamestrike
+(18614, 4408, 9), -- HP Modifiers
+(18614, 4409, 1), -- MP Modifiers
+(18614, 4410, 11), -- P. Atk. Modifiers
+(18614, 4411, 11), -- M. Atk. Modifiers
+(18614, 4412, 11), -- P. Def. Modifiers
+(18614, 4413, 11), -- M. Def. Modifiers
+(18614, 4414, 2), -- Armor Type
+(18614, 4415, 3), -- Weapon Type
+(18614, 4416, 1), -- Races
+(18614, 4664, 4), -- NPC 100% HP Drain
 (18614, 5772, 1), -- Surrender to Fire
 -- Spirit of Fire
-(18615, 4078, 4), -- Flame Strike
-(18615, 4408, 9), -- HP Increase (1/2x)
-(18615, 4409, 1), -- MP Increase (1x)
-(18615, 4410, 11), -- Average P. Atk.
-(18615, 4411, 11), -- Average M. Atk.
-(18615, 4412, 11), -- Average P. Def.
-(18615, 4413, 11), -- Average M. Def.
-(18615, 4414, 2), -- Standard Type
-(18615, 4415, 3), -- One-handed Sword
-(18615, 4416, 9), -- Demons
-(18615, 4664, 4), -- Drain Health
+(18615, 4078, 4), -- NPC Flamestrike
+(18615, 4408, 9), -- HP Modifiers
+(18615, 4409, 1), -- MP Modifiers
+(18615, 4410, 11), -- P. Atk. Modifiers
+(18615, 4411, 11), -- M. Atk. Modifiers
+(18615, 4412, 11), -- P. Def. Modifiers
+(18615, 4413, 11), -- M. Def. Modifiers
+(18615, 4414, 2), -- Armor Type
+(18615, 4415, 3), -- Weapon Type
+(18615, 4416, 9), -- Races
+(18615, 4664, 4), -- NPC 100% HP Drain
 (18615, 5772, 1), -- Surrender to Fire
 -- Bloom
 (18616, 4137, 4), -- Hydro Screw
-(18616, 4408, 9), -- HP Increase (1/2x)
-(18616, 4409, 1), -- MP Increase (1x)
-(18616, 4410, 11), -- Average P. Atk.
-(18616, 4411, 11), -- Average M. Atk.
-(18616, 4412, 11), -- Average P. Def.
-(18616, 4413, 11), -- Average M. Def.
-(18616, 4414, 3), -- Light Armor Type
-(18616, 4415, 5), -- Blunt Weapons
-(18616, 4416, 2), -- Magic Creatures
-(18616, 4664, 4), -- Drain Health
+(18616, 4408, 9), -- HP Modifiers
+(18616, 4409, 1), -- MP Modifiers
+(18616, 4410, 11), -- P. Atk. Modifiers
+(18616, 4411, 11), -- M. Atk. Modifiers
+(18616, 4412, 11), -- P. Def. Modifiers
+(18616, 4413, 11), -- M. Def. Modifiers
+(18616, 4414, 3), -- Armor Type
+(18616, 4415, 5), -- Weapon Type
+(18616, 4416, 2), -- Races
+(18616, 4664, 4), -- NPC 100% HP Drain
 -- 
-(18617, 4408, 9), -- HP Increase (1/2x)
-(18617, 4409, 1), -- MP Increase (1x)
-(18617, 4410, 11), -- Average P. Atk.
-(18617, 4411, 11), -- Average M. Atk.
-(18617, 4412, 11), -- Average P. Def.
-(18617, 4413, 11), -- Average M. Def.
-(18617, 4414, 2), -- Standard Type
-(18617, 4415, 3), -- One-handed Sword
-(18617, 4416, 2), -- Magic Creatures
+(18617, 4408, 9), -- HP Modifiers
+(18617, 4409, 1), -- MP Modifiers
+(18617, 4410, 11), -- P. Atk. Modifiers
+(18617, 4411, 11), -- M. Atk. Modifiers
+(18617, 4412, 11), -- P. Def. Modifiers
+(18617, 4413, 11), -- M. Def. Modifiers
+(18617, 4414, 2), -- Armor Type
+(18617, 4415, 3), -- Weapon Type
+(18617, 4416, 2), -- Races
 -- 
-(18618, 4408, 9), -- HP Increase (1/2x)
-(18618, 4409, 1), -- MP Increase (1x)
-(18618, 4410, 11), -- Average P. Atk.
-(18618, 4411, 11), -- Average M. Atk.
-(18618, 4412, 11), -- Average P. Def.
-(18618, 4413, 11), -- Average M. Def.
-(18618, 4414, 2), -- Standard Type
-(18618, 4415, 3), -- One-handed Sword
-(18618, 4416, 2), -- Magic Creatures
+(18618, 4408, 9), -- HP Modifiers
+(18618, 4409, 1), -- MP Modifiers
+(18618, 4410, 11), -- P. Atk. Modifiers
+(18618, 4411, 11), -- M. Atk. Modifiers
+(18618, 4412, 11), -- P. Def. Modifiers
+(18618, 4413, 11), -- M. Def. Modifiers
+(18618, 4414, 2), -- Armor Type
+(18618, 4415, 3), -- Weapon Type
+(18618, 4416, 2), -- Races
 -- 
-(18619, 4408, 9), -- HP Increase (1/2x)
-(18619, 4409, 1), -- MP Increase (1x)
-(18619, 4410, 11), -- Average P. Atk.
-(18619, 4411, 11), -- Average M. Atk.
-(18619, 4412, 11), -- Average P. Def.
-(18619, 4413, 11), -- Average M. Def.
-(18619, 4414, 2), -- Standard Type
-(18619, 4415, 3), -- One-handed Sword
-(18619, 4416, 2), -- Magic Creatures
+(18619, 4408, 9), -- HP Modifiers
+(18619, 4409, 1), -- MP Modifiers
+(18619, 4410, 11), -- P. Atk. Modifiers
+(18619, 4411, 11), -- M. Atk. Modifiers
+(18619, 4412, 11), -- P. Def. Modifiers
+(18619, 4413, 11), -- M. Def. Modifiers
+(18619, 4414, 2), -- Armor Type
+(18619, 4415, 3), -- Weapon Type
+(18619, 4416, 2), -- Races
 -- Adiantum
-(18620, 4287, 2), -- Resist Hold Attacks
-(18620, 4408, 1), -- HP Increase (1x)
-(18620, 4409, 1), -- MP Increase (1x)
-(18620, 4410, 11), -- Average P. Atk.
-(18620, 4411, 11), -- Average M. Atk.
-(18620, 4412, 11), -- Average P. Def.
-(18620, 4413, 11), -- Average M. Def.
-(18620, 4414, 2), -- Standard Type
-(18620, 4415, 5), -- Blunt Weapons
-(18620, 4416, 3), -- Beasts
+(18620, 4287, 2), -- Resist Hold
+(18620, 4408, 1), -- HP Modifiers
+(18620, 4409, 1), -- MP Modifiers
+(18620, 4410, 11), -- P. Atk. Modifiers
+(18620, 4411, 11), -- M. Atk. Modifiers
+(18620, 4412, 11), -- P. Def. Modifiers
+(18620, 4413, 11), -- M. Def. Modifiers
+(18620, 4414, 2), -- Armor Type
+(18620, 4415, 5), -- Weapon Type
+(18620, 4416, 3), -- Races
 -- 
-(18621, 4408, 9), -- HP Increase (1/2x)
-(18621, 4409, 1), -- MP Increase (1x)
-(18621, 4410, 11), -- Average P. Atk.
-(18621, 4411, 11), -- Average M. Atk.
-(18621, 4412, 11), -- Average P. Def.
-(18621, 4413, 11), -- Average M. Def.
-(18621, 4414, 2), -- Standard Type
-(18621, 4415, 3), -- One-handed Sword
-(18621, 4416, 2), -- Magic Creatures
+(18621, 4408, 9), -- HP Modifiers
+(18621, 4409, 1), -- MP Modifiers
+(18621, 4410, 11), -- P. Atk. Modifiers
+(18621, 4411, 11), -- M. Atk. Modifiers
+(18621, 4412, 11), -- P. Def. Modifiers
+(18621, 4413, 11), -- M. Def. Modifiers
+(18621, 4414, 2), -- Armor Type
+(18621, 4415, 3), -- Weapon Type
+(18621, 4416, 2), -- Races
 -- Powder Keg
-(18622, 4408, 9), -- HP Increase (1/2x)
-(18622, 4409, 1), -- MP Increase (1x)
-(18622, 4410, 11), -- Average P. Atk.
-(18622, 4411, 11), -- Average M. Atk.
-(18622, 4412, 11), -- Average P. Def.
-(18622, 4413, 11), -- Average M. Def.
-(18622, 4414, 2), -- Standard Type
-(18622, 4415, 3), -- One-handed Sword
-(18622, 4416, 2), -- Magic Creatures
+(18622, 4408, 9), -- HP Modifiers
+(18622, 4409, 1), -- MP Modifiers
+(18622, 4410, 11), -- P. Atk. Modifiers
+(18622, 4411, 11), -- M. Atk. Modifiers
+(18622, 4412, 11), -- P. Def. Modifiers
+(18622, 4413, 11), -- M. Def. Modifiers
+(18622, 4414, 2), -- Armor Type
+(18622, 4415, 3), -- Weapon Type
+(18622, 4416, 2), -- Races
 -- Begrudged Archer
-(18623, 4120, 6), -- Stun
-(18623, 4408, 9), -- HP Increase (1/2x)
-(18623, 4409, 1), -- MP Increase (1x)
-(18623, 4410, 11), -- Average P. Atk.
-(18623, 4411, 11), -- Average M. Atk.
-(18623, 4412, 11), -- Average P. Def.
-(18623, 4413, 11), -- Average M. Def.
-(18623, 4414, 3), -- Light Armor Type
-(18623, 4415, 9), -- Bows
-(18623, 4416, 1), -- Undead
+(18623, 4120, 6), -- Shock
+(18623, 4408, 9), -- HP Modifiers
+(18623, 4409, 1), -- MP Modifiers
+(18623, 4410, 11), -- P. Atk. Modifiers
+(18623, 4411, 11), -- M. Atk. Modifiers
+(18623, 4412, 11), -- P. Def. Modifiers
+(18623, 4413, 11), -- M. Def. Modifiers
+(18623, 4414, 3), -- Armor Type
+(18623, 4415, 9), -- Weapon Type
+(18623, 4416, 1), -- Races
 -- Deadman's Grudge
-(18624, 4408, 9), -- HP Increase (1/2x)
-(18624, 4409, 1), -- MP Increase (1x)
-(18624, 4410, 11), -- Average P. Atk.
-(18624, 4411, 11), -- Average M. Atk.
-(18624, 4412, 11), -- Average P. Def.
-(18624, 4413, 11), -- Average M. Def.
-(18624, 4414, 1), -- Heavy Armor Type
-(18624, 4415, 7), -- Daggers
-(18624, 4416, 1), -- Undead
-(18624, 4664, 6), -- Drain Health
+(18624, 4408, 9), -- HP Modifiers
+(18624, 4409, 1), -- MP Modifiers
+(18624, 4410, 11), -- P. Atk. Modifiers
+(18624, 4411, 11), -- M. Atk. Modifiers
+(18624, 4412, 11), -- P. Def. Modifiers
+(18624, 4413, 11), -- M. Def. Modifiers
+(18624, 4414, 1), -- Armor Type
+(18624, 4415, 7), -- Weapon Type
+(18624, 4416, 1), -- Races
+(18624, 4664, 6), -- NPC 100% HP Drain
 (18624, 5706, 1), -- Poison
 (18624, 5707, 1), -- Paralysis
 -- Deadman's Grudge
-(18625, 4408, 9), -- HP Increase (1/2x)
-(18625, 4409, 1), -- MP Increase (1x)
-(18625, 4410, 11), -- Average P. Atk.
-(18625, 4411, 11), -- Average M. Atk.
-(18625, 4412, 11), -- Average P. Def.
-(18625, 4413, 11), -- Average M. Def.
-(18625, 4414, 2), -- Standard Type
-(18625, 4415, 3), -- One-handed Sword
-(18625, 4416, 1), -- Undead
-(18625, 4664, 7), -- Drain Health
+(18625, 4408, 9), -- HP Modifiers
+(18625, 4409, 1), -- MP Modifiers
+(18625, 4410, 11), -- P. Atk. Modifiers
+(18625, 4411, 11), -- M. Atk. Modifiers
+(18625, 4412, 11), -- P. Def. Modifiers
+(18625, 4413, 11), -- M. Def. Modifiers
+(18625, 4414, 2), -- Armor Type
+(18625, 4415, 3), -- Weapon Type
+(18625, 4416, 1), -- Races
+(18625, 4664, 7), -- NPC 100% HP Drain
 (18625, 5706, 1), -- Poison
 (18625, 5707, 1), -- Paralysis
 -- Deadman's Grudge
-(18626, 4408, 9), -- HP Increase (1/2x)
-(18626, 4409, 1), -- MP Increase (1x)
-(18626, 4410, 11), -- Average P. Atk.
-(18626, 4411, 11), -- Average M. Atk.
-(18626, 4412, 11), -- Average P. Def.
-(18626, 4413, 11), -- Average M. Def.
-(18626, 4414, 2), -- Standard Type
-(18626, 4415, 7), -- Daggers
-(18626, 4416, 1), -- Undead
-(18626, 4664, 7), -- Drain Health
+(18626, 4408, 9), -- HP Modifiers
+(18626, 4409, 1), -- MP Modifiers
+(18626, 4410, 11), -- P. Atk. Modifiers
+(18626, 4411, 11), -- M. Atk. Modifiers
+(18626, 4412, 11), -- P. Def. Modifiers
+(18626, 4413, 11), -- M. Def. Modifiers
+(18626, 4414, 2), -- Armor Type
+(18626, 4415, 7), -- Weapon Type
+(18626, 4416, 1), -- Races
+(18626, 4664, 7), -- NPC 100% HP Drain
 (18626, 5706, 1), -- Poison
 (18626, 5707, 1), -- Paralysis
 -- Deadman's Grudge
-(18627, 4408, 9), -- HP Increase (1/2x)
-(18627, 4409, 1), -- MP Increase (1x)
-(18627, 4410, 11), -- Average P. Atk.
-(18627, 4411, 11), -- Average M. Atk.
-(18627, 4412, 11), -- Average P. Def.
-(18627, 4413, 11), -- Average M. Def.
-(18627, 4414, 2), -- Standard Type
-(18627, 4415, 3), -- One-handed Sword
-(18627, 4416, 1), -- Undead
-(18627, 4664, 7), -- Drain Health
+(18627, 4408, 9), -- HP Modifiers
+(18627, 4409, 1), -- MP Modifiers
+(18627, 4410, 11), -- P. Atk. Modifiers
+(18627, 4411, 11), -- M. Atk. Modifiers
+(18627, 4412, 11), -- P. Def. Modifiers
+(18627, 4413, 11), -- M. Def. Modifiers
+(18627, 4414, 2), -- Armor Type
+(18627, 4415, 3), -- Weapon Type
+(18627, 4416, 1), -- Races
+(18627, 4664, 7), -- NPC 100% HP Drain
 (18627, 5706, 1), -- Poison
 (18627, 5707, 1), -- Paralysis
 -- Atan
-(18628, 4287, 3), -- Resist Hold Attacks
-(18628, 4408, 9), -- HP Increase (1/2x)
-(18628, 4409, 1), -- MP Increase (1x)
-(18628, 4410, 11), -- Average P. Atk.
-(18628, 4411, 11), -- Average M. Atk.
-(18628, 4412, 11), -- Average P. Def.
-(18628, 4413, 11), -- Average M. Def.
-(18628, 4414, 2), -- Standard Type
-(18628, 4415, 7), -- Daggers
-(18628, 4416, 1), -- Undead
+(18628, 4287, 3), -- Resist Hold
+(18628, 4408, 9), -- HP Modifiers
+(18628, 4409, 1), -- MP Modifiers
+(18628, 4410, 11), -- P. Atk. Modifiers
+(18628, 4411, 11), -- M. Atk. Modifiers
+(18628, 4412, 11), -- P. Def. Modifiers
+(18628, 4413, 11), -- M. Def. Modifiers
+(18628, 4414, 2), -- Armor Type
+(18628, 4415, 7), -- Weapon Type
+(18628, 4416, 1), -- Races
 (18628, 4582, 7), -- Poison
-(18628, 4664, 7), -- Drain Health
+(18628, 4664, 7), -- NPC 100% HP Drain
 -- Kams
-(18629, 4032, 7), -- Power Strike
-(18629, 4287, 3), -- Resist Hold Attacks
-(18629, 4408, 1), -- HP Increase (1x)
-(18629, 4409, 1), -- MP Increase (1x)
-(18629, 4410, 11), -- Average P. Atk.
-(18629, 4411, 11), -- Average M. Atk.
-(18629, 4412, 11), -- Average P. Def.
-(18629, 4413, 11), -- Average M. Def.
-(18629, 4414, 2), -- Standard Type
-(18629, 4415, 3), -- One-handed Sword
-(18629, 4416, 1), -- Undead
+(18629, 4032, 7), -- NPC Strike
+(18629, 4287, 3), -- Resist Hold
+(18629, 4408, 1), -- HP Modifiers
+(18629, 4409, 1), -- MP Modifiers
+(18629, 4410, 11), -- P. Atk. Modifiers
+(18629, 4411, 11), -- M. Atk. Modifiers
+(18629, 4412, 11), -- P. Def. Modifiers
+(18629, 4413, 11), -- M. Def. Modifiers
+(18629, 4414, 2), -- Armor Type
+(18629, 4415, 3), -- Weapon Type
+(18629, 4416, 1), -- Races
 (18629, 4582, 7), -- Poison
-(18629, 4664, 7), -- Drain Health
+(18629, 4664, 7), -- NPC 100% HP Drain
 -- Hikoro
-(18630, 4032, 7), -- Power Strike
-(18630, 4287, 3), -- Resist Hold Attacks
-(18630, 4408, 1), -- HP Increase (1x)
-(18630, 4409, 1), -- MP Increase (1x)
-(18630, 4410, 11), -- Average P. Atk.
-(18630, 4411, 11), -- Average M. Atk.
-(18630, 4412, 11), -- Average P. Def.
-(18630, 4413, 11), -- Average M. Def.
-(18630, 4414, 3), -- Light Armor Type
-(18630, 4415, 3), -- One-handed Sword
-(18630, 4416, 1), -- Undead
+(18630, 4032, 7), -- NPC Strike
+(18630, 4287, 3), -- Resist Hold
+(18630, 4408, 1), -- HP Modifiers
+(18630, 4409, 1), -- MP Modifiers
+(18630, 4410, 11), -- P. Atk. Modifiers
+(18630, 4411, 11), -- M. Atk. Modifiers
+(18630, 4412, 11), -- P. Def. Modifiers
+(18630, 4413, 11), -- M. Def. Modifiers
+(18630, 4414, 3), -- Armor Type
+(18630, 4415, 3), -- Weapon Type
+(18630, 4416, 1), -- Races
 (18630, 4579, 7), -- Bleed
-(18630, 4664, 7), -- Drain Health
+(18630, 4664, 7), -- NPC 100% HP Drain
 -- Alkaso
-(18631, 4032, 7), -- Power Strike
-(18631, 4287, 3), -- Resist Hold Attacks
-(18631, 4408, 1), -- HP Increase (1x)
-(18631, 4409, 1), -- MP Increase (1x)
-(18631, 4410, 11), -- Average P. Atk.
-(18631, 4411, 11), -- Average M. Atk.
-(18631, 4412, 11), -- Average P. Def.
-(18631, 4413, 11), -- Average M. Def.
-(18631, 4414, 2), -- Standard Type
-(18631, 4415, 7), -- Daggers
-(18631, 4416, 1), -- Undead
+(18631, 4032, 7), -- NPC Strike
+(18631, 4287, 3), -- Resist Hold
+(18631, 4408, 1), -- HP Modifiers
+(18631, 4409, 1), -- MP Modifiers
+(18631, 4410, 11), -- P. Atk. Modifiers
+(18631, 4411, 11), -- M. Atk. Modifiers
+(18631, 4412, 11), -- P. Def. Modifiers
+(18631, 4413, 11), -- M. Def. Modifiers
+(18631, 4414, 2), -- Armor Type
+(18631, 4415, 7), -- Weapon Type
+(18631, 4416, 1), -- Races
 (18631, 4582, 7), -- Poison
-(18631, 4664, 7), -- Drain Health
+(18631, 4664, 7), -- NPC 100% HP Drain
 -- Gerbera
-(18632, 4032, 7), -- Power Strike
-(18632, 4287, 3), -- Resist Hold Attacks
-(18632, 4408, 1), -- HP Increase (1x)
-(18632, 4409, 1), -- MP Increase (1x)
-(18632, 4410, 11), -- Average P. Atk.
-(18632, 4411, 11), -- Average M. Atk.
-(18632, 4412, 11), -- Average P. Def.
-(18632, 4413, 11), -- Average M. Def.
-(18632, 4414, 3), -- Light Armor Type
-(18632, 4415, 3), -- One-handed Sword
-(18632, 4416, 1), -- Undead
+(18632, 4032, 7), -- NPC Strike
+(18632, 4287, 3), -- Resist Hold
+(18632, 4408, 1), -- HP Modifiers
+(18632, 4409, 1), -- MP Modifiers
+(18632, 4410, 11), -- P. Atk. Modifiers
+(18632, 4411, 11), -- M. Atk. Modifiers
+(18632, 4412, 11), -- P. Def. Modifiers
+(18632, 4413, 11), -- M. Def. Modifiers
+(18632, 4414, 3), -- Armor Type
+(18632, 4415, 3), -- Weapon Type
+(18632, 4416, 1), -- Races
 (18632, 4579, 7), -- Bleed
-(18632, 4664, 7), -- Drain Health
+(18632, 4664, 7), -- NPC 100% HP Drain
 -- Lematan
-(18633, 4287, 3), -- Resist Hold Attacks
-(18633, 4408, 1), -- HP Increase (1x)
-(18633, 4409, 1), -- MP Increase (1x)
-(18633, 4410, 11), -- Average P. Atk.
-(18633, 4411, 11), -- Average M. Atk.
-(18633, 4412, 11), -- Average P. Def.
-(18633, 4413, 11), -- Average M. Def.
-(18633, 4414, 2), -- Standard Type
-(18633, 4415, 3), -- One-handed Sword
-(18633, 4416, 10), -- Dragons
+(18633, 4287, 3), -- Resist Hold
+(18633, 4408, 1), -- HP Modifiers
+(18633, 4409, 1), -- MP Modifiers
+(18633, 4410, 11), -- P. Atk. Modifiers
+(18633, 4411, 11), -- M. Atk. Modifiers
+(18633, 4412, 11), -- P. Def. Modifiers
+(18633, 4413, 11), -- M. Def. Modifiers
+(18633, 4414, 2), -- Armor Type
+(18633, 4415, 3), -- Weapon Type
+(18633, 4416, 10), -- Races
 -- Lematan's Follower
-(18634, 4408, 1), -- HP Increase (1x)
-(18634, 4409, 1), -- MP Increase (1x)
-(18634, 4410, 11), -- Average P. Atk.
-(18634, 4411, 11), -- Average M. Atk.
-(18634, 4412, 11), -- Average P. Def.
-(18634, 4413, 11), -- Average M. Def.
-(18634, 4414, 2), -- Standard Type
-(18634, 4415, 7), -- Daggers
-(18634, 4416, 1), -- Undead
+(18634, 4408, 1), -- HP Modifiers
+(18634, 4409, 1), -- MP Modifiers
+(18634, 4410, 11), -- P. Atk. Modifiers
+(18634, 4411, 11), -- M. Atk. Modifiers
+(18634, 4412, 11), -- P. Def. Modifiers
+(18634, 4413, 11), -- M. Def. Modifiers
+(18634, 4414, 2), -- Armor Type
+(18634, 4415, 7), -- Weapon Type
+(18634, 4416, 1), -- Races
 -- Varka Silenos Recruit
-(18635, 4408, 1), -- HP Increase (1x)
-(18635, 4409, 1), -- MP Increase (1x)
-(18635, 4410, 11), -- Average P. Atk.
-(18635, 4411, 11), -- Average M. Atk.
-(18635, 4412, 11), -- Average P. Def.
-(18635, 4413, 11), -- Average M. Def.
-(18635, 4414, 2), -- Standard Type
-(18635, 4415, 13), -- Two-handed Sword
-(18635, 4416, 6), -- Humanoids
-(18635, 4560, 7), -- Fire Burn
-(18635, 4563, 7), -- Solar Flare
+(18635, 4408, 1), -- HP Modifiers
+(18635, 4409, 1), -- MP Modifiers
+(18635, 4410, 11), -- P. Atk. Modifiers
+(18635, 4411, 11), -- M. Atk. Modifiers
+(18635, 4412, 11), -- P. Def. Modifiers
+(18635, 4413, 11), -- M. Def. Modifiers
+(18635, 4414, 2), -- Armor Type
+(18635, 4415, 13), -- Weapon Type
+(18635, 4416, 6), -- Races
+(18635, 4560, 7), -- NPC Fire Burn
+(18635, 4563, 7), -- NPC Solar Flare - Magic
 -- Varka Silenos Footman
-(18636, 4408, 1), -- HP Increase (1x)
-(18636, 4409, 1), -- MP Increase (1x)
-(18636, 4410, 11), -- Average P. Atk.
-(18636, 4411, 11), -- Average M. Atk.
-(18636, 4412, 11), -- Average P. Def.
-(18636, 4413, 11), -- Average M. Def.
-(18636, 4414, 2), -- Standard Type
-(18636, 4415, 13), -- Two-handed Sword
-(18636, 4416, 6), -- Humanoids
-(18636, 4563, 7), -- Solar Flare
+(18636, 4408, 1), -- HP Modifiers
+(18636, 4409, 1), -- MP Modifiers
+(18636, 4410, 11), -- P. Atk. Modifiers
+(18636, 4411, 11), -- M. Atk. Modifiers
+(18636, 4412, 11), -- P. Def. Modifiers
+(18636, 4413, 11), -- M. Def. Modifiers
+(18636, 4414, 2), -- Armor Type
+(18636, 4415, 13), -- Weapon Type
+(18636, 4416, 6), -- Races
+(18636, 4563, 7), -- NPC Solar Flare - Magic
 -- Grazing Antelope
-(18637, 4067, 7), -- Blow
-(18637, 4408, 1), -- HP Increase (1x)
-(18637, 4409, 1), -- MP Increase (1x)
-(18637, 4410, 11), -- Average P. Atk.
-(18637, 4411, 11), -- Average M. Atk.
-(18637, 4412, 11), -- Average P. Def.
-(18637, 4413, 11), -- Average M. Def.
-(18637, 4414, 2), -- Standard Type
-(18637, 4415, 3), -- One-handed Sword
-(18637, 4416, 4), -- Animals
+(18637, 4067, 7), -- NPC Mortal Blow
+(18637, 4408, 1), -- HP Modifiers
+(18637, 4409, 1), -- MP Modifiers
+(18637, 4410, 11), -- P. Atk. Modifiers
+(18637, 4411, 11), -- M. Atk. Modifiers
+(18637, 4412, 11), -- P. Def. Modifiers
+(18637, 4413, 11), -- M. Def. Modifiers
+(18637, 4414, 2), -- Armor Type
+(18637, 4415, 3), -- Weapon Type
+(18637, 4416, 4), -- Races
 -- Varka Silenos Scout
-(18638, 4408, 1), -- HP Increase (1x)
-(18638, 4409, 1), -- MP Increase (1x)
-(18638, 4410, 11), -- Average P. Atk.
-(18638, 4411, 11), -- Average M. Atk.
-(18638, 4412, 11), -- Average P. Def.
-(18638, 4413, 11), -- Average M. Def.
-(18638, 4414, 2), -- Standard Type
-(18638, 4415, 13), -- Two-handed Sword
-(18638, 4416, 6), -- Humanoids
-(18638, 4563, 7), -- Solar Flare
+(18638, 4408, 1), -- HP Modifiers
+(18638, 4409, 1), -- MP Modifiers
+(18638, 4410, 11), -- P. Atk. Modifiers
+(18638, 4411, 11), -- M. Atk. Modifiers
+(18638, 4412, 11), -- P. Def. Modifiers
+(18638, 4413, 11), -- M. Def. Modifiers
+(18638, 4414, 2), -- Armor Type
+(18638, 4415, 13), -- Weapon Type
+(18638, 4416, 6), -- Races
+(18638, 4563, 7), -- NPC Solar Flare - Magic
 -- Varka Silenos Hunter
-(18639, 4408, 1), -- HP Increase (1x)
-(18639, 4409, 1), -- MP Increase (1x)
-(18639, 4410, 11), -- Average P. Atk.
-(18639, 4411, 11), -- Average M. Atk.
-(18639, 4412, 11), -- Average P. Def.
-(18639, 4413, 11), -- Average M. Def.
-(18639, 4414, 2), -- Standard Type
-(18639, 4415, 9), -- Bows
-(18639, 4416, 6), -- Humanoids
-(18639, 4563, 7), -- Solar Flare
+(18639, 4408, 1), -- HP Modifiers
+(18639, 4409, 1), -- MP Modifiers
+(18639, 4410, 11), -- P. Atk. Modifiers
+(18639, 4411, 11), -- M. Atk. Modifiers
+(18639, 4412, 11), -- P. Def. Modifiers
+(18639, 4413, 11), -- M. Def. Modifiers
+(18639, 4414, 2), -- Armor Type
+(18639, 4415, 9), -- Weapon Type
+(18639, 4416, 6), -- Races
+(18639, 4563, 7), -- NPC Solar Flare - Magic
 -- Varka Silenos Shaman
-(18640, 4160, 8), -- Aura Burn
-(18640, 4408, 1), -- HP Increase (1x)
-(18640, 4409, 1), -- MP Increase (1x)
-(18640, 4410, 11), -- Average P. Atk.
-(18640, 4411, 11), -- Average M. Atk.
-(18640, 4412, 11), -- Average P. Def.
-(18640, 4413, 11), -- Average M. Def.
-(18640, 4414, 3), -- Light Armor Type
-(18640, 4415, 6), -- Blunt Weapons
-(18640, 4416, 6), -- Humanoids
-(18640, 4563, 7), -- Solar Flare
+(18640, 4160, 8), -- NPC Aura Burn - Magic
+(18640, 4408, 1), -- HP Modifiers
+(18640, 4409, 1), -- MP Modifiers
+(18640, 4410, 11), -- P. Atk. Modifiers
+(18640, 4411, 11), -- M. Atk. Modifiers
+(18640, 4412, 11), -- P. Def. Modifiers
+(18640, 4413, 11), -- M. Def. Modifiers
+(18640, 4414, 3), -- Armor Type
+(18640, 4415, 6), -- Weapon Type
+(18640, 4416, 6), -- Races
+(18640, 4563, 7), -- NPC Solar Flare - Magic
 -- Varka Silenos Priest
-(18641, 4408, 1), -- HP Increase (1x)
-(18641, 4409, 1), -- MP Increase (1x)
-(18641, 4410, 11), -- Average P. Atk.
-(18641, 4411, 11), -- Average M. Atk.
-(18641, 4412, 11), -- Average P. Def.
-(18641, 4413, 11), -- Average M. Def.
-(18641, 4414, 2), -- Standard Type
-(18641, 4415, 3), -- One-handed Sword
-(18641, 4416, 6), -- Humanoids
-(18641, 4560, 7), -- Fire Burn
-(18641, 4563, 7), -- Solar Flare
+(18641, 4408, 1), -- HP Modifiers
+(18641, 4409, 1), -- MP Modifiers
+(18641, 4410, 11), -- P. Atk. Modifiers
+(18641, 4411, 11), -- M. Atk. Modifiers
+(18641, 4412, 11), -- P. Def. Modifiers
+(18641, 4413, 11), -- M. Def. Modifiers
+(18641, 4414, 2), -- Armor Type
+(18641, 4415, 3), -- Weapon Type
+(18641, 4416, 6), -- Races
+(18641, 4560, 7), -- NPC Fire Burn
+(18641, 4563, 7), -- NPC Solar Flare - Magic
 -- Varka Silenos Warrior
-(18642, 4408, 1), -- HP Increase (1x)
-(18642, 4409, 1), -- MP Increase (1x)
-(18642, 4410, 11), -- Average P. Atk.
-(18642, 4411, 11), -- Average M. Atk.
-(18642, 4412, 11), -- Average P. Def.
-(18642, 4413, 11), -- Average M. Def.
-(18642, 4414, 2), -- Standard Type
-(18642, 4415, 13), -- Two-handed Sword
-(18642, 4416, 6), -- Humanoids
-(18642, 4563, 7), -- Solar Flare
+(18642, 4408, 1), -- HP Modifiers
+(18642, 4409, 1), -- MP Modifiers
+(18642, 4410, 11), -- P. Atk. Modifiers
+(18642, 4411, 11), -- M. Atk. Modifiers
+(18642, 4412, 11), -- P. Def. Modifiers
+(18642, 4413, 11), -- M. Def. Modifiers
+(18642, 4414, 2), -- Armor Type
+(18642, 4415, 13), -- Weapon Type
+(18642, 4416, 6), -- Races
+(18642, 4563, 7), -- NPC Solar Flare - Magic
 -- Grazing Antelope
-(18643, 4067, 7), -- Blow
-(18643, 4408, 1), -- HP Increase (1x)
-(18643, 4409, 1), -- MP Increase (1x)
-(18643, 4410, 11), -- Average P. Atk.
-(18643, 4411, 11), -- Average M. Atk.
-(18643, 4412, 11), -- Average P. Def.
-(18643, 4413, 11), -- Average M. Def.
-(18643, 4414, 2), -- Standard Type
-(18643, 4415, 3), -- One-handed Sword
-(18643, 4416, 4), -- Animals
+(18643, 4067, 7), -- NPC Mortal Blow
+(18643, 4408, 1), -- HP Modifiers
+(18643, 4409, 1), -- MP Modifiers
+(18643, 4410, 11), -- P. Atk. Modifiers
+(18643, 4411, 11), -- M. Atk. Modifiers
+(18643, 4412, 11), -- P. Def. Modifiers
+(18643, 4413, 11), -- M. Def. Modifiers
+(18643, 4414, 2), -- Armor Type
+(18643, 4415, 3), -- Weapon Type
+(18643, 4416, 4), -- Races
 -- Varka Silenos Medium
-(18644, 4160, 7), -- Aura Burn
-(18644, 4408, 1), -- HP Increase (1x)
-(18644, 4409, 1), -- MP Increase (1x)
-(18644, 4410, 11), -- Average P. Atk.
-(18644, 4411, 11), -- Average M. Atk.
-(18644, 4412, 11), -- Average P. Def.
-(18644, 4413, 11), -- Average M. Def.
-(18644, 4414, 3), -- Light Armor Type
-(18644, 4415, 6), -- Blunt Weapons
-(18644, 4416, 6), -- Humanoids
-(18644, 4563, 7), -- Solar Flare
+(18644, 4160, 7), -- NPC Aura Burn - Magic
+(18644, 4408, 1), -- HP Modifiers
+(18644, 4409, 1), -- MP Modifiers
+(18644, 4410, 11), -- P. Atk. Modifiers
+(18644, 4411, 11), -- M. Atk. Modifiers
+(18644, 4412, 11), -- P. Def. Modifiers
+(18644, 4413, 11), -- M. Def. Modifiers
+(18644, 4414, 3), -- Armor Type
+(18644, 4415, 6), -- Weapon Type
+(18644, 4416, 6), -- Races
+(18644, 4563, 7), -- NPC Solar Flare - Magic
 -- Varka Silenos Magus
-(18645, 4160, 7), -- Aura Burn
-(18645, 4408, 1), -- HP Increase (1x)
-(18645, 4409, 1), -- MP Increase (1x)
-(18645, 4410, 11), -- Average P. Atk.
-(18645, 4411, 11), -- Average M. Atk.
-(18645, 4412, 11), -- Average P. Def.
-(18645, 4413, 11), -- Average M. Def.
-(18645, 4414, 2), -- Standard Type
-(18645, 4415, 5), -- Blunt Weapons
-(18645, 4416, 6), -- Humanoids
-(18645, 4563, 7), -- Solar Flare
+(18645, 4160, 7), -- NPC Aura Burn - Magic
+(18645, 4408, 1), -- HP Modifiers
+(18645, 4409, 1), -- MP Modifiers
+(18645, 4410, 11), -- P. Atk. Modifiers
+(18645, 4411, 11), -- M. Atk. Modifiers
+(18645, 4412, 11), -- P. Def. Modifiers
+(18645, 4413, 11), -- M. Def. Modifiers
+(18645, 4414, 2), -- Armor Type
+(18645, 4415, 5), -- Weapon Type
+(18645, 4416, 6), -- Races
+(18645, 4563, 7), -- NPC Solar Flare - Magic
 -- Varka Silenos Officer
-(18646, 4408, 1), -- HP Increase (1x)
-(18646, 4409, 1), -- MP Increase (1x)
-(18646, 4410, 11), -- Average P. Atk.
-(18646, 4411, 11), -- Average M. Atk.
-(18646, 4412, 11), -- Average P. Def.
-(18646, 4413, 11), -- Average M. Def.
-(18646, 4414, 2), -- Standard Type
-(18646, 4415, 13), -- Two-handed Sword
-(18646, 4416, 6), -- Humanoids
-(18646, 4563, 7), -- Solar Flare
+(18646, 4408, 1), -- HP Modifiers
+(18646, 4409, 1), -- MP Modifiers
+(18646, 4410, 11), -- P. Atk. Modifiers
+(18646, 4411, 11), -- M. Atk. Modifiers
+(18646, 4412, 11), -- P. Def. Modifiers
+(18646, 4413, 11), -- M. Def. Modifiers
+(18646, 4414, 2), -- Armor Type
+(18646, 4415, 13), -- Weapon Type
+(18646, 4416, 6), -- Races
+(18646, 4563, 7), -- NPC Solar Flare - Magic
 -- Grazing Flava
-(18647, 4032, 7), -- Power Strike
-(18647, 4408, 1), -- HP Increase (1x)
-(18647, 4409, 1), -- MP Increase (1x)
-(18647, 4410, 11), -- Average P. Atk.
-(18647, 4411, 11), -- Average M. Atk.
-(18647, 4412, 11), -- Average P. Def.
-(18647, 4413, 11), -- Average M. Def.
-(18647, 4414, 2), -- Standard Type
-(18647, 4415, 3), -- One-handed Sword
-(18647, 4416, 5), -- Plants
+(18647, 4032, 7), -- NPC Strike
+(18647, 4408, 1), -- HP Modifiers
+(18647, 4409, 1), -- MP Modifiers
+(18647, 4410, 11), -- P. Atk. Modifiers
+(18647, 4411, 11), -- M. Atk. Modifiers
+(18647, 4412, 11), -- P. Def. Modifiers
+(18647, 4413, 11), -- M. Def. Modifiers
+(18647, 4414, 2), -- Armor Type
+(18647, 4415, 3), -- Weapon Type
+(18647, 4416, 5), -- Races
 -- Varka Silenos Priest
-(18648, 4160, 9), -- Aura Burn
-(18648, 4408, 1), -- HP Increase (1x)
-(18648, 4409, 1), -- MP Increase (1x)
-(18648, 4410, 11), -- Average P. Atk.
-(18648, 4411, 11), -- Average M. Atk.
-(18648, 4412, 11), -- Average P. Def.
-(18648, 4413, 11), -- Average M. Def.
-(18648, 4414, 3), -- Light Armor Type
-(18648, 4415, 6), -- Blunt Weapons
-(18648, 4416, 6), -- Humanoids
-(18648, 4563, 7), -- Solar Flare
+(18648, 4160, 9), -- NPC Aura Burn - Magic
+(18648, 4408, 1), -- HP Modifiers
+(18648, 4409, 1), -- MP Modifiers
+(18648, 4410, 11), -- P. Atk. Modifiers
+(18648, 4411, 11), -- M. Atk. Modifiers
+(18648, 4412, 11), -- P. Def. Modifiers
+(18648, 4413, 11), -- M. Def. Modifiers
+(18648, 4414, 3), -- Armor Type
+(18648, 4415, 6), -- Weapon Type
+(18648, 4416, 6), -- Races
+(18648, 4563, 7), -- NPC Solar Flare - Magic
 -- Varka Silenos Great Magus
-(18649, 4408, 1), -- HP Increase (1x)
-(18649, 4409, 1), -- MP Increase (1x)
-(18649, 4410, 11), -- Average P. Atk.
-(18649, 4411, 11), -- Average M. Atk.
-(18649, 4412, 11), -- Average P. Def.
-(18649, 4413, 11), -- Average M. Def.
-(18649, 4414, 2), -- Standard Type
-(18649, 4415, 13), -- Two-handed Sword
-(18649, 4416, 6), -- Humanoids
-(18649, 4563, 7), -- Solar Flare
+(18649, 4408, 1), -- HP Modifiers
+(18649, 4409, 1), -- MP Modifiers
+(18649, 4410, 11), -- P. Atk. Modifiers
+(18649, 4411, 11), -- M. Atk. Modifiers
+(18649, 4412, 11), -- P. Def. Modifiers
+(18649, 4413, 11), -- M. Def. Modifiers
+(18649, 4414, 2), -- Armor Type
+(18649, 4415, 13), -- Weapon Type
+(18649, 4416, 6), -- Races
+(18649, 4563, 7), -- NPC Solar Flare - Magic
 -- Varka Silenos General
-(18650, 4408, 1), -- HP Increase (1x)
-(18650, 4409, 1), -- MP Increase (1x)
-(18650, 4410, 11), -- Average P. Atk.
-(18650, 4411, 11), -- Average M. Atk.
-(18650, 4412, 11), -- Average P. Def.
-(18650, 4413, 11), -- Average M. Def.
-(18650, 4414, 2), -- Standard Type
-(18650, 4415, 13), -- Two-handed Sword
-(18650, 4416, 6), -- Humanoids
-(18650, 4560, 7), -- Fire Burn
-(18650, 4563, 7), -- Solar Flare
+(18650, 4408, 1), -- HP Modifiers
+(18650, 4409, 1), -- MP Modifiers
+(18650, 4410, 11), -- P. Atk. Modifiers
+(18650, 4411, 11), -- M. Atk. Modifiers
+(18650, 4412, 11), -- P. Def. Modifiers
+(18650, 4413, 11), -- M. Def. Modifiers
+(18650, 4414, 2), -- Armor Type
+(18650, 4415, 13), -- Weapon Type
+(18650, 4416, 6), -- Races
+(18650, 4560, 7), -- NPC Fire Burn
+(18650, 4563, 7), -- NPC Solar Flare - Magic
 -- Grazing Elder Antelope
-(18651, 4408, 1), -- HP Increase (1x)
-(18651, 4409, 1), -- MP Increase (1x)
-(18651, 4410, 11), -- Average P. Atk.
-(18651, 4411, 11), -- Average M. Atk.
-(18651, 4412, 11), -- Average P. Def.
-(18651, 4413, 11), -- Average M. Def.
-(18651, 4414, 2), -- Standard Type
-(18651, 4415, 5), -- Blunt Weapons
-(18651, 4416, 4), -- Animals
+(18651, 4408, 1), -- HP Modifiers
+(18651, 4409, 1), -- MP Modifiers
+(18651, 4410, 11), -- P. Atk. Modifiers
+(18651, 4411, 11), -- M. Atk. Modifiers
+(18651, 4412, 11), -- P. Def. Modifiers
+(18651, 4413, 11), -- M. Def. Modifiers
+(18651, 4414, 2), -- Armor Type
+(18651, 4415, 5), -- Weapon Type
+(18651, 4416, 4), -- Races
 (18651, 4580, 7), -- Decrease P. Atk.
 -- Varka Silenos Great Seer
-(18652, 4160, 7), -- Aura Burn
-(18652, 4408, 1), -- HP Increase (1x)
-(18652, 4409, 1), -- MP Increase (1x)
-(18652, 4410, 11), -- Average P. Atk.
-(18652, 4411, 11), -- Average M. Atk.
-(18652, 4412, 11), -- Average P. Def.
-(18652, 4413, 11), -- Average M. Def.
-(18652, 4414, 3), -- Light Armor Type
-(18652, 4415, 6), -- Blunt Weapons
-(18652, 4416, 6), -- Humanoids
-(18652, 4563, 7), -- Solar Flare
+(18652, 4160, 7), -- NPC Aura Burn - Magic
+(18652, 4408, 1), -- HP Modifiers
+(18652, 4409, 1), -- MP Modifiers
+(18652, 4410, 11), -- P. Atk. Modifiers
+(18652, 4411, 11), -- M. Atk. Modifiers
+(18652, 4412, 11), -- P. Def. Modifiers
+(18652, 4413, 11), -- M. Def. Modifiers
+(18652, 4414, 3), -- Armor Type
+(18652, 4415, 6), -- Weapon Type
+(18652, 4416, 6), -- Races
+(18652, 4563, 7), -- NPC Solar Flare - Magic
 -- Varka's Elite Guard
-(18653, 4408, 1), -- HP Increase (1x)
-(18653, 4409, 1), -- MP Increase (1x)
-(18653, 4410, 11), -- Average P. Atk.
-(18653, 4411, 11), -- Average M. Atk.
-(18653, 4412, 11), -- Average P. Def.
-(18653, 4413, 11), -- Average M. Def.
-(18653, 4414, 2), -- Standard Type
-(18653, 4415, 13), -- Two-handed Sword
-(18653, 4416, 6), -- Humanoids
-(18653, 4563, 7), -- Solar Flare
+(18653, 4408, 1), -- HP Modifiers
+(18653, 4409, 1), -- MP Modifiers
+(18653, 4410, 11), -- P. Atk. Modifiers
+(18653, 4411, 11), -- M. Atk. Modifiers
+(18653, 4412, 11), -- P. Def. Modifiers
+(18653, 4413, 11), -- M. Def. Modifiers
+(18653, 4414, 2), -- Armor Type
+(18653, 4415, 13), -- Weapon Type
+(18653, 4416, 6), -- Races
+(18653, 4563, 7), -- NPC Solar Flare - Magic
 -- Varka's Commander
-(18654, 4408, 1), -- HP Increase (1x)
-(18654, 4409, 1), -- MP Increase (1x)
-(18654, 4410, 11), -- Average P. Atk.
-(18654, 4411, 11), -- Average M. Atk.
-(18654, 4412, 11), -- Average P. Def.
-(18654, 4413, 11), -- Average M. Def.
-(18654, 4414, 2), -- Standard Type
-(18654, 4415, 13), -- Two-handed Sword
-(18654, 4416, 6), -- Humanoids
-(18654, 4563, 7), -- Solar Flare
+(18654, 4408, 1), -- HP Modifiers
+(18654, 4409, 1), -- MP Modifiers
+(18654, 4410, 11), -- P. Atk. Modifiers
+(18654, 4411, 11), -- M. Atk. Modifiers
+(18654, 4412, 11), -- P. Def. Modifiers
+(18654, 4413, 11), -- M. Def. Modifiers
+(18654, 4414, 2), -- Armor Type
+(18654, 4415, 13), -- Weapon Type
+(18654, 4416, 6), -- Races
+(18654, 4563, 7), -- NPC Solar Flare - Magic
 -- Varka's Head Guard
-(18655, 4408, 1), -- HP Increase (1x)
-(18655, 4409, 1), -- MP Increase (1x)
-(18655, 4410, 11), -- Average P. Atk.
-(18655, 4411, 11), -- Average M. Atk.
-(18655, 4412, 11), -- Average P. Def.
-(18655, 4413, 11), -- Average M. Def.
-(18655, 4414, 2), -- Standard Type
-(18655, 4415, 13), -- Two-handed Sword
-(18655, 4416, 6), -- Humanoids
-(18655, 4563, 7), -- Solar Flare
+(18655, 4408, 1), -- HP Modifiers
+(18655, 4409, 1), -- MP Modifiers
+(18655, 4410, 11), -- P. Atk. Modifiers
+(18655, 4411, 11), -- M. Atk. Modifiers
+(18655, 4412, 11), -- P. Def. Modifiers
+(18655, 4413, 11), -- M. Def. Modifiers
+(18655, 4414, 2), -- Armor Type
+(18655, 4415, 13), -- Weapon Type
+(18655, 4416, 6), -- Races
+(18655, 4563, 7), -- NPC Solar Flare - Magic
 -- Varka's Head Magus
-(18656, 4408, 1), -- HP Increase (1x)
-(18656, 4409, 1), -- MP Increase (1x)
-(18656, 4410, 11), -- Average P. Atk.
-(18656, 4411, 11), -- Average M. Atk.
-(18656, 4412, 11), -- Average P. Def.
-(18656, 4413, 11), -- Average M. Def.
-(18656, 4414, 3), -- Light Armor Type
-(18656, 4415, 6), -- Blunt Weapons
-(18656, 4416, 6), -- Humanoids
-(18656, 4563, 7), -- Solar Flare
+(18656, 4408, 1), -- HP Modifiers
+(18656, 4409, 1), -- MP Modifiers
+(18656, 4410, 11), -- P. Atk. Modifiers
+(18656, 4411, 11), -- M. Atk. Modifiers
+(18656, 4412, 11), -- P. Def. Modifiers
+(18656, 4413, 11), -- M. Def. Modifiers
+(18656, 4414, 3), -- Armor Type
+(18656, 4415, 6), -- Weapon Type
+(18656, 4416, 6), -- Races
+(18656, 4563, 7), -- NPC Solar Flare - Magic
 -- Prophet's Guard
-(18657, 4408, 1), -- HP Increase (1x)
-(18657, 4409, 1), -- MP Increase (1x)
-(18657, 4410, 11), -- Average P. Atk.
-(18657, 4411, 11), -- Average M. Atk.
-(18657, 4412, 11), -- Average P. Def.
-(18657, 4413, 11), -- Average M. Def.
-(18657, 4414, 2), -- Standard Type
-(18657, 4415, 13), -- Two-handed Sword
-(18657, 4416, 6), -- Humanoids
-(18657, 4563, 7), -- Solar Flare
+(18657, 4408, 1), -- HP Modifiers
+(18657, 4409, 1), -- MP Modifiers
+(18657, 4410, 11), -- P. Atk. Modifiers
+(18657, 4411, 11), -- M. Atk. Modifiers
+(18657, 4412, 11), -- P. Def. Modifiers
+(18657, 4413, 11), -- M. Def. Modifiers
+(18657, 4414, 2), -- Armor Type
+(18657, 4415, 13), -- Weapon Type
+(18657, 4416, 6), -- Races
+(18657, 4563, 7), -- NPC Solar Flare - Magic
 -- Disciple of Prophet
-(18658, 4408, 1), -- HP Increase (1x)
-(18658, 4409, 1), -- MP Increase (1x)
-(18658, 4410, 11), -- Average P. Atk.
-(18658, 4411, 11), -- Average M. Atk.
-(18658, 4412, 11), -- Average P. Def.
-(18658, 4413, 11), -- Average M. Def.
-(18658, 4414, 2), -- Standard Type
-(18658, 4415, 3), -- One-handed Sword
-(18658, 4416, 6), -- Humanoids
-(18658, 4563, 7), -- Solar Flare
+(18658, 4408, 1), -- HP Modifiers
+(18658, 4409, 1), -- MP Modifiers
+(18658, 4410, 11), -- P. Atk. Modifiers
+(18658, 4411, 11), -- M. Atk. Modifiers
+(18658, 4412, 11), -- P. Def. Modifiers
+(18658, 4413, 11), -- M. Def. Modifiers
+(18658, 4414, 2), -- Armor Type
+(18658, 4415, 3), -- Weapon Type
+(18658, 4416, 6), -- Races
+(18658, 4563, 7), -- NPC Solar Flare - Magic
 -- Varka's Prophet
-(18659, 4160, 9), -- Aura Burn
-(18659, 4408, 1), -- HP Increase (1x)
-(18659, 4409, 1), -- MP Increase (1x)
-(18659, 4410, 11), -- Average P. Atk.
-(18659, 4411, 11), -- Average M. Atk.
-(18659, 4412, 11), -- Average P. Def.
-(18659, 4413, 11), -- Average M. Def.
-(18659, 4414, 2), -- Standard Type
-(18659, 4415, 6), -- Blunt Weapons
-(18659, 4416, 6), -- Humanoids
-(18659, 4563, 7), -- Solar Flare
+(18659, 4160, 9), -- NPC Aura Burn - Magic
+(18659, 4408, 1), -- HP Modifiers
+(18659, 4409, 1), -- MP Modifiers
+(18659, 4410, 11), -- P. Atk. Modifiers
+(18659, 4411, 11), -- M. Atk. Modifiers
+(18659, 4412, 11), -- P. Def. Modifiers
+(18659, 4413, 11), -- M. Def. Modifiers
+(18659, 4414, 2), -- Armor Type
+(18659, 4415, 6), -- Weapon Type
+(18659, 4416, 6), -- Races
+(18659, 4563, 7), -- NPC Solar Flare - Magic
 -- Latana
-(18660, 4408, 1), -- HP Increase (1x)
-(18660, 4409, 1), -- MP Increase (1x)
-(18660, 4410, 11), -- Average P. Atk.
-(18660, 4411, 11), -- Average M. Atk.
-(18660, 4412, 11), -- Average P. Def.
-(18660, 4413, 11), -- Average M. Def.
-(18660, 4414, 2), -- Standard Type
-(18660, 4415, 3), -- One-handed Sword
-(18660, 4416, 10), -- Dragons
+(18660, 4408, 1), -- HP Modifiers
+(18660, 4409, 1), -- MP Modifiers
+(18660, 4410, 11), -- P. Atk. Modifiers
+(18660, 4411, 11), -- M. Atk. Modifiers
+(18660, 4412, 11), -- P. Def. Modifiers
+(18660, 4413, 11), -- M. Def. Modifiers
+(18660, 4414, 2), -- Armor Type
+(18660, 4415, 3), -- Weapon Type
+(18660, 4416, 10), -- Races
 -- 
-(18661, 4408, 1), -- HP Increase (1x)
-(18661, 4409, 1), -- MP Increase (1x)
-(18661, 4410, 11), -- Average P. Atk.
-(18661, 4411, 11), -- Average M. Atk.
-(18661, 4412, 11), -- Average P. Def.
-(18661, 4413, 11), -- Average M. Def.
-(18661, 4414, 2), -- Standard Type
-(18661, 4415, 3), -- One-handed Sword
-(18661, 4416, 2), -- Magic Creatures
+(18661, 4408, 1), -- HP Modifiers
+(18661, 4409, 1), -- MP Modifiers
+(18661, 4410, 11), -- P. Atk. Modifiers
+(18661, 4411, 11), -- M. Atk. Modifiers
+(18661, 4412, 11), -- P. Def. Modifiers
+(18661, 4413, 11), -- M. Def. Modifiers
+(18661, 4414, 2), -- Armor Type
+(18661, 4415, 3), -- Weapon Type
+(18661, 4416, 2), -- Races
 -- 
-(18662, 4408, 1), -- HP Increase (1x)
-(18662, 4409, 1), -- MP Increase (1x)
-(18662, 4410, 11), -- Average P. Atk.
-(18662, 4411, 11), -- Average M. Atk.
-(18662, 4412, 11), -- Average P. Def.
-(18662, 4413, 11), -- Average M. Def.
-(18662, 4414, 2), -- Standard Type
-(18662, 4415, 3), -- One-handed Sword
-(18662, 4416, 2), -- Magic Creatures
+(18662, 4408, 1), -- HP Modifiers
+(18662, 4409, 1), -- MP Modifiers
+(18662, 4410, 11), -- P. Atk. Modifiers
+(18662, 4411, 11), -- M. Atk. Modifiers
+(18662, 4412, 11), -- P. Def. Modifiers
+(18662, 4413, 11), -- M. Def. Modifiers
+(18662, 4414, 2), -- Armor Type
+(18662, 4415, 3), -- Weapon Type
+(18662, 4416, 2), -- Races
 -- 
-(18663, 4408, 1), -- HP Increase (1x)
-(18663, 4409, 1), -- MP Increase (1x)
-(18663, 4410, 11), -- Average P. Atk.
-(18663, 4411, 11), -- Average M. Atk.
-(18663, 4412, 11), -- Average P. Def.
-(18663, 4413, 11), -- Average M. Def.
-(18663, 4414, 2), -- Standard Type
-(18663, 4415, 3), -- One-handed Sword
-(18663, 4416, 2), -- Magic Creatures
+(18663, 4408, 1), -- HP Modifiers
+(18663, 4409, 1), -- MP Modifiers
+(18663, 4410, 11), -- P. Atk. Modifiers
+(18663, 4411, 11), -- M. Atk. Modifiers
+(18663, 4412, 11), -- P. Def. Modifiers
+(18663, 4413, 11), -- M. Def. Modifiers
+(18663, 4414, 2), -- Armor Type
+(18663, 4415, 3), -- Weapon Type
+(18663, 4416, 2), -- Races
 -- Lucky Pig
-(18664, 4408, 1), -- HP Increase (1x)
-(18664, 4409, 1), -- MP Increase (1x)
-(18664, 4410, 11), -- Average P. Atk.
-(18664, 4411, 11), -- Average M. Atk.
-(18664, 4412, 11), -- Average P. Def.
-(18664, 4413, 11), -- Average M. Def.
-(18664, 4414, 2), -- Standard Type
-(18664, 4415, 3), -- One-handed Sword
-(18664, 4416, 3), -- Beasts
+(18664, 4408, 1), -- HP Modifiers
+(18664, 4409, 1), -- MP Modifiers
+(18664, 4410, 11), -- P. Atk. Modifiers
+(18664, 4411, 11), -- M. Atk. Modifiers
+(18664, 4412, 11), -- P. Def. Modifiers
+(18664, 4413, 11), -- M. Def. Modifiers
+(18664, 4414, 2), -- Armor Type
+(18664, 4415, 3), -- Weapon Type
+(18664, 4416, 3), -- Races
 -- Lucky Pig
-(18665, 4408, 1), -- HP Increase (1x)
-(18665, 4409, 1), -- MP Increase (1x)
-(18665, 4410, 11), -- Average P. Atk.
-(18665, 4411, 11), -- Average M. Atk.
-(18665, 4412, 11), -- Average P. Def.
-(18665, 4413, 11), -- Average M. Def.
-(18665, 4414, 2), -- Standard Type
-(18665, 4415, 3), -- One-handed Sword
-(18665, 4416, 3), -- Beasts
+(18665, 4408, 1), -- HP Modifiers
+(18665, 4409, 1), -- MP Modifiers
+(18665, 4410, 11), -- P. Atk. Modifiers
+(18665, 4411, 11), -- M. Atk. Modifiers
+(18665, 4412, 11), -- P. Def. Modifiers
+(18665, 4413, 11), -- M. Def. Modifiers
+(18665, 4414, 2), -- Armor Type
+(18665, 4415, 3), -- Weapon Type
+(18665, 4416, 3), -- Races
 -- Lucky Pig
-(18666, 4408, 1), -- HP Increase (1x)
-(18666, 4409, 1), -- MP Increase (1x)
-(18666, 4410, 11), -- Average P. Atk.
-(18666, 4411, 11), -- Average M. Atk.
-(18666, 4412, 11), -- Average P. Def.
-(18666, 4413, 11), -- Average M. Def.
-(18666, 4414, 2), -- Standard Type
-(18666, 4415, 3), -- One-handed Sword
-(18666, 4416, 3), -- Beasts
+(18666, 4408, 1), -- HP Modifiers
+(18666, 4409, 1), -- MP Modifiers
+(18666, 4410, 11), -- P. Atk. Modifiers
+(18666, 4411, 11), -- M. Atk. Modifiers
+(18666, 4412, 11), -- P. Def. Modifiers
+(18666, 4413, 11), -- M. Def. Modifiers
+(18666, 4414, 2), -- Armor Type
+(18666, 4415, 3), -- Weapon Type
+(18666, 4416, 3), -- Races
 -- Ward of Death
 (18667, 4045, 1), -- Resist Full Magic Attack
-(18667, 4408, 1), -- HP Increase (1x)
-(18667, 4409, 1), -- MP Increase (1x)
-(18667, 4410, 11), -- Average P. Atk.
-(18667, 4411, 11), -- Average M. Atk.
-(18667, 4412, 11), -- Average P. Def.
-(18667, 4413, 11), -- Average M. Def.
-(18667, 4414, 2), -- Standard Type
-(18667, 4415, 3), -- One-handed Sword
-(18667, 4416, 2), -- Magic Creatures
+(18667, 4408, 1), -- HP Modifiers
+(18667, 4409, 1), -- MP Modifiers
+(18667, 4410, 11), -- P. Atk. Modifiers
+(18667, 4411, 11), -- M. Atk. Modifiers
+(18667, 4412, 11), -- P. Def. Modifiers
+(18667, 4413, 11), -- M. Def. Modifiers
+(18667, 4414, 2), -- Armor Type
+(18667, 4415, 3), -- Weapon Type
+(18667, 4416, 2), -- Races
 -- Ward of Death
 (18668, 4045, 1), -- Resist Full Magic Attack
-(18668, 4408, 1), -- HP Increase (1x)
-(18668, 4409, 1), -- MP Increase (1x)
-(18668, 4410, 11), -- Average P. Atk.
-(18668, 4411, 11), -- Average M. Atk.
-(18668, 4412, 11), -- Average P. Def.
-(18668, 4413, 11), -- Average M. Def.
-(18668, 4414, 2), -- Standard Type
-(18668, 4415, 3), -- One-handed Sword
-(18668, 4416, 2), -- Magic Creatures
+(18668, 4408, 1), -- HP Modifiers
+(18668, 4409, 1), -- MP Modifiers
+(18668, 4410, 11), -- P. Atk. Modifiers
+(18668, 4411, 11), -- M. Atk. Modifiers
+(18668, 4412, 11), -- P. Def. Modifiers
+(18668, 4413, 11), -- M. Def. Modifiers
+(18668, 4414, 2), -- Armor Type
+(18668, 4415, 3), -- Weapon Type
+(18668, 4416, 2), -- Races
 -- 
-(18669, 4408, 1), -- HP Increase (1x)
-(18669, 4409, 1), -- MP Increase (1x)
-(18669, 4410, 11), -- Average P. Atk.
-(18669, 4411, 11), -- Average M. Atk.
-(18669, 4412, 11), -- Average P. Def.
-(18669, 4413, 11), -- Average M. Def.
-(18669, 4414, 2), -- Standard Type
-(18669, 4415, 3), -- One-handed Sword
-(18669, 4416, 2), -- Magic Creatures
+(18669, 4408, 1), -- HP Modifiers
+(18669, 4409, 1), -- MP Modifiers
+(18669, 4410, 11), -- P. Atk. Modifiers
+(18669, 4411, 11), -- M. Atk. Modifiers
+(18669, 4412, 11), -- P. Def. Modifiers
+(18669, 4413, 11), -- M. Def. Modifiers
+(18669, 4414, 2), -- Armor Type
+(18669, 4415, 3), -- Weapon Type
+(18669, 4416, 2), -- Races
 -- 
-(18670, 4408, 1), -- HP Increase (1x)
-(18670, 4409, 1), -- MP Increase (1x)
-(18670, 4410, 11), -- Average P. Atk.
-(18670, 4411, 11), -- Average M. Atk.
-(18670, 4412, 11), -- Average P. Def.
-(18670, 4413, 11), -- Average M. Def.
-(18670, 4414, 2), -- Standard Type
-(18670, 4415, 3), -- One-handed Sword
-(18670, 4416, 2), -- Magic Creatures
+(18670, 4408, 1), -- HP Modifiers
+(18670, 4409, 1), -- MP Modifiers
+(18670, 4410, 11), -- P. Atk. Modifiers
+(18670, 4411, 11), -- M. Atk. Modifiers
+(18670, 4412, 11), -- P. Def. Modifiers
+(18670, 4413, 11), -- M. Def. Modifiers
+(18670, 4414, 2), -- Armor Type
+(18670, 4415, 3), -- Weapon Type
+(18670, 4416, 2), -- Races
 -- Block
-(18671, 4408, 8), -- HP Increase (1/4x)
-(18671, 4409, 1), -- MP Increase (1x)
-(18671, 4410, 11), -- Average P. Atk.
-(18671, 4411, 11), -- Average M. Atk.
-(18671, 4412, 11), -- Average P. Def.
-(18671, 4413, 11), -- Average M. Def.
-(18671, 4414, 2), -- Standard Type
-(18671, 4415, 3), -- One-handed Sword
-(18671, 4416, 2), -- Magic Creatures
+(18671, 4408, 8), -- HP Modifiers
+(18671, 4409, 1), -- MP Modifiers
+(18671, 4410, 11), -- P. Atk. Modifiers
+(18671, 4411, 11), -- M. Atk. Modifiers
+(18671, 4412, 11), -- P. Def. Modifiers
+(18671, 4413, 11), -- M. Def. Modifiers
+(18671, 4414, 2), -- Armor Type
+(18671, 4415, 3), -- Weapon Type
+(18671, 4416, 2), -- Races
 -- Block
-(18672, 4408, 8), -- HP Increase (1/4x)
-(18672, 4409, 1), -- MP Increase (1x)
-(18672, 4410, 11), -- Average P. Atk.
-(18672, 4411, 11), -- Average M. Atk.
-(18672, 4412, 11), -- Average P. Def.
-(18672, 4413, 11), -- Average M. Def.
-(18672, 4414, 2), -- Standard Type
-(18672, 4415, 3), -- One-handed Sword
-(18672, 4416, 2), -- Magic Creatures
+(18672, 4408, 8), -- HP Modifiers
+(18672, 4409, 1), -- MP Modifiers
+(18672, 4410, 11), -- P. Atk. Modifiers
+(18672, 4411, 11), -- M. Atk. Modifiers
+(18672, 4412, 11), -- P. Def. Modifiers
+(18672, 4413, 11), -- M. Def. Modifiers
+(18672, 4414, 2), -- Armor Type
+(18672, 4415, 3), -- Weapon Type
+(18672, 4416, 2), -- Races
 -- Block
-(18673, 4408, 8), -- HP Increase (1/4x)
-(18673, 4409, 1), -- MP Increase (1x)
-(18673, 4410, 11), -- Average P. Atk.
-(18673, 4411, 11), -- Average M. Atk.
-(18673, 4412, 11), -- Average P. Def.
-(18673, 4413, 11), -- Average M. Def.
-(18673, 4414, 2), -- Standard Type
-(18673, 4415, 3), -- One-handed Sword
-(18673, 4416, 2), -- Magic Creatures
+(18673, 4408, 8), -- HP Modifiers
+(18673, 4409, 1), -- MP Modifiers
+(18673, 4410, 11), -- P. Atk. Modifiers
+(18673, 4411, 11), -- M. Atk. Modifiers
+(18673, 4412, 11), -- P. Def. Modifiers
+(18673, 4413, 11), -- M. Def. Modifiers
+(18673, 4414, 2), -- Armor Type
+(18673, 4415, 3), -- Weapon Type
+(18673, 4416, 2), -- Races
 -- Block
-(18674, 4408, 8), -- HP Increase (1/4x)
-(18674, 4409, 1), -- MP Increase (1x)
-(18674, 4410, 11), -- Average P. Atk.
-(18674, 4411, 11), -- Average M. Atk.
-(18674, 4412, 11), -- Average P. Def.
-(18674, 4413, 11), -- Average M. Def.
-(18674, 4414, 2), -- Standard Type
-(18674, 4415, 3), -- One-handed Sword
-(18674, 4416, 2), -- Magic Creatures
+(18674, 4408, 8), -- HP Modifiers
+(18674, 4409, 1), -- MP Modifiers
+(18674, 4410, 11), -- P. Atk. Modifiers
+(18674, 4411, 11), -- M. Atk. Modifiers
+(18674, 4412, 11), -- P. Def. Modifiers
+(18674, 4413, 11), -- M. Def. Modifiers
+(18674, 4414, 2), -- Armor Type
+(18674, 4415, 3), -- Weapon Type
+(18674, 4416, 2), -- Races
 -- Block
-(18675, 4408, 8), -- HP Increase (1/4x)
-(18675, 4409, 1), -- MP Increase (1x)
-(18675, 4410, 11), -- Average P. Atk.
-(18675, 4411, 11), -- Average M. Atk.
-(18675, 4412, 11), -- Average P. Def.
-(18675, 4413, 11), -- Average M. Def.
-(18675, 4414, 2), -- Standard Type
-(18675, 4415, 3), -- One-handed Sword
-(18675, 4416, 2), -- Magic Creatures
+(18675, 4408, 8), -- HP Modifiers
+(18675, 4409, 1), -- MP Modifiers
+(18675, 4410, 11), -- P. Atk. Modifiers
+(18675, 4411, 11), -- M. Atk. Modifiers
+(18675, 4412, 11), -- P. Def. Modifiers
+(18675, 4413, 11), -- M. Def. Modifiers
+(18675, 4414, 2), -- Armor Type
+(18675, 4415, 3), -- Weapon Type
+(18675, 4416, 2), -- Races
 -- Block-Carrying Girl
-(18676, 4408, 1), -- HP Increase (1x)
-(18676, 4409, 1), -- MP Increase (1x)
-(18676, 4410, 11), -- Average P. Atk.
-(18676, 4411, 11), -- Average M. Atk.
-(18676, 4412, 11), -- Average P. Def.
-(18676, 4413, 11), -- Average M. Def.
-(18676, 4414, 2), -- Standard Type
-(18676, 4415, 3), -- One-handed Sword
-(18676, 4416, 8), -- Angels
+(18676, 4408, 1), -- HP Modifiers
+(18676, 4409, 1), -- MP Modifiers
+(18676, 4410, 11), -- P. Atk. Modifiers
+(18676, 4411, 11), -- M. Atk. Modifiers
+(18676, 4412, 11), -- P. Def. Modifiers
+(18676, 4413, 11), -- M. Def. Modifiers
+(18676, 4414, 2), -- Armor Type
+(18676, 4415, 3), -- Weapon Type
+(18676, 4416, 8), -- Races
 -- Dragon Steed Troop Messenger
-(18677, 4408, 1), -- HP Increase (1x)
-(18677, 4409, 1), -- MP Increase (1x)
-(18677, 4410, 11), -- Average P. Atk.
-(18677, 4411, 11), -- Average M. Atk.
-(18677, 4412, 11), -- Average P. Def.
-(18677, 4413, 11), -- Average M. Def.
-(18677, 4414, 2), -- Standard Type
-(18677, 4415, 3), -- One-handed Sword
-(18677, 4416, 10), -- Dragons
+(18677, 4408, 1), -- HP Modifiers
+(18677, 4409, 1), -- MP Modifiers
+(18677, 4410, 11), -- P. Atk. Modifiers
+(18677, 4411, 11), -- M. Atk. Modifiers
+(18677, 4412, 11), -- P. Def. Modifiers
+(18677, 4413, 11), -- M. Def. Modifiers
+(18677, 4414, 2), -- Armor Type
+(18677, 4415, 3), -- Weapon Type
+(18677, 4416, 10), -- Races
 -- Energy Seed - Water
-(18678, 4408, 1), -- HP Increase (1x)
-(18678, 4409, 1), -- MP Increase (1x)
-(18678, 4410, 11), -- Average P. Atk.
-(18678, 4411, 11), -- Average M. Atk.
-(18678, 4412, 11), -- Average P. Def.
-(18678, 4413, 11), -- Average M. Def.
-(18678, 4414, 2), -- Standard Type
-(18678, 4415, 3), -- One-handed Sword
-(18678, 4416, 2), -- Magic Creatures
+(18678, 4408, 1), -- HP Modifiers
+(18678, 4409, 1), -- MP Modifiers
+(18678, 4410, 11), -- P. Atk. Modifiers
+(18678, 4411, 11), -- M. Atk. Modifiers
+(18678, 4412, 11), -- P. Def. Modifiers
+(18678, 4413, 11), -- M. Def. Modifiers
+(18678, 4414, 2), -- Armor Type
+(18678, 4415, 3), -- Weapon Type
+(18678, 4416, 2), -- Races
 -- Energy Seed - Fire
-(18679, 4408, 1), -- HP Increase (1x)
-(18679, 4409, 1), -- MP Increase (1x)
-(18679, 4410, 11), -- Average P. Atk.
-(18679, 4411, 11), -- Average M. Atk.
-(18679, 4412, 11), -- Average P. Def.
-(18679, 4413, 11), -- Average M. Def.
-(18679, 4414, 2), -- Standard Type
-(18679, 4415, 3), -- One-handed Sword
-(18679, 4416, 2), -- Magic Creatures
+(18679, 4408, 1), -- HP Modifiers
+(18679, 4409, 1), -- MP Modifiers
+(18679, 4410, 11), -- P. Atk. Modifiers
+(18679, 4411, 11), -- M. Atk. Modifiers
+(18679, 4412, 11), -- P. Def. Modifiers
+(18679, 4413, 11), -- M. Def. Modifiers
+(18679, 4414, 2), -- Armor Type
+(18679, 4415, 3), -- Weapon Type
+(18679, 4416, 2), -- Races
 -- Energy Seed - Wind
-(18680, 4408, 1), -- HP Increase (1x)
-(18680, 4409, 1), -- MP Increase (1x)
-(18680, 4410, 11), -- Average P. Atk.
-(18680, 4411, 11), -- Average M. Atk.
-(18680, 4412, 11), -- Average P. Def.
-(18680, 4413, 11), -- Average M. Def.
-(18680, 4414, 2), -- Standard Type
-(18680, 4415, 3), -- One-handed Sword
-(18680, 4416, 2), -- Magic Creatures
+(18680, 4408, 1), -- HP Modifiers
+(18680, 4409, 1), -- MP Modifiers
+(18680, 4410, 11), -- P. Atk. Modifiers
+(18680, 4411, 11), -- M. Atk. Modifiers
+(18680, 4412, 11), -- P. Def. Modifiers
+(18680, 4413, 11), -- M. Def. Modifiers
+(18680, 4414, 2), -- Armor Type
+(18680, 4415, 3), -- Weapon Type
+(18680, 4416, 2), -- Races
 -- Energy Seed - Earth
-(18681, 4408, 1), -- HP Increase (1x)
-(18681, 4409, 1), -- MP Increase (1x)
-(18681, 4410, 11), -- Average P. Atk.
-(18681, 4411, 11), -- Average M. Atk.
-(18681, 4412, 11), -- Average P. Def.
-(18681, 4413, 11), -- Average M. Def.
-(18681, 4414, 2), -- Standard Type
-(18681, 4415, 3), -- One-handed Sword
-(18681, 4416, 2), -- Magic Creatures
+(18681, 4408, 1), -- HP Modifiers
+(18681, 4409, 1), -- MP Modifiers
+(18681, 4410, 11), -- P. Atk. Modifiers
+(18681, 4411, 11), -- M. Atk. Modifiers
+(18681, 4412, 11), -- P. Def. Modifiers
+(18681, 4413, 11), -- M. Def. Modifiers
+(18681, 4414, 2), -- Armor Type
+(18681, 4415, 3), -- Weapon Type
+(18681, 4416, 2), -- Races
 -- Energy Seed - Holy
-(18682, 4408, 1), -- HP Increase (1x)
-(18682, 4409, 1), -- MP Increase (1x)
-(18682, 4410, 11), -- Average P. Atk.
-(18682, 4411, 11), -- Average M. Atk.
-(18682, 4412, 11), -- Average P. Def.
-(18682, 4413, 11), -- Average M. Def.
-(18682, 4414, 2), -- Standard Type
-(18682, 4415, 3), -- One-handed Sword
-(18682, 4416, 2), -- Magic Creatures
+(18682, 4408, 1), -- HP Modifiers
+(18682, 4409, 1), -- MP Modifiers
+(18682, 4410, 11), -- P. Atk. Modifiers
+(18682, 4411, 11), -- M. Atk. Modifiers
+(18682, 4412, 11), -- P. Def. Modifiers
+(18682, 4413, 11), -- M. Def. Modifiers
+(18682, 4414, 2), -- Armor Type
+(18682, 4415, 3), -- Weapon Type
+(18682, 4416, 2), -- Races
 -- Energy Seed - Dark
-(18683, 4408, 1), -- HP Increase (1x)
-(18683, 4409, 1), -- MP Increase (1x)
-(18683, 4410, 11), -- Average P. Atk.
-(18683, 4411, 11), -- Average M. Atk.
-(18683, 4412, 11), -- Average P. Def.
-(18683, 4413, 11), -- Average M. Def.
-(18683, 4414, 2), -- Standard Type
-(18683, 4415, 3), -- One-handed Sword
-(18683, 4416, 2), -- Magic Creatures
+(18683, 4408, 1), -- HP Modifiers
+(18683, 4409, 1), -- MP Modifiers
+(18683, 4410, 11), -- P. Atk. Modifiers
+(18683, 4411, 11), -- M. Atk. Modifiers
+(18683, 4412, 11), -- P. Def. Modifiers
+(18683, 4413, 11), -- M. Def. Modifiers
+(18683, 4414, 2), -- Armor Type
+(18683, 4415, 3), -- Weapon Type
+(18683, 4416, 2), -- Races
 -- Red Star Stone
-(18684, 4408, 1), -- HP Increase (1x)
-(18684, 4409, 1), -- MP Increase (1x)
-(18684, 4410, 11), -- Average P. Atk.
-(18684, 4411, 11), -- Average M. Atk.
-(18684, 4412, 11), -- Average P. Def.
-(18684, 4413, 11), -- Average M. Def.
-(18684, 4414, 2), -- Standard Type
-(18684, 4415, 3), -- One-handed Sword
-(18684, 4416, 2), -- Magic Creatures
+(18684, 4408, 1), -- HP Modifiers
+(18684, 4409, 1), -- MP Modifiers
+(18684, 4410, 11), -- P. Atk. Modifiers
+(18684, 4411, 11), -- M. Atk. Modifiers
+(18684, 4412, 11), -- P. Def. Modifiers
+(18684, 4413, 11), -- M. Def. Modifiers
+(18684, 4414, 2), -- Armor Type
+(18684, 4415, 3), -- Weapon Type
+(18684, 4416, 2), -- Races
 -- Red Star Stone
-(18685, 4408, 1), -- HP Increase (1x)
-(18685, 4409, 1), -- MP Increase (1x)
-(18685, 4410, 11), -- Average P. Atk.
-(18685, 4411, 11), -- Average M. Atk.
-(18685, 4412, 11), -- Average P. Def.
-(18685, 4413, 11), -- Average M. Def.
-(18685, 4414, 2), -- Standard Type
-(18685, 4415, 3), -- One-handed Sword
-(18685, 4416, 2), -- Magic Creatures
+(18685, 4408, 1), -- HP Modifiers
+(18685, 4409, 1), -- MP Modifiers
+(18685, 4410, 11), -- P. Atk. Modifiers
+(18685, 4411, 11), -- M. Atk. Modifiers
+(18685, 4412, 11), -- P. Def. Modifiers
+(18685, 4413, 11), -- M. Def. Modifiers
+(18685, 4414, 2), -- Armor Type
+(18685, 4415, 3), -- Weapon Type
+(18685, 4416, 2), -- Races
 -- Red Star Stone
-(18686, 4408, 1), -- HP Increase (1x)
-(18686, 4409, 1), -- MP Increase (1x)
-(18686, 4410, 11), -- Average P. Atk.
-(18686, 4411, 11), -- Average M. Atk.
-(18686, 4412, 11), -- Average P. Def.
-(18686, 4413, 11), -- Average M. Def.
-(18686, 4414, 2), -- Standard Type
-(18686, 4415, 3), -- One-handed Sword
-(18686, 4416, 2), -- Magic Creatures
+(18686, 4408, 1), -- HP Modifiers
+(18686, 4409, 1), -- MP Modifiers
+(18686, 4410, 11), -- P. Atk. Modifiers
+(18686, 4411, 11), -- M. Atk. Modifiers
+(18686, 4412, 11), -- P. Def. Modifiers
+(18686, 4413, 11), -- M. Def. Modifiers
+(18686, 4414, 2), -- Armor Type
+(18686, 4415, 3), -- Weapon Type
+(18686, 4416, 2), -- Races
 -- Blue Star Stone
-(18687, 4408, 1), -- HP Increase (1x)
-(18687, 4409, 1), -- MP Increase (1x)
-(18687, 4410, 11), -- Average P. Atk.
-(18687, 4411, 11), -- Average M. Atk.
-(18687, 4412, 11), -- Average P. Def.
-(18687, 4413, 11), -- Average M. Def.
-(18687, 4414, 2), -- Standard Type
-(18687, 4415, 3), -- One-handed Sword
-(18687, 4416, 2), -- Magic Creatures
+(18687, 4408, 1), -- HP Modifiers
+(18687, 4409, 1), -- MP Modifiers
+(18687, 4410, 11), -- P. Atk. Modifiers
+(18687, 4411, 11), -- M. Atk. Modifiers
+(18687, 4412, 11), -- P. Def. Modifiers
+(18687, 4413, 11), -- M. Def. Modifiers
+(18687, 4414, 2), -- Armor Type
+(18687, 4415, 3), -- Weapon Type
+(18687, 4416, 2), -- Races
 -- Blue Star Stone
-(18688, 4408, 1), -- HP Increase (1x)
-(18688, 4409, 1), -- MP Increase (1x)
-(18688, 4410, 11), -- Average P. Atk.
-(18688, 4411, 11), -- Average M. Atk.
-(18688, 4412, 11), -- Average P. Def.
-(18688, 4413, 11), -- Average M. Def.
-(18688, 4414, 2), -- Standard Type
-(18688, 4415, 3), -- One-handed Sword
-(18688, 4416, 2), -- Magic Creatures
+(18688, 4408, 1), -- HP Modifiers
+(18688, 4409, 1), -- MP Modifiers
+(18688, 4410, 11), -- P. Atk. Modifiers
+(18688, 4411, 11), -- M. Atk. Modifiers
+(18688, 4412, 11), -- P. Def. Modifiers
+(18688, 4413, 11), -- M. Def. Modifiers
+(18688, 4414, 2), -- Armor Type
+(18688, 4415, 3), -- Weapon Type
+(18688, 4416, 2), -- Races
 -- Blue Star Stone
-(18689, 4408, 1), -- HP Increase (1x)
-(18689, 4409, 1), -- MP Increase (1x)
-(18689, 4410, 11), -- Average P. Atk.
-(18689, 4411, 11), -- Average M. Atk.
-(18689, 4412, 11), -- Average P. Def.
-(18689, 4413, 11), -- Average M. Def.
-(18689, 4414, 2), -- Standard Type
-(18689, 4415, 3), -- One-handed Sword
-(18689, 4416, 2), -- Magic Creatures
+(18689, 4408, 1), -- HP Modifiers
+(18689, 4409, 1), -- MP Modifiers
+(18689, 4410, 11), -- P. Atk. Modifiers
+(18689, 4411, 11), -- M. Atk. Modifiers
+(18689, 4412, 11), -- P. Def. Modifiers
+(18689, 4413, 11), -- M. Def. Modifiers
+(18689, 4414, 2), -- Armor Type
+(18689, 4415, 3), -- Weapon Type
+(18689, 4416, 2), -- Races
 -- Green Star Stone
-(18690, 4408, 1), -- HP Increase (1x)
-(18690, 4409, 1), -- MP Increase (1x)
-(18690, 4410, 11), -- Average P. Atk.
-(18690, 4411, 11), -- Average M. Atk.
-(18690, 4412, 11), -- Average P. Def.
-(18690, 4413, 11), -- Average M. Def.
-(18690, 4414, 2), -- Standard Type
-(18690, 4415, 3), -- One-handed Sword
-(18690, 4416, 2), -- Magic Creatures
+(18690, 4408, 1), -- HP Modifiers
+(18690, 4409, 1), -- MP Modifiers
+(18690, 4410, 11), -- P. Atk. Modifiers
+(18690, 4411, 11), -- M. Atk. Modifiers
+(18690, 4412, 11), -- P. Def. Modifiers
+(18690, 4413, 11), -- M. Def. Modifiers
+(18690, 4414, 2), -- Armor Type
+(18690, 4415, 3), -- Weapon Type
+(18690, 4416, 2), -- Races
 -- Green Star Stone
-(18691, 4408, 1), -- HP Increase (1x)
-(18691, 4409, 1), -- MP Increase (1x)
-(18691, 4410, 11), -- Average P. Atk.
-(18691, 4411, 11), -- Average M. Atk.
-(18691, 4412, 11), -- Average P. Def.
-(18691, 4413, 11), -- Average M. Def.
-(18691, 4414, 2), -- Standard Type
-(18691, 4415, 3), -- One-handed Sword
-(18691, 4416, 2), -- Magic Creatures
+(18691, 4408, 1), -- HP Modifiers
+(18691, 4409, 1), -- MP Modifiers
+(18691, 4410, 11), -- P. Atk. Modifiers
+(18691, 4411, 11), -- M. Atk. Modifiers
+(18691, 4412, 11), -- P. Def. Modifiers
+(18691, 4413, 11), -- M. Def. Modifiers
+(18691, 4414, 2), -- Armor Type
+(18691, 4415, 3), -- Weapon Type
+(18691, 4416, 2), -- Races
 -- Green Star Stone
-(18692, 4408, 1), -- HP Increase (1x)
-(18692, 4409, 1), -- MP Increase (1x)
-(18692, 4410, 11), -- Average P. Atk.
-(18692, 4411, 11), -- Average M. Atk.
-(18692, 4412, 11), -- Average P. Def.
-(18692, 4413, 11), -- Average M. Def.
-(18692, 4414, 2), -- Standard Type
-(18692, 4415, 3), -- One-handed Sword
-(18692, 4416, 2), -- Magic Creatures
+(18692, 4408, 1), -- HP Modifiers
+(18692, 4409, 1), -- MP Modifiers
+(18692, 4410, 11), -- P. Atk. Modifiers
+(18692, 4411, 11), -- M. Atk. Modifiers
+(18692, 4412, 11), -- P. Def. Modifiers
+(18692, 4413, 11), -- M. Def. Modifiers
+(18692, 4414, 2), -- Armor Type
+(18692, 4415, 3), -- Weapon Type
+(18692, 4416, 2), -- Races
 -- Treasure Chest of the Ancient Giants
 (18693, 4045, 1), -- Resist Full Magic Attack
-(18693, 4408, 1), -- HP Increase (1x)
-(18693, 4409, 1), -- MP Increase (1x)
-(18693, 4410, 11), -- Average P. Atk.
-(18693, 4411, 11), -- Average M. Atk.
-(18693, 4412, 11), -- Average P. Def.
-(18693, 4413, 11), -- Average M. Def.
-(18693, 4414, 2), -- Standard Type
-(18693, 4415, 3), -- One-handed Sword
-(18693, 4416, 2), -- Magic Creatures
+(18693, 4408, 1), -- HP Modifiers
+(18693, 4409, 1), -- MP Modifiers
+(18693, 4410, 11), -- P. Atk. Modifiers
+(18693, 4411, 11), -- M. Atk. Modifiers
+(18693, 4412, 11), -- P. Def. Modifiers
+(18693, 4413, 11), -- M. Def. Modifiers
+(18693, 4414, 2), -- Armor Type
+(18693, 4415, 3), -- Weapon Type
+(18693, 4416, 2), -- Races
 -- Treasure Chest Guard
 (18694, 4045, 1), -- Resist Full Magic Attack
-(18694, 4157, 6), -- Blaze
-(18694, 4408, 1), -- HP Increase (1x)
-(18694, 4409, 1), -- MP Increase (1x)
-(18694, 4410, 11), -- Average P. Atk.
-(18694, 4411, 11), -- Average M. Atk.
-(18694, 4412, 11), -- Average P. Def.
-(18694, 4413, 11), -- Average M. Def.
-(18694, 4414, 1), -- Heavy Armor Type
-(18694, 4415, 5), -- Blunt Weapons
-(18694, 4416, 2), -- Magic Creatures
+(18694, 4157, 6), -- NPC Blaze - Magic
+(18694, 4408, 1), -- HP Modifiers
+(18694, 4409, 1), -- MP Modifiers
+(18694, 4410, 11), -- P. Atk. Modifiers
+(18694, 4411, 11), -- M. Atk. Modifiers
+(18694, 4412, 11), -- P. Def. Modifiers
+(18694, 4413, 11), -- M. Def. Modifiers
+(18694, 4414, 1), -- Armor Type
+(18694, 4415, 5), -- Weapon Type
+(18694, 4416, 2), -- Races
 (18694, 5462, 1), -- Fire Attacks
 (18694, 6019, 1), -- Searching Master
 -- Treasure Chest Guard
 (18695, 4045, 1), -- Resist Full Magic Attack
-(18695, 4152, 6), -- Drain Health
-(18695, 4408, 1), -- HP Increase (1x)
-(18695, 4409, 1), -- MP Increase (1x)
-(18695, 4410, 11), -- Average P. Atk.
-(18695, 4411, 11), -- Average M. Atk.
-(18695, 4412, 11), -- Average P. Def.
-(18695, 4413, 11), -- Average M. Def.
-(18695, 4414, 2), -- Standard Type
-(18695, 4415, 3), -- One-handed Sword
-(18695, 4416, 2), -- Magic Creatures
+(18695, 4152, 6), -- NPC HP Drain - Magic
+(18695, 4408, 1), -- HP Modifiers
+(18695, 4409, 1), -- MP Modifiers
+(18695, 4410, 11), -- P. Atk. Modifiers
+(18695, 4411, 11), -- M. Atk. Modifiers
+(18695, 4412, 11), -- P. Def. Modifiers
+(18695, 4413, 11), -- M. Def. Modifiers
+(18695, 4414, 2), -- Armor Type
+(18695, 4415, 3), -- Weapon Type
+(18695, 4416, 2), -- Races
 (18695, 5467, 1), -- Dark Attacks
 (18695, 6019, 1), -- Searching Master
 -- Dimension Moving Device
-(18696, 4408, 1), -- HP Increase (1x)
-(18696, 4409, 1), -- MP Increase (1x)
-(18696, 4410, 11), -- Average P. Atk.
-(18696, 4411, 11), -- Average M. Atk.
-(18696, 4412, 11), -- Average P. Def.
-(18696, 4413, 11), -- Average M. Def.
-(18696, 4414, 2), -- Standard Type
-(18696, 4415, 3), -- One-handed Sword
-(18696, 4416, 2), -- Magic Creatures
+(18696, 4408, 1), -- HP Modifiers
+(18696, 4409, 1), -- MP Modifiers
+(18696, 4410, 11), -- P. Atk. Modifiers
+(18696, 4411, 11), -- M. Atk. Modifiers
+(18696, 4412, 11), -- P. Def. Modifiers
+(18696, 4413, 11), -- M. Def. Modifiers
+(18696, 4414, 2), -- Armor Type
+(18696, 4415, 3), -- Weapon Type
+(18696, 4416, 2), -- Races
 -- Trap
-(18697, 4408, 1), -- HP Increase (1x)
-(18697, 4409, 1), -- MP Increase (1x)
-(18697, 4410, 11), -- Average P. Atk.
-(18697, 4411, 11), -- Average M. Atk.
-(18697, 4412, 11), -- Average P. Def.
-(18697, 4413, 11), -- Average M. Def.
-(18697, 4414, 2), -- Standard Type
-(18697, 4415, 3), -- One-handed Sword
-(18697, 4416, 19), -- Others
+(18697, 4408, 1), -- HP Modifiers
+(18697, 4409, 1), -- MP Modifiers
+(18697, 4410, 11), -- P. Atk. Modifiers
+(18697, 4411, 11), -- M. Atk. Modifiers
+(18697, 4412, 11), -- P. Def. Modifiers
+(18697, 4413, 11), -- M. Def. Modifiers
+(18697, 4414, 2), -- Armor Type
+(18697, 4415, 3), -- Weapon Type
+(18697, 4416, 19), -- Races
 -- Trap
-(18698, 4408, 1), -- HP Increase (1x)
-(18698, 4409, 1), -- MP Increase (1x)
-(18698, 4410, 11), -- Average P. Atk.
-(18698, 4411, 11), -- Average M. Atk.
-(18698, 4412, 11), -- Average P. Def.
-(18698, 4413, 11), -- Average M. Def.
-(18698, 4414, 2), -- Standard Type
-(18698, 4415, 3), -- One-handed Sword
-(18698, 4416, 19), -- Others
+(18698, 4408, 1), -- HP Modifiers
+(18698, 4409, 1), -- MP Modifiers
+(18698, 4410, 11), -- P. Atk. Modifiers
+(18698, 4411, 11), -- M. Atk. Modifiers
+(18698, 4412, 11), -- P. Def. Modifiers
+(18698, 4413, 11), -- M. Def. Modifiers
+(18698, 4414, 2), -- Armor Type
+(18698, 4415, 3), -- Weapon Type
+(18698, 4416, 19), -- Races
 -- Trap
-(18699, 4408, 1), -- HP Increase (1x)
-(18699, 4409, 1), -- MP Increase (1x)
-(18699, 4410, 11), -- Average P. Atk.
-(18699, 4411, 11), -- Average M. Atk.
-(18699, 4412, 11), -- Average P. Def.
-(18699, 4413, 11), -- Average M. Def.
-(18699, 4414, 2), -- Standard Type
-(18699, 4415, 3), -- One-handed Sword
-(18699, 4416, 19), -- Others
+(18699, 4408, 1), -- HP Modifiers
+(18699, 4409, 1), -- MP Modifiers
+(18699, 4410, 11), -- P. Atk. Modifiers
+(18699, 4411, 11), -- M. Atk. Modifiers
+(18699, 4412, 11), -- P. Def. Modifiers
+(18699, 4413, 11), -- M. Def. Modifiers
+(18699, 4414, 2), -- Armor Type
+(18699, 4415, 3), -- Weapon Type
+(18699, 4416, 19), -- Races
 -- 
-(18700, 4408, 1), -- HP Increase (1x)
-(18700, 4409, 1), -- MP Increase (1x)
-(18700, 4410, 11), -- Average P. Atk.
-(18700, 4411, 11), -- Average M. Atk.
-(18700, 4412, 11), -- Average P. Def.
-(18700, 4413, 11), -- Average M. Def.
-(18700, 4414, 2), -- Standard Type
-(18700, 4415, 3), -- One-handed Sword
-(18700, 4416, 19), -- Others
+(18700, 4408, 1), -- HP Modifiers
+(18700, 4409, 1), -- MP Modifiers
+(18700, 4410, 11), -- P. Atk. Modifiers
+(18700, 4411, 11), -- M. Atk. Modifiers
+(18700, 4412, 11), -- P. Def. Modifiers
+(18700, 4413, 11), -- M. Def. Modifiers
+(18700, 4414, 2), -- Armor Type
+(18700, 4415, 3), -- Weapon Type
+(18700, 4416, 19), -- Races
 -- 
-(18701, 4408, 1), -- HP Increase (1x)
-(18701, 4409, 1), -- MP Increase (1x)
-(18701, 4410, 11), -- Average P. Atk.
-(18701, 4411, 11), -- Average M. Atk.
-(18701, 4412, 11), -- Average P. Def.
-(18701, 4413, 11), -- Average M. Def.
-(18701, 4414, 2), -- Standard Type
-(18701, 4415, 3), -- One-handed Sword
-(18701, 4416, 19), -- Others
+(18701, 4408, 1), -- HP Modifiers
+(18701, 4409, 1), -- MP Modifiers
+(18701, 4410, 11), -- P. Atk. Modifiers
+(18701, 4411, 11), -- M. Atk. Modifiers
+(18701, 4412, 11), -- P. Def. Modifiers
+(18701, 4413, 11), -- M. Def. Modifiers
+(18701, 4414, 2), -- Armor Type
+(18701, 4415, 3), -- Weapon Type
+(18701, 4416, 19), -- Races
 -- Dimension Moving Device
-(18702, 4408, 1), -- HP Increase (1x)
-(18702, 4409, 1), -- MP Increase (1x)
-(18702, 4410, 11), -- Average P. Atk.
-(18702, 4411, 11), -- Average M. Atk.
-(18702, 4412, 11), -- Average P. Def.
-(18702, 4413, 11), -- Average M. Def.
-(18702, 4414, 2), -- Standard Type
-(18702, 4415, 3), -- One-handed Sword
-(18702, 4416, 2), -- Magic Creatures
+(18702, 4408, 1), -- HP Modifiers
+(18702, 4409, 1), -- MP Modifiers
+(18702, 4410, 11), -- P. Atk. Modifiers
+(18702, 4411, 11), -- M. Atk. Modifiers
+(18702, 4412, 11), -- P. Def. Modifiers
+(18702, 4413, 11), -- M. Def. Modifiers
+(18702, 4414, 2), -- Armor Type
+(18702, 4415, 3), -- Weapon Type
+(18702, 4416, 2), -- Races
 -- Defeated Troops Controller
-(18703, 4408, 9), -- HP Increase (1/2x)
-(18703, 4409, 1), -- MP Increase (1x)
-(18703, 4410, 9), -- Slightly Weak P. Atk.
-(18703, 4411, 8), -- Weak M. Atk.
-(18703, 4412, 7), -- Weak P. Def.
-(18703, 4413, 8), -- Weak M. Def.
-(18703, 4414, 2), -- Standard Type
-(18703, 4415, 3), -- One-handed Sword
-(18703, 4416, 2), -- Magic Creatures
+(18703, 4408, 9), -- HP Modifiers
+(18703, 4409, 1), -- MP Modifiers
+(18703, 4410, 9), -- P. Atk. Modifiers
+(18703, 4411, 8), -- M. Atk. Modifiers
+(18703, 4412, 7), -- P. Def. Modifiers
+(18703, 4413, 8), -- M. Def. Modifiers
+(18703, 4414, 2), -- Armor Type
+(18703, 4415, 3), -- Weapon Type
+(18703, 4416, 2), -- Races
 -- Tumor of Death
 (18704, 4045, 1), -- Resist Full Magic Attack
-(18704, 4408, 9), -- HP Increase (1/2x)
-(18704, 4409, 1), -- MP Increase (1x)
-(18704, 4410, 11), -- Average P. Atk.
-(18704, 4411, 15), -- Strong M. Atk.
-(18704, 4412, 14), -- Strong P. Def.
-(18704, 4413, 11), -- Average M. Def.
-(18704, 4414, 2), -- Standard Type
-(18704, 4415, 3), -- One-handed Sword
-(18704, 4416, 2), -- Magic Creatures
+(18704, 4408, 9), -- HP Modifiers
+(18704, 4409, 1), -- MP Modifiers
+(18704, 4410, 11), -- P. Atk. Modifiers
+(18704, 4411, 15), -- M. Atk. Modifiers
+(18704, 4412, 14), -- P. Def. Modifiers
+(18704, 4413, 11), -- M. Def. Modifiers
+(18704, 4414, 2), -- Armor Type
+(18704, 4415, 3), -- Weapon Type
+(18704, 4416, 2), -- Races
 (18704, 5465, 1), -- Earth Attacks
-(18704, 7028, 1), -- Stationary NPCs
+(18704, 7028, 1), -- For Stationary NPCs
 -- Destroyed Tumor
 (18705, 4045, 1), -- Resist Full Magic Attack
-(18705, 4408, 9), -- HP Increase (1/2x)
-(18705, 4409, 1), -- MP Increase (1x)
-(18705, 4410, 11), -- Average P. Atk.
-(18705, 4411, 15), -- Strong M. Atk.
-(18705, 4412, 14), -- Strong P. Def.
-(18705, 4413, 11), -- Average M. Def.
-(18705, 4414, 2), -- Standard Type
-(18705, 4415, 3), -- One-handed Sword
-(18705, 4416, 2), -- Magic Creatures
+(18705, 4408, 9), -- HP Modifiers
+(18705, 4409, 1), -- MP Modifiers
+(18705, 4410, 11), -- P. Atk. Modifiers
+(18705, 4411, 15), -- M. Atk. Modifiers
+(18705, 4412, 14), -- P. Def. Modifiers
+(18705, 4413, 11), -- M. Def. Modifiers
+(18705, 4414, 2), -- Armor Type
+(18705, 4415, 3), -- Weapon Type
+(18705, 4416, 2), -- Races
 (18705, 5465, 1), -- Earth Attacks
-(18705, 7028, 1), -- Stationary NPCs
+(18705, 7028, 1), -- For Stationary NPCs
 -- Soul Coffin
 (18706, 4045, 1), -- Resist Full Magic Attack
-(18706, 4408, 8), -- HP Increase (1/4x)
-(18706, 4409, 1), -- MP Increase (1x)
-(18706, 4410, 11), -- Average P. Atk.
-(18706, 4411, 15), -- Strong M. Atk.
-(18706, 4412, 16), -- Very Strong P. Def.
-(18706, 4413, 11), -- Average M. Def.
-(18706, 4414, 2), -- Standard Type
-(18706, 4415, 3), -- One-handed Sword
-(18706, 4416, 2), -- Magic Creatures
+(18706, 4408, 8), -- HP Modifiers
+(18706, 4409, 1), -- MP Modifiers
+(18706, 4410, 11), -- P. Atk. Modifiers
+(18706, 4411, 15), -- M. Atk. Modifiers
+(18706, 4412, 16), -- P. Def. Modifiers
+(18706, 4413, 11), -- M. Def. Modifiers
+(18706, 4414, 2), -- Armor Type
+(18706, 4415, 3), -- Weapon Type
+(18706, 4416, 2), -- Races
 (18706, 5465, 1), -- Earth Attacks
-(18706, 7028, 1), -- Stationary NPCs
+(18706, 7028, 1), -- For Stationary NPCs
 -- 
 (18707, 4045, 1), -- Resist Full Magic Attack
-(18707, 4408, 1), -- HP Increase (1x)
-(18707, 4409, 1), -- MP Increase (1x)
-(18707, 4410, 11), -- Average P. Atk.
-(18707, 4411, 11), -- Average M. Atk.
-(18707, 4412, 11), -- Average P. Def.
-(18707, 4413, 11), -- Average M. Def.
-(18707, 4414, 2), -- Standard Type
-(18707, 4415, 3), -- One-handed Sword
-(18707, 4416, 2), -- Magic Creatures
+(18707, 4408, 1), -- HP Modifiers
+(18707, 4409, 1), -- MP Modifiers
+(18707, 4410, 11), -- P. Atk. Modifiers
+(18707, 4411, 11), -- M. Atk. Modifiers
+(18707, 4412, 11), -- P. Def. Modifiers
+(18707, 4413, 11), -- M. Def. Modifiers
+(18707, 4414, 2), -- Armor Type
+(18707, 4415, 3), -- Weapon Type
+(18707, 4416, 2), -- Races
 (18707, 5467, 1), -- Dark Attacks
 -- Tumor of Death
 (18708, 4045, 1), -- Resist Full Magic Attack
-(18708, 4408, 1), -- HP Increase (1x)
-(18708, 4409, 1), -- MP Increase (1x)
-(18708, 4410, 11), -- Average P. Atk.
-(18708, 4411, 11), -- Average M. Atk.
-(18708, 4412, 8), -- Weak P. Def.
-(18708, 4413, 11), -- Average M. Def.
-(18708, 4414, 2), -- Standard Type
-(18708, 4415, 3), -- One-handed Sword
-(18708, 4416, 2), -- Magic Creatures
+(18708, 4408, 1), -- HP Modifiers
+(18708, 4409, 1), -- MP Modifiers
+(18708, 4410, 11), -- P. Atk. Modifiers
+(18708, 4411, 11), -- M. Atk. Modifiers
+(18708, 4412, 8), -- P. Def. Modifiers
+(18708, 4413, 11), -- M. Def. Modifiers
+(18708, 4414, 2), -- Armor Type
+(18708, 4415, 3), -- Weapon Type
+(18708, 4416, 2), -- Races
 (18708, 5465, 1), -- Earth Attacks
-(18708, 7028, 1), -- Stationary NPCs
+(18708, 7028, 1), -- For Stationary NPCs
 -- Soul Coffin
 (18709, 4045, 1), -- Resist Full Magic Attack
-(18709, 4408, 8), -- HP Increase (1/4x)
-(18709, 4409, 1), -- MP Increase (1x)
-(18709, 4410, 11), -- Average P. Atk.
-(18709, 4411, 11), -- Average M. Atk.
-(18709, 4412, 8), -- Weak P. Def.
-(18709, 4413, 11), -- Average M. Def.
-(18709, 4414, 2), -- Standard Type
-(18709, 4415, 3), -- One-handed Sword
-(18709, 4416, 2), -- Magic Creatures
+(18709, 4408, 8), -- HP Modifiers
+(18709, 4409, 1), -- MP Modifiers
+(18709, 4410, 11), -- P. Atk. Modifiers
+(18709, 4411, 11), -- M. Atk. Modifiers
+(18709, 4412, 8), -- P. Def. Modifiers
+(18709, 4413, 11), -- M. Def. Modifiers
+(18709, 4414, 2), -- Armor Type
+(18709, 4415, 3), -- Weapon Type
+(18709, 4416, 2), -- Races
 (18709, 5465, 1), -- Earth Attacks
-(18709, 7028, 1), -- Stationary NPCs
+(18709, 7028, 1), -- For Stationary NPCs
 -- Soul Coffin
 (18710, 4045, 1), -- Resist Full Magic Attack
-(18710, 4408, 8), -- HP Increase (1/4x)
-(18710, 4409, 1), -- MP Increase (1x)
-(18710, 4410, 11), -- Average P. Atk.
-(18710, 4411, 11), -- Average M. Atk.
-(18710, 4412, 8), -- Weak P. Def.
-(18710, 4413, 11), -- Average M. Def.
-(18710, 4414, 2), -- Standard Type
-(18710, 4415, 3), -- One-handed Sword
-(18710, 4416, 2), -- Magic Creatures
+(18710, 4408, 8), -- HP Modifiers
+(18710, 4409, 1), -- MP Modifiers
+(18710, 4410, 11), -- P. Atk. Modifiers
+(18710, 4411, 11), -- M. Atk. Modifiers
+(18710, 4412, 8), -- P. Def. Modifiers
+(18710, 4413, 11), -- M. Def. Modifiers
+(18710, 4414, 2), -- Armor Type
+(18710, 4415, 3), -- Weapon Type
+(18710, 4416, 2), -- Races
 (18710, 5465, 1), -- Earth Attacks
-(18710, 7028, 1), -- Stationary NPCs
+(18710, 7028, 1), -- For Stationary NPCs
 -- Soul Coffin
 (18711, 4045, 1), -- Resist Full Magic Attack
-(18711, 4408, 8), -- HP Increase (1/4x)
-(18711, 4409, 1), -- MP Increase (1x)
-(18711, 4410, 11), -- Average P. Atk.
-(18711, 4411, 11), -- Average M. Atk.
-(18711, 4412, 8), -- Weak P. Def.
-(18711, 4413, 11), -- Average M. Def.
-(18711, 4414, 2), -- Standard Type
-(18711, 4415, 3), -- One-handed Sword
-(18711, 4416, 2), -- Magic Creatures
+(18711, 4408, 8), -- HP Modifiers
+(18711, 4409, 1), -- MP Modifiers
+(18711, 4410, 11), -- P. Atk. Modifiers
+(18711, 4411, 11), -- M. Atk. Modifiers
+(18711, 4412, 8), -- P. Def. Modifiers
+(18711, 4413, 11), -- M. Def. Modifiers
+(18711, 4414, 2), -- Armor Type
+(18711, 4415, 3), -- Weapon Type
+(18711, 4416, 2), -- Races
 (18711, 5465, 1), -- Earth Attacks
-(18711, 7028, 1), -- Stationary NPCs
+(18711, 7028, 1), -- For Stationary NPCs
 -- Soul Coffin
 (18712, 4045, 1), -- Resist Full Magic Attack
-(18712, 4408, 1), -- HP Increase (1x)
-(18712, 4409, 1), -- MP Increase (1x)
-(18712, 4410, 11), -- Average P. Atk.
-(18712, 4411, 11), -- Average M. Atk.
-(18712, 4412, 11), -- Average P. Def.
-(18712, 4413, 11), -- Average M. Def.
-(18712, 4414, 2), -- Standard Type
-(18712, 4415, 3), -- One-handed Sword
-(18712, 4416, 2), -- Magic Creatures
+(18712, 4408, 1), -- HP Modifiers
+(18712, 4409, 1), -- MP Modifiers
+(18712, 4410, 11), -- P. Atk. Modifiers
+(18712, 4411, 11), -- M. Atk. Modifiers
+(18712, 4412, 11), -- P. Def. Modifiers
+(18712, 4413, 11), -- M. Def. Modifiers
+(18712, 4414, 2), -- Armor Type
+(18712, 4415, 3), -- Weapon Type
+(18712, 4416, 2), -- Races
 (18712, 5465, 1), -- Earth Attacks
 -- Soul Coffin
 (18713, 4045, 1), -- Resist Full Magic Attack
-(18713, 4408, 1), -- HP Increase (1x)
-(18713, 4409, 1), -- MP Increase (1x)
-(18713, 4410, 11), -- Average P. Atk.
-(18713, 4411, 11), -- Average M. Atk.
-(18713, 4412, 11), -- Average P. Def.
-(18713, 4413, 11), -- Average M. Def.
-(18713, 4414, 2), -- Standard Type
-(18713, 4415, 3), -- One-handed Sword
-(18713, 4416, 2), -- Magic Creatures
+(18713, 4408, 1), -- HP Modifiers
+(18713, 4409, 1), -- MP Modifiers
+(18713, 4410, 11), -- P. Atk. Modifiers
+(18713, 4411, 11), -- M. Atk. Modifiers
+(18713, 4412, 11), -- P. Def. Modifiers
+(18713, 4413, 11), -- M. Def. Modifiers
+(18713, 4414, 2), -- Armor Type
+(18713, 4415, 3), -- Weapon Type
+(18713, 4416, 2), -- Races
 (18713, 5465, 1), -- Earth Attacks
 -- Soul Coffin
 (18714, 4045, 1), -- Resist Full Magic Attack
-(18714, 4408, 1), -- HP Increase (1x)
-(18714, 4409, 1), -- MP Increase (1x)
-(18714, 4410, 11), -- Average P. Atk.
-(18714, 4411, 11), -- Average M. Atk.
-(18714, 4412, 11), -- Average P. Def.
-(18714, 4413, 11), -- Average M. Def.
-(18714, 4414, 2), -- Standard Type
-(18714, 4415, 3), -- One-handed Sword
-(18714, 4416, 2), -- Magic Creatures
+(18714, 4408, 1), -- HP Modifiers
+(18714, 4409, 1), -- MP Modifiers
+(18714, 4410, 11), -- P. Atk. Modifiers
+(18714, 4411, 11), -- M. Atk. Modifiers
+(18714, 4412, 11), -- P. Def. Modifiers
+(18714, 4413, 11), -- M. Def. Modifiers
+(18714, 4414, 2), -- Armor Type
+(18714, 4415, 3), -- Weapon Type
+(18714, 4416, 2), -- Races
 (18714, 5465, 1), -- Earth Attacks
 -- Conquered Soul
 (18715, 4045, 1), -- Resist Full Magic Attack
-(18715, 4408, 1), -- HP Increase (1x)
-(18715, 4409, 1), -- MP Increase (1x)
-(18715, 4410, 7), -- Weak P. Atk.
-(18715, 4411, 9), -- Slightly Weak M. Atk.
-(18715, 4412, 11), -- Average P. Def.
-(18715, 4413, 11), -- Average M. Def.
-(18715, 4414, 2), -- Standard Type
-(18715, 4415, 13), -- Two-handed Sword
-(18715, 4416, 1), -- Undead
+(18715, 4408, 1), -- HP Modifiers
+(18715, 4409, 1), -- MP Modifiers
+(18715, 4410, 7), -- P. Atk. Modifiers
+(18715, 4411, 9), -- M. Atk. Modifiers
+(18715, 4412, 11), -- P. Def. Modifiers
+(18715, 4413, 11), -- M. Def. Modifiers
+(18715, 4414, 2), -- Armor Type
+(18715, 4415, 13), -- Weapon Type
+(18715, 4416, 1), -- Races
 (18715, 5467, 1), -- Dark Attacks
 -- Conquered Soul
 (18716, 4045, 1), -- Resist Full Magic Attack
-(18716, 4408, 1), -- HP Increase (1x)
-(18716, 4409, 1), -- MP Increase (1x)
-(18716, 4410, 14), -- Strong P. Atk.
-(18716, 4411, 11), -- Average M. Atk.
-(18716, 4412, 11), -- Average P. Def.
-(18716, 4413, 11), -- Average M. Def.
-(18716, 4414, 2), -- Standard Type
-(18716, 4415, 3), -- One-handed Sword
-(18716, 4416, 1), -- Undead
+(18716, 4408, 1), -- HP Modifiers
+(18716, 4409, 1), -- MP Modifiers
+(18716, 4410, 14), -- P. Atk. Modifiers
+(18716, 4411, 11), -- M. Atk. Modifiers
+(18716, 4412, 11), -- P. Def. Modifiers
+(18716, 4413, 11), -- M. Def. Modifiers
+(18716, 4414, 2), -- Armor Type
+(18716, 4415, 3), -- Weapon Type
+(18716, 4416, 1), -- Races
 (18716, 5467, 1), -- Dark Attacks
 (18716, 5880, 1), -- Vicious Mutilation
 (18716, 5894, 1), -- Mark of Despair
 (18716, 5899, 1), -- Burst of Pain
 -- Conquered Soul
 (18717, 4045, 1), -- Resist Full Magic Attack
-(18717, 4408, 1), -- HP Increase (1x)
-(18717, 4409, 1), -- MP Increase (1x)
-(18717, 4410, 9), -- Slightly Weak P. Atk.
-(18717, 4411, 13), -- Slightly Strong M. Atk.
-(18717, 4412, 11), -- Average P. Def.
-(18717, 4413, 11), -- Average M. Def.
-(18717, 4414, 2), -- Standard Type
-(18717, 4415, 3), -- One-handed Sword
-(18717, 4416, 1), -- Undead
+(18717, 4408, 1), -- HP Modifiers
+(18717, 4409, 1), -- MP Modifiers
+(18717, 4410, 9), -- P. Atk. Modifiers
+(18717, 4411, 13), -- M. Atk. Modifiers
+(18717, 4412, 11), -- P. Def. Modifiers
+(18717, 4413, 11), -- M. Def. Modifiers
+(18717, 4414, 2), -- Armor Type
+(18717, 4415, 3), -- Weapon Type
+(18717, 4416, 1), -- Races
 (18717, 5465, 1), -- Earth Attacks
 (18717, 5896, 1), -- Soulless
 (18717, 5901, 1), -- Mist of Oblivion
 -- Sacrificed Fanatic
 (18718, 4045, 1), -- Resist Full Magic Attack
-(18718, 4408, 1), -- HP Increase (1x)
-(18718, 4409, 1), -- MP Increase (1x)
-(18718, 4410, 11), -- Average P. Atk.
-(18718, 4411, 11), -- Average M. Atk.
-(18718, 4412, 11), -- Average P. Def.
-(18718, 4413, 11), -- Average M. Def.
-(18718, 4414, 2), -- Standard Type
-(18718, 4415, 5), -- Blunt Weapons
-(18718, 4416, 6), -- Humanoids
+(18718, 4408, 1), -- HP Modifiers
+(18718, 4409, 1), -- MP Modifiers
+(18718, 4410, 11), -- P. Atk. Modifiers
+(18718, 4411, 11), -- M. Atk. Modifiers
+(18718, 4412, 11), -- P. Def. Modifiers
+(18718, 4413, 11), -- M. Def. Modifiers
+(18718, 4414, 2), -- Armor Type
+(18718, 4415, 5), -- Weapon Type
+(18718, 4416, 6), -- Races
 (18718, 5467, 1), -- Dark Attacks
 -- Sacrificed Fanatic
 (18719, 4045, 1), -- Resist Full Magic Attack
-(18719, 4408, 1), -- HP Increase (1x)
-(18719, 4409, 1), -- MP Increase (1x)
-(18719, 4410, 11), -- Average P. Atk.
-(18719, 4411, 11), -- Average M. Atk.
-(18719, 4412, 11), -- Average P. Def.
-(18719, 4413, 11), -- Average M. Def.
-(18719, 4414, 2), -- Standard Type
-(18719, 4415, 3), -- One-handed Sword
-(18719, 4416, 6), -- Humanoids
+(18719, 4408, 1), -- HP Modifiers
+(18719, 4409, 1), -- MP Modifiers
+(18719, 4410, 11), -- P. Atk. Modifiers
+(18719, 4411, 11), -- M. Atk. Modifiers
+(18719, 4412, 11), -- P. Def. Modifiers
+(18719, 4413, 11), -- M. Def. Modifiers
+(18719, 4414, 2), -- Armor Type
+(18719, 4415, 3), -- Weapon Type
+(18719, 4416, 6), -- Races
 (18719, 5467, 1), -- Dark Attacks
 -- Trap
 (18720, 4186, 9), -- Hold
-(18720, 4408, 1), -- HP Increase (1x)
-(18720, 4409, 1), -- MP Increase (1x)
-(18720, 4410, 11), -- Average P. Atk.
-(18720, 4411, 11), -- Average M. Atk.
-(18720, 4412, 11), -- Average P. Def.
-(18720, 4413, 11), -- Average M. Def.
-(18720, 4414, 2), -- Standard Type
-(18720, 4415, 3), -- One-handed Sword
-(18720, 4416, 19), -- Others
+(18720, 4408, 1), -- HP Modifiers
+(18720, 4409, 1), -- MP Modifiers
+(18720, 4410, 11), -- P. Atk. Modifiers
+(18720, 4411, 11), -- M. Atk. Modifiers
+(18720, 4412, 11), -- P. Def. Modifiers
+(18720, 4413, 11), -- M. Def. Modifiers
+(18720, 4414, 2), -- Armor Type
+(18720, 4415, 3), -- Weapon Type
+(18720, 4416, 19), -- Races
 -- Trap
 (18721, 4186, 9), -- Hold
-(18721, 4408, 1), -- HP Increase (1x)
-(18721, 4409, 1), -- MP Increase (1x)
-(18721, 4410, 11), -- Average P. Atk.
-(18721, 4411, 11), -- Average M. Atk.
-(18721, 4412, 11), -- Average P. Def.
-(18721, 4413, 11), -- Average M. Def.
-(18721, 4414, 2), -- Standard Type
-(18721, 4415, 3), -- One-handed Sword
-(18721, 4416, 19), -- Others
+(18721, 4408, 1), -- HP Modifiers
+(18721, 4409, 1), -- MP Modifiers
+(18721, 4410, 11), -- P. Atk. Modifiers
+(18721, 4411, 11), -- M. Atk. Modifiers
+(18721, 4412, 11), -- P. Def. Modifiers
+(18721, 4413, 11), -- M. Def. Modifiers
+(18721, 4414, 2), -- Armor Type
+(18721, 4415, 3), -- Weapon Type
+(18721, 4416, 19), -- Races
 -- Trap
 (18722, 4186, 9), -- Hold
-(18722, 4408, 1), -- HP Increase (1x)
-(18722, 4409, 1), -- MP Increase (1x)
-(18722, 4410, 11), -- Average P. Atk.
-(18722, 4411, 11), -- Average M. Atk.
-(18722, 4412, 11), -- Average P. Def.
-(18722, 4413, 11), -- Average M. Def.
-(18722, 4414, 2), -- Standard Type
-(18722, 4415, 3), -- One-handed Sword
-(18722, 4416, 19), -- Others
+(18722, 4408, 1), -- HP Modifiers
+(18722, 4409, 1), -- MP Modifiers
+(18722, 4410, 11), -- P. Atk. Modifiers
+(18722, 4411, 11), -- M. Atk. Modifiers
+(18722, 4412, 11), -- P. Def. Modifiers
+(18722, 4413, 11), -- M. Def. Modifiers
+(18722, 4414, 2), -- Armor Type
+(18722, 4415, 3), -- Weapon Type
+(18722, 4416, 19), -- Races
 -- Trap
 (18723, 4186, 9), -- Hold
-(18723, 4408, 1), -- HP Increase (1x)
-(18723, 4409, 1), -- MP Increase (1x)
-(18723, 4410, 11), -- Average P. Atk.
-(18723, 4411, 11), -- Average M. Atk.
-(18723, 4412, 11), -- Average P. Def.
-(18723, 4413, 11), -- Average M. Def.
-(18723, 4414, 2), -- Standard Type
-(18723, 4415, 3), -- One-handed Sword
-(18723, 4416, 19), -- Others
+(18723, 4408, 1), -- HP Modifiers
+(18723, 4409, 1), -- MP Modifiers
+(18723, 4410, 11), -- P. Atk. Modifiers
+(18723, 4411, 11), -- M. Atk. Modifiers
+(18723, 4412, 11), -- P. Def. Modifiers
+(18723, 4413, 11), -- M. Def. Modifiers
+(18723, 4414, 2), -- Armor Type
+(18723, 4415, 3), -- Weapon Type
+(18723, 4416, 19), -- Races
 -- Trap
 (18724, 4186, 9), -- Hold
-(18724, 4408, 1), -- HP Increase (1x)
-(18724, 4409, 1), -- MP Increase (1x)
-(18724, 4410, 11), -- Average P. Atk.
-(18724, 4411, 11), -- Average M. Atk.
-(18724, 4412, 11), -- Average P. Def.
-(18724, 4413, 11), -- Average M. Def.
-(18724, 4414, 2), -- Standard Type
-(18724, 4415, 3), -- One-handed Sword
-(18724, 4416, 19), -- Others
+(18724, 4408, 1), -- HP Modifiers
+(18724, 4409, 1), -- MP Modifiers
+(18724, 4410, 11), -- P. Atk. Modifiers
+(18724, 4411, 11), -- M. Atk. Modifiers
+(18724, 4412, 11), -- P. Def. Modifiers
+(18724, 4413, 11), -- M. Def. Modifiers
+(18724, 4414, 2), -- Armor Type
+(18724, 4415, 3), -- Weapon Type
+(18724, 4416, 19), -- Races
 -- Trap
 (18725, 4186, 9), -- Hold
-(18725, 4408, 1), -- HP Increase (1x)
-(18725, 4409, 1), -- MP Increase (1x)
-(18725, 4410, 11), -- Average P. Atk.
-(18725, 4411, 11), -- Average M. Atk.
-(18725, 4412, 11), -- Average P. Def.
-(18725, 4413, 11), -- Average M. Def.
-(18725, 4414, 2), -- Standard Type
-(18725, 4415, 3), -- One-handed Sword
-(18725, 4416, 19), -- Others
+(18725, 4408, 1), -- HP Modifiers
+(18725, 4409, 1), -- MP Modifiers
+(18725, 4410, 11), -- P. Atk. Modifiers
+(18725, 4411, 11), -- M. Atk. Modifiers
+(18725, 4412, 11), -- P. Def. Modifiers
+(18725, 4413, 11), -- M. Def. Modifiers
+(18725, 4414, 2), -- Armor Type
+(18725, 4415, 3), -- Weapon Type
+(18725, 4416, 19), -- Races
 -- Trap
 (18726, 4186, 9), -- Hold
-(18726, 4408, 1), -- HP Increase (1x)
-(18726, 4409, 1), -- MP Increase (1x)
-(18726, 4410, 11), -- Average P. Atk.
-(18726, 4411, 11), -- Average M. Atk.
-(18726, 4412, 11), -- Average P. Def.
-(18726, 4413, 11), -- Average M. Def.
-(18726, 4414, 2), -- Standard Type
-(18726, 4415, 3), -- One-handed Sword
-(18726, 4416, 19), -- Others
+(18726, 4408, 1), -- HP Modifiers
+(18726, 4409, 1), -- MP Modifiers
+(18726, 4410, 11), -- P. Atk. Modifiers
+(18726, 4411, 11), -- M. Atk. Modifiers
+(18726, 4412, 11), -- P. Def. Modifiers
+(18726, 4413, 11), -- M. Def. Modifiers
+(18726, 4414, 2), -- Armor Type
+(18726, 4415, 3), -- Weapon Type
+(18726, 4416, 19), -- Races
 -- Trap
 (18727, 4186, 9), -- Hold
-(18727, 4408, 1), -- HP Increase (1x)
-(18727, 4409, 1), -- MP Increase (1x)
-(18727, 4410, 11), -- Average P. Atk.
-(18727, 4411, 11), -- Average M. Atk.
-(18727, 4412, 11), -- Average P. Def.
-(18727, 4413, 11), -- Average M. Def.
-(18727, 4414, 2), -- Standard Type
-(18727, 4415, 3), -- One-handed Sword
-(18727, 4416, 19), -- Others
+(18727, 4408, 1), -- HP Modifiers
+(18727, 4409, 1), -- MP Modifiers
+(18727, 4410, 11), -- P. Atk. Modifiers
+(18727, 4411, 11), -- M. Atk. Modifiers
+(18727, 4412, 11), -- P. Def. Modifiers
+(18727, 4413, 11), -- M. Def. Modifiers
+(18727, 4414, 2), -- Armor Type
+(18727, 4415, 3), -- Weapon Type
+(18727, 4416, 19), -- Races
 -- Trap
 (18728, 4186, 9), -- Hold
-(18728, 4408, 1), -- HP Increase (1x)
-(18728, 4409, 1), -- MP Increase (1x)
-(18728, 4410, 11), -- Average P. Atk.
-(18728, 4411, 11), -- Average M. Atk.
-(18728, 4412, 11), -- Average P. Def.
-(18728, 4413, 11), -- Average M. Def.
-(18728, 4414, 2), -- Standard Type
-(18728, 4415, 3), -- One-handed Sword
-(18728, 4416, 19), -- Others
+(18728, 4408, 1), -- HP Modifiers
+(18728, 4409, 1), -- MP Modifiers
+(18728, 4410, 11), -- P. Atk. Modifiers
+(18728, 4411, 11), -- M. Atk. Modifiers
+(18728, 4412, 11), -- P. Def. Modifiers
+(18728, 4413, 11), -- M. Def. Modifiers
+(18728, 4414, 2), -- Armor Type
+(18728, 4415, 3), -- Weapon Type
+(18728, 4416, 19), -- Races
 -- Trap
-(18729, 4072, 10), -- Stun
-(18729, 4408, 1), -- HP Increase (1x)
-(18729, 4409, 1), -- MP Increase (1x)
-(18729, 4410, 11), -- Average P. Atk.
-(18729, 4411, 11), -- Average M. Atk.
-(18729, 4412, 11), -- Average P. Def.
-(18729, 4413, 11), -- Average M. Def.
-(18729, 4414, 2), -- Standard Type
-(18729, 4415, 3), -- One-handed Sword
-(18729, 4416, 19), -- Others
+(18729, 4072, 10), -- Shock
+(18729, 4408, 1), -- HP Modifiers
+(18729, 4409, 1), -- MP Modifiers
+(18729, 4410, 11), -- P. Atk. Modifiers
+(18729, 4411, 11), -- M. Atk. Modifiers
+(18729, 4412, 11), -- P. Def. Modifiers
+(18729, 4413, 11), -- M. Def. Modifiers
+(18729, 4414, 2), -- Armor Type
+(18729, 4415, 3), -- Weapon Type
+(18729, 4416, 19), -- Races
 -- Trap
-(18730, 4072, 10), -- Stun
-(18730, 4408, 1), -- HP Increase (1x)
-(18730, 4409, 1), -- MP Increase (1x)
-(18730, 4410, 11), -- Average P. Atk.
-(18730, 4411, 11), -- Average M. Atk.
-(18730, 4412, 11), -- Average P. Def.
-(18730, 4413, 11), -- Average M. Def.
-(18730, 4414, 2), -- Standard Type
-(18730, 4415, 3), -- One-handed Sword
-(18730, 4416, 19), -- Others
+(18730, 4072, 10), -- Shock
+(18730, 4408, 1), -- HP Modifiers
+(18730, 4409, 1), -- MP Modifiers
+(18730, 4410, 11), -- P. Atk. Modifiers
+(18730, 4411, 11), -- M. Atk. Modifiers
+(18730, 4412, 11), -- P. Def. Modifiers
+(18730, 4413, 11), -- M. Def. Modifiers
+(18730, 4414, 2), -- Armor Type
+(18730, 4415, 3), -- Weapon Type
+(18730, 4416, 19), -- Races
 -- Trap
-(18731, 4072, 10), -- Stun
-(18731, 4408, 1), -- HP Increase (1x)
-(18731, 4409, 1), -- MP Increase (1x)
-(18731, 4410, 11), -- Average P. Atk.
-(18731, 4411, 11), -- Average M. Atk.
-(18731, 4412, 11), -- Average P. Def.
-(18731, 4413, 11), -- Average M. Def.
-(18731, 4414, 2), -- Standard Type
-(18731, 4415, 3), -- One-handed Sword
-(18731, 4416, 19), -- Others
+(18731, 4072, 10), -- Shock
+(18731, 4408, 1), -- HP Modifiers
+(18731, 4409, 1), -- MP Modifiers
+(18731, 4410, 11), -- P. Atk. Modifiers
+(18731, 4411, 11), -- M. Atk. Modifiers
+(18731, 4412, 11), -- P. Def. Modifiers
+(18731, 4413, 11), -- M. Def. Modifiers
+(18731, 4414, 2), -- Armor Type
+(18731, 4415, 3), -- Weapon Type
+(18731, 4416, 19), -- Races
 -- Trap
-(18732, 4072, 10), -- Stun
-(18732, 4408, 1), -- HP Increase (1x)
-(18732, 4409, 1), -- MP Increase (1x)
-(18732, 4410, 11), -- Average P. Atk.
-(18732, 4411, 11), -- Average M. Atk.
-(18732, 4412, 11), -- Average P. Def.
-(18732, 4413, 11), -- Average M. Def.
-(18732, 4414, 2), -- Standard Type
-(18732, 4415, 3), -- One-handed Sword
-(18732, 4416, 19), -- Others
+(18732, 4072, 10), -- Shock
+(18732, 4408, 1), -- HP Modifiers
+(18732, 4409, 1), -- MP Modifiers
+(18732, 4410, 11), -- P. Atk. Modifiers
+(18732, 4411, 11), -- M. Atk. Modifiers
+(18732, 4412, 11), -- P. Def. Modifiers
+(18732, 4413, 11), -- M. Def. Modifiers
+(18732, 4414, 2), -- Armor Type
+(18732, 4415, 3), -- Weapon Type
+(18732, 4416, 19), -- Races
 -- Trap
-(18733, 4072, 10), -- Stun
-(18733, 4408, 1), -- HP Increase (1x)
-(18733, 4409, 1), -- MP Increase (1x)
-(18733, 4410, 11), -- Average P. Atk.
-(18733, 4411, 11), -- Average M. Atk.
-(18733, 4412, 11), -- Average P. Def.
-(18733, 4413, 11), -- Average M. Def.
-(18733, 4414, 2), -- Standard Type
-(18733, 4415, 3), -- One-handed Sword
-(18733, 4416, 19), -- Others
+(18733, 4072, 10), -- Shock
+(18733, 4408, 1), -- HP Modifiers
+(18733, 4409, 1), -- MP Modifiers
+(18733, 4410, 11), -- P. Atk. Modifiers
+(18733, 4411, 11), -- M. Atk. Modifiers
+(18733, 4412, 11), -- P. Def. Modifiers
+(18733, 4413, 11), -- M. Def. Modifiers
+(18733, 4414, 2), -- Armor Type
+(18733, 4415, 3), -- Weapon Type
+(18733, 4416, 19), -- Races
 -- Trap
-(18734, 4072, 10), -- Stun
-(18734, 4408, 1), -- HP Increase (1x)
-(18734, 4409, 1), -- MP Increase (1x)
-(18734, 4410, 11), -- Average P. Atk.
-(18734, 4411, 11), -- Average M. Atk.
-(18734, 4412, 11), -- Average P. Def.
-(18734, 4413, 11), -- Average M. Def.
-(18734, 4414, 2), -- Standard Type
-(18734, 4415, 3), -- One-handed Sword
-(18734, 4416, 19), -- Others
+(18734, 4072, 10), -- Shock
+(18734, 4408, 1), -- HP Modifiers
+(18734, 4409, 1), -- MP Modifiers
+(18734, 4410, 11), -- P. Atk. Modifiers
+(18734, 4411, 11), -- M. Atk. Modifiers
+(18734, 4412, 11), -- P. Def. Modifiers
+(18734, 4413, 11), -- M. Def. Modifiers
+(18734, 4414, 2), -- Armor Type
+(18734, 4415, 3), -- Weapon Type
+(18734, 4416, 19), -- Races
 -- Trap
-(18735, 4072, 10), -- Stun
-(18735, 4408, 1), -- HP Increase (1x)
-(18735, 4409, 1), -- MP Increase (1x)
-(18735, 4410, 11), -- Average P. Atk.
-(18735, 4411, 11), -- Average M. Atk.
-(18735, 4412, 11), -- Average P. Def.
-(18735, 4413, 11), -- Average M. Def.
-(18735, 4414, 2), -- Standard Type
-(18735, 4415, 3), -- One-handed Sword
-(18735, 4416, 19), -- Others
+(18735, 4072, 10), -- Shock
+(18735, 4408, 1), -- HP Modifiers
+(18735, 4409, 1), -- MP Modifiers
+(18735, 4410, 11), -- P. Atk. Modifiers
+(18735, 4411, 11), -- M. Atk. Modifiers
+(18735, 4412, 11), -- P. Def. Modifiers
+(18735, 4413, 11), -- M. Def. Modifiers
+(18735, 4414, 2), -- Armor Type
+(18735, 4415, 3), -- Weapon Type
+(18735, 4416, 19), -- Races
 -- Trap
-(18736, 4072, 10), -- Stun
-(18736, 4408, 1), -- HP Increase (1x)
-(18736, 4409, 1), -- MP Increase (1x)
-(18736, 4410, 11), -- Average P. Atk.
-(18736, 4411, 11), -- Average M. Atk.
-(18736, 4412, 11), -- Average P. Def.
-(18736, 4413, 11), -- Average M. Def.
-(18736, 4414, 2), -- Standard Type
-(18736, 4415, 3), -- One-handed Sword
-(18736, 4416, 19), -- Others
+(18736, 4072, 10), -- Shock
+(18736, 4408, 1), -- HP Modifiers
+(18736, 4409, 1), -- MP Modifiers
+(18736, 4410, 11), -- P. Atk. Modifiers
+(18736, 4411, 11), -- M. Atk. Modifiers
+(18736, 4412, 11), -- P. Def. Modifiers
+(18736, 4413, 11), -- M. Def. Modifiers
+(18736, 4414, 2), -- Armor Type
+(18736, 4415, 3), -- Weapon Type
+(18736, 4416, 19), -- Races
 -- Trap
-(18737, 4408, 1), -- HP Increase (1x)
-(18737, 4409, 1), -- MP Increase (1x)
-(18737, 4410, 11), -- Average P. Atk.
-(18737, 4411, 11), -- Average M. Atk.
-(18737, 4412, 11), -- Average P. Def.
-(18737, 4413, 11), -- Average M. Def.
-(18737, 4414, 2), -- Standard Type
-(18737, 4415, 3), -- One-handed Sword
-(18737, 4416, 19), -- Others
-(18737, 5340, 4), -- Whirlwind
+(18737, 4408, 1), -- HP Modifiers
+(18737, 4409, 1), -- MP Modifiers
+(18737, 4410, 11), -- P. Atk. Modifiers
+(18737, 4411, 11), -- M. Atk. Modifiers
+(18737, 4412, 11), -- P. Def. Modifiers
+(18737, 4413, 11), -- M. Def. Modifiers
+(18737, 4414, 2), -- Armor Type
+(18737, 4415, 3), -- Weapon Type
+(18737, 4416, 19), -- Races
+(18737, 5340, 4), -- NPC(party) - Physical Range Close Range Attack - Fire
 -- Trap
-(18738, 4408, 1), -- HP Increase (1x)
-(18738, 4409, 1), -- MP Increase (1x)
-(18738, 4410, 11), -- Average P. Atk.
-(18738, 4411, 11), -- Average M. Atk.
-(18738, 4412, 11), -- Average P. Def.
-(18738, 4413, 11), -- Average M. Def.
-(18738, 4414, 2), -- Standard Type
-(18738, 4415, 3), -- One-handed Sword
-(18738, 4416, 19), -- Others
-(18738, 5340, 4), -- Whirlwind
+(18738, 4408, 1), -- HP Modifiers
+(18738, 4409, 1), -- MP Modifiers
+(18738, 4410, 11), -- P. Atk. Modifiers
+(18738, 4411, 11), -- M. Atk. Modifiers
+(18738, 4412, 11), -- P. Def. Modifiers
+(18738, 4413, 11), -- M. Def. Modifiers
+(18738, 4414, 2), -- Armor Type
+(18738, 4415, 3), -- Weapon Type
+(18738, 4416, 19), -- Races
+(18738, 5340, 4), -- NPC(party) - Physical Range Close Range Attack - Fire
 -- Trap
-(18739, 4408, 1), -- HP Increase (1x)
-(18739, 4409, 1), -- MP Increase (1x)
-(18739, 4410, 11), -- Average P. Atk.
-(18739, 4411, 11), -- Average M. Atk.
-(18739, 4412, 11), -- Average P. Def.
-(18739, 4413, 11), -- Average M. Def.
-(18739, 4414, 2), -- Standard Type
-(18739, 4415, 3), -- One-handed Sword
-(18739, 4416, 19), -- Others
-(18739, 5340, 4), -- Whirlwind
+(18739, 4408, 1), -- HP Modifiers
+(18739, 4409, 1), -- MP Modifiers
+(18739, 4410, 11), -- P. Atk. Modifiers
+(18739, 4411, 11), -- M. Atk. Modifiers
+(18739, 4412, 11), -- P. Def. Modifiers
+(18739, 4413, 11), -- M. Def. Modifiers
+(18739, 4414, 2), -- Armor Type
+(18739, 4415, 3), -- Weapon Type
+(18739, 4416, 19), -- Races
+(18739, 5340, 4), -- NPC(party) - Physical Range Close Range Attack - Fire
 -- Trap
-(18740, 4408, 1), -- HP Increase (1x)
-(18740, 4409, 1), -- MP Increase (1x)
-(18740, 4410, 11), -- Average P. Atk.
-(18740, 4411, 11), -- Average M. Atk.
-(18740, 4412, 11), -- Average P. Def.
-(18740, 4413, 11), -- Average M. Def.
-(18740, 4414, 2), -- Standard Type
-(18740, 4415, 3), -- One-handed Sword
-(18740, 4416, 19), -- Others
-(18740, 5340, 4), -- Whirlwind
+(18740, 4408, 1), -- HP Modifiers
+(18740, 4409, 1), -- MP Modifiers
+(18740, 4410, 11), -- P. Atk. Modifiers
+(18740, 4411, 11), -- M. Atk. Modifiers
+(18740, 4412, 11), -- P. Def. Modifiers
+(18740, 4413, 11), -- M. Def. Modifiers
+(18740, 4414, 2), -- Armor Type
+(18740, 4415, 3), -- Weapon Type
+(18740, 4416, 19), -- Races
+(18740, 5340, 4), -- NPC(party) - Physical Range Close Range Attack - Fire
 -- Trap
-(18741, 4408, 1), -- HP Increase (1x)
-(18741, 4409, 1), -- MP Increase (1x)
-(18741, 4410, 11), -- Average P. Atk.
-(18741, 4411, 11), -- Average M. Atk.
-(18741, 4412, 11), -- Average P. Def.
-(18741, 4413, 11), -- Average M. Def.
-(18741, 4414, 2), -- Standard Type
-(18741, 4415, 3), -- One-handed Sword
-(18741, 4416, 19), -- Others
-(18741, 5340, 4), -- Whirlwind
+(18741, 4408, 1), -- HP Modifiers
+(18741, 4409, 1), -- MP Modifiers
+(18741, 4410, 11), -- P. Atk. Modifiers
+(18741, 4411, 11), -- M. Atk. Modifiers
+(18741, 4412, 11), -- P. Def. Modifiers
+(18741, 4413, 11), -- M. Def. Modifiers
+(18741, 4414, 2), -- Armor Type
+(18741, 4415, 3), -- Weapon Type
+(18741, 4416, 19), -- Races
+(18741, 5340, 4), -- NPC(party) - Physical Range Close Range Attack - Fire
 -- Trap
-(18742, 4408, 1), -- HP Increase (1x)
-(18742, 4409, 1), -- MP Increase (1x)
-(18742, 4410, 11), -- Average P. Atk.
-(18742, 4411, 11), -- Average M. Atk.
-(18742, 4412, 11), -- Average P. Def.
-(18742, 4413, 11), -- Average M. Def.
-(18742, 4414, 2), -- Standard Type
-(18742, 4415, 3), -- One-handed Sword
-(18742, 4416, 19), -- Others
-(18742, 5340, 4), -- Whirlwind
+(18742, 4408, 1), -- HP Modifiers
+(18742, 4409, 1), -- MP Modifiers
+(18742, 4410, 11), -- P. Atk. Modifiers
+(18742, 4411, 11), -- M. Atk. Modifiers
+(18742, 4412, 11), -- P. Def. Modifiers
+(18742, 4413, 11), -- M. Def. Modifiers
+(18742, 4414, 2), -- Armor Type
+(18742, 4415, 3), -- Weapon Type
+(18742, 4416, 19), -- Races
+(18742, 5340, 4), -- NPC(party) - Physical Range Close Range Attack - Fire
 -- Trap
-(18743, 4408, 1), -- HP Increase (1x)
-(18743, 4409, 1), -- MP Increase (1x)
-(18743, 4410, 11), -- Average P. Atk.
-(18743, 4411, 11), -- Average M. Atk.
-(18743, 4412, 11), -- Average P. Def.
-(18743, 4413, 11), -- Average M. Def.
-(18743, 4414, 2), -- Standard Type
-(18743, 4415, 3), -- One-handed Sword
-(18743, 4416, 19), -- Others
-(18743, 5340, 4), -- Whirlwind
+(18743, 4408, 1), -- HP Modifiers
+(18743, 4409, 1), -- MP Modifiers
+(18743, 4410, 11), -- P. Atk. Modifiers
+(18743, 4411, 11), -- M. Atk. Modifiers
+(18743, 4412, 11), -- P. Def. Modifiers
+(18743, 4413, 11), -- M. Def. Modifiers
+(18743, 4414, 2), -- Armor Type
+(18743, 4415, 3), -- Weapon Type
+(18743, 4416, 19), -- Races
+(18743, 5340, 4), -- NPC(party) - Physical Range Close Range Attack - Fire
 -- Trap
-(18744, 4408, 1), -- HP Increase (1x)
-(18744, 4409, 1), -- MP Increase (1x)
-(18744, 4410, 11), -- Average P. Atk.
-(18744, 4411, 11), -- Average M. Atk.
-(18744, 4412, 11), -- Average P. Def.
-(18744, 4413, 11), -- Average M. Def.
-(18744, 4414, 2), -- Standard Type
-(18744, 4415, 3), -- One-handed Sword
-(18744, 4416, 19), -- Others
-(18744, 5340, 4), -- Whirlwind
+(18744, 4408, 1), -- HP Modifiers
+(18744, 4409, 1), -- MP Modifiers
+(18744, 4410, 11), -- P. Atk. Modifiers
+(18744, 4411, 11), -- M. Atk. Modifiers
+(18744, 4412, 11), -- P. Def. Modifiers
+(18744, 4413, 11), -- M. Def. Modifiers
+(18744, 4414, 2), -- Armor Type
+(18744, 4415, 3), -- Weapon Type
+(18744, 4416, 19), -- Races
+(18744, 5340, 4), -- NPC(party) - Physical Range Close Range Attack - Fire
 -- Trap
-(18745, 4408, 1), -- HP Increase (1x)
-(18745, 4409, 1), -- MP Increase (1x)
-(18745, 4410, 11), -- Average P. Atk.
-(18745, 4411, 11), -- Average M. Atk.
-(18745, 4412, 11), -- Average P. Def.
-(18745, 4413, 11), -- Average M. Def.
-(18745, 4414, 2), -- Standard Type
-(18745, 4415, 3), -- One-handed Sword
-(18745, 4416, 19), -- Others
-(18745, 5340, 4), -- Whirlwind
+(18745, 4408, 1), -- HP Modifiers
+(18745, 4409, 1), -- MP Modifiers
+(18745, 4410, 11), -- P. Atk. Modifiers
+(18745, 4411, 11), -- M. Atk. Modifiers
+(18745, 4412, 11), -- P. Def. Modifiers
+(18745, 4413, 11), -- M. Def. Modifiers
+(18745, 4414, 2), -- Armor Type
+(18745, 4415, 3), -- Weapon Type
+(18745, 4416, 19), -- Races
+(18745, 5340, 4), -- NPC(party) - Physical Range Close Range Attack - Fire
 -- Trap
-(18746, 4408, 1), -- HP Increase (1x)
-(18746, 4409, 1), -- MP Increase (1x)
-(18746, 4410, 11), -- Average P. Atk.
-(18746, 4411, 11), -- Average M. Atk.
-(18746, 4412, 11), -- Average P. Def.
-(18746, 4413, 11), -- Average M. Def.
-(18746, 4414, 2), -- Standard Type
-(18746, 4415, 3), -- One-handed Sword
-(18746, 4416, 19), -- Others
-(18746, 5340, 4), -- Whirlwind
+(18746, 4408, 1), -- HP Modifiers
+(18746, 4409, 1), -- MP Modifiers
+(18746, 4410, 11), -- P. Atk. Modifiers
+(18746, 4411, 11), -- M. Atk. Modifiers
+(18746, 4412, 11), -- P. Def. Modifiers
+(18746, 4413, 11), -- M. Def. Modifiers
+(18746, 4414, 2), -- Armor Type
+(18746, 4415, 3), -- Weapon Type
+(18746, 4416, 19), -- Races
+(18746, 5340, 4), -- NPC(party) - Physical Range Close Range Attack - Fire
 -- Trap
-(18747, 4408, 1), -- HP Increase (1x)
-(18747, 4409, 1), -- MP Increase (1x)
-(18747, 4410, 11), -- Average P. Atk.
-(18747, 4411, 11), -- Average M. Atk.
-(18747, 4412, 11), -- Average P. Def.
-(18747, 4413, 11), -- Average M. Def.
-(18747, 4414, 2), -- Standard Type
-(18747, 4415, 3), -- One-handed Sword
-(18747, 4416, 19), -- Others
-(18747, 5340, 4), -- Whirlwind
+(18747, 4408, 1), -- HP Modifiers
+(18747, 4409, 1), -- MP Modifiers
+(18747, 4410, 11), -- P. Atk. Modifiers
+(18747, 4411, 11), -- M. Atk. Modifiers
+(18747, 4412, 11), -- P. Def. Modifiers
+(18747, 4413, 11), -- M. Def. Modifiers
+(18747, 4414, 2), -- Armor Type
+(18747, 4415, 3), -- Weapon Type
+(18747, 4416, 19), -- Races
+(18747, 5340, 4), -- NPC(party) - Physical Range Close Range Attack - Fire
 -- Trap
-(18748, 4408, 1), -- HP Increase (1x)
-(18748, 4409, 1), -- MP Increase (1x)
-(18748, 4410, 11), -- Average P. Atk.
-(18748, 4411, 11), -- Average M. Atk.
-(18748, 4412, 11), -- Average P. Def.
-(18748, 4413, 11), -- Average M. Def.
-(18748, 4414, 2), -- Standard Type
-(18748, 4415, 3), -- One-handed Sword
-(18748, 4416, 19), -- Others
-(18748, 5340, 4), -- Whirlwind
+(18748, 4408, 1), -- HP Modifiers
+(18748, 4409, 1), -- MP Modifiers
+(18748, 4410, 11), -- P. Atk. Modifiers
+(18748, 4411, 11), -- M. Atk. Modifiers
+(18748, 4412, 11), -- P. Def. Modifiers
+(18748, 4413, 11), -- M. Def. Modifiers
+(18748, 4414, 2), -- Armor Type
+(18748, 4415, 3), -- Weapon Type
+(18748, 4416, 19), -- Races
+(18748, 5340, 4), -- NPC(party) - Physical Range Close Range Attack - Fire
 -- Trap
-(18749, 4408, 1), -- HP Increase (1x)
-(18749, 4409, 1), -- MP Increase (1x)
-(18749, 4410, 11), -- Average P. Atk.
-(18749, 4411, 11), -- Average M. Atk.
-(18749, 4412, 11), -- Average P. Def.
-(18749, 4413, 11), -- Average M. Def.
-(18749, 4414, 2), -- Standard Type
-(18749, 4415, 3), -- One-handed Sword
-(18749, 4416, 19), -- Others
-(18749, 5340, 4), -- Whirlwind
+(18749, 4408, 1), -- HP Modifiers
+(18749, 4409, 1), -- MP Modifiers
+(18749, 4410, 11), -- P. Atk. Modifiers
+(18749, 4411, 11), -- M. Atk. Modifiers
+(18749, 4412, 11), -- P. Def. Modifiers
+(18749, 4413, 11), -- M. Def. Modifiers
+(18749, 4414, 2), -- Armor Type
+(18749, 4415, 3), -- Weapon Type
+(18749, 4416, 19), -- Races
+(18749, 5340, 4), -- NPC(party) - Physical Range Close Range Attack - Fire
 -- Trap
-(18750, 4408, 1), -- HP Increase (1x)
-(18750, 4409, 1), -- MP Increase (1x)
-(18750, 4410, 11), -- Average P. Atk.
-(18750, 4411, 11), -- Average M. Atk.
-(18750, 4412, 11), -- Average P. Def.
-(18750, 4413, 11), -- Average M. Def.
-(18750, 4414, 2), -- Standard Type
-(18750, 4415, 3), -- One-handed Sword
-(18750, 4416, 19), -- Others
-(18750, 5340, 4), -- Whirlwind
+(18750, 4408, 1), -- HP Modifiers
+(18750, 4409, 1), -- MP Modifiers
+(18750, 4410, 11), -- P. Atk. Modifiers
+(18750, 4411, 11), -- M. Atk. Modifiers
+(18750, 4412, 11), -- P. Def. Modifiers
+(18750, 4413, 11), -- M. Def. Modifiers
+(18750, 4414, 2), -- Armor Type
+(18750, 4415, 3), -- Weapon Type
+(18750, 4416, 19), -- Races
+(18750, 5340, 4), -- NPC(party) - Physical Range Close Range Attack - Fire
 -- Trap
-(18751, 4408, 1), -- HP Increase (1x)
-(18751, 4409, 1), -- MP Increase (1x)
-(18751, 4410, 11), -- Average P. Atk.
-(18751, 4411, 11), -- Average M. Atk.
-(18751, 4412, 11), -- Average P. Def.
-(18751, 4413, 11), -- Average M. Def.
-(18751, 4414, 2), -- Standard Type
-(18751, 4415, 3), -- One-handed Sword
-(18751, 4416, 19), -- Others
-(18751, 5340, 4), -- Whirlwind
+(18751, 4408, 1), -- HP Modifiers
+(18751, 4409, 1), -- MP Modifiers
+(18751, 4410, 11), -- P. Atk. Modifiers
+(18751, 4411, 11), -- M. Atk. Modifiers
+(18751, 4412, 11), -- P. Def. Modifiers
+(18751, 4413, 11), -- M. Def. Modifiers
+(18751, 4414, 2), -- Armor Type
+(18751, 4415, 3), -- Weapon Type
+(18751, 4416, 19), -- Races
+(18751, 5340, 4), -- NPC(party) - Physical Range Close Range Attack - Fire
 -- Trap
-(18752, 4408, 1), -- HP Increase (1x)
-(18752, 4409, 1), -- MP Increase (1x)
-(18752, 4410, 11), -- Average P. Atk.
-(18752, 4411, 11), -- Average M. Atk.
-(18752, 4412, 11), -- Average P. Def.
-(18752, 4413, 11), -- Average M. Def.
-(18752, 4414, 2), -- Standard Type
-(18752, 4415, 3), -- One-handed Sword
-(18752, 4416, 19), -- Others
-(18752, 5340, 4), -- Whirlwind
+(18752, 4408, 1), -- HP Modifiers
+(18752, 4409, 1), -- MP Modifiers
+(18752, 4410, 11), -- P. Atk. Modifiers
+(18752, 4411, 11), -- M. Atk. Modifiers
+(18752, 4412, 11), -- P. Def. Modifiers
+(18752, 4413, 11), -- M. Def. Modifiers
+(18752, 4414, 2), -- Armor Type
+(18752, 4415, 3), -- Weapon Type
+(18752, 4416, 19), -- Races
+(18752, 5340, 4), -- NPC(party) - Physical Range Close Range Attack - Fire
 -- Trap
-(18753, 4408, 1), -- HP Increase (1x)
-(18753, 4409, 1), -- MP Increase (1x)
-(18753, 4410, 11), -- Average P. Atk.
-(18753, 4411, 11), -- Average M. Atk.
-(18753, 4412, 11), -- Average P. Def.
-(18753, 4413, 11), -- Average M. Def.
-(18753, 4414, 2), -- Standard Type
-(18753, 4415, 3), -- One-handed Sword
-(18753, 4416, 19), -- Others
-(18753, 5340, 4), -- Whirlwind
+(18753, 4408, 1), -- HP Modifiers
+(18753, 4409, 1), -- MP Modifiers
+(18753, 4410, 11), -- P. Atk. Modifiers
+(18753, 4411, 11), -- M. Atk. Modifiers
+(18753, 4412, 11), -- P. Def. Modifiers
+(18753, 4413, 11), -- M. Def. Modifiers
+(18753, 4414, 2), -- Armor Type
+(18753, 4415, 3), -- Weapon Type
+(18753, 4416, 19), -- Races
+(18753, 5340, 4), -- NPC(party) - Physical Range Close Range Attack - Fire
 -- Trap
-(18754, 4408, 1), -- HP Increase (1x)
-(18754, 4409, 1), -- MP Increase (1x)
-(18754, 4410, 11), -- Average P. Atk.
-(18754, 4411, 11), -- Average M. Atk.
-(18754, 4412, 11), -- Average P. Def.
-(18754, 4413, 11), -- Average M. Def.
-(18754, 4414, 2), -- Standard Type
-(18754, 4415, 3), -- One-handed Sword
-(18754, 4416, 19), -- Others
-(18754, 5340, 4), -- Whirlwind
+(18754, 4408, 1), -- HP Modifiers
+(18754, 4409, 1), -- MP Modifiers
+(18754, 4410, 11), -- P. Atk. Modifiers
+(18754, 4411, 11), -- M. Atk. Modifiers
+(18754, 4412, 11), -- P. Def. Modifiers
+(18754, 4413, 11), -- M. Def. Modifiers
+(18754, 4414, 2), -- Armor Type
+(18754, 4415, 3), -- Weapon Type
+(18754, 4416, 19), -- Races
+(18754, 5340, 4), -- NPC(party) - Physical Range Close Range Attack - Fire
 -- Trap
-(18755, 4408, 1), -- HP Increase (1x)
-(18755, 4409, 1), -- MP Increase (1x)
-(18755, 4410, 11), -- Average P. Atk.
-(18755, 4411, 11), -- Average M. Atk.
-(18755, 4412, 11), -- Average P. Def.
-(18755, 4413, 11), -- Average M. Def.
-(18755, 4414, 2), -- Standard Type
-(18755, 4415, 3), -- One-handed Sword
-(18755, 4416, 19), -- Others
-(18755, 5340, 4), -- Whirlwind
+(18755, 4408, 1), -- HP Modifiers
+(18755, 4409, 1), -- MP Modifiers
+(18755, 4410, 11), -- P. Atk. Modifiers
+(18755, 4411, 11), -- M. Atk. Modifiers
+(18755, 4412, 11), -- P. Def. Modifiers
+(18755, 4413, 11), -- M. Def. Modifiers
+(18755, 4414, 2), -- Armor Type
+(18755, 4415, 3), -- Weapon Type
+(18755, 4416, 19), -- Races
+(18755, 5340, 4), -- NPC(party) - Physical Range Close Range Attack - Fire
 -- Trap
-(18756, 4408, 1), -- HP Increase (1x)
-(18756, 4409, 1), -- MP Increase (1x)
-(18756, 4410, 11), -- Average P. Atk.
-(18756, 4411, 11), -- Average M. Atk.
-(18756, 4412, 11), -- Average P. Def.
-(18756, 4413, 11), -- Average M. Def.
-(18756, 4414, 2), -- Standard Type
-(18756, 4415, 3), -- One-handed Sword
-(18756, 4416, 19), -- Others
-(18756, 5340, 4), -- Whirlwind
+(18756, 4408, 1), -- HP Modifiers
+(18756, 4409, 1), -- MP Modifiers
+(18756, 4410, 11), -- P. Atk. Modifiers
+(18756, 4411, 11), -- M. Atk. Modifiers
+(18756, 4412, 11), -- P. Def. Modifiers
+(18756, 4413, 11), -- M. Def. Modifiers
+(18756, 4414, 2), -- Armor Type
+(18756, 4415, 3), -- Weapon Type
+(18756, 4416, 19), -- Races
+(18756, 5340, 4), -- NPC(party) - Physical Range Close Range Attack - Fire
 -- Trap
-(18757, 4408, 1), -- HP Increase (1x)
-(18757, 4409, 1), -- MP Increase (1x)
-(18757, 4410, 11), -- Average P. Atk.
-(18757, 4411, 11), -- Average M. Atk.
-(18757, 4412, 11), -- Average P. Def.
-(18757, 4413, 11), -- Average M. Def.
-(18757, 4414, 2), -- Standard Type
-(18757, 4415, 3), -- One-handed Sword
-(18757, 4416, 19), -- Others
-(18757, 5340, 4), -- Whirlwind
+(18757, 4408, 1), -- HP Modifiers
+(18757, 4409, 1), -- MP Modifiers
+(18757, 4410, 11), -- P. Atk. Modifiers
+(18757, 4411, 11), -- M. Atk. Modifiers
+(18757, 4412, 11), -- P. Def. Modifiers
+(18757, 4413, 11), -- M. Def. Modifiers
+(18757, 4414, 2), -- Armor Type
+(18757, 4415, 3), -- Weapon Type
+(18757, 4416, 19), -- Races
+(18757, 5340, 4), -- NPC(party) - Physical Range Close Range Attack - Fire
 -- Trap
-(18758, 4408, 1), -- HP Increase (1x)
-(18758, 4409, 1), -- MP Increase (1x)
-(18758, 4410, 11), -- Average P. Atk.
-(18758, 4411, 11), -- Average M. Atk.
-(18758, 4412, 11), -- Average P. Def.
-(18758, 4413, 11), -- Average M. Def.
-(18758, 4414, 2), -- Standard Type
-(18758, 4415, 3), -- One-handed Sword
-(18758, 4416, 19), -- Others
-(18758, 5340, 4), -- Whirlwind
+(18758, 4408, 1), -- HP Modifiers
+(18758, 4409, 1), -- MP Modifiers
+(18758, 4410, 11), -- P. Atk. Modifiers
+(18758, 4411, 11), -- M. Atk. Modifiers
+(18758, 4412, 11), -- P. Def. Modifiers
+(18758, 4413, 11), -- M. Def. Modifiers
+(18758, 4414, 2), -- Armor Type
+(18758, 4415, 3), -- Weapon Type
+(18758, 4416, 19), -- Races
+(18758, 5340, 4), -- NPC(party) - Physical Range Close Range Attack - Fire
 -- Trap
-(18759, 4408, 1), -- HP Increase (1x)
-(18759, 4409, 1), -- MP Increase (1x)
-(18759, 4410, 11), -- Average P. Atk.
-(18759, 4411, 11), -- Average M. Atk.
-(18759, 4412, 11), -- Average P. Def.
-(18759, 4413, 11), -- Average M. Def.
-(18759, 4414, 2), -- Standard Type
-(18759, 4415, 3), -- One-handed Sword
-(18759, 4416, 19), -- Others
-(18759, 5340, 4), -- Whirlwind
+(18759, 4408, 1), -- HP Modifiers
+(18759, 4409, 1), -- MP Modifiers
+(18759, 4410, 11), -- P. Atk. Modifiers
+(18759, 4411, 11), -- M. Atk. Modifiers
+(18759, 4412, 11), -- P. Def. Modifiers
+(18759, 4413, 11), -- M. Def. Modifiers
+(18759, 4414, 2), -- Armor Type
+(18759, 4415, 3), -- Weapon Type
+(18759, 4416, 19), -- Races
+(18759, 5340, 4), -- NPC(party) - Physical Range Close Range Attack - Fire
 -- Trap
-(18760, 4408, 1), -- HP Increase (1x)
-(18760, 4409, 1), -- MP Increase (1x)
-(18760, 4410, 11), -- Average P. Atk.
-(18760, 4411, 11), -- Average M. Atk.
-(18760, 4412, 11), -- Average P. Def.
-(18760, 4413, 11), -- Average M. Def.
-(18760, 4414, 2), -- Standard Type
-(18760, 4415, 3), -- One-handed Sword
-(18760, 4416, 19), -- Others
-(18760, 5340, 4), -- Whirlwind
+(18760, 4408, 1), -- HP Modifiers
+(18760, 4409, 1), -- MP Modifiers
+(18760, 4410, 11), -- P. Atk. Modifiers
+(18760, 4411, 11), -- M. Atk. Modifiers
+(18760, 4412, 11), -- P. Def. Modifiers
+(18760, 4413, 11), -- M. Def. Modifiers
+(18760, 4414, 2), -- Armor Type
+(18760, 4415, 3), -- Weapon Type
+(18760, 4416, 19), -- Races
+(18760, 5340, 4), -- NPC(party) - Physical Range Close Range Attack - Fire
 -- Trap
-(18761, 4408, 1), -- HP Increase (1x)
-(18761, 4409, 1), -- MP Increase (1x)
-(18761, 4410, 11), -- Average P. Atk.
-(18761, 4411, 11), -- Average M. Atk.
-(18761, 4412, 11), -- Average P. Def.
-(18761, 4413, 11), -- Average M. Def.
-(18761, 4414, 2), -- Standard Type
-(18761, 4415, 3), -- One-handed Sword
-(18761, 4416, 19), -- Others
-(18761, 5340, 4), -- Whirlwind
+(18761, 4408, 1), -- HP Modifiers
+(18761, 4409, 1), -- MP Modifiers
+(18761, 4410, 11), -- P. Atk. Modifiers
+(18761, 4411, 11), -- M. Atk. Modifiers
+(18761, 4412, 11), -- P. Def. Modifiers
+(18761, 4413, 11), -- M. Def. Modifiers
+(18761, 4414, 2), -- Armor Type
+(18761, 4415, 3), -- Weapon Type
+(18761, 4416, 19), -- Races
+(18761, 5340, 4), -- NPC(party) - Physical Range Close Range Attack - Fire
 -- Trap
-(18762, 4408, 1), -- HP Increase (1x)
-(18762, 4409, 1), -- MP Increase (1x)
-(18762, 4410, 11), -- Average P. Atk.
-(18762, 4411, 11), -- Average M. Atk.
-(18762, 4412, 11), -- Average P. Def.
-(18762, 4413, 11), -- Average M. Def.
-(18762, 4414, 2), -- Standard Type
-(18762, 4415, 3), -- One-handed Sword
-(18762, 4416, 19), -- Others
-(18762, 5340, 4), -- Whirlwind
+(18762, 4408, 1), -- HP Modifiers
+(18762, 4409, 1), -- MP Modifiers
+(18762, 4410, 11), -- P. Atk. Modifiers
+(18762, 4411, 11), -- M. Atk. Modifiers
+(18762, 4412, 11), -- P. Def. Modifiers
+(18762, 4413, 11), -- M. Def. Modifiers
+(18762, 4414, 2), -- Armor Type
+(18762, 4415, 3), -- Weapon Type
+(18762, 4416, 19), -- Races
+(18762, 5340, 4), -- NPC(party) - Physical Range Close Range Attack - Fire
 -- Trap
-(18763, 4408, 1), -- HP Increase (1x)
-(18763, 4409, 1), -- MP Increase (1x)
-(18763, 4410, 11), -- Average P. Atk.
-(18763, 4411, 11), -- Average M. Atk.
-(18763, 4412, 11), -- Average P. Def.
-(18763, 4413, 11), -- Average M. Def.
-(18763, 4414, 2), -- Standard Type
-(18763, 4415, 3), -- One-handed Sword
-(18763, 4416, 19), -- Others
-(18763, 5340, 4), -- Whirlwind
+(18763, 4408, 1), -- HP Modifiers
+(18763, 4409, 1), -- MP Modifiers
+(18763, 4410, 11), -- P. Atk. Modifiers
+(18763, 4411, 11), -- M. Atk. Modifiers
+(18763, 4412, 11), -- P. Def. Modifiers
+(18763, 4413, 11), -- M. Def. Modifiers
+(18763, 4414, 2), -- Armor Type
+(18763, 4415, 3), -- Weapon Type
+(18763, 4416, 19), -- Races
+(18763, 5340, 4), -- NPC(party) - Physical Range Close Range Attack - Fire
 -- Trap
-(18764, 4408, 1), -- HP Increase (1x)
-(18764, 4409, 1), -- MP Increase (1x)
-(18764, 4410, 11), -- Average P. Atk.
-(18764, 4411, 11), -- Average M. Atk.
-(18764, 4412, 11), -- Average P. Def.
-(18764, 4413, 11), -- Average M. Def.
-(18764, 4414, 2), -- Standard Type
-(18764, 4415, 3), -- One-handed Sword
-(18764, 4416, 19), -- Others
-(18764, 5340, 4), -- Whirlwind
+(18764, 4408, 1), -- HP Modifiers
+(18764, 4409, 1), -- MP Modifiers
+(18764, 4410, 11), -- P. Atk. Modifiers
+(18764, 4411, 11), -- M. Atk. Modifiers
+(18764, 4412, 11), -- P. Def. Modifiers
+(18764, 4413, 11), -- M. Def. Modifiers
+(18764, 4414, 2), -- Armor Type
+(18764, 4415, 3), -- Weapon Type
+(18764, 4416, 19), -- Races
+(18764, 5340, 4), -- NPC(party) - Physical Range Close Range Attack - Fire
 -- Trap
-(18765, 4408, 1), -- HP Increase (1x)
-(18765, 4409, 1), -- MP Increase (1x)
-(18765, 4410, 11), -- Average P. Atk.
-(18765, 4411, 11), -- Average M. Atk.
-(18765, 4412, 11), -- Average P. Def.
-(18765, 4413, 11), -- Average M. Def.
-(18765, 4414, 2), -- Standard Type
-(18765, 4415, 3), -- One-handed Sword
-(18765, 4416, 19), -- Others
-(18765, 5340, 4), -- Whirlwind
+(18765, 4408, 1), -- HP Modifiers
+(18765, 4409, 1), -- MP Modifiers
+(18765, 4410, 11), -- P. Atk. Modifiers
+(18765, 4411, 11), -- M. Atk. Modifiers
+(18765, 4412, 11), -- P. Def. Modifiers
+(18765, 4413, 11), -- M. Def. Modifiers
+(18765, 4414, 2), -- Armor Type
+(18765, 4415, 3), -- Weapon Type
+(18765, 4416, 19), -- Races
+(18765, 5340, 4), -- NPC(party) - Physical Range Close Range Attack - Fire
 -- Trap
-(18766, 4408, 1), -- HP Increase (1x)
-(18766, 4409, 1), -- MP Increase (1x)
-(18766, 4410, 11), -- Average P. Atk.
-(18766, 4411, 11), -- Average M. Atk.
-(18766, 4412, 11), -- Average P. Def.
-(18766, 4413, 11), -- Average M. Def.
-(18766, 4414, 2), -- Standard Type
-(18766, 4415, 3), -- One-handed Sword
-(18766, 4416, 19), -- Others
-(18766, 5340, 4), -- Whirlwind
+(18766, 4408, 1), -- HP Modifiers
+(18766, 4409, 1), -- MP Modifiers
+(18766, 4410, 11), -- P. Atk. Modifiers
+(18766, 4411, 11), -- M. Atk. Modifiers
+(18766, 4412, 11), -- P. Def. Modifiers
+(18766, 4413, 11), -- M. Def. Modifiers
+(18766, 4414, 2), -- Armor Type
+(18766, 4415, 3), -- Weapon Type
+(18766, 4416, 19), -- Races
+(18766, 5340, 4), -- NPC(party) - Physical Range Close Range Attack - Fire
 -- Trap
-(18767, 4408, 1), -- HP Increase (1x)
-(18767, 4409, 1), -- MP Increase (1x)
-(18767, 4410, 11), -- Average P. Atk.
-(18767, 4411, 11), -- Average M. Atk.
-(18767, 4412, 11), -- Average P. Def.
-(18767, 4413, 11), -- Average M. Def.
-(18767, 4414, 2), -- Standard Type
-(18767, 4415, 3), -- One-handed Sword
-(18767, 4416, 19), -- Others
-(18767, 5340, 4), -- Whirlwind
+(18767, 4408, 1), -- HP Modifiers
+(18767, 4409, 1), -- MP Modifiers
+(18767, 4410, 11), -- P. Atk. Modifiers
+(18767, 4411, 11), -- M. Atk. Modifiers
+(18767, 4412, 11), -- P. Def. Modifiers
+(18767, 4413, 11), -- M. Def. Modifiers
+(18767, 4414, 2), -- Armor Type
+(18767, 4415, 3), -- Weapon Type
+(18767, 4416, 19), -- Races
+(18767, 5340, 4), -- NPC(party) - Physical Range Close Range Attack - Fire
 -- Trap
-(18768, 4408, 1), -- HP Increase (1x)
-(18768, 4409, 1), -- MP Increase (1x)
-(18768, 4410, 11), -- Average P. Atk.
-(18768, 4411, 11), -- Average M. Atk.
-(18768, 4412, 11), -- Average P. Def.
-(18768, 4413, 11), -- Average M. Def.
-(18768, 4414, 2), -- Standard Type
-(18768, 4415, 3), -- One-handed Sword
-(18768, 4416, 19), -- Others
-(18768, 5340, 4), -- Whirlwind
+(18768, 4408, 1), -- HP Modifiers
+(18768, 4409, 1), -- MP Modifiers
+(18768, 4410, 11), -- P. Atk. Modifiers
+(18768, 4411, 11), -- M. Atk. Modifiers
+(18768, 4412, 11), -- P. Def. Modifiers
+(18768, 4413, 11), -- M. Def. Modifiers
+(18768, 4414, 2), -- Armor Type
+(18768, 4415, 3), -- Weapon Type
+(18768, 4416, 19), -- Races
+(18768, 5340, 4), -- NPC(party) - Physical Range Close Range Attack - Fire
 -- Trap
-(18769, 4408, 1), -- HP Increase (1x)
-(18769, 4409, 1), -- MP Increase (1x)
-(18769, 4410, 11), -- Average P. Atk.
-(18769, 4411, 11), -- Average M. Atk.
-(18769, 4412, 11), -- Average P. Def.
-(18769, 4413, 11), -- Average M. Def.
-(18769, 4414, 2), -- Standard Type
-(18769, 4415, 3), -- One-handed Sword
-(18769, 4416, 19), -- Others
-(18769, 5340, 4), -- Whirlwind
+(18769, 4408, 1), -- HP Modifiers
+(18769, 4409, 1), -- MP Modifiers
+(18769, 4410, 11), -- P. Atk. Modifiers
+(18769, 4411, 11), -- M. Atk. Modifiers
+(18769, 4412, 11), -- P. Def. Modifiers
+(18769, 4413, 11), -- M. Def. Modifiers
+(18769, 4414, 2), -- Armor Type
+(18769, 4415, 3), -- Weapon Type
+(18769, 4416, 19), -- Races
+(18769, 5340, 4), -- NPC(party) - Physical Range Close Range Attack - Fire
 -- Trap
-(18770, 4408, 1), -- HP Increase (1x)
-(18770, 4409, 1), -- MP Increase (1x)
-(18770, 4410, 11), -- Average P. Atk.
-(18770, 4411, 11), -- Average M. Atk.
-(18770, 4412, 11), -- Average P. Def.
-(18770, 4413, 11), -- Average M. Def.
-(18770, 4414, 2), -- Standard Type
-(18770, 4415, 3), -- One-handed Sword
-(18770, 4416, 19), -- Others
-(18770, 5340, 4), -- Whirlwind
+(18770, 4408, 1), -- HP Modifiers
+(18770, 4409, 1), -- MP Modifiers
+(18770, 4410, 11), -- P. Atk. Modifiers
+(18770, 4411, 11), -- M. Atk. Modifiers
+(18770, 4412, 11), -- P. Def. Modifiers
+(18770, 4413, 11), -- M. Def. Modifiers
+(18770, 4414, 2), -- Armor Type
+(18770, 4415, 3), -- Weapon Type
+(18770, 4416, 19), -- Races
+(18770, 5340, 4), -- NPC(party) - Physical Range Close Range Attack - Fire
 -- Trap
-(18771, 4408, 1), -- HP Increase (1x)
-(18771, 4409, 1), -- MP Increase (1x)
-(18771, 4410, 11), -- Average P. Atk.
-(18771, 4411, 11), -- Average M. Atk.
-(18771, 4412, 11), -- Average P. Def.
-(18771, 4413, 11), -- Average M. Def.
-(18771, 4414, 2), -- Standard Type
-(18771, 4415, 3), -- One-handed Sword
-(18771, 4416, 19), -- Others
+(18771, 4408, 1), -- HP Modifiers
+(18771, 4409, 1), -- MP Modifiers
+(18771, 4410, 11), -- P. Atk. Modifiers
+(18771, 4411, 11), -- M. Atk. Modifiers
+(18771, 4412, 11), -- P. Def. Modifiers
+(18771, 4413, 11), -- M. Def. Modifiers
+(18771, 4414, 2), -- Armor Type
+(18771, 4415, 3), -- Weapon Type
+(18771, 4416, 19), -- Races
 -- Trap
-(18772, 4408, 1), -- HP Increase (1x)
-(18772, 4409, 1), -- MP Increase (1x)
-(18772, 4410, 11), -- Average P. Atk.
-(18772, 4411, 11), -- Average M. Atk.
-(18772, 4412, 11), -- Average P. Def.
-(18772, 4413, 11), -- Average M. Def.
-(18772, 4414, 2), -- Standard Type
-(18772, 4415, 3), -- One-handed Sword
-(18772, 4416, 19), -- Others
+(18772, 4408, 1), -- HP Modifiers
+(18772, 4409, 1), -- MP Modifiers
+(18772, 4410, 11), -- P. Atk. Modifiers
+(18772, 4411, 11), -- M. Atk. Modifiers
+(18772, 4412, 11), -- P. Def. Modifiers
+(18772, 4413, 11), -- M. Def. Modifiers
+(18772, 4414, 2), -- Armor Type
+(18772, 4415, 3), -- Weapon Type
+(18772, 4416, 19), -- Races
 -- Trap
-(18773, 4408, 1), -- HP Increase (1x)
-(18773, 4409, 1), -- MP Increase (1x)
-(18773, 4410, 11), -- Average P. Atk.
-(18773, 4411, 11), -- Average M. Atk.
-(18773, 4412, 11), -- Average P. Def.
-(18773, 4413, 11), -- Average M. Def.
-(18773, 4414, 2), -- Standard Type
-(18773, 4415, 3), -- One-handed Sword
-(18773, 4416, 19), -- Others
+(18773, 4408, 1), -- HP Modifiers
+(18773, 4409, 1), -- MP Modifiers
+(18773, 4410, 11), -- P. Atk. Modifiers
+(18773, 4411, 11), -- M. Atk. Modifiers
+(18773, 4412, 11), -- P. Def. Modifiers
+(18773, 4413, 11), -- M. Def. Modifiers
+(18773, 4414, 2), -- Armor Type
+(18773, 4415, 3), -- Weapon Type
+(18773, 4416, 19), -- Races
 -- Trap
-(18774, 4408, 1), -- HP Increase (1x)
-(18774, 4409, 1), -- MP Increase (1x)
-(18774, 4410, 11), -- Average P. Atk.
-(18774, 4411, 11), -- Average M. Atk.
-(18774, 4412, 11), -- Average P. Def.
-(18774, 4413, 11), -- Average M. Def.
-(18774, 4414, 2), -- Standard Type
-(18774, 4415, 3), -- One-handed Sword
-(18774, 4416, 19), -- Others
+(18774, 4408, 1), -- HP Modifiers
+(18774, 4409, 1), -- MP Modifiers
+(18774, 4410, 11), -- P. Atk. Modifiers
+(18774, 4411, 11), -- M. Atk. Modifiers
+(18774, 4412, 11), -- P. Def. Modifiers
+(18774, 4413, 11), -- M. Def. Modifiers
+(18774, 4414, 2), -- Armor Type
+(18774, 4415, 3), -- Weapon Type
+(18774, 4416, 19), -- Races
 -- Seed of Destruction Control Device
-(18775, 4408, 11), -- HP Increase (3x)
-(18775, 4409, 1), -- MP Increase (1x)
-(18775, 4410, 11), -- Average P. Atk.
-(18775, 4411, 11), -- Average M. Atk.
-(18775, 4412, 11), -- Average P. Def.
-(18775, 4413, 11), -- Average M. Def.
-(18775, 4414, 2), -- Standard Type
-(18775, 4415, 3), -- One-handed Sword
-(18775, 4416, 2), -- Magic Creatures
+(18775, 4408, 11), -- HP Modifiers
+(18775, 4409, 1), -- MP Modifiers
+(18775, 4410, 11), -- P. Atk. Modifiers
+(18775, 4411, 11), -- M. Atk. Modifiers
+(18775, 4412, 11), -- P. Def. Modifiers
+(18775, 4413, 11), -- M. Def. Modifiers
+(18775, 4414, 2), -- Armor Type
+(18775, 4415, 3), -- Weapon Type
+(18775, 4416, 2), -- Races
 (18775, 5462, 1), -- Fire Attacks
 -- Obelisk
 (18776, 4045, 1), -- Resist Full Magic Attack
-(18776, 4408, 10), -- HP Increase (2x)
-(18776, 4409, 1), -- MP Increase (1x)
-(18776, 4410, 11), -- Average P. Atk.
-(18776, 4411, 11), -- Average M. Atk.
-(18776, 4412, 11), -- Average P. Def.
-(18776, 4413, 11), -- Average M. Def.
-(18776, 4414, 2), -- Standard Type
-(18776, 4415, 3), -- One-handed Sword
-(18776, 4416, 2), -- Magic Creatures
+(18776, 4408, 10), -- HP Modifiers
+(18776, 4409, 1), -- MP Modifiers
+(18776, 4410, 11), -- P. Atk. Modifiers
+(18776, 4411, 11), -- M. Atk. Modifiers
+(18776, 4412, 11), -- P. Def. Modifiers
+(18776, 4413, 11), -- M. Def. Modifiers
+(18776, 4414, 2), -- Armor Type
+(18776, 4415, 3), -- Weapon Type
+(18776, 4416, 2), -- Races
 (18776, 5462, 1), -- Fire Attacks
 -- Great Powerful Device
 (18777, 4045, 1), -- Resist Full Magic Attack
-(18777, 4408, 10), -- HP Increase (2x)
-(18777, 4409, 1), -- MP Increase (1x)
-(18777, 4410, 11), -- Average P. Atk.
-(18777, 4411, 11), -- Average M. Atk.
-(18777, 4412, 11), -- Average P. Def.
-(18777, 4413, 11), -- Average M. Def.
-(18777, 4414, 2), -- Standard Type
-(18777, 4415, 3), -- One-handed Sword
-(18777, 4416, 2), -- Magic Creatures
+(18777, 4408, 10), -- HP Modifiers
+(18777, 4409, 1), -- MP Modifiers
+(18777, 4410, 11), -- P. Atk. Modifiers
+(18777, 4411, 11), -- M. Atk. Modifiers
+(18777, 4412, 11), -- P. Def. Modifiers
+(18777, 4413, 11), -- M. Def. Modifiers
+(18777, 4414, 2), -- Armor Type
+(18777, 4415, 3), -- Weapon Type
+(18777, 4416, 2), -- Races
 (18777, 5462, 1), -- Fire Attacks
 -- Throne of Destruction Powerful Device
 (18778, 4045, 1), -- Resist Full Magic Attack
-(18778, 4408, 10), -- HP Increase (2x)
-(18778, 4409, 1), -- MP Increase (1x)
-(18778, 4410, 11), -- Average P. Atk.
-(18778, 4411, 11), -- Average M. Atk.
-(18778, 4412, 11), -- Average P. Def.
-(18778, 4413, 11), -- Average M. Def.
-(18778, 4414, 2), -- Standard Type
-(18778, 4415, 3), -- One-handed Sword
-(18778, 4416, 2), -- Magic Creatures
+(18778, 4408, 10), -- HP Modifiers
+(18778, 4409, 1), -- MP Modifiers
+(18778, 4410, 11), -- P. Atk. Modifiers
+(18778, 4411, 11), -- M. Atk. Modifiers
+(18778, 4412, 11), -- P. Def. Modifiers
+(18778, 4413, 11), -- M. Def. Modifiers
+(18778, 4414, 2), -- Armor Type
+(18778, 4415, 3), -- Weapon Type
+(18778, 4416, 2), -- Races
 (18778, 5462, 1), -- Fire Attacks
 -- 
-(18779, 4408, 1), -- HP Increase (1x)
-(18779, 4409, 1), -- MP Increase (1x)
-(18779, 4410, 11), -- Average P. Atk.
-(18779, 4411, 11), -- Average M. Atk.
-(18779, 4412, 11), -- Average P. Def.
-(18779, 4413, 11), -- Average M. Def.
-(18779, 4414, 2), -- Standard Type
-(18779, 4415, 3), -- One-handed Sword
-(18779, 4416, 2), -- Magic Creatures
+(18779, 4408, 1), -- HP Modifiers
+(18779, 4409, 1), -- MP Modifiers
+(18779, 4410, 11), -- P. Atk. Modifiers
+(18779, 4411, 11), -- M. Atk. Modifiers
+(18779, 4412, 11), -- P. Def. Modifiers
+(18779, 4413, 11), -- M. Def. Modifiers
+(18779, 4414, 2), -- Armor Type
+(18779, 4415, 3), -- Weapon Type
+(18779, 4416, 2), -- Races
 -- Symbol of Cohemenes
 (18780, 4045, 1), -- Resist Full Magic Attack
-(18780, 4408, 1), -- HP Increase (1x)
-(18780, 4409, 1), -- MP Increase (1x)
-(18780, 4410, 11), -- Average P. Atk.
-(18780, 4411, 11), -- Average M. Atk.
-(18780, 4412, 11), -- Average P. Def.
-(18780, 4413, 11), -- Average M. Def.
-(18780, 4414, 2), -- Standard Type
-(18780, 4415, 3), -- One-handed Sword
-(18780, 4416, 2), -- Magic Creatures
+(18780, 4408, 1), -- HP Modifiers
+(18780, 4409, 1), -- MP Modifiers
+(18780, 4410, 11), -- P. Atk. Modifiers
+(18780, 4411, 11), -- M. Atk. Modifiers
+(18780, 4412, 11), -- P. Def. Modifiers
+(18780, 4413, 11), -- M. Def. Modifiers
+(18780, 4414, 2), -- Armor Type
+(18780, 4415, 3), -- Weapon Type
+(18780, 4416, 2), -- Races
 (18780, 5467, 1), -- Dark Attacks
 -- Young Drake Wing
-(18781, 4408, 1), -- HP Increase (1x)
-(18781, 4409, 1), -- MP Increase (1x)
-(18781, 4410, 11), -- Average P. Atk.
-(18781, 4411, 11), -- Average M. Atk.
-(18781, 4412, 11), -- Average P. Def.
-(18781, 4413, 11), -- Average M. Def.
-(18781, 4414, 2), -- Standard Type
-(18781, 4415, 3), -- One-handed Sword
-(18781, 4416, 10), -- Dragons
+(18781, 4408, 1), -- HP Modifiers
+(18781, 4409, 1), -- MP Modifiers
+(18781, 4410, 11), -- P. Atk. Modifiers
+(18781, 4411, 11), -- M. Atk. Modifiers
+(18781, 4412, 11), -- P. Def. Modifiers
+(18781, 4413, 11), -- M. Def. Modifiers
+(18781, 4414, 2), -- Armor Type
+(18781, 4415, 3), -- Weapon Type
+(18781, 4416, 10), -- Races
 -- Zealot of Shilen
-(18782, 4408, 12), -- HP Increase (4x)
-(18782, 4409, 1), -- MP Increase (1x)
-(18782, 4410, 11), -- Average P. Atk.
-(18782, 4411, 11), -- Average M. Atk.
-(18782, 4412, 11), -- Average P. Def.
-(18782, 4413, 11), -- Average M. Def.
-(18782, 4414, 2), -- Standard Type
-(18782, 4415, 3), -- One-handed Sword
-(18782, 4416, 6), -- Humanoids
+(18782, 4408, 12), -- HP Modifiers
+(18782, 4409, 1), -- MP Modifiers
+(18782, 4410, 11), -- P. Atk. Modifiers
+(18782, 4411, 11), -- M. Atk. Modifiers
+(18782, 4412, 11), -- P. Def. Modifiers
+(18782, 4413, 11), -- M. Def. Modifiers
+(18782, 4414, 2), -- Armor Type
+(18782, 4415, 3), -- Weapon Type
+(18782, 4416, 6), -- Races
 (18782, 5467, 1), -- Dark Attacks
 -- Defeated Troops Commander
-(18783, 4408, 9), -- HP Increase (1/2x)
-(18783, 4409, 1), -- MP Increase (1x)
-(18783, 4410, 8), -- Weak P. Atk.
-(18783, 4411, 8), -- Weak M. Atk.
-(18783, 4412, 7), -- Weak P. Def.
-(18783, 4413, 8), -- Weak M. Def.
-(18783, 4414, 2), -- Standard Type
-(18783, 4415, 3), -- One-handed Sword
-(18783, 4416, 10), -- Dragons
+(18783, 4408, 9), -- HP Modifiers
+(18783, 4409, 1), -- MP Modifiers
+(18783, 4410, 8), -- P. Atk. Modifiers
+(18783, 4411, 8), -- M. Atk. Modifiers
+(18783, 4412, 7), -- P. Def. Modifiers
+(18783, 4413, 8), -- M. Def. Modifiers
+(18783, 4414, 2), -- Armor Type
+(18783, 4415, 3), -- Weapon Type
+(18783, 4416, 10), -- Races
 (18783, 5462, 1), -- Fire Attacks
 (18783, 5827, 5), -- Fireball
 (18783, 5830, 1), -- Polearm Thrust
 (18783, 5831, 1), -- Polearm Swing
 -- Defeated Troops No 1 Battalion Commander
-(18784, 4408, 9), -- HP Increase (1/2x)
-(18784, 4409, 1), -- MP Increase (1x)
-(18784, 4410, 8), -- Weak P. Atk.
-(18784, 4411, 8), -- Weak M. Atk.
-(18784, 4412, 7), -- Weak P. Def.
-(18784, 4413, 8), -- Weak M. Def.
-(18784, 4414, 2), -- Standard Type
-(18784, 4415, 3), -- One-handed Sword
-(18784, 4416, 10), -- Dragons
+(18784, 4408, 9), -- HP Modifiers
+(18784, 4409, 1), -- MP Modifiers
+(18784, 4410, 8), -- P. Atk. Modifiers
+(18784, 4411, 8), -- M. Atk. Modifiers
+(18784, 4412, 7), -- P. Def. Modifiers
+(18784, 4413, 8), -- M. Def. Modifiers
+(18784, 4414, 2), -- Armor Type
+(18784, 4415, 3), -- Weapon Type
+(18784, 4416, 10), -- Races
 (18784, 5462, 1), -- Fire Attacks
 (18784, 5827, 4), -- Fireball
 (18784, 5830, 1), -- Polearm Thrust
 (18784, 5831, 1), -- Polearm Swing
 -- Defeated Troops White Dragon Leader
-(18785, 4408, 9), -- HP Increase (1/2x)
-(18785, 4409, 1), -- MP Increase (1x)
-(18785, 4410, 8), -- Weak P. Atk.
-(18785, 4411, 8), -- Weak M. Atk.
-(18785, 4412, 7), -- Weak P. Def.
-(18785, 4413, 8), -- Weak M. Def.
-(18785, 4414, 2), -- Standard Type
-(18785, 4415, 3), -- One-handed Sword
-(18785, 4416, 10), -- Dragons
-(18785, 5274, 5), -- Power Shot
+(18785, 4408, 9), -- HP Modifiers
+(18785, 4409, 1), -- MP Modifiers
+(18785, 4410, 8), -- P. Atk. Modifiers
+(18785, 4411, 8), -- M. Atk. Modifiers
+(18785, 4412, 7), -- P. Def. Modifiers
+(18785, 4413, 8), -- M. Def. Modifiers
+(18785, 4414, 2), -- Armor Type
+(18785, 4415, 3), -- Weapon Type
+(18785, 4416, 10), -- Races
+(18785, 5274, 5), -- NPC(party) - Physical Single Long Range Attack
 (18785, 5462, 1), -- Fire Attacks
 (18785, 5827, 4), -- Fireball
 (18785, 5832, 1), -- Hate Aura
 -- Defeated Troops Infantry
-(18786, 4408, 9), -- HP Increase (1/2x)
-(18786, 4409, 1), -- MP Increase (1x)
-(18786, 4410, 8), -- Weak P. Atk.
-(18786, 4411, 8), -- Weak M. Atk.
-(18786, 4412, 7); -- Weak P. Def.
+(18786, 4408, 9), -- HP Modifiers
+(18786, 4409, 1), -- MP Modifiers
+(18786, 4410, 8), -- P. Atk. Modifiers
+(18786, 4411, 8), -- M. Atk. Modifiers
+(18786, 4412, 7); -- P. Def. Modifiers
 
 INSERT INTO `npcskills` VALUES
-(18786, 4413, 8), -- Weak M. Def.
-(18786, 4414, 2), -- Standard Type
-(18786, 4415, 3), -- One-handed Sword
-(18786, 4416, 10), -- Dragons
-(18786, 5274, 5), -- Power Shot
+(18786, 4413, 8), -- M. Def. Modifiers
+(18786, 4414, 2), -- Armor Type
+(18786, 4415, 3), -- Weapon Type
+(18786, 4416, 10), -- Races
+(18786, 5274, 5), -- NPC(party) - Physical Single Long Range Attack
 (18786, 5462, 1), -- Fire Attacks
 (18786, 5827, 3), -- Fireball
 (18786, 5832, 1), -- Hate Aura
 -- Defeated Troops Magic Leader
-(18787, 4408, 9), -- HP Increase (1/2x)
-(18787, 4409, 1), -- MP Increase (1x)
-(18787, 4410, 8), -- Weak P. Atk.
-(18787, 4411, 8), -- Weak M. Atk.
-(18787, 4412, 7), -- Weak P. Def.
-(18787, 4413, 8), -- Weak M. Def.
-(18787, 4414, 2), -- Standard Type
-(18787, 4415, 3), -- One-handed Sword
-(18787, 4416, 10), -- Dragons
-(18787, 5312, 5), -- Blaze
+(18787, 4408, 9), -- HP Modifiers
+(18787, 4409, 1), -- MP Modifiers
+(18787, 4410, 8), -- P. Atk. Modifiers
+(18787, 4411, 8), -- M. Atk. Modifiers
+(18787, 4412, 7), -- P. Def. Modifiers
+(18787, 4413, 8), -- M. Def. Modifiers
+(18787, 4414, 2), -- Armor Type
+(18787, 4415, 3), -- Weapon Type
+(18787, 4416, 10), -- Races
+(18787, 5312, 5), -- NPC(party) -Magic Single Long Range DD - Fire
 (18787, 5462, 1), -- Fire Attacks
 (18787, 5827, 4), -- Fireball
 (18787, 5829, 5), -- Fire Flare
 (18787, 5833, 1), -- Shield
 -- Defeated Troops Magician
-(18788, 4408, 9), -- HP Increase (1/2x)
-(18788, 4409, 1), -- MP Increase (1x)
-(18788, 4410, 8), -- Weak P. Atk.
-(18788, 4411, 8), -- Weak M. Atk.
-(18788, 4412, 7), -- Weak P. Def.
-(18788, 4413, 8), -- Weak M. Def.
-(18788, 4414, 2), -- Standard Type
-(18788, 4415, 3), -- One-handed Sword
-(18788, 4416, 10), -- Dragons
-(18788, 5312, 5), -- Blaze
+(18788, 4408, 9), -- HP Modifiers
+(18788, 4409, 1), -- MP Modifiers
+(18788, 4410, 8), -- P. Atk. Modifiers
+(18788, 4411, 8), -- M. Atk. Modifiers
+(18788, 4412, 7), -- P. Def. Modifiers
+(18788, 4413, 8), -- M. Def. Modifiers
+(18788, 4414, 2), -- Armor Type
+(18788, 4415, 3), -- Weapon Type
+(18788, 4416, 10), -- Races
+(18788, 5312, 5), -- NPC(party) -Magic Single Long Range DD - Fire
 (18788, 5462, 1), -- Fire Attacks
 (18788, 5827, 4), -- Fireball
 (18788, 5829, 4), -- Fire Flare
 (18788, 5833, 1), -- Shield
 -- Defeated Troops Magic Soldier
-(18789, 4408, 9), -- HP Increase (1/2x)
-(18789, 4409, 1), -- MP Increase (1x)
-(18789, 4410, 8), -- Weak P. Atk.
-(18789, 4411, 8), -- Weak M. Atk.
-(18789, 4412, 7), -- Weak P. Def.
-(18789, 4413, 8), -- Weak M. Def.
-(18789, 4414, 2), -- Standard Type
-(18789, 4415, 3), -- One-handed Sword
-(18789, 4416, 10), -- Dragons
-(18789, 5312, 5), -- Blaze
+(18789, 4408, 9), -- HP Modifiers
+(18789, 4409, 1), -- MP Modifiers
+(18789, 4410, 8), -- P. Atk. Modifiers
+(18789, 4411, 8), -- M. Atk. Modifiers
+(18789, 4412, 7), -- P. Def. Modifiers
+(18789, 4413, 8), -- M. Def. Modifiers
+(18789, 4414, 2), -- Armor Type
+(18789, 4415, 3), -- Weapon Type
+(18789, 4416, 10), -- Races
+(18789, 5312, 5), -- NPC(party) -Magic Single Long Range DD - Fire
 (18789, 5462, 1), -- Fire Attacks
 (18789, 5827, 3), -- Fireball
 (18789, 5829, 4), -- Fire Flare
 (18789, 5834, 1), -- Magic Barrier
 -- Defeated Troops Healer
-(18790, 4408, 9), -- HP Increase (1/2x)
-(18790, 4409, 1), -- MP Increase (1x)
-(18790, 4410, 8), -- Weak P. Atk.
-(18790, 4411, 8), -- Weak M. Atk.
-(18790, 4412, 7), -- Weak P. Def.
-(18790, 4413, 8), -- Weak M. Def.
-(18790, 4414, 2), -- Standard Type
-(18790, 4415, 3), -- One-handed Sword
-(18790, 4416, 10), -- Dragons
-(18790, 4608, 2), -- Berserker Spirit
+(18790, 4408, 9), -- HP Modifiers
+(18790, 4409, 1), -- MP Modifiers
+(18790, 4410, 8), -- P. Atk. Modifiers
+(18790, 4411, 8), -- M. Atk. Modifiers
+(18790, 4412, 7), -- P. Def. Modifiers
+(18790, 4413, 8), -- M. Def. Modifiers
+(18790, 4414, 2), -- Armor Type
+(18790, 4415, 3), -- Weapon Type
+(18790, 4416, 10), -- Races
+(18790, 4608, 2), -- NPC Clan Buff - Berserk
 (18790, 5462, 1), -- Fire Attacks
 (18790, 5835, 1), -- Major Heal
 (18790, 5836, 1), -- Greater Heal
 -- Defeated Troops Javelin Thrower
-(18791, 4408, 9), -- HP Increase (1/2x)
-(18791, 4409, 1), -- MP Increase (1x)
-(18791, 4410, 8), -- Weak P. Atk.
-(18791, 4411, 8), -- Weak M. Atk.
-(18791, 4412, 7), -- Weak P. Def.
-(18791, 4413, 8), -- Weak M. Def.
-(18791, 4414, 2), -- Standard Type
-(18791, 4415, 9), -- Bows
-(18791, 4416, 10), -- Dragons
+(18791, 4408, 9), -- HP Modifiers
+(18791, 4409, 1), -- MP Modifiers
+(18791, 4410, 8), -- P. Atk. Modifiers
+(18791, 4411, 8), -- M. Atk. Modifiers
+(18791, 4412, 7), -- P. Def. Modifiers
+(18791, 4413, 8), -- M. Def. Modifiers
+(18791, 4414, 2), -- Armor Type
+(18791, 4415, 9), -- Weapon Type
+(18791, 4416, 10), -- Races
 (18791, 5462, 1), -- Fire Attacks
 (18791, 5837, 1), -- Double Throwing Javelin
 (18791, 5838, 1), -- Throwing Javelin
 -- Defeated Troops Javelin Thrower
-(18792, 4408, 9), -- HP Increase (1/2x)
-(18792, 4409, 1), -- MP Increase (1x)
-(18792, 4410, 8), -- Weak P. Atk.
-(18792, 4411, 8), -- Weak M. Atk.
-(18792, 4412, 7), -- Weak P. Def.
-(18792, 4413, 8), -- Weak M. Def.
-(18792, 4414, 2), -- Standard Type
-(18792, 4415, 9), -- Bows
-(18792, 4416, 10), -- Dragons
+(18792, 4408, 9), -- HP Modifiers
+(18792, 4409, 1), -- MP Modifiers
+(18792, 4410, 8), -- P. Atk. Modifiers
+(18792, 4411, 8), -- M. Atk. Modifiers
+(18792, 4412, 7), -- P. Def. Modifiers
+(18792, 4413, 8), -- M. Def. Modifiers
+(18792, 4414, 2), -- Armor Type
+(18792, 4415, 9), -- Weapon Type
+(18792, 4416, 10), -- Races
 (18792, 4441, 5), -- Greater Resist Mental Derangement
 (18792, 5462, 1), -- Fire Attacks
 (18792, 5837, 1), -- Double Throwing Javelin
 (18792, 5838, 1), -- Throwing Javelin
 -- Bizarre Cocoon
-(18793, 4408, 1), -- HP Increase (1x)
-(18793, 4409, 1), -- MP Increase (1x)
-(18793, 4410, 11), -- Average P. Atk.
-(18793, 4411, 11), -- Average M. Atk.
-(18793, 4412, 11), -- Average P. Def.
-(18793, 4413, 11), -- Average M. Def.
-(18793, 4414, 2), -- Standard Type
-(18793, 4415, 3), -- One-handed Sword
-(18793, 4416, 2), -- Magic Creatures
+(18793, 4408, 1), -- HP Modifiers
+(18793, 4409, 1), -- MP Modifiers
+(18793, 4410, 11), -- P. Atk. Modifiers
+(18793, 4411, 11), -- M. Atk. Modifiers
+(18793, 4412, 11), -- P. Def. Modifiers
+(18793, 4413, 11), -- M. Def. Modifiers
+(18793, 4414, 2), -- Armor Type
+(18793, 4415, 3), -- Weapon Type
+(18793, 4416, 2), -- Races
 -- Bizarre Cocoon
-(18794, 4408, 1), -- HP Increase (1x)
-(18794, 4409, 1), -- MP Increase (1x)
-(18794, 4410, 11), -- Average P. Atk.
-(18794, 4411, 11), -- Average M. Atk.
-(18794, 4412, 11), -- Average P. Def.
-(18794, 4413, 11), -- Average M. Def.
-(18794, 4414, 2), -- Standard Type
-(18794, 4415, 3), -- One-handed Sword
-(18794, 4416, 2), -- Magic Creatures
+(18794, 4408, 1), -- HP Modifiers
+(18794, 4409, 1), -- MP Modifiers
+(18794, 4410, 11), -- P. Atk. Modifiers
+(18794, 4411, 11), -- M. Atk. Modifiers
+(18794, 4412, 11), -- P. Def. Modifiers
+(18794, 4413, 11), -- M. Def. Modifiers
+(18794, 4414, 2), -- Armor Type
+(18794, 4415, 3), -- Weapon Type
+(18794, 4416, 2), -- Races
 -- Bizarre Cocoon
-(18795, 4408, 1), -- HP Increase (1x)
-(18795, 4409, 1), -- MP Increase (1x)
-(18795, 4410, 11), -- Average P. Atk.
-(18795, 4411, 11), -- Average M. Atk.
-(18795, 4412, 11), -- Average P. Def.
-(18795, 4413, 11), -- Average M. Def.
-(18795, 4414, 2), -- Standard Type
-(18795, 4415, 3), -- One-handed Sword
-(18795, 4416, 2), -- Magic Creatures
+(18795, 4408, 1), -- HP Modifiers
+(18795, 4409, 1), -- MP Modifiers
+(18795, 4410, 11), -- P. Atk. Modifiers
+(18795, 4411, 11), -- M. Atk. Modifiers
+(18795, 4412, 11), -- P. Def. Modifiers
+(18795, 4413, 11), -- M. Def. Modifiers
+(18795, 4414, 2), -- Armor Type
+(18795, 4415, 3), -- Weapon Type
+(18795, 4416, 2), -- Races
 -- Bizarre Cocoon
-(18796, 4408, 1), -- HP Increase (1x)
-(18796, 4409, 1), -- MP Increase (1x)
-(18796, 4410, 11), -- Average P. Atk.
-(18796, 4411, 11), -- Average M. Atk.
-(18796, 4412, 11), -- Average P. Def.
-(18796, 4413, 11), -- Average M. Def.
-(18796, 4414, 2), -- Standard Type
-(18796, 4415, 3), -- One-handed Sword
-(18796, 4416, 2), -- Magic Creatures
+(18796, 4408, 1), -- HP Modifiers
+(18796, 4409, 1), -- MP Modifiers
+(18796, 4410, 11), -- P. Atk. Modifiers
+(18796, 4411, 11), -- M. Atk. Modifiers
+(18796, 4412, 11), -- P. Def. Modifiers
+(18796, 4413, 11), -- M. Def. Modifiers
+(18796, 4414, 2), -- Armor Type
+(18796, 4415, 3), -- Weapon Type
+(18796, 4416, 2), -- Races
 -- Bizarre Cocoon
-(18797, 4408, 1), -- HP Increase (1x)
-(18797, 4409, 1), -- MP Increase (1x)
-(18797, 4410, 11), -- Average P. Atk.
-(18797, 4411, 11), -- Average M. Atk.
-(18797, 4412, 11), -- Average P. Def.
-(18797, 4413, 11), -- Average M. Def.
-(18797, 4414, 2), -- Standard Type
-(18797, 4415, 3), -- One-handed Sword
-(18797, 4416, 2), -- Magic Creatures
+(18797, 4408, 1), -- HP Modifiers
+(18797, 4409, 1), -- MP Modifiers
+(18797, 4410, 11), -- P. Atk. Modifiers
+(18797, 4411, 11), -- M. Atk. Modifiers
+(18797, 4412, 11), -- P. Def. Modifiers
+(18797, 4413, 11), -- M. Def. Modifiers
+(18797, 4414, 2), -- Armor Type
+(18797, 4415, 3), -- Weapon Type
+(18797, 4416, 2), -- Races
 -- Bizarre Cocoon
-(18798, 4408, 1), -- HP Increase (1x)
-(18798, 4409, 1), -- MP Increase (1x)
-(18798, 4410, 11), -- Average P. Atk.
-(18798, 4411, 11), -- Average M. Atk.
-(18798, 4412, 11), -- Average P. Def.
-(18798, 4413, 11), -- Average M. Def.
-(18798, 4414, 2), -- Standard Type
-(18798, 4415, 3), -- One-handed Sword
-(18798, 4416, 2), -- Magic Creatures
+(18798, 4408, 1), -- HP Modifiers
+(18798, 4409, 1), -- MP Modifiers
+(18798, 4410, 11), -- P. Atk. Modifiers
+(18798, 4411, 11), -- M. Atk. Modifiers
+(18798, 4412, 11), -- P. Def. Modifiers
+(18798, 4413, 11), -- M. Def. Modifiers
+(18798, 4414, 2), -- Armor Type
+(18798, 4415, 3), -- Weapon Type
+(18798, 4416, 2), -- Races
 -- Newborn Lavasaurus
 (18799, 4045, 1), -- Resist Full Magic Attack
-(18799, 4408, 14), -- HP Increase (6x)
-(18799, 4409, 1), -- MP Increase (1x)
-(18799, 4410, 10), -- Slightly Weak P. Atk.
-(18799, 4411, 11), -- Average M. Atk.
-(18799, 4412, 10), -- Slightly Weak P. Def.
-(18799, 4413, 10), -- Slightly Weak M. Def.
-(18799, 4414, 1), -- Heavy Armor Type
-(18799, 4415, 5), -- Blunt Weapons
-(18799, 4416, 2), -- Magic Creatures
+(18799, 4408, 14), -- HP Modifiers
+(18799, 4409, 1), -- MP Modifiers
+(18799, 4410, 10), -- P. Atk. Modifiers
+(18799, 4411, 11), -- M. Atk. Modifiers
+(18799, 4412, 10), -- P. Def. Modifiers
+(18799, 4413, 10), -- M. Def. Modifiers
+(18799, 4414, 1), -- Armor Type
+(18799, 4415, 5), -- Weapon Type
+(18799, 4416, 2), -- Races
 (18799, 4607, 1), -- Magma Attack
 (18799, 5462, 1), -- Fire Attacks
 -- Fledgling Lavasaurus
 (18800, 4045, 1), -- Resist Full Magic Attack
-(18800, 4408, 14), -- HP Increase (6x)
-(18800, 4409, 1), -- MP Increase (1x)
-(18800, 4410, 10), -- Slightly Weak P. Atk.
-(18800, 4411, 11), -- Average M. Atk.
-(18800, 4412, 10), -- Slightly Weak P. Def.
-(18800, 4413, 10), -- Slightly Weak M. Def.
-(18800, 4414, 2), -- Standard Type
-(18800, 4415, 3), -- One-handed Sword
-(18800, 4416, 2), -- Magic Creatures
+(18800, 4408, 14), -- HP Modifiers
+(18800, 4409, 1), -- MP Modifiers
+(18800, 4410, 10), -- P. Atk. Modifiers
+(18800, 4411, 11), -- M. Atk. Modifiers
+(18800, 4412, 10), -- P. Def. Modifiers
+(18800, 4413, 10), -- M. Def. Modifiers
+(18800, 4414, 2), -- Armor Type
+(18800, 4415, 3), -- Weapon Type
+(18800, 4416, 2), -- Races
 (18800, 4607, 1), -- Magma Attack
 (18800, 5462, 1), -- Fire Attacks
 -- Adult Lavasaurus
 (18801, 4045, 1), -- Resist Full Magic Attack
-(18801, 4408, 14), -- HP Increase (6x)
-(18801, 4409, 1), -- MP Increase (1x)
-(18801, 4410, 10), -- Slightly Weak P. Atk.
-(18801, 4411, 11), -- Average M. Atk.
-(18801, 4412, 10), -- Slightly Weak P. Def.
-(18801, 4413, 10), -- Slightly Weak M. Def.
-(18801, 4414, 1), -- Heavy Armor Type
-(18801, 4415, 5), -- Blunt Weapons
-(18801, 4416, 2), -- Magic Creatures
+(18801, 4408, 14), -- HP Modifiers
+(18801, 4409, 1), -- MP Modifiers
+(18801, 4410, 10), -- P. Atk. Modifiers
+(18801, 4411, 11), -- M. Atk. Modifiers
+(18801, 4412, 10), -- P. Def. Modifiers
+(18801, 4413, 10), -- M. Def. Modifiers
+(18801, 4414, 1), -- Armor Type
+(18801, 4415, 5), -- Weapon Type
+(18801, 4416, 2), -- Races
 (18801, 4607, 1), -- Magma Attack
 (18801, 5462, 1), -- Fire Attacks
 -- Elderly Lavasaurus
 (18802, 4045, 1), -- Resist Full Magic Attack
-(18802, 4408, 14), -- HP Increase (6x)
-(18802, 4409, 1), -- MP Increase (1x)
-(18802, 4410, 10), -- Slightly Weak P. Atk.
-(18802, 4411, 11), -- Average M. Atk.
-(18802, 4412, 10), -- Slightly Weak P. Def.
-(18802, 4413, 10), -- Slightly Weak M. Def.
-(18802, 4414, 2), -- Standard Type
-(18802, 4415, 3), -- One-handed Sword
-(18802, 4416, 2), -- Magic Creatures
+(18802, 4408, 14), -- HP Modifiers
+(18802, 4409, 1), -- MP Modifiers
+(18802, 4410, 10), -- P. Atk. Modifiers
+(18802, 4411, 11), -- M. Atk. Modifiers
+(18802, 4412, 10), -- P. Def. Modifiers
+(18802, 4413, 10), -- M. Def. Modifiers
+(18802, 4414, 2), -- Armor Type
+(18802, 4415, 3), -- Weapon Type
+(18802, 4416, 2), -- Races
 (18802, 4607, 1), -- Magma Attack
 (18802, 5462, 1), -- Fire Attacks
 -- Ancient Lavasaurus
 (18803, 4045, 1), -- Resist Full Magic Attack
-(18803, 4408, 14), -- HP Increase (6x)
-(18803, 4409, 1), -- MP Increase (1x)
-(18803, 4410, 10), -- Slightly Weak P. Atk.
-(18803, 4411, 11), -- Average M. Atk.
-(18803, 4412, 10), -- Slightly Weak P. Def.
-(18803, 4413, 10), -- Slightly Weak M. Def.
-(18803, 4414, 2), -- Standard Type
-(18803, 4415, 3), -- One-handed Sword
-(18803, 4416, 2), -- Magic Creatures
+(18803, 4408, 14), -- HP Modifiers
+(18803, 4409, 1), -- MP Modifiers
+(18803, 4410, 10), -- P. Atk. Modifiers
+(18803, 4411, 11), -- M. Atk. Modifiers
+(18803, 4412, 10), -- P. Def. Modifiers
+(18803, 4413, 10), -- M. Def. Modifiers
+(18803, 4414, 2), -- Armor Type
+(18803, 4415, 3), -- Weapon Type
+(18803, 4416, 2), -- Races
 (18803, 4607, 1), -- Magma Attack
 (18803, 5462, 1), -- Fire Attacks
 -- Tar Beetle
 (18804, 4045, 1), -- Resist Full Magic Attack
-(18804, 4408, 1), -- HP Increase (1x)
-(18804, 4409, 1), -- MP Increase (1x)
-(18804, 4410, 11), -- Average P. Atk.
-(18804, 4411, 11), -- Average M. Atk.
-(18804, 4412, 11), -- Average P. Def.
-(18804, 4413, 11), -- Average M. Def.
-(18804, 4414, 2), -- Standard Type
-(18804, 4415, 3), -- One-handed Sword
-(18804, 4416, 12), -- Bugs
+(18804, 4408, 1), -- HP Modifiers
+(18804, 4409, 1), -- MP Modifiers
+(18804, 4410, 11), -- P. Atk. Modifiers
+(18804, 4411, 11), -- M. Atk. Modifiers
+(18804, 4412, 11), -- P. Def. Modifiers
+(18804, 4413, 11), -- M. Def. Modifiers
+(18804, 4414, 2), -- Armor Type
+(18804, 4415, 3), -- Weapon Type
+(18804, 4416, 12), -- Races
 -- Waste Landfill Machine
-(18805, 4408, 1), -- HP Increase (1x)
-(18805, 4409, 1), -- MP Increase (1x)
-(18805, 4410, 11), -- Average P. Atk.
-(18805, 4411, 11), -- Average M. Atk.
-(18805, 4412, 11), -- Average P. Def.
-(18805, 4413, 11), -- Average M. Def.
-(18805, 4414, 2), -- Standard Type
-(18805, 4415, 3), -- One-handed Sword
-(18805, 4416, 2), -- Magic Creatures
+(18805, 4408, 1), -- HP Modifiers
+(18805, 4409, 1), -- MP Modifiers
+(18805, 4410, 11), -- P. Atk. Modifiers
+(18805, 4411, 11), -- M. Atk. Modifiers
+(18805, 4412, 11), -- P. Def. Modifiers
+(18805, 4413, 11), -- M. Def. Modifiers
+(18805, 4414, 2), -- Armor Type
+(18805, 4415, 3), -- Weapon Type
+(18805, 4416, 2), -- Races
 -- Brazier of Purity
-(18806, 4408, 1), -- HP Increase (1x)
-(18806, 4409, 1), -- MP Increase (1x)
-(18806, 4410, 11), -- Average P. Atk.
-(18806, 4411, 11), -- Average M. Atk.
-(18806, 4412, 11), -- Average P. Def.
-(18806, 4413, 11), -- Average M. Def.
-(18806, 4414, 2), -- Standard Type
-(18806, 4415, 3), -- One-handed Sword
-(18806, 4416, 2), -- Magic Creatures
+(18806, 4408, 1), -- HP Modifiers
+(18806, 4409, 1), -- MP Modifiers
+(18806, 4410, 11), -- P. Atk. Modifiers
+(18806, 4411, 11), -- M. Atk. Modifiers
+(18806, 4412, 11), -- P. Def. Modifiers
+(18806, 4413, 11), -- M. Def. Modifiers
+(18806, 4414, 2), -- Armor Type
+(18806, 4415, 3), -- Weapon Type
+(18806, 4416, 2), -- Races
 -- Frightened Ragna Orc
-(18807, 4408, 10), -- HP Increase (2x)
-(18807, 4409, 1), -- MP Increase (1x)
-(18807, 4410, 5), -- Very Weak P. Atk.
-(18807, 4411, 11), -- Average M. Atk.
-(18807, 4412, 11), -- Average P. Def.
-(18807, 4413, 11), -- Average M. Def.
-(18807, 4414, 2), -- Standard Type
-(18807, 4415, 3), -- One-handed Sword
-(18807, 4416, 6), -- Humanoids
+(18807, 4408, 10), -- HP Modifiers
+(18807, 4409, 1), -- MP Modifiers
+(18807, 4410, 5), -- P. Atk. Modifiers
+(18807, 4411, 11), -- M. Atk. Modifiers
+(18807, 4412, 11), -- P. Def. Modifiers
+(18807, 4413, 11), -- M. Def. Modifiers
+(18807, 4414, 2), -- Armor Type
+(18807, 4415, 3), -- Weapon Type
+(18807, 4416, 6), -- Races
 -- Dark Shaman Varangka
 (18808, 4045, 1), -- Resist Full Magic Attack
-(18808, 4408, 10), -- HP Increase (2x)
-(18808, 4409, 1), -- MP Increase (1x)
-(18808, 4410, 3), -- Extremely Weak P. Atk.
-(18808, 4411, 3), -- Extremely Weak M. Atk.
-(18808, 4412, 11), -- Average P. Def.
-(18808, 4413, 11), -- Average M. Def.
-(18808, 4414, 1), -- Heavy Armor Type
-(18808, 4415, 6), -- Blunt Weapons
-(18808, 4416, 6), -- Humanoids
+(18808, 4408, 10), -- HP Modifiers
+(18808, 4409, 1), -- MP Modifiers
+(18808, 4410, 3), -- P. Atk. Modifiers
+(18808, 4411, 3), -- M. Atk. Modifiers
+(18808, 4412, 11), -- P. Def. Modifiers
+(18808, 4413, 11), -- M. Def. Modifiers
+(18808, 4414, 1), -- Armor Type
+(18808, 4415, 6), -- Weapon Type
+(18808, 4416, 6), -- Races
 (18808, 5462, 1), -- Fire Attacks
 -- Varangka's Retainer
-(18809, 4032, 9), -- Power Strike
-(18809, 4408, 1), -- HP Increase (1x)
-(18809, 4409, 1), -- MP Increase (1x)
-(18809, 4410, 3), -- Extremely Weak P. Atk.
-(18809, 4411, 3), -- Extremely Weak M. Atk.
-(18809, 4412, 11), -- Average P. Def.
-(18809, 4413, 11), -- Average M. Def.
-(18809, 4414, 2), -- Standard Type
-(18809, 4415, 3), -- One-handed Sword
-(18809, 4416, 6), -- Humanoids
+(18809, 4032, 9), -- NPC Strike
+(18809, 4408, 1), -- HP Modifiers
+(18809, 4409, 1), -- MP Modifiers
+(18809, 4410, 3), -- P. Atk. Modifiers
+(18809, 4411, 3), -- M. Atk. Modifiers
+(18809, 4412, 11), -- P. Def. Modifiers
+(18809, 4413, 11), -- M. Def. Modifiers
+(18809, 4414, 2), -- Armor Type
+(18809, 4415, 3), -- Weapon Type
+(18809, 4416, 6), -- Races
 (18809, 5462, 1), -- Fire Attacks
 -- Varangka's Page
-(18810, 4065, 9), -- Heal
-(18810, 4408, 1), -- HP Increase (1x)
-(18810, 4409, 1), -- MP Increase (1x)
-(18810, 4410, 3), -- Extremely Weak P. Atk.
-(18810, 4411, 3), -- Extremely Weak M. Atk.
-(18810, 4412, 11), -- Average P. Def.
-(18810, 4413, 11), -- Average M. Def.
-(18810, 4414, 2), -- Standard Type
-(18810, 4415, 3), -- One-handed Sword
-(18810, 4416, 6), -- Humanoids
-(18810, 4610, 2), -- Focus
-(18810, 4613, 9), -- Clan Heal
+(18810, 4065, 9), -- NPC Heal
+(18810, 4408, 1), -- HP Modifiers
+(18810, 4409, 1), -- MP Modifiers
+(18810, 4410, 3), -- P. Atk. Modifiers
+(18810, 4411, 3), -- M. Atk. Modifiers
+(18810, 4412, 11), -- P. Def. Modifiers
+(18810, 4413, 11), -- M. Def. Modifiers
+(18810, 4414, 2), -- Armor Type
+(18810, 4415, 3), -- Weapon Type
+(18810, 4416, 6), -- Races
+(18810, 4610, 2), -- NPC Clan Buff - Focus
+(18810, 4613, 9), -- NPC Clan Heal
 (18810, 5462, 1), -- Fire Attacks
 -- Guardian of the Altar
-(18811, 4408, 1), -- HP Increase (1x)
-(18811, 4409, 1), -- MP Increase (1x)
-(18811, 4410, 11), -- Average P. Atk.
-(18811, 4411, 11), -- Average M. Atk.
-(18811, 4412, 11), -- Average P. Def.
-(18811, 4413, 11), -- Average M. Def.
-(18811, 4414, 2), -- Standard Type
-(18811, 4415, 5), -- Blunt Weapons
-(18811, 4416, 2), -- Magic Creatures
+(18811, 4408, 1), -- HP Modifiers
+(18811, 4409, 1), -- MP Modifiers
+(18811, 4410, 11), -- P. Atk. Modifiers
+(18811, 4411, 11), -- M. Atk. Modifiers
+(18811, 4412, 11), -- P. Def. Modifiers
+(18811, 4413, 11), -- M. Def. Modifiers
+(18811, 4414, 2), -- Armor Type
+(18811, 4415, 5), -- Weapon Type
+(18811, 4416, 2), -- Races
 -- Kasha's Eye
-(18812, 4408, 8), -- HP Increase (1/4x)
-(18812, 4409, 1), -- MP Increase (1x)
-(18812, 4410, 11), -- Average P. Atk.
-(18812, 4411, 11), -- Average M. Atk.
-(18812, 4412, 11), -- Average P. Def.
-(18812, 4413, 11), -- Average M. Def.
-(18812, 4414, 2), -- Standard Type
-(18812, 4415, 3), -- One-handed Sword
-(18812, 4416, 2), -- Magic Creatures
+(18812, 4408, 8), -- HP Modifiers
+(18812, 4409, 1), -- MP Modifiers
+(18812, 4410, 11), -- P. Atk. Modifiers
+(18812, 4411, 11), -- M. Atk. Modifiers
+(18812, 4412, 11), -- P. Def. Modifiers
+(18812, 4413, 11), -- M. Def. Modifiers
+(18812, 4414, 2), -- Armor Type
+(18812, 4415, 3), -- Weapon Type
+(18812, 4416, 2), -- Races
 -- Kasha's Eye
-(18813, 4408, 8), -- HP Increase (1/4x)
-(18813, 4409, 1), -- MP Increase (1x)
-(18813, 4410, 11), -- Average P. Atk.
-(18813, 4411, 11), -- Average M. Atk.
-(18813, 4412, 11), -- Average P. Def.
-(18813, 4413, 11), -- Average M. Def.
-(18813, 4414, 2), -- Standard Type
-(18813, 4415, 3), -- One-handed Sword
-(18813, 4416, 2), -- Magic Creatures
+(18813, 4408, 8), -- HP Modifiers
+(18813, 4409, 1), -- MP Modifiers
+(18813, 4410, 11), -- P. Atk. Modifiers
+(18813, 4411, 11), -- M. Atk. Modifiers
+(18813, 4412, 11), -- P. Def. Modifiers
+(18813, 4413, 11), -- M. Def. Modifiers
+(18813, 4414, 2), -- Armor Type
+(18813, 4415, 3), -- Weapon Type
+(18813, 4416, 2), -- Races
 -- Kasha's Eye
-(18814, 4408, 8), -- HP Increase (1/4x)
-(18814, 4409, 1), -- MP Increase (1x)
-(18814, 4410, 11), -- Average P. Atk.
-(18814, 4411, 11), -- Average M. Atk.
-(18814, 4412, 11), -- Average P. Def.
-(18814, 4413, 11), -- Average M. Def.
-(18814, 4414, 2), -- Standard Type
-(18814, 4415, 3), -- One-handed Sword
-(18814, 4416, 2), -- Magic Creatures
+(18814, 4408, 8), -- HP Modifiers
+(18814, 4409, 1), -- MP Modifiers
+(18814, 4410, 11), -- P. Atk. Modifiers
+(18814, 4411, 11), -- M. Atk. Modifiers
+(18814, 4412, 11), -- P. Def. Modifiers
+(18814, 4413, 11), -- M. Def. Modifiers
+(18814, 4414, 2), -- Armor Type
+(18814, 4415, 3), -- Weapon Type
+(18814, 4416, 2), -- Races
 -- Guard of the Grave
 (18815, 4045, 1), -- Resist Full Magic Attack
-(18815, 4408, 1), -- HP Increase (1x)
-(18815, 4409, 1), -- MP Increase (1x)
-(18815, 4410, 11), -- Average P. Atk.
-(18815, 4411, 19), -- Extremely Strong M. Atk.
-(18815, 4412, 11), -- Average P. Def.
-(18815, 4413, 11), -- Average M. Def.
-(18815, 4414, 1), -- Heavy Armor Type
-(18815, 4415, 3), -- One-handed Sword
-(18815, 4416, 2), -- Magic Creatures
-(18815, 5313, 9), -- Flame Strike
+(18815, 4408, 1), -- HP Modifiers
+(18815, 4409, 1), -- MP Modifiers
+(18815, 4410, 11), -- P. Atk. Modifiers
+(18815, 4411, 19), -- M. Atk. Modifiers
+(18815, 4412, 11), -- P. Def. Modifiers
+(18815, 4413, 11), -- M. Def. Modifiers
+(18815, 4414, 1), -- Armor Type
+(18815, 4415, 3), -- Weapon Type
+(18815, 4416, 2), -- Races
+(18815, 5313, 9), -- NPC(party) -Magic Range Long Range DD - Fire
 -- Chieftain's Treasure Chest
 (18816, 4045, 1), -- Resist Full Magic Attack
-(18816, 4408, 1), -- HP Increase (1x)
-(18816, 4409, 1), -- MP Increase (1x)
-(18816, 4410, 11), -- Average P. Atk.
-(18816, 4411, 11), -- Average M. Atk.
-(18816, 4412, 11), -- Average P. Def.
-(18816, 4413, 11), -- Average M. Def.
-(18816, 4414, 2), -- Standard Type
-(18816, 4415, 3), -- One-handed Sword
-(18816, 4416, 2), -- Magic Creatures
+(18816, 4408, 1), -- HP Modifiers
+(18816, 4409, 1), -- MP Modifiers
+(18816, 4410, 11), -- P. Atk. Modifiers
+(18816, 4411, 11), -- M. Atk. Modifiers
+(18816, 4412, 11), -- P. Def. Modifiers
+(18816, 4413, 11), -- M. Def. Modifiers
+(18816, 4414, 2), -- Armor Type
+(18816, 4415, 3), -- Weapon Type
+(18816, 4416, 2), -- Races
 -- Invader Martyr of Nightmare
-(18817, 4408, 1), -- HP Increase (1x)
-(18817, 4409, 1), -- MP Increase (1x)
-(18817, 4410, 11), -- Average P. Atk.
-(18817, 4411, 11), -- Average M. Atk.
-(18817, 4412, 11), -- Average P. Def.
-(18817, 4413, 11), -- Average M. Def.
-(18817, 4414, 3), -- Light Armor Type
-(18817, 4415, 17), -- fist weapons
-(18817, 4416, 1), -- Undead
-(18817, 5376, 4), -- Blazing Circle
+(18817, 4408, 1), -- HP Modifiers
+(18817, 4409, 1), -- MP Modifiers
+(18817, 4410, 11), -- P. Atk. Modifiers
+(18817, 4411, 11), -- M. Atk. Modifiers
+(18817, 4412, 11), -- P. Def. Modifiers
+(18817, 4413, 11), -- M. Def. Modifiers
+(18817, 4414, 3), -- Armor Type
+(18817, 4415, 17), -- Weapon Type
+(18817, 4416, 1), -- Races
+(18817, 5376, 4), -- NPC(party) -Magic Range Close Range DD - Fire(Self-Destruction)
 -- Nihil Invader Martyr
-(18818, 4408, 1), -- HP Increase (1x)
-(18818, 4409, 1), -- MP Increase (1x)
-(18818, 4410, 11), -- Average P. Atk.
-(18818, 4411, 11), -- Average M. Atk.
-(18818, 4412, 11), -- Average P. Def.
-(18818, 4413, 11), -- Average M. Def.
-(18818, 4414, 2), -- Standard Type
-(18818, 4415, 3), -- One-handed Sword
-(18818, 4416, 9), -- Demons
-(18818, 5376, 4), -- Blazing Circle
+(18818, 4408, 1), -- HP Modifiers
+(18818, 4409, 1), -- MP Modifiers
+(18818, 4410, 11), -- P. Atk. Modifiers
+(18818, 4411, 11), -- M. Atk. Modifiers
+(18818, 4412, 11), -- P. Def. Modifiers
+(18818, 4413, 11), -- M. Def. Modifiers
+(18818, 4414, 2), -- Armor Type
+(18818, 4415, 3), -- Weapon Type
+(18818, 4416, 9), -- Races
+(18818, 5376, 4), -- NPC(party) -Magic Range Close Range DD - Fire(Self-Destruction)
 -- Nihil Invader Treasure Chest
-(18819, 4408, 1), -- HP Increase (1x)
-(18819, 4409, 1), -- MP Increase (1x)
-(18819, 4410, 11), -- Average P. Atk.
-(18819, 4411, 11), -- Average M. Atk.
-(18819, 4412, 11), -- Average P. Def.
-(18819, 4413, 11), -- Average M. Def.
-(18819, 4414, 2), -- Standard Type
-(18819, 4415, 3), -- One-handed Sword
-(18819, 4416, 2), -- Magic Creatures
+(18819, 4408, 1), -- HP Modifiers
+(18819, 4409, 1), -- MP Modifiers
+(18819, 4410, 11), -- P. Atk. Modifiers
+(18819, 4411, 11), -- M. Atk. Modifiers
+(18819, 4412, 11), -- P. Def. Modifiers
+(18819, 4413, 11), -- M. Def. Modifiers
+(18819, 4414, 2), -- Armor Type
+(18819, 4415, 3), -- Weapon Type
+(18819, 4416, 2), -- Races
 -- Nihil Invader Treasure Chest
-(18820, 4408, 1), -- HP Increase (1x)
-(18820, 4409, 1), -- MP Increase (1x)
-(18820, 4410, 11), -- Average P. Atk.
-(18820, 4411, 11), -- Average M. Atk.
-(18820, 4412, 11), -- Average P. Def.
-(18820, 4413, 11), -- Average M. Def.
-(18820, 4414, 2), -- Standard Type
-(18820, 4415, 3), -- One-handed Sword
-(18820, 4416, 2), -- Magic Creatures
+(18820, 4408, 1), -- HP Modifiers
+(18820, 4409, 1), -- MP Modifiers
+(18820, 4410, 11), -- P. Atk. Modifiers
+(18820, 4411, 11), -- M. Atk. Modifiers
+(18820, 4412, 11), -- P. Def. Modifiers
+(18820, 4413, 11), -- M. Def. Modifiers
+(18820, 4414, 2), -- Armor Type
+(18820, 4415, 3), -- Weapon Type
+(18820, 4416, 2), -- Races
 -- Mutant Martyr
-(18821, 4408, 1), -- HP Increase (1x)
-(18821, 4409, 1), -- MP Increase (1x)
-(18821, 4410, 11), -- Average P. Atk.
-(18821, 4411, 11), -- Average M. Atk.
-(18821, 4412, 11), -- Average P. Def.
-(18821, 4413, 11), -- Average M. Def.
-(18821, 4414, 2), -- Standard Type
-(18821, 4415, 3), -- One-handed Sword
-(18821, 4416, 9), -- Demons
-(18821, 5376, 5), -- Blazing Circle
+(18821, 4408, 1), -- HP Modifiers
+(18821, 4409, 1), -- MP Modifiers
+(18821, 4410, 11), -- P. Atk. Modifiers
+(18821, 4411, 11), -- M. Atk. Modifiers
+(18821, 4412, 11), -- P. Def. Modifiers
+(18821, 4413, 11), -- M. Def. Modifiers
+(18821, 4414, 2), -- Armor Type
+(18821, 4415, 3), -- Weapon Type
+(18821, 4416, 9), -- Races
+(18821, 5376, 5), -- NPC(party) -Magic Range Close Range DD - Fire(Self-Destruction)
 -- Mutant Treasure Chest
-(18822, 4408, 1), -- HP Increase (1x)
-(18822, 4409, 1), -- MP Increase (1x)
-(18822, 4410, 11), -- Average P. Atk.
-(18822, 4411, 11), -- Average M. Atk.
-(18822, 4412, 11), -- Average P. Def.
-(18822, 4413, 11), -- Average M. Def.
-(18822, 4414, 2), -- Standard Type
-(18822, 4415, 3), -- One-handed Sword
-(18822, 4416, 2), -- Magic Creatures
+(18822, 4408, 1), -- HP Modifiers
+(18822, 4409, 1), -- MP Modifiers
+(18822, 4410, 11), -- P. Atk. Modifiers
+(18822, 4411, 11), -- M. Atk. Modifiers
+(18822, 4412, 11), -- P. Def. Modifiers
+(18822, 4413, 11), -- M. Def. Modifiers
+(18822, 4414, 2), -- Armor Type
+(18822, 4415, 3), -- Weapon Type
+(18822, 4416, 2), -- Races
 -- Mutant Treasure Chest
-(18823, 4408, 1), -- HP Increase (1x)
-(18823, 4409, 1), -- MP Increase (1x)
-(18823, 4410, 11), -- Average P. Atk.
-(18823, 4411, 11), -- Average M. Atk.
-(18823, 4412, 11), -- Average P. Def.
-(18823, 4413, 11), -- Average M. Def.
-(18823, 4414, 2), -- Standard Type
-(18823, 4415, 3), -- One-handed Sword
-(18823, 4416, 2), -- Magic Creatures
+(18823, 4408, 1), -- HP Modifiers
+(18823, 4409, 1), -- MP Modifiers
+(18823, 4410, 11), -- P. Atk. Modifiers
+(18823, 4411, 11), -- M. Atk. Modifiers
+(18823, 4412, 11), -- P. Def. Modifiers
+(18823, 4413, 11), -- M. Def. Modifiers
+(18823, 4414, 2), -- Armor Type
+(18823, 4415, 3), -- Weapon Type
+(18823, 4416, 2), -- Races
 -- Merchant of Mammon A
-(18824, 4408, 1), -- HP Increase (1x)
-(18824, 4409, 1), -- MP Increase (1x)
-(18824, 4410, 11), -- Average P. Atk.
-(18824, 4411, 11), -- Average M. Atk.
-(18824, 4412, 11), -- Average P. Def.
-(18824, 4413, 11), -- Average M. Def.
-(18824, 4414, 2), -- Standard Type
-(18824, 4415, 3), -- One-handed Sword
-(18824, 4416, 18), -- Dwarves
+(18824, 4408, 1), -- HP Modifiers
+(18824, 4409, 1), -- MP Modifiers
+(18824, 4410, 11), -- P. Atk. Modifiers
+(18824, 4411, 11), -- M. Atk. Modifiers
+(18824, 4412, 11), -- P. Def. Modifiers
+(18824, 4413, 11), -- M. Def. Modifiers
+(18824, 4414, 2), -- Armor Type
+(18824, 4415, 3), -- Weapon Type
+(18824, 4416, 18), -- Races
 -- Merchant of Mammon B
-(18825, 4408, 1), -- HP Increase (1x)
-(18825, 4409, 1), -- MP Increase (1x)
-(18825, 4410, 11), -- Average P. Atk.
-(18825, 4411, 11), -- Average M. Atk.
-(18825, 4412, 11), -- Average P. Def.
-(18825, 4413, 11), -- Average M. Def.
-(18825, 4414, 2), -- Standard Type
-(18825, 4415, 3), -- One-handed Sword
-(18825, 4416, 18), -- Dwarves
+(18825, 4408, 1), -- HP Modifiers
+(18825, 4409, 1), -- MP Modifiers
+(18825, 4410, 11), -- P. Atk. Modifiers
+(18825, 4411, 11), -- M. Atk. Modifiers
+(18825, 4412, 11), -- P. Def. Modifiers
+(18825, 4413, 11), -- M. Def. Modifiers
+(18825, 4414, 2), -- Armor Type
+(18825, 4415, 3), -- Weapon Type
+(18825, 4416, 18), -- Races
 -- Shilen's Evil Thoughts For Presentation
-(18826, 4408, 1), -- HP Increase (1x)
-(18826, 4409, 1), -- MP Increase (1x)
-(18826, 4410, 11), -- Average P. Atk.
-(18826, 4411, 11), -- Average M. Atk.
-(18826, 4412, 11), -- Average P. Def.
-(18826, 4413, 11), -- Average M. Def.
-(18826, 4414, 2), -- Standard Type
-(18826, 4415, 3), -- One-handed Sword
-(18826, 4416, 9), -- Demons
+(18826, 4408, 1), -- HP Modifiers
+(18826, 4409, 1), -- MP Modifiers
+(18826, 4410, 11), -- P. Atk. Modifiers
+(18826, 4411, 11), -- M. Atk. Modifiers
+(18826, 4412, 11), -- P. Def. Modifiers
+(18826, 4413, 11), -- M. Def. Modifiers
+(18826, 4414, 2), -- Armor Type
+(18826, 4415, 3), -- Weapon Type
+(18826, 4416, 9), -- Races
 -- Priest Cain for Presentation
-(18827, 4408, 1), -- HP Increase (1x)
-(18827, 4409, 1), -- MP Increase (1x)
-(18827, 4410, 11), -- Average P. Atk.
-(18827, 4411, 11), -- Average M. Atk.
-(18827, 4412, 11), -- Average P. Def.
-(18827, 4413, 11), -- Average M. Def.
-(18827, 4414, 2), -- Standard Type
-(18827, 4415, 3), -- One-handed Sword
-(18827, 4416, 23), -- Mercenaries
+(18827, 4408, 1), -- HP Modifiers
+(18827, 4409, 1), -- MP Modifiers
+(18827, 4410, 11), -- P. Atk. Modifiers
+(18827, 4411, 11), -- M. Atk. Modifiers
+(18827, 4412, 11), -- P. Def. Modifiers
+(18827, 4413, 11), -- M. Def. Modifiers
+(18827, 4414, 2), -- Armor Type
+(18827, 4415, 3), -- Weapon Type
+(18827, 4416, 23), -- Races
 -- High Priest of Dawn
-(18828, 4408, 1), -- HP Increase (1x)
-(18828, 4409, 1), -- MP Increase (1x)
-(18828, 4410, 11), -- Average P. Atk.
-(18828, 4411, 11), -- Average M. Atk.
-(18828, 4412, 11), -- Average P. Def.
-(18828, 4413, 11), -- Average M. Def.
-(18828, 4414, 2), -- Standard Type
-(18828, 4415, 3), -- One-handed Sword
-(18828, 4416, 14), -- Humans
+(18828, 4408, 1), -- HP Modifiers
+(18828, 4409, 1), -- MP Modifiers
+(18828, 4410, 11), -- P. Atk. Modifiers
+(18828, 4411, 11), -- M. Atk. Modifiers
+(18828, 4412, 11), -- P. Def. Modifiers
+(18828, 4413, 11), -- M. Def. Modifiers
+(18828, 4414, 2), -- Armor Type
+(18828, 4415, 3), -- Weapon Type
+(18828, 4416, 14), -- Races
 -- Shilen's Evil Thoughts Leader For Presentation
-(18829, 4408, 1), -- HP Increase (1x)
-(18829, 4409, 1), -- MP Increase (1x)
-(18829, 4410, 11), -- Average P. Atk.
-(18829, 4411, 11), -- Average M. Atk.
-(18829, 4412, 11), -- Average P. Def.
-(18829, 4413, 11), -- Average M. Def.
-(18829, 4414, 2), -- Standard Type
-(18829, 4415, 3), -- One-handed Sword
-(18829, 4416, 9), -- Demons
+(18829, 4408, 1), -- HP Modifiers
+(18829, 4409, 1), -- MP Modifiers
+(18829, 4410, 11), -- P. Atk. Modifiers
+(18829, 4411, 11), -- M. Atk. Modifiers
+(18829, 4412, 11), -- P. Def. Modifiers
+(18829, 4413, 11), -- M. Def. Modifiers
+(18829, 4414, 2), -- Armor Type
+(18829, 4415, 3), -- Weapon Type
+(18829, 4416, 9), -- Races
 -- ssq For Presentation Camera Dummy 1
-(18830, 4408, 1), -- HP Increase (1x)
-(18830, 4409, 1), -- MP Increase (1x)
-(18830, 4410, 11), -- Average P. Atk.
-(18830, 4411, 11), -- Average M. Atk.
-(18830, 4412, 11), -- Average P. Def.
-(18830, 4413, 11), -- Average M. Def.
-(18830, 4414, 2), -- Standard Type
-(18830, 4415, 3), -- One-handed Sword
-(18830, 4416, 2), -- Magic Creatures
+(18830, 4408, 1), -- HP Modifiers
+(18830, 4409, 1), -- MP Modifiers
+(18830, 4410, 11), -- P. Atk. Modifiers
+(18830, 4411, 11), -- M. Atk. Modifiers
+(18830, 4412, 11), -- P. Def. Modifiers
+(18830, 4413, 11), -- M. Def. Modifiers
+(18830, 4414, 2), -- Armor Type
+(18830, 4415, 3), -- Weapon Type
+(18830, 4416, 2), -- Races
 -- ssq For Presentation Camera Dummy 2
-(18831, 4408, 1), -- HP Increase (1x)
-(18831, 4409, 1), -- MP Increase (1x)
-(18831, 4410, 11), -- Average P. Atk.
-(18831, 4411, 11), -- Average M. Atk.
-(18831, 4412, 11), -- Average P. Def.
-(18831, 4413, 11), -- Average M. Def.
-(18831, 4414, 2), -- Standard Type
-(18831, 4415, 3), -- One-handed Sword
-(18831, 4416, 2), -- Magic Creatures
+(18831, 4408, 1), -- HP Modifiers
+(18831, 4409, 1), -- MP Modifiers
+(18831, 4410, 11), -- P. Atk. Modifiers
+(18831, 4411, 11), -- M. Atk. Modifiers
+(18831, 4412, 11), -- P. Def. Modifiers
+(18831, 4413, 11), -- M. Def. Modifiers
+(18831, 4414, 2), -- Armor Type
+(18831, 4415, 3), -- Weapon Type
+(18831, 4416, 2), -- Races
 -- ssq For Presentation Camera Dummy 3
-(18832, 4408, 1), -- HP Increase (1x)
-(18832, 4409, 1), -- MP Increase (1x)
-(18832, 4410, 11), -- Average P. Atk.
-(18832, 4411, 11), -- Average M. Atk.
-(18832, 4412, 11), -- Average P. Def.
-(18832, 4413, 11), -- Average M. Def.
-(18832, 4414, 2), -- Standard Type
-(18832, 4415, 3), -- One-handed Sword
-(18832, 4416, 2), -- Magic Creatures
+(18832, 4408, 1), -- HP Modifiers
+(18832, 4409, 1), -- MP Modifiers
+(18832, 4410, 11), -- P. Atk. Modifiers
+(18832, 4411, 11), -- M. Atk. Modifiers
+(18832, 4412, 11), -- P. Def. Modifiers
+(18832, 4413, 11), -- M. Def. Modifiers
+(18832, 4414, 2), -- Armor Type
+(18832, 4415, 3), -- Weapon Type
+(18832, 4416, 2), -- Races
 -- Emperor's Seal Device
-(18833, 4408, 1), -- HP Increase (1x)
-(18833, 4409, 1), -- MP Increase (1x)
-(18833, 4410, 11), -- Average P. Atk.
-(18833, 4411, 11), -- Average M. Atk.
-(18833, 4412, 11), -- Average P. Def.
-(18833, 4413, 11), -- Average M. Def.
-(18833, 4414, 2), -- Standard Type
-(18833, 4415, 3), -- One-handed Sword
-(18833, 4416, 2), -- Magic Creatures
+(18833, 4408, 1), -- HP Modifiers
+(18833, 4409, 1), -- MP Modifiers
+(18833, 4410, 11), -- P. Atk. Modifiers
+(18833, 4411, 11), -- M. Atk. Modifiers
+(18833, 4412, 11), -- P. Def. Modifiers
+(18833, 4413, 11), -- M. Def. Modifiers
+(18833, 4414, 2), -- Armor Type
+(18833, 4415, 3), -- Weapon Type
+(18833, 4416, 2), -- Races
 -- Guards of the Dawn
-(18834, 4408, 1), -- HP Increase (1x)
-(18834, 4409, 1), -- MP Increase (1x)
-(18834, 4410, 11), -- Average P. Atk.
-(18834, 4411, 11), -- Average M. Atk.
-(18834, 4412, 11), -- Average P. Def.
-(18834, 4413, 11), -- Average M. Def.
-(18834, 4414, 2), -- Standard Type
-(18834, 4415, 11), -- Spears
-(18834, 4416, 23), -- Mercenaries
+(18834, 4408, 1), -- HP Modifiers
+(18834, 4409, 1), -- MP Modifiers
+(18834, 4410, 11), -- P. Atk. Modifiers
+(18834, 4411, 11), -- M. Atk. Modifiers
+(18834, 4412, 11), -- P. Def. Modifiers
+(18834, 4413, 11), -- M. Def. Modifiers
+(18834, 4414, 2), -- Armor Type
+(18834, 4415, 11), -- Weapon Type
+(18834, 4416, 23), -- Races
 (18834, 5462, 1), -- Fire Attacks
 -- Guards of the Dawn
-(18835, 4408, 1), -- HP Increase (1x)
-(18835, 4409, 1), -- MP Increase (1x)
-(18835, 4410, 11), -- Average P. Atk.
-(18835, 4411, 11), -- Average M. Atk.
-(18835, 4412, 11), -- Average P. Def.
-(18835, 4413, 11), -- Average M. Def.
-(18835, 4414, 2), -- Standard Type
-(18835, 4415, 5), -- Blunt Weapons
-(18835, 4416, 23), -- Mercenaries
+(18835, 4408, 1), -- HP Modifiers
+(18835, 4409, 1), -- MP Modifiers
+(18835, 4410, 11), -- P. Atk. Modifiers
+(18835, 4411, 11), -- M. Atk. Modifiers
+(18835, 4412, 11), -- P. Def. Modifiers
+(18835, 4413, 11), -- M. Def. Modifiers
+(18835, 4414, 2), -- Armor Type
+(18835, 4415, 5), -- Weapon Type
+(18835, 4416, 23), -- Races
 (18835, 5462, 1), -- Fire Attacks
 -- Varangka's Guardian
-(18836, 4032, 9), -- Power Strike
-(18836, 4408, 1), -- HP Increase (1x)
-(18836, 4409, 1), -- MP Increase (1x)
-(18836, 4410, 3), -- Extremely Weak P. Atk.
-(18836, 4411, 3), -- Extremely Weak M. Atk.
-(18836, 4412, 11), -- Average P. Def.
-(18836, 4413, 11), -- Average M. Def.
-(18836, 4414, 2), -- Standard Type
-(18836, 4415, 3), -- One-handed Sword
-(18836, 4416, 9), -- Demons
+(18836, 4032, 9), -- NPC Strike
+(18836, 4408, 1), -- HP Modifiers
+(18836, 4409, 1), -- MP Modifiers
+(18836, 4410, 3), -- P. Atk. Modifiers
+(18836, 4411, 3), -- M. Atk. Modifiers
+(18836, 4412, 11), -- P. Def. Modifiers
+(18836, 4413, 11), -- M. Def. Modifiers
+(18836, 4414, 2), -- Armor Type
+(18836, 4415, 3), -- Weapon Type
+(18836, 4416, 9), -- Races
 (18836, 5467, 1), -- Dark Attacks
 (18836, 6168, 9), -- Shock
 -- 
-(18837, 4408, 1), -- HP Increase (1x)
-(18837, 4409, 1), -- MP Increase (1x)
-(18837, 4410, 11), -- Average P. Atk.
-(18837, 4411, 11), -- Average M. Atk.
-(18837, 4412, 11), -- Average P. Def.
-(18837, 4413, 11), -- Average M. Def.
-(18837, 4414, 2), -- Standard Type
-(18837, 4415, 3), -- One-handed Sword
-(18837, 4416, 2), -- Magic Creatures
+(18837, 4408, 1), -- HP Modifiers
+(18837, 4409, 1), -- MP Modifiers
+(18837, 4410, 11), -- P. Atk. Modifiers
+(18837, 4411, 11), -- M. Atk. Modifiers
+(18837, 4412, 11), -- P. Def. Modifiers
+(18837, 4413, 11), -- M. Def. Modifiers
+(18837, 4414, 2), -- Armor Type
+(18837, 4415, 3), -- Weapon Type
+(18837, 4416, 2), -- Races
 (18837, 6235, 1), -- Blessed Focus
 -- Treasure Chest of Invader Soldier of Nightmare
-(18838, 4408, 1), -- HP Increase (1x)
-(18838, 4409, 1), -- MP Increase (1x)
-(18838, 4410, 11), -- Average P. Atk.
-(18838, 4411, 11), -- Average M. Atk.
-(18838, 4412, 11), -- Average P. Def.
-(18838, 4413, 11), -- Average M. Def.
-(18838, 4414, 2), -- Standard Type
-(18838, 4415, 3), -- One-handed Sword
-(18838, 4416, 2), -- Magic Creatures
+(18838, 4408, 1), -- HP Modifiers
+(18838, 4409, 1), -- MP Modifiers
+(18838, 4410, 11), -- P. Atk. Modifiers
+(18838, 4411, 11), -- M. Atk. Modifiers
+(18838, 4412, 11), -- P. Def. Modifiers
+(18838, 4413, 11), -- M. Def. Modifiers
+(18838, 4414, 2), -- Armor Type
+(18838, 4415, 3), -- Weapon Type
+(18838, 4416, 2), -- Races
 -- Wild Maguen
-(18839, 4408, 1), -- HP Increase (1x)
-(18839, 4409, 1), -- MP Increase (1x)
-(18839, 4410, 11), -- Average P. Atk.
-(18839, 4411, 11), -- Average M. Atk.
-(18839, 4412, 11), -- Average P. Def.
-(18839, 4413, 11), -- Average M. Def.
-(18839, 4414, 2), -- Standard Type
-(18839, 4415, 3), -- One-handed Sword
-(18839, 4416, 3), -- Beasts
+(18839, 4408, 1), -- HP Modifiers
+(18839, 4409, 1), -- MP Modifiers
+(18839, 4410, 11), -- P. Atk. Modifiers
+(18839, 4411, 11), -- M. Atk. Modifiers
+(18839, 4412, 11), -- P. Def. Modifiers
+(18839, 4413, 11), -- M. Def. Modifiers
+(18839, 4414, 2), -- Armor Type
+(18839, 4415, 3), -- Weapon Type
+(18839, 4416, 3), -- Races
 (18839, 6343, 1), -- Maguen Plasma - Power
 (18839, 6365, 1), -- Maguen Plasma - Speed
 (18839, 6366, 1), -- Maguen Plasma - Critical
@@ -26888,204 +26888,204 @@ INSERT INTO `npcskills` VALUES
 (18839, 6368, 1), -- Maguen Plasma - Cokrakon
 (18839, 6369, 1), -- Maguen Plasma - Reptilikon
 -- 
-(18840, 4408, 1), -- HP Increase (1x)
-(18840, 4409, 1), -- MP Increase (1x)
-(18840, 4410, 11), -- Average P. Atk.
-(18840, 4411, 11), -- Average M. Atk.
-(18840, 4412, 11), -- Average P. Def.
-(18840, 4413, 11), -- Average M. Def.
-(18840, 4414, 2), -- Standard Type
-(18840, 4415, 3), -- One-handed Sword
-(18840, 4416, 2), -- Magic Creatures
+(18840, 4408, 1), -- HP Modifiers
+(18840, 4409, 1), -- MP Modifiers
+(18840, 4410, 11), -- P. Atk. Modifiers
+(18840, 4411, 11), -- M. Atk. Modifiers
+(18840, 4412, 11), -- P. Def. Modifiers
+(18840, 4413, 11), -- M. Def. Modifiers
+(18840, 4414, 2), -- Armor Type
+(18840, 4415, 3), -- Weapon Type
+(18840, 4416, 2), -- Races
 -- 
-(18841, 4408, 1), -- HP Increase (1x)
-(18841, 4409, 1), -- MP Increase (1x)
-(18841, 4410, 11), -- Average P. Atk.
-(18841, 4411, 11), -- Average M. Atk.
-(18841, 4412, 11), -- Average P. Def.
-(18841, 4413, 11), -- Average M. Def.
-(18841, 4414, 2), -- Standard Type
-(18841, 4415, 3), -- One-handed Sword
-(18841, 4416, 2), -- Magic Creatures
+(18841, 4408, 1), -- HP Modifiers
+(18841, 4409, 1), -- MP Modifiers
+(18841, 4410, 11), -- P. Atk. Modifiers
+(18841, 4411, 11), -- M. Atk. Modifiers
+(18841, 4412, 11), -- P. Def. Modifiers
+(18841, 4413, 11), -- M. Def. Modifiers
+(18841, 4414, 2), -- Armor Type
+(18841, 4415, 3), -- Weapon Type
+(18841, 4416, 2), -- Races
 -- 
-(18842, 4408, 1), -- HP Increase (1x)
-(18842, 4409, 1), -- MP Increase (1x)
-(18842, 4410, 11), -- Average P. Atk.
-(18842, 4411, 11), -- Average M. Atk.
-(18842, 4412, 11), -- Average P. Def.
-(18842, 4413, 11), -- Average M. Def.
-(18842, 4414, 2), -- Standard Type
-(18842, 4415, 3), -- One-handed Sword
-(18842, 4416, 2), -- Magic Creatures
+(18842, 4408, 1), -- HP Modifiers
+(18842, 4409, 1), -- MP Modifiers
+(18842, 4410, 11), -- P. Atk. Modifiers
+(18842, 4411, 11), -- M. Atk. Modifiers
+(18842, 4412, 11), -- P. Def. Modifiers
+(18842, 4413, 11), -- M. Def. Modifiers
+(18842, 4414, 2), -- Armor Type
+(18842, 4415, 3), -- Weapon Type
+(18842, 4416, 2), -- Races
 -- Cokrakon's Ward
-(18843, 4408, 1), -- HP Increase (1x)
-(18843, 4409, 1), -- MP Increase (1x)
-(18843, 4410, 11), -- Average P. Atk.
-(18843, 4411, 11), -- Average M. Atk.
-(18843, 4412, 11), -- Average P. Def.
-(18843, 4413, 11), -- Average M. Def.
-(18843, 4414, 2), -- Standard Type
-(18843, 4415, 3), -- One-handed Sword
-(18843, 4416, 2), -- Magic Creatures
+(18843, 4408, 1), -- HP Modifiers
+(18843, 4409, 1), -- MP Modifiers
+(18843, 4410, 11), -- P. Atk. Modifiers
+(18843, 4411, 11), -- M. Atk. Modifiers
+(18843, 4412, 11), -- P. Def. Modifiers
+(18843, 4413, 11), -- M. Def. Modifiers
+(18843, 4414, 2), -- Armor Type
+(18843, 4415, 3), -- Weapon Type
+(18843, 4416, 2), -- Races
 -- Reptilikon's Ward
-(18844, 4408, 1), -- HP Increase (1x)
-(18844, 4409, 1), -- MP Increase (1x)
-(18844, 4410, 11), -- Average P. Atk.
-(18844, 4411, 11), -- Average M. Atk.
-(18844, 4412, 11), -- Average P. Def.
-(18844, 4413, 11), -- Average M. Def.
-(18844, 4414, 2), -- Standard Type
-(18844, 4415, 3), -- One-handed Sword
-(18844, 4416, 2), -- Magic Creatures
+(18844, 4408, 1), -- HP Modifiers
+(18844, 4409, 1), -- MP Modifiers
+(18844, 4410, 11), -- P. Atk. Modifiers
+(18844, 4411, 11), -- M. Atk. Modifiers
+(18844, 4412, 11), -- P. Def. Modifiers
+(18844, 4413, 11), -- M. Def. Modifiers
+(18844, 4414, 2), -- Armor Type
+(18844, 4415, 3), -- Weapon Type
+(18844, 4416, 2), -- Races
 -- Torumba's Telegraph
 (18845, 4045, 1), -- Resist Full Magic Attack
-(18845, 4408, 1), -- HP Increase (1x)
-(18845, 4409, 1), -- MP Increase (1x)
-(18845, 4410, 11), -- Average P. Atk.
-(18845, 4411, 11), -- Average M. Atk.
-(18845, 4412, 11), -- Average P. Def.
-(18845, 4413, 11), -- Average M. Def.
-(18845, 4414, 2), -- Standard Type
-(18845, 4415, 3), -- One-handed Sword
-(18845, 4416, 2), -- Magic Creatures
+(18845, 4408, 1), -- HP Modifiers
+(18845, 4409, 1), -- MP Modifiers
+(18845, 4410, 11), -- P. Atk. Modifiers
+(18845, 4411, 11), -- M. Atk. Modifiers
+(18845, 4412, 11), -- P. Def. Modifiers
+(18845, 4413, 11), -- M. Def. Modifiers
+(18845, 4414, 2), -- Armor Type
+(18845, 4415, 3), -- Weapon Type
+(18845, 4416, 2), -- Races
 -- Kegor
-(18846, 4408, 13), -- HP Increase (5x)
-(18846, 4409, 1), -- MP Increase (1x)
-(18846, 4410, 5), -- Very Weak P. Atk.
-(18846, 4411, 4), -- Extremely Weak M. Atk.
-(18846, 4412, 16), -- Very Strong P. Def.
-(18846, 4413, 17), -- Very Strong M. Def.
-(18846, 4414, 2), -- Standard Type
-(18846, 4415, 3), -- One-handed Sword
-(18846, 4416, 14), -- Humans
+(18846, 4408, 13), -- HP Modifiers
+(18846, 4409, 1), -- MP Modifiers
+(18846, 4410, 5), -- P. Atk. Modifiers
+(18846, 4411, 4), -- M. Atk. Modifiers
+(18846, 4412, 16), -- P. Def. Modifiers
+(18846, 4413, 17), -- M. Def. Modifiers
+(18846, 4414, 2), -- Armor Type
+(18846, 4415, 3), -- Weapon Type
+(18846, 4416, 14), -- Races
 (18846, 6286, 1), -- Bless of Sword
 -- Freya
-(18847, 4408, 1), -- HP Increase (1x)
-(18847, 4409, 1), -- MP Increase (1x)
-(18847, 4410, 11), -- Average P. Atk.
-(18847, 4411, 11), -- Average M. Atk.
-(18847, 4412, 18), -- Extremely Strong P. Def.
-(18847, 4413, 17), -- Very Strong M. Def.
-(18847, 4414, 2), -- Standard Type
-(18847, 4415, 3), -- One-handed Sword
-(18847, 4416, 6), -- Humanoids
+(18847, 4408, 1), -- HP Modifiers
+(18847, 4409, 1), -- MP Modifiers
+(18847, 4410, 11), -- P. Atk. Modifiers
+(18847, 4411, 11), -- M. Atk. Modifiers
+(18847, 4412, 18), -- P. Def. Modifiers
+(18847, 4413, 17), -- M. Def. Modifiers
+(18847, 4414, 2), -- Armor Type
+(18847, 4415, 3), -- Weapon Type
+(18847, 4416, 6), -- Races
 (18847, 6276, 1), -- Eternal Blizzard
 (18847, 6278, 1), -- Ice Ball
 -- Battalion Leader
-(18848, 4032, 10), -- Power Strike
-(18848, 4408, 10), -- HP Increase (2x)
-(18848, 4409, 1), -- MP Increase (1x)
-(18848, 4410, 8), -- Weak P. Atk.
-(18848, 4411, 7), -- Weak M. Atk.
-(18848, 4412, 11), -- Average P. Def.
-(18848, 4413, 11), -- Average M. Def.
-(18848, 4414, 2), -- Standard Type
-(18848, 4415, 3), -- One-handed Sword
-(18848, 4416, 14), -- Humans
+(18848, 4032, 10), -- NPC Strike
+(18848, 4408, 10), -- HP Modifiers
+(18848, 4409, 1), -- MP Modifiers
+(18848, 4410, 8), -- P. Atk. Modifiers
+(18848, 4411, 7), -- M. Atk. Modifiers
+(18848, 4412, 11), -- P. Def. Modifiers
+(18848, 4413, 11), -- M. Def. Modifiers
+(18848, 4414, 2), -- Armor Type
+(18848, 4415, 3), -- Weapon Type
+(18848, 4416, 14), -- Races
 -- Legionnaire
-(18849, 4032, 10), -- Power Strike
-(18849, 4408, 10), -- HP Increase (2x)
-(18849, 4409, 1), -- MP Increase (1x)
-(18849, 4410, 8), -- Weak P. Atk.
-(18849, 4411, 7), -- Weak M. Atk.
-(18849, 4412, 11), -- Average P. Def.
-(18849, 4413, 11), -- Average M. Def.
-(18849, 4414, 2), -- Standard Type
-(18849, 4415, 3), -- One-handed Sword
-(18849, 4416, 17), -- Orcs
+(18849, 4032, 10), -- NPC Strike
+(18849, 4408, 10), -- HP Modifiers
+(18849, 4409, 1), -- MP Modifiers
+(18849, 4410, 8), -- P. Atk. Modifiers
+(18849, 4411, 7), -- M. Atk. Modifiers
+(18849, 4412, 11), -- P. Def. Modifiers
+(18849, 4413, 11), -- M. Def. Modifiers
+(18849, 4414, 2), -- Armor Type
+(18849, 4415, 3), -- Weapon Type
+(18849, 4416, 17), -- Races
 -- Jinia 
-(18850, 4408, 12), -- HP Increase (4x)
-(18850, 4409, 1), -- MP Increase (1x)
-(18850, 4410, 11), -- Average P. Atk.
-(18850, 4411, 11), -- Average M. Atk.
-(18850, 4412, 11), -- Average P. Def.
-(18850, 4413, 11), -- Average M. Def.
-(18850, 4414, 2), -- Standard Type
-(18850, 4415, 3), -- One-handed Sword
-(18850, 4416, 14), -- Humans
+(18850, 4408, 12), -- HP Modifiers
+(18850, 4409, 1), -- MP Modifiers
+(18850, 4410, 11), -- P. Atk. Modifiers
+(18850, 4411, 11), -- M. Atk. Modifiers
+(18850, 4412, 11), -- P. Def. Modifiers
+(18850, 4413, 11), -- M. Def. Modifiers
+(18850, 4414, 2), -- Armor Type
+(18850, 4415, 3), -- Weapon Type
+(18850, 4416, 14), -- Races
 (18850, 6288, 1), -- Jinia's Prayer
 (18850, 6641, 1), -- Holy Ball
 -- Kegor
-(18851, 4408, 12), -- HP Increase (4x)
-(18851, 4409, 1), -- MP Increase (1x)
-(18851, 4410, 11), -- Average P. Atk.
-(18851, 4411, 11), -- Average M. Atk.
-(18851, 4412, 11), -- Average P. Def.
-(18851, 4413, 11), -- Average M. Def.
-(18851, 4414, 2), -- Standard Type
-(18851, 4415, 3), -- One-handed Sword
-(18851, 4416, 14), -- Humans
+(18851, 4408, 12), -- HP Modifiers
+(18851, 4409, 1), -- MP Modifiers
+(18851, 4410, 11), -- P. Atk. Modifiers
+(18851, 4411, 11), -- M. Atk. Modifiers
+(18851, 4412, 11), -- P. Def. Modifiers
+(18851, 4413, 11), -- M. Def. Modifiers
+(18851, 4414, 2), -- Armor Type
+(18851, 4415, 3), -- Weapon Type
+(18851, 4416, 14), -- Races
 (18851, 6289, 1), -- Kegor's Courage
 (18851, 6642, 1), -- Dash
 (18851, 6643, 1), -- Holy Strike
 -- Sirra 
-(18852, 4408, 12), -- HP Increase (4x)
-(18852, 4409, 1), -- MP Increase (1x)
-(18852, 4410, 11), -- Average P. Atk.
-(18852, 4411, 11), -- Average M. Atk.
-(18852, 4412, 11), -- Average P. Def.
-(18852, 4413, 11), -- Average M. Def.
-(18852, 4414, 2), -- Standard Type
-(18852, 4415, 3), -- One-handed Sword
-(18852, 4416, 14), -- Humans
+(18852, 4408, 12), -- HP Modifiers
+(18852, 4409, 1), -- MP Modifiers
+(18852, 4410, 11), -- P. Atk. Modifiers
+(18852, 4411, 11), -- M. Atk. Modifiers
+(18852, 4412, 11), -- P. Def. Modifiers
+(18852, 4413, 11), -- M. Def. Modifiers
+(18852, 4414, 2), -- Armor Type
+(18852, 4415, 3), -- Weapon Type
+(18852, 4416, 14), -- Races
 -- Glacier
 (18853, 4045, 1), -- Resist Full Magic Attack
-(18853, 4116, 9), -- Resist M. Atk.
-(18853, 4408, 11), -- HP Increase (3x)
-(18853, 4409, 1), -- MP Increase (1x)
-(18853, 4410, 11), -- Average P. Atk.
-(18853, 4411, 11), -- Average M. Atk.
-(18853, 4412, 11), -- Average P. Def.
-(18853, 4413, 11), -- Average M. Def.
-(18853, 4414, 2), -- Standard Type
-(18853, 4415, 3), -- One-handed Sword
-(18853, 4416, 2), -- Magic Creatures
+(18853, 4116, 9), -- Resist M.Atk
+(18853, 4408, 11), -- HP Modifiers
+(18853, 4409, 1), -- MP Modifiers
+(18853, 4410, 11), -- P. Atk. Modifiers
+(18853, 4411, 11), -- M. Atk. Modifiers
+(18853, 4412, 11), -- P. Def. Modifiers
+(18853, 4413, 11), -- M. Def. Modifiers
+(18853, 4414, 2), -- Armor Type
+(18853, 4415, 3), -- Weapon Type
+(18853, 4416, 2), -- Races
 (18853, 6301, 1), -- Cold Mana's Fragment
 -- Archer's Breath
-(18854, 4071, 2), -- Resist Bow/Crossbow Weapons
-(18854, 4116, 2), -- Resist M. Atk.
-(18854, 4408, 1), -- HP Increase (1x)
-(18854, 4409, 1), -- MP Increase (1x)
-(18854, 4410, 11), -- Average P. Atk.
-(18854, 4411, 11), -- Average M. Atk.
-(18854, 4412, 11), -- Average P. Def.
-(18854, 4413, 11), -- Average M. Def.
-(18854, 4414, 2), -- Standard Type
-(18854, 4415, 3), -- One-handed Sword
-(18854, 4416, 7), -- Spirits
+(18854, 4071, 2), -- Resist Archery
+(18854, 4116, 2), -- Resist M.Atk
+(18854, 4408, 1), -- HP Modifiers
+(18854, 4409, 1), -- MP Modifiers
+(18854, 4410, 11), -- P. Atk. Modifiers
+(18854, 4411, 11), -- M. Atk. Modifiers
+(18854, 4412, 11), -- P. Def. Modifiers
+(18854, 4413, 11), -- M. Def. Modifiers
+(18854, 4414, 2), -- Armor Type
+(18854, 4415, 3), -- Weapon Type
+(18854, 4416, 7), -- Races
 (18854, 6299, 1), -- Breath of Ice Palace - Ice Storm
 (18854, 6300, 1), -- Self-Destruction
 -- Archery Knight
-(18855, 4225, 4), -- Resist Stun Attacks
-(18855, 4285, 4), -- Resist Sleep Attacks
-(18855, 4287, 4), -- Resist Hold Attacks
-(18855, 4388, 4), -- Resist Paralysis Attacks
-(18855, 4389, 4), -- Resist Mental Attacks
-(18855, 4408, 1), -- HP Increase (1x)
-(18855, 4409, 1), -- MP Increase (1x)
-(18855, 4410, 14), -- Strong P. Atk.
-(18855, 4411, 16), -- Very Strong M. Atk.
-(18855, 4412, 11), -- Average P. Def.
-(18855, 4413, 11), -- Average M. Def.
-(18855, 4414, 2), -- Standard Type
-(18855, 4415, 3), -- One-handed Sword
-(18855, 4416, 6), -- Humanoids
+(18855, 4225, 4), -- Resist Shock
+(18855, 4285, 4), -- Resist Sleep
+(18855, 4287, 4), -- Resist Hold
+(18855, 4388, 4), -- Resist Paralysis
+(18855, 4389, 4), -- Resist Mental Derangement
+(18855, 4408, 1), -- HP Modifiers
+(18855, 4409, 1), -- MP Modifiers
+(18855, 4410, 14), -- P. Atk. Modifiers
+(18855, 4411, 16), -- M. Atk. Modifiers
+(18855, 4412, 11), -- P. Def. Modifiers
+(18855, 4413, 11), -- M. Def. Modifiers
+(18855, 4414, 2), -- Armor Type
+(18855, 4415, 3), -- Weapon Type
+(18855, 4416, 6), -- Races
 (18855, 5463, 1), -- Water Attacks
 (18855, 6290, 1), -- Power Strike
 (18855, 6291, 1), -- Power Strike
 (18855, 6292, 1), -- Rush
 -- Archery Knight
-(18856, 4071, 2), -- Resist Bow/Crossbow Weapons
-(18856, 4116, 2), -- Resist M. Atk.
-(18856, 4408, 1), -- HP Increase (1x)
-(18856, 4409, 1), -- MP Increase (1x)
-(18856, 4410, 17), -- Very Strong P. Atk.
-(18856, 4411, 16), -- Very Strong M. Atk.
-(18856, 4412, 11), -- Average P. Def.
-(18856, 4413, 11), -- Average M. Def.
-(18856, 4414, 2), -- Standard Type
-(18856, 4415, 3), -- One-handed Sword
-(18856, 4416, 6), -- Humanoids
+(18856, 4071, 2), -- Resist Archery
+(18856, 4116, 2), -- Resist M.Atk
+(18856, 4408, 1), -- HP Modifiers
+(18856, 4409, 1), -- MP Modifiers
+(18856, 4410, 17), -- P. Atk. Modifiers
+(18856, 4411, 16), -- M. Atk. Modifiers
+(18856, 4412, 11), -- P. Def. Modifiers
+(18856, 4413, 11), -- M. Def. Modifiers
+(18856, 4414, 2), -- Armor Type
+(18856, 4415, 3), -- Weapon Type
+(18856, 4416, 6), -- Races
 (18856, 4435, 1), -- Greater Resist Stun
 (18856, 4438, 1), -- Greater Resist Sleep
 (18856, 4439, 1), -- Greater Resist Hold
@@ -27098,167 +27098,167 @@ INSERT INTO `npcskills` VALUES
 (18856, 6292, 1), -- Rush
 -- 
 (18857, 4045, 1), -- Resist Full Magic Attack
-(18857, 4408, 1), -- HP Increase (1x)
-(18857, 4409, 1), -- MP Increase (1x)
-(18857, 4410, 11), -- Average P. Atk.
-(18857, 4411, 11), -- Average M. Atk.
-(18857, 4412, 11), -- Average P. Def.
-(18857, 4413, 11), -- Average M. Def.
-(18857, 4414, 2), -- Standard Type
-(18857, 4415, 3), -- One-handed Sword
-(18857, 4416, 2), -- Magic Creatures
+(18857, 4408, 1), -- HP Modifiers
+(18857, 4409, 1), -- MP Modifiers
+(18857, 4410, 11), -- P. Atk. Modifiers
+(18857, 4411, 11), -- M. Atk. Modifiers
+(18857, 4412, 11), -- P. Def. Modifiers
+(18857, 4413, 11), -- M. Def. Modifiers
+(18857, 4414, 2), -- Armor Type
+(18857, 4415, 3), -- Weapon Type
+(18857, 4416, 2), -- Races
 -- 
 (18858, 4045, 1), -- Resist Full Magic Attack
-(18858, 4408, 1), -- HP Increase (1x)
-(18858, 4409, 1), -- MP Increase (1x)
-(18858, 4410, 11), -- Average P. Atk.
-(18858, 4411, 11), -- Average M. Atk.
-(18858, 4412, 11), -- Average P. Def.
-(18858, 4413, 11), -- Average M. Def.
-(18858, 4414, 2), -- Standard Type
-(18858, 4415, 3), -- One-handed Sword
-(18858, 4416, 2), -- Magic Creatures
+(18858, 4408, 1), -- HP Modifiers
+(18858, 4409, 1), -- MP Modifiers
+(18858, 4410, 11), -- P. Atk. Modifiers
+(18858, 4411, 11), -- M. Atk. Modifiers
+(18858, 4412, 11), -- P. Def. Modifiers
+(18858, 4413, 11), -- M. Def. Modifiers
+(18858, 4414, 2), -- Armor Type
+(18858, 4415, 3), -- Weapon Type
+(18858, 4416, 2), -- Races
 -- 
 (18859, 4045, 1), -- Resist Full Magic Attack
-(18859, 4408, 1), -- HP Increase (1x)
-(18859, 4409, 1), -- MP Increase (1x)
-(18859, 4410, 11), -- Average P. Atk.
-(18859, 4411, 11), -- Average M. Atk.
-(18859, 4412, 11), -- Average P. Def.
-(18859, 4413, 11), -- Average M. Def.
-(18859, 4414, 2), -- Standard Type
-(18859, 4415, 3), -- One-handed Sword
-(18859, 4416, 2), -- Magic Creatures
+(18859, 4408, 1), -- HP Modifiers
+(18859, 4409, 1), -- MP Modifiers
+(18859, 4410, 11), -- P. Atk. Modifiers
+(18859, 4411, 11), -- M. Atk. Modifiers
+(18859, 4412, 11), -- P. Def. Modifiers
+(18859, 4413, 11), -- M. Def. Modifiers
+(18859, 4414, 2), -- Armor Type
+(18859, 4415, 3), -- Weapon Type
+(18859, 4416, 2), -- Races
 -- 
 (18860, 4045, 1), -- Resist Full Magic Attack
-(18860, 4408, 1), -- HP Increase (1x)
-(18860, 4409, 1), -- MP Increase (1x)
-(18860, 4410, 11), -- Average P. Atk.
-(18860, 4411, 11), -- Average M. Atk.
-(18860, 4412, 11), -- Average P. Def.
-(18860, 4413, 11), -- Average M. Def.
-(18860, 4414, 2), -- Standard Type
-(18860, 4415, 3), -- One-handed Sword
-(18860, 4416, 2), -- Magic Creatures
+(18860, 4408, 1), -- HP Modifiers
+(18860, 4409, 1), -- MP Modifiers
+(18860, 4410, 11), -- P. Atk. Modifiers
+(18860, 4411, 11), -- M. Atk. Modifiers
+(18860, 4412, 11), -- P. Def. Modifiers
+(18860, 4413, 11), -- M. Def. Modifiers
+(18860, 4414, 2), -- Armor Type
+(18860, 4415, 3), -- Weapon Type
+(18860, 4416, 2), -- Races
 -- 
 (18861, 4045, 1), -- Resist Full Magic Attack
-(18861, 4408, 1), -- HP Increase (1x)
-(18861, 4409, 1), -- MP Increase (1x)
-(18861, 4410, 11), -- Average P. Atk.
-(18861, 4411, 11), -- Average M. Atk.
-(18861, 4412, 11), -- Average P. Def.
-(18861, 4413, 11), -- Average M. Def.
-(18861, 4414, 2), -- Standard Type
-(18861, 4415, 3), -- One-handed Sword
-(18861, 4416, 2), -- Magic Creatures
+(18861, 4408, 1), -- HP Modifiers
+(18861, 4409, 1), -- MP Modifiers
+(18861, 4410, 11), -- P. Atk. Modifiers
+(18861, 4411, 11), -- M. Atk. Modifiers
+(18861, 4412, 11), -- P. Def. Modifiers
+(18861, 4413, 11), -- M. Def. Modifiers
+(18861, 4414, 2), -- Armor Type
+(18861, 4415, 3), -- Weapon Type
+(18861, 4416, 2), -- Races
 -- Tanta Lizardman Guard
-(18862, 4116, 9), -- Resist M. Atk.
-(18862, 4273, 4), -- Resist Daggers/Rapier Weapon
-(18862, 4276, 4), -- Weak Point against Bow/Crossbow Weapons
-(18862, 4408, 1), -- HP Increase (1x)
-(18862, 4409, 1), -- MP Increase (1x)
-(18862, 4410, 15), -- Strong P. Atk.
-(18862, 4411, 13), -- Slightly Strong M. Atk.
-(18862, 4412, 15), -- Strong P. Def.
-(18862, 4413, 16), -- Very Strong M. Def.
-(18862, 4414, 3), -- Light Armor Type
-(18862, 4415, 11), -- Spears
-(18862, 4416, 6), -- Humanoids
-(18862, 4424, 4), -- Resist fist Weapons
+(18862, 4116, 9), -- Resist M.Atk
+(18862, 4273, 4), -- Resist Dagger
+(18862, 4276, 4), -- Archery Attack Weak Point
+(18862, 4408, 1), -- HP Modifiers
+(18862, 4409, 1), -- MP Modifiers
+(18862, 4410, 15), -- P. Atk. Modifiers
+(18862, 4411, 13), -- M. Atk. Modifiers
+(18862, 4412, 15), -- P. Def. Modifiers
+(18862, 4413, 16), -- M. Def. Modifiers
+(18862, 4414, 3), -- Armor Type
+(18862, 4415, 11), -- Weapon Type
+(18862, 4416, 6), -- Races
+(18862, 4424, 4), -- Resist Hand-to-hand Weapons
 (18862, 4449, 4), -- Greater Resist Two-handed Weapons
 (18862, 5465, 1), -- Earth Attacks
 (18862, 5601, 9), -- Short-Range Physical Attack Resistance
 -- Priest Ugoros
-(18863, 4116, 9), -- Resist M. Atk.
-(18863, 4273, 4), -- Resist Daggers/Rapier Weapon
-(18863, 4276, 4), -- Weak Point against Bow/Crossbow Weapons
-(18863, 4408, 12), -- HP Increase (4x)
-(18863, 4409, 1), -- MP Increase (1x)
-(18863, 4410, 15), -- Strong P. Atk.
-(18863, 4411, 16), -- Very Strong M. Atk.
-(18863, 4412, 16), -- Very Strong P. Def.
-(18863, 4413, 19), -- Extremely Strong M. Def.
-(18863, 4414, 2), -- Standard Type
-(18863, 4415, 3), -- One-handed Sword
-(18863, 4416, 6), -- Humanoids
-(18863, 4424, 4), -- Resist fist Weapons
+(18863, 4116, 9), -- Resist M.Atk
+(18863, 4273, 4), -- Resist Dagger
+(18863, 4276, 4), -- Archery Attack Weak Point
+(18863, 4408, 12), -- HP Modifiers
+(18863, 4409, 1), -- MP Modifiers
+(18863, 4410, 15), -- P. Atk. Modifiers
+(18863, 4411, 16), -- M. Atk. Modifiers
+(18863, 4412, 16), -- P. Def. Modifiers
+(18863, 4413, 19), -- M. Def. Modifiers
+(18863, 4414, 2), -- Armor Type
+(18863, 4415, 3), -- Weapon Type
+(18863, 4416, 6), -- Races
+(18863, 4424, 4), -- Resist Hand-to-hand Weapons
 (18863, 4449, 4), -- Greater Resist Two-handed Weapons
 (18863, 5465, 1), -- Earth Attacks
 (18863, 5601, 9), -- Short-Range Physical Attack Resistance
 (18863, 6426, 1), -- Priest's Ire
 -- Fantasy Mushroom
-(18864, 4408, 8), -- HP Increase (1/4x)
-(18864, 4409, 1), -- MP Increase (1x)
-(18864, 4410, 11), -- Average P. Atk.
-(18864, 4411, 11), -- Average M. Atk.
-(18864, 4412, 3), -- Extremely Weak P. Def.
-(18864, 4413, 3), -- Extremely Weak M. Def.
-(18864, 4414, 2), -- Standard Type
-(18864, 4415, 3), -- One-handed Sword
-(18864, 4416, 2), -- Magic Creatures
+(18864, 4408, 8), -- HP Modifiers
+(18864, 4409, 1), -- MP Modifiers
+(18864, 4410, 11), -- P. Atk. Modifiers
+(18864, 4411, 11), -- M. Atk. Modifiers
+(18864, 4412, 3), -- P. Def. Modifiers
+(18864, 4413, 3), -- M. Def. Modifiers
+(18864, 4414, 2), -- Armor Type
+(18864, 4415, 3), -- Weapon Type
+(18864, 4416, 2), -- Races
 (18864, 5465, 1), -- Earth Attacks
 (18864, 6427, 1), -- Medicinal Mushroom 1
 (18864, 6622, 1), -- Shock
 -- Sticky Mushroom
-(18865, 4408, 8), -- HP Increase (1/4x)
-(18865, 4409, 1), -- MP Increase (1x)
-(18865, 4410, 11), -- Average P. Atk.
-(18865, 4411, 11), -- Average M. Atk.
-(18865, 4412, 3), -- Extremely Weak P. Def.
-(18865, 4413, 3), -- Extremely Weak M. Def.
-(18865, 4414, 2), -- Standard Type
-(18865, 4415, 3), -- One-handed Sword
-(18865, 4416, 2), -- Magic Creatures
+(18865, 4408, 8), -- HP Modifiers
+(18865, 4409, 1), -- MP Modifiers
+(18865, 4410, 11), -- P. Atk. Modifiers
+(18865, 4411, 11), -- M. Atk. Modifiers
+(18865, 4412, 3), -- P. Def. Modifiers
+(18865, 4413, 3), -- M. Def. Modifiers
+(18865, 4414, 2), -- Armor Type
+(18865, 4415, 3), -- Weapon Type
+(18865, 4416, 2), -- Races
 (18865, 5465, 1), -- Earth Attacks
 (18865, 6428, 1), -- Hold
 -- Rainbow Frog
-(18866, 4408, 8), -- HP Increase (1/4x)
-(18866, 4409, 1), -- MP Increase (1x)
-(18866, 4410, 11), -- Average P. Atk.
-(18866, 4411, 11), -- Average M. Atk.
-(18866, 4412, 3), -- Extremely Weak P. Def.
-(18866, 4413, 3), -- Extremely Weak M. Def.
-(18866, 4414, 2), -- Standard Type
-(18866, 4415, 3), -- One-handed Sword
-(18866, 4416, 4), -- Animals
+(18866, 4408, 8), -- HP Modifiers
+(18866, 4409, 1), -- MP Modifiers
+(18866, 4410, 11), -- P. Atk. Modifiers
+(18866, 4411, 11), -- M. Atk. Modifiers
+(18866, 4412, 3), -- P. Def. Modifiers
+(18866, 4413, 3), -- M. Def. Modifiers
+(18866, 4414, 2), -- Armor Type
+(18866, 4415, 3), -- Weapon Type
+(18866, 4416, 4), -- Races
 (18866, 5465, 1), -- Earth Attacks
 (18866, 6429, 1), -- Cozy Mucus
 -- Abyss Weed
-(18867, 4408, 8), -- HP Increase (1/4x)
-(18867, 4409, 1), -- MP Increase (1x)
-(18867, 4410, 11), -- Average P. Atk.
-(18867, 4411, 11), -- Average M. Atk.
-(18867, 4412, 3), -- Extremely Weak P. Def.
-(18867, 4413, 3), -- Extremely Weak M. Def.
-(18867, 4414, 2), -- Standard Type
-(18867, 4415, 3), -- One-handed Sword
-(18867, 4416, 2), -- Magic Creatures
+(18867, 4408, 8), -- HP Modifiers
+(18867, 4409, 1), -- MP Modifiers
+(18867, 4410, 11), -- P. Atk. Modifiers
+(18867, 4411, 11), -- M. Atk. Modifiers
+(18867, 4412, 3), -- P. Def. Modifiers
+(18867, 4413, 3), -- M. Def. Modifiers
+(18867, 4414, 2), -- Armor Type
+(18867, 4415, 3), -- Weapon Type
+(18867, 4416, 2), -- Races
 (18867, 5465, 1), -- Earth Attacks
 (18867, 6648, 1), -- Komodo Heal
 -- Energy Plant
-(18868, 4408, 8), -- HP Increase (1/4x)
-(18868, 4409, 1), -- MP Increase (1x)
-(18868, 4410, 11), -- Average P. Atk.
-(18868, 4411, 11), -- Average M. Atk.
-(18868, 4412, 3), -- Extremely Weak P. Def.
-(18868, 4413, 3), -- Extremely Weak M. Def.
-(18868, 4414, 2), -- Standard Type
-(18868, 4415, 3), -- One-handed Sword
-(18868, 4416, 2), -- Magic Creatures
+(18868, 4408, 8), -- HP Modifiers
+(18868, 4409, 1), -- MP Modifiers
+(18868, 4410, 11), -- P. Atk. Modifiers
+(18868, 4411, 11), -- M. Atk. Modifiers
+(18868, 4412, 3), -- P. Def. Modifiers
+(18868, 4413, 3), -- M. Def. Modifiers
+(18868, 4414, 2), -- Armor Type
+(18868, 4415, 3), -- Weapon Type
+(18868, 4416, 2), -- Races
 (18868, 5465, 1), -- Earth Attacks
 (18868, 6430, 1), -- Roar Hip Heal
 -- Kookaburra
-(18869, 4071, 3), -- Resist Bow/Crossbow Weapons
-(18869, 4116, 5), -- Resist M. Atk.
-(18869, 4408, 9), -- HP Increase (1/2x)
-(18869, 4409, 1), -- MP Increase (1x)
-(18869, 4410, 6), -- Very Weak P. Atk.
-(18869, 4411, 5), -- Very Weak M. Atk.
-(18869, 4412, 11), -- Average P. Def.
-(18869, 4413, 11), -- Average M. Def.
-(18869, 4414, 2), -- Standard Type
-(18869, 4415, 3), -- One-handed Sword
-(18869, 4416, 3), -- Beasts
+(18869, 4071, 3), -- Resist Archery
+(18869, 4116, 5), -- Resist M.Atk
+(18869, 4408, 9), -- HP Modifiers
+(18869, 4409, 1), -- MP Modifiers
+(18869, 4410, 6), -- P. Atk. Modifiers
+(18869, 4411, 5), -- M. Atk. Modifiers
+(18869, 4412, 11), -- P. Def. Modifiers
+(18869, 4413, 11), -- M. Def. Modifiers
+(18869, 4414, 2), -- Armor Type
+(18869, 4415, 3), -- Weapon Type
+(18869, 4416, 3), -- Races
 (18869, 5463, 1), -- Water Attacks
 (18869, 5620, 2), -- Short-Range Physical Attack Weakness
 (18869, 6431, 1), -- Feral Might
@@ -27273,17 +27273,17 @@ INSERT INTO `npcskills` VALUES
 (18869, 6671, 1), -- Feral Berserker Spirit
 (18869, 6672, 1), -- Feral Bless Shield
 -- Cougar
-(18870, 4071, 3), -- Resist Bow/Crossbow Weapons
-(18870, 4116, 5), -- Resist M. Atk.
-(18870, 4408, 9), -- HP Increase (1/2x)
-(18870, 4409, 1), -- MP Increase (1x)
-(18870, 4410, 6), -- Very Weak P. Atk.
-(18870, 4411, 5), -- Very Weak M. Atk.
-(18870, 4412, 11), -- Average P. Def.
-(18870, 4413, 11), -- Average M. Def.
-(18870, 4414, 2), -- Standard Type
-(18870, 4415, 5), -- Blunt Weapons
-(18870, 4416, 3), -- Beasts
+(18870, 4071, 3), -- Resist Archery
+(18870, 4116, 5), -- Resist M.Atk
+(18870, 4408, 9), -- HP Modifiers
+(18870, 4409, 1), -- MP Modifiers
+(18870, 4410, 6), -- P. Atk. Modifiers
+(18870, 4411, 5), -- M. Atk. Modifiers
+(18870, 4412, 11), -- P. Def. Modifiers
+(18870, 4413, 11), -- M. Def. Modifiers
+(18870, 4414, 2), -- Armor Type
+(18870, 4415, 5), -- Weapon Type
+(18870, 4416, 3), -- Races
 (18870, 5463, 1), -- Water Attacks
 (18870, 5620, 2), -- Short-Range Physical Attack Weakness
 (18870, 6431, 1), -- Feral Might
@@ -27298,17 +27298,17 @@ INSERT INTO `npcskills` VALUES
 (18870, 6671, 1), -- Feral Berserker Spirit
 (18870, 6672, 1), -- Feral Bless Shield
 -- Buffalo
-(18871, 4071, 3), -- Resist Bow/Crossbow Weapons
-(18871, 4116, 5), -- Resist M. Atk.
-(18871, 4408, 9), -- HP Increase (1/2x)
-(18871, 4409, 1), -- MP Increase (1x)
-(18871, 4410, 6), -- Very Weak P. Atk.
-(18871, 4411, 5), -- Very Weak M. Atk.
-(18871, 4412, 11), -- Average P. Def.
-(18871, 4413, 11), -- Average M. Def.
-(18871, 4414, 2), -- Standard Type
-(18871, 4415, 3), -- One-handed Sword
-(18871, 4416, 3), -- Beasts
+(18871, 4071, 3), -- Resist Archery
+(18871, 4116, 5), -- Resist M.Atk
+(18871, 4408, 9), -- HP Modifiers
+(18871, 4409, 1), -- MP Modifiers
+(18871, 4410, 6), -- P. Atk. Modifiers
+(18871, 4411, 5), -- M. Atk. Modifiers
+(18871, 4412, 11), -- P. Def. Modifiers
+(18871, 4413, 11), -- M. Def. Modifiers
+(18871, 4414, 2), -- Armor Type
+(18871, 4415, 3), -- Weapon Type
+(18871, 4416, 3), -- Races
 (18871, 5463, 1), -- Water Attacks
 (18871, 5620, 2), -- Short-Range Physical Attack Weakness
 (18871, 6431, 1), -- Feral Might
@@ -27323,17 +27323,17 @@ INSERT INTO `npcskills` VALUES
 (18871, 6671, 1), -- Feral Berserker Spirit
 (18871, 6672, 1), -- Feral Bless Shield
 -- Grendel
-(18872, 4071, 3), -- Resist Bow/Crossbow Weapons
-(18872, 4116, 5), -- Resist M. Atk.
-(18872, 4408, 9), -- HP Increase (1/2x)
-(18872, 4409, 1), -- MP Increase (1x)
-(18872, 4410, 6), -- Very Weak P. Atk.
-(18872, 4411, 5), -- Very Weak M. Atk.
-(18872, 4412, 11), -- Average P. Def.
-(18872, 4413, 11), -- Average M. Def.
-(18872, 4414, 2), -- Standard Type
-(18872, 4415, 3), -- One-handed Sword
-(18872, 4416, 4), -- Animals
+(18872, 4071, 3), -- Resist Archery
+(18872, 4116, 5), -- Resist M.Atk
+(18872, 4408, 9), -- HP Modifiers
+(18872, 4409, 1), -- MP Modifiers
+(18872, 4410, 6), -- P. Atk. Modifiers
+(18872, 4411, 5), -- M. Atk. Modifiers
+(18872, 4412, 11), -- P. Def. Modifiers
+(18872, 4413, 11), -- M. Def. Modifiers
+(18872, 4414, 2), -- Armor Type
+(18872, 4415, 3), -- Weapon Type
+(18872, 4416, 4), -- Races
 (18872, 5463, 1), -- Water Attacks
 (18872, 5620, 2), -- Short-Range Physical Attack Weakness
 (18872, 6431, 1), -- Feral Might
@@ -27348,23748 +27348,23748 @@ INSERT INTO `npcskills` VALUES
 (18872, 6671, 1), -- Feral Berserker Spirit
 (18872, 6672, 1), -- Feral Bless Shield
 -- Baby Alpine Kookaburra
-(18873, 4071, 3), -- Resist Bow/Crossbow Weapons
-(18873, 4116, 5), -- Resist M. Atk.
-(18873, 4379, 5), -- Resist Spear Weapons
-(18873, 4408, 1), -- HP Increase (1x)
-(18873, 4409, 1), -- MP Increase (1x)
-(18873, 4410, 13), -- Slightly Strong P. Atk.
-(18873, 4411, 11), -- Average M. Atk.
-(18873, 4412, 11), -- Average P. Def.
-(18873, 4413, 14), -- Strong M. Def.
-(18873, 4414, 2), -- Standard Type
-(18873, 4415, 3), -- One-handed Sword
-(18873, 4416, 3), -- Beasts
+(18873, 4071, 3), -- Resist Archery
+(18873, 4116, 5), -- Resist M.Atk
+(18873, 4379, 5), -- Resist Pole Arm
+(18873, 4408, 1), -- HP Modifiers
+(18873, 4409, 1), -- MP Modifiers
+(18873, 4410, 13), -- P. Atk. Modifiers
+(18873, 4411, 11), -- M. Atk. Modifiers
+(18873, 4412, 11), -- P. Def. Modifiers
+(18873, 4413, 14), -- M. Def. Modifiers
+(18873, 4414, 2), -- Armor Type
+(18873, 4415, 3), -- Weapon Type
+(18873, 4416, 3), -- Races
 (18873, 5463, 1), -- Water Attacks
 (18873, 5620, 2), -- Short-Range Physical Attack Weakness
 -- Young Kookaburra
-(18874, 4071, 3), -- Resist Bow/Crossbow Weapons
-(18874, 4074, 1), -- Haste
-(18874, 4116, 5), -- Resist M. Atk.
-(18874, 4379, 5), -- Resist Spear Weapons
-(18874, 4408, 10), -- HP Increase (2x)
-(18874, 4409, 1), -- MP Increase (1x)
-(18874, 4410, 14), -- Strong P. Atk.
-(18874, 4411, 13), -- Slightly Strong M. Atk.
-(18874, 4412, 12), -- Slightly Strong P. Def.
-(18874, 4413, 16), -- Very Strong M. Def.
-(18874, 4414, 2), -- Standard Type
-(18874, 4415, 3), -- One-handed Sword
-(18874, 4416, 3), -- Beasts
+(18874, 4071, 3), -- Resist Archery
+(18874, 4074, 1), -- NPC Haste
+(18874, 4116, 5), -- Resist M.Atk
+(18874, 4379, 5), -- Resist Pole Arm
+(18874, 4408, 10), -- HP Modifiers
+(18874, 4409, 1), -- MP Modifiers
+(18874, 4410, 14), -- P. Atk. Modifiers
+(18874, 4411, 13), -- M. Atk. Modifiers
+(18874, 4412, 12), -- P. Def. Modifiers
+(18874, 4413, 16), -- M. Def. Modifiers
+(18874, 4414, 2), -- Armor Type
+(18874, 4415, 3), -- Weapon Type
+(18874, 4416, 3), -- Races
 (18874, 5463, 1), -- Water Attacks
 (18874, 5620, 2), -- Short-Range Physical Attack Weakness
-(18874, 6556, 16), -- Water Attack
+(18874, 6556, 16), -- NPC water attack
 -- Young Kookaburra
-(18875, 4071, 3), -- Resist Bow/Crossbow Weapons
-(18875, 4074, 1), -- Haste
-(18875, 4116, 5), -- Resist M. Atk.
-(18875, 4379, 5), -- Resist Spear Weapons
-(18875, 4408, 10), -- HP Increase (2x)
-(18875, 4409, 1), -- MP Increase (1x)
-(18875, 4410, 14), -- Strong P. Atk.
-(18875, 4411, 13), -- Slightly Strong M. Atk.
-(18875, 4412, 12), -- Slightly Strong P. Def.
-(18875, 4413, 16), -- Very Strong M. Def.
-(18875, 4414, 2), -- Standard Type
-(18875, 4415, 3), -- One-handed Sword
-(18875, 4416, 3), -- Beasts
+(18875, 4071, 3), -- Resist Archery
+(18875, 4074, 1), -- NPC Haste
+(18875, 4116, 5), -- Resist M.Atk
+(18875, 4379, 5), -- Resist Pole Arm
+(18875, 4408, 10), -- HP Modifiers
+(18875, 4409, 1), -- MP Modifiers
+(18875, 4410, 14), -- P. Atk. Modifiers
+(18875, 4411, 13), -- M. Atk. Modifiers
+(18875, 4412, 12), -- P. Def. Modifiers
+(18875, 4413, 16), -- M. Def. Modifiers
+(18875, 4414, 2), -- Armor Type
+(18875, 4415, 3), -- Weapon Type
+(18875, 4416, 3), -- Races
 (18875, 5463, 1), -- Water Attacks
 (18875, 5620, 2), -- Short-Range Physical Attack Weakness
-(18875, 6556, 16), -- Water Attack
+(18875, 6556, 16), -- NPC water attack
 -- Adult Kookaburra
-(18876, 4071, 3), -- Resist Bow/Crossbow Weapons
-(18876, 4074, 1), -- Haste
-(18876, 4116, 5), -- Resist M. Atk.
-(18876, 4379, 5), -- Resist Spear Weapons
-(18876, 4408, 11), -- HP Increase (3x)
-(18876, 4409, 1), -- MP Increase (1x)
-(18876, 4410, 15), -- Strong P. Atk.
-(18876, 4411, 14), -- Strong M. Atk.
-(18876, 4412, 14), -- Strong P. Def.
-(18876, 4413, 18), -- Extremely Strong M. Def.
-(18876, 4414, 2), -- Standard Type
-(18876, 4415, 3), -- One-handed Sword
-(18876, 4416, 3), -- Beasts
+(18876, 4071, 3), -- Resist Archery
+(18876, 4074, 1), -- NPC Haste
+(18876, 4116, 5), -- Resist M.Atk
+(18876, 4379, 5), -- Resist Pole Arm
+(18876, 4408, 11), -- HP Modifiers
+(18876, 4409, 1), -- MP Modifiers
+(18876, 4410, 15), -- P. Atk. Modifiers
+(18876, 4411, 14), -- M. Atk. Modifiers
+(18876, 4412, 14), -- P. Def. Modifiers
+(18876, 4413, 18), -- M. Def. Modifiers
+(18876, 4414, 2), -- Armor Type
+(18876, 4415, 3), -- Weapon Type
+(18876, 4416, 3), -- Races
 (18876, 5463, 1), -- Water Attacks
 (18876, 5620, 7), -- Short-Range Physical Attack Weakness
-(18876, 6556, 16), -- Water Attack
+(18876, 6556, 16), -- NPC water attack
 -- Adult Kookaburra
-(18877, 4071, 3), -- Resist Bow/Crossbow Weapons
-(18877, 4074, 1), -- Haste
-(18877, 4116, 5), -- Resist M. Atk.
-(18877, 4379, 5), -- Resist Spear Weapons
-(18877, 4408, 11), -- HP Increase (3x)
-(18877, 4409, 1), -- MP Increase (1x)
-(18877, 4410, 15), -- Strong P. Atk.
-(18877, 4411, 14), -- Strong M. Atk.
-(18877, 4412, 14), -- Strong P. Def.
-(18877, 4413, 18), -- Extremely Strong M. Def.
-(18877, 4414, 2), -- Standard Type
-(18877, 4415, 3), -- One-handed Sword
-(18877, 4416, 3), -- Beasts
+(18877, 4071, 3), -- Resist Archery
+(18877, 4074, 1), -- NPC Haste
+(18877, 4116, 5), -- Resist M.Atk
+(18877, 4379, 5), -- Resist Pole Arm
+(18877, 4408, 11), -- HP Modifiers
+(18877, 4409, 1), -- MP Modifiers
+(18877, 4410, 15), -- P. Atk. Modifiers
+(18877, 4411, 14), -- M. Atk. Modifiers
+(18877, 4412, 14), -- P. Def. Modifiers
+(18877, 4413, 18), -- M. Def. Modifiers
+(18877, 4414, 2), -- Armor Type
+(18877, 4415, 3), -- Weapon Type
+(18877, 4416, 3), -- Races
 (18877, 5463, 1), -- Water Attacks
 (18877, 5620, 7), -- Short-Range Physical Attack Weakness
-(18877, 6556, 16), -- Water Attack
+(18877, 6556, 16), -- NPC water attack
 -- Full Grown Kookaburra
-(18878, 4071, 3), -- Resist Bow/Crossbow Weapons
-(18878, 4074, 1), -- Haste
-(18878, 4116, 5), -- Resist M. Atk.
-(18878, 4379, 5), -- Resist Spear Weapons
-(18878, 4408, 11), -- HP Increase (3x)
-(18878, 4409, 1), -- MP Increase (1x)
-(18878, 4410, 16), -- Very Strong P. Atk.
-(18878, 4411, 16), -- Very Strong M. Atk.
-(18878, 4412, 15), -- Strong P. Def.
-(18878, 4413, 18), -- Extremely Strong M. Def.
-(18878, 4414, 2), -- Standard Type
-(18878, 4415, 3), -- One-handed Sword
-(18878, 4416, 3), -- Beasts
+(18878, 4071, 3), -- Resist Archery
+(18878, 4074, 1), -- NPC Haste
+(18878, 4116, 5), -- Resist M.Atk
+(18878, 4379, 5), -- Resist Pole Arm
+(18878, 4408, 11), -- HP Modifiers
+(18878, 4409, 1), -- MP Modifiers
+(18878, 4410, 16), -- P. Atk. Modifiers
+(18878, 4411, 16), -- M. Atk. Modifiers
+(18878, 4412, 15), -- P. Def. Modifiers
+(18878, 4413, 18), -- M. Def. Modifiers
+(18878, 4414, 2), -- Armor Type
+(18878, 4415, 3), -- Weapon Type
+(18878, 4416, 3), -- Races
 (18878, 4592, 10), -- Decrease P. Def.
 (18878, 5463, 1), -- Water Attacks
 (18878, 5620, 7), -- Short-Range Physical Attack Weakness
-(18878, 6556, 16), -- Water Attack
+(18878, 6556, 16), -- NPC water attack
 -- Full Grown Kookaburra
-(18879, 4071, 3), -- Resist Bow/Crossbow Weapons
-(18879, 4074, 1), -- Haste
-(18879, 4116, 5), -- Resist M. Atk.
-(18879, 4379, 5), -- Resist Spear Weapons
-(18879, 4408, 11), -- HP Increase (3x)
-(18879, 4409, 1), -- MP Increase (1x)
-(18879, 4410, 16), -- Very Strong P. Atk.
-(18879, 4411, 15), -- Strong M. Atk.
-(18879, 4412, 16), -- Very Strong P. Def.
-(18879, 4413, 18), -- Extremely Strong M. Def.
-(18879, 4414, 2), -- Standard Type
-(18879, 4415, 3), -- One-handed Sword
-(18879, 4416, 3), -- Beasts
+(18879, 4071, 3), -- Resist Archery
+(18879, 4074, 1), -- NPC Haste
+(18879, 4116, 5), -- Resist M.Atk
+(18879, 4379, 5), -- Resist Pole Arm
+(18879, 4408, 11), -- HP Modifiers
+(18879, 4409, 1), -- MP Modifiers
+(18879, 4410, 16), -- P. Atk. Modifiers
+(18879, 4411, 15), -- M. Atk. Modifiers
+(18879, 4412, 16), -- P. Def. Modifiers
+(18879, 4413, 18), -- M. Def. Modifiers
+(18879, 4414, 2), -- Armor Type
+(18879, 4415, 3), -- Weapon Type
+(18879, 4416, 3), -- Races
 (18879, 4592, 10), -- Decrease P. Def.
 (18879, 5463, 1), -- Water Attacks
 (18879, 5620, 7), -- Short-Range Physical Attack Weakness
-(18879, 6556, 16), -- Water Attack
+(18879, 6556, 16), -- NPC water attack
 -- Baby Alpine Cougar
-(18880, 4071, 3), -- Resist Bow/Crossbow Weapons
-(18880, 4116, 5), -- Resist M. Atk.
-(18880, 4379, 5), -- Resist Spear Weapons
-(18880, 4408, 1), -- HP Increase (1x)
-(18880, 4409, 1), -- MP Increase (1x)
-(18880, 4410, 13), -- Slightly Strong P. Atk.
-(18880, 4411, 11), -- Average M. Atk.
-(18880, 4412, 11), -- Average P. Def.
-(18880, 4413, 14), -- Strong M. Def.
-(18880, 4414, 2), -- Standard Type
-(18880, 4415, 5), -- Blunt Weapons
-(18880, 4416, 3), -- Beasts
+(18880, 4071, 3), -- Resist Archery
+(18880, 4116, 5), -- Resist M.Atk
+(18880, 4379, 5), -- Resist Pole Arm
+(18880, 4408, 1), -- HP Modifiers
+(18880, 4409, 1), -- MP Modifiers
+(18880, 4410, 13), -- P. Atk. Modifiers
+(18880, 4411, 11), -- M. Atk. Modifiers
+(18880, 4412, 11), -- P. Def. Modifiers
+(18880, 4413, 14), -- M. Def. Modifiers
+(18880, 4414, 2), -- Armor Type
+(18880, 4415, 5), -- Weapon Type
+(18880, 4416, 3), -- Races
 (18880, 5463, 1), -- Water Attacks
 (18880, 5620, 2), -- Short-Range Physical Attack Weakness
 -- Young Cougar
-(18881, 4071, 3), -- Resist Bow/Crossbow Weapons
-(18881, 4074, 1), -- Haste
-(18881, 4116, 5), -- Resist M. Atk.
-(18881, 4379, 5), -- Resist Spear Weapons
-(18881, 4408, 10), -- HP Increase (2x)
-(18881, 4409, 1), -- MP Increase (1x)
-(18881, 4410, 14), -- Strong P. Atk.
-(18881, 4411, 13), -- Slightly Strong M. Atk.
-(18881, 4412, 12), -- Slightly Strong P. Def.
-(18881, 4413, 16), -- Very Strong M. Def.
-(18881, 4414, 2), -- Standard Type
-(18881, 4415, 5), -- Blunt Weapons
-(18881, 4416, 3), -- Beasts
+(18881, 4071, 3), -- Resist Archery
+(18881, 4074, 1), -- NPC Haste
+(18881, 4116, 5), -- Resist M.Atk
+(18881, 4379, 5), -- Resist Pole Arm
+(18881, 4408, 10), -- HP Modifiers
+(18881, 4409, 1), -- MP Modifiers
+(18881, 4410, 14), -- P. Atk. Modifiers
+(18881, 4411, 13), -- M. Atk. Modifiers
+(18881, 4412, 12), -- P. Def. Modifiers
+(18881, 4413, 16), -- M. Def. Modifiers
+(18881, 4414, 2), -- Armor Type
+(18881, 4415, 5), -- Weapon Type
+(18881, 4416, 3), -- Races
 (18881, 5463, 1), -- Water Attacks
 (18881, 5620, 2), -- Short-Range Physical Attack Weakness
-(18881, 6556, 16), -- Water Attack
+(18881, 6556, 16), -- NPC water attack
 -- Young Cougar
-(18882, 4071, 3), -- Resist Bow/Crossbow Weapons
-(18882, 4074, 1), -- Haste
-(18882, 4116, 5), -- Resist M. Atk.
-(18882, 4379, 5), -- Resist Spear Weapons
-(18882, 4408, 10), -- HP Increase (2x)
-(18882, 4409, 1), -- MP Increase (1x)
-(18882, 4410, 14), -- Strong P. Atk.
-(18882, 4411, 13), -- Slightly Strong M. Atk.
-(18882, 4412, 12), -- Slightly Strong P. Def.
-(18882, 4413, 16), -- Very Strong M. Def.
-(18882, 4414, 2), -- Standard Type
-(18882, 4415, 5), -- Blunt Weapons
-(18882, 4416, 3), -- Beasts
+(18882, 4071, 3), -- Resist Archery
+(18882, 4074, 1), -- NPC Haste
+(18882, 4116, 5), -- Resist M.Atk
+(18882, 4379, 5), -- Resist Pole Arm
+(18882, 4408, 10), -- HP Modifiers
+(18882, 4409, 1), -- MP Modifiers
+(18882, 4410, 14), -- P. Atk. Modifiers
+(18882, 4411, 13), -- M. Atk. Modifiers
+(18882, 4412, 12), -- P. Def. Modifiers
+(18882, 4413, 16), -- M. Def. Modifiers
+(18882, 4414, 2), -- Armor Type
+(18882, 4415, 5), -- Weapon Type
+(18882, 4416, 3), -- Races
 (18882, 5463, 1), -- Water Attacks
 (18882, 5620, 2), -- Short-Range Physical Attack Weakness
-(18882, 6556, 16), -- Water Attack
+(18882, 6556, 16), -- NPC water attack
 -- Adult Cougar
-(18883, 4071, 3), -- Resist Bow/Crossbow Weapons
-(18883, 4074, 1), -- Haste
-(18883, 4116, 5), -- Resist M. Atk.
-(18883, 4379, 5), -- Resist Spear Weapons
-(18883, 4408, 11), -- HP Increase (3x)
-(18883, 4409, 1), -- MP Increase (1x)
-(18883, 4410, 15), -- Strong P. Atk.
-(18883, 4411, 14), -- Strong M. Atk.
-(18883, 4412, 14), -- Strong P. Def.
-(18883, 4413, 18), -- Extremely Strong M. Def.
-(18883, 4414, 2), -- Standard Type
-(18883, 4415, 5), -- Blunt Weapons
-(18883, 4416, 3), -- Beasts
+(18883, 4071, 3), -- Resist Archery
+(18883, 4074, 1), -- NPC Haste
+(18883, 4116, 5), -- Resist M.Atk
+(18883, 4379, 5), -- Resist Pole Arm
+(18883, 4408, 11), -- HP Modifiers
+(18883, 4409, 1), -- MP Modifiers
+(18883, 4410, 15), -- P. Atk. Modifiers
+(18883, 4411, 14), -- M. Atk. Modifiers
+(18883, 4412, 14), -- P. Def. Modifiers
+(18883, 4413, 18), -- M. Def. Modifiers
+(18883, 4414, 2), -- Armor Type
+(18883, 4415, 5), -- Weapon Type
+(18883, 4416, 3), -- Races
 (18883, 5463, 1), -- Water Attacks
 (18883, 5620, 7), -- Short-Range Physical Attack Weakness
-(18883, 6556, 16), -- Water Attack
+(18883, 6556, 16), -- NPC water attack
 -- Adult Cougar
-(18884, 4071, 3), -- Resist Bow/Crossbow Weapons
-(18884, 4074, 1), -- Haste
-(18884, 4116, 5), -- Resist M. Atk.
-(18884, 4379, 5), -- Resist Spear Weapons
-(18884, 4408, 11), -- HP Increase (3x)
-(18884, 4409, 1), -- MP Increase (1x)
-(18884, 4410, 15), -- Strong P. Atk.
-(18884, 4411, 14), -- Strong M. Atk.
-(18884, 4412, 14), -- Strong P. Def.
-(18884, 4413, 18), -- Extremely Strong M. Def.
-(18884, 4414, 2), -- Standard Type
-(18884, 4415, 5), -- Blunt Weapons
-(18884, 4416, 3), -- Beasts
+(18884, 4071, 3), -- Resist Archery
+(18884, 4074, 1), -- NPC Haste
+(18884, 4116, 5), -- Resist M.Atk
+(18884, 4379, 5), -- Resist Pole Arm
+(18884, 4408, 11), -- HP Modifiers
+(18884, 4409, 1), -- MP Modifiers
+(18884, 4410, 15), -- P. Atk. Modifiers
+(18884, 4411, 14), -- M. Atk. Modifiers
+(18884, 4412, 14), -- P. Def. Modifiers
+(18884, 4413, 18), -- M. Def. Modifiers
+(18884, 4414, 2), -- Armor Type
+(18884, 4415, 5), -- Weapon Type
+(18884, 4416, 3), -- Races
 (18884, 5463, 1), -- Water Attacks
 (18884, 5620, 7), -- Short-Range Physical Attack Weakness
-(18884, 6556, 16), -- Water Attack
+(18884, 6556, 16), -- NPC water attack
 -- Full Grown Cougar
-(18885, 4071, 3), -- Resist Bow/Crossbow Weapons
-(18885, 4074, 1), -- Haste
-(18885, 4116, 5), -- Resist M. Atk.
-(18885, 4379, 5), -- Resist Spear Weapons
-(18885, 4408, 11), -- HP Increase (3x)
-(18885, 4409, 1), -- MP Increase (1x)
-(18885, 4410, 16), -- Very Strong P. Atk.
-(18885, 4411, 16), -- Very Strong M. Atk.
-(18885, 4412, 15), -- Strong P. Def.
-(18885, 4413, 18), -- Extremely Strong M. Def.
-(18885, 4414, 2), -- Standard Type
-(18885, 4415, 5), -- Blunt Weapons
-(18885, 4416, 3), -- Beasts
+(18885, 4071, 3), -- Resist Archery
+(18885, 4074, 1), -- NPC Haste
+(18885, 4116, 5), -- Resist M.Atk
+(18885, 4379, 5), -- Resist Pole Arm
+(18885, 4408, 11), -- HP Modifiers
+(18885, 4409, 1), -- MP Modifiers
+(18885, 4410, 16), -- P. Atk. Modifiers
+(18885, 4411, 16), -- M. Atk. Modifiers
+(18885, 4412, 15), -- P. Def. Modifiers
+(18885, 4413, 18), -- M. Def. Modifiers
+(18885, 4414, 2), -- Armor Type
+(18885, 4415, 5), -- Weapon Type
+(18885, 4416, 3), -- Races
 (18885, 4592, 10), -- Decrease P. Def.
 (18885, 5463, 1), -- Water Attacks
 (18885, 5620, 7), -- Short-Range Physical Attack Weakness
-(18885, 6556, 16), -- Water Attack
+(18885, 6556, 16), -- NPC water attack
 -- Full Grown Cougar
-(18886, 4071, 3), -- Resist Bow/Crossbow Weapons
-(18886, 4074, 1), -- Haste
-(18886, 4116, 5), -- Resist M. Atk.
-(18886, 4379, 5), -- Resist Spear Weapons
-(18886, 4408, 11), -- HP Increase (3x)
-(18886, 4409, 1), -- MP Increase (1x)
-(18886, 4410, 16), -- Very Strong P. Atk.
-(18886, 4411, 15), -- Strong M. Atk.
-(18886, 4412, 16), -- Very Strong P. Def.
-(18886, 4413, 18), -- Extremely Strong M. Def.
-(18886, 4414, 2), -- Standard Type
-(18886, 4415, 5), -- Blunt Weapons
-(18886, 4416, 3), -- Beasts
+(18886, 4071, 3), -- Resist Archery
+(18886, 4074, 1), -- NPC Haste
+(18886, 4116, 5), -- Resist M.Atk
+(18886, 4379, 5), -- Resist Pole Arm
+(18886, 4408, 11), -- HP Modifiers
+(18886, 4409, 1), -- MP Modifiers
+(18886, 4410, 16), -- P. Atk. Modifiers
+(18886, 4411, 15), -- M. Atk. Modifiers
+(18886, 4412, 16), -- P. Def. Modifiers
+(18886, 4413, 18), -- M. Def. Modifiers
+(18886, 4414, 2), -- Armor Type
+(18886, 4415, 5), -- Weapon Type
+(18886, 4416, 3), -- Races
 (18886, 4592, 10), -- Decrease P. Def.
 (18886, 5463, 1), -- Water Attacks
 (18886, 5620, 7), -- Short-Range Physical Attack Weakness
-(18886, 6556, 16), -- Water Attack
+(18886, 6556, 16), -- NPC water attack
 -- Baby Alpine Buffalo
-(18887, 4071, 3), -- Resist Bow/Crossbow Weapons
-(18887, 4116, 5), -- Resist M. Atk.
-(18887, 4379, 5), -- Resist Spear Weapons
-(18887, 4408, 1), -- HP Increase (1x)
-(18887, 4409, 1), -- MP Increase (1x)
-(18887, 4410, 13), -- Slightly Strong P. Atk.
-(18887, 4411, 11), -- Average M. Atk.
-(18887, 4412, 11), -- Average P. Def.
-(18887, 4413, 14), -- Strong M. Def.
-(18887, 4414, 2), -- Standard Type
-(18887, 4415, 3), -- One-handed Sword
-(18887, 4416, 3), -- Beasts
+(18887, 4071, 3), -- Resist Archery
+(18887, 4116, 5), -- Resist M.Atk
+(18887, 4379, 5), -- Resist Pole Arm
+(18887, 4408, 1), -- HP Modifiers
+(18887, 4409, 1), -- MP Modifiers
+(18887, 4410, 13), -- P. Atk. Modifiers
+(18887, 4411, 11), -- M. Atk. Modifiers
+(18887, 4412, 11), -- P. Def. Modifiers
+(18887, 4413, 14), -- M. Def. Modifiers
+(18887, 4414, 2), -- Armor Type
+(18887, 4415, 3), -- Weapon Type
+(18887, 4416, 3), -- Races
 (18887, 5463, 1), -- Water Attacks
 (18887, 5620, 2), -- Short-Range Physical Attack Weakness
 -- Young Buffalo
-(18888, 4028, 2), -- Might
-(18888, 4071, 3), -- Resist Bow/Crossbow Weapons
-(18888, 4116, 5), -- Resist M. Atk.
-(18888, 4379, 5), -- Resist Spear Weapons
-(18888, 4408, 10), -- HP Increase (2x)
-(18888, 4409, 1), -- MP Increase (1x)
-(18888, 4410, 14), -- Strong P. Atk.
-(18888, 4411, 13), -- Slightly Strong M. Atk.
-(18888, 4412, 12), -- Slightly Strong P. Def.
-(18888, 4413, 16), -- Very Strong M. Def.
-(18888, 4414, 2), -- Standard Type
-(18888, 4415, 3), -- One-handed Sword
-(18888, 4416, 3), -- Beasts
+(18888, 4028, 2), -- NPC Might
+(18888, 4071, 3), -- Resist Archery
+(18888, 4116, 5), -- Resist M.Atk
+(18888, 4379, 5), -- Resist Pole Arm
+(18888, 4408, 10), -- HP Modifiers
+(18888, 4409, 1), -- MP Modifiers
+(18888, 4410, 14), -- P. Atk. Modifiers
+(18888, 4411, 13), -- M. Atk. Modifiers
+(18888, 4412, 12), -- P. Def. Modifiers
+(18888, 4413, 16), -- M. Def. Modifiers
+(18888, 4414, 2), -- Armor Type
+(18888, 4415, 3), -- Weapon Type
+(18888, 4416, 3), -- Races
 (18888, 5463, 1), -- Water Attacks
 (18888, 5620, 2), -- Short-Range Physical Attack Weakness
-(18888, 6556, 17), -- Water Attack
+(18888, 6556, 17), -- NPC water attack
 -- Young Buffalo
-(18889, 4028, 2), -- Might
-(18889, 4071, 3), -- Resist Bow/Crossbow Weapons
-(18889, 4116, 5), -- Resist M. Atk.
-(18889, 4379, 5), -- Resist Spear Weapons
-(18889, 4408, 10), -- HP Increase (2x)
-(18889, 4409, 1), -- MP Increase (1x)
-(18889, 4410, 14), -- Strong P. Atk.
-(18889, 4411, 13), -- Slightly Strong M. Atk.
-(18889, 4412, 12), -- Slightly Strong P. Def.
-(18889, 4413, 16), -- Very Strong M. Def.
-(18889, 4414, 2), -- Standard Type
-(18889, 4415, 3), -- One-handed Sword
-(18889, 4416, 3), -- Beasts
+(18889, 4028, 2), -- NPC Might
+(18889, 4071, 3), -- Resist Archery
+(18889, 4116, 5), -- Resist M.Atk
+(18889, 4379, 5), -- Resist Pole Arm
+(18889, 4408, 10), -- HP Modifiers
+(18889, 4409, 1), -- MP Modifiers
+(18889, 4410, 14), -- P. Atk. Modifiers
+(18889, 4411, 13), -- M. Atk. Modifiers
+(18889, 4412, 12), -- P. Def. Modifiers
+(18889, 4413, 16), -- M. Def. Modifiers
+(18889, 4414, 2), -- Armor Type
+(18889, 4415, 3), -- Weapon Type
+(18889, 4416, 3), -- Races
 (18889, 5463, 1), -- Water Attacks
 (18889, 5620, 2), -- Short-Range Physical Attack Weakness
-(18889, 6556, 17), -- Water Attack
+(18889, 6556, 17), -- NPC water attack
 -- Adult Buffalo
-(18890, 4028, 2), -- Might
-(18890, 4071, 3), -- Resist Bow/Crossbow Weapons
-(18890, 4116, 5), -- Resist M. Atk.
-(18890, 4379, 5), -- Resist Spear Weapons
-(18890, 4408, 11), -- HP Increase (3x)
-(18890, 4409, 1), -- MP Increase (1x)
-(18890, 4410, 15), -- Strong P. Atk.
-(18890, 4411, 14), -- Strong M. Atk.
-(18890, 4412, 14), -- Strong P. Def.
-(18890, 4413, 18), -- Extremely Strong M. Def.
-(18890, 4414, 2), -- Standard Type
-(18890, 4415, 3), -- One-handed Sword
-(18890, 4416, 3), -- Beasts
+(18890, 4028, 2), -- NPC Might
+(18890, 4071, 3), -- Resist Archery
+(18890, 4116, 5), -- Resist M.Atk
+(18890, 4379, 5), -- Resist Pole Arm
+(18890, 4408, 11), -- HP Modifiers
+(18890, 4409, 1), -- MP Modifiers
+(18890, 4410, 15), -- P. Atk. Modifiers
+(18890, 4411, 14), -- M. Atk. Modifiers
+(18890, 4412, 14), -- P. Def. Modifiers
+(18890, 4413, 18), -- M. Def. Modifiers
+(18890, 4414, 2), -- Armor Type
+(18890, 4415, 3), -- Weapon Type
+(18890, 4416, 3), -- Races
 (18890, 5463, 1), -- Water Attacks
 (18890, 5620, 7), -- Short-Range Physical Attack Weakness
-(18890, 6556, 17), -- Water Attack
+(18890, 6556, 17), -- NPC water attack
 -- Adult Buffalo
-(18891, 4028, 2), -- Might
-(18891, 4071, 3), -- Resist Bow/Crossbow Weapons
-(18891, 4116, 5), -- Resist M. Atk.
-(18891, 4379, 5), -- Resist Spear Weapons
-(18891, 4408, 11), -- HP Increase (3x)
-(18891, 4409, 1), -- MP Increase (1x)
-(18891, 4410, 15), -- Strong P. Atk.
-(18891, 4411, 14), -- Strong M. Atk.
-(18891, 4412, 14), -- Strong P. Def.
-(18891, 4413, 18), -- Extremely Strong M. Def.
-(18891, 4414, 2), -- Standard Type
-(18891, 4415, 3), -- One-handed Sword
-(18891, 4416, 3), -- Beasts
+(18891, 4028, 2), -- NPC Might
+(18891, 4071, 3), -- Resist Archery
+(18891, 4116, 5), -- Resist M.Atk
+(18891, 4379, 5), -- Resist Pole Arm
+(18891, 4408, 11), -- HP Modifiers
+(18891, 4409, 1), -- MP Modifiers
+(18891, 4410, 15), -- P. Atk. Modifiers
+(18891, 4411, 14), -- M. Atk. Modifiers
+(18891, 4412, 14), -- P. Def. Modifiers
+(18891, 4413, 18), -- M. Def. Modifiers
+(18891, 4414, 2), -- Armor Type
+(18891, 4415, 3), -- Weapon Type
+(18891, 4416, 3), -- Races
 (18891, 5463, 1), -- Water Attacks
 (18891, 5620, 7), -- Short-Range Physical Attack Weakness
-(18891, 6556, 17), -- Water Attack
+(18891, 6556, 17), -- NPC water attack
 -- Full Grown Buffalo
-(18892, 4028, 2), -- Might
-(18892, 4071, 3), -- Resist Bow/Crossbow Weapons
-(18892, 4116, 5), -- Resist M. Atk.
-(18892, 4379, 5), -- Resist Spear Weapons
-(18892, 4408, 11), -- HP Increase (3x)
-(18892, 4409, 1), -- MP Increase (1x)
-(18892, 4410, 16), -- Very Strong P. Atk.
-(18892, 4411, 16), -- Very Strong M. Atk.
-(18892, 4412, 15), -- Strong P. Def.
-(18892, 4413, 18), -- Extremely Strong M. Def.
-(18892, 4414, 2), -- Standard Type
-(18892, 4415, 6), -- Blunt Weapons
-(18892, 4416, 3), -- Beasts
+(18892, 4028, 2), -- NPC Might
+(18892, 4071, 3), -- Resist Archery
+(18892, 4116, 5), -- Resist M.Atk
+(18892, 4379, 5), -- Resist Pole Arm
+(18892, 4408, 11), -- HP Modifiers
+(18892, 4409, 1), -- MP Modifiers
+(18892, 4410, 16), -- P. Atk. Modifiers
+(18892, 4411, 16), -- M. Atk. Modifiers
+(18892, 4412, 15), -- P. Def. Modifiers
+(18892, 4413, 18), -- M. Def. Modifiers
+(18892, 4414, 2), -- Armor Type
+(18892, 4415, 6), -- Weapon Type
+(18892, 4416, 3), -- Races
 (18892, 4592, 10), -- Decrease P. Def.
 (18892, 5463, 1), -- Water Attacks
 (18892, 5620, 7), -- Short-Range Physical Attack Weakness
-(18892, 6556, 17), -- Water Attack
+(18892, 6556, 17), -- NPC water attack
 -- Full Grown Buffalo
-(18893, 4028, 2), -- Might
-(18893, 4071, 3), -- Resist Bow/Crossbow Weapons
-(18893, 4116, 5), -- Resist M. Atk.
-(18893, 4379, 5), -- Resist Spear Weapons
-(18893, 4408, 11), -- HP Increase (3x)
-(18893, 4409, 1), -- MP Increase (1x)
-(18893, 4410, 16), -- Very Strong P. Atk.
-(18893, 4411, 15), -- Strong M. Atk.
-(18893, 4412, 16), -- Very Strong P. Def.
-(18893, 4413, 18), -- Extremely Strong M. Def.
-(18893, 4414, 2), -- Standard Type
-(18893, 4415, 6), -- Blunt Weapons
-(18893, 4416, 3), -- Beasts
+(18893, 4028, 2), -- NPC Might
+(18893, 4071, 3), -- Resist Archery
+(18893, 4116, 5), -- Resist M.Atk
+(18893, 4379, 5), -- Resist Pole Arm
+(18893, 4408, 11), -- HP Modifiers
+(18893, 4409, 1), -- MP Modifiers
+(18893, 4410, 16), -- P. Atk. Modifiers
+(18893, 4411, 15), -- M. Atk. Modifiers
+(18893, 4412, 16), -- P. Def. Modifiers
+(18893, 4413, 18), -- M. Def. Modifiers
+(18893, 4414, 2), -- Armor Type
+(18893, 4415, 6), -- Weapon Type
+(18893, 4416, 3), -- Races
 (18893, 4592, 10), -- Decrease P. Def.
 (18893, 5463, 1), -- Water Attacks
 (18893, 5620, 7), -- Short-Range Physical Attack Weakness
-(18893, 6556, 17), -- Water Attack
+(18893, 6556, 17), -- NPC water attack
 -- Baby Alpine Grendel
-(18894, 4071, 3), -- Resist Bow/Crossbow Weapons
-(18894, 4116, 5), -- Resist M. Atk.
-(18894, 4379, 5), -- Resist Spear Weapons
-(18894, 4408, 1), -- HP Increase (1x)
-(18894, 4409, 1), -- MP Increase (1x)
-(18894, 4410, 13), -- Slightly Strong P. Atk.
-(18894, 4411, 11), -- Average M. Atk.
-(18894, 4412, 11), -- Average P. Def.
-(18894, 4413, 14), -- Strong M. Def.
-(18894, 4414, 2), -- Standard Type
-(18894, 4415, 3), -- One-handed Sword
-(18894, 4416, 4), -- Animals
+(18894, 4071, 3), -- Resist Archery
+(18894, 4116, 5), -- Resist M.Atk
+(18894, 4379, 5), -- Resist Pole Arm
+(18894, 4408, 1), -- HP Modifiers
+(18894, 4409, 1), -- MP Modifiers
+(18894, 4410, 13), -- P. Atk. Modifiers
+(18894, 4411, 11), -- M. Atk. Modifiers
+(18894, 4412, 11), -- P. Def. Modifiers
+(18894, 4413, 14), -- M. Def. Modifiers
+(18894, 4414, 2), -- Armor Type
+(18894, 4415, 3), -- Weapon Type
+(18894, 4416, 4), -- Races
 (18894, 5463, 1), -- Water Attacks
 (18894, 5620, 2), -- Short-Range Physical Attack Weakness
 -- Young Grendel
-(18895, 4028, 2), -- Might
-(18895, 4071, 3), -- Resist Bow/Crossbow Weapons
-(18895, 4116, 5), -- Resist M. Atk.
-(18895, 4379, 5), -- Resist Spear Weapons
-(18895, 4408, 10), -- HP Increase (2x)
-(18895, 4409, 1), -- MP Increase (1x)
-(18895, 4410, 14), -- Strong P. Atk.
-(18895, 4411, 13), -- Slightly Strong M. Atk.
-(18895, 4412, 12), -- Slightly Strong P. Def.
-(18895, 4413, 16), -- Very Strong M. Def.
-(18895, 4414, 2), -- Standard Type
-(18895, 4415, 3), -- One-handed Sword
-(18895, 4416, 4), -- Animals
+(18895, 4028, 2), -- NPC Might
+(18895, 4071, 3), -- Resist Archery
+(18895, 4116, 5), -- Resist M.Atk
+(18895, 4379, 5), -- Resist Pole Arm
+(18895, 4408, 10), -- HP Modifiers
+(18895, 4409, 1), -- MP Modifiers
+(18895, 4410, 14), -- P. Atk. Modifiers
+(18895, 4411, 13), -- M. Atk. Modifiers
+(18895, 4412, 12), -- P. Def. Modifiers
+(18895, 4413, 16), -- M. Def. Modifiers
+(18895, 4414, 2), -- Armor Type
+(18895, 4415, 3), -- Weapon Type
+(18895, 4416, 4), -- Races
 (18895, 5463, 1), -- Water Attacks
 (18895, 5620, 2), -- Short-Range Physical Attack Weakness
-(18895, 6556, 17), -- Water Attack
+(18895, 6556, 17), -- NPC water attack
 -- Young Grendel
-(18896, 4028, 2), -- Might
-(18896, 4071, 3), -- Resist Bow/Crossbow Weapons
-(18896, 4116, 5), -- Resist M. Atk.
-(18896, 4379, 5), -- Resist Spear Weapons
-(18896, 4408, 10), -- HP Increase (2x)
-(18896, 4409, 1), -- MP Increase (1x)
-(18896, 4410, 14), -- Strong P. Atk.
-(18896, 4411, 13), -- Slightly Strong M. Atk.
-(18896, 4412, 12), -- Slightly Strong P. Def.
-(18896, 4413, 16), -- Very Strong M. Def.
-(18896, 4414, 2), -- Standard Type
-(18896, 4415, 3), -- One-handed Sword
-(18896, 4416, 4), -- Animals
+(18896, 4028, 2), -- NPC Might
+(18896, 4071, 3), -- Resist Archery
+(18896, 4116, 5), -- Resist M.Atk
+(18896, 4379, 5), -- Resist Pole Arm
+(18896, 4408, 10), -- HP Modifiers
+(18896, 4409, 1), -- MP Modifiers
+(18896, 4410, 14), -- P. Atk. Modifiers
+(18896, 4411, 13), -- M. Atk. Modifiers
+(18896, 4412, 12), -- P. Def. Modifiers
+(18896, 4413, 16), -- M. Def. Modifiers
+(18896, 4414, 2), -- Armor Type
+(18896, 4415, 3), -- Weapon Type
+(18896, 4416, 4), -- Races
 (18896, 5463, 1), -- Water Attacks
 (18896, 5620, 2), -- Short-Range Physical Attack Weakness
-(18896, 6556, 17), -- Water Attack
+(18896, 6556, 17), -- NPC water attack
 -- Adult Grendel
-(18897, 4028, 2), -- Might
-(18897, 4071, 3), -- Resist Bow/Crossbow Weapons
-(18897, 4116, 5), -- Resist M. Atk.
-(18897, 4379, 5), -- Resist Spear Weapons
-(18897, 4408, 11), -- HP Increase (3x)
-(18897, 4409, 1), -- MP Increase (1x)
-(18897, 4410, 15), -- Strong P. Atk.
-(18897, 4411, 14), -- Strong M. Atk.
-(18897, 4412, 14), -- Strong P. Def.
-(18897, 4413, 18), -- Extremely Strong M. Def.
-(18897, 4414, 2), -- Standard Type
-(18897, 4415, 4), -- One-handed Sword
-(18897, 4416, 4), -- Animals
+(18897, 4028, 2), -- NPC Might
+(18897, 4071, 3), -- Resist Archery
+(18897, 4116, 5), -- Resist M.Atk
+(18897, 4379, 5), -- Resist Pole Arm
+(18897, 4408, 11), -- HP Modifiers
+(18897, 4409, 1), -- MP Modifiers
+(18897, 4410, 15), -- P. Atk. Modifiers
+(18897, 4411, 14), -- M. Atk. Modifiers
+(18897, 4412, 14), -- P. Def. Modifiers
+(18897, 4413, 18), -- M. Def. Modifiers
+(18897, 4414, 2), -- Armor Type
+(18897, 4415, 4), -- Weapon Type
+(18897, 4416, 4), -- Races
 (18897, 5463, 1), -- Water Attacks
 (18897, 5620, 7), -- Short-Range Physical Attack Weakness
-(18897, 6556, 17), -- Water Attack
+(18897, 6556, 17), -- NPC water attack
 -- Adult Grendel
-(18898, 4028, 2), -- Might
-(18898, 4071, 3), -- Resist Bow/Crossbow Weapons
-(18898, 4116, 5), -- Resist M. Atk.
-(18898, 4379, 5), -- Resist Spear Weapons
-(18898, 4408, 11), -- HP Increase (3x)
-(18898, 4409, 1), -- MP Increase (1x)
-(18898, 4410, 15), -- Strong P. Atk.
-(18898, 4411, 14), -- Strong M. Atk.
-(18898, 4412, 14), -- Strong P. Def.
-(18898, 4413, 18), -- Extremely Strong M. Def.
-(18898, 4414, 2), -- Standard Type
-(18898, 4415, 4), -- One-handed Sword
-(18898, 4416, 4), -- Animals
+(18898, 4028, 2), -- NPC Might
+(18898, 4071, 3), -- Resist Archery
+(18898, 4116, 5), -- Resist M.Atk
+(18898, 4379, 5), -- Resist Pole Arm
+(18898, 4408, 11), -- HP Modifiers
+(18898, 4409, 1), -- MP Modifiers
+(18898, 4410, 15), -- P. Atk. Modifiers
+(18898, 4411, 14), -- M. Atk. Modifiers
+(18898, 4412, 14), -- P. Def. Modifiers
+(18898, 4413, 18), -- M. Def. Modifiers
+(18898, 4414, 2), -- Armor Type
+(18898, 4415, 4), -- Weapon Type
+(18898, 4416, 4), -- Races
 (18898, 5463, 1), -- Water Attacks
 (18898, 5620, 7), -- Short-Range Physical Attack Weakness
-(18898, 6556, 17), -- Water Attack
+(18898, 6556, 17), -- NPC water attack
 -- Full Grown Grendel
-(18899, 4028, 2), -- Might
-(18899, 4071, 3), -- Resist Bow/Crossbow Weapons
-(18899, 4116, 5), -- Resist M. Atk.
-(18899, 4379, 5), -- Resist Spear Weapons
-(18899, 4408, 11), -- HP Increase (3x)
-(18899, 4409, 1), -- MP Increase (1x)
-(18899, 4410, 16), -- Very Strong P. Atk.
-(18899, 4411, 16), -- Very Strong M. Atk.
-(18899, 4412, 15), -- Strong P. Def.
-(18899, 4413, 18), -- Extremely Strong M. Def.
-(18899, 4414, 2), -- Standard Type
-(18899, 4415, 3), -- One-handed Sword
-(18899, 4416, 4), -- Animals
+(18899, 4028, 2), -- NPC Might
+(18899, 4071, 3), -- Resist Archery
+(18899, 4116, 5), -- Resist M.Atk
+(18899, 4379, 5), -- Resist Pole Arm
+(18899, 4408, 11), -- HP Modifiers
+(18899, 4409, 1), -- MP Modifiers
+(18899, 4410, 16), -- P. Atk. Modifiers
+(18899, 4411, 16), -- M. Atk. Modifiers
+(18899, 4412, 15), -- P. Def. Modifiers
+(18899, 4413, 18), -- M. Def. Modifiers
+(18899, 4414, 2), -- Armor Type
+(18899, 4415, 3), -- Weapon Type
+(18899, 4416, 4), -- Races
 (18899, 4592, 10), -- Decrease P. Def.
 (18899, 5463, 1), -- Water Attacks
 (18899, 5620, 7), -- Short-Range Physical Attack Weakness
-(18899, 6556, 17), -- Water Attack
+(18899, 6556, 17), -- NPC water attack
 -- Full Grown Grendel
-(18900, 4028, 2), -- Might
-(18900, 4071, 3), -- Resist Bow/Crossbow Weapons
-(18900, 4116, 5), -- Resist M. Atk.
-(18900, 4379, 5), -- Resist Spear Weapons
-(18900, 4408, 11), -- HP Increase (3x)
-(18900, 4409, 1), -- MP Increase (1x)
-(18900, 4410, 16), -- Very Strong P. Atk.
-(18900, 4411, 15), -- Strong M. Atk.
-(18900, 4412, 16), -- Very Strong P. Def.
-(18900, 4413, 18), -- Extremely Strong M. Def.
-(18900, 4414, 2), -- Standard Type
-(18900, 4415, 3), -- One-handed Sword
-(18900, 4416, 4), -- Animals
+(18900, 4028, 2), -- NPC Might
+(18900, 4071, 3), -- Resist Archery
+(18900, 4116, 5), -- Resist M.Atk
+(18900, 4379, 5), -- Resist Pole Arm
+(18900, 4408, 11), -- HP Modifiers
+(18900, 4409, 1), -- MP Modifiers
+(18900, 4410, 16), -- P. Atk. Modifiers
+(18900, 4411, 15), -- M. Atk. Modifiers
+(18900, 4412, 16), -- P. Def. Modifiers
+(18900, 4413, 18), -- M. Def. Modifiers
+(18900, 4414, 2), -- Armor Type
+(18900, 4415, 3), -- Weapon Type
+(18900, 4416, 4), -- Races
 (18900, 4592, 10), -- Decrease P. Def.
 (18900, 5463, 1), -- Water Attacks
 (18900, 5620, 7), -- Short-Range Physical Attack Weakness
-(18900, 6556, 17), -- Water Attack
+(18900, 6556, 17), -- NPC water attack
 -- Kookaburra
-(18901, 4074, 1), -- Haste
-(18901, 4408, 1), -- HP Increase (1x)
-(18901, 4409, 1), -- MP Increase (1x)
-(18901, 4410, 14), -- Strong P. Atk.
-(18901, 4411, 11), -- Average M. Atk.
-(18901, 4412, 14), -- Strong P. Def.
-(18901, 4413, 18), -- Extremely Strong M. Def.
-(18901, 4414, 2), -- Standard Type
-(18901, 4415, 3), -- One-handed Sword
-(18901, 4416, 3), -- Beasts
+(18901, 4074, 1), -- NPC Haste
+(18901, 4408, 1), -- HP Modifiers
+(18901, 4409, 1), -- MP Modifiers
+(18901, 4410, 14), -- P. Atk. Modifiers
+(18901, 4411, 11), -- M. Atk. Modifiers
+(18901, 4412, 14), -- P. Def. Modifiers
+(18901, 4413, 18), -- M. Def. Modifiers
+(18901, 4414, 2), -- Armor Type
+(18901, 4415, 3), -- Weapon Type
+(18901, 4416, 3), -- Races
 (18901, 5463, 1), -- Water Attacks
 (18901, 6234, 1), -- Presentation - Adena Firework
-(18901, 6556, 16), -- Water Attack
+(18901, 6556, 16), -- NPC water attack
 -- Cougar
-(18902, 4074, 1), -- Haste
-(18902, 4408, 1), -- HP Increase (1x)
-(18902, 4409, 1), -- MP Increase (1x)
-(18902, 4410, 14), -- Strong P. Atk.
-(18902, 4411, 11), -- Average M. Atk.
-(18902, 4412, 14), -- Strong P. Def.
-(18902, 4413, 18), -- Extremely Strong M. Def.
-(18902, 4414, 2), -- Standard Type
-(18902, 4415, 3), -- One-handed Sword
-(18902, 4416, 3), -- Beasts
+(18902, 4074, 1), -- NPC Haste
+(18902, 4408, 1), -- HP Modifiers
+(18902, 4409, 1), -- MP Modifiers
+(18902, 4410, 14), -- P. Atk. Modifiers
+(18902, 4411, 11), -- M. Atk. Modifiers
+(18902, 4412, 14), -- P. Def. Modifiers
+(18902, 4413, 18), -- M. Def. Modifiers
+(18902, 4414, 2), -- Armor Type
+(18902, 4415, 3), -- Weapon Type
+(18902, 4416, 3), -- Races
 (18902, 5463, 1), -- Water Attacks
 (18902, 6234, 1), -- Presentation - Adena Firework
-(18902, 6556, 16), -- Water Attack
+(18902, 6556, 16), -- NPC water attack
 -- Buffalo
-(18903, 4028, 2), -- Might
-(18903, 4408, 1), -- HP Increase (1x)
-(18903, 4409, 1), -- MP Increase (1x)
-(18903, 4410, 15), -- Strong P. Atk.
-(18903, 4411, 11), -- Average M. Atk.
-(18903, 4412, 15), -- Strong P. Def.
-(18903, 4413, 18), -- Extremely Strong M. Def.
-(18903, 4414, 2), -- Standard Type
-(18903, 4415, 3), -- One-handed Sword
-(18903, 4416, 3), -- Beasts
+(18903, 4028, 2), -- NPC Might
+(18903, 4408, 1), -- HP Modifiers
+(18903, 4409, 1), -- MP Modifiers
+(18903, 4410, 15), -- P. Atk. Modifiers
+(18903, 4411, 11), -- M. Atk. Modifiers
+(18903, 4412, 15), -- P. Def. Modifiers
+(18903, 4413, 18), -- M. Def. Modifiers
+(18903, 4414, 2), -- Armor Type
+(18903, 4415, 3), -- Weapon Type
+(18903, 4416, 3), -- Races
 (18903, 5463, 1), -- Water Attacks
 (18903, 6234, 1), -- Presentation - Adena Firework
-(18903, 6556, 17), -- Water Attack
+(18903, 6556, 17), -- NPC water attack
 -- Grendel
-(18904, 4028, 2), -- Might
-(18904, 4408, 1), -- HP Increase (1x)
-(18904, 4409, 1), -- MP Increase (1x)
-(18904, 4410, 15), -- Strong P. Atk.
-(18904, 4411, 11), -- Average M. Atk.
-(18904, 4412, 15), -- Strong P. Def.
-(18904, 4413, 18), -- Extremely Strong M. Def.
-(18904, 4414, 2), -- Standard Type
-(18904, 4415, 3), -- One-handed Sword
-(18904, 4416, 4), -- Animals
+(18904, 4028, 2), -- NPC Might
+(18904, 4408, 1), -- HP Modifiers
+(18904, 4409, 1), -- MP Modifiers
+(18904, 4410, 15), -- P. Atk. Modifiers
+(18904, 4411, 11), -- M. Atk. Modifiers
+(18904, 4412, 15), -- P. Def. Modifiers
+(18904, 4413, 18), -- M. Def. Modifiers
+(18904, 4414, 2), -- Armor Type
+(18904, 4415, 3), -- Weapon Type
+(18904, 4416, 4), -- Races
 (18904, 5463, 1), -- Water Attacks
 (18904, 6234, 1), -- Presentation - Adena Firework
-(18904, 6556, 17), -- Water Attack
+(18904, 6556, 17), -- NPC water attack
 -- Farm Ravager
-(18905, 4408, 11), -- HP Increase (3x)
-(18905, 4409, 1), -- MP Increase (1x)
-(18905, 4410, 16), -- Very Strong P. Atk.
-(18905, 4411, 15), -- Strong M. Atk.
-(18905, 4412, 11), -- Average P. Def.
-(18905, 4413, 18), -- Extremely Strong M. Def.
-(18905, 4414, 2), -- Standard Type
-(18905, 4415, 3), -- One-handed Sword
-(18905, 4416, 6), -- Humanoids
+(18905, 4408, 11), -- HP Modifiers
+(18905, 4409, 1), -- MP Modifiers
+(18905, 4410, 16), -- P. Atk. Modifiers
+(18905, 4411, 15), -- M. Atk. Modifiers
+(18905, 4412, 11), -- P. Def. Modifiers
+(18905, 4413, 18), -- M. Def. Modifiers
+(18905, 4414, 2), -- Armor Type
+(18905, 4415, 3), -- Weapon Type
+(18905, 4416, 6), -- Races
 (18905, 5463, 1), -- Water Attacks
-(18905, 6559, 17), -- Water Attack
+(18905, 6559, 17), -- NPC water attack
 -- Farm Bandit
-(18906, 4028, 3), -- Might
-(18906, 4071, 3), -- Resist Bow/Crossbow Weapons
-(18906, 4116, 5), -- Resist M. Atk.
-(18906, 4408, 1), -- HP Increase (1x)
-(18906, 4409, 1), -- MP Increase (1x)
-(18906, 4410, 13), -- Slightly Strong P. Atk.
-(18906, 4411, 11), -- Average M. Atk.
-(18906, 4412, 11), -- Average P. Def.
-(18906, 4413, 11), -- Average M. Def.
-(18906, 4414, 2), -- Standard Type
-(18906, 4415, 3), -- One-handed Sword
-(18906, 4416, 6), -- Humanoids
+(18906, 4028, 3), -- NPC Might
+(18906, 4071, 3), -- Resist Archery
+(18906, 4116, 5), -- Resist M.Atk
+(18906, 4408, 1), -- HP Modifiers
+(18906, 4409, 1), -- MP Modifiers
+(18906, 4410, 13), -- P. Atk. Modifiers
+(18906, 4411, 11), -- M. Atk. Modifiers
+(18906, 4412, 11), -- P. Def. Modifiers
+(18906, 4413, 11), -- M. Def. Modifiers
+(18906, 4414, 2), -- Armor Type
+(18906, 4415, 3), -- Weapon Type
+(18906, 4416, 6), -- Races
 (18906, 5463, 1), -- Water Attacks
 (18906, 5620, 2), -- Short-Range Physical Attack Weakness
-(18906, 6559, 16), -- Water Attack
+(18906, 6559, 16), -- NPC water attack
 -- Beast Devourer
-(18907, 4071, 3), -- Resist Bow/Crossbow Weapons
-(18907, 4074, 2), -- Haste
-(18907, 4116, 5), -- Resist M. Atk.
-(18907, 4408, 1), -- HP Increase (1x)
-(18907, 4409, 1), -- MP Increase (1x)
-(18907, 4410, 13), -- Slightly Strong P. Atk.
-(18907, 4411, 11), -- Average M. Atk.
-(18907, 4412, 11), -- Average P. Def.
-(18907, 4413, 11), -- Average M. Def.
-(18907, 4414, 2), -- Standard Type
-(18907, 4415, 1), -- Bare Hands
-(18907, 4416, 6), -- Humanoids
+(18907, 4071, 3), -- Resist Archery
+(18907, 4074, 2), -- NPC Haste
+(18907, 4116, 5), -- Resist M.Atk
+(18907, 4408, 1), -- HP Modifiers
+(18907, 4409, 1), -- MP Modifiers
+(18907, 4410, 13), -- P. Atk. Modifiers
+(18907, 4411, 11), -- M. Atk. Modifiers
+(18907, 4412, 11), -- P. Def. Modifiers
+(18907, 4413, 11), -- M. Def. Modifiers
+(18907, 4414, 2), -- Armor Type
+(18907, 4415, 1), -- Weapon Type
+(18907, 4416, 6), -- Races
 (18907, 5463, 1), -- Water Attacks
 (18907, 5620, 2), -- Short-Range Physical Attack Weakness
-(18907, 6566, 17), -- Water Shot
+(18907, 6566, 17), -- NPC water shot
 -- Sel Mahum Chef
-(18908, 4071, 5), -- Resist Bow/Crossbow Weapons
-(18908, 4116, 9), -- Resist M. Atk.
-(18908, 4408, 10), -- HP Increase (2x)
-(18908, 4409, 1), -- MP Increase (1x)
-(18908, 4410, 6), -- Very Weak P. Atk.
-(18908, 4411, 11), -- Average M. Atk.
-(18908, 4412, 6), -- Very Weak P. Def.
-(18908, 4413, 15), -- Strong M. Def.
-(18908, 4414, 2), -- Standard Type
-(18908, 4415, 3), -- One-handed Sword
-(18908, 4416, 6), -- Humanoids
+(18908, 4071, 5), -- Resist Archery
+(18908, 4116, 9), -- Resist M.Atk
+(18908, 4408, 10), -- HP Modifiers
+(18908, 4409, 1), -- MP Modifiers
+(18908, 4410, 6), -- P. Atk. Modifiers
+(18908, 4411, 11), -- M. Atk. Modifiers
+(18908, 4412, 6), -- P. Def. Modifiers
+(18908, 4413, 15), -- M. Def. Modifiers
+(18908, 4414, 2), -- Armor Type
+(18908, 4415, 3), -- Weapon Type
+(18908, 4416, 6), -- Races
 (18908, 4458, 1), -- Spear Weapon Weak Point
 (18908, 5462, 1), -- Fire Attacks
 (18908, 5620, 9), -- Short-Range Physical Attack Weakness
 (18908, 5663, 5), -- Resistance to Ancient Sword
 (18908, 6330, 1), -- Salmon Porridge Attack
 -- Solina Knights
-(18909, 4276, 5), -- Weak Point against Bow/Crossbow Weapons
-(18909, 4408, 10), -- HP Increase (2x)
-(18909, 4409, 1), -- MP Increase (1x)
-(18909, 4410, 14), -- Strong P. Atk.
-(18909, 4411, 13), -- Slightly Strong M. Atk.
-(18909, 4412, 10), -- Slightly Weak P. Def.
-(18909, 4413, 11), -- Average M. Def.
-(18909, 4414, 2), -- Standard Type
-(18909, 4415, 3), -- One-handed Sword
-(18909, 4416, 8), -- Angels
+(18909, 4276, 5), -- Archery Attack Weak Point
+(18909, 4408, 10), -- HP Modifiers
+(18909, 4409, 1), -- MP Modifiers
+(18909, 4410, 14), -- P. Atk. Modifiers
+(18909, 4411, 13), -- M. Atk. Modifiers
+(18909, 4412, 10), -- P. Def. Modifiers
+(18909, 4413, 11), -- M. Def. Modifiers
+(18909, 4414, 2), -- Armor Type
+(18909, 4415, 3), -- Weapon Type
+(18909, 4416, 8), -- Races
 (18909, 5466, 1), -- Holy Attacks
 (18909, 5620, 4), -- Short-Range Physical Attack Weakness
 (18909, 6311, 1), -- Solina Thrust
 -- Solina Knight Captain
-(18910, 4276, 5), -- Weak Point against Bow/Crossbow Weapons
-(18910, 4408, 11), -- HP Increase (3x)
-(18910, 4409, 1), -- MP Increase (1x)
-(18910, 4410, 15), -- Strong P. Atk.
-(18910, 4411, 14), -- Strong M. Atk.
-(18910, 4412, 11), -- Average P. Def.
-(18910, 4413, 11), -- Average M. Def.
-(18910, 4414, 2), -- Standard Type
-(18910, 4415, 3), -- One-handed Sword
-(18910, 4416, 8), -- Angels
+(18910, 4276, 5), -- Archery Attack Weak Point
+(18910, 4408, 11), -- HP Modifiers
+(18910, 4409, 1), -- MP Modifiers
+(18910, 4410, 15), -- P. Atk. Modifiers
+(18910, 4411, 14), -- M. Atk. Modifiers
+(18910, 4412, 11), -- P. Def. Modifiers
+(18910, 4413, 11), -- M. Def. Modifiers
+(18910, 4414, 2), -- Armor Type
+(18910, 4415, 3), -- Weapon Type
+(18910, 4416, 8), -- Races
 (18910, 5466, 1), -- Holy Attacks
 (18910, 5620, 4), -- Short-Range Physical Attack Weakness
 (18910, 6312, 1), -- Launch Sacred Sword Energy
 (18910, 6313, 1), -- Solina Bless
 -- Abbey Treasure Chest
-(18911, 4408, 1), -- HP Increase (1x)
-(18911, 4409, 1), -- MP Increase (1x)
-(18911, 4410, 11), -- Average P. Atk.
-(18911, 4411, 11), -- Average M. Atk.
-(18911, 4412, 11), -- Average P. Def.
-(18911, 4413, 11), -- Average M. Def.
-(18911, 4414, 2), -- Standard Type
-(18911, 4415, 3), -- One-handed Sword
-(18911, 4416, 2), -- Magic Creatures
+(18911, 4408, 1), -- HP Modifiers
+(18911, 4409, 1), -- MP Modifiers
+(18911, 4410, 11), -- P. Atk. Modifiers
+(18911, 4411, 11), -- M. Atk. Modifiers
+(18911, 4412, 11), -- P. Def. Modifiers
+(18911, 4413, 11), -- M. Def. Modifiers
+(18911, 4414, 2), -- Armor Type
+(18911, 4415, 3), -- Weapon Type
+(18911, 4416, 2), -- Races
 -- Scarecrow
-(18912, 4408, 1), -- HP Increase (1x)
-(18912, 4409, 1), -- MP Increase (1x)
-(18912, 4410, 11), -- Average P. Atk.
-(18912, 4411, 11), -- Average M. Atk.
-(18912, 4412, 11), -- Average P. Def.
-(18912, 4413, 11), -- Average M. Def.
-(18912, 4414, 2), -- Standard Type
-(18912, 4415, 3), -- One-handed Sword
-(18912, 4416, 2), -- Magic Creatures
+(18912, 4408, 1), -- HP Modifiers
+(18912, 4409, 1), -- MP Modifiers
+(18912, 4410, 11), -- P. Atk. Modifiers
+(18912, 4411, 11), -- M. Atk. Modifiers
+(18912, 4412, 11), -- P. Def. Modifiers
+(18912, 4413, 11), -- M. Def. Modifiers
+(18912, 4414, 2), -- Armor Type
+(18912, 4415, 3), -- Weapon Type
+(18912, 4416, 2), -- Races
 -- Furnace
-(18913, 4408, 1), -- HP Increase (1x)
-(18913, 4409, 1), -- MP Increase (1x)
-(18913, 4410, 11), -- Average P. Atk.
-(18913, 4411, 11), -- Average M. Atk.
-(18913, 4412, 11), -- Average P. Def.
-(18913, 4413, 11), -- Average M. Def.
-(18913, 4414, 2), -- Standard Type
-(18913, 4415, 3), -- One-handed Sword
-(18913, 4416, 2), -- Magic Creatures
+(18913, 4408, 1), -- HP Modifiers
+(18913, 4409, 1), -- MP Modifiers
+(18913, 4410, 11), -- P. Atk. Modifiers
+(18913, 4411, 11), -- M. Atk. Modifiers
+(18913, 4412, 11), -- P. Def. Modifiers
+(18913, 4413, 11), -- M. Def. Modifiers
+(18913, 4414, 2), -- Armor Type
+(18913, 4415, 3), -- Weapon Type
+(18913, 4416, 2), -- Races
 -- Furnace
-(18914, 4408, 1), -- HP Increase (1x)
-(18914, 4409, 1), -- MP Increase (1x)
-(18914, 4410, 11), -- Average P. Atk.
-(18914, 4411, 11), -- Average M. Atk.
-(18914, 4412, 11), -- Average P. Def.
-(18914, 4413, 11), -- Average M. Def.
-(18914, 4414, 2), -- Standard Type
-(18914, 4415, 3), -- One-handed Sword
-(18914, 4416, 2), -- Magic Creatures
+(18914, 4408, 1), -- HP Modifiers
+(18914, 4409, 1), -- MP Modifiers
+(18914, 4410, 11), -- P. Atk. Modifiers
+(18914, 4411, 11), -- M. Atk. Modifiers
+(18914, 4412, 11), -- P. Def. Modifiers
+(18914, 4413, 11), -- M. Def. Modifiers
+(18914, 4414, 2), -- Armor Type
+(18914, 4415, 3), -- Weapon Type
+(18914, 4416, 2), -- Races
 -- Divine Furnace
-(18915, 4408, 1), -- HP Increase (1x)
-(18915, 4409, 1), -- MP Increase (1x)
-(18915, 4410, 11), -- Average P. Atk.
-(18915, 4411, 11), -- Average M. Atk.
-(18915, 4412, 11), -- Average P. Def.
-(18915, 4413, 11), -- Average M. Def.
-(18915, 4414, 2), -- Standard Type
-(18915, 4415, 3), -- One-handed Sword
-(18915, 4416, 2), -- Magic Creatures
+(18915, 4408, 1), -- HP Modifiers
+(18915, 4409, 1), -- MP Modifiers
+(18915, 4410, 11), -- P. Atk. Modifiers
+(18915, 4411, 11), -- M. Atk. Modifiers
+(18915, 4412, 11), -- P. Def. Modifiers
+(18915, 4413, 11), -- M. Def. Modifiers
+(18915, 4414, 2), -- Armor Type
+(18915, 4415, 3), -- Weapon Type
+(18915, 4416, 2), -- Races
 -- 
-(18916, 4408, 1), -- HP Increase (1x)
-(18916, 4409, 1), -- MP Increase (1x)
-(18916, 4410, 11), -- Average P. Atk.
-(18916, 4411, 11), -- Average M. Atk.
-(18916, 4412, 11), -- Average P. Def.
-(18916, 4413, 11), -- Average M. Def.
-(18916, 4414, 2), -- Standard Type
-(18916, 4415, 3), -- One-handed Sword
-(18916, 4416, 2), -- Magic Creatures
+(18916, 4408, 1), -- HP Modifiers
+(18916, 4409, 1), -- MP Modifiers
+(18916, 4410, 11), -- P. Atk. Modifiers
+(18916, 4411, 11), -- M. Atk. Modifiers
+(18916, 4412, 11), -- P. Def. Modifiers
+(18916, 4413, 11), -- M. Def. Modifiers
+(18916, 4414, 2), -- Armor Type
+(18916, 4415, 3), -- Weapon Type
+(18916, 4416, 2), -- Races
 -- Pavel Safety Device
-(18917, 4408, 8), -- HP Increase (1/4x)
-(18917, 4409, 1), -- MP Increase (1x)
-(18917, 4410, 11), -- Average P. Atk.
-(18917, 4411, 11), -- Average M. Atk.
-(18917, 4412, 11), -- Average P. Def.
-(18917, 4413, 11), -- Average M. Def.
-(18917, 4414, 2), -- Standard Type
-(18917, 4415, 3), -- One-handed Sword
-(18917, 4416, 2), -- Magic Creatures
+(18917, 4408, 8), -- HP Modifiers
+(18917, 4409, 1), -- MP Modifiers
+(18917, 4410, 11), -- P. Atk. Modifiers
+(18917, 4411, 11), -- M. Atk. Modifiers
+(18917, 4412, 11), -- P. Def. Modifiers
+(18917, 4413, 11), -- M. Def. Modifiers
+(18917, 4414, 2), -- Armor Type
+(18917, 4415, 3), -- Weapon Type
+(18917, 4416, 2), -- Races
 -- 
 (18918, 4045, 1), -- Resist Full Magic Attack
-(18918, 4408, 1), -- HP Increase (1x)
-(18918, 4409, 1), -- MP Increase (1x)
-(18918, 4410, 11), -- Average P. Atk.
-(18918, 4411, 11), -- Average M. Atk.
-(18918, 4412, 11), -- Average P. Def.
-(18918, 4413, 11), -- Average M. Def.
-(18918, 4414, 2), -- Standard Type
-(18918, 4415, 3), -- One-handed Sword
-(18918, 4416, 2), -- Magic Creatures
+(18918, 4408, 1), -- HP Modifiers
+(18918, 4409, 1), -- MP Modifiers
+(18918, 4410, 11), -- P. Atk. Modifiers
+(18918, 4411, 11), -- M. Atk. Modifiers
+(18918, 4412, 11), -- P. Def. Modifiers
+(18918, 4413, 11), -- M. Def. Modifiers
+(18918, 4414, 2), -- Armor Type
+(18918, 4415, 3), -- Weapon Type
+(18918, 4416, 2), -- Races
 -- 
 (18919, 4045, 1), -- Resist Full Magic Attack
-(18919, 4408, 1), -- HP Increase (1x)
-(18919, 4409, 1), -- MP Increase (1x)
-(18919, 4410, 11), -- Average P. Atk.
-(18919, 4411, 11), -- Average M. Atk.
-(18919, 4412, 11), -- Average P. Def.
-(18919, 4413, 11), -- Average M. Def.
-(18919, 4414, 2), -- Standard Type
-(18919, 4415, 3), -- One-handed Sword
-(18919, 4416, 2), -- Magic Creatures
+(18919, 4408, 1), -- HP Modifiers
+(18919, 4409, 1), -- MP Modifiers
+(18919, 4410, 11), -- P. Atk. Modifiers
+(18919, 4411, 11), -- M. Atk. Modifiers
+(18919, 4412, 11), -- P. Def. Modifiers
+(18919, 4413, 11), -- M. Def. Modifiers
+(18919, 4414, 2), -- Armor Type
+(18919, 4415, 3), -- Weapon Type
+(18919, 4416, 2), -- Races
 -- 
-(18920, 4408, 1), -- HP Increase (1x)
-(18920, 4409, 1), -- MP Increase (1x)
-(18920, 4410, 11), -- Average P. Atk.
-(18920, 4411, 11), -- Average M. Atk.
-(18920, 4412, 11), -- Average P. Def.
-(18920, 4413, 11), -- Average M. Def.
-(18920, 4414, 2), -- Standard Type
-(18920, 4415, 3), -- One-handed Sword
-(18920, 4416, 2), -- Magic Creatures
+(18920, 4408, 1), -- HP Modifiers
+(18920, 4409, 1), -- MP Modifiers
+(18920, 4410, 11), -- P. Atk. Modifiers
+(18920, 4411, 11), -- M. Atk. Modifiers
+(18920, 4412, 11), -- P. Def. Modifiers
+(18920, 4413, 11), -- M. Def. Modifiers
+(18920, 4414, 2), -- Armor Type
+(18920, 4415, 3), -- Weapon Type
+(18920, 4416, 2), -- Races
 (18920, 5463, 1), -- Water Attacks
 -- Square Base 
-(18921, 4408, 1), -- HP Increase (1x)
-(18921, 4409, 1), -- MP Increase (1x)
-(18921, 4410, 11), -- Average P. Atk.
-(18921, 4411, 11), -- Average M. Atk.
-(18921, 4412, 11), -- Average P. Def.
-(18921, 4413, 11), -- Average M. Def.
-(18921, 4414, 2), -- Standard Type
-(18921, 4415, 3), -- One-handed Sword
-(18921, 4416, 2), -- Magic Creatures
+(18921, 4408, 1), -- HP Modifiers
+(18921, 4409, 1), -- MP Modifiers
+(18921, 4410, 11), -- P. Atk. Modifiers
+(18921, 4411, 11), -- M. Atk. Modifiers
+(18921, 4412, 11), -- P. Def. Modifiers
+(18921, 4413, 11), -- M. Def. Modifiers
+(18921, 4414, 2), -- Armor Type
+(18921, 4415, 3), -- Weapon Type
+(18921, 4416, 2), -- Races
 (18921, 5463, 1), -- Water Attacks
 -- Door Golem
-(18922, 4408, 1), -- HP Increase (1x)
-(18922, 4409, 1), -- MP Increase (1x)
-(18922, 4410, 11), -- Average P. Atk.
-(18922, 4411, 11), -- Average M. Atk.
-(18922, 4412, 11), -- Average P. Def.
-(18922, 4413, 11), -- Average M. Def.
-(18922, 4414, 2), -- Standard Type
-(18922, 4415, 3), -- One-handed Sword
-(18922, 4416, 3), -- Beasts
+(18922, 4408, 1), -- HP Modifiers
+(18922, 4409, 1), -- MP Modifiers
+(18922, 4410, 11), -- P. Atk. Modifiers
+(18922, 4411, 11), -- M. Atk. Modifiers
+(18922, 4412, 11), -- P. Def. Modifiers
+(18922, 4413, 11), -- M. Def. Modifiers
+(18922, 4414, 2), -- Armor Type
+(18922, 4415, 3), -- Weapon Type
+(18922, 4416, 3), -- Races
 (18922, 5463, 1), -- Water Attacks
 -- Door Golem
-(18923, 4408, 1), -- HP Increase (1x)
-(18923, 4409, 1), -- MP Increase (1x)
-(18923, 4410, 11), -- Average P. Atk.
-(18923, 4411, 11), -- Average M. Atk.
-(18923, 4412, 11), -- Average P. Def.
-(18923, 4413, 11), -- Average M. Def.
-(18923, 4414, 2), -- Standard Type
-(18923, 4415, 3), -- One-handed Sword
-(18923, 4416, 3), -- Beasts
+(18923, 4408, 1), -- HP Modifiers
+(18923, 4409, 1), -- MP Modifiers
+(18923, 4410, 11), -- P. Atk. Modifiers
+(18923, 4411, 11), -- M. Atk. Modifiers
+(18923, 4412, 11), -- P. Def. Modifiers
+(18923, 4413, 11), -- M. Def. Modifiers
+(18923, 4414, 2), -- Armor Type
+(18923, 4415, 3), -- Weapon Type
+(18923, 4416, 3), -- Races
 (18923, 5463, 1), -- Water Attacks
 -- Door Golem
-(18924, 4408, 1), -- HP Increase (1x)
-(18924, 4409, 1), -- MP Increase (1x)
-(18924, 4410, 11), -- Average P. Atk.
-(18924, 4411, 11), -- Average M. Atk.
-(18924, 4412, 11), -- Average P. Def.
-(18924, 4413, 11), -- Average M. Def.
-(18924, 4414, 2), -- Standard Type
-(18924, 4415, 3), -- One-handed Sword
-(18924, 4416, 3), -- Beasts
+(18924, 4408, 1), -- HP Modifiers
+(18924, 4409, 1), -- MP Modifiers
+(18924, 4410, 11), -- P. Atk. Modifiers
+(18924, 4411, 11), -- M. Atk. Modifiers
+(18924, 4412, 11), -- P. Def. Modifiers
+(18924, 4413, 11), -- M. Def. Modifiers
+(18924, 4414, 2), -- Armor Type
+(18924, 4415, 3), -- Weapon Type
+(18924, 4416, 3), -- Races
 (18924, 5463, 1), -- Water Attacks
 -- Trap
-(18925, 4408, 1), -- HP Increase (1x)
-(18925, 4409, 1), -- MP Increase (1x)
-(18925, 4410, 11), -- Average P. Atk.
-(18925, 4411, 11), -- Average M. Atk.
-(18925, 4412, 11), -- Average P. Def.
-(18925, 4413, 11), -- Average M. Def.
-(18925, 4414, 2), -- Standard Type
-(18925, 4415, 3), -- One-handed Sword
-(18925, 4416, 2), -- Magic Creatures
+(18925, 4408, 1), -- HP Modifiers
+(18925, 4409, 1), -- MP Modifiers
+(18925, 4410, 11), -- P. Atk. Modifiers
+(18925, 4411, 11), -- M. Atk. Modifiers
+(18925, 4412, 11), -- P. Def. Modifiers
+(18925, 4413, 11), -- M. Def. Modifiers
+(18925, 4414, 2), -- Armor Type
+(18925, 4415, 3), -- Weapon Type
+(18925, 4416, 2), -- Races
 (18925, 5463, 1), -- Water Attacks
 -- Mercenary Archer
-(18926, 4032, 9), -- Power Strike
-(18926, 4408, 10), -- HP Increase (2x)
-(18926, 4409, 1), -- MP Increase (1x)
-(18926, 4410, 8), -- Weak P. Atk.
-(18926, 4411, 7), -- Weak M. Atk.
-(18926, 4412, 11), -- Average P. Def.
-(18926, 4413, 11), -- Average M. Def.
-(18926, 4414, 2), -- Standard Type
-(18926, 4415, 9), -- Bows
-(18926, 4416, 15), -- Elves
+(18926, 4032, 9), -- NPC Strike
+(18926, 4408, 10), -- HP Modifiers
+(18926, 4409, 1), -- MP Modifiers
+(18926, 4410, 8), -- P. Atk. Modifiers
+(18926, 4411, 7), -- M. Atk. Modifiers
+(18926, 4412, 11), -- P. Def. Modifiers
+(18926, 4413, 11), -- M. Def. Modifiers
+(18926, 4414, 2), -- Armor Type
+(18926, 4415, 9), -- Weapon Type
+(18926, 4416, 15), -- Races
 -- Fire
-(18927, 4408, 1), -- HP Increase (1x)
-(18927, 4409, 1), -- MP Increase (1x)
-(18927, 4410, 11), -- Average P. Atk.
-(18927, 4411, 11), -- Average M. Atk.
-(18927, 4412, 11), -- Average P. Def.
-(18927, 4413, 11), -- Average M. Def.
-(18927, 4414, 2), -- Standard Type
-(18927, 4415, 3), -- One-handed Sword
-(18927, 4416, 2), -- Magic Creatures
+(18927, 4408, 1), -- HP Modifiers
+(18927, 4409, 1), -- MP Modifiers
+(18927, 4410, 11), -- P. Atk. Modifiers
+(18927, 4411, 11), -- M. Atk. Modifiers
+(18927, 4412, 11), -- P. Def. Modifiers
+(18927, 4413, 11), -- M. Def. Modifiers
+(18927, 4414, 2), -- Armor Type
+(18927, 4415, 3), -- Weapon Type
+(18927, 4416, 2), -- Races
 (18927, 6331, 1), -- Camp Fire Tired
 (18927, 6332, 1), -- Camp Fire Full
 -- Annihilation Furnace
-(18928, 4408, 1), -- HP Increase (1x)
-(18928, 4409, 1), -- MP Increase (1x)
-(18928, 4410, 11), -- Average P. Atk.
-(18928, 4411, 11), -- Average M. Atk.
-(18928, 4412, 11), -- Average P. Def.
-(18928, 4413, 11), -- Average M. Def.
-(18928, 4414, 2), -- Standard Type
-(18928, 4415, 3), -- One-handed Sword
-(18928, 4416, 2), -- Magic Creatures
+(18928, 4408, 1), -- HP Modifiers
+(18928, 4409, 1), -- MP Modifiers
+(18928, 4410, 11), -- P. Atk. Modifiers
+(18928, 4411, 11), -- M. Atk. Modifiers
+(18928, 4412, 11), -- P. Def. Modifiers
+(18928, 4413, 11), -- M. Def. Modifiers
+(18928, 4414, 2), -- Armor Type
+(18928, 4415, 3), -- Weapon Type
+(18928, 4416, 2), -- Races
 -- Ward of the Grail
 (18929, 4045, 1), -- Resist Full Magic Attack
-(18929, 4408, 1), -- HP Increase (1x)
-(18929, 4409, 1), -- MP Increase (1x)
-(18929, 4410, 11), -- Average P. Atk.
-(18929, 4411, 11), -- Average M. Atk.
-(18929, 4412, 11), -- Average P. Def.
-(18929, 4413, 11), -- Average M. Def.
-(18929, 4414, 2), -- Standard Type
-(18929, 4415, 5), -- Blunt Weapons
-(18929, 4416, 2), -- Magic Creatures
+(18929, 4408, 1), -- HP Modifiers
+(18929, 4409, 1), -- MP Modifiers
+(18929, 4410, 11), -- P. Atk. Modifiers
+(18929, 4411, 11), -- M. Atk. Modifiers
+(18929, 4412, 11), -- P. Def. Modifiers
+(18929, 4413, 11), -- M. Def. Modifiers
+(18929, 4414, 2), -- Armor Type
+(18929, 4415, 5), -- Weapon Type
+(18929, 4416, 2), -- Races
 (18929, 5466, 1), -- Holy Attacks
 (18929, 6326, 1), -- Martyr's Happiness
 -- 
-(18930, 4408, 1), -- HP Increase (1x)
-(18930, 4409, 1), -- MP Increase (1x)
-(18930, 4410, 11), -- Average P. Atk.
-(18930, 4411, 11), -- Average M. Atk.
-(18930, 4412, 11), -- Average P. Def.
-(18930, 4413, 11), -- Average M. Def.
-(18930, 4414, 2), -- Standard Type
-(18930, 4415, 3), -- One-handed Sword
-(18930, 4416, 2), -- Magic Creatures
+(18930, 4408, 1), -- HP Modifiers
+(18930, 4409, 1), -- MP Modifiers
+(18930, 4410, 11), -- P. Atk. Modifiers
+(18930, 4411, 11), -- M. Atk. Modifiers
+(18930, 4412, 11), -- P. Def. Modifiers
+(18930, 4413, 11), -- M. Def. Modifiers
+(18930, 4414, 2), -- Armor Type
+(18930, 4415, 3), -- Weapon Type
+(18930, 4416, 2), -- Races
 -- 
-(18931, 4408, 1), -- HP Increase (1x)
-(18931, 4409, 1), -- MP Increase (1x)
-(18931, 4410, 11), -- Average P. Atk.
-(18931, 4411, 11), -- Average M. Atk.
-(18931, 4412, 11), -- Average P. Def.
-(18931, 4413, 11), -- Average M. Def.
-(18931, 4414, 2), -- Standard Type
-(18931, 4415, 3), -- One-handed Sword
-(18931, 4416, 2), -- Magic Creatures
+(18931, 4408, 1), -- HP Modifiers
+(18931, 4409, 1), -- MP Modifiers
+(18931, 4410, 11), -- P. Atk. Modifiers
+(18931, 4411, 11), -- M. Atk. Modifiers
+(18931, 4412, 11), -- P. Def. Modifiers
+(18931, 4413, 11), -- M. Def. Modifiers
+(18931, 4414, 2), -- Armor Type
+(18931, 4415, 3), -- Weapon Type
+(18931, 4416, 2), -- Races
 -- 
-(18932, 4408, 1), -- HP Increase (1x)
-(18932, 4409, 1), -- MP Increase (1x)
-(18932, 4410, 11), -- Average P. Atk.
-(18932, 4411, 11), -- Average M. Atk.
-(18932, 4412, 11), -- Average P. Def.
-(18932, 4413, 11), -- Average M. Def.
-(18932, 4414, 2), -- Standard Type
-(18932, 4415, 3), -- One-handed Sword
-(18932, 4416, 2), -- Magic Creatures
+(18932, 4408, 1), -- HP Modifiers
+(18932, 4409, 1), -- MP Modifiers
+(18932, 4410, 11), -- P. Atk. Modifiers
+(18932, 4411, 11), -- M. Atk. Modifiers
+(18932, 4412, 11), -- P. Def. Modifiers
+(18932, 4413, 11), -- M. Def. Modifiers
+(18932, 4414, 2), -- Armor Type
+(18932, 4415, 3), -- Weapon Type
+(18932, 4416, 2), -- Races
 -- Fire Feed
-(18933, 4408, 1), -- HP Increase (1x)
-(18933, 4409, 1), -- MP Increase (1x)
-(18933, 4410, 11), -- Average P. Atk.
-(18933, 4411, 11), -- Average M. Atk.
-(18933, 4412, 11), -- Average P. Def.
-(18933, 4413, 11), -- Average M. Def.
-(18933, 4414, 2), -- Standard Type
-(18933, 4415, 3), -- One-handed Sword
-(18933, 4416, 2), -- Magic Creatures
+(18933, 4408, 1), -- HP Modifiers
+(18933, 4409, 1), -- MP Modifiers
+(18933, 4410, 11), -- P. Atk. Modifiers
+(18933, 4411, 11), -- M. Atk. Modifiers
+(18933, 4412, 11), -- P. Def. Modifiers
+(18933, 4413, 11), -- M. Def. Modifiers
+(18933, 4414, 2), -- Armor Type
+(18933, 4415, 3), -- Weapon Type
+(18933, 4416, 2), -- Races
 -- Abbey Treasure Chest
-(18934, 4408, 1), -- HP Increase (1x)
-(18934, 4409, 1), -- MP Increase (1x)
-(18934, 4410, 11), -- Average P. Atk.
-(18934, 4411, 11), -- Average M. Atk.
-(18934, 4412, 11), -- Average P. Def.
-(18934, 4413, 11), -- Average M. Def.
-(18934, 4414, 2), -- Standard Type
-(18934, 4415, 3), -- One-handed Sword
-(18934, 4416, 2), -- Magic Creatures
+(18934, 4408, 1), -- HP Modifiers
+(18934, 4409, 1), -- MP Modifiers
+(18934, 4410, 11), -- P. Atk. Modifiers
+(18934, 4411, 11), -- M. Atk. Modifiers
+(18934, 4412, 11), -- P. Def. Modifiers
+(18934, 4413, 11), -- M. Def. Modifiers
+(18934, 4414, 2), -- Armor Type
+(18934, 4415, 3), -- Weapon Type
+(18934, 4416, 2), -- Races
 -- Divine Sword Protection
 (18935, 4045, 1), -- Resist Full Magic Attack
-(18935, 4408, 1), -- HP Increase (1x)
-(18935, 4409, 1), -- MP Increase (1x)
-(18935, 4410, 11), -- Average P. Atk.
-(18935, 4411, 11), -- Average M. Atk.
-(18935, 4412, 11), -- Average P. Def.
-(18935, 4413, 11), -- Average M. Def.
-(18935, 4414, 2), -- Standard Type
-(18935, 4415, 3), -- One-handed Sword
-(18935, 4416, 2), -- Magic Creatures
+(18935, 4408, 1), -- HP Modifiers
+(18935, 4409, 1), -- MP Modifiers
+(18935, 4410, 11), -- P. Atk. Modifiers
+(18935, 4411, 11), -- M. Atk. Modifiers
+(18935, 4412, 11), -- P. Def. Modifiers
+(18935, 4413, 11), -- M. Def. Modifiers
+(18935, 4414, 2), -- Armor Type
+(18935, 4415, 3), -- Weapon Type
+(18935, 4416, 2), -- Races
 -- 
 (18936, 4045, 1), -- Resist Full Magic Attack
-(18936, 4408, 1), -- HP Increase (1x)
-(18936, 4409, 1), -- MP Increase (1x)
-(18936, 4410, 11), -- Average P. Atk.
-(18936, 4411, 11), -- Average M. Atk.
-(18936, 4412, 11), -- Average P. Def.
-(18936, 4413, 11), -- Average M. Def.
-(18936, 4414, 2), -- Standard Type
-(18936, 4415, 3), -- One-handed Sword
-(18936, 4416, 2), -- Magic Creatures
+(18936, 4408, 1), -- HP Modifiers
+(18936, 4409, 1), -- MP Modifiers
+(18936, 4410, 11), -- P. Atk. Modifiers
+(18936, 4411, 11), -- M. Atk. Modifiers
+(18936, 4412, 11), -- P. Def. Modifiers
+(18936, 4413, 11), -- M. Def. Modifiers
+(18936, 4414, 2), -- Armor Type
+(18936, 4415, 3), -- Weapon Type
+(18936, 4416, 2), -- Races
 -- Antharas' Symbol
-(18964, 4071, 5), -- Resist Bow/Crossbow Weapons
-(18964, 4412, 12), -- Slightly Strong P. Def.
-(18964, 4413, 18), -- Extremely Strong M. Def.
-(18964, 4416, 2), -- Magic Creatures
+(18964, 4071, 5), -- Resist Archery
+(18964, 4412, 12), -- P. Def. Modifiers
+(18964, 4413, 18), -- M. Def. Modifiers
+(18964, 4416, 2), -- Races
 (18964, 5620, 10), -- Short-Range Physical Attack Weakness
 (18964, 6742, 1), -- Presentation - Behemoth Object Channeling
 -- Antharas' Symbol
-(18965, 4276, 5), -- Weak Point against Bow/Crossbow Weapons
-(18965, 4412, 12), -- Slightly Strong P. Def.
-(18965, 4413, 18), -- Extremely Strong M. Def.
-(18965, 4416, 2), -- Magic Creatures
+(18965, 4276, 5), -- Archery Attack Weak Point
+(18965, 4412, 12), -- P. Def. Modifiers
+(18965, 4413, 18), -- M. Def. Modifiers
+(18965, 4416, 2), -- Races
 (18965, 5601, 10), -- Short-Range Physical Attack Resistance
 (18965, 6742, 1), -- Presentation - Behemoth Object Channeling
 -- Antharas' Symbol
-(18966, 4412, 18), -- Extremely Strong P. Def.
-(18966, 4413, 3), -- Extremely Weak M. Def.
-(18966, 4416, 2), -- Magic Creatures
+(18966, 4412, 18), -- P. Def. Modifiers
+(18966, 4413, 3), -- M. Def. Modifiers
+(18966, 4416, 2), -- Races
 (18966, 4456, 5), -- Mental Attack Weak Point
 (18966, 6742, 1), -- Presentation - Behemoth Object Channeling
 -- Gremlin
-(20001, 4408, 1), -- HP Increase (1x)
-(20001, 4409, 1), -- MP Increase (1x)
-(20001, 4410, 11), -- Average P. Atk.
-(20001, 4411, 11), -- Average M. Atk.
-(20001, 4412, 11), -- Average P. Def.
-(20001, 4413, 11), -- Average M. Def.
-(20001, 4414, 2), -- Standard Type
-(20001, 4415, 3), -- One-handed Sword
-(20001, 4416, 13), -- Fairies
+(20001, 4408, 1), -- HP Modifiers
+(20001, 4409, 1), -- MP Modifiers
+(20001, 4410, 11), -- P. Atk. Modifiers
+(20001, 4411, 11), -- M. Atk. Modifiers
+(20001, 4412, 11), -- P. Def. Modifiers
+(20001, 4413, 11), -- M. Def. Modifiers
+(20001, 4414, 2), -- Armor Type
+(20001, 4415, 3), -- Weapon Type
+(20001, 4416, 13), -- Races
 -- Rabbit
-(20002, 4408, 1), -- HP Increase (1x)
-(20002, 4409, 1), -- MP Increase (1x)
-(20002, 4410, 11), -- Average P. Atk.
-(20002, 4411, 11), -- Average M. Atk.
-(20002, 4412, 11), -- Average P. Def.
-(20002, 4413, 11), -- Average M. Def.
-(20002, 4414, 2), -- Standard Type
-(20002, 4415, 3), -- One-handed Sword
-(20002, 4416, 4), -- Animals
+(20002, 4408, 1), -- HP Modifiers
+(20002, 4409, 1), -- MP Modifiers
+(20002, 4410, 11), -- P. Atk. Modifiers
+(20002, 4411, 11), -- M. Atk. Modifiers
+(20002, 4412, 11), -- P. Def. Modifiers
+(20002, 4413, 11), -- M. Def. Modifiers
+(20002, 4414, 2), -- Armor Type
+(20002, 4415, 3), -- Weapon Type
+(20002, 4416, 4), -- Races
 -- Goblin
-(20003, 4408, 1), -- HP Increase (1x)
-(20003, 4409, 1), -- MP Increase (1x)
-(20003, 4410, 11), -- Average P. Atk.
-(20003, 4411, 11), -- Average M. Atk.
-(20003, 4412, 11), -- Average P. Def.
-(20003, 4413, 11), -- Average M. Def.
-(20003, 4414, 2), -- Standard Type
-(20003, 4415, 5), -- Blunt Weapons
-(20003, 4416, 6), -- Humanoids
+(20003, 4408, 1), -- HP Modifiers
+(20003, 4409, 1), -- MP Modifiers
+(20003, 4410, 11), -- P. Atk. Modifiers
+(20003, 4411, 11), -- M. Atk. Modifiers
+(20003, 4412, 11), -- P. Def. Modifiers
+(20003, 4413, 11), -- M. Def. Modifiers
+(20003, 4414, 2), -- Armor Type
+(20003, 4415, 5), -- Weapon Type
+(20003, 4416, 6), -- Races
 -- Imp
-(20004, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(20004, 4408, 1), -- HP Increase (1x)
-(20004, 4409, 1), -- MP Increase (1x)
-(20004, 4410, 11), -- Average P. Atk.
-(20004, 4411, 11), -- Average M. Atk.
-(20004, 4412, 11), -- Average P. Def.
-(20004, 4413, 11), -- Average M. Def.
-(20004, 4414, 2), -- Standard Type
-(20004, 4415, 3), -- One-handed Sword
-(20004, 4416, 13), -- Fairies
+(20004, 4276, 1), -- Archery Attack Weak Point
+(20004, 4408, 1), -- HP Modifiers
+(20004, 4409, 1), -- MP Modifiers
+(20004, 4410, 11), -- P. Atk. Modifiers
+(20004, 4411, 11), -- M. Atk. Modifiers
+(20004, 4412, 11), -- P. Def. Modifiers
+(20004, 4413, 11), -- M. Def. Modifiers
+(20004, 4414, 2), -- Armor Type
+(20004, 4415, 3), -- Weapon Type
+(20004, 4416, 13), -- Races
 -- Imp Elder
-(20005, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(20005, 4408, 1), -- HP Increase (1x)
-(20005, 4409, 1), -- MP Increase (1x)
-(20005, 4410, 12), -- Slightly Strong P. Atk.
-(20005, 4411, 12), -- Slightly Strong M. Atk.
-(20005, 4412, 10), -- Slightly Weak P. Def.
-(20005, 4413, 10), -- Slightly Weak M. Def.
-(20005, 4414, 2), -- Standard Type
-(20005, 4415, 3), -- One-handed Sword
-(20005, 4416, 13), -- Fairies
+(20005, 4276, 1), -- Archery Attack Weak Point
+(20005, 4408, 1), -- HP Modifiers
+(20005, 4409, 1), -- MP Modifiers
+(20005, 4410, 12), -- P. Atk. Modifiers
+(20005, 4411, 12), -- M. Atk. Modifiers
+(20005, 4412, 10), -- P. Def. Modifiers
+(20005, 4413, 10), -- M. Def. Modifiers
+(20005, 4414, 2), -- Armor Type
+(20005, 4415, 3), -- Weapon Type
+(20005, 4416, 13), -- Races
 -- Orc Archer
-(20006, 4408, 1), -- HP Increase (1x)
-(20006, 4409, 1), -- MP Increase (1x)
-(20006, 4410, 11), -- Average P. Atk.
-(20006, 4411, 11), -- Average M. Atk.
-(20006, 4412, 11), -- Average P. Def.
-(20006, 4413, 11), -- Average M. Def.
-(20006, 4414, 2), -- Standard Type
-(20006, 4415, 9), -- Bows
-(20006, 4416, 6), -- Humanoids
+(20006, 4408, 1), -- HP Modifiers
+(20006, 4409, 1), -- MP Modifiers
+(20006, 4410, 11), -- P. Atk. Modifiers
+(20006, 4411, 11), -- M. Atk. Modifiers
+(20006, 4412, 11), -- P. Def. Modifiers
+(20006, 4413, 11), -- M. Def. Modifiers
+(20006, 4414, 2), -- Armor Type
+(20006, 4415, 9), -- Weapon Type
+(20006, 4416, 6), -- Races
 -- Green Fungus
-(20007, 4277, 5), -- Resist Poison Attacks
-(20007, 4408, 1), -- HP Increase (1x)
-(20007, 4409, 1), -- MP Increase (1x)
-(20007, 4410, 12), -- Slightly Strong P. Atk.
-(20007, 4411, 12), -- Slightly Strong M. Atk.
-(20007, 4412, 10), -- Slightly Weak P. Def.
-(20007, 4413, 10), -- Slightly Weak M. Def.
-(20007, 4414, 2), -- Standard Type
-(20007, 4415, 3), -- One-handed Sword
-(20007, 4416, 5), -- Plants
+(20007, 4277, 5), -- Resist Poison
+(20007, 4408, 1), -- HP Modifiers
+(20007, 4409, 1), -- MP Modifiers
+(20007, 4410, 12), -- P. Atk. Modifiers
+(20007, 4411, 12), -- M. Atk. Modifiers
+(20007, 4412, 10), -- P. Def. Modifiers
+(20007, 4413, 10), -- M. Def. Modifiers
+(20007, 4414, 2), -- Armor Type
+(20007, 4415, 3), -- Weapon Type
+(20007, 4416, 5), -- Races
 -- Felim Lizardman
-(20008, 4408, 1), -- HP Increase (1x)
-(20008, 4409, 1), -- MP Increase (1x)
-(20008, 4410, 10), -- Slightly Weak P. Atk.
-(20008, 4411, 10), -- Slightly Weak M. Atk.
-(20008, 4412, 12), -- Slightly Strong P. Def.
-(20008, 4413, 12), -- Slightly Strong M. Def.
-(20008, 4414, 2), -- Standard Type
-(20008, 4415, 3), -- One-handed Sword
-(20008, 4416, 6), -- Humanoids
+(20008, 4408, 1), -- HP Modifiers
+(20008, 4409, 1), -- MP Modifiers
+(20008, 4410, 10), -- P. Atk. Modifiers
+(20008, 4411, 10), -- M. Atk. Modifiers
+(20008, 4412, 12), -- P. Def. Modifiers
+(20008, 4413, 12), -- M. Def. Modifiers
+(20008, 4414, 2), -- Armor Type
+(20008, 4415, 3), -- Weapon Type
+(20008, 4416, 6), -- Races
 -- Vuku Orc
-(20009, 4408, 1), -- HP Increase (1x)
-(20009, 4409, 1), -- MP Increase (1x)
-(20009, 4410, 11), -- Average P. Atk.
-(20009, 4411, 11), -- Average M. Atk.
-(20009, 4412, 11), -- Average P. Def.
-(20009, 4413, 11), -- Average M. Def.
-(20009, 4414, 2), -- Standard Type
-(20009, 4415, 5), -- Blunt Weapons
-(20009, 4416, 6), -- Humanoids
+(20009, 4408, 1), -- HP Modifiers
+(20009, 4409, 1), -- MP Modifiers
+(20009, 4410, 11), -- P. Atk. Modifiers
+(20009, 4411, 11), -- M. Atk. Modifiers
+(20009, 4412, 11), -- P. Def. Modifiers
+(20009, 4413, 11), -- M. Def. Modifiers
+(20009, 4414, 2), -- Armor Type
+(20009, 4415, 5), -- Weapon Type
+(20009, 4416, 6), -- Races
 -- Felim Lizardman Scout
-(20010, 4408, 1), -- HP Increase (1x)
-(20010, 4409, 1), -- MP Increase (1x)
-(20010, 4410, 12), -- Slightly Strong P. Atk.
-(20010, 4411, 12), -- Slightly Strong M. Atk.
-(20010, 4412, 10), -- Slightly Weak P. Def.
-(20010, 4413, 10), -- Slightly Weak M. Def.
-(20010, 4414, 2), -- Standard Type
-(20010, 4415, 3), -- One-handed Sword
-(20010, 4416, 6), -- Humanoids
+(20010, 4408, 1), -- HP Modifiers
+(20010, 4409, 1), -- MP Modifiers
+(20010, 4410, 12), -- P. Atk. Modifiers
+(20010, 4411, 12), -- M. Atk. Modifiers
+(20010, 4412, 10), -- P. Def. Modifiers
+(20010, 4413, 10), -- M. Def. Modifiers
+(20010, 4414, 2), -- Armor Type
+(20010, 4415, 3), -- Weapon Type
+(20010, 4416, 6), -- Races
 -- Vuku Orc Archer
-(20011, 4408, 1), -- HP Increase (1x)
-(20011, 4409, 1), -- MP Increase (1x)
-(20011, 4410, 11), -- Average P. Atk.
-(20011, 4411, 11), -- Average M. Atk.
-(20011, 4412, 11), -- Average P. Def.
-(20011, 4413, 11), -- Average M. Def.
-(20011, 4414, 2), -- Standard Type
-(20011, 4415, 9), -- Bows
-(20011, 4416, 6), -- Humanoids
+(20011, 4408, 1), -- HP Modifiers
+(20011, 4409, 1), -- MP Modifiers
+(20011, 4410, 11), -- P. Atk. Modifiers
+(20011, 4411, 11), -- M. Atk. Modifiers
+(20011, 4412, 11), -- P. Def. Modifiers
+(20011, 4413, 11), -- M. Def. Modifiers
+(20011, 4414, 2), -- Armor Type
+(20011, 4415, 9), -- Weapon Type
+(20011, 4416, 6), -- Races
 -- Gora Werewolf
-(20012, 4408, 1), -- HP Increase (1x)
-(20012, 4409, 1), -- MP Increase (1x)
-(20012, 4410, 12), -- Slightly Strong P. Atk.
-(20012, 4411, 12), -- Slightly Strong M. Atk.
-(20012, 4412, 10), -- Slightly Weak P. Def.
-(20012, 4413, 10), -- Slightly Weak M. Def.
-(20012, 4414, 2), -- Standard Type
-(20012, 4415, 5), -- Blunt Weapons
-(20012, 4416, 6), -- Humanoids
+(20012, 4408, 1), -- HP Modifiers
+(20012, 4409, 1), -- MP Modifiers
+(20012, 4410, 12), -- P. Atk. Modifiers
+(20012, 4411, 12), -- M. Atk. Modifiers
+(20012, 4412, 10), -- P. Def. Modifiers
+(20012, 4413, 10), -- M. Def. Modifiers
+(20012, 4414, 2), -- Armor Type
+(20012, 4415, 5), -- Weapon Type
+(20012, 4416, 6), -- Races
 -- Dryad
-(20013, 4277, 5), -- Resist Poison Attacks
-(20013, 4408, 1), -- HP Increase (1x)
-(20013, 4409, 1), -- MP Increase (1x)
-(20013, 4410, 10), -- Slightly Weak P. Atk.
-(20013, 4411, 10), -- Slightly Weak M. Atk.
-(20013, 4412, 12), -- Slightly Strong P. Def.
-(20013, 4413, 12), -- Slightly Strong M. Def.
-(20013, 4414, 2), -- Standard Type
-(20013, 4415, 3), -- One-handed Sword
-(20013, 4416, 13), -- Fairies
+(20013, 4277, 5), -- Resist Poison
+(20013, 4408, 1), -- HP Modifiers
+(20013, 4409, 1), -- MP Modifiers
+(20013, 4410, 10), -- P. Atk. Modifiers
+(20013, 4411, 10), -- M. Atk. Modifiers
+(20013, 4412, 12), -- P. Def. Modifiers
+(20013, 4413, 12), -- M. Def. Modifiers
+(20013, 4414, 2), -- Armor Type
+(20013, 4415, 3), -- Weapon Type
+(20013, 4416, 13), -- Races
 -- Felim Lizardman Warrior
-(20014, 4408, 1), -- HP Increase (1x)
-(20014, 4409, 1), -- MP Increase (1x)
-(20014, 4410, 12), -- Slightly Strong P. Atk.
-(20014, 4411, 12), -- Slightly Strong M. Atk.
-(20014, 4412, 10), -- Slightly Weak P. Def.
-(20014, 4413, 10), -- Slightly Weak M. Def.
-(20014, 4414, 2), -- Standard Type
-(20014, 4415, 3), -- One-handed Sword
-(20014, 4416, 6), -- Humanoids
+(20014, 4408, 1), -- HP Modifiers
+(20014, 4409, 1), -- MP Modifiers
+(20014, 4410, 12), -- P. Atk. Modifiers
+(20014, 4411, 12), -- M. Atk. Modifiers
+(20014, 4412, 10), -- P. Def. Modifiers
+(20014, 4413, 10), -- M. Def. Modifiers
+(20014, 4414, 2), -- Armor Type
+(20014, 4415, 3), -- Weapon Type
+(20014, 4416, 6), -- Races
 -- Marsh Zombie
-(20015, 4071, 5), -- Resist Bow/Crossbow Weapons
-(20015, 4248, 1), -- Energy Drain
-(20015, 4284, 5), -- Resist Bleed Attacks
-(20015, 4408, 1), -- HP Increase (1x)
-(20015, 4409, 1), -- MP Increase (1x)
-(20015, 4410, 12), -- Slightly Strong P. Atk.
-(20015, 4411, 12), -- Slightly Strong M. Atk.
-(20015, 4412, 10), -- Slightly Weak P. Def.
-(20015, 4413, 18), -- Extremely Strong M. Def.
-(20015, 4414, 2), -- Standard Type
-(20015, 4415, 3), -- One-handed Sword
-(20015, 4416, 1), -- Undead
+(20015, 4071, 5), -- Resist Archery
+(20015, 4248, 1), -- NPC HP Drain - Slow
+(20015, 4284, 5), -- Resist Bleeding
+(20015, 4408, 1), -- HP Modifiers
+(20015, 4409, 1), -- MP Modifiers
+(20015, 4410, 12), -- P. Atk. Modifiers
+(20015, 4411, 12), -- M. Atk. Modifiers
+(20015, 4412, 10), -- P. Def. Modifiers
+(20015, 4413, 18), -- M. Def. Modifiers
+(20015, 4414, 2), -- Armor Type
+(20015, 4415, 3), -- Weapon Type
+(20015, 4416, 1), -- Races
 -- Stone Golem
-(20016, 4247, 1), -- Wind Strike
-(20016, 4273, 3), -- Resist Daggers/Rapier Weapon
-(20016, 4274, 1), -- Blunt Weapon Weak Point
-(20016, 4284, 5), -- Resist Bleed Attacks
-(20016, 4408, 1), -- HP Increase (1x)
-(20016, 4409, 1), -- MP Increase (1x)
-(20016, 4410, 11), -- Average P. Atk.
-(20016, 4411, 11), -- Average M. Atk.
-(20016, 4412, 11), -- Average P. Def.
-(20016, 4413, 18), -- Extremely Strong M. Def.
-(20016, 4414, 2), -- Standard Type
-(20016, 4415, 3), -- One-handed Sword
-(20016, 4416, 2), -- Magic Creatures
+(20016, 4247, 1), -- NPC Windstrike - Slow
+(20016, 4273, 3), -- Resist Dagger
+(20016, 4274, 1), -- Blunt Attack Weak Point
+(20016, 4284, 5), -- Resist Bleeding
+(20016, 4408, 1), -- HP Modifiers
+(20016, 4409, 1), -- MP Modifiers
+(20016, 4410, 11), -- P. Atk. Modifiers
+(20016, 4411, 11), -- M. Atk. Modifiers
+(20016, 4412, 11), -- P. Def. Modifiers
+(20016, 4413, 18), -- M. Def. Modifiers
+(20016, 4414, 2), -- Armor Type
+(20016, 4415, 3), -- Weapon Type
+(20016, 4416, 2), -- Races
 (20016, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Vuku Orc Fighter
-(20017, 4408, 1), -- HP Increase (1x)
-(20017, 4409, 1), -- MP Increase (1x)
-(20017, 4410, 12), -- Slightly Strong P. Atk.
-(20017, 4411, 12), -- Slightly Strong M. Atk.
-(20017, 4412, 10), -- Slightly Weak P. Def.
-(20017, 4413, 10), -- Slightly Weak M. Def.
-(20017, 4414, 2), -- Standard Type
-(20017, 4415, 3), -- One-handed Sword
-(20017, 4416, 6), -- Humanoids
+(20017, 4408, 1), -- HP Modifiers
+(20017, 4409, 1), -- MP Modifiers
+(20017, 4410, 12), -- P. Atk. Modifiers
+(20017, 4411, 12), -- M. Atk. Modifiers
+(20017, 4412, 10), -- P. Def. Modifiers
+(20017, 4413, 10), -- M. Def. Modifiers
+(20017, 4414, 2), -- Armor Type
+(20017, 4415, 3), -- Weapon Type
+(20017, 4416, 6), -- Races
 -- Carnivorous Fungus
-(20018, 4277, 5), -- Resist Poison Attacks
-(20018, 4408, 1), -- HP Increase (1x)
-(20018, 4409, 1), -- MP Increase (1x)
-(20018, 4410, 12), -- Slightly Strong P. Atk.
-(20018, 4411, 12), -- Slightly Strong M. Atk.
-(20018, 4412, 10); -- Slightly Weak P. Def.
+(20018, 4277, 5), -- Resist Poison
+(20018, 4408, 1), -- HP Modifiers
+(20018, 4409, 1), -- MP Modifiers
+(20018, 4410, 12), -- P. Atk. Modifiers
+(20018, 4411, 12), -- M. Atk. Modifiers
+(20018, 4412, 10); -- P. Def. Modifiers
 
 INSERT INTO `npcskills` VALUES
-(20018, 4413, 10), -- Slightly Weak M. Def.
-(20018, 4414, 2), -- Standard Type
-(20018, 4415, 3), -- One-handed Sword
-(20018, 4416, 5), -- Plants
+(20018, 4413, 10), -- M. Def. Modifiers
+(20018, 4414, 2), -- Armor Type
+(20018, 4415, 3), -- Weapon Type
+(20018, 4416, 5), -- Races
 -- Dryad Elder
-(20019, 4277, 5), -- Resist Poison Attacks
-(20019, 4408, 1), -- HP Increase (1x)
-(20019, 4409, 1), -- MP Increase (1x)
-(20019, 4410, 10), -- Slightly Weak P. Atk.
-(20019, 4411, 10), -- Slightly Weak M. Atk.
-(20019, 4412, 12), -- Slightly Strong P. Def.
-(20019, 4413, 12), -- Slightly Strong M. Def.
-(20019, 4414, 2), -- Standard Type
-(20019, 4415, 3), -- One-handed Sword
-(20019, 4416, 13), -- Fairies
+(20019, 4277, 5), -- Resist Poison
+(20019, 4408, 1), -- HP Modifiers
+(20019, 4409, 1), -- MP Modifiers
+(20019, 4410, 10), -- P. Atk. Modifiers
+(20019, 4411, 10), -- M. Atk. Modifiers
+(20019, 4412, 12), -- P. Def. Modifiers
+(20019, 4413, 12), -- M. Def. Modifiers
+(20019, 4414, 2), -- Armor Type
+(20019, 4415, 3), -- Weapon Type
+(20019, 4416, 13), -- Races
 -- Marsh Zombie Lord
-(20020, 4071, 5), -- Resist Bow/Crossbow Weapons
-(20020, 4248, 1), -- Energy Drain
-(20020, 4284, 5), -- Resist Bleed Attacks
-(20020, 4408, 1), -- HP Increase (1x)
-(20020, 4409, 1), -- MP Increase (1x)
-(20020, 4410, 10), -- Slightly Weak P. Atk.
-(20020, 4411, 10), -- Slightly Weak M. Atk.
-(20020, 4412, 12), -- Slightly Strong P. Def.
-(20020, 4413, 19), -- Extremely Strong M. Def.
-(20020, 4414, 2), -- Standard Type
-(20020, 4415, 3), -- One-handed Sword
-(20020, 4416, 1), -- Undead
+(20020, 4071, 5), -- Resist Archery
+(20020, 4248, 1), -- NPC HP Drain - Slow
+(20020, 4284, 5), -- Resist Bleeding
+(20020, 4408, 1), -- HP Modifiers
+(20020, 4409, 1), -- MP Modifiers
+(20020, 4410, 10), -- P. Atk. Modifiers
+(20020, 4411, 10), -- M. Atk. Modifiers
+(20020, 4412, 12), -- P. Def. Modifiers
+(20020, 4413, 19), -- M. Def. Modifiers
+(20020, 4414, 2), -- Armor Type
+(20020, 4415, 3), -- Weapon Type
+(20020, 4416, 1), -- Races
 -- Red Bear
-(20021, 4408, 1), -- HP Increase (1x)
-(20021, 4409, 1), -- MP Increase (1x)
-(20021, 4410, 12), -- Slightly Strong P. Atk.
-(20021, 4411, 12), -- Slightly Strong M. Atk.
-(20021, 4412, 10), -- Slightly Weak P. Def.
-(20021, 4413, 10), -- Slightly Weak M. Def.
-(20021, 4414, 2), -- Standard Type
-(20021, 4415, 3), -- One-handed Sword
-(20021, 4416, 4), -- Animals
+(20021, 4408, 1), -- HP Modifiers
+(20021, 4409, 1), -- MP Modifiers
+(20021, 4410, 12), -- P. Atk. Modifiers
+(20021, 4411, 12), -- M. Atk. Modifiers
+(20021, 4412, 10), -- P. Def. Modifiers
+(20021, 4413, 10), -- M. Def. Modifiers
+(20021, 4414, 2), -- Armor Type
+(20021, 4415, 3), -- Weapon Type
+(20021, 4416, 4), -- Races
 -- Misery Skeleton
-(20022, 4274, 1), -- Blunt Weapon Weak Point
-(20022, 4408, 1), -- HP Increase (1x)
-(20022, 4409, 1), -- MP Increase (1x)
-(20022, 4410, 12), -- Slightly Strong P. Atk.
-(20022, 4411, 12), -- Slightly Strong M. Atk.
-(20022, 4412, 10), -- Slightly Weak P. Def.
-(20022, 4413, 10), -- Slightly Weak M. Def.
-(20022, 4414, 2), -- Standard Type
-(20022, 4415, 7), -- Daggers
-(20022, 4416, 1), -- Undead
+(20022, 4274, 1), -- Blunt Attack Weak Point
+(20022, 4408, 1), -- HP Modifiers
+(20022, 4409, 1), -- MP Modifiers
+(20022, 4410, 12), -- P. Atk. Modifiers
+(20022, 4411, 12), -- M. Atk. Modifiers
+(20022, 4412, 10), -- P. Def. Modifiers
+(20022, 4413, 10), -- M. Def. Modifiers
+(20022, 4414, 2), -- Armor Type
+(20022, 4415, 7), -- Weapon Type
+(20022, 4416, 1), -- Races
 -- Shadow Beast
-(20023, 4408, 1), -- HP Increase (1x)
-(20023, 4409, 1), -- MP Increase (1x)
-(20023, 4410, 12), -- Slightly Strong P. Atk.
-(20023, 4411, 12), -- Slightly Strong M. Atk.
-(20023, 4412, 10), -- Slightly Weak P. Def.
-(20023, 4413, 10), -- Slightly Weak M. Def.
-(20023, 4414, 2), -- Standard Type
-(20023, 4415, 3), -- One-handed Sword
-(20023, 4416, 3), -- Beasts
+(20023, 4408, 1), -- HP Modifiers
+(20023, 4409, 1), -- MP Modifiers
+(20023, 4410, 12), -- P. Atk. Modifiers
+(20023, 4411, 12), -- M. Atk. Modifiers
+(20023, 4412, 10), -- P. Def. Modifiers
+(20023, 4413, 10), -- M. Def. Modifiers
+(20023, 4414, 2), -- Armor Type
+(20023, 4415, 3), -- Weapon Type
+(20023, 4416, 3), -- Races
 -- Langk Lizardman Warrior
-(20024, 4408, 1), -- HP Increase (1x)
-(20024, 4409, 1), -- MP Increase (1x)
-(20024, 4410, 12), -- Slightly Strong P. Atk.
-(20024, 4411, 12), -- Slightly Strong M. Atk.
-(20024, 4412, 10), -- Slightly Weak P. Def.
-(20024, 4413, 10), -- Slightly Weak M. Def.
-(20024, 4414, 2), -- Standard Type
-(20024, 4415, 3), -- One-handed Sword
-(20024, 4416, 6), -- Humanoids
+(20024, 4408, 1), -- HP Modifiers
+(20024, 4409, 1), -- MP Modifiers
+(20024, 4410, 12), -- P. Atk. Modifiers
+(20024, 4411, 12), -- M. Atk. Modifiers
+(20024, 4412, 10), -- P. Def. Modifiers
+(20024, 4413, 10), -- M. Def. Modifiers
+(20024, 4414, 2), -- Armor Type
+(20024, 4415, 3), -- Weapon Type
+(20024, 4416, 6), -- Races
 -- Lesser Dark Horror
-(20025, 4408, 1), -- HP Increase (1x)
-(20025, 4409, 1), -- MP Increase (1x)
-(20025, 4410, 11), -- Average P. Atk.
-(20025, 4411, 11), -- Average M. Atk.
-(20025, 4412, 11), -- Average P. Def.
-(20025, 4413, 11), -- Average M. Def.
-(20025, 4414, 2), -- Standard Type
-(20025, 4415, 3), -- One-handed Sword
-(20025, 4416, 1), -- Undead
+(20025, 4408, 1), -- HP Modifiers
+(20025, 4409, 1), -- MP Modifiers
+(20025, 4410, 11), -- P. Atk. Modifiers
+(20025, 4411, 11), -- M. Atk. Modifiers
+(20025, 4412, 11), -- P. Def. Modifiers
+(20025, 4413, 11), -- M. Def. Modifiers
+(20025, 4414, 2), -- Armor Type
+(20025, 4415, 3), -- Weapon Type
+(20025, 4416, 1), -- Races
 -- Ruin Zombie
-(20026, 4071, 5), -- Resist Bow/Crossbow Weapons
+(20026, 4071, 5), -- Resist Archery
 (20026, 4249, 1), -- Decrease Speed
-(20026, 4284, 5), -- Resist Bleed Attacks
-(20026, 4408, 1), -- HP Increase (1x)
-(20026, 4409, 1), -- MP Increase (1x)
-(20026, 4410, 12), -- Slightly Strong P. Atk.
-(20026, 4411, 12), -- Slightly Strong M. Atk.
-(20026, 4412, 10), -- Slightly Weak P. Def.
-(20026, 4413, 18), -- Extremely Strong M. Def.
-(20026, 4414, 2), -- Standard Type
-(20026, 4415, 3), -- One-handed Sword
-(20026, 4416, 1), -- Undead
+(20026, 4284, 5), -- Resist Bleeding
+(20026, 4408, 1), -- HP Modifiers
+(20026, 4409, 1), -- MP Modifiers
+(20026, 4410, 12), -- P. Atk. Modifiers
+(20026, 4411, 12), -- M. Atk. Modifiers
+(20026, 4412, 10), -- P. Def. Modifiers
+(20026, 4413, 18), -- M. Def. Modifiers
+(20026, 4414, 2), -- Armor Type
+(20026, 4415, 3), -- Weapon Type
+(20026, 4416, 1), -- Races
 -- Langk Lizardman Scout
-(20027, 4408, 1), -- HP Increase (1x)
-(20027, 4409, 1), -- MP Increase (1x)
-(20027, 4410, 12), -- Slightly Strong P. Atk.
-(20027, 4411, 12), -- Slightly Strong M. Atk.
-(20027, 4412, 10), -- Slightly Weak P. Def.
-(20027, 4413, 10), -- Slightly Weak M. Def.
-(20027, 4414, 2), -- Standard Type
-(20027, 4415, 3), -- One-handed Sword
-(20027, 4416, 6), -- Humanoids
+(20027, 4408, 1), -- HP Modifiers
+(20027, 4409, 1), -- MP Modifiers
+(20027, 4410, 12), -- P. Atk. Modifiers
+(20027, 4411, 12), -- M. Atk. Modifiers
+(20027, 4412, 10), -- P. Def. Modifiers
+(20027, 4413, 10), -- M. Def. Modifiers
+(20027, 4414, 2), -- Armor Type
+(20027, 4415, 3), -- Weapon Type
+(20027, 4416, 6), -- Races
 -- Pincher
-(20028, 4408, 1), -- HP Increase (1x)
-(20028, 4409, 1), -- MP Increase (1x)
-(20028, 4410, 12), -- Slightly Strong P. Atk.
-(20028, 4411, 12), -- Slightly Strong M. Atk.
-(20028, 4412, 10), -- Slightly Weak P. Def.
-(20028, 4413, 10), -- Slightly Weak M. Def.
-(20028, 4414, 2), -- Standard Type
-(20028, 4415, 3), -- One-handed Sword
-(20028, 4416, 12), -- Bugs
+(20028, 4408, 1), -- HP Modifiers
+(20028, 4409, 1), -- MP Modifiers
+(20028, 4410, 12), -- P. Atk. Modifiers
+(20028, 4411, 12), -- M. Atk. Modifiers
+(20028, 4412, 10), -- P. Def. Modifiers
+(20028, 4413, 10), -- M. Def. Modifiers
+(20028, 4414, 2), -- Armor Type
+(20028, 4415, 3), -- Weapon Type
+(20028, 4416, 12), -- Races
 -- Ruin Zombie Leader
-(20029, 4071, 5), -- Resist Bow/Crossbow Weapons
-(20029, 4247, 1), -- Wind Strike
-(20029, 4284, 5), -- Resist Bleed Attacks
-(20029, 4408, 1), -- HP Increase (1x)
-(20029, 4409, 1), -- MP Increase (1x)
-(20029, 4410, 10), -- Slightly Weak P. Atk.
-(20029, 4411, 10), -- Slightly Weak M. Atk.
-(20029, 4412, 12), -- Slightly Strong P. Def.
-(20029, 4413, 19), -- Extremely Strong M. Def.
-(20029, 4414, 2), -- Standard Type
-(20029, 4415, 3), -- One-handed Sword
-(20029, 4416, 1), -- Undead
+(20029, 4071, 5), -- Resist Archery
+(20029, 4247, 1), -- NPC Windstrike - Slow
+(20029, 4284, 5), -- Resist Bleeding
+(20029, 4408, 1), -- HP Modifiers
+(20029, 4409, 1), -- MP Modifiers
+(20029, 4410, 10), -- P. Atk. Modifiers
+(20029, 4411, 10), -- M. Atk. Modifiers
+(20029, 4412, 12), -- P. Def. Modifiers
+(20029, 4413, 19), -- M. Def. Modifiers
+(20029, 4414, 2), -- Armor Type
+(20029, 4415, 3), -- Weapon Type
+(20029, 4416, 1), -- Races
 -- Langk Lizardman
-(20030, 4408, 1), -- HP Increase (1x)
-(20030, 4409, 1), -- MP Increase (1x)
-(20030, 4410, 11), -- Average P. Atk.
-(20030, 4411, 11), -- Average M. Atk.
-(20030, 4412, 11), -- Average P. Def.
-(20030, 4413, 11), -- Average M. Def.
-(20030, 4414, 2), -- Standard Type
-(20030, 4415, 3), -- One-handed Sword
-(20030, 4416, 6), -- Humanoids
+(20030, 4408, 1), -- HP Modifiers
+(20030, 4409, 1), -- MP Modifiers
+(20030, 4410, 11), -- P. Atk. Modifiers
+(20030, 4411, 11), -- M. Atk. Modifiers
+(20030, 4412, 11), -- P. Def. Modifiers
+(20030, 4413, 11), -- M. Def. Modifiers
+(20030, 4414, 2), -- Armor Type
+(20030, 4415, 3), -- Weapon Type
+(20030, 4416, 6), -- Races
 -- Omen Beast
-(20031, 4408, 1), -- HP Increase (1x)
-(20031, 4409, 1), -- MP Increase (1x)
-(20031, 4410, 12), -- Slightly Strong P. Atk.
-(20031, 4411, 12), -- Slightly Strong M. Atk.
-(20031, 4412, 10), -- Slightly Weak P. Def.
-(20031, 4413, 10), -- Slightly Weak M. Def.
-(20031, 4414, 2), -- Standard Type
-(20031, 4415, 3), -- One-handed Sword
-(20031, 4416, 3), -- Beasts
+(20031, 4408, 1), -- HP Modifiers
+(20031, 4409, 1), -- MP Modifiers
+(20031, 4410, 12), -- P. Atk. Modifiers
+(20031, 4411, 12), -- M. Atk. Modifiers
+(20031, 4412, 10), -- P. Def. Modifiers
+(20031, 4413, 10), -- M. Def. Modifiers
+(20031, 4414, 2), -- Armor Type
+(20031, 4415, 3), -- Weapon Type
+(20031, 4416, 3), -- Races
 -- Pinrul
-(20032, 4408, 1), -- HP Increase (1x)
-(20032, 4409, 1), -- MP Increase (1x)
-(20032, 4410, 12), -- Slightly Strong P. Atk.
-(20032, 4411, 12), -- Slightly Strong M. Atk.
-(20032, 4412, 10), -- Slightly Weak P. Def.
-(20032, 4413, 10), -- Slightly Weak M. Def.
-(20032, 4414, 2), -- Standard Type
-(20032, 4415, 3), -- One-handed Sword
-(20032, 4416, 12), -- Bugs
+(20032, 4408, 1), -- HP Modifiers
+(20032, 4409, 1), -- MP Modifiers
+(20032, 4410, 12), -- P. Atk. Modifiers
+(20032, 4411, 12), -- M. Atk. Modifiers
+(20032, 4412, 10), -- P. Def. Modifiers
+(20032, 4413, 10), -- M. Def. Modifiers
+(20032, 4414, 2), -- Armor Type
+(20032, 4415, 3), -- Weapon Type
+(20032, 4416, 12), -- Races
 -- Shade Horror
-(20033, 4076, 1), -- Slow
-(20033, 4408, 1), -- HP Increase (1x)
-(20033, 4409, 1), -- MP Increase (1x)
-(20033, 4410, 12), -- Slightly Strong P. Atk.
-(20033, 4411, 12), -- Slightly Strong M. Atk.
-(20033, 4412, 10), -- Slightly Weak P. Def.
-(20033, 4413, 10), -- Slightly Weak M. Def.
-(20033, 4414, 2), -- Standard Type
-(20033, 4415, 3), -- One-handed Sword
-(20033, 4416, 1), -- Undead
+(20033, 4076, 1), -- Reduction in movement speed
+(20033, 4408, 1), -- HP Modifiers
+(20033, 4409, 1), -- MP Modifiers
+(20033, 4410, 12), -- P. Atk. Modifiers
+(20033, 4411, 12), -- M. Atk. Modifiers
+(20033, 4412, 10), -- P. Def. Modifiers
+(20033, 4413, 10), -- M. Def. Modifiers
+(20033, 4414, 2), -- Armor Type
+(20033, 4415, 3), -- Weapon Type
+(20033, 4416, 1), -- Races
 -- Prowler
-(20034, 4408, 1), -- HP Increase (1x)
-(20034, 4409, 1), -- MP Increase (1x)
-(20034, 4410, 12), -- Slightly Strong P. Atk.
-(20034, 4411, 12), -- Slightly Strong M. Atk.
-(20034, 4412, 10), -- Slightly Weak P. Def.
-(20034, 4413, 10), -- Slightly Weak M. Def.
-(20034, 4414, 2), -- Standard Type
-(20034, 4415, 3), -- One-handed Sword
-(20034, 4416, 12), -- Bugs
+(20034, 4408, 1), -- HP Modifiers
+(20034, 4409, 1), -- MP Modifiers
+(20034, 4410, 12), -- P. Atk. Modifiers
+(20034, 4411, 12), -- M. Atk. Modifiers
+(20034, 4412, 10), -- P. Def. Modifiers
+(20034, 4413, 10), -- M. Def. Modifiers
+(20034, 4414, 2), -- Armor Type
+(20034, 4415, 3), -- Weapon Type
+(20034, 4416, 12), -- Races
 -- Skeleton Tracker
-(20035, 4274, 1), -- Blunt Weapon Weak Point
-(20035, 4408, 1), -- HP Increase (1x)
-(20035, 4409, 1), -- MP Increase (1x)
-(20035, 4410, 12), -- Slightly Strong P. Atk.
-(20035, 4411, 12), -- Slightly Strong M. Atk.
-(20035, 4412, 10), -- Slightly Weak P. Def.
-(20035, 4413, 10), -- Slightly Weak M. Def.
-(20035, 4414, 2), -- Standard Type
-(20035, 4415, 7), -- Daggers
-(20035, 4416, 1), -- Undead
+(20035, 4274, 1), -- Blunt Attack Weak Point
+(20035, 4408, 1), -- HP Modifiers
+(20035, 4409, 1), -- MP Modifiers
+(20035, 4410, 12), -- P. Atk. Modifiers
+(20035, 4411, 12), -- M. Atk. Modifiers
+(20035, 4412, 10), -- P. Def. Modifiers
+(20035, 4413, 10), -- M. Def. Modifiers
+(20035, 4414, 2), -- Armor Type
+(20035, 4415, 7), -- Weapon Type
+(20035, 4416, 1), -- Races
 -- Lirein
-(20036, 4076, 1), -- Slow
-(20036, 4408, 1), -- HP Increase (1x)
-(20036, 4409, 1), -- MP Increase (1x)
-(20036, 4410, 12), -- Slightly Strong P. Atk.
-(20036, 4411, 12), -- Slightly Strong M. Atk.
-(20036, 4412, 10), -- Slightly Weak P. Def.
-(20036, 4413, 10), -- Slightly Weak M. Def.
-(20036, 4414, 2), -- Standard Type
-(20036, 4415, 3), -- One-handed Sword
-(20036, 4416, 7), -- Spirits
+(20036, 4076, 1), -- Reduction in movement speed
+(20036, 4408, 1), -- HP Modifiers
+(20036, 4409, 1), -- MP Modifiers
+(20036, 4410, 12), -- P. Atk. Modifiers
+(20036, 4411, 12), -- M. Atk. Modifiers
+(20036, 4412, 10), -- P. Def. Modifiers
+(20036, 4413, 10), -- M. Def. Modifiers
+(20036, 4414, 2), -- Armor Type
+(20036, 4415, 3), -- Weapon Type
+(20036, 4416, 7), -- Races
 -- Mana Seeker
-(20037, 4039, 1), -- Mana Drain
-(20037, 4408, 10), -- HP Increase (2x)
-(20037, 4409, 1), -- MP Increase (1x)
-(20037, 4410, 10), -- Slightly Weak P. Atk.
-(20037, 4411, 10), -- Slightly Weak M. Atk.
-(20037, 4412, 12), -- Slightly Strong P. Def.
-(20037, 4413, 12), -- Slightly Strong M. Def.
-(20037, 4414, 2), -- Standard Type
-(20037, 4415, 5), -- Blunt Weapons
-(20037, 4416, 2), -- Magic Creatures
+(20037, 4039, 1), -- NPC MP Drain
+(20037, 4408, 10), -- HP Modifiers
+(20037, 4409, 1), -- MP Modifiers
+(20037, 4410, 10), -- P. Atk. Modifiers
+(20037, 4411, 10), -- M. Atk. Modifiers
+(20037, 4412, 12), -- P. Def. Modifiers
+(20037, 4413, 12), -- M. Def. Modifiers
+(20037, 4414, 2), -- Armor Type
+(20037, 4415, 5), -- Weapon Type
+(20037, 4416, 2), -- Races
 -- Venomous Spider
 (20038, 4035, 1), -- Poison
-(20038, 4408, 1), -- HP Increase (1x)
-(20038, 4409, 1), -- MP Increase (1x)
-(20038, 4410, 12), -- Slightly Strong P. Atk.
-(20038, 4411, 12), -- Slightly Strong M. Atk.
-(20038, 4412, 10), -- Slightly Weak P. Def.
-(20038, 4413, 10), -- Slightly Weak M. Def.
-(20038, 4414, 2), -- Standard Type
-(20038, 4415, 3), -- One-handed Sword
-(20038, 4416, 12), -- Bugs
+(20038, 4408, 1), -- HP Modifiers
+(20038, 4409, 1), -- MP Modifiers
+(20038, 4410, 12), -- P. Atk. Modifiers
+(20038, 4411, 12), -- M. Atk. Modifiers
+(20038, 4412, 10), -- P. Def. Modifiers
+(20038, 4413, 10), -- M. Def. Modifiers
+(20038, 4414, 2), -- Armor Type
+(20038, 4415, 3), -- Weapon Type
+(20038, 4416, 12), -- Races
 -- Scavenger Wererat
-(20039, 4408, 1), -- HP Increase (1x)
-(20039, 4409, 1), -- MP Increase (1x)
-(20039, 4410, 12), -- Slightly Strong P. Atk.
-(20039, 4411, 12), -- Slightly Strong M. Atk.
-(20039, 4412, 10), -- Slightly Weak P. Def.
-(20039, 4413, 10), -- Slightly Weak M. Def.
-(20039, 4414, 2), -- Standard Type
-(20039, 4415, 7), -- Daggers
-(20039, 4416, 6), -- Humanoids
+(20039, 4408, 1), -- HP Modifiers
+(20039, 4409, 1), -- MP Modifiers
+(20039, 4410, 12), -- P. Atk. Modifiers
+(20039, 4411, 12), -- M. Atk. Modifiers
+(20039, 4412, 10), -- P. Def. Modifiers
+(20039, 4413, 10), -- M. Def. Modifiers
+(20039, 4414, 2), -- Armor Type
+(20039, 4415, 7), -- Weapon Type
+(20039, 4416, 6), -- Races
 -- Sukar Wererat
-(20040, 4408, 1), -- HP Increase (1x)
-(20040, 4409, 1), -- MP Increase (1x)
-(20040, 4410, 12), -- Slightly Strong P. Atk.
-(20040, 4411, 12), -- Slightly Strong M. Atk.
-(20040, 4412, 10), -- Slightly Weak P. Def.
-(20040, 4413, 10), -- Slightly Weak M. Def.
-(20040, 4414, 2), -- Standard Type
-(20040, 4415, 7), -- Daggers
-(20040, 4416, 6), -- Humanoids
+(20040, 4408, 1), -- HP Modifiers
+(20040, 4409, 1), -- MP Modifiers
+(20040, 4410, 12), -- P. Atk. Modifiers
+(20040, 4411, 12), -- M. Atk. Modifiers
+(20040, 4412, 10), -- P. Def. Modifiers
+(20040, 4413, 10), -- M. Def. Modifiers
+(20040, 4414, 2), -- Armor Type
+(20040, 4415, 7), -- Weapon Type
+(20040, 4416, 6), -- Races
 -- Tainted Zombie
-(20041, 4071, 5), -- Resist Bow/Crossbow Weapons
+(20041, 4071, 5), -- Resist Archery
 (20041, 4249, 1), -- Decrease Speed
-(20041, 4284, 5), -- Resist Bleed Attacks
-(20041, 4408, 1), -- HP Increase (1x)
-(20041, 4409, 1), -- MP Increase (1x)
-(20041, 4410, 10), -- Slightly Weak P. Atk.
-(20041, 4411, 10), -- Slightly Weak M. Atk.
-(20041, 4412, 12), -- Slightly Strong P. Def.
-(20041, 4413, 19), -- Extremely Strong M. Def.
-(20041, 4414, 2), -- Standard Type
-(20041, 4415, 3), -- One-handed Sword
-(20041, 4416, 1), -- Undead
+(20041, 4284, 5), -- Resist Bleeding
+(20041, 4408, 1), -- HP Modifiers
+(20041, 4409, 1), -- MP Modifiers
+(20041, 4410, 10), -- P. Atk. Modifiers
+(20041, 4411, 10), -- M. Atk. Modifiers
+(20041, 4412, 12), -- P. Def. Modifiers
+(20041, 4413, 19), -- M. Def. Modifiers
+(20041, 4414, 2), -- Armor Type
+(20041, 4415, 3), -- Weapon Type
+(20041, 4416, 1), -- Races
 -- Skeleton Tracker Leader
-(20042, 4274, 1), -- Blunt Weapon Weak Point
-(20042, 4408, 1), -- HP Increase (1x)
-(20042, 4409, 1), -- MP Increase (1x)
-(20042, 4410, 12), -- Slightly Strong P. Atk.
-(20042, 4411, 12), -- Slightly Strong M. Atk.
-(20042, 4412, 10), -- Slightly Weak P. Def.
-(20042, 4413, 10), -- Slightly Weak M. Def.
-(20042, 4414, 2), -- Standard Type
-(20042, 4415, 7), -- Daggers
-(20042, 4416, 1), -- Undead
+(20042, 4274, 1), -- Blunt Attack Weak Point
+(20042, 4408, 1), -- HP Modifiers
+(20042, 4409, 1), -- MP Modifiers
+(20042, 4410, 12), -- P. Atk. Modifiers
+(20042, 4411, 12), -- M. Atk. Modifiers
+(20042, 4412, 10), -- P. Def. Modifiers
+(20042, 4413, 10), -- M. Def. Modifiers
+(20042, 4414, 2), -- Armor Type
+(20042, 4415, 7), -- Weapon Type
+(20042, 4416, 1), -- Races
 -- Arachnid Tracker
 (20043, 4035, 1), -- Poison
-(20043, 4408, 1), -- HP Increase (1x)
-(20043, 4409, 1), -- MP Increase (1x)
-(20043, 4410, 10), -- Slightly Weak P. Atk.
-(20043, 4411, 10), -- Slightly Weak M. Atk.
-(20043, 4412, 12), -- Slightly Strong P. Def.
-(20043, 4413, 12), -- Slightly Strong M. Def.
-(20043, 4414, 2), -- Standard Type
-(20043, 4415, 3), -- One-handed Sword
-(20043, 4416, 12), -- Bugs
+(20043, 4408, 1), -- HP Modifiers
+(20043, 4409, 1), -- MP Modifiers
+(20043, 4410, 10), -- P. Atk. Modifiers
+(20043, 4411, 10), -- M. Atk. Modifiers
+(20043, 4412, 12), -- P. Def. Modifiers
+(20043, 4413, 12), -- M. Def. Modifiers
+(20043, 4414, 2), -- Armor Type
+(20043, 4415, 3), -- Weapon Type
+(20043, 4416, 12), -- Races
 -- Lirein Elder
-(20044, 4151, 1), -- Wind Strike
-(20044, 4160, 1), -- Aura Burn
-(20044, 4408, 1), -- HP Increase (1x)
-(20044, 4409, 1), -- MP Increase (1x)
-(20044, 4410, 12), -- Slightly Strong P. Atk.
-(20044, 4411, 12), -- Slightly Strong M. Atk.
-(20044, 4412, 10), -- Slightly Weak P. Def.
-(20044, 4413, 10), -- Slightly Weak M. Def.
-(20044, 4414, 2), -- Standard Type
-(20044, 4415, 3), -- One-handed Sword
-(20044, 4416, 7), -- Spirits
+(20044, 4151, 1), -- NPC Windstrike - Magic
+(20044, 4160, 1), -- NPC Aura Burn - Magic
+(20044, 4408, 1), -- HP Modifiers
+(20044, 4409, 1), -- MP Modifiers
+(20044, 4410, 12), -- P. Atk. Modifiers
+(20044, 4411, 12), -- M. Atk. Modifiers
+(20044, 4412, 10), -- P. Def. Modifiers
+(20044, 4413, 10), -- M. Def. Modifiers
+(20044, 4414, 2), -- Armor Type
+(20044, 4415, 3), -- Weapon Type
+(20044, 4416, 7), -- Races
 -- Skeleton Scout
-(20045, 4274, 1), -- Blunt Weapon Weak Point
-(20045, 4408, 1), -- HP Increase (1x)
-(20045, 4409, 1), -- MP Increase (1x)
-(20045, 4410, 10), -- Slightly Weak P. Atk.
-(20045, 4411, 10), -- Slightly Weak M. Atk.
-(20045, 4412, 12), -- Slightly Strong P. Def.
-(20045, 4413, 12), -- Slightly Strong M. Def.
-(20045, 4414, 2), -- Standard Type
-(20045, 4415, 9), -- Bows
-(20045, 4416, 1), -- Undead
+(20045, 4274, 1), -- Blunt Attack Weak Point
+(20045, 4408, 1), -- HP Modifiers
+(20045, 4409, 1), -- MP Modifiers
+(20045, 4410, 10), -- P. Atk. Modifiers
+(20045, 4411, 10), -- M. Atk. Modifiers
+(20045, 4412, 12), -- P. Def. Modifiers
+(20045, 4413, 12), -- M. Def. Modifiers
+(20045, 4414, 2), -- Armor Type
+(20045, 4415, 9), -- Weapon Type
+(20045, 4416, 1), -- Races
 -- Stink Zombie
-(20046, 4071, 5), -- Resist Bow/Crossbow Weapons
-(20046, 4248, 1), -- Energy Drain
-(20046, 4284, 5), -- Resist Bleed Attacks
-(20046, 4408, 1), -- HP Increase (1x)
-(20046, 4409, 1), -- MP Increase (1x)
-(20046, 4410, 10), -- Slightly Weak P. Atk.
-(20046, 4411, 10), -- Slightly Weak M. Atk.
-(20046, 4412, 12), -- Slightly Strong P. Def.
-(20046, 4413, 19), -- Extremely Strong M. Def.
-(20046, 4414, 2), -- Standard Type
-(20046, 4415, 3), -- One-handed Sword
-(20046, 4416, 1), -- Undead
+(20046, 4071, 5), -- Resist Archery
+(20046, 4248, 1), -- NPC HP Drain - Slow
+(20046, 4284, 5), -- Resist Bleeding
+(20046, 4408, 1), -- HP Modifiers
+(20046, 4409, 1), -- MP Modifiers
+(20046, 4410, 10), -- P. Atk. Modifiers
+(20046, 4411, 10), -- M. Atk. Modifiers
+(20046, 4412, 12), -- P. Def. Modifiers
+(20046, 4413, 19), -- M. Def. Modifiers
+(20046, 4414, 2), -- Armor Type
+(20046, 4415, 3), -- Weapon Type
+(20046, 4416, 1), -- Races
 -- Sukar Wererat Leader
-(20047, 4408, 1), -- HP Increase (1x)
-(20047, 4409, 1), -- MP Increase (1x)
-(20047, 4410, 10), -- Slightly Weak P. Atk.
-(20047, 4411, 10), -- Slightly Weak M. Atk.
-(20047, 4412, 12), -- Slightly Strong P. Def.
-(20047, 4413, 12), -- Slightly Strong M. Def.
-(20047, 4414, 2), -- Standard Type
-(20047, 4415, 7), -- Daggers
-(20047, 4416, 6), -- Humanoids
+(20047, 4408, 1), -- HP Modifiers
+(20047, 4409, 1), -- MP Modifiers
+(20047, 4410, 10), -- P. Atk. Modifiers
+(20047, 4411, 10), -- M. Atk. Modifiers
+(20047, 4412, 12), -- P. Def. Modifiers
+(20047, 4413, 12), -- M. Def. Modifiers
+(20047, 4414, 2), -- Armor Type
+(20047, 4415, 7), -- Weapon Type
+(20047, 4416, 6), -- Races
 -- Lesser Succubus
 (20048, 4046, 2), -- Sleep
-(20048, 4408, 1), -- HP Increase (1x)
-(20048, 4409, 1), -- MP Increase (1x)
-(20048, 4410, 11), -- Average P. Atk.
-(20048, 4411, 11), -- Average M. Atk.
-(20048, 4412, 11), -- Average P. Def.
-(20048, 4413, 11), -- Average M. Def.
-(20048, 4414, 2), -- Standard Type
-(20048, 4415, 3), -- One-handed Sword
-(20048, 4416, 9), -- Demons
+(20048, 4408, 1), -- HP Modifiers
+(20048, 4409, 1), -- MP Modifiers
+(20048, 4410, 11), -- P. Atk. Modifiers
+(20048, 4411, 11), -- M. Atk. Modifiers
+(20048, 4412, 11), -- P. Def. Modifiers
+(20048, 4413, 11), -- M. Def. Modifiers
+(20048, 4414, 2), -- Armor Type
+(20048, 4415, 3), -- Weapon Type
+(20048, 4416, 9), -- Races
 -- Lycanthrope
-(20049, 4408, 1), -- HP Increase (1x)
-(20049, 4409, 1), -- MP Increase (1x)
-(20049, 4410, 12), -- Slightly Strong P. Atk.
-(20049, 4411, 12), -- Slightly Strong M. Atk.
-(20049, 4412, 10), -- Slightly Weak P. Def.
-(20049, 4413, 10), -- Slightly Weak M. Def.
-(20049, 4414, 2), -- Standard Type
-(20049, 4415, 5), -- Blunt Weapons
-(20049, 4416, 6), -- Humanoids
+(20049, 4408, 1), -- HP Modifiers
+(20049, 4409, 1), -- MP Modifiers
+(20049, 4410, 12), -- P. Atk. Modifiers
+(20049, 4411, 12), -- M. Atk. Modifiers
+(20049, 4412, 10), -- P. Def. Modifiers
+(20049, 4413, 10), -- M. Def. Modifiers
+(20049, 4414, 2), -- Armor Type
+(20049, 4415, 5), -- Weapon Type
+(20049, 4416, 6), -- Races
 -- Arachnid Predator
 (20050, 4035, 2), -- Poison
-(20050, 4408, 1), -- HP Increase (1x)
-(20050, 4409, 1), -- MP Increase (1x)
-(20050, 4410, 12), -- Slightly Strong P. Atk.
-(20050, 4411, 12), -- Slightly Strong M. Atk.
-(20050, 4412, 10), -- Slightly Weak P. Def.
-(20050, 4413, 10), -- Slightly Weak M. Def.
-(20050, 4414, 2), -- Standard Type
-(20050, 4415, 3), -- One-handed Sword
-(20050, 4416, 12), -- Bugs
+(20050, 4408, 1), -- HP Modifiers
+(20050, 4409, 1), -- MP Modifiers
+(20050, 4410, 12), -- P. Atk. Modifiers
+(20050, 4411, 12), -- M. Atk. Modifiers
+(20050, 4412, 10), -- P. Def. Modifiers
+(20050, 4413, 10), -- M. Def. Modifiers
+(20050, 4414, 2), -- Armor Type
+(20050, 4415, 3), -- Weapon Type
+(20050, 4416, 12), -- Races
 -- Skeleton Bowman
-(20051, 4274, 1), -- Blunt Weapon Weak Point
-(20051, 4408, 1), -- HP Increase (1x)
-(20051, 4409, 1), -- MP Increase (1x)
-(20051, 4410, 10), -- Slightly Weak P. Atk.
-(20051, 4411, 10), -- Slightly Weak M. Atk.
-(20051, 4412, 12), -- Slightly Strong P. Def.
-(20051, 4413, 12), -- Slightly Strong M. Def.
-(20051, 4414, 2), -- Standard Type
-(20051, 4415, 9), -- Bows
-(20051, 4416, 1), -- Undead
+(20051, 4274, 1), -- Blunt Attack Weak Point
+(20051, 4408, 1), -- HP Modifiers
+(20051, 4409, 1), -- MP Modifiers
+(20051, 4410, 10), -- P. Atk. Modifiers
+(20051, 4411, 10), -- M. Atk. Modifiers
+(20051, 4412, 12), -- P. Def. Modifiers
+(20051, 4413, 12), -- M. Def. Modifiers
+(20051, 4414, 2), -- Armor Type
+(20051, 4415, 9), -- Weapon Type
+(20051, 4416, 1), -- Races
 -- Lesser Succubus Turen
-(20052, 4152, 2), -- Drain Health
-(20052, 4160, 2), -- Aura Burn
-(20052, 4408, 1), -- HP Increase (1x)
-(20052, 4409, 1), -- MP Increase (1x)
-(20052, 4410, 12), -- Slightly Strong P. Atk.
-(20052, 4411, 12), -- Slightly Strong M. Atk.
-(20052, 4412, 10), -- Slightly Weak P. Def.
-(20052, 4413, 10), -- Slightly Weak M. Def.
-(20052, 4414, 2), -- Standard Type
-(20052, 4415, 3), -- One-handed Sword
-(20052, 4416, 9), -- Demons
+(20052, 4152, 2), -- NPC HP Drain - Magic
+(20052, 4160, 2), -- NPC Aura Burn - Magic
+(20052, 4408, 1), -- HP Modifiers
+(20052, 4409, 1), -- MP Modifiers
+(20052, 4410, 12), -- P. Atk. Modifiers
+(20052, 4411, 12), -- M. Atk. Modifiers
+(20052, 4412, 10), -- P. Def. Modifiers
+(20052, 4413, 10), -- M. Def. Modifiers
+(20052, 4414, 2), -- Armor Type
+(20052, 4415, 3), -- Weapon Type
+(20052, 4416, 9), -- Races
 -- Ol Mahum Patrol
-(20053, 4408, 1), -- HP Increase (1x)
-(20053, 4409, 1), -- MP Increase (1x)
-(20053, 4410, 11), -- Average P. Atk.
-(20053, 4411, 11), -- Average M. Atk.
-(20053, 4412, 11), -- Average P. Def.
-(20053, 4413, 11), -- Average M. Def.
-(20053, 4414, 2), -- Standard Type
-(20053, 4415, 9), -- Bows
-(20053, 4416, 6), -- Humanoids
+(20053, 4408, 1), -- HP Modifiers
+(20053, 4409, 1), -- MP Modifiers
+(20053, 4410, 11), -- P. Atk. Modifiers
+(20053, 4411, 11), -- M. Atk. Modifiers
+(20053, 4412, 11), -- P. Def. Modifiers
+(20053, 4413, 11), -- M. Def. Modifiers
+(20053, 4414, 2), -- Armor Type
+(20053, 4415, 9), -- Weapon Type
+(20053, 4416, 6), -- Races
 -- Ruin Spartoi
-(20054, 4274, 1), -- Blunt Weapon Weak Point
-(20054, 4408, 1), -- HP Increase (1x)
-(20054, 4409, 1), -- MP Increase (1x)
-(20054, 4410, 10), -- Slightly Weak P. Atk.
-(20054, 4411, 10), -- Slightly Weak M. Atk.
-(20054, 4412, 12), -- Slightly Strong P. Def.
-(20054, 4413, 12), -- Slightly Strong M. Def.
-(20054, 4414, 2), -- Standard Type
-(20054, 4415, 3), -- One-handed Sword
-(20054, 4416, 1), -- Undead
+(20054, 4274, 1), -- Blunt Attack Weak Point
+(20054, 4408, 1), -- HP Modifiers
+(20054, 4409, 1), -- MP Modifiers
+(20054, 4410, 10), -- P. Atk. Modifiers
+(20054, 4411, 10), -- M. Atk. Modifiers
+(20054, 4412, 12), -- P. Def. Modifiers
+(20054, 4413, 12), -- M. Def. Modifiers
+(20054, 4414, 2), -- Armor Type
+(20054, 4415, 3), -- Weapon Type
+(20054, 4416, 1), -- Races
 -- Wandering Eye
-(20055, 4151, 2), -- Wind Strike
-(20055, 4160, 2), -- Aura Burn
-(20055, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(20055, 4408, 1), -- HP Increase (1x)
-(20055, 4409, 1), -- MP Increase (1x)
-(20055, 4410, 10), -- Slightly Weak P. Atk.
-(20055, 4411, 10), -- Slightly Weak M. Atk.
-(20055, 4412, 12), -- Slightly Strong P. Def.
-(20055, 4413, 12), -- Slightly Strong M. Def.
-(20055, 4414, 2), -- Standard Type
-(20055, 4415, 3), -- One-handed Sword
-(20055, 4416, 2), -- Magic Creatures
+(20055, 4151, 2), -- NPC Windstrike - Magic
+(20055, 4160, 2), -- NPC Aura Burn - Magic
+(20055, 4276, 1), -- Archery Attack Weak Point
+(20055, 4408, 1), -- HP Modifiers
+(20055, 4409, 1), -- MP Modifiers
+(20055, 4410, 10), -- P. Atk. Modifiers
+(20055, 4411, 10), -- M. Atk. Modifiers
+(20055, 4412, 12), -- P. Def. Modifiers
+(20055, 4413, 12), -- M. Def. Modifiers
+(20055, 4414, 2), -- Armor Type
+(20055, 4415, 3), -- Weapon Type
+(20055, 4416, 2), -- Races
 -- Dre Vanul Disposer
-(20056, 4001, 2), -- Windstrike
-(20056, 4002, 2), -- HP Drain
-(20056, 4104, 2), -- Chill Flame
-(20056, 4408, 1), -- HP Increase (1x)
-(20056, 4409, 1), -- MP Increase (1x)
-(20056, 4410, 12), -- Slightly Strong P. Atk.
-(20056, 4411, 12), -- Slightly Strong M. Atk.
-(20056, 4412, 10), -- Slightly Weak P. Def.
-(20056, 4413, 10), -- Slightly Weak M. Def.
-(20056, 4414, 2), -- Standard Type
-(20056, 4415, 5), -- Blunt Weapons
-(20056, 4416, 9), -- Demons
+(20056, 4001, 2), -- NPC Wind Strike
+(20056, 4002, 2), -- NPC HP Drain
+(20056, 4104, 2), -- Flame
+(20056, 4408, 1), -- HP Modifiers
+(20056, 4409, 1), -- MP Modifiers
+(20056, 4410, 12), -- P. Atk. Modifiers
+(20056, 4411, 12), -- M. Atk. Modifiers
+(20056, 4412, 10), -- P. Def. Modifiers
+(20056, 4413, 10), -- M. Def. Modifiers
+(20056, 4414, 2), -- Armor Type
+(20056, 4415, 5), -- Weapon Type
+(20056, 4416, 9), -- Races
 -- Lesser Succubus Tilfo
 (20057, 4047, 2), -- Hold
-(20057, 4408, 1), -- HP Increase (1x)
-(20057, 4409, 1), -- MP Increase (1x)
-(20057, 4410, 12), -- Slightly Strong P. Atk.
-(20057, 4411, 12), -- Slightly Strong M. Atk.
-(20057, 4412, 10), -- Slightly Weak P. Def.
-(20057, 4413, 10), -- Slightly Weak M. Def.
-(20057, 4414, 2), -- Standard Type
-(20057, 4415, 3), -- One-handed Sword
-(20057, 4416, 9), -- Demons
+(20057, 4408, 1), -- HP Modifiers
+(20057, 4409, 1), -- MP Modifiers
+(20057, 4410, 12), -- P. Atk. Modifiers
+(20057, 4411, 12), -- M. Atk. Modifiers
+(20057, 4412, 10), -- P. Def. Modifiers
+(20057, 4413, 10), -- M. Def. Modifiers
+(20057, 4414, 2), -- Armor Type
+(20057, 4415, 3), -- Weapon Type
+(20057, 4416, 9), -- Races
 -- Ol Mahum Guard
-(20058, 4408, 1), -- HP Increase (1x)
-(20058, 4409, 1), -- MP Increase (1x)
-(20058, 4410, 12), -- Slightly Strong P. Atk.
-(20058, 4411, 12), -- Slightly Strong M. Atk.
-(20058, 4412, 10), -- Slightly Weak P. Def.
-(20058, 4413, 10), -- Slightly Weak M. Def.
-(20058, 4414, 2), -- Standard Type
-(20058, 4415, 3), -- One-handed Sword
-(20058, 4416, 6), -- Humanoids
+(20058, 4408, 1), -- HP Modifiers
+(20058, 4409, 1), -- MP Modifiers
+(20058, 4410, 12), -- P. Atk. Modifiers
+(20058, 4411, 12), -- M. Atk. Modifiers
+(20058, 4412, 10), -- P. Def. Modifiers
+(20058, 4413, 10), -- M. Def. Modifiers
+(20058, 4414, 2), -- Armor Type
+(20058, 4415, 3), -- Weapon Type
+(20058, 4416, 6), -- Races
 -- Hungry Eye
-(20059, 4152, 2), -- Drain Health
-(20059, 4160, 2), -- Aura Burn
-(20059, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(20059, 4408, 1), -- HP Increase (1x)
-(20059, 4409, 1), -- MP Increase (1x)
-(20059, 4410, 12), -- Slightly Strong P. Atk.
-(20059, 4411, 12), -- Slightly Strong M. Atk.
-(20059, 4412, 10), -- Slightly Weak P. Def.
-(20059, 4413, 10), -- Slightly Weak M. Def.
-(20059, 4414, 2), -- Standard Type
-(20059, 4415, 3), -- One-handed Sword
-(20059, 4416, 2), -- Magic Creatures
+(20059, 4152, 2), -- NPC HP Drain - Magic
+(20059, 4160, 2), -- NPC Aura Burn - Magic
+(20059, 4276, 1), -- Archery Attack Weak Point
+(20059, 4408, 1), -- HP Modifiers
+(20059, 4409, 1), -- MP Modifiers
+(20059, 4410, 12), -- P. Atk. Modifiers
+(20059, 4411, 12), -- M. Atk. Modifiers
+(20059, 4412, 10), -- P. Def. Modifiers
+(20059, 4413, 10), -- M. Def. Modifiers
+(20059, 4414, 2), -- Armor Type
+(20059, 4415, 3), -- Weapon Type
+(20059, 4416, 2), -- Races
 -- Raging Spartoi
-(20060, 4274, 1), -- Blunt Weapon Weak Point
-(20060, 4408, 1), -- HP Increase (1x)
-(20060, 4409, 1), -- MP Increase (1x)
-(20060, 4410, 10), -- Slightly Weak P. Atk.
-(20060, 4411, 10), -- Slightly Weak M. Atk.
-(20060, 4412, 12), -- Slightly Strong P. Def.
-(20060, 4413, 12), -- Slightly Strong M. Def.
-(20060, 4414, 2), -- Standard Type
-(20060, 4415, 7), -- Daggers
-(20060, 4416, 1), -- Undead
+(20060, 4274, 1), -- Blunt Attack Weak Point
+(20060, 4408, 1), -- HP Modifiers
+(20060, 4409, 1), -- MP Modifiers
+(20060, 4410, 10), -- P. Atk. Modifiers
+(20060, 4411, 10), -- M. Atk. Modifiers
+(20060, 4412, 12), -- P. Def. Modifiers
+(20060, 4413, 12), -- M. Def. Modifiers
+(20060, 4414, 2), -- Armor Type
+(20060, 4415, 7), -- Weapon Type
+(20060, 4416, 1), -- Races
 -- Ol Mahum Straggler
-(20061, 4408, 1), -- HP Increase (1x)
-(20061, 4409, 1), -- MP Increase (1x)
-(20061, 4410, 11), -- Average P. Atk.
-(20061, 4411, 11), -- Average M. Atk.
-(20061, 4412, 11), -- Average P. Def.
-(20061, 4413, 11), -- Average M. Def.
-(20061, 4414, 2), -- Standard Type
-(20061, 4415, 3), -- One-handed Sword
-(20061, 4416, 6), -- Humanoids
+(20061, 4408, 1), -- HP Modifiers
+(20061, 4409, 1), -- MP Modifiers
+(20061, 4410, 11), -- P. Atk. Modifiers
+(20061, 4411, 11), -- M. Atk. Modifiers
+(20061, 4412, 11), -- P. Def. Modifiers
+(20061, 4413, 11), -- M. Def. Modifiers
+(20061, 4414, 2), -- Armor Type
+(20061, 4415, 3), -- Weapon Type
+(20061, 4416, 6), -- Races
 -- Tumran Bugbear
-(20062, 4408, 1), -- HP Increase (1x)
-(20062, 4409, 1), -- MP Increase (1x)
-(20062, 4410, 10), -- Slightly Weak P. Atk.
-(20062, 4411, 10), -- Slightly Weak M. Atk.
-(20062, 4412, 12), -- Slightly Strong P. Def.
-(20062, 4413, 12), -- Slightly Strong M. Def.
-(20062, 4414, 2), -- Standard Type
-(20062, 4415, 5), -- Blunt Weapons
-(20062, 4416, 11), -- Giants
+(20062, 4408, 1), -- HP Modifiers
+(20062, 4409, 1), -- MP Modifiers
+(20062, 4410, 10), -- P. Atk. Modifiers
+(20062, 4411, 10), -- M. Atk. Modifiers
+(20062, 4412, 12), -- P. Def. Modifiers
+(20062, 4413, 12), -- M. Def. Modifiers
+(20062, 4414, 2), -- Armor Type
+(20062, 4415, 5), -- Weapon Type
+(20062, 4416, 11), -- Races
 -- Ol Mahum Shooter
-(20063, 4408, 1), -- HP Increase (1x)
-(20063, 4409, 1), -- MP Increase (1x)
-(20063, 4410, 11), -- Average P. Atk.
-(20063, 4411, 11), -- Average M. Atk.
-(20063, 4412, 11), -- Average P. Def.
-(20063, 4413, 11), -- Average M. Def.
-(20063, 4414, 2), -- Standard Type
-(20063, 4415, 9), -- Bows
-(20063, 4416, 6), -- Humanoids
+(20063, 4408, 1), -- HP Modifiers
+(20063, 4409, 1), -- MP Modifiers
+(20063, 4410, 11), -- P. Atk. Modifiers
+(20063, 4411, 11), -- M. Atk. Modifiers
+(20063, 4412, 11), -- P. Def. Modifiers
+(20063, 4413, 11), -- M. Def. Modifiers
+(20063, 4414, 2), -- Armor Type
+(20063, 4415, 9), -- Weapon Type
+(20063, 4416, 6), -- Races
 -- Tumran Bugbear Warrior
-(20064, 4408, 1), -- HP Increase (1x)
-(20064, 4409, 1), -- MP Increase (1x)
-(20064, 4410, 12), -- Slightly Strong P. Atk.
-(20064, 4411, 12), -- Slightly Strong M. Atk.
-(20064, 4412, 10), -- Slightly Weak P. Def.
-(20064, 4413, 10), -- Slightly Weak M. Def.
-(20064, 4414, 2), -- Standard Type
-(20064, 4415, 5), -- Blunt Weapons
-(20064, 4416, 11), -- Giants
+(20064, 4408, 1), -- HP Modifiers
+(20064, 4409, 1), -- MP Modifiers
+(20064, 4410, 12), -- P. Atk. Modifiers
+(20064, 4411, 12), -- M. Atk. Modifiers
+(20064, 4412, 10), -- P. Def. Modifiers
+(20064, 4413, 10), -- M. Def. Modifiers
+(20064, 4414, 2), -- Armor Type
+(20064, 4415, 5), -- Weapon Type
+(20064, 4416, 11), -- Races
 -- Ol Mahum Patrolman
-(20065, 4408, 1), -- HP Increase (1x)
-(20065, 4409, 1), -- MP Increase (1x)
-(20065, 4410, 10), -- Slightly Weak P. Atk.
-(20065, 4411, 10), -- Slightly Weak M. Atk.
-(20065, 4412, 12), -- Slightly Strong P. Def.
-(20065, 4413, 12), -- Slightly Strong M. Def.
-(20065, 4414, 2), -- Standard Type
-(20065, 4415, 3), -- One-handed Sword
-(20065, 4416, 6), -- Humanoids
+(20065, 4408, 1), -- HP Modifiers
+(20065, 4409, 1), -- MP Modifiers
+(20065, 4410, 10), -- P. Atk. Modifiers
+(20065, 4411, 10), -- M. Atk. Modifiers
+(20065, 4412, 12), -- P. Def. Modifiers
+(20065, 4413, 12), -- M. Def. Modifiers
+(20065, 4414, 2), -- Armor Type
+(20065, 4415, 3), -- Weapon Type
+(20065, 4416, 6), -- Races
 -- Ol Mahum Captain
-(20066, 4031, 2), -- Might
-(20066, 4408, 1), -- HP Increase (1x)
-(20066, 4409, 1), -- MP Increase (1x)
-(20066, 4410, 12), -- Slightly Strong P. Atk.
-(20066, 4411, 12), -- Slightly Strong M. Atk.
-(20066, 4412, 10), -- Slightly Weak P. Def.
-(20066, 4413, 10), -- Slightly Weak M. Def.
-(20066, 4414, 2), -- Standard Type
-(20066, 4415, 3), -- One-handed Sword
-(20066, 4416, 6), -- Humanoids
+(20066, 4031, 2), -- NPC Clan Aegis
+(20066, 4408, 1), -- HP Modifiers
+(20066, 4409, 1), -- MP Modifiers
+(20066, 4410, 12), -- P. Atk. Modifiers
+(20066, 4411, 12), -- M. Atk. Modifiers
+(20066, 4412, 10), -- P. Def. Modifiers
+(20066, 4413, 10), -- M. Def. Modifiers
+(20066, 4414, 2), -- Armor Type
+(20066, 4415, 3), -- Weapon Type
+(20066, 4416, 6), -- Races
 -- Monster Eye Watcher
-(20067, 4076, 2), -- Slow
-(20067, 4158, 2), -- Prominence
-(20067, 4160, 2), -- Aura Burn
-(20067, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(20067, 4408, 1), -- HP Increase (1x)
-(20067, 4409, 1), -- MP Increase (1x)
-(20067, 4410, 10), -- Slightly Weak P. Atk.
-(20067, 4411, 10), -- Slightly Weak M. Atk.
-(20067, 4412, 12), -- Slightly Strong P. Def.
-(20067, 4413, 12), -- Slightly Strong M. Def.
-(20067, 4414, 2), -- Standard Type
-(20067, 4415, 3), -- One-handed Sword
-(20067, 4416, 2), -- Magic Creatures
+(20067, 4076, 2), -- Reduction in movement speed
+(20067, 4158, 2), -- NPC Prominence - Magic
+(20067, 4160, 2), -- NPC Aura Burn - Magic
+(20067, 4276, 1), -- Archery Attack Weak Point
+(20067, 4408, 1), -- HP Modifiers
+(20067, 4409, 1), -- MP Modifiers
+(20067, 4410, 10), -- P. Atk. Modifiers
+(20067, 4411, 10), -- M. Atk. Modifiers
+(20067, 4412, 12), -- P. Def. Modifiers
+(20067, 4413, 12), -- M. Def. Modifiers
+(20067, 4414, 2), -- Armor Type
+(20067, 4415, 3), -- Weapon Type
+(20067, 4416, 2), -- Races
 -- Monster Eye Destroyer
-(20068, 4076, 2), -- Slow
-(20068, 4157, 2), -- Blaze
-(20068, 4160, 2), -- Aura Burn
-(20068, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(20068, 4408, 1), -- HP Increase (1x)
-(20068, 4409, 1), -- MP Increase (1x)
-(20068, 4410, 10), -- Slightly Weak P. Atk.
-(20068, 4411, 10), -- Slightly Weak M. Atk.
-(20068, 4412, 12), -- Slightly Strong P. Def.
-(20068, 4413, 12), -- Slightly Strong M. Def.
-(20068, 4414, 2), -- Standard Type
-(20068, 4415, 3), -- One-handed Sword
-(20068, 4416, 2), -- Magic Creatures
+(20068, 4076, 2), -- Reduction in movement speed
+(20068, 4157, 2), -- NPC Blaze - Magic
+(20068, 4160, 2), -- NPC Aura Burn - Magic
+(20068, 4276, 1), -- Archery Attack Weak Point
+(20068, 4408, 1), -- HP Modifiers
+(20068, 4409, 1), -- MP Modifiers
+(20068, 4410, 10), -- P. Atk. Modifiers
+(20068, 4411, 10), -- M. Atk. Modifiers
+(20068, 4412, 12), -- P. Def. Modifiers
+(20068, 4413, 12), -- M. Def. Modifiers
+(20068, 4414, 2), -- Armor Type
+(20068, 4415, 3), -- Weapon Type
+(20068, 4416, 2), -- Races
 -- Selu Lizardman Scout
-(20069, 4408, 1), -- HP Increase (1x)
-(20069, 4409, 1), -- MP Increase (1x)
-(20069, 4410, 10), -- Slightly Weak P. Atk.
-(20069, 4411, 10), -- Slightly Weak M. Atk.
-(20069, 4412, 12), -- Slightly Strong P. Def.
-(20069, 4413, 12), -- Slightly Strong M. Def.
-(20069, 4414, 2), -- Standard Type
-(20069, 4415, 3), -- One-handed Sword
-(20069, 4416, 6), -- Humanoids
+(20069, 4408, 1), -- HP Modifiers
+(20069, 4409, 1), -- MP Modifiers
+(20069, 4410, 10), -- P. Atk. Modifiers
+(20069, 4411, 10), -- M. Atk. Modifiers
+(20069, 4412, 12), -- P. Def. Modifiers
+(20069, 4413, 12), -- M. Def. Modifiers
+(20069, 4414, 2), -- Armor Type
+(20069, 4415, 3), -- Weapon Type
+(20069, 4416, 6), -- Races
 -- Lesser Basilisk
-(20070, 4408, 1), -- HP Increase (1x)
-(20070, 4409, 1), -- MP Increase (1x)
-(20070, 4410, 12), -- Slightly Strong P. Atk.
-(20070, 4411, 12), -- Slightly Strong M. Atk.
-(20070, 4412, 10), -- Slightly Weak P. Def.
-(20070, 4413, 10), -- Slightly Weak M. Def.
-(20070, 4414, 2), -- Standard Type
-(20070, 4415, 3), -- One-handed Sword
-(20070, 4416, 3), -- Beasts
+(20070, 4408, 1), -- HP Modifiers
+(20070, 4409, 1), -- MP Modifiers
+(20070, 4410, 12), -- P. Atk. Modifiers
+(20070, 4411, 12), -- M. Atk. Modifiers
+(20070, 4412, 10), -- P. Def. Modifiers
+(20070, 4413, 10), -- M. Def. Modifiers
+(20070, 4414, 2), -- Armor Type
+(20070, 4415, 3), -- Weapon Type
+(20070, 4416, 3), -- Races
 -- Selu Lizardman Warrior
-(20071, 4408, 1), -- HP Increase (1x)
-(20071, 4409, 1), -- MP Increase (1x)
-(20071, 4410, 12), -- Slightly Strong P. Atk.
-(20071, 4411, 12), -- Slightly Strong M. Atk.
-(20071, 4412, 10), -- Slightly Weak P. Def.
-(20071, 4413, 10), -- Slightly Weak M. Def.
-(20071, 4414, 2), -- Standard Type
-(20071, 4415, 3), -- One-handed Sword
-(20071, 4416, 6), -- Humanoids
+(20071, 4408, 1), -- HP Modifiers
+(20071, 4409, 1), -- MP Modifiers
+(20071, 4410, 12), -- P. Atk. Modifiers
+(20071, 4411, 12), -- M. Atk. Modifiers
+(20071, 4412, 10), -- P. Def. Modifiers
+(20071, 4413, 10), -- M. Def. Modifiers
+(20071, 4414, 2), -- Armor Type
+(20071, 4415, 3), -- Weapon Type
+(20071, 4416, 6), -- Races
 -- Basilisk
-(20072, 4408, 1), -- HP Increase (1x)
-(20072, 4409, 1), -- MP Increase (1x)
-(20072, 4410, 10), -- Slightly Weak P. Atk.
-(20072, 4411, 10), -- Slightly Weak M. Atk.
-(20072, 4412, 12), -- Slightly Strong P. Def.
-(20072, 4413, 12), -- Slightly Strong M. Def.
-(20072, 4414, 2), -- Standard Type
-(20072, 4415, 3), -- One-handed Sword
-(20072, 4416, 3), -- Beasts
+(20072, 4408, 1), -- HP Modifiers
+(20072, 4409, 1), -- MP Modifiers
+(20072, 4410, 10), -- P. Atk. Modifiers
+(20072, 4411, 10), -- M. Atk. Modifiers
+(20072, 4412, 12), -- P. Def. Modifiers
+(20072, 4413, 12), -- M. Def. Modifiers
+(20072, 4414, 2), -- Armor Type
+(20072, 4415, 3), -- Weapon Type
+(20072, 4416, 3), -- Races
 -- Ol Mahum Legionnaire
-(20073, 4408, 1), -- HP Increase (1x)
-(20073, 4409, 1), -- MP Increase (1x)
-(20073, 4410, 11), -- Average P. Atk.
-(20073, 4411, 11), -- Average M. Atk.
-(20073, 4412, 11), -- Average P. Def.
-(20073, 4413, 11), -- Average M. Def.
-(20073, 4414, 2), -- Standard Type
-(20073, 4415, 3), -- One-handed Sword
-(20073, 4416, 6), -- Humanoids
+(20073, 4408, 1), -- HP Modifiers
+(20073, 4409, 1), -- MP Modifiers
+(20073, 4410, 11), -- P. Atk. Modifiers
+(20073, 4411, 11), -- M. Atk. Modifiers
+(20073, 4412, 11), -- P. Def. Modifiers
+(20073, 4413, 11), -- M. Def. Modifiers
+(20073, 4414, 2), -- Armor Type
+(20073, 4415, 3), -- Weapon Type
+(20073, 4416, 6), -- Races
 -- Androscorpio
-(20074, 4408, 1), -- HP Increase (1x)
-(20074, 4409, 1), -- MP Increase (1x)
-(20074, 4410, 11), -- Average P. Atk.
-(20074, 4411, 11), -- Average M. Atk.
-(20074, 4412, 11), -- Average P. Def.
-(20074, 4413, 11), -- Average M. Def.
-(20074, 4414, 2), -- Standard Type
-(20074, 4415, 3), -- One-handed Sword
-(20074, 4416, 3), -- Beasts
+(20074, 4408, 1), -- HP Modifiers
+(20074, 4409, 1), -- MP Modifiers
+(20074, 4410, 11), -- P. Atk. Modifiers
+(20074, 4411, 11), -- M. Atk. Modifiers
+(20074, 4412, 11), -- P. Def. Modifiers
+(20074, 4413, 11), -- M. Def. Modifiers
+(20074, 4414, 2), -- Armor Type
+(20074, 4415, 3), -- Weapon Type
+(20074, 4416, 3), -- Races
 -- Ant Larva
 (20075, 4035, 2), -- Poison
-(20075, 4408, 1), -- HP Increase (1x)
-(20075, 4409, 1), -- MP Increase (1x)
-(20075, 4410, 10), -- Slightly Weak P. Atk.
-(20075, 4411, 10), -- Slightly Weak M. Atk.
-(20075, 4412, 12), -- Slightly Strong P. Def.
-(20075, 4413, 12), -- Slightly Strong M. Def.
-(20075, 4414, 2), -- Standard Type
-(20075, 4415, 3), -- One-handed Sword
-(20075, 4416, 12), -- Bugs
+(20075, 4408, 1), -- HP Modifiers
+(20075, 4409, 1), -- MP Modifiers
+(20075, 4410, 10), -- P. Atk. Modifiers
+(20075, 4411, 10), -- M. Atk. Modifiers
+(20075, 4412, 12), -- P. Def. Modifiers
+(20075, 4413, 12), -- M. Def. Modifiers
+(20075, 4414, 2), -- Armor Type
+(20075, 4415, 3), -- Weapon Type
+(20075, 4416, 12), -- Races
 -- Ol Mahum Commander
-(20076, 4030, 2), -- Might
-(20076, 4408, 1), -- HP Increase (1x)
-(20076, 4409, 1), -- MP Increase (1x)
-(20076, 4410, 12), -- Slightly Strong P. Atk.
-(20076, 4411, 12), -- Slightly Strong M. Atk.
-(20076, 4412, 10), -- Slightly Weak P. Def.
-(20076, 4413, 10), -- Slightly Weak M. Def.
-(20076, 4414, 2), -- Standard Type
-(20076, 4415, 3), -- One-handed Sword
-(20076, 4416, 6), -- Humanoids
+(20076, 4030, 2), -- NPC Clan Might
+(20076, 4408, 1), -- HP Modifiers
+(20076, 4409, 1), -- MP Modifiers
+(20076, 4410, 12), -- P. Atk. Modifiers
+(20076, 4411, 12), -- M. Atk. Modifiers
+(20076, 4412, 10), -- P. Def. Modifiers
+(20076, 4413, 10), -- M. Def. Modifiers
+(20076, 4414, 2), -- Armor Type
+(20076, 4415, 3), -- Weapon Type
+(20076, 4416, 6), -- Races
 -- Androscorpio Hunter
-(20077, 4408, 1), -- HP Increase (1x)
-(20077, 4409, 1), -- MP Increase (1x)
-(20077, 4410, 12), -- Slightly Strong P. Atk.
-(20077, 4411, 12), -- Slightly Strong M. Atk.
-(20077, 4412, 10), -- Slightly Weak P. Def.
-(20077, 4413, 10), -- Slightly Weak M. Def.
-(20077, 4414, 2), -- Standard Type
-(20077, 4415, 3), -- One-handed Sword
-(20077, 4416, 3), -- Beasts
+(20077, 4408, 1), -- HP Modifiers
+(20077, 4409, 1), -- MP Modifiers
+(20077, 4410, 12), -- P. Atk. Modifiers
+(20077, 4411, 12), -- M. Atk. Modifiers
+(20077, 4412, 10), -- P. Def. Modifiers
+(20077, 4413, 10), -- M. Def. Modifiers
+(20077, 4414, 2), -- Armor Type
+(20077, 4415, 3), -- Weapon Type
+(20077, 4416, 3), -- Races
 -- Whispering Wind
 (20078, 4046, 3), -- Sleep
-(20078, 4408, 1), -- HP Increase (1x)
-(20078, 4409, 1), -- MP Increase (1x)
-(20078, 4410, 10), -- Slightly Weak P. Atk.
-(20078, 4411, 10), -- Slightly Weak M. Atk.
-(20078, 4412, 12), -- Slightly Strong P. Def.
-(20078, 4413, 12), -- Slightly Strong M. Def.
-(20078, 4414, 2), -- Standard Type
-(20078, 4415, 3), -- One-handed Sword
-(20078, 4416, 7), -- Spirits
+(20078, 4408, 1), -- HP Modifiers
+(20078, 4409, 1), -- MP Modifiers
+(20078, 4410, 10), -- P. Atk. Modifiers
+(20078, 4411, 10), -- M. Atk. Modifiers
+(20078, 4412, 12), -- P. Def. Modifiers
+(20078, 4413, 12), -- M. Def. Modifiers
+(20078, 4414, 2), -- Armor Type
+(20078, 4415, 3), -- Weapon Type
+(20078, 4416, 7), -- Races
 -- Ant
-(20079, 4408, 1), -- HP Increase (1x)
-(20079, 4409, 1), -- MP Increase (1x)
-(20079, 4410, 12), -- Slightly Strong P. Atk.
-(20079, 4411, 12), -- Slightly Strong M. Atk.
-(20079, 4412, 10), -- Slightly Weak P. Def.
-(20079, 4413, 10), -- Slightly Weak M. Def.
-(20079, 4414, 2), -- Standard Type
-(20079, 4415, 3), -- One-handed Sword
-(20079, 4416, 12), -- Bugs
+(20079, 4408, 1), -- HP Modifiers
+(20079, 4409, 1), -- MP Modifiers
+(20079, 4410, 12), -- P. Atk. Modifiers
+(20079, 4411, 12), -- M. Atk. Modifiers
+(20079, 4412, 10), -- P. Def. Modifiers
+(20079, 4413, 10), -- M. Def. Modifiers
+(20079, 4414, 2), -- Armor Type
+(20079, 4415, 3), -- Weapon Type
+(20079, 4416, 12), -- Races
 -- Ant Captain
-(20080, 4408, 1), -- HP Increase (1x)
-(20080, 4409, 1), -- MP Increase (1x)
-(20080, 4410, 12), -- Slightly Strong P. Atk.
-(20080, 4411, 12), -- Slightly Strong M. Atk.
-(20080, 4412, 10), -- Slightly Weak P. Def.
-(20080, 4413, 10), -- Slightly Weak M. Def.
-(20080, 4414, 2), -- Standard Type
-(20080, 4415, 3), -- One-handed Sword
-(20080, 4416, 12), -- Bugs
+(20080, 4408, 1), -- HP Modifiers
+(20080, 4409, 1), -- MP Modifiers
+(20080, 4410, 12), -- P. Atk. Modifiers
+(20080, 4411, 12), -- M. Atk. Modifiers
+(20080, 4412, 10), -- P. Def. Modifiers
+(20080, 4413, 10), -- M. Def. Modifiers
+(20080, 4414, 2), -- Armor Type
+(20080, 4415, 3), -- Weapon Type
+(20080, 4416, 12), -- Races
 -- Ant Overseer
-(20081, 4030, 2), -- Might
-(20081, 4408, 10), -- HP Increase (2x)
-(20081, 4409, 1), -- MP Increase (1x)
-(20081, 4410, 12), -- Slightly Strong P. Atk.
-(20081, 4411, 12), -- Slightly Strong M. Atk.
-(20081, 4412, 10), -- Slightly Weak P. Def.
-(20081, 4413, 10), -- Slightly Weak M. Def.
-(20081, 4414, 2), -- Standard Type
-(20081, 4415, 3), -- One-handed Sword
-(20081, 4416, 12), -- Bugs
+(20081, 4030, 2), -- NPC Clan Might
+(20081, 4408, 10), -- HP Modifiers
+(20081, 4409, 1), -- MP Modifiers
+(20081, 4410, 12), -- P. Atk. Modifiers
+(20081, 4411, 12), -- M. Atk. Modifiers
+(20081, 4412, 10), -- P. Def. Modifiers
+(20081, 4413, 10), -- M. Def. Modifiers
+(20081, 4414, 2), -- Armor Type
+(20081, 4415, 3), -- Weapon Type
+(20081, 4416, 12), -- Races
 -- Ant Recruit
 (20082, 4035, 3), -- Poison
-(20082, 4408, 1), -- HP Increase (1x)
-(20082, 4409, 1), -- MP Increase (1x)
-(20082, 4410, 10), -- Slightly Weak P. Atk.
-(20082, 4411, 10), -- Slightly Weak M. Atk.
-(20082, 4412, 12), -- Slightly Strong P. Def.
-(20082, 4413, 12), -- Slightly Strong M. Def.
-(20082, 4414, 2), -- Standard Type
-(20082, 4415, 3), -- One-handed Sword
-(20082, 4416, 12), -- Bugs
+(20082, 4408, 1), -- HP Modifiers
+(20082, 4409, 1), -- MP Modifiers
+(20082, 4410, 10), -- P. Atk. Modifiers
+(20082, 4411, 10), -- M. Atk. Modifiers
+(20082, 4412, 12), -- P. Def. Modifiers
+(20082, 4413, 12), -- M. Def. Modifiers
+(20082, 4414, 2), -- Armor Type
+(20082, 4415, 3), -- Weapon Type
+(20082, 4416, 12), -- Races
 -- Granite Golem
-(20083, 4247, 3), -- Wind Strike
-(20083, 4273, 3), -- Resist Daggers/Rapier Weapon
-(20083, 4274, 1), -- Blunt Weapon Weak Point
-(20083, 4284, 5), -- Resist Bleed Attacks
-(20083, 4408, 1), -- HP Increase (1x)
-(20083, 4409, 1), -- MP Increase (1x)
-(20083, 4410, 10), -- Slightly Weak P. Atk.
-(20083, 4411, 10), -- Slightly Weak M. Atk.
-(20083, 4412, 19), -- Extremely Strong P. Def.
-(20083, 4413, 12), -- Slightly Strong M. Def.
-(20083, 4414, 2), -- Standard Type
-(20083, 4415, 3), -- One-handed Sword
-(20083, 4416, 2), -- Magic Creatures
+(20083, 4247, 3), -- NPC Windstrike - Slow
+(20083, 4273, 3), -- Resist Dagger
+(20083, 4274, 1), -- Blunt Attack Weak Point
+(20083, 4284, 5), -- Resist Bleeding
+(20083, 4408, 1), -- HP Modifiers
+(20083, 4409, 1), -- MP Modifiers
+(20083, 4410, 10), -- P. Atk. Modifiers
+(20083, 4411, 10), -- M. Atk. Modifiers
+(20083, 4412, 19), -- P. Def. Modifiers
+(20083, 4413, 12), -- M. Def. Modifiers
+(20083, 4414, 2), -- Armor Type
+(20083, 4415, 3), -- Weapon Type
+(20083, 4416, 2), -- Races
 (20083, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Ant Patrol
-(20084, 4067, 3), -- Blow
-(20084, 4408, 1), -- HP Increase (1x)
-(20084, 4409, 1), -- MP Increase (1x)
-(20084, 4410, 12), -- Slightly Strong P. Atk.
-(20084, 4411, 12), -- Slightly Strong M. Atk.
-(20084, 4412, 10), -- Slightly Weak P. Def.
-(20084, 4413, 10), -- Slightly Weak M. Def.
-(20084, 4414, 2), -- Standard Type
-(20084, 4415, 3), -- One-handed Sword
-(20084, 4416, 12), -- Bugs
+(20084, 4067, 3), -- NPC Mortal Blow
+(20084, 4408, 1), -- HP Modifiers
+(20084, 4409, 1), -- MP Modifiers
+(20084, 4410, 12), -- P. Atk. Modifiers
+(20084, 4411, 12), -- M. Atk. Modifiers
+(20084, 4412, 10), -- P. Def. Modifiers
+(20084, 4413, 10), -- M. Def. Modifiers
+(20084, 4414, 2), -- Armor Type
+(20084, 4415, 3), -- Weapon Type
+(20084, 4416, 12), -- Races
 -- Puncher
-(20085, 4250, 3), -- Twister
-(20085, 4273, 3), -- Resist Daggers/Rapier Weapon
-(20085, 4274, 1), -- Blunt Weapon Weak Point
-(20085, 4284, 5), -- Resist Bleed Attacks
-(20085, 4408, 1), -- HP Increase (1x)
-(20085, 4409, 1), -- MP Increase (1x)
-(20085, 4410, 12), -- Slightly Strong P. Atk.
-(20085, 4411, 12), -- Slightly Strong M. Atk.
-(20085, 4412, 10), -- Slightly Weak P. Def.
-(20085, 4413, 18), -- Extremely Strong M. Def.
-(20085, 4414, 2), -- Standard Type
-(20085, 4415, 3), -- One-handed Sword
-(20085, 4416, 2), -- Magic Creatures
+(20085, 4250, 3), -- NPC Twister - Slow
+(20085, 4273, 3), -- Resist Dagger
+(20085, 4274, 1), -- Blunt Attack Weak Point
+(20085, 4284, 5), -- Resist Bleeding
+(20085, 4408, 1), -- HP Modifiers
+(20085, 4409, 1), -- MP Modifiers
+(20085, 4410, 12), -- P. Atk. Modifiers
+(20085, 4411, 12), -- M. Atk. Modifiers
+(20085, 4412, 10), -- P. Def. Modifiers
+(20085, 4413, 18), -- M. Def. Modifiers
+(20085, 4414, 2), -- Armor Type
+(20085, 4415, 3), -- Weapon Type
+(20085, 4416, 2), -- Races
 (20085, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Ant Guard
 (20086, 4317, 1), -- Increase Rage Might
-(20086, 4408, 1), -- HP Increase (1x)
-(20086, 4409, 1), -- MP Increase (1x)
-(20086, 4410, 11), -- Average P. Atk.
-(20086, 4411, 11), -- Average M. Atk.
-(20086, 4412, 11), -- Average P. Def.
-(20086, 4413, 11), -- Average M. Def.
-(20086, 4414, 2), -- Standard Type
-(20086, 4415, 3), -- One-handed Sword
-(20086, 4416, 12), -- Bugs
+(20086, 4408, 1), -- HP Modifiers
+(20086, 4409, 1), -- MP Modifiers
+(20086, 4410, 11), -- P. Atk. Modifiers
+(20086, 4411, 11), -- M. Atk. Modifiers
+(20086, 4412, 11), -- P. Def. Modifiers
+(20086, 4413, 11), -- M. Def. Modifiers
+(20086, 4414, 2), -- Armor Type
+(20086, 4415, 3), -- Weapon Type
+(20086, 4416, 12), -- Races
 -- Ant Soldier
 (20087, 4035, 3), -- Poison
-(20087, 4408, 10), -- HP Increase (2x)
-(20087, 4409, 1), -- MP Increase (1x)
-(20087, 4410, 11), -- Average P. Atk.
-(20087, 4411, 11), -- Average M. Atk.
-(20087, 4412, 11), -- Average P. Def.
-(20087, 4413, 11), -- Average M. Def.
-(20087, 4414, 2), -- Standard Type
-(20087, 4415, 3), -- One-handed Sword
-(20087, 4416, 12), -- Bugs
+(20087, 4408, 10), -- HP Modifiers
+(20087, 4409, 1), -- MP Modifiers
+(20087, 4410, 11), -- P. Atk. Modifiers
+(20087, 4411, 11), -- M. Atk. Modifiers
+(20087, 4412, 11), -- P. Def. Modifiers
+(20087, 4413, 11), -- M. Def. Modifiers
+(20087, 4414, 2), -- Armor Type
+(20087, 4415, 3), -- Weapon Type
+(20087, 4416, 12), -- Races
 -- Ant Warrior Captain
-(20088, 4074, 2), -- Haste
-(20088, 4408, 10), -- HP Increase (2x)
-(20088, 4409, 1), -- MP Increase (1x)
-(20088, 4410, 12), -- Slightly Strong P. Atk.
-(20088, 4411, 12), -- Slightly Strong M. Atk.
-(20088, 4412, 10), -- Slightly Weak P. Def.
-(20088, 4413, 10), -- Slightly Weak M. Def.
-(20088, 4414, 2), -- Standard Type
-(20088, 4415, 3), -- One-handed Sword
-(20088, 4416, 12), -- Bugs
+(20088, 4074, 2), -- NPC Haste
+(20088, 4408, 10), -- HP Modifiers
+(20088, 4409, 1), -- MP Modifiers
+(20088, 4410, 12), -- P. Atk. Modifiers
+(20088, 4411, 12), -- M. Atk. Modifiers
+(20088, 4412, 10), -- P. Def. Modifiers
+(20088, 4413, 10), -- M. Def. Modifiers
+(20088, 4414, 2), -- Armor Type
+(20088, 4415, 3), -- Weapon Type
+(20088, 4416, 12), -- Races
 -- Noble Ant
-(20089, 4408, 1), -- HP Increase (1x)
-(20089, 4409, 1), -- MP Increase (1x)
-(20089, 4410, 11), -- Average P. Atk.
-(20089, 4411, 11), -- Average M. Atk.
-(20089, 4412, 11), -- Average P. Def.
-(20089, 4413, 11), -- Average M. Def.
-(20089, 4414, 2), -- Standard Type
-(20089, 4415, 3), -- One-handed Sword
-(20089, 4416, 12), -- Bugs
+(20089, 4408, 1), -- HP Modifiers
+(20089, 4409, 1), -- MP Modifiers
+(20089, 4410, 11), -- P. Atk. Modifiers
+(20089, 4411, 11), -- M. Atk. Modifiers
+(20089, 4412, 11), -- P. Def. Modifiers
+(20089, 4413, 11), -- M. Def. Modifiers
+(20089, 4414, 2), -- Armor Type
+(20089, 4415, 3), -- Weapon Type
+(20089, 4416, 12), -- Races
 -- Noble Ant Leader
-(20090, 4032, 3), -- Power Strike
-(20090, 4408, 10), -- HP Increase (2x)
-(20090, 4409, 1), -- MP Increase (1x)
-(20090, 4410, 12), -- Slightly Strong P. Atk.
-(20090, 4411, 12), -- Slightly Strong M. Atk.
-(20090, 4412, 10), -- Slightly Weak P. Def.
-(20090, 4413, 10), -- Slightly Weak M. Def.
-(20090, 4414, 2), -- Standard Type
-(20090, 4415, 3), -- One-handed Sword
-(20090, 4416, 12), -- Bugs
+(20090, 4032, 3), -- NPC Strike
+(20090, 4408, 10), -- HP Modifiers
+(20090, 4409, 1), -- MP Modifiers
+(20090, 4410, 12), -- P. Atk. Modifiers
+(20090, 4411, 12), -- M. Atk. Modifiers
+(20090, 4412, 10), -- P. Def. Modifiers
+(20090, 4413, 10), -- M. Def. Modifiers
+(20090, 4414, 2), -- Armor Type
+(20090, 4415, 3), -- Weapon Type
+(20090, 4416, 12), -- Races
 -- Young Fox
-(20091, 4408, 1), -- HP Increase (1x)
-(20091, 4409, 1), -- MP Increase (1x)
-(20091, 4410, 11), -- Average P. Atk.
-(20091, 4411, 11), -- Average M. Atk.
-(20091, 4412, 11), -- Average P. Def.
-(20091, 4413, 11), -- Average M. Def.
-(20091, 4414, 2), -- Standard Type
-(20091, 4415, 3), -- One-handed Sword
-(20091, 4416, 4), -- Animals
+(20091, 4408, 1), -- HP Modifiers
+(20091, 4409, 1), -- MP Modifiers
+(20091, 4410, 11), -- P. Atk. Modifiers
+(20091, 4411, 11), -- M. Atk. Modifiers
+(20091, 4412, 11), -- P. Def. Modifiers
+(20091, 4413, 11), -- M. Def. Modifiers
+(20091, 4414, 2), -- Armor Type
+(20091, 4415, 3), -- Weapon Type
+(20091, 4416, 4), -- Races
 -- Monster Eye
-(20092, 4151, 1), -- Wind Strike
-(20092, 4160, 1), -- Aura Burn
-(20092, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(20092, 4408, 1), -- HP Increase (1x)
-(20092, 4409, 1), -- MP Increase (1x)
-(20092, 4410, 11), -- Average P. Atk.
-(20092, 4411, 11), -- Average M. Atk.
-(20092, 4412, 11), -- Average P. Def.
-(20092, 4413, 11), -- Average M. Def.
-(20092, 4414, 2), -- Standard Type
-(20092, 4415, 5), -- Blunt Weapons
-(20092, 4416, 2), -- Magic Creatures
+(20092, 4151, 1), -- NPC Windstrike - Magic
+(20092, 4160, 1), -- NPC Aura Burn - Magic
+(20092, 4276, 1), -- Archery Attack Weak Point
+(20092, 4408, 1), -- HP Modifiers
+(20092, 4409, 1), -- MP Modifiers
+(20092, 4410, 11), -- P. Atk. Modifiers
+(20092, 4411, 11), -- M. Atk. Modifiers
+(20092, 4412, 11), -- P. Def. Modifiers
+(20092, 4413, 11), -- M. Def. Modifiers
+(20092, 4414, 2), -- Armor Type
+(20092, 4415, 5), -- Weapon Type
+(20092, 4416, 2), -- Races
 -- Orc Fighter
-(20093, 4408, 1), -- HP Increase (1x)
-(20093, 4409, 1), -- MP Increase (1x)
-(20093, 4410, 11), -- Average P. Atk.
-(20093, 4411, 11), -- Average M. Atk.
-(20093, 4412, 11), -- Average P. Def.
-(20093, 4413, 11), -- Average M. Def.
-(20093, 4414, 2), -- Standard Type
-(20093, 4415, 3), -- One-handed Sword
-(20093, 4416, 6), -- Humanoids
+(20093, 4408, 1), -- HP Modifiers
+(20093, 4409, 1), -- MP Modifiers
+(20093, 4410, 11), -- P. Atk. Modifiers
+(20093, 4411, 11), -- M. Atk. Modifiers
+(20093, 4412, 11), -- P. Def. Modifiers
+(20093, 4413, 11), -- M. Def. Modifiers
+(20093, 4414, 2), -- Armor Type
+(20093, 4415, 3), -- Weapon Type
+(20093, 4416, 6), -- Races
 -- Orc Marksman
-(20094, 4408, 1), -- HP Increase (1x)
-(20094, 4409, 1), -- MP Increase (1x)
-(20094, 4410, 12), -- Slightly Strong P. Atk.
-(20094, 4411, 12), -- Slightly Strong M. Atk.
-(20094, 4412, 10), -- Slightly Weak P. Def.
-(20094, 4413, 10), -- Slightly Weak M. Def.
-(20094, 4414, 2), -- Standard Type
-(20094, 4415, 9), -- Bows
-(20094, 4416, 6), -- Humanoids
+(20094, 4408, 1), -- HP Modifiers
+(20094, 4409, 1), -- MP Modifiers
+(20094, 4410, 12), -- P. Atk. Modifiers
+(20094, 4411, 12), -- M. Atk. Modifiers
+(20094, 4412, 10), -- P. Def. Modifiers
+(20094, 4413, 10), -- M. Def. Modifiers
+(20094, 4414, 2), -- Armor Type
+(20094, 4415, 9), -- Weapon Type
+(20094, 4416, 6), -- Races
 -- Vampire Bat
-(20095, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(20095, 4408, 1), -- HP Increase (1x)
-(20095, 4409, 1), -- MP Increase (1x)
-(20095, 4410, 11), -- Average P. Atk.
-(20095, 4411, 11), -- Average M. Atk.
-(20095, 4412, 11), -- Average P. Def.
-(20095, 4413, 11), -- Average M. Def.
-(20095, 4414, 2), -- Standard Type
-(20095, 4415, 5), -- Blunt Weapons
-(20095, 4416, 4), -- Animals
+(20095, 4276, 1), -- Archery Attack Weak Point
+(20095, 4408, 1), -- HP Modifiers
+(20095, 4409, 1), -- MP Modifiers
+(20095, 4410, 11), -- P. Atk. Modifiers
+(20095, 4411, 11), -- M. Atk. Modifiers
+(20095, 4412, 11), -- P. Def. Modifiers
+(20095, 4413, 11), -- M. Def. Modifiers
+(20095, 4414, 2), -- Armor Type
+(20095, 4415, 5), -- Weapon Type
+(20095, 4416, 4), -- Races
 -- Orc Lieutenant
-(20096, 4408, 1), -- HP Increase (1x)
-(20096, 4409, 1), -- MP Increase (1x)
-(20096, 4410, 10), -- Slightly Weak P. Atk.
-(20096, 4411, 10), -- Slightly Weak M. Atk.
-(20096, 4412, 12), -- Slightly Strong P. Def.
-(20096, 4413, 12), -- Slightly Strong M. Def.
-(20096, 4414, 2), -- Standard Type
-(20096, 4415, 3), -- One-handed Sword
-(20096, 4416, 6), -- Humanoids
+(20096, 4408, 1), -- HP Modifiers
+(20096, 4409, 1), -- MP Modifiers
+(20096, 4410, 10), -- P. Atk. Modifiers
+(20096, 4411, 10), -- M. Atk. Modifiers
+(20096, 4412, 12), -- P. Def. Modifiers
+(20096, 4413, 12), -- M. Def. Modifiers
+(20096, 4414, 2), -- Armor Type
+(20096, 4415, 3), -- Weapon Type
+(20096, 4416, 6), -- Races
 -- Drill Bat
-(20097, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(20097, 4408, 1), -- HP Increase (1x)
-(20097, 4409, 1), -- MP Increase (1x)
-(20097, 4410, 12), -- Slightly Strong P. Atk.
-(20097, 4411, 12), -- Slightly Strong M. Atk.
-(20097, 4412, 10), -- Slightly Weak P. Def.
-(20097, 4413, 10), -- Slightly Weak M. Def.
-(20097, 4414, 2), -- Standard Type
-(20097, 4415, 5), -- Blunt Weapons
-(20097, 4416, 4), -- Animals
+(20097, 4276, 1), -- Archery Attack Weak Point
+(20097, 4408, 1), -- HP Modifiers
+(20097, 4409, 1), -- MP Modifiers
+(20097, 4410, 12), -- P. Atk. Modifiers
+(20097, 4411, 12), -- M. Atk. Modifiers
+(20097, 4412, 10), -- P. Def. Modifiers
+(20097, 4413, 10), -- M. Def. Modifiers
+(20097, 4414, 2), -- Armor Type
+(20097, 4415, 5), -- Weapon Type
+(20097, 4416, 4), -- Races
 -- Orc Fighter Leader
-(20098, 4028, 1), -- Might
-(20098, 4408, 1), -- HP Increase (1x)
-(20098, 4409, 1), -- MP Increase (1x)
-(20098, 4410, 12), -- Slightly Strong P. Atk.
-(20098, 4411, 12), -- Slightly Strong M. Atk.
-(20098, 4412, 10), -- Slightly Weak P. Def.
-(20098, 4413, 10), -- Slightly Weak M. Def.
-(20098, 4414, 2), -- Standard Type
-(20098, 4415, 3), -- One-handed Sword
-(20098, 4416, 6), -- Humanoids
+(20098, 4028, 1), -- NPC Might
+(20098, 4408, 1), -- HP Modifiers
+(20098, 4409, 1), -- MP Modifiers
+(20098, 4410, 12), -- P. Atk. Modifiers
+(20098, 4411, 12), -- M. Atk. Modifiers
+(20098, 4412, 10), -- P. Def. Modifiers
+(20098, 4413, 10), -- M. Def. Modifiers
+(20098, 4414, 2), -- Armor Type
+(20098, 4415, 3), -- Weapon Type
+(20098, 4416, 6), -- Races
 -- Skeleton
-(20099, 4274, 1), -- Blunt Weapon Weak Point
-(20099, 4408, 1), -- HP Increase (1x)
-(20099, 4409, 1), -- MP Increase (1x)
-(20099, 4410, 12), -- Slightly Strong P. Atk.
-(20099, 4411, 12), -- Slightly Strong M. Atk.
-(20099, 4412, 10), -- Slightly Weak P. Def.
-(20099, 4413, 10), -- Slightly Weak M. Def.
-(20099, 4414, 2), -- Standard Type
-(20099, 4415, 7), -- Daggers
-(20099, 4416, 1), -- Undead
+(20099, 4274, 1), -- Blunt Attack Weak Point
+(20099, 4408, 1), -- HP Modifiers
+(20099, 4409, 1), -- MP Modifiers
+(20099, 4410, 12), -- P. Atk. Modifiers
+(20099, 4411, 12), -- M. Atk. Modifiers
+(20099, 4412, 10), -- P. Def. Modifiers
+(20099, 4413, 10), -- M. Def. Modifiers
+(20099, 4414, 2), -- Armor Type
+(20099, 4415, 7), -- Weapon Type
+(20099, 4416, 1), -- Races
 -- Skeleton Archer
-(20100, 4274, 1), -- Blunt Weapon Weak Point
-(20100, 4408, 1), -- HP Increase (1x)
-(20100, 4409, 1), -- MP Increase (1x)
-(20100, 4410, 12), -- Slightly Strong P. Atk.
-(20100, 4411, 12), -- Slightly Strong M. Atk.
-(20100, 4412, 10), -- Slightly Weak P. Def.
-(20100, 4413, 10), -- Slightly Weak M. Def.
-(20100, 4414, 2), -- Standard Type
-(20100, 4415, 9), -- Bows
-(20100, 4416, 1), -- Undead
+(20100, 4274, 1), -- Blunt Attack Weak Point
+(20100, 4408, 1), -- HP Modifiers
+(20100, 4409, 1), -- MP Modifiers
+(20100, 4410, 12), -- P. Atk. Modifiers
+(20100, 4411, 12), -- M. Atk. Modifiers
+(20100, 4412, 10), -- P. Def. Modifiers
+(20100, 4413, 10), -- M. Def. Modifiers
+(20100, 4414, 2), -- Armor Type
+(20100, 4415, 9), -- Weapon Type
+(20100, 4416, 1), -- Races
 -- Crasher
-(20101, 4247, 1), -- Wind Strike
-(20101, 4273, 3), -- Resist Daggers/Rapier Weapon
-(20101, 4274, 1), -- Blunt Weapon Weak Point
-(20101, 4284, 5), -- Resist Bleed Attacks
-(20101, 4408, 1), -- HP Increase (1x)
-(20101, 4409, 1), -- MP Increase (1x)
-(20101, 4410, 10), -- Slightly Weak P. Atk.
-(20101, 4411, 10), -- Slightly Weak M. Atk.
-(20101, 4412, 12), -- Slightly Strong P. Def.
-(20101, 4413, 19), -- Extremely Strong M. Def.
-(20101, 4414, 2), -- Standard Type
-(20101, 4415, 3), -- One-handed Sword
-(20101, 4416, 2), -- Magic Creatures
+(20101, 4247, 1), -- NPC Windstrike - Slow
+(20101, 4273, 3), -- Resist Dagger
+(20101, 4274, 1), -- Blunt Attack Weak Point
+(20101, 4284, 5), -- Resist Bleeding
+(20101, 4408, 1), -- HP Modifiers
+(20101, 4409, 1), -- MP Modifiers
+(20101, 4410, 10), -- P. Atk. Modifiers
+(20101, 4411, 10), -- M. Atk. Modifiers
+(20101, 4412, 12), -- P. Def. Modifiers
+(20101, 4413, 19), -- M. Def. Modifiers
+(20101, 4414, 2), -- Armor Type
+(20101, 4415, 3), -- Weapon Type
+(20101, 4416, 2), -- Races
 (20101, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Skeleton Marksman
-(20102, 4274, 1), -- Blunt Weapon Weak Point
-(20102, 4408, 1), -- HP Increase (1x)
-(20102, 4409, 1), -- MP Increase (1x)
-(20102, 4410, 12), -- Slightly Strong P. Atk.
-(20102, 4411, 12), -- Slightly Strong M. Atk.
-(20102, 4412, 10), -- Slightly Weak P. Def.
-(20102, 4413, 10), -- Slightly Weak M. Def.
-(20102, 4414, 2), -- Standard Type
-(20102, 4415, 9), -- Bows
-(20102, 4416, 1), -- Undead
+(20102, 4274, 1), -- Blunt Attack Weak Point
+(20102, 4408, 1), -- HP Modifiers
+(20102, 4409, 1), -- MP Modifiers
+(20102, 4410, 12), -- P. Atk. Modifiers
+(20102, 4411, 12), -- M. Atk. Modifiers
+(20102, 4412, 10), -- P. Def. Modifiers
+(20102, 4413, 10), -- M. Def. Modifiers
+(20102, 4414, 2), -- Armor Type
+(20102, 4415, 9), -- Weapon Type
+(20102, 4416, 1), -- Races
 -- Giant Spider
-(20103, 4408, 1), -- HP Increase (1x)
-(20103, 4409, 1), -- MP Increase (1x)
-(20103, 4410, 12), -- Slightly Strong P. Atk.
-(20103, 4411, 12), -- Slightly Strong M. Atk.
-(20103, 4412, 10), -- Slightly Weak P. Def.
-(20103, 4413, 10), -- Slightly Weak M. Def.
-(20103, 4414, 2), -- Standard Type
-(20103, 4415, 3), -- One-handed Sword
-(20103, 4416, 12), -- Bugs
+(20103, 4408, 1), -- HP Modifiers
+(20103, 4409, 1), -- MP Modifiers
+(20103, 4410, 12), -- P. Atk. Modifiers
+(20103, 4411, 12), -- M. Atk. Modifiers
+(20103, 4412, 10), -- P. Def. Modifiers
+(20103, 4413, 10), -- M. Def. Modifiers
+(20103, 4414, 2), -- Armor Type
+(20103, 4415, 3), -- Weapon Type
+(20103, 4416, 12), -- Races
 -- Skeleton Lord
-(20104, 4274, 1), -- Blunt Weapon Weak Point
-(20104, 4408, 1), -- HP Increase (1x)
-(20104, 4409, 1), -- MP Increase (1x)
-(20104, 4410, 10), -- Slightly Weak P. Atk.
-(20104, 4411, 10), -- Slightly Weak M. Atk.
-(20104, 4412, 12), -- Slightly Strong P. Def.
-(20104, 4413, 12), -- Slightly Strong M. Def.
-(20104, 4414, 2), -- Standard Type
-(20104, 4415, 7), -- Daggers
-(20104, 4416, 1), -- Undead
+(20104, 4274, 1), -- Blunt Attack Weak Point
+(20104, 4408, 1), -- HP Modifiers
+(20104, 4409, 1), -- MP Modifiers
+(20104, 4410, 10), -- P. Atk. Modifiers
+(20104, 4411, 10), -- M. Atk. Modifiers
+(20104, 4412, 12), -- P. Def. Modifiers
+(20104, 4413, 12), -- M. Def. Modifiers
+(20104, 4414, 2), -- Armor Type
+(20104, 4415, 7), -- Weapon Type
+(20104, 4416, 1), -- Races
 -- Dark Horror
 (20105, 4047, 1), -- Hold
-(20105, 4408, 1), -- HP Increase (1x)
-(20105, 4409, 1), -- MP Increase (1x)
-(20105, 4410, 12), -- Slightly Strong P. Atk.
-(20105, 4411, 12), -- Slightly Strong M. Atk.
-(20105, 4412, 10), -- Slightly Weak P. Def.
-(20105, 4413, 10), -- Slightly Weak M. Def.
-(20105, 4414, 2), -- Standard Type
-(20105, 4415, 3), -- One-handed Sword
-(20105, 4416, 1), -- Undead
+(20105, 4408, 1), -- HP Modifiers
+(20105, 4409, 1), -- MP Modifiers
+(20105, 4410, 12), -- P. Atk. Modifiers
+(20105, 4411, 12), -- M. Atk. Modifiers
+(20105, 4412, 10), -- P. Def. Modifiers
+(20105, 4413, 10), -- M. Def. Modifiers
+(20105, 4414, 2), -- Armor Type
+(20105, 4415, 3), -- Weapon Type
+(20105, 4416, 1), -- Races
 -- Talon Spider
-(20106, 4408, 1), -- HP Increase (1x)
-(20106, 4409, 1), -- MP Increase (1x)
-(20106, 4410, 12), -- Slightly Strong P. Atk.
-(20106, 4411, 12), -- Slightly Strong M. Atk.
-(20106, 4412, 10), -- Slightly Weak P. Def.
-(20106, 4413, 10), -- Slightly Weak M. Def.
-(20106, 4414, 2), -- Standard Type
-(20106, 4415, 3), -- One-handed Sword
-(20106, 4416, 12), -- Bugs
+(20106, 4408, 1), -- HP Modifiers
+(20106, 4409, 1), -- MP Modifiers
+(20106, 4410, 12), -- P. Atk. Modifiers
+(20106, 4411, 12), -- M. Atk. Modifiers
+(20106, 4412, 10), -- P. Def. Modifiers
+(20106, 4413, 10), -- M. Def. Modifiers
+(20106, 4414, 2), -- Armor Type
+(20106, 4415, 3), -- Weapon Type
+(20106, 4416, 12), -- Races
 -- Wererat
-(20107, 4408, 1), -- HP Increase (1x)
-(20107, 4409, 1), -- MP Increase (1x)
-(20107, 4410, 11), -- Average P. Atk.
-(20107, 4411, 11), -- Average M. Atk.
-(20107, 4412, 11), -- Average P. Def.
-(20107, 4413, 11), -- Average M. Def.
-(20107, 4414, 2), -- Standard Type
-(20107, 4415, 5), -- Blunt Weapons
-(20107, 4416, 6), -- Humanoids
+(20107, 4408, 1), -- HP Modifiers
+(20107, 4409, 1), -- MP Modifiers
+(20107, 4410, 11), -- P. Atk. Modifiers
+(20107, 4411, 11), -- M. Atk. Modifiers
+(20107, 4412, 11), -- P. Def. Modifiers
+(20107, 4413, 11), -- M. Def. Modifiers
+(20107, 4414, 2), -- Armor Type
+(20107, 4415, 5), -- Weapon Type
+(20107, 4416, 6), -- Races
 -- Blade Spider
-(20108, 4408, 1), -- HP Increase (1x)
-(20108, 4409, 1), -- MP Increase (1x)
-(20108, 4410, 12), -- Slightly Strong P. Atk.
-(20108, 4411, 12), -- Slightly Strong M. Atk.
-(20108, 4412, 10), -- Slightly Weak P. Def.
-(20108, 4413, 10), -- Slightly Weak M. Def.
-(20108, 4414, 2), -- Standard Type
-(20108, 4415, 3), -- One-handed Sword
-(20108, 4416, 12), -- Bugs
+(20108, 4408, 1), -- HP Modifiers
+(20108, 4409, 1), -- MP Modifiers
+(20108, 4410, 12), -- P. Atk. Modifiers
+(20108, 4411, 12), -- M. Atk. Modifiers
+(20108, 4412, 10), -- P. Def. Modifiers
+(20108, 4413, 10), -- M. Def. Modifiers
+(20108, 4414, 2), -- Armor Type
+(20108, 4415, 3), -- Weapon Type
+(20108, 4416, 12), -- Races
 -- Salamander
-(20109, 4001, 1), -- Windstrike
-(20109, 4100, 1), -- Prominence
-(20109, 4104, 1), -- Chill Flame
-(20109, 4408, 10), -- HP Increase (2x)
-(20109, 4409, 1), -- MP Increase (1x)
-(20109, 4410, 11), -- Average P. Atk.
-(20109, 4411, 11), -- Average M. Atk.
-(20109, 4412, 11), -- Average P. Def.
-(20109, 4413, 11), -- Average M. Def.
-(20109, 4414, 2), -- Standard Type
-(20109, 4415, 5), -- Blunt Weapons
-(20109, 4416, 7), -- Spirits
+(20109, 4001, 1), -- NPC Wind Strike
+(20109, 4100, 1), -- NPC Prominence
+(20109, 4104, 1), -- Flame
+(20109, 4408, 10), -- HP Modifiers
+(20109, 4409, 1), -- MP Modifiers
+(20109, 4410, 11), -- P. Atk. Modifiers
+(20109, 4411, 11), -- M. Atk. Modifiers
+(20109, 4412, 11), -- P. Def. Modifiers
+(20109, 4413, 11), -- M. Def. Modifiers
+(20109, 4414, 2), -- Armor Type
+(20109, 4415, 5), -- Weapon Type
+(20109, 4416, 7), -- Races
 -- Undine
-(20110, 4001, 1), -- Windstrike
-(20110, 4408, 10), -- HP Increase (2x)
-(20110, 4409, 1), -- MP Increase (1x)
-(20110, 4410, 11), -- Average P. Atk.
-(20110, 4411, 11), -- Average M. Atk.
-(20110, 4412, 11), -- Average P. Def.
-(20110, 4413, 11), -- Average M. Def.
-(20110, 4414, 2), -- Standard Type
-(20110, 4415, 5), -- Blunt Weapons
-(20110, 4416, 7), -- Spirits
+(20110, 4001, 1), -- NPC Wind Strike
+(20110, 4408, 10), -- HP Modifiers
+(20110, 4409, 1), -- MP Modifiers
+(20110, 4410, 11), -- P. Atk. Modifiers
+(20110, 4411, 11), -- M. Atk. Modifiers
+(20110, 4412, 11), -- P. Def. Modifiers
+(20110, 4413, 11), -- M. Def. Modifiers
+(20110, 4414, 2), -- Armor Type
+(20110, 4415, 5), -- Weapon Type
+(20110, 4416, 7), -- Races
 -- Wererat Leader
-(20111, 4408, 10), -- HP Increase (2x)
-(20111, 4409, 1), -- MP Increase (1x)
-(20111, 4410, 10), -- Slightly Weak P. Atk.
-(20111, 4411, 10), -- Slightly Weak M. Atk.
-(20111, 4412, 12), -- Slightly Strong P. Def.
-(20111, 4413, 12), -- Slightly Strong M. Def.
-(20111, 4414, 2), -- Standard Type
-(20111, 4415, 3), -- One-handed Sword
-(20111, 4416, 6), -- Humanoids
+(20111, 4408, 10), -- HP Modifiers
+(20111, 4409, 1), -- MP Modifiers
+(20111, 4410, 10), -- P. Atk. Modifiers
+(20111, 4411, 10), -- M. Atk. Modifiers
+(20111, 4412, 12), -- P. Def. Modifiers
+(20111, 4413, 12), -- M. Def. Modifiers
+(20111, 4414, 2), -- Armor Type
+(20111, 4415, 3), -- Weapon Type
+(20111, 4416, 6), -- Races
 -- Salamander Elder
-(20112, 4408, 10), -- HP Increase (2x)
-(20112, 4409, 1), -- MP Increase (1x)
-(20112, 4410, 12), -- Slightly Strong P. Atk.
-(20112, 4411, 12), -- Slightly Strong M. Atk.
-(20112, 4412, 10), -- Slightly Weak P. Def.
-(20112, 4413, 10), -- Slightly Weak M. Def.
-(20112, 4414, 2), -- Standard Type
-(20112, 4415, 5), -- Blunt Weapons
-(20112, 4416, 7), -- Spirits
+(20112, 4408, 10), -- HP Modifiers
+(20112, 4409, 1), -- MP Modifiers
+(20112, 4410, 12), -- P. Atk. Modifiers
+(20112, 4411, 12), -- M. Atk. Modifiers
+(20112, 4412, 10), -- P. Def. Modifiers
+(20112, 4413, 10), -- M. Def. Modifiers
+(20112, 4414, 2), -- Armor Type
+(20112, 4415, 5), -- Weapon Type
+(20112, 4416, 7), -- Races
 -- Undine Elder
-(20113, 4001, 1), -- Windstrike
-(20113, 4408, 10), -- HP Increase (2x)
-(20113, 4409, 1), -- MP Increase (1x)
-(20113, 4410, 10), -- Slightly Weak P. Atk.
-(20113, 4411, 10), -- Slightly Weak M. Atk.
-(20113, 4412, 12), -- Slightly Strong P. Def.
-(20113, 4413, 12), -- Slightly Strong M. Def.
-(20113, 4414, 2), -- Standard Type
-(20113, 4415, 5), -- Blunt Weapons
-(20113, 4416, 7), -- Spirits
+(20113, 4001, 1), -- NPC Wind Strike
+(20113, 4408, 10), -- HP Modifiers
+(20113, 4409, 1), -- MP Modifiers
+(20113, 4410, 10), -- P. Atk. Modifiers
+(20113, 4411, 10), -- M. Atk. Modifiers
+(20113, 4412, 12), -- P. Def. Modifiers
+(20113, 4413, 12), -- M. Def. Modifiers
+(20113, 4414, 2), -- Armor Type
+(20113, 4415, 5), -- Weapon Type
+(20113, 4416, 7), -- Races
 -- Salamander Noble
-(20114, 4408, 10), -- HP Increase (2x)
-(20114, 4409, 1), -- MP Increase (1x)
-(20114, 4410, 12), -- Slightly Strong P. Atk.
-(20114, 4411, 12), -- Slightly Strong M. Atk.
-(20114, 4412, 10), -- Slightly Weak P. Def.
-(20114, 4413, 10), -- Slightly Weak M. Def.
-(20114, 4414, 2), -- Standard Type
-(20114, 4415, 5), -- Blunt Weapons
-(20114, 4416, 7), -- Spirits
+(20114, 4408, 10), -- HP Modifiers
+(20114, 4409, 1), -- MP Modifiers
+(20114, 4410, 12), -- P. Atk. Modifiers
+(20114, 4411, 12), -- M. Atk. Modifiers
+(20114, 4412, 10), -- P. Def. Modifiers
+(20114, 4413, 10), -- M. Def. Modifiers
+(20114, 4414, 2), -- Armor Type
+(20114, 4415, 5), -- Weapon Type
+(20114, 4416, 7), -- Races
 -- Undine Noble
-(20115, 4001, 1), -- Windstrike
-(20115, 4408, 10), -- HP Increase (2x)
-(20115, 4409, 1), -- MP Increase (1x)
-(20115, 4410, 12), -- Slightly Strong P. Atk.
-(20115, 4411, 12), -- Slightly Strong M. Atk.
-(20115, 4412, 10), -- Slightly Weak P. Def.
-(20115, 4413, 10), -- Slightly Weak M. Def.
-(20115, 4414, 2), -- Standard Type
-(20115, 4415, 5), -- Blunt Weapons
-(20115, 4416, 7), -- Spirits
+(20115, 4001, 1), -- NPC Wind Strike
+(20115, 4408, 10), -- HP Modifiers
+(20115, 4409, 1), -- MP Modifiers
+(20115, 4410, 12), -- P. Atk. Modifiers
+(20115, 4411, 12), -- M. Atk. Modifiers
+(20115, 4412, 10), -- P. Def. Modifiers
+(20115, 4413, 10), -- M. Def. Modifiers
+(20115, 4414, 2), -- Armor Type
+(20115, 4415, 5), -- Weapon Type
+(20115, 4416, 7), -- Races
 -- Fox
-(20116, 4408, 1), -- HP Increase (1x)
-(20116, 4409, 1), -- MP Increase (1x)
-(20116, 4410, 11), -- Average P. Atk.
-(20116, 4411, 11), -- Average M. Atk.
-(20116, 4412, 11), -- Average P. Def.
-(20116, 4413, 11), -- Average M. Def.
-(20116, 4414, 2), -- Standard Type
-(20116, 4415, 3), -- One-handed Sword
-(20116, 4416, 4), -- Animals
+(20116, 4408, 1), -- HP Modifiers
+(20116, 4409, 1), -- MP Modifiers
+(20116, 4410, 11), -- P. Atk. Modifiers
+(20116, 4411, 11), -- M. Atk. Modifiers
+(20116, 4412, 11), -- P. Def. Modifiers
+(20116, 4413, 11), -- M. Def. Modifiers
+(20116, 4414, 2), -- Armor Type
+(20116, 4415, 3), -- Weapon Type
+(20116, 4416, 4), -- Races
 -- Dre Vanul
-(20117, 4001, 2), -- Windstrike
-(20117, 4100, 2), -- Prominence
-(20117, 4104, 2), -- Chill Flame
-(20117, 4408, 1), -- HP Increase (1x)
-(20117, 4409, 1), -- MP Increase (1x)
-(20117, 4410, 12), -- Slightly Strong P. Atk.
-(20117, 4411, 12), -- Slightly Strong M. Atk.
-(20117, 4412, 10), -- Slightly Weak P. Def.
-(20117, 4413, 10), -- Slightly Weak M. Def.
-(20117, 4414, 2), -- Standard Type
-(20117, 4415, 5), -- Blunt Weapons
-(20117, 4416, 9), -- Demons
+(20117, 4001, 2), -- NPC Wind Strike
+(20117, 4100, 2), -- NPC Prominence
+(20117, 4104, 2), -- Flame
+(20117, 4408, 1), -- HP Modifiers
+(20117, 4409, 1), -- MP Modifiers
+(20117, 4410, 12), -- P. Atk. Modifiers
+(20117, 4411, 12), -- M. Atk. Modifiers
+(20117, 4412, 10), -- P. Def. Modifiers
+(20117, 4413, 10), -- M. Def. Modifiers
+(20117, 4414, 2), -- Armor Type
+(20117, 4415, 5), -- Weapon Type
+(20117, 4416, 9), -- Races
 -- Dre Vanul Scout
-(20118, 4002, 2), -- HP Drain
-(20118, 4038, 3), -- Decrease Atk. Spd.
-(20118, 4100, 2), -- Prominence
-(20118, 4408, 1), -- HP Increase (1x)
-(20118, 4409, 1), -- MP Increase (1x)
-(20118, 4410, 12), -- Slightly Strong P. Atk.
-(20118, 4411, 12), -- Slightly Strong M. Atk.
-(20118, 4412, 10), -- Slightly Weak P. Def.
-(20118, 4413, 10), -- Slightly Weak M. Def.
-(20118, 4414, 2), -- Standard Type
-(20118, 4415, 5), -- Blunt Weapons
-(20118, 4416, 9), -- Demons
+(20118, 4002, 2), -- NPC HP Drain
+(20118, 4038, 3), -- Decrease Atk.Spd.
+(20118, 4100, 2), -- NPC Prominence
+(20118, 4408, 1), -- HP Modifiers
+(20118, 4409, 1), -- MP Modifiers
+(20118, 4410, 12), -- P. Atk. Modifiers
+(20118, 4411, 12), -- M. Atk. Modifiers
+(20118, 4412, 10), -- P. Def. Modifiers
+(20118, 4413, 10), -- M. Def. Modifiers
+(20118, 4414, 2), -- Armor Type
+(20118, 4415, 5), -- Weapon Type
+(20118, 4416, 9), -- Races
 -- Elder Fox
-(20119, 4408, 1), -- HP Increase (1x)
-(20119, 4409, 1), -- MP Increase (1x)
-(20119, 4410, 12), -- Slightly Strong P. Atk.
-(20119, 4411, 12), -- Slightly Strong M. Atk.
-(20119, 4412, 10), -- Slightly Weak P. Def.
-(20119, 4413, 10), -- Slightly Weak M. Def.
-(20119, 4414, 2), -- Standard Type
-(20119, 4415, 3), -- One-handed Sword
-(20119, 4416, 4), -- Animals
+(20119, 4408, 1), -- HP Modifiers
+(20119, 4409, 1), -- MP Modifiers
+(20119, 4410, 12), -- P. Atk. Modifiers
+(20119, 4411, 12), -- M. Atk. Modifiers
+(20119, 4412, 10), -- P. Def. Modifiers
+(20119, 4413, 10), -- M. Def. Modifiers
+(20119, 4414, 2), -- Armor Type
+(20119, 4415, 3), -- Weapon Type
+(20119, 4416, 4), -- Races
 -- Wolf
-(20120, 4408, 1), -- HP Increase (1x)
-(20120, 4409, 1), -- MP Increase (1x)
-(20120, 4410, 11), -- Average P. Atk.
-(20120, 4411, 11), -- Average M. Atk.
-(20120, 4412, 11), -- Average P. Def.
-(20120, 4413, 11), -- Average M. Def.
-(20120, 4414, 2), -- Standard Type
-(20120, 4415, 3), -- One-handed Sword
-(20120, 4416, 4), -- Animals
+(20120, 4408, 1), -- HP Modifiers
+(20120, 4409, 1), -- MP Modifiers
+(20120, 4410, 11), -- P. Atk. Modifiers
+(20120, 4411, 11), -- M. Atk. Modifiers
+(20120, 4412, 11), -- P. Def. Modifiers
+(20120, 4413, 11), -- M. Def. Modifiers
+(20120, 4414, 2), -- Armor Type
+(20120, 4415, 3), -- Weapon Type
+(20120, 4416, 4), -- Races
 -- Giant Toad
-(20121, 4408, 1), -- HP Increase (1x)
-(20121, 4409, 1), -- MP Increase (1x)
-(20121, 4410, 11), -- Average P. Atk.
-(20121, 4411, 11), -- Average M. Atk.
-(20121, 4412, 11), -- Average P. Def.
-(20121, 4413, 11), -- Average M. Def.
-(20121, 4414, 2), -- Standard Type
-(20121, 4415, 3), -- One-handed Sword
-(20121, 4416, 4), -- Animals
+(20121, 4408, 1), -- HP Modifiers
+(20121, 4409, 1), -- MP Modifiers
+(20121, 4410, 11), -- P. Atk. Modifiers
+(20121, 4411, 11), -- M. Atk. Modifiers
+(20121, 4412, 11), -- P. Def. Modifiers
+(20121, 4413, 11), -- M. Def. Modifiers
+(20121, 4414, 2), -- Armor Type
+(20121, 4415, 3), -- Weapon Type
+(20121, 4416, 4), -- Races
 -- Orc
-(20130, 4408, 1), -- HP Increase (1x)
-(20130, 4409, 1), -- MP Increase (1x)
-(20130, 4410, 11), -- Average P. Atk.
-(20130, 4411, 11), -- Average M. Atk.
-(20130, 4412, 11), -- Average P. Def.
-(20130, 4413, 11), -- Average M. Def.
-(20130, 4414, 2), -- Standard Type
-(20130, 4415, 5), -- Blunt Weapons
-(20130, 4416, 6), -- Humanoids
+(20130, 4408, 1), -- HP Modifiers
+(20130, 4409, 1), -- MP Modifiers
+(20130, 4410, 11), -- P. Atk. Modifiers
+(20130, 4411, 11), -- M. Atk. Modifiers
+(20130, 4412, 11), -- P. Def. Modifiers
+(20130, 4413, 11), -- M. Def. Modifiers
+(20130, 4414, 2), -- Armor Type
+(20130, 4415, 5), -- Weapon Type
+(20130, 4416, 6), -- Races
 -- Orc Grunt
-(20131, 4408, 1), -- HP Increase (1x)
-(20131, 4409, 1), -- MP Increase (1x)
-(20131, 4410, 11), -- Average P. Atk.
-(20131, 4411, 11), -- Average M. Atk.
-(20131, 4412, 11), -- Average P. Def.
-(20131, 4413, 11), -- Average M. Def.
-(20131, 4414, 2), -- Standard Type
-(20131, 4415, 5), -- Blunt Weapons
-(20131, 4416, 6), -- Humanoids
+(20131, 4408, 1), -- HP Modifiers
+(20131, 4409, 1), -- MP Modifiers
+(20131, 4410, 11), -- P. Atk. Modifiers
+(20131, 4411, 11), -- M. Atk. Modifiers
+(20131, 4412, 11), -- P. Def. Modifiers
+(20131, 4413, 11), -- M. Def. Modifiers
+(20131, 4414, 2), -- Armor Type
+(20131, 4415, 5), -- Weapon Type
+(20131, 4416, 6), -- Races
 -- Werewolf
-(20132, 4408, 1), -- HP Increase (1x)
-(20132, 4409, 1), -- MP Increase (1x)
-(20132, 4410, 11), -- Average P. Atk.
-(20132, 4411, 11), -- Average M. Atk.
-(20132, 4412, 11), -- Average P. Def.
-(20132, 4413, 11), -- Average M. Def.
-(20132, 4414, 2), -- Standard Type
-(20132, 4415, 5), -- Blunt Weapons
-(20132, 4416, 6), -- Humanoids
+(20132, 4408, 1), -- HP Modifiers
+(20132, 4409, 1), -- MP Modifiers
+(20132, 4410, 11), -- P. Atk. Modifiers
+(20132, 4411, 11), -- M. Atk. Modifiers
+(20132, 4412, 11), -- P. Def. Modifiers
+(20132, 4413, 11), -- M. Def. Modifiers
+(20132, 4414, 2), -- Armor Type
+(20132, 4415, 5), -- Weapon Type
+(20132, 4416, 6), -- Races
 -- Bugbear
-(20133, 4408, 1), -- HP Increase (1x)
-(20133, 4409, 1), -- MP Increase (1x)
-(20133, 4410, 11), -- Average P. Atk.
-(20133, 4411, 11), -- Average M. Atk.
-(20133, 4412, 11), -- Average P. Def.
-(20133, 4413, 11), -- Average M. Def.
-(20133, 4414, 2), -- Standard Type
-(20133, 4415, 5), -- Blunt Weapons
-(20133, 4416, 11), -- Giants
+(20133, 4408, 1), -- HP Modifiers
+(20133, 4409, 1), -- MP Modifiers
+(20133, 4410, 11), -- P. Atk. Modifiers
+(20133, 4411, 11), -- M. Atk. Modifiers
+(20133, 4412, 11), -- P. Def. Modifiers
+(20133, 4413, 11), -- M. Def. Modifiers
+(20133, 4414, 2), -- Armor Type
+(20133, 4415, 5), -- Weapon Type
+(20133, 4416, 11), -- Races
 -- Cave Maiden
 (20134, 4047, 5), -- Hold
-(20134, 4408, 1), -- HP Increase (1x)
-(20134, 4409, 1), -- MP Increase (1x)
-(20134, 4410, 12), -- Slightly Strong P. Atk.
-(20134, 4411, 12), -- Slightly Strong M. Atk.
-(20134, 4412, 10), -- Slightly Weak P. Def.
-(20134, 4413, 10), -- Slightly Weak M. Def.
-(20134, 4414, 2), -- Standard Type
-(20134, 4415, 3), -- One-handed Sword
-(20134, 4416, 3), -- Beasts
+(20134, 4408, 1), -- HP Modifiers
+(20134, 4409, 1), -- MP Modifiers
+(20134, 4410, 12), -- P. Atk. Modifiers
+(20134, 4411, 12), -- M. Atk. Modifiers
+(20134, 4412, 10), -- P. Def. Modifiers
+(20134, 4413, 10), -- M. Def. Modifiers
+(20134, 4414, 2), -- Armor Type
+(20134, 4415, 3), -- Weapon Type
+(20134, 4416, 3), -- Races
 -- Alligator
-(20135, 4071, 5), -- Resist Bow/Crossbow Weapons
-(20135, 4408, 1), -- HP Increase (1x)
-(20135, 4409, 1), -- MP Increase (1x)
-(20135, 4410, 12), -- Slightly Strong P. Atk.
-(20135, 4411, 12), -- Slightly Strong M. Atk.
-(20135, 4412, 10), -- Slightly Weak P. Def.
-(20135, 4413, 10), -- Slightly Weak M. Def.
-(20135, 4414, 2), -- Standard Type
-(20135, 4415, 3), -- One-handed Sword
-(20135, 4416, 4), -- Animals
+(20135, 4071, 5), -- Resist Archery
+(20135, 4408, 1), -- HP Modifiers
+(20135, 4409, 1), -- MP Modifiers
+(20135, 4410, 12), -- P. Atk. Modifiers
+(20135, 4411, 12), -- M. Atk. Modifiers
+(20135, 4412, 10), -- P. Def. Modifiers
+(20135, 4413, 10), -- M. Def. Modifiers
+(20135, 4414, 2), -- Armor Type
+(20135, 4415, 3), -- Weapon Type
+(20135, 4416, 4), -- Races
 -- Death Knight
-(20136, 4067, 5), -- Blow
-(20136, 4072, 5), -- Stun
-(20136, 4091, 1), -- Spirit Ogre
-(20136, 4408, 11), -- HP Increase (3x)
-(20136, 4409, 1), -- MP Increase (1x)
-(20136, 4410, 13), -- Slightly Strong P. Atk.
-(20136, 4411, 13), -- Slightly Strong M. Atk.
-(20136, 4412, 12), -- Slightly Strong P. Def.
-(20136, 4413, 12), -- Slightly Strong M. Def.
-(20136, 4414, 2), -- Standard Type
-(20136, 4415, 3), -- One-handed Sword
-(20136, 4416, 1), -- Undead
+(20136, 4067, 5), -- NPC Mortal Blow
+(20136, 4072, 5), -- Shock
+(20136, 4091, 1), -- NPC Ogre Spirit Totem
+(20136, 4408, 11), -- HP Modifiers
+(20136, 4409, 1), -- MP Modifiers
+(20136, 4410, 13), -- P. Atk. Modifiers
+(20136, 4411, 13), -- M. Atk. Modifiers
+(20136, 4412, 12), -- P. Def. Modifiers
+(20136, 4413, 12), -- M. Def. Modifiers
+(20136, 4414, 2), -- Armor Type
+(20136, 4415, 3), -- Weapon Type
+(20136, 4416, 1), -- Races
 -- Drake
-(20137, 4071, 5), -- Resist Bow/Crossbow Weapons
-(20137, 4078, 5), -- Flame Strike
-(20137, 4408, 1), -- HP Increase (1x)
-(20137, 4409, 1), -- MP Increase (1x)
-(20137, 4410, 12), -- Slightly Strong P. Atk.
-(20137, 4411, 12), -- Slightly Strong M. Atk.
-(20137, 4412, 10), -- Slightly Weak P. Def.
-(20137, 4413, 10), -- Slightly Weak M. Def.
-(20137, 4414, 2), -- Standard Type
-(20137, 4415, 3), -- One-handed Sword
-(20137, 4416, 10), -- Dragons
+(20137, 4071, 5), -- Resist Archery
+(20137, 4078, 5), -- NPC Flamestrike
+(20137, 4408, 1), -- HP Modifiers
+(20137, 4409, 1), -- MP Modifiers
+(20137, 4410, 12), -- P. Atk. Modifiers
+(20137, 4411, 12), -- M. Atk. Modifiers
+(20137, 4412, 10), -- P. Def. Modifiers
+(20137, 4413, 10), -- M. Def. Modifiers
+(20137, 4414, 2), -- Armor Type
+(20137, 4415, 3), -- Weapon Type
+(20137, 4416, 10), -- Races
 -- Gargoyle
-(20138, 4273, 3), -- Resist Daggers/Rapier Weapon
-(20138, 4274, 1), -- Blunt Weapon Weak Point
-(20138, 4408, 1), -- HP Increase (1x)
-(20138, 4409, 1), -- MP Increase (1x)
-(20138, 4410, 11), -- Average P. Atk.
-(20138, 4411, 11), -- Average M. Atk.
-(20138, 4412, 11), -- Average P. Def.
-(20138, 4413, 11), -- Average M. Def.
-(20138, 4414, 2), -- Standard Type
-(20138, 4415, 3), -- One-handed Sword
-(20138, 4416, 2), -- Magic Creatures
+(20138, 4273, 3), -- Resist Dagger
+(20138, 4274, 1), -- Blunt Attack Weak Point
+(20138, 4408, 1), -- HP Modifiers
+(20138, 4409, 1), -- MP Modifiers
+(20138, 4410, 11), -- P. Atk. Modifiers
+(20138, 4411, 11), -- M. Atk. Modifiers
+(20138, 4412, 11), -- P. Def. Modifiers
+(20138, 4413, 11), -- M. Def. Modifiers
+(20138, 4414, 2), -- Armor Type
+(20138, 4415, 3), -- Weapon Type
+(20138, 4416, 2), -- Races
 (20138, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Giant Bee
-(20139, 4408, 1), -- HP Increase (1x)
-(20139, 4409, 1), -- MP Increase (1x)
-(20139, 4410, 11), -- Average P. Atk.
-(20139, 4411, 11), -- Average M. Atk.
-(20139, 4412, 11), -- Average P. Def.
-(20139, 4413, 11), -- Average M. Def.
-(20139, 4414, 2), -- Standard Type
-(20139, 4415, 3), -- One-handed Sword
-(20139, 4416, 12), -- Bugs
+(20139, 4408, 1), -- HP Modifiers
+(20139, 4409, 1), -- MP Modifiers
+(20139, 4410, 11), -- P. Atk. Modifiers
+(20139, 4411, 11), -- M. Atk. Modifiers
+(20139, 4412, 11), -- P. Def. Modifiers
+(20139, 4413, 11), -- M. Def. Modifiers
+(20139, 4414, 2), -- Armor Type
+(20139, 4415, 3), -- Weapon Type
+(20139, 4416, 12), -- Races
 -- Giant Leech
-(20140, 4071, 5), -- Resist Bow/Crossbow Weapons
-(20140, 4408, 1), -- HP Increase (1x)
-(20140, 4409, 1), -- MP Increase (1x)
-(20140, 4410, 11), -- Average P. Atk.
-(20140, 4411, 11), -- Average M. Atk.
-(20140, 4412, 11), -- Average P. Def.
-(20140, 4413, 11), -- Average M. Def.
-(20140, 4414, 2), -- Standard Type
-(20140, 4415, 3), -- One-handed Sword
-(20140, 4416, 12), -- Bugs
+(20140, 4071, 5), -- Resist Archery
+(20140, 4408, 1), -- HP Modifiers
+(20140, 4409, 1), -- MP Modifiers
+(20140, 4410, 11), -- P. Atk. Modifiers
+(20140, 4411, 11), -- M. Atk. Modifiers
+(20140, 4412, 11), -- P. Def. Modifiers
+(20140, 4413, 11), -- M. Def. Modifiers
+(20140, 4414, 2), -- Armor Type
+(20140, 4415, 3), -- Weapon Type
+(20140, 4416, 12), -- Races
 -- Giant Wild Hog
-(20141, 4408, 1), -- HP Increase (1x)
-(20141, 4409, 1), -- MP Increase (1x)
-(20141, 4410, 11), -- Average P. Atk.
-(20141, 4411, 11), -- Average M. Atk.
-(20141, 4412, 11), -- Average P. Def.
-(20141, 4413, 11), -- Average M. Def.
-(20141, 4414, 2), -- Standard Type
-(20141, 4415, 3), -- One-handed Sword
-(20141, 4416, 4), -- Animals
+(20141, 4408, 1), -- HP Modifiers
+(20141, 4409, 1), -- MP Modifiers
+(20141, 4410, 11), -- P. Atk. Modifiers
+(20141, 4411, 11), -- M. Atk. Modifiers
+(20141, 4412, 11), -- P. Def. Modifiers
+(20141, 4413, 11), -- M. Def. Modifiers
+(20141, 4414, 2), -- Armor Type
+(20141, 4415, 3), -- Weapon Type
+(20141, 4416, 4), -- Races
 -- Griffon
-(20142, 4408, 1), -- HP Increase (1x)
-(20142, 4409, 1), -- MP Increase (1x)
-(20142, 4410, 11), -- Average P. Atk.
-(20142, 4411, 11), -- Average M. Atk.
-(20142, 4412, 11), -- Average P. Def.
-(20142, 4413, 11), -- Average M. Def.
-(20142, 4414, 2), -- Standard Type
-(20142, 4415, 3), -- One-handed Sword
-(20142, 4416, 3), -- Beasts
+(20142, 4408, 1), -- HP Modifiers
+(20142, 4409, 1), -- MP Modifiers
+(20142, 4410, 11), -- P. Atk. Modifiers
+(20142, 4411, 11), -- M. Atk. Modifiers
+(20142, 4412, 11), -- P. Def. Modifiers
+(20142, 4413, 11), -- M. Def. Modifiers
+(20142, 4414, 2), -- Armor Type
+(20142, 4415, 3), -- Weapon Type
+(20142, 4416, 3), -- Races
 -- Grizzly
-(20143, 4408, 1), -- HP Increase (1x)
-(20143, 4409, 1), -- MP Increase (1x)
-(20143, 4410, 11), -- Average P. Atk.
-(20143, 4411, 11), -- Average M. Atk.
-(20143, 4412, 11), -- Average P. Def.
-(20143, 4413, 11), -- Average M. Def.
-(20143, 4414, 2), -- Standard Type
-(20143, 4415, 3), -- One-handed Sword
-(20143, 4416, 4), -- Animals
+(20143, 4408, 1), -- HP Modifiers
+(20143, 4409, 1), -- MP Modifiers
+(20143, 4410, 11), -- P. Atk. Modifiers
+(20143, 4411, 11), -- M. Atk. Modifiers
+(20143, 4412, 11), -- P. Def. Modifiers
+(20143, 4413, 11), -- M. Def. Modifiers
+(20143, 4414, 2), -- Armor Type
+(20143, 4415, 3), -- Weapon Type
+(20143, 4416, 4), -- Races
 -- Hangman Tree
 (20144, 4047, 3), -- Hold
-(20144, 4277, 5), -- Resist Poison Attacks
-(20144, 4408, 1), -- HP Increase (1x)
-(20144, 4409, 1), -- MP Increase (1x)
-(20144, 4410, 11), -- Average P. Atk.
-(20144, 4411, 11), -- Average M. Atk.
-(20144, 4412, 11), -- Average P. Def.
-(20144, 4413, 11), -- Average M. Def.
-(20144, 4414, 2), -- Standard Type
-(20144, 4415, 3), -- One-handed Sword
-(20144, 4416, 5), -- Plants
+(20144, 4277, 5), -- Resist Poison
+(20144, 4408, 1), -- HP Modifiers
+(20144, 4409, 1), -- MP Modifiers
+(20144, 4410, 11), -- P. Atk. Modifiers
+(20144, 4411, 11), -- M. Atk. Modifiers
+(20144, 4412, 11), -- P. Def. Modifiers
+(20144, 4413, 11), -- M. Def. Modifiers
+(20144, 4414, 2), -- Armor Type
+(20144, 4415, 3), -- Weapon Type
+(20144, 4416, 5), -- Races
 -- Harpy
-(20145, 4076, 2), -- Slow
-(20145, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(20145, 4408, 1), -- HP Increase (1x)
-(20145, 4409, 1), -- MP Increase (1x)
-(20145, 4410, 11), -- Average P. Atk.
-(20145, 4411, 11), -- Average M. Atk.
-(20145, 4412, 11), -- Average P. Def.
-(20145, 4413, 11), -- Average M. Def.
-(20145, 4414, 2), -- Standard Type
-(20145, 4415, 3), -- One-handed Sword
-(20145, 4416, 3), -- Beasts
+(20145, 4076, 2), -- Reduction in movement speed
+(20145, 4276, 1), -- Archery Attack Weak Point
+(20145, 4408, 1), -- HP Modifiers
+(20145, 4409, 1), -- MP Modifiers
+(20145, 4410, 11), -- P. Atk. Modifiers
+(20145, 4411, 11), -- M. Atk. Modifiers
+(20145, 4412, 11), -- P. Def. Modifiers
+(20145, 4413, 11), -- M. Def. Modifiers
+(20145, 4414, 2), -- Armor Type
+(20145, 4415, 3), -- Weapon Type
+(20145, 4416, 3), -- Races
 -- Headless Knight
-(20146, 4078, 5), -- Flame Strike
-(20146, 4408, 1), -- HP Increase (1x)
-(20146, 4409, 1), -- MP Increase (1x)
-(20146, 4410, 10), -- Slightly Weak P. Atk.
-(20146, 4411, 10), -- Slightly Weak M. Atk.
-(20146, 4412, 12), -- Slightly Strong P. Def.
-(20146, 4413, 12), -- Slightly Strong M. Def.
-(20146, 4414, 2), -- Standard Type
-(20146, 4415, 3), -- One-handed Sword
-(20146, 4416, 1), -- Undead
+(20146, 4078, 5), -- NPC Flamestrike
+(20146, 4408, 1), -- HP Modifiers
+(20146, 4409, 1), -- MP Modifiers
+(20146, 4410, 10), -- P. Atk. Modifiers
+(20146, 4411, 10), -- M. Atk. Modifiers
+(20146, 4412, 12), -- P. Def. Modifiers
+(20146, 4413, 12), -- M. Def. Modifiers
+(20146, 4414, 2), -- Armor Type
+(20146, 4415, 3), -- Weapon Type
+(20146, 4416, 1), -- Races
 -- Hobgoblin
-(20147, 4408, 1), -- HP Increase (1x)
-(20147, 4409, 1), -- MP Increase (1x)
-(20147, 4410, 11), -- Average P. Atk.
-(20147, 4411, 11), -- Average M. Atk.
-(20147, 4412, 11), -- Average P. Def.
-(20147, 4413, 11), -- Average M. Def.
-(20147, 4414, 2), -- Standard Type
-(20147, 4415, 5), -- Blunt Weapons
-(20147, 4416, 6), -- Humanoids
+(20147, 4408, 1), -- HP Modifiers
+(20147, 4409, 1), -- MP Modifiers
+(20147, 4410, 11), -- P. Atk. Modifiers
+(20147, 4411, 11), -- M. Atk. Modifiers
+(20147, 4412, 11), -- P. Def. Modifiers
+(20147, 4413, 11), -- M. Def. Modifiers
+(20147, 4414, 2), -- Armor Type
+(20147, 4415, 5), -- Weapon Type
+(20147, 4416, 6), -- Races
 -- Hungry Spirit
-(20148, 4408, 1), -- HP Increase (1x)
-(20148, 4409, 1), -- MP Increase (1x)
-(20148, 4410, 12), -- Slightly Strong P. Atk.
-(20148, 4411, 12), -- Slightly Strong M. Atk.
-(20148, 4412, 10), -- Slightly Weak P. Def.
-(20148, 4413, 10), -- Slightly Weak M. Def.
-(20148, 4414, 2), -- Standard Type
-(20148, 4415, 3), -- One-handed Sword
-(20148, 4416, 1), -- Undead
+(20148, 4408, 1), -- HP Modifiers
+(20148, 4409, 1), -- MP Modifiers
+(20148, 4410, 12), -- P. Atk. Modifiers
+(20148, 4411, 12), -- M. Atk. Modifiers
+(20148, 4412, 10), -- P. Def. Modifiers
+(20148, 4413, 10), -- M. Def. Modifiers
+(20148, 4414, 2), -- Armor Type
+(20148, 4415, 3), -- Weapon Type
+(20148, 4416, 1), -- Races
 -- Iron Golem
 (20149, 4249, 3), -- Decrease Speed
-(20149, 4273, 3), -- Resist Daggers/Rapier Weapon
-(20149, 4274, 1), -- Blunt Weapon Weak Point
-(20149, 4284, 5), -- Resist Bleed Attacks
-(20149, 4408, 1), -- HP Increase (1x)
-(20149, 4409, 1), -- MP Increase (1x)
-(20149, 4410, 10), -- Slightly Weak P. Atk.
-(20149, 4411, 10), -- Slightly Weak M. Atk.
-(20149, 4412, 12), -- Slightly Strong P. Def.
-(20149, 4413, 19), -- Extremely Strong M. Def.
-(20149, 4414, 2), -- Standard Type
-(20149, 4415, 3), -- One-handed Sword
-(20149, 4416, 2), -- Magic Creatures
+(20149, 4273, 3), -- Resist Dagger
+(20149, 4274, 1), -- Blunt Attack Weak Point
+(20149, 4284, 5), -- Resist Bleeding
+(20149, 4408, 1), -- HP Modifiers
+(20149, 4409, 1), -- MP Modifiers
+(20149, 4410, 10), -- P. Atk. Modifiers
+(20149, 4411, 10), -- M. Atk. Modifiers
+(20149, 4412, 12), -- P. Def. Modifiers
+(20149, 4413, 19), -- M. Def. Modifiers
+(20149, 4414, 2), -- Armor Type
+(20149, 4415, 3), -- Weapon Type
+(20149, 4416, 2), -- Races
 (20149, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- King Bugbear
-(20150, 4408, 1), -- HP Increase (1x)
-(20150, 4409, 1), -- MP Increase (1x)
-(20150, 4410, 12), -- Slightly Strong P. Atk.
-(20150, 4411, 12), -- Slightly Strong M. Atk.
-(20150, 4412, 10), -- Slightly Weak P. Def.
-(20150, 4413, 10), -- Slightly Weak M. Def.
-(20150, 4414, 2), -- Standard Type
-(20150, 4415, 5), -- Blunt Weapons
-(20150, 4416, 11), -- Giants
+(20150, 4408, 1), -- HP Modifiers
+(20150, 4409, 1), -- MP Modifiers
+(20150, 4410, 12), -- P. Atk. Modifiers
+(20150, 4411, 12), -- M. Atk. Modifiers
+(20150, 4412, 10), -- P. Def. Modifiers
+(20150, 4413, 10), -- M. Def. Modifiers
+(20150, 4414, 2), -- Armor Type
+(20150, 4415, 5), -- Weapon Type
+(20150, 4416, 11), -- Races
 -- Kobold
-(20151, 4408, 1), -- HP Increase (1x)
-(20151, 4409, 1), -- MP Increase (1x)
-(20151, 4410, 11), -- Average P. Atk.
-(20151, 4411, 11), -- Average M. Atk.
-(20151, 4412, 11), -- Average P. Def.
-(20151, 4413, 11), -- Average M. Def.
-(20151, 4414, 2), -- Standard Type
-(20151, 4415, 5), -- Blunt Weapons
-(20151, 4416, 6), -- Humanoids
+(20151, 4408, 1), -- HP Modifiers
+(20151, 4409, 1), -- MP Modifiers
+(20151, 4410, 11), -- P. Atk. Modifiers
+(20151, 4411, 11), -- M. Atk. Modifiers
+(20151, 4412, 11), -- P. Def. Modifiers
+(20151, 4413, 11), -- M. Def. Modifiers
+(20151, 4414, 2), -- Armor Type
+(20151, 4415, 5), -- Weapon Type
+(20151, 4416, 6), -- Races
 -- Lizardman
-(20152, 4408, 1), -- HP Increase (1x)
-(20152, 4409, 1), -- MP Increase (1x)
-(20152, 4410, 11), -- Average P. Atk.
-(20152, 4411, 11), -- Average M. Atk.
-(20152, 4412, 11), -- Average P. Def.
-(20152, 4413, 11), -- Average M. Def.
-(20152, 4414, 2), -- Standard Type
-(20152, 4415, 3), -- One-handed Sword
-(20152, 4416, 6), -- Humanoids
+(20152, 4408, 1), -- HP Modifiers
+(20152, 4409, 1), -- MP Modifiers
+(20152, 4410, 11), -- P. Atk. Modifiers
+(20152, 4411, 11), -- M. Atk. Modifiers
+(20152, 4412, 11), -- P. Def. Modifiers
+(20152, 4413, 11), -- M. Def. Modifiers
+(20152, 4414, 2), -- Armor Type
+(20152, 4415, 3), -- Weapon Type
+(20152, 4416, 6), -- Races
 -- Magical Weaver
-(20153, 4039, 1), -- Mana Drain
-(20153, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(20153, 4408, 1), -- HP Increase (1x)
-(20153, 4409, 1), -- MP Increase (1x)
-(20153, 4410, 12), -- Slightly Strong P. Atk.
-(20153, 4411, 12), -- Slightly Strong M. Atk.
-(20153, 4412, 10), -- Slightly Weak P. Def.
-(20153, 4413, 10), -- Slightly Weak M. Def.
-(20153, 4414, 2), -- Standard Type
-(20153, 4415, 3), -- One-handed Sword
-(20153, 4416, 2), -- Magic Creatures
+(20153, 4039, 1), -- NPC MP Drain
+(20153, 4276, 1), -- Archery Attack Weak Point
+(20153, 4408, 1), -- HP Modifiers
+(20153, 4409, 1), -- MP Modifiers
+(20153, 4410, 12), -- P. Atk. Modifiers
+(20153, 4411, 12), -- M. Atk. Modifiers
+(20153, 4412, 10), -- P. Def. Modifiers
+(20153, 4413, 10), -- M. Def. Modifiers
+(20153, 4414, 2), -- Armor Type
+(20153, 4415, 3), -- Weapon Type
+(20153, 4416, 2), -- Races
 -- Mandragora Sprout
-(20154, 4001, 2), -- Windstrike
-(20154, 4002, 2), -- HP Drain
-(20154, 4076, 2), -- Slow
-(20154, 4277, 5), -- Resist Poison Attacks
-(20154, 4408, 1), -- HP Increase (1x)
-(20154, 4409, 1), -- MP Increase (1x)
-(20154, 4410, 11), -- Average P. Atk.
-(20154, 4411, 11), -- Average M. Atk.
-(20154, 4412, 11), -- Average P. Def.
-(20154, 4413, 11), -- Average M. Def.
-(20154, 4414, 2), -- Standard Type
-(20154, 4415, 3), -- One-handed Sword
-(20154, 4416, 5), -- Plants
+(20154, 4001, 2), -- NPC Wind Strike
+(20154, 4002, 2), -- NPC HP Drain
+(20154, 4076, 2), -- Reduction in movement speed
+(20154, 4277, 5), -- Resist Poison
+(20154, 4408, 1), -- HP Modifiers
+(20154, 4409, 1), -- MP Modifiers
+(20154, 4410, 11), -- P. Atk. Modifiers
+(20154, 4411, 11), -- M. Atk. Modifiers
+(20154, 4412, 11), -- P. Def. Modifiers
+(20154, 4413, 11), -- M. Def. Modifiers
+(20154, 4414, 2), -- Armor Type
+(20154, 4415, 3), -- Weapon Type
+(20154, 4416, 5), -- Races
 -- Mandragora Sapling
-(20155, 4277, 5), -- Resist Poison Attacks
-(20155, 4408, 1), -- HP Increase (1x)
-(20155, 4409, 1), -- MP Increase (1x)
-(20155, 4410, 12), -- Slightly Strong P. Atk.
-(20155, 4411, 12), -- Slightly Strong M. Atk.
-(20155, 4412, 10), -- Slightly Weak P. Def.
-(20155, 4413, 10), -- Slightly Weak M. Def.
-(20155, 4414, 2), -- Standard Type
-(20155, 4415, 3), -- One-handed Sword
-(20155, 4416, 5), -- Plants
+(20155, 4277, 5), -- Resist Poison
+(20155, 4408, 1), -- HP Modifiers
+(20155, 4409, 1), -- MP Modifiers
+(20155, 4410, 12), -- P. Atk. Modifiers
+(20155, 4411, 12), -- M. Atk. Modifiers
+(20155, 4412, 10), -- P. Def. Modifiers
+(20155, 4413, 10), -- M. Def. Modifiers
+(20155, 4414, 2), -- Armor Type
+(20155, 4415, 3), -- Weapon Type
+(20155, 4416, 5), -- Races
 -- Mandragora Blossom
-(20156, 4277, 5), -- Resist Poison Attacks
-(20156, 4408, 1), -- HP Increase (1x)
-(20156, 4409, 1), -- MP Increase (1x)
-(20156, 4410, 12), -- Slightly Strong P. Atk.
-(20156, 4411, 12), -- Slightly Strong M. Atk.
-(20156, 4412, 10), -- Slightly Weak P. Def.
-(20156, 4413, 10), -- Slightly Weak M. Def.
-(20156, 4414, 2), -- Standard Type
-(20156, 4415, 3), -- One-handed Sword
-(20156, 4416, 5), -- Plants
+(20156, 4277, 5), -- Resist Poison
+(20156, 4408, 1), -- HP Modifiers
+(20156, 4409, 1), -- MP Modifiers
+(20156, 4410, 12), -- P. Atk. Modifiers
+(20156, 4411, 12), -- M. Atk. Modifiers
+(20156, 4412, 10), -- P. Def. Modifiers
+(20156, 4413, 10), -- M. Def. Modifiers
+(20156, 4414, 2), -- Armor Type
+(20156, 4415, 3), -- Weapon Type
+(20156, 4416, 5), -- Races
 -- Marsh Stakato
-(20157, 4032, 2), -- Power Strike
-(20157, 4408, 1), -- HP Increase (1x)
-(20157, 4409, 1), -- MP Increase (1x)
-(20157, 4410, 12), -- Slightly Strong P. Atk.
-(20157, 4411, 12), -- Slightly Strong M. Atk.
-(20157, 4412, 10), -- Slightly Weak P. Def.
-(20157, 4413, 10), -- Slightly Weak M. Def.
-(20157, 4414, 2), -- Standard Type
-(20157, 4415, 7), -- Daggers
-(20157, 4416, 6), -- Humanoids
+(20157, 4032, 2), -- NPC Strike
+(20157, 4408, 1), -- HP Modifiers
+(20157, 4409, 1), -- MP Modifiers
+(20157, 4410, 12), -- P. Atk. Modifiers
+(20157, 4411, 12), -- M. Atk. Modifiers
+(20157, 4412, 10), -- P. Def. Modifiers
+(20157, 4413, 10), -- M. Def. Modifiers
+(20157, 4414, 2), -- Armor Type
+(20157, 4415, 7), -- Weapon Type
+(20157, 4416, 6), -- Races
 -- Medusa
 (20158, 4320, 3), -- Poison
-(20158, 4408, 1), -- HP Increase (1x)
-(20158, 4409, 1), -- MP Increase (1x)
-(20158, 4410, 11), -- Average P. Atk.
-(20158, 4411, 11), -- Average M. Atk.
-(20158, 4412, 11), -- Average P. Def.
-(20158, 4413, 11), -- Average M. Def.
-(20158, 4414, 2), -- Standard Type
-(20158, 4415, 3), -- One-handed Sword
-(20158, 4416, 3), -- Beasts
+(20158, 4408, 1), -- HP Modifiers
+(20158, 4409, 1), -- MP Modifiers
+(20158, 4410, 11), -- P. Atk. Modifiers
+(20158, 4411, 11), -- M. Atk. Modifiers
+(20158, 4412, 11), -- P. Def. Modifiers
+(20158, 4413, 11), -- M. Def. Modifiers
+(20158, 4414, 2), -- Armor Type
+(20158, 4415, 3), -- Weapon Type
+(20158, 4416, 3), -- Races
 -- Minotaur
-(20159, 4408, 1), -- HP Increase (1x)
-(20159, 4409, 1), -- MP Increase (1x)
-(20159, 4410, 12), -- Slightly Strong P. Atk.
-(20159, 4411, 12), -- Slightly Strong M. Atk.
-(20159, 4412, 10), -- Slightly Weak P. Def.
-(20159, 4413, 10), -- Slightly Weak M. Def.
-(20159, 4414, 2), -- Standard Type
-(20159, 4415, 5), -- Blunt Weapons
-(20159, 4416, 11), -- Giants
+(20159, 4408, 1), -- HP Modifiers
+(20159, 4409, 1), -- MP Modifiers
+(20159, 4410, 12), -- P. Atk. Modifiers
+(20159, 4411, 12), -- M. Atk. Modifiers
+(20159, 4412, 10), -- P. Def. Modifiers
+(20159, 4413, 10), -- M. Def. Modifiers
+(20159, 4414, 2), -- Armor Type
+(20159, 4415, 5), -- Weapon Type
+(20159, 4416, 11), -- Races
 -- Neer Crawler
-(20160, 4001, 2), -- Windstrike
-(20160, 4002, 2), -- HP Drain
-(20160, 4037, 1), -- Weakness
-(20160, 4408, 1), -- HP Increase (1x)
-(20160, 4409, 1), -- MP Increase (1x)
-(20160, 4410, 12), -- Slightly Strong P. Atk.
-(20160, 4411, 12), -- Slightly Strong M. Atk.
-(20160, 4412, 10), -- Slightly Weak P. Def.
-(20160, 4413, 10), -- Slightly Weak M. Def.
-(20160, 4414, 2), -- Standard Type
-(20160, 4415, 3), -- One-handed Sword
-(20160, 4416, 1), -- Undead
+(20160, 4001, 2), -- NPC Wind Strike
+(20160, 4002, 2), -- NPC HP Drain
+(20160, 4037, 1), -- Decrease P.Atk
+(20160, 4408, 1), -- HP Modifiers
+(20160, 4409, 1), -- MP Modifiers
+(20160, 4410, 12), -- P. Atk. Modifiers
+(20160, 4411, 12), -- M. Atk. Modifiers
+(20160, 4412, 10), -- P. Def. Modifiers
+(20160, 4413, 10), -- M. Def. Modifiers
+(20160, 4414, 2), -- Armor Type
+(20160, 4415, 3), -- Weapon Type
+(20160, 4416, 1), -- Races
 -- Oel Mahum
-(20161, 4408, 1), -- HP Increase (1x)
-(20161, 4409, 1), -- MP Increase (1x)
-(20161, 4410, 11), -- Average P. Atk.
-(20161, 4411, 11), -- Average M. Atk.
-(20161, 4412, 11), -- Average P. Def.
-(20161, 4413, 11), -- Average M. Def.
-(20161, 4414, 2), -- Standard Type
-(20161, 4415, 3), -- One-handed Sword
-(20161, 4416, 6), -- Humanoids
+(20161, 4408, 1), -- HP Modifiers
+(20161, 4409, 1), -- MP Modifiers
+(20161, 4410, 11), -- P. Atk. Modifiers
+(20161, 4411, 11), -- M. Atk. Modifiers
+(20161, 4412, 11), -- P. Def. Modifiers
+(20161, 4413, 11), -- M. Def. Modifiers
+(20161, 4414, 2), -- Armor Type
+(20161, 4415, 3), -- Weapon Type
+(20161, 4416, 6), -- Races
 (20161, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Ogre
-(20162, 4408, 1), -- HP Increase (1x)
-(20162, 4409, 1), -- MP Increase (1x)
-(20162, 4410, 12), -- Slightly Strong P. Atk.
-(20162, 4411, 12), -- Slightly Strong M. Atk.
-(20162, 4412, 10), -- Slightly Weak P. Def.
-(20162, 4413, 10), -- Slightly Weak M. Def.
-(20162, 4414, 2), -- Standard Type
-(20162, 4415, 4), -- One-handed Sword
-(20162, 4416, 11), -- Giants
+(20162, 4408, 1), -- HP Modifiers
+(20162, 4409, 1), -- MP Modifiers
+(20162, 4410, 12), -- P. Atk. Modifiers
+(20162, 4411, 12), -- M. Atk. Modifiers
+(20162, 4412, 10), -- P. Def. Modifiers
+(20162, 4413, 10), -- M. Def. Modifiers
+(20162, 4414, 2), -- Armor Type
+(20162, 4415, 4), -- Weapon Type
+(20162, 4416, 11), -- Races
 -- Ol Mahum
-(20163, 4408, 1), -- HP Increase (1x)
-(20163, 4409, 1), -- MP Increase (1x)
-(20163, 4410, 12), -- Slightly Strong P. Atk.
-(20163, 4411, 12), -- Slightly Strong M. Atk.
-(20163, 4412, 10), -- Slightly Weak P. Def.
-(20163, 4413, 10), -- Slightly Weak M. Def.
-(20163, 4414, 2), -- Standard Type
-(20163, 4415, 3), -- One-handed Sword
-(20163, 4416, 6), -- Humanoids
+(20163, 4408, 1), -- HP Modifiers
+(20163, 4409, 1), -- MP Modifiers
+(20163, 4410, 12), -- P. Atk. Modifiers
+(20163, 4411, 12), -- M. Atk. Modifiers
+(20163, 4412, 10), -- P. Def. Modifiers
+(20163, 4413, 10), -- M. Def. Modifiers
+(20163, 4414, 2), -- Armor Type
+(20163, 4415, 3), -- Weapon Type
+(20163, 4416, 6), -- Races
 -- Ol Mahum Archer
-(20164, 4408, 1), -- HP Increase (1x)
-(20164, 4409, 1), -- MP Increase (1x)
-(20164, 4410, 12), -- Slightly Strong P. Atk.
-(20164, 4411, 12), -- Slightly Strong M. Atk.
-(20164, 4412, 10), -- Slightly Weak P. Def.
-(20164, 4413, 10), -- Slightly Weak M. Def.
-(20164, 4414, 2), -- Standard Type
-(20164, 4415, 9), -- Bows
-(20164, 4416, 6), -- Humanoids
+(20164, 4408, 1), -- HP Modifiers
+(20164, 4409, 1), -- MP Modifiers
+(20164, 4410, 12), -- P. Atk. Modifiers
+(20164, 4411, 12), -- M. Atk. Modifiers
+(20164, 4412, 10), -- P. Def. Modifiers
+(20164, 4413, 10), -- M. Def. Modifiers
+(20164, 4414, 2), -- Armor Type
+(20164, 4415, 9), -- Weapon Type
+(20164, 4416, 6), -- Races
 -- Ol Mahum Champion
-(20165, 4032, 2), -- Power Strike
-(20165, 4408, 1), -- HP Increase (1x)
-(20165, 4409, 1), -- MP Increase (1x)
-(20165, 4410, 12), -- Slightly Strong P. Atk.
-(20165, 4411, 12), -- Slightly Strong M. Atk.
-(20165, 4412, 10), -- Slightly Weak P. Def.
-(20165, 4413, 10), -- Slightly Weak M. Def.
-(20165, 4414, 2), -- Standard Type
-(20165, 4415, 3), -- One-handed Sword
-(20165, 4416, 6), -- Humanoids
+(20165, 4032, 2), -- NPC Strike
+(20165, 4408, 1), -- HP Modifiers
+(20165, 4409, 1), -- MP Modifiers
+(20165, 4410, 12), -- P. Atk. Modifiers
+(20165, 4411, 12), -- M. Atk. Modifiers
+(20165, 4412, 10), -- P. Def. Modifiers
+(20165, 4413, 10), -- M. Def. Modifiers
+(20165, 4414, 2), -- Armor Type
+(20165, 4415, 3), -- Weapon Type
+(20165, 4416, 6), -- Races
 -- Succubus
-(20166, 4408, 1), -- HP Increase (1x)
-(20166, 4409, 1), -- MP Increase (1x)
-(20166, 4410, 11), -- Average P. Atk.
-(20166, 4411, 11), -- Average M. Atk.
-(20166, 4412, 11), -- Average P. Def.
-(20166, 4413, 11), -- Average M. Def.
-(20166, 4414, 2), -- Standard Type
-(20166, 4415, 3), -- One-handed Sword
-(20166, 4416, 9), -- Demons
+(20166, 4408, 1), -- HP Modifiers
+(20166, 4409, 1), -- MP Modifiers
+(20166, 4410, 11), -- P. Atk. Modifiers
+(20166, 4411, 11), -- M. Atk. Modifiers
+(20166, 4412, 11), -- P. Def. Modifiers
+(20166, 4413, 11), -- M. Def. Modifiers
+(20166, 4414, 2), -- Armor Type
+(20166, 4415, 3), -- Weapon Type
+(20166, 4416, 9), -- Races
 -- Serpent Slave
-(20167, 4408, 1), -- HP Increase (1x)
-(20167, 4409, 1), -- MP Increase (1x)
-(20167, 4410, 11), -- Average P. Atk.
-(20167, 4411, 11), -- Average M. Atk.
-(20167, 4412, 11), -- Average P. Def.
-(20167, 4413, 11), -- Average M. Def.
-(20167, 4414, 2), -- Standard Type
-(20167, 4415, 3), -- One-handed Sword
-(20167, 4416, 3), -- Beasts
+(20167, 4408, 1), -- HP Modifiers
+(20167, 4409, 1), -- MP Modifiers
+(20167, 4410, 11), -- P. Atk. Modifiers
+(20167, 4411, 11), -- M. Atk. Modifiers
+(20167, 4412, 11), -- P. Def. Modifiers
+(20167, 4413, 11), -- M. Def. Modifiers
+(20167, 4414, 2), -- Armor Type
+(20167, 4415, 3), -- Weapon Type
+(20167, 4416, 3), -- Races
 -- Silenos
-(20168, 4408, 1), -- HP Increase (1x)
-(20168, 4409, 1), -- MP Increase (1x)
-(20168, 4410, 11), -- Average P. Atk.
-(20168, 4411, 11), -- Average M. Atk.
-(20168, 4412, 11), -- Average P. Def.
-(20168, 4413, 11), -- Average M. Def.
-(20168, 4414, 2), -- Standard Type
-(20168, 4415, 5), -- Blunt Weapons
-(20168, 4416, 6), -- Humanoids
+(20168, 4408, 1), -- HP Modifiers
+(20168, 4409, 1), -- MP Modifiers
+(20168, 4410, 11), -- P. Atk. Modifiers
+(20168, 4411, 11), -- M. Atk. Modifiers
+(20168, 4412, 11), -- P. Def. Modifiers
+(20168, 4413, 11), -- M. Def. Modifiers
+(20168, 4414, 2), -- Armor Type
+(20168, 4415, 5), -- Weapon Type
+(20168, 4416, 6), -- Races
 -- Skeleton Royal Guard
-(20169, 4274, 1), -- Blunt Weapon Weak Point
-(20169, 4408, 1), -- HP Increase (1x)
-(20169, 4409, 1), -- MP Increase (1x)
-(20169, 4410, 12), -- Slightly Strong P. Atk.
-(20169, 4411, 12), -- Slightly Strong M. Atk.
-(20169, 4412, 10), -- Slightly Weak P. Def.
-(20169, 4413, 10), -- Slightly Weak M. Def.
-(20169, 4414, 2), -- Standard Type
-(20169, 4415, 7), -- Daggers
-(20169, 4416, 1), -- Undead
+(20169, 4274, 1), -- Blunt Attack Weak Point
+(20169, 4408, 1), -- HP Modifiers
+(20169, 4409, 1), -- MP Modifiers
+(20169, 4410, 12), -- P. Atk. Modifiers
+(20169, 4411, 12), -- M. Atk. Modifiers
+(20169, 4412, 10), -- P. Def. Modifiers
+(20169, 4413, 10), -- M. Def. Modifiers
+(20169, 4414, 2), -- Armor Type
+(20169, 4415, 7), -- Weapon Type
+(20169, 4416, 1), -- Races
 -- Spartoi
-(20170, 4274, 1), -- Blunt Weapon Weak Point
-(20170, 4408, 1), -- HP Increase (1x)
-(20170, 4409, 1), -- MP Increase (1x)
-(20170, 4410, 12), -- Slightly Strong P. Atk.
-(20170, 4411, 12), -- Slightly Strong M. Atk.
-(20170, 4412, 10), -- Slightly Weak P. Def.
-(20170, 4413, 10), -- Slightly Weak M. Def.
-(20170, 4414, 2), -- Standard Type
-(20170, 4415, 7), -- Daggers
-(20170, 4416, 1), -- Undead
+(20170, 4274, 1), -- Blunt Attack Weak Point
+(20170, 4408, 1), -- HP Modifiers
+(20170, 4409, 1), -- MP Modifiers
+(20170, 4410, 12), -- P. Atk. Modifiers
+(20170, 4411, 12), -- M. Atk. Modifiers
+(20170, 4412, 10), -- P. Def. Modifiers
+(20170, 4413, 10), -- M. Def. Modifiers
+(20170, 4414, 2), -- Armor Type
+(20170, 4415, 7), -- Weapon Type
+(20170, 4416, 1), -- Races
 -- Specter
 (20171, 4047, 2), -- Hold
-(20171, 4408, 1), -- HP Increase (1x)
-(20171, 4409, 1), -- MP Increase (1x)
-(20171, 4410, 11), -- Average P. Atk.
-(20171, 4411, 11), -- Average M. Atk.
-(20171, 4412, 11), -- Average P. Def.
-(20171, 4413, 11), -- Average M. Def.
-(20171, 4414, 2), -- Standard Type
-(20171, 4415, 3), -- One-handed Sword
-(20171, 4416, 1), -- Undead
+(20171, 4408, 1), -- HP Modifiers
+(20171, 4409, 1), -- MP Modifiers
+(20171, 4410, 11), -- P. Atk. Modifiers
+(20171, 4411, 11), -- M. Atk. Modifiers
+(20171, 4412, 11), -- P. Def. Modifiers
+(20171, 4413, 11), -- M. Def. Modifiers
+(20171, 4414, 2), -- Armor Type
+(20171, 4415, 3), -- Weapon Type
+(20171, 4416, 1), -- Races
 -- Sylph
-(20172, 4001, 1), -- Windstrike
-(20172, 4408, 1), -- HP Increase (1x)
-(20172, 4409, 1), -- MP Increase (1x)
-(20172, 4410, 12), -- Slightly Strong P. Atk.
-(20172, 4411, 12), -- Slightly Strong M. Atk.
-(20172, 4412, 10), -- Slightly Weak P. Def.
-(20172, 4413, 10), -- Slightly Weak M. Def.
-(20172, 4414, 2), -- Standard Type
-(20172, 4415, 3), -- One-handed Sword
-(20172, 4416, 7), -- Spirits
+(20172, 4001, 1), -- NPC Wind Strike
+(20172, 4408, 1), -- HP Modifiers
+(20172, 4409, 1), -- MP Modifiers
+(20172, 4410, 12), -- P. Atk. Modifiers
+(20172, 4411, 12), -- M. Atk. Modifiers
+(20172, 4412, 10), -- P. Def. Modifiers
+(20172, 4413, 10), -- M. Def. Modifiers
+(20172, 4414, 2), -- Armor Type
+(20172, 4415, 3), -- Weapon Type
+(20172, 4416, 7), -- Races
 -- Troll
-(20173, 4408, 1), -- HP Increase (1x)
-(20173, 4409, 1), -- MP Increase (1x)
-(20173, 4410, 12), -- Slightly Strong P. Atk.
-(20173, 4411, 12), -- Slightly Strong M. Atk.
-(20173, 4412, 10), -- Slightly Weak P. Def.
-(20173, 4413, 10), -- Slightly Weak M. Def.
-(20173, 4414, 2), -- Standard Type
-(20173, 4415, 5), -- Blunt Weapons
-(20173, 4416, 11), -- Giants
+(20173, 4408, 1), -- HP Modifiers
+(20173, 4409, 1), -- MP Modifiers
+(20173, 4410, 12), -- P. Atk. Modifiers
+(20173, 4411, 12), -- M. Atk. Modifiers
+(20173, 4412, 10), -- P. Def. Modifiers
+(20173, 4413, 10), -- M. Def. Modifiers
+(20173, 4414, 2), -- Armor Type
+(20173, 4415, 5), -- Weapon Type
+(20173, 4416, 11), -- Races
 -- Two-Headed Giant
-(20174, 4408, 1), -- HP Increase (1x)
-(20174, 4409, 1), -- MP Increase (1x)
-(20174, 4410, 10), -- Slightly Weak P. Atk.
-(20174, 4411, 10), -- Slightly Weak M. Atk.
-(20174, 4412, 12), -- Slightly Strong P. Def.
-(20174, 4413, 12), -- Slightly Strong M. Def.
-(20174, 4414, 2), -- Standard Type
-(20174, 4415, 5), -- Blunt Weapons
-(20174, 4416, 11), -- Giants
+(20174, 4408, 1), -- HP Modifiers
+(20174, 4409, 1), -- MP Modifiers
+(20174, 4410, 10), -- P. Atk. Modifiers
+(20174, 4411, 10), -- M. Atk. Modifiers
+(20174, 4412, 12), -- P. Def. Modifiers
+(20174, 4413, 12), -- M. Def. Modifiers
+(20174, 4414, 2), -- Armor Type
+(20174, 4415, 5), -- Weapon Type
+(20174, 4416, 11), -- Races
 -- Walking Fungus
-(20175, 4277, 5), -- Resist Poison Attacks
-(20175, 4408, 1), -- HP Increase (1x)
-(20175, 4409, 1), -- MP Increase (1x)
-(20175, 4410, 11), -- Average P. Atk.
-(20175, 4411, 11), -- Average M. Atk.
-(20175, 4412, 11), -- Average P. Def.
-(20175, 4413, 11), -- Average M. Def.
-(20175, 4414, 2), -- Standard Type
-(20175, 4415, 3), -- One-handed Sword
-(20175, 4416, 5), -- Plants
+(20175, 4277, 5), -- Resist Poison
+(20175, 4408, 1), -- HP Modifiers
+(20175, 4409, 1), -- MP Modifiers
+(20175, 4410, 11), -- P. Atk. Modifiers
+(20175, 4411, 11), -- M. Atk. Modifiers
+(20175, 4412, 11), -- P. Def. Modifiers
+(20175, 4413, 11), -- M. Def. Modifiers
+(20175, 4414, 2), -- Armor Type
+(20175, 4415, 3), -- Weapon Type
+(20175, 4416, 5), -- Races
 -- Wyrm
-(20176, 4071, 5), -- Resist Bow/Crossbow Weapons
-(20176, 4087, 3), -- Blaze
-(20176, 4408, 1), -- HP Increase (1x)
-(20176, 4409, 1), -- MP Increase (1x)
-(20176, 4410, 12), -- Slightly Strong P. Atk.
-(20176, 4411, 12), -- Slightly Strong M. Atk.
-(20176, 4412, 10), -- Slightly Weak P. Def.
-(20176, 4413, 10), -- Slightly Weak M. Def.
-(20176, 4414, 2), -- Standard Type
-(20176, 4415, 3), -- One-handed Sword
-(20176, 4416, 10), -- Dragons
+(20176, 4071, 5), -- Resist Archery
+(20176, 4087, 3), -- NPC Blaze
+(20176, 4408, 1), -- HP Modifiers
+(20176, 4409, 1), -- MP Modifiers
+(20176, 4410, 12), -- P. Atk. Modifiers
+(20176, 4411, 12), -- M. Atk. Modifiers
+(20176, 4412, 10), -- P. Def. Modifiers
+(20176, 4413, 10), -- M. Def. Modifiers
+(20176, 4414, 2), -- Armor Type
+(20176, 4415, 3), -- Weapon Type
+(20176, 4416, 10), -- Races
 -- Zombie
-(20177, 4002, 1), -- HP Drain
-(20177, 4408, 1), -- HP Increase (1x)
-(20177, 4409, 1), -- MP Increase (1x)
-(20177, 4410, 11), -- Average P. Atk.
-(20177, 4411, 11), -- Average M. Atk.
-(20177, 4412, 11), -- Average P. Def.
-(20177, 4413, 11), -- Average M. Def.
-(20177, 4414, 2), -- Standard Type
-(20177, 4415, 3), -- One-handed Sword
-(20177, 4416, 1), -- Undead
+(20177, 4002, 1), -- NPC HP Drain
+(20177, 4408, 1), -- HP Modifiers
+(20177, 4409, 1), -- MP Modifiers
+(20177, 4410, 11), -- P. Atk. Modifiers
+(20177, 4411, 11), -- M. Atk. Modifiers
+(20177, 4412, 11), -- P. Def. Modifiers
+(20177, 4413, 11), -- M. Def. Modifiers
+(20177, 4414, 2), -- Armor Type
+(20177, 4415, 3), -- Weapon Type
+(20177, 4416, 1), -- Races
 -- Puma
-(20189, 4408, 1), -- HP Increase (1x)
-(20189, 4409, 1), -- MP Increase (1x)
-(20189, 4410, 12), -- Slightly Strong P. Atk.
-(20189, 4411, 12), -- Slightly Strong M. Atk.
-(20189, 4412, 10), -- Slightly Weak P. Def.
-(20189, 4413, 10), -- Slightly Weak M. Def.
-(20189, 4414, 2), -- Standard Type
-(20189, 4415, 3), -- One-handed Sword
-(20189, 4416, 3), -- Beasts
+(20189, 4408, 1), -- HP Modifiers
+(20189, 4409, 1), -- MP Modifiers
+(20189, 4410, 12), -- P. Atk. Modifiers
+(20189, 4411, 12), -- M. Atk. Modifiers
+(20189, 4412, 10), -- P. Def. Modifiers
+(20189, 4413, 10), -- M. Def. Modifiers
+(20189, 4414, 2), -- Armor Type
+(20189, 4415, 3), -- Weapon Type
+(20189, 4416, 3), -- Races
 -- Skeleton Marauder
-(20190, 4274, 1), -- Blunt Weapon Weak Point
-(20190, 4408, 1), -- HP Increase (1x)
-(20190, 4409, 1), -- MP Increase (1x)
-(20190, 4410, 12), -- Slightly Strong P. Atk.
-(20190, 4411, 12), -- Slightly Strong M. Atk.
-(20190, 4412, 10), -- Slightly Weak P. Def.
-(20190, 4413, 10), -- Slightly Weak M. Def.
-(20190, 4414, 2), -- Standard Type
-(20190, 4415, 9), -- Bows
-(20190, 4416, 1), -- Undead
+(20190, 4274, 1), -- Blunt Attack Weak Point
+(20190, 4408, 1), -- HP Modifiers
+(20190, 4409, 1), -- MP Modifiers
+(20190, 4410, 12), -- P. Atk. Modifiers
+(20190, 4411, 12), -- M. Atk. Modifiers
+(20190, 4412, 10), -- P. Def. Modifiers
+(20190, 4413, 10), -- M. Def. Modifiers
+(20190, 4414, 2), -- Armor Type
+(20190, 4415, 9), -- Weapon Type
+(20190, 4416, 1), -- Races
 -- Skeleton Raider
-(20191, 4274, 1), -- Blunt Weapon Weak Point
-(20191, 4408, 1), -- HP Increase (1x)
-(20191, 4409, 1), -- MP Increase (1x)
-(20191, 4410, 12), -- Slightly Strong P. Atk.
-(20191, 4411, 12), -- Slightly Strong M. Atk.
-(20191, 4412, 10), -- Slightly Weak P. Def.
-(20191, 4413, 10), -- Slightly Weak M. Def.
-(20191, 4414, 2), -- Standard Type
-(20191, 4415, 7), -- Daggers
-(20191, 4416, 1), -- Undead
+(20191, 4274, 1), -- Blunt Attack Weak Point
+(20191, 4408, 1), -- HP Modifiers
+(20191, 4409, 1), -- MP Modifiers
+(20191, 4410, 12), -- P. Atk. Modifiers
+(20191, 4411, 12), -- M. Atk. Modifiers
+(20191, 4412, 10), -- P. Def. Modifiers
+(20191, 4413, 10), -- M. Def. Modifiers
+(20191, 4414, 2), -- Armor Type
+(20191, 4415, 7), -- Weapon Type
+(20191, 4416, 1), -- Races
 -- Tyrant
-(20192, 4408, 1), -- HP Increase (1x)
-(20192, 4409, 1), -- MP Increase (1x)
-(20192, 4410, 12), -- Slightly Strong P. Atk.
-(20192, 4411, 12), -- Slightly Strong M. Atk.
-(20192, 4412, 10), -- Slightly Weak P. Def.
-(20192, 4413, 10), -- Slightly Weak M. Def.
-(20192, 4414, 2), -- Standard Type
-(20192, 4415, 3), -- One-handed Sword
-(20192, 4416, 3), -- Beasts
+(20192, 4408, 1), -- HP Modifiers
+(20192, 4409, 1), -- MP Modifiers
+(20192, 4410, 12), -- P. Atk. Modifiers
+(20192, 4411, 12), -- M. Atk. Modifiers
+(20192, 4412, 10), -- P. Def. Modifiers
+(20192, 4413, 10), -- M. Def. Modifiers
+(20192, 4414, 2), -- Armor Type
+(20192, 4415, 3), -- Weapon Type
+(20192, 4416, 3), -- Races
 -- Tyrant Kingpin
-(20193, 4408, 1), -- HP Increase (1x)
-(20193, 4409, 1), -- MP Increase (1x)
-(20193, 4410, 12), -- Slightly Strong P. Atk.
-(20193, 4411, 12), -- Slightly Strong M. Atk.
-(20193, 4412, 10), -- Slightly Weak P. Def.
-(20193, 4413, 10), -- Slightly Weak M. Def.
-(20193, 4414, 2), -- Standard Type
-(20193, 4415, 3), -- One-handed Sword
-(20193, 4416, 3), -- Beasts
+(20193, 4408, 1), -- HP Modifiers
+(20193, 4409, 1), -- MP Modifiers
+(20193, 4410, 12), -- P. Atk. Modifiers
+(20193, 4411, 12), -- M. Atk. Modifiers
+(20193, 4412, 10), -- P. Def. Modifiers
+(20193, 4413, 10), -- M. Def. Modifiers
+(20193, 4414, 2), -- Armor Type
+(20193, 4415, 3), -- Weapon Type
+(20193, 4416, 3), -- Races
 -- Queen Undine
-(20194, 4001, 5), -- Windstrike
-(20194, 4408, 1), -- HP Increase (1x)
-(20194, 4409, 1), -- MP Increase (1x)
-(20194, 4410, 12), -- Slightly Strong P. Atk.
-(20194, 4411, 12), -- Slightly Strong M. Atk.
-(20194, 4412, 10), -- Slightly Weak P. Def.
-(20194, 4413, 10), -- Slightly Weak M. Def.
-(20194, 4414, 2), -- Standard Type
-(20194, 4415, 3), -- One-handed Sword
-(20194, 4416, 7), -- Spirits
+(20194, 4001, 5), -- NPC Wind Strike
+(20194, 4408, 1), -- HP Modifiers
+(20194, 4409, 1), -- MP Modifiers
+(20194, 4410, 12), -- P. Atk. Modifiers
+(20194, 4411, 12), -- M. Atk. Modifiers
+(20194, 4412, 10), -- P. Def. Modifiers
+(20194, 4413, 10), -- M. Def. Modifiers
+(20194, 4414, 2), -- Armor Type
+(20194, 4415, 3), -- Weapon Type
+(20194, 4416, 7), -- Races
 -- Sorrow Maiden
-(20197, 4151, 2), -- Wind Strike
-(20197, 4160, 2), -- Aura Burn
-(20197, 4408, 1), -- HP Increase (1x)
-(20197, 4409, 1), -- MP Increase (1x)
-(20197, 4410, 11), -- Average P. Atk.
-(20197, 4411, 11), -- Average M. Atk.
-(20197, 4412, 11), -- Average P. Def.
-(20197, 4413, 11), -- Average M. Def.
-(20197, 4414, 2), -- Standard Type
-(20197, 4415, 3), -- One-handed Sword
-(20197, 4416, 7), -- Spirits
+(20197, 4151, 2), -- NPC Windstrike - Magic
+(20197, 4160, 2), -- NPC Aura Burn - Magic
+(20197, 4408, 1), -- HP Modifiers
+(20197, 4409, 1), -- MP Modifiers
+(20197, 4410, 11), -- P. Atk. Modifiers
+(20197, 4411, 11), -- M. Atk. Modifiers
+(20197, 4412, 11), -- P. Def. Modifiers
+(20197, 4413, 11), -- M. Def. Modifiers
+(20197, 4414, 2), -- Armor Type
+(20197, 4415, 3), -- Weapon Type
+(20197, 4416, 7), -- Races
 -- Neer Ghoul Berserker
-(20198, 4001, 2), -- Windstrike
-(20198, 4002, 2), -- HP Drain
-(20198, 4038, 3), -- Decrease Atk. Spd.
-(20198, 4274, 1), -- Blunt Weapon Weak Point
-(20198, 4408, 1), -- HP Increase (1x)
-(20198, 4409, 1), -- MP Increase (1x)
-(20198, 4410, 12), -- Slightly Strong P. Atk.
-(20198, 4411, 12), -- Slightly Strong M. Atk.
-(20198, 4412, 10), -- Slightly Weak P. Def.
-(20198, 4413, 10), -- Slightly Weak M. Def.
-(20198, 4414, 2), -- Standard Type
-(20198, 4415, 3), -- One-handed Sword
-(20198, 4416, 1), -- Undead
+(20198, 4001, 2), -- NPC Wind Strike
+(20198, 4002, 2), -- NPC HP Drain
+(20198, 4038, 3), -- Decrease Atk.Spd.
+(20198, 4274, 1), -- Blunt Attack Weak Point
+(20198, 4408, 1), -- HP Modifiers
+(20198, 4409, 1), -- MP Modifiers
+(20198, 4410, 12), -- P. Atk. Modifiers
+(20198, 4411, 12), -- M. Atk. Modifiers
+(20198, 4412, 10), -- P. Def. Modifiers
+(20198, 4413, 10), -- M. Def. Modifiers
+(20198, 4414, 2), -- Armor Type
+(20198, 4415, 3), -- Weapon Type
+(20198, 4416, 1), -- Races
 -- Amber Basilisk
-(20199, 4073, 3), -- Stun
-(20199, 4408, 1), -- HP Increase (1x)
-(20199, 4409, 1), -- MP Increase (1x)
-(20199, 4410, 10), -- Slightly Weak P. Atk.
-(20199, 4411, 10), -- Slightly Weak M. Atk.
-(20199, 4412, 12), -- Slightly Strong P. Def.
-(20199, 4413, 12), -- Slightly Strong M. Def.
-(20199, 4414, 2), -- Standard Type
-(20199, 4415, 3), -- One-handed Sword
-(20199, 4416, 3), -- Beasts
+(20199, 4073, 3), -- Shock
+(20199, 4408, 1), -- HP Modifiers
+(20199, 4409, 1), -- MP Modifiers
+(20199, 4410, 10), -- P. Atk. Modifiers
+(20199, 4411, 10), -- M. Atk. Modifiers
+(20199, 4412, 12), -- P. Def. Modifiers
+(20199, 4413, 12), -- M. Def. Modifiers
+(20199, 4414, 2), -- Armor Type
+(20199, 4415, 3), -- Weapon Type
+(20199, 4416, 3), -- Races
 -- Strain
-(20200, 4408, 1), -- HP Increase (1x)
-(20200, 4409, 1), -- MP Increase (1x)
-(20200, 4410, 12), -- Slightly Strong P. Atk.
-(20200, 4411, 12), -- Slightly Strong M. Atk.
-(20200, 4412, 10), -- Slightly Weak P. Def.
-(20200, 4413, 10), -- Slightly Weak M. Def.
-(20200, 4414, 2), -- Standard Type
-(20200, 4415, 3), -- One-handed Sword
-(20200, 4416, 1), -- Undead
+(20200, 4408, 1), -- HP Modifiers
+(20200, 4409, 1), -- MP Modifiers
+(20200, 4410, 12), -- P. Atk. Modifiers
+(20200, 4411, 12), -- M. Atk. Modifiers
+(20200, 4412, 10), -- P. Def. Modifiers
+(20200, 4413, 10), -- M. Def. Modifiers
+(20200, 4414, 2), -- Armor Type
+(20200, 4415, 3), -- Weapon Type
+(20200, 4416, 1), -- Races
 -- Ghoul
-(20201, 4071, 5), -- Resist Bow/Crossbow Weapons
-(20201, 4248, 3), -- Energy Drain
-(20201, 4284, 5), -- Resist Bleed Attacks
-(20201, 4408, 1), -- HP Increase (1x)
-(20201, 4409, 1), -- MP Increase (1x)
-(20201, 4410, 12), -- Slightly Strong P. Atk.
-(20201, 4411, 12), -- Slightly Strong M. Atk.
-(20201, 4412, 10), -- Slightly Weak P. Def.
-(20201, 4413, 18), -- Extremely Strong M. Def.
-(20201, 4414, 2), -- Standard Type
-(20201, 4415, 3), -- One-handed Sword
-(20201, 4416, 1), -- Undead
+(20201, 4071, 5), -- Resist Archery
+(20201, 4248, 3), -- NPC HP Drain - Slow
+(20201, 4284, 5), -- Resist Bleeding
+(20201, 4408, 1), -- HP Modifiers
+(20201, 4409, 1), -- MP Modifiers
+(20201, 4410, 12), -- P. Atk. Modifiers
+(20201, 4411, 12), -- M. Atk. Modifiers
+(20201, 4412, 10), -- P. Def. Modifiers
+(20201, 4413, 18), -- M. Def. Modifiers
+(20201, 4414, 2), -- Armor Type
+(20201, 4415, 3), -- Weapon Type
+(20201, 4416, 1), -- Races
 -- Dead Seeker
-(20202, 4001, 3), -- Windstrike
-(20202, 4002, 3), -- HP Drain
-(20202, 4076, 2), -- Slow
-(20202, 4408, 1), -- HP Increase (1x)
-(20202, 4409, 1), -- MP Increase (1x)
-(20202, 4410, 11), -- Average P. Atk.
-(20202, 4411, 11), -- Average M. Atk.
-(20202, 4412, 11), -- Average P. Def.
-(20202, 4413, 11), -- Average M. Def.
-(20202, 4414, 2), -- Standard Type
-(20202, 4415, 3), -- One-handed Sword
-(20202, 4416, 4), -- Animals
+(20202, 4001, 3), -- NPC Wind Strike
+(20202, 4002, 3), -- NPC HP Drain
+(20202, 4076, 2), -- Reduction in movement speed
+(20202, 4408, 1), -- HP Modifiers
+(20202, 4409, 1), -- MP Modifiers
+(20202, 4410, 11), -- P. Atk. Modifiers
+(20202, 4411, 11), -- M. Atk. Modifiers
+(20202, 4412, 11), -- P. Def. Modifiers
+(20202, 4413, 11), -- M. Def. Modifiers
+(20202, 4414, 2), -- Armor Type
+(20202, 4415, 3), -- Weapon Type
+(20202, 4416, 4), -- Races
 -- Dion Grizzly
-(20203, 4408, 1), -- HP Increase (1x)
-(20203, 4409, 1), -- MP Increase (1x)
-(20203, 4410, 10), -- Slightly Weak P. Atk.
-(20203, 4411, 10), -- Slightly Weak M. Atk.
-(20203, 4412, 12), -- Slightly Strong P. Def.
-(20203, 4413, 12), -- Slightly Strong M. Def.
-(20203, 4414, 2), -- Standard Type
-(20203, 4415, 3), -- One-handed Sword
-(20203, 4416, 4), -- Animals
+(20203, 4408, 1), -- HP Modifiers
+(20203, 4409, 1), -- MP Modifiers
+(20203, 4410, 10), -- P. Atk. Modifiers
+(20203, 4411, 10), -- M. Atk. Modifiers
+(20203, 4412, 12), -- P. Def. Modifiers
+(20203, 4413, 12), -- M. Def. Modifiers
+(20203, 4414, 2), -- Armor Type
+(20203, 4415, 3), -- Weapon Type
+(20203, 4416, 4), -- Races
 -- Bloody Bee
 (20204, 4035, 2), -- Poison
-(20204, 4408, 1), -- HP Increase (1x)
-(20204, 4409, 1), -- MP Increase (1x)
-(20204, 4410, 12), -- Slightly Strong P. Atk.
-(20204, 4411, 12), -- Slightly Strong M. Atk.
-(20204, 4412, 10), -- Slightly Weak P. Def.
-(20204, 4413, 10), -- Slightly Weak M. Def.
-(20204, 4414, 2), -- Standard Type
-(20204, 4415, 3), -- One-handed Sword
-(20204, 4416, 12), -- Bugs
+(20204, 4408, 1), -- HP Modifiers
+(20204, 4409, 1), -- MP Modifiers
+(20204, 4410, 12), -- P. Atk. Modifiers
+(20204, 4411, 12), -- M. Atk. Modifiers
+(20204, 4412, 10), -- P. Def. Modifiers
+(20204, 4413, 10), -- M. Def. Modifiers
+(20204, 4414, 2), -- Armor Type
+(20204, 4415, 3), -- Weapon Type
+(20204, 4416, 12), -- Races
 -- Dire Wolf
-(20205, 4408, 1), -- HP Increase (1x)
-(20205, 4409, 1), -- MP Increase (1x)
-(20205, 4410, 12), -- Slightly Strong P. Atk.
-(20205, 4411, 12), -- Slightly Strong M. Atk.
-(20205, 4412, 10), -- Slightly Weak P. Def.
-(20205, 4413, 10), -- Slightly Weak M. Def.
-(20205, 4414, 2), -- Standard Type
-(20205, 4415, 3), -- One-handed Sword
-(20205, 4416, 4), -- Animals
+(20205, 4408, 1), -- HP Modifiers
+(20205, 4409, 1), -- MP Modifiers
+(20205, 4410, 12), -- P. Atk. Modifiers
+(20205, 4411, 12), -- M. Atk. Modifiers
+(20205, 4412, 10), -- P. Def. Modifiers
+(20205, 4413, 10), -- M. Def. Modifiers
+(20205, 4414, 2), -- Armor Type
+(20205, 4415, 3), -- Weapon Type
+(20205, 4416, 4), -- Races
 -- Kadif Werewolf
-(20206, 4408, 1), -- HP Increase (1x)
-(20206, 4409, 1), -- MP Increase (1x)
-(20206, 4410, 12), -- Slightly Strong P. Atk.
-(20206, 4411, 12), -- Slightly Strong M. Atk.
-(20206, 4412, 10), -- Slightly Weak P. Def.
-(20206, 4413, 10), -- Slightly Weak M. Def.
-(20206, 4414, 2), -- Standard Type
-(20206, 4415, 3), -- One-handed Sword
-(20206, 4416, 6), -- Humanoids
+(20206, 4408, 1), -- HP Modifiers
+(20206, 4409, 1), -- MP Modifiers
+(20206, 4410, 12), -- P. Atk. Modifiers
+(20206, 4411, 12), -- M. Atk. Modifiers
+(20206, 4412, 10), -- P. Def. Modifiers
+(20206, 4413, 10), -- M. Def. Modifiers
+(20206, 4414, 2), -- Armor Type
+(20206, 4415, 3), -- Weapon Type
+(20206, 4416, 6), -- Races
 -- Ol Mahum Guerilla
-(20207, 4408, 10), -- HP Increase (2x)
-(20207, 4409, 1), -- MP Increase (1x)
-(20207, 4410, 10), -- Slightly Weak P. Atk.
-(20207, 4411, 10), -- Slightly Weak M. Atk.
-(20207, 4412, 12), -- Slightly Strong P. Def.
-(20207, 4413, 12), -- Slightly Strong M. Def.
-(20207, 4414, 2), -- Standard Type
-(20207, 4415, 3), -- One-handed Sword
-(20207, 4416, 6), -- Humanoids
+(20207, 4408, 10), -- HP Modifiers
+(20207, 4409, 1), -- MP Modifiers
+(20207, 4410, 10), -- P. Atk. Modifiers
+(20207, 4411, 10), -- M. Atk. Modifiers
+(20207, 4412, 12), -- P. Def. Modifiers
+(20207, 4413, 12), -- M. Def. Modifiers
+(20207, 4414, 2), -- Armor Type
+(20207, 4415, 3), -- Weapon Type
+(20207, 4416, 6), -- Races
 -- Ol Mahum Raider
-(20208, 4408, 10), -- HP Increase (2x)
-(20208, 4409, 1), -- MP Increase (1x)
-(20208, 4410, 10), -- Slightly Weak P. Atk.
-(20208, 4411, 10), -- Slightly Weak M. Atk.
-(20208, 4412, 12), -- Slightly Strong P. Def.
-(20208, 4413, 12), -- Slightly Strong M. Def.
-(20208, 4414, 2), -- Standard Type
-(20208, 4415, 7), -- Daggers
-(20208, 4416, 6), -- Humanoids
+(20208, 4408, 10), -- HP Modifiers
+(20208, 4409, 1), -- MP Modifiers
+(20208, 4410, 10), -- P. Atk. Modifiers
+(20208, 4411, 10), -- M. Atk. Modifiers
+(20208, 4412, 12), -- P. Def. Modifiers
+(20208, 4413, 12), -- M. Def. Modifiers
+(20208, 4414, 2), -- Armor Type
+(20208, 4415, 7), -- Weapon Type
+(20208, 4416, 6), -- Races
 -- Ol Mahum Marksman
-(20209, 4408, 10), -- HP Increase (2x)
-(20209, 4409, 1), -- MP Increase (1x)
-(20209, 4410, 12), -- Slightly Strong P. Atk.
-(20209, 4411, 12), -- Slightly Strong M. Atk.
-(20209, 4412, 10), -- Slightly Weak P. Def.
-(20209, 4413, 10), -- Slightly Weak M. Def.
-(20209, 4414, 2), -- Standard Type
-(20209, 4415, 9), -- Bows
-(20209, 4416, 6), -- Humanoids
+(20209, 4408, 10), -- HP Modifiers
+(20209, 4409, 1), -- MP Modifiers
+(20209, 4410, 12), -- P. Atk. Modifiers
+(20209, 4411, 12), -- M. Atk. Modifiers
+(20209, 4412, 10), -- P. Def. Modifiers
+(20209, 4413, 10), -- M. Def. Modifiers
+(20209, 4414, 2), -- Armor Type
+(20209, 4415, 9), -- Weapon Type
+(20209, 4416, 6), -- Races
 -- Ol Mahum Sergeant
-(20210, 4408, 10), -- HP Increase (2x)
-(20210, 4409, 1), -- MP Increase (1x)
-(20210, 4410, 10), -- Slightly Weak P. Atk.
-(20210, 4411, 10), -- Slightly Weak M. Atk.
-(20210, 4412, 12), -- Slightly Strong P. Def.
-(20210, 4413, 12), -- Slightly Strong M. Def.
-(20210, 4414, 2), -- Standard Type
-(20210, 4415, 3), -- One-handed Sword
-(20210, 4416, 6), -- Humanoids
+(20210, 4408, 10), -- HP Modifiers
+(20210, 4409, 1), -- MP Modifiers
+(20210, 4410, 10), -- P. Atk. Modifiers
+(20210, 4411, 10), -- M. Atk. Modifiers
+(20210, 4412, 12), -- P. Def. Modifiers
+(20210, 4413, 12), -- M. Def. Modifiers
+(20210, 4414, 2), -- Armor Type
+(20210, 4415, 3), -- Weapon Type
+(20210, 4416, 6), -- Races
 -- Ol Mahum Captain
-(20211, 4408, 10), -- HP Increase (2x)
-(20211, 4409, 1), -- MP Increase (1x)
-(20211, 4410, 12), -- Slightly Strong P. Atk.
-(20211, 4411, 12), -- Slightly Strong M. Atk.
-(20211, 4412, 10), -- Slightly Weak P. Def.
-(20211, 4413, 10), -- Slightly Weak M. Def.
-(20211, 4414, 2), -- Standard Type
-(20211, 4415, 3), -- One-handed Sword
-(20211, 4416, 6), -- Humanoids
+(20211, 4408, 10), -- HP Modifiers
+(20211, 4409, 1), -- MP Modifiers
+(20211, 4410, 12), -- P. Atk. Modifiers
+(20211, 4411, 12), -- M. Atk. Modifiers
+(20211, 4412, 10), -- P. Def. Modifiers
+(20211, 4413, 10), -- M. Def. Modifiers
+(20211, 4414, 2), -- Armor Type
+(20211, 4415, 3), -- Weapon Type
+(20211, 4416, 6), -- Races
 -- Bloody Axe Turmak
-(20212, 4033, 3), -- Aura Burn
-(20212, 4408, 10), -- HP Increase (2x)
-(20212, 4409, 1), -- MP Increase (1x)
-(20212, 4410, 12), -- Slightly Strong P. Atk.
-(20212, 4411, 12), -- Slightly Strong M. Atk.
-(20212, 4412, 10), -- Slightly Weak P. Def.
-(20212, 4413, 10), -- Slightly Weak M. Def.
-(20212, 4414, 2), -- Standard Type
-(20212, 4415, 3), -- One-handed Sword
-(20212, 4416, 6), -- Humanoids
+(20212, 4033, 3), -- NPC Burn
+(20212, 4408, 10), -- HP Modifiers
+(20212, 4409, 1), -- MP Modifiers
+(20212, 4410, 12), -- P. Atk. Modifiers
+(20212, 4411, 12), -- M. Atk. Modifiers
+(20212, 4412, 10), -- P. Def. Modifiers
+(20212, 4413, 10), -- M. Def. Modifiers
+(20212, 4414, 2), -- Armor Type
+(20212, 4415, 3), -- Weapon Type
+(20212, 4416, 6), -- Races
 -- Porta
-(20213, 4071, 1), -- Resist Bow/Crossbow Weapons
-(20213, 4073, 4), -- Stun
-(20213, 4161, 1), -- Summon
-(20213, 4274, 1), -- Blunt Weapon Weak Point
-(20213, 4408, 11), -- HP Increase (3x)
-(20213, 4409, 1), -- MP Increase (1x)
-(20213, 4410, 13), -- Slightly Strong P. Atk.
-(20213, 4411, 12), -- Slightly Strong M. Atk.
-(20213, 4412, 16), -- Very Strong P. Def.
-(20213, 4413, 16), -- Very Strong M. Def.
-(20213, 4414, 2), -- Standard Type
-(20213, 4415, 5), -- Blunt Weapons
-(20213, 4416, 2), -- Magic Creatures
+(20213, 4071, 1), -- Resist Archery
+(20213, 4073, 4), -- Shock
+(20213, 4161, 1), -- Summon PC
+(20213, 4274, 1), -- Blunt Attack Weak Point
+(20213, 4408, 11), -- HP Modifiers
+(20213, 4409, 1), -- MP Modifiers
+(20213, 4410, 13), -- P. Atk. Modifiers
+(20213, 4411, 12), -- M. Atk. Modifiers
+(20213, 4412, 16), -- P. Def. Modifiers
+(20213, 4413, 16), -- M. Def. Modifiers
+(20213, 4414, 2), -- Armor Type
+(20213, 4415, 5), -- Weapon Type
+(20213, 4416, 2), -- Races
 (20213, 4436, 5), -- Greater Resist Poison
 (20213, 4437, 5), -- Greater Resist Bleeding
 (20213, 4438, 5), -- Greater Resist Sleep
 -- Excuro
 (20214, 4046, 4), -- Sleep
-(20214, 4087, 4), -- Blaze
+(20214, 4087, 4), -- NPC Blaze
 (20214, 4093, 1), -- Evasion
-(20214, 4408, 10), -- HP Increase (2x)
-(20214, 4409, 1), -- MP Increase (1x)
-(20214, 4410, 12), -- Slightly Strong P. Atk.
-(20214, 4411, 11), -- Average M. Atk.
-(20214, 4412, 12), -- Slightly Strong P. Def.
-(20214, 4413, 15), -- Strong M. Def.
-(20214, 4414, 2), -- Standard Type
-(20214, 4415, 3), -- One-handed Sword
-(20214, 4416, 2), -- Magic Creatures
+(20214, 4408, 10), -- HP Modifiers
+(20214, 4409, 1), -- MP Modifiers
+(20214, 4410, 12), -- P. Atk. Modifiers
+(20214, 4411, 11), -- M. Atk. Modifiers
+(20214, 4412, 12), -- P. Def. Modifiers
+(20214, 4413, 15), -- M. Def. Modifiers
+(20214, 4414, 2), -- Armor Type
+(20214, 4415, 3), -- Weapon Type
+(20214, 4416, 2), -- Races
 -- Mordeo
-(20215, 4077, 4), -- Aura Burn
-(20215, 4408, 10), -- HP Increase (2x)
-(20215, 4409, 1), -- MP Increase (1x)
-(20215, 4410, 12), -- Slightly Strong P. Atk.
-(20215, 4411, 12), -- Slightly Strong M. Atk.
-(20215, 4412, 10), -- Slightly Weak P. Def.
-(20215, 4413, 14), -- Strong M. Def.
-(20215, 4414, 2), -- Standard Type
-(20215, 4415, 1), -- Bare Hands
-(20215, 4416, 3), -- Beasts
+(20215, 4077, 4), -- NPC Aura Burn
+(20215, 4408, 10), -- HP Modifiers
+(20215, 4409, 1), -- MP Modifiers
+(20215, 4410, 12), -- P. Atk. Modifiers
+(20215, 4411, 12), -- M. Atk. Modifiers
+(20215, 4412, 10), -- P. Def. Modifiers
+(20215, 4413, 14), -- M. Def. Modifiers
+(20215, 4414, 2), -- Armor Type
+(20215, 4415, 1), -- Weapon Type
+(20215, 4416, 3), -- Races
 -- Ricenseo
-(20216, 4076, 3), -- Slow
-(20216, 4157, 4), -- Blaze
-(20216, 4160, 4), -- Aura Burn
-(20216, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(20216, 4408, 10), -- HP Increase (2x)
-(20216, 4409, 1), -- MP Increase (1x)
-(20216, 4410, 11), -- Average P. Atk.
-(20216, 4411, 11), -- Average M. Atk.
-(20216, 4412, 11), -- Average P. Def.
-(20216, 4413, 14), -- Strong M. Def.
-(20216, 4414, 2), -- Standard Type
-(20216, 4415, 5), -- Blunt Weapons
-(20216, 4416, 2), -- Magic Creatures
+(20216, 4076, 3), -- Reduction in movement speed
+(20216, 4157, 4), -- NPC Blaze - Magic
+(20216, 4160, 4), -- NPC Aura Burn - Magic
+(20216, 4276, 1), -- Archery Attack Weak Point
+(20216, 4408, 10), -- HP Modifiers
+(20216, 4409, 1), -- MP Modifiers
+(20216, 4410, 11), -- P. Atk. Modifiers
+(20216, 4411, 11), -- M. Atk. Modifiers
+(20216, 4412, 11), -- P. Def. Modifiers
+(20216, 4413, 14), -- M. Def. Modifiers
+(20216, 4414, 2), -- Armor Type
+(20216, 4415, 5), -- Weapon Type
+(20216, 4416, 2), -- Races
 (20216, 4439, 5), -- Greater Resist Hold
-(20216, 4461, 1), -- Weak Point against Daggers/Rapier Weapon
+(20216, 4461, 1), -- Dagger Weak Point
 -- Krator
-(20217, 4071, 1), -- Resist Bow/Crossbow Weapons
-(20217, 4247, 4), -- Wind Strike
-(20217, 4274, 1), -- Blunt Weapon Weak Point
-(20217, 4408, 10), -- HP Increase (2x)
-(20217, 4409, 1), -- MP Increase (1x)
-(20217, 4410, 10), -- Slightly Weak P. Atk.
-(20217, 4411, 10), -- Slightly Weak M. Atk.
-(20217, 4412, 16), -- Very Strong P. Def.
-(20217, 4413, 14), -- Strong M. Def.
-(20217, 4414, 2), -- Standard Type
-(20217, 4415, 5), -- Blunt Weapons
-(20217, 4416, 2), -- Magic Creatures
+(20217, 4071, 1), -- Resist Archery
+(20217, 4247, 4), -- NPC Windstrike - Slow
+(20217, 4274, 1), -- Blunt Attack Weak Point
+(20217, 4408, 10), -- HP Modifiers
+(20217, 4409, 1), -- MP Modifiers
+(20217, 4410, 10), -- P. Atk. Modifiers
+(20217, 4411, 10), -- M. Atk. Modifiers
+(20217, 4412, 16), -- P. Def. Modifiers
+(20217, 4413, 14), -- M. Def. Modifiers
+(20217, 4414, 2), -- Armor Type
+(20217, 4415, 5), -- Weapon Type
+(20217, 4416, 2), -- Races
 (20217, 4436, 5), -- Greater Resist Poison
 (20217, 4437, 5), -- Greater Resist Bleeding
 (20217, 4438, 5), -- Greater Resist Sleep
 -- Premo
-(20218, 4032, 4), -- Power Strike
-(20218, 4073, 4), -- Stun
-(20218, 4408, 10), -- HP Increase (2x)
-(20218, 4409, 1), -- MP Increase (1x)
-(20218, 4410, 11), -- Average P. Atk.
-(20218, 4411, 11), -- Average M. Atk.
-(20218, 4412, 13), -- Slightly Strong P. Def.
-(20218, 4413, 11), -- Average M. Def.
-(20218, 4414, 2), -- Standard Type
-(20218, 4415, 5), -- Blunt Weapons
-(20218, 4416, 11), -- Giants
+(20218, 4032, 4), -- NPC Strike
+(20218, 4073, 4), -- Shock
+(20218, 4408, 10), -- HP Modifiers
+(20218, 4409, 1), -- MP Modifiers
+(20218, 4410, 11), -- P. Atk. Modifiers
+(20218, 4411, 11), -- M. Atk. Modifiers
+(20218, 4412, 13), -- P. Def. Modifiers
+(20218, 4413, 11), -- M. Def. Modifiers
+(20218, 4414, 2), -- Armor Type
+(20218, 4415, 5), -- Weapon Type
+(20218, 4416, 11), -- Races
 -- Validus
-(20219, 4032, 4), -- Power Strike
+(20219, 4032, 4), -- NPC Strike
 (20219, 4046, 4), -- Sleep
-(20219, 4077, 4), -- Aura Burn
-(20219, 4273, 3), -- Resist Daggers/Rapier Weapon
-(20219, 4274, 1), -- Blunt Weapon Weak Point
-(20219, 4408, 10), -- HP Increase (2x)
-(20219, 4409, 1), -- MP Increase (1x)
-(20219, 4410, 14), -- Strong P. Atk.
-(20219, 4411, 10), -- Slightly Weak M. Atk.
-(20219, 4412, 11), -- Average P. Def.
-(20219, 4413, 14), -- Strong M. Def.
-(20219, 4414, 2), -- Standard Type
-(20219, 4415, 3), -- One-handed Sword
-(20219, 4416, 3), -- Beasts
+(20219, 4077, 4), -- NPC Aura Burn
+(20219, 4273, 3), -- Resist Dagger
+(20219, 4274, 1), -- Blunt Attack Weak Point
+(20219, 4408, 10), -- HP Modifiers
+(20219, 4409, 1), -- MP Modifiers
+(20219, 4410, 14), -- P. Atk. Modifiers
+(20219, 4411, 10), -- M. Atk. Modifiers
+(20219, 4412, 11), -- P. Def. Modifiers
+(20219, 4413, 14), -- M. Def. Modifiers
+(20219, 4414, 2), -- Armor Type
+(20219, 4415, 3), -- Weapon Type
+(20219, 4416, 3), -- Races
 (20219, 4444, 1), -- Higher Resist Bow/Crossbow Weapons
 -- Dicor
-(20220, 4098, 4), -- Silence
-(20220, 4155, 4), -- Twister
-(20220, 4160, 4), -- Aura Burn
-(20220, 4408, 10), -- HP Increase (2x)
-(20220, 4409, 1), -- MP Increase (1x)
-(20220, 4410, 14), -- Strong P. Atk.
-(20220, 4411, 13), -- Slightly Strong M. Atk.
-(20220, 4412, 11), -- Average P. Def.
-(20220, 4413, 14), -- Strong M. Def.
-(20220, 4414, 2), -- Standard Type
-(20220, 4415, 3), -- One-handed Sword
-(20220, 4416, 5), -- Plants
+(20220, 4098, 4), -- Magic Skill Block
+(20220, 4155, 4), -- NPC Twister - Magic
+(20220, 4160, 4), -- NPC Aura Burn - Magic
+(20220, 4408, 10), -- HP Modifiers
+(20220, 4409, 1), -- MP Modifiers
+(20220, 4410, 14), -- P. Atk. Modifiers
+(20220, 4411, 13), -- M. Atk. Modifiers
+(20220, 4412, 11), -- P. Def. Modifiers
+(20220, 4413, 14), -- M. Def. Modifiers
+(20220, 4414, 2), -- Armor Type
+(20220, 4415, 3), -- Weapon Type
+(20220, 4416, 5), -- Races
 (20220, 4454, 1), -- Hold Attack Weak Point
 -- Perum
-(20221, 4071, 1), -- Resist Bow/Crossbow Weapons
-(20221, 4073, 4), -- Stun
-(20221, 4161, 1), -- Summon
-(20221, 4274, 1), -- Blunt Weapon Weak Point
-(20221, 4408, 11), -- HP Increase (3x)
-(20221, 4409, 1), -- MP Increase (1x)
-(20221, 4410, 14), -- Strong P. Atk.
-(20221, 4411, 12), -- Slightly Strong M. Atk.
-(20221, 4412, 13), -- Slightly Strong P. Def.
-(20221, 4413, 13), -- Slightly Strong M. Def.
-(20221, 4414, 2), -- Standard Type
-(20221, 4415, 5), -- Blunt Weapons
-(20221, 4416, 2), -- Magic Creatures
+(20221, 4071, 1), -- Resist Archery
+(20221, 4073, 4), -- Shock
+(20221, 4161, 1), -- Summon PC
+(20221, 4274, 1), -- Blunt Attack Weak Point
+(20221, 4408, 11), -- HP Modifiers
+(20221, 4409, 1), -- MP Modifiers
+(20221, 4410, 14), -- P. Atk. Modifiers
+(20221, 4411, 12), -- M. Atk. Modifiers
+(20221, 4412, 13), -- P. Def. Modifiers
+(20221, 4413, 13), -- M. Def. Modifiers
+(20221, 4414, 2), -- Armor Type
+(20221, 4415, 5), -- Weapon Type
+(20221, 4416, 2), -- Races
 (20221, 4436, 5), -- Greater Resist Poison
 (20221, 4437, 5), -- Greater Resist Bleeding
 (20221, 4438, 5), -- Greater Resist Sleep
 -- Torfe
-(20222, 4002, 4), -- HP Drain
-(20222, 4032, 4), -- Power Strike
+(20222, 4002, 4), -- NPC HP Drain
+(20222, 4032, 4), -- NPC Strike
 (20222, 4047, 4), -- Hold
-(20222, 4273, 3), -- Resist Daggers/Rapier Weapon
-(20222, 4274, 1), -- Blunt Weapon Weak Point
-(20222, 4408, 10), -- HP Increase (2x)
-(20222, 4409, 1), -- MP Increase (1x)
-(20222, 4410, 13), -- Slightly Strong P. Atk.
-(20222, 4411, 12), -- Slightly Strong M. Atk.
-(20222, 4412, 10), -- Slightly Weak P. Def.
-(20222, 4413, 13), -- Slightly Strong M. Def.
-(20222, 4414, 2), -- Standard Type
-(20222, 4415, 3), -- One-handed Sword
-(20222, 4416, 3), -- Beasts
+(20222, 4273, 3), -- Resist Dagger
+(20222, 4274, 1), -- Blunt Attack Weak Point
+(20222, 4408, 10), -- HP Modifiers
+(20222, 4409, 1), -- MP Modifiers
+(20222, 4410, 13), -- P. Atk. Modifiers
+(20222, 4411, 12), -- M. Atk. Modifiers
+(20222, 4412, 10), -- P. Def. Modifiers
+(20222, 4413, 13), -- M. Def. Modifiers
+(20222, 4414, 2), -- Armor Type
+(20222, 4415, 3), -- Weapon Type
+(20222, 4416, 3), -- Races
 (20222, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Mandragora Sprout
-(20223, 4001, 2), -- Windstrike
-(20223, 4002, 2), -- HP Drain
-(20223, 4104, 2), -- Chill Flame
-(20223, 4277, 5), -- Resist Poison Attacks
-(20223, 4408, 1), -- HP Increase (1x)
-(20223, 4409, 1), -- MP Increase (1x)
-(20223, 4410, 12), -- Slightly Strong P. Atk.
-(20223, 4411, 12), -- Slightly Strong M. Atk.
-(20223, 4412, 10), -- Slightly Weak P. Def.
-(20223, 4413, 10), -- Slightly Weak M. Def.
-(20223, 4414, 2), -- Standard Type
-(20223, 4415, 3), -- One-handed Sword
-(20223, 4416, 5), -- Plants
+(20223, 4001, 2), -- NPC Wind Strike
+(20223, 4002, 2), -- NPC HP Drain
+(20223, 4104, 2), -- Flame
+(20223, 4277, 5), -- Resist Poison
+(20223, 4408, 1), -- HP Modifiers
+(20223, 4409, 1), -- MP Modifiers
+(20223, 4410, 12), -- P. Atk. Modifiers
+(20223, 4411, 12), -- M. Atk. Modifiers
+(20223, 4412, 10), -- P. Def. Modifiers
+(20223, 4413, 10), -- M. Def. Modifiers
+(20223, 4414, 2), -- Armor Type
+(20223, 4415, 3), -- Weapon Type
+(20223, 4416, 5), -- Races
 -- Ol Mahum Ranger
-(20224, 4040, 2), -- Power Shot
-(20224, 4408, 1), -- HP Increase (1x)
-(20224, 4409, 1), -- MP Increase (1x)
-(20224, 4410, 10), -- Slightly Weak P. Atk.
-(20224, 4411, 10), -- Slightly Weak M. Atk.
-(20224, 4412, 12), -- Slightly Strong P. Def.
-(20224, 4413, 12), -- Slightly Strong M. Def.
-(20224, 4414, 2), -- Standard Type
-(20224, 4415, 9), -- Bows
-(20224, 4416, 6), -- Humanoids
+(20224, 4040, 2), -- NPC Bow Attack
+(20224, 4408, 1), -- HP Modifiers
+(20224, 4409, 1), -- MP Modifiers
+(20224, 4410, 10), -- P. Atk. Modifiers
+(20224, 4411, 10), -- M. Atk. Modifiers
+(20224, 4412, 12), -- P. Def. Modifiers
+(20224, 4413, 12), -- M. Def. Modifiers
+(20224, 4414, 2), -- Armor Type
+(20224, 4415, 9), -- Weapon Type
+(20224, 4416, 6), -- Races
 -- Giant Mist Leech
-(20225, 4002, 2), -- HP Drain
-(20225, 4038, 3), -- Decrease Atk. Spd.
-(20225, 4039, 2), -- Mana Drain
-(20225, 4071, 5), -- Resist Bow/Crossbow Weapons
-(20225, 4408, 1), -- HP Increase (1x)
-(20225, 4409, 1), -- MP Increase (1x)
-(20225, 4410, 11), -- Average P. Atk.
-(20225, 4411, 11), -- Average M. Atk.
-(20225, 4412, 11), -- Average P. Def.
-(20225, 4413, 11), -- Average M. Def.
-(20225, 4414, 2), -- Standard Type
-(20225, 4415, 3), -- One-handed Sword
-(20225, 4416, 12), -- Bugs
+(20225, 4002, 2), -- NPC HP Drain
+(20225, 4038, 3), -- Decrease Atk.Spd.
+(20225, 4039, 2), -- NPC MP Drain
+(20225, 4071, 5), -- Resist Archery
+(20225, 4408, 1), -- HP Modifiers
+(20225, 4409, 1), -- MP Modifiers
+(20225, 4410, 11), -- P. Atk. Modifiers
+(20225, 4411, 11), -- M. Atk. Modifiers
+(20225, 4412, 11), -- P. Def. Modifiers
+(20225, 4413, 11), -- M. Def. Modifiers
+(20225, 4414, 2), -- Armor Type
+(20225, 4415, 3), -- Weapon Type
+(20225, 4416, 12), -- Races
 -- Gray Ant
-(20226, 4408, 1), -- HP Increase (1x)
-(20226, 4409, 1), -- MP Increase (1x)
-(20226, 4410, 10), -- Slightly Weak P. Atk.
-(20226, 4411, 10), -- Slightly Weak M. Atk.
-(20226, 4412, 12), -- Slightly Strong P. Def.
-(20226, 4413, 12), -- Slightly Strong M. Def.
-(20226, 4414, 2), -- Standard Type
-(20226, 4415, 3), -- One-handed Sword
-(20226, 4416, 12), -- Bugs
+(20226, 4408, 1), -- HP Modifiers
+(20226, 4409, 1), -- MP Modifiers
+(20226, 4410, 10), -- P. Atk. Modifiers
+(20226, 4411, 10), -- M. Atk. Modifiers
+(20226, 4412, 12), -- P. Def. Modifiers
+(20226, 4413, 12), -- M. Def. Modifiers
+(20226, 4414, 2), -- Armor Type
+(20226, 4415, 3), -- Weapon Type
+(20226, 4416, 12), -- Races
 -- Horror Mist Ripper
-(20227, 4002, 2), -- HP Drain
-(20227, 4408, 1), -- HP Increase (1x)
-(20227, 4409, 1), -- MP Increase (1x)
-(20227, 4410, 12), -- Slightly Strong P. Atk.
-(20227, 4411, 12), -- Slightly Strong M. Atk.
-(20227, 4412, 10), -- Slightly Weak P. Def.
-(20227, 4413, 10), -- Slightly Weak M. Def.
-(20227, 4414, 2), -- Standard Type
-(20227, 4415, 3), -- One-handed Sword
-(20227, 4416, 1), -- Undead
+(20227, 4002, 2), -- NPC HP Drain
+(20227, 4408, 1), -- HP Modifiers
+(20227, 4409, 1), -- MP Modifiers
+(20227, 4410, 12), -- P. Atk. Modifiers
+(20227, 4411, 12), -- M. Atk. Modifiers
+(20227, 4412, 10), -- P. Def. Modifiers
+(20227, 4413, 10), -- M. Def. Modifiers
+(20227, 4414, 2), -- Armor Type
+(20227, 4415, 3), -- Weapon Type
+(20227, 4416, 1), -- Races
 -- Giant Crimson Ant
 (20228, 4035, 2), -- Poison
-(20228, 4408, 1), -- HP Increase (1x)
-(20228, 4409, 1), -- MP Increase (1x)
-(20228, 4410, 12), -- Slightly Strong P. Atk.
-(20228, 4411, 12), -- Slightly Strong M. Atk.
-(20228, 4412, 10), -- Slightly Weak P. Def.
-(20228, 4413, 10), -- Slightly Weak M. Def.
-(20228, 4414, 2), -- Standard Type
-(20228, 4415, 3), -- One-handed Sword
-(20228, 4416, 12), -- Bugs
+(20228, 4408, 1), -- HP Modifiers
+(20228, 4409, 1), -- MP Modifiers
+(20228, 4410, 12), -- P. Atk. Modifiers
+(20228, 4411, 12), -- M. Atk. Modifiers
+(20228, 4412, 10), -- P. Def. Modifiers
+(20228, 4413, 10), -- M. Def. Modifiers
+(20228, 4414, 2), -- Armor Type
+(20228, 4415, 3), -- Weapon Type
+(20228, 4416, 12), -- Races
 -- Stinger Wasp
 (20229, 4035, 3), -- Poison
-(20229, 4408, 1), -- HP Increase (1x)
-(20229, 4409, 1), -- MP Increase (1x)
-(20229, 4410, 10), -- Slightly Weak P. Atk.
-(20229, 4411, 10), -- Slightly Weak M. Atk.
-(20229, 4412, 12), -- Slightly Strong P. Def.
-(20229, 4413, 12), -- Slightly Strong M. Def.
-(20229, 4414, 2), -- Standard Type
-(20229, 4415, 3), -- One-handed Sword
-(20229, 4416, 12), -- Bugs
+(20229, 4408, 1), -- HP Modifiers
+(20229, 4409, 1), -- MP Modifiers
+(20229, 4410, 10), -- P. Atk. Modifiers
+(20229, 4411, 10), -- M. Atk. Modifiers
+(20229, 4412, 12), -- P. Def. Modifiers
+(20229, 4413, 12), -- M. Def. Modifiers
+(20229, 4414, 2), -- Armor Type
+(20229, 4415, 3), -- Weapon Type
+(20229, 4416, 12), -- Races
 -- Marsh Stakato Worker
-(20230, 4032, 3), -- Power Strike
-(20230, 4408, 1), -- HP Increase (1x)
-(20230, 4409, 1), -- MP Increase (1x)
-(20230, 4410, 11), -- Average P. Atk.
-(20230, 4411, 11), -- Average M. Atk.
-(20230, 4412, 11), -- Average P. Def.
-(20230, 4413, 11), -- Average M. Def.
-(20230, 4414, 2), -- Standard Type
-(20230, 4415, 5), -- Blunt Weapons
-(20230, 4416, 6), -- Humanoids
+(20230, 4032, 3), -- NPC Strike
+(20230, 4408, 1), -- HP Modifiers
+(20230, 4409, 1), -- MP Modifiers
+(20230, 4410, 11), -- P. Atk. Modifiers
+(20230, 4411, 11), -- M. Atk. Modifiers
+(20230, 4412, 11), -- P. Def. Modifiers
+(20230, 4413, 11), -- M. Def. Modifiers
+(20230, 4414, 2), -- Armor Type
+(20230, 4415, 5), -- Weapon Type
+(20230, 4416, 6), -- Races
 -- Toad Lord
 (20231, 4035, 3), -- Poison
-(20231, 4408, 1), -- HP Increase (1x)
-(20231, 4409, 1), -- MP Increase (1x)
-(20231, 4410, 10), -- Slightly Weak P. Atk.
-(20231, 4411, 10), -- Slightly Weak M. Atk.
-(20231, 4412, 12), -- Slightly Strong P. Def.
-(20231, 4413, 12), -- Slightly Strong M. Def.
-(20231, 4414, 2), -- Standard Type
-(20231, 4415, 3), -- One-handed Sword
-(20231, 4416, 4), -- Animals
+(20231, 4408, 1), -- HP Modifiers
+(20231, 4409, 1), -- MP Modifiers
+(20231, 4410, 10), -- P. Atk. Modifiers
+(20231, 4411, 10), -- M. Atk. Modifiers
+(20231, 4412, 12), -- P. Def. Modifiers
+(20231, 4413, 12), -- M. Def. Modifiers
+(20231, 4414, 2), -- Armor Type
+(20231, 4415, 3), -- Weapon Type
+(20231, 4416, 4), -- Races
 -- Marsh Stakato Soldier
-(20232, 4408, 1), -- HP Increase (1x)
-(20232, 4409, 1), -- MP Increase (1x)
-(20232, 4410, 10), -- Slightly Weak P. Atk.
-(20232, 4411, 10), -- Slightly Weak M. Atk.
-(20232, 4412, 12), -- Slightly Strong P. Def.
-(20232, 4413, 12), -- Slightly Strong M. Def.
-(20232, 4414, 2), -- Standard Type
-(20232, 4415, 7), -- Daggers
-(20232, 4416, 6), -- Humanoids
+(20232, 4408, 1), -- HP Modifiers
+(20232, 4409, 1), -- MP Modifiers
+(20232, 4410, 10), -- P. Atk. Modifiers
+(20232, 4411, 10), -- M. Atk. Modifiers
+(20232, 4412, 12), -- P. Def. Modifiers
+(20232, 4413, 12), -- M. Def. Modifiers
+(20232, 4414, 2), -- Armor Type
+(20232, 4415, 7), -- Weapon Type
+(20232, 4416, 6), -- Races
 -- Marsh Spider
 (20233, 4035, 3), -- Poison
-(20233, 4408, 1), -- HP Increase (1x)
-(20233, 4409, 1), -- MP Increase (1x)
-(20233, 4410, 11), -- Average P. Atk.
-(20233, 4411, 11), -- Average M. Atk.
-(20233, 4412, 11), -- Average P. Def.
-(20233, 4413, 11), -- Average M. Def.
-(20233, 4414, 2), -- Standard Type
-(20233, 4415, 3), -- One-handed Sword
-(20233, 4416, 12), -- Bugs
+(20233, 4408, 1), -- HP Modifiers
+(20233, 4409, 1), -- MP Modifiers
+(20233, 4410, 11), -- P. Atk. Modifiers
+(20233, 4411, 11), -- M. Atk. Modifiers
+(20233, 4412, 11), -- P. Def. Modifiers
+(20233, 4413, 11), -- M. Def. Modifiers
+(20233, 4414, 2), -- Armor Type
+(20233, 4415, 3), -- Weapon Type
+(20233, 4416, 12), -- Races
 -- Marsh Stakato Drone
-(20234, 4028, 2), -- Might
-(20234, 4408, 1), -- HP Increase (1x)
-(20234, 4409, 1), -- MP Increase (1x)
-(20234, 4410, 12), -- Slightly Strong P. Atk.
-(20234, 4411, 12), -- Slightly Strong M. Atk.
-(20234, 4412, 10), -- Slightly Weak P. Def.
-(20234, 4413, 10), -- Slightly Weak M. Def.
-(20234, 4414, 2), -- Standard Type
-(20234, 4415, 7), -- Daggers
-(20234, 4416, 6), -- Humanoids
+(20234, 4028, 2), -- NPC Might
+(20234, 4408, 1), -- HP Modifiers
+(20234, 4409, 1), -- MP Modifiers
+(20234, 4410, 12), -- P. Atk. Modifiers
+(20234, 4411, 12), -- M. Atk. Modifiers
+(20234, 4412, 10), -- P. Def. Modifiers
+(20234, 4413, 10), -- M. Def. Modifiers
+(20234, 4414, 2), -- Armor Type
+(20234, 4415, 7), -- Weapon Type
+(20234, 4416, 6), -- Races
 -- Shackle
-(20235, 4002, 4), -- HP Drain
-(20235, 4408, 1), -- HP Increase (1x)
-(20235, 4409, 1), -- MP Increase (1x)
-(20235, 4410, 10), -- Slightly Weak P. Atk.
-(20235, 4411, 10), -- Slightly Weak M. Atk.
-(20235, 4412, 12), -- Slightly Strong P. Def.
-(20235, 4413, 12), -- Slightly Strong M. Def.
-(20235, 4414, 2), -- Standard Type
-(20235, 4415, 3), -- One-handed Sword
-(20235, 4416, 1), -- Undead
+(20235, 4002, 4), -- NPC HP Drain
+(20235, 4408, 1), -- HP Modifiers
+(20235, 4409, 1), -- MP Modifiers
+(20235, 4410, 10), -- P. Atk. Modifiers
+(20235, 4411, 10), -- M. Atk. Modifiers
+(20235, 4412, 12), -- P. Def. Modifiers
+(20235, 4413, 12), -- M. Def. Modifiers
+(20235, 4414, 2), -- Armor Type
+(20235, 4415, 3), -- Weapon Type
+(20235, 4416, 1), -- Races
 -- Cave Servant
-(20236, 4274, 1), -- Blunt Weapon Weak Point
-(20236, 4408, 1), -- HP Increase (1x)
-(20236, 4409, 1), -- MP Increase (1x)
-(20236, 4410, 10), -- Slightly Weak P. Atk.
-(20236, 4411, 10), -- Slightly Weak M. Atk.
-(20236, 4412, 12); -- Slightly Strong P. Def.
+(20236, 4274, 1), -- Blunt Attack Weak Point
+(20236, 4408, 1), -- HP Modifiers
+(20236, 4409, 1), -- MP Modifiers
+(20236, 4410, 10), -- P. Atk. Modifiers
+(20236, 4411, 10), -- M. Atk. Modifiers
+(20236, 4412, 12); -- P. Def. Modifiers
 
 INSERT INTO `npcskills` VALUES
-(20236, 4413, 12), -- Slightly Strong M. Def.
-(20236, 4414, 2), -- Standard Type
-(20236, 4415, 3), -- One-handed Sword
-(20236, 4416, 1), -- Undead
+(20236, 4413, 12), -- M. Def. Modifiers
+(20236, 4414, 2), -- Armor Type
+(20236, 4415, 3), -- Weapon Type
+(20236, 4416, 1), -- Races
 -- Cave Servant Archer
-(20237, 4040, 4), -- Power Shot
-(20237, 4274, 1), -- Blunt Weapon Weak Point
-(20237, 4408, 1), -- HP Increase (1x)
-(20237, 4409, 1), -- MP Increase (1x)
-(20237, 4410, 12), -- Slightly Strong P. Atk.
-(20237, 4411, 12), -- Slightly Strong M. Atk.
-(20237, 4412, 10), -- Slightly Weak P. Def.
-(20237, 4413, 10), -- Slightly Weak M. Def.
-(20237, 4414, 2), -- Standard Type
-(20237, 4415, 9), -- Bows
-(20237, 4416, 1), -- Undead
+(20237, 4040, 4), -- NPC Bow Attack
+(20237, 4274, 1), -- Blunt Attack Weak Point
+(20237, 4408, 1), -- HP Modifiers
+(20237, 4409, 1), -- MP Modifiers
+(20237, 4410, 12), -- P. Atk. Modifiers
+(20237, 4411, 12), -- M. Atk. Modifiers
+(20237, 4412, 10), -- P. Def. Modifiers
+(20237, 4413, 10), -- M. Def. Modifiers
+(20237, 4414, 2), -- Armor Type
+(20237, 4415, 9), -- Weapon Type
+(20237, 4416, 1), -- Races
 -- Cave Servant Warrior
-(20238, 4075, 4), -- Stun
-(20238, 4274, 1), -- Blunt Weapon Weak Point
-(20238, 4408, 1), -- HP Increase (1x)
-(20238, 4409, 1), -- MP Increase (1x)
-(20238, 4410, 12), -- Slightly Strong P. Atk.
-(20238, 4411, 12), -- Slightly Strong M. Atk.
-(20238, 4412, 10), -- Slightly Weak P. Def.
-(20238, 4413, 10), -- Slightly Weak M. Def.
-(20238, 4414, 2), -- Standard Type
-(20238, 4415, 3), -- One-handed Sword
-(20238, 4416, 1), -- Undead
+(20238, 4075, 4), -- Shock
+(20238, 4274, 1), -- Blunt Attack Weak Point
+(20238, 4408, 1), -- HP Modifiers
+(20238, 4409, 1), -- MP Modifiers
+(20238, 4410, 12), -- P. Atk. Modifiers
+(20238, 4411, 12), -- M. Atk. Modifiers
+(20238, 4412, 10), -- P. Def. Modifiers
+(20238, 4413, 10), -- M. Def. Modifiers
+(20238, 4414, 2), -- Armor Type
+(20238, 4415, 3), -- Weapon Type
+(20238, 4416, 1), -- Races
 -- Cave Servant Captain
-(20239, 4075, 4), -- Stun
-(20239, 4274, 1), -- Blunt Weapon Weak Point
-(20239, 4408, 1), -- HP Increase (1x)
-(20239, 4409, 1), -- MP Increase (1x)
-(20239, 4410, 10), -- Slightly Weak P. Atk.
-(20239, 4411, 10), -- Slightly Weak M. Atk.
-(20239, 4412, 12), -- Slightly Strong P. Def.
-(20239, 4413, 12), -- Slightly Strong M. Def.
-(20239, 4414, 2), -- Standard Type
-(20239, 4415, 3), -- One-handed Sword
-(20239, 4416, 1), -- Undead
+(20239, 4075, 4), -- Shock
+(20239, 4274, 1), -- Blunt Attack Weak Point
+(20239, 4408, 1), -- HP Modifiers
+(20239, 4409, 1), -- MP Modifiers
+(20239, 4410, 10), -- P. Atk. Modifiers
+(20239, 4411, 10), -- M. Atk. Modifiers
+(20239, 4412, 12), -- P. Def. Modifiers
+(20239, 4413, 12), -- M. Def. Modifiers
+(20239, 4414, 2), -- Armor Type
+(20239, 4415, 3), -- Weapon Type
+(20239, 4416, 1), -- Races
 -- Royal Cave Servant
-(20240, 4067, 5), -- Blow
-(20240, 4274, 1), -- Blunt Weapon Weak Point
-(20240, 4408, 1), -- HP Increase (1x)
-(20240, 4409, 1), -- MP Increase (1x)
-(20240, 4410, 10), -- Slightly Weak P. Atk.
-(20240, 4411, 10), -- Slightly Weak M. Atk.
-(20240, 4412, 12), -- Slightly Strong P. Def.
-(20240, 4413, 12), -- Slightly Strong M. Def.
-(20240, 4414, 2), -- Standard Type
-(20240, 4415, 7), -- Daggers
-(20240, 4416, 1), -- Undead
+(20240, 4067, 5), -- NPC Mortal Blow
+(20240, 4274, 1), -- Blunt Attack Weak Point
+(20240, 4408, 1), -- HP Modifiers
+(20240, 4409, 1), -- MP Modifiers
+(20240, 4410, 10), -- P. Atk. Modifiers
+(20240, 4411, 10), -- M. Atk. Modifiers
+(20240, 4412, 12), -- P. Def. Modifiers
+(20240, 4413, 12), -- M. Def. Modifiers
+(20240, 4414, 2), -- Armor Type
+(20240, 4415, 7), -- Weapon Type
+(20240, 4416, 1), -- Races
 -- Hunter Gargoyle
-(20241, 4032, 5), -- Power Strike
-(20241, 4273, 3), -- Resist Daggers/Rapier Weapon
-(20241, 4274, 1), -- Blunt Weapon Weak Point
-(20241, 4408, 1), -- HP Increase (1x)
-(20241, 4409, 1), -- MP Increase (1x)
-(20241, 4410, 12), -- Slightly Strong P. Atk.
-(20241, 4411, 12), -- Slightly Strong M. Atk.
-(20241, 4412, 10), -- Slightly Weak P. Def.
-(20241, 4413, 10), -- Slightly Weak M. Def.
-(20241, 4414, 2), -- Standard Type
-(20241, 4415, 3), -- One-handed Sword
-(20241, 4416, 2), -- Magic Creatures
+(20241, 4032, 5), -- NPC Strike
+(20241, 4273, 3), -- Resist Dagger
+(20241, 4274, 1), -- Blunt Attack Weak Point
+(20241, 4408, 1), -- HP Modifiers
+(20241, 4409, 1), -- MP Modifiers
+(20241, 4410, 12), -- P. Atk. Modifiers
+(20241, 4411, 12), -- M. Atk. Modifiers
+(20241, 4412, 10), -- P. Def. Modifiers
+(20241, 4413, 10), -- M. Def. Modifiers
+(20241, 4414, 2), -- Armor Type
+(20241, 4415, 3), -- Weapon Type
+(20241, 4416, 2), -- Races
 (20241, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 (20241, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Dustwind Gargoyle
-(20242, 4073, 5), -- Stun
-(20242, 4273, 3), -- Resist Daggers/Rapier Weapon
-(20242, 4274, 1), -- Blunt Weapon Weak Point
-(20242, 4408, 1), -- HP Increase (1x)
-(20242, 4409, 1), -- MP Increase (1x)
-(20242, 4410, 10), -- Slightly Weak P. Atk.
-(20242, 4411, 10), -- Slightly Weak M. Atk.
-(20242, 4412, 12), -- Slightly Strong P. Def.
-(20242, 4413, 12), -- Slightly Strong M. Def.
-(20242, 4414, 2), -- Standard Type
-(20242, 4415, 3), -- One-handed Sword
-(20242, 4416, 2), -- Magic Creatures
+(20242, 4073, 5), -- Shock
+(20242, 4273, 3), -- Resist Dagger
+(20242, 4274, 1), -- Blunt Attack Weak Point
+(20242, 4408, 1), -- HP Modifiers
+(20242, 4409, 1), -- MP Modifiers
+(20242, 4410, 10), -- P. Atk. Modifiers
+(20242, 4411, 10), -- M. Atk. Modifiers
+(20242, 4412, 12), -- P. Def. Modifiers
+(20242, 4413, 12), -- M. Def. Modifiers
+(20242, 4414, 2), -- Armor Type
+(20242, 4415, 3), -- Weapon Type
+(20242, 4416, 2), -- Races
 (20242, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Thunder Wyrm
-(20243, 4071, 5), -- Resist Bow/Crossbow Weapons
-(20243, 4408, 1), -- HP Increase (1x)
-(20243, 4409, 1), -- MP Increase (1x)
-(20243, 4410, 12), -- Slightly Strong P. Atk.
-(20243, 4411, 12), -- Slightly Strong M. Atk.
-(20243, 4412, 10), -- Slightly Weak P. Def.
-(20243, 4413, 10), -- Slightly Weak M. Def.
-(20243, 4414, 2), -- Standard Type
-(20243, 4415, 3), -- One-handed Sword
-(20243, 4416, 10), -- Dragons
+(20243, 4071, 5), -- Resist Archery
+(20243, 4408, 1), -- HP Modifiers
+(20243, 4409, 1), -- MP Modifiers
+(20243, 4410, 12), -- P. Atk. Modifiers
+(20243, 4411, 12), -- M. Atk. Modifiers
+(20243, 4412, 10), -- P. Def. Modifiers
+(20243, 4413, 10), -- M. Def. Modifiers
+(20243, 4414, 2), -- Armor Type
+(20243, 4415, 3), -- Weapon Type
+(20243, 4416, 10), -- Races
 -- Maluk Succubus
-(20244, 4039, 5), -- Mana Drain
-(20244, 4408, 1), -- HP Increase (1x)
-(20244, 4409, 1), -- MP Increase (1x)
-(20244, 4410, 12), -- Slightly Strong P. Atk.
-(20244, 4411, 12), -- Slightly Strong M. Atk.
-(20244, 4412, 10), -- Slightly Weak P. Def.
-(20244, 4413, 10), -- Slightly Weak M. Def.
-(20244, 4414, 2), -- Standard Type
-(20244, 4415, 3), -- One-handed Sword
-(20244, 4416, 9), -- Demons
+(20244, 4039, 5), -- NPC MP Drain
+(20244, 4408, 1), -- HP Modifiers
+(20244, 4409, 1), -- MP Modifiers
+(20244, 4410, 12), -- P. Atk. Modifiers
+(20244, 4411, 12), -- M. Atk. Modifiers
+(20244, 4412, 10), -- P. Def. Modifiers
+(20244, 4413, 10), -- M. Def. Modifiers
+(20244, 4414, 2), -- Armor Type
+(20244, 4415, 3), -- Weapon Type
+(20244, 4416, 9), -- Races
 -- Maluk Succubus Turen
-(20245, 4034, 5), -- Ice Bolt
-(20245, 4408, 1), -- HP Increase (1x)
-(20245, 4409, 1), -- MP Increase (1x)
-(20245, 4410, 12), -- Slightly Strong P. Atk.
-(20245, 4411, 12), -- Slightly Strong M. Atk.
-(20245, 4412, 10), -- Slightly Weak P. Def.
-(20245, 4413, 10), -- Slightly Weak M. Def.
-(20245, 4414, 2), -- Standard Type
-(20245, 4415, 3), -- One-handed Sword
-(20245, 4416, 9), -- Demons
+(20245, 4034, 5), -- Decrease Speed
+(20245, 4408, 1), -- HP Modifiers
+(20245, 4409, 1), -- MP Modifiers
+(20245, 4410, 12), -- P. Atk. Modifiers
+(20245, 4411, 12), -- M. Atk. Modifiers
+(20245, 4412, 10), -- P. Def. Modifiers
+(20245, 4413, 10), -- M. Def. Modifiers
+(20245, 4414, 2), -- Armor Type
+(20245, 4415, 3), -- Weapon Type
+(20245, 4416, 9), -- Races
 -- Cave Keeper
-(20246, 4032, 5), -- Power Strike
-(20246, 4408, 1), -- HP Increase (1x)
-(20246, 4409, 1), -- MP Increase (1x)
-(20246, 4410, 12), -- Slightly Strong P. Atk.
-(20246, 4411, 12), -- Slightly Strong M. Atk.
-(20246, 4412, 10), -- Slightly Weak P. Def.
-(20246, 4413, 10), -- Slightly Weak M. Def.
-(20246, 4414, 2), -- Standard Type
-(20246, 4415, 7), -- Daggers
-(20246, 4416, 3), -- Beasts
+(20246, 4032, 5), -- NPC Strike
+(20246, 4408, 1), -- HP Modifiers
+(20246, 4409, 1), -- MP Modifiers
+(20246, 4410, 12), -- P. Atk. Modifiers
+(20246, 4411, 12), -- M. Atk. Modifiers
+(20246, 4412, 10), -- P. Def. Modifiers
+(20246, 4413, 10), -- M. Def. Modifiers
+(20246, 4414, 2), -- Armor Type
+(20246, 4415, 7), -- Weapon Type
+(20246, 4416, 3), -- Races
 -- Turak Bugbear
 (20248, 4317, 1), -- Increase Rage Might
-(20248, 4408, 1), -- HP Increase (1x)
-(20248, 4409, 1), -- MP Increase (1x)
-(20248, 4410, 10), -- Slightly Weak P. Atk.
-(20248, 4411, 10), -- Slightly Weak M. Atk.
-(20248, 4412, 12), -- Slightly Strong P. Def.
-(20248, 4413, 12), -- Slightly Strong M. Def.
-(20248, 4414, 2), -- Standard Type
-(20248, 4415, 5), -- Blunt Weapons
-(20248, 4416, 11), -- Giants
+(20248, 4408, 1), -- HP Modifiers
+(20248, 4409, 1), -- MP Modifiers
+(20248, 4410, 10), -- P. Atk. Modifiers
+(20248, 4411, 10), -- M. Atk. Modifiers
+(20248, 4412, 12), -- P. Def. Modifiers
+(20248, 4413, 12), -- M. Def. Modifiers
+(20248, 4414, 2), -- Armor Type
+(20248, 4415, 5), -- Weapon Type
+(20248, 4416, 11), -- Races
 -- Turak Bugbear Warrior
-(20249, 4408, 10), -- HP Increase (2x)
-(20249, 4409, 1), -- MP Increase (1x)
-(20249, 4410, 10), -- Slightly Weak P. Atk.
-(20249, 4411, 10), -- Slightly Weak M. Atk.
-(20249, 4412, 12), -- Slightly Strong P. Def.
-(20249, 4413, 12), -- Slightly Strong M. Def.
-(20249, 4414, 2), -- Standard Type
-(20249, 4415, 3), -- One-handed Sword
-(20249, 4416, 11), -- Giants
+(20249, 4408, 10), -- HP Modifiers
+(20249, 4409, 1), -- MP Modifiers
+(20249, 4410, 10), -- P. Atk. Modifiers
+(20249, 4411, 10), -- M. Atk. Modifiers
+(20249, 4412, 12), -- P. Def. Modifiers
+(20249, 4413, 12), -- M. Def. Modifiers
+(20249, 4414, 2), -- Armor Type
+(20249, 4415, 3), -- Weapon Type
+(20249, 4416, 11), -- Races
 -- Glass Jaguar
-(20250, 4408, 1), -- HP Increase (1x)
-(20250, 4409, 1), -- MP Increase (1x)
-(20250, 4410, 12), -- Slightly Strong P. Atk.
-(20250, 4411, 12), -- Slightly Strong M. Atk.
-(20250, 4412, 10), -- Slightly Weak P. Def.
-(20250, 4413, 10), -- Slightly Weak M. Def.
-(20250, 4414, 2), -- Standard Type
-(20250, 4415, 3), -- One-handed Sword
-(20250, 4416, 3), -- Beasts
+(20250, 4408, 1), -- HP Modifiers
+(20250, 4409, 1), -- MP Modifiers
+(20250, 4410, 12), -- P. Atk. Modifiers
+(20250, 4411, 12), -- M. Atk. Modifiers
+(20250, 4412, 10), -- P. Def. Modifiers
+(20250, 4413, 10), -- M. Def. Modifiers
+(20250, 4414, 2), -- Armor Type
+(20250, 4415, 3), -- Weapon Type
+(20250, 4416, 3), -- Races
 -- Delu Lizardman
-(20251, 4408, 1), -- HP Increase (1x)
-(20251, 4409, 1), -- MP Increase (1x)
-(20251, 4410, 10), -- Slightly Weak P. Atk.
-(20251, 4411, 10), -- Slightly Weak M. Atk.
-(20251, 4412, 12), -- Slightly Strong P. Def.
-(20251, 4413, 12), -- Slightly Strong M. Def.
-(20251, 4414, 2), -- Standard Type
-(20251, 4415, 3), -- One-handed Sword
-(20251, 4416, 6), -- Humanoids
+(20251, 4408, 1), -- HP Modifiers
+(20251, 4409, 1), -- MP Modifiers
+(20251, 4410, 10), -- P. Atk. Modifiers
+(20251, 4411, 10), -- M. Atk. Modifiers
+(20251, 4412, 12), -- P. Def. Modifiers
+(20251, 4413, 12), -- M. Def. Modifiers
+(20251, 4414, 2), -- Armor Type
+(20251, 4415, 3), -- Weapon Type
+(20251, 4416, 6), -- Races
 -- Delu Lizardman Scout
-(20252, 4408, 1), -- HP Increase (1x)
-(20252, 4409, 1), -- MP Increase (1x)
-(20252, 4410, 12), -- Slightly Strong P. Atk.
-(20252, 4411, 12), -- Slightly Strong M. Atk.
-(20252, 4412, 10), -- Slightly Weak P. Def.
-(20252, 4413, 10), -- Slightly Weak M. Def.
-(20252, 4414, 2), -- Standard Type
-(20252, 4415, 3), -- One-handed Sword
-(20252, 4416, 6), -- Humanoids
+(20252, 4408, 1), -- HP Modifiers
+(20252, 4409, 1), -- MP Modifiers
+(20252, 4410, 12), -- P. Atk. Modifiers
+(20252, 4411, 12), -- M. Atk. Modifiers
+(20252, 4412, 10), -- P. Def. Modifiers
+(20252, 4413, 10), -- M. Def. Modifiers
+(20252, 4414, 2), -- Armor Type
+(20252, 4415, 3), -- Weapon Type
+(20252, 4416, 6), -- Races
 -- Delu Lizardman Warrior
-(20253, 4408, 1), -- HP Increase (1x)
-(20253, 4409, 1), -- MP Increase (1x)
-(20253, 4410, 10), -- Slightly Weak P. Atk.
-(20253, 4411, 10), -- Slightly Weak M. Atk.
-(20253, 4412, 12), -- Slightly Strong P. Def.
-(20253, 4413, 12), -- Slightly Strong M. Def.
-(20253, 4414, 2), -- Standard Type
-(20253, 4415, 3), -- One-handed Sword
-(20253, 4416, 6), -- Humanoids
+(20253, 4408, 1), -- HP Modifiers
+(20253, 4409, 1), -- MP Modifiers
+(20253, 4410, 10), -- P. Atk. Modifiers
+(20253, 4411, 10), -- M. Atk. Modifiers
+(20253, 4412, 12), -- P. Def. Modifiers
+(20253, 4413, 12), -- M. Def. Modifiers
+(20253, 4414, 2), -- Armor Type
+(20253, 4415, 3), -- Weapon Type
+(20253, 4416, 6), -- Races
 -- Skeleton Axeman
-(20254, 4274, 1), -- Blunt Weapon Weak Point
-(20254, 4408, 1), -- HP Increase (1x)
-(20254, 4409, 1), -- MP Increase (1x)
-(20254, 4410, 11), -- Average P. Atk.
-(20254, 4411, 11), -- Average M. Atk.
-(20254, 4412, 11), -- Average P. Def.
-(20254, 4413, 11), -- Average M. Def.
-(20254, 4414, 2), -- Standard Type
-(20254, 4415, 5), -- Blunt Weapons
-(20254, 4416, 1), -- Undead
+(20254, 4274, 1), -- Blunt Attack Weak Point
+(20254, 4408, 1), -- HP Modifiers
+(20254, 4409, 1), -- MP Modifiers
+(20254, 4410, 11), -- P. Atk. Modifiers
+(20254, 4411, 11), -- M. Atk. Modifiers
+(20254, 4412, 11), -- P. Def. Modifiers
+(20254, 4413, 11), -- M. Def. Modifiers
+(20254, 4414, 2), -- Armor Type
+(20254, 4415, 5), -- Weapon Type
+(20254, 4416, 1), -- Races
 -- Batur Orc
-(20255, 4408, 1), -- HP Increase (1x)
-(20255, 4409, 1), -- MP Increase (1x)
-(20255, 4410, 10), -- Slightly Weak P. Atk.
-(20255, 4411, 10), -- Slightly Weak M. Atk.
-(20255, 4412, 12), -- Slightly Strong P. Def.
-(20255, 4413, 12), -- Slightly Strong M. Def.
-(20255, 4414, 2), -- Standard Type
-(20255, 4415, 3), -- One-handed Sword
-(20255, 4416, 6), -- Humanoids
+(20255, 4408, 1), -- HP Modifiers
+(20255, 4409, 1), -- MP Modifiers
+(20255, 4410, 10), -- P. Atk. Modifiers
+(20255, 4411, 10), -- M. Atk. Modifiers
+(20255, 4412, 12), -- P. Def. Modifiers
+(20255, 4413, 12), -- M. Def. Modifiers
+(20255, 4414, 2), -- Armor Type
+(20255, 4415, 3), -- Weapon Type
+(20255, 4416, 6), -- Races
 -- Batur Orc Archer
-(20256, 4040, 3), -- Power Shot
-(20256, 4408, 1), -- HP Increase (1x)
-(20256, 4409, 1), -- MP Increase (1x)
-(20256, 4410, 10), -- Slightly Weak P. Atk.
-(20256, 4411, 10), -- Slightly Weak M. Atk.
-(20256, 4412, 12), -- Slightly Strong P. Def.
-(20256, 4413, 12), -- Slightly Strong M. Def.
-(20256, 4414, 2), -- Standard Type
-(20256, 4415, 9), -- Bows
-(20256, 4416, 6), -- Humanoids
+(20256, 4040, 3), -- NPC Bow Attack
+(20256, 4408, 1), -- HP Modifiers
+(20256, 4409, 1), -- MP Modifiers
+(20256, 4410, 10), -- P. Atk. Modifiers
+(20256, 4411, 10), -- M. Atk. Modifiers
+(20256, 4412, 12), -- P. Def. Modifiers
+(20256, 4413, 12), -- M. Def. Modifiers
+(20256, 4414, 2), -- Armor Type
+(20256, 4415, 9), -- Weapon Type
+(20256, 4416, 6), -- Races
 -- Batur Orc Warrior
-(20257, 4032, 3), -- Power Strike
-(20257, 4408, 1), -- HP Increase (1x)
-(20257, 4409, 1), -- MP Increase (1x)
-(20257, 4410, 12), -- Slightly Strong P. Atk.
-(20257, 4411, 12), -- Slightly Strong M. Atk.
-(20257, 4412, 10), -- Slightly Weak P. Def.
-(20257, 4413, 10), -- Slightly Weak M. Def.
-(20257, 4414, 2), -- Standard Type
-(20257, 4415, 3), -- One-handed Sword
-(20257, 4416, 6), -- Humanoids
+(20257, 4032, 3), -- NPC Strike
+(20257, 4408, 1), -- HP Modifiers
+(20257, 4409, 1), -- MP Modifiers
+(20257, 4410, 12), -- P. Atk. Modifiers
+(20257, 4411, 12), -- M. Atk. Modifiers
+(20257, 4412, 10), -- P. Def. Modifiers
+(20257, 4413, 10), -- M. Def. Modifiers
+(20257, 4414, 2), -- Armor Type
+(20257, 4415, 3), -- Weapon Type
+(20257, 4416, 6), -- Races
 -- Batur Orc Shaman
-(20258, 4076, 2), -- Slow
-(20258, 4152, 3), -- Drain Health
-(20258, 4160, 3), -- Aura Burn
-(20258, 4408, 1), -- HP Increase (1x)
-(20258, 4409, 1), -- MP Increase (1x)
-(20258, 4410, 12), -- Slightly Strong P. Atk.
-(20258, 4411, 12), -- Slightly Strong M. Atk.
-(20258, 4412, 10), -- Slightly Weak P. Def.
-(20258, 4413, 10), -- Slightly Weak M. Def.
-(20258, 4414, 2), -- Standard Type
-(20258, 4415, 5), -- Blunt Weapons
-(20258, 4416, 6), -- Humanoids
+(20258, 4076, 2), -- Reduction in movement speed
+(20258, 4152, 3), -- NPC HP Drain - Magic
+(20258, 4160, 3), -- NPC Aura Burn - Magic
+(20258, 4408, 1), -- HP Modifiers
+(20258, 4409, 1), -- MP Modifiers
+(20258, 4410, 12), -- P. Atk. Modifiers
+(20258, 4411, 12), -- M. Atk. Modifiers
+(20258, 4412, 10), -- P. Def. Modifiers
+(20258, 4413, 10), -- M. Def. Modifiers
+(20258, 4414, 2), -- Armor Type
+(20258, 4415, 5), -- Weapon Type
+(20258, 4416, 6), -- Races
 -- Batur Orc Overlord
-(20259, 4032, 3), -- Power Strike
-(20259, 4408, 1), -- HP Increase (1x)
-(20259, 4409, 1), -- MP Increase (1x)
-(20259, 4410, 12), -- Slightly Strong P. Atk.
-(20259, 4411, 12), -- Slightly Strong M. Atk.
-(20259, 4412, 10), -- Slightly Weak P. Def.
-(20259, 4413, 10), -- Slightly Weak M. Def.
-(20259, 4414, 2), -- Standard Type
-(20259, 4415, 3), -- One-handed Sword
-(20259, 4416, 6), -- Humanoids
+(20259, 4032, 3), -- NPC Strike
+(20259, 4408, 1), -- HP Modifiers
+(20259, 4409, 1), -- MP Modifiers
+(20259, 4410, 12), -- P. Atk. Modifiers
+(20259, 4411, 12), -- M. Atk. Modifiers
+(20259, 4412, 10), -- P. Def. Modifiers
+(20259, 4413, 10), -- M. Def. Modifiers
+(20259, 4414, 2), -- Armor Type
+(20259, 4415, 3), -- Weapon Type
+(20259, 4416, 6), -- Races
 -- Orc Champion
-(20260, 4028, 1), -- Might
-(20260, 4408, 1), -- HP Increase (1x)
-(20260, 4409, 1), -- MP Increase (1x)
-(20260, 4410, 10), -- Slightly Weak P. Atk.
-(20260, 4411, 10), -- Slightly Weak M. Atk.
-(20260, 4412, 12), -- Slightly Strong P. Def.
-(20260, 4413, 12), -- Slightly Strong M. Def.
-(20260, 4414, 2), -- Standard Type
-(20260, 4415, 3), -- One-handed Sword
-(20260, 4416, 6), -- Humanoids
+(20260, 4028, 1), -- NPC Might
+(20260, 4408, 1), -- HP Modifiers
+(20260, 4409, 1), -- MP Modifiers
+(20260, 4410, 10), -- P. Atk. Modifiers
+(20260, 4411, 10), -- M. Atk. Modifiers
+(20260, 4412, 12), -- P. Def. Modifiers
+(20260, 4413, 12), -- M. Def. Modifiers
+(20260, 4414, 2), -- Armor Type
+(20260, 4415, 3), -- Weapon Type
+(20260, 4416, 6), -- Races
 -- Orc Shaman
-(20261, 4037, 1), -- Weakness
-(20261, 4408, 1), -- HP Increase (1x)
-(20261, 4409, 1), -- MP Increase (1x)
-(20261, 4410, 10), -- Slightly Weak P. Atk.
-(20261, 4411, 10), -- Slightly Weak M. Atk.
-(20261, 4412, 12), -- Slightly Strong P. Def.
-(20261, 4413, 12), -- Slightly Strong M. Def.
-(20261, 4414, 2), -- Standard Type
-(20261, 4415, 5), -- Blunt Weapons
-(20261, 4416, 6), -- Humanoids
+(20261, 4037, 1), -- Decrease P.Atk
+(20261, 4408, 1), -- HP Modifiers
+(20261, 4409, 1), -- MP Modifiers
+(20261, 4410, 10), -- P. Atk. Modifiers
+(20261, 4411, 10), -- M. Atk. Modifiers
+(20261, 4412, 12), -- P. Def. Modifiers
+(20261, 4413, 12), -- M. Def. Modifiers
+(20261, 4414, 2), -- Armor Type
+(20261, 4415, 5), -- Weapon Type
+(20261, 4416, 6), -- Races
 -- Monster Eye Searcher
-(20265, 4151, 2), -- Wind Strike
-(20265, 4160, 2), -- Aura Burn
-(20265, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(20265, 4408, 10), -- HP Increase (2x)
-(20265, 4409, 1), -- MP Increase (1x)
-(20265, 4410, 12), -- Slightly Strong P. Atk.
-(20265, 4411, 12), -- Slightly Strong M. Atk.
-(20265, 4412, 10), -- Slightly Weak P. Def.
-(20265, 4413, 10), -- Slightly Weak M. Def.
-(20265, 4414, 2), -- Standard Type
-(20265, 4415, 5), -- Blunt Weapons
-(20265, 4416, 2), -- Magic Creatures
+(20265, 4151, 2), -- NPC Windstrike - Magic
+(20265, 4160, 2), -- NPC Aura Burn - Magic
+(20265, 4276, 1), -- Archery Attack Weak Point
+(20265, 4408, 10), -- HP Modifiers
+(20265, 4409, 1), -- MP Modifiers
+(20265, 4410, 12), -- P. Atk. Modifiers
+(20265, 4411, 12), -- M. Atk. Modifiers
+(20265, 4412, 10), -- P. Def. Modifiers
+(20265, 4413, 10), -- M. Def. Modifiers
+(20265, 4414, 2), -- Armor Type
+(20265, 4415, 5), -- Weapon Type
+(20265, 4416, 2), -- Races
 -- Monster Eye Gazer
-(20266, 4076, 2), -- Slow
-(20266, 4155, 2), -- Twister
-(20266, 4160, 2), -- Aura Burn
-(20266, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(20266, 4408, 1), -- HP Increase (1x)
-(20266, 4409, 1), -- MP Increase (1x)
-(20266, 4410, 10), -- Slightly Weak P. Atk.
-(20266, 4411, 10), -- Slightly Weak M. Atk.
-(20266, 4412, 12), -- Slightly Strong P. Def.
-(20266, 4413, 12), -- Slightly Strong M. Def.
-(20266, 4414, 2), -- Standard Type
-(20266, 4415, 3), -- One-handed Sword
-(20266, 4416, 2), -- Magic Creatures
+(20266, 4076, 2), -- Reduction in movement speed
+(20266, 4155, 2), -- NPC Twister - Magic
+(20266, 4160, 2), -- NPC Aura Burn - Magic
+(20266, 4276, 1), -- Archery Attack Weak Point
+(20266, 4408, 1), -- HP Modifiers
+(20266, 4409, 1), -- MP Modifiers
+(20266, 4410, 10), -- P. Atk. Modifiers
+(20266, 4411, 10), -- M. Atk. Modifiers
+(20266, 4412, 12), -- P. Def. Modifiers
+(20266, 4413, 12), -- M. Def. Modifiers
+(20266, 4414, 2), -- Armor Type
+(20266, 4415, 3), -- Weapon Type
+(20266, 4416, 2), -- Races
 -- Breka Orc
 (20267, 4317, 1), -- Increase Rage Might
-(20267, 4408, 1), -- HP Increase (1x)
-(20267, 4409, 1), -- MP Increase (1x)
-(20267, 4410, 10), -- Slightly Weak P. Atk.
-(20267, 4411, 10), -- Slightly Weak M. Atk.
-(20267, 4412, 12), -- Slightly Strong P. Def.
-(20267, 4413, 12), -- Slightly Strong M. Def.
-(20267, 4414, 2), -- Standard Type
-(20267, 4415, 7), -- Daggers
-(20267, 4416, 6), -- Humanoids
+(20267, 4408, 1), -- HP Modifiers
+(20267, 4409, 1), -- MP Modifiers
+(20267, 4410, 10), -- P. Atk. Modifiers
+(20267, 4411, 10), -- M. Atk. Modifiers
+(20267, 4412, 12), -- P. Def. Modifiers
+(20267, 4413, 12), -- M. Def. Modifiers
+(20267, 4414, 2), -- Armor Type
+(20267, 4415, 7), -- Weapon Type
+(20267, 4416, 6), -- Races
 -- Breka Orc Archer
-(20268, 4040, 3), -- Power Shot
-(20268, 4408, 1), -- HP Increase (1x)
-(20268, 4409, 1), -- MP Increase (1x)
-(20268, 4410, 10), -- Slightly Weak P. Atk.
-(20268, 4411, 10), -- Slightly Weak M. Atk.
-(20268, 4412, 12), -- Slightly Strong P. Def.
-(20268, 4413, 12), -- Slightly Strong M. Def.
-(20268, 4414, 2), -- Standard Type
-(20268, 4415, 9), -- Bows
-(20268, 4416, 6), -- Humanoids
+(20268, 4040, 3), -- NPC Bow Attack
+(20268, 4408, 1), -- HP Modifiers
+(20268, 4409, 1), -- MP Modifiers
+(20268, 4410, 10), -- P. Atk. Modifiers
+(20268, 4411, 10), -- M. Atk. Modifiers
+(20268, 4412, 12), -- P. Def. Modifiers
+(20268, 4413, 12), -- M. Def. Modifiers
+(20268, 4414, 2), -- Armor Type
+(20268, 4415, 9), -- Weapon Type
+(20268, 4416, 6), -- Races
 -- Breka Orc Shaman
 (20269, 4153, 3), -- Decrease Speed
-(20269, 4160, 3), -- Aura Burn
-(20269, 4408, 1), -- HP Increase (1x)
-(20269, 4409, 1), -- MP Increase (1x)
-(20269, 4410, 10), -- Slightly Weak P. Atk.
-(20269, 4411, 10), -- Slightly Weak M. Atk.
-(20269, 4412, 12), -- Slightly Strong P. Def.
-(20269, 4413, 12), -- Slightly Strong M. Def.
-(20269, 4414, 2), -- Standard Type
-(20269, 4415, 5), -- Blunt Weapons
-(20269, 4416, 6), -- Humanoids
+(20269, 4160, 3), -- NPC Aura Burn - Magic
+(20269, 4408, 1), -- HP Modifiers
+(20269, 4409, 1), -- MP Modifiers
+(20269, 4410, 10), -- P. Atk. Modifiers
+(20269, 4411, 10), -- M. Atk. Modifiers
+(20269, 4412, 12), -- P. Def. Modifiers
+(20269, 4413, 12), -- M. Def. Modifiers
+(20269, 4414, 2), -- Armor Type
+(20269, 4415, 5), -- Weapon Type
+(20269, 4416, 6), -- Races
 -- Breka Orc Overlord
-(20270, 4032, 3), -- Power Strike
+(20270, 4032, 3), -- NPC Strike
 (20270, 4318, 1), -- Ultimate Buff
-(20270, 4408, 1), -- HP Increase (1x)
-(20270, 4409, 1), -- MP Increase (1x)
-(20270, 4410, 12), -- Slightly Strong P. Atk.
-(20270, 4411, 12), -- Slightly Strong M. Atk.
-(20270, 4412, 10), -- Slightly Weak P. Def.
-(20270, 4413, 10), -- Slightly Weak M. Def.
-(20270, 4414, 2), -- Standard Type
-(20270, 4415, 3), -- One-handed Sword
-(20270, 4416, 6), -- Humanoids
+(20270, 4408, 1), -- HP Modifiers
+(20270, 4409, 1), -- MP Modifiers
+(20270, 4410, 12), -- P. Atk. Modifiers
+(20270, 4411, 12), -- M. Atk. Modifiers
+(20270, 4412, 10), -- P. Def. Modifiers
+(20270, 4413, 10), -- M. Def. Modifiers
+(20270, 4414, 2), -- Armor Type
+(20270, 4415, 3), -- Weapon Type
+(20270, 4416, 6), -- Races
 -- Breka Orc Warrior
-(20271, 4032, 3), -- Power Strike
-(20271, 4408, 1), -- HP Increase (1x)
-(20271, 4409, 1), -- MP Increase (1x)
-(20271, 4410, 12), -- Slightly Strong P. Atk.
-(20271, 4411, 12), -- Slightly Strong M. Atk.
-(20271, 4412, 10), -- Slightly Weak P. Def.
-(20271, 4413, 10), -- Slightly Weak M. Def.
-(20271, 4414, 2), -- Standard Type
-(20271, 4415, 3), -- One-handed Sword
-(20271, 4416, 6), -- Humanoids
+(20271, 4032, 3), -- NPC Strike
+(20271, 4408, 1), -- HP Modifiers
+(20271, 4409, 1), -- MP Modifiers
+(20271, 4410, 12), -- P. Atk. Modifiers
+(20271, 4411, 12), -- M. Atk. Modifiers
+(20271, 4412, 10), -- P. Def. Modifiers
+(20271, 4413, 10), -- M. Def. Modifiers
+(20271, 4414, 2), -- Armor Type
+(20271, 4415, 3), -- Weapon Type
+(20271, 4416, 6), -- Races
 -- Cave Servant
-(20272, 4274, 1), -- Blunt Weapon Weak Point
-(20272, 4408, 1), -- HP Increase (1x)
-(20272, 4409, 1), -- MP Increase (1x)
-(20272, 4410, 10), -- Slightly Weak P. Atk.
-(20272, 4411, 10), -- Slightly Weak M. Atk.
-(20272, 4412, 12), -- Slightly Strong P. Def.
-(20272, 4413, 12), -- Slightly Strong M. Def.
-(20272, 4414, 2), -- Standard Type
-(20272, 4415, 3), -- One-handed Sword
-(20272, 4416, 1), -- Undead
+(20272, 4274, 1), -- Blunt Attack Weak Point
+(20272, 4408, 1), -- HP Modifiers
+(20272, 4409, 1), -- MP Modifiers
+(20272, 4410, 10), -- P. Atk. Modifiers
+(20272, 4411, 10), -- M. Atk. Modifiers
+(20272, 4412, 12), -- P. Def. Modifiers
+(20272, 4413, 12), -- M. Def. Modifiers
+(20272, 4414, 2), -- Armor Type
+(20272, 4415, 3), -- Weapon Type
+(20272, 4416, 1), -- Races
 -- Cave Servant Archer
-(20273, 4274, 1), -- Blunt Weapon Weak Point
-(20273, 4408, 1), -- HP Increase (1x)
-(20273, 4409, 1), -- MP Increase (1x)
-(20273, 4410, 12), -- Slightly Strong P. Atk.
-(20273, 4411, 12), -- Slightly Strong M. Atk.
-(20273, 4412, 10), -- Slightly Weak P. Def.
-(20273, 4413, 10), -- Slightly Weak M. Def.
-(20273, 4414, 2), -- Standard Type
-(20273, 4415, 9), -- Bows
-(20273, 4416, 1), -- Undead
+(20273, 4274, 1), -- Blunt Attack Weak Point
+(20273, 4408, 1), -- HP Modifiers
+(20273, 4409, 1), -- MP Modifiers
+(20273, 4410, 12), -- P. Atk. Modifiers
+(20273, 4411, 12), -- M. Atk. Modifiers
+(20273, 4412, 10), -- P. Def. Modifiers
+(20273, 4413, 10), -- M. Def. Modifiers
+(20273, 4414, 2), -- Armor Type
+(20273, 4415, 9), -- Weapon Type
+(20273, 4416, 1), -- Races
 -- Cave Servant Warrior
-(20274, 4274, 1), -- Blunt Weapon Weak Point
-(20274, 4408, 1), -- HP Increase (1x)
-(20274, 4409, 1), -- MP Increase (1x)
-(20274, 4410, 12), -- Slightly Strong P. Atk.
-(20274, 4411, 12), -- Slightly Strong M. Atk.
-(20274, 4412, 10), -- Slightly Weak P. Def.
-(20274, 4413, 10), -- Slightly Weak M. Def.
-(20274, 4414, 2), -- Standard Type
-(20274, 4415, 3), -- One-handed Sword
-(20274, 4416, 1), -- Undead
+(20274, 4274, 1), -- Blunt Attack Weak Point
+(20274, 4408, 1), -- HP Modifiers
+(20274, 4409, 1), -- MP Modifiers
+(20274, 4410, 12), -- P. Atk. Modifiers
+(20274, 4411, 12), -- M. Atk. Modifiers
+(20274, 4412, 10), -- P. Def. Modifiers
+(20274, 4413, 10), -- M. Def. Modifiers
+(20274, 4414, 2), -- Armor Type
+(20274, 4415, 3), -- Weapon Type
+(20274, 4416, 1), -- Races
 -- Cave Servant Captain
-(20275, 4274, 1), -- Blunt Weapon Weak Point
-(20275, 4408, 1), -- HP Increase (1x)
-(20275, 4409, 1), -- MP Increase (1x)
-(20275, 4410, 10), -- Slightly Weak P. Atk.
-(20275, 4411, 10), -- Slightly Weak M. Atk.
-(20275, 4412, 12), -- Slightly Strong P. Def.
-(20275, 4413, 12), -- Slightly Strong M. Def.
-(20275, 4414, 2), -- Standard Type
-(20275, 4415, 3), -- One-handed Sword
-(20275, 4416, 1), -- Undead
+(20275, 4274, 1), -- Blunt Attack Weak Point
+(20275, 4408, 1), -- HP Modifiers
+(20275, 4409, 1), -- MP Modifiers
+(20275, 4410, 10), -- P. Atk. Modifiers
+(20275, 4411, 10), -- M. Atk. Modifiers
+(20275, 4412, 12), -- P. Def. Modifiers
+(20275, 4413, 12), -- M. Def. Modifiers
+(20275, 4414, 2), -- Armor Type
+(20275, 4415, 3), -- Weapon Type
+(20275, 4416, 1), -- Races
 -- Royal Cave Servant
 (20276, 4046, 5), -- Sleep
-(20276, 4274, 1), -- Blunt Weapon Weak Point
-(20276, 4408, 1), -- HP Increase (1x)
-(20276, 4409, 1), -- MP Increase (1x)
-(20276, 4410, 10), -- Slightly Weak P. Atk.
-(20276, 4411, 10), -- Slightly Weak M. Atk.
-(20276, 4412, 12), -- Slightly Strong P. Def.
-(20276, 4413, 12), -- Slightly Strong M. Def.
-(20276, 4414, 2), -- Standard Type
-(20276, 4415, 7), -- Daggers
-(20276, 4416, 1), -- Undead
+(20276, 4274, 1), -- Blunt Attack Weak Point
+(20276, 4408, 1), -- HP Modifiers
+(20276, 4409, 1), -- MP Modifiers
+(20276, 4410, 10), -- P. Atk. Modifiers
+(20276, 4411, 10), -- M. Atk. Modifiers
+(20276, 4412, 12), -- P. Def. Modifiers
+(20276, 4413, 12), -- M. Def. Modifiers
+(20276, 4414, 2), -- Armor Type
+(20276, 4415, 7), -- Weapon Type
+(20276, 4416, 1), -- Races
 -- Cave Keeper
-(20277, 4002, 5), -- HP Drain
-(20277, 4408, 1), -- HP Increase (1x)
-(20277, 4409, 1), -- MP Increase (1x)
-(20277, 4410, 12), -- Slightly Strong P. Atk.
-(20277, 4411, 12), -- Slightly Strong M. Atk.
-(20277, 4412, 10), -- Slightly Weak P. Def.
-(20277, 4413, 10), -- Slightly Weak M. Def.
-(20277, 4414, 2), -- Standard Type
-(20277, 4415, 7), -- Daggers
-(20277, 4416, 3), -- Beasts
+(20277, 4002, 5), -- NPC HP Drain
+(20277, 4408, 1), -- HP Modifiers
+(20277, 4409, 1), -- MP Modifiers
+(20277, 4410, 12), -- P. Atk. Modifiers
+(20277, 4411, 12), -- M. Atk. Modifiers
+(20277, 4412, 10), -- P. Def. Modifiers
+(20277, 4413, 10), -- M. Def. Modifiers
+(20277, 4414, 2), -- Armor Type
+(20277, 4415, 7), -- Weapon Type
+(20277, 4416, 3), -- Races
 -- Shackle
-(20279, 4002, 4), -- HP Drain
-(20279, 4408, 1), -- HP Increase (1x)
-(20279, 4409, 1), -- MP Increase (1x)
-(20279, 4410, 10), -- Slightly Weak P. Atk.
-(20279, 4411, 10), -- Slightly Weak M. Atk.
-(20279, 4412, 12), -- Slightly Strong P. Def.
-(20279, 4413, 12), -- Slightly Strong M. Def.
-(20279, 4414, 2), -- Standard Type
-(20279, 4415, 3), -- One-handed Sword
-(20279, 4416, 1), -- Undead
+(20279, 4002, 4), -- NPC HP Drain
+(20279, 4408, 1), -- HP Modifiers
+(20279, 4409, 1), -- MP Modifiers
+(20279, 4410, 10), -- P. Atk. Modifiers
+(20279, 4411, 10), -- M. Atk. Modifiers
+(20279, 4412, 12), -- P. Def. Modifiers
+(20279, 4413, 12), -- M. Def. Modifiers
+(20279, 4414, 2), -- Armor Type
+(20279, 4415, 3), -- Weapon Type
+(20279, 4416, 1), -- Races
 -- Headless Knight
-(20280, 4408, 1), -- HP Increase (1x)
-(20280, 4409, 1), -- MP Increase (1x)
-(20280, 4410, 10), -- Slightly Weak P. Atk.
-(20280, 4411, 10), -- Slightly Weak M. Atk.
-(20280, 4412, 12), -- Slightly Strong P. Def.
-(20280, 4413, 12), -- Slightly Strong M. Def.
-(20280, 4414, 2), -- Standard Type
-(20280, 4415, 3), -- One-handed Sword
-(20280, 4416, 1), -- Undead
+(20280, 4408, 1), -- HP Modifiers
+(20280, 4409, 1), -- MP Modifiers
+(20280, 4410, 10), -- P. Atk. Modifiers
+(20280, 4411, 10), -- M. Atk. Modifiers
+(20280, 4412, 12), -- P. Def. Modifiers
+(20280, 4413, 12), -- M. Def. Modifiers
+(20280, 4414, 2), -- Armor Type
+(20280, 4415, 3), -- Weapon Type
+(20280, 4416, 1), -- Races
 -- Dustwind Gargoyle
-(20281, 4273, 3), -- Resist Daggers/Rapier Weapon
-(20281, 4274, 1), -- Blunt Weapon Weak Point
-(20281, 4408, 1), -- HP Increase (1x)
-(20281, 4409, 1), -- MP Increase (1x)
-(20281, 4410, 10), -- Slightly Weak P. Atk.
-(20281, 4411, 10), -- Slightly Weak M. Atk.
-(20281, 4412, 12), -- Slightly Strong P. Def.
-(20281, 4413, 12), -- Slightly Strong M. Def.
-(20281, 4414, 2), -- Standard Type
-(20281, 4415, 3), -- One-handed Sword
-(20281, 4416, 2), -- Magic Creatures
+(20281, 4273, 3), -- Resist Dagger
+(20281, 4274, 1), -- Blunt Attack Weak Point
+(20281, 4408, 1), -- HP Modifiers
+(20281, 4409, 1), -- MP Modifiers
+(20281, 4410, 10), -- P. Atk. Modifiers
+(20281, 4411, 10), -- M. Atk. Modifiers
+(20281, 4412, 12), -- P. Def. Modifiers
+(20281, 4413, 12), -- M. Def. Modifiers
+(20281, 4414, 2), -- Armor Type
+(20281, 4415, 3), -- Weapon Type
+(20281, 4416, 2), -- Races
 (20281, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Thunder Wyrm
-(20282, 4408, 1), -- HP Increase (1x)
-(20282, 4409, 1), -- MP Increase (1x)
-(20282, 4410, 12), -- Slightly Strong P. Atk.
-(20282, 4411, 12), -- Slightly Strong M. Atk.
-(20282, 4412, 10), -- Slightly Weak P. Def.
-(20282, 4413, 10), -- Slightly Weak M. Def.
-(20282, 4414, 2), -- Standard Type
-(20282, 4415, 3), -- One-handed Sword
-(20282, 4416, 10), -- Dragons
+(20282, 4408, 1), -- HP Modifiers
+(20282, 4409, 1), -- MP Modifiers
+(20282, 4410, 12), -- P. Atk. Modifiers
+(20282, 4411, 12), -- M. Atk. Modifiers
+(20282, 4412, 10), -- P. Def. Modifiers
+(20282, 4413, 10), -- M. Def. Modifiers
+(20282, 4414, 2), -- Armor Type
+(20282, 4415, 3), -- Weapon Type
+(20282, 4416, 10), -- Races
 -- Maluk Succubus
 (20283, 4046, 5), -- Sleep
-(20283, 4408, 1), -- HP Increase (1x)
-(20283, 4409, 1), -- MP Increase (1x)
-(20283, 4410, 12), -- Slightly Strong P. Atk.
-(20283, 4411, 12), -- Slightly Strong M. Atk.
-(20283, 4412, 10), -- Slightly Weak P. Def.
-(20283, 4413, 10), -- Slightly Weak M. Def.
-(20283, 4414, 2), -- Standard Type
-(20283, 4415, 3), -- One-handed Sword
-(20283, 4416, 9), -- Demons
+(20283, 4408, 1), -- HP Modifiers
+(20283, 4409, 1), -- MP Modifiers
+(20283, 4410, 12), -- P. Atk. Modifiers
+(20283, 4411, 12), -- M. Atk. Modifiers
+(20283, 4412, 10), -- P. Def. Modifiers
+(20283, 4413, 10), -- M. Def. Modifiers
+(20283, 4414, 2), -- Armor Type
+(20283, 4415, 3), -- Weapon Type
+(20283, 4416, 9), -- Races
 -- Maluk Succubus Turen
 (20284, 4046, 5), -- Sleep
-(20284, 4408, 1), -- HP Increase (1x)
-(20284, 4409, 1), -- MP Increase (1x)
-(20284, 4410, 12), -- Slightly Strong P. Atk.
-(20284, 4411, 12), -- Slightly Strong M. Atk.
-(20284, 4412, 10), -- Slightly Weak P. Def.
-(20284, 4413, 10), -- Slightly Weak M. Def.
-(20284, 4414, 2), -- Standard Type
-(20284, 4415, 3), -- One-handed Sword
-(20284, 4416, 9), -- Demons
+(20284, 4408, 1), -- HP Modifiers
+(20284, 4409, 1), -- MP Modifiers
+(20284, 4410, 12), -- P. Atk. Modifiers
+(20284, 4411, 12), -- M. Atk. Modifiers
+(20284, 4412, 10), -- P. Def. Modifiers
+(20284, 4413, 10), -- M. Def. Modifiers
+(20284, 4414, 2), -- Armor Type
+(20284, 4415, 3), -- Weapon Type
+(20284, 4416, 9), -- Races
 -- Drake
-(20285, 4408, 1), -- HP Increase (1x)
-(20285, 4409, 1), -- MP Increase (1x)
-(20285, 4410, 12), -- Slightly Strong P. Atk.
-(20285, 4411, 12), -- Slightly Strong M. Atk.
-(20285, 4412, 10), -- Slightly Weak P. Def.
-(20285, 4413, 10), -- Slightly Weak M. Def.
-(20285, 4414, 2), -- Standard Type
-(20285, 4415, 3), -- One-handed Sword
-(20285, 4416, 10), -- Dragons
+(20285, 4408, 1), -- HP Modifiers
+(20285, 4409, 1), -- MP Modifiers
+(20285, 4410, 12), -- P. Atk. Modifiers
+(20285, 4411, 12), -- M. Atk. Modifiers
+(20285, 4412, 10), -- P. Def. Modifiers
+(20285, 4413, 10), -- M. Def. Modifiers
+(20285, 4414, 2), -- Armor Type
+(20285, 4415, 3), -- Weapon Type
+(20285, 4416, 10), -- Races
 -- Hunter Gargoyle
-(20286, 4273, 3), -- Resist Daggers/Rapier Weapon
-(20286, 4274, 1), -- Blunt Weapon Weak Point
-(20286, 4408, 1), -- HP Increase (1x)
-(20286, 4409, 1), -- MP Increase (1x)
-(20286, 4410, 12), -- Slightly Strong P. Atk.
-(20286, 4411, 12), -- Slightly Strong M. Atk.
-(20286, 4412, 10), -- Slightly Weak P. Def.
-(20286, 4413, 10), -- Slightly Weak M. Def.
-(20286, 4414, 2), -- Standard Type
-(20286, 4415, 3), -- One-handed Sword
-(20286, 4416, 2), -- Magic Creatures
+(20286, 4273, 3), -- Resist Dagger
+(20286, 4274, 1), -- Blunt Attack Weak Point
+(20286, 4408, 1), -- HP Modifiers
+(20286, 4409, 1), -- MP Modifiers
+(20286, 4410, 12), -- P. Atk. Modifiers
+(20286, 4411, 12), -- M. Atk. Modifiers
+(20286, 4412, 10), -- P. Def. Modifiers
+(20286, 4413, 10), -- M. Def. Modifiers
+(20286, 4414, 2), -- Armor Type
+(20286, 4415, 3), -- Weapon Type
+(20286, 4416, 2), -- Races
 (20286, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Cave Maiden
-(20287, 4408, 1), -- HP Increase (1x)
-(20287, 4409, 1), -- MP Increase (1x)
-(20287, 4410, 12), -- Slightly Strong P. Atk.
-(20287, 4411, 12), -- Slightly Strong M. Atk.
-(20287, 4412, 10), -- Slightly Weak P. Def.
-(20287, 4413, 10), -- Slightly Weak M. Def.
-(20287, 4414, 2), -- Standard Type
-(20287, 4415, 3), -- One-handed Sword
-(20287, 4416, 3), -- Beasts
+(20287, 4408, 1), -- HP Modifiers
+(20287, 4409, 1), -- MP Modifiers
+(20287, 4410, 12), -- P. Atk. Modifiers
+(20287, 4411, 12), -- M. Atk. Modifiers
+(20287, 4412, 10), -- P. Def. Modifiers
+(20287, 4413, 10), -- M. Def. Modifiers
+(20287, 4414, 2), -- Armor Type
+(20287, 4415, 3), -- Weapon Type
+(20287, 4416, 3), -- Races
 -- Enku Orc Champion
-(20291, 4032, 2), -- Power Strike
-(20291, 4408, 1), -- HP Increase (1x)
-(20291, 4409, 1), -- MP Increase (1x)
-(20291, 4410, 10), -- Slightly Weak P. Atk.
-(20291, 4411, 10), -- Slightly Weak M. Atk.
-(20291, 4412, 12), -- Slightly Strong P. Def.
-(20291, 4413, 12), -- Slightly Strong M. Def.
-(20291, 4414, 2), -- Standard Type
-(20291, 4415, 3), -- One-handed Sword
-(20291, 4416, 6), -- Humanoids
+(20291, 4032, 2), -- NPC Strike
+(20291, 4408, 1), -- HP Modifiers
+(20291, 4409, 1), -- MP Modifiers
+(20291, 4410, 10), -- P. Atk. Modifiers
+(20291, 4411, 10), -- M. Atk. Modifiers
+(20291, 4412, 12), -- P. Def. Modifiers
+(20291, 4413, 12), -- M. Def. Modifiers
+(20291, 4414, 2), -- Armor Type
+(20291, 4415, 3), -- Weapon Type
+(20291, 4416, 6), -- Races
 -- Enku Orc Shaman
-(20292, 4065, 2), -- Heal
-(20292, 4151, 2), -- Wind Strike
-(20292, 4160, 2), -- Aura Burn
-(20292, 4408, 1), -- HP Increase (1x)
-(20292, 4409, 1), -- MP Increase (1x)
-(20292, 4410, 10), -- Slightly Weak P. Atk.
-(20292, 4411, 10), -- Slightly Weak M. Atk.
-(20292, 4412, 12), -- Slightly Strong P. Def.
-(20292, 4413, 12), -- Slightly Strong M. Def.
-(20292, 4414, 2), -- Standard Type
-(20292, 4415, 5), -- Blunt Weapons
-(20292, 4416, 6), -- Humanoids
+(20292, 4065, 2), -- NPC Heal
+(20292, 4151, 2), -- NPC Windstrike - Magic
+(20292, 4160, 2), -- NPC Aura Burn - Magic
+(20292, 4408, 1), -- HP Modifiers
+(20292, 4409, 1), -- MP Modifiers
+(20292, 4410, 10), -- P. Atk. Modifiers
+(20292, 4411, 10), -- M. Atk. Modifiers
+(20292, 4412, 12), -- P. Def. Modifiers
+(20292, 4413, 12), -- M. Def. Modifiers
+(20292, 4414, 2), -- Armor Type
+(20292, 4415, 5), -- Weapon Type
+(20292, 4416, 6), -- Races
 -- Virud Lizardman
-(20293, 4408, 1), -- HP Increase (1x)
-(20293, 4409, 1), -- MP Increase (1x)
-(20293, 4410, 10), -- Slightly Weak P. Atk.
-(20293, 4411, 10), -- Slightly Weak M. Atk.
-(20293, 4412, 12), -- Slightly Strong P. Def.
-(20293, 4413, 12), -- Slightly Strong M. Def.
-(20293, 4414, 2), -- Standard Type
-(20293, 4415, 3), -- One-handed Sword
-(20293, 4416, 6), -- Humanoids
+(20293, 4408, 1), -- HP Modifiers
+(20293, 4409, 1), -- MP Modifiers
+(20293, 4410, 10), -- P. Atk. Modifiers
+(20293, 4411, 10), -- M. Atk. Modifiers
+(20293, 4412, 12), -- P. Def. Modifiers
+(20293, 4413, 12), -- M. Def. Modifiers
+(20293, 4414, 2), -- Armor Type
+(20293, 4415, 3), -- Weapon Type
+(20293, 4416, 6), -- Races
 -- Virud Lizardman Matriarch
-(20294, 4033, 2), -- Aura Burn
-(20294, 4408, 1), -- HP Increase (1x)
-(20294, 4409, 1), -- MP Increase (1x)
-(20294, 4410, 12), -- Slightly Strong P. Atk.
-(20294, 4411, 12), -- Slightly Strong M. Atk.
-(20294, 4412, 10), -- Slightly Weak P. Def.
-(20294, 4413, 10), -- Slightly Weak M. Def.
-(20294, 4414, 2), -- Standard Type
-(20294, 4415, 3), -- One-handed Sword
-(20294, 4416, 6), -- Humanoids
+(20294, 4033, 2), -- NPC Burn
+(20294, 4408, 1), -- HP Modifiers
+(20294, 4409, 1), -- MP Modifiers
+(20294, 4410, 12), -- P. Atk. Modifiers
+(20294, 4411, 12), -- M. Atk. Modifiers
+(20294, 4412, 10), -- P. Def. Modifiers
+(20294, 4413, 10), -- M. Def. Modifiers
+(20294, 4414, 2), -- Armor Type
+(20294, 4415, 3), -- Weapon Type
+(20294, 4416, 6), -- Races
 -- Virud Lizardman Warrior
-(20295, 4408, 1), -- HP Increase (1x)
-(20295, 4409, 1), -- MP Increase (1x)
-(20295, 4410, 12), -- Slightly Strong P. Atk.
-(20295, 4411, 12), -- Slightly Strong M. Atk.
-(20295, 4412, 10), -- Slightly Weak P. Def.
-(20295, 4413, 10), -- Slightly Weak M. Def.
-(20295, 4414, 2), -- Standard Type
-(20295, 4415, 3), -- One-handed Sword
-(20295, 4416, 6), -- Humanoids
+(20295, 4408, 1), -- HP Modifiers
+(20295, 4409, 1), -- MP Modifiers
+(20295, 4410, 12), -- P. Atk. Modifiers
+(20295, 4411, 12), -- M. Atk. Modifiers
+(20295, 4412, 10), -- P. Def. Modifiers
+(20295, 4413, 10), -- M. Def. Modifiers
+(20295, 4414, 2), -- Armor Type
+(20295, 4415, 3), -- Weapon Type
+(20295, 4416, 6), -- Races
 -- Virud Lizardman Scout
-(20296, 4408, 1), -- HP Increase (1x)
-(20296, 4409, 1), -- MP Increase (1x)
-(20296, 4410, 10), -- Slightly Weak P. Atk.
-(20296, 4411, 10), -- Slightly Weak M. Atk.
-(20296, 4412, 12), -- Slightly Strong P. Def.
-(20296, 4413, 12), -- Slightly Strong M. Def.
-(20296, 4414, 2), -- Standard Type
-(20296, 4415, 9), -- Bows
-(20296, 4416, 6), -- Humanoids
+(20296, 4408, 1), -- HP Modifiers
+(20296, 4409, 1), -- MP Modifiers
+(20296, 4410, 10), -- P. Atk. Modifiers
+(20296, 4411, 10), -- M. Atk. Modifiers
+(20296, 4412, 12), -- P. Def. Modifiers
+(20296, 4413, 12), -- M. Def. Modifiers
+(20296, 4414, 2), -- Armor Type
+(20296, 4415, 9), -- Weapon Type
+(20296, 4416, 6), -- Races
 -- Virud Lizardman Shaman 
-(20297, 4408, 1), -- HP Increase (1x)
-(20297, 4409, 1), -- MP Increase (1x)
-(20297, 4410, 10), -- Slightly Weak P. Atk.
-(20297, 4411, 10), -- Slightly Weak M. Atk.
-(20297, 4412, 12), -- Slightly Strong P. Def.
-(20297, 4413, 12), -- Slightly Strong M. Def.
-(20297, 4414, 2), -- Standard Type
-(20297, 4415, 5), -- Blunt Weapons
-(20297, 4416, 6), -- Humanoids
+(20297, 4408, 1), -- HP Modifiers
+(20297, 4409, 1), -- MP Modifiers
+(20297, 4410, 10), -- P. Atk. Modifiers
+(20297, 4411, 10), -- M. Atk. Modifiers
+(20297, 4412, 12), -- P. Def. Modifiers
+(20297, 4413, 12), -- M. Def. Modifiers
+(20297, 4414, 2), -- Armor Type
+(20297, 4415, 5), -- Weapon Type
+(20297, 4416, 6), -- Races
 -- Virud Lizardman Shaman 
-(20298, 4408, 1), -- HP Increase (1x)
-(20298, 4409, 1), -- MP Increase (1x)
-(20298, 4410, 10), -- Slightly Weak P. Atk.
-(20298, 4411, 10), -- Slightly Weak M. Atk.
-(20298, 4412, 12), -- Slightly Strong P. Def.
-(20298, 4413, 12), -- Slightly Strong M. Def.
-(20298, 4414, 2), -- Standard Type
-(20298, 4415, 5), -- Blunt Weapons
-(20298, 4416, 6), -- Humanoids
+(20298, 4408, 1), -- HP Modifiers
+(20298, 4409, 1), -- MP Modifiers
+(20298, 4410, 10), -- P. Atk. Modifiers
+(20298, 4411, 10), -- M. Atk. Modifiers
+(20298, 4412, 12), -- P. Def. Modifiers
+(20298, 4413, 12), -- M. Def. Modifiers
+(20298, 4414, 2), -- Armor Type
+(20298, 4415, 5), -- Weapon Type
+(20298, 4416, 6), -- Races
 -- Zenta Lizardman
-(20299, 4408, 1), -- HP Increase (1x)
-(20299, 4409, 1), -- MP Increase (1x)
-(20299, 4410, 10), -- Slightly Weak P. Atk.
-(20299, 4411, 10), -- Slightly Weak M. Atk.
-(20299, 4412, 12), -- Slightly Strong P. Def.
-(20299, 4413, 12), -- Slightly Strong M. Def.
-(20299, 4414, 2), -- Standard Type
-(20299, 4415, 3), -- One-handed Sword
-(20299, 4416, 6), -- Humanoids
+(20299, 4408, 1), -- HP Modifiers
+(20299, 4409, 1), -- MP Modifiers
+(20299, 4410, 10), -- P. Atk. Modifiers
+(20299, 4411, 10), -- M. Atk. Modifiers
+(20299, 4412, 12), -- P. Def. Modifiers
+(20299, 4413, 12), -- M. Def. Modifiers
+(20299, 4414, 2), -- Armor Type
+(20299, 4415, 3), -- Weapon Type
+(20299, 4416, 6), -- Races
 -- Zenta Lizardman Matriarch
-(20300, 4032, 4), -- Power Strike
-(20300, 4408, 1), -- HP Increase (1x)
-(20300, 4409, 1), -- MP Increase (1x)
-(20300, 4410, 12), -- Slightly Strong P. Atk.
-(20300, 4411, 12), -- Slightly Strong M. Atk.
-(20300, 4412, 10), -- Slightly Weak P. Def.
-(20300, 4413, 10), -- Slightly Weak M. Def.
-(20300, 4414, 2), -- Standard Type
-(20300, 4415, 7), -- Daggers
-(20300, 4416, 6), -- Humanoids
+(20300, 4032, 4), -- NPC Strike
+(20300, 4408, 1), -- HP Modifiers
+(20300, 4409, 1), -- MP Modifiers
+(20300, 4410, 12), -- P. Atk. Modifiers
+(20300, 4411, 12), -- M. Atk. Modifiers
+(20300, 4412, 10), -- P. Def. Modifiers
+(20300, 4413, 10), -- M. Def. Modifiers
+(20300, 4414, 2), -- Armor Type
+(20300, 4415, 7), -- Weapon Type
+(20300, 4416, 6), -- Races
 -- Zenta Lizardman Scout
-(20301, 4408, 1), -- HP Increase (1x)
-(20301, 4409, 1), -- MP Increase (1x)
-(20301, 4410, 10), -- Slightly Weak P. Atk.
-(20301, 4411, 10), -- Slightly Weak M. Atk.
-(20301, 4412, 12), -- Slightly Strong P. Def.
-(20301, 4413, 12), -- Slightly Strong M. Def.
-(20301, 4414, 2), -- Standard Type
-(20301, 4415, 9), -- Bows
-(20301, 4416, 6), -- Humanoids
+(20301, 4408, 1), -- HP Modifiers
+(20301, 4409, 1), -- MP Modifiers
+(20301, 4410, 10), -- P. Atk. Modifiers
+(20301, 4411, 10), -- M. Atk. Modifiers
+(20301, 4412, 12), -- P. Def. Modifiers
+(20301, 4413, 12), -- M. Def. Modifiers
+(20301, 4414, 2), -- Armor Type
+(20301, 4415, 9), -- Weapon Type
+(20301, 4416, 6), -- Races
 -- Zenta Lizardman Warrior
-(20302, 4408, 1), -- HP Increase (1x)
-(20302, 4409, 1), -- MP Increase (1x)
-(20302, 4410, 12), -- Slightly Strong P. Atk.
-(20302, 4411, 12), -- Slightly Strong M. Atk.
-(20302, 4412, 10), -- Slightly Weak P. Def.
-(20302, 4413, 10), -- Slightly Weak M. Def.
-(20302, 4414, 2), -- Standard Type
-(20302, 4415, 3), -- One-handed Sword
-(20302, 4416, 6), -- Humanoids
+(20302, 4408, 1), -- HP Modifiers
+(20302, 4409, 1), -- MP Modifiers
+(20302, 4410, 12), -- P. Atk. Modifiers
+(20302, 4411, 12), -- M. Atk. Modifiers
+(20302, 4412, 10), -- P. Def. Modifiers
+(20302, 4413, 10), -- M. Def. Modifiers
+(20302, 4414, 2), -- Armor Type
+(20302, 4415, 3), -- Weapon Type
+(20302, 4416, 6), -- Races
 -- Zenta Lizardman Shaman
-(20303, 4408, 1), -- HP Increase (1x)
-(20303, 4409, 1), -- MP Increase (1x)
-(20303, 4410, 10), -- Slightly Weak P. Atk.
-(20303, 4411, 10), -- Slightly Weak M. Atk.
-(20303, 4412, 12), -- Slightly Strong P. Def.
-(20303, 4413, 12), -- Slightly Strong M. Def.
-(20303, 4414, 2), -- Standard Type
-(20303, 4415, 5), -- Blunt Weapons
-(20303, 4416, 6), -- Humanoids
+(20303, 4408, 1), -- HP Modifiers
+(20303, 4409, 1), -- MP Modifiers
+(20303, 4410, 10), -- P. Atk. Modifiers
+(20303, 4411, 10), -- M. Atk. Modifiers
+(20303, 4412, 12), -- P. Def. Modifiers
+(20303, 4413, 12), -- M. Def. Modifiers
+(20303, 4414, 2), -- Armor Type
+(20303, 4415, 5), -- Weapon Type
+(20303, 4416, 6), -- Races
 -- Marsh Stakato Queen
-(20304, 4032, 3), -- Power Strike
-(20304, 4408, 1), -- HP Increase (1x)
-(20304, 4409, 1), -- MP Increase (1x)
-(20304, 4410, 12), -- Slightly Strong P. Atk.
-(20304, 4411, 12), -- Slightly Strong M. Atk.
-(20304, 4412, 10), -- Slightly Weak P. Def.
-(20304, 4413, 10), -- Slightly Weak M. Def.
-(20304, 4414, 2), -- Standard Type
-(20304, 4415, 3), -- One-handed Sword
-(20304, 4416, 6), -- Humanoids
+(20304, 4032, 3), -- NPC Strike
+(20304, 4408, 1), -- HP Modifiers
+(20304, 4409, 1), -- MP Modifiers
+(20304, 4410, 12), -- P. Atk. Modifiers
+(20304, 4411, 12), -- M. Atk. Modifiers
+(20304, 4412, 10), -- P. Def. Modifiers
+(20304, 4413, 10), -- M. Def. Modifiers
+(20304, 4414, 2), -- Armor Type
+(20304, 4415, 3), -- Weapon Type
+(20304, 4416, 6), -- Races
 -- Grave
-(20305, 4408, 1), -- HP Increase (1x)
-(20305, 4409, 1), -- MP Increase (1x)
-(20305, 4410, 12), -- Slightly Strong P. Atk.
-(20305, 4411, 12), -- Slightly Strong M. Atk.
-(20305, 4412, 10), -- Slightly Weak P. Def.
-(20305, 4413, 10), -- Slightly Weak M. Def.
-(20305, 4414, 2), -- Standard Type
-(20305, 4415, 3), -- One-handed Sword
-(20305, 4416, 3), -- Beasts
+(20305, 4408, 1), -- HP Modifiers
+(20305, 4409, 1), -- MP Modifiers
+(20305, 4410, 12), -- P. Atk. Modifiers
+(20305, 4411, 12), -- M. Atk. Modifiers
+(20305, 4412, 10), -- P. Def. Modifiers
+(20305, 4413, 10), -- M. Def. Modifiers
+(20305, 4414, 2), -- Armor Type
+(20305, 4415, 3), -- Weapon Type
+(20305, 4416, 3), -- Races
 -- Garum Werewolf
-(20307, 4408, 1), -- HP Increase (1x)
-(20307, 4409, 1), -- MP Increase (1x)
-(20307, 4410, 12), -- Slightly Strong P. Atk.
-(20307, 4411, 12), -- Slightly Strong M. Atk.
-(20307, 4412, 10), -- Slightly Weak P. Def.
-(20307, 4413, 10), -- Slightly Weak M. Def.
-(20307, 4414, 2), -- Standard Type
-(20307, 4415, 5), -- Blunt Weapons
-(20307, 4416, 6), -- Humanoids
+(20307, 4408, 1), -- HP Modifiers
+(20307, 4409, 1), -- MP Modifiers
+(20307, 4410, 12), -- P. Atk. Modifiers
+(20307, 4411, 12), -- M. Atk. Modifiers
+(20307, 4412, 10), -- P. Def. Modifiers
+(20307, 4413, 10), -- M. Def. Modifiers
+(20307, 4414, 2), -- Armor Type
+(20307, 4415, 5), -- Weapon Type
+(20307, 4416, 6), -- Races
 -- Hook Spider
-(20308, 4408, 1), -- HP Increase (1x)
-(20308, 4409, 1), -- MP Increase (1x)
-(20308, 4410, 12), -- Slightly Strong P. Atk.
-(20308, 4411, 12), -- Slightly Strong M. Atk.
-(20308, 4412, 10), -- Slightly Weak P. Def.
-(20308, 4413, 10), -- Slightly Weak M. Def.
-(20308, 4414, 2), -- Standard Type
-(20308, 4415, 3), -- One-handed Sword
-(20308, 4416, 12), -- Bugs
+(20308, 4408, 1), -- HP Modifiers
+(20308, 4409, 1), -- MP Modifiers
+(20308, 4410, 12), -- P. Atk. Modifiers
+(20308, 4411, 12), -- M. Atk. Modifiers
+(20308, 4412, 10), -- P. Def. Modifiers
+(20308, 4413, 10), -- M. Def. Modifiers
+(20308, 4414, 2), -- Armor Type
+(20308, 4415, 3), -- Weapon Type
+(20308, 4416, 12), -- Races
 -- Brown Fox
-(20309, 4408, 1), -- HP Increase (1x)
-(20309, 4409, 1), -- MP Increase (1x)
-(20309, 4410, 11), -- Average P. Atk.
-(20309, 4411, 11), -- Average M. Atk.
-(20309, 4412, 11), -- Average P. Def.
-(20309, 4413, 11), -- Average M. Def.
-(20309, 4414, 2), -- Standard Type
-(20309, 4415, 3), -- One-handed Sword
-(20309, 4416, 4), -- Animals
+(20309, 4408, 1), -- HP Modifiers
+(20309, 4409, 1), -- MP Modifiers
+(20309, 4410, 11), -- P. Atk. Modifiers
+(20309, 4411, 11), -- M. Atk. Modifiers
+(20309, 4412, 11), -- P. Def. Modifiers
+(20309, 4413, 11), -- M. Def. Modifiers
+(20309, 4414, 2), -- Armor Type
+(20309, 4415, 3), -- Weapon Type
+(20309, 4416, 4), -- Races
 -- Brown Bear
-(20310, 4408, 1), -- HP Increase (1x)
-(20310, 4409, 1), -- MP Increase (1x)
-(20310, 4410, 10), -- Slightly Weak P. Atk.
-(20310, 4411, 10), -- Slightly Weak M. Atk.
-(20310, 4412, 12), -- Slightly Strong P. Def.
-(20310, 4413, 12), -- Slightly Strong M. Def.
-(20310, 4414, 2), -- Standard Type
-(20310, 4415, 3), -- One-handed Sword
-(20310, 4416, 4), -- Animals
+(20310, 4408, 1), -- HP Modifiers
+(20310, 4409, 1), -- MP Modifiers
+(20310, 4410, 10), -- P. Atk. Modifiers
+(20310, 4411, 10), -- M. Atk. Modifiers
+(20310, 4412, 12), -- P. Def. Modifiers
+(20310, 4413, 12), -- M. Def. Modifiers
+(20310, 4414, 2), -- Armor Type
+(20310, 4415, 3), -- Weapon Type
+(20310, 4416, 4), -- Races
 -- Rakeclaw Imp
-(20311, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(20311, 4408, 1), -- HP Increase (1x)
-(20311, 4409, 1), -- MP Increase (1x)
-(20311, 4410, 12), -- Slightly Strong P. Atk.
-(20311, 4411, 12), -- Slightly Strong M. Atk.
-(20311, 4412, 10), -- Slightly Weak P. Def.
-(20311, 4413, 10), -- Slightly Weak M. Def.
-(20311, 4414, 2), -- Standard Type
-(20311, 4415, 3), -- One-handed Sword
-(20311, 4416, 13), -- Fairies
+(20311, 4276, 1), -- Archery Attack Weak Point
+(20311, 4408, 1), -- HP Modifiers
+(20311, 4409, 1), -- MP Modifiers
+(20311, 4410, 12), -- P. Atk. Modifiers
+(20311, 4411, 12), -- M. Atk. Modifiers
+(20311, 4412, 10), -- P. Def. Modifiers
+(20311, 4413, 10), -- M. Def. Modifiers
+(20311, 4414, 2), -- Armor Type
+(20311, 4415, 3), -- Weapon Type
+(20311, 4416, 13), -- Races
 -- Rakeclaw Imp Hunter
-(20312, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(20312, 4408, 1), -- HP Increase (1x)
-(20312, 4409, 1), -- MP Increase (1x)
-(20312, 4410, 12), -- Slightly Strong P. Atk.
-(20312, 4411, 12), -- Slightly Strong M. Atk.
-(20312, 4412, 10), -- Slightly Weak P. Def.
-(20312, 4413, 10), -- Slightly Weak M. Def.
-(20312, 4414, 2), -- Standard Type
-(20312, 4415, 3), -- One-handed Sword
-(20312, 4416, 13), -- Fairies
+(20312, 4276, 1), -- Archery Attack Weak Point
+(20312, 4408, 1), -- HP Modifiers
+(20312, 4409, 1), -- MP Modifiers
+(20312, 4410, 12), -- P. Atk. Modifiers
+(20312, 4411, 12), -- M. Atk. Modifiers
+(20312, 4412, 10), -- P. Def. Modifiers
+(20312, 4413, 10), -- M. Def. Modifiers
+(20312, 4414, 2), -- Armor Type
+(20312, 4415, 3), -- Weapon Type
+(20312, 4416, 13), -- Races
 -- Rakeclaw Imp Chieftain
-(20313, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(20313, 4408, 1), -- HP Increase (1x)
-(20313, 4409, 1), -- MP Increase (1x)
-(20313, 4410, 12), -- Slightly Strong P. Atk.
-(20313, 4411, 12), -- Slightly Strong M. Atk.
-(20313, 4412, 10), -- Slightly Weak P. Def.
-(20313, 4413, 10), -- Slightly Weak M. Def.
-(20313, 4414, 2), -- Standard Type
-(20313, 4415, 3), -- One-handed Sword
-(20313, 4416, 13), -- Fairies
+(20313, 4276, 1), -- Archery Attack Weak Point
+(20313, 4408, 1), -- HP Modifiers
+(20313, 4409, 1), -- MP Modifiers
+(20313, 4410, 12), -- P. Atk. Modifiers
+(20313, 4411, 12), -- M. Atk. Modifiers
+(20313, 4412, 10), -- P. Def. Modifiers
+(20313, 4413, 10), -- M. Def. Modifiers
+(20313, 4414, 2), -- Armor Type
+(20313, 4415, 3), -- Weapon Type
+(20313, 4416, 13), -- Races
 -- Great White Shark
-(20314, 4408, 1), -- HP Increase (1x)
-(20314, 4409, 1), -- MP Increase (1x)
-(20314, 4410, 12), -- Slightly Strong P. Atk.
-(20314, 4411, 12), -- Slightly Strong M. Atk.
-(20314, 4412, 10), -- Slightly Weak P. Def.
-(20314, 4413, 10), -- Slightly Weak M. Def.
-(20314, 4414, 2), -- Standard Type
-(20314, 4415, 3), -- One-handed Sword
-(20314, 4416, 4), -- Animals
+(20314, 4408, 1), -- HP Modifiers
+(20314, 4409, 1), -- MP Modifiers
+(20314, 4410, 12), -- P. Atk. Modifiers
+(20314, 4411, 12), -- M. Atk. Modifiers
+(20314, 4412, 10), -- P. Def. Modifiers
+(20314, 4413, 10), -- M. Def. Modifiers
+(20314, 4414, 2), -- Armor Type
+(20314, 4415, 3), -- Weapon Type
+(20314, 4416, 4), -- Races
 -- Darkwing Bat
-(20316, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(20316, 4408, 1), -- HP Increase (1x)
-(20316, 4409, 1), -- MP Increase (1x)
-(20316, 4410, 12), -- Slightly Strong P. Atk.
-(20316, 4411, 12), -- Slightly Strong M. Atk.
-(20316, 4412, 10), -- Slightly Weak P. Def.
-(20316, 4413, 10), -- Slightly Weak M. Def.
-(20316, 4414, 2), -- Standard Type
-(20316, 4415, 3), -- One-handed Sword
-(20316, 4416, 4), -- Animals
+(20316, 4276, 1), -- Archery Attack Weak Point
+(20316, 4408, 1), -- HP Modifiers
+(20316, 4409, 1), -- MP Modifiers
+(20316, 4410, 12), -- P. Atk. Modifiers
+(20316, 4411, 12), -- M. Atk. Modifiers
+(20316, 4412, 10), -- P. Def. Modifiers
+(20316, 4413, 10), -- M. Def. Modifiers
+(20316, 4414, 2), -- Armor Type
+(20316, 4415, 3), -- Weapon Type
+(20316, 4416, 4), -- Races
 -- Black Wolf
-(20317, 4408, 1), -- HP Increase (1x)
-(20317, 4409, 1), -- MP Increase (1x)
-(20317, 4410, 11), -- Average P. Atk.
-(20317, 4411, 11), -- Average M. Atk.
-(20317, 4412, 11), -- Average P. Def.
-(20317, 4413, 11), -- Average M. Def.
-(20317, 4414, 2), -- Standard Type
-(20317, 4415, 3), -- One-handed Sword
-(20317, 4416, 4), -- Animals
+(20317, 4408, 1), -- HP Modifiers
+(20317, 4409, 1), -- MP Modifiers
+(20317, 4410, 11), -- P. Atk. Modifiers
+(20317, 4411, 11), -- M. Atk. Modifiers
+(20317, 4412, 11), -- P. Def. Modifiers
+(20317, 4413, 11), -- M. Def. Modifiers
+(20317, 4414, 2), -- Armor Type
+(20317, 4415, 3), -- Weapon Type
+(20317, 4416, 4), -- Races
 -- Black Timber Wolf
-(20318, 4408, 1), -- HP Increase (1x)
-(20318, 4409, 1), -- MP Increase (1x)
-(20318, 4410, 11), -- Average P. Atk.
-(20318, 4411, 11), -- Average M. Atk.
-(20318, 4412, 11), -- Average P. Def.
-(20318, 4413, 11), -- Average M. Def.
-(20318, 4414, 2), -- Standard Type
-(20318, 4415, 3), -- One-handed Sword
-(20318, 4416, 4), -- Animals
+(20318, 4408, 1), -- HP Modifiers
+(20318, 4409, 1), -- MP Modifiers
+(20318, 4410, 11), -- P. Atk. Modifiers
+(20318, 4411, 11), -- M. Atk. Modifiers
+(20318, 4412, 11), -- P. Def. Modifiers
+(20318, 4413, 11), -- M. Def. Modifiers
+(20318, 4414, 2), -- Armor Type
+(20318, 4415, 3), -- Weapon Type
+(20318, 4416, 4), -- Races
 -- Goblin Grave Robber
-(20319, 4408, 1), -- HP Increase (1x)
-(20319, 4409, 1), -- MP Increase (1x)
-(20319, 4410, 11), -- Average P. Atk.
-(20319, 4411, 11), -- Average M. Atk.
-(20319, 4412, 11), -- Average P. Def.
-(20319, 4413, 11), -- Average M. Def.
-(20319, 4414, 2), -- Standard Type
-(20319, 4415, 5), -- Blunt Weapons
-(20319, 4416, 6), -- Humanoids
+(20319, 4408, 1), -- HP Modifiers
+(20319, 4409, 1), -- MP Modifiers
+(20319, 4410, 11), -- P. Atk. Modifiers
+(20319, 4411, 11), -- M. Atk. Modifiers
+(20319, 4412, 11), -- P. Def. Modifiers
+(20319, 4413, 11), -- M. Def. Modifiers
+(20319, 4414, 2), -- Armor Type
+(20319, 4415, 5), -- Weapon Type
+(20319, 4416, 6), -- Races
 -- Goblin Tomb Raider Leader
-(20320, 4408, 1), -- HP Increase (1x)
-(20320, 4409, 1), -- MP Increase (1x)
-(20320, 4410, 11), -- Average P. Atk.
-(20320, 4411, 11), -- Average M. Atk.
-(20320, 4412, 11), -- Average P. Def.
-(20320, 4413, 11), -- Average M. Def.
-(20320, 4414, 2), -- Standard Type
-(20320, 4415, 7), -- Daggers
-(20320, 4416, 6), -- Humanoids
+(20320, 4408, 1), -- HP Modifiers
+(20320, 4409, 1), -- MP Modifiers
+(20320, 4410, 11), -- P. Atk. Modifiers
+(20320, 4411, 11), -- M. Atk. Modifiers
+(20320, 4412, 11), -- P. Def. Modifiers
+(20320, 4413, 11), -- M. Def. Modifiers
+(20320, 4414, 2), -- Armor Type
+(20320, 4415, 7), -- Weapon Type
+(20320, 4416, 6), -- Races
 -- Goblin Thief
-(20321, 4408, 1), -- HP Increase (1x)
-(20321, 4409, 1), -- MP Increase (1x)
-(20321, 4410, 11), -- Average P. Atk.
-(20321, 4411, 11), -- Average M. Atk.
-(20321, 4412, 11), -- Average P. Def.
-(20321, 4413, 11), -- Average M. Def.
-(20321, 4414, 2), -- Standard Type
-(20321, 4415, 7), -- Daggers
-(20321, 4416, 6), -- Humanoids
+(20321, 4408, 1), -- HP Modifiers
+(20321, 4409, 1), -- MP Modifiers
+(20321, 4410, 11), -- P. Atk. Modifiers
+(20321, 4411, 11), -- M. Atk. Modifiers
+(20321, 4412, 11), -- P. Def. Modifiers
+(20321, 4413, 11), -- M. Def. Modifiers
+(20321, 4414, 2), -- Armor Type
+(20321, 4415, 7), -- Weapon Type
+(20321, 4416, 6), -- Races
 -- Goblin Brigand
-(20322, 4408, 1), -- HP Increase (1x)
-(20322, 4409, 1), -- MP Increase (1x)
-(20322, 4410, 11), -- Average P. Atk.
-(20322, 4411, 11), -- Average M. Atk.
-(20322, 4412, 11), -- Average P. Def.
-(20322, 4413, 11), -- Average M. Def.
-(20322, 4414, 2), -- Standard Type
-(20322, 4415, 5), -- Blunt Weapons
-(20322, 4416, 6), -- Humanoids
+(20322, 4408, 1), -- HP Modifiers
+(20322, 4409, 1), -- MP Modifiers
+(20322, 4410, 11), -- P. Atk. Modifiers
+(20322, 4411, 11), -- M. Atk. Modifiers
+(20322, 4412, 11), -- P. Def. Modifiers
+(20322, 4413, 11), -- M. Def. Modifiers
+(20322, 4414, 2), -- Armor Type
+(20322, 4415, 5), -- Weapon Type
+(20322, 4416, 6), -- Races
 -- Goblin Brigand Leader
-(20323, 4408, 1), -- HP Increase (1x)
-(20323, 4409, 1), -- MP Increase (1x)
-(20323, 4410, 11), -- Average P. Atk.
-(20323, 4411, 11), -- Average M. Atk.
-(20323, 4412, 11), -- Average P. Def.
-(20323, 4413, 11), -- Average M. Def.
-(20323, 4414, 2), -- Standard Type
-(20323, 4415, 7), -- Daggers
-(20323, 4416, 6), -- Humanoids
+(20323, 4408, 1), -- HP Modifiers
+(20323, 4409, 1), -- MP Modifiers
+(20323, 4410, 11), -- P. Atk. Modifiers
+(20323, 4411, 11), -- M. Atk. Modifiers
+(20323, 4412, 11), -- P. Def. Modifiers
+(20323, 4413, 11), -- M. Def. Modifiers
+(20323, 4414, 2), -- Armor Type
+(20323, 4415, 7), -- Weapon Type
+(20323, 4416, 6), -- Races
 -- Goblin Brigand Lieutenant
-(20324, 4408, 1), -- HP Increase (1x)
-(20324, 4409, 1), -- MP Increase (1x)
-(20324, 4410, 11), -- Average P. Atk.
-(20324, 4411, 11), -- Average M. Atk.
-(20324, 4412, 11), -- Average P. Def.
-(20324, 4413, 11), -- Average M. Def.
-(20324, 4414, 2), -- Standard Type
-(20324, 4415, 7), -- Daggers
-(20324, 4416, 6), -- Humanoids
+(20324, 4408, 1), -- HP Modifiers
+(20324, 4409, 1), -- MP Modifiers
+(20324, 4410, 11), -- P. Atk. Modifiers
+(20324, 4411, 11), -- M. Atk. Modifiers
+(20324, 4412, 11), -- P. Def. Modifiers
+(20324, 4413, 11), -- M. Def. Modifiers
+(20324, 4414, 2), -- Armor Type
+(20324, 4415, 7), -- Weapon Type
+(20324, 4416, 6), -- Races
 -- Goblin Raider
-(20325, 4408, 1), -- HP Increase (1x)
-(20325, 4409, 1), -- MP Increase (1x)
-(20325, 4410, 11), -- Average P. Atk.
-(20325, 4411, 11), -- Average M. Atk.
-(20325, 4412, 11), -- Average P. Def.
-(20325, 4413, 11), -- Average M. Def.
-(20325, 4414, 2), -- Standard Type
-(20325, 4415, 5), -- Blunt Weapons
-(20325, 4416, 6), -- Humanoids
+(20325, 4408, 1), -- HP Modifiers
+(20325, 4409, 1), -- MP Modifiers
+(20325, 4410, 11), -- P. Atk. Modifiers
+(20325, 4411, 11), -- M. Atk. Modifiers
+(20325, 4412, 11), -- P. Def. Modifiers
+(20325, 4413, 11), -- M. Def. Modifiers
+(20325, 4414, 2), -- Armor Type
+(20325, 4415, 5), -- Weapon Type
+(20325, 4416, 6), -- Races
 -- Goblin Scout
-(20326, 4408, 1), -- HP Increase (1x)
-(20326, 4409, 1), -- MP Increase (1x)
-(20326, 4410, 11), -- Average P. Atk.
-(20326, 4411, 11), -- Average M. Atk.
-(20326, 4412, 11), -- Average P. Def.
-(20326, 4413, 11), -- Average M. Def.
-(20326, 4414, 2), -- Standard Type
-(20326, 4415, 5), -- Blunt Weapons
-(20326, 4416, 6), -- Humanoids
+(20326, 4408, 1), -- HP Modifiers
+(20326, 4409, 1), -- MP Modifiers
+(20326, 4410, 11), -- P. Atk. Modifiers
+(20326, 4411, 11), -- M. Atk. Modifiers
+(20326, 4412, 11), -- P. Def. Modifiers
+(20326, 4413, 11), -- M. Def. Modifiers
+(20326, 4414, 2), -- Armor Type
+(20326, 4415, 5), -- Weapon Type
+(20326, 4416, 6), -- Races
 -- Goblin Snooper
-(20327, 4408, 1), -- HP Increase (1x)
-(20327, 4409, 1), -- MP Increase (1x)
-(20327, 4410, 11), -- Average P. Atk.
-(20327, 4411, 11), -- Average M. Atk.
-(20327, 4412, 11), -- Average P. Def.
-(20327, 4413, 11), -- Average M. Def.
-(20327, 4414, 2), -- Standard Type
-(20327, 4415, 5), -- Blunt Weapons
-(20327, 4416, 6), -- Humanoids
+(20327, 4408, 1), -- HP Modifiers
+(20327, 4409, 1), -- MP Modifiers
+(20327, 4410, 11), -- P. Atk. Modifiers
+(20327, 4411, 11), -- M. Atk. Modifiers
+(20327, 4412, 11), -- P. Def. Modifiers
+(20327, 4413, 11), -- M. Def. Modifiers
+(20327, 4414, 2), -- Armor Type
+(20327, 4415, 5), -- Weapon Type
+(20327, 4416, 6), -- Races
 -- Goblin Lookout
-(20328, 4408, 1), -- HP Increase (1x)
-(20328, 4409, 1), -- MP Increase (1x)
-(20328, 4410, 11), -- Average P. Atk.
-(20328, 4411, 11), -- Average M. Atk.
-(20328, 4412, 11), -- Average P. Def.
-(20328, 4413, 11), -- Average M. Def.
-(20328, 4414, 2), -- Standard Type
-(20328, 4415, 7), -- Daggers
-(20328, 4416, 6), -- Humanoids
+(20328, 4408, 1), -- HP Modifiers
+(20328, 4409, 1), -- MP Modifiers
+(20328, 4410, 11), -- P. Atk. Modifiers
+(20328, 4411, 11), -- M. Atk. Modifiers
+(20328, 4412, 11), -- P. Def. Modifiers
+(20328, 4413, 11), -- M. Def. Modifiers
+(20328, 4414, 2), -- Armor Type
+(20328, 4415, 7), -- Weapon Type
+(20328, 4416, 6), -- Races
 -- Ghost Guardian
-(20329, 4408, 1), -- HP Increase (1x)
-(20329, 4409, 1), -- MP Increase (1x)
-(20329, 4410, 11), -- Average P. Atk.
-(20329, 4411, 11), -- Average M. Atk.
-(20329, 4412, 11), -- Average P. Def.
-(20329, 4413, 11), -- Average M. Def.
-(20329, 4414, 2), -- Standard Type
-(20329, 4415, 3), -- One-handed Sword
-(20329, 4416, 1), -- Undead
+(20329, 4408, 1), -- HP Modifiers
+(20329, 4409, 1), -- MP Modifiers
+(20329, 4410, 11), -- P. Atk. Modifiers
+(20329, 4411, 11), -- M. Atk. Modifiers
+(20329, 4412, 11), -- P. Def. Modifiers
+(20329, 4413, 11), -- M. Def. Modifiers
+(20329, 4414, 2), -- Armor Type
+(20329, 4415, 3), -- Weapon Type
+(20329, 4416, 1), -- Races
 -- Mineshaft Bat
-(20330, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(20330, 4408, 1), -- HP Increase (1x)
-(20330, 4409, 1), -- MP Increase (1x)
-(20330, 4410, 12), -- Slightly Strong P. Atk.
-(20330, 4411, 12), -- Slightly Strong M. Atk.
-(20330, 4412, 10), -- Slightly Weak P. Def.
-(20330, 4413, 10), -- Slightly Weak M. Def.
-(20330, 4414, 2), -- Standard Type
-(20330, 4415, 3), -- One-handed Sword
-(20330, 4416, 4), -- Animals
+(20330, 4276, 1), -- Archery Attack Weak Point
+(20330, 4408, 1), -- HP Modifiers
+(20330, 4409, 1), -- MP Modifiers
+(20330, 4410, 12), -- P. Atk. Modifiers
+(20330, 4411, 12), -- M. Atk. Modifiers
+(20330, 4412, 10), -- P. Def. Modifiers
+(20330, 4413, 10), -- M. Def. Modifiers
+(20330, 4414, 2), -- Armor Type
+(20330, 4415, 3), -- Weapon Type
+(20330, 4416, 4), -- Races
 -- Monster Eye Tracker
-(20331, 4151, 1), -- Wind Strike
-(20331, 4160, 1), -- Aura Burn
-(20331, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(20331, 4408, 1), -- HP Increase (1x)
-(20331, 4409, 1), -- MP Increase (1x)
-(20331, 4410, 10), -- Slightly Weak P. Atk.
-(20331, 4411, 10), -- Slightly Weak M. Atk.
-(20331, 4412, 12), -- Slightly Strong P. Def.
-(20331, 4413, 12), -- Slightly Strong M. Def.
-(20331, 4414, 2), -- Standard Type
-(20331, 4415, 3), -- One-handed Sword
-(20331, 4416, 2), -- Magic Creatures
+(20331, 4151, 1), -- NPC Windstrike - Magic
+(20331, 4160, 1), -- NPC Aura Burn - Magic
+(20331, 4276, 1), -- Archery Attack Weak Point
+(20331, 4408, 1), -- HP Modifiers
+(20331, 4409, 1), -- MP Modifiers
+(20331, 4410, 10), -- P. Atk. Modifiers
+(20331, 4411, 10), -- M. Atk. Modifiers
+(20331, 4412, 12), -- P. Def. Modifiers
+(20331, 4413, 12), -- M. Def. Modifiers
+(20331, 4414, 2), -- Armor Type
+(20331, 4415, 3), -- Weapon Type
+(20331, 4416, 2), -- Races
 -- Greystone Golem
-(20333, 4254, 1), -- Prominence
-(20333, 4273, 3), -- Resist Daggers/Rapier Weapon
-(20333, 4274, 1), -- Blunt Weapon Weak Point
-(20333, 4284, 5), -- Resist Bleed Attacks
-(20333, 4408, 1), -- HP Increase (1x)
-(20333, 4409, 1), -- MP Increase (1x)
-(20333, 4410, 10), -- Slightly Weak P. Atk.
-(20333, 4411, 10), -- Slightly Weak M. Atk.
-(20333, 4412, 12), -- Slightly Strong P. Def.
-(20333, 4413, 19), -- Extremely Strong M. Def.
-(20333, 4414, 2), -- Standard Type
-(20333, 4415, 3), -- One-handed Sword
-(20333, 4416, 2), -- Magic Creatures
+(20333, 4254, 1), -- NPC Prominence - Slow
+(20333, 4273, 3), -- Resist Dagger
+(20333, 4274, 1), -- Blunt Attack Weak Point
+(20333, 4284, 5), -- Resist Bleeding
+(20333, 4408, 1), -- HP Modifiers
+(20333, 4409, 1), -- MP Modifiers
+(20333, 4410, 10), -- P. Atk. Modifiers
+(20333, 4411, 10), -- M. Atk. Modifiers
+(20333, 4412, 12), -- P. Def. Modifiers
+(20333, 4413, 19), -- M. Def. Modifiers
+(20333, 4414, 2), -- Armor Type
+(20333, 4415, 3), -- Weapon Type
+(20333, 4416, 2), -- Races
 (20333, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Gremlin Scavenger
-(20334, 4408, 1), -- HP Increase (1x)
-(20334, 4409, 1), -- MP Increase (1x)
-(20334, 4410, 11), -- Average P. Atk.
-(20334, 4411, 11), -- Average M. Atk.
-(20334, 4412, 11), -- Average P. Def.
-(20334, 4413, 11), -- Average M. Def.
-(20334, 4414, 2), -- Standard Type
-(20334, 4415, 3), -- One-handed Sword
-(20334, 4416, 13), -- Fairies
+(20334, 4408, 1), -- HP Modifiers
+(20334, 4409, 1), -- MP Modifiers
+(20334, 4410, 11), -- P. Atk. Modifiers
+(20334, 4411, 11), -- M. Atk. Modifiers
+(20334, 4412, 11), -- P. Def. Modifiers
+(20334, 4413, 11), -- M. Def. Modifiers
+(20334, 4414, 2), -- Armor Type
+(20334, 4415, 3), -- Weapon Type
+(20334, 4416, 13), -- Races
 -- Grizzly Bear
-(20335, 4408, 1), -- HP Increase (1x)
-(20335, 4409, 1), -- MP Increase (1x)
-(20335, 4410, 10), -- Slightly Weak P. Atk.
-(20335, 4411, 10), -- Slightly Weak M. Atk.
-(20335, 4412, 12), -- Slightly Strong P. Def.
-(20335, 4413, 12), -- Slightly Strong M. Def.
-(20335, 4414, 2), -- Standard Type
-(20335, 4415, 3), -- One-handed Sword
-(20335, 4416, 4), -- Animals
+(20335, 4408, 1), -- HP Modifiers
+(20335, 4409, 1), -- MP Modifiers
+(20335, 4410, 10), -- P. Atk. Modifiers
+(20335, 4411, 10), -- M. Atk. Modifiers
+(20335, 4412, 12), -- P. Def. Modifiers
+(20335, 4413, 12), -- M. Def. Modifiers
+(20335, 4414, 2), -- Armor Type
+(20335, 4415, 3), -- Weapon Type
+(20335, 4416, 4), -- Races
 -- Green Dryad
-(20336, 4408, 1), -- HP Increase (1x)
-(20336, 4409, 1), -- MP Increase (1x)
-(20336, 4410, 11), -- Average P. Atk.
-(20336, 4411, 11), -- Average M. Atk.
-(20336, 4412, 11), -- Average P. Def.
-(20336, 4413, 11), -- Average M. Def.
-(20336, 4414, 2), -- Standard Type
-(20336, 4415, 3), -- One-handed Sword
-(20336, 4416, 13), -- Fairies
+(20336, 4408, 1), -- HP Modifiers
+(20336, 4409, 1), -- MP Modifiers
+(20336, 4410, 11), -- P. Atk. Modifiers
+(20336, 4411, 11), -- M. Atk. Modifiers
+(20336, 4412, 11), -- P. Def. Modifiers
+(20336, 4413, 11), -- M. Def. Modifiers
+(20336, 4414, 2), -- Armor Type
+(20336, 4415, 3), -- Weapon Type
+(20336, 4416, 13), -- Races
 -- Longtail Fox
-(20337, 4408, 1), -- HP Increase (1x)
-(20337, 4409, 1), -- MP Increase (1x)
-(20337, 4410, 11), -- Average P. Atk.
-(20337, 4411, 11), -- Average M. Atk.
-(20337, 4412, 11), -- Average P. Def.
-(20337, 4413, 11), -- Average M. Def.
-(20337, 4414, 2), -- Standard Type
-(20337, 4415, 3), -- One-handed Sword
-(20337, 4416, 4), -- Animals
+(20337, 4408, 1), -- HP Modifiers
+(20337, 4409, 1), -- MP Modifiers
+(20337, 4410, 11), -- P. Atk. Modifiers
+(20337, 4411, 11), -- M. Atk. Modifiers
+(20337, 4412, 11), -- P. Def. Modifiers
+(20337, 4413, 11), -- M. Def. Modifiers
+(20337, 4414, 2), -- Armor Type
+(20337, 4415, 3), -- Weapon Type
+(20337, 4416, 4), -- Races
 -- Nightmare Weaver
 (20338, 4035, 2), -- Poison
-(20338, 4408, 1), -- HP Increase (1x)
-(20338, 4409, 1), -- MP Increase (1x)
-(20338, 4410, 12), -- Slightly Strong P. Atk.
-(20338, 4411, 12), -- Slightly Strong M. Atk.
-(20338, 4412, 10), -- Slightly Weak P. Def.
-(20338, 4413, 10), -- Slightly Weak M. Def.
-(20338, 4414, 2), -- Standard Type
-(20338, 4415, 3), -- One-handed Sword
-(20338, 4416, 2), -- Magic Creatures
+(20338, 4408, 1), -- HP Modifiers
+(20338, 4409, 1), -- MP Modifiers
+(20338, 4410, 12), -- P. Atk. Modifiers
+(20338, 4411, 12), -- M. Atk. Modifiers
+(20338, 4412, 10), -- P. Def. Modifiers
+(20338, 4413, 10), -- M. Def. Modifiers
+(20338, 4414, 2), -- Armor Type
+(20338, 4415, 3), -- Weapon Type
+(20338, 4416, 2), -- Races
 -- Slave Skeleton
-(20340, 4274, 1), -- Blunt Weapon Weak Point
-(20340, 4408, 1), -- HP Increase (1x)
-(20340, 4409, 1), -- MP Increase (1x)
-(20340, 4410, 12), -- Slightly Strong P. Atk.
-(20340, 4411, 12), -- Slightly Strong M. Atk.
-(20340, 4412, 10), -- Slightly Weak P. Def.
-(20340, 4413, 10), -- Slightly Weak M. Def.
-(20340, 4414, 2), -- Standard Type
-(20340, 4415, 7), -- Daggers
-(20340, 4416, 1), -- Undead
+(20340, 4274, 1), -- Blunt Attack Weak Point
+(20340, 4408, 1), -- HP Modifiers
+(20340, 4409, 1), -- MP Modifiers
+(20340, 4410, 12), -- P. Atk. Modifiers
+(20340, 4411, 12), -- M. Atk. Modifiers
+(20340, 4412, 10), -- P. Def. Modifiers
+(20340, 4413, 10), -- M. Def. Modifiers
+(20340, 4414, 2), -- Armor Type
+(20340, 4415, 7), -- Weapon Type
+(20340, 4416, 1), -- Races
 -- Undead Slave
-(20341, 4071, 5), -- Resist Bow/Crossbow Weapons
-(20341, 4247, 1), -- Wind Strike
-(20341, 4284, 5), -- Resist Bleed Attacks
-(20341, 4408, 1), -- HP Increase (1x)
-(20341, 4409, 1), -- MP Increase (1x)
-(20341, 4410, 12), -- Slightly Strong P. Atk.
-(20341, 4411, 12), -- Slightly Strong M. Atk.
-(20341, 4412, 10), -- Slightly Weak P. Def.
-(20341, 4413, 18), -- Extremely Strong M. Def.
-(20341, 4414, 2), -- Standard Type
-(20341, 4415, 3), -- One-handed Sword
-(20341, 4416, 1), -- Undead
+(20341, 4071, 5), -- Resist Archery
+(20341, 4247, 1), -- NPC Windstrike - Slow
+(20341, 4284, 5), -- Resist Bleeding
+(20341, 4408, 1), -- HP Modifiers
+(20341, 4409, 1), -- MP Modifiers
+(20341, 4410, 12), -- P. Atk. Modifiers
+(20341, 4411, 12), -- M. Atk. Modifiers
+(20341, 4412, 10), -- P. Def. Modifiers
+(20341, 4413, 18), -- M. Def. Modifiers
+(20341, 4414, 2), -- Armor Type
+(20341, 4415, 3), -- Weapon Type
+(20341, 4416, 1), -- Races
 -- Werewolf Chieftain
-(20342, 4408, 1), -- HP Increase (1x)
-(20342, 4409, 1), -- MP Increase (1x)
-(20342, 4410, 12), -- Slightly Strong P. Atk.
-(20342, 4411, 12), -- Slightly Strong M. Atk.
-(20342, 4412, 10), -- Slightly Weak P. Def.
-(20342, 4413, 10), -- Slightly Weak M. Def.
-(20342, 4414, 2), -- Standard Type
-(20342, 4415, 5), -- Blunt Weapons
-(20342, 4416, 6), -- Humanoids
+(20342, 4408, 1), -- HP Modifiers
+(20342, 4409, 1), -- MP Modifiers
+(20342, 4410, 12), -- P. Atk. Modifiers
+(20342, 4411, 12), -- M. Atk. Modifiers
+(20342, 4412, 10), -- P. Def. Modifiers
+(20342, 4413, 10), -- M. Def. Modifiers
+(20342, 4414, 2), -- Armor Type
+(20342, 4415, 5), -- Weapon Type
+(20342, 4416, 6), -- Races
 -- Werewolf Hunter
-(20343, 4408, 1), -- HP Increase (1x)
-(20343, 4409, 1), -- MP Increase (1x)
-(20343, 4410, 12), -- Slightly Strong P. Atk.
-(20343, 4411, 12), -- Slightly Strong M. Atk.
-(20343, 4412, 10), -- Slightly Weak P. Def.
-(20343, 4413, 10), -- Slightly Weak M. Def.
-(20343, 4414, 2), -- Standard Type
-(20343, 4415, 5), -- Blunt Weapons
-(20343, 4416, 6), -- Humanoids
+(20343, 4408, 1), -- HP Modifiers
+(20343, 4409, 1), -- MP Modifiers
+(20343, 4410, 12), -- P. Atk. Modifiers
+(20343, 4411, 12), -- M. Atk. Modifiers
+(20343, 4412, 10), -- P. Def. Modifiers
+(20343, 4413, 10), -- M. Def. Modifiers
+(20343, 4414, 2), -- Armor Type
+(20343, 4415, 5), -- Weapon Type
+(20343, 4416, 6), -- Races
 -- Dark Terror
 (20345, 4035, 1), -- Poison
-(20345, 4408, 1), -- HP Increase (1x)
-(20345, 4409, 1), -- MP Increase (1x)
-(20345, 4410, 12), -- Slightly Strong P. Atk.
-(20345, 4411, 12), -- Slightly Strong M. Atk.
-(20345, 4412, 10), -- Slightly Weak P. Def.
-(20345, 4413, 10), -- Slightly Weak M. Def.
-(20345, 4414, 2), -- Standard Type
-(20345, 4415, 3), -- One-handed Sword
-(20345, 4416, 1), -- Undead
+(20345, 4408, 1), -- HP Modifiers
+(20345, 4409, 1), -- MP Modifiers
+(20345, 4410, 12), -- P. Atk. Modifiers
+(20345, 4411, 12), -- M. Atk. Modifiers
+(20345, 4412, 10), -- P. Def. Modifiers
+(20345, 4413, 10), -- M. Def. Modifiers
+(20345, 4414, 2), -- Armor Type
+(20345, 4415, 3), -- Weapon Type
+(20345, 4416, 1), -- Races
 -- Darkstone Golem
 (20346, 4249, 1), -- Decrease Speed
-(20346, 4273, 3), -- Resist Daggers/Rapier Weapon
-(20346, 4274, 1), -- Blunt Weapon Weak Point
-(20346, 4284, 5), -- Resist Bleed Attacks
-(20346, 4408, 1), -- HP Increase (1x)
-(20346, 4409, 1), -- MP Increase (1x)
-(20346, 4410, 10), -- Slightly Weak P. Atk.
-(20346, 4411, 10), -- Slightly Weak M. Atk.
-(20346, 4412, 12), -- Slightly Strong P. Def.
-(20346, 4413, 19), -- Extremely Strong M. Def.
-(20346, 4414, 2), -- Standard Type
-(20346, 4415, 3), -- One-handed Sword
-(20346, 4416, 2), -- Magic Creatures
+(20346, 4273, 3), -- Resist Dagger
+(20346, 4274, 1), -- Blunt Attack Weak Point
+(20346, 4284, 5), -- Resist Bleeding
+(20346, 4408, 1), -- HP Modifiers
+(20346, 4409, 1), -- MP Modifiers
+(20346, 4410, 10), -- P. Atk. Modifiers
+(20346, 4411, 10), -- M. Atk. Modifiers
+(20346, 4412, 12), -- P. Def. Modifiers
+(20346, 4413, 19), -- M. Def. Modifiers
+(20346, 4414, 2), -- Armor Type
+(20346, 4415, 3), -- Weapon Type
+(20346, 4416, 2), -- Races
 (20346, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Doom Wraith
-(20347, 4001, 5), -- Windstrike
-(20347, 4408, 1), -- HP Increase (1x)
-(20347, 4409, 1), -- MP Increase (1x)
-(20347, 4410, 12), -- Slightly Strong P. Atk.
-(20347, 4411, 12), -- Slightly Strong M. Atk.
-(20347, 4412, 10), -- Slightly Weak P. Def.
-(20347, 4413, 10), -- Slightly Weak M. Def.
-(20347, 4414, 2), -- Standard Type
-(20347, 4415, 3), -- One-handed Sword
-(20347, 4416, 1), -- Undead
+(20347, 4001, 5), -- NPC Wind Strike
+(20347, 4408, 1), -- HP Modifiers
+(20347, 4409, 1), -- MP Modifiers
+(20347, 4410, 12), -- P. Atk. Modifiers
+(20347, 4411, 12), -- M. Atk. Modifiers
+(20347, 4412, 10), -- P. Def. Modifiers
+(20347, 4413, 10), -- M. Def. Modifiers
+(20347, 4414, 2), -- Armor Type
+(20347, 4415, 3), -- Weapon Type
+(20347, 4416, 1), -- Races
 -- Cave Spider
-(20348, 4408, 1), -- HP Increase (1x)
-(20348, 4409, 1), -- MP Increase (1x)
-(20348, 4410, 12), -- Slightly Strong P. Atk.
-(20348, 4411, 12), -- Slightly Strong M. Atk.
-(20348, 4412, 10), -- Slightly Weak P. Def.
-(20348, 4413, 10), -- Slightly Weak M. Def.
-(20348, 4414, 2), -- Standard Type
-(20348, 4415, 3), -- One-handed Sword
-(20348, 4416, 12), -- Bugs
+(20348, 4408, 1), -- HP Modifiers
+(20348, 4409, 1), -- MP Modifiers
+(20348, 4410, 12), -- P. Atk. Modifiers
+(20348, 4411, 12), -- M. Atk. Modifiers
+(20348, 4412, 10), -- P. Def. Modifiers
+(20348, 4413, 10), -- M. Def. Modifiers
+(20348, 4414, 2), -- Armor Type
+(20348, 4415, 3), -- Weapon Type
+(20348, 4416, 12), -- Races
 -- Cave Bat
-(20349, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(20349, 4408, 1), -- HP Increase (1x)
-(20349, 4409, 1), -- MP Increase (1x)
-(20349, 4410, 12), -- Slightly Strong P. Atk.
-(20349, 4411, 12), -- Slightly Strong M. Atk.
-(20349, 4412, 10), -- Slightly Weak P. Def.
-(20349, 4413, 10), -- Slightly Weak M. Def.
-(20349, 4414, 2), -- Standard Type
-(20349, 4415, 3), -- One-handed Sword
-(20349, 4416, 4), -- Animals
+(20349, 4276, 1), -- Archery Attack Weak Point
+(20349, 4408, 1), -- HP Modifiers
+(20349, 4409, 1), -- MP Modifiers
+(20349, 4410, 12), -- P. Atk. Modifiers
+(20349, 4411, 12), -- M. Atk. Modifiers
+(20349, 4412, 10), -- P. Def. Modifiers
+(20349, 4413, 10), -- M. Def. Modifiers
+(20349, 4414, 2), -- Armor Type
+(20349, 4415, 3), -- Weapon Type
+(20349, 4416, 4), -- Races
 -- Cave Fang Spider
-(20350, 4408, 1), -- HP Increase (1x)
-(20350, 4409, 1), -- MP Increase (1x)
-(20350, 4410, 12), -- Slightly Strong P. Atk.
-(20350, 4411, 12), -- Slightly Strong M. Atk.
-(20350, 4412, 10), -- Slightly Weak P. Def.
-(20350, 4413, 10), -- Slightly Weak M. Def.
-(20350, 4414, 2), -- Standard Type
-(20350, 4415, 3), -- One-handed Sword
-(20350, 4416, 12), -- Bugs
+(20350, 4408, 1), -- HP Modifiers
+(20350, 4409, 1), -- MP Modifiers
+(20350, 4410, 12), -- P. Atk. Modifiers
+(20350, 4411, 12), -- M. Atk. Modifiers
+(20350, 4412, 10), -- P. Def. Modifiers
+(20350, 4413, 10), -- M. Def. Modifiers
+(20350, 4414, 2), -- Armor Type
+(20350, 4415, 3), -- Weapon Type
+(20350, 4416, 12), -- Races
 -- Dre Vanul Tracker
 (20351, 4047, 2), -- Hold
-(20351, 4408, 1), -- HP Increase (1x)
-(20351, 4409, 1), -- MP Increase (1x)
-(20351, 4410, 12), -- Slightly Strong P. Atk.
-(20351, 4411, 12), -- Slightly Strong M. Atk.
-(20351, 4412, 10), -- Slightly Weak P. Def.
-(20351, 4413, 10), -- Slightly Weak M. Def.
-(20351, 4414, 2), -- Standard Type
-(20351, 4415, 3), -- One-handed Sword
-(20351, 4416, 9), -- Demons
+(20351, 4408, 1), -- HP Modifiers
+(20351, 4409, 1), -- MP Modifiers
+(20351, 4410, 12), -- P. Atk. Modifiers
+(20351, 4411, 12), -- M. Atk. Modifiers
+(20351, 4412, 10), -- P. Def. Modifiers
+(20351, 4413, 10), -- M. Def. Modifiers
+(20351, 4414, 2), -- Armor Type
+(20351, 4415, 3), -- Weapon Type
+(20351, 4416, 9), -- Races
 -- Dre Vanul Slayer
-(20352, 4001, 2), -- Windstrike
-(20352, 4100, 2), -- Prominence
-(20352, 4104, 2), -- Chill Flame
-(20352, 4408, 1), -- HP Increase (1x)
-(20352, 4409, 1), -- MP Increase (1x)
-(20352, 4410, 12), -- Slightly Strong P. Atk.
-(20352, 4411, 12), -- Slightly Strong M. Atk.
-(20352, 4412, 10), -- Slightly Weak P. Def.
-(20352, 4413, 10), -- Slightly Weak M. Def.
-(20352, 4414, 2), -- Standard Type
-(20352, 4415, 3), -- One-handed Sword
-(20352, 4416, 9), -- Demons
+(20352, 4001, 2), -- NPC Wind Strike
+(20352, 4100, 2), -- NPC Prominence
+(20352, 4104, 2), -- Flame
+(20352, 4408, 1), -- HP Modifiers
+(20352, 4409, 1), -- MP Modifiers
+(20352, 4410, 12), -- P. Atk. Modifiers
+(20352, 4411, 12), -- M. Atk. Modifiers
+(20352, 4412, 10), -- P. Def. Modifiers
+(20352, 4413, 10), -- M. Def. Modifiers
+(20352, 4414, 2), -- Armor Type
+(20352, 4415, 3), -- Weapon Type
+(20352, 4416, 9), -- Races
 -- Dre Vanul Beholder
 (20353, 4046, 2), -- Sleep
-(20353, 4408, 1), -- HP Increase (1x)
-(20353, 4409, 1), -- MP Increase (1x)
-(20353, 4410, 12), -- Slightly Strong P. Atk.
-(20353, 4411, 12), -- Slightly Strong M. Atk.
-(20353, 4412, 10), -- Slightly Weak P. Def.
-(20353, 4413, 10), -- Slightly Weak M. Def.
-(20353, 4414, 2), -- Standard Type
-(20353, 4415, 3), -- One-handed Sword
-(20353, 4416, 9), -- Demons
+(20353, 4408, 1), -- HP Modifiers
+(20353, 4409, 1), -- MP Modifiers
+(20353, 4410, 12), -- P. Atk. Modifiers
+(20353, 4411, 12), -- M. Atk. Modifiers
+(20353, 4412, 10), -- P. Def. Modifiers
+(20353, 4413, 10), -- M. Def. Modifiers
+(20353, 4414, 2), -- Armor Type
+(20353, 4415, 3), -- Weapon Type
+(20353, 4416, 9), -- Races
 -- Dwarf Ghost
-(20354, 4002, 2), -- HP Drain
-(20354, 4408, 1), -- HP Increase (1x)
-(20354, 4409, 1), -- MP Increase (1x)
-(20354, 4410, 12), -- Slightly Strong P. Atk.
-(20354, 4411, 12), -- Slightly Strong M. Atk.
-(20354, 4412, 10), -- Slightly Weak P. Def.
-(20354, 4413, 10), -- Slightly Weak M. Def.
-(20354, 4414, 2), -- Standard Type
-(20354, 4415, 3), -- One-handed Sword
-(20354, 4416, 1), -- Undead
+(20354, 4002, 2), -- NPC HP Drain
+(20354, 4408, 1), -- HP Modifiers
+(20354, 4409, 1), -- MP Modifiers
+(20354, 4410, 12), -- P. Atk. Modifiers
+(20354, 4411, 12), -- M. Atk. Modifiers
+(20354, 4412, 10), -- P. Def. Modifiers
+(20354, 4413, 10), -- M. Def. Modifiers
+(20354, 4414, 2), -- Armor Type
+(20354, 4415, 3), -- Weapon Type
+(20354, 4416, 1), -- Races
 -- Langk Lizardman Leader
-(20356, 4408, 1), -- HP Increase (1x)
-(20356, 4409, 1), -- MP Increase (1x)
-(20356, 4410, 10), -- Slightly Weak P. Atk.
-(20356, 4411, 10), -- Slightly Weak M. Atk.
-(20356, 4412, 12), -- Slightly Strong P. Def.
-(20356, 4413, 12), -- Slightly Strong M. Def.
-(20356, 4414, 2), -- Standard Type
-(20356, 4415, 3), -- One-handed Sword
-(20356, 4416, 6), -- Humanoids
+(20356, 4408, 1), -- HP Modifiers
+(20356, 4409, 1), -- MP Modifiers
+(20356, 4410, 10), -- P. Atk. Modifiers
+(20356, 4411, 10), -- M. Atk. Modifiers
+(20356, 4412, 12), -- P. Def. Modifiers
+(20356, 4413, 12), -- M. Def. Modifiers
+(20356, 4414, 2), -- Armor Type
+(20356, 4415, 3), -- Weapon Type
+(20356, 4416, 6), -- Races
 -- Langk Lizardman Lieutenant
-(20357, 4408, 1), -- HP Increase (1x)
-(20357, 4409, 1), -- MP Increase (1x)
-(20357, 4410, 10), -- Slightly Weak P. Atk.
-(20357, 4411, 10), -- Slightly Weak M. Atk.
-(20357, 4412, 12), -- Slightly Strong P. Def.
-(20357, 4413, 12), -- Slightly Strong M. Def.
-(20357, 4414, 2), -- Standard Type
-(20357, 4415, 3), -- One-handed Sword
-(20357, 4416, 6), -- Humanoids
+(20357, 4408, 1), -- HP Modifiers
+(20357, 4409, 1), -- MP Modifiers
+(20357, 4410, 10), -- P. Atk. Modifiers
+(20357, 4411, 10), -- M. Atk. Modifiers
+(20357, 4412, 12), -- P. Def. Modifiers
+(20357, 4413, 12), -- M. Def. Modifiers
+(20357, 4414, 2), -- Armor Type
+(20357, 4415, 3), -- Weapon Type
+(20357, 4416, 6), -- Races
 -- Ratman Hunter
-(20358, 4408, 1), -- HP Increase (1x)
-(20358, 4409, 1), -- MP Increase (1x)
-(20358, 4410, 10), -- Slightly Weak P. Atk.
-(20358, 4411, 10), -- Slightly Weak M. Atk.
-(20358, 4412, 12), -- Slightly Strong P. Def.
-(20358, 4413, 12), -- Slightly Strong M. Def.
-(20358, 4414, 2), -- Standard Type
-(20358, 4415, 7), -- Daggers
-(20358, 4416, 6), -- Humanoids
+(20358, 4408, 1), -- HP Modifiers
+(20358, 4409, 1), -- MP Modifiers
+(20358, 4410, 10), -- P. Atk. Modifiers
+(20358, 4411, 10), -- M. Atk. Modifiers
+(20358, 4412, 12), -- P. Def. Modifiers
+(20358, 4413, 12), -- M. Def. Modifiers
+(20358, 4414, 2), -- Armor Type
+(20358, 4415, 7), -- Weapon Type
+(20358, 4416, 6), -- Races
 -- Ratman Warrior
-(20359, 4408, 1), -- HP Increase (1x)
-(20359, 4409, 1), -- MP Increase (1x)
-(20359, 4410, 12), -- Slightly Strong P. Atk.
-(20359, 4411, 12), -- Slightly Strong M. Atk.
-(20359, 4412, 10), -- Slightly Weak P. Def.
-(20359, 4413, 10), -- Slightly Weak M. Def.
-(20359, 4414, 2), -- Standard Type
-(20359, 4415, 3), -- One-handed Sword
-(20359, 4416, 6), -- Humanoids
+(20359, 4408, 1), -- HP Modifiers
+(20359, 4409, 1), -- MP Modifiers
+(20359, 4410, 12), -- P. Atk. Modifiers
+(20359, 4411, 12), -- M. Atk. Modifiers
+(20359, 4412, 10), -- P. Def. Modifiers
+(20359, 4413, 10), -- M. Def. Modifiers
+(20359, 4414, 2), -- Armor Type
+(20359, 4415, 3), -- Weapon Type
+(20359, 4416, 6), -- Races
 -- Ratman Spy
-(20360, 4408, 1), -- HP Increase (1x)
-(20360, 4409, 1), -- MP Increase (1x)
-(20360, 4410, 12), -- Slightly Strong P. Atk.
-(20360, 4411, 12), -- Slightly Strong M. Atk.
-(20360, 4412, 10), -- Slightly Weak P. Def.
-(20360, 4413, 10), -- Slightly Weak M. Def.
-(20360, 4414, 2), -- Standard Type
-(20360, 4415, 7), -- Daggers
-(20360, 4416, 6), -- Humanoids
+(20360, 4408, 1), -- HP Modifiers
+(20360, 4409, 1), -- MP Modifiers
+(20360, 4410, 12), -- P. Atk. Modifiers
+(20360, 4411, 12), -- M. Atk. Modifiers
+(20360, 4412, 10), -- P. Def. Modifiers
+(20360, 4413, 10), -- M. Def. Modifiers
+(20360, 4414, 2), -- Armor Type
+(20360, 4415, 7), -- Weapon Type
+(20360, 4416, 6), -- Races
 -- Tunath Orc Marksman
-(20361, 4408, 1), -- HP Increase (1x)
-(20361, 4409, 1), -- MP Increase (1x)
-(20361, 4410, 11), -- Average P. Atk.
-(20361, 4411, 11), -- Average M. Atk.
-(20361, 4412, 11), -- Average P. Def.
-(20361, 4413, 11), -- Average M. Def.
-(20361, 4414, 2), -- Standard Type
-(20361, 4415, 9), -- Bows
-(20361, 4416, 6), -- Humanoids
+(20361, 4408, 1), -- HP Modifiers
+(20361, 4409, 1), -- MP Modifiers
+(20361, 4410, 11), -- P. Atk. Modifiers
+(20361, 4411, 11), -- M. Atk. Modifiers
+(20361, 4412, 11), -- P. Def. Modifiers
+(20361, 4413, 11), -- M. Def. Modifiers
+(20361, 4414, 2), -- Armor Type
+(20361, 4415, 9), -- Weapon Type
+(20361, 4416, 6), -- Races
 -- Tunath Orc Warrior
-(20362, 4408, 1), -- HP Increase (1x)
-(20362, 4409, 1), -- MP Increase (1x)
-(20362, 4410, 10), -- Slightly Weak P. Atk.
-(20362, 4411, 10), -- Slightly Weak M. Atk.
-(20362, 4412, 12), -- Slightly Strong P. Def.
-(20362, 4413, 12), -- Slightly Strong M. Def.
-(20362, 4414, 2), -- Standard Type
-(20362, 4415, 3), -- One-handed Sword
-(20362, 4416, 6), -- Humanoids
+(20362, 4408, 1), -- HP Modifiers
+(20362, 4409, 1), -- MP Modifiers
+(20362, 4410, 10), -- P. Atk. Modifiers
+(20362, 4411, 10), -- M. Atk. Modifiers
+(20362, 4412, 12), -- P. Def. Modifiers
+(20362, 4413, 12), -- M. Def. Modifiers
+(20362, 4414, 2), -- Armor Type
+(20362, 4415, 3), -- Weapon Type
+(20362, 4416, 6), -- Races
 -- Maraku Werewolf
-(20363, 4408, 1), -- HP Increase (1x)
-(20363, 4409, 1), -- MP Increase (1x)
-(20363, 4410, 12), -- Slightly Strong P. Atk.
-(20363, 4411, 12), -- Slightly Strong M. Atk.
-(20363, 4412, 10), -- Slightly Weak P. Def.
-(20363, 4413, 10), -- Slightly Weak M. Def.
-(20363, 4414, 2), -- Standard Type
-(20363, 4415, 3), -- One-handed Sword
-(20363, 4416, 6), -- Humanoids
+(20363, 4408, 1), -- HP Modifiers
+(20363, 4409, 1), -- MP Modifiers
+(20363, 4410, 12), -- P. Atk. Modifiers
+(20363, 4411, 12), -- M. Atk. Modifiers
+(20363, 4412, 10), -- P. Def. Modifiers
+(20363, 4413, 10), -- M. Def. Modifiers
+(20363, 4414, 2), -- Armor Type
+(20363, 4415, 3), -- Weapon Type
+(20363, 4416, 6), -- Races
 -- Maraku Werewolf Chieftain
-(20364, 4408, 1), -- HP Increase (1x)
-(20364, 4409, 1), -- MP Increase (1x)
-(20364, 4410, 12), -- Slightly Strong P. Atk.
-(20364, 4411, 12), -- Slightly Strong M. Atk.
-(20364, 4412, 10), -- Slightly Weak P. Def.
-(20364, 4413, 10), -- Slightly Weak M. Def.
-(20364, 4414, 2), -- Standard Type
-(20364, 4415, 7), -- Daggers
-(20364, 4416, 6), -- Humanoids
+(20364, 4408, 1), -- HP Modifiers
+(20364, 4409, 1), -- MP Modifiers
+(20364, 4410, 12), -- P. Atk. Modifiers
+(20364, 4411, 12), -- M. Atk. Modifiers
+(20364, 4412, 10), -- P. Def. Modifiers
+(20364, 4413, 10), -- M. Def. Modifiers
+(20364, 4414, 2), -- Armor Type
+(20364, 4415, 7), -- Weapon Type
+(20364, 4416, 6), -- Races
 -- Mountain Fungus
-(20365, 4277, 5), -- Resist Poison Attacks
-(20365, 4408, 1), -- HP Increase (1x)
-(20365, 4409, 1), -- MP Increase (1x)
-(20365, 4410, 12), -- Slightly Strong P. Atk.
-(20365, 4411, 12), -- Slightly Strong M. Atk.
-(20365, 4412, 10), -- Slightly Weak P. Def.
-(20365, 4413, 10), -- Slightly Weak M. Def.
-(20365, 4414, 2), -- Standard Type
-(20365, 4415, 3), -- One-handed Sword
-(20365, 4416, 5), -- Plants
+(20365, 4277, 5), -- Resist Poison
+(20365, 4408, 1), -- HP Modifiers
+(20365, 4409, 1), -- MP Modifiers
+(20365, 4410, 12), -- P. Atk. Modifiers
+(20365, 4411, 12), -- M. Atk. Modifiers
+(20365, 4412, 10), -- P. Def. Modifiers
+(20365, 4413, 10), -- M. Def. Modifiers
+(20365, 4414, 2), -- Armor Type
+(20365, 4415, 3), -- Weapon Type
+(20365, 4416, 5), -- Races
 -- Merkenis' Escort
-(20367, 4274, 1), -- Blunt Weapon Weak Point
-(20367, 4408, 1), -- HP Increase (1x)
-(20367, 4409, 1), -- MP Increase (1x)
-(20367, 4410, 10), -- Slightly Weak P. Atk.
-(20367, 4411, 10), -- Slightly Weak M. Atk.
-(20367, 4412, 12), -- Slightly Strong P. Def.
-(20367, 4413, 12), -- Slightly Strong M. Def.
-(20367, 4414, 2), -- Standard Type
-(20367, 4415, 3), -- One-handed Sword
-(20367, 4416, 1), -- Undead
+(20367, 4274, 1), -- Blunt Attack Weak Point
+(20367, 4408, 1), -- HP Modifiers
+(20367, 4409, 1), -- MP Modifiers
+(20367, 4410, 10), -- P. Atk. Modifiers
+(20367, 4411, 10), -- M. Atk. Modifiers
+(20367, 4412, 12), -- P. Def. Modifiers
+(20367, 4413, 12), -- M. Def. Modifiers
+(20367, 4414, 2), -- Armor Type
+(20367, 4415, 3), -- Weapon Type
+(20367, 4416, 1), -- Races
 -- Grave Keeper
-(20368, 4247, 1), -- Wind Strike
-(20368, 4273, 3), -- Resist Daggers/Rapier Weapon
-(20368, 4274, 1), -- Blunt Weapon Weak Point
-(20368, 4284, 5), -- Resist Bleed Attacks
-(20368, 4408, 1), -- HP Increase (1x)
-(20368, 4409, 1), -- MP Increase (1x)
-(20368, 4410, 10), -- Slightly Weak P. Atk.
-(20368, 4411, 10), -- Slightly Weak M. Atk.
-(20368, 4412, 12), -- Slightly Strong P. Def.
-(20368, 4413, 19), -- Extremely Strong M. Def.
-(20368, 4414, 2), -- Standard Type
-(20368, 4415, 3), -- One-handed Sword
-(20368, 4416, 2), -- Magic Creatures
+(20368, 4247, 1), -- NPC Windstrike - Slow
+(20368, 4273, 3), -- Resist Dagger
+(20368, 4274, 1), -- Blunt Attack Weak Point
+(20368, 4284, 5), -- Resist Bleeding
+(20368, 4408, 1), -- HP Modifiers
+(20368, 4409, 1), -- MP Modifiers
+(20368, 4410, 10), -- P. Atk. Modifiers
+(20368, 4411, 10), -- M. Atk. Modifiers
+(20368, 4412, 12), -- P. Def. Modifiers
+(20368, 4413, 19), -- M. Def. Modifiers
+(20368, 4414, 2), -- Armor Type
+(20368, 4415, 3), -- Weapon Type
+(20368, 4416, 2), -- Races
 (20368, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Moonstone Beast
-(20369, 4408, 1), -- HP Increase (1x)
-(20369, 4409, 1), -- MP Increase (1x)
-(20369, 4410, 12), -- Slightly Strong P. Atk.
-(20369, 4411, 12), -- Slightly Strong M. Atk.
-(20369, 4412, 10), -- Slightly Weak P. Def.
-(20369, 4413, 10), -- Slightly Weak M. Def.
-(20369, 4414, 2), -- Standard Type
-(20369, 4415, 3), -- One-handed Sword
-(20369, 4416, 3), -- Beasts
+(20369, 4408, 1), -- HP Modifiers
+(20369, 4409, 1), -- MP Modifiers
+(20369, 4410, 12), -- P. Atk. Modifiers
+(20369, 4411, 12), -- M. Atk. Modifiers
+(20369, 4412, 10), -- P. Def. Modifiers
+(20369, 4413, 10), -- M. Def. Modifiers
+(20369, 4414, 2), -- Armor Type
+(20369, 4415, 3), -- Weapon Type
+(20369, 4416, 3), -- Races
 -- Barbed Bat
-(20370, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(20370, 4408, 1), -- HP Increase (1x)
-(20370, 4409, 1), -- MP Increase (1x)
-(20370, 4410, 12), -- Slightly Strong P. Atk.
-(20370, 4411, 12), -- Slightly Strong M. Atk.
-(20370, 4412, 10), -- Slightly Weak P. Def.
-(20370, 4413, 10), -- Slightly Weak M. Def.
-(20370, 4414, 2), -- Standard Type
-(20370, 4415, 3), -- One-handed Sword
-(20370, 4416, 4), -- Animals
+(20370, 4276, 1), -- Archery Attack Weak Point
+(20370, 4408, 1), -- HP Modifiers
+(20370, 4409, 1), -- MP Modifiers
+(20370, 4410, 12), -- P. Atk. Modifiers
+(20370, 4411, 12), -- M. Atk. Modifiers
+(20370, 4412, 10), -- P. Def. Modifiers
+(20370, 4413, 10), -- M. Def. Modifiers
+(20370, 4414, 2), -- Armor Type
+(20370, 4415, 3), -- Weapon Type
+(20370, 4416, 4), -- Races
 -- Mist Terror
-(20371, 4408, 1), -- HP Increase (1x)
-(20371, 4409, 1), -- MP Increase (1x)
-(20371, 4410, 12), -- Slightly Strong P. Atk.
-(20371, 4411, 12), -- Slightly Strong M. Atk.
-(20371, 4412, 10), -- Slightly Weak P. Def.
-(20371, 4413, 10), -- Slightly Weak M. Def.
-(20371, 4414, 2), -- Standard Type
-(20371, 4415, 3), -- One-handed Sword
-(20371, 4416, 1), -- Undead
+(20371, 4408, 1), -- HP Modifiers
+(20371, 4409, 1), -- MP Modifiers
+(20371, 4410, 12), -- P. Atk. Modifiers
+(20371, 4411, 12), -- M. Atk. Modifiers
+(20371, 4412, 10), -- P. Def. Modifiers
+(20371, 4413, 10), -- M. Def. Modifiers
+(20371, 4414, 2), -- Armor Type
+(20371, 4415, 3), -- Weapon Type
+(20371, 4416, 1), -- Races
 -- Baraq Orc Fighter
-(20372, 4408, 1), -- HP Increase (1x)
-(20372, 4409, 1), -- MP Increase (1x)
-(20372, 4410, 12), -- Slightly Strong P. Atk.
-(20372, 4411, 12), -- Slightly Strong M. Atk.
-(20372, 4412, 10), -- Slightly Weak P. Def.
-(20372, 4413, 10), -- Slightly Weak M. Def.
-(20372, 4414, 2), -- Standard Type
-(20372, 4415, 3), -- One-handed Sword
-(20372, 4416, 6), -- Humanoids
+(20372, 4408, 1), -- HP Modifiers
+(20372, 4409, 1), -- MP Modifiers
+(20372, 4410, 12), -- P. Atk. Modifiers
+(20372, 4411, 12), -- M. Atk. Modifiers
+(20372, 4412, 10), -- P. Def. Modifiers
+(20372, 4413, 10), -- M. Def. Modifiers
+(20372, 4414, 2), -- Armor Type
+(20372, 4415, 3), -- Weapon Type
+(20372, 4416, 6), -- Races
 -- Baraq Orc Warrior Leader
-(20373, 4408, 1), -- HP Increase (1x)
-(20373, 4409, 1), -- MP Increase (1x)
-(20373, 4410, 12), -- Slightly Strong P. Atk.
-(20373, 4411, 12), -- Slightly Strong M. Atk.
-(20373, 4412, 10), -- Slightly Weak P. Def.
-(20373, 4413, 10), -- Slightly Weak M. Def.
-(20373, 4414, 2), -- Standard Type
-(20373, 4415, 3), -- One-handed Sword
-(20373, 4416, 6), -- Humanoids
+(20373, 4408, 1), -- HP Modifiers
+(20373, 4409, 1), -- MP Modifiers
+(20373, 4410, 12), -- P. Atk. Modifiers
+(20373, 4411, 12), -- M. Atk. Modifiers
+(20373, 4412, 10), -- P. Def. Modifiers
+(20373, 4413, 10), -- M. Def. Modifiers
+(20373, 4414, 2), -- Armor Type
+(20373, 4415, 3), -- Weapon Type
+(20373, 4416, 6), -- Races
 -- Varangka's Guard
-(20374, 4077, 2), -- Aura Burn
-(20374, 4274, 1), -- Blunt Weapon Weak Point
-(20374, 4408, 1), -- HP Increase (1x)
-(20374, 4409, 1), -- MP Increase (1x)
-(20374, 4410, 10), -- Slightly Weak P. Atk.
-(20374, 4411, 10), -- Slightly Weak M. Atk.
-(20374, 4412, 12), -- Slightly Strong P. Def.
-(20374, 4413, 12), -- Slightly Strong M. Def.
-(20374, 4414, 2), -- Standard Type
-(20374, 4415, 3), -- One-handed Sword
-(20374, 4416, 1), -- Undead
+(20374, 4077, 2), -- NPC Aura Burn
+(20374, 4274, 1), -- Blunt Attack Weak Point
+(20374, 4408, 1), -- HP Modifiers
+(20374, 4409, 1), -- MP Modifiers
+(20374, 4410, 10), -- P. Atk. Modifiers
+(20374, 4411, 10), -- M. Atk. Modifiers
+(20374, 4412, 12), -- P. Def. Modifiers
+(20374, 4413, 12), -- M. Def. Modifiers
+(20374, 4414, 2), -- Armor Type
+(20374, 4415, 3), -- Weapon Type
+(20374, 4416, 1), -- Races
 -- Varangka's Escort
-(20375, 4274, 1), -- Blunt Weapon Weak Point
-(20375, 4408, 1), -- HP Increase (1x)
-(20375, 4409, 1), -- MP Increase (1x)
-(20375, 4410, 10), -- Slightly Weak P. Atk.
-(20375, 4411, 10), -- Slightly Weak M. Atk.
-(20375, 4412, 12), -- Slightly Strong P. Def.
-(20375, 4413, 12), -- Slightly Strong M. Def.
-(20375, 4414, 2), -- Standard Type
-(20375, 4415, 7), -- Daggers
-(20375, 4416, 1), -- Undead
+(20375, 4274, 1), -- Blunt Attack Weak Point
+(20375, 4408, 1), -- HP Modifiers
+(20375, 4409, 1), -- MP Modifiers
+(20375, 4410, 10), -- P. Atk. Modifiers
+(20375, 4411, 10), -- M. Atk. Modifiers
+(20375, 4412, 12), -- P. Def. Modifiers
+(20375, 4413, 12), -- M. Def. Modifiers
+(20375, 4414, 2), -- Armor Type
+(20375, 4415, 7), -- Weapon Type
+(20375, 4416, 1), -- Races
 -- Varikan Brigand Leader
-(20376, 4408, 10), -- HP Increase (2x)
-(20376, 4409, 1), -- MP Increase (1x)
-(20376, 4410, 11), -- Average P. Atk.
-(20376, 4411, 11), -- Average M. Atk.
-(20376, 4412, 11), -- Average P. Def.
-(20376, 4413, 11), -- Average M. Def.
-(20376, 4414, 2), -- Standard Type
-(20376, 4415, 5), -- Blunt Weapons
-(20376, 4416, 6), -- Humanoids
+(20376, 4408, 10), -- HP Modifiers
+(20376, 4409, 1), -- MP Modifiers
+(20376, 4410, 11), -- P. Atk. Modifiers
+(20376, 4411, 11), -- M. Atk. Modifiers
+(20376, 4412, 11), -- P. Def. Modifiers
+(20376, 4413, 11), -- M. Def. Modifiers
+(20376, 4414, 2), -- Armor Type
+(20376, 4415, 5), -- Weapon Type
+(20376, 4416, 6), -- Races
 -- Varika's Bandit
-(20377, 4408, 9), -- HP Increase (1/2x)
-(20377, 4409, 1), -- MP Increase (1x)
-(20377, 4410, 13), -- Slightly Strong P. Atk.
-(20377, 4411, 13), -- Slightly Strong M. Atk.
-(20377, 4412, 9), -- Slightly Weak P. Def.
-(20377, 4413, 9), -- Slightly Weak M. Def.
-(20377, 4414, 2), -- Standard Type
-(20377, 4415, 5), -- Blunt Weapons
-(20377, 4416, 6), -- Humanoids
+(20377, 4408, 9), -- HP Modifiers
+(20377, 4409, 1), -- MP Modifiers
+(20377, 4410, 13), -- P. Atk. Modifiers
+(20377, 4411, 13), -- M. Atk. Modifiers
+(20377, 4412, 9), -- P. Def. Modifiers
+(20377, 4413, 9), -- M. Def. Modifiers
+(20377, 4414, 2), -- Armor Type
+(20377, 4415, 5), -- Weapon Type
+(20377, 4416, 6), -- Races
 -- Stone Giant
-(20378, 4247, 1), -- Wind Strike
-(20378, 4273, 3), -- Resist Daggers/Rapier Weapon
-(20378, 4274, 1), -- Blunt Weapon Weak Point
-(20378, 4284, 5), -- Resist Bleed Attacks
-(20378, 4408, 1), -- HP Increase (1x)
-(20378, 4409, 1), -- MP Increase (1x)
-(20378, 4410, 10), -- Slightly Weak P. Atk.
-(20378, 4411, 10), -- Slightly Weak M. Atk.
-(20378, 4412, 12), -- Slightly Strong P. Def.
-(20378, 4413, 19), -- Extremely Strong M. Def.
-(20378, 4414, 2), -- Standard Type
-(20378, 4415, 5), -- Blunt Weapons
-(20378, 4416, 2), -- Magic Creatures
+(20378, 4247, 1), -- NPC Windstrike - Slow
+(20378, 4273, 3), -- Resist Dagger
+(20378, 4274, 1), -- Blunt Attack Weak Point
+(20378, 4284, 5), -- Resist Bleeding
+(20378, 4408, 1), -- HP Modifiers
+(20378, 4409, 1), -- MP Modifiers
+(20378, 4410, 10), -- P. Atk. Modifiers
+(20378, 4411, 10), -- M. Atk. Modifiers
+(20378, 4412, 12), -- P. Def. Modifiers
+(20378, 4413, 19), -- M. Def. Modifiers
+(20378, 4414, 2), -- Armor Type
+(20378, 4415, 5), -- Weapon Type
+(20378, 4416, 2), -- Races
 (20378, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Stone Soldier
 (20379, 4249, 1), -- Decrease Speed
-(20379, 4273, 3), -- Resist Daggers/Rapier Weapon
-(20379, 4274, 1), -- Blunt Weapon Weak Point
-(20379, 4284, 5), -- Resist Bleed Attacks
-(20379, 4408, 1), -- HP Increase (1x)
-(20379, 4409, 1), -- MP Increase (1x)
-(20379, 4410, 10), -- Slightly Weak P. Atk.
-(20379, 4411, 10), -- Slightly Weak M. Atk.
-(20379, 4412, 12), -- Slightly Strong P. Def.
-(20379, 4413, 19), -- Extremely Strong M. Def.
-(20379, 4414, 2), -- Standard Type
-(20379, 4415, 3), -- One-handed Sword
-(20379, 4416, 2), -- Magic Creatures
+(20379, 4273, 3), -- Resist Dagger
+(20379, 4274, 1), -- Blunt Attack Weak Point
+(20379, 4284, 5), -- Resist Bleeding
+(20379, 4408, 1), -- HP Modifiers
+(20379, 4409, 1), -- MP Modifiers
+(20379, 4410, 10), -- P. Atk. Modifiers
+(20379, 4411, 10), -- M. Atk. Modifiers
+(20379, 4412, 12), -- P. Def. Modifiers
+(20379, 4413, 19), -- M. Def. Modifiers
+(20379, 4414, 2), -- Armor Type
+(20379, 4415, 3), -- Weapon Type
+(20379, 4416, 2), -- Races
 (20379, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Stone Guardian
-(20380, 4247, 1), -- Wind Strike
-(20380, 4273, 3), -- Resist Daggers/Rapier Weapon
-(20380, 4274, 1), -- Blunt Weapon Weak Point
-(20380, 4284, 5), -- Resist Bleed Attacks
-(20380, 4408, 1), -- HP Increase (1x)
-(20380, 4409, 1), -- MP Increase (1x)
-(20380, 4410, 10), -- Slightly Weak P. Atk.
-(20380, 4411, 10), -- Slightly Weak M. Atk.
-(20380, 4412, 12), -- Slightly Strong P. Def.
-(20380, 4413, 19), -- Extremely Strong M. Def.
-(20380, 4414, 2), -- Standard Type
-(20380, 4415, 3), -- One-handed Sword
-(20380, 4416, 2), -- Magic Creatures
+(20380, 4247, 1), -- NPC Windstrike - Slow
+(20380, 4273, 3), -- Resist Dagger
+(20380, 4274, 1), -- Blunt Attack Weak Point
+(20380, 4284, 5), -- Resist Bleeding
+(20380, 4408, 1), -- HP Modifiers
+(20380, 4409, 1), -- MP Modifiers
+(20380, 4410, 10), -- P. Atk. Modifiers
+(20380, 4411, 10), -- M. Atk. Modifiers
+(20380, 4412, 12), -- P. Def. Modifiers
+(20380, 4413, 19), -- M. Def. Modifiers
+(20380, 4414, 2), -- Armor Type
+(20380, 4415, 3), -- Weapon Type
+(20380, 4416, 2), -- Races
 (20380, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Vaiss Orc
-(20381, 4408, 1), -- HP Increase (1x)
-(20381, 4409, 1), -- MP Increase (1x)
-(20381, 4410, 11), -- Average P. Atk.
-(20381, 4411, 11), -- Average M. Atk.
-(20381, 4412, 11), -- Average P. Def.
-(20381, 4413, 11), -- Average M. Def.
-(20381, 4414, 2), -- Standard Type
-(20381, 4415, 5), -- Blunt Weapons
-(20381, 4416, 6), -- Humanoids
+(20381, 4408, 1), -- HP Modifiers
+(20381, 4409, 1), -- MP Modifiers
+(20381, 4410, 11), -- P. Atk. Modifiers
+(20381, 4411, 11), -- M. Atk. Modifiers
+(20381, 4412, 11), -- P. Def. Modifiers
+(20381, 4413, 11), -- M. Def. Modifiers
+(20381, 4414, 2), -- Armor Type
+(20381, 4415, 5), -- Weapon Type
+(20381, 4416, 6), -- Races
 -- Vaiss Orc Warrior Leader
-(20382, 4408, 1), -- HP Increase (1x)
-(20382, 4409, 1), -- MP Increase (1x)
-(20382, 4410, 12), -- Slightly Strong P. Atk.
-(20382, 4411, 12), -- Slightly Strong M. Atk.
-(20382, 4412, 10), -- Slightly Weak P. Def.
-(20382, 4413, 10), -- Slightly Weak M. Def.
-(20382, 4414, 2), -- Standard Type
-(20382, 4415, 3), -- One-handed Sword
-(20382, 4416, 6), -- Humanoids
+(20382, 4408, 1), -- HP Modifiers
+(20382, 4409, 1), -- MP Modifiers
+(20382, 4410, 12), -- P. Atk. Modifiers
+(20382, 4411, 12), -- M. Atk. Modifiers
+(20382, 4412, 10), -- P. Def. Modifiers
+(20382, 4413, 10), -- M. Def. Modifiers
+(20382, 4414, 2), -- Armor Type
+(20382, 4415, 3), -- Weapon Type
+(20382, 4416, 6), -- Races
 -- Arachnid Hunter
 (20383, 4035, 3), -- Poison
-(20383, 4408, 1), -- HP Increase (1x)
-(20383, 4409, 1), -- MP Increase (1x)
-(20383, 4410, 10), -- Slightly Weak P. Atk.
-(20383, 4411, 10), -- Slightly Weak M. Atk.
-(20383, 4412, 12), -- Slightly Strong P. Def.
-(20383, 4413, 12), -- Slightly Strong M. Def.
-(20383, 4414, 2), -- Standard Type
-(20383, 4415, 3), -- One-handed Sword
-(20383, 4416, 1), -- Undead
+(20383, 4408, 1), -- HP Modifiers
+(20383, 4409, 1), -- MP Modifiers
+(20383, 4410, 10), -- P. Atk. Modifiers
+(20383, 4411, 10), -- M. Atk. Modifiers
+(20383, 4412, 12), -- P. Def. Modifiers
+(20383, 4413, 12), -- M. Def. Modifiers
+(20383, 4414, 2), -- Armor Type
+(20383, 4415, 3), -- Weapon Type
+(20383, 4416, 1), -- Races
 -- Balor Orc Archer
-(20385, 4408, 1), -- HP Increase (1x)
-(20385, 4409, 1), -- MP Increase (1x)
-(20385, 4410, 11), -- Average P. Atk.
-(20385, 4411, 11), -- Average M. Atk.
-(20385, 4412, 11), -- Average P. Def.
-(20385, 4413, 11), -- Average M. Def.
-(20385, 4414, 2), -- Standard Type
-(20385, 4415, 9), -- Bows
-(20385, 4416, 6), -- Humanoids
+(20385, 4408, 1), -- HP Modifiers
+(20385, 4409, 1), -- MP Modifiers
+(20385, 4410, 11), -- P. Atk. Modifiers
+(20385, 4411, 11), -- M. Atk. Modifiers
+(20385, 4412, 11), -- P. Def. Modifiers
+(20385, 4413, 11), -- M. Def. Modifiers
+(20385, 4414, 2), -- Armor Type
+(20385, 4415, 9), -- Weapon Type
+(20385, 4416, 6), -- Races
 -- Balor Orc Fighter
-(20386, 4408, 1), -- HP Increase (1x)
-(20386, 4409, 1), -- MP Increase (1x)
-(20386, 4410, 12), -- Slightly Strong P. Atk.
-(20386, 4411, 12), -- Slightly Strong M. Atk.
-(20386, 4412, 10), -- Slightly Weak P. Def.
-(20386, 4413, 10), -- Slightly Weak M. Def.
-(20386, 4414, 2), -- Standard Type
-(20386, 4415, 3), -- One-handed Sword
-(20386, 4416, 6), -- Humanoids
+(20386, 4408, 1), -- HP Modifiers
+(20386, 4409, 1), -- MP Modifiers
+(20386, 4410, 12), -- P. Atk. Modifiers
+(20386, 4411, 12), -- M. Atk. Modifiers
+(20386, 4412, 10), -- P. Def. Modifiers
+(20386, 4413, 10), -- M. Def. Modifiers
+(20386, 4414, 2), -- Armor Type
+(20386, 4415, 3), -- Weapon Type
+(20386, 4416, 6), -- Races
 -- Balor Orc Fighter Leader
-(20387, 4408, 1), -- HP Increase (1x)
-(20387, 4409, 1), -- MP Increase (1x)
-(20387, 4410, 12), -- Slightly Strong P. Atk.
-(20387, 4411, 12), -- Slightly Strong M. Atk.
-(20387, 4412, 10), -- Slightly Weak P. Def.
-(20387, 4413, 10), -- Slightly Weak M. Def.
-(20387, 4414, 2), -- Standard Type
-(20387, 4415, 3), -- One-handed Sword
-(20387, 4416, 6), -- Humanoids
+(20387, 4408, 1), -- HP Modifiers
+(20387, 4409, 1), -- MP Modifiers
+(20387, 4410, 12), -- P. Atk. Modifiers
+(20387, 4411, 12), -- M. Atk. Modifiers
+(20387, 4412, 10), -- P. Def. Modifiers
+(20387, 4413, 10), -- M. Def. Modifiers
+(20387, 4414, 2), -- Armor Type
+(20387, 4415, 3), -- Weapon Type
+(20387, 4416, 6), -- Races
 -- Balor Orc Lieutenant
-(20388, 4408, 1), -- HP Increase (1x)
-(20388, 4409, 1), -- MP Increase (1x)
-(20388, 4410, 12), -- Slightly Strong P. Atk.
-(20388, 4411, 12), -- Slightly Strong M. Atk.
-(20388, 4412, 10), -- Slightly Weak P. Def.
-(20388, 4413, 10), -- Slightly Weak M. Def.
-(20388, 4414, 2), -- Standard Type
-(20388, 4415, 3), -- One-handed Sword
-(20388, 4416, 6), -- Humanoids
+(20388, 4408, 1), -- HP Modifiers
+(20388, 4409, 1), -- MP Modifiers
+(20388, 4410, 12), -- P. Atk. Modifiers
+(20388, 4411, 12), -- M. Atk. Modifiers
+(20388, 4412, 10), -- P. Def. Modifiers
+(20388, 4413, 10), -- M. Def. Modifiers
+(20388, 4414, 2), -- Armor Type
+(20388, 4415, 3), -- Weapon Type
+(20388, 4416, 6), -- Races
 -- Boogle Ratman
-(20389, 4408, 1), -- HP Increase (1x)
-(20389, 4409, 1), -- MP Increase (1x)
-(20389, 4410, 12), -- Slightly Strong P. Atk.
-(20389, 4411, 12), -- Slightly Strong M. Atk.
-(20389, 4412, 10), -- Slightly Weak P. Def.
-(20389, 4413, 10), -- Slightly Weak M. Def.
-(20389, 4414, 2), -- Standard Type
-(20389, 4415, 7), -- Daggers
-(20389, 4416, 6), -- Humanoids
+(20389, 4408, 1), -- HP Modifiers
+(20389, 4409, 1), -- MP Modifiers
+(20389, 4410, 12), -- P. Atk. Modifiers
+(20389, 4411, 12), -- M. Atk. Modifiers
+(20389, 4412, 10), -- P. Def. Modifiers
+(20389, 4413, 10), -- M. Def. Modifiers
+(20389, 4414, 2), -- Armor Type
+(20389, 4415, 7), -- Weapon Type
+(20389, 4416, 6), -- Races
 -- Boogle Ratman Leader
-(20390, 4408, 1), -- HP Increase (1x)
-(20390, 4409, 1), -- MP Increase (1x)
-(20390, 4410, 12), -- Slightly Strong P. Atk.
-(20390, 4411, 12), -- Slightly Strong M. Atk.
-(20390, 4412, 10), -- Slightly Weak P. Def.
-(20390, 4413, 10), -- Slightly Weak M. Def.
-(20390, 4414, 2), -- Standard Type
-(20390, 4415, 7), -- Daggers
-(20390, 4416, 6), -- Humanoids
+(20390, 4408, 1), -- HP Modifiers
+(20390, 4409, 1), -- MP Modifiers
+(20390, 4410, 12), -- P. Atk. Modifiers
+(20390, 4411, 12), -- M. Atk. Modifiers
+(20390, 4412, 10), -- P. Def. Modifiers
+(20390, 4413, 10), -- M. Def. Modifiers
+(20390, 4414, 2), -- Armor Type
+(20390, 4415, 7), -- Weapon Type
+(20390, 4416, 6), -- Races
 -- Red Fox
-(20391, 4408, 1), -- HP Increase (1x)
-(20391, 4409, 1), -- MP Increase (1x)
-(20391, 4410, 11), -- Average P. Atk.
-(20391, 4411, 11), -- Average M. Atk.
-(20391, 4412, 11), -- Average P. Def.
-(20391, 4413, 11), -- Average M. Def.
-(20391, 4414, 2), -- Standard Type
-(20391, 4415, 3), -- One-handed Sword
-(20391, 4416, 4), -- Animals
+(20391, 4408, 1), -- HP Modifiers
+(20391, 4409, 1), -- MP Modifiers
+(20391, 4410, 11), -- P. Atk. Modifiers
+(20391, 4411, 11), -- M. Atk. Modifiers
+(20391, 4412, 11), -- P. Def. Modifiers
+(20391, 4413, 11), -- M. Def. Modifiers
+(20391, 4414, 2), -- Armor Type
+(20391, 4415, 3), -- Weapon Type
+(20391, 4416, 4), -- Races
 -- Redeye Bat
-(20392, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(20392, 4408, 1), -- HP Increase (1x)
-(20392, 4409, 1), -- MP Increase (1x)
-(20392, 4410, 12), -- Slightly Strong P. Atk.
-(20392, 4411, 12), -- Slightly Strong M. Atk.
-(20392, 4412, 10), -- Slightly Weak P. Def.
-(20392, 4413, 10), -- Slightly Weak M. Def.
-(20392, 4414, 2), -- Standard Type
-(20392, 4415, 3), -- One-handed Sword
-(20392, 4416, 4), -- Animals
+(20392, 4276, 1), -- Archery Attack Weak Point
+(20392, 4408, 1), -- HP Modifiers
+(20392, 4409, 1), -- MP Modifiers
+(20392, 4410, 12), -- P. Atk. Modifiers
+(20392, 4411, 12), -- M. Atk. Modifiers
+(20392, 4412, 10), -- P. Def. Modifiers
+(20392, 4413, 10), -- M. Def. Modifiers
+(20392, 4414, 2), -- Armor Type
+(20392, 4415, 3), -- Weapon Type
+(20392, 4416, 4), -- Races
 -- Red Scavenger Spider
-(20393, 4408, 1), -- HP Increase (1x)
-(20393, 4409, 1), -- MP Increase (1x)
-(20393, 4410, 12), -- Slightly Strong P. Atk.
-(20393, 4411, 12), -- Slightly Strong M. Atk.
-(20393, 4412, 10), -- Slightly Weak P. Def.
-(20393, 4413, 10), -- Slightly Weak M. Def.
-(20393, 4414, 2), -- Standard Type
-(20393, 4415, 3), -- One-handed Sword
-(20393, 4416, 12), -- Bugs
+(20393, 4408, 1), -- HP Modifiers
+(20393, 4409, 1), -- MP Modifiers
+(20393, 4410, 12), -- P. Atk. Modifiers
+(20393, 4411, 12), -- M. Atk. Modifiers
+(20393, 4412, 10), -- P. Def. Modifiers
+(20393, 4413, 10), -- M. Def. Modifiers
+(20393, 4414, 2), -- Armor Type
+(20393, 4415, 3), -- Weapon Type
+(20393, 4416, 12), -- Races
 -- Crimson Tarantula
-(20394, 4408, 1), -- HP Increase (1x)
-(20394, 4409, 1), -- MP Increase (1x)
-(20394, 4410, 12), -- Slightly Strong P. Atk.
-(20394, 4411, 12), -- Slightly Strong M. Atk.
-(20394, 4412, 10), -- Slightly Weak P. Def.
-(20394, 4413, 10), -- Slightly Weak M. Def.
-(20394, 4414, 2), -- Standard Type
-(20394, 4415, 3), -- One-handed Sword
-(20394, 4416, 12), -- Bugs
+(20394, 4408, 1), -- HP Modifiers
+(20394, 4409, 1), -- MP Modifiers
+(20394, 4410, 12), -- P. Atk. Modifiers
+(20394, 4411, 12), -- M. Atk. Modifiers
+(20394, 4412, 10), -- P. Def. Modifiers
+(20394, 4413, 10), -- M. Def. Modifiers
+(20394, 4414, 2), -- Armor Type
+(20394, 4415, 3), -- Weapon Type
+(20394, 4416, 12), -- Races
 -- Vrykolakas
-(20398, 4032, 1), -- Power Strike
-(20398, 4408, 10), -- HP Increase (2x)
-(20398, 4409, 1), -- MP Increase (1x)
-(20398, 4410, 12), -- Slightly Strong P. Atk.
-(20398, 4411, 12), -- Slightly Strong M. Atk.
-(20398, 4412, 10), -- Slightly Weak P. Def.
-(20398, 4413, 10), -- Slightly Weak M. Def.
-(20398, 4414, 2), -- Standard Type
-(20398, 4415, 5), -- Blunt Weapons
-(20398, 4416, 6), -- Humanoids
+(20398, 4032, 1), -- NPC Strike
+(20398, 4408, 10), -- HP Modifiers
+(20398, 4409, 1), -- MP Modifiers
+(20398, 4410, 12), -- P. Atk. Modifiers
+(20398, 4411, 12), -- M. Atk. Modifiers
+(20398, 4412, 10), -- P. Def. Modifiers
+(20398, 4413, 10), -- M. Def. Modifiers
+(20398, 4414, 2), -- Armor Type
+(20398, 4415, 5), -- Weapon Type
+(20398, 4416, 6), -- Races
 -- Vrykolakas Wolfkin
-(20399, 4408, 9), -- HP Increase (1/2x)
-(20399, 4409, 1), -- MP Increase (1x)
-(20399, 4410, 13), -- Slightly Strong P. Atk.
-(20399, 4411, 13), -- Slightly Strong M. Atk.
-(20399, 4412, 9), -- Slightly Weak P. Def.
-(20399, 4413, 9), -- Slightly Weak M. Def.
-(20399, 4414, 2), -- Standard Type
-(20399, 4415, 5), -- Blunt Weapons
-(20399, 4416, 4), -- Animals
+(20399, 4408, 9), -- HP Modifiers
+(20399, 4409, 1), -- MP Modifiers
+(20399, 4410, 13), -- P. Atk. Modifiers
+(20399, 4411, 13), -- M. Atk. Modifiers
+(20399, 4412, 9), -- P. Def. Modifiers
+(20399, 4413, 9), -- M. Def. Modifiers
+(20399, 4414, 2), -- Armor Type
+(20399, 4415, 5), -- Weapon Type
+(20399, 4416, 4), -- Races
 -- Blood Fungus
-(20400, 4277, 5), -- Resist Poison Attacks
-(20400, 4408, 1), -- HP Increase (1x)
-(20400, 4409, 1), -- MP Increase (1x)
-(20400, 4410, 12), -- Slightly Strong P. Atk.
-(20400, 4411, 12), -- Slightly Strong M. Atk.
-(20400, 4412, 10), -- Slightly Weak P. Def.
-(20400, 4413, 10), -- Slightly Weak M. Def.
-(20400, 4414, 2), -- Standard Type
-(20400, 4415, 3), -- One-handed Sword
-(20400, 4416, 5), -- Plants
+(20400, 4277, 5), -- Resist Poison
+(20400, 4408, 1), -- HP Modifiers
+(20400, 4409, 1), -- MP Modifiers
+(20400, 4410, 12), -- P. Atk. Modifiers
+(20400, 4411, 12), -- M. Atk. Modifiers
+(20400, 4412, 10), -- P. Def. Modifiers
+(20400, 4413, 10), -- M. Def. Modifiers
+(20400, 4414, 2), -- Armor Type
+(20400, 4415, 3), -- Weapon Type
+(20400, 4416, 5), -- Races
 -- Veelan Bugbear
-(20401, 4408, 1), -- HP Increase (1x)
-(20401, 4409, 1), -- MP Increase (1x)
-(20401, 4410, 10), -- Slightly Weak P. Atk.
-(20401, 4411, 10), -- Slightly Weak M. Atk.
-(20401, 4412, 12), -- Slightly Strong P. Def.
-(20401, 4413, 12), -- Slightly Strong M. Def.
-(20401, 4414, 2), -- Standard Type
-(20401, 4415, 5), -- Blunt Weapons
-(20401, 4416, 11), -- Giants
+(20401, 4408, 1), -- HP Modifiers
+(20401, 4409, 1), -- MP Modifiers
+(20401, 4410, 10), -- P. Atk. Modifiers
+(20401, 4411, 10), -- M. Atk. Modifiers
+(20401, 4412, 12), -- P. Def. Modifiers
+(20401, 4413, 12), -- M. Def. Modifiers
+(20401, 4414, 2), -- Armor Type
+(20401, 4415, 5), -- Weapon Type
+(20401, 4416, 11), -- Races
 -- Veelan Bugbear Warrior
-(20402, 4408, 1), -- HP Increase (1x)
-(20402, 4409, 1), -- MP Increase (1x)
-(20402, 4410, 12), -- Slightly Strong P. Atk.
-(20402, 4411, 12), -- Slightly Strong M. Atk.
-(20402, 4412, 10), -- Slightly Weak P. Def.
-(20402, 4413, 10), -- Slightly Weak M. Def.
-(20402, 4414, 2), -- Standard Type
-(20402, 4415, 5), -- Blunt Weapons
-(20402, 4416, 11), -- Giants
+(20402, 4408, 1), -- HP Modifiers
+(20402, 4409, 1), -- MP Modifiers
+(20402, 4410, 12), -- P. Atk. Modifiers
+(20402, 4411, 12), -- M. Atk. Modifiers
+(20402, 4412, 10), -- P. Def. Modifiers
+(20402, 4413, 10), -- M. Def. Modifiers
+(20402, 4414, 2), -- Armor Type
+(20402, 4415, 5), -- Weapon Type
+(20402, 4416, 11), -- Races
 -- Hunter Tarantula
-(20403, 4408, 1), -- HP Increase (1x)
-(20403, 4409, 1), -- MP Increase (1x)
-(20403, 4410, 12), -- Slightly Strong P. Atk.
-(20403, 4411, 12), -- Slightly Strong M. Atk.
-(20403, 4412, 10), -- Slightly Weak P. Def.
-(20403, 4413, 10), -- Slightly Weak M. Def.
-(20403, 4414, 2), -- Standard Type
-(20403, 4415, 3), -- One-handed Sword
-(20403, 4416, 12), -- Bugs
+(20403, 4408, 1), -- HP Modifiers
+(20403, 4409, 1), -- MP Modifiers
+(20403, 4410, 12), -- P. Atk. Modifiers
+(20403, 4411, 12), -- M. Atk. Modifiers
+(20403, 4412, 10), -- P. Def. Modifiers
+(20403, 4413, 10), -- M. Def. Modifiers
+(20403, 4414, 2), -- Armor Type
+(20403, 4415, 3), -- Weapon Type
+(20403, 4416, 12), -- Races
 -- Silent Horror
-(20404, 4408, 1), -- HP Increase (1x)
-(20404, 4409, 1), -- MP Increase (1x)
-(20404, 4410, 12), -- Slightly Strong P. Atk.
-(20404, 4411, 12), -- Slightly Strong M. Atk.
-(20404, 4412, 10), -- Slightly Weak P. Def.
-(20404, 4413, 10), -- Slightly Weak M. Def.
-(20404, 4414, 2), -- Standard Type
-(20404, 4415, 5), -- Blunt Weapons
-(20404, 4416, 1), -- Undead
+(20404, 4408, 1), -- HP Modifiers
+(20404, 4409, 1), -- MP Modifiers
+(20404, 4410, 12), -- P. Atk. Modifiers
+(20404, 4411, 12), -- M. Atk. Modifiers
+(20404, 4412, 10), -- P. Def. Modifiers
+(20404, 4413, 10), -- M. Def. Modifiers
+(20404, 4414, 2), -- Armor Type
+(20404, 4415, 5), -- Weapon Type
+(20404, 4416, 1), -- Races
 -- Young Brown Fox
-(20405, 4408, 1), -- HP Increase (1x)
-(20405, 4409, 1), -- MP Increase (1x)
-(20405, 4410, 12), -- Slightly Strong P. Atk.
-(20405, 4411, 12), -- Slightly Strong M. Atk.
-(20405, 4412, 10), -- Slightly Weak P. Def.
-(20405, 4413, 10), -- Slightly Weak M. Def.
-(20405, 4414, 2), -- Standard Type
-(20405, 4415, 3), -- One-handed Sword
-(20405, 4416, 4), -- Animals
+(20405, 4408, 1), -- HP Modifiers
+(20405, 4409, 1), -- MP Modifiers
+(20405, 4410, 12), -- P. Atk. Modifiers
+(20405, 4411, 12), -- M. Atk. Modifiers
+(20405, 4412, 10), -- P. Def. Modifiers
+(20405, 4413, 10), -- M. Def. Modifiers
+(20405, 4414, 2), -- Armor Type
+(20405, 4415, 3), -- Weapon Type
+(20405, 4416, 4), -- Races
 -- Young Red Fox
-(20406, 4408, 1), -- HP Increase (1x)
-(20406, 4409, 1), -- MP Increase (1x)
-(20406, 4410, 12), -- Slightly Strong P. Atk.
-(20406, 4411, 12), -- Slightly Strong M. Atk.
-(20406, 4412, 10), -- Slightly Weak P. Def.
-(20406, 4413, 10), -- Slightly Weak M. Def.
-(20406, 4414, 2), -- Standard Type
-(20406, 4415, 3), -- One-handed Sword
-(20406, 4416, 4), -- Animals
+(20406, 4408, 1), -- HP Modifiers
+(20406, 4409, 1), -- MP Modifiers
+(20406, 4410, 12), -- P. Atk. Modifiers
+(20406, 4411, 12), -- M. Atk. Modifiers
+(20406, 4412, 10), -- P. Def. Modifiers
+(20406, 4413, 10), -- M. Def. Modifiers
+(20406, 4414, 2), -- Armor Type
+(20406, 4415, 3), -- Weapon Type
+(20406, 4416, 4), -- Races
 -- Young Crimson Fox
-(20407, 4408, 1), -- HP Increase (1x)
-(20407, 4409, 1), -- MP Increase (1x)
-(20407, 4410, 12), -- Slightly Strong P. Atk.
-(20407, 4411, 12), -- Slightly Strong M. Atk.
-(20407, 4412, 10), -- Slightly Weak P. Def.
-(20407, 4413, 10), -- Slightly Weak M. Def.
-(20407, 4414, 2), -- Standard Type
-(20407, 4415, 3), -- One-handed Sword
-(20407, 4416, 4), -- Animals
+(20407, 4408, 1), -- HP Modifiers
+(20407, 4409, 1), -- MP Modifiers
+(20407, 4410, 12), -- P. Atk. Modifiers
+(20407, 4411, 12), -- M. Atk. Modifiers
+(20407, 4412, 10), -- P. Def. Modifiers
+(20407, 4413, 10), -- M. Def. Modifiers
+(20407, 4414, 2), -- Armor Type
+(20407, 4415, 3), -- Weapon Type
+(20407, 4416, 4), -- Races
 -- Scavenger Spider
-(20410, 4408, 1), -- HP Increase (1x)
-(20410, 4409, 1), -- MP Increase (1x)
-(20410, 4410, 12), -- Slightly Strong P. Atk.
-(20410, 4411, 12), -- Slightly Strong M. Atk.
-(20410, 4412, 10), -- Slightly Weak P. Def.
-(20410, 4413, 10), -- Slightly Weak M. Def.
-(20410, 4414, 2), -- Standard Type
-(20410, 4415, 3), -- One-handed Sword
-(20410, 4416, 12), -- Bugs
+(20410, 4408, 1), -- HP Modifiers
+(20410, 4409, 1), -- MP Modifiers
+(20410, 4410, 12), -- P. Atk. Modifiers
+(20410, 4411, 12), -- M. Atk. Modifiers
+(20410, 4412, 10), -- P. Def. Modifiers
+(20410, 4413, 10), -- M. Def. Modifiers
+(20410, 4414, 2), -- Armor Type
+(20410, 4415, 3), -- Weapon Type
+(20410, 4416, 12), -- Races
 -- Scavenger Bat
-(20411, 4001, 1), -- Windstrike
-(20411, 4002, 1), -- HP Drain
-(20411, 4038, 2), -- Decrease Atk. Spd.
-(20411, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(20411, 4408, 1), -- HP Increase (1x)
-(20411, 4409, 1), -- MP Increase (1x)
-(20411, 4410, 12), -- Slightly Strong P. Atk.
-(20411, 4411, 12), -- Slightly Strong M. Atk.
-(20411, 4412, 10), -- Slightly Weak P. Def.
-(20411, 4413, 10), -- Slightly Weak M. Def.
-(20411, 4414, 2), -- Standard Type
-(20411, 4415, 3), -- One-handed Sword
-(20411, 4416, 4), -- Animals
+(20411, 4001, 1), -- NPC Wind Strike
+(20411, 4002, 1), -- NPC HP Drain
+(20411, 4038, 2), -- Decrease Atk.Spd.
+(20411, 4276, 1), -- Archery Attack Weak Point
+(20411, 4408, 1), -- HP Modifiers
+(20411, 4409, 1), -- MP Modifiers
+(20411, 4410, 12), -- P. Atk. Modifiers
+(20411, 4411, 12), -- M. Atk. Modifiers
+(20411, 4412, 10), -- P. Def. Modifiers
+(20411, 4413, 10), -- M. Def. Modifiers
+(20411, 4414, 2), -- Armor Type
+(20411, 4415, 3), -- Weapon Type
+(20411, 4416, 4), -- Races
 -- Susceptor
-(20412, 4001, 4), -- Windstrike
-(20412, 4408, 1), -- HP Increase (1x)
-(20412, 4409, 1), -- MP Increase (1x)
-(20412, 4410, 10), -- Slightly Weak P. Atk.
-(20412, 4411, 10), -- Slightly Weak M. Atk.
-(20412, 4412, 12), -- Slightly Strong P. Def.
-(20412, 4413, 12), -- Slightly Strong M. Def.
-(20412, 4414, 2), -- Standard Type
-(20412, 4415, 3), -- One-handed Sword
-(20412, 4416, 2), -- Magic Creatures
+(20412, 4001, 4), -- NPC Wind Strike
+(20412, 4408, 1), -- HP Modifiers
+(20412, 4409, 1), -- MP Modifiers
+(20412, 4410, 10), -- P. Atk. Modifiers
+(20412, 4411, 10), -- M. Atk. Modifiers
+(20412, 4412, 12), -- P. Def. Modifiers
+(20412, 4413, 12), -- M. Def. Modifiers
+(20412, 4414, 2), -- Armor Type
+(20412, 4415, 3), -- Weapon Type
+(20412, 4416, 2), -- Races
 -- Scarlet Salamander
-(20415, 4002, 1), -- HP Drain
-(20415, 4100, 1), -- Prominence
-(20415, 4104, 1), -- Chill Flame
-(20415, 4408, 1), -- HP Increase (1x)
-(20415, 4409, 1), -- MP Increase (1x)
-(20415, 4410, 12), -- Slightly Strong P. Atk.
-(20415, 4411, 12), -- Slightly Strong M. Atk.
-(20415, 4412, 10), -- Slightly Weak P. Def.
-(20415, 4413, 10), -- Slightly Weak M. Def.
-(20415, 4414, 2), -- Standard Type
-(20415, 4415, 3), -- One-handed Sword
-(20415, 4416, 7), -- Spirits
+(20415, 4002, 1), -- NPC HP Drain
+(20415, 4100, 1), -- NPC Prominence
+(20415, 4104, 1), -- Flame
+(20415, 4408, 1), -- HP Modifiers
+(20415, 4409, 1), -- MP Modifiers
+(20415, 4410, 12), -- P. Atk. Modifiers
+(20415, 4411, 12), -- M. Atk. Modifiers
+(20415, 4412, 10), -- P. Def. Modifiers
+(20415, 4413, 10), -- M. Def. Modifiers
+(20415, 4414, 2), -- Armor Type
+(20415, 4415, 3), -- Weapon Type
+(20415, 4416, 7), -- Races
 -- Scarlet Salamander Elder
-(20416, 4001, 1), -- Windstrike
-(20416, 4100, 1), -- Prominence
-(20416, 4104, 1), -- Chill Flame
-(20416, 4408, 1), -- HP Increase (1x)
-(20416, 4409, 1), -- MP Increase (1x)
-(20416, 4410, 12), -- Slightly Strong P. Atk.
-(20416, 4411, 12), -- Slightly Strong M. Atk.
-(20416, 4412, 10), -- Slightly Weak P. Def.
-(20416, 4413, 10), -- Slightly Weak M. Def.
-(20416, 4414, 2), -- Standard Type
-(20416, 4415, 3), -- One-handed Sword
-(20416, 4416, 7), -- Spirits
+(20416, 4001, 1), -- NPC Wind Strike
+(20416, 4100, 1), -- NPC Prominence
+(20416, 4104, 1), -- Flame
+(20416, 4408, 1), -- HP Modifiers
+(20416, 4409, 1), -- MP Modifiers
+(20416, 4410, 12), -- P. Atk. Modifiers
+(20416, 4411, 12), -- M. Atk. Modifiers
+(20416, 4412, 10), -- P. Def. Modifiers
+(20416, 4413, 10), -- M. Def. Modifiers
+(20416, 4414, 2), -- Armor Type
+(20416, 4415, 3), -- Weapon Type
+(20416, 4416, 7), -- Races
 -- Crystalline Beast
-(20418, 4408, 1), -- HP Increase (1x)
-(20418, 4409, 1), -- MP Increase (1x)
-(20418, 4410, 12), -- Slightly Strong P. Atk.
-(20418, 4411, 12), -- Slightly Strong M. Atk.
-(20418, 4412, 10), -- Slightly Weak P. Def.
-(20418, 4413, 10), -- Slightly Weak M. Def.
-(20418, 4414, 2), -- Standard Type
-(20418, 4415, 3), -- One-handed Sword
-(20418, 4416, 3), -- Beasts
+(20418, 4408, 1), -- HP Modifiers
+(20418, 4409, 1), -- MP Modifiers
+(20418, 4410, 12), -- P. Atk. Modifiers
+(20418, 4411, 12), -- M. Atk. Modifiers
+(20418, 4412, 10), -- P. Def. Modifiers
+(20418, 4413, 10), -- M. Def. Modifiers
+(20418, 4414, 2), -- Armor Type
+(20418, 4415, 3), -- Weapon Type
+(20418, 4416, 3), -- Races
 -- Akaste Succubus
 (20419, 4047, 2), -- Hold
-(20419, 4408, 1), -- HP Increase (1x)
-(20419, 4409, 1), -- MP Increase (1x)
-(20419, 4410, 12), -- Slightly Strong P. Atk.
-(20419, 4411, 12), -- Slightly Strong M. Atk.
-(20419, 4412, 10), -- Slightly Weak P. Def.
-(20419, 4413, 10), -- Slightly Weak M. Def.
-(20419, 4414, 2), -- Standard Type
-(20419, 4415, 3), -- One-handed Sword
-(20419, 4416, 9), -- Demons
+(20419, 4408, 1), -- HP Modifiers
+(20419, 4409, 1), -- MP Modifiers
+(20419, 4410, 12), -- P. Atk. Modifiers
+(20419, 4411, 12), -- M. Atk. Modifiers
+(20419, 4412, 10), -- P. Def. Modifiers
+(20419, 4413, 10), -- M. Def. Modifiers
+(20419, 4414, 2), -- Armor Type
+(20419, 4415, 3), -- Weapon Type
+(20419, 4416, 9), -- Races
 -- Akaste Succubus Turen
-(20420, 4152, 2), -- Drain Health
-(20420, 4160, 2), -- Aura Burn
-(20420, 4408, 1), -- HP Increase (1x)
-(20420, 4409, 1), -- MP Increase (1x)
-(20420, 4410, 12), -- Slightly Strong P. Atk.
-(20420, 4411, 12), -- Slightly Strong M. Atk.
-(20420, 4412, 10), -- Slightly Weak P. Def.
-(20420, 4413, 10), -- Slightly Weak M. Def.
-(20420, 4414, 2), -- Standard Type
-(20420, 4415, 3), -- One-handed Sword
-(20420, 4416, 9), -- Demons
+(20420, 4152, 2), -- NPC HP Drain - Magic
+(20420, 4160, 2), -- NPC Aura Burn - Magic
+(20420, 4408, 1), -- HP Modifiers
+(20420, 4409, 1), -- MP Modifiers
+(20420, 4410, 12), -- P. Atk. Modifiers
+(20420, 4411, 12), -- M. Atk. Modifiers
+(20420, 4412, 10), -- P. Def. Modifiers
+(20420, 4413, 10), -- M. Def. Modifiers
+(20420, 4414, 2), -- Armor Type
+(20420, 4415, 3), -- Weapon Type
+(20420, 4416, 9), -- Races
 -- Akaste Succubus Tilfo
-(20421, 4002, 2), -- HP Drain
-(20421, 4039, 2), -- Mana Drain
-(20421, 4076, 2), -- Slow
-(20421, 4408, 1), -- HP Increase (1x)
-(20421, 4409, 1), -- MP Increase (1x)
-(20421, 4410, 12), -- Slightly Strong P. Atk.
-(20421, 4411, 12), -- Slightly Strong M. Atk.
-(20421, 4412, 10), -- Slightly Weak P. Def.
-(20421, 4413, 10), -- Slightly Weak M. Def.
-(20421, 4414, 2), -- Standard Type
-(20421, 4415, 3), -- One-handed Sword
-(20421, 4416, 9), -- Demons
+(20421, 4002, 2), -- NPC HP Drain
+(20421, 4039, 2), -- NPC MP Drain
+(20421, 4076, 2), -- Reduction in movement speed
+(20421, 4408, 1), -- HP Modifiers
+(20421, 4409, 1), -- MP Modifiers
+(20421, 4410, 12), -- P. Atk. Modifiers
+(20421, 4411, 12), -- M. Atk. Modifiers
+(20421, 4412, 10), -- P. Def. Modifiers
+(20421, 4413, 10), -- M. Def. Modifiers
+(20421, 4414, 2), -- Armor Type
+(20421, 4415, 3), -- Weapon Type
+(20421, 4416, 9), -- Races
 -- Akaste Bone Warlord
-(20422, 4075, 1), -- Stun
-(20422, 4274, 1), -- Blunt Weapon Weak Point
-(20422, 4408, 1), -- HP Increase (1x)
-(20422, 4409, 1), -- MP Increase (1x)
-(20422, 4410, 12), -- Slightly Strong P. Atk.
-(20422, 4411, 12), -- Slightly Strong M. Atk.
-(20422, 4412, 10), -- Slightly Weak P. Def.
-(20422, 4413, 10), -- Slightly Weak M. Def.
-(20422, 4414, 2), -- Standard Type
-(20422, 4415, 3), -- One-handed Sword
-(20422, 4416, 1), -- Undead
+(20422, 4075, 1), -- Shock
+(20422, 4274, 1), -- Blunt Attack Weak Point
+(20422, 4408, 1), -- HP Modifiers
+(20422, 4409, 1), -- MP Modifiers
+(20422, 4410, 12), -- P. Atk. Modifiers
+(20422, 4411, 12), -- M. Atk. Modifiers
+(20422, 4412, 10), -- P. Def. Modifiers
+(20422, 4413, 10), -- M. Def. Modifiers
+(20422, 4414, 2), -- Armor Type
+(20422, 4415, 3), -- Weapon Type
+(20422, 4416, 1), -- Races
 -- Akaste Bone Archer
-(20423, 4274, 1), -- Blunt Weapon Weak Point
-(20423, 4408, 1), -- HP Increase (1x)
-(20423, 4409, 1), -- MP Increase (1x)
-(20423, 4410, 10), -- Slightly Weak P. Atk.
-(20423, 4411, 10), -- Slightly Weak M. Atk.
-(20423, 4412, 12), -- Slightly Strong P. Def.
-(20423, 4413, 12), -- Slightly Strong M. Def.
-(20423, 4414, 2), -- Standard Type
-(20423, 4415, 9), -- Bows
-(20423, 4416, 1), -- Undead
+(20423, 4274, 1), -- Blunt Attack Weak Point
+(20423, 4408, 1), -- HP Modifiers
+(20423, 4409, 1), -- MP Modifiers
+(20423, 4410, 10), -- P. Atk. Modifiers
+(20423, 4411, 10), -- M. Atk. Modifiers
+(20423, 4412, 12), -- P. Def. Modifiers
+(20423, 4413, 12), -- M. Def. Modifiers
+(20423, 4414, 2), -- Armor Type
+(20423, 4415, 9), -- Weapon Type
+(20423, 4416, 1), -- Races
 -- Akaste Bone Lord
-(20424, 4028, 1), -- Might
-(20424, 4274, 1), -- Blunt Weapon Weak Point
-(20424, 4408, 1), -- HP Increase (1x)
-(20424, 4409, 1), -- MP Increase (1x)
-(20424, 4410, 12), -- Slightly Strong P. Atk.
-(20424, 4411, 12), -- Slightly Strong M. Atk.
-(20424, 4412, 10), -- Slightly Weak P. Def.
-(20424, 4413, 10), -- Slightly Weak M. Def.
-(20424, 4414, 2), -- Standard Type
-(20424, 4415, 3), -- One-handed Sword
-(20424, 4416, 1), -- Undead
+(20424, 4028, 1), -- NPC Might
+(20424, 4274, 1), -- Blunt Attack Weak Point
+(20424, 4408, 1), -- HP Modifiers
+(20424, 4409, 1), -- MP Modifiers
+(20424, 4410, 12), -- P. Atk. Modifiers
+(20424, 4411, 12), -- M. Atk. Modifiers
+(20424, 4412, 10), -- P. Def. Modifiers
+(20424, 4413, 10), -- M. Def. Modifiers
+(20424, 4414, 2), -- Armor Type
+(20424, 4415, 3), -- Weapon Type
+(20424, 4416, 1), -- Races
 -- Akaste Bone Soldier
-(20425, 4274, 1), -- Blunt Weapon Weak Point
-(20425, 4408, 1), -- HP Increase (1x)
-(20425, 4409, 1), -- MP Increase (1x)
-(20425, 4410, 12), -- Slightly Strong P. Atk.
-(20425, 4411, 12), -- Slightly Strong M. Atk.
-(20425, 4412, 10), -- Slightly Weak P. Def.
-(20425, 4413, 10), -- Slightly Weak M. Def.
-(20425, 4414, 2), -- Standard Type
-(20425, 4415, 7), -- Daggers
-(20425, 4416, 1), -- Undead
+(20425, 4274, 1), -- Blunt Attack Weak Point
+(20425, 4408, 1), -- HP Modifiers
+(20425, 4409, 1), -- MP Modifiers
+(20425, 4410, 12), -- P. Atk. Modifiers
+(20425, 4411, 12), -- M. Atk. Modifiers
+(20425, 4412, 10), -- P. Def. Modifiers
+(20425, 4413, 10), -- M. Def. Modifiers
+(20425, 4414, 2), -- Armor Type
+(20425, 4415, 7), -- Weapon Type
+(20425, 4416, 1), -- Races
 -- Evil Eye
-(20426, 4151, 1), -- Wind Strike
-(20426, 4160, 1), -- Aura Burn
-(20426, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(20426, 4408, 1), -- HP Increase (1x)
-(20426, 4409, 1), -- MP Increase (1x)
-(20426, 4410, 10), -- Slightly Weak P. Atk.
-(20426, 4411, 10), -- Slightly Weak M. Atk.
-(20426, 4412, 12), -- Slightly Strong P. Def.
-(20426, 4413, 12), -- Slightly Strong M. Def.
-(20426, 4414, 2), -- Standard Type
-(20426, 4415, 3), -- One-handed Sword
-(20426, 4416, 2), -- Magic Creatures
+(20426, 4151, 1), -- NPC Windstrike - Magic
+(20426, 4160, 1), -- NPC Aura Burn - Magic
+(20426, 4276, 1), -- Archery Attack Weak Point
+(20426, 4408, 1), -- HP Modifiers
+(20426, 4409, 1), -- MP Modifiers
+(20426, 4410, 10), -- P. Atk. Modifiers
+(20426, 4411, 10), -- M. Atk. Modifiers
+(20426, 4412, 12), -- P. Def. Modifiers
+(20426, 4413, 12), -- M. Def. Modifiers
+(20426, 4414, 2), -- Armor Type
+(20426, 4415, 3), -- Weapon Type
+(20426, 4416, 2), -- Races
 -- Evil Eye Watcher
-(20427, 4152, 1), -- Drain Health
-(20427, 4160, 1), -- Aura Burn
-(20427, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(20427, 4408, 1), -- HP Increase (1x)
-(20427, 4409, 1), -- MP Increase (1x)
-(20427, 4410, 10), -- Slightly Weak P. Atk.
-(20427, 4411, 10), -- Slightly Weak M. Atk.
-(20427, 4412, 12), -- Slightly Strong P. Def.
-(20427, 4413, 12), -- Slightly Strong M. Def.
-(20427, 4414, 2), -- Standard Type
-(20427, 4415, 3), -- One-handed Sword
-(20427, 4416, 2), -- Magic Creatures
+(20427, 4152, 1), -- NPC HP Drain - Magic
+(20427, 4160, 1), -- NPC Aura Burn - Magic
+(20427, 4276, 1), -- Archery Attack Weak Point
+(20427, 4408, 1), -- HP Modifiers
+(20427, 4409, 1), -- MP Modifiers
+(20427, 4410, 10), -- P. Atk. Modifiers
+(20427, 4411, 10), -- M. Atk. Modifiers
+(20427, 4412, 12), -- P. Def. Modifiers
+(20427, 4413, 12), -- M. Def. Modifiers
+(20427, 4414, 2), -- Armor Type
+(20427, 4415, 3), -- Weapon Type
+(20427, 4416, 2), -- Races
 -- Evil Eye Patroller
-(20428, 4151, 1), -- Wind Strike
-(20428, 4160, 1), -- Aura Burn
-(20428, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(20428, 4408, 1), -- HP Increase (1x)
-(20428, 4409, 1), -- MP Increase (1x)
-(20428, 4410, 10), -- Slightly Weak P. Atk.
-(20428, 4411, 10), -- Slightly Weak M. Atk.
-(20428, 4412, 12), -- Slightly Strong P. Def.
-(20428, 4413, 12), -- Slightly Strong M. Def.
-(20428, 4414, 2), -- Standard Type
-(20428, 4415, 3), -- One-handed Sword
-(20428, 4416, 2), -- Magic Creatures
+(20428, 4151, 1), -- NPC Windstrike - Magic
+(20428, 4160, 1), -- NPC Aura Burn - Magic
+(20428, 4276, 1), -- Archery Attack Weak Point
+(20428, 4408, 1), -- HP Modifiers
+(20428, 4409, 1), -- MP Modifiers
+(20428, 4410, 10), -- P. Atk. Modifiers
+(20428, 4411, 10), -- M. Atk. Modifiers
+(20428, 4412, 12), -- P. Def. Modifiers
+(20428, 4413, 12), -- M. Def. Modifiers
+(20428, 4414, 2), -- Armor Type
+(20428, 4415, 3), -- Weapon Type
+(20428, 4416, 2), -- Races
 -- Evil Eye Lookout
-(20429, 4152, 1), -- Drain Health
-(20429, 4160, 1), -- Aura Burn
-(20429, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(20429, 4408, 1), -- HP Increase (1x)
-(20429, 4409, 1), -- MP Increase (1x)
-(20429, 4410, 10), -- Slightly Weak P. Atk.
-(20429, 4411, 10), -- Slightly Weak M. Atk.
-(20429, 4412, 12), -- Slightly Strong P. Def.
-(20429, 4413, 12), -- Slightly Strong M. Def.
-(20429, 4414, 2), -- Standard Type
-(20429, 4415, 3), -- One-handed Sword
-(20429, 4416, 2), -- Magic Creatures
+(20429, 4152, 1), -- NPC HP Drain - Magic
+(20429, 4160, 1), -- NPC Aura Burn - Magic
+(20429, 4276, 1), -- Archery Attack Weak Point
+(20429, 4408, 1), -- HP Modifiers
+(20429, 4409, 1), -- MP Modifiers
+(20429, 4410, 10), -- P. Atk. Modifiers
+(20429, 4411, 10), -- M. Atk. Modifiers
+(20429, 4412, 12), -- P. Def. Modifiers
+(20429, 4413, 12), -- M. Def. Modifiers
+(20429, 4414, 2), -- Armor Type
+(20429, 4415, 3), -- Weapon Type
+(20429, 4416, 2), -- Races
 -- Elf Ghost
-(20431, 4002, 2), -- HP Drain
-(20431, 4408, 1), -- HP Increase (1x)
-(20431, 4409, 1), -- MP Increase (1x)
-(20431, 4410, 10), -- Slightly Weak P. Atk.
-(20431, 4411, 10), -- Slightly Weak M. Atk.
-(20431, 4412, 12), -- Slightly Strong P. Def.
-(20431, 4413, 12), -- Slightly Strong M. Def.
-(20431, 4414, 2), -- Standard Type
-(20431, 4415, 3), -- One-handed Sword
-(20431, 4416, 1), -- Undead
+(20431, 4002, 2), -- NPC HP Drain
+(20431, 4408, 1), -- HP Modifiers
+(20431, 4409, 1), -- MP Modifiers
+(20431, 4410, 10), -- P. Atk. Modifiers
+(20431, 4411, 10), -- M. Atk. Modifiers
+(20431, 4412, 12), -- P. Def. Modifiers
+(20431, 4413, 12), -- M. Def. Modifiers
+(20431, 4414, 2), -- Armor Type
+(20431, 4415, 3), -- Weapon Type
+(20431, 4416, 1), -- Races
 -- Elpy
-(20432, 4408, 1), -- HP Increase (1x)
-(20432, 4409, 1), -- MP Increase (1x)
-(20432, 4410, 11), -- Average P. Atk.
-(20432, 4411, 11), -- Average M. Atk.
-(20432, 4412, 11), -- Average P. Def.
-(20432, 4413, 11), -- Average M. Def.
-(20432, 4414, 2), -- Standard Type
-(20432, 4415, 3), -- One-handed Sword
-(20432, 4416, 4), -- Animals
+(20432, 4408, 1), -- HP Modifiers
+(20432, 4409, 1), -- MP Modifiers
+(20432, 4410, 11), -- P. Atk. Modifiers
+(20432, 4411, 11), -- M. Atk. Modifiers
+(20432, 4412, 11), -- P. Def. Modifiers
+(20432, 4413, 11), -- M. Def. Modifiers
+(20432, 4414, 2), -- Armor Type
+(20432, 4415, 3), -- Weapon Type
+(20432, 4416, 4), -- Races
 -- Festering Bat
-(20433, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(20433, 4408, 1), -- HP Increase (1x)
-(20433, 4409, 1), -- MP Increase (1x)
-(20433, 4410, 12), -- Slightly Strong P. Atk.
-(20433, 4411, 12), -- Slightly Strong M. Atk.
-(20433, 4412, 10), -- Slightly Weak P. Def.
-(20433, 4413, 10), -- Slightly Weak M. Def.
-(20433, 4414, 2), -- Standard Type
-(20433, 4415, 3), -- One-handed Sword
-(20433, 4416, 4), -- Animals
+(20433, 4276, 1), -- Archery Attack Weak Point
+(20433, 4408, 1), -- HP Modifiers
+(20433, 4409, 1), -- MP Modifiers
+(20433, 4410, 12), -- P. Atk. Modifiers
+(20433, 4411, 12), -- M. Atk. Modifiers
+(20433, 4412, 10), -- P. Def. Modifiers
+(20433, 4413, 10), -- M. Def. Modifiers
+(20433, 4414, 2), -- Armor Type
+(20433, 4415, 3), -- Weapon Type
+(20433, 4416, 4), -- Races
 -- Opal Beast
-(20435, 4408, 1), -- HP Increase (1x)
-(20435, 4409, 1), -- MP Increase (1x)
-(20435, 4410, 12), -- Slightly Strong P. Atk.
-(20435, 4411, 12), -- Slightly Strong M. Atk.
-(20435, 4412, 10), -- Slightly Weak P. Def.
-(20435, 4413, 10), -- Slightly Weak M. Def.
-(20435, 4414, 2), -- Standard Type
-(20435, 4415, 3), -- One-handed Sword
-(20435, 4416, 3), -- Beasts
+(20435, 4408, 1), -- HP Modifiers
+(20435, 4409, 1), -- MP Modifiers
+(20435, 4410, 12), -- P. Atk. Modifiers
+(20435, 4411, 12), -- M. Atk. Modifiers
+(20435, 4412, 10), -- P. Def. Modifiers
+(20435, 4413, 10), -- M. Def. Modifiers
+(20435, 4414, 2), -- Armor Type
+(20435, 4415, 3), -- Weapon Type
+(20435, 4416, 3), -- Races
 -- Ol Mahum Supplier
-(20436, 4408, 1), -- HP Increase (1x)
-(20436, 4409, 1), -- MP Increase (1x)
-(20436, 4410, 10), -- Slightly Weak P. Atk.
-(20436, 4411, 10), -- Slightly Weak M. Atk.
-(20436, 4412, 12), -- Slightly Strong P. Def.
-(20436, 4413, 12), -- Slightly Strong M. Def.
-(20436, 4414, 2), -- Standard Type
-(20436, 4415, 3), -- One-handed Sword
-(20436, 4416, 6), -- Humanoids
+(20436, 4408, 1), -- HP Modifiers
+(20436, 4409, 1), -- MP Modifiers
+(20436, 4410, 10), -- P. Atk. Modifiers
+(20436, 4411, 10), -- M. Atk. Modifiers
+(20436, 4412, 12), -- P. Def. Modifiers
+(20436, 4413, 12), -- M. Def. Modifiers
+(20436, 4414, 2), -- Armor Type
+(20436, 4415, 3), -- Weapon Type
+(20436, 4416, 6), -- Races
 -- Ol Mahum Recruit
-(20437, 4408, 1), -- HP Increase (1x)
-(20437, 4409, 1), -- MP Increase (1x)
-(20437, 4410, 10), -- Slightly Weak P. Atk.
-(20437, 4411, 10), -- Slightly Weak M. Atk.
-(20437, 4412, 12), -- Slightly Strong P. Def.
-(20437, 4413, 12), -- Slightly Strong M. Def.
-(20437, 4414, 2), -- Standard Type
-(20437, 4415, 3), -- One-handed Sword
-(20437, 4416, 6), -- Humanoids
+(20437, 4408, 1), -- HP Modifiers
+(20437, 4409, 1), -- MP Modifiers
+(20437, 4410, 10), -- P. Atk. Modifiers
+(20437, 4411, 10), -- M. Atk. Modifiers
+(20437, 4412, 12), -- P. Def. Modifiers
+(20437, 4413, 12), -- M. Def. Modifiers
+(20437, 4414, 2), -- Armor Type
+(20437, 4415, 3), -- Weapon Type
+(20437, 4416, 6), -- Races
 -- Ol Mahum General
-(20438, 4408, 1), -- HP Increase (1x)
-(20438, 4409, 1), -- MP Increase (1x)
-(20438, 4410, 12), -- Slightly Strong P. Atk.
-(20438, 4411, 12), -- Slightly Strong M. Atk.
-(20438, 4412, 10), -- Slightly Weak P. Def.
-(20438, 4413, 10), -- Slightly Weak M. Def.
-(20438, 4414, 2), -- Standard Type
-(20438, 4415, 3), -- One-handed Sword
-(20438, 4416, 6), -- Humanoids
+(20438, 4408, 1), -- HP Modifiers
+(20438, 4409, 1), -- MP Modifiers
+(20438, 4410, 12), -- P. Atk. Modifiers
+(20438, 4411, 12), -- M. Atk. Modifiers
+(20438, 4412, 10), -- P. Def. Modifiers
+(20438, 4413, 10), -- M. Def. Modifiers
+(20438, 4414, 2), -- Armor Type
+(20438, 4415, 3), -- Weapon Type
+(20438, 4416, 6), -- Races
 -- Ol Mahum Officer
-(20439, 4408, 1), -- HP Increase (1x)
-(20439, 4409, 1), -- MP Increase (1x)
-(20439, 4410, 10), -- Slightly Weak P. Atk.
-(20439, 4411, 10), -- Slightly Weak M. Atk.
-(20439, 4412, 12), -- Slightly Strong P. Def.
-(20439, 4413, 12), -- Slightly Strong M. Def.
-(20439, 4414, 2), -- Standard Type
-(20439, 4415, 3), -- One-handed Sword
-(20439, 4416, 6), -- Humanoids
+(20439, 4408, 1), -- HP Modifiers
+(20439, 4409, 1), -- MP Modifiers
+(20439, 4410, 10), -- P. Atk. Modifiers
+(20439, 4411, 10), -- M. Atk. Modifiers
+(20439, 4412, 12), -- P. Def. Modifiers
+(20439, 4413, 12), -- M. Def. Modifiers
+(20439, 4414, 2), -- Armor Type
+(20439, 4415, 3), -- Weapon Type
+(20439, 4416, 6), -- Races
 -- Elder Brown Fox
-(20440, 4408, 1), -- HP Increase (1x)
-(20440, 4409, 1), -- MP Increase (1x)
-(20440, 4410, 12), -- Slightly Strong P. Atk.
-(20440, 4411, 12), -- Slightly Strong M. Atk.
-(20440, 4412, 10), -- Slightly Weak P. Def.
-(20440, 4413, 10), -- Slightly Weak M. Def.
-(20440, 4414, 2), -- Standard Type
-(20440, 4415, 3), -- One-handed Sword
-(20440, 4416, 4), -- Animals
+(20440, 4408, 1), -- HP Modifiers
+(20440, 4409, 1), -- MP Modifiers
+(20440, 4410, 12), -- P. Atk. Modifiers
+(20440, 4411, 12), -- M. Atk. Modifiers
+(20440, 4412, 10), -- P. Def. Modifiers
+(20440, 4413, 10), -- M. Def. Modifiers
+(20440, 4414, 2), -- Armor Type
+(20440, 4415, 3), -- Weapon Type
+(20440, 4416, 4), -- Races
 -- Elder Longtail Fox
-(20441, 4408, 1), -- HP Increase (1x)
-(20441, 4409, 1), -- MP Increase (1x)
-(20441, 4410, 12), -- Slightly Strong P. Atk.
-(20441, 4411, 12), -- Slightly Strong M. Atk.
-(20441, 4412, 10), -- Slightly Weak P. Def.
-(20441, 4413, 10), -- Slightly Weak M. Def.
-(20441, 4414, 2), -- Standard Type
-(20441, 4415, 3), -- One-handed Sword
-(20441, 4416, 4), -- Animals
+(20441, 4408, 1), -- HP Modifiers
+(20441, 4409, 1), -- MP Modifiers
+(20441, 4410, 12), -- P. Atk. Modifiers
+(20441, 4411, 12), -- M. Atk. Modifiers
+(20441, 4412, 10), -- P. Def. Modifiers
+(20441, 4413, 10), -- M. Def. Modifiers
+(20441, 4414, 2), -- Armor Type
+(20441, 4415, 3), -- Weapon Type
+(20441, 4416, 4), -- Races
 -- Elder Wolf
-(20442, 4408, 1), -- HP Increase (1x)
-(20442, 4409, 1), -- MP Increase (1x)
-(20442, 4410, 11), -- Average P. Atk.
-(20442, 4411, 11), -- Average M. Atk.
-(20442, 4412, 11), -- Average P. Def.
-(20442, 4413, 11), -- Average M. Def.
-(20442, 4414, 2), -- Standard Type
-(20442, 4415, 3), -- One-handed Sword
-(20442, 4416, 4), -- Animals
+(20442, 4408, 1), -- HP Modifiers
+(20442, 4409, 1), -- MP Modifiers
+(20442, 4410, 11), -- P. Atk. Modifiers
+(20442, 4411, 11), -- M. Atk. Modifiers
+(20442, 4412, 11), -- P. Def. Modifiers
+(20442, 4413, 11), -- M. Def. Modifiers
+(20442, 4414, 2), -- Armor Type
+(20442, 4415, 3), -- Weapon Type
+(20442, 4416, 4), -- Races
 -- Elder Red Fox
-(20443, 4408, 1), -- HP Increase (1x)
-(20443, 4409, 1), -- MP Increase (1x)
-(20443, 4410, 12), -- Slightly Strong P. Atk.
-(20443, 4411, 12), -- Slightly Strong M. Atk.
-(20443, 4412, 10), -- Slightly Weak P. Def.
-(20443, 4413, 10), -- Slightly Weak M. Def.
-(20443, 4414, 2), -- Standard Type
-(20443, 4415, 3), -- One-handed Sword
-(20443, 4416, 4), -- Animals
+(20443, 4408, 1), -- HP Modifiers
+(20443, 4409, 1), -- MP Modifiers
+(20443, 4410, 12), -- P. Atk. Modifiers
+(20443, 4411, 12), -- M. Atk. Modifiers
+(20443, 4412, 10), -- P. Def. Modifiers
+(20443, 4413, 10), -- M. Def. Modifiers
+(20443, 4414, 2), -- Armor Type
+(20443, 4415, 3), -- Weapon Type
+(20443, 4416, 4), -- Races
 -- Elder Prairie Fox
-(20444, 4408, 1), -- HP Increase (1x)
-(20444, 4409, 1), -- MP Increase (1x)
-(20444, 4410, 12), -- Slightly Strong P. Atk.
-(20444, 4411, 12), -- Slightly Strong M. Atk.
-(20444, 4412, 10), -- Slightly Weak P. Def.
-(20444, 4413, 10), -- Slightly Weak M. Def.
-(20444, 4414, 2), -- Standard Type
-(20444, 4415, 3), -- One-handed Sword
-(20444, 4416, 4), -- Animals
+(20444, 4408, 1), -- HP Modifiers
+(20444, 4409, 1), -- MP Modifiers
+(20444, 4410, 12), -- P. Atk. Modifiers
+(20444, 4411, 12), -- M. Atk. Modifiers
+(20444, 4412, 10), -- P. Def. Modifiers
+(20444, 4413, 10), -- M. Def. Modifiers
+(20444, 4414, 2), -- Armor Type
+(20444, 4415, 3), -- Weapon Type
+(20444, 4416, 4), -- Races
 -- Uthanka Pirate
-(20445, 4408, 9), -- HP Increase (1/2x)
-(20445, 4409, 1), -- MP Increase (1x)
-(20445, 4410, 13), -- Slightly Strong P. Atk.
-(20445, 4411, 13), -- Slightly Strong M. Atk.
-(20445, 4412, 9), -- Slightly Weak P. Def.
-(20445, 4413, 9), -- Slightly Weak M. Def.
-(20445, 4414, 2), -- Standard Type
-(20445, 4415, 3), -- One-handed Sword
-(20445, 4416, 6), -- Humanoids
+(20445, 4408, 9), -- HP Modifiers
+(20445, 4409, 1), -- MP Modifiers
+(20445, 4410, 13), -- P. Atk. Modifiers
+(20445, 4411, 13), -- M. Atk. Modifiers
+(20445, 4412, 9), -- P. Def. Modifiers
+(20445, 4413, 9), -- M. Def. Modifiers
+(20445, 4414, 2), -- Armor Type
+(20445, 4415, 3), -- Weapon Type
+(20445, 4416, 6), -- Races
 -- Utuku Orc
-(20446, 4408, 1), -- HP Increase (1x)
-(20446, 4409, 1), -- MP Increase (1x)
-(20446, 4410, 11), -- Average P. Atk.
-(20446, 4411, 11), -- Average M. Atk.
-(20446, 4412, 11), -- Average P. Def.
-(20446, 4413, 11), -- Average M. Def.
-(20446, 4414, 2), -- Standard Type
-(20446, 4415, 5), -- Blunt Weapons
-(20446, 4416, 6), -- Humanoids
+(20446, 4408, 1), -- HP Modifiers
+(20446, 4409, 1), -- MP Modifiers
+(20446, 4410, 11), -- P. Atk. Modifiers
+(20446, 4411, 11), -- M. Atk. Modifiers
+(20446, 4412, 11), -- P. Def. Modifiers
+(20446, 4413, 11), -- M. Def. Modifiers
+(20446, 4414, 2), -- Armor Type
+(20446, 4415, 5), -- Weapon Type
+(20446, 4416, 6), -- Races
 -- Utuku Orc Archer
-(20447, 4408, 1), -- HP Increase (1x)
-(20447, 4409, 1), -- MP Increase (1x)
-(20447, 4410, 11), -- Average P. Atk.
-(20447, 4411, 11), -- Average M. Atk.
-(20447, 4412, 11), -- Average P. Def.
-(20447, 4413, 11), -- Average M. Def.
-(20447, 4414, 2), -- Standard Type
-(20447, 4415, 9), -- Bows
-(20447, 4416, 6), -- Humanoids
+(20447, 4408, 1), -- HP Modifiers
+(20447, 4409, 1), -- MP Modifiers
+(20447, 4410, 11), -- P. Atk. Modifiers
+(20447, 4411, 11), -- M. Atk. Modifiers
+(20447, 4412, 11), -- P. Def. Modifiers
+(20447, 4413, 11), -- M. Def. Modifiers
+(20447, 4414, 2), -- Armor Type
+(20447, 4415, 9), -- Weapon Type
+(20447, 4416, 6), -- Races
 -- Utuku Orc Grunt
-(20448, 4408, 1), -- HP Increase (1x)
-(20448, 4409, 1), -- MP Increase (1x)
-(20448, 4410, 11), -- Average P. Atk.
-(20448, 4411, 11), -- Average M. Atk.
-(20448, 4412, 11), -- Average P. Def.
-(20448, 4413, 11), -- Average M. Def.
-(20448, 4414, 2), -- Standard Type
-(20448, 4415, 3), -- One-handed Sword
-(20448, 4416, 6), -- Humanoids
+(20448, 4408, 1), -- HP Modifiers
+(20448, 4409, 1), -- MP Modifiers
+(20448, 4410, 11), -- P. Atk. Modifiers
+(20448, 4411, 11), -- M. Atk. Modifiers
+(20448, 4412, 11), -- P. Def. Modifiers
+(20448, 4413, 11), -- M. Def. Modifiers
+(20448, 4414, 2), -- Armor Type
+(20448, 4415, 3), -- Weapon Type
+(20448, 4416, 6), -- Races
 -- Will-O-Wisp
-(20449, 4033, 1), -- Aura Burn
-(20449, 4408, 1), -- HP Increase (1x)
-(20449, 4409, 1), -- MP Increase (1x)
-(20449, 4410, 12), -- Slightly Strong P. Atk.
-(20449, 4411, 12), -- Slightly Strong M. Atk.
-(20449, 4412, 10), -- Slightly Weak P. Def.
-(20449, 4413, 10), -- Slightly Weak M. Def.
-(20449, 4414, 2), -- Standard Type
-(20449, 4415, 3), -- One-handed Sword
-(20449, 4416, 2), -- Magic Creatures
+(20449, 4033, 1), -- NPC Burn
+(20449, 4408, 1), -- HP Modifiers
+(20449, 4409, 1), -- MP Modifiers
+(20449, 4410, 12), -- P. Atk. Modifiers
+(20449, 4411, 12), -- M. Atk. Modifiers
+(20449, 4412, 10), -- P. Def. Modifiers
+(20449, 4413, 10), -- M. Def. Modifiers
+(20449, 4414, 2), -- Armor Type
+(20449, 4415, 3), -- Weapon Type
+(20449, 4416, 2), -- Races
 -- Relic Werewolf
-(20450, 4408, 1), -- HP Increase (1x)
-(20450, 4409, 1), -- MP Increase (1x)
-(20450, 4410, 12), -- Slightly Strong P. Atk.
-(20450, 4411, 12), -- Slightly Strong M. Atk.
-(20450, 4412, 10), -- Slightly Weak P. Def.
-(20450, 4413, 10), -- Slightly Weak M. Def.
-(20450, 4414, 2), -- Standard Type
-(20450, 4415, 5), -- Blunt Weapons
-(20450, 4416, 6), -- Humanoids
+(20450, 4408, 1), -- HP Modifiers
+(20450, 4409, 1), -- MP Modifiers
+(20450, 4410, 12), -- P. Atk. Modifiers
+(20450, 4411, 12), -- M. Atk. Modifiers
+(20450, 4412, 10), -- P. Def. Modifiers
+(20450, 4413, 10), -- M. Def. Modifiers
+(20450, 4414, 2), -- Armor Type
+(20450, 4415, 5), -- Weapon Type
+(20450, 4416, 6), -- Races
 -- Relic Spartoi
-(20451, 4274, 1), -- Blunt Weapon Weak Point
-(20451, 4408, 10), -- HP Increase (2x)
-(20451, 4409, 1), -- MP Increase (1x)
-(20451, 4410, 10), -- Slightly Weak P. Atk.
-(20451, 4411, 10), -- Slightly Weak M. Atk.
-(20451, 4412, 12), -- Slightly Strong P. Def.
-(20451, 4413, 12), -- Slightly Strong M. Def.
-(20451, 4414, 2), -- Standard Type
-(20451, 4415, 3), -- One-handed Sword
-(20451, 4416, 1), -- Undead
+(20451, 4274, 1), -- Blunt Attack Weak Point
+(20451, 4408, 10), -- HP Modifiers
+(20451, 4409, 1), -- MP Modifiers
+(20451, 4410, 10), -- P. Atk. Modifiers
+(20451, 4411, 10), -- M. Atk. Modifiers
+(20451, 4412, 12), -- P. Def. Modifiers
+(20451, 4413, 12), -- M. Def. Modifiers
+(20451, 4414, 2), -- Armor Type
+(20451, 4415, 3), -- Weapon Type
+(20451, 4416, 1), -- Races
 -- Human Ghost
-(20453, 4002, 2), -- HP Drain
-(20453, 4408, 1), -- HP Increase (1x)
-(20453, 4409, 1), -- MP Increase (1x)
-(20453, 4410, 10), -- Slightly Weak P. Atk.
-(20453, 4411, 10), -- Slightly Weak M. Atk.
-(20453, 4412, 12), -- Slightly Strong P. Def.
-(20453, 4413, 12), -- Slightly Strong M. Def.
-(20453, 4414, 2), -- Standard Type
-(20453, 4415, 3), -- One-handed Sword
-(20453, 4416, 1), -- Undead
+(20453, 4002, 2), -- NPC HP Drain
+(20453, 4408, 1), -- HP Modifiers
+(20453, 4409, 1), -- MP Modifiers
+(20453, 4410, 10), -- P. Atk. Modifiers
+(20453, 4411, 10), -- M. Atk. Modifiers
+(20453, 4412, 12), -- P. Def. Modifiers
+(20453, 4413, 12), -- M. Def. Modifiers
+(20453, 4414, 2), -- Armor Type
+(20453, 4415, 3), -- Weapon Type
+(20453, 4416, 1), -- Races
 -- Oblivion Watcher
-(20454, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(20454, 4408, 9), -- HP Increase (1/2x)
-(20454, 4409, 1), -- MP Increase (1x)
-(20454, 4410, 13), -- Slightly Strong P. Atk.
-(20454, 4411, 13), -- Slightly Strong M. Atk.
-(20454, 4412, 9), -- Slightly Weak P. Def.
-(20454, 4413, 9), -- Slightly Weak M. Def.
-(20454, 4414, 2), -- Standard Type
-(20454, 4415, 5), -- Blunt Weapons
-(20454, 4416, 2), -- Magic Creatures
+(20454, 4276, 1), -- Archery Attack Weak Point
+(20454, 4408, 9), -- HP Modifiers
+(20454, 4409, 1), -- MP Modifiers
+(20454, 4410, 13), -- P. Atk. Modifiers
+(20454, 4411, 13), -- M. Atk. Modifiers
+(20454, 4412, 9), -- P. Def. Modifiers
+(20454, 4413, 9), -- M. Def. Modifiers
+(20454, 4414, 2), -- Armor Type
+(20454, 4415, 5), -- Weapon Type
+(20454, 4416, 2), -- Races
 -- Doom Soldier
-(20455, 4274, 1), -- Blunt Weapon Weak Point
-(20455, 4408, 1), -- HP Increase (1x)
-(20455, 4409, 1), -- MP Increase (1x)
-(20455, 4410, 12), -- Slightly Strong P. Atk.
-(20455, 4411, 12), -- Slightly Strong M. Atk.
-(20455, 4412, 10), -- Slightly Weak P. Def.
-(20455, 4413, 10), -- Slightly Weak M. Def.
-(20455, 4414, 2), -- Standard Type
-(20455, 4415, 7), -- Daggers
-(20455, 4416, 1), -- Undead
+(20455, 4274, 1), -- Blunt Attack Weak Point
+(20455, 4408, 1), -- HP Modifiers
+(20455, 4409, 1), -- MP Modifiers
+(20455, 4410, 12), -- P. Atk. Modifiers
+(20455, 4411, 12), -- M. Atk. Modifiers
+(20455, 4412, 10), -- P. Def. Modifiers
+(20455, 4413, 10), -- M. Def. Modifiers
+(20455, 4414, 2), -- Armor Type
+(20455, 4415, 7), -- Weapon Type
+(20455, 4416, 1), -- Races
 -- Ashen Wolf
-(20456, 4408, 1), -- HP Increase (1x)
-(20456, 4409, 1), -- MP Increase (1x)
-(20456, 4410, 11), -- Average P. Atk.
-(20456, 4411, 11), -- Average M. Atk.
-(20456, 4412, 11), -- Average P. Def.
-(20456, 4413, 11), -- Average M. Def.
-(20456, 4414, 2), -- Standard Type
-(20456, 4415, 3), -- One-handed Sword
-(20456, 4416, 4), -- Animals
+(20456, 4408, 1), -- HP Modifiers
+(20456, 4409, 1), -- MP Modifiers
+(20456, 4410, 11), -- P. Atk. Modifiers
+(20456, 4411, 11), -- M. Atk. Modifiers
+(20456, 4412, 11), -- P. Def. Modifiers
+(20456, 4413, 11), -- M. Def. Modifiers
+(20456, 4414, 2), -- Armor Type
+(20456, 4415, 3), -- Weapon Type
+(20456, 4416, 4), -- Races
 -- Zombie Soldier
-(20457, 4071, 5), -- Resist Bow/Crossbow Weapons
-(20457, 4253, 1), -- Blaze
-(20457, 4284, 5), -- Resist Bleed Attacks
-(20457, 4408, 1), -- HP Increase (1x)
-(20457, 4409, 1), -- MP Increase (1x)
-(20457, 4410, 12), -- Slightly Strong P. Atk.
-(20457, 4411, 12), -- Slightly Strong M. Atk.
-(20457, 4412, 10), -- Slightly Weak P. Def.
-(20457, 4413, 18), -- Extremely Strong M. Def.
-(20457, 4414, 2), -- Standard Type
-(20457, 4415, 3), -- One-handed Sword
-(20457, 4416, 1), -- Undead
+(20457, 4071, 5), -- Resist Archery
+(20457, 4253, 1), -- NPC Blaze - Slow
+(20457, 4284, 5), -- Resist Bleeding
+(20457, 4408, 1), -- HP Modifiers
+(20457, 4409, 1), -- MP Modifiers
+(20457, 4410, 12), -- P. Atk. Modifiers
+(20457, 4411, 12), -- M. Atk. Modifiers
+(20457, 4412, 10), -- P. Def. Modifiers
+(20457, 4413, 18), -- M. Def. Modifiers
+(20457, 4414, 2), -- Armor Type
+(20457, 4415, 3), -- Weapon Type
+(20457, 4416, 1), -- Races
 -- Zombie Warrior
-(20458, 4071, 5), -- Resist Bow/Crossbow Weapons
-(20458, 4247, 2), -- Wind Strike
-(20458, 4284, 5), -- Resist Bleed Attacks
-(20458, 4408, 1), -- HP Increase (1x)
-(20458, 4409, 1), -- MP Increase (1x)
-(20458, 4410, 12), -- Slightly Strong P. Atk.
-(20458, 4411, 12), -- Slightly Strong M. Atk.
-(20458, 4412, 10), -- Slightly Weak P. Def.
-(20458, 4413, 18), -- Extremely Strong M. Def.
-(20458, 4414, 2), -- Standard Type
-(20458, 4415, 3), -- One-handed Sword
-(20458, 4416, 1), -- Undead
+(20458, 4071, 5), -- Resist Archery
+(20458, 4247, 2), -- NPC Windstrike - Slow
+(20458, 4284, 5), -- Resist Bleeding
+(20458, 4408, 1), -- HP Modifiers
+(20458, 4409, 1), -- MP Modifiers
+(20458, 4410, 12), -- P. Atk. Modifiers
+(20458, 4411, 12), -- M. Atk. Modifiers
+(20458, 4412, 10), -- P. Def. Modifiers
+(20458, 4413, 18), -- M. Def. Modifiers
+(20458, 4414, 2), -- Armor Type
+(20458, 4415, 3), -- Weapon Type
+(20458, 4416, 1), -- Races
 -- Crimson Spider
-(20460, 4408, 1), -- HP Increase (1x)
-(20460, 4409, 1), -- MP Increase (1x)
-(20460, 4410, 12), -- Slightly Strong P. Atk.
-(20460, 4411, 12), -- Slightly Strong M. Atk.
-(20460, 4412, 10), -- Slightly Weak P. Def.
-(20460, 4413, 10), -- Slightly Weak M. Def.
-(20460, 4414, 2), -- Standard Type
-(20460, 4415, 3), -- One-handed Sword
-(20460, 4416, 12), -- Bugs
+(20460, 4408, 1), -- HP Modifiers
+(20460, 4409, 1), -- MP Modifiers
+(20460, 4410, 12), -- P. Atk. Modifiers
+(20460, 4411, 12), -- M. Atk. Modifiers
+(20460, 4412, 10), -- P. Def. Modifiers
+(20460, 4413, 10), -- M. Def. Modifiers
+(20460, 4414, 2), -- Armor Type
+(20460, 4415, 3), -- Weapon Type
+(20460, 4416, 12), -- Races
 -- Dungeon Spider
-(20461, 4408, 1), -- HP Increase (1x)
-(20461, 4409, 1), -- MP Increase (1x)
-(20461, 4410, 12), -- Slightly Strong P. Atk.
-(20461, 4411, 12), -- Slightly Strong M. Atk.
-(20461, 4412, 10), -- Slightly Weak P. Def.
-(20461, 4413, 10), -- Slightly Weak M. Def.
-(20461, 4414, 2), -- Standard Type
-(20461, 4415, 5), -- Blunt Weapons
-(20461, 4416, 12), -- Bugs
+(20461, 4408, 1), -- HP Modifiers
+(20461, 4409, 1), -- MP Modifiers
+(20461, 4410, 12), -- P. Atk. Modifiers
+(20461, 4411, 12), -- M. Atk. Modifiers
+(20461, 4412, 10), -- P. Def. Modifiers
+(20461, 4413, 10), -- M. Def. Modifiers
+(20461, 4414, 2), -- Armor Type
+(20461, 4415, 5), -- Weapon Type
+(20461, 4416, 12), -- Races
 -- Cave Blade Spider
-(20462, 4408, 1), -- HP Increase (1x)
-(20462, 4409, 1), -- MP Increase (1x)
-(20462, 4410, 12), -- Slightly Strong P. Atk.
-(20462, 4411, 12), -- Slightly Strong M. Atk.
-(20462, 4412, 10), -- Slightly Weak P. Def.
-(20462, 4413, 10), -- Slightly Weak M. Def.
-(20462, 4414, 2), -- Standard Type
-(20462, 4415, 5), -- Blunt Weapons
-(20462, 4416, 12), -- Bugs
+(20462, 4408, 1), -- HP Modifiers
+(20462, 4409, 1), -- MP Modifiers
+(20462, 4410, 12), -- P. Atk. Modifiers
+(20462, 4411, 12), -- M. Atk. Modifiers
+(20462, 4412, 10), -- P. Def. Modifiers
+(20462, 4413, 10), -- M. Def. Modifiers
+(20462, 4414, 2), -- Armor Type
+(20462, 4415, 5), -- Weapon Type
+(20462, 4416, 12), -- Races
 -- Dungeon Skeleton Archer
-(20463, 4274, 1), -- Blunt Weapon Weak Point
-(20463, 4408, 1), -- HP Increase (1x)
-(20463, 4409, 1), -- MP Increase (1x)
-(20463, 4410, 10), -- Slightly Weak P. Atk.
-(20463, 4411, 10), -- Slightly Weak M. Atk.
-(20463, 4412, 12), -- Slightly Strong P. Def.
-(20463, 4413, 12), -- Slightly Strong M. Def.
-(20463, 4414, 2), -- Standard Type
-(20463, 4415, 9), -- Bows
-(20463, 4416, 1), -- Undead
+(20463, 4274, 1), -- Blunt Attack Weak Point
+(20463, 4408, 1), -- HP Modifiers
+(20463, 4409, 1), -- MP Modifiers
+(20463, 4410, 10), -- P. Atk. Modifiers
+(20463, 4411, 10), -- M. Atk. Modifiers
+(20463, 4412, 12), -- P. Def. Modifiers
+(20463, 4413, 12), -- M. Def. Modifiers
+(20463, 4414, 2), -- Armor Type
+(20463, 4415, 9), -- Weapon Type
+(20463, 4416, 1), -- Races
 -- Dungeon Skeleton
-(20464, 4274, 1), -- Blunt Weapon Weak Point
-(20464, 4408, 1), -- HP Increase (1x)
-(20464, 4409, 1), -- MP Increase (1x)
-(20464, 4410, 12), -- Slightly Strong P. Atk.
-(20464, 4411, 12), -- Slightly Strong M. Atk.
-(20464, 4412, 10), -- Slightly Weak P. Def.
-(20464, 4413, 10), -- Slightly Weak M. Def.
-(20464, 4414, 2), -- Standard Type
-(20464, 4415, 7), -- Daggers
-(20464, 4416, 1), -- Undead
+(20464, 4274, 1), -- Blunt Attack Weak Point
+(20464, 4408, 1), -- HP Modifiers
+(20464, 4409, 1), -- MP Modifiers
+(20464, 4410, 12), -- P. Atk. Modifiers
+(20464, 4411, 12), -- M. Atk. Modifiers
+(20464, 4412, 10), -- P. Def. Modifiers
+(20464, 4413, 10), -- M. Def. Modifiers
+(20464, 4414, 2), -- Armor Type
+(20464, 4415, 7), -- Weapon Type
+(20464, 4416, 1), -- Races
 -- Prairie Fox
-(20465, 4408, 1), -- HP Increase (1x)
-(20465, 4409, 1), -- MP Increase (1x)
-(20465, 4410, 12), -- Slightly Strong P. Atk.
-(20465, 4411, 12), -- Slightly Strong M. Atk.
-(20465, 4412, 10), -- Slightly Weak P. Def.
-(20465, 4413, 10), -- Slightly Weak M. Def.
-(20465, 4414, 2), -- Standard Type
-(20465, 4415, 3), -- One-handed Sword
-(20465, 4416, 4), -- Animals
+(20465, 4408, 1), -- HP Modifiers
+(20465, 4409, 1), -- MP Modifiers
+(20465, 4410, 12), -- P. Atk. Modifiers
+(20465, 4411, 12), -- M. Atk. Modifiers
+(20465, 4412, 10), -- P. Def. Modifiers
+(20465, 4413, 10), -- M. Def. Modifiers
+(20465, 4414, 2), -- Armor Type
+(20465, 4415, 3), -- Weapon Type
+(20465, 4416, 4), -- Races
 -- Pincer Spider
-(20466, 4408, 1), -- HP Increase (1x)
-(20466, 4409, 1), -- MP Increase (1x)
-(20466, 4410, 12), -- Slightly Strong P. Atk.
-(20466, 4411, 12), -- Slightly Strong M. Atk.
-(20466, 4412, 10), -- Slightly Weak P. Def.
-(20466, 4413, 10), -- Slightly Weak M. Def.
-(20466, 4414, 2), -- Standard Type
-(20466, 4415, 3), -- One-handed Sword
-(20466, 4416, 12); -- Bugs
+(20466, 4408, 1), -- HP Modifiers
+(20466, 4409, 1), -- MP Modifiers
+(20466, 4410, 12), -- P. Atk. Modifiers
+(20466, 4411, 12), -- M. Atk. Modifiers
+(20466, 4412, 10), -- P. Def. Modifiers
+(20466, 4413, 10), -- M. Def. Modifiers
+(20466, 4414, 2), -- Armor Type
+(20466, 4415, 3), -- Weapon Type
+(20466, 4416, 12); -- Races
 
 INSERT INTO `npcskills` VALUES
 -- Kaboo Orc
-(20468, 4408, 1), -- HP Increase (1x)
-(20468, 4409, 1), -- MP Increase (1x)
-(20468, 4410, 11), -- Average P. Atk.
-(20468, 4411, 11), -- Average M. Atk.
-(20468, 4412, 11), -- Average P. Def.
-(20468, 4413, 11), -- Average M. Def.
-(20468, 4414, 2), -- Standard Type
-(20468, 4415, 5), -- Blunt Weapons
-(20468, 4416, 6), -- Humanoids
+(20468, 4408, 1), -- HP Modifiers
+(20468, 4409, 1), -- MP Modifiers
+(20468, 4410, 11), -- P. Atk. Modifiers
+(20468, 4411, 11), -- M. Atk. Modifiers
+(20468, 4412, 11), -- P. Def. Modifiers
+(20468, 4413, 11), -- M. Def. Modifiers
+(20468, 4414, 2), -- Armor Type
+(20468, 4415, 5), -- Weapon Type
+(20468, 4416, 6), -- Races
 -- Kaboo Orc Archer
-(20469, 4408, 1), -- HP Increase (1x)
-(20469, 4409, 1), -- MP Increase (1x)
-(20469, 4410, 11), -- Average P. Atk.
-(20469, 4411, 11), -- Average M. Atk.
-(20469, 4412, 11), -- Average P. Def.
-(20469, 4413, 11), -- Average M. Def.
-(20469, 4414, 2), -- Standard Type
-(20469, 4415, 9), -- Bows
-(20469, 4416, 6), -- Humanoids
+(20469, 4408, 1), -- HP Modifiers
+(20469, 4409, 1), -- MP Modifiers
+(20469, 4410, 11), -- P. Atk. Modifiers
+(20469, 4411, 11), -- M. Atk. Modifiers
+(20469, 4412, 11), -- P. Def. Modifiers
+(20469, 4413, 11), -- M. Def. Modifiers
+(20469, 4414, 2), -- Armor Type
+(20469, 4415, 9), -- Weapon Type
+(20469, 4416, 6), -- Races
 -- Kaboo Orc Grunt
-(20470, 4408, 1), -- HP Increase (1x)
-(20470, 4409, 1), -- MP Increase (1x)
-(20470, 4410, 11), -- Average P. Atk.
-(20470, 4411, 11), -- Average M. Atk.
-(20470, 4412, 11), -- Average P. Def.
-(20470, 4413, 11), -- Average M. Def.
-(20470, 4414, 2), -- Standard Type
-(20470, 4415, 3), -- One-handed Sword
-(20470, 4416, 6), -- Humanoids
+(20470, 4408, 1), -- HP Modifiers
+(20470, 4409, 1), -- MP Modifiers
+(20470, 4410, 11), -- P. Atk. Modifiers
+(20470, 4411, 11), -- M. Atk. Modifiers
+(20470, 4412, 11), -- P. Def. Modifiers
+(20470, 4413, 11), -- M. Def. Modifiers
+(20470, 4414, 2), -- Armor Type
+(20470, 4415, 3), -- Weapon Type
+(20470, 4416, 6), -- Races
 -- Kaboo Orc Fighter
-(20471, 4408, 1), -- HP Increase (1x)
-(20471, 4409, 1), -- MP Increase (1x)
-(20471, 4410, 10), -- Slightly Weak P. Atk.
-(20471, 4411, 10), -- Slightly Weak M. Atk.
-(20471, 4412, 12), -- Slightly Strong P. Def.
-(20471, 4413, 12), -- Slightly Strong M. Def.
-(20471, 4414, 2), -- Standard Type
-(20471, 4415, 3), -- One-handed Sword
-(20471, 4416, 6), -- Humanoids
+(20471, 4408, 1), -- HP Modifiers
+(20471, 4409, 1), -- MP Modifiers
+(20471, 4410, 10), -- P. Atk. Modifiers
+(20471, 4411, 10), -- M. Atk. Modifiers
+(20471, 4412, 12), -- P. Def. Modifiers
+(20471, 4413, 12), -- M. Def. Modifiers
+(20471, 4414, 2), -- Armor Type
+(20471, 4415, 3), -- Weapon Type
+(20471, 4416, 6), -- Races
 -- Kaboo Orc Fighter Leader
-(20472, 4408, 1), -- HP Increase (1x)
-(20472, 4409, 1), -- MP Increase (1x)
-(20472, 4410, 10), -- Slightly Weak P. Atk.
-(20472, 4411, 10), -- Slightly Weak M. Atk.
-(20472, 4412, 12), -- Slightly Strong P. Def.
-(20472, 4413, 12), -- Slightly Strong M. Def.
-(20472, 4414, 2), -- Standard Type
-(20472, 4415, 3), -- One-handed Sword
-(20472, 4416, 6), -- Humanoids
+(20472, 4408, 1), -- HP Modifiers
+(20472, 4409, 1), -- MP Modifiers
+(20472, 4410, 10), -- P. Atk. Modifiers
+(20472, 4411, 10), -- M. Atk. Modifiers
+(20472, 4412, 12), -- P. Def. Modifiers
+(20472, 4413, 12), -- M. Def. Modifiers
+(20472, 4414, 2), -- Armor Type
+(20472, 4415, 3), -- Weapon Type
+(20472, 4416, 6), -- Races
 -- Kaboo Orc Fighter Lieutenant
-(20473, 4408, 1), -- HP Increase (1x)
-(20473, 4409, 1), -- MP Increase (1x)
-(20473, 4410, 10), -- Slightly Weak P. Atk.
-(20473, 4411, 10), -- Slightly Weak M. Atk.
-(20473, 4412, 12), -- Slightly Strong P. Def.
-(20473, 4413, 12), -- Slightly Strong M. Def.
-(20473, 4414, 2), -- Standard Type
-(20473, 4415, 3), -- One-handed Sword
-(20473, 4416, 6), -- Humanoids
+(20473, 4408, 1), -- HP Modifiers
+(20473, 4409, 1), -- MP Modifiers
+(20473, 4410, 10), -- P. Atk. Modifiers
+(20473, 4411, 10), -- M. Atk. Modifiers
+(20473, 4412, 12), -- P. Def. Modifiers
+(20473, 4413, 12), -- M. Def. Modifiers
+(20473, 4414, 2), -- Armor Type
+(20473, 4415, 3), -- Weapon Type
+(20473, 4416, 6), -- Races
 -- Kasha Spider
-(20474, 4408, 1), -- HP Increase (1x)
-(20474, 4409, 1), -- MP Increase (1x)
-(20474, 4410, 12), -- Slightly Strong P. Atk.
-(20474, 4411, 12), -- Slightly Strong M. Atk.
-(20474, 4412, 10), -- Slightly Weak P. Def.
-(20474, 4413, 10), -- Slightly Weak M. Def.
-(20474, 4414, 2), -- Standard Type
-(20474, 4415, 3), -- One-handed Sword
-(20474, 4416, 12), -- Bugs
+(20474, 4408, 1), -- HP Modifiers
+(20474, 4409, 1), -- MP Modifiers
+(20474, 4410, 12), -- P. Atk. Modifiers
+(20474, 4411, 12), -- M. Atk. Modifiers
+(20474, 4412, 10), -- P. Def. Modifiers
+(20474, 4413, 10), -- M. Def. Modifiers
+(20474, 4414, 2), -- Armor Type
+(20474, 4415, 3), -- Weapon Type
+(20474, 4416, 12), -- Races
 -- Kasha Wolf
-(20475, 4408, 1), -- HP Increase (1x)
-(20475, 4409, 1), -- MP Increase (1x)
-(20475, 4410, 11), -- Average P. Atk.
-(20475, 4411, 11), -- Average M. Atk.
-(20475, 4412, 11), -- Average P. Def.
-(20475, 4413, 11), -- Average M. Def.
-(20475, 4414, 2), -- Standard Type
-(20475, 4415, 3), -- One-handed Sword
-(20475, 4416, 4), -- Animals
+(20475, 4408, 1), -- HP Modifiers
+(20475, 4409, 1), -- MP Modifiers
+(20475, 4410, 11), -- P. Atk. Modifiers
+(20475, 4411, 11), -- M. Atk. Modifiers
+(20475, 4412, 11), -- P. Def. Modifiers
+(20475, 4413, 11), -- M. Def. Modifiers
+(20475, 4414, 2), -- Armor Type
+(20475, 4415, 3), -- Weapon Type
+(20475, 4416, 4), -- Races
 -- Kasha Fang Spider
-(20476, 4408, 1), -- HP Increase (1x)
-(20476, 4409, 1), -- MP Increase (1x)
-(20476, 4410, 12), -- Slightly Strong P. Atk.
-(20476, 4411, 12), -- Slightly Strong M. Atk.
-(20476, 4412, 10), -- Slightly Weak P. Def.
-(20476, 4413, 10), -- Slightly Weak M. Def.
-(20476, 4414, 2), -- Standard Type
-(20476, 4415, 3), -- One-handed Sword
-(20476, 4416, 12), -- Bugs
+(20476, 4408, 1), -- HP Modifiers
+(20476, 4409, 1), -- MP Modifiers
+(20476, 4410, 12), -- P. Atk. Modifiers
+(20476, 4411, 12), -- M. Atk. Modifiers
+(20476, 4412, 10), -- P. Def. Modifiers
+(20476, 4413, 10), -- M. Def. Modifiers
+(20476, 4414, 2), -- Armor Type
+(20476, 4415, 3), -- Weapon Type
+(20476, 4416, 12), -- Races
 -- Kasha Timber Wolf
-(20477, 4408, 1), -- HP Increase (1x)
-(20477, 4409, 1), -- MP Increase (1x)
-(20477, 4410, 11), -- Average P. Atk.
-(20477, 4411, 11), -- Average M. Atk.
-(20477, 4412, 11), -- Average P. Def.
-(20477, 4413, 11), -- Average M. Def.
-(20477, 4414, 2), -- Standard Type
-(20477, 4415, 3), -- One-handed Sword
-(20477, 4416, 4), -- Animals
+(20477, 4408, 1), -- HP Modifiers
+(20477, 4409, 1), -- MP Modifiers
+(20477, 4410, 11), -- P. Atk. Modifiers
+(20477, 4411, 11), -- M. Atk. Modifiers
+(20477, 4412, 11), -- P. Def. Modifiers
+(20477, 4413, 11), -- M. Def. Modifiers
+(20477, 4414, 2), -- Armor Type
+(20477, 4415, 3), -- Weapon Type
+(20477, 4416, 4), -- Races
 -- Kasha Blade Spider
 (20478, 4035, 1), -- Poison
-(20478, 4408, 1), -- HP Increase (1x)
-(20478, 4409, 1), -- MP Increase (1x)
-(20478, 4410, 12), -- Slightly Strong P. Atk.
-(20478, 4411, 12), -- Slightly Strong M. Atk.
-(20478, 4412, 10), -- Slightly Weak P. Def.
-(20478, 4413, 10), -- Slightly Weak M. Def.
-(20478, 4414, 2), -- Standard Type
-(20478, 4415, 3), -- One-handed Sword
-(20478, 4416, 12), -- Bugs
+(20478, 4408, 1), -- HP Modifiers
+(20478, 4409, 1), -- MP Modifiers
+(20478, 4410, 12), -- P. Atk. Modifiers
+(20478, 4411, 12), -- M. Atk. Modifiers
+(20478, 4412, 10), -- P. Def. Modifiers
+(20478, 4413, 10), -- M. Def. Modifiers
+(20478, 4414, 2), -- Armor Type
+(20478, 4415, 3), -- Weapon Type
+(20478, 4416, 12), -- Races
 -- Kasha Bear
-(20479, 4408, 1), -- HP Increase (1x)
-(20479, 4409, 1), -- MP Increase (1x)
-(20479, 4410, 10), -- Slightly Weak P. Atk.
-(20479, 4411, 10), -- Slightly Weak M. Atk.
-(20479, 4412, 12), -- Slightly Strong P. Def.
-(20479, 4413, 12), -- Slightly Strong M. Def.
-(20479, 4414, 2), -- Standard Type
-(20479, 4415, 3), -- One-handed Sword
-(20479, 4416, 4), -- Animals
+(20479, 4408, 1), -- HP Modifiers
+(20479, 4409, 1), -- MP Modifiers
+(20479, 4410, 10), -- P. Atk. Modifiers
+(20479, 4411, 10), -- M. Atk. Modifiers
+(20479, 4412, 12), -- P. Def. Modifiers
+(20479, 4413, 12), -- M. Def. Modifiers
+(20479, 4414, 2), -- Armor Type
+(20479, 4415, 3), -- Weapon Type
+(20479, 4416, 4), -- Races
 -- Blade Bat
-(20480, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(20480, 4408, 1), -- HP Increase (1x)
-(20480, 4409, 1), -- MP Increase (1x)
-(20480, 4410, 12), -- Slightly Strong P. Atk.
-(20480, 4411, 12), -- Slightly Strong M. Atk.
-(20480, 4412, 10), -- Slightly Weak P. Def.
-(20480, 4413, 10), -- Slightly Weak M. Def.
-(20480, 4414, 2), -- Standard Type
-(20480, 4415, 3), -- One-handed Sword
-(20480, 4416, 4), -- Animals
+(20480, 4276, 1), -- Archery Attack Weak Point
+(20480, 4408, 1), -- HP Modifiers
+(20480, 4409, 1), -- MP Modifiers
+(20480, 4410, 12), -- P. Atk. Modifiers
+(20480, 4411, 12), -- M. Atk. Modifiers
+(20480, 4412, 10), -- P. Def. Modifiers
+(20480, 4413, 10), -- M. Def. Modifiers
+(20480, 4414, 2), -- Armor Type
+(20480, 4415, 3), -- Weapon Type
+(20480, 4416, 4), -- Races
 -- Bearded Keltir
-(20481, 4408, 1), -- HP Increase (1x)
-(20481, 4409, 1), -- MP Increase (1x)
-(20481, 4410, 11), -- Average P. Atk.
-(20481, 4411, 11), -- Average M. Atk.
-(20481, 4412, 11), -- Average P. Def.
-(20481, 4413, 11), -- Average M. Def.
-(20481, 4414, 2), -- Standard Type
-(20481, 4415, 3), -- One-handed Sword
-(20481, 4416, 4), -- Animals
+(20481, 4408, 1), -- HP Modifiers
+(20481, 4409, 1), -- MP Modifiers
+(20481, 4410, 11), -- P. Atk. Modifiers
+(20481, 4411, 11), -- M. Atk. Modifiers
+(20481, 4412, 11), -- P. Def. Modifiers
+(20481, 4413, 11), -- M. Def. Modifiers
+(20481, 4414, 2), -- Armor Type
+(20481, 4415, 3), -- Weapon Type
+(20481, 4416, 4), -- Races
 -- Corpse Candle
-(20483, 4033, 1), -- Aura Burn
-(20483, 4408, 1), -- HP Increase (1x)
-(20483, 4409, 1), -- MP Increase (1x)
-(20483, 4410, 10), -- Slightly Weak P. Atk.
-(20483, 4411, 10), -- Slightly Weak M. Atk.
-(20483, 4412, 12), -- Slightly Strong P. Def.
-(20483, 4413, 12), -- Slightly Strong M. Def.
-(20483, 4414, 2), -- Standard Type
-(20483, 4415, 3), -- One-handed Sword
-(20483, 4416, 2), -- Magic Creatures
+(20483, 4033, 1), -- NPC Burn
+(20483, 4408, 1), -- HP Modifiers
+(20483, 4409, 1), -- MP Modifiers
+(20483, 4410, 10), -- P. Atk. Modifiers
+(20483, 4411, 10), -- M. Atk. Modifiers
+(20483, 4412, 12), -- P. Def. Modifiers
+(20483, 4413, 12), -- M. Def. Modifiers
+(20483, 4414, 2), -- Armor Type
+(20483, 4415, 3), -- Weapon Type
+(20483, 4416, 2), -- Races
 -- Kuruka Ratman
-(20487, 4408, 1), -- HP Increase (1x)
-(20487, 4409, 1), -- MP Increase (1x)
-(20487, 4410, 10), -- Slightly Weak P. Atk.
-(20487, 4411, 10), -- Slightly Weak M. Atk.
-(20487, 4412, 12), -- Slightly Strong P. Def.
-(20487, 4413, 12), -- Slightly Strong M. Def.
-(20487, 4414, 2), -- Standard Type
-(20487, 4415, 7), -- Daggers
-(20487, 4416, 6), -- Humanoids
+(20487, 4408, 1), -- HP Modifiers
+(20487, 4409, 1), -- MP Modifiers
+(20487, 4410, 10), -- P. Atk. Modifiers
+(20487, 4411, 10), -- M. Atk. Modifiers
+(20487, 4412, 12), -- P. Def. Modifiers
+(20487, 4413, 12), -- M. Def. Modifiers
+(20487, 4414, 2), -- Armor Type
+(20487, 4415, 7), -- Weapon Type
+(20487, 4416, 6), -- Races
 -- Kuruka Ratman Hunter
-(20488, 4408, 1), -- HP Increase (1x)
-(20488, 4409, 1), -- MP Increase (1x)
-(20488, 4410, 10), -- Slightly Weak P. Atk.
-(20488, 4411, 10), -- Slightly Weak M. Atk.
-(20488, 4412, 12), -- Slightly Strong P. Def.
-(20488, 4413, 12), -- Slightly Strong M. Def.
-(20488, 4414, 2), -- Standard Type
-(20488, 4415, 3), -- One-handed Sword
-(20488, 4416, 6), -- Humanoids
+(20488, 4408, 1), -- HP Modifiers
+(20488, 4409, 1), -- MP Modifiers
+(20488, 4410, 10), -- P. Atk. Modifiers
+(20488, 4411, 10), -- M. Atk. Modifiers
+(20488, 4412, 12), -- P. Def. Modifiers
+(20488, 4413, 12), -- M. Def. Modifiers
+(20488, 4414, 2), -- Armor Type
+(20488, 4415, 3), -- Weapon Type
+(20488, 4416, 6), -- Races
 -- Quicksilver Beast
-(20489, 4408, 1), -- HP Increase (1x)
-(20489, 4409, 1), -- MP Increase (1x)
-(20489, 4410, 12), -- Slightly Strong P. Atk.
-(20489, 4411, 12), -- Slightly Strong M. Atk.
-(20489, 4412, 10), -- Slightly Weak P. Def.
-(20489, 4413, 10), -- Slightly Weak M. Def.
-(20489, 4414, 2), -- Standard Type
-(20489, 4415, 3), -- One-handed Sword
-(20489, 4416, 3), -- Beasts
+(20489, 4408, 1), -- HP Modifiers
+(20489, 4409, 1), -- MP Modifiers
+(20489, 4410, 12), -- P. Atk. Modifiers
+(20489, 4411, 12), -- M. Atk. Modifiers
+(20489, 4412, 10), -- P. Def. Modifiers
+(20489, 4413, 10), -- M. Def. Modifiers
+(20489, 4414, 2), -- Armor Type
+(20489, 4415, 3), -- Weapon Type
+(20489, 4416, 3), -- Races
 -- Death Doll
 (20490, 4035, 4), -- Poison
-(20490, 4408, 1), -- HP Increase (1x)
-(20490, 4409, 1), -- MP Increase (1x)
-(20490, 4410, 12), -- Slightly Strong P. Atk.
-(20490, 4411, 12), -- Slightly Strong M. Atk.
-(20490, 4412, 10), -- Slightly Weak P. Def.
-(20490, 4413, 10), -- Slightly Weak M. Def.
-(20490, 4414, 2), -- Standard Type
-(20490, 4415, 3), -- One-handed Sword
-(20490, 4416, 1), -- Undead
+(20490, 4408, 1), -- HP Modifiers
+(20490, 4409, 1), -- MP Modifiers
+(20490, 4410, 12), -- P. Atk. Modifiers
+(20490, 4411, 12), -- M. Atk. Modifiers
+(20490, 4412, 10), -- P. Def. Modifiers
+(20490, 4413, 10), -- M. Def. Modifiers
+(20490, 4414, 2), -- Armor Type
+(20490, 4415, 3), -- Weapon Type
+(20490, 4416, 1), -- Races
 -- Crypt Horror
-(20491, 4408, 1), -- HP Increase (1x)
-(20491, 4409, 1), -- MP Increase (1x)
-(20491, 4410, 12), -- Slightly Strong P. Atk.
-(20491, 4411, 12), -- Slightly Strong M. Atk.
-(20491, 4412, 10), -- Slightly Weak P. Def.
-(20491, 4413, 10), -- Slightly Weak M. Def.
-(20491, 4414, 2), -- Standard Type
-(20491, 4415, 3), -- One-handed Sword
-(20491, 4416, 1), -- Undead
+(20491, 4408, 1), -- HP Modifiers
+(20491, 4409, 1), -- MP Modifiers
+(20491, 4410, 12), -- P. Atk. Modifiers
+(20491, 4411, 12), -- M. Atk. Modifiers
+(20491, 4412, 10), -- P. Def. Modifiers
+(20491, 4413, 10), -- M. Def. Modifiers
+(20491, 4414, 2), -- Armor Type
+(20491, 4415, 3), -- Weapon Type
+(20491, 4416, 1), -- Races
 -- Kirunak's Guards
-(20492, 4274, 1), -- Blunt Weapon Weak Point
-(20492, 4408, 1), -- HP Increase (1x)
-(20492, 4409, 1), -- MP Increase (1x)
-(20492, 4410, 10), -- Slightly Weak P. Atk.
-(20492, 4411, 10), -- Slightly Weak M. Atk.
-(20492, 4412, 12), -- Slightly Strong P. Def.
-(20492, 4413, 12), -- Slightly Strong M. Def.
-(20492, 4414, 2), -- Standard Type
-(20492, 4415, 3), -- One-handed Sword
-(20492, 4416, 1), -- Undead
+(20492, 4274, 1), -- Blunt Attack Weak Point
+(20492, 4408, 1), -- HP Modifiers
+(20492, 4409, 1), -- MP Modifiers
+(20492, 4410, 10), -- P. Atk. Modifiers
+(20492, 4411, 10), -- M. Atk. Modifiers
+(20492, 4412, 12), -- P. Def. Modifiers
+(20492, 4413, 12), -- M. Def. Modifiers
+(20492, 4414, 2), -- Armor Type
+(20492, 4415, 3), -- Weapon Type
+(20492, 4416, 1), -- Races
 -- Turek War Hound
-(20494, 4408, 10), -- HP Increase (2x)
-(20494, 4409, 1), -- MP Increase (1x)
-(20494, 4410, 12), -- Slightly Strong P. Atk.
-(20494, 4411, 12), -- Slightly Strong M. Atk.
-(20494, 4412, 10), -- Slightly Weak P. Def.
-(20494, 4413, 10), -- Slightly Weak M. Def.
-(20494, 4414, 2), -- Standard Type
-(20494, 4415, 3), -- One-handed Sword
-(20494, 4416, 4), -- Animals
+(20494, 4408, 10), -- HP Modifiers
+(20494, 4409, 1), -- MP Modifiers
+(20494, 4410, 12), -- P. Atk. Modifiers
+(20494, 4411, 12), -- M. Atk. Modifiers
+(20494, 4412, 10), -- P. Def. Modifiers
+(20494, 4413, 10), -- M. Def. Modifiers
+(20494, 4414, 2), -- Armor Type
+(20494, 4415, 3), -- Weapon Type
+(20494, 4416, 4), -- Races
 -- Turek Orc Warlord
 (20495, 4318, 1), -- Ultimate Buff
-(20495, 4408, 10), -- HP Increase (2x)
-(20495, 4409, 1), -- MP Increase (1x)
-(20495, 4410, 10), -- Slightly Weak P. Atk.
-(20495, 4411, 10), -- Slightly Weak M. Atk.
-(20495, 4412, 12), -- Slightly Strong P. Def.
-(20495, 4413, 12), -- Slightly Strong M. Def.
-(20495, 4414, 2), -- Standard Type
-(20495, 4415, 3), -- One-handed Sword
-(20495, 4416, 6), -- Humanoids
+(20495, 4408, 10), -- HP Modifiers
+(20495, 4409, 1), -- MP Modifiers
+(20495, 4410, 10), -- P. Atk. Modifiers
+(20495, 4411, 10), -- M. Atk. Modifiers
+(20495, 4412, 12), -- P. Def. Modifiers
+(20495, 4413, 12), -- M. Def. Modifiers
+(20495, 4414, 2), -- Armor Type
+(20495, 4415, 3), -- Weapon Type
+(20495, 4416, 6), -- Races
 -- Turek Orc Archer
-(20496, 4408, 10), -- HP Increase (2x)
-(20496, 4409, 1), -- MP Increase (1x)
-(20496, 4410, 11), -- Average P. Atk.
-(20496, 4411, 11), -- Average M. Atk.
-(20496, 4412, 11), -- Average P. Def.
-(20496, 4413, 11), -- Average M. Def.
-(20496, 4414, 2), -- Standard Type
-(20496, 4415, 9), -- Bows
-(20496, 4416, 6), -- Humanoids
+(20496, 4408, 10), -- HP Modifiers
+(20496, 4409, 1), -- MP Modifiers
+(20496, 4410, 11), -- P. Atk. Modifiers
+(20496, 4411, 11), -- M. Atk. Modifiers
+(20496, 4412, 11), -- P. Def. Modifiers
+(20496, 4413, 11), -- M. Def. Modifiers
+(20496, 4414, 2), -- Armor Type
+(20496, 4415, 9), -- Weapon Type
+(20496, 4416, 6), -- Races
 -- Turek Orc Skirmisher
-(20497, 4408, 10), -- HP Increase (2x)
-(20497, 4409, 1), -- MP Increase (1x)
-(20497, 4410, 10), -- Slightly Weak P. Atk.
-(20497, 4411, 10), -- Slightly Weak M. Atk.
-(20497, 4412, 12), -- Slightly Strong P. Def.
-(20497, 4413, 12), -- Slightly Strong M. Def.
-(20497, 4414, 2), -- Standard Type
-(20497, 4415, 3), -- One-handed Sword
-(20497, 4416, 6), -- Humanoids
+(20497, 4408, 10), -- HP Modifiers
+(20497, 4409, 1), -- MP Modifiers
+(20497, 4410, 10), -- P. Atk. Modifiers
+(20497, 4411, 10), -- M. Atk. Modifiers
+(20497, 4412, 12), -- P. Def. Modifiers
+(20497, 4413, 12), -- M. Def. Modifiers
+(20497, 4414, 2), -- Armor Type
+(20497, 4415, 3), -- Weapon Type
+(20497, 4416, 6), -- Races
 -- Turek Orc Supplier
-(20498, 4408, 10), -- HP Increase (2x)
-(20498, 4409, 1), -- MP Increase (1x)
-(20498, 4410, 10), -- Slightly Weak P. Atk.
-(20498, 4411, 10), -- Slightly Weak M. Atk.
-(20498, 4412, 12), -- Slightly Strong P. Def.
-(20498, 4413, 12), -- Slightly Strong M. Def.
-(20498, 4414, 2), -- Standard Type
-(20498, 4415, 7), -- Daggers
-(20498, 4416, 6), -- Humanoids
+(20498, 4408, 10), -- HP Modifiers
+(20498, 4409, 1), -- MP Modifiers
+(20498, 4410, 10), -- P. Atk. Modifiers
+(20498, 4411, 10), -- M. Atk. Modifiers
+(20498, 4412, 12), -- P. Def. Modifiers
+(20498, 4413, 12), -- M. Def. Modifiers
+(20498, 4414, 2), -- Armor Type
+(20498, 4415, 7), -- Weapon Type
+(20498, 4416, 6), -- Races
 -- Turek Orc Footman
-(20499, 4408, 10), -- HP Increase (2x)
-(20499, 4409, 1), -- MP Increase (1x)
-(20499, 4410, 11), -- Average P. Atk.
-(20499, 4411, 11), -- Average M. Atk.
-(20499, 4412, 11), -- Average P. Def.
-(20499, 4413, 11), -- Average M. Def.
-(20499, 4414, 2), -- Standard Type
-(20499, 4415, 3), -- One-handed Sword
-(20499, 4416, 6), -- Humanoids
+(20499, 4408, 10), -- HP Modifiers
+(20499, 4409, 1), -- MP Modifiers
+(20499, 4410, 11), -- P. Atk. Modifiers
+(20499, 4411, 11), -- M. Atk. Modifiers
+(20499, 4412, 11), -- P. Def. Modifiers
+(20499, 4413, 11), -- M. Def. Modifiers
+(20499, 4414, 2), -- Armor Type
+(20499, 4415, 3), -- Weapon Type
+(20499, 4416, 6), -- Races
 -- Turek Orc Sentinel
-(20500, 4408, 10), -- HP Increase (2x)
-(20500, 4409, 1), -- MP Increase (1x)
-(20500, 4410, 11), -- Average P. Atk.
-(20500, 4411, 11), -- Average M. Atk.
-(20500, 4412, 11), -- Average P. Def.
-(20500, 4413, 11), -- Average M. Def.
-(20500, 4414, 2), -- Standard Type
-(20500, 4415, 3), -- One-handed Sword
-(20500, 4416, 6), -- Humanoids
+(20500, 4408, 10), -- HP Modifiers
+(20500, 4409, 1), -- MP Modifiers
+(20500, 4410, 11), -- P. Atk. Modifiers
+(20500, 4411, 11), -- M. Atk. Modifiers
+(20500, 4412, 11), -- P. Def. Modifiers
+(20500, 4413, 11), -- M. Def. Modifiers
+(20500, 4414, 2), -- Armor Type
+(20500, 4415, 3), -- Weapon Type
+(20500, 4416, 6), -- Races
 -- Turek Orc Shaman
-(20501, 4002, 2), -- HP Drain
-(20501, 4408, 10), -- HP Increase (2x)
-(20501, 4409, 1), -- MP Increase (1x)
-(20501, 4410, 10), -- Slightly Weak P. Atk.
-(20501, 4411, 10), -- Slightly Weak M. Atk.
-(20501, 4412, 12), -- Slightly Strong P. Def.
-(20501, 4413, 12), -- Slightly Strong M. Def.
-(20501, 4414, 2), -- Standard Type
-(20501, 4415, 5), -- Blunt Weapons
-(20501, 4416, 6), -- Humanoids
+(20501, 4002, 2), -- NPC HP Drain
+(20501, 4408, 10), -- HP Modifiers
+(20501, 4409, 1), -- MP Modifiers
+(20501, 4410, 10), -- P. Atk. Modifiers
+(20501, 4411, 10), -- M. Atk. Modifiers
+(20501, 4412, 12), -- P. Def. Modifiers
+(20501, 4413, 12), -- M. Def. Modifiers
+(20501, 4414, 2), -- Armor Type
+(20501, 4415, 5), -- Weapon Type
+(20501, 4416, 6), -- Races
 -- Twink Puma
-(20502, 4408, 1), -- HP Increase (1x)
-(20502, 4409, 1), -- MP Increase (1x)
-(20502, 4410, 12), -- Slightly Strong P. Atk.
-(20502, 4411, 12), -- Slightly Strong M. Atk.
-(20502, 4412, 10), -- Slightly Weak P. Def.
-(20502, 4413, 10), -- Slightly Weak M. Def.
-(20502, 4414, 2), -- Standard Type
-(20502, 4415, 3), -- One-handed Sword
-(20502, 4416, 3), -- Beasts
+(20502, 4408, 1), -- HP Modifiers
+(20502, 4409, 1), -- MP Modifiers
+(20502, 4410, 12), -- P. Atk. Modifiers
+(20502, 4411, 12), -- M. Atk. Modifiers
+(20502, 4412, 10), -- P. Def. Modifiers
+(20502, 4413, 10), -- M. Def. Modifiers
+(20502, 4414, 2), -- Armor Type
+(20502, 4415, 3), -- Weapon Type
+(20502, 4416, 3), -- Races
 -- Dread Soldier
-(20504, 4274, 1), -- Blunt Weapon Weak Point
-(20504, 4408, 1), -- HP Increase (1x)
-(20504, 4409, 1), -- MP Increase (1x)
-(20504, 4410, 12), -- Slightly Strong P. Atk.
-(20504, 4411, 12), -- Slightly Strong M. Atk.
-(20504, 4412, 10), -- Slightly Weak P. Def.
-(20504, 4413, 10), -- Slightly Weak M. Def.
-(20504, 4414, 2), -- Standard Type
-(20504, 4415, 7), -- Daggers
-(20504, 4416, 1), -- Undead
+(20504, 4274, 1), -- Blunt Attack Weak Point
+(20504, 4408, 1), -- HP Modifiers
+(20504, 4409, 1), -- MP Modifiers
+(20504, 4410, 12), -- P. Atk. Modifiers
+(20504, 4411, 12), -- M. Atk. Modifiers
+(20504, 4412, 10), -- P. Def. Modifiers
+(20504, 4413, 10), -- M. Def. Modifiers
+(20504, 4414, 2), -- Armor Type
+(20504, 4415, 7), -- Weapon Type
+(20504, 4416, 1), -- Races
 -- Ruin Bat
-(20505, 4001, 2), -- Windstrike
-(20505, 4002, 2), -- HP Drain
-(20505, 4038, 3), -- Decrease Atk. Spd.
-(20505, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(20505, 4408, 1), -- HP Increase (1x)
-(20505, 4409, 1), -- MP Increase (1x)
-(20505, 4410, 12), -- Slightly Strong P. Atk.
-(20505, 4411, 12), -- Slightly Strong M. Atk.
-(20505, 4412, 10), -- Slightly Weak P. Def.
-(20505, 4413, 10), -- Slightly Weak M. Def.
-(20505, 4414, 2), -- Standard Type
-(20505, 4415, 3), -- One-handed Sword
-(20505, 4416, 4), -- Animals
+(20505, 4001, 2), -- NPC Wind Strike
+(20505, 4002, 2), -- NPC HP Drain
+(20505, 4038, 3), -- Decrease Atk.Spd.
+(20505, 4276, 1), -- Archery Attack Weak Point
+(20505, 4408, 1), -- HP Modifiers
+(20505, 4409, 1), -- MP Modifiers
+(20505, 4410, 12), -- P. Atk. Modifiers
+(20505, 4411, 12), -- M. Atk. Modifiers
+(20505, 4412, 10), -- P. Def. Modifiers
+(20505, 4413, 10), -- M. Def. Modifiers
+(20505, 4414, 2), -- Armor Type
+(20505, 4415, 3), -- Weapon Type
+(20505, 4416, 4), -- Races
 -- Ruin Imp
-(20506, 4076, 1), -- Slow
-(20506, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(20506, 4408, 1), -- HP Increase (1x)
-(20506, 4409, 1), -- MP Increase (1x)
-(20506, 4410, 12), -- Slightly Strong P. Atk.
-(20506, 4411, 12), -- Slightly Strong M. Atk.
-(20506, 4412, 10), -- Slightly Weak P. Def.
-(20506, 4413, 10), -- Slightly Weak M. Def.
-(20506, 4414, 2), -- Standard Type
-(20506, 4415, 3), -- One-handed Sword
-(20506, 4416, 13), -- Fairies
+(20506, 4076, 1), -- Reduction in movement speed
+(20506, 4276, 1), -- Archery Attack Weak Point
+(20506, 4408, 1), -- HP Modifiers
+(20506, 4409, 1), -- MP Modifiers
+(20506, 4410, 12), -- P. Atk. Modifiers
+(20506, 4411, 12), -- M. Atk. Modifiers
+(20506, 4412, 10), -- P. Def. Modifiers
+(20506, 4413, 10), -- M. Def. Modifiers
+(20506, 4414, 2), -- Armor Type
+(20506, 4415, 3), -- Weapon Type
+(20506, 4416, 13), -- Races
 -- Ruin Imp Elder
-(20507, 4152, 2), -- Drain Health
-(20507, 4160, 2), -- Aura Burn
-(20507, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(20507, 4408, 1), -- HP Increase (1x)
-(20507, 4409, 1), -- MP Increase (1x)
-(20507, 4410, 12), -- Slightly Strong P. Atk.
-(20507, 4411, 12), -- Slightly Strong M. Atk.
-(20507, 4412, 10), -- Slightly Weak P. Def.
-(20507, 4413, 10), -- Slightly Weak M. Def.
-(20507, 4414, 2), -- Standard Type
-(20507, 4415, 3), -- One-handed Sword
-(20507, 4416, 13), -- Fairies
+(20507, 4152, 2), -- NPC HP Drain - Magic
+(20507, 4160, 2), -- NPC Aura Burn - Magic
+(20507, 4276, 1), -- Archery Attack Weak Point
+(20507, 4408, 1), -- HP Modifiers
+(20507, 4409, 1), -- MP Modifiers
+(20507, 4410, 12), -- P. Atk. Modifiers
+(20507, 4411, 12), -- M. Atk. Modifiers
+(20507, 4412, 10), -- P. Def. Modifiers
+(20507, 4413, 10), -- M. Def. Modifiers
+(20507, 4414, 2), -- Armor Type
+(20507, 4415, 3), -- Weapon Type
+(20507, 4416, 13), -- Races
 -- Plunder Tarantula
-(20508, 4408, 1), -- HP Increase (1x)
-(20508, 4409, 1), -- MP Increase (1x)
-(20508, 4410, 12), -- Slightly Strong P. Atk.
-(20508, 4411, 12), -- Slightly Strong M. Atk.
-(20508, 4412, 10), -- Slightly Weak P. Def.
-(20508, 4413, 10), -- Slightly Weak M. Def.
-(20508, 4414, 2), -- Standard Type
-(20508, 4415, 3), -- One-handed Sword
-(20508, 4416, 12), -- Bugs
+(20508, 4408, 1), -- HP Modifiers
+(20508, 4409, 1), -- MP Modifiers
+(20508, 4410, 12), -- P. Atk. Modifiers
+(20508, 4411, 12), -- M. Atk. Modifiers
+(20508, 4412, 10), -- P. Def. Modifiers
+(20508, 4413, 10), -- M. Def. Modifiers
+(20508, 4414, 2), -- Armor Type
+(20508, 4415, 3), -- Weapon Type
+(20508, 4416, 12), -- Races
 -- Spore Fungus
-(20509, 4277, 5), -- Resist Poison Attacks
-(20509, 4408, 1), -- HP Increase (1x)
-(20509, 4409, 1), -- MP Increase (1x)
-(20509, 4410, 12), -- Slightly Strong P. Atk.
-(20509, 4411, 12), -- Slightly Strong M. Atk.
-(20509, 4412, 10), -- Slightly Weak P. Def.
-(20509, 4413, 10), -- Slightly Weak M. Def.
-(20509, 4414, 2), -- Standard Type
-(20509, 4415, 3), -- One-handed Sword
-(20509, 4416, 5), -- Plants
+(20509, 4277, 5), -- Resist Poison
+(20509, 4408, 1), -- HP Modifiers
+(20509, 4409, 1), -- MP Modifiers
+(20509, 4410, 12), -- P. Atk. Modifiers
+(20509, 4411, 12), -- M. Atk. Modifiers
+(20509, 4412, 10), -- P. Def. Modifiers
+(20509, 4413, 10), -- M. Def. Modifiers
+(20509, 4414, 2), -- Armor Type
+(20509, 4415, 3), -- Weapon Type
+(20509, 4416, 5), -- Races
 -- Puma
-(20510, 4408, 1), -- HP Increase (1x)
-(20510, 4409, 1), -- MP Increase (1x)
-(20510, 4410, 12), -- Slightly Strong P. Atk.
-(20510, 4411, 12), -- Slightly Strong M. Atk.
-(20510, 4412, 10), -- Slightly Weak P. Def.
-(20510, 4413, 10), -- Slightly Weak M. Def.
-(20510, 4414, 2), -- Standard Type
-(20510, 4415, 3), -- One-handed Sword
-(20510, 4416, 3), -- Beasts
+(20510, 4408, 1), -- HP Modifiers
+(20510, 4409, 1), -- MP Modifiers
+(20510, 4410, 12), -- P. Atk. Modifiers
+(20510, 4411, 12), -- M. Atk. Modifiers
+(20510, 4412, 10), -- P. Def. Modifiers
+(20510, 4413, 10), -- M. Def. Modifiers
+(20510, 4414, 2), -- Armor Type
+(20510, 4415, 3), -- Weapon Type
+(20510, 4416, 3), -- Races
 -- Pitchstone Golem
 (20511, 4249, 1), -- Decrease Speed
-(20511, 4273, 3), -- Resist Daggers/Rapier Weapon
-(20511, 4274, 1), -- Blunt Weapon Weak Point
-(20511, 4284, 5), -- Resist Bleed Attacks
-(20511, 4408, 1), -- HP Increase (1x)
-(20511, 4409, 1), -- MP Increase (1x)
-(20511, 4410, 10), -- Slightly Weak P. Atk.
-(20511, 4411, 10), -- Slightly Weak M. Atk.
-(20511, 4412, 12), -- Slightly Strong P. Def.
-(20511, 4413, 19), -- Extremely Strong M. Def.
-(20511, 4414, 2), -- Standard Type
-(20511, 4415, 3), -- One-handed Sword
-(20511, 4416, 2), -- Magic Creatures
+(20511, 4273, 3), -- Resist Dagger
+(20511, 4274, 1), -- Blunt Attack Weak Point
+(20511, 4284, 5), -- Resist Bleeding
+(20511, 4408, 1), -- HP Modifiers
+(20511, 4409, 1), -- MP Modifiers
+(20511, 4410, 10), -- P. Atk. Modifiers
+(20511, 4411, 10), -- M. Atk. Modifiers
+(20511, 4412, 12), -- P. Def. Modifiers
+(20511, 4413, 19), -- M. Def. Modifiers
+(20511, 4414, 2), -- Armor Type
+(20511, 4415, 3), -- Weapon Type
+(20511, 4416, 2), -- Races
 (20511, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Field Stalker
-(20512, 4033, 3), -- Aura Burn
-(20512, 4408, 1), -- HP Increase (1x)
-(20512, 4409, 1), -- MP Increase (1x)
-(20512, 4410, 12), -- Slightly Strong P. Atk.
-(20512, 4411, 12), -- Slightly Strong M. Atk.
-(20512, 4412, 10), -- Slightly Weak P. Def.
-(20512, 4413, 10), -- Slightly Weak M. Def.
-(20512, 4414, 2), -- Standard Type
-(20512, 4415, 3), -- One-handed Sword
-(20512, 4416, 2), -- Magic Creatures
+(20512, 4033, 3), -- NPC Burn
+(20512, 4408, 1), -- HP Modifiers
+(20512, 4409, 1), -- MP Modifiers
+(20512, 4410, 12), -- P. Atk. Modifiers
+(20512, 4411, 12), -- M. Atk. Modifiers
+(20512, 4412, 10), -- P. Def. Modifiers
+(20512, 4413, 10), -- M. Def. Modifiers
+(20512, 4414, 2), -- Armor Type
+(20512, 4415, 3), -- Weapon Type
+(20512, 4416, 2), -- Races
 -- Skeleton Knight
-(20513, 4002, 3), -- HP Drain
-(20513, 4408, 1), -- HP Increase (1x)
-(20513, 4409, 1), -- MP Increase (1x)
-(20513, 4410, 10), -- Slightly Weak P. Atk.
-(20513, 4411, 10), -- Slightly Weak M. Atk.
-(20513, 4412, 12), -- Slightly Strong P. Def.
-(20513, 4413, 12), -- Slightly Strong M. Def.
-(20513, 4414, 2), -- Standard Type
-(20513, 4415, 3), -- One-handed Sword
-(20513, 4416, 1), -- Undead
+(20513, 4002, 3), -- NPC HP Drain
+(20513, 4408, 1), -- HP Modifiers
+(20513, 4409, 1), -- MP Modifiers
+(20513, 4410, 10), -- P. Atk. Modifiers
+(20513, 4411, 10), -- M. Atk. Modifiers
+(20513, 4412, 12), -- P. Def. Modifiers
+(20513, 4413, 12), -- M. Def. Modifiers
+(20513, 4414, 2), -- Armor Type
+(20513, 4415, 3), -- Weapon Type
+(20513, 4416, 1), -- Races
 -- Shield Skeleton
-(20514, 4274, 1), -- Blunt Weapon Weak Point
-(20514, 4408, 1), -- HP Increase (1x)
-(20514, 4409, 1), -- MP Increase (1x)
-(20514, 4410, 12), -- Slightly Strong P. Atk.
-(20514, 4411, 12), -- Slightly Strong M. Atk.
-(20514, 4412, 10), -- Slightly Weak P. Def.
-(20514, 4413, 10), -- Slightly Weak M. Def.
-(20514, 4414, 2), -- Standard Type
-(20514, 4415, 5), -- Blunt Weapons
-(20514, 4416, 1), -- Undead
+(20514, 4274, 1), -- Blunt Attack Weak Point
+(20514, 4408, 1), -- HP Modifiers
+(20514, 4409, 1), -- MP Modifiers
+(20514, 4410, 12), -- P. Atk. Modifiers
+(20514, 4411, 12), -- M. Atk. Modifiers
+(20514, 4412, 10), -- P. Def. Modifiers
+(20514, 4413, 10), -- M. Def. Modifiers
+(20514, 4414, 2), -- Armor Type
+(20514, 4415, 5), -- Weapon Type
+(20514, 4416, 1), -- Races
 -- Skeleton Infantryman
-(20515, 4274, 1), -- Blunt Weapon Weak Point
-(20515, 4408, 1), -- HP Increase (1x)
-(20515, 4409, 1), -- MP Increase (1x)
-(20515, 4410, 12), -- Slightly Strong P. Atk.
-(20515, 4411, 12), -- Slightly Strong M. Atk.
-(20515, 4412, 10), -- Slightly Weak P. Def.
-(20515, 4413, 10), -- Slightly Weak M. Def.
-(20515, 4414, 2), -- Standard Type
-(20515, 4415, 5), -- Blunt Weapons
-(20515, 4416, 1), -- Undead
+(20515, 4274, 1), -- Blunt Attack Weak Point
+(20515, 4408, 1), -- HP Modifiers
+(20515, 4409, 1), -- MP Modifiers
+(20515, 4410, 12), -- P. Atk. Modifiers
+(20515, 4411, 12), -- M. Atk. Modifiers
+(20515, 4412, 10), -- P. Def. Modifiers
+(20515, 4413, 10), -- M. Def. Modifiers
+(20515, 4414, 2), -- Armor Type
+(20515, 4415, 5), -- Weapon Type
+(20515, 4416, 1), -- Races
 -- Skeleton Sentinel
-(20516, 4274, 1), -- Blunt Weapon Weak Point
-(20516, 4408, 1), -- HP Increase (1x)
-(20516, 4409, 1), -- MP Increase (1x)
-(20516, 4410, 12), -- Slightly Strong P. Atk.
-(20516, 4411, 12), -- Slightly Strong M. Atk.
-(20516, 4412, 10), -- Slightly Weak P. Def.
-(20516, 4413, 10), -- Slightly Weak M. Def.
-(20516, 4414, 2), -- Standard Type
-(20516, 4415, 7), -- Daggers
-(20516, 4416, 1), -- Undead
+(20516, 4274, 1), -- Blunt Attack Weak Point
+(20516, 4408, 1), -- HP Modifiers
+(20516, 4409, 1), -- MP Modifiers
+(20516, 4410, 12), -- P. Atk. Modifiers
+(20516, 4411, 12), -- M. Atk. Modifiers
+(20516, 4412, 10), -- P. Def. Modifiers
+(20516, 4413, 10), -- M. Def. Modifiers
+(20516, 4414, 2), -- Armor Type
+(20516, 4415, 7), -- Weapon Type
+(20516, 4416, 1), -- Races
 -- Skeleton Hunter
-(20517, 4274, 1), -- Blunt Weapon Weak Point
-(20517, 4408, 1), -- HP Increase (1x)
-(20517, 4409, 1), -- MP Increase (1x)
-(20517, 4410, 12), -- Slightly Strong P. Atk.
-(20517, 4411, 12), -- Slightly Strong M. Atk.
-(20517, 4412, 10), -- Slightly Weak P. Def.
-(20517, 4413, 10), -- Slightly Weak M. Def.
-(20517, 4414, 2), -- Standard Type
-(20517, 4415, 7), -- Daggers
-(20517, 4416, 1), -- Undead
+(20517, 4274, 1), -- Blunt Attack Weak Point
+(20517, 4408, 1), -- HP Modifiers
+(20517, 4409, 1), -- MP Modifiers
+(20517, 4410, 12), -- P. Atk. Modifiers
+(20517, 4411, 12), -- M. Atk. Modifiers
+(20517, 4412, 10), -- P. Def. Modifiers
+(20517, 4413, 10), -- M. Def. Modifiers
+(20517, 4414, 2), -- Armor Type
+(20517, 4415, 7), -- Weapon Type
+(20517, 4416, 1), -- Races
 -- Skeleton Hunter Archer
-(20518, 4274, 1), -- Blunt Weapon Weak Point
-(20518, 4408, 1), -- HP Increase (1x)
-(20518, 4409, 1), -- MP Increase (1x)
-(20518, 4410, 10), -- Slightly Weak P. Atk.
-(20518, 4411, 10), -- Slightly Weak M. Atk.
-(20518, 4412, 12), -- Slightly Strong P. Def.
-(20518, 4413, 12), -- Slightly Strong M. Def.
-(20518, 4414, 2), -- Standard Type
-(20518, 4415, 9), -- Bows
-(20518, 4416, 1), -- Undead
+(20518, 4274, 1), -- Blunt Attack Weak Point
+(20518, 4408, 1), -- HP Modifiers
+(20518, 4409, 1), -- MP Modifiers
+(20518, 4410, 10), -- P. Atk. Modifiers
+(20518, 4411, 10), -- M. Atk. Modifiers
+(20518, 4412, 12), -- P. Def. Modifiers
+(20518, 4413, 12), -- M. Def. Modifiers
+(20518, 4414, 2), -- Armor Type
+(20518, 4415, 9), -- Weapon Type
+(20518, 4416, 1), -- Races
 -- Skeleton Pikeman
-(20519, 4408, 1), -- HP Increase (1x)
-(20519, 4409, 1), -- MP Increase (1x)
-(20519, 4410, 12), -- Slightly Strong P. Atk.
-(20519, 4411, 12), -- Slightly Strong M. Atk.
-(20519, 4412, 10), -- Slightly Weak P. Def.
-(20519, 4413, 10), -- Slightly Weak M. Def.
-(20519, 4414, 2), -- Standard Type
-(20519, 4415, 3), -- One-handed Sword
-(20519, 4416, 1), -- Undead
+(20519, 4408, 1), -- HP Modifiers
+(20519, 4409, 1), -- MP Modifiers
+(20519, 4410, 12), -- P. Atk. Modifiers
+(20519, 4411, 12), -- M. Atk. Modifiers
+(20519, 4412, 10), -- P. Def. Modifiers
+(20519, 4413, 10), -- M. Def. Modifiers
+(20519, 4414, 2), -- Armor Type
+(20519, 4415, 3), -- Weapon Type
+(20519, 4416, 1), -- Races
 -- Pirate Captain Uthanka
-(20520, 4408, 10), -- HP Increase (2x)
-(20520, 4409, 1), -- MP Increase (1x)
-(20520, 4410, 10), -- Slightly Weak P. Atk.
-(20520, 4411, 10), -- Slightly Weak M. Atk.
-(20520, 4412, 12), -- Slightly Strong P. Def.
-(20520, 4413, 12), -- Slightly Strong M. Def.
-(20520, 4414, 2), -- Standard Type
-(20520, 4415, 5), -- Blunt Weapons
-(20520, 4416, 6), -- Humanoids
+(20520, 4408, 10), -- HP Modifiers
+(20520, 4409, 1), -- MP Modifiers
+(20520, 4410, 10), -- P. Atk. Modifiers
+(20520, 4411, 10), -- M. Atk. Modifiers
+(20520, 4412, 12), -- P. Def. Modifiers
+(20520, 4413, 12), -- M. Def. Modifiers
+(20520, 4414, 2), -- Armor Type
+(20520, 4415, 5), -- Weapon Type
+(20520, 4416, 6), -- Races
 -- Whinstone Golem
-(20521, 4247, 1), -- Wind Strike
-(20521, 4273, 3), -- Resist Daggers/Rapier Weapon
-(20521, 4274, 1), -- Blunt Weapon Weak Point
-(20521, 4284, 5), -- Resist Bleed Attacks
-(20521, 4408, 1), -- HP Increase (1x)
-(20521, 4409, 1), -- MP Increase (1x)
-(20521, 4410, 10), -- Slightly Weak P. Atk.
-(20521, 4411, 10), -- Slightly Weak M. Atk.
-(20521, 4412, 12), -- Slightly Strong P. Def.
-(20521, 4413, 19), -- Extremely Strong M. Def.
-(20521, 4414, 2), -- Standard Type
-(20521, 4415, 3), -- One-handed Sword
-(20521, 4416, 2), -- Magic Creatures
+(20521, 4247, 1), -- NPC Windstrike - Slow
+(20521, 4273, 3), -- Resist Dagger
+(20521, 4274, 1), -- Blunt Attack Weak Point
+(20521, 4284, 5), -- Resist Bleeding
+(20521, 4408, 1), -- HP Modifiers
+(20521, 4409, 1), -- MP Modifiers
+(20521, 4410, 10), -- P. Atk. Modifiers
+(20521, 4411, 10), -- M. Atk. Modifiers
+(20521, 4412, 12), -- P. Def. Modifiers
+(20521, 4413, 19), -- M. Def. Modifiers
+(20521, 4414, 2), -- Armor Type
+(20521, 4415, 3), -- Weapon Type
+(20521, 4416, 2), -- Races
 (20521, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- White Fang
-(20522, 4408, 10), -- HP Increase (2x)
-(20522, 4409, 1), -- MP Increase (1x)
-(20522, 4410, 11), -- Average P. Atk.
-(20522, 4411, 11), -- Average M. Atk.
-(20522, 4412, 11), -- Average P. Def.
-(20522, 4413, 11), -- Average M. Def.
-(20522, 4414, 2), -- Standard Type
-(20522, 4415, 5), -- Blunt Weapons
-(20522, 4416, 4), -- Animals
+(20522, 4408, 10), -- HP Modifiers
+(20522, 4409, 1), -- MP Modifiers
+(20522, 4410, 11), -- P. Atk. Modifiers
+(20522, 4411, 11), -- M. Atk. Modifiers
+(20522, 4412, 11), -- P. Def. Modifiers
+(20522, 4413, 11), -- M. Def. Modifiers
+(20522, 4414, 2), -- Armor Type
+(20522, 4415, 5), -- Weapon Type
+(20522, 4416, 4), -- Races
 -- Grey Wolf Elder
-(20524, 4408, 9), -- HP Increase (1/2x)
-(20524, 4409, 1), -- MP Increase (1x)
-(20524, 4410, 13), -- Slightly Strong P. Atk.
-(20524, 4411, 13), -- Slightly Strong M. Atk.
-(20524, 4412, 9), -- Slightly Weak P. Def.
-(20524, 4413, 9), -- Slightly Weak M. Def.
-(20524, 4414, 2), -- Standard Type
-(20524, 4415, 5), -- Blunt Weapons
-(20524, 4416, 4), -- Animals
+(20524, 4408, 9), -- HP Modifiers
+(20524, 4409, 1), -- MP Modifiers
+(20524, 4410, 13), -- P. Atk. Modifiers
+(20524, 4411, 13), -- M. Atk. Modifiers
+(20524, 4412, 9), -- P. Def. Modifiers
+(20524, 4413, 9), -- M. Def. Modifiers
+(20524, 4414, 2), -- Armor Type
+(20524, 4415, 5), -- Weapon Type
+(20524, 4416, 4), -- Races
 -- Gray Wolf
-(20525, 4408, 1), -- HP Increase (1x)
-(20525, 4409, 1), -- MP Increase (1x)
-(20525, 4410, 11), -- Average P. Atk.
-(20525, 4411, 11), -- Average M. Atk.
-(20525, 4412, 11), -- Average P. Def.
-(20525, 4413, 11), -- Average M. Def.
-(20525, 4414, 2), -- Standard Type
-(20525, 4415, 3), -- One-handed Sword
-(20525, 4416, 4), -- Animals
+(20525, 4408, 1), -- HP Modifiers
+(20525, 4409, 1), -- MP Modifiers
+(20525, 4410, 11), -- P. Atk. Modifiers
+(20525, 4411, 11), -- M. Atk. Modifiers
+(20525, 4412, 11), -- P. Def. Modifiers
+(20525, 4413, 11), -- M. Def. Modifiers
+(20525, 4414, 2), -- Armor Type
+(20525, 4415, 3), -- Weapon Type
+(20525, 4416, 4), -- Races
 -- Obsidian Golem
 (20526, 4249, 1), -- Decrease Speed
-(20526, 4273, 3), -- Resist Daggers/Rapier Weapon
-(20526, 4274, 1), -- Blunt Weapon Weak Point
-(20526, 4284, 5), -- Resist Bleed Attacks
-(20526, 4408, 1), -- HP Increase (1x)
-(20526, 4409, 1), -- MP Increase (1x)
-(20526, 4410, 10), -- Slightly Weak P. Atk.
-(20526, 4411, 10), -- Slightly Weak M. Atk.
-(20526, 4412, 12), -- Slightly Strong P. Def.
-(20526, 4413, 19), -- Extremely Strong M. Def.
-(20526, 4414, 2), -- Standard Type
-(20526, 4415, 3), -- One-handed Sword
-(20526, 4416, 2), -- Magic Creatures
+(20526, 4273, 3), -- Resist Dagger
+(20526, 4274, 1), -- Blunt Attack Weak Point
+(20526, 4284, 5), -- Resist Bleeding
+(20526, 4408, 1), -- HP Modifiers
+(20526, 4409, 1), -- MP Modifiers
+(20526, 4410, 10), -- P. Atk. Modifiers
+(20526, 4411, 10), -- M. Atk. Modifiers
+(20526, 4412, 12), -- P. Def. Modifiers
+(20526, 4413, 19), -- M. Def. Modifiers
+(20526, 4414, 2), -- Armor Type
+(20526, 4415, 3), -- Weapon Type
+(20526, 4416, 2), -- Races
 (20526, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Great Snow Wolf
-(20527, 4408, 1), -- HP Increase (1x)
-(20527, 4409, 1), -- MP Increase (1x)
-(20527, 4410, 12), -- Slightly Strong P. Atk.
-(20527, 4411, 12), -- Slightly Strong M. Atk.
-(20527, 4412, 10), -- Slightly Weak P. Def.
-(20527, 4413, 10), -- Slightly Weak M. Def.
-(20527, 4414, 2), -- Standard Type
-(20527, 4415, 3), -- One-handed Sword
-(20527, 4416, 4), -- Animals
+(20527, 4408, 1), -- HP Modifiers
+(20527, 4409, 1), -- MP Modifiers
+(20527, 4410, 12), -- P. Atk. Modifiers
+(20527, 4411, 12), -- M. Atk. Modifiers
+(20527, 4412, 10), -- P. Def. Modifiers
+(20527, 4413, 10), -- M. Def. Modifiers
+(20527, 4414, 2), -- Armor Type
+(20527, 4415, 3), -- Weapon Type
+(20527, 4416, 4), -- Races
 -- Goblin Lord
-(20528, 4408, 1), -- HP Increase (1x)
-(20528, 4409, 1), -- MP Increase (1x)
-(20528, 4410, 12), -- Slightly Strong P. Atk.
-(20528, 4411, 12), -- Slightly Strong M. Atk.
-(20528, 4412, 10), -- Slightly Weak P. Def.
-(20528, 4413, 10), -- Slightly Weak M. Def.
-(20528, 4414, 2), -- Standard Type
-(20528, 4415, 7), -- Daggers
-(20528, 4416, 6), -- Humanoids
+(20528, 4408, 1), -- HP Modifiers
+(20528, 4409, 1), -- MP Modifiers
+(20528, 4410, 12), -- P. Atk. Modifiers
+(20528, 4411, 12), -- M. Atk. Modifiers
+(20528, 4412, 10), -- P. Def. Modifiers
+(20528, 4413, 10), -- M. Def. Modifiers
+(20528, 4414, 2), -- Armor Type
+(20528, 4415, 7), -- Weapon Type
+(20528, 4416, 6), -- Races
 -- Young Brown Keltir
-(20529, 4408, 1), -- HP Increase (1x)
-(20529, 4409, 1), -- MP Increase (1x)
-(20529, 4410, 11), -- Average P. Atk.
-(20529, 4411, 11), -- Average M. Atk.
-(20529, 4412, 11), -- Average P. Def.
-(20529, 4413, 11), -- Average M. Def.
-(20529, 4414, 2), -- Standard Type
-(20529, 4415, 3), -- One-handed Sword
-(20529, 4416, 4), -- Animals
+(20529, 4408, 1), -- HP Modifiers
+(20529, 4409, 1), -- MP Modifiers
+(20529, 4410, 11), -- P. Atk. Modifiers
+(20529, 4411, 11), -- M. Atk. Modifiers
+(20529, 4412, 11), -- P. Def. Modifiers
+(20529, 4413, 11), -- M. Def. Modifiers
+(20529, 4414, 2), -- Armor Type
+(20529, 4415, 3), -- Weapon Type
+(20529, 4416, 4), -- Races
 -- Young Red Keltir
-(20530, 4408, 1), -- HP Increase (1x)
-(20530, 4409, 1), -- MP Increase (1x)
-(20530, 4410, 11), -- Average P. Atk.
-(20530, 4411, 11), -- Average M. Atk.
-(20530, 4412, 11), -- Average P. Def.
-(20530, 4413, 11), -- Average M. Def.
-(20530, 4414, 2), -- Standard Type
-(20530, 4415, 3), -- One-handed Sword
-(20530, 4416, 4), -- Animals
+(20530, 4408, 1), -- HP Modifiers
+(20530, 4409, 1), -- MP Modifiers
+(20530, 4410, 11), -- P. Atk. Modifiers
+(20530, 4411, 11), -- M. Atk. Modifiers
+(20530, 4412, 11), -- P. Def. Modifiers
+(20530, 4413, 11), -- M. Def. Modifiers
+(20530, 4414, 2), -- Armor Type
+(20530, 4415, 3), -- Weapon Type
+(20530, 4416, 4), -- Races
 -- Young Prairie Keltir
-(20531, 4408, 1), -- HP Increase (1x)
-(20531, 4409, 1), -- MP Increase (1x)
-(20531, 4410, 11), -- Average P. Atk.
-(20531, 4411, 11), -- Average M. Atk.
-(20531, 4412, 11), -- Average P. Def.
-(20531, 4413, 11), -- Average M. Def.
-(20531, 4414, 2), -- Standard Type
-(20531, 4415, 3), -- One-handed Sword
-(20531, 4416, 4), -- Animals
+(20531, 4408, 1), -- HP Modifiers
+(20531, 4409, 1), -- MP Modifiers
+(20531, 4410, 11), -- P. Atk. Modifiers
+(20531, 4411, 11), -- M. Atk. Modifiers
+(20531, 4412, 11), -- P. Def. Modifiers
+(20531, 4413, 11), -- M. Def. Modifiers
+(20531, 4414, 2), -- Armor Type
+(20531, 4415, 3), -- Weapon Type
+(20531, 4416, 4), -- Races
 -- Brown Keltir
-(20532, 4408, 1), -- HP Increase (1x)
-(20532, 4409, 1), -- MP Increase (1x)
-(20532, 4410, 11), -- Average P. Atk.
-(20532, 4411, 11), -- Average M. Atk.
-(20532, 4412, 11), -- Average P. Def.
-(20532, 4413, 11), -- Average M. Def.
-(20532, 4414, 2), -- Standard Type
-(20532, 4415, 3), -- One-handed Sword
-(20532, 4416, 4), -- Animals
+(20532, 4408, 1), -- HP Modifiers
+(20532, 4409, 1), -- MP Modifiers
+(20532, 4410, 11), -- P. Atk. Modifiers
+(20532, 4411, 11), -- M. Atk. Modifiers
+(20532, 4412, 11), -- P. Def. Modifiers
+(20532, 4413, 11), -- M. Def. Modifiers
+(20532, 4414, 2), -- Armor Type
+(20532, 4415, 3), -- Weapon Type
+(20532, 4416, 4), -- Races
 -- Longtail Keltir
-(20533, 4408, 1), -- HP Increase (1x)
-(20533, 4409, 1), -- MP Increase (1x)
-(20533, 4410, 11), -- Average P. Atk.
-(20533, 4411, 11), -- Average M. Atk.
-(20533, 4412, 11), -- Average P. Def.
-(20533, 4413, 11), -- Average M. Def.
-(20533, 4414, 2), -- Standard Type
-(20533, 4415, 3), -- One-handed Sword
-(20533, 4416, 4), -- Animals
+(20533, 4408, 1), -- HP Modifiers
+(20533, 4409, 1), -- MP Modifiers
+(20533, 4410, 11), -- P. Atk. Modifiers
+(20533, 4411, 11), -- M. Atk. Modifiers
+(20533, 4412, 11), -- P. Def. Modifiers
+(20533, 4413, 11), -- M. Def. Modifiers
+(20533, 4414, 2), -- Armor Type
+(20533, 4415, 3), -- Weapon Type
+(20533, 4416, 4), -- Races
 -- Red Keltir
-(20534, 4408, 1), -- HP Increase (1x)
-(20534, 4409, 1), -- MP Increase (1x)
-(20534, 4410, 11), -- Average P. Atk.
-(20534, 4411, 11), -- Average M. Atk.
-(20534, 4412, 11), -- Average P. Def.
-(20534, 4413, 11), -- Average M. Def.
-(20534, 4414, 2), -- Standard Type
-(20534, 4415, 3), -- One-handed Sword
-(20534, 4416, 4), -- Animals
+(20534, 4408, 1), -- HP Modifiers
+(20534, 4409, 1), -- MP Modifiers
+(20534, 4410, 11), -- P. Atk. Modifiers
+(20534, 4411, 11), -- M. Atk. Modifiers
+(20534, 4412, 11), -- P. Def. Modifiers
+(20534, 4413, 11), -- M. Def. Modifiers
+(20534, 4414, 2), -- Armor Type
+(20534, 4415, 3), -- Weapon Type
+(20534, 4416, 4), -- Races
 -- Prairie Keltir
-(20535, 4408, 1), -- HP Increase (1x)
-(20535, 4409, 1), -- MP Increase (1x)
-(20535, 4410, 11), -- Average P. Atk.
-(20535, 4411, 11), -- Average M. Atk.
-(20535, 4412, 11), -- Average P. Def.
-(20535, 4413, 11), -- Average M. Def.
-(20535, 4414, 2), -- Standard Type
-(20535, 4415, 3), -- One-handed Sword
-(20535, 4416, 4), -- Animals
+(20535, 4408, 1), -- HP Modifiers
+(20535, 4409, 1), -- MP Modifiers
+(20535, 4410, 11), -- P. Atk. Modifiers
+(20535, 4411, 11), -- M. Atk. Modifiers
+(20535, 4412, 11), -- P. Def. Modifiers
+(20535, 4413, 11), -- M. Def. Modifiers
+(20535, 4414, 2), -- Armor Type
+(20535, 4415, 3), -- Weapon Type
+(20535, 4416, 4), -- Races
 -- Elder Brown Keltir
-(20536, 4408, 1), -- HP Increase (1x)
-(20536, 4409, 1), -- MP Increase (1x)
-(20536, 4410, 11), -- Average P. Atk.
-(20536, 4411, 11), -- Average M. Atk.
-(20536, 4412, 11), -- Average P. Def.
-(20536, 4413, 11), -- Average M. Def.
-(20536, 4414, 2), -- Standard Type
-(20536, 4415, 3), -- One-handed Sword
-(20536, 4416, 4), -- Animals
+(20536, 4408, 1), -- HP Modifiers
+(20536, 4409, 1), -- MP Modifiers
+(20536, 4410, 11), -- P. Atk. Modifiers
+(20536, 4411, 11), -- M. Atk. Modifiers
+(20536, 4412, 11), -- P. Def. Modifiers
+(20536, 4413, 11), -- M. Def. Modifiers
+(20536, 4414, 2), -- Armor Type
+(20536, 4415, 3), -- Weapon Type
+(20536, 4416, 4), -- Races
 -- Elder Red Keltir
-(20537, 4408, 1), -- HP Increase (1x)
-(20537, 4409, 1), -- MP Increase (1x)
-(20537, 4410, 11), -- Average P. Atk.
-(20537, 4411, 11), -- Average M. Atk.
-(20537, 4412, 11), -- Average P. Def.
-(20537, 4413, 11), -- Average M. Def.
-(20537, 4414, 2), -- Standard Type
-(20537, 4415, 3), -- One-handed Sword
-(20537, 4416, 4), -- Animals
+(20537, 4408, 1), -- HP Modifiers
+(20537, 4409, 1), -- MP Modifiers
+(20537, 4410, 11), -- P. Atk. Modifiers
+(20537, 4411, 11), -- M. Atk. Modifiers
+(20537, 4412, 11), -- P. Def. Modifiers
+(20537, 4413, 11), -- M. Def. Modifiers
+(20537, 4414, 2), -- Armor Type
+(20537, 4415, 3), -- Weapon Type
+(20537, 4416, 4), -- Races
 -- Elder Prairie Keltir
-(20538, 4408, 1), -- HP Increase (1x)
-(20538, 4409, 1), -- MP Increase (1x)
-(20538, 4410, 11), -- Average P. Atk.
-(20538, 4411, 11), -- Average M. Atk.
-(20538, 4412, 11), -- Average P. Def.
-(20538, 4413, 11), -- Average M. Def.
-(20538, 4414, 2), -- Standard Type
-(20538, 4415, 3), -- One-handed Sword
-(20538, 4416, 4), -- Animals
+(20538, 4408, 1), -- HP Modifiers
+(20538, 4409, 1), -- MP Modifiers
+(20538, 4410, 11), -- P. Atk. Modifiers
+(20538, 4411, 11), -- M. Atk. Modifiers
+(20538, 4412, 11), -- P. Def. Modifiers
+(20538, 4413, 11), -- M. Def. Modifiers
+(20538, 4414, 2), -- Armor Type
+(20538, 4415, 3), -- Weapon Type
+(20538, 4416, 4), -- Races
 -- Elder Longtail Keltir
-(20539, 4408, 1), -- HP Increase (1x)
-(20539, 4409, 1), -- MP Increase (1x)
-(20539, 4410, 11), -- Average P. Atk.
-(20539, 4411, 11), -- Average M. Atk.
-(20539, 4412, 11), -- Average P. Def.
-(20539, 4413, 11), -- Average M. Def.
-(20539, 4414, 2), -- Standard Type
-(20539, 4415, 3), -- One-handed Sword
-(20539, 4416, 4), -- Animals
+(20539, 4408, 1), -- HP Modifiers
+(20539, 4409, 1), -- MP Modifiers
+(20539, 4410, 11), -- P. Atk. Modifiers
+(20539, 4411, 11), -- M. Atk. Modifiers
+(20539, 4412, 11), -- P. Def. Modifiers
+(20539, 4413, 11), -- M. Def. Modifiers
+(20539, 4414, 2), -- Armor Type
+(20539, 4415, 3), -- Weapon Type
+(20539, 4416, 4), -- Races
 -- Gemstone Beast
-(20540, 4408, 1), -- HP Increase (1x)
-(20540, 4409, 1), -- MP Increase (1x)
-(20540, 4410, 10), -- Slightly Weak P. Atk.
-(20540, 4411, 10), -- Slightly Weak M. Atk.
-(20540, 4412, 12), -- Slightly Strong P. Def.
-(20540, 4413, 12), -- Slightly Strong M. Def.
-(20540, 4414, 2), -- Standard Type
-(20540, 4415, 3), -- One-handed Sword
-(20540, 4416, 3), -- Beasts
+(20540, 4408, 1), -- HP Modifiers
+(20540, 4409, 1), -- MP Modifiers
+(20540, 4410, 10), -- P. Atk. Modifiers
+(20540, 4411, 10), -- M. Atk. Modifiers
+(20540, 4412, 12), -- P. Def. Modifiers
+(20540, 4413, 12), -- M. Def. Modifiers
+(20540, 4414, 2), -- Armor Type
+(20540, 4415, 3), -- Weapon Type
+(20540, 4416, 3), -- Races
 -- Ore Bat
-(20541, 4076, 1), -- Slow
-(20541, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(20541, 4408, 1), -- HP Increase (1x)
-(20541, 4409, 1), -- MP Increase (1x)
-(20541, 4410, 12), -- Slightly Strong P. Atk.
-(20541, 4411, 12), -- Slightly Strong M. Atk.
-(20541, 4412, 10), -- Slightly Weak P. Def.
-(20541, 4413, 10), -- Slightly Weak M. Def.
-(20541, 4414, 2), -- Standard Type
-(20541, 4415, 3), -- One-handed Sword
-(20541, 4416, 4), -- Animals
+(20541, 4076, 1), -- Reduction in movement speed
+(20541, 4276, 1), -- Archery Attack Weak Point
+(20541, 4408, 1), -- HP Modifiers
+(20541, 4409, 1), -- MP Modifiers
+(20541, 4410, 12), -- P. Atk. Modifiers
+(20541, 4411, 12), -- M. Atk. Modifiers
+(20541, 4412, 10), -- P. Def. Modifiers
+(20541, 4413, 10), -- M. Def. Modifiers
+(20541, 4414, 2), -- Armor Type
+(20541, 4415, 3), -- Weapon Type
+(20541, 4416, 4), -- Races
 -- Skeleton Longbowman
-(20542, 4408, 1), -- HP Increase (1x)
-(20542, 4409, 1), -- MP Increase (1x)
-(20542, 4410, 12), -- Slightly Strong P. Atk.
-(20542, 4411, 12), -- Slightly Strong M. Atk.
-(20542, 4412, 10), -- Slightly Weak P. Def.
-(20542, 4413, 10), -- Slightly Weak M. Def.
-(20542, 4414, 2), -- Standard Type
-(20542, 4415, 9), -- Bows
-(20542, 4416, 1), -- Undead
+(20542, 4408, 1), -- HP Modifiers
+(20542, 4409, 1), -- MP Modifiers
+(20542, 4410, 12), -- P. Atk. Modifiers
+(20542, 4411, 12), -- M. Atk. Modifiers
+(20542, 4412, 10), -- P. Def. Modifiers
+(20542, 4413, 10), -- M. Def. Modifiers
+(20542, 4414, 2), -- Armor Type
+(20542, 4415, 9), -- Weapon Type
+(20542, 4416, 1), -- Races
 -- Ghost
-(20543, 4408, 1), -- HP Increase (1x)
-(20543, 4409, 1), -- MP Increase (1x)
-(20543, 4410, 12), -- Slightly Strong P. Atk.
-(20543, 4411, 12), -- Slightly Strong M. Atk.
-(20543, 4412, 10), -- Slightly Weak P. Def.
-(20543, 4413, 10), -- Slightly Weak M. Def.
-(20543, 4414, 2), -- Standard Type
-(20543, 4415, 3), -- One-handed Sword
-(20543, 4416, 1), -- Undead
+(20543, 4408, 1), -- HP Modifiers
+(20543, 4409, 1), -- MP Modifiers
+(20543, 4410, 12), -- P. Atk. Modifiers
+(20543, 4411, 12), -- M. Atk. Modifiers
+(20543, 4412, 10), -- P. Def. Modifiers
+(20543, 4413, 10), -- M. Def. Modifiers
+(20543, 4414, 2), -- Armor Type
+(20543, 4415, 3), -- Weapon Type
+(20543, 4416, 1), -- Races
 -- Elder Keltir
-(20544, 4408, 1), -- HP Increase (1x)
-(20544, 4409, 1), -- MP Increase (1x)
-(20544, 4410, 12), -- Slightly Strong P. Atk.
-(20544, 4411, 12), -- Slightly Strong M. Atk.
-(20544, 4412, 10), -- Slightly Weak P. Def.
-(20544, 4413, 10), -- Slightly Weak M. Def.
-(20544, 4414, 2), -- Standard Type
-(20544, 4415, 3), -- One-handed Sword
-(20544, 4416, 4), -- Animals
+(20544, 4408, 1), -- HP Modifiers
+(20544, 4409, 1), -- MP Modifiers
+(20544, 4410, 12), -- P. Atk. Modifiers
+(20544, 4411, 12), -- M. Atk. Modifiers
+(20544, 4412, 10), -- P. Def. Modifiers
+(20544, 4413, 10), -- M. Def. Modifiers
+(20544, 4414, 2), -- Armor Type
+(20544, 4415, 3), -- Weapon Type
+(20544, 4416, 4), -- Races
 -- Young Keltir
-(20545, 4408, 1), -- HP Increase (1x)
-(20545, 4409, 1), -- MP Increase (1x)
-(20545, 4410, 11), -- Average P. Atk.
-(20545, 4411, 11), -- Average M. Atk.
-(20545, 4412, 11), -- Average P. Def.
-(20545, 4413, 11), -- Average M. Def.
-(20545, 4414, 2), -- Standard Type
-(20545, 4415, 3), -- One-handed Sword
-(20545, 4416, 4), -- Animals
+(20545, 4408, 1), -- HP Modifiers
+(20545, 4409, 1), -- MP Modifiers
+(20545, 4410, 11), -- P. Atk. Modifiers
+(20545, 4411, 11), -- M. Atk. Modifiers
+(20545, 4412, 11), -- P. Def. Modifiers
+(20545, 4413, 11), -- M. Def. Modifiers
+(20545, 4414, 2), -- Armor Type
+(20545, 4415, 3), -- Weapon Type
+(20545, 4416, 4), -- Races
 -- Turek Orc Elder
-(20546, 4002, 3), -- HP Drain
-(20546, 4408, 1), -- HP Increase (1x)
-(20546, 4409, 1), -- MP Increase (1x)
-(20546, 4410, 10), -- Slightly Weak P. Atk.
-(20546, 4411, 10), -- Slightly Weak M. Atk.
-(20546, 4412, 12), -- Slightly Strong P. Def.
-(20546, 4413, 12), -- Slightly Strong M. Def.
-(20546, 4414, 2), -- Standard Type
-(20546, 4415, 5), -- Blunt Weapons
-(20546, 4416, 6), -- Humanoids
+(20546, 4002, 3), -- NPC HP Drain
+(20546, 4408, 1), -- HP Modifiers
+(20546, 4409, 1), -- MP Modifiers
+(20546, 4410, 10), -- P. Atk. Modifiers
+(20546, 4411, 10), -- M. Atk. Modifiers
+(20546, 4412, 12), -- P. Def. Modifiers
+(20546, 4413, 12), -- M. Def. Modifiers
+(20546, 4414, 2), -- Armor Type
+(20546, 4415, 5), -- Weapon Type
+(20546, 4416, 6), -- Races
 -- Ol Mahum Reserve
-(20547, 4408, 1), -- HP Increase (1x)
-(20547, 4409, 1), -- MP Increase (1x)
-(20547, 4410, 10), -- Slightly Weak P. Atk.
-(20547, 4411, 10), -- Slightly Weak M. Atk.
-(20547, 4412, 12), -- Slightly Strong P. Def.
-(20547, 4413, 12), -- Slightly Strong M. Def.
-(20547, 4414, 2), -- Standard Type
-(20547, 4415, 3), -- One-handed Sword
-(20547, 4416, 6), -- Humanoids
+(20547, 4408, 1), -- HP Modifiers
+(20547, 4409, 1), -- MP Modifiers
+(20547, 4410, 10), -- P. Atk. Modifiers
+(20547, 4411, 10), -- M. Atk. Modifiers
+(20547, 4412, 12), -- P. Def. Modifiers
+(20547, 4413, 12), -- M. Def. Modifiers
+(20547, 4414, 2), -- Armor Type
+(20547, 4415, 3), -- Weapon Type
+(20547, 4416, 6), -- Races
 -- Ol Mahum Deserter
-(20548, 4408, 1), -- HP Increase (1x)
-(20548, 4409, 1), -- MP Increase (1x)
-(20548, 4410, 11), -- Average P. Atk.
-(20548, 4411, 11), -- Average M. Atk.
-(20548, 4412, 11), -- Average P. Def.
-(20548, 4413, 11), -- Average M. Def.
-(20548, 4414, 2), -- Standard Type
-(20548, 4415, 3), -- One-handed Sword
-(20548, 4416, 6), -- Humanoids
+(20548, 4408, 1), -- HP Modifiers
+(20548, 4409, 1), -- MP Modifiers
+(20548, 4410, 11), -- P. Atk. Modifiers
+(20548, 4411, 11), -- M. Atk. Modifiers
+(20548, 4412, 11), -- P. Def. Modifiers
+(20548, 4413, 11), -- M. Def. Modifiers
+(20548, 4414, 2), -- Armor Type
+(20548, 4415, 3), -- Weapon Type
+(20548, 4416, 6), -- Races
 -- Ol Mahum Lord
-(20549, 4033, 3), -- Aura Burn
-(20549, 4408, 10), -- HP Increase (2x)
-(20549, 4409, 1), -- MP Increase (1x)
-(20549, 4410, 12), -- Slightly Strong P. Atk.
-(20549, 4411, 12), -- Slightly Strong M. Atk.
-(20549, 4412, 10), -- Slightly Weak P. Def.
-(20549, 4413, 10), -- Slightly Weak M. Def.
-(20549, 4414, 2), -- Standard Type
-(20549, 4415, 3), -- One-handed Sword
-(20549, 4416, 6), -- Humanoids
+(20549, 4033, 3), -- NPC Burn
+(20549, 4408, 10), -- HP Modifiers
+(20549, 4409, 1), -- MP Modifiers
+(20549, 4410, 12), -- P. Atk. Modifiers
+(20549, 4411, 12), -- M. Atk. Modifiers
+(20549, 4412, 10), -- P. Def. Modifiers
+(20549, 4413, 10), -- M. Def. Modifiers
+(20549, 4414, 2), -- Armor Type
+(20549, 4415, 3), -- Weapon Type
+(20549, 4416, 6), -- Races
 -- Guardian Basilisk
-(20550, 4029, 2), -- Shield
-(20550, 4408, 1), -- HP Increase (1x)
-(20550, 4409, 1), -- MP Increase (1x)
-(20550, 4410, 11), -- Average P. Atk.
-(20550, 4411, 11), -- Average M. Atk.
-(20550, 4412, 11), -- Average P. Def.
-(20550, 4413, 11), -- Average M. Def.
-(20550, 4414, 2), -- Standard Type
-(20550, 4415, 3), -- One-handed Sword
-(20550, 4416, 3), -- Beasts
+(20550, 4029, 2), -- NPC Shield
+(20550, 4408, 1), -- HP Modifiers
+(20550, 4409, 1), -- MP Modifiers
+(20550, 4410, 11), -- P. Atk. Modifiers
+(20550, 4411, 11), -- M. Atk. Modifiers
+(20550, 4412, 11), -- P. Def. Modifiers
+(20550, 4413, 11), -- M. Def. Modifiers
+(20550, 4414, 2), -- Armor Type
+(20550, 4415, 3), -- Weapon Type
+(20550, 4416, 3), -- Races
 -- Road Scavenger
-(20551, 4408, 1), -- HP Increase (1x)
-(20551, 4409, 1), -- MP Increase (1x)
-(20551, 4410, 11), -- Average P. Atk.
-(20551, 4411, 11), -- Average M. Atk.
-(20551, 4412, 11), -- Average P. Def.
-(20551, 4413, 11), -- Average M. Def.
-(20551, 4414, 3), -- Light Armor Type
-(20551, 4415, 7), -- Daggers
-(20551, 4416, 6), -- Humanoids
+(20551, 4408, 1), -- HP Modifiers
+(20551, 4409, 1), -- MP Modifiers
+(20551, 4410, 11), -- P. Atk. Modifiers
+(20551, 4411, 11), -- M. Atk. Modifiers
+(20551, 4412, 11), -- P. Def. Modifiers
+(20551, 4413, 11), -- M. Def. Modifiers
+(20551, 4414, 3), -- Armor Type
+(20551, 4415, 7), -- Weapon Type
+(20551, 4416, 6), -- Races
 -- Fettered Soul
-(20552, 4074, 2), -- Haste
-(20552, 4274, 1), -- Blunt Weapon Weak Point
-(20552, 4408, 10), -- HP Increase (2x)
-(20552, 4409, 1), -- MP Increase (1x)
-(20552, 4410, 11), -- Average P. Atk.
-(20552, 4411, 11), -- Average M. Atk.
-(20552, 4412, 11), -- Average P. Def.
-(20552, 4413, 11), -- Average M. Def.
-(20552, 4414, 2), -- Standard Type
-(20552, 4415, 3), -- One-handed Sword
-(20552, 4416, 1), -- Undead
+(20552, 4074, 2), -- NPC Haste
+(20552, 4274, 1), -- Blunt Attack Weak Point
+(20552, 4408, 10), -- HP Modifiers
+(20552, 4409, 1), -- MP Modifiers
+(20552, 4410, 11), -- P. Atk. Modifiers
+(20552, 4411, 11), -- M. Atk. Modifiers
+(20552, 4412, 11), -- P. Def. Modifiers
+(20552, 4413, 11), -- M. Def. Modifiers
+(20552, 4414, 2), -- Armor Type
+(20552, 4415, 3), -- Weapon Type
+(20552, 4416, 1), -- Races
 -- Windsus
-(20553, 4408, 1), -- HP Increase (1x)
-(20553, 4409, 1), -- MP Increase (1x)
-(20553, 4410, 11), -- Average P. Atk.
-(20553, 4411, 11), -- Average M. Atk.
-(20553, 4412, 11), -- Average P. Def.
-(20553, 4413, 11), -- Average M. Def.
-(20553, 4414, 2), -- Standard Type
-(20553, 4415, 3), -- One-handed Sword
-(20553, 4416, 4), -- Animals
+(20553, 4408, 1), -- HP Modifiers
+(20553, 4409, 1), -- MP Modifiers
+(20553, 4410, 11), -- P. Atk. Modifiers
+(20553, 4411, 11), -- M. Atk. Modifiers
+(20553, 4412, 11), -- P. Def. Modifiers
+(20553, 4413, 11), -- M. Def. Modifiers
+(20553, 4414, 2), -- Armor Type
+(20553, 4415, 3), -- Weapon Type
+(20553, 4416, 4), -- Races
 -- Grandis
-(20554, 4089, 1), -- Spirit Bear
-(20554, 4090, 1), -- Spirit Wolf
-(20554, 4091, 1), -- Spirit Ogre
-(20554, 4092, 1), -- Spirit Puma
-(20554, 4408, 1), -- HP Increase (1x)
-(20554, 4409, 1), -- MP Increase (1x)
-(20554, 4410, 11), -- Average P. Atk.
-(20554, 4411, 11), -- Average M. Atk.
-(20554, 4412, 11), -- Average P. Def.
-(20554, 4413, 11), -- Average M. Def.
-(20554, 4414, 2), -- Standard Type
-(20554, 4415, 3), -- One-handed Sword
-(20554, 4416, 11), -- Giants
+(20554, 4089, 1), -- NPC Bear Spirit Totem
+(20554, 4090, 1), -- NPC Wolf Spirit Totem
+(20554, 4091, 1), -- NPC Ogre Spirit Totem
+(20554, 4092, 1), -- NPC Puma Spirit Totem
+(20554, 4408, 1), -- HP Modifiers
+(20554, 4409, 1), -- MP Modifiers
+(20554, 4410, 11), -- P. Atk. Modifiers
+(20554, 4411, 11), -- M. Atk. Modifiers
+(20554, 4412, 11), -- P. Def. Modifiers
+(20554, 4413, 11), -- M. Def. Modifiers
+(20554, 4414, 2), -- Armor Type
+(20554, 4415, 3), -- Weapon Type
+(20554, 4416, 11), -- Races
 -- Giant Fungus
-(20555, 4076, 3), -- Slow
-(20555, 4277, 5), -- Resist Poison Attacks
-(20555, 4408, 1), -- HP Increase (1x)
-(20555, 4409, 1), -- MP Increase (1x)
-(20555, 4410, 11), -- Average P. Atk.
-(20555, 4411, 11), -- Average M. Atk.
-(20555, 4412, 11), -- Average P. Def.
-(20555, 4413, 11), -- Average M. Def.
-(20555, 4414, 2), -- Standard Type
-(20555, 4415, 3), -- One-handed Sword
-(20555, 4416, 5), -- Plants
+(20555, 4076, 3), -- Reduction in movement speed
+(20555, 4277, 5), -- Resist Poison
+(20555, 4408, 1), -- HP Modifiers
+(20555, 4409, 1), -- MP Modifiers
+(20555, 4410, 11), -- P. Atk. Modifiers
+(20555, 4411, 11), -- M. Atk. Modifiers
+(20555, 4412, 11), -- P. Def. Modifiers
+(20555, 4413, 11), -- M. Def. Modifiers
+(20555, 4414, 2), -- Armor Type
+(20555, 4415, 3), -- Weapon Type
+(20555, 4416, 5), -- Races
 -- Giant Monstereye
-(20556, 4076, 3), -- Slow
-(20556, 4155, 4), -- Twister
-(20556, 4160, 4), -- Aura Burn
-(20556, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(20556, 4408, 1), -- HP Increase (1x)
-(20556, 4409, 1), -- MP Increase (1x)
-(20556, 4410, 12), -- Slightly Strong P. Atk.
-(20556, 4411, 12), -- Slightly Strong M. Atk.
-(20556, 4412, 10), -- Slightly Weak P. Def.
-(20556, 4413, 10), -- Slightly Weak M. Def.
-(20556, 4414, 2), -- Standard Type
-(20556, 4415, 3), -- One-handed Sword
-(20556, 4416, 2), -- Magic Creatures
+(20556, 4076, 3), -- Reduction in movement speed
+(20556, 4155, 4), -- NPC Twister - Magic
+(20556, 4160, 4), -- NPC Aura Burn - Magic
+(20556, 4276, 1), -- Archery Attack Weak Point
+(20556, 4408, 1), -- HP Modifiers
+(20556, 4409, 1), -- MP Modifiers
+(20556, 4410, 12), -- P. Atk. Modifiers
+(20556, 4411, 12), -- M. Atk. Modifiers
+(20556, 4412, 10), -- P. Def. Modifiers
+(20556, 4413, 10), -- M. Def. Modifiers
+(20556, 4414, 2), -- Armor Type
+(20556, 4415, 3), -- Weapon Type
+(20556, 4416, 2), -- Races
 -- Dire Wyrm
-(20557, 4408, 1), -- HP Increase (1x)
-(20557, 4409, 1), -- MP Increase (1x)
-(20557, 4410, 10), -- Slightly Weak P. Atk.
-(20557, 4411, 10), -- Slightly Weak M. Atk.
-(20557, 4412, 12), -- Slightly Strong P. Def.
-(20557, 4413, 12), -- Slightly Strong M. Def.
-(20557, 4414, 2), -- Standard Type
-(20557, 4415, 3), -- One-handed Sword
-(20557, 4416, 10), -- Dragons
+(20557, 4408, 1), -- HP Modifiers
+(20557, 4409, 1), -- MP Modifiers
+(20557, 4410, 10), -- P. Atk. Modifiers
+(20557, 4411, 10), -- M. Atk. Modifiers
+(20557, 4412, 12), -- P. Def. Modifiers
+(20557, 4413, 12), -- M. Def. Modifiers
+(20557, 4414, 2), -- Armor Type
+(20557, 4415, 3), -- Weapon Type
+(20557, 4416, 10), -- Races
 -- Rotting tree
-(20558, 4076, 3), -- Slow
-(20558, 4274, 1), -- Blunt Weapon Weak Point
-(20558, 4408, 1), -- HP Increase (1x)
-(20558, 4409, 1), -- MP Increase (1x)
-(20558, 4410, 10), -- Slightly Weak P. Atk.
-(20558, 4411, 10), -- Slightly Weak M. Atk.
-(20558, 4412, 12), -- Slightly Strong P. Def.
-(20558, 4413, 12), -- Slightly Strong M. Def.
-(20558, 4414, 2), -- Standard Type
-(20558, 4415, 3), -- One-handed Sword
-(20558, 4416, 5), -- Plants
+(20558, 4076, 3), -- Reduction in movement speed
+(20558, 4274, 1), -- Blunt Attack Weak Point
+(20558, 4408, 1), -- HP Modifiers
+(20558, 4409, 1), -- MP Modifiers
+(20558, 4410, 10), -- P. Atk. Modifiers
+(20558, 4411, 10), -- M. Atk. Modifiers
+(20558, 4412, 12), -- P. Def. Modifiers
+(20558, 4413, 12), -- M. Def. Modifiers
+(20558, 4414, 2), -- Armor Type
+(20558, 4415, 3), -- Weapon Type
+(20558, 4416, 5), -- Races
 -- Rotting Golem
-(20559, 4250, 4), -- Twister
-(20559, 4273, 3), -- Resist Daggers/Rapier Weapon
-(20559, 4274, 1), -- Blunt Weapon Weak Point
-(20559, 4284, 5), -- Resist Bleed Attacks
-(20559, 4408, 1), -- HP Increase (1x)
-(20559, 4409, 1), -- MP Increase (1x)
-(20559, 4410, 10), -- Slightly Weak P. Atk.
-(20559, 4411, 10), -- Slightly Weak M. Atk.
-(20559, 4412, 12), -- Slightly Strong P. Def.
-(20559, 4413, 19), -- Extremely Strong M. Def.
-(20559, 4414, 2), -- Standard Type
-(20559, 4415, 3), -- One-handed Sword
-(20559, 4416, 2), -- Magic Creatures
+(20559, 4250, 4), -- NPC Twister - Slow
+(20559, 4273, 3), -- Resist Dagger
+(20559, 4274, 1), -- Blunt Attack Weak Point
+(20559, 4284, 5), -- Resist Bleeding
+(20559, 4408, 1), -- HP Modifiers
+(20559, 4409, 1), -- MP Modifiers
+(20559, 4410, 10), -- P. Atk. Modifiers
+(20559, 4411, 10), -- M. Atk. Modifiers
+(20559, 4412, 12), -- P. Def. Modifiers
+(20559, 4413, 19), -- M. Def. Modifiers
+(20559, 4414, 2), -- Armor Type
+(20559, 4415, 3), -- Weapon Type
+(20559, 4416, 2), -- Races
 (20559, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Trisalim Spider
-(20560, 4408, 1), -- HP Increase (1x)
-(20560, 4409, 1), -- MP Increase (1x)
-(20560, 4410, 12), -- Slightly Strong P. Atk.
-(20560, 4411, 12), -- Slightly Strong M. Atk.
-(20560, 4412, 10), -- Slightly Weak P. Def.
-(20560, 4413, 10), -- Slightly Weak M. Def.
-(20560, 4414, 2), -- Standard Type
-(20560, 4415, 3), -- One-handed Sword
-(20560, 4416, 12), -- Bugs
+(20560, 4408, 1), -- HP Modifiers
+(20560, 4409, 1), -- MP Modifiers
+(20560, 4410, 12), -- P. Atk. Modifiers
+(20560, 4411, 12), -- M. Atk. Modifiers
+(20560, 4412, 10), -- P. Def. Modifiers
+(20560, 4413, 10), -- M. Def. Modifiers
+(20560, 4414, 2), -- Armor Type
+(20560, 4415, 3), -- Weapon Type
+(20560, 4416, 12), -- Races
 -- Trisalim Tarantula
 (20561, 4035, 4), -- Poison
-(20561, 4408, 1), -- HP Increase (1x)
-(20561, 4409, 1), -- MP Increase (1x)
-(20561, 4410, 10), -- Slightly Weak P. Atk.
-(20561, 4411, 10), -- Slightly Weak M. Atk.
-(20561, 4412, 12), -- Slightly Strong P. Def.
-(20561, 4413, 12), -- Slightly Strong M. Def.
-(20561, 4414, 2), -- Standard Type
-(20561, 4415, 3), -- One-handed Sword
-(20561, 4416, 12), -- Bugs
+(20561, 4408, 1), -- HP Modifiers
+(20561, 4409, 1), -- MP Modifiers
+(20561, 4410, 10), -- P. Atk. Modifiers
+(20561, 4411, 10), -- M. Atk. Modifiers
+(20561, 4412, 12), -- P. Def. Modifiers
+(20561, 4413, 12), -- M. Def. Modifiers
+(20561, 4414, 2), -- Armor Type
+(20561, 4415, 3), -- Weapon Type
+(20561, 4416, 12), -- Races
 -- Spore Zombie
-(20562, 4250, 4), -- Twister
-(20562, 4284, 5), -- Resist Bleed Attacks
-(20562, 4408, 1), -- HP Increase (1x)
-(20562, 4409, 1), -- MP Increase (1x)
-(20562, 4410, 12), -- Slightly Strong P. Atk.
-(20562, 4411, 12), -- Slightly Strong M. Atk.
-(20562, 4412, 10), -- Slightly Weak P. Def.
-(20562, 4413, 13), -- Slightly Strong M. Def.
-(20562, 4414, 2), -- Standard Type
-(20562, 4415, 3), -- One-handed Sword
-(20562, 4416, 1), -- Undead
+(20562, 4250, 4), -- NPC Twister - Slow
+(20562, 4284, 5), -- Resist Bleeding
+(20562, 4408, 1), -- HP Modifiers
+(20562, 4409, 1), -- MP Modifiers
+(20562, 4410, 12), -- P. Atk. Modifiers
+(20562, 4411, 12), -- M. Atk. Modifiers
+(20562, 4412, 10), -- P. Def. Modifiers
+(20562, 4413, 13), -- M. Def. Modifiers
+(20562, 4414, 2), -- Armor Type
+(20562, 4415, 3), -- Weapon Type
+(20562, 4416, 1), -- Races
 -- Manashen Gargoyle
-(20563, 4073, 4), -- Stun
-(20563, 4273, 3), -- Resist Daggers/Rapier Weapon
-(20563, 4274, 1), -- Blunt Weapon Weak Point
-(20563, 4408, 1), -- HP Increase (1x)
-(20563, 4409, 1), -- MP Increase (1x)
-(20563, 4410, 12), -- Slightly Strong P. Atk.
-(20563, 4411, 12), -- Slightly Strong M. Atk.
-(20563, 4412, 10), -- Slightly Weak P. Def.
-(20563, 4413, 10), -- Slightly Weak M. Def.
-(20563, 4414, 2), -- Standard Type
-(20563, 4415, 3), -- One-handed Sword
-(20563, 4416, 2), -- Magic Creatures
+(20563, 4073, 4), -- Shock
+(20563, 4273, 3), -- Resist Dagger
+(20563, 4274, 1), -- Blunt Attack Weak Point
+(20563, 4408, 1), -- HP Modifiers
+(20563, 4409, 1), -- MP Modifiers
+(20563, 4410, 12), -- P. Atk. Modifiers
+(20563, 4411, 12), -- M. Atk. Modifiers
+(20563, 4412, 10), -- P. Def. Modifiers
+(20563, 4413, 10), -- M. Def. Modifiers
+(20563, 4414, 2), -- Armor Type
+(20563, 4415, 3), -- Weapon Type
+(20563, 4416, 2), -- Races
 (20563, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Enchanted Monstereye
-(20564, 4076, 3), -- Slow
-(20564, 4151, 4), -- Wind Strike
-(20564, 4160, 4), -- Aura Burn
-(20564, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(20564, 4408, 1), -- HP Increase (1x)
-(20564, 4409, 1), -- MP Increase (1x)
-(20564, 4410, 12), -- Slightly Strong P. Atk.
-(20564, 4411, 12), -- Slightly Strong M. Atk.
-(20564, 4412, 10), -- Slightly Weak P. Def.
-(20564, 4413, 10), -- Slightly Weak M. Def.
-(20564, 4414, 2), -- Standard Type
-(20564, 4415, 3), -- One-handed Sword
-(20564, 4416, 2), -- Magic Creatures
+(20564, 4076, 3), -- Reduction in movement speed
+(20564, 4151, 4), -- NPC Windstrike - Magic
+(20564, 4160, 4), -- NPC Aura Burn - Magic
+(20564, 4276, 1), -- Archery Attack Weak Point
+(20564, 4408, 1), -- HP Modifiers
+(20564, 4409, 1), -- MP Modifiers
+(20564, 4410, 12), -- P. Atk. Modifiers
+(20564, 4411, 12), -- M. Atk. Modifiers
+(20564, 4412, 10), -- P. Def. Modifiers
+(20564, 4413, 10), -- M. Def. Modifiers
+(20564, 4414, 2), -- Armor Type
+(20564, 4415, 3), -- Weapon Type
+(20564, 4416, 2), -- Races
 -- Enchanted Stone Golem
-(20565, 4254, 4), -- Prominence
-(20565, 4273, 3), -- Resist Daggers/Rapier Weapon
-(20565, 4274, 1), -- Blunt Weapon Weak Point
-(20565, 4284, 5), -- Resist Bleed Attacks
-(20565, 4408, 1), -- HP Increase (1x)
-(20565, 4409, 1), -- MP Increase (1x)
-(20565, 4410, 12), -- Slightly Strong P. Atk.
-(20565, 4411, 12), -- Slightly Strong M. Atk.
-(20565, 4412, 10), -- Slightly Weak P. Def.
-(20565, 4413, 18), -- Extremely Strong M. Def.
-(20565, 4414, 2), -- Standard Type
-(20565, 4415, 3), -- One-handed Sword
-(20565, 4416, 2), -- Magic Creatures
+(20565, 4254, 4), -- NPC Prominence - Slow
+(20565, 4273, 3), -- Resist Dagger
+(20565, 4274, 1), -- Blunt Attack Weak Point
+(20565, 4284, 5), -- Resist Bleeding
+(20565, 4408, 1), -- HP Modifiers
+(20565, 4409, 1), -- MP Modifiers
+(20565, 4410, 12), -- P. Atk. Modifiers
+(20565, 4411, 12), -- M. Atk. Modifiers
+(20565, 4412, 10), -- P. Def. Modifiers
+(20565, 4413, 18), -- M. Def. Modifiers
+(20565, 4414, 2), -- Armor Type
+(20565, 4415, 3), -- Weapon Type
+(20565, 4416, 2), -- Races
 (20565, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Enchanted Iron Golem
-(20566, 4252, 4), -- Flame Strike
-(20566, 4273, 3), -- Resist Daggers/Rapier Weapon
-(20566, 4274, 1), -- Blunt Weapon Weak Point
-(20566, 4284, 5), -- Resist Bleed Attacks
-(20566, 4408, 1), -- HP Increase (1x)
-(20566, 4409, 1), -- MP Increase (1x)
-(20566, 4410, 10), -- Slightly Weak P. Atk.
-(20566, 4411, 10), -- Slightly Weak M. Atk.
-(20566, 4412, 12), -- Slightly Strong P. Def.
-(20566, 4413, 19), -- Extremely Strong M. Def.
-(20566, 4414, 2), -- Standard Type
-(20566, 4415, 3), -- One-handed Sword
-(20566, 4416, 2), -- Magic Creatures
+(20566, 4252, 4), -- NPC Flame - Slow
+(20566, 4273, 3), -- Resist Dagger
+(20566, 4274, 1), -- Blunt Attack Weak Point
+(20566, 4284, 5), -- Resist Bleeding
+(20566, 4408, 1), -- HP Modifiers
+(20566, 4409, 1), -- MP Modifiers
+(20566, 4410, 10), -- P. Atk. Modifiers
+(20566, 4411, 10), -- M. Atk. Modifiers
+(20566, 4412, 12), -- P. Def. Modifiers
+(20566, 4413, 19), -- M. Def. Modifiers
+(20566, 4414, 2), -- Armor Type
+(20566, 4415, 3), -- Weapon Type
+(20566, 4416, 2), -- Races
 (20566, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Enchanted Gargoyle
-(20567, 4073, 4), -- Stun
-(20567, 4273, 3), -- Resist Daggers/Rapier Weapon
-(20567, 4274, 1), -- Blunt Weapon Weak Point
-(20567, 4408, 1), -- HP Increase (1x)
-(20567, 4409, 1), -- MP Increase (1x)
-(20567, 4410, 12), -- Slightly Strong P. Atk.
-(20567, 4411, 12), -- Slightly Strong M. Atk.
-(20567, 4412, 10), -- Slightly Weak P. Def.
-(20567, 4413, 10), -- Slightly Weak M. Def.
-(20567, 4414, 2), -- Standard Type
-(20567, 4415, 3), -- One-handed Sword
-(20567, 4416, 2), -- Magic Creatures
+(20567, 4073, 4), -- Shock
+(20567, 4273, 3), -- Resist Dagger
+(20567, 4274, 1), -- Blunt Attack Weak Point
+(20567, 4408, 1), -- HP Modifiers
+(20567, 4409, 1), -- MP Modifiers
+(20567, 4410, 12), -- P. Atk. Modifiers
+(20567, 4411, 12), -- M. Atk. Modifiers
+(20567, 4412, 10), -- P. Def. Modifiers
+(20567, 4413, 10), -- M. Def. Modifiers
+(20567, 4414, 2), -- Armor Type
+(20567, 4415, 3), -- Weapon Type
+(20567, 4416, 2), -- Races
 (20567, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Formor
-(20568, 4408, 1), -- HP Increase (1x)
-(20568, 4409, 1), -- MP Increase (1x)
-(20568, 4410, 11), -- Average P. Atk.
-(20568, 4411, 11), -- Average M. Atk.
-(20568, 4412, 11), -- Average P. Def.
-(20568, 4413, 11), -- Average M. Def.
-(20568, 4414, 2), -- Standard Type
-(20568, 4415, 3), -- One-handed Sword
-(20568, 4416, 11), -- Giants
+(20568, 4408, 1), -- HP Modifiers
+(20568, 4409, 1), -- MP Modifiers
+(20568, 4410, 11), -- P. Atk. Modifiers
+(20568, 4411, 11), -- M. Atk. Modifiers
+(20568, 4412, 11), -- P. Def. Modifiers
+(20568, 4413, 11), -- M. Def. Modifiers
+(20568, 4414, 2), -- Armor Type
+(20568, 4415, 3), -- Weapon Type
+(20568, 4416, 11), -- Races
 -- Formor Elder
-(20569, 4028, 2), -- Might
-(20569, 4408, 1), -- HP Increase (1x)
-(20569, 4409, 1), -- MP Increase (1x)
-(20569, 4410, 11), -- Average P. Atk.
-(20569, 4411, 11), -- Average M. Atk.
-(20569, 4412, 11), -- Average P. Def.
-(20569, 4413, 11), -- Average M. Def.
-(20569, 4414, 2), -- Standard Type
-(20569, 4415, 3), -- One-handed Sword
-(20569, 4416, 11), -- Giants
+(20569, 4028, 2), -- NPC Might
+(20569, 4408, 1), -- HP Modifiers
+(20569, 4409, 1), -- MP Modifiers
+(20569, 4410, 11), -- P. Atk. Modifiers
+(20569, 4411, 11), -- M. Atk. Modifiers
+(20569, 4412, 11), -- P. Def. Modifiers
+(20569, 4413, 11), -- M. Def. Modifiers
+(20569, 4414, 2), -- Armor Type
+(20569, 4415, 3), -- Weapon Type
+(20569, 4416, 11), -- Races
 -- Tarlk Bugbear
-(20570, 4408, 1), -- HP Increase (1x)
-(20570, 4409, 1), -- MP Increase (1x)
-(20570, 4410, 11), -- Average P. Atk.
-(20570, 4411, 11), -- Average M. Atk.
-(20570, 4412, 11), -- Average P. Def.
-(20570, 4413, 11), -- Average M. Def.
-(20570, 4414, 2), -- Standard Type
-(20570, 4415, 5), -- Blunt Weapons
-(20570, 4416, 11), -- Giants
+(20570, 4408, 1), -- HP Modifiers
+(20570, 4409, 1), -- MP Modifiers
+(20570, 4410, 11), -- P. Atk. Modifiers
+(20570, 4411, 11), -- M. Atk. Modifiers
+(20570, 4412, 11), -- P. Def. Modifiers
+(20570, 4413, 11), -- M. Def. Modifiers
+(20570, 4414, 2), -- Armor Type
+(20570, 4415, 5), -- Weapon Type
+(20570, 4416, 11), -- Races
 -- Tarlk Bugbear Warrior
-(20571, 4074, 2), -- Haste
-(20571, 4408, 1), -- HP Increase (1x)
-(20571, 4409, 1), -- MP Increase (1x)
-(20571, 4410, 11), -- Average P. Atk.
-(20571, 4411, 11), -- Average M. Atk.
-(20571, 4412, 11), -- Average P. Def.
-(20571, 4413, 11), -- Average M. Def.
-(20571, 4414, 2), -- Standard Type
-(20571, 4415, 5), -- Blunt Weapons
-(20571, 4416, 11), -- Giants
+(20571, 4074, 2), -- NPC Haste
+(20571, 4408, 1), -- HP Modifiers
+(20571, 4409, 1), -- MP Modifiers
+(20571, 4410, 11), -- P. Atk. Modifiers
+(20571, 4411, 11), -- M. Atk. Modifiers
+(20571, 4412, 11), -- P. Def. Modifiers
+(20571, 4413, 11), -- M. Def. Modifiers
+(20571, 4414, 2), -- Armor Type
+(20571, 4415, 5), -- Weapon Type
+(20571, 4416, 11), -- Races
 -- Tarlk Bugbear High Warrior
-(20572, 4032, 4), -- Power Strike
-(20572, 4408, 1), -- HP Increase (1x)
-(20572, 4409, 1), -- MP Increase (1x)
-(20572, 4410, 12), -- Slightly Strong P. Atk.
-(20572, 4411, 12), -- Slightly Strong M. Atk.
-(20572, 4412, 10), -- Slightly Weak P. Def.
-(20572, 4413, 10), -- Slightly Weak M. Def.
-(20572, 4414, 2), -- Standard Type
-(20572, 4415, 5), -- Blunt Weapons
-(20572, 4416, 11), -- Giants
+(20572, 4032, 4), -- NPC Strike
+(20572, 4408, 1), -- HP Modifiers
+(20572, 4409, 1), -- MP Modifiers
+(20572, 4410, 12), -- P. Atk. Modifiers
+(20572, 4411, 12), -- M. Atk. Modifiers
+(20572, 4412, 10), -- P. Def. Modifiers
+(20572, 4413, 10), -- M. Def. Modifiers
+(20572, 4414, 2), -- Armor Type
+(20572, 4415, 5), -- Weapon Type
+(20572, 4416, 11), -- Races
 -- Tarlk Basilisk
-(20573, 4408, 1), -- HP Increase (1x)
-(20573, 4409, 1), -- MP Increase (1x)
-(20573, 4410, 10), -- Slightly Weak P. Atk.
-(20573, 4411, 10), -- Slightly Weak M. Atk.
-(20573, 4412, 12), -- Slightly Strong P. Def.
-(20573, 4413, 12), -- Slightly Strong M. Def.
-(20573, 4414, 2), -- Standard Type
-(20573, 4415, 3), -- One-handed Sword
-(20573, 4416, 3), -- Beasts
+(20573, 4408, 1), -- HP Modifiers
+(20573, 4409, 1), -- MP Modifiers
+(20573, 4410, 10), -- P. Atk. Modifiers
+(20573, 4411, 10), -- M. Atk. Modifiers
+(20573, 4412, 12), -- P. Def. Modifiers
+(20573, 4413, 12), -- M. Def. Modifiers
+(20573, 4414, 2), -- Armor Type
+(20573, 4415, 3), -- Weapon Type
+(20573, 4416, 3), -- Races
 (20573, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Elder Tarlk Basilisk 
-(20574, 4408, 1), -- HP Increase (1x)
-(20574, 4409, 1), -- MP Increase (1x)
-(20574, 4410, 12), -- Slightly Strong P. Atk.
-(20574, 4411, 12), -- Slightly Strong M. Atk.
-(20574, 4412, 10), -- Slightly Weak P. Def.
-(20574, 4413, 10), -- Slightly Weak M. Def.
-(20574, 4414, 2), -- Standard Type
-(20574, 4415, 3), -- One-handed Sword
-(20574, 4416, 3), -- Beasts
+(20574, 4408, 1), -- HP Modifiers
+(20574, 4409, 1), -- MP Modifiers
+(20574, 4410, 12), -- P. Atk. Modifiers
+(20574, 4411, 12), -- M. Atk. Modifiers
+(20574, 4412, 10), -- P. Def. Modifiers
+(20574, 4413, 10), -- M. Def. Modifiers
+(20574, 4414, 2), -- Armor Type
+(20574, 4415, 3), -- Weapon Type
+(20574, 4416, 3), -- Races
 (20574, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Oel Mahum Warrior
-(20575, 4408, 1), -- HP Increase (1x)
-(20575, 4409, 1), -- MP Increase (1x)
-(20575, 4410, 12), -- Slightly Strong P. Atk.
-(20575, 4411, 12), -- Slightly Strong M. Atk.
-(20575, 4412, 10), -- Slightly Weak P. Def.
-(20575, 4413, 10), -- Slightly Weak M. Def.
-(20575, 4414, 2), -- Standard Type
-(20575, 4415, 3), -- One-handed Sword
-(20575, 4416, 6), -- Humanoids
+(20575, 4408, 1), -- HP Modifiers
+(20575, 4409, 1), -- MP Modifiers
+(20575, 4410, 12), -- P. Atk. Modifiers
+(20575, 4411, 12), -- M. Atk. Modifiers
+(20575, 4412, 10), -- P. Def. Modifiers
+(20575, 4413, 10), -- M. Def. Modifiers
+(20575, 4414, 2), -- Armor Type
+(20575, 4415, 3), -- Weapon Type
+(20575, 4416, 6), -- Races
 (20575, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Oel Mahum Witch Doctor
-(20576, 4065, 5), -- Heal
-(20576, 4151, 5), -- Wind Strike
-(20576, 4160, 5), -- Aura Burn
-(20576, 4408, 10), -- HP Increase (2x)
-(20576, 4409, 1), -- MP Increase (1x)
-(20576, 4410, 10), -- Slightly Weak P. Atk.
-(20576, 4411, 10), -- Slightly Weak M. Atk.
-(20576, 4412, 12), -- Slightly Strong P. Def.
-(20576, 4413, 12), -- Slightly Strong M. Def.
-(20576, 4414, 2), -- Standard Type
-(20576, 4415, 5), -- Blunt Weapons
-(20576, 4416, 6), -- Humanoids
+(20576, 4065, 5), -- NPC Heal
+(20576, 4151, 5), -- NPC Windstrike - Magic
+(20576, 4160, 5), -- NPC Aura Burn - Magic
+(20576, 4408, 10), -- HP Modifiers
+(20576, 4409, 1), -- MP Modifiers
+(20576, 4410, 10), -- P. Atk. Modifiers
+(20576, 4411, 10), -- M. Atk. Modifiers
+(20576, 4412, 12), -- P. Def. Modifiers
+(20576, 4413, 12), -- M. Def. Modifiers
+(20576, 4414, 2), -- Armor Type
+(20576, 4415, 5), -- Weapon Type
+(20576, 4416, 6), -- Races
 (20576, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Leto Lizardman
-(20577, 4408, 1), -- HP Increase (1x)
-(20577, 4409, 1), -- MP Increase (1x)
-(20577, 4410, 11), -- Average P. Atk.
-(20577, 4411, 11), -- Average M. Atk.
-(20577, 4412, 11), -- Average P. Def.
-(20577, 4413, 11), -- Average M. Def.
-(20577, 4414, 2), -- Standard Type
-(20577, 4415, 3), -- One-handed Sword
-(20577, 4416, 6), -- Humanoids
+(20577, 4408, 1), -- HP Modifiers
+(20577, 4409, 1), -- MP Modifiers
+(20577, 4410, 11), -- P. Atk. Modifiers
+(20577, 4411, 11), -- M. Atk. Modifiers
+(20577, 4412, 11), -- P. Def. Modifiers
+(20577, 4413, 11), -- M. Def. Modifiers
+(20577, 4414, 2), -- Armor Type
+(20577, 4415, 3), -- Weapon Type
+(20577, 4416, 6), -- Races
 -- Leto Lizardman Archer
-(20578, 4408, 1), -- HP Increase (1x)
-(20578, 4409, 1), -- MP Increase (1x)
-(20578, 4410, 10), -- Slightly Weak P. Atk.
-(20578, 4411, 10), -- Slightly Weak M. Atk.
-(20578, 4412, 12), -- Slightly Strong P. Def.
-(20578, 4413, 12), -- Slightly Strong M. Def.
-(20578, 4414, 2), -- Standard Type
-(20578, 4415, 9), -- Bows
-(20578, 4416, 6), -- Humanoids
+(20578, 4408, 1), -- HP Modifiers
+(20578, 4409, 1), -- MP Modifiers
+(20578, 4410, 10), -- P. Atk. Modifiers
+(20578, 4411, 10), -- M. Atk. Modifiers
+(20578, 4412, 12), -- P. Def. Modifiers
+(20578, 4413, 12), -- M. Def. Modifiers
+(20578, 4414, 2), -- Armor Type
+(20578, 4415, 9), -- Weapon Type
+(20578, 4416, 6), -- Races
 -- Leto Lizardman Soldier
-(20579, 4408, 1), -- HP Increase (1x)
-(20579, 4409, 1), -- MP Increase (1x)
-(20579, 4410, 11), -- Average P. Atk.
-(20579, 4411, 11), -- Average M. Atk.
-(20579, 4412, 11), -- Average P. Def.
-(20579, 4413, 11), -- Average M. Def.
-(20579, 4414, 2), -- Standard Type
-(20579, 4415, 3), -- One-handed Sword
-(20579, 4416, 6), -- Humanoids
+(20579, 4408, 1), -- HP Modifiers
+(20579, 4409, 1), -- MP Modifiers
+(20579, 4410, 11), -- P. Atk. Modifiers
+(20579, 4411, 11), -- M. Atk. Modifiers
+(20579, 4412, 11), -- P. Def. Modifiers
+(20579, 4413, 11), -- M. Def. Modifiers
+(20579, 4414, 2), -- Armor Type
+(20579, 4415, 3), -- Weapon Type
+(20579, 4416, 6), -- Races
 -- Leto Lizardman Warrior
-(20580, 4408, 10), -- HP Increase (2x)
-(20580, 4409, 1), -- MP Increase (1x)
-(20580, 4410, 12), -- Slightly Strong P. Atk.
-(20580, 4411, 12), -- Slightly Strong M. Atk.
-(20580, 4412, 10), -- Slightly Weak P. Def.
-(20580, 4413, 10), -- Slightly Weak M. Def.
-(20580, 4414, 2), -- Standard Type
-(20580, 4415, 3), -- One-handed Sword
-(20580, 4416, 6), -- Humanoids
+(20580, 4408, 10), -- HP Modifiers
+(20580, 4409, 1), -- MP Modifiers
+(20580, 4410, 12), -- P. Atk. Modifiers
+(20580, 4411, 12), -- M. Atk. Modifiers
+(20580, 4412, 10), -- P. Def. Modifiers
+(20580, 4413, 10), -- M. Def. Modifiers
+(20580, 4414, 2), -- Armor Type
+(20580, 4415, 3), -- Weapon Type
+(20580, 4416, 6), -- Races
 -- Leto Lizardman Shaman
-(20581, 4076, 2), -- Slow
-(20581, 4152, 3), -- Drain Health
-(20581, 4160, 3), -- Aura Burn
-(20581, 4408, 1), -- HP Increase (1x)
-(20581, 4409, 1), -- MP Increase (1x)
-(20581, 4410, 12), -- Slightly Strong P. Atk.
-(20581, 4411, 12), -- Slightly Strong M. Atk.
-(20581, 4412, 10), -- Slightly Weak P. Def.
-(20581, 4413, 10), -- Slightly Weak M. Def.
-(20581, 4414, 2), -- Standard Type
-(20581, 4415, 5), -- Blunt Weapons
-(20581, 4416, 6), -- Humanoids
+(20581, 4076, 2), -- Reduction in movement speed
+(20581, 4152, 3), -- NPC HP Drain - Magic
+(20581, 4160, 3), -- NPC Aura Burn - Magic
+(20581, 4408, 1), -- HP Modifiers
+(20581, 4409, 1), -- MP Modifiers
+(20581, 4410, 12), -- P. Atk. Modifiers
+(20581, 4411, 12), -- M. Atk. Modifiers
+(20581, 4412, 10), -- P. Def. Modifiers
+(20581, 4413, 10), -- M. Def. Modifiers
+(20581, 4414, 2), -- Armor Type
+(20581, 4415, 5), -- Weapon Type
+(20581, 4416, 6), -- Races
 -- Leto Lizardman Overlord
-(20582, 4408, 10), -- HP Increase (2x)
-(20582, 4409, 1), -- MP Increase (1x)
-(20582, 4410, 10), -- Slightly Weak P. Atk.
-(20582, 4411, 10), -- Slightly Weak M. Atk.
-(20582, 4412, 12), -- Slightly Strong P. Def.
-(20582, 4413, 12), -- Slightly Strong M. Def.
-(20582, 4414, 2), -- Standard Type
-(20582, 4415, 7), -- Daggers
-(20582, 4416, 6), -- Humanoids
+(20582, 4408, 10), -- HP Modifiers
+(20582, 4409, 1), -- MP Modifiers
+(20582, 4410, 10), -- P. Atk. Modifiers
+(20582, 4411, 10), -- M. Atk. Modifiers
+(20582, 4412, 12), -- P. Def. Modifiers
+(20582, 4413, 12), -- M. Def. Modifiers
+(20582, 4414, 2), -- Armor Type
+(20582, 4415, 7), -- Weapon Type
+(20582, 4416, 6), -- Races
 -- Timak Orc
-(20583, 4408, 1), -- HP Increase (1x)
-(20583, 4409, 1), -- MP Increase (1x)
-(20583, 4410, 12), -- Slightly Strong P. Atk.
-(20583, 4411, 12), -- Slightly Strong M. Atk.
-(20583, 4412, 10), -- Slightly Weak P. Def.
-(20583, 4413, 10), -- Slightly Weak M. Def.
-(20583, 4414, 2), -- Standard Type
-(20583, 4415, 3), -- One-handed Sword
-(20583, 4416, 6), -- Humanoids
+(20583, 4408, 1), -- HP Modifiers
+(20583, 4409, 1), -- MP Modifiers
+(20583, 4410, 12), -- P. Atk. Modifiers
+(20583, 4411, 12), -- M. Atk. Modifiers
+(20583, 4412, 10), -- P. Def. Modifiers
+(20583, 4413, 10), -- M. Def. Modifiers
+(20583, 4414, 2), -- Armor Type
+(20583, 4415, 3), -- Weapon Type
+(20583, 4416, 6), -- Races
 -- Timak Orc Archer
-(20584, 4040, 4), -- Power Shot
-(20584, 4408, 1), -- HP Increase (1x)
-(20584, 4409, 1), -- MP Increase (1x)
-(20584, 4410, 10), -- Slightly Weak P. Atk.
-(20584, 4411, 10), -- Slightly Weak M. Atk.
-(20584, 4412, 12), -- Slightly Strong P. Def.
-(20584, 4413, 12), -- Slightly Strong M. Def.
-(20584, 4414, 2), -- Standard Type
-(20584, 4415, 9), -- Bows
-(20584, 4416, 6), -- Humanoids
+(20584, 4040, 4), -- NPC Bow Attack
+(20584, 4408, 1), -- HP Modifiers
+(20584, 4409, 1), -- MP Modifiers
+(20584, 4410, 10), -- P. Atk. Modifiers
+(20584, 4411, 10), -- M. Atk. Modifiers
+(20584, 4412, 12), -- P. Def. Modifiers
+(20584, 4413, 12), -- M. Def. Modifiers
+(20584, 4414, 2), -- Armor Type
+(20584, 4415, 9), -- Weapon Type
+(20584, 4416, 6), -- Races
 -- Timak Orc Soldier
-(20585, 4032, 4), -- Power Strike
-(20585, 4408, 1), -- HP Increase (1x)
-(20585, 4409, 1), -- MP Increase (1x)
-(20585, 4410, 11), -- Average P. Atk.
-(20585, 4411, 11), -- Average M. Atk.
-(20585, 4412, 11), -- Average P. Def.
-(20585, 4413, 11), -- Average M. Def.
-(20585, 4414, 2), -- Standard Type
-(20585, 4415, 3), -- One-handed Sword
-(20585, 4416, 6), -- Humanoids
+(20585, 4032, 4), -- NPC Strike
+(20585, 4408, 1), -- HP Modifiers
+(20585, 4409, 1), -- MP Modifiers
+(20585, 4410, 11), -- P. Atk. Modifiers
+(20585, 4411, 11), -- M. Atk. Modifiers
+(20585, 4412, 11), -- P. Def. Modifiers
+(20585, 4413, 11), -- M. Def. Modifiers
+(20585, 4414, 2), -- Armor Type
+(20585, 4415, 3), -- Weapon Type
+(20585, 4416, 6), -- Races
 -- Timak Orc Warrior
-(20586, 4074, 2), -- Haste
-(20586, 4408, 1), -- HP Increase (1x)
-(20586, 4409, 1), -- MP Increase (1x)
-(20586, 4410, 11), -- Average P. Atk.
-(20586, 4411, 11), -- Average M. Atk.
-(20586, 4412, 11), -- Average P. Def.
-(20586, 4413, 11), -- Average M. Def.
-(20586, 4414, 2), -- Standard Type
-(20586, 4415, 3), -- One-handed Sword
-(20586, 4416, 6), -- Humanoids
+(20586, 4074, 2), -- NPC Haste
+(20586, 4408, 1), -- HP Modifiers
+(20586, 4409, 1), -- MP Modifiers
+(20586, 4410, 11), -- P. Atk. Modifiers
+(20586, 4411, 11), -- M. Atk. Modifiers
+(20586, 4412, 11), -- P. Def. Modifiers
+(20586, 4413, 11), -- M. Def. Modifiers
+(20586, 4414, 2), -- Armor Type
+(20586, 4415, 3), -- Weapon Type
+(20586, 4416, 6), -- Races
 -- Timak Orc Shaman
-(20587, 4076, 3), -- Slow
+(20587, 4076, 3), -- Reduction in movement speed
 (20587, 4153, 4), -- Decrease Speed
-(20587, 4160, 4), -- Aura Burn
-(20587, 4408, 1), -- HP Increase (1x)
-(20587, 4409, 1), -- MP Increase (1x)
-(20587, 4410, 12), -- Slightly Strong P. Atk.
-(20587, 4411, 12), -- Slightly Strong M. Atk.
-(20587, 4412, 10), -- Slightly Weak P. Def.
-(20587, 4413, 10), -- Slightly Weak M. Def.
-(20587, 4414, 2), -- Standard Type
-(20587, 4415, 5), -- Blunt Weapons
-(20587, 4416, 6), -- Humanoids
+(20587, 4160, 4), -- NPC Aura Burn - Magic
+(20587, 4408, 1), -- HP Modifiers
+(20587, 4409, 1), -- MP Modifiers
+(20587, 4410, 12), -- P. Atk. Modifiers
+(20587, 4411, 12), -- M. Atk. Modifiers
+(20587, 4412, 10), -- P. Def. Modifiers
+(20587, 4413, 10), -- M. Def. Modifiers
+(20587, 4414, 2), -- Armor Type
+(20587, 4415, 5), -- Weapon Type
+(20587, 4416, 6), -- Races
 -- Timak Orc Overlord
-(20588, 4089, 1), -- Spirit Bear
-(20588, 4090, 1), -- Spirit Wolf
-(20588, 4091, 1), -- Spirit Ogre
-(20588, 4092, 1), -- Spirit Puma
+(20588, 4089, 1), -- NPC Bear Spirit Totem
+(20588, 4090, 1), -- NPC Wolf Spirit Totem
+(20588, 4091, 1), -- NPC Ogre Spirit Totem
+(20588, 4092, 1), -- NPC Puma Spirit Totem
 (20588, 4318, 1), -- Ultimate Buff
-(20588, 4408, 1), -- HP Increase (1x)
-(20588, 4409, 1), -- MP Increase (1x)
-(20588, 4410, 12), -- Slightly Strong P. Atk.
-(20588, 4411, 12), -- Slightly Strong M. Atk.
-(20588, 4412, 10), -- Slightly Weak P. Def.
-(20588, 4413, 10), -- Slightly Weak M. Def.
-(20588, 4414, 2), -- Standard Type
-(20588, 4415, 3), -- One-handed Sword
-(20588, 4416, 6), -- Humanoids
+(20588, 4408, 1), -- HP Modifiers
+(20588, 4409, 1), -- MP Modifiers
+(20588, 4410, 12), -- P. Atk. Modifiers
+(20588, 4411, 12), -- M. Atk. Modifiers
+(20588, 4412, 10), -- P. Def. Modifiers
+(20588, 4413, 10), -- M. Def. Modifiers
+(20588, 4414, 2), -- Armor Type
+(20588, 4415, 3), -- Weapon Type
+(20588, 4416, 6), -- Races
 -- Fline
-(20589, 4001, 4), -- Windstrike
-(20589, 4408, 10), -- HP Increase (2x)
-(20589, 4409, 1), -- MP Increase (1x)
-(20589, 4410, 10), -- Slightly Weak P. Atk.
-(20589, 4411, 10), -- Slightly Weak M. Atk.
-(20589, 4412, 12), -- Slightly Strong P. Def.
-(20589, 4413, 12), -- Slightly Strong M. Def.
-(20589, 4414, 2), -- Standard Type
-(20589, 4415, 3), -- One-handed Sword
-(20589, 4416, 7), -- Spirits
+(20589, 4001, 4), -- NPC Wind Strike
+(20589, 4408, 10), -- HP Modifiers
+(20589, 4409, 1), -- MP Modifiers
+(20589, 4410, 10), -- P. Atk. Modifiers
+(20589, 4411, 10), -- M. Atk. Modifiers
+(20589, 4412, 12), -- P. Def. Modifiers
+(20589, 4413, 12), -- M. Def. Modifiers
+(20589, 4414, 2), -- Armor Type
+(20589, 4415, 3), -- Weapon Type
+(20589, 4416, 7), -- Races
 -- Liele
-(20590, 4001, 4), -- Windstrike
-(20590, 4408, 10), -- HP Increase (2x)
-(20590, 4409, 1), -- MP Increase (1x)
-(20590, 4410, 10), -- Slightly Weak P. Atk.
-(20590, 4411, 10), -- Slightly Weak M. Atk.
-(20590, 4412, 12), -- Slightly Strong P. Def.
-(20590, 4413, 12), -- Slightly Strong M. Def.
-(20590, 4414, 2), -- Standard Type
-(20590, 4415, 3), -- One-handed Sword
-(20590, 4416, 7), -- Spirits
+(20590, 4001, 4), -- NPC Wind Strike
+(20590, 4408, 10), -- HP Modifiers
+(20590, 4409, 1), -- MP Modifiers
+(20590, 4410, 10), -- P. Atk. Modifiers
+(20590, 4411, 10), -- M. Atk. Modifiers
+(20590, 4412, 12), -- P. Def. Modifiers
+(20590, 4413, 12), -- M. Def. Modifiers
+(20590, 4414, 2), -- Armor Type
+(20590, 4415, 3), -- Weapon Type
+(20590, 4416, 7), -- Races
 -- Valley Treant
-(20591, 4071, 5), -- Resist Bow/Crossbow Weapons
-(20591, 4248, 4), -- Energy Drain
-(20591, 4277, 5), -- Resist Poison Attacks
-(20591, 4284, 5), -- Resist Bleed Attacks
-(20591, 4408, 10), -- HP Increase (2x)
-(20591, 4409, 1), -- MP Increase (1x)
-(20591, 4410, 10), -- Slightly Weak P. Atk.
-(20591, 4411, 10), -- Slightly Weak M. Atk.
-(20591, 4412, 12), -- Slightly Strong P. Def.
-(20591, 4413, 19), -- Extremely Strong M. Def.
-(20591, 4414, 2), -- Standard Type
-(20591, 4415, 3), -- One-handed Sword
-(20591, 4416, 7), -- Spirits
+(20591, 4071, 5), -- Resist Archery
+(20591, 4248, 4), -- NPC HP Drain - Slow
+(20591, 4277, 5), -- Resist Poison
+(20591, 4284, 5), -- Resist Bleeding
+(20591, 4408, 10), -- HP Modifiers
+(20591, 4409, 1), -- MP Modifiers
+(20591, 4410, 10), -- P. Atk. Modifiers
+(20591, 4411, 10), -- M. Atk. Modifiers
+(20591, 4412, 12), -- P. Def. Modifiers
+(20591, 4413, 19), -- M. Def. Modifiers
+(20591, 4414, 2), -- Armor Type
+(20591, 4415, 3), -- Weapon Type
+(20591, 4416, 7), -- Races
 -- Satyr
-(20592, 4408, 11), -- HP Increase (3x)
-(20592, 4409, 1), -- MP Increase (1x)
-(20592, 4410, 10), -- Slightly Weak P. Atk.
-(20592, 4411, 10), -- Slightly Weak M. Atk.
-(20592, 4412, 12), -- Slightly Strong P. Def.
-(20592, 4413, 12), -- Slightly Strong M. Def.
-(20592, 4414, 2), -- Standard Type
-(20592, 4415, 3), -- One-handed Sword
-(20592, 4416, 13), -- Fairies
+(20592, 4408, 11), -- HP Modifiers
+(20592, 4409, 1), -- MP Modifiers
+(20592, 4410, 10), -- P. Atk. Modifiers
+(20592, 4411, 10), -- M. Atk. Modifiers
+(20592, 4412, 12), -- P. Def. Modifiers
+(20592, 4413, 12), -- M. Def. Modifiers
+(20592, 4414, 2), -- Armor Type
+(20592, 4415, 3), -- Weapon Type
+(20592, 4416, 13), -- Races
 -- Unicorn
-(20593, 4030, 3), -- Might
-(20593, 4408, 11), -- HP Increase (3x)
-(20593, 4409, 1), -- MP Increase (1x)
-(20593, 4410, 10), -- Slightly Weak P. Atk.
-(20593, 4411, 10), -- Slightly Weak M. Atk.
-(20593, 4412, 12), -- Slightly Strong P. Def.
-(20593, 4413, 12), -- Slightly Strong M. Def.
-(20593, 4414, 2), -- Standard Type
-(20593, 4415, 3), -- One-handed Sword
-(20593, 4416, 7), -- Spirits
+(20593, 4030, 3), -- NPC Clan Might
+(20593, 4408, 11), -- HP Modifiers
+(20593, 4409, 1), -- MP Modifiers
+(20593, 4410, 10), -- P. Atk. Modifiers
+(20593, 4411, 10), -- M. Atk. Modifiers
+(20593, 4412, 12), -- P. Def. Modifiers
+(20593, 4413, 12), -- M. Def. Modifiers
+(20593, 4414, 2), -- Armor Type
+(20593, 4415, 3), -- Weapon Type
+(20593, 4416, 7), -- Races
 -- Forest Runner
-(20594, 4277, 5), -- Resist Poison Attacks
-(20594, 4408, 10), -- HP Increase (2x)
-(20594, 4409, 1), -- MP Increase (1x)
-(20594, 4410, 10), -- Slightly Weak P. Atk.
-(20594, 4411, 10), -- Slightly Weak M. Atk.
-(20594, 4412, 12), -- Slightly Strong P. Def.
-(20594, 4413, 12), -- Slightly Strong M. Def.
-(20594, 4414, 2), -- Standard Type
-(20594, 4415, 3), -- One-handed Sword
-(20594, 4416, 5), -- Plants
+(20594, 4277, 5), -- Resist Poison
+(20594, 4408, 10), -- HP Modifiers
+(20594, 4409, 1), -- MP Modifiers
+(20594, 4410, 10), -- P. Atk. Modifiers
+(20594, 4411, 10), -- M. Atk. Modifiers
+(20594, 4412, 12), -- P. Def. Modifiers
+(20594, 4413, 12), -- M. Def. Modifiers
+(20594, 4414, 2), -- Armor Type
+(20594, 4415, 3), -- Weapon Type
+(20594, 4416, 5), -- Races
 -- Fline Elder
-(20595, 4001, 5), -- Windstrike
-(20595, 4408, 10), -- HP Increase (2x)
-(20595, 4409, 1), -- MP Increase (1x)
-(20595, 4410, 12), -- Slightly Strong P. Atk.
-(20595, 4411, 12), -- Slightly Strong M. Atk.
-(20595, 4412, 10), -- Slightly Weak P. Def.
-(20595, 4413, 10), -- Slightly Weak M. Def.
-(20595, 4414, 2), -- Standard Type
-(20595, 4415, 3), -- One-handed Sword
-(20595, 4416, 7), -- Spirits
+(20595, 4001, 5), -- NPC Wind Strike
+(20595, 4408, 10), -- HP Modifiers
+(20595, 4409, 1), -- MP Modifiers
+(20595, 4410, 12), -- P. Atk. Modifiers
+(20595, 4411, 12), -- M. Atk. Modifiers
+(20595, 4412, 10), -- P. Def. Modifiers
+(20595, 4413, 10), -- M. Def. Modifiers
+(20595, 4414, 2), -- Armor Type
+(20595, 4415, 3), -- Weapon Type
+(20595, 4416, 7), -- Races
 -- Liele Elder
-(20596, 4001, 5), -- Windstrike
-(20596, 4408, 10), -- HP Increase (2x)
-(20596, 4409, 1), -- MP Increase (1x)
-(20596, 4410, 12), -- Slightly Strong P. Atk.
-(20596, 4411, 12), -- Slightly Strong M. Atk.
-(20596, 4412, 10), -- Slightly Weak P. Def.
-(20596, 4413, 10), -- Slightly Weak M. Def.
-(20596, 4414, 2), -- Standard Type
-(20596, 4415, 3), -- One-handed Sword
-(20596, 4416, 7), -- Spirits
+(20596, 4001, 5), -- NPC Wind Strike
+(20596, 4408, 10), -- HP Modifiers
+(20596, 4409, 1), -- MP Modifiers
+(20596, 4410, 12), -- P. Atk. Modifiers
+(20596, 4411, 12), -- M. Atk. Modifiers
+(20596, 4412, 10), -- P. Def. Modifiers
+(20596, 4413, 10), -- M. Def. Modifiers
+(20596, 4414, 2), -- Armor Type
+(20596, 4415, 3), -- Weapon Type
+(20596, 4416, 7), -- Races
 -- Valley Treant Elder
-(20597, 4071, 5), -- Resist Bow/Crossbow Weapons
-(20597, 4250, 5), -- Twister
-(20597, 4277, 5), -- Resist Poison Attacks
-(20597, 4284, 5), -- Resist Bleed Attacks
-(20597, 4408, 11), -- HP Increase (3x)
-(20597, 4409, 1), -- MP Increase (1x)
-(20597, 4410, 12), -- Slightly Strong P. Atk.
-(20597, 4411, 12), -- Slightly Strong M. Atk.
-(20597, 4412, 10), -- Slightly Weak P. Def.
-(20597, 4413, 18), -- Extremely Strong M. Def.
-(20597, 4414, 2), -- Standard Type
-(20597, 4415, 3), -- One-handed Sword
-(20597, 4416, 7), -- Spirits
+(20597, 4071, 5), -- Resist Archery
+(20597, 4250, 5), -- NPC Twister - Slow
+(20597, 4277, 5), -- Resist Poison
+(20597, 4284, 5), -- Resist Bleeding
+(20597, 4408, 11), -- HP Modifiers
+(20597, 4409, 1), -- MP Modifiers
+(20597, 4410, 12), -- P. Atk. Modifiers
+(20597, 4411, 12), -- M. Atk. Modifiers
+(20597, 4412, 10), -- P. Def. Modifiers
+(20597, 4413, 18), -- M. Def. Modifiers
+(20597, 4414, 2), -- Armor Type
+(20597, 4415, 3), -- Weapon Type
+(20597, 4416, 7), -- Races
 -- Satyr Elder
-(20598, 4408, 11), -- HP Increase (3x)
-(20598, 4409, 1), -- MP Increase (1x)
-(20598, 4410, 12), -- Slightly Strong P. Atk.
-(20598, 4411, 12), -- Slightly Strong M. Atk.
-(20598, 4412, 10), -- Slightly Weak P. Def.
-(20598, 4413, 10), -- Slightly Weak M. Def.
-(20598, 4414, 2), -- Standard Type
-(20598, 4415, 3), -- One-handed Sword
-(20598, 4416, 13), -- Fairies
+(20598, 4408, 11), -- HP Modifiers
+(20598, 4409, 1), -- MP Modifiers
+(20598, 4410, 12), -- P. Atk. Modifiers
+(20598, 4411, 12), -- M. Atk. Modifiers
+(20598, 4412, 10), -- P. Def. Modifiers
+(20598, 4413, 10), -- M. Def. Modifiers
+(20598, 4414, 2), -- Armor Type
+(20598, 4415, 3), -- Weapon Type
+(20598, 4416, 13), -- Races
 -- Unicorn Elder
-(20599, 4001, 5), -- Windstrike
-(20599, 4408, 11), -- HP Increase (3x)
-(20599, 4409, 1), -- MP Increase (1x)
-(20599, 4410, 12), -- Slightly Strong P. Atk.
-(20599, 4411, 12), -- Slightly Strong M. Atk.
-(20599, 4412, 10), -- Slightly Weak P. Def.
-(20599, 4413, 10), -- Slightly Weak M. Def.
-(20599, 4414, 2), -- Standard Type
-(20599, 4415, 3), -- One-handed Sword
-(20599, 4416, 7), -- Spirits
+(20599, 4001, 5), -- NPC Wind Strike
+(20599, 4408, 11), -- HP Modifiers
+(20599, 4409, 1), -- MP Modifiers
+(20599, 4410, 12), -- P. Atk. Modifiers
+(20599, 4411, 12), -- M. Atk. Modifiers
+(20599, 4412, 10), -- P. Def. Modifiers
+(20599, 4413, 10), -- M. Def. Modifiers
+(20599, 4414, 2), -- Armor Type
+(20599, 4415, 3), -- Weapon Type
+(20599, 4416, 7), -- Races
 -- Karul Bugbear
-(20600, 4073, 4), -- Stun
-(20600, 4408, 1), -- HP Increase (1x)
-(20600, 4409, 1), -- MP Increase (1x)
-(20600, 4410, 12), -- Slightly Strong P. Atk.
-(20600, 4411, 12), -- Slightly Strong M. Atk.
-(20600, 4412, 10), -- Slightly Weak P. Def.
-(20600, 4413, 10), -- Slightly Weak M. Def.
-(20600, 4414, 2), -- Standard Type
-(20600, 4415, 5), -- Blunt Weapons
-(20600, 4416, 11), -- Giants
+(20600, 4073, 4), -- Shock
+(20600, 4408, 1), -- HP Modifiers
+(20600, 4409, 1), -- MP Modifiers
+(20600, 4410, 12), -- P. Atk. Modifiers
+(20600, 4411, 12), -- M. Atk. Modifiers
+(20600, 4412, 10), -- P. Def. Modifiers
+(20600, 4413, 10), -- M. Def. Modifiers
+(20600, 4414, 2), -- Armor Type
+(20600, 4415, 5), -- Weapon Type
+(20600, 4416, 11), -- Races
 -- Tamlin Orc
 (20601, 4317, 1), -- Increase Rage Might
-(20601, 4408, 1), -- HP Increase (1x)
-(20601, 4409, 1), -- MP Increase (1x)
-(20601, 4410, 11), -- Average P. Atk.
-(20601, 4411, 11), -- Average M. Atk.
-(20601, 4412, 11), -- Average P. Def.
-(20601, 4413, 11), -- Average M. Def.
-(20601, 4414, 2), -- Standard Type
-(20601, 4415, 3), -- One-handed Sword
-(20601, 4416, 6), -- Humanoids
+(20601, 4408, 1), -- HP Modifiers
+(20601, 4409, 1), -- MP Modifiers
+(20601, 4410, 11), -- P. Atk. Modifiers
+(20601, 4411, 11), -- M. Atk. Modifiers
+(20601, 4412, 11), -- P. Def. Modifiers
+(20601, 4413, 11), -- M. Def. Modifiers
+(20601, 4414, 2), -- Armor Type
+(20601, 4415, 3), -- Weapon Type
+(20601, 4416, 6), -- Races
 -- Tamlin Orc Archer
-(20602, 4040, 4), -- Power Shot
-(20602, 4408, 1), -- HP Increase (1x)
-(20602, 4409, 1), -- MP Increase (1x)
-(20602, 4410, 11), -- Average P. Atk.
-(20602, 4411, 11), -- Average M. Atk.
-(20602, 4412, 11), -- Average P. Def.
-(20602, 4413, 11), -- Average M. Def.
-(20602, 4414, 2), -- Standard Type
-(20602, 4415, 9), -- Bows
-(20602, 4416, 6), -- Humanoids
+(20602, 4040, 4), -- NPC Bow Attack
+(20602, 4408, 1), -- HP Modifiers
+(20602, 4409, 1), -- MP Modifiers
+(20602, 4410, 11), -- P. Atk. Modifiers
+(20602, 4411, 11), -- M. Atk. Modifiers
+(20602, 4412, 11), -- P. Def. Modifiers
+(20602, 4413, 11), -- M. Def. Modifiers
+(20602, 4414, 2), -- Armor Type
+(20602, 4415, 9), -- Weapon Type
+(20602, 4416, 6), -- Races
 -- Kronbe Spider
-(20603, 4408, 1), -- HP Increase (1x)
-(20603, 4409, 1), -- MP Increase (1x)
-(20603, 4410, 10), -- Slightly Weak P. Atk.
-(20603, 4411, 10), -- Slightly Weak M. Atk.
-(20603, 4412, 12), -- Slightly Strong P. Def.
-(20603, 4413, 12), -- Slightly Strong M. Def.
-(20603, 4414, 2), -- Standard Type
-(20603, 4415, 3), -- One-handed Sword
-(20603, 4416, 12), -- Bugs
+(20603, 4408, 1), -- HP Modifiers
+(20603, 4409, 1), -- MP Modifiers
+(20603, 4410, 10), -- P. Atk. Modifiers
+(20603, 4411, 10), -- M. Atk. Modifiers
+(20603, 4412, 12), -- P. Def. Modifiers
+(20603, 4413, 12), -- M. Def. Modifiers
+(20603, 4414, 2), -- Armor Type
+(20603, 4415, 3), -- Weapon Type
+(20603, 4416, 12), -- Races
 -- Lakin
-(20604, 4073, 4), -- Stun
-(20604, 4408, 1), -- HP Increase (1x)
-(20604, 4409, 1), -- MP Increase (1x)
-(20604, 4410, 12), -- Slightly Strong P. Atk.
-(20604, 4411, 12), -- Slightly Strong M. Atk.
-(20604, 4412, 10), -- Slightly Weak P. Def.
-(20604, 4413, 10), -- Slightly Weak M. Def.
-(20604, 4414, 2), -- Standard Type
-(20604, 4415, 5), -- Blunt Weapons
-(20604, 4416, 11), -- Giants
+(20604, 4073, 4), -- Shock
+(20604, 4408, 1), -- HP Modifiers
+(20604, 4409, 1), -- MP Modifiers
+(20604, 4410, 12), -- P. Atk. Modifiers
+(20604, 4411, 12), -- M. Atk. Modifiers
+(20604, 4412, 10), -- P. Def. Modifiers
+(20604, 4413, 10), -- M. Def. Modifiers
+(20604, 4414, 2), -- Armor Type
+(20604, 4415, 5), -- Weapon Type
+(20604, 4416, 11), -- Races
 -- Weird Drake
-(20605, 4071, 5), -- Resist Bow/Crossbow Weapons
-(20605, 4078, 4), -- Flame Strike
-(20605, 4408, 1), -- HP Increase (1x)
-(20605, 4409, 1), -- MP Increase (1x)
-(20605, 4410, 11), -- Average P. Atk.
-(20605, 4411, 11), -- Average M. Atk.
-(20605, 4412, 11), -- Average P. Def.
-(20605, 4413, 11), -- Average M. Def.
-(20605, 4414, 2), -- Standard Type
-(20605, 4415, 3), -- One-handed Sword
-(20605, 4416, 10), -- Dragons
+(20605, 4071, 5), -- Resist Archery
+(20605, 4078, 4), -- NPC Flamestrike
+(20605, 4408, 1), -- HP Modifiers
+(20605, 4409, 1), -- MP Modifiers
+(20605, 4410, 11), -- P. Atk. Modifiers
+(20605, 4411, 11), -- M. Atk. Modifiers
+(20605, 4412, 11), -- P. Def. Modifiers
+(20605, 4413, 11), -- M. Def. Modifiers
+(20605, 4414, 2), -- Armor Type
+(20605, 4415, 3), -- Weapon Type
+(20605, 4416, 10), -- Races
 -- Kuran Kobold
-(20606, 4032, 2), -- Power Strike
-(20606, 4408, 10), -- HP Increase (2x)
-(20606, 4409, 1), -- MP Increase (1x)
-(20606, 4410, 10), -- Slightly Weak P. Atk.
-(20606, 4411, 10), -- Slightly Weak M. Atk.
-(20606, 4412, 12), -- Slightly Strong P. Def.
-(20606, 4413, 12), -- Slightly Strong M. Def.
-(20606, 4414, 2), -- Standard Type
-(20606, 4415, 3), -- One-handed Sword
-(20606, 4416, 6), -- Humanoids
+(20606, 4032, 2), -- NPC Strike
+(20606, 4408, 10), -- HP Modifiers
+(20606, 4409, 1), -- MP Modifiers
+(20606, 4410, 10), -- P. Atk. Modifiers
+(20606, 4411, 10), -- M. Atk. Modifiers
+(20606, 4412, 12), -- P. Def. Modifiers
+(20606, 4413, 12), -- M. Def. Modifiers
+(20606, 4414, 2), -- Armor Type
+(20606, 4415, 3), -- Weapon Type
+(20606, 4416, 6), -- Races
 -- Kuran Kobold Warrior
-(20607, 4073, 2), -- Stun
-(20607, 4408, 10), -- HP Increase (2x)
-(20607, 4409, 1), -- MP Increase (1x)
-(20607, 4410, 12), -- Slightly Strong P. Atk.
-(20607, 4411, 12), -- Slightly Strong M. Atk.
-(20607, 4412, 10), -- Slightly Weak P. Def.
-(20607, 4413, 10), -- Slightly Weak M. Def.
-(20607, 4414, 2), -- Standard Type
-(20607, 4415, 3), -- One-handed Sword
-(20607, 4416, 6), -- Humanoids
+(20607, 4073, 2), -- Shock
+(20607, 4408, 10), -- HP Modifiers
+(20607, 4409, 1), -- MP Modifiers
+(20607, 4410, 12), -- P. Atk. Modifiers
+(20607, 4411, 12), -- M. Atk. Modifiers
+(20607, 4412, 10), -- P. Def. Modifiers
+(20607, 4413, 10), -- M. Def. Modifiers
+(20607, 4414, 2), -- Armor Type
+(20607, 4415, 3), -- Weapon Type
+(20607, 4416, 6), -- Races
 -- Patin Archer
-(20608, 4274, 1), -- Blunt Weapon Weak Point
-(20608, 4408, 10), -- HP Increase (2x)
-(20608, 4409, 1), -- MP Increase (1x)
-(20608, 4410, 11), -- Average P. Atk.
-(20608, 4411, 11), -- Average M. Atk.
-(20608, 4412, 11), -- Average P. Def.
-(20608, 4413, 11), -- Average M. Def.
-(20608, 4414, 2), -- Standard Type
-(20608, 4415, 9), -- Bows
-(20608, 4416, 1), -- Undead
+(20608, 4274, 1), -- Blunt Attack Weak Point
+(20608, 4408, 10), -- HP Modifiers
+(20608, 4409, 1), -- MP Modifiers
+(20608, 4410, 11), -- P. Atk. Modifiers
+(20608, 4411, 11), -- M. Atk. Modifiers
+(20608, 4412, 11), -- P. Def. Modifiers
+(20608, 4413, 11), -- M. Def. Modifiers
+(20608, 4414, 2), -- Armor Type
+(20608, 4415, 9), -- Weapon Type
+(20608, 4416, 1), -- Races
 -- Lakin Salamander
-(20609, 4001, 3), -- Windstrike
-(20609, 4100, 3), -- Prominence
-(20609, 4104, 3), -- Chill Flame
-(20609, 4408, 10), -- HP Increase (2x)
-(20609, 4409, 1), -- MP Increase (1x)
-(20609, 4410, 10), -- Slightly Weak P. Atk.
-(20609, 4411, 10), -- Slightly Weak M. Atk.
-(20609, 4412, 12), -- Slightly Strong P. Def.
-(20609, 4413, 12), -- Slightly Strong M. Def.
-(20609, 4414, 2), -- Standard Type
-(20609, 4415, 5), -- Blunt Weapons
-(20609, 4416, 7), -- Spirits
+(20609, 4001, 3), -- NPC Wind Strike
+(20609, 4100, 3), -- NPC Prominence
+(20609, 4104, 3), -- Flame
+(20609, 4408, 10), -- HP Modifiers
+(20609, 4409, 1), -- MP Modifiers
+(20609, 4410, 10), -- P. Atk. Modifiers
+(20609, 4411, 10), -- M. Atk. Modifiers
+(20609, 4412, 12), -- P. Def. Modifiers
+(20609, 4413, 12), -- M. Def. Modifiers
+(20609, 4414, 2), -- Armor Type
+(20609, 4415, 5), -- Weapon Type
+(20609, 4416, 7), -- Races
 -- Sentinel Of Water
-(20610, 4002, 3), -- HP Drain
+(20610, 4002, 3), -- NPC HP Drain
 (20610, 4046, 3), -- Sleep
-(20610, 4094, 3), -- Cancellation
-(20610, 4098, 3), -- Silence
-(20610, 4408, 10), -- HP Increase (2x)
-(20610, 4409, 1), -- MP Increase (1x)
-(20610, 4410, 12), -- Slightly Strong P. Atk.
-(20610, 4411, 12), -- Slightly Strong M. Atk.
-(20610, 4412, 10), -- Slightly Weak P. Def.
-(20610, 4413, 10), -- Slightly Weak M. Def.
-(20610, 4414, 2), -- Standard Type
-(20610, 4415, 3), -- One-handed Sword
-(20610, 4416, 2), -- Magic Creatures
+(20610, 4094, 3), -- NPC Cancel Magic
+(20610, 4098, 3), -- Magic Skill Block
+(20610, 4408, 10), -- HP Modifiers
+(20610, 4409, 1), -- MP Modifiers
+(20610, 4410, 12), -- P. Atk. Modifiers
+(20610, 4411, 12), -- M. Atk. Modifiers
+(20610, 4412, 10), -- P. Def. Modifiers
+(20610, 4413, 10), -- M. Def. Modifiers
+(20610, 4414, 2), -- Armor Type
+(20610, 4415, 3), -- Weapon Type
+(20610, 4416, 2), -- Races
 -- Dre Vanul Warrior
-(20611, 4002, 3), -- HP Drain
+(20611, 4002, 3), -- NPC HP Drain
 (20611, 4047, 3), -- Hold
-(20611, 4098, 3), -- Silence
-(20611, 4408, 10), -- HP Increase (2x)
-(20611, 4409, 1), -- MP Increase (1x)
-(20611, 4410, 12), -- Slightly Strong P. Atk.
-(20611, 4411, 12), -- Slightly Strong M. Atk.
-(20611, 4412, 10), -- Slightly Weak P. Def.
-(20611, 4413, 10), -- Slightly Weak M. Def.
-(20611, 4414, 2), -- Standard Type
-(20611, 4415, 3), -- One-handed Sword
-(20611, 4416, 9), -- Demons
+(20611, 4098, 3), -- Magic Skill Block
+(20611, 4408, 10), -- HP Modifiers
+(20611, 4409, 1), -- MP Modifiers
+(20611, 4410, 12), -- P. Atk. Modifiers
+(20611, 4411, 12), -- M. Atk. Modifiers
+(20611, 4412, 10), -- P. Def. Modifiers
+(20611, 4413, 10), -- M. Def. Modifiers
+(20611, 4414, 2), -- Armor Type
+(20611, 4415, 3), -- Weapon Type
+(20611, 4416, 9), -- Races
 -- Salamander Rowin
-(20612, 4001, 3), -- Windstrike
+(20612, 4001, 3), -- NPC Wind Strike
 (20612, 4035, 3), -- Poison
-(20612, 4100, 3), -- Prominence
-(20612, 4408, 10), -- HP Increase (2x)
-(20612, 4409, 1), -- MP Increase (1x)
-(20612, 4410, 10), -- Slightly Weak P. Atk.
-(20612, 4411, 10), -- Slightly Weak M. Atk.
-(20612, 4412, 12), -- Slightly Strong P. Def.
-(20612, 4413, 12), -- Slightly Strong M. Def.
-(20612, 4414, 2), -- Standard Type
-(20612, 4415, 5), -- Blunt Weapons
-(20612, 4416, 7), -- Spirits
+(20612, 4100, 3), -- NPC Prominence
+(20612, 4408, 10), -- HP Modifiers
+(20612, 4409, 1), -- MP Modifiers
+(20612, 4410, 10), -- P. Atk. Modifiers
+(20612, 4411, 10), -- M. Atk. Modifiers
+(20612, 4412, 12), -- P. Def. Modifiers
+(20612, 4413, 12), -- M. Def. Modifiers
+(20612, 4414, 2), -- Armor Type
+(20612, 4415, 5), -- Weapon Type
+(20612, 4416, 7), -- Races
 -- Lafi Lizardman
-(20613, 4067, 2), -- Blow
-(20613, 4408, 10), -- HP Increase (2x)
-(20613, 4409, 1), -- MP Increase (1x)
-(20613, 4410, 11), -- Average P. Atk.
-(20613, 4411, 11), -- Average M. Atk.
-(20613, 4412, 11), -- Average P. Def.
-(20613, 4413, 11), -- Average M. Def.
-(20613, 4414, 2), -- Standard Type
-(20613, 4415, 3), -- One-handed Sword
-(20613, 4416, 6), -- Humanoids
+(20613, 4067, 2), -- NPC Mortal Blow
+(20613, 4408, 10), -- HP Modifiers
+(20613, 4409, 1), -- MP Modifiers
+(20613, 4410, 11), -- P. Atk. Modifiers
+(20613, 4411, 11), -- M. Atk. Modifiers
+(20613, 4412, 11), -- P. Def. Modifiers
+(20613, 4413, 11), -- M. Def. Modifiers
+(20613, 4414, 2), -- Armor Type
+(20613, 4415, 3), -- Weapon Type
+(20613, 4416, 6), -- Races
 -- Lafi Lizardman Scout
-(20614, 4408, 10), -- HP Increase (2x)
-(20614, 4409, 1), -- MP Increase (1x)
-(20614, 4410, 10), -- Slightly Weak P. Atk.
-(20614, 4411, 10), -- Slightly Weak M. Atk.
-(20614, 4412, 12), -- Slightly Strong P. Def.
-(20614, 4413, 12), -- Slightly Strong M. Def.
-(20614, 4414, 2), -- Standard Type
-(20614, 4415, 9), -- Bows
-(20614, 4416, 6), -- Humanoids
+(20614, 4408, 10), -- HP Modifiers
+(20614, 4409, 1), -- MP Modifiers
+(20614, 4410, 10), -- P. Atk. Modifiers
+(20614, 4411, 10), -- M. Atk. Modifiers
+(20614, 4412, 12), -- P. Def. Modifiers
+(20614, 4413, 12), -- M. Def. Modifiers
+(20614, 4414, 2), -- Armor Type
+(20614, 4415, 9), -- Weapon Type
+(20614, 4416, 6), -- Races
 -- Ritmal Swordsman
-(20615, 4073, 2), -- Stun
-(20615, 4274, 1), -- Blunt Weapon Weak Point
-(20615, 4408, 10), -- HP Increase (2x)
-(20615, 4409, 1), -- MP Increase (1x)
-(20615, 4410, 11), -- Average P. Atk.
-(20615, 4411, 11), -- Average M. Atk.
-(20615, 4412, 11), -- Average P. Def.
-(20615, 4413, 11), -- Average M. Def.
-(20615, 4414, 2), -- Standard Type
-(20615, 4415, 3), -- One-handed Sword
-(20615, 4416, 1), -- Undead
+(20615, 4073, 2), -- Shock
+(20615, 4274, 1), -- Blunt Attack Weak Point
+(20615, 4408, 10), -- HP Modifiers
+(20615, 4409, 1), -- MP Modifiers
+(20615, 4410, 11), -- P. Atk. Modifiers
+(20615, 4411, 11), -- M. Atk. Modifiers
+(20615, 4412, 11), -- P. Def. Modifiers
+(20615, 4413, 11), -- M. Def. Modifiers
+(20615, 4414, 2), -- Armor Type
+(20615, 4415, 3), -- Weapon Type
+(20615, 4416, 1), -- Races
 -- Lakin Undine
-(20616, 4071, 5), -- Resist Bow/Crossbow Weapons
-(20616, 4247, 3), -- Wind Strike
-(20616, 4284, 5), -- Resist Bleed Attacks
-(20616, 4408, 10), -- HP Increase (2x)
-(20616, 4409, 1), -- MP Increase (1x)
-(20616, 4410, 12), -- Slightly Strong P. Atk.
-(20616, 4411, 12), -- Slightly Strong M. Atk.
-(20616, 4412, 10), -- Slightly Weak P. Def.
-(20616, 4413, 18), -- Extremely Strong M. Def.
-(20616, 4414, 2), -- Standard Type
-(20616, 4415, 5), -- Blunt Weapons
-(20616, 4416, 7), -- Spirits
+(20616, 4071, 5), -- Resist Archery
+(20616, 4247, 3), -- NPC Windstrike - Slow
+(20616, 4284, 5), -- Resist Bleeding
+(20616, 4408, 10), -- HP Modifiers
+(20616, 4409, 1), -- MP Modifiers
+(20616, 4410, 12), -- P. Atk. Modifiers
+(20616, 4411, 12), -- M. Atk. Modifiers
+(20616, 4412, 10), -- P. Def. Modifiers
+(20616, 4413, 18), -- M. Def. Modifiers
+(20616, 4414, 2), -- Armor Type
+(20616, 4415, 5), -- Weapon Type
+(20616, 4416, 7), -- Races
 -- Sentinel Of Water
 (20617, 4046, 3), -- Sleep
-(20617, 4066, 3), -- Twister
+(20617, 4066, 3), -- NPC Twister
 (20617, 4088, 3), -- Bleed
-(20617, 4094, 3), -- Cancellation
-(20617, 4408, 10), -- HP Increase (2x)
-(20617, 4409, 1), -- MP Increase (1x)
-(20617, 4410, 10), -- Slightly Weak P. Atk.
-(20617, 4411, 10), -- Slightly Weak M. Atk.
-(20617, 4412, 12), -- Slightly Strong P. Def.
-(20617, 4413, 12), -- Slightly Strong M. Def.
-(20617, 4414, 2), -- Standard Type
-(20617, 4415, 3), -- One-handed Sword
-(20617, 4416, 2), -- Magic Creatures
+(20617, 4094, 3), -- NPC Cancel Magic
+(20617, 4408, 10), -- HP Modifiers
+(20617, 4409, 1), -- MP Modifiers
+(20617, 4410, 10), -- P. Atk. Modifiers
+(20617, 4411, 10), -- M. Atk. Modifiers
+(20617, 4412, 12), -- P. Def. Modifiers
+(20617, 4413, 12), -- M. Def. Modifiers
+(20617, 4414, 2), -- Armor Type
+(20617, 4415, 3), -- Weapon Type
+(20617, 4416, 2), -- Races
 -- Kanil Succubus
-(20618, 4001, 3), -- Windstrike
-(20618, 4066, 3), -- Twister
+(20618, 4001, 3), -- NPC Wind Strike
+(20618, 4066, 3), -- NPC Twister
 (20618, 4088, 3), -- Bleed
-(20618, 4408, 10), -- HP Increase (2x)
-(20618, 4409, 1), -- MP Increase (1x)
-(20618, 4410, 12), -- Slightly Strong P. Atk.
-(20618, 4411, 12), -- Slightly Strong M. Atk.
-(20618, 4412, 10), -- Slightly Weak P. Def.
-(20618, 4413, 10), -- Slightly Weak M. Def.
-(20618, 4414, 2), -- Standard Type
-(20618, 4415, 3), -- One-handed Sword
-(20618, 4416, 9), -- Demons
+(20618, 4408, 10), -- HP Modifiers
+(20618, 4409, 1), -- MP Modifiers
+(20618, 4410, 12), -- P. Atk. Modifiers
+(20618, 4411, 12), -- M. Atk. Modifiers
+(20618, 4412, 10), -- P. Def. Modifiers
+(20618, 4413, 10), -- M. Def. Modifiers
+(20618, 4414, 2), -- Armor Type
+(20618, 4415, 3), -- Weapon Type
+(20618, 4416, 9), -- Races
 -- Rowin Undine
-(20619, 4151, 3), -- Wind Strike
-(20619, 4160, 3), -- Aura Burn
-(20619, 4408, 10), -- HP Increase (2x)
-(20619, 4409, 1), -- MP Increase (1x)
-(20619, 4410, 10), -- Slightly Weak P. Atk.
-(20619, 4411, 10), -- Slightly Weak M. Atk.
-(20619, 4412, 12), -- Slightly Strong P. Def.
-(20619, 4413, 12), -- Slightly Strong M. Def.
-(20619, 4414, 2), -- Standard Type
-(20619, 4415, 5), -- Blunt Weapons
-(20619, 4416, 7), -- Spirits
+(20619, 4151, 3), -- NPC Windstrike - Magic
+(20619, 4160, 3), -- NPC Aura Burn - Magic
+(20619, 4408, 10), -- HP Modifiers
+(20619, 4409, 1), -- MP Modifiers
+(20619, 4410, 10), -- P. Atk. Modifiers
+(20619, 4411, 10), -- M. Atk. Modifiers
+(20619, 4412, 12), -- P. Def. Modifiers
+(20619, 4413, 12), -- M. Def. Modifiers
+(20619, 4414, 2), -- Armor Type
+(20619, 4415, 5), -- Weapon Type
+(20619, 4416, 7), -- Races
 -- Cave Beast
-(20620, 4028, 3), -- Might
-(20620, 4408, 11), -- HP Increase (3x)
-(20620, 4409, 1), -- MP Increase (1x)
-(20620, 4410, 12), -- Slightly Strong P. Atk.
-(20620, 4411, 12), -- Slightly Strong M. Atk.
-(20620, 4412, 10), -- Slightly Weak P. Def.
-(20620, 4413, 10), -- Slightly Weak M. Def.
-(20620, 4414, 2), -- Standard Type
-(20620, 4415, 3), -- One-handed Sword
-(20620, 4416, 11), -- Giants
+(20620, 4028, 3), -- NPC Might
+(20620, 4408, 11), -- HP Modifiers
+(20620, 4409, 1), -- MP Modifiers
+(20620, 4410, 12), -- P. Atk. Modifiers
+(20620, 4411, 12), -- M. Atk. Modifiers
+(20620, 4412, 10), -- P. Def. Modifiers
+(20620, 4413, 10), -- M. Def. Modifiers
+(20620, 4414, 2), -- Armor Type
+(20620, 4415, 3), -- Weapon Type
+(20620, 4416, 11), -- Races
 -- Death Wave
-(20621, 4039, 6), -- Mana Drain
-(20621, 4100, 6), -- Prominence
+(20621, 4039, 6), -- NPC MP Drain
+(20621, 4100, 6), -- NPC Prominence
 (20621, 4117, 6), -- Paralysis
-(20621, 4408, 11), -- HP Increase (3x)
-(20621, 4409, 1), -- MP Increase (1x)
-(20621, 4410, 12), -- Slightly Strong P. Atk.
-(20621, 4411, 12), -- Slightly Strong M. Atk.
-(20621, 4412, 10), -- Slightly Weak P. Def.
-(20621, 4413, 10), -- Slightly Weak M. Def.
-(20621, 4414, 2), -- Standard Type
-(20621, 4415, 3), -- One-handed Sword
-(20621, 4416, 2), -- Magic Creatures
+(20621, 4408, 11), -- HP Modifiers
+(20621, 4409, 1), -- MP Modifiers
+(20621, 4410, 12), -- P. Atk. Modifiers
+(20621, 4411, 12), -- M. Atk. Modifiers
+(20621, 4412, 10), -- P. Def. Modifiers
+(20621, 4413, 10), -- M. Def. Modifiers
+(20621, 4414, 2), -- Armor Type
+(20621, 4415, 3), -- Weapon Type
+(20621, 4416, 2), -- Races
 -- Maluk Soldier
-(20622, 4067, 6), -- Blow
-(20622, 4085, 1), -- Critical Damage
+(20622, 4067, 6), -- NPC Mortal Blow
+(20622, 4085, 1), -- Critical Power
 (20622, 4086, 1), -- Critical Chance
-(20622, 4408, 11), -- HP Increase (3x)
-(20622, 4409, 1), -- MP Increase (1x)
-(20622, 4410, 12), -- Slightly Strong P. Atk.
-(20622, 4411, 12), -- Slightly Strong M. Atk.
-(20622, 4412, 10), -- Slightly Weak P. Def.
-(20622, 4413, 10), -- Slightly Weak M. Def.
-(20622, 4414, 2), -- Standard Type
-(20622, 4415, 7), -- Daggers
-(20622, 4416, 1), -- Undead
+(20622, 4408, 11), -- HP Modifiers
+(20622, 4409, 1), -- MP Modifiers
+(20622, 4410, 12), -- P. Atk. Modifiers
+(20622, 4411, 12), -- M. Atk. Modifiers
+(20622, 4412, 10), -- P. Def. Modifiers
+(20622, 4413, 10), -- M. Def. Modifiers
+(20622, 4414, 2), -- Armor Type
+(20622, 4415, 7), -- Weapon Type
+(20622, 4416, 1), -- Races
 (20622, 4438, 2), -- Greater Resist Sleep
 -- Plando
-(20623, 4124, 6), -- Spear Attack
-(20623, 4408, 12), -- HP Increase (4x)
-(20623, 4409, 1), -- MP Increase (1x)
-(20623, 4410, 10), -- Slightly Weak P. Atk.
-(20623, 4411, 10), -- Slightly Weak M. Atk.
-(20623, 4412, 12), -- Slightly Strong P. Def.
-(20623, 4413, 12), -- Slightly Strong M. Def.
-(20623, 4414, 2), -- Standard Type
-(20623, 4415, 9), -- Bows
-(20623, 4416, 6), -- Humanoids
+(20623, 4124, 6), -- NPC Spear Attack
+(20623, 4408, 12), -- HP Modifiers
+(20623, 4409, 1), -- MP Modifiers
+(20623, 4410, 10), -- P. Atk. Modifiers
+(20623, 4411, 10), -- M. Atk. Modifiers
+(20623, 4412, 12), -- P. Def. Modifiers
+(20623, 4413, 12), -- M. Def. Modifiers
+(20623, 4414, 2), -- Armor Type
+(20623, 4415, 9), -- Weapon Type
+(20623, 4416, 6), -- Races
 -- Cave Howler
-(20624, 4074, 2), -- Haste
-(20624, 4408, 12), -- HP Increase (4x)
-(20624, 4409, 1), -- MP Increase (1x)
-(20624, 4410, 10), -- Slightly Weak P. Atk.
-(20624, 4411, 10), -- Slightly Weak M. Atk.
-(20624, 4412, 12), -- Slightly Strong P. Def.
-(20624, 4413, 12), -- Slightly Strong M. Def.
-(20624, 4414, 2), -- Standard Type
-(20624, 4415, 3), -- One-handed Sword
-(20624, 4416, 11), -- Giants
+(20624, 4074, 2), -- NPC Haste
+(20624, 4408, 12), -- HP Modifiers
+(20624, 4409, 1), -- MP Modifiers
+(20624, 4410, 10), -- P. Atk. Modifiers
+(20624, 4411, 10), -- M. Atk. Modifiers
+(20624, 4412, 12), -- P. Def. Modifiers
+(20624, 4413, 12), -- M. Def. Modifiers
+(20624, 4414, 2), -- Armor Type
+(20624, 4415, 3), -- Weapon Type
+(20624, 4416, 11), -- Races
 -- Maluk Knight
-(20625, 4073, 6), -- Stun
-(20625, 4408, 12), -- HP Increase (4x)
-(20625, 4409, 1), -- MP Increase (1x)
-(20625, 4410, 10), -- Slightly Weak P. Atk.
-(20625, 4411, 10), -- Slightly Weak M. Atk.
-(20625, 4412, 12), -- Slightly Strong P. Def.
-(20625, 4413, 12), -- Slightly Strong M. Def.
-(20625, 4414, 2), -- Standard Type
-(20625, 4415, 3), -- One-handed Sword
-(20625, 4416, 1), -- Undead
+(20625, 4073, 6), -- Shock
+(20625, 4408, 12), -- HP Modifiers
+(20625, 4409, 1), -- MP Modifiers
+(20625, 4410, 10), -- P. Atk. Modifiers
+(20625, 4411, 10), -- M. Atk. Modifiers
+(20625, 4412, 12), -- P. Def. Modifiers
+(20625, 4413, 12), -- M. Def. Modifiers
+(20625, 4414, 2), -- Armor Type
+(20625, 4415, 3), -- Weapon Type
+(20625, 4416, 1), -- Races
 -- Maluk Berserker
-(20626, 4032, 6), -- Power Strike
-(20626, 4408, 12), -- HP Increase (4x)
-(20626, 4409, 1), -- MP Increase (1x)
-(20626, 4410, 13), -- Slightly Strong P. Atk.
-(20626, 4411, 13), -- Slightly Strong M. Atk.
-(20626, 4412, 16), -- Very Strong P. Def.
-(20626, 4413, 9), -- Slightly Weak M. Def.
-(20626, 4414, 2), -- Standard Type
-(20626, 4415, 3), -- One-handed Sword
-(20626, 4416, 1), -- Undead
+(20626, 4032, 6), -- NPC Strike
+(20626, 4408, 12), -- HP Modifiers
+(20626, 4409, 1), -- MP Modifiers
+(20626, 4410, 13), -- P. Atk. Modifiers
+(20626, 4411, 13), -- M. Atk. Modifiers
+(20626, 4412, 16), -- P. Def. Modifiers
+(20626, 4413, 9), -- M. Def. Modifiers
+(20626, 4414, 2), -- Armor Type
+(20626, 4415, 3), -- Weapon Type
+(20626, 4416, 1), -- Races
 -- Maluk Lord
-(20627, 4002, 6), -- HP Drain
+(20627, 4002, 6), -- NPC HP Drain
 (20627, 4046, 6), -- Sleep
-(20627, 4094, 6), -- Cancellation
-(20627, 4098, 6), -- Silence
-(20627, 4408, 13), -- HP Increase (5x)
-(20627, 4409, 1), -- MP Increase (1x)
-(20627, 4410, 11), -- Average P. Atk.
-(20627, 4411, 11), -- Average M. Atk.
-(20627, 4412, 11), -- Average P. Def.
-(20627, 4413, 11), -- Average M. Def.
-(20627, 4414, 2), -- Standard Type
-(20627, 4415, 3), -- One-handed Sword
-(20627, 4416, 1), -- Undead
+(20627, 4094, 6), -- NPC Cancel Magic
+(20627, 4098, 6), -- Magic Skill Block
+(20627, 4408, 13), -- HP Modifiers
+(20627, 4409, 1), -- MP Modifiers
+(20627, 4410, 11), -- P. Atk. Modifiers
+(20627, 4411, 11), -- M. Atk. Modifiers
+(20627, 4412, 11), -- P. Def. Modifiers
+(20627, 4413, 11), -- M. Def. Modifiers
+(20627, 4414, 2), -- Armor Type
+(20627, 4415, 3), -- Weapon Type
+(20627, 4416, 1), -- Races
 -- Limal Karinness
-(20628, 4002, 6), -- HP Drain
+(20628, 4002, 6), -- NPC HP Drain
 (20628, 4047, 6), -- Hold
 (20628, 4117, 6), -- Paralysis
-(20628, 4408, 13), -- HP Increase (5x)
-(20628, 4409, 1), -- MP Increase (1x)
-(20628, 4410, 12), -- Slightly Strong P. Atk.
-(20628, 4411, 12), -- Slightly Strong M. Atk.
-(20628, 4412, 10), -- Slightly Weak P. Def.
-(20628, 4413, 10), -- Slightly Weak M. Def.
-(20628, 4414, 2), -- Standard Type
-(20628, 4415, 3), -- One-handed Sword
-(20628, 4416, 9), -- Demons
+(20628, 4408, 13), -- HP Modifiers
+(20628, 4409, 1), -- MP Modifiers
+(20628, 4410, 12), -- P. Atk. Modifiers
+(20628, 4411, 12), -- M. Atk. Modifiers
+(20628, 4412, 10), -- P. Def. Modifiers
+(20628, 4413, 10), -- M. Def. Modifiers
+(20628, 4414, 2), -- Armor Type
+(20628, 4415, 3), -- Weapon Type
+(20628, 4416, 9), -- Races
 -- Karik
-(20629, 4032, 7), -- Power Strike
-(20629, 4072, 7), -- Stun
-(20629, 4085, 1), -- Critical Damage
+(20629, 4032, 7), -- NPC Strike
+(20629, 4072, 7), -- Shock
+(20629, 4085, 1), -- Critical Power
 (20629, 4086, 1), -- Critical Chance
-(20629, 4091, 1), -- Spirit Ogre
-(20629, 4408, 13), -- HP Increase (5x)
-(20629, 4409, 1), -- MP Increase (1x)
-(20629, 4410, 12), -- Slightly Strong P. Atk.
-(20629, 4411, 12), -- Slightly Strong M. Atk.
-(20629, 4412, 13), -- Slightly Strong P. Def.
-(20629, 4413, 11), -- Average M. Def.
-(20629, 4414, 2), -- Standard Type
-(20629, 4415, 3), -- One-handed Sword
-(20629, 4416, 9), -- Demons
+(20629, 4091, 1), -- NPC Ogre Spirit Totem
+(20629, 4408, 13), -- HP Modifiers
+(20629, 4409, 1), -- MP Modifiers
+(20629, 4410, 12), -- P. Atk. Modifiers
+(20629, 4411, 12), -- M. Atk. Modifiers
+(20629, 4412, 13), -- P. Def. Modifiers
+(20629, 4413, 11), -- M. Def. Modifiers
+(20629, 4414, 2), -- Armor Type
+(20629, 4415, 3), -- Weapon Type
+(20629, 4416, 9), -- Races
 -- Taik Orc
-(20630, 4408, 1), -- HP Increase (1x)
-(20630, 4409, 1), -- MP Increase (1x)
-(20630, 4410, 11), -- Average P. Atk.
-(20630, 4411, 11), -- Average M. Atk.
-(20630, 4412, 11), -- Average P. Def.
-(20630, 4413, 11), -- Average M. Def.
-(20630, 4414, 2), -- Standard Type
-(20630, 4415, 3), -- One-handed Sword
-(20630, 4416, 6), -- Humanoids
+(20630, 4408, 1), -- HP Modifiers
+(20630, 4409, 1), -- MP Modifiers
+(20630, 4410, 11), -- P. Atk. Modifiers
+(20630, 4411, 11), -- M. Atk. Modifiers
+(20630, 4412, 11), -- P. Def. Modifiers
+(20630, 4413, 11), -- M. Def. Modifiers
+(20630, 4414, 2), -- Armor Type
+(20630, 4415, 3), -- Weapon Type
+(20630, 4416, 6), -- Races
 -- Taik Orc Archer
-(20631, 4040, 4), -- Power Shot
-(20631, 4408, 1), -- HP Increase (1x)
-(20631, 4409, 1), -- MP Increase (1x)
-(20631, 4410, 10), -- Slightly Weak P. Atk.
-(20631, 4411, 10), -- Slightly Weak M. Atk.
-(20631, 4412, 12), -- Slightly Strong P. Def.
-(20631, 4413, 12), -- Slightly Strong M. Def.
-(20631, 4414, 3), -- Light Armor Type
-(20631, 4415, 9), -- Bows
-(20631, 4416, 6), -- Humanoids
+(20631, 4040, 4), -- NPC Bow Attack
+(20631, 4408, 1), -- HP Modifiers
+(20631, 4409, 1), -- MP Modifiers
+(20631, 4410, 10), -- P. Atk. Modifiers
+(20631, 4411, 10), -- M. Atk. Modifiers
+(20631, 4412, 12), -- P. Def. Modifiers
+(20631, 4413, 12), -- M. Def. Modifiers
+(20631, 4414, 3), -- Armor Type
+(20631, 4415, 9), -- Weapon Type
+(20631, 4416, 6), -- Races
 -- Taik Orc Warrior
-(20632, 4032, 4), -- Power Strike
-(20632, 4408, 1), -- HP Increase (1x)
-(20632, 4409, 1), -- MP Increase (1x)
-(20632, 4410, 12), -- Slightly Strong P. Atk.
-(20632, 4411, 12), -- Slightly Strong M. Atk.
-(20632, 4412, 10), -- Slightly Weak P. Def.
-(20632, 4413, 10), -- Slightly Weak M. Def.
-(20632, 4414, 2), -- Standard Type
-(20632, 4415, 3), -- One-handed Sword
-(20632, 4416, 6), -- Humanoids
+(20632, 4032, 4), -- NPC Strike
+(20632, 4408, 1), -- HP Modifiers
+(20632, 4409, 1), -- MP Modifiers
+(20632, 4410, 12), -- P. Atk. Modifiers
+(20632, 4411, 12), -- M. Atk. Modifiers
+(20632, 4412, 10), -- P. Def. Modifiers
+(20632, 4413, 10), -- M. Def. Modifiers
+(20632, 4414, 2), -- Armor Type
+(20632, 4415, 3), -- Weapon Type
+(20632, 4416, 6), -- Races
 -- Taik Orc Shaman
-(20633, 4065, 4), -- Heal
-(20633, 4157, 4), -- Blaze
-(20633, 4160, 4), -- Aura Burn
-(20633, 4408, 1), -- HP Increase (1x)
-(20633, 4409, 1), -- MP Increase (1x)
-(20633, 4410, 10), -- Slightly Weak P. Atk.
-(20633, 4411, 10), -- Slightly Weak M. Atk.
-(20633, 4412, 12), -- Slightly Strong P. Def.
-(20633, 4413, 12), -- Slightly Strong M. Def.
-(20633, 4414, 2), -- Standard Type
-(20633, 4415, 5), -- Blunt Weapons
-(20633, 4416, 6), -- Humanoids
+(20633, 4065, 4), -- NPC Heal
+(20633, 4157, 4), -- NPC Blaze - Magic
+(20633, 4160, 4), -- NPC Aura Burn - Magic
+(20633, 4408, 1), -- HP Modifiers
+(20633, 4409, 1), -- MP Modifiers
+(20633, 4410, 10), -- P. Atk. Modifiers
+(20633, 4411, 10), -- M. Atk. Modifiers
+(20633, 4412, 12), -- P. Def. Modifiers
+(20633, 4413, 12), -- M. Def. Modifiers
+(20633, 4414, 2), -- Armor Type
+(20633, 4415, 5), -- Weapon Type
+(20633, 4416, 6), -- Races
 -- Taik Orc Captain
-(20634, 4032, 4), -- Power Strike
-(20634, 4408, 10), -- HP Increase (2x)
-(20634, 4409, 1), -- MP Increase (1x)
-(20634, 4410, 10), -- Slightly Weak P. Atk.
-(20634, 4411, 10), -- Slightly Weak M. Atk.
-(20634, 4412, 12), -- Slightly Strong P. Def.
-(20634, 4413, 12), -- Slightly Strong M. Def.
-(20634, 4414, 2), -- Standard Type
-(20634, 4415, 3), -- One-handed Sword
-(20634, 4416, 6), -- Humanoids
+(20634, 4032, 4), -- NPC Strike
+(20634, 4408, 10), -- HP Modifiers
+(20634, 4409, 1), -- MP Modifiers
+(20634, 4410, 10), -- P. Atk. Modifiers
+(20634, 4411, 10), -- M. Atk. Modifiers
+(20634, 4412, 12), -- P. Def. Modifiers
+(20634, 4413, 12), -- M. Def. Modifiers
+(20634, 4414, 2), -- Armor Type
+(20634, 4415, 3), -- Weapon Type
+(20634, 4416, 6), -- Races
 -- Carinkain
-(20635, 4039, 4), -- Mana Drain
-(20635, 4408, 1), -- HP Increase (1x)
-(20635, 4409, 1), -- MP Increase (1x)
-(20635, 4410, 12), -- Slightly Strong P. Atk.
-(20635, 4411, 12), -- Slightly Strong M. Atk.
-(20635, 4412, 10), -- Slightly Weak P. Def.
-(20635, 4413, 10), -- Slightly Weak M. Def.
-(20635, 4414, 2), -- Standard Type
-(20635, 4415, 3), -- One-handed Sword
-(20635, 4416, 2), -- Magic Creatures
+(20635, 4039, 4), -- NPC MP Drain
+(20635, 4408, 1), -- HP Modifiers
+(20635, 4409, 1), -- MP Modifiers
+(20635, 4410, 12), -- P. Atk. Modifiers
+(20635, 4411, 12), -- M. Atk. Modifiers
+(20635, 4412, 10), -- P. Def. Modifiers
+(20635, 4413, 10), -- M. Def. Modifiers
+(20635, 4414, 2), -- Armor Type
+(20635, 4415, 3), -- Weapon Type
+(20635, 4416, 2), -- Races
 -- Forest of Mirrors Ghost
 (20636, 4093, 1), -- Evasion
-(20636, 4408, 1), -- HP Increase (1x)
-(20636, 4409, 1), -- MP Increase (1x)
-(20636, 4410, 12), -- Slightly Strong P. Atk.
-(20636, 4411, 12), -- Slightly Strong M. Atk.
-(20636, 4412, 10), -- Slightly Weak P. Def.
-(20636, 4413, 10), -- Slightly Weak M. Def.
-(20636, 4414, 2), -- Standard Type
-(20636, 4415, 3), -- One-handed Sword
-(20636, 4416, 1), -- Undead
+(20636, 4408, 1), -- HP Modifiers
+(20636, 4409, 1), -- MP Modifiers
+(20636, 4410, 12), -- P. Atk. Modifiers
+(20636, 4411, 12), -- M. Atk. Modifiers
+(20636, 4412, 10), -- P. Def. Modifiers
+(20636, 4413, 10), -- M. Def. Modifiers
+(20636, 4414, 2), -- Armor Type
+(20636, 4415, 3), -- Weapon Type
+(20636, 4416, 1), -- Races
 -- Forest of Mirrors Ghost
 (20637, 4093, 1), -- Evasion
-(20637, 4408, 1), -- HP Increase (1x)
-(20637, 4409, 1), -- MP Increase (1x)
-(20637, 4410, 12), -- Slightly Strong P. Atk.
-(20637, 4411, 12), -- Slightly Strong M. Atk.
-(20637, 4412, 10), -- Slightly Weak P. Def.
-(20637, 4413, 10), -- Slightly Weak M. Def.
-(20637, 4414, 2), -- Standard Type
-(20637, 4415, 3), -- One-handed Sword
-(20637, 4416, 1), -- Undead
+(20637, 4408, 1), -- HP Modifiers
+(20637, 4409, 1), -- MP Modifiers
+(20637, 4410, 12), -- P. Atk. Modifiers
+(20637, 4411, 12), -- M. Atk. Modifiers
+(20637, 4412, 10), -- P. Def. Modifiers
+(20637, 4413, 10), -- M. Def. Modifiers
+(20637, 4414, 2), -- Armor Type
+(20637, 4415, 3), -- Weapon Type
+(20637, 4416, 1), -- Races
 -- Forest of Mirrors Ghost
 (20638, 4093, 1), -- Evasion
-(20638, 4408, 1), -- HP Increase (1x)
-(20638, 4409, 1), -- MP Increase (1x)
-(20638, 4410, 12), -- Slightly Strong P. Atk.
-(20638, 4411, 12), -- Slightly Strong M. Atk.
-(20638, 4412, 10), -- Slightly Weak P. Def.
-(20638, 4413, 10), -- Slightly Weak M. Def.
-(20638, 4414, 2), -- Standard Type
-(20638, 4415, 3), -- One-handed Sword
-(20638, 4416, 1), -- Undead
+(20638, 4408, 1), -- HP Modifiers
+(20638, 4409, 1), -- MP Modifiers
+(20638, 4410, 12), -- P. Atk. Modifiers
+(20638, 4411, 12), -- M. Atk. Modifiers
+(20638, 4412, 10), -- P. Def. Modifiers
+(20638, 4413, 10), -- M. Def. Modifiers
+(20638, 4414, 2), -- Armor Type
+(20638, 4415, 3), -- Weapon Type
+(20638, 4416, 1), -- Races
 -- Mirror
-(20639, 4039, 4), -- Mana Drain
+(20639, 4039, 4), -- NPC MP Drain
 (20639, 4046, 4), -- Sleep
-(20639, 4094, 4), -- Cancellation
+(20639, 4094, 4), -- NPC Cancel Magic
 (20639, 4095, 1), -- Damage Shield
-(20639, 4408, 10), -- HP Increase (2x)
-(20639, 4409, 1), -- MP Increase (1x)
-(20639, 4410, 10), -- Slightly Weak P. Atk.
-(20639, 4411, 10), -- Slightly Weak M. Atk.
-(20639, 4412, 12), -- Slightly Strong P. Def.
-(20639, 4413, 12), -- Slightly Strong M. Def.
-(20639, 4414, 2), -- Standard Type
-(20639, 4415, 3), -- One-handed Sword
-(20639, 4416, 13), -- Fairies
+(20639, 4408, 10), -- HP Modifiers
+(20639, 4409, 1), -- MP Modifiers
+(20639, 4410, 10), -- P. Atk. Modifiers
+(20639, 4411, 10), -- M. Atk. Modifiers
+(20639, 4412, 12), -- P. Def. Modifiers
+(20639, 4413, 12), -- M. Def. Modifiers
+(20639, 4414, 2), -- Armor Type
+(20639, 4415, 3), -- Weapon Type
+(20639, 4416, 13), -- Races
 -- Harit Lizardman
-(20640, 4408, 1), -- HP Increase (1x)
-(20640, 4409, 1), -- MP Increase (1x)
-(20640, 4410, 11), -- Average P. Atk.
-(20640, 4411, 11), -- Average M. Atk.
-(20640, 4412, 11), -- Average P. Def.
-(20640, 4413, 11), -- Average M. Def.
-(20640, 4414, 2), -- Standard Type
-(20640, 4415, 5), -- Blunt Weapons
-(20640, 4416, 6), -- Humanoids
+(20640, 4408, 1), -- HP Modifiers
+(20640, 4409, 1), -- MP Modifiers
+(20640, 4410, 11), -- P. Atk. Modifiers
+(20640, 4411, 11), -- M. Atk. Modifiers
+(20640, 4412, 11), -- P. Def. Modifiers
+(20640, 4413, 11), -- M. Def. Modifiers
+(20640, 4414, 2), -- Armor Type
+(20640, 4415, 5), -- Weapon Type
+(20640, 4416, 6), -- Races
 -- Harit Lizardman Grunt
-(20641, 4032, 5), -- Power Strike
-(20641, 4408, 1), -- HP Increase (1x)
-(20641, 4409, 1), -- MP Increase (1x)
-(20641, 4410, 11), -- Average P. Atk.
-(20641, 4411, 11), -- Average M. Atk.
-(20641, 4412, 11), -- Average P. Def.
-(20641, 4413, 11), -- Average M. Def.
-(20641, 4414, 2), -- Standard Type
-(20641, 4415, 3), -- One-handed Sword
-(20641, 4416, 6), -- Humanoids
+(20641, 4032, 5), -- NPC Strike
+(20641, 4408, 1), -- HP Modifiers
+(20641, 4409, 1), -- MP Modifiers
+(20641, 4410, 11), -- P. Atk. Modifiers
+(20641, 4411, 11), -- M. Atk. Modifiers
+(20641, 4412, 11), -- P. Def. Modifiers
+(20641, 4413, 11), -- M. Def. Modifiers
+(20641, 4414, 2), -- Armor Type
+(20641, 4415, 3), -- Weapon Type
+(20641, 4416, 6), -- Races
 -- Harit Lizardman Archer
-(20642, 4085, 1), -- Critical Damage
-(20642, 4096, 3), -- Hawk Eye
-(20642, 4408, 1), -- HP Increase (1x)
-(20642, 4409, 1), -- MP Increase (1x)
-(20642, 4410, 10), -- Slightly Weak P. Atk.
-(20642, 4411, 10), -- Slightly Weak M. Atk.
-(20642, 4412, 12), -- Slightly Strong P. Def.
-(20642, 4413, 12), -- Slightly Strong M. Def.
-(20642, 4414, 2), -- Standard Type
-(20642, 4415, 9), -- Bows
-(20642, 4416, 6), -- Humanoids
+(20642, 4085, 1), -- Critical Power
+(20642, 4096, 3), -- NPC Hawkeye
+(20642, 4408, 1), -- HP Modifiers
+(20642, 4409, 1), -- MP Modifiers
+(20642, 4410, 10), -- P. Atk. Modifiers
+(20642, 4411, 10), -- M. Atk. Modifiers
+(20642, 4412, 12), -- P. Def. Modifiers
+(20642, 4413, 12), -- M. Def. Modifiers
+(20642, 4414, 2), -- Armor Type
+(20642, 4415, 9), -- Weapon Type
+(20642, 4416, 6), -- Races
 -- Harit Lizardman Warrior
-(20643, 4030, 3), -- Might
-(20643, 4408, 1), -- HP Increase (1x)
-(20643, 4409, 1), -- MP Increase (1x)
-(20643, 4410, 12), -- Slightly Strong P. Atk.
-(20643, 4411, 12), -- Slightly Strong M. Atk.
-(20643, 4412, 10), -- Slightly Weak P. Def.
-(20643, 4413, 10), -- Slightly Weak M. Def.
-(20643, 4414, 2), -- Standard Type
-(20643, 4415, 3), -- One-handed Sword
-(20643, 4416, 6), -- Humanoids
+(20643, 4030, 3), -- NPC Clan Might
+(20643, 4408, 1), -- HP Modifiers
+(20643, 4409, 1), -- MP Modifiers
+(20643, 4410, 12), -- P. Atk. Modifiers
+(20643, 4411, 12), -- M. Atk. Modifiers
+(20643, 4412, 10), -- P. Def. Modifiers
+(20643, 4413, 10), -- M. Def. Modifiers
+(20643, 4414, 2), -- Armor Type
+(20643, 4415, 3), -- Weapon Type
+(20643, 4416, 6), -- Races
 -- Harit Lizardman Shaman
-(20644, 4076, 3), -- Slow
-(20644, 4155, 5), -- Twister
-(20644, 4160, 5), -- Aura Burn
-(20644, 4408, 1), -- HP Increase (1x)
-(20644, 4409, 1), -- MP Increase (1x)
-(20644, 4410, 12), -- Slightly Strong P. Atk.
-(20644, 4411, 12), -- Slightly Strong M. Atk.
-(20644, 4412, 10), -- Slightly Weak P. Def.
-(20644, 4413, 10), -- Slightly Weak M. Def.
-(20644, 4414, 2), -- Standard Type
-(20644, 4415, 5), -- Blunt Weapons
-(20644, 4416, 6), -- Humanoids
+(20644, 4076, 3), -- Reduction in movement speed
+(20644, 4155, 5), -- NPC Twister - Magic
+(20644, 4160, 5), -- NPC Aura Burn - Magic
+(20644, 4408, 1), -- HP Modifiers
+(20644, 4409, 1), -- MP Modifiers
+(20644, 4410, 12), -- P. Atk. Modifiers
+(20644, 4411, 12), -- M. Atk. Modifiers
+(20644, 4412, 10), -- P. Def. Modifiers
+(20644, 4413, 10), -- M. Def. Modifiers
+(20644, 4414, 2), -- Armor Type
+(20644, 4415, 5), -- Weapon Type
+(20644, 4416, 6), -- Races
 -- Harit Lizardman Matriarch
-(20645, 4067, 5), -- Blow
-(20645, 4085, 1), -- Critical Damage
+(20645, 4067, 5), -- NPC Mortal Blow
+(20645, 4085, 1), -- Critical Power
 (20645, 4086, 1), -- Critical Chance
-(20645, 4408, 10), -- HP Increase (2x)
-(20645, 4409, 1), -- MP Increase (1x)
-(20645, 4410, 10), -- Slightly Weak P. Atk.
-(20645, 4411, 10), -- Slightly Weak M. Atk.
-(20645, 4412, 12), -- Slightly Strong P. Def.
-(20645, 4413, 12), -- Slightly Strong M. Def.
-(20645, 4414, 2), -- Standard Type
-(20645, 4415, 3), -- One-handed Sword
-(20645, 4416, 6), -- Humanoids
+(20645, 4408, 10), -- HP Modifiers
+(20645, 4409, 1), -- MP Modifiers
+(20645, 4410, 10), -- P. Atk. Modifiers
+(20645, 4411, 10), -- M. Atk. Modifiers
+(20645, 4412, 12), -- P. Def. Modifiers
+(20645, 4413, 12), -- M. Def. Modifiers
+(20645, 4414, 2), -- Armor Type
+(20645, 4415, 3), -- Weapon Type
+(20645, 4416, 6), -- Races
 -- Halingka
 (20646, 4088, 5), -- Bleed
-(20646, 4408, 10), -- HP Increase (2x)
-(20646, 4409, 1), -- MP Increase (1x)
-(20646, 4410, 12), -- Slightly Strong P. Atk.
-(20646, 4411, 12), -- Slightly Strong M. Atk.
-(20646, 4412, 10), -- Slightly Weak P. Def.
-(20646, 4413, 10), -- Slightly Weak M. Def.
-(20646, 4414, 2), -- Standard Type
-(20646, 4415, 5), -- Blunt Weapons
-(20646, 4416, 3), -- Beasts
+(20646, 4408, 10), -- HP Modifiers
+(20646, 4409, 1), -- MP Modifiers
+(20646, 4410, 12), -- P. Atk. Modifiers
+(20646, 4411, 12), -- M. Atk. Modifiers
+(20646, 4412, 10), -- P. Def. Modifiers
+(20646, 4413, 10), -- M. Def. Modifiers
+(20646, 4414, 2), -- Armor Type
+(20646, 4415, 5), -- Weapon Type
+(20646, 4416, 3), -- Races
 -- Yintzu
-(20647, 4001, 5), -- Windstrike
-(20647, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(20647, 4408, 10), -- HP Increase (2x)
-(20647, 4409, 1), -- MP Increase (1x)
-(20647, 4410, 12), -- Slightly Strong P. Atk.
-(20647, 4411, 12), -- Slightly Strong M. Atk.
-(20647, 4412, 10), -- Slightly Weak P. Def.
-(20647, 4413, 10), -- Slightly Weak M. Def.
-(20647, 4414, 2), -- Standard Type
-(20647, 4415, 5), -- Blunt Weapons
-(20647, 4416, 2), -- Magic Creatures
+(20647, 4001, 5), -- NPC Wind Strike
+(20647, 4276, 1), -- Archery Attack Weak Point
+(20647, 4408, 10), -- HP Modifiers
+(20647, 4409, 1), -- MP Modifiers
+(20647, 4410, 12), -- P. Atk. Modifiers
+(20647, 4411, 12), -- M. Atk. Modifiers
+(20647, 4412, 10), -- P. Def. Modifiers
+(20647, 4413, 10), -- M. Def. Modifiers
+(20647, 4414, 2), -- Armor Type
+(20647, 4415, 5), -- Weapon Type
+(20647, 4416, 2), -- Races
 -- Paliote
-(20648, 4034, 5), -- Ice Bolt
-(20648, 4408, 10), -- HP Increase (2x)
-(20648, 4409, 1), -- MP Increase (1x)
-(20648, 4410, 12), -- Slightly Strong P. Atk.
-(20648, 4411, 12), -- Slightly Strong M. Atk.
-(20648, 4412, 13), -- Slightly Strong P. Def.
-(20648, 4413, 11), -- Average M. Def.
-(20648, 4414, 2), -- Standard Type
-(20648, 4415, 5), -- Blunt Weapons
-(20648, 4416, 2), -- Magic Creatures
+(20648, 4034, 5), -- Decrease Speed
+(20648, 4408, 10), -- HP Modifiers
+(20648, 4409, 1), -- MP Modifiers
+(20648, 4410, 12), -- P. Atk. Modifiers
+(20648, 4411, 12), -- M. Atk. Modifiers
+(20648, 4412, 13), -- P. Def. Modifiers
+(20648, 4413, 11), -- M. Def. Modifiers
+(20648, 4414, 2), -- Armor Type
+(20648, 4415, 5), -- Weapon Type
+(20648, 4416, 2), -- Races
 -- Hamrut
 (20649, 4035, 5), -- Poison
-(20649, 4408, 10), -- HP Increase (2x)
-(20649, 4409, 1), -- MP Increase (1x)
-(20649, 4410, 12), -- Slightly Strong P. Atk.
-(20649, 4411, 12), -- Slightly Strong M. Atk.
-(20649, 4412, 10), -- Slightly Weak P. Def.
-(20649, 4413, 10), -- Slightly Weak M. Def.
-(20649, 4414, 2), -- Standard Type
-(20649, 4415, 5), -- Blunt Weapons
-(20649, 4416, 12), -- Bugs
+(20649, 4408, 10), -- HP Modifiers
+(20649, 4409, 1), -- MP Modifiers
+(20649, 4410, 12), -- P. Atk. Modifiers
+(20649, 4411, 12), -- M. Atk. Modifiers
+(20649, 4412, 10), -- P. Def. Modifiers
+(20649, 4413, 10), -- M. Def. Modifiers
+(20649, 4414, 2), -- Armor Type
+(20649, 4415, 5), -- Weapon Type
+(20649, 4416, 12), -- Races
 -- Kranrot
-(20650, 4073, 5), -- Stun
-(20650, 4408, 10), -- HP Increase (2x)
-(20650, 4409, 1), -- MP Increase (1x)
-(20650, 4410, 12), -- Slightly Strong P. Atk.
-(20650, 4411, 12), -- Slightly Strong M. Atk.
-(20650, 4412, 10), -- Slightly Weak P. Def.
-(20650, 4413, 10), -- Slightly Weak M. Def.
-(20650, 4414, 2), -- Standard Type
-(20650, 4415, 5), -- Blunt Weapons
-(20650, 4416, 4), -- Animals
+(20650, 4073, 5), -- Shock
+(20650, 4408, 10), -- HP Modifiers
+(20650, 4409, 1), -- MP Modifiers
+(20650, 4410, 12), -- P. Atk. Modifiers
+(20650, 4411, 12), -- M. Atk. Modifiers
+(20650, 4412, 10), -- P. Def. Modifiers
+(20650, 4413, 10), -- M. Def. Modifiers
+(20650, 4414, 2), -- Armor Type
+(20650, 4415, 5), -- Weapon Type
+(20650, 4416, 4), -- Races
 -- Gamlin
-(20651, 4408, 10), -- HP Increase (2x)
-(20651, 4409, 1), -- MP Increase (1x)
-(20651, 4410, 10), -- Slightly Weak P. Atk.
-(20651, 4411, 10), -- Slightly Weak M. Atk.
-(20651, 4412, 12), -- Slightly Strong P. Def.
-(20651, 4413, 12), -- Slightly Strong M. Def.
-(20651, 4414, 2), -- Standard Type
-(20651, 4415, 5), -- Blunt Weapons
-(20651, 4416, 2), -- Magic Creatures
+(20651, 4408, 10), -- HP Modifiers
+(20651, 4409, 1), -- MP Modifiers
+(20651, 4410, 10), -- P. Atk. Modifiers
+(20651, 4411, 10), -- M. Atk. Modifiers
+(20651, 4412, 12), -- P. Def. Modifiers
+(20651, 4413, 12), -- M. Def. Modifiers
+(20651, 4414, 2), -- Armor Type
+(20651, 4415, 5), -- Weapon Type
+(20651, 4416, 2), -- Races
 -- Leogul
-(20652, 4037, 2), -- Weakness
-(20652, 4408, 10), -- HP Increase (2x)
-(20652, 4409, 1), -- MP Increase (1x)
-(20652, 4410, 10), -- Slightly Weak P. Atk.
-(20652, 4411, 10), -- Slightly Weak M. Atk.
-(20652, 4412, 12), -- Slightly Strong P. Def.
-(20652, 4413, 12), -- Slightly Strong M. Def.
-(20652, 4414, 2), -- Standard Type
-(20652, 4415, 5), -- Blunt Weapons
-(20652, 4416, 2), -- Magic Creatures
+(20652, 4037, 2), -- Decrease P.Atk
+(20652, 4408, 10), -- HP Modifiers
+(20652, 4409, 1), -- MP Modifiers
+(20652, 4410, 10), -- P. Atk. Modifiers
+(20652, 4411, 10), -- M. Atk. Modifiers
+(20652, 4412, 12), -- P. Def. Modifiers
+(20652, 4413, 12), -- M. Def. Modifiers
+(20652, 4414, 2), -- Armor Type
+(20652, 4415, 5), -- Weapon Type
+(20652, 4416, 2), -- Races
 -- Lesser Giant
-(20653, 4408, 11), -- HP Increase (3x)
-(20653, 4409, 1), -- MP Increase (1x)
-(20653, 4410, 11), -- Average P. Atk.
-(20653, 4411, 11), -- Average M. Atk.
-(20653, 4412, 11), -- Average P. Def.
-(20653, 4413, 11), -- Average M. Def.
-(20653, 4414, 2), -- Standard Type
-(20653, 4415, 5), -- Blunt Weapons
-(20653, 4416, 11), -- Giants
+(20653, 4408, 11), -- HP Modifiers
+(20653, 4409, 1), -- MP Modifiers
+(20653, 4410, 11), -- P. Atk. Modifiers
+(20653, 4411, 11), -- M. Atk. Modifiers
+(20653, 4412, 11), -- P. Def. Modifiers
+(20653, 4413, 11), -- M. Def. Modifiers
+(20653, 4414, 2), -- Armor Type
+(20653, 4415, 5), -- Weapon Type
+(20653, 4416, 11), -- Races
 -- Lesser Giant Soldier
-(20654, 4073, 6), -- Stun
-(20654, 4408, 11), -- HP Increase (3x)
-(20654, 4409, 1), -- MP Increase (1x)
-(20654, 4410, 13), -- Slightly Strong P. Atk.
-(20654, 4411, 13), -- Slightly Strong M. Atk.
-(20654, 4412, 16), -- Very Strong P. Def.
-(20654, 4413, 9), -- Slightly Weak M. Def.
-(20654, 4414, 2), -- Standard Type
-(20654, 4415, 5), -- Blunt Weapons
-(20654, 4416, 11), -- Giants
+(20654, 4073, 6), -- Shock
+(20654, 4408, 11), -- HP Modifiers
+(20654, 4409, 1), -- MP Modifiers
+(20654, 4410, 13), -- P. Atk. Modifiers
+(20654, 4411, 13), -- M. Atk. Modifiers
+(20654, 4412, 16), -- P. Def. Modifiers
+(20654, 4413, 9), -- M. Def. Modifiers
+(20654, 4414, 2), -- Armor Type
+(20654, 4415, 5), -- Weapon Type
+(20654, 4416, 11), -- Races
 (20654, 4439, 2), -- Greater Resist Hold
 -- Lesser Giant Shooter
-(20655, 4071, 5), -- Resist Bow/Crossbow Weapons
-(20655, 4408, 11), -- HP Increase (3x)
-(20655, 4409, 1), -- MP Increase (1x)
-(20655, 4410, 11), -- Average P. Atk.
-(20655, 4411, 11), -- Average M. Atk.
-(20655, 4412, 13), -- Slightly Strong P. Def.
-(20655, 4413, 11), -- Average M. Def.
-(20655, 4414, 2), -- Standard Type
-(20655, 4415, 9), -- Bows
-(20655, 4416, 11), -- Giants
+(20655, 4071, 5), -- Resist Archery
+(20655, 4408, 11), -- HP Modifiers
+(20655, 4409, 1), -- MP Modifiers
+(20655, 4410, 11), -- P. Atk. Modifiers
+(20655, 4411, 11), -- M. Atk. Modifiers
+(20655, 4412, 13), -- P. Def. Modifiers
+(20655, 4413, 11), -- M. Def. Modifiers
+(20655, 4414, 2), -- Armor Type
+(20655, 4415, 9), -- Weapon Type
+(20655, 4416, 11), -- Races
 -- Lesser Giant Scout
 (20656, 4086, 1), -- Critical Chance
-(20656, 4105, 6), -- Beam Cannon
-(20656, 4408, 11), -- HP Increase (3x)
-(20656, 4409, 1), -- MP Increase (1x)
-(20656, 4410, 11), -- Average P. Atk.
-(20656, 4411, 11), -- Average M. Atk.
-(20656, 4412, 11), -- Average P. Def.
-(20656, 4413, 11), -- Average M. Def.
-(20656, 4414, 3), -- Light Armor Type
-(20656, 4415, 9), -- Bows
-(20656, 4416, 11), -- Giants
+(20656, 4105, 6), -- NPC Straight Beam Cannon
+(20656, 4408, 11), -- HP Modifiers
+(20656, 4409, 1), -- MP Modifiers
+(20656, 4410, 11), -- P. Atk. Modifiers
+(20656, 4411, 11), -- M. Atk. Modifiers
+(20656, 4412, 11), -- P. Def. Modifiers
+(20656, 4413, 11), -- M. Def. Modifiers
+(20656, 4414, 3), -- Armor Type
+(20656, 4415, 9), -- Weapon Type
+(20656, 4416, 11), -- Races
 (20656, 4438, 2), -- Greater Resist Sleep
 -- Lesser Giant Mage
-(20657, 4065, 6), -- Heal
-(20657, 4156, 6), -- Beam Cannon
-(20657, 4160, 6), -- Aura Burn
-(20657, 4408, 10), -- HP Increase (2x)
-(20657, 4409, 1), -- MP Increase (1x)
-(20657, 4410, 12), -- Slightly Strong P. Atk.
-(20657, 4411, 12), -- Slightly Strong M. Atk.
-(20657, 4412, 10), -- Slightly Weak P. Def.
-(20657, 4413, 13), -- Slightly Strong M. Def.
-(20657, 4414, 2), -- Standard Type
-(20657, 4415, 5), -- Blunt Weapons
-(20657, 4416, 11), -- Giants
+(20657, 4065, 6), -- NPC Heal
+(20657, 4156, 6), -- NPC Curve Beam Cannon - Magic
+(20657, 4160, 6), -- NPC Aura Burn - Magic
+(20657, 4408, 10), -- HP Modifiers
+(20657, 4409, 1), -- MP Modifiers
+(20657, 4410, 12), -- P. Atk. Modifiers
+(20657, 4411, 12), -- M. Atk. Modifiers
+(20657, 4412, 10), -- P. Def. Modifiers
+(20657, 4413, 13), -- M. Def. Modifiers
+(20657, 4414, 2), -- Armor Type
+(20657, 4415, 5), -- Weapon Type
+(20657, 4416, 11), -- Races
 -- Lesser Giant Elder
 (20658, 4036, 6), -- Poison
 (20658, 4046, 6), -- Sleep
-(20658, 4066, 6), -- Twister
-(20658, 4071, 5), -- Resist Bow/Crossbow Weapons
-(20658, 4094, 6), -- Cancellation
-(20658, 4273, 3), -- Resist Daggers/Rapier Weapon
-(20658, 4408, 10), -- HP Increase (2x)
-(20658, 4409, 1), -- MP Increase (1x)
-(20658, 4410, 12), -- Slightly Strong P. Atk.
-(20658, 4411, 12), -- Slightly Strong M. Atk.
-(20658, 4412, 10), -- Slightly Weak P. Def.
-(20658, 4413, 13), -- Slightly Strong M. Def.
-(20658, 4414, 2), -- Standard Type
-(20658, 4415, 5), -- Blunt Weapons
-(20658, 4416, 11), -- Giants
+(20658, 4066, 6), -- NPC Twister
+(20658, 4071, 5), -- Resist Archery
+(20658, 4094, 6), -- NPC Cancel Magic
+(20658, 4273, 3), -- Resist Dagger
+(20658, 4408, 10), -- HP Modifiers
+(20658, 4409, 1), -- MP Modifiers
+(20658, 4410, 12), -- P. Atk. Modifiers
+(20658, 4411, 12), -- M. Atk. Modifiers
+(20658, 4412, 10), -- P. Def. Modifiers
+(20658, 4413, 13), -- M. Def. Modifiers
+(20658, 4414, 2), -- Armor Type
+(20658, 4415, 5), -- Weapon Type
+(20658, 4416, 11), -- Races
 (20658, 4438, 2), -- Greater Resist Sleep
 (20658, 4439, 2), -- Greater Resist Hold
 -- Grave Wanderer
-(20659, 4071, 5), -- Resist Bow/Crossbow Weapons
-(20659, 4248, 4), -- Energy Drain
-(20659, 4284, 5), -- Resist Bleed Attacks
-(20659, 4408, 1), -- HP Increase (1x)
-(20659, 4409, 1), -- MP Increase (1x)
-(20659, 4410, 11), -- Average P. Atk.
-(20659, 4411, 11), -- Average M. Atk.
-(20659, 4412, 11), -- Average P. Def.
-(20659, 4413, 19), -- Extremely Strong M. Def.
-(20659, 4414, 2), -- Standard Type
-(20659, 4415, 3), -- One-handed Sword
-(20659, 4416, 1), -- Undead
+(20659, 4071, 5), -- Resist Archery
+(20659, 4248, 4), -- NPC HP Drain - Slow
+(20659, 4284, 5), -- Resist Bleeding
+(20659, 4408, 1), -- HP Modifiers
+(20659, 4409, 1), -- MP Modifiers
+(20659, 4410, 11), -- P. Atk. Modifiers
+(20659, 4411, 11), -- M. Atk. Modifiers
+(20659, 4412, 11), -- P. Def. Modifiers
+(20659, 4413, 19), -- M. Def. Modifiers
+(20659, 4414, 2), -- Armor Type
+(20659, 4415, 3), -- Weapon Type
+(20659, 4416, 1), -- Races
 -- Archer of Greed
-(20660, 4120, 4), -- Stun
-(20660, 4408, 1), -- HP Increase (1x)
-(20660, 4409, 1), -- MP Increase (1x)
-(20660, 4410, 12), -- Slightly Strong P. Atk.
-(20660, 4411, 12), -- Slightly Strong M. Atk.
-(20660, 4412, 10), -- Slightly Weak P. Def.
-(20660, 4413, 10), -- Slightly Weak M. Def.
-(20660, 4414, 3), -- Light Armor Type
-(20660, 4415, 9), -- Bows
-(20660, 4416, 1), -- Undead
+(20660, 4120, 4), -- Shock
+(20660, 4408, 1), -- HP Modifiers
+(20660, 4409, 1), -- MP Modifiers
+(20660, 4410, 12), -- P. Atk. Modifiers
+(20660, 4411, 12), -- M. Atk. Modifiers
+(20660, 4412, 10), -- P. Def. Modifiers
+(20660, 4413, 10), -- M. Def. Modifiers
+(20660, 4414, 3), -- Armor Type
+(20660, 4415, 9), -- Weapon Type
+(20660, 4416, 1), -- Races
 -- Hatar Ratman Thief
-(20661, 4067, 4), -- Blow
-(20661, 4408, 1), -- HP Increase (1x)
-(20661, 4409, 1), -- MP Increase (1x)
-(20661, 4410, 11), -- Average P. Atk.
-(20661, 4411, 11), -- Average M. Atk.
-(20661, 4412, 11), -- Average P. Def.
-(20661, 4413, 11), -- Average M. Def.
-(20661, 4414, 2), -- Standard Type
-(20661, 4415, 7), -- Daggers
-(20661, 4416, 6), -- Humanoids
+(20661, 4067, 4), -- NPC Mortal Blow
+(20661, 4408, 1), -- HP Modifiers
+(20661, 4409, 1), -- MP Modifiers
+(20661, 4410, 11), -- P. Atk. Modifiers
+(20661, 4411, 11), -- M. Atk. Modifiers
+(20661, 4412, 11), -- P. Def. Modifiers
+(20661, 4413, 11), -- M. Def. Modifiers
+(20661, 4414, 2), -- Armor Type
+(20661, 4415, 7), -- Weapon Type
+(20661, 4416, 6), -- Races
 -- Hatar Ratman Boss
-(20662, 4067, 4), -- Blow
-(20662, 4408, 1), -- HP Increase (1x)
-(20662, 4409, 1), -- MP Increase (1x)
-(20662, 4410, 11), -- Average P. Atk.
-(20662, 4411, 11), -- Average M. Atk.
-(20662, 4412, 11), -- Average P. Def.
-(20662, 4413, 11), -- Average M. Def.
-(20662, 4414, 2), -- Standard Type
-(20662, 4415, 7), -- Daggers
-(20662, 4416, 6), -- Humanoids
+(20662, 4067, 4), -- NPC Mortal Blow
+(20662, 4408, 1), -- HP Modifiers
+(20662, 4409, 1), -- MP Modifiers
+(20662, 4410, 11), -- P. Atk. Modifiers
+(20662, 4411, 11), -- M. Atk. Modifiers
+(20662, 4412, 11), -- P. Def. Modifiers
+(20662, 4413, 11), -- M. Def. Modifiers
+(20662, 4414, 2), -- Armor Type
+(20662, 4415, 7), -- Weapon Type
+(20662, 4416, 6), -- Races
 -- Hatar Hanishee
 (20663, 4047, 4), -- Hold
-(20663, 4408, 1), -- HP Increase (1x)
-(20663, 4409, 1), -- MP Increase (1x)
-(20663, 4410, 12), -- Slightly Strong P. Atk.
-(20663, 4411, 12), -- Slightly Strong M. Atk.
-(20663, 4412, 10), -- Slightly Weak P. Def.
-(20663, 4413, 10), -- Slightly Weak M. Def.
-(20663, 4414, 2), -- Standard Type
-(20663, 4415, 3), -- One-handed Sword
-(20663, 4416, 3), -- Beasts
+(20663, 4408, 1), -- HP Modifiers
+(20663, 4409, 1), -- MP Modifiers
+(20663, 4410, 12), -- P. Atk. Modifiers
+(20663, 4411, 12), -- M. Atk. Modifiers
+(20663, 4412, 10), -- P. Def. Modifiers
+(20663, 4413, 10), -- M. Def. Modifiers
+(20663, 4414, 2), -- Armor Type
+(20663, 4415, 3), -- Weapon Type
+(20663, 4416, 3), -- Races
 -- Deprive
-(20664, 4039, 5), -- Mana Drain
-(20664, 4408, 1), -- HP Increase (1x)
-(20664, 4409, 1), -- MP Increase (1x)
-(20664, 4410, 12), -- Slightly Strong P. Atk.
-(20664, 4411, 12), -- Slightly Strong M. Atk.
-(20664, 4412, 10), -- Slightly Weak P. Def.
-(20664, 4413, 10), -- Slightly Weak M. Def.
-(20664, 4414, 2), -- Standard Type
-(20664, 4415, 3), -- One-handed Sword
-(20664, 4416, 2), -- Magic Creatures
+(20664, 4039, 5), -- NPC MP Drain
+(20664, 4408, 1), -- HP Modifiers
+(20664, 4409, 1), -- MP Modifiers
+(20664, 4410, 12), -- P. Atk. Modifiers
+(20664, 4411, 12), -- M. Atk. Modifiers
+(20664, 4412, 10), -- P. Def. Modifiers
+(20664, 4413, 10), -- M. Def. Modifiers
+(20664, 4414, 2), -- Armor Type
+(20664, 4415, 3), -- Weapon Type
+(20664, 4416, 2), -- Races
 -- Taik Orc Supply
-(20665, 4032, 5), -- Power Strike
-(20665, 4408, 1), -- HP Increase (1x)
-(20665, 4409, 1), -- MP Increase (1x)
-(20665, 4410, 10), -- Slightly Weak P. Atk.
-(20665, 4411, 10), -- Slightly Weak M. Atk.
-(20665, 4412, 12), -- Slightly Strong P. Def.
-(20665, 4413, 12), -- Slightly Strong M. Def.
-(20665, 4414, 2), -- Standard Type
-(20665, 4415, 3), -- One-handed Sword
-(20665, 4416, 6), -- Humanoids
+(20665, 4032, 5), -- NPC Strike
+(20665, 4408, 1), -- HP Modifiers
+(20665, 4409, 1), -- MP Modifiers
+(20665, 4410, 10), -- P. Atk. Modifiers
+(20665, 4411, 10), -- M. Atk. Modifiers
+(20665, 4412, 12), -- P. Def. Modifiers
+(20665, 4413, 12), -- M. Def. Modifiers
+(20665, 4414, 2), -- Armor Type
+(20665, 4415, 3), -- Weapon Type
+(20665, 4416, 6), -- Races
 -- Taik Orc Seeker
-(20666, 4073, 5), -- Stun
-(20666, 4408, 1), -- HP Increase (1x)
-(20666, 4409, 1), -- MP Increase (1x)
-(20666, 4410, 12), -- Slightly Strong P. Atk.
-(20666, 4411, 12), -- Slightly Strong M. Atk.
-(20666, 4412, 10), -- Slightly Weak P. Def.
-(20666, 4413, 10), -- Slightly Weak M. Def.
-(20666, 4414, 2), -- Standard Type
-(20666, 4415, 3), -- One-handed Sword
-(20666, 4416, 6), -- Humanoids
+(20666, 4073, 5), -- Shock
+(20666, 4408, 1), -- HP Modifiers
+(20666, 4409, 1), -- MP Modifiers
+(20666, 4410, 12), -- P. Atk. Modifiers
+(20666, 4411, 12), -- M. Atk. Modifiers
+(20666, 4412, 10), -- P. Def. Modifiers
+(20666, 4413, 10), -- M. Def. Modifiers
+(20666, 4414, 2), -- Armor Type
+(20666, 4415, 3), -- Weapon Type
+(20666, 4416, 6), -- Races
 -- Farcran
-(20667, 4073, 5), -- Stun
-(20667, 4408, 1), -- HP Increase (1x)
-(20667, 4409, 1), -- MP Increase (1x)
-(20667, 4410, 11), -- Average P. Atk.
-(20667, 4411, 11), -- Average M. Atk.
-(20667, 4412, 11), -- Average P. Def.
-(20667, 4413, 11), -- Average M. Def.
-(20667, 4414, 2), -- Standard Type
-(20667, 4415, 3), -- One-handed Sword
-(20667, 4416, 4), -- Animals
+(20667, 4073, 5), -- Shock
+(20667, 4408, 1), -- HP Modifiers
+(20667, 4409, 1), -- MP Modifiers
+(20667, 4410, 11), -- P. Atk. Modifiers
+(20667, 4411, 11), -- M. Atk. Modifiers
+(20667, 4412, 11), -- P. Def. Modifiers
+(20667, 4413, 11), -- M. Def. Modifiers
+(20667, 4414, 2), -- Armor Type
+(20667, 4415, 3), -- Weapon Type
+(20667, 4416, 4), -- Races
 -- Grave Guard
-(20668, 4078, 5), -- Flame Strike
-(20668, 4273, 3), -- Resist Daggers/Rapier Weapon
-(20668, 4274, 1), -- Blunt Weapon Weak Point
-(20668, 4408, 1), -- HP Increase (1x)
-(20668, 4409, 1), -- MP Increase (1x)
-(20668, 4410, 10), -- Slightly Weak P. Atk.
-(20668, 4411, 10), -- Slightly Weak M. Atk.
-(20668, 4412, 12), -- Slightly Strong P. Def.
-(20668, 4413, 12), -- Slightly Strong M. Def.
-(20668, 4414, 2), -- Standard Type
-(20668, 4415, 3), -- One-handed Sword
-(20668, 4416, 2), -- Magic Creatures
+(20668, 4078, 5), -- NPC Flamestrike
+(20668, 4273, 3), -- Resist Dagger
+(20668, 4274, 1), -- Blunt Attack Weak Point
+(20668, 4408, 1), -- HP Modifiers
+(20668, 4409, 1), -- MP Modifiers
+(20668, 4410, 10), -- P. Atk. Modifiers
+(20668, 4411, 10), -- M. Atk. Modifiers
+(20668, 4412, 12), -- P. Def. Modifiers
+(20668, 4413, 12), -- M. Def. Modifiers
+(20668, 4414, 2), -- Armor Type
+(20668, 4415, 3), -- Weapon Type
+(20668, 4416, 2), -- Races
 (20668, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Taik Orc Supply Leader
-(20669, 4073, 5), -- Stun
-(20669, 4408, 1), -- HP Increase (1x)
-(20669, 4409, 1), -- MP Increase (1x)
-(20669, 4410, 12); -- Slightly Strong P. Atk.
+(20669, 4073, 5), -- Shock
+(20669, 4408, 1), -- HP Modifiers
+(20669, 4409, 1), -- MP Modifiers
+(20669, 4410, 12); -- P. Atk. Modifiers
 
 INSERT INTO `npcskills` VALUES
-(20669, 4411, 12), -- Slightly Strong M. Atk.
-(20669, 4412, 10), -- Slightly Weak P. Def.
-(20669, 4413, 10), -- Slightly Weak M. Def.
-(20669, 4414, 2), -- Standard Type
-(20669, 4415, 3), -- One-handed Sword
-(20669, 4416, 6), -- Humanoids
+(20669, 4411, 12), -- M. Atk. Modifiers
+(20669, 4412, 10), -- P. Def. Modifiers
+(20669, 4413, 10), -- M. Def. Modifiers
+(20669, 4414, 2), -- Armor Type
+(20669, 4415, 3), -- Weapon Type
+(20669, 4416, 6), -- Races
 -- Crimson Drake
-(20670, 4071, 5), -- Resist Bow/Crossbow Weapons
-(20670, 4100, 6), -- Prominence
-(20670, 4408, 1), -- HP Increase (1x)
-(20670, 4409, 1), -- MP Increase (1x)
-(20670, 4410, 12), -- Slightly Strong P. Atk.
-(20670, 4411, 12), -- Slightly Strong M. Atk.
-(20670, 4412, 10), -- Slightly Weak P. Def.
-(20670, 4413, 10), -- Slightly Weak M. Def.
-(20670, 4414, 2), -- Standard Type
-(20670, 4415, 3), -- One-handed Sword
-(20670, 4416, 10), -- Dragons
+(20670, 4071, 5), -- Resist Archery
+(20670, 4100, 6), -- NPC Prominence
+(20670, 4408, 1), -- HP Modifiers
+(20670, 4409, 1), -- MP Modifiers
+(20670, 4410, 12), -- P. Atk. Modifiers
+(20670, 4411, 12), -- M. Atk. Modifiers
+(20670, 4412, 10), -- P. Def. Modifiers
+(20670, 4413, 10), -- M. Def. Modifiers
+(20670, 4414, 2), -- Armor Type
+(20670, 4415, 3), -- Weapon Type
+(20670, 4416, 10), -- Races
 -- Kadios
-(20671, 4098, 6), -- Silence
-(20671, 4408, 1), -- HP Increase (1x)
-(20671, 4409, 1), -- MP Increase (1x)
-(20671, 4410, 12), -- Slightly Strong P. Atk.
-(20671, 4411, 12), -- Slightly Strong M. Atk.
-(20671, 4412, 10), -- Slightly Weak P. Def.
-(20671, 4413, 10), -- Slightly Weak M. Def.
-(20671, 4414, 2), -- Standard Type
-(20671, 4415, 3), -- One-handed Sword
-(20671, 4416, 12), -- Bugs
+(20671, 4098, 6), -- Magic Skill Block
+(20671, 4408, 1), -- HP Modifiers
+(20671, 4409, 1), -- MP Modifiers
+(20671, 4410, 12), -- P. Atk. Modifiers
+(20671, 4411, 12), -- M. Atk. Modifiers
+(20671, 4412, 10), -- P. Def. Modifiers
+(20671, 4413, 10), -- M. Def. Modifiers
+(20671, 4414, 2), -- Armor Type
+(20671, 4415, 3), -- Weapon Type
+(20671, 4416, 12), -- Races
 -- Trives
-(20672, 4039, 6), -- Mana Drain
+(20672, 4039, 6), -- NPC MP Drain
 (20672, 4046, 6), -- Sleep
-(20672, 4094, 6), -- Cancellation
-(20672, 4098, 6), -- Silence
-(20672, 4408, 1), -- HP Increase (1x)
-(20672, 4409, 1), -- MP Increase (1x)
-(20672, 4410, 10), -- Slightly Weak P. Atk.
-(20672, 4411, 10), -- Slightly Weak M. Atk.
-(20672, 4412, 12), -- Slightly Strong P. Def.
-(20672, 4413, 12), -- Slightly Strong M. Def.
-(20672, 4414, 2), -- Standard Type
-(20672, 4415, 3), -- One-handed Sword
-(20672, 4416, 3), -- Beasts
+(20672, 4094, 6), -- NPC Cancel Magic
+(20672, 4098, 6), -- Magic Skill Block
+(20672, 4408, 1), -- HP Modifiers
+(20672, 4409, 1), -- MP Modifiers
+(20672, 4410, 10), -- P. Atk. Modifiers
+(20672, 4411, 10), -- M. Atk. Modifiers
+(20672, 4412, 12), -- P. Def. Modifiers
+(20672, 4413, 12), -- M. Def. Modifiers
+(20672, 4414, 2), -- Armor Type
+(20672, 4415, 3), -- Weapon Type
+(20672, 4416, 3), -- Races
 -- Falibati
 (20673, 4046, 6), -- Sleep
-(20673, 4408, 1), -- HP Increase (1x)
-(20673, 4409, 1), -- MP Increase (1x)
-(20673, 4410, 10), -- Slightly Weak P. Atk.
-(20673, 4411, 10), -- Slightly Weak M. Atk.
-(20673, 4412, 12), -- Slightly Strong P. Def.
-(20673, 4413, 12), -- Slightly Strong M. Def.
-(20673, 4414, 2), -- Standard Type
-(20673, 4415, 3), -- One-handed Sword
-(20673, 4416, 3), -- Beasts
+(20673, 4408, 1), -- HP Modifiers
+(20673, 4409, 1), -- MP Modifiers
+(20673, 4410, 10), -- P. Atk. Modifiers
+(20673, 4411, 10), -- M. Atk. Modifiers
+(20673, 4412, 12), -- P. Def. Modifiers
+(20673, 4413, 12), -- M. Def. Modifiers
+(20673, 4414, 2), -- Armor Type
+(20673, 4415, 3), -- Weapon Type
+(20673, 4416, 3), -- Races
 -- Doom Knight
-(20674, 4073, 6), -- Stun
-(20674, 4090, 1), -- Spirit Wolf
-(20674, 4101, 6), -- Whirlwind
-(20674, 4408, 1), -- HP Increase (1x)
-(20674, 4409, 1), -- MP Increase (1x)
-(20674, 4410, 12), -- Slightly Strong P. Atk.
-(20674, 4411, 12), -- Slightly Strong M. Atk.
-(20674, 4412, 10), -- Slightly Weak P. Def.
-(20674, 4413, 10), -- Slightly Weak M. Def.
-(20674, 4414, 2), -- Standard Type
-(20674, 4415, 3), -- One-handed Sword
-(20674, 4416, 1), -- Undead
+(20674, 4073, 6), -- Shock
+(20674, 4090, 1), -- NPC Wolf Spirit Totem
+(20674, 4101, 6), -- NPC Spinning Slash
+(20674, 4408, 1), -- HP Modifiers
+(20674, 4409, 1), -- MP Modifiers
+(20674, 4410, 12), -- P. Atk. Modifiers
+(20674, 4411, 12), -- M. Atk. Modifiers
+(20674, 4412, 10), -- P. Def. Modifiers
+(20674, 4413, 10), -- M. Def. Modifiers
+(20674, 4414, 2), -- Armor Type
+(20674, 4415, 3), -- Weapon Type
+(20674, 4416, 1), -- Races
 -- Tairim
-(20675, 4029, 3), -- Shield
-(20675, 4408, 1), -- HP Increase (1x)
-(20675, 4409, 1), -- MP Increase (1x)
-(20675, 4410, 10), -- Slightly Weak P. Atk.
-(20675, 4411, 10), -- Slightly Weak M. Atk.
-(20675, 4412, 12), -- Slightly Strong P. Def.
-(20675, 4413, 12), -- Slightly Strong M. Def.
-(20675, 4414, 2), -- Standard Type
-(20675, 4415, 3), -- One-handed Sword
-(20675, 4416, 2), -- Magic Creatures
+(20675, 4029, 3), -- NPC Shield
+(20675, 4408, 1), -- HP Modifiers
+(20675, 4409, 1), -- MP Modifiers
+(20675, 4410, 10), -- P. Atk. Modifiers
+(20675, 4411, 10), -- M. Atk. Modifiers
+(20675, 4412, 12), -- P. Def. Modifiers
+(20675, 4413, 12), -- M. Def. Modifiers
+(20675, 4414, 2), -- Armor Type
+(20675, 4415, 3), -- Weapon Type
+(20675, 4416, 2), -- Races
 -- Judge of Marsh
-(20676, 4102, 1), -- Surrender To Fire
-(20676, 4277, 5), -- Resist Poison Attacks
-(20676, 4408, 1), -- HP Increase (1x)
-(20676, 4409, 1), -- MP Increase (1x)
-(20676, 4410, 12), -- Slightly Strong P. Atk.
-(20676, 4411, 12), -- Slightly Strong M. Atk.
-(20676, 4412, 10), -- Slightly Weak P. Def.
-(20676, 4413, 10), -- Slightly Weak M. Def.
-(20676, 4414, 2), -- Standard Type
-(20676, 4415, 3), -- One-handed Sword
-(20676, 4416, 5), -- Plants
+(20676, 4102, 1), -- Become weak against line of fire
+(20676, 4277, 5), -- Resist Poison
+(20676, 4408, 1), -- HP Modifiers
+(20676, 4409, 1), -- MP Modifiers
+(20676, 4410, 12), -- P. Atk. Modifiers
+(20676, 4411, 12), -- M. Atk. Modifiers
+(20676, 4412, 10), -- P. Def. Modifiers
+(20676, 4413, 10), -- M. Def. Modifiers
+(20676, 4414, 2), -- Armor Type
+(20676, 4415, 3), -- Weapon Type
+(20676, 4416, 5), -- Races
 -- Tulben
 (20677, 4088, 5), -- Bleed
-(20677, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(20677, 4408, 1), -- HP Increase (1x)
-(20677, 4409, 1), -- MP Increase (1x)
-(20677, 4410, 11), -- Average P. Atk.
-(20677, 4411, 11), -- Average M. Atk.
-(20677, 4412, 11), -- Average P. Def.
-(20677, 4413, 11), -- Average M. Def.
-(20677, 4414, 2), -- Standard Type
-(20677, 4415, 3), -- One-handed Sword
-(20677, 4416, 4), -- Animals
+(20677, 4276, 1), -- Archery Attack Weak Point
+(20677, 4408, 1), -- HP Modifiers
+(20677, 4409, 1), -- MP Modifiers
+(20677, 4410, 11), -- P. Atk. Modifiers
+(20677, 4411, 11), -- M. Atk. Modifiers
+(20677, 4412, 11), -- P. Def. Modifiers
+(20677, 4413, 11), -- M. Def. Modifiers
+(20677, 4414, 2), -- Armor Type
+(20677, 4415, 3), -- Weapon Type
+(20677, 4416, 4), -- Races
 -- Tortured Undead
-(20678, 4078, 5), -- Flame Strike
-(20678, 4408, 1), -- HP Increase (1x)
-(20678, 4409, 1), -- MP Increase (1x)
-(20678, 4410, 12), -- Slightly Strong P. Atk.
-(20678, 4411, 12), -- Slightly Strong M. Atk.
-(20678, 4412, 10), -- Slightly Weak P. Def.
-(20678, 4413, 10), -- Slightly Weak M. Def.
-(20678, 4414, 2), -- Standard Type
-(20678, 4415, 3), -- One-handed Sword
-(20678, 4416, 1), -- Undead
+(20678, 4078, 5), -- NPC Flamestrike
+(20678, 4408, 1), -- HP Modifiers
+(20678, 4409, 1), -- MP Modifiers
+(20678, 4410, 12), -- P. Atk. Modifiers
+(20678, 4411, 12), -- M. Atk. Modifiers
+(20678, 4412, 10), -- P. Def. Modifiers
+(20678, 4413, 10), -- M. Def. Modifiers
+(20678, 4414, 2), -- Armor Type
+(20678, 4415, 3), -- Weapon Type
+(20678, 4416, 1), -- Races
 -- Marsh Stalker
-(20679, 4071, 3), -- Resist Bow/Crossbow Weapons
-(20679, 4102, 1), -- Surrender To Fire
-(20679, 4273, 3), -- Resist Daggers/Rapier Weapon
-(20679, 4274, 1), -- Blunt Weapon Weak Point
-(20679, 4408, 1), -- HP Increase (1x)
-(20679, 4409, 1), -- MP Increase (1x)
-(20679, 4410, 11), -- Average P. Atk.
-(20679, 4411, 11), -- Average M. Atk.
-(20679, 4412, 11), -- Average P. Def.
-(20679, 4413, 11), -- Average M. Def.
-(20679, 4414, 2), -- Standard Type
-(20679, 4415, 3), -- One-handed Sword
-(20679, 4416, 2), -- Magic Creatures
+(20679, 4071, 3), -- Resist Archery
+(20679, 4102, 1), -- Become weak against line of fire
+(20679, 4273, 3), -- Resist Dagger
+(20679, 4274, 1), -- Blunt Attack Weak Point
+(20679, 4408, 1), -- HP Modifiers
+(20679, 4409, 1), -- MP Modifiers
+(20679, 4410, 11), -- P. Atk. Modifiers
+(20679, 4411, 11), -- M. Atk. Modifiers
+(20679, 4412, 11), -- P. Def. Modifiers
+(20679, 4413, 11), -- M. Def. Modifiers
+(20679, 4414, 2), -- Armor Type
+(20679, 4415, 3), -- Weapon Type
+(20679, 4416, 2), -- Races
 -- Marsh Drake
-(20680, 4071, 3), -- Resist Bow/Crossbow Weapons
-(20680, 4100, 5), -- Prominence
-(20680, 4408, 1), -- HP Increase (1x)
-(20680, 4409, 1), -- MP Increase (1x)
-(20680, 4410, 12), -- Slightly Strong P. Atk.
-(20680, 4411, 12), -- Slightly Strong M. Atk.
-(20680, 4412, 10), -- Slightly Weak P. Def.
-(20680, 4413, 10), -- Slightly Weak M. Def.
-(20680, 4414, 2), -- Standard Type
-(20680, 4415, 3), -- One-handed Sword
-(20680, 4416, 10), -- Dragons
+(20680, 4071, 3), -- Resist Archery
+(20680, 4100, 5), -- NPC Prominence
+(20680, 4408, 1), -- HP Modifiers
+(20680, 4409, 1), -- MP Modifiers
+(20680, 4410, 12), -- P. Atk. Modifiers
+(20680, 4411, 12), -- M. Atk. Modifiers
+(20680, 4412, 10), -- P. Def. Modifiers
+(20680, 4413, 10), -- M. Def. Modifiers
+(20680, 4414, 2), -- Armor Type
+(20680, 4415, 3), -- Weapon Type
+(20680, 4416, 10), -- Races
 -- Vanor Silenos
-(20681, 4029, 3), -- Shield
-(20681, 4408, 1), -- HP Increase (1x)
-(20681, 4409, 1), -- MP Increase (1x)
-(20681, 4410, 11), -- Average P. Atk.
-(20681, 4411, 11), -- Average M. Atk.
-(20681, 4412, 11), -- Average P. Def.
-(20681, 4413, 11), -- Average M. Def.
-(20681, 4414, 2), -- Standard Type
-(20681, 4415, 5), -- Blunt Weapons
-(20681, 4416, 6), -- Humanoids
+(20681, 4029, 3), -- NPC Shield
+(20681, 4408, 1), -- HP Modifiers
+(20681, 4409, 1), -- MP Modifiers
+(20681, 4410, 11), -- P. Atk. Modifiers
+(20681, 4411, 11), -- M. Atk. Modifiers
+(20681, 4412, 11), -- P. Def. Modifiers
+(20681, 4413, 11), -- M. Def. Modifiers
+(20681, 4414, 2), -- Armor Type
+(20681, 4415, 5), -- Weapon Type
+(20681, 4416, 6), -- Races
 -- Vanor Silenos Grunt
-(20682, 4099, 2), -- Berserker Spirit
-(20682, 4408, 1), -- HP Increase (1x)
-(20682, 4409, 1), -- MP Increase (1x)
-(20682, 4410, 11), -- Average P. Atk.
-(20682, 4411, 11), -- Average M. Atk.
-(20682, 4412, 11), -- Average P. Def.
-(20682, 4413, 11), -- Average M. Def.
-(20682, 4414, 2), -- Standard Type
-(20682, 4415, 5), -- Blunt Weapons
-(20682, 4416, 6), -- Humanoids
+(20682, 4099, 2), -- NPC Berserk
+(20682, 4408, 1), -- HP Modifiers
+(20682, 4409, 1), -- MP Modifiers
+(20682, 4410, 11), -- P. Atk. Modifiers
+(20682, 4411, 11), -- M. Atk. Modifiers
+(20682, 4412, 11), -- P. Def. Modifiers
+(20682, 4413, 11), -- M. Def. Modifiers
+(20682, 4414, 2), -- Armor Type
+(20682, 4415, 5), -- Weapon Type
+(20682, 4416, 6), -- Races
 -- Vanor Silenos Scout
-(20683, 4032, 4), -- Power Strike
-(20683, 4085, 1), -- Critical Damage
-(20683, 4408, 1), -- HP Increase (1x)
-(20683, 4409, 1), -- MP Increase (1x)
-(20683, 4410, 10), -- Slightly Weak P. Atk.
-(20683, 4411, 10), -- Slightly Weak M. Atk.
-(20683, 4412, 12), -- Slightly Strong P. Def.
-(20683, 4413, 12), -- Slightly Strong M. Def.
-(20683, 4414, 2), -- Standard Type
-(20683, 4415, 5), -- Blunt Weapons
-(20683, 4416, 6), -- Humanoids
+(20683, 4032, 4), -- NPC Strike
+(20683, 4085, 1), -- Critical Power
+(20683, 4408, 1), -- HP Modifiers
+(20683, 4409, 1), -- MP Modifiers
+(20683, 4410, 10), -- P. Atk. Modifiers
+(20683, 4411, 10), -- M. Atk. Modifiers
+(20683, 4412, 12), -- P. Def. Modifiers
+(20683, 4413, 12), -- M. Def. Modifiers
+(20683, 4414, 2), -- Armor Type
+(20683, 4415, 5), -- Weapon Type
+(20683, 4416, 6), -- Races
 -- Vanor Silenos Warrior
-(20684, 4073, 4), -- Stun
+(20684, 4073, 4), -- Shock
 (20684, 4093, 1), -- Evasion
-(20684, 4408, 1), -- HP Increase (1x)
-(20684, 4409, 1), -- MP Increase (1x)
-(20684, 4410, 12), -- Slightly Strong P. Atk.
-(20684, 4411, 12), -- Slightly Strong M. Atk.
-(20684, 4412, 10), -- Slightly Weak P. Def.
-(20684, 4413, 10), -- Slightly Weak M. Def.
-(20684, 4414, 2), -- Standard Type
-(20684, 4415, 5), -- Blunt Weapons
-(20684, 4416, 6), -- Humanoids
+(20684, 4408, 1), -- HP Modifiers
+(20684, 4409, 1), -- MP Modifiers
+(20684, 4410, 12), -- P. Atk. Modifiers
+(20684, 4411, 12), -- M. Atk. Modifiers
+(20684, 4412, 10), -- P. Def. Modifiers
+(20684, 4413, 10), -- M. Def. Modifiers
+(20684, 4414, 2), -- Armor Type
+(20684, 4415, 5), -- Weapon Type
+(20684, 4416, 6), -- Races
 -- Vanor Silenos Shaman
-(20685, 4076, 3), -- Slow
-(20685, 4155, 4), -- Twister
-(20685, 4160, 4), -- Aura Burn
-(20685, 4408, 1), -- HP Increase (1x)
-(20685, 4409, 1), -- MP Increase (1x)
-(20685, 4410, 12), -- Slightly Strong P. Atk.
-(20685, 4411, 12), -- Slightly Strong M. Atk.
-(20685, 4412, 10), -- Slightly Weak P. Def.
-(20685, 4413, 10), -- Slightly Weak M. Def.
-(20685, 4414, 2), -- Standard Type
-(20685, 4415, 5), -- Blunt Weapons
-(20685, 4416, 6), -- Humanoids
+(20685, 4076, 3), -- Reduction in movement speed
+(20685, 4155, 4), -- NPC Twister - Magic
+(20685, 4160, 4), -- NPC Aura Burn - Magic
+(20685, 4408, 1), -- HP Modifiers
+(20685, 4409, 1), -- MP Modifiers
+(20685, 4410, 12), -- P. Atk. Modifiers
+(20685, 4411, 12), -- M. Atk. Modifiers
+(20685, 4412, 10), -- P. Def. Modifiers
+(20685, 4413, 10), -- M. Def. Modifiers
+(20685, 4414, 2), -- Armor Type
+(20685, 4415, 5), -- Weapon Type
+(20685, 4416, 6), -- Races
 -- Vanor Silenos Chieftain
-(20686, 4065, 5), -- Heal
-(20686, 4408, 10), -- HP Increase (2x)
-(20686, 4409, 1), -- MP Increase (1x)
-(20686, 4410, 10), -- Slightly Weak P. Atk.
-(20686, 4411, 10), -- Slightly Weak M. Atk.
-(20686, 4412, 12), -- Slightly Strong P. Def.
-(20686, 4413, 12), -- Slightly Strong M. Def.
-(20686, 4414, 2), -- Standard Type
-(20686, 4415, 3), -- One-handed Sword
-(20686, 4416, 6), -- Humanoids
+(20686, 4065, 5), -- NPC Heal
+(20686, 4408, 10), -- HP Modifiers
+(20686, 4409, 1), -- MP Modifiers
+(20686, 4410, 10), -- P. Atk. Modifiers
+(20686, 4411, 10), -- M. Atk. Modifiers
+(20686, 4412, 12), -- P. Def. Modifiers
+(20686, 4413, 12), -- M. Def. Modifiers
+(20686, 4414, 2), -- Armor Type
+(20686, 4415, 3), -- Weapon Type
+(20686, 4416, 6), -- Races
 -- Kobold Looter Bepook
-(20738, 4073, 1), -- Stun
-(20738, 4408, 10), -- HP Increase (2x)
-(20738, 4409, 1), -- MP Increase (1x)
-(20738, 4410, 12), -- Slightly Strong P. Atk.
-(20738, 4411, 12), -- Slightly Strong M. Atk.
-(20738, 4412, 10), -- Slightly Weak P. Def.
-(20738, 4413, 10), -- Slightly Weak M. Def.
-(20738, 4414, 2), -- Standard Type
-(20738, 4415, 5), -- Blunt Weapons
-(20738, 4416, 6), -- Humanoids
+(20738, 4073, 1), -- Shock
+(20738, 4408, 10), -- HP Modifiers
+(20738, 4409, 1), -- MP Modifiers
+(20738, 4410, 12), -- P. Atk. Modifiers
+(20738, 4411, 12), -- M. Atk. Modifiers
+(20738, 4412, 10), -- P. Def. Modifiers
+(20738, 4413, 10), -- M. Def. Modifiers
+(20738, 4414, 2), -- Armor Type
+(20738, 4415, 5), -- Weapon Type
+(20738, 4416, 6), -- Races
 -- Bepook's Pet
-(20739, 4408, 9), -- HP Increase (1/2x)
-(20739, 4409, 1), -- MP Increase (1x)
-(20739, 4410, 13), -- Slightly Strong P. Atk.
-(20739, 4411, 13), -- Slightly Strong M. Atk.
-(20739, 4412, 9), -- Slightly Weak P. Def.
-(20739, 4413, 9), -- Slightly Weak M. Def.
-(20739, 4414, 2), -- Standard Type
-(20739, 4415, 5), -- Blunt Weapons
-(20739, 4416, 4), -- Animals
+(20739, 4408, 9), -- HP Modifiers
+(20739, 4409, 1), -- MP Modifiers
+(20739, 4410, 13), -- P. Atk. Modifiers
+(20739, 4411, 13), -- M. Atk. Modifiers
+(20739, 4412, 9), -- P. Def. Modifiers
+(20739, 4413, 9), -- M. Def. Modifiers
+(20739, 4414, 2), -- Armor Type
+(20739, 4415, 5), -- Weapon Type
+(20739, 4416, 4), -- Races
 -- Mystical Weaver
-(20742, 4408, 1), -- HP Increase (1x)
-(20742, 4409, 1), -- MP Increase (1x)
-(20742, 4410, 10), -- Slightly Weak P. Atk.
-(20742, 4411, 10), -- Slightly Weak M. Atk.
-(20742, 4412, 12), -- Slightly Strong P. Def.
-(20742, 4413, 12), -- Slightly Strong M. Def.
-(20742, 4414, 2), -- Standard Type
-(20742, 4415, 3), -- One-handed Sword
-(20742, 4416, 2), -- Magic Creatures
+(20742, 4408, 1), -- HP Modifiers
+(20742, 4409, 1), -- MP Modifiers
+(20742, 4410, 10), -- P. Atk. Modifiers
+(20742, 4411, 10), -- M. Atk. Modifiers
+(20742, 4412, 12), -- P. Def. Modifiers
+(20742, 4413, 12), -- M. Def. Modifiers
+(20742, 4414, 2), -- Armor Type
+(20742, 4415, 3), -- Weapon Type
+(20742, 4416, 2), -- Races
 -- Howler
-(20743, 4408, 1), -- HP Increase (1x)
-(20743, 4409, 1), -- MP Increase (1x)
-(20743, 4410, 10), -- Slightly Weak P. Atk.
-(20743, 4411, 10), -- Slightly Weak M. Atk.
-(20743, 4412, 12), -- Slightly Strong P. Def.
-(20743, 4413, 12), -- Slightly Strong M. Def.
-(20743, 4414, 2), -- Standard Type
-(20743, 4415, 3), -- One-handed Sword
-(20743, 4416, 6), -- Humanoids
+(20743, 4408, 1), -- HP Modifiers
+(20743, 4409, 1), -- MP Modifiers
+(20743, 4410, 10), -- P. Atk. Modifiers
+(20743, 4411, 10), -- M. Atk. Modifiers
+(20743, 4412, 12), -- P. Def. Modifiers
+(20743, 4413, 12), -- M. Def. Modifiers
+(20743, 4414, 2), -- Armor Type
+(20743, 4415, 3), -- Weapon Type
+(20743, 4416, 6), -- Races
 -- Red Eye Vampire Bat
-(20744, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(20744, 4408, 1), -- HP Increase (1x)
-(20744, 4409, 1), -- MP Increase (1x)
-(20744, 4410, 12), -- Slightly Strong P. Atk.
-(20744, 4411, 12), -- Slightly Strong M. Atk.
-(20744, 4412, 10), -- Slightly Weak P. Def.
-(20744, 4413, 10), -- Slightly Weak M. Def.
-(20744, 4414, 2), -- Standard Type
-(20744, 4415, 3), -- One-handed Sword
-(20744, 4416, 4), -- Animals
+(20744, 4276, 1), -- Archery Attack Weak Point
+(20744, 4408, 1), -- HP Modifiers
+(20744, 4409, 1), -- MP Modifiers
+(20744, 4410, 12), -- P. Atk. Modifiers
+(20744, 4411, 12), -- M. Atk. Modifiers
+(20744, 4412, 10), -- P. Def. Modifiers
+(20744, 4413, 10), -- M. Def. Modifiers
+(20744, 4414, 2), -- Armor Type
+(20744, 4415, 3), -- Weapon Type
+(20744, 4416, 4), -- Races
 -- Gigantiops
-(20745, 4073, 3), -- Stun
-(20745, 4408, 1), -- HP Increase (1x)
-(20745, 4409, 1), -- MP Increase (1x)
-(20745, 4410, 10), -- Slightly Weak P. Atk.
-(20745, 4411, 10), -- Slightly Weak M. Atk.
-(20745, 4412, 12), -- Slightly Strong P. Def.
-(20745, 4413, 12), -- Slightly Strong M. Def.
-(20745, 4414, 2), -- Standard Type
-(20745, 4415, 3), -- One-handed Sword
-(20745, 4416, 12), -- Bugs
+(20745, 4073, 3), -- Shock
+(20745, 4408, 1), -- HP Modifiers
+(20745, 4409, 1), -- MP Modifiers
+(20745, 4410, 10), -- P. Atk. Modifiers
+(20745, 4411, 10), -- M. Atk. Modifiers
+(20745, 4412, 12), -- P. Def. Modifiers
+(20745, 4413, 12), -- M. Def. Modifiers
+(20745, 4414, 2), -- Armor Type
+(20745, 4415, 3), -- Weapon Type
+(20745, 4416, 12), -- Races
 -- Young Gigantiops
-(20746, 4032, 3), -- Power Strike
-(20746, 4408, 1), -- HP Increase (1x)
-(20746, 4409, 1), -- MP Increase (1x)
-(20746, 4410, 12), -- Slightly Strong P. Atk.
-(20746, 4411, 12), -- Slightly Strong M. Atk.
-(20746, 4412, 10), -- Slightly Weak P. Def.
-(20746, 4413, 10), -- Slightly Weak M. Def.
-(20746, 4414, 2), -- Standard Type
-(20746, 4415, 3), -- One-handed Sword
-(20746, 4416, 12), -- Bugs
+(20746, 4032, 3), -- NPC Strike
+(20746, 4408, 1), -- HP Modifiers
+(20746, 4409, 1), -- MP Modifiers
+(20746, 4410, 12), -- P. Atk. Modifiers
+(20746, 4411, 12), -- M. Atk. Modifiers
+(20746, 4412, 10), -- P. Def. Modifiers
+(20746, 4413, 10), -- M. Def. Modifiers
+(20746, 4414, 2), -- Armor Type
+(20746, 4415, 3), -- Weapon Type
+(20746, 4416, 12), -- Races
 -- Roxide
-(20747, 4002, 3), -- HP Drain
-(20747, 4408, 10), -- HP Increase (2x)
-(20747, 4409, 1), -- MP Increase (1x)
-(20747, 4410, 12), -- Slightly Strong P. Atk.
-(20747, 4411, 12), -- Slightly Strong M. Atk.
-(20747, 4412, 10), -- Slightly Weak P. Def.
-(20747, 4413, 10), -- Slightly Weak M. Def.
-(20747, 4414, 2), -- Standard Type
-(20747, 4415, 3), -- One-handed Sword
-(20747, 4416, 9), -- Demons
+(20747, 4002, 3), -- NPC HP Drain
+(20747, 4408, 10), -- HP Modifiers
+(20747, 4409, 1), -- MP Modifiers
+(20747, 4410, 12), -- P. Atk. Modifiers
+(20747, 4411, 12), -- M. Atk. Modifiers
+(20747, 4412, 10), -- P. Def. Modifiers
+(20747, 4413, 10), -- M. Def. Modifiers
+(20747, 4414, 2), -- Armor Type
+(20747, 4415, 3), -- Weapon Type
+(20747, 4416, 9), -- Races
 -- Roxide Cohort
 (20748, 4035, 2), -- Poison
-(20748, 4065, 2), -- Heal
-(20748, 4408, 10), -- HP Increase (2x)
-(20748, 4409, 1), -- MP Increase (1x)
-(20748, 4410, 10), -- Slightly Weak P. Atk.
-(20748, 4411, 10), -- Slightly Weak M. Atk.
-(20748, 4412, 12), -- Slightly Strong P. Def.
-(20748, 4413, 12), -- Slightly Strong M. Def.
-(20748, 4414, 2), -- Standard Type
-(20748, 4415, 3), -- One-handed Sword
-(20748, 4416, 1), -- Undead
+(20748, 4065, 2), -- NPC Heal
+(20748, 4408, 10), -- HP Modifiers
+(20748, 4409, 1), -- MP Modifiers
+(20748, 4410, 10), -- P. Atk. Modifiers
+(20748, 4411, 10), -- M. Atk. Modifiers
+(20748, 4412, 12), -- P. Def. Modifiers
+(20748, 4413, 12), -- M. Def. Modifiers
+(20748, 4414, 2), -- Armor Type
+(20748, 4415, 3), -- Weapon Type
+(20748, 4416, 1), -- Races
 -- Death Fire
-(20749, 4087, 3), -- Blaze
-(20749, 4408, 10), -- HP Increase (2x)
-(20749, 4409, 1), -- MP Increase (1x)
-(20749, 4410, 12), -- Slightly Strong P. Atk.
-(20749, 4411, 12), -- Slightly Strong M. Atk.
-(20749, 4412, 10), -- Slightly Weak P. Def.
-(20749, 4413, 10), -- Slightly Weak M. Def.
-(20749, 4414, 2), -- Standard Type
-(20749, 4415, 3), -- One-handed Sword
-(20749, 4416, 9), -- Demons
+(20749, 4087, 3), -- NPC Blaze
+(20749, 4408, 10), -- HP Modifiers
+(20749, 4409, 1), -- MP Modifiers
+(20749, 4410, 12), -- P. Atk. Modifiers
+(20749, 4411, 12), -- M. Atk. Modifiers
+(20749, 4412, 10), -- P. Def. Modifiers
+(20749, 4413, 10), -- M. Def. Modifiers
+(20749, 4414, 2), -- Armor Type
+(20749, 4415, 3), -- Weapon Type
+(20749, 4416, 9), -- Races
 -- Fire Archer
-(20750, 4120, 2), -- Stun
-(20750, 4408, 10), -- HP Increase (2x)
-(20750, 4409, 1), -- MP Increase (1x)
-(20750, 4410, 10), -- Slightly Weak P. Atk.
-(20750, 4411, 10), -- Slightly Weak M. Atk.
-(20750, 4412, 12), -- Slightly Strong P. Def.
-(20750, 4413, 12), -- Slightly Strong M. Def.
-(20750, 4414, 2), -- Standard Type
-(20750, 4415, 9), -- Bows
-(20750, 4416, 1), -- Undead
+(20750, 4120, 2), -- Shock
+(20750, 4408, 10), -- HP Modifiers
+(20750, 4409, 1), -- MP Modifiers
+(20750, 4410, 10), -- P. Atk. Modifiers
+(20750, 4411, 10), -- M. Atk. Modifiers
+(20750, 4412, 12), -- P. Def. Modifiers
+(20750, 4413, 12), -- M. Def. Modifiers
+(20750, 4414, 2), -- Armor Type
+(20750, 4415, 9), -- Weapon Type
+(20750, 4416, 1), -- Races
 -- Snipe
-(20751, 4032, 4), -- Power Strike
-(20751, 4071, 5), -- Resist Bow/Crossbow Weapons
+(20751, 4032, 4), -- NPC Strike
+(20751, 4071, 5), -- Resist Archery
 (20751, 4086, 1), -- Critical Chance
-(20751, 4091, 1), -- Spirit Ogre
-(20751, 4408, 11), -- HP Increase (3x)
-(20751, 4409, 1), -- MP Increase (1x)
-(20751, 4410, 12), -- Slightly Strong P. Atk.
-(20751, 4411, 12), -- Slightly Strong M. Atk.
-(20751, 4412, 10), -- Slightly Weak P. Def.
-(20751, 4413, 13), -- Slightly Strong M. Def.
-(20751, 4414, 2), -- Standard Type
-(20751, 4415, 1), -- Bare Hands
-(20751, 4416, 3), -- Beasts
+(20751, 4091, 1), -- NPC Ogre Spirit Totem
+(20751, 4408, 11), -- HP Modifiers
+(20751, 4409, 1), -- MP Modifiers
+(20751, 4410, 12), -- P. Atk. Modifiers
+(20751, 4411, 12), -- M. Atk. Modifiers
+(20751, 4412, 10), -- P. Def. Modifiers
+(20751, 4413, 13), -- M. Def. Modifiers
+(20751, 4414, 2), -- Armor Type
+(20751, 4415, 1), -- Weapon Type
+(20751, 4416, 3), -- Races
 (20751, 4579, 4), -- Bleed
 -- Snipe Cohort
-(20752, 4408, 10), -- HP Increase (2x)
-(20752, 4409, 1), -- MP Increase (1x)
-(20752, 4410, 11), -- Average P. Atk.
-(20752, 4411, 10), -- Slightly Weak M. Atk.
-(20752, 4412, 12), -- Slightly Strong P. Def.
-(20752, 4413, 13), -- Slightly Strong M. Def.
-(20752, 4414, 2), -- Standard Type
-(20752, 4415, 1), -- Bare Hands
-(20752, 4416, 3), -- Beasts
+(20752, 4408, 10), -- HP Modifiers
+(20752, 4409, 1), -- MP Modifiers
+(20752, 4410, 11), -- P. Atk. Modifiers
+(20752, 4411, 10), -- M. Atk. Modifiers
+(20752, 4412, 12), -- P. Def. Modifiers
+(20752, 4413, 13), -- M. Def. Modifiers
+(20752, 4414, 2), -- Armor Type
+(20752, 4415, 1), -- Weapon Type
+(20752, 4416, 3), -- Races
 -- Dark Lord
-(20753, 4078, 5), -- Flame Strike
-(20753, 4225, 1), -- Resist Stun Attacks
-(20753, 4408, 10), -- HP Increase (2x)
-(20753, 4409, 1), -- MP Increase (1x)
-(20753, 4410, 12), -- Slightly Strong P. Atk.
-(20753, 4411, 10), -- Slightly Weak M. Atk.
-(20753, 4412, 12), -- Slightly Strong P. Def.
-(20753, 4413, 12), -- Slightly Strong M. Def.
-(20753, 4414, 3), -- Light Armor Type
-(20753, 4415, 1), -- Bare Hands
-(20753, 4416, 1), -- Undead
-(20753, 4571, 5), -- Blazing Circle
+(20753, 4078, 5), -- NPC Flamestrike
+(20753, 4225, 1), -- Resist Shock
+(20753, 4408, 10), -- HP Modifiers
+(20753, 4409, 1), -- MP Modifiers
+(20753, 4410, 12), -- P. Atk. Modifiers
+(20753, 4411, 10), -- M. Atk. Modifiers
+(20753, 4412, 12), -- P. Def. Modifiers
+(20753, 4413, 12), -- M. Def. Modifiers
+(20753, 4414, 3), -- Armor Type
+(20753, 4415, 1), -- Weapon Type
+(20753, 4416, 1), -- Races
+(20753, 4571, 5), -- NPC Blazing Circle
 -- Dark Knight
-(20754, 4077, 4), -- Aura Burn
-(20754, 4408, 10), -- HP Increase (2x)
-(20754, 4409, 1), -- MP Increase (1x)
-(20754, 4410, 12), -- Slightly Strong P. Atk.
-(20754, 4411, 11), -- Average M. Atk.
-(20754, 4412, 14), -- Strong P. Def.
-(20754, 4413, 12), -- Slightly Strong M. Def.
-(20754, 4414, 2), -- Standard Type
-(20754, 4415, 3), -- One-handed Sword
-(20754, 4416, 1), -- Undead
+(20754, 4077, 4), -- NPC Aura Burn
+(20754, 4408, 10), -- HP Modifiers
+(20754, 4409, 1), -- MP Modifiers
+(20754, 4410, 12), -- P. Atk. Modifiers
+(20754, 4411, 11), -- M. Atk. Modifiers
+(20754, 4412, 14), -- P. Def. Modifiers
+(20754, 4413, 12), -- M. Def. Modifiers
+(20754, 4414, 2), -- Armor Type
+(20754, 4415, 3), -- Weapon Type
+(20754, 4416, 1), -- Races
 -- Talakin
-(20755, 4032, 3), -- Power Strike
-(20755, 4408, 1), -- HP Increase (1x)
-(20755, 4409, 1), -- MP Increase (1x)
-(20755, 4410, 10), -- Slightly Weak P. Atk.
-(20755, 4411, 10), -- Slightly Weak M. Atk.
-(20755, 4412, 12), -- Slightly Strong P. Def.
-(20755, 4413, 12), -- Slightly Strong M. Def.
-(20755, 4414, 2), -- Standard Type
-(20755, 4415, 3), -- One-handed Sword
-(20755, 4416, 6), -- Humanoids
+(20755, 4032, 3), -- NPC Strike
+(20755, 4408, 1), -- HP Modifiers
+(20755, 4409, 1), -- MP Modifiers
+(20755, 4410, 10), -- P. Atk. Modifiers
+(20755, 4411, 10), -- M. Atk. Modifiers
+(20755, 4412, 12), -- P. Def. Modifiers
+(20755, 4413, 12), -- M. Def. Modifiers
+(20755, 4414, 2), -- Armor Type
+(20755, 4415, 3), -- Weapon Type
+(20755, 4416, 6), -- Races
 -- Talakin Archer
-(20756, 4120, 2), -- Stun
-(20756, 4408, 1), -- HP Increase (1x)
-(20756, 4409, 1), -- MP Increase (1x)
-(20756, 4410, 10), -- Slightly Weak P. Atk.
-(20756, 4411, 10), -- Slightly Weak M. Atk.
-(20756, 4412, 12), -- Slightly Strong P. Def.
-(20756, 4413, 12), -- Slightly Strong M. Def.
-(20756, 4414, 2), -- Standard Type
-(20756, 4415, 9), -- Bows
-(20756, 4416, 6), -- Humanoids
+(20756, 4120, 2), -- Shock
+(20756, 4408, 1), -- HP Modifiers
+(20756, 4409, 1), -- MP Modifiers
+(20756, 4410, 10), -- P. Atk. Modifiers
+(20756, 4411, 10), -- M. Atk. Modifiers
+(20756, 4412, 12), -- P. Def. Modifiers
+(20756, 4413, 12), -- M. Def. Modifiers
+(20756, 4414, 2), -- Armor Type
+(20756, 4415, 9), -- Weapon Type
+(20756, 4416, 6), -- Races
 -- Talakin Raider
-(20757, 4096, 2), -- Hawk Eye
-(20757, 4408, 1), -- HP Increase (1x)
-(20757, 4409, 1), -- MP Increase (1x)
-(20757, 4410, 12), -- Slightly Strong P. Atk.
-(20757, 4411, 12), -- Slightly Strong M. Atk.
-(20757, 4412, 10), -- Slightly Weak P. Def.
-(20757, 4413, 10), -- Slightly Weak M. Def.
-(20757, 4414, 2), -- Standard Type
-(20757, 4415, 3), -- One-handed Sword
-(20757, 4416, 6), -- Humanoids
+(20757, 4096, 2), -- NPC Hawkeye
+(20757, 4408, 1), -- HP Modifiers
+(20757, 4409, 1), -- MP Modifiers
+(20757, 4410, 12), -- P. Atk. Modifiers
+(20757, 4411, 12), -- M. Atk. Modifiers
+(20757, 4412, 10), -- P. Def. Modifiers
+(20757, 4413, 10), -- M. Def. Modifiers
+(20757, 4414, 2), -- Armor Type
+(20757, 4415, 3), -- Weapon Type
+(20757, 4416, 6), -- Races
 -- Dragon Bearer Chief
-(20758, 4032, 4), -- Power Strike
-(20758, 4408, 1), -- HP Increase (1x)
-(20758, 4409, 1), -- MP Increase (1x)
-(20758, 4410, 10), -- Slightly Weak P. Atk.
-(20758, 4411, 10), -- Slightly Weak M. Atk.
-(20758, 4412, 12), -- Slightly Strong P. Def.
-(20758, 4413, 12), -- Slightly Strong M. Def.
-(20758, 4414, 2), -- Standard Type
-(20758, 4415, 3), -- One-handed Sword
-(20758, 4416, 1), -- Undead
+(20758, 4032, 4), -- NPC Strike
+(20758, 4408, 1), -- HP Modifiers
+(20758, 4409, 1), -- MP Modifiers
+(20758, 4410, 10), -- P. Atk. Modifiers
+(20758, 4411, 10), -- M. Atk. Modifiers
+(20758, 4412, 12), -- P. Def. Modifiers
+(20758, 4413, 12), -- M. Def. Modifiers
+(20758, 4414, 2), -- Armor Type
+(20758, 4415, 3), -- Weapon Type
+(20758, 4416, 1), -- Races
 -- Dragon Bearer Warrior
-(20759, 4073, 4), -- Stun
-(20759, 4408, 1), -- HP Increase (1x)
-(20759, 4409, 1), -- MP Increase (1x)
-(20759, 4410, 12), -- Slightly Strong P. Atk.
-(20759, 4411, 12), -- Slightly Strong M. Atk.
-(20759, 4412, 10), -- Slightly Weak P. Def.
-(20759, 4413, 10), -- Slightly Weak M. Def.
-(20759, 4414, 2), -- Standard Type
-(20759, 4415, 3), -- One-handed Sword
-(20759, 4416, 1), -- Undead
+(20759, 4073, 4), -- Shock
+(20759, 4408, 1), -- HP Modifiers
+(20759, 4409, 1), -- MP Modifiers
+(20759, 4410, 12), -- P. Atk. Modifiers
+(20759, 4411, 12), -- M. Atk. Modifiers
+(20759, 4412, 10), -- P. Def. Modifiers
+(20759, 4413, 10), -- M. Def. Modifiers
+(20759, 4414, 2), -- Armor Type
+(20759, 4415, 3), -- Weapon Type
+(20759, 4416, 1), -- Races
 -- Dragon Bearer Archer
-(20760, 4120, 4), -- Stun
-(20760, 4408, 1), -- HP Increase (1x)
-(20760, 4409, 1), -- MP Increase (1x)
-(20760, 4410, 10), -- Slightly Weak P. Atk.
-(20760, 4411, 10), -- Slightly Weak M. Atk.
-(20760, 4412, 12), -- Slightly Strong P. Def.
-(20760, 4413, 12), -- Slightly Strong M. Def.
-(20760, 4414, 2), -- Standard Type
-(20760, 4415, 9), -- Bows
-(20760, 4416, 1), -- Undead
+(20760, 4120, 4), -- Shock
+(20760, 4408, 1), -- HP Modifiers
+(20760, 4409, 1), -- MP Modifiers
+(20760, 4410, 10), -- P. Atk. Modifiers
+(20760, 4411, 10), -- M. Atk. Modifiers
+(20760, 4412, 12), -- P. Def. Modifiers
+(20760, 4413, 12), -- M. Def. Modifiers
+(20760, 4414, 2), -- Armor Type
+(20760, 4415, 9), -- Weapon Type
+(20760, 4416, 1), -- Races
 -- Pytan
-(20761, 4002, 6), -- HP Drain
-(20761, 4408, 11), -- HP Increase (3x)
-(20761, 4409, 1), -- MP Increase (1x)
-(20761, 4410, 12), -- Slightly Strong P. Atk.
-(20761, 4411, 12), -- Slightly Strong M. Atk.
-(20761, 4412, 10), -- Slightly Weak P. Def.
-(20761, 4413, 10), -- Slightly Weak M. Def.
-(20761, 4414, 2), -- Standard Type
-(20761, 4415, 3), -- One-handed Sword
-(20761, 4416, 9), -- Demons
+(20761, 4002, 6), -- NPC HP Drain
+(20761, 4408, 11), -- HP Modifiers
+(20761, 4409, 1), -- MP Modifiers
+(20761, 4410, 12), -- P. Atk. Modifiers
+(20761, 4411, 12), -- M. Atk. Modifiers
+(20761, 4412, 10), -- P. Def. Modifiers
+(20761, 4413, 10), -- M. Def. Modifiers
+(20761, 4414, 2), -- Armor Type
+(20761, 4415, 3), -- Weapon Type
+(20761, 4416, 9), -- Races
 (20761, 4438, 2), -- Greater Resist Sleep
 -- Pytan Knight
-(20762, 4097, 6), -- Chant of Life
-(20762, 4408, 10), -- HP Increase (2x)
-(20762, 4409, 1), -- MP Increase (1x)
-(20762, 4410, 10), -- Slightly Weak P. Atk.
-(20762, 4411, 10), -- Slightly Weak M. Atk.
-(20762, 4412, 12), -- Slightly Strong P. Def.
-(20762, 4413, 12), -- Slightly Strong M. Def.
-(20762, 4414, 2), -- Standard Type
-(20762, 4415, 3), -- One-handed Sword
-(20762, 4416, 1), -- Undead
+(20762, 4097, 6), -- NPC Chant of Life
+(20762, 4408, 10), -- HP Modifiers
+(20762, 4409, 1), -- MP Modifiers
+(20762, 4410, 10), -- P. Atk. Modifiers
+(20762, 4411, 10), -- M. Atk. Modifiers
+(20762, 4412, 12), -- P. Def. Modifiers
+(20762, 4413, 12), -- M. Def. Modifiers
+(20762, 4414, 2), -- Armor Type
+(20762, 4415, 3), -- Weapon Type
+(20762, 4416, 1), -- Races
 -- Lord of the Plains
-(20763, 4032, 4), -- Power Strike
-(20763, 4408, 1), -- HP Increase (1x)
-(20763, 4409, 1), -- MP Increase (1x)
-(20763, 4410, 10), -- Slightly Weak P. Atk.
-(20763, 4411, 10), -- Slightly Weak M. Atk.
-(20763, 4412, 12), -- Slightly Strong P. Def.
-(20763, 4413, 12), -- Slightly Strong M. Def.
-(20763, 4414, 2), -- Standard Type
-(20763, 4415, 7), -- Daggers
-(20763, 4416, 6), -- Humanoids
+(20763, 4032, 4), -- NPC Strike
+(20763, 4408, 1), -- HP Modifiers
+(20763, 4409, 1), -- MP Modifiers
+(20763, 4410, 10), -- P. Atk. Modifiers
+(20763, 4411, 10), -- M. Atk. Modifiers
+(20763, 4412, 12), -- P. Def. Modifiers
+(20763, 4413, 12), -- M. Def. Modifiers
+(20763, 4414, 2), -- Armor Type
+(20763, 4415, 7), -- Weapon Type
+(20763, 4416, 6), -- Races
 -- Shaman of the Plains
-(20764, 4065, 3), -- Heal
-(20764, 4066, 3), -- Twister
-(20764, 4408, 1), -- HP Increase (1x)
-(20764, 4409, 1), -- MP Increase (1x)
-(20764, 4410, 10), -- Slightly Weak P. Atk.
-(20764, 4411, 10), -- Slightly Weak M. Atk.
-(20764, 4412, 12), -- Slightly Strong P. Def.
-(20764, 4413, 12), -- Slightly Strong M. Def.
-(20764, 4414, 2), -- Standard Type
-(20764, 4415, 5), -- Blunt Weapons
-(20764, 4416, 6), -- Humanoids
+(20764, 4065, 3), -- NPC Heal
+(20764, 4066, 3), -- NPC Twister
+(20764, 4408, 1), -- HP Modifiers
+(20764, 4409, 1), -- MP Modifiers
+(20764, 4410, 10), -- P. Atk. Modifiers
+(20764, 4411, 10), -- M. Atk. Modifiers
+(20764, 4412, 12), -- P. Def. Modifiers
+(20764, 4413, 12), -- M. Def. Modifiers
+(20764, 4414, 2), -- Armor Type
+(20764, 4415, 5), -- Weapon Type
+(20764, 4416, 6), -- Races
 -- Warrior of the Plains
-(20765, 4030, 2), -- Might
-(20765, 4408, 1), -- HP Increase (1x)
-(20765, 4409, 1), -- MP Increase (1x)
-(20765, 4410, 12), -- Slightly Strong P. Atk.
-(20765, 4411, 12), -- Slightly Strong M. Atk.
-(20765, 4412, 10), -- Slightly Weak P. Def.
-(20765, 4413, 10), -- Slightly Weak M. Def.
-(20765, 4414, 2), -- Standard Type
-(20765, 4415, 3), -- One-handed Sword
-(20765, 4416, 6), -- Humanoids
+(20765, 4030, 2), -- NPC Clan Might
+(20765, 4408, 1), -- HP Modifiers
+(20765, 4409, 1), -- MP Modifiers
+(20765, 4410, 12), -- P. Atk. Modifiers
+(20765, 4411, 12), -- M. Atk. Modifiers
+(20765, 4412, 10), -- P. Def. Modifiers
+(20765, 4413, 10), -- M. Def. Modifiers
+(20765, 4414, 2), -- Armor Type
+(20765, 4415, 3), -- Weapon Type
+(20765, 4416, 6), -- Races
 -- Scout of the Plains
-(20766, 4408, 1), -- HP Increase (1x)
-(20766, 4409, 1), -- MP Increase (1x)
-(20766, 4410, 10), -- Slightly Weak P. Atk.
-(20766, 4411, 10), -- Slightly Weak M. Atk.
-(20766, 4412, 12), -- Slightly Strong P. Def.
-(20766, 4413, 12), -- Slightly Strong M. Def.
-(20766, 4414, 2), -- Standard Type
-(20766, 4415, 9), -- Bows
-(20766, 4416, 6), -- Humanoids
+(20766, 4408, 1), -- HP Modifiers
+(20766, 4409, 1), -- MP Modifiers
+(20766, 4410, 10), -- P. Atk. Modifiers
+(20766, 4411, 10), -- M. Atk. Modifiers
+(20766, 4412, 12), -- P. Def. Modifiers
+(20766, 4413, 12), -- M. Def. Modifiers
+(20766, 4414, 2), -- Armor Type
+(20766, 4415, 9), -- Weapon Type
+(20766, 4416, 6), -- Races
 -- Timak Orc Troop Leader
-(20767, 4032, 4), -- Power Strike
-(20767, 4408, 1), -- HP Increase (1x)
-(20767, 4409, 1), -- MP Increase (1x)
-(20767, 4410, 12), -- Slightly Strong P. Atk.
-(20767, 4411, 12), -- Slightly Strong M. Atk.
-(20767, 4412, 10), -- Slightly Weak P. Def.
-(20767, 4413, 10), -- Slightly Weak M. Def.
-(20767, 4414, 2), -- Standard Type
-(20767, 4415, 3), -- One-handed Sword
-(20767, 4416, 6), -- Humanoids
+(20767, 4032, 4), -- NPC Strike
+(20767, 4408, 1), -- HP Modifiers
+(20767, 4409, 1), -- MP Modifiers
+(20767, 4410, 12), -- P. Atk. Modifiers
+(20767, 4411, 12), -- M. Atk. Modifiers
+(20767, 4412, 10), -- P. Def. Modifiers
+(20767, 4413, 10), -- M. Def. Modifiers
+(20767, 4414, 2), -- Armor Type
+(20767, 4415, 3), -- Weapon Type
+(20767, 4416, 6), -- Races
 -- Timak Orc Troop Shaman
 (20768, 4036, 4), -- Poison
-(20768, 4065, 4), -- Heal
-(20768, 4408, 1), -- HP Increase (1x)
-(20768, 4409, 1), -- MP Increase (1x)
-(20768, 4410, 12), -- Slightly Strong P. Atk.
-(20768, 4411, 12), -- Slightly Strong M. Atk.
-(20768, 4412, 10), -- Slightly Weak P. Def.
-(20768, 4413, 10), -- Slightly Weak M. Def.
-(20768, 4414, 2), -- Standard Type
-(20768, 4415, 5), -- Blunt Weapons
-(20768, 4416, 6), -- Humanoids
+(20768, 4065, 4), -- NPC Heal
+(20768, 4408, 1), -- HP Modifiers
+(20768, 4409, 1), -- MP Modifiers
+(20768, 4410, 12), -- P. Atk. Modifiers
+(20768, 4411, 12), -- M. Atk. Modifiers
+(20768, 4412, 10), -- P. Def. Modifiers
+(20768, 4413, 10), -- M. Def. Modifiers
+(20768, 4414, 2), -- Armor Type
+(20768, 4415, 5), -- Weapon Type
+(20768, 4416, 6), -- Races
 -- Timak Orc Troop Warrior
-(20769, 4099, 2), -- Berserker Spirit
-(20769, 4408, 1), -- HP Increase (1x)
-(20769, 4409, 1), -- MP Increase (1x)
-(20769, 4410, 12), -- Slightly Strong P. Atk.
-(20769, 4411, 12), -- Slightly Strong M. Atk.
-(20769, 4412, 10), -- Slightly Weak P. Def.
-(20769, 4413, 10), -- Slightly Weak M. Def.
-(20769, 4414, 2), -- Standard Type
-(20769, 4415, 3), -- One-handed Sword
-(20769, 4416, 6), -- Humanoids
+(20769, 4099, 2), -- NPC Berserk
+(20769, 4408, 1), -- HP Modifiers
+(20769, 4409, 1), -- MP Modifiers
+(20769, 4410, 12), -- P. Atk. Modifiers
+(20769, 4411, 12), -- M. Atk. Modifiers
+(20769, 4412, 10), -- P. Def. Modifiers
+(20769, 4413, 10), -- M. Def. Modifiers
+(20769, 4414, 2), -- Armor Type
+(20769, 4415, 3), -- Weapon Type
+(20769, 4416, 6), -- Races
 -- Timak Orc Troop Archer
-(20770, 4120, 4), -- Stun
-(20770, 4408, 1), -- HP Increase (1x)
-(20770, 4409, 1), -- MP Increase (1x)
-(20770, 4410, 12), -- Slightly Strong P. Atk.
-(20770, 4411, 12), -- Slightly Strong M. Atk.
-(20770, 4412, 10), -- Slightly Weak P. Def.
-(20770, 4413, 10), -- Slightly Weak M. Def.
-(20770, 4414, 2), -- Standard Type
-(20770, 4415, 9), -- Bows
-(20770, 4416, 6), -- Humanoids
+(20770, 4120, 4), -- Shock
+(20770, 4408, 1), -- HP Modifiers
+(20770, 4409, 1), -- MP Modifiers
+(20770, 4410, 12), -- P. Atk. Modifiers
+(20770, 4411, 12), -- M. Atk. Modifiers
+(20770, 4412, 10), -- P. Def. Modifiers
+(20770, 4413, 10), -- M. Def. Modifiers
+(20770, 4414, 2), -- Armor Type
+(20770, 4415, 9), -- Weapon Type
+(20770, 4416, 6), -- Races
 -- Barif
-(20771, 4066, 6), -- Twister
-(20771, 4408, 10), -- HP Increase (2x)
-(20771, 4409, 1), -- MP Increase (1x)
-(20771, 4410, 10), -- Slightly Weak P. Atk.
-(20771, 4411, 10), -- Slightly Weak M. Atk.
-(20771, 4412, 12), -- Slightly Strong P. Def.
-(20771, 4413, 12), -- Slightly Strong M. Def.
-(20771, 4414, 2), -- Standard Type
-(20771, 4415, 5), -- Blunt Weapons
-(20771, 4416, 11), -- Giants
+(20771, 4066, 6), -- NPC Twister
+(20771, 4408, 10), -- HP Modifiers
+(20771, 4409, 1), -- MP Modifiers
+(20771, 4410, 10), -- P. Atk. Modifiers
+(20771, 4411, 10), -- M. Atk. Modifiers
+(20771, 4412, 12), -- P. Def. Modifiers
+(20771, 4413, 12), -- M. Def. Modifiers
+(20771, 4414, 2), -- Armor Type
+(20771, 4415, 5), -- Weapon Type
+(20771, 4416, 11), -- Races
 -- Barif's Pet
-(20772, 4032, 6), -- Power Strike
-(20772, 4408, 10), -- HP Increase (2x)
-(20772, 4409, 1), -- MP Increase (1x)
-(20772, 4410, 12), -- Slightly Strong P. Atk.
-(20772, 4411, 12), -- Slightly Strong M. Atk.
-(20772, 4412, 10), -- Slightly Weak P. Def.
-(20772, 4413, 10), -- Slightly Weak M. Def.
-(20772, 4414, 2), -- Standard Type
-(20772, 4415, 5), -- Blunt Weapons
-(20772, 4416, 2), -- Magic Creatures
+(20772, 4032, 6), -- NPC Strike
+(20772, 4408, 10), -- HP Modifiers
+(20772, 4409, 1), -- MP Modifiers
+(20772, 4410, 12), -- P. Atk. Modifiers
+(20772, 4411, 12), -- M. Atk. Modifiers
+(20772, 4412, 10), -- P. Def. Modifiers
+(20772, 4413, 10), -- M. Def. Modifiers
+(20772, 4414, 2), -- Armor Type
+(20772, 4415, 5), -- Weapon Type
+(20772, 4416, 2), -- Races
 -- Conjurer Bat Lord
-(20773, 4038, 5), -- Decrease Atk. Spd.
-(20773, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(20773, 4408, 1), -- HP Increase (1x)
-(20773, 4409, 1), -- MP Increase (1x)
-(20773, 4410, 10), -- Slightly Weak P. Atk.
-(20773, 4411, 10), -- Slightly Weak M. Atk.
-(20773, 4412, 12), -- Slightly Strong P. Def.
-(20773, 4413, 12), -- Slightly Strong M. Def.
-(20773, 4414, 2), -- Standard Type
-(20773, 4415, 3), -- One-handed Sword
-(20773, 4416, 4), -- Animals
+(20773, 4038, 5), -- Decrease Atk.Spd.
+(20773, 4276, 1), -- Archery Attack Weak Point
+(20773, 4408, 1), -- HP Modifiers
+(20773, 4409, 1), -- MP Modifiers
+(20773, 4410, 10), -- P. Atk. Modifiers
+(20773, 4411, 10), -- M. Atk. Modifiers
+(20773, 4412, 12), -- P. Def. Modifiers
+(20773, 4413, 12), -- M. Def. Modifiers
+(20773, 4414, 2), -- Armor Type
+(20773, 4415, 3), -- Weapon Type
+(20773, 4416, 4), -- Races
 -- Conjurer Bat 
-(20774, 4065, 5), -- Heal
-(20774, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(20774, 4408, 1), -- HP Increase (1x)
-(20774, 4409, 1), -- MP Increase (1x)
-(20774, 4410, 10), -- Slightly Weak P. Atk.
-(20774, 4411, 10), -- Slightly Weak M. Atk.
-(20774, 4412, 12), -- Slightly Strong P. Def.
-(20774, 4413, 12), -- Slightly Strong M. Def.
-(20774, 4414, 2), -- Standard Type
-(20774, 4415, 3), -- One-handed Sword
-(20774, 4416, 4), -- Animals
+(20774, 4065, 5), -- NPC Heal
+(20774, 4276, 1), -- Archery Attack Weak Point
+(20774, 4408, 1), -- HP Modifiers
+(20774, 4409, 1), -- MP Modifiers
+(20774, 4410, 10), -- P. Atk. Modifiers
+(20774, 4411, 10), -- M. Atk. Modifiers
+(20774, 4412, 12), -- P. Def. Modifiers
+(20774, 4413, 12), -- M. Def. Modifiers
+(20774, 4414, 2), -- Armor Type
+(20774, 4415, 3), -- Weapon Type
+(20774, 4416, 4), -- Races
 -- Bugbear Raider
-(20775, 4408, 1), -- HP Increase (1x)
-(20775, 4409, 1), -- MP Increase (1x)
-(20775, 4410, 12), -- Slightly Strong P. Atk.
-(20775, 4411, 12), -- Slightly Strong M. Atk.
-(20775, 4412, 10), -- Slightly Weak P. Def.
-(20775, 4413, 10), -- Slightly Weak M. Def.
-(20775, 4414, 2), -- Standard Type
-(20775, 4415, 3), -- One-handed Sword
-(20775, 4416, 11), -- Giants
+(20775, 4408, 1), -- HP Modifiers
+(20775, 4409, 1), -- MP Modifiers
+(20775, 4410, 12), -- P. Atk. Modifiers
+(20775, 4411, 12), -- M. Atk. Modifiers
+(20775, 4412, 10), -- P. Def. Modifiers
+(20775, 4413, 10), -- M. Def. Modifiers
+(20775, 4414, 2), -- Armor Type
+(20775, 4415, 3), -- Weapon Type
+(20775, 4416, 11), -- Races
 -- Dark Succubus
 (20776, 4035, 2), -- Poison
-(20776, 4408, 1), -- HP Increase (1x)
-(20776, 4409, 1), -- MP Increase (1x)
-(20776, 4410, 11), -- Average P. Atk.
-(20776, 4411, 11), -- Average M. Atk.
-(20776, 4412, 11), -- Average P. Def.
-(20776, 4413, 11), -- Average M. Def.
-(20776, 4414, 2), -- Standard Type
-(20776, 4415, 3), -- One-handed Sword
-(20776, 4416, 9), -- Demons
+(20776, 4408, 1), -- HP Modifiers
+(20776, 4409, 1), -- MP Modifiers
+(20776, 4410, 11), -- P. Atk. Modifiers
+(20776, 4411, 11), -- M. Atk. Modifiers
+(20776, 4412, 11), -- P. Def. Modifiers
+(20776, 4413, 11), -- M. Def. Modifiers
+(20776, 4414, 2), -- Armor Type
+(20776, 4415, 3), -- Weapon Type
+(20776, 4416, 9), -- Races
 -- Hunter Bear
-(20777, 4408, 1), -- HP Increase (1x)
-(20777, 4409, 1), -- MP Increase (1x)
-(20777, 4410, 12), -- Slightly Strong P. Atk.
-(20777, 4411, 12), -- Slightly Strong M. Atk.
-(20777, 4412, 10), -- Slightly Weak P. Def.
-(20777, 4413, 10), -- Slightly Weak M. Def.
-(20777, 4414, 2), -- Standard Type
-(20777, 4415, 3), -- One-handed Sword
-(20777, 4416, 4), -- Animals
+(20777, 4408, 1), -- HP Modifiers
+(20777, 4409, 1), -- MP Modifiers
+(20777, 4410, 12), -- P. Atk. Modifiers
+(20777, 4411, 12), -- M. Atk. Modifiers
+(20777, 4412, 10), -- P. Def. Modifiers
+(20777, 4413, 10), -- M. Def. Modifiers
+(20777, 4414, 2), -- Armor Type
+(20777, 4415, 3), -- Weapon Type
+(20777, 4416, 4), -- Races
 -- Ragna Orc Overlord
 (20778, 4318, 1), -- Ultimate Buff
-(20778, 4408, 1), -- HP Increase (1x)
-(20778, 4409, 1), -- MP Increase (1x)
-(20778, 4410, 10), -- Slightly Weak P. Atk.
-(20778, 4411, 10), -- Slightly Weak M. Atk.
-(20778, 4412, 12), -- Slightly Strong P. Def.
-(20778, 4413, 12), -- Slightly Strong M. Def.
-(20778, 4414, 2), -- Standard Type
-(20778, 4415, 3), -- One-handed Sword
-(20778, 4416, 6), -- Humanoids
+(20778, 4408, 1), -- HP Modifiers
+(20778, 4409, 1), -- MP Modifiers
+(20778, 4410, 10), -- P. Atk. Modifiers
+(20778, 4411, 10), -- M. Atk. Modifiers
+(20778, 4412, 12), -- P. Def. Modifiers
+(20778, 4413, 12), -- M. Def. Modifiers
+(20778, 4414, 2), -- Armor Type
+(20778, 4415, 3), -- Weapon Type
+(20778, 4416, 6), -- Races
 -- Ragna Orc Priest
-(20779, 4408, 1), -- HP Increase (1x)
-(20779, 4409, 1), -- MP Increase (1x)
-(20779, 4410, 10), -- Slightly Weak P. Atk.
-(20779, 4411, 10), -- Slightly Weak M. Atk.
-(20779, 4412, 12), -- Slightly Strong P. Def.
-(20779, 4413, 12), -- Slightly Strong M. Def.
-(20779, 4414, 2), -- Standard Type
-(20779, 4415, 5), -- Blunt Weapons
-(20779, 4416, 6), -- Humanoids
+(20779, 4408, 1), -- HP Modifiers
+(20779, 4409, 1), -- MP Modifiers
+(20779, 4410, 10), -- P. Atk. Modifiers
+(20779, 4411, 10), -- M. Atk. Modifiers
+(20779, 4412, 12), -- P. Def. Modifiers
+(20779, 4413, 12), -- M. Def. Modifiers
+(20779, 4414, 2), -- Armor Type
+(20779, 4415, 5), -- Weapon Type
+(20779, 4416, 6), -- Races
 -- Bloody Axe Elite
-(20780, 4408, 1), -- HP Increase (1x)
-(20780, 4409, 1), -- MP Increase (1x)
-(20780, 4410, 10), -- Slightly Weak P. Atk.
-(20780, 4411, 10), -- Slightly Weak M. Atk.
-(20780, 4412, 12), -- Slightly Strong P. Def.
-(20780, 4413, 12), -- Slightly Strong M. Def.
-(20780, 4414, 2), -- Standard Type
-(20780, 4415, 3), -- One-handed Sword
-(20780, 4416, 6), -- Humanoids
+(20780, 4408, 1), -- HP Modifiers
+(20780, 4409, 1), -- MP Modifiers
+(20780, 4410, 10), -- P. Atk. Modifiers
+(20780, 4411, 10), -- M. Atk. Modifiers
+(20780, 4412, 12), -- P. Def. Modifiers
+(20780, 4413, 12), -- M. Def. Modifiers
+(20780, 4414, 2), -- Armor Type
+(20780, 4415, 3), -- Weapon Type
+(20780, 4416, 6), -- Races
 -- Delu Lizardman Shaman
-(20781, 4076, 2), -- Slow
-(20781, 4158, 3), -- Prominence
-(20781, 4160, 3), -- Aura Burn
-(20781, 4408, 1), -- HP Increase (1x)
-(20781, 4409, 1), -- MP Increase (1x)
-(20781, 4410, 12), -- Slightly Strong P. Atk.
-(20781, 4411, 12), -- Slightly Strong M. Atk.
-(20781, 4412, 10), -- Slightly Weak P. Def.
-(20781, 4413, 10), -- Slightly Weak M. Def.
-(20781, 4414, 2), -- Standard Type
-(20781, 4415, 5), -- Blunt Weapons
-(20781, 4416, 6), -- Humanoids
+(20781, 4076, 2), -- Reduction in movement speed
+(20781, 4158, 3), -- NPC Prominence - Magic
+(20781, 4160, 3), -- NPC Aura Burn - Magic
+(20781, 4408, 1), -- HP Modifiers
+(20781, 4409, 1), -- MP Modifiers
+(20781, 4410, 12), -- P. Atk. Modifiers
+(20781, 4411, 12), -- M. Atk. Modifiers
+(20781, 4412, 10), -- P. Def. Modifiers
+(20781, 4413, 10), -- M. Def. Modifiers
+(20781, 4414, 2), -- Armor Type
+(20781, 4415, 5), -- Weapon Type
+(20781, 4416, 6), -- Races
 -- Ol Mahum Novice
-(20782, 4408, 1), -- HP Increase (1x)
-(20782, 4409, 1), -- MP Increase (1x)
-(20782, 4410, 11), -- Average P. Atk.
-(20782, 4411, 11), -- Average M. Atk.
-(20782, 4412, 11), -- Average P. Def.
-(20782, 4413, 11), -- Average M. Def.
-(20782, 4414, 2), -- Standard Type
-(20782, 4415, 3), -- One-handed Sword
-(20782, 4416, 6), -- Humanoids
+(20782, 4408, 1), -- HP Modifiers
+(20782, 4409, 1), -- MP Modifiers
+(20782, 4410, 11), -- P. Atk. Modifiers
+(20782, 4411, 11), -- M. Atk. Modifiers
+(20782, 4412, 11), -- P. Def. Modifiers
+(20782, 4413, 11), -- M. Def. Modifiers
+(20782, 4414, 2), -- Armor Type
+(20782, 4415, 3), -- Weapon Type
+(20782, 4416, 6), -- Races
 -- Dread Wolf
-(20783, 4408, 9), -- HP Increase (1/2x)
-(20783, 4409, 1), -- MP Increase (1x)
-(20783, 4410, 14), -- Strong P. Atk.
-(20783, 4411, 14), -- Strong M. Atk.
-(20783, 4412, 8), -- Weak P. Def.
-(20783, 4413, 8), -- Weak M. Def.
-(20783, 4414, 2), -- Standard Type
-(20783, 4415, 3), -- One-handed Sword
-(20783, 4416, 4), -- Animals
+(20783, 4408, 9), -- HP Modifiers
+(20783, 4409, 1), -- MP Modifiers
+(20783, 4410, 14), -- P. Atk. Modifiers
+(20783, 4411, 14), -- M. Atk. Modifiers
+(20783, 4412, 8), -- P. Def. Modifiers
+(20783, 4413, 8), -- M. Def. Modifiers
+(20783, 4414, 2), -- Armor Type
+(20783, 4415, 3), -- Weapon Type
+(20783, 4416, 4), -- Races
 -- Tasaba Lizardman
 (20784, 4093, 1), -- Evasion
-(20784, 4408, 9), -- HP Increase (1/2x)
-(20784, 4409, 1), -- MP Increase (1x)
-(20784, 4410, 12), -- Slightly Strong P. Atk.
-(20784, 4411, 12), -- Slightly Strong M. Atk.
-(20784, 4412, 10), -- Slightly Weak P. Def.
-(20784, 4413, 10), -- Slightly Weak M. Def.
-(20784, 4414, 2), -- Standard Type
-(20784, 4415, 9), -- Bows
-(20784, 4416, 6), -- Humanoids
+(20784, 4408, 9), -- HP Modifiers
+(20784, 4409, 1), -- MP Modifiers
+(20784, 4410, 12), -- P. Atk. Modifiers
+(20784, 4411, 12), -- M. Atk. Modifiers
+(20784, 4412, 10), -- P. Def. Modifiers
+(20784, 4413, 10), -- M. Def. Modifiers
+(20784, 4414, 2), -- Armor Type
+(20784, 4415, 9), -- Weapon Type
+(20784, 4416, 6), -- Races
 -- Tasaba Lizardman Shaman
-(20785, 4034, 3), -- Ice Bolt
-(20785, 4408, 9), -- HP Increase (1/2x)
-(20785, 4409, 1), -- MP Increase (1x)
-(20785, 4410, 12), -- Slightly Strong P. Atk.
-(20785, 4411, 12), -- Slightly Strong M. Atk.
-(20785, 4412, 10), -- Slightly Weak P. Def.
-(20785, 4413, 10), -- Slightly Weak M. Def.
-(20785, 4414, 3), -- Light Armor Type
-(20785, 4415, 5), -- Blunt Weapons
-(20785, 4416, 6), -- Humanoids
+(20785, 4034, 3), -- Decrease Speed
+(20785, 4408, 9), -- HP Modifiers
+(20785, 4409, 1), -- MP Modifiers
+(20785, 4410, 12), -- P. Atk. Modifiers
+(20785, 4411, 12), -- M. Atk. Modifiers
+(20785, 4412, 10), -- P. Def. Modifiers
+(20785, 4413, 10), -- M. Def. Modifiers
+(20785, 4414, 3), -- Armor Type
+(20785, 4415, 5), -- Weapon Type
+(20785, 4416, 6), -- Races
 -- Lienrik
-(20786, 4034, 3), -- Ice Bolt
-(20786, 4408, 9), -- HP Increase (1/2x)
-(20786, 4409, 1), -- MP Increase (1x)
-(20786, 4410, 14), -- Strong P. Atk.
-(20786, 4411, 14), -- Strong M. Atk.
-(20786, 4412, 8), -- Weak P. Def.
-(20786, 4413, 8), -- Weak M. Def.
-(20786, 4414, 2), -- Standard Type
-(20786, 4415, 7), -- Daggers
-(20786, 4416, 3), -- Beasts
+(20786, 4034, 3), -- Decrease Speed
+(20786, 4408, 9), -- HP Modifiers
+(20786, 4409, 1), -- MP Modifiers
+(20786, 4410, 14), -- P. Atk. Modifiers
+(20786, 4411, 14), -- M. Atk. Modifiers
+(20786, 4412, 8), -- P. Def. Modifiers
+(20786, 4413, 8), -- M. Def. Modifiers
+(20786, 4414, 2), -- Armor Type
+(20786, 4415, 7), -- Weapon Type
+(20786, 4416, 3), -- Races
 -- Lienrik Lad
 (20787, 4036, 4), -- Poison
-(20787, 4408, 9), -- HP Increase (1/2x)
-(20787, 4409, 1), -- MP Increase (1x)
-(20787, 4410, 14), -- Strong P. Atk.
-(20787, 4411, 14), -- Strong M. Atk.
-(20787, 4412, 8), -- Weak P. Def.
-(20787, 4413, 8), -- Weak M. Def.
-(20787, 4414, 2), -- Standard Type
-(20787, 4415, 7), -- Daggers
-(20787, 4416, 3), -- Beasts
+(20787, 4408, 9), -- HP Modifiers
+(20787, 4409, 1), -- MP Modifiers
+(20787, 4410, 14), -- P. Atk. Modifiers
+(20787, 4411, 14), -- M. Atk. Modifiers
+(20787, 4412, 8), -- P. Def. Modifiers
+(20787, 4413, 8), -- M. Def. Modifiers
+(20787, 4414, 2), -- Armor Type
+(20787, 4415, 7), -- Weapon Type
+(20787, 4416, 3), -- Races
 -- Rakul
-(20788, 4032, 3), -- Power Strike
-(20788, 4408, 1), -- HP Increase (1x)
-(20788, 4409, 1), -- MP Increase (1x)
-(20788, 4410, 11), -- Average P. Atk.
-(20788, 4411, 11), -- Average M. Atk.
-(20788, 4412, 11), -- Average P. Def.
-(20788, 4413, 11), -- Average M. Def.
-(20788, 4414, 2), -- Standard Type
-(20788, 4415, 3), -- One-handed Sword
-(20788, 4416, 1), -- Undead
+(20788, 4032, 3), -- NPC Strike
+(20788, 4408, 1), -- HP Modifiers
+(20788, 4409, 1), -- MP Modifiers
+(20788, 4410, 11), -- P. Atk. Modifiers
+(20788, 4411, 11), -- M. Atk. Modifiers
+(20788, 4412, 11), -- P. Def. Modifiers
+(20788, 4413, 11), -- M. Def. Modifiers
+(20788, 4414, 2), -- Armor Type
+(20788, 4415, 3), -- Weapon Type
+(20788, 4416, 1), -- Races
 -- Crokian
-(20789, 4030, 2), -- Might
-(20789, 4408, 1), -- HP Increase (1x)
-(20789, 4409, 1), -- MP Increase (1x)
-(20789, 4410, 10), -- Slightly Weak P. Atk.
-(20789, 4411, 10), -- Slightly Weak M. Atk.
-(20789, 4412, 12), -- Slightly Strong P. Def.
-(20789, 4413, 12), -- Slightly Strong M. Def.
-(20789, 4414, 2), -- Standard Type
-(20789, 4415, 3), -- One-handed Sword
-(20789, 4416, 6), -- Humanoids
+(20789, 4030, 2), -- NPC Clan Might
+(20789, 4408, 1), -- HP Modifiers
+(20789, 4409, 1), -- MP Modifiers
+(20789, 4410, 10), -- P. Atk. Modifiers
+(20789, 4411, 10), -- M. Atk. Modifiers
+(20789, 4412, 12), -- P. Def. Modifiers
+(20789, 4413, 12), -- M. Def. Modifiers
+(20789, 4414, 2), -- Armor Type
+(20789, 4415, 3), -- Weapon Type
+(20789, 4416, 6), -- Races
 -- Dailaon
-(20790, 4071, 5), -- Resist Bow/Crossbow Weapons
+(20790, 4071, 5), -- Resist Archery
 (20790, 4228, 3), -- Double Dagger Attack
-(20790, 4408, 1), -- HP Increase (1x)
-(20790, 4409, 1), -- MP Increase (1x)
-(20790, 4410, 10), -- Slightly Weak P. Atk.
-(20790, 4411, 10), -- Slightly Weak M. Atk.
-(20790, 4412, 12), -- Slightly Strong P. Def.
-(20790, 4413, 12), -- Slightly Strong M. Def.
-(20790, 4414, 2), -- Standard Type
-(20790, 4415, 9), -- Bows
-(20790, 4416, 6), -- Humanoids
+(20790, 4408, 1), -- HP Modifiers
+(20790, 4409, 1), -- MP Modifiers
+(20790, 4410, 10), -- P. Atk. Modifiers
+(20790, 4411, 10), -- M. Atk. Modifiers
+(20790, 4412, 12), -- P. Def. Modifiers
+(20790, 4413, 12), -- M. Def. Modifiers
+(20790, 4414, 2), -- Armor Type
+(20790, 4415, 9), -- Weapon Type
+(20790, 4416, 6), -- Races
 -- Crokian Warrior
-(20791, 4074, 2), -- Haste
-(20791, 4408, 10), -- HP Increase (2x)
-(20791, 4409, 1), -- MP Increase (1x)
-(20791, 4410, 12), -- Slightly Strong P. Atk.
-(20791, 4411, 12), -- Slightly Strong M. Atk.
-(20791, 4412, 10), -- Slightly Weak P. Def.
-(20791, 4413, 10), -- Slightly Weak M. Def.
-(20791, 4414, 2), -- Standard Type
-(20791, 4415, 3), -- One-handed Sword
-(20791, 4416, 6), -- Humanoids
+(20791, 4074, 2), -- NPC Haste
+(20791, 4408, 10), -- HP Modifiers
+(20791, 4409, 1), -- MP Modifiers
+(20791, 4410, 12), -- P. Atk. Modifiers
+(20791, 4411, 12), -- M. Atk. Modifiers
+(20791, 4412, 10), -- P. Def. Modifiers
+(20791, 4413, 10), -- M. Def. Modifiers
+(20791, 4414, 2), -- Armor Type
+(20791, 4415, 3), -- Weapon Type
+(20791, 4416, 6), -- Races
 -- Farhite
-(20792, 4076, 2), -- Slow
-(20792, 4151, 3), -- Wind Strike
-(20792, 4160, 3), -- Aura Burn
-(20792, 4408, 10), -- HP Increase (2x)
-(20792, 4409, 1), -- MP Increase (1x)
-(20792, 4410, 12), -- Slightly Strong P. Atk.
-(20792, 4411, 12), -- Slightly Strong M. Atk.
-(20792, 4412, 10), -- Slightly Weak P. Def.
-(20792, 4413, 10), -- Slightly Weak M. Def.
-(20792, 4414, 3), -- Light Armor Type
-(20792, 4415, 5), -- Blunt Weapons
-(20792, 4416, 6), -- Humanoids
+(20792, 4076, 2), -- Reduction in movement speed
+(20792, 4151, 3), -- NPC Windstrike - Magic
+(20792, 4160, 3), -- NPC Aura Burn - Magic
+(20792, 4408, 10), -- HP Modifiers
+(20792, 4409, 1), -- MP Modifiers
+(20792, 4410, 12), -- P. Atk. Modifiers
+(20792, 4411, 12), -- M. Atk. Modifiers
+(20792, 4412, 10), -- P. Def. Modifiers
+(20792, 4413, 10), -- M. Def. Modifiers
+(20792, 4414, 3), -- Armor Type
+(20792, 4415, 5), -- Weapon Type
+(20792, 4416, 6), -- Races
 -- Nos
-(20793, 4085, 1), -- Critical Damage
-(20793, 4099, 2), -- Berserker Spirit
-(20793, 4408, 10), -- HP Increase (2x)
-(20793, 4409, 1), -- MP Increase (1x)
-(20793, 4410, 12), -- Slightly Strong P. Atk.
-(20793, 4411, 12), -- Slightly Strong M. Atk.
-(20793, 4412, 10), -- Slightly Weak P. Def.
-(20793, 4413, 10), -- Slightly Weak M. Def.
-(20793, 4414, 2), -- Standard Type
-(20793, 4415, 3), -- One-handed Sword
-(20793, 4416, 6), -- Humanoids
+(20793, 4085, 1), -- Critical Power
+(20793, 4099, 2), -- NPC Berserk
+(20793, 4408, 10), -- HP Modifiers
+(20793, 4409, 1), -- MP Modifiers
+(20793, 4410, 12), -- P. Atk. Modifiers
+(20793, 4411, 12), -- M. Atk. Modifiers
+(20793, 4412, 10), -- P. Def. Modifiers
+(20793, 4413, 10), -- M. Def. Modifiers
+(20793, 4414, 2), -- Armor Type
+(20793, 4415, 3), -- Weapon Type
+(20793, 4416, 6), -- Races
 -- Blade Stakato
-(20794, 4074, 2), -- Haste
-(20794, 4408, 10), -- HP Increase (2x)
-(20794, 4409, 1), -- MP Increase (1x)
-(20794, 4410, 10), -- Slightly Weak P. Atk.
-(20794, 4411, 10), -- Slightly Weak M. Atk.
-(20794, 4412, 12), -- Slightly Strong P. Def.
-(20794, 4413, 12), -- Slightly Strong M. Def.
-(20794, 4414, 2), -- Standard Type
-(20794, 4415, 3), -- One-handed Sword
-(20794, 4416, 6), -- Humanoids
+(20794, 4074, 2), -- NPC Haste
+(20794, 4408, 10), -- HP Modifiers
+(20794, 4409, 1), -- MP Modifiers
+(20794, 4410, 10), -- P. Atk. Modifiers
+(20794, 4411, 10), -- M. Atk. Modifiers
+(20794, 4412, 12), -- P. Def. Modifiers
+(20794, 4413, 12), -- M. Def. Modifiers
+(20794, 4414, 2), -- Armor Type
+(20794, 4415, 3), -- Weapon Type
+(20794, 4416, 6), -- Races
 -- Blade Stakato Worker
-(20795, 4076, 3), -- Slow
-(20795, 4408, 10), -- HP Increase (2x)
-(20795, 4409, 1), -- MP Increase (1x)
-(20795, 4410, 11), -- Average P. Atk.
-(20795, 4411, 11), -- Average M. Atk.
-(20795, 4412, 11), -- Average P. Def.
-(20795, 4413, 11), -- Average M. Def.
-(20795, 4414, 2), -- Standard Type
-(20795, 4415, 7), -- Daggers
-(20795, 4416, 6), -- Humanoids
+(20795, 4076, 3), -- Reduction in movement speed
+(20795, 4408, 10), -- HP Modifiers
+(20795, 4409, 1), -- MP Modifiers
+(20795, 4410, 11), -- P. Atk. Modifiers
+(20795, 4411, 11), -- M. Atk. Modifiers
+(20795, 4412, 11), -- P. Def. Modifiers
+(20795, 4413, 11), -- M. Def. Modifiers
+(20795, 4414, 2), -- Armor Type
+(20795, 4415, 7), -- Weapon Type
+(20795, 4416, 6), -- Races
 -- Blade Stakato Warrior
-(20796, 4098, 4), -- Silence
-(20796, 4408, 10), -- HP Increase (2x)
-(20796, 4409, 1), -- MP Increase (1x)
-(20796, 4410, 12), -- Slightly Strong P. Atk.
-(20796, 4411, 12), -- Slightly Strong M. Atk.
-(20796, 4412, 10), -- Slightly Weak P. Def.
-(20796, 4413, 10), -- Slightly Weak M. Def.
-(20796, 4414, 2), -- Standard Type
-(20796, 4415, 5), -- Blunt Weapons
-(20796, 4416, 6), -- Humanoids
+(20796, 4098, 4), -- Magic Skill Block
+(20796, 4408, 10), -- HP Modifiers
+(20796, 4409, 1), -- MP Modifiers
+(20796, 4410, 12), -- P. Atk. Modifiers
+(20796, 4411, 12), -- M. Atk. Modifiers
+(20796, 4412, 10), -- P. Def. Modifiers
+(20796, 4413, 10), -- M. Def. Modifiers
+(20796, 4414, 2), -- Armor Type
+(20796, 4415, 5), -- Weapon Type
+(20796, 4416, 6), -- Races
 (20796, 4439, 2), -- Greater Resist Hold
 -- Blade Stakato Drone
-(20797, 4034, 4), -- Ice Bolt
+(20797, 4034, 4), -- Decrease Speed
 (20797, 4046, 4), -- Sleep
-(20797, 4076, 3), -- Slow
-(20797, 4085, 1), -- Critical Damage
-(20797, 4094, 4), -- Cancellation
-(20797, 4098, 4), -- Silence
-(20797, 4408, 11), -- HP Increase (3x)
-(20797, 4409, 1), -- MP Increase (1x)
-(20797, 4410, 12), -- Slightly Strong P. Atk.
-(20797, 4411, 12), -- Slightly Strong M. Atk.
-(20797, 4412, 10), -- Slightly Weak P. Def.
-(20797, 4413, 10), -- Slightly Weak M. Def.
-(20797, 4414, 3), -- Light Armor Type
-(20797, 4415, 3), -- One-handed Sword
-(20797, 4416, 6), -- Humanoids
+(20797, 4076, 3), -- Reduction in movement speed
+(20797, 4085, 1), -- Critical Power
+(20797, 4094, 4), -- NPC Cancel Magic
+(20797, 4098, 4), -- Magic Skill Block
+(20797, 4408, 11), -- HP Modifiers
+(20797, 4409, 1), -- MP Modifiers
+(20797, 4410, 12), -- P. Atk. Modifiers
+(20797, 4411, 12), -- M. Atk. Modifiers
+(20797, 4412, 10), -- P. Def. Modifiers
+(20797, 4413, 10), -- M. Def. Modifiers
+(20797, 4414, 3), -- Armor Type
+(20797, 4415, 3), -- Weapon Type
+(20797, 4416, 6), -- Races
 (20797, 4438, 2), -- Greater Resist Sleep
 -- Water Giant
-(20798, 4073, 4), -- Stun
+(20798, 4073, 4), -- Shock
 (20798, 4086, 1), -- Critical Chance
-(20798, 4408, 10), -- HP Increase (2x)
-(20798, 4409, 1), -- MP Increase (1x)
-(20798, 4410, 10), -- Slightly Weak P. Atk.
-(20798, 4411, 10), -- Slightly Weak M. Atk.
-(20798, 4412, 12), -- Slightly Strong P. Def.
-(20798, 4413, 12), -- Slightly Strong M. Def.
-(20798, 4414, 2), -- Standard Type
-(20798, 4415, 3), -- One-handed Sword
-(20798, 4416, 11), -- Giants
+(20798, 4408, 10), -- HP Modifiers
+(20798, 4409, 1), -- MP Modifiers
+(20798, 4410, 10), -- P. Atk. Modifiers
+(20798, 4411, 10), -- M. Atk. Modifiers
+(20798, 4412, 12), -- P. Def. Modifiers
+(20798, 4413, 12), -- M. Def. Modifiers
+(20798, 4414, 2), -- Armor Type
+(20798, 4415, 3), -- Weapon Type
+(20798, 4416, 11), -- Races
 -- Queen Undine Lad
-(20799, 4034, 4), -- Ice Bolt
-(20799, 4066, 4), -- Twister
+(20799, 4034, 4), -- Decrease Speed
+(20799, 4066, 4), -- NPC Twister
 (20799, 4093, 1), -- Evasion
 (20799, 4118, 4), -- Paralysis
-(20799, 4408, 10), -- HP Increase (2x)
-(20799, 4409, 1), -- MP Increase (1x)
-(20799, 4410, 12), -- Slightly Strong P. Atk.
-(20799, 4411, 12), -- Slightly Strong M. Atk.
-(20799, 4412, 10), -- Slightly Weak P. Def.
-(20799, 4413, 10), -- Slightly Weak M. Def.
-(20799, 4414, 3), -- Light Armor Type
-(20799, 4415, 3), -- One-handed Sword
-(20799, 4416, 7), -- Spirits
+(20799, 4408, 10), -- HP Modifiers
+(20799, 4409, 1), -- MP Modifiers
+(20799, 4410, 12), -- P. Atk. Modifiers
+(20799, 4411, 12), -- M. Atk. Modifiers
+(20799, 4412, 10), -- P. Def. Modifiers
+(20799, 4413, 10), -- M. Def. Modifiers
+(20799, 4414, 3), -- Armor Type
+(20799, 4415, 3), -- Weapon Type
+(20799, 4416, 7), -- Races
 (20799, 4438, 2), -- Greater Resist Sleep
 -- Eva's Seeker
-(20800, 4119, 3), -- Decrease Accuracy
-(20800, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(20800, 4408, 10), -- HP Increase (2x)
-(20800, 4409, 1), -- MP Increase (1x)
-(20800, 4410, 10), -- Slightly Weak P. Atk.
-(20800, 4411, 10), -- Slightly Weak M. Atk.
-(20800, 4412, 12), -- Slightly Strong P. Def.
-(20800, 4413, 12), -- Slightly Strong M. Def.
-(20800, 4414, 2), -- Standard Type
-(20800, 4415, 3), -- One-handed Sword
-(20800, 4416, 2), -- Magic Creatures
+(20800, 4119, 3), -- Fall in accuracy
+(20800, 4276, 1), -- Archery Attack Weak Point
+(20800, 4408, 10), -- HP Modifiers
+(20800, 4409, 1), -- MP Modifiers
+(20800, 4410, 10), -- P. Atk. Modifiers
+(20800, 4411, 10), -- M. Atk. Modifiers
+(20800, 4412, 12), -- P. Def. Modifiers
+(20800, 4413, 12), -- M. Def. Modifiers
+(20800, 4414, 2), -- Armor Type
+(20800, 4415, 3), -- Weapon Type
+(20800, 4416, 2), -- Races
 -- Theeder Piker
-(20801, 4071, 5), -- Resist Bow/Crossbow Weapons
-(20801, 4085, 1), -- Critical Damage
-(20801, 4244, 4), -- Wild Sweep
-(20801, 4408, 10), -- HP Increase (2x)
-(20801, 4409, 1), -- MP Increase (1x)
-(20801, 4410, 10), -- Slightly Weak P. Atk.
-(20801, 4411, 10), -- Slightly Weak M. Atk.
-(20801, 4412, 12), -- Slightly Strong P. Def.
-(20801, 4413, 12), -- Slightly Strong M. Def.
-(20801, 4414, 2), -- Standard Type
-(20801, 4415, 13), -- Two-handed Sword
-(20801, 4416, 7), -- Spirits
+(20801, 4071, 5), -- Resist Archery
+(20801, 4085, 1), -- Critical Power
+(20801, 4244, 4), -- NPC Wild Sweep
+(20801, 4408, 10), -- HP Modifiers
+(20801, 4409, 1), -- MP Modifiers
+(20801, 4410, 10), -- P. Atk. Modifiers
+(20801, 4411, 10), -- M. Atk. Modifiers
+(20801, 4412, 12), -- P. Def. Modifiers
+(20801, 4413, 12), -- M. Def. Modifiers
+(20801, 4414, 2), -- Armor Type
+(20801, 4415, 13), -- Weapon Type
+(20801, 4416, 7), -- Races
 -- Theeder Mage
-(20802, 4039, 4), -- Mana Drain
+(20802, 4039, 4), -- NPC MP Drain
 (20802, 4046, 4), -- Sleep
-(20802, 4094, 4), -- Cancellation
+(20802, 4094, 4), -- NPC Cancel Magic
 (20802, 4118, 4), -- Paralysis
-(20802, 4408, 10), -- HP Increase (2x)
-(20802, 4409, 1), -- MP Increase (1x)
-(20802, 4410, 12), -- Slightly Strong P. Atk.
-(20802, 4411, 12), -- Slightly Strong M. Atk.
-(20802, 4412, 10), -- Slightly Weak P. Def.
-(20802, 4413, 13), -- Slightly Strong M. Def.
-(20802, 4414, 3), -- Light Armor Type
-(20802, 4415, 5), -- Blunt Weapons
-(20802, 4416, 7), -- Spirits
+(20802, 4408, 10), -- HP Modifiers
+(20802, 4409, 1), -- MP Modifiers
+(20802, 4410, 12), -- P. Atk. Modifiers
+(20802, 4411, 12), -- M. Atk. Modifiers
+(20802, 4412, 10), -- P. Def. Modifiers
+(20802, 4413, 13), -- M. Def. Modifiers
+(20802, 4414, 3), -- Armor Type
+(20802, 4415, 5), -- Weapon Type
+(20802, 4416, 7), -- Races
 -- Doll Master
-(20803, 4074, 2), -- Haste
-(20803, 4274, 1), -- Blunt Weapon Weak Point
-(20803, 4408, 11), -- HP Increase (3x)
-(20803, 4409, 1), -- MP Increase (1x)
-(20803, 4410, 13), -- Slightly Strong P. Atk.
-(20803, 4411, 13), -- Slightly Strong M. Atk.
-(20803, 4412, 14), -- Strong P. Def.
-(20803, 4413, 9), -- Slightly Weak M. Def.
-(20803, 4414, 2), -- Standard Type
-(20803, 4415, 3), -- One-handed Sword
-(20803, 4416, 1), -- Undead
+(20803, 4074, 2), -- NPC Haste
+(20803, 4274, 1), -- Blunt Attack Weak Point
+(20803, 4408, 11), -- HP Modifiers
+(20803, 4409, 1), -- MP Modifiers
+(20803, 4410, 13), -- P. Atk. Modifiers
+(20803, 4411, 13), -- M. Atk. Modifiers
+(20803, 4412, 14), -- P. Def. Modifiers
+(20803, 4413, 9), -- M. Def. Modifiers
+(20803, 4414, 2), -- Armor Type
+(20803, 4415, 3), -- Weapon Type
+(20803, 4416, 1), -- Races
 -- Crokian Lad
-(20804, 4074, 2), -- Haste
-(20804, 4408, 10), -- HP Increase (2x)
-(20804, 4409, 1), -- MP Increase (1x)
-(20804, 4410, 11), -- Average P. Atk.
-(20804, 4411, 11), -- Average M. Atk.
-(20804, 4412, 11), -- Average P. Def.
-(20804, 4413, 11), -- Average M. Def.
-(20804, 4414, 2), -- Standard Type
-(20804, 4415, 3), -- One-handed Sword
-(20804, 4416, 6), -- Humanoids
+(20804, 4074, 2), -- NPC Haste
+(20804, 4408, 10), -- HP Modifiers
+(20804, 4409, 1), -- MP Modifiers
+(20804, 4410, 11), -- P. Atk. Modifiers
+(20804, 4411, 11), -- M. Atk. Modifiers
+(20804, 4412, 11), -- P. Def. Modifiers
+(20804, 4413, 11), -- M. Def. Modifiers
+(20804, 4414, 2), -- Armor Type
+(20804, 4415, 3), -- Weapon Type
+(20804, 4416, 6), -- Races
 -- Dailaon Lad
 (20805, 4228, 4), -- Double Dagger Attack
-(20805, 4408, 10), -- HP Increase (2x)
-(20805, 4409, 1), -- MP Increase (1x)
-(20805, 4410, 12), -- Slightly Strong P. Atk.
-(20805, 4411, 12), -- Slightly Strong M. Atk.
-(20805, 4412, 10), -- Slightly Weak P. Def.
-(20805, 4413, 10), -- Slightly Weak M. Def.
-(20805, 4414, 2), -- Standard Type
-(20805, 4415, 9), -- Bows
-(20805, 4416, 6), -- Humanoids
+(20805, 4408, 10), -- HP Modifiers
+(20805, 4409, 1), -- MP Modifiers
+(20805, 4410, 12), -- P. Atk. Modifiers
+(20805, 4411, 12), -- M. Atk. Modifiers
+(20805, 4412, 10), -- P. Def. Modifiers
+(20805, 4413, 10), -- M. Def. Modifiers
+(20805, 4414, 2), -- Armor Type
+(20805, 4415, 9), -- Weapon Type
+(20805, 4416, 6), -- Races
 -- Crokian Lad Warrior
-(20806, 4030, 3), -- Might
-(20806, 4408, 10), -- HP Increase (2x)
-(20806, 4409, 1), -- MP Increase (1x)
-(20806, 4410, 12), -- Slightly Strong P. Atk.
-(20806, 4411, 12), -- Slightly Strong M. Atk.
-(20806, 4412, 10), -- Slightly Weak P. Def.
-(20806, 4413, 10), -- Slightly Weak M. Def.
-(20806, 4414, 2), -- Standard Type
-(20806, 4415, 3), -- One-handed Sword
-(20806, 4416, 6), -- Humanoids
+(20806, 4030, 3), -- NPC Clan Might
+(20806, 4408, 10), -- HP Modifiers
+(20806, 4409, 1), -- MP Modifiers
+(20806, 4410, 12), -- P. Atk. Modifiers
+(20806, 4411, 12), -- M. Atk. Modifiers
+(20806, 4412, 10), -- P. Def. Modifiers
+(20806, 4413, 10), -- M. Def. Modifiers
+(20806, 4414, 2), -- Armor Type
+(20806, 4415, 3), -- Weapon Type
+(20806, 4416, 6), -- Races
 -- Farhite Lad
-(20807, 4065, 4), -- Heal
+(20807, 4065, 4), -- NPC Heal
 (20807, 4153, 4), -- Decrease Speed
-(20807, 4160, 4), -- Aura Burn
-(20807, 4408, 10), -- HP Increase (2x)
-(20807, 4409, 1), -- MP Increase (1x)
-(20807, 4410, 12), -- Slightly Strong P. Atk.
-(20807, 4411, 12), -- Slightly Strong M. Atk.
-(20807, 4412, 10), -- Slightly Weak P. Def.
-(20807, 4413, 10), -- Slightly Weak M. Def.
-(20807, 4414, 3), -- Light Armor Type
-(20807, 4415, 5), -- Blunt Weapons
-(20807, 4416, 6), -- Humanoids
+(20807, 4160, 4), -- NPC Aura Burn - Magic
+(20807, 4408, 10), -- HP Modifiers
+(20807, 4409, 1), -- MP Modifiers
+(20807, 4410, 12), -- P. Atk. Modifiers
+(20807, 4411, 12), -- M. Atk. Modifiers
+(20807, 4412, 10), -- P. Def. Modifiers
+(20807, 4413, 10), -- M. Def. Modifiers
+(20807, 4414, 3), -- Armor Type
+(20807, 4415, 5), -- Weapon Type
+(20807, 4416, 6), -- Races
 -- Nos Lad
-(20808, 4071, 5), -- Resist Bow/Crossbow Weapons
-(20808, 4085, 1), -- Critical Damage
+(20808, 4071, 5), -- Resist Archery
+(20808, 4085, 1), -- Critical Power
 (20808, 4086, 1), -- Critical Chance
-(20808, 4103, 2), -- Ultimate Evasion
-(20808, 4408, 10), -- HP Increase (2x)
-(20808, 4409, 1), -- MP Increase (1x)
-(20808, 4410, 10), -- Slightly Weak P. Atk.
-(20808, 4411, 10), -- Slightly Weak M. Atk.
-(20808, 4412, 12), -- Slightly Strong P. Def.
-(20808, 4413, 12), -- Slightly Strong M. Def.
-(20808, 4414, 2), -- Standard Type
-(20808, 4415, 3), -- One-handed Sword
-(20808, 4416, 6), -- Humanoids
+(20808, 4103, 2), -- NPC Ultimate Evasion
+(20808, 4408, 10), -- HP Modifiers
+(20808, 4409, 1), -- MP Modifiers
+(20808, 4410, 10), -- P. Atk. Modifiers
+(20808, 4411, 10), -- M. Atk. Modifiers
+(20808, 4412, 12), -- P. Def. Modifiers
+(20808, 4413, 12), -- M. Def. Modifiers
+(20808, 4414, 2), -- Armor Type
+(20808, 4415, 3), -- Weapon Type
+(20808, 4416, 6), -- Races
 -- Ghost of the Tower
-(20809, 4098, 6), -- Silence
-(20809, 4158, 6), -- Prominence
-(20809, 4160, 6), -- Aura Burn
-(20809, 4408, 11), -- HP Increase (3x)
-(20809, 4409, 1), -- MP Increase (1x)
-(20809, 4410, 11), -- Average P. Atk.
-(20809, 4411, 11), -- Average M. Atk.
-(20809, 4412, 11), -- Average P. Def.
-(20809, 4413, 11), -- Average M. Def.
-(20809, 4414, 2), -- Standard Type
-(20809, 4415, 5), -- Blunt Weapons
-(20809, 4416, 1), -- Undead
+(20809, 4098, 6), -- Magic Skill Block
+(20809, 4158, 6), -- NPC Prominence - Magic
+(20809, 4160, 6), -- NPC Aura Burn - Magic
+(20809, 4408, 11), -- HP Modifiers
+(20809, 4409, 1), -- MP Modifiers
+(20809, 4410, 11), -- P. Atk. Modifiers
+(20809, 4411, 11), -- M. Atk. Modifiers
+(20809, 4412, 11), -- P. Def. Modifiers
+(20809, 4413, 11), -- M. Def. Modifiers
+(20809, 4414, 2), -- Armor Type
+(20809, 4415, 5), -- Weapon Type
+(20809, 4416, 1), -- Races
 (20809, 4438, 2), -- Greater Resist Sleep
 -- Hallate's Seer
-(20810, 4002, 6), -- HP Drain
+(20810, 4002, 6), -- NPC HP Drain
 (20810, 4046, 6), -- Sleep
 (20810, 4088, 6), -- Bleed
-(20810, 4094, 6), -- Cancellation
-(20810, 4098, 6), -- Silence
-(20810, 4408, 11), -- HP Increase (3x)
-(20810, 4409, 1), -- MP Increase (1x)
-(20810, 4410, 12), -- Slightly Strong P. Atk.
-(20810, 4411, 12), -- Slightly Strong M. Atk.
-(20810, 4412, 10), -- Slightly Weak P. Def.
-(20810, 4413, 10), -- Slightly Weak M. Def.
-(20810, 4414, 2), -- Standard Type
-(20810, 4415, 5), -- Blunt Weapons
-(20810, 4416, 2), -- Magic Creatures
+(20810, 4094, 6), -- NPC Cancel Magic
+(20810, 4098, 6), -- Magic Skill Block
+(20810, 4408, 11), -- HP Modifiers
+(20810, 4409, 1), -- MP Modifiers
+(20810, 4410, 12), -- P. Atk. Modifiers
+(20810, 4411, 12), -- M. Atk. Modifiers
+(20810, 4412, 10), -- P. Def. Modifiers
+(20810, 4413, 10), -- M. Def. Modifiers
+(20810, 4414, 2), -- Armor Type
+(20810, 4415, 5), -- Weapon Type
+(20810, 4416, 2), -- Races
 -- Ghastly Warrior
-(20811, 4032, 6), -- Power Strike
-(20811, 4072, 6), -- Stun
-(20811, 4092, 1), -- Spirit Puma
-(20811, 4408, 11), -- HP Increase (3x)
-(20811, 4409, 1), -- MP Increase (1x)
-(20811, 4410, 10), -- Slightly Weak P. Atk.
-(20811, 4411, 10), -- Slightly Weak M. Atk.
-(20811, 4412, 12), -- Slightly Strong P. Def.
-(20811, 4413, 12), -- Slightly Strong M. Def.
-(20811, 4414, 2), -- Standard Type
-(20811, 4415, 7), -- Daggers
-(20811, 4416, 1), -- Undead
+(20811, 4032, 6), -- NPC Strike
+(20811, 4072, 6), -- Shock
+(20811, 4092, 1), -- NPC Puma Spirit Totem
+(20811, 4408, 11), -- HP Modifiers
+(20811, 4409, 1), -- MP Modifiers
+(20811, 4410, 10), -- P. Atk. Modifiers
+(20811, 4411, 10), -- M. Atk. Modifiers
+(20811, 4412, 12), -- P. Def. Modifiers
+(20811, 4413, 12), -- M. Def. Modifiers
+(20811, 4414, 2), -- Armor Type
+(20811, 4415, 7), -- Weapon Type
+(20811, 4416, 1), -- Races
 -- Archer of Despair
-(20812, 4040, 6), -- Power Shot
-(20812, 4408, 11), -- HP Increase (3x)
-(20812, 4409, 1), -- MP Increase (1x)
-(20812, 4410, 12), -- Slightly Strong P. Atk.
-(20812, 4411, 12), -- Slightly Strong M. Atk.
-(20812, 4412, 10), -- Slightly Weak P. Def.
-(20812, 4413, 10), -- Slightly Weak M. Def.
-(20812, 4414, 3), -- Light Armor Type
-(20812, 4415, 9), -- Bows
-(20812, 4416, 1), -- Undead
+(20812, 4040, 6), -- NPC Bow Attack
+(20812, 4408, 11), -- HP Modifiers
+(20812, 4409, 1), -- MP Modifiers
+(20812, 4410, 12), -- P. Atk. Modifiers
+(20812, 4411, 12), -- M. Atk. Modifiers
+(20812, 4412, 10), -- P. Def. Modifiers
+(20812, 4413, 10), -- M. Def. Modifiers
+(20812, 4414, 3), -- Armor Type
+(20812, 4415, 9), -- Weapon Type
+(20812, 4416, 1), -- Races
 (20812, 4438, 2), -- Greater Resist Sleep
 -- Crendion
-(20813, 4157, 6), -- Blaze
-(20813, 4160, 6), -- Aura Burn
-(20813, 4408, 11), -- HP Increase (3x)
-(20813, 4409, 1), -- MP Increase (1x)
-(20813, 4410, 11), -- Average P. Atk.
-(20813, 4411, 11), -- Average M. Atk.
-(20813, 4412, 11), -- Average P. Def.
-(20813, 4413, 11), -- Average M. Def.
-(20813, 4414, 2), -- Standard Type
-(20813, 4415, 3), -- One-handed Sword
-(20813, 4416, 2), -- Magic Creatures
+(20813, 4157, 6), -- NPC Blaze - Magic
+(20813, 4160, 6), -- NPC Aura Burn - Magic
+(20813, 4408, 11), -- HP Modifiers
+(20813, 4409, 1), -- MP Modifiers
+(20813, 4410, 11), -- P. Atk. Modifiers
+(20813, 4411, 11), -- M. Atk. Modifiers
+(20813, 4412, 11), -- P. Def. Modifiers
+(20813, 4413, 11), -- M. Def. Modifiers
+(20813, 4414, 2), -- Armor Type
+(20813, 4415, 3), -- Weapon Type
+(20813, 4416, 2), -- Races
 -- Blader of Despair
-(20814, 4032, 6), -- Power Strike
-(20814, 4033, 6), -- Aura Burn
-(20814, 4091, 1), -- Spirit Ogre
-(20814, 4408, 11), -- HP Increase (3x)
-(20814, 4409, 1), -- MP Increase (1x)
-(20814, 4410, 12), -- Slightly Strong P. Atk.
-(20814, 4411, 12), -- Slightly Strong M. Atk.
-(20814, 4412, 10), -- Slightly Weak P. Def.
-(20814, 4413, 10), -- Slightly Weak M. Def.
-(20814, 4414, 2), -- Standard Type
-(20814, 4415, 13), -- Two-handed Sword
-(20814, 4416, 1), -- Undead
+(20814, 4032, 6), -- NPC Strike
+(20814, 4033, 6), -- NPC Burn
+(20814, 4091, 1), -- NPC Ogre Spirit Totem
+(20814, 4408, 11), -- HP Modifiers
+(20814, 4409, 1), -- MP Modifiers
+(20814, 4410, 12), -- P. Atk. Modifiers
+(20814, 4411, 12), -- M. Atk. Modifiers
+(20814, 4412, 10), -- P. Def. Modifiers
+(20814, 4413, 10), -- M. Def. Modifiers
+(20814, 4414, 2), -- Armor Type
+(20814, 4415, 13), -- Weapon Type
+(20814, 4416, 1), -- Races
 -- Hound Dog of Hallate
-(20815, 4072, 6), -- Stun
-(20815, 4408, 12), -- HP Increase (4x)
-(20815, 4409, 1), -- MP Increase (1x)
-(20815, 4410, 10), -- Slightly Weak P. Atk.
-(20815, 4411, 10), -- Slightly Weak M. Atk.
-(20815, 4412, 12), -- Slightly Strong P. Def.
-(20815, 4413, 12), -- Slightly Strong M. Def.
-(20815, 4414, 2), -- Standard Type
-(20815, 4415, 5), -- Blunt Weapons
-(20815, 4416, 4), -- Animals
+(20815, 4072, 6), -- Shock
+(20815, 4408, 12), -- HP Modifiers
+(20815, 4409, 1), -- MP Modifiers
+(20815, 4410, 10), -- P. Atk. Modifiers
+(20815, 4411, 10), -- M. Atk. Modifiers
+(20815, 4412, 12), -- P. Def. Modifiers
+(20815, 4413, 12), -- M. Def. Modifiers
+(20815, 4414, 2), -- Armor Type
+(20815, 4415, 5), -- Weapon Type
+(20815, 4416, 4), -- Races
 -- Hallate's Royal Guard
-(20816, 4033, 6), -- Aura Burn
-(20816, 4067, 6), -- Blow
-(20816, 4092, 1), -- Spirit Puma
-(20816, 4408, 11), -- HP Increase (3x)
-(20816, 4409, 1), -- MP Increase (1x)
-(20816, 4410, 10), -- Slightly Weak P. Atk.
-(20816, 4411, 10), -- Slightly Weak M. Atk.
-(20816, 4412, 12), -- Slightly Strong P. Def.
-(20816, 4413, 12), -- Slightly Strong M. Def.
-(20816, 4414, 2), -- Standard Type
-(20816, 4415, 7), -- Daggers
-(20816, 4416, 1), -- Undead
+(20816, 4033, 6), -- NPC Burn
+(20816, 4067, 6), -- NPC Mortal Blow
+(20816, 4092, 1), -- NPC Puma Spirit Totem
+(20816, 4408, 11), -- HP Modifiers
+(20816, 4409, 1), -- MP Modifiers
+(20816, 4410, 10), -- P. Atk. Modifiers
+(20816, 4411, 10), -- M. Atk. Modifiers
+(20816, 4412, 12), -- P. Def. Modifiers
+(20816, 4413, 12), -- M. Def. Modifiers
+(20816, 4414, 2), -- Armor Type
+(20816, 4415, 7), -- Weapon Type
+(20816, 4416, 1), -- Races
 (20816, 4438, 2), -- Greater Resist Sleep
 -- Corrupt Sage
 (20817, 4118, 6), -- Paralysis
-(20817, 4155, 6), -- Twister
-(20817, 4160, 6), -- Aura Burn
-(20817, 4408, 11), -- HP Increase (3x)
-(20817, 4409, 1), -- MP Increase (1x)
-(20817, 4410, 12), -- Slightly Strong P. Atk.
-(20817, 4411, 12), -- Slightly Strong M. Atk.
-(20817, 4412, 10), -- Slightly Weak P. Def.
-(20817, 4413, 13), -- Slightly Strong M. Def.
-(20817, 4414, 3), -- Light Armor Type
-(20817, 4415, 5), -- Blunt Weapons
-(20817, 4416, 9), -- Demons
+(20817, 4155, 6), -- NPC Twister - Magic
+(20817, 4160, 6), -- NPC Aura Burn - Magic
+(20817, 4408, 11), -- HP Modifiers
+(20817, 4409, 1), -- MP Modifiers
+(20817, 4410, 12), -- P. Atk. Modifiers
+(20817, 4411, 12), -- M. Atk. Modifiers
+(20817, 4412, 10), -- P. Def. Modifiers
+(20817, 4413, 13), -- M. Def. Modifiers
+(20817, 4414, 3), -- Armor Type
+(20817, 4415, 5), -- Weapon Type
+(20817, 4416, 9), -- Races
 -- Hallate's Warrior
-(20818, 4032, 6), -- Power Strike
-(20818, 4408, 11), -- HP Increase (3x)
-(20818, 4409, 1), -- MP Increase (1x)
-(20818, 4410, 12), -- Slightly Strong P. Atk.
-(20818, 4411, 12), -- Slightly Strong M. Atk.
-(20818, 4412, 10), -- Slightly Weak P. Def.
-(20818, 4413, 10), -- Slightly Weak M. Def.
-(20818, 4414, 2), -- Standard Type
-(20818, 4415, 3), -- One-handed Sword
-(20818, 4416, 1), -- Undead
+(20818, 4032, 6), -- NPC Strike
+(20818, 4408, 11), -- HP Modifiers
+(20818, 4409, 1), -- MP Modifiers
+(20818, 4410, 12), -- P. Atk. Modifiers
+(20818, 4411, 12), -- M. Atk. Modifiers
+(20818, 4412, 10), -- P. Def. Modifiers
+(20818, 4413, 10), -- M. Def. Modifiers
+(20818, 4414, 2), -- Armor Type
+(20818, 4415, 3), -- Weapon Type
+(20818, 4416, 1), -- Races
 (20818, 4439, 2), -- Greater Resist Hold
 -- Archer of Abyss
-(20819, 4071, 5), -- Resist Bow/Crossbow Weapons
-(20819, 4141, 6), -- Wind Fist
-(20819, 4389, 4), -- Resist Mental Attacks
-(20819, 4408, 11), -- HP Increase (3x)
-(20819, 4409, 1), -- MP Increase (1x)
-(20819, 4410, 12), -- Slightly Strong P. Atk.
-(20819, 4411, 12), -- Slightly Strong M. Atk.
-(20819, 4412, 10), -- Slightly Weak P. Def.
-(20819, 4413, 10), -- Slightly Weak M. Def.
-(20819, 4414, 2), -- Standard Type
-(20819, 4415, 9), -- Bows
-(20819, 4416, 9), -- Demons
+(20819, 4071, 5), -- Resist Archery
+(20819, 4141, 6), -- NPC Wind Fist
+(20819, 4389, 4), -- Resist Mental Derangement
+(20819, 4408, 11), -- HP Modifiers
+(20819, 4409, 1), -- MP Modifiers
+(20819, 4410, 12), -- P. Atk. Modifiers
+(20819, 4411, 12), -- M. Atk. Modifiers
+(20819, 4412, 10), -- P. Def. Modifiers
+(20819, 4413, 10), -- M. Def. Modifiers
+(20819, 4414, 2), -- Armor Type
+(20819, 4415, 9), -- Weapon Type
+(20819, 4416, 9), -- Races
 -- Hallate's Knight
-(20820, 4032, 6), -- Power Strike
-(20820, 4072, 6), -- Stun
-(20820, 4085, 1), -- Critical Damage
+(20820, 4032, 6), -- NPC Strike
+(20820, 4072, 6), -- Shock
+(20820, 4085, 1), -- Critical Power
 (20820, 4086, 1), -- Critical Chance
-(20820, 4092, 1), -- Spirit Puma
-(20820, 4408, 12), -- HP Increase (4x)
-(20820, 4409, 1), -- MP Increase (1x)
-(20820, 4410, 10), -- Slightly Weak P. Atk.
-(20820, 4411, 10), -- Slightly Weak M. Atk.
-(20820, 4412, 19), -- Extremely Strong P. Def.
-(20820, 4413, 12), -- Slightly Strong M. Def.
-(20820, 4414, 2), -- Standard Type
-(20820, 4415, 3), -- One-handed Sword
-(20820, 4416, 1), -- Undead
+(20820, 4092, 1), -- NPC Puma Spirit Totem
+(20820, 4408, 12), -- HP Modifiers
+(20820, 4409, 1), -- MP Modifiers
+(20820, 4410, 10), -- P. Atk. Modifiers
+(20820, 4411, 10), -- M. Atk. Modifiers
+(20820, 4412, 19), -- P. Def. Modifiers
+(20820, 4413, 12), -- M. Def. Modifiers
+(20820, 4414, 2), -- Armor Type
+(20820, 4415, 3), -- Weapon Type
+(20820, 4416, 1), -- Races
 -- Erin Ediunce
 (20821, 4047, 6), -- Hold
-(20821, 4100, 6), -- Prominence
-(20821, 4119, 3), -- Decrease Accuracy
-(20821, 4408, 12), -- HP Increase (4x)
-(20821, 4409, 1), -- MP Increase (1x)
-(20821, 4410, 10), -- Slightly Weak P. Atk.
-(20821, 4411, 10), -- Slightly Weak M. Atk.
-(20821, 4412, 12), -- Slightly Strong P. Def.
-(20821, 4413, 14), -- Strong M. Def.
-(20821, 4414, 3), -- Light Armor Type
-(20821, 4415, 5), -- Blunt Weapons
-(20821, 4416, 9), -- Demons
+(20821, 4100, 6), -- NPC Prominence
+(20821, 4119, 3), -- Fall in accuracy
+(20821, 4408, 12), -- HP Modifiers
+(20821, 4409, 1), -- MP Modifiers
+(20821, 4410, 10), -- P. Atk. Modifiers
+(20821, 4411, 10), -- M. Atk. Modifiers
+(20821, 4412, 12), -- P. Def. Modifiers
+(20821, 4413, 14), -- M. Def. Modifiers
+(20821, 4414, 3), -- Armor Type
+(20821, 4415, 5), -- Weapon Type
+(20821, 4416, 9), -- Races
 -- Hallate's Maid
-(20822, 4039, 6), -- Mana Drain
+(20822, 4039, 6), -- NPC MP Drain
 (20822, 4046, 6), -- Sleep
-(20822, 4071, 5), -- Resist Bow/Crossbow Weapons
-(20822, 4085, 1), -- Critical Damage
+(20822, 4071, 5), -- Resist Archery
+(20822, 4085, 1), -- Critical Power
 (20822, 4086, 1), -- Critical Chance
-(20822, 4094, 6), -- Cancellation
-(20822, 4408, 12), -- HP Increase (4x)
-(20822, 4409, 1), -- MP Increase (1x)
-(20822, 4410, 10), -- Slightly Weak P. Atk.
-(20822, 4411, 10), -- Slightly Weak M. Atk.
-(20822, 4412, 12), -- Slightly Strong P. Def.
-(20822, 4413, 12), -- Slightly Strong M. Def.
-(20822, 4414, 2), -- Standard Type
-(20822, 4415, 7), -- Daggers
-(20822, 4416, 9), -- Demons
+(20822, 4094, 6), -- NPC Cancel Magic
+(20822, 4408, 12), -- HP Modifiers
+(20822, 4409, 1), -- MP Modifiers
+(20822, 4410, 10), -- P. Atk. Modifiers
+(20822, 4411, 10), -- M. Atk. Modifiers
+(20822, 4412, 12), -- P. Def. Modifiers
+(20822, 4413, 12), -- M. Def. Modifiers
+(20822, 4414, 2), -- Armor Type
+(20822, 4415, 7), -- Weapon Type
+(20822, 4416, 9), -- Races
 -- Platinum Tribe Soldier
-(20823, 4073, 6), -- Stun
-(20823, 4408, 12), -- HP Increase (4x)
-(20823, 4409, 1), -- MP Increase (1x)
-(20823, 4410, 12), -- Slightly Strong P. Atk.
-(20823, 4411, 11), -- Average M. Atk.
-(20823, 4412, 13), -- Slightly Strong P. Def.
-(20823, 4413, 11), -- Average M. Def.
-(20823, 4414, 2), -- Standard Type
-(20823, 4415, 7), -- Daggers
-(20823, 4416, 8), -- Angels
+(20823, 4073, 6), -- Shock
+(20823, 4408, 12), -- HP Modifiers
+(20823, 4409, 1), -- MP Modifiers
+(20823, 4410, 12), -- P. Atk. Modifiers
+(20823, 4411, 11), -- M. Atk. Modifiers
+(20823, 4412, 13), -- P. Def. Modifiers
+(20823, 4413, 11), -- M. Def. Modifiers
+(20823, 4414, 2), -- Armor Type
+(20823, 4415, 7), -- Weapon Type
+(20823, 4416, 8), -- Races
 -- Hallate's Commander
-(20824, 4073, 6), -- Stun
-(20824, 4408, 12), -- HP Increase (4x)
-(20824, 4409, 1), -- MP Increase (1x)
-(20824, 4410, 12), -- Slightly Strong P. Atk.
-(20824, 4411, 12), -- Slightly Strong M. Atk.
-(20824, 4412, 10), -- Slightly Weak P. Def.
-(20824, 4413, 10), -- Slightly Weak M. Def.
-(20824, 4414, 2), -- Standard Type
-(20824, 4415, 5), -- Blunt Weapons
-(20824, 4416, 1), -- Undead
+(20824, 4073, 6), -- Shock
+(20824, 4408, 12), -- HP Modifiers
+(20824, 4409, 1), -- MP Modifiers
+(20824, 4410, 12), -- P. Atk. Modifiers
+(20824, 4411, 12), -- M. Atk. Modifiers
+(20824, 4412, 10), -- P. Def. Modifiers
+(20824, 4413, 10), -- M. Def. Modifiers
+(20824, 4414, 2), -- Armor Type
+(20824, 4415, 5), -- Weapon Type
+(20824, 4416, 1), -- Races
 (20824, 4439, 2), -- Greater Resist Hold
 -- Hallate's Inspector
-(20825, 4069, 6), -- Curve Beam
-(20825, 4071, 5), -- Resist Bow/Crossbow Weapons
-(20825, 4078, 6), -- Flame Strike
-(20825, 4085, 1), -- Critical Damage
+(20825, 4069, 6), -- NPC Curve Beam Cannon
+(20825, 4071, 5), -- Resist Archery
+(20825, 4078, 6), -- NPC Flamestrike
+(20825, 4085, 1), -- Critical Power
 (20825, 4086, 1), -- Critical Chance
 (20825, 4118, 6), -- Paralysis
-(20825, 4408, 12), -- HP Increase (4x)
-(20825, 4409, 1), -- MP Increase (1x)
-(20825, 4410, 12), -- Slightly Strong P. Atk.
-(20825, 4411, 12), -- Slightly Strong M. Atk.
-(20825, 4412, 10), -- Slightly Weak P. Def.
-(20825, 4413, 10), -- Slightly Weak M. Def.
-(20825, 4414, 2), -- Standard Type
-(20825, 4415, 5), -- Blunt Weapons
-(20825, 4416, 9), -- Demons
+(20825, 4408, 12), -- HP Modifiers
+(20825, 4409, 1), -- MP Modifiers
+(20825, 4410, 12), -- P. Atk. Modifiers
+(20825, 4411, 12), -- M. Atk. Modifiers
+(20825, 4412, 10), -- P. Def. Modifiers
+(20825, 4413, 10), -- M. Def. Modifiers
+(20825, 4414, 2), -- Armor Type
+(20825, 4415, 5), -- Weapon Type
+(20825, 4416, 9), -- Races
 -- Platinum Tribe Archer
-(20826, 4040, 6), -- Power Shot
+(20826, 4040, 6), -- NPC Bow Attack
 (20826, 4086, 1), -- Critical Chance
 (20826, 4095, 1), -- Damage Shield
-(20826, 4408, 11), -- HP Increase (3x)
-(20826, 4409, 1), -- MP Increase (1x)
-(20826, 4410, 12), -- Slightly Strong P. Atk.
-(20826, 4411, 12), -- Slightly Strong M. Atk.
-(20826, 4412, 10), -- Slightly Weak P. Def.
-(20826, 4413, 10), -- Slightly Weak M. Def.
-(20826, 4414, 3), -- Light Armor Type
-(20826, 4415, 9), -- Bows
-(20826, 4416, 8), -- Angels
+(20826, 4408, 11), -- HP Modifiers
+(20826, 4409, 1), -- MP Modifiers
+(20826, 4410, 12), -- P. Atk. Modifiers
+(20826, 4411, 12), -- M. Atk. Modifiers
+(20826, 4412, 10), -- P. Def. Modifiers
+(20826, 4413, 10), -- M. Def. Modifiers
+(20826, 4414, 3), -- Armor Type
+(20826, 4415, 9), -- Weapon Type
+(20826, 4416, 8), -- Races
 -- Platinum Tribe Warrior
-(20827, 4032, 6), -- Power Strike
-(20827, 4071, 5), -- Resist Bow/Crossbow Weapons
-(20827, 4072, 6), -- Stun
-(20827, 4085, 1), -- Critical Damage
+(20827, 4032, 6), -- NPC Strike
+(20827, 4071, 5), -- Resist Archery
+(20827, 4072, 6), -- Shock
+(20827, 4085, 1), -- Critical Power
 (20827, 4086, 1), -- Critical Chance
-(20827, 4091, 1), -- Spirit Ogre
-(20827, 4408, 12), -- HP Increase (4x)
-(20827, 4409, 1), -- MP Increase (1x)
-(20827, 4410, 10), -- Slightly Weak P. Atk.
-(20827, 4411, 10), -- Slightly Weak M. Atk.
-(20827, 4412, 12), -- Slightly Strong P. Def.
-(20827, 4413, 12), -- Slightly Strong M. Def.
-(20827, 4414, 2), -- Standard Type
-(20827, 4415, 3), -- One-handed Sword
-(20827, 4416, 8), -- Angels
+(20827, 4091, 1), -- NPC Ogre Spirit Totem
+(20827, 4408, 12), -- HP Modifiers
+(20827, 4409, 1), -- MP Modifiers
+(20827, 4410, 10), -- P. Atk. Modifiers
+(20827, 4411, 10), -- M. Atk. Modifiers
+(20827, 4412, 12), -- P. Def. Modifiers
+(20827, 4413, 12), -- M. Def. Modifiers
+(20827, 4414, 2), -- Armor Type
+(20827, 4415, 3), -- Weapon Type
+(20827, 4416, 8), -- Races
 (20827, 4439, 2), -- Greater Resist Hold
 -- Platinum Tribe Shaman
 (20828, 4046, 7), -- Sleep
-(20828, 4066, 7), -- Twister
-(20828, 4073, 7), -- Stun
-(20828, 4094, 7), -- Cancellation
-(20828, 4408, 13), -- HP Increase (5x)
-(20828, 4409, 1), -- MP Increase (1x)
-(20828, 4410, 12), -- Slightly Strong P. Atk.
-(20828, 4411, 12), -- Slightly Strong M. Atk.
-(20828, 4412, 10), -- Slightly Weak P. Def.
-(20828, 4413, 13), -- Slightly Strong M. Def.
-(20828, 4414, 2), -- Standard Type
-(20828, 4415, 5), -- Blunt Weapons
-(20828, 4416, 8), -- Angels
+(20828, 4066, 7), -- NPC Twister
+(20828, 4073, 7), -- Shock
+(20828, 4094, 7), -- NPC Cancel Magic
+(20828, 4408, 13), -- HP Modifiers
+(20828, 4409, 1), -- MP Modifiers
+(20828, 4410, 12), -- P. Atk. Modifiers
+(20828, 4411, 12), -- M. Atk. Modifiers
+(20828, 4412, 10), -- P. Def. Modifiers
+(20828, 4413, 13), -- M. Def. Modifiers
+(20828, 4414, 2), -- Armor Type
+(20828, 4415, 5), -- Weapon Type
+(20828, 4416, 8), -- Races
 (20828, 4438, 2), -- Greater Resist Sleep
 -- Platinum Tribe Overlord
-(20829, 4033, 7), -- Aura Burn
-(20829, 4073, 7), -- Stun
-(20829, 4085, 1), -- Critical Damage
+(20829, 4033, 7), -- NPC Burn
+(20829, 4073, 7), -- Shock
+(20829, 4085, 1), -- Critical Power
 (20829, 4086, 1), -- Critical Chance
-(20829, 4092, 1), -- Spirit Puma
-(20829, 4408, 13), -- HP Increase (5x)
-(20829, 4409, 1), -- MP Increase (1x)
-(20829, 4410, 10), -- Slightly Weak P. Atk.
-(20829, 4411, 10), -- Slightly Weak M. Atk.
-(20829, 4412, 19), -- Extremely Strong P. Def.
-(20829, 4413, 12), -- Slightly Strong M. Def.
-(20829, 4414, 2), -- Standard Type
-(20829, 4415, 3), -- One-handed Sword
-(20829, 4416, 8), -- Angels
+(20829, 4092, 1), -- NPC Puma Spirit Totem
+(20829, 4408, 13), -- HP Modifiers
+(20829, 4409, 1), -- MP Modifiers
+(20829, 4410, 10), -- P. Atk. Modifiers
+(20829, 4411, 10), -- M. Atk. Modifiers
+(20829, 4412, 19), -- P. Def. Modifiers
+(20829, 4413, 12), -- M. Def. Modifiers
+(20829, 4414, 2), -- Armor Type
+(20829, 4415, 3), -- Weapon Type
+(20829, 4416, 8), -- Races
 -- Guardian Angel
-(20830, 4033, 7), -- Aura Burn
-(20830, 4073, 7), -- Stun
-(20830, 4085, 1), -- Critical Damage
+(20830, 4033, 7), -- NPC Burn
+(20830, 4073, 7), -- Shock
+(20830, 4085, 1), -- Critical Power
 (20830, 4086, 1), -- Critical Chance
-(20830, 4092, 1), -- Spirit Puma
-(20830, 4408, 12), -- HP Increase (4x)
-(20830, 4409, 1), -- MP Increase (1x)
-(20830, 4410, 13), -- Slightly Strong P. Atk.
-(20830, 4411, 13), -- Slightly Strong M. Atk.
-(20830, 4412, 9), -- Slightly Weak P. Def.
-(20830, 4413, 9), -- Slightly Weak M. Def.
-(20830, 4414, 2), -- Standard Type
-(20830, 4415, 3), -- One-handed Sword
-(20830, 4416, 8), -- Angels
+(20830, 4092, 1), -- NPC Puma Spirit Totem
+(20830, 4408, 12), -- HP Modifiers
+(20830, 4409, 1), -- MP Modifiers
+(20830, 4410, 13), -- P. Atk. Modifiers
+(20830, 4411, 13), -- M. Atk. Modifiers
+(20830, 4412, 9), -- P. Def. Modifiers
+(20830, 4413, 9), -- M. Def. Modifiers
+(20830, 4414, 2), -- Armor Type
+(20830, 4415, 3), -- Weapon Type
+(20830, 4416, 8), -- Races
 -- Seal Angel
-(20831, 4072, 7), -- Stun
-(20831, 4085, 1), -- Critical Damage
+(20831, 4072, 7), -- Shock
+(20831, 4085, 1), -- Critical Power
 (20831, 4086, 1), -- Critical Chance
-(20831, 4090, 1), -- Spirit Wolf
-(20831, 4232, 7), -- Whirlwind
-(20831, 4408, 13), -- HP Increase (5x)
-(20831, 4409, 1), -- MP Increase (1x)
-(20831, 4410, 13), -- Slightly Strong P. Atk.
-(20831, 4411, 13), -- Slightly Strong M. Atk.
-(20831, 4412, 13), -- Slightly Strong P. Def.
-(20831, 4413, 11), -- Average M. Def.
-(20831, 4414, 2), -- Standard Type
-(20831, 4415, 3), -- One-handed Sword
-(20831, 4416, 8), -- Angels
+(20831, 4090, 1), -- NPC Wolf Spirit Totem
+(20831, 4232, 7), -- NPC AE Strike
+(20831, 4408, 13), -- HP Modifiers
+(20831, 4409, 1), -- MP Modifiers
+(20831, 4410, 13), -- P. Atk. Modifiers
+(20831, 4411, 13), -- M. Atk. Modifiers
+(20831, 4412, 13), -- P. Def. Modifiers
+(20831, 4413, 11), -- M. Def. Modifiers
+(20831, 4414, 2), -- Armor Type
+(20831, 4415, 3), -- Weapon Type
+(20831, 4416, 8), -- Races
 -- Zaken's Pikeman
-(20832, 4244, 4), -- Wild Sweep
-(20832, 4408, 1), -- HP Increase (1x)
-(20832, 4409, 1), -- MP Increase (1x)
-(20832, 4410, 8), -- Weak P. Atk.
-(20832, 4411, 8), -- Weak M. Atk.
-(20832, 4412, 14), -- Strong P. Def.
-(20832, 4413, 14), -- Strong M. Def.
-(20832, 4414, 3), -- Light Armor Type
-(20832, 4415, 3), -- One-handed Sword
-(20832, 4416, 1), -- Undead
+(20832, 4244, 4), -- NPC Wild Sweep
+(20832, 4408, 1), -- HP Modifiers
+(20832, 4409, 1), -- MP Modifiers
+(20832, 4410, 8), -- P. Atk. Modifiers
+(20832, 4411, 8), -- M. Atk. Modifiers
+(20832, 4412, 14), -- P. Def. Modifiers
+(20832, 4413, 14), -- M. Def. Modifiers
+(20832, 4414, 3), -- Armor Type
+(20832, 4415, 3), -- Weapon Type
+(20832, 4416, 1), -- Races
 -- Zaken's Archer
-(20833, 4040, 4), -- Power Shot
-(20833, 4408, 1), -- HP Increase (1x)
-(20833, 4409, 1), -- MP Increase (1x)
-(20833, 4410, 8), -- Weak P. Atk.
-(20833, 4411, 8), -- Weak M. Atk.
-(20833, 4412, 14), -- Strong P. Def.
-(20833, 4413, 14), -- Strong M. Def.
-(20833, 4414, 3), -- Light Armor Type
-(20833, 4415, 9), -- Bows
-(20833, 4416, 1), -- Undead
+(20833, 4040, 4), -- NPC Bow Attack
+(20833, 4408, 1), -- HP Modifiers
+(20833, 4409, 1), -- MP Modifiers
+(20833, 4410, 8), -- P. Atk. Modifiers
+(20833, 4411, 8), -- M. Atk. Modifiers
+(20833, 4412, 14), -- P. Def. Modifiers
+(20833, 4413, 14), -- M. Def. Modifiers
+(20833, 4414, 3), -- Armor Type
+(20833, 4415, 9), -- Weapon Type
+(20833, 4416, 1), -- Races
 -- Mardian
-(20834, 4074, 2), -- Haste
-(20834, 4408, 10), -- HP Increase (2x)
-(20834, 4409, 1), -- MP Increase (1x)
-(20834, 4410, 12), -- Slightly Strong P. Atk.
-(20834, 4411, 12), -- Slightly Strong M. Atk.
-(20834, 4412, 10), -- Slightly Weak P. Def.
-(20834, 4413, 10), -- Slightly Weak M. Def.
-(20834, 4414, 2), -- Standard Type
-(20834, 4415, 3), -- One-handed Sword
-(20834, 4416, 12), -- Bugs
+(20834, 4074, 2), -- NPC Haste
+(20834, 4408, 10), -- HP Modifiers
+(20834, 4409, 1), -- MP Modifiers
+(20834, 4410, 12), -- P. Atk. Modifiers
+(20834, 4411, 12), -- M. Atk. Modifiers
+(20834, 4412, 10), -- P. Def. Modifiers
+(20834, 4413, 10), -- M. Def. Modifiers
+(20834, 4414, 2), -- Armor Type
+(20834, 4415, 3), -- Weapon Type
+(20834, 4416, 12), -- Races
 -- Zaken's Seer
-(20835, 4151, 4), -- Wind Strike
-(20835, 4160, 4), -- Aura Burn
-(20835, 4273, 3), -- Resist Daggers/Rapier Weapon
-(20835, 4274, 1), -- Blunt Weapon Weak Point
-(20835, 4408, 1), -- HP Increase (1x)
-(20835, 4409, 1), -- MP Increase (1x)
-(20835, 4410, 8), -- Weak P. Atk.
-(20835, 4411, 8), -- Weak M. Atk.
-(20835, 4412, 14), -- Strong P. Def.
-(20835, 4413, 14), -- Strong M. Def.
-(20835, 4414, 3), -- Light Armor Type
-(20835, 4415, 5), -- Blunt Weapons
-(20835, 4416, 2), -- Magic Creatures
+(20835, 4151, 4), -- NPC Windstrike - Magic
+(20835, 4160, 4), -- NPC Aura Burn - Magic
+(20835, 4273, 3), -- Resist Dagger
+(20835, 4274, 1), -- Blunt Attack Weak Point
+(20835, 4408, 1), -- HP Modifiers
+(20835, 4409, 1), -- MP Modifiers
+(20835, 4410, 8), -- P. Atk. Modifiers
+(20835, 4411, 8), -- M. Atk. Modifiers
+(20835, 4412, 14), -- P. Def. Modifiers
+(20835, 4413, 14), -- M. Def. Modifiers
+(20835, 4414, 3), -- Armor Type
+(20835, 4415, 5), -- Weapon Type
+(20835, 4416, 2), -- Races
 (20835, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Pirate Zombie
-(20836, 4067, 4), -- Blow
-(20836, 4408, 10), -- HP Increase (2x)
-(20836, 4409, 1), -- MP Increase (1x)
-(20836, 4410, 12), -- Slightly Strong P. Atk.
-(20836, 4411, 12), -- Slightly Strong M. Atk.
-(20836, 4412, 14), -- Strong P. Def.
-(20836, 4413, 10), -- Slightly Weak M. Def.
-(20836, 4414, 2), -- Standard Type
-(20836, 4415, 7), -- Daggers
-(20836, 4416, 1), -- Undead
+(20836, 4067, 4), -- NPC Mortal Blow
+(20836, 4408, 10), -- HP Modifiers
+(20836, 4409, 1), -- MP Modifiers
+(20836, 4410, 12), -- P. Atk. Modifiers
+(20836, 4411, 12), -- M. Atk. Modifiers
+(20836, 4412, 14), -- P. Def. Modifiers
+(20836, 4413, 10), -- M. Def. Modifiers
+(20836, 4414, 2), -- Armor Type
+(20836, 4415, 7), -- Weapon Type
+(20836, 4416, 1), -- Races
 -- Tainted Ogre
-(20837, 4073, 4), -- Stun
-(20837, 4225, 1), -- Resist Stun Attacks
-(20837, 4408, 10), -- HP Increase (2x)
-(20837, 4409, 1), -- MP Increase (1x)
-(20837, 4410, 12), -- Slightly Strong P. Atk.
-(20837, 4411, 12), -- Slightly Strong M. Atk.
-(20837, 4412, 10), -- Slightly Weak P. Def.
-(20837, 4413, 10), -- Slightly Weak M. Def.
-(20837, 4414, 2), -- Standard Type
-(20837, 4415, 6), -- Blunt Weapons
-(20837, 4416, 11), -- Giants
+(20837, 4073, 4), -- Shock
+(20837, 4225, 1), -- Resist Shock
+(20837, 4408, 10), -- HP Modifiers
+(20837, 4409, 1), -- MP Modifiers
+(20837, 4410, 12), -- P. Atk. Modifiers
+(20837, 4411, 12), -- M. Atk. Modifiers
+(20837, 4412, 10), -- P. Def. Modifiers
+(20837, 4413, 10), -- M. Def. Modifiers
+(20837, 4414, 2), -- Armor Type
+(20837, 4415, 6), -- Weapon Type
+(20837, 4416, 11), -- Races
 -- Bloody Bat
 (20838, 4088, 4), -- Bleed
-(20838, 4408, 10), -- HP Increase (2x)
-(20838, 4409, 1), -- MP Increase (1x)
-(20838, 4410, 10), -- Slightly Weak P. Atk.
-(20838, 4411, 10), -- Slightly Weak M. Atk.
-(20838, 4412, 12), -- Slightly Strong P. Def.
-(20838, 4413, 12), -- Slightly Strong M. Def.
-(20838, 4414, 2), -- Standard Type
-(20838, 4415, 7), -- Daggers
-(20838, 4416, 4), -- Animals
+(20838, 4408, 10), -- HP Modifiers
+(20838, 4409, 1), -- MP Modifiers
+(20838, 4410, 10), -- P. Atk. Modifiers
+(20838, 4411, 10), -- M. Atk. Modifiers
+(20838, 4412, 12), -- P. Def. Modifiers
+(20838, 4413, 12), -- M. Def. Modifiers
+(20838, 4414, 2), -- Armor Type
+(20838, 4415, 7), -- Weapon Type
+(20838, 4416, 4), -- Races
 -- Unpleasant Humming
 (20839, 4088, 4), -- Bleed
-(20839, 4408, 1), -- HP Increase (1x)
-(20839, 4409, 1), -- MP Increase (1x)
-(20839, 4410, 8), -- Weak P. Atk.
-(20839, 4411, 8), -- Weak M. Atk.
-(20839, 4412, 14), -- Strong P. Def.
-(20839, 4413, 14), -- Strong M. Def.
-(20839, 4414, 2), -- Standard Type
-(20839, 4415, 3), -- One-handed Sword
-(20839, 4416, 1), -- Undead
+(20839, 4408, 1), -- HP Modifiers
+(20839, 4409, 1), -- MP Modifiers
+(20839, 4410, 8), -- P. Atk. Modifiers
+(20839, 4411, 8), -- M. Atk. Modifiers
+(20839, 4412, 14), -- P. Def. Modifiers
+(20839, 4413, 14), -- M. Def. Modifiers
+(20839, 4414, 2), -- Armor Type
+(20839, 4415, 3), -- Weapon Type
+(20839, 4416, 1), -- Races
 (20839, 4438, 2), -- Greater Resist Sleep
 -- Death Flyer
-(20840, 4074, 2), -- Haste
-(20840, 4408, 1), -- HP Increase (1x)
-(20840, 4409, 1), -- MP Increase (1x)
-(20840, 4410, 8), -- Weak P. Atk.
-(20840, 4411, 8), -- Weak M. Atk.
-(20840, 4412, 14), -- Strong P. Def.
-(20840, 4413, 14), -- Strong M. Def.
-(20840, 4414, 3), -- Light Armor Type
-(20840, 4415, 5), -- Blunt Weapons
-(20840, 4416, 1), -- Undead
+(20840, 4074, 2), -- NPC Haste
+(20840, 4408, 1), -- HP Modifiers
+(20840, 4409, 1), -- MP Modifiers
+(20840, 4410, 8), -- P. Atk. Modifiers
+(20840, 4411, 8), -- M. Atk. Modifiers
+(20840, 4412, 14), -- P. Def. Modifiers
+(20840, 4413, 14), -- M. Def. Modifiers
+(20840, 4414, 3), -- Armor Type
+(20840, 4415, 5), -- Weapon Type
+(20840, 4416, 1), -- Races
 (20840, 4438, 2), -- Greater Resist Sleep
 (20840, 4439, 2), -- Greater Resist Hold
 -- Fiend Archer
-(20841, 4071, 5), -- Resist Bow/Crossbow Weapons
-(20841, 4085, 1), -- Critical Damage
+(20841, 4071, 5), -- Resist Archery
+(20841, 4085, 1), -- Critical Power
 (20841, 4086, 1), -- Critical Chance
-(20841, 4141, 4), -- Wind Fist
-(20841, 4389, 4), -- Resist Mental Attacks
-(20841, 4408, 1), -- HP Increase (1x)
-(20841, 4409, 1), -- MP Increase (1x)
-(20841, 4410, 8), -- Weak P. Atk.
-(20841, 4411, 8), -- Weak M. Atk.
-(20841, 4412, 14), -- Strong P. Def.
-(20841, 4413, 14), -- Strong M. Def.
-(20841, 4414, 3), -- Light Armor Type
-(20841, 4415, 9), -- Bows
-(20841, 4416, 9), -- Demons
+(20841, 4141, 4), -- NPC Wind Fist
+(20841, 4389, 4), -- Resist Mental Derangement
+(20841, 4408, 1), -- HP Modifiers
+(20841, 4409, 1), -- MP Modifiers
+(20841, 4410, 8), -- P. Atk. Modifiers
+(20841, 4411, 8), -- M. Atk. Modifiers
+(20841, 4412, 14), -- P. Def. Modifiers
+(20841, 4413, 14), -- M. Def. Modifiers
+(20841, 4414, 3), -- Armor Type
+(20841, 4415, 9), -- Weapon Type
+(20841, 4416, 9), -- Races
 -- Musveren
-(20842, 4002, 4), -- HP Drain
-(20842, 4273, 3), -- Resist Daggers/Rapier Weapon
-(20842, 4274, 1), -- Blunt Weapon Weak Point
-(20842, 4408, 1), -- HP Increase (1x)
-(20842, 4409, 1), -- MP Increase (1x)
-(20842, 4410, 8), -- Weak P. Atk.
-(20842, 4411, 8), -- Weak M. Atk.
-(20842, 4412, 14), -- Strong P. Def.
-(20842, 4413, 14), -- Strong M. Def.
-(20842, 4414, 2), -- Standard Type
-(20842, 4415, 3), -- One-handed Sword
-(20842, 4416, 2), -- Magic Creatures
+(20842, 4002, 4), -- NPC HP Drain
+(20842, 4273, 3), -- Resist Dagger
+(20842, 4274, 1), -- Blunt Attack Weak Point
+(20842, 4408, 1), -- HP Modifiers
+(20842, 4409, 1), -- MP Modifiers
+(20842, 4410, 8), -- P. Atk. Modifiers
+(20842, 4411, 8), -- M. Atk. Modifiers
+(20842, 4412, 14), -- P. Def. Modifiers
+(20842, 4413, 14), -- M. Def. Modifiers
+(20842, 4414, 2), -- Armor Type
+(20842, 4415, 3), -- Weapon Type
+(20842, 4416, 2), -- Races
 (20842, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Zaken's Royal Guard
-(20843, 4067, 5), -- Blow
-(20843, 4071, 5), -- Resist Bow/Crossbow Weapons
-(20843, 4273, 3), -- Resist Daggers/Rapier Weapon
-(20843, 4274, 1), -- Blunt Weapon Weak Point
-(20843, 4408, 1), -- HP Increase (1x)
-(20843, 4409, 1), -- MP Increase (1x)
-(20843, 4410, 8), -- Weak P. Atk.
-(20843, 4411, 8), -- Weak M. Atk.
-(20843, 4412, 14), -- Strong P. Def.
-(20843, 4413, 14), -- Strong M. Def.
-(20843, 4414, 2), -- Standard Type
-(20843, 4415, 7), -- Daggers
-(20843, 4416, 1), -- Undead
+(20843, 4067, 5), -- NPC Mortal Blow
+(20843, 4071, 5), -- Resist Archery
+(20843, 4273, 3), -- Resist Dagger
+(20843, 4274, 1), -- Blunt Attack Weak Point
+(20843, 4408, 1), -- HP Modifiers
+(20843, 4409, 1), -- MP Modifiers
+(20843, 4410, 8), -- P. Atk. Modifiers
+(20843, 4411, 8), -- M. Atk. Modifiers
+(20843, 4412, 14), -- P. Def. Modifiers
+(20843, 4413, 14), -- M. Def. Modifiers
+(20843, 4414, 2), -- Armor Type
+(20843, 4415, 7), -- Weapon Type
+(20843, 4416, 1), -- Races
 -- Kaim Vanul
 (20844, 4047, 5), -- Hold
-(20844, 4085, 1), -- Critical Damage
+(20844, 4085, 1), -- Critical Power
 (20844, 4086, 1), -- Critical Chance
-(20844, 4408, 1), -- HP Increase (1x)
-(20844, 4409, 1), -- MP Increase (1x)
-(20844, 4410, 8), -- Weak P. Atk.
-(20844, 4411, 8), -- Weak M. Atk.
-(20844, 4412, 14), -- Strong P. Def.
-(20844, 4413, 14), -- Strong M. Def.
-(20844, 4414, 2), -- Standard Type
-(20844, 4415, 3), -- One-handed Sword
-(20844, 4416, 9), -- Demons
+(20844, 4408, 1), -- HP Modifiers
+(20844, 4409, 1), -- MP Modifiers
+(20844, 4410, 8), -- P. Atk. Modifiers
+(20844, 4411, 8), -- M. Atk. Modifiers
+(20844, 4412, 14), -- P. Def. Modifiers
+(20844, 4413, 14), -- M. Def. Modifiers
+(20844, 4414, 2), -- Armor Type
+(20844, 4415, 3), -- Weapon Type
+(20844, 4416, 9), -- Races
 -- Pirate Zombie Captain
-(20845, 4067, 5), -- Blow
-(20845, 4408, 1), -- HP Increase (1x)
-(20845, 4409, 1), -- MP Increase (1x)
-(20845, 4410, 8), -- Weak P. Atk.
-(20845, 4411, 8), -- Weak M. Atk.
-(20845, 4412, 18), -- Extremely Strong P. Def.
-(20845, 4413, 14), -- Strong M. Def.
-(20845, 4414, 2), -- Standard Type
-(20845, 4415, 7), -- Daggers
-(20845, 4416, 1), -- Undead
+(20845, 4067, 5), -- NPC Mortal Blow
+(20845, 4408, 1), -- HP Modifiers
+(20845, 4409, 1), -- MP Modifiers
+(20845, 4410, 8), -- P. Atk. Modifiers
+(20845, 4411, 8), -- M. Atk. Modifiers
+(20845, 4412, 18), -- P. Def. Modifiers
+(20845, 4413, 14), -- M. Def. Modifiers
+(20845, 4414, 2), -- Armor Type
+(20845, 4415, 7), -- Weapon Type
+(20845, 4416, 1), -- Races
 -- Doll Blader
-(20846, 4074, 2), -- Haste
-(20846, 4085, 1), -- Critical Damage
+(20846, 4074, 2), -- NPC Haste
+(20846, 4085, 1), -- Critical Power
 (20846, 4086, 1), -- Critical Chance
-(20846, 4408, 1), -- HP Increase (1x)
-(20846, 4409, 1), -- MP Increase (1x)
-(20846, 4410, 8), -- Weak P. Atk.
-(20846, 4411, 8), -- Weak M. Atk.
-(20846, 4412, 14), -- Strong P. Def.
-(20846, 4413, 14), -- Strong M. Def.
-(20846, 4414, 3), -- Light Armor Type
-(20846, 4415, 7), -- Daggers
-(20846, 4416, 9), -- Demons
+(20846, 4408, 1), -- HP Modifiers
+(20846, 4409, 1), -- MP Modifiers
+(20846, 4410, 8), -- P. Atk. Modifiers
+(20846, 4411, 8), -- M. Atk. Modifiers
+(20846, 4412, 14), -- P. Def. Modifiers
+(20846, 4413, 14), -- M. Def. Modifiers
+(20846, 4414, 3), -- Armor Type
+(20846, 4415, 7), -- Weapon Type
+(20846, 4416, 9), -- Races
 (20846, 4438, 2), -- Greater Resist Sleep
 (20846, 4439, 2), -- Greater Resist Hold
 -- Veil Master
 (20847, 4046, 5), -- Sleep
-(20847, 4076, 3), -- Slow
-(20847, 4085, 1), -- Critical Damage
+(20847, 4076, 3), -- Reduction in movement speed
+(20847, 4085, 1), -- Critical Power
 (20847, 4086, 1), -- Critical Chance
-(20847, 4087, 5), -- Blaze
-(20847, 4094, 5), -- Cancellation
-(20847, 4408, 1), -- HP Increase (1x)
-(20847, 4409, 1), -- MP Increase (1x)
-(20847, 4410, 8), -- Weak P. Atk.
-(20847, 4411, 8), -- Weak M. Atk.
-(20847, 4412, 14), -- Strong P. Def.
-(20847, 4413, 14), -- Strong M. Def.
-(20847, 4414, 3), -- Light Armor Type
-(20847, 4415, 3), -- One-handed Sword
-(20847, 4416, 9), -- Demons
+(20847, 4087, 5), -- NPC Blaze
+(20847, 4094, 5), -- NPC Cancel Magic
+(20847, 4408, 1), -- HP Modifiers
+(20847, 4409, 1), -- MP Modifiers
+(20847, 4410, 8), -- P. Atk. Modifiers
+(20847, 4411, 8), -- M. Atk. Modifiers
+(20847, 4412, 14), -- P. Def. Modifiers
+(20847, 4413, 14), -- M. Def. Modifiers
+(20847, 4414, 3), -- Armor Type
+(20847, 4415, 3), -- Weapon Type
+(20847, 4416, 9), -- Races
 -- Light Bringer
-(20848, 4076, 3), -- Slow
-(20848, 4408, 10), -- HP Increase (2x)
-(20848, 4409, 1), -- MP Increase (1x)
-(20848, 4410, 11), -- Average P. Atk.
-(20848, 4411, 11), -- Average M. Atk.
-(20848, 4412, 11), -- Average P. Def.
-(20848, 4413, 11), -- Average M. Def.
-(20848, 4414, 2), -- Standard Type
-(20848, 4415, 3), -- One-handed Sword
-(20848, 4416, 3), -- Beasts
+(20848, 4076, 3), -- Reduction in movement speed
+(20848, 4408, 10), -- HP Modifiers
+(20848, 4409, 1), -- MP Modifiers
+(20848, 4410, 11), -- P. Atk. Modifiers
+(20848, 4411, 11), -- M. Atk. Modifiers
+(20848, 4412, 11), -- P. Def. Modifiers
+(20848, 4413, 11), -- M. Def. Modifiers
+(20848, 4414, 2), -- Armor Type
+(20848, 4415, 3), -- Weapon Type
+(20848, 4416, 3), -- Races
 -- Light Worm
-(20849, 4076, 3), -- Slow
-(20849, 4408, 10), -- HP Increase (2x)
-(20849, 4409, 1), -- MP Increase (1x)
-(20849, 4410, 10), -- Slightly Weak P. Atk.
-(20849, 4411, 10), -- Slightly Weak M. Atk.
-(20849, 4412, 12), -- Slightly Strong P. Def.
-(20849, 4413, 12), -- Slightly Strong M. Def.
-(20849, 4414, 2), -- Standard Type
-(20849, 4415, 3), -- One-handed Sword
-(20849, 4416, 4), -- Animals
+(20849, 4076, 3), -- Reduction in movement speed
+(20849, 4408, 10), -- HP Modifiers
+(20849, 4409, 1), -- MP Modifiers
+(20849, 4410, 10), -- P. Atk. Modifiers
+(20849, 4411, 10), -- M. Atk. Modifiers
+(20849, 4412, 12), -- P. Def. Modifiers
+(20849, 4413, 12), -- M. Def. Modifiers
+(20849, 4414, 2), -- Armor Type
+(20849, 4415, 3), -- Weapon Type
+(20849, 4416, 4), -- Races
 (20849, 4438, 2), -- Greater Resist Sleep
 (20849, 4439, 2), -- Greater Resist Hold
 -- Golden Stag Lord
-(20850, 4071, 5), -- Resist Bow/Crossbow Weapons
-(20850, 4076, 3), -- Slow
-(20850, 4085, 1), -- Critical Damage
+(20850, 4071, 5), -- Resist Archery
+(20850, 4076, 3), -- Reduction in movement speed
+(20850, 4085, 1), -- Critical Power
 (20850, 4086, 1), -- Critical Chance
-(20850, 4408, 1), -- HP Increase (1x)
-(20850, 4409, 1), -- MP Increase (1x)
-(20850, 4410, 11), -- Average P. Atk.
-(20850, 4411, 11), -- Average M. Atk.
-(20850, 4412, 11), -- Average P. Def.
-(20850, 4413, 11), -- Average M. Def.
-(20850, 4414, 2), -- Standard Type
-(20850, 4415, 3), -- One-handed Sword
-(20850, 4416, 4), -- Animals
+(20850, 4408, 1), -- HP Modifiers
+(20850, 4409, 1), -- MP Modifiers
+(20850, 4410, 11), -- P. Atk. Modifiers
+(20850, 4411, 11), -- M. Atk. Modifiers
+(20850, 4412, 11), -- P. Def. Modifiers
+(20850, 4413, 11), -- M. Def. Modifiers
+(20850, 4414, 2), -- Armor Type
+(20850, 4415, 3), -- Weapon Type
+(20850, 4416, 4), -- Races
 -- Theeder
-(20851, 4085, 1), -- Critical Damage
+(20851, 4085, 1), -- Critical Power
 (20851, 4086, 1), -- Critical Chance
-(20851, 4408, 1), -- HP Increase (1x)
-(20851, 4409, 1), -- MP Increase (1x)
-(20851, 4410, 11), -- Average P. Atk.
-(20851, 4411, 11), -- Average M. Atk.
-(20851, 4412, 11), -- Average P. Def.
-(20851, 4413, 11), -- Average M. Def.
-(20851, 4414, 2), -- Standard Type
-(20851, 4415, 15), -- Two-handed Blunt Weapons
-(20851, 4416, 7), -- Spirits
+(20851, 4408, 1), -- HP Modifiers
+(20851, 4409, 1), -- MP Modifiers
+(20851, 4410, 11), -- P. Atk. Modifiers
+(20851, 4411, 11), -- M. Atk. Modifiers
+(20851, 4412, 11), -- P. Def. Modifiers
+(20851, 4413, 11), -- M. Def. Modifiers
+(20851, 4414, 2), -- Armor Type
+(20851, 4415, 15), -- Weapon Type
+(20851, 4416, 7), -- Races
 -- Banshee
-(20852, 4408, 1), -- HP Increase (1x)
-(20852, 4409, 1), -- MP Increase (1x)
-(20852, 4410, 12), -- Slightly Strong P. Atk.
-(20852, 4411, 12), -- Slightly Strong M. Atk.
-(20852, 4412, 10), -- Slightly Weak P. Def.
-(20852, 4413, 10), -- Slightly Weak M. Def.
-(20852, 4414, 2), -- Standard Type
-(20852, 4415, 7), -- Daggers
-(20852, 4416, 9), -- Demons
+(20852, 4408, 1), -- HP Modifiers
+(20852, 4409, 1), -- MP Modifiers
+(20852, 4410, 12), -- P. Atk. Modifiers
+(20852, 4411, 12), -- M. Atk. Modifiers
+(20852, 4412, 10), -- P. Def. Modifiers
+(20852, 4413, 10), -- M. Def. Modifiers
+(20852, 4414, 2), -- Armor Type
+(20852, 4415, 7), -- Weapon Type
+(20852, 4416, 9), -- Races
 -- Kel Mahum
-(20853, 4032, 6), -- Power Strike
-(20853, 4072, 6), -- Stun
-(20853, 4090, 1), -- Spirit Wolf
-(20853, 4408, 1), -- HP Increase (1x)
-(20853, 4409, 1), -- MP Increase (1x)
-(20853, 4410, 11), -- Average P. Atk.
-(20853, 4411, 11), -- Average M. Atk.
-(20853, 4412, 13), -- Slightly Strong P. Def.
-(20853, 4413, 11), -- Average M. Def.
-(20853, 4414, 2), -- Standard Type
-(20853, 4415, 7), -- Daggers
-(20853, 4416, 8), -- Angels
+(20853, 4032, 6), -- NPC Strike
+(20853, 4072, 6), -- Shock
+(20853, 4090, 1), -- NPC Wolf Spirit Totem
+(20853, 4408, 1), -- HP Modifiers
+(20853, 4409, 1), -- MP Modifiers
+(20853, 4410, 11), -- P. Atk. Modifiers
+(20853, 4411, 11), -- M. Atk. Modifiers
+(20853, 4412, 13), -- P. Def. Modifiers
+(20853, 4413, 11), -- M. Def. Modifiers
+(20853, 4414, 2), -- Armor Type
+(20853, 4415, 7), -- Weapon Type
+(20853, 4416, 8), -- Races
 -- Kel Mahum Warrior
-(20854, 4033, 6), -- Aura Burn
-(20854, 4071, 5), -- Resist Bow/Crossbow Weapons
-(20854, 4073, 6), -- Stun
-(20854, 4085, 1), -- Critical Damage
+(20854, 4033, 6), -- NPC Burn
+(20854, 4071, 5), -- Resist Archery
+(20854, 4073, 6), -- Shock
+(20854, 4085, 1), -- Critical Power
 (20854, 4086, 1), -- Critical Chance
-(20854, 4090, 1), -- Spirit Wolf
-(20854, 4408, 1), -- HP Increase (1x)
-(20854, 4409, 1), -- MP Increase (1x)
-(20854, 4410, 12), -- Slightly Strong P. Atk.
-(20854, 4411, 12), -- Slightly Strong M. Atk.
-(20854, 4412, 10), -- Slightly Weak P. Def.
-(20854, 4413, 10), -- Slightly Weak M. Def.
-(20854, 4414, 2), -- Standard Type
-(20854, 4415, 3), -- One-handed Sword
-(20854, 4416, 8), -- Angels
+(20854, 4090, 1), -- NPC Wolf Spirit Totem
+(20854, 4408, 1), -- HP Modifiers
+(20854, 4409, 1), -- MP Modifiers
+(20854, 4410, 12), -- P. Atk. Modifiers
+(20854, 4411, 12), -- M. Atk. Modifiers
+(20854, 4412, 10), -- P. Def. Modifiers
+(20854, 4413, 10), -- M. Def. Modifiers
+(20854, 4414, 2), -- Armor Type
+(20854, 4415, 3), -- Weapon Type
+(20854, 4416, 8), -- Races
 -- Kel Mahum Archer
-(20855, 4040, 6), -- Power Shot
+(20855, 4040, 6), -- NPC Bow Attack
 (20855, 4086, 1), -- Critical Chance
 (20855, 4095, 1), -- Damage Shield
-(20855, 4408, 1), -- HP Increase (1x)
-(20855, 4409, 1), -- MP Increase (1x)
-(20855, 4410, 12), -- Slightly Strong P. Atk.
-(20855, 4411, 12), -- Slightly Strong M. Atk.
-(20855, 4412, 10), -- Slightly Weak P. Def.
-(20855, 4413, 10), -- Slightly Weak M. Def.
-(20855, 4414, 3), -- Light Armor Type
-(20855, 4415, 9), -- Bows
-(20855, 4416, 8), -- Angels
+(20855, 4408, 1), -- HP Modifiers
+(20855, 4409, 1), -- MP Modifiers
+(20855, 4410, 12), -- P. Atk. Modifiers
+(20855, 4411, 12), -- M. Atk. Modifiers
+(20855, 4412, 10), -- P. Def. Modifiers
+(20855, 4413, 10), -- M. Def. Modifiers
+(20855, 4414, 3), -- Armor Type
+(20855, 4415, 9), -- Weapon Type
+(20855, 4416, 8), -- Races
 -- Kel Mahum Shaman
-(20856, 4038, 5), -- Decrease Atk. Spd.
+(20856, 4038, 5), -- Decrease Atk.Spd.
 (20856, 4047, 6), -- Hold
-(20856, 4087, 6), -- Blaze
-(20856, 4408, 1), -- HP Increase (1x)
-(20856, 4409, 1), -- MP Increase (1x)
-(20856, 4410, 12), -- Slightly Strong P. Atk.
-(20856, 4411, 12), -- Slightly Strong M. Atk.
-(20856, 4412, 10), -- Slightly Weak P. Def.
-(20856, 4413, 13), -- Slightly Strong M. Def.
-(20856, 4414, 3), -- Light Armor Type
-(20856, 4415, 5), -- Blunt Weapons
-(20856, 4416, 8), -- Angels
+(20856, 4087, 6), -- NPC Blaze
+(20856, 4408, 1), -- HP Modifiers
+(20856, 4409, 1), -- MP Modifiers
+(20856, 4410, 12), -- P. Atk. Modifiers
+(20856, 4411, 12), -- M. Atk. Modifiers
+(20856, 4412, 10), -- P. Def. Modifiers
+(20856, 4413, 13), -- M. Def. Modifiers
+(20856, 4414, 3), -- Armor Type
+(20856, 4415, 5), -- Weapon Type
+(20856, 4416, 8), -- Races
 -- Kel Mahum Champion
-(20857, 4071, 5), -- Resist Bow/Crossbow Weapons
-(20857, 4077, 7), -- Aura Burn
-(20857, 4085, 1), -- Critical Damage
+(20857, 4071, 5), -- Resist Archery
+(20857, 4077, 7), -- NPC Aura Burn
+(20857, 4085, 1), -- Critical Power
 (20857, 4086, 1), -- Critical Chance
-(20857, 4273, 3), -- Resist Daggers/Rapier Weapon
-(20857, 4274, 1), -- Blunt Weapon Weak Point
-(20857, 4408, 1), -- HP Increase (1x)
-(20857, 4409, 1), -- MP Increase (1x)
-(20857, 4410, 12), -- Slightly Strong P. Atk.
-(20857, 4411, 12), -- Slightly Strong M. Atk.
-(20857, 4412, 10), -- Slightly Weak P. Def.
-(20857, 4413, 10), -- Slightly Weak M. Def.
-(20857, 4414, 2), -- Standard Type
-(20857, 4415, 3), -- One-handed Sword
-(20857, 4416, 8), -- Angels
+(20857, 4273, 3), -- Resist Dagger
+(20857, 4274, 1), -- Blunt Attack Weak Point
+(20857, 4408, 1), -- HP Modifiers
+(20857, 4409, 1), -- MP Modifiers
+(20857, 4410, 12), -- P. Atk. Modifiers
+(20857, 4411, 12), -- M. Atk. Modifiers
+(20857, 4412, 10), -- P. Def. Modifiers
+(20857, 4413, 10), -- M. Def. Modifiers
+(20857, 4414, 2), -- Armor Type
+(20857, 4415, 3), -- Weapon Type
+(20857, 4416, 8), -- Races
 (20857, 4438, 2), -- Greater Resist Sleep
 (20857, 4439, 2), -- Greater Resist Hold
 -- Angel
-(20858, 4032, 7), -- Power Strike
-(20858, 4072, 7), -- Stun
-(20858, 4085, 1), -- Critical Damage
+(20858, 4032, 7), -- NPC Strike
+(20858, 4072, 7), -- Shock
+(20858, 4085, 1), -- Critical Power
 (20858, 4086, 1), -- Critical Chance
-(20858, 4091, 1), -- Spirit Ogre
-(20858, 4408, 1), -- HP Increase (1x)
-(20858, 4409, 1), -- MP Increase (1x)
-(20858, 4410, 12), -- Slightly Strong P. Atk.
-(20858, 4411, 12), -- Slightly Strong M. Atk.
-(20858, 4412, 10), -- Slightly Weak P. Def.
-(20858, 4413, 10), -- Slightly Weak M. Def.
-(20858, 4414, 2), -- Standard Type
-(20858, 4415, 3), -- One-handed Sword
-(20858, 4416, 8), -- Angels
+(20858, 4091, 1), -- NPC Ogre Spirit Totem
+(20858, 4408, 1), -- HP Modifiers
+(20858, 4409, 1), -- MP Modifiers
+(20858, 4410, 12), -- P. Atk. Modifiers
+(20858, 4411, 12), -- M. Atk. Modifiers
+(20858, 4412, 10), -- P. Def. Modifiers
+(20858, 4413, 10), -- M. Def. Modifiers
+(20858, 4414, 2), -- Armor Type
+(20858, 4415, 3), -- Weapon Type
+(20858, 4416, 8), -- Races
 -- Guardian Angel
 (20859, 4046, 7), -- Sleep
-(20859, 4085, 1), -- Critical Damage
+(20859, 4085, 1), -- Critical Power
 (20859, 4086, 1), -- Critical Chance
-(20859, 4087, 7), -- Blaze
-(20859, 4094, 7), -- Cancellation
-(20859, 4408, 12), -- HP Increase (4x)
-(20859, 4409, 1), -- MP Increase (1x)
-(20859, 4410, 12), -- Slightly Strong P. Atk.
-(20859, 4411, 12), -- Slightly Strong M. Atk.
-(20859, 4412, 10), -- Slightly Weak P. Def.
-(20859, 4413, 10), -- Slightly Weak M. Def.
-(20859, 4414, 2), -- Standard Type
-(20859, 4415, 3), -- One-handed Sword
-(20859, 4416, 8), -- Angels
+(20859, 4087, 7), -- NPC Blaze
+(20859, 4094, 7), -- NPC Cancel Magic
+(20859, 4408, 12), -- HP Modifiers
+(20859, 4409, 1), -- MP Modifiers
+(20859, 4410, 12), -- P. Atk. Modifiers
+(20859, 4411, 12), -- M. Atk. Modifiers
+(20859, 4412, 10), -- P. Def. Modifiers
+(20859, 4413, 10), -- M. Def. Modifiers
+(20859, 4414, 2), -- Armor Type
+(20859, 4415, 3), -- Weapon Type
+(20859, 4416, 8), -- Races
 -- Seal Angel
-(20860, 4066, 7), -- Twister
-(20860, 4085, 1), -- Critical Damage
+(20860, 4066, 7), -- NPC Twister
+(20860, 4085, 1), -- Critical Power
 (20860, 4086, 1), -- Critical Chance
-(20860, 4087, 7), -- Blaze
+(20860, 4087, 7), -- NPC Blaze
 (20860, 4118, 7), -- Paralysis
-(20860, 4408, 13), -- HP Increase (5x)
-(20860, 4409, 1), -- MP Increase (1x)
-(20860, 4410, 11), -- Average P. Atk.
-(20860, 4411, 11), -- Average M. Atk.
-(20860, 4412, 13), -- Slightly Strong P. Def.
-(20860, 4413, 11), -- Average M. Def.
-(20860, 4414, 2), -- Standard Type
-(20860, 4415, 3), -- One-handed Sword
-(20860, 4416, 8), -- Angels
+(20860, 4408, 13), -- HP Modifiers
+(20860, 4409, 1), -- MP Modifiers
+(20860, 4410, 11), -- P. Atk. Modifiers
+(20860, 4411, 11), -- M. Atk. Modifiers
+(20860, 4412, 13), -- P. Def. Modifiers
+(20860, 4413, 11), -- M. Def. Modifiers
+(20860, 4414, 2), -- Armor Type
+(20860, 4415, 3), -- Weapon Type
+(20860, 4416, 8), -- Races
 -- Oel Mahum Champion
-(20861, 4032, 5), -- Power Strike
-(20861, 4033, 5), -- Aura Burn
-(20861, 4071, 5), -- Resist Bow/Crossbow Weapons
-(20861, 4085, 1), -- Critical Damage
+(20861, 4032, 5), -- NPC Strike
+(20861, 4033, 5), -- NPC Burn
+(20861, 4071, 5), -- Resist Archery
+(20861, 4085, 1), -- Critical Power
 (20861, 4086, 1), -- Critical Chance
-(20861, 4090, 1), -- Spirit Wolf
-(20861, 4273, 3), -- Resist Daggers/Rapier Weapon
-(20861, 4274, 1), -- Blunt Weapon Weak Point
-(20861, 4408, 1), -- HP Increase (1x)
-(20861, 4409, 1), -- MP Increase (1x)
-(20861, 4410, 12), -- Slightly Strong P. Atk.
-(20861, 4411, 12), -- Slightly Strong M. Atk.
-(20861, 4412, 10), -- Slightly Weak P. Def.
-(20861, 4413, 10), -- Slightly Weak M. Def.
-(20861, 4414, 2), -- Standard Type
-(20861, 4415, 3), -- One-handed Sword
-(20861, 4416, 6), -- Humanoids
+(20861, 4090, 1), -- NPC Wolf Spirit Totem
+(20861, 4273, 3), -- Resist Dagger
+(20861, 4274, 1), -- Blunt Attack Weak Point
+(20861, 4408, 1), -- HP Modifiers
+(20861, 4409, 1), -- MP Modifiers
+(20861, 4410, 12), -- P. Atk. Modifiers
+(20861, 4411, 12), -- M. Atk. Modifiers
+(20861, 4412, 10), -- P. Def. Modifiers
+(20861, 4413, 10), -- M. Def. Modifiers
+(20861, 4414, 2), -- Armor Type
+(20861, 4415, 3), -- Weapon Type
+(20861, 4416, 6), -- Races
 -- Death Lord
-(20862, 4034, 8), -- Ice Bolt
-(20862, 4071, 5), -- Resist Bow/Crossbow Weapons
-(20862, 4078, 8), -- Flame Strike
-(20862, 4085, 1), -- Critical Damage
+(20862, 4034, 8), -- Decrease Speed
+(20862, 4071, 5), -- Resist Archery
+(20862, 4078, 8), -- NPC Flamestrike
+(20862, 4085, 1), -- Critical Power
 (20862, 4086, 1), -- Critical Chance
 (20862, 4118, 8), -- Paralysis
-(20862, 4273, 3), -- Resist Daggers/Rapier Weapon
-(20862, 4274, 1), -- Blunt Weapon Weak Point
-(20862, 4408, 1), -- HP Increase (1x)
-(20862, 4409, 1), -- MP Increase (1x)
-(20862, 4410, 12), -- Slightly Strong P. Atk.
-(20862, 4411, 12), -- Slightly Strong M. Atk.
-(20862, 4412, 10), -- Slightly Weak P. Def.
-(20862, 4413, 10), -- Slightly Weak M. Def.
-(20862, 4414, 2), -- Standard Type
-(20862, 4415, 3), -- One-handed Sword
-(20862, 4416, 1), -- Undead
+(20862, 4273, 3), -- Resist Dagger
+(20862, 4274, 1), -- Blunt Attack Weak Point
+(20862, 4408, 1), -- HP Modifiers
+(20862, 4409, 1), -- MP Modifiers
+(20862, 4410, 12), -- P. Atk. Modifiers
+(20862, 4411, 12), -- M. Atk. Modifiers
+(20862, 4412, 10), -- P. Def. Modifiers
+(20862, 4413, 10), -- M. Def. Modifiers
+(20862, 4414, 2), -- Armor Type
+(20862, 4415, 3), -- Weapon Type
+(20862, 4416, 1), -- Races
 -- Maille Lizardman
-(20919, 4408, 9), -- HP Increase (1/2x)
-(20919, 4409, 1), -- MP Increase (1x)
-(20919, 4410, 11), -- Average P. Atk.
-(20919, 4411, 11), -- Average M. Atk.
-(20919, 4412, 11), -- Average P. Def.
-(20919, 4413, 11), -- Average M. Def.
-(20919, 4414, 2), -- Standard Type
-(20919, 4415, 5), -- Blunt Weapons
-(20919, 4416, 6), -- Humanoids
+(20919, 4408, 9), -- HP Modifiers
+(20919, 4409, 1), -- MP Modifiers
+(20919, 4410, 11), -- P. Atk. Modifiers
+(20919, 4411, 11), -- M. Atk. Modifiers
+(20919, 4412, 11), -- P. Def. Modifiers
+(20919, 4413, 11), -- M. Def. Modifiers
+(20919, 4414, 2), -- Armor Type
+(20919, 4415, 5), -- Weapon Type
+(20919, 4416, 6), -- Races
 -- Maille Lizardman Scout
-(20920, 4124, 2), -- Spear Attack
-(20920, 4408, 9), -- HP Increase (1/2x)
-(20920, 4409, 1), -- MP Increase (1x)
-(20920, 4410, 11), -- Average P. Atk.
-(20920, 4411, 11), -- Average M. Atk.
-(20920, 4412, 11), -- Average P. Def.
-(20920, 4413, 11), -- Average M. Def.
-(20920, 4414, 2), -- Standard Type
-(20920, 4415, 9), -- Bows
-(20920, 4416, 6), -- Humanoids
+(20920, 4124, 2), -- NPC Spear Attack
+(20920, 4408, 9), -- HP Modifiers
+(20920, 4409, 1), -- MP Modifiers
+(20920, 4410, 11), -- P. Atk. Modifiers
+(20920, 4411, 11), -- M. Atk. Modifiers
+(20920, 4412, 11), -- P. Def. Modifiers
+(20920, 4413, 11), -- M. Def. Modifiers
+(20920, 4414, 2), -- Armor Type
+(20920, 4415, 9), -- Weapon Type
+(20920, 4416, 6), -- Races
 -- Maille Lizardman Guard
-(20921, 4071, 5), -- Resist Bow/Crossbow Weapons
-(20921, 4408, 9), -- HP Increase (1/2x)
-(20921, 4409, 1), -- MP Increase (1x)
-(20921, 4410, 11), -- Average P. Atk.
-(20921, 4411, 11), -- Average M. Atk.
-(20921, 4412, 11), -- Average P. Def.
-(20921, 4413, 11), -- Average M. Def.
-(20921, 4414, 2), -- Standard Type
-(20921, 4415, 5), -- Blunt Weapons
-(20921, 4416, 6), -- Humanoids
+(20921, 4071, 5), -- Resist Archery
+(20921, 4408, 9), -- HP Modifiers
+(20921, 4409, 1), -- MP Modifiers
+(20921, 4410, 11), -- P. Atk. Modifiers
+(20921, 4411, 11), -- M. Atk. Modifiers
+(20921, 4412, 11), -- P. Def. Modifiers
+(20921, 4413, 11), -- M. Def. Modifiers
+(20921, 4414, 2), -- Armor Type
+(20921, 4415, 5), -- Weapon Type
+(20921, 4416, 6), -- Races
 -- Maille Lizardman Warrior
-(20922, 4408, 9), -- HP Increase (1/2x)
-(20922, 4409, 1), -- MP Increase (1x)
-(20922, 4410, 11), -- Average P. Atk.
-(20922, 4411, 11), -- Average M. Atk.
-(20922, 4412, 11), -- Average P. Def.
-(20922, 4413, 11), -- Average M. Def.
-(20922, 4414, 2), -- Standard Type
-(20922, 4415, 5), -- Blunt Weapons
-(20922, 4416, 6), -- Humanoids
+(20922, 4408, 9), -- HP Modifiers
+(20922, 4409, 1), -- MP Modifiers
+(20922, 4410, 11), -- P. Atk. Modifiers
+(20922, 4411, 11), -- M. Atk. Modifiers
+(20922, 4412, 11), -- P. Def. Modifiers
+(20922, 4413, 11), -- M. Def. Modifiers
+(20922, 4414, 2), -- Armor Type
+(20922, 4415, 5), -- Weapon Type
+(20922, 4416, 6), -- Races
 -- Maille Lizardman Shaman
-(20923, 4065, 2), -- Heal
-(20923, 4160, 2), -- Aura Burn
-(20923, 4257, 2), -- Hydro Blast
-(20923, 4408, 9), -- HP Increase (1/2x)
-(20923, 4409, 1), -- MP Increase (1x)
-(20923, 4410, 11), -- Average P. Atk.
-(20923, 4411, 11), -- Average M. Atk.
-(20923, 4412, 11), -- Average P. Def.
-(20923, 4413, 11), -- Average M. Def.
-(20923, 4414, 2), -- Standard Type
-(20923, 4415, 5), -- Blunt Weapons
-(20923, 4416, 6), -- Humanoids
+(20923, 4065, 2), -- NPC Heal
+(20923, 4160, 2), -- NPC Aura Burn - Magic
+(20923, 4257, 2), -- NPC Hydroblast - Magic
+(20923, 4408, 9), -- HP Modifiers
+(20923, 4409, 1), -- MP Modifiers
+(20923, 4410, 11), -- P. Atk. Modifiers
+(20923, 4411, 11), -- M. Atk. Modifiers
+(20923, 4412, 11), -- P. Def. Modifiers
+(20923, 4413, 11), -- M. Def. Modifiers
+(20923, 4414, 2), -- Armor Type
+(20923, 4415, 5), -- Weapon Type
+(20923, 4416, 6), -- Races
 -- Maille Lizardman Matriarch
-(20924, 4032, 3), -- Power Strike
-(20924, 4071, 5), -- Resist Bow/Crossbow Weapons
-(20924, 4408, 9), -- HP Increase (1/2x)
-(20924, 4409, 1), -- MP Increase (1x)
-(20924, 4410, 11), -- Average P. Atk.
-(20924, 4411, 11), -- Average M. Atk.
-(20924, 4412, 11), -- Average P. Def.
-(20924, 4413, 11), -- Average M. Def.
-(20924, 4414, 2), -- Standard Type
-(20924, 4415, 5), -- Blunt Weapons
-(20924, 4416, 6), -- Humanoids
+(20924, 4032, 3), -- NPC Strike
+(20924, 4071, 5), -- Resist Archery
+(20924, 4408, 9), -- HP Modifiers
+(20924, 4409, 1), -- MP Modifiers
+(20924, 4410, 11), -- P. Atk. Modifiers
+(20924, 4411, 11), -- M. Atk. Modifiers
+(20924, 4412, 11), -- P. Def. Modifiers
+(20924, 4413, 11), -- M. Def. Modifiers
+(20924, 4414, 2), -- Armor Type
+(20924, 4415, 5), -- Weapon Type
+(20924, 4416, 6), -- Races
 -- Giant Araneid
-(20925, 4031, 2), -- Might
-(20925, 4408, 9), -- HP Increase (1/2x)
-(20925, 4409, 1), -- MP Increase (1x)
-(20925, 4410, 11), -- Average P. Atk.
-(20925, 4411, 11), -- Average M. Atk.
-(20925, 4412, 11), -- Average P. Def.
-(20925, 4413, 11), -- Average M. Def.
-(20925, 4414, 3), -- Light Armor Type
-(20925, 4415, 5), -- Blunt Weapons
-(20925, 4416, 12), -- Bugs
+(20925, 4031, 2), -- NPC Clan Aegis
+(20925, 4408, 9), -- HP Modifiers
+(20925, 4409, 1), -- MP Modifiers
+(20925, 4410, 11), -- P. Atk. Modifiers
+(20925, 4411, 11), -- M. Atk. Modifiers
+(20925, 4412, 11), -- P. Def. Modifiers
+(20925, 4413, 11), -- M. Def. Modifiers
+(20925, 4414, 3), -- Armor Type
+(20925, 4415, 5), -- Weapon Type
+(20925, 4416, 12), -- Races
 -- Poison Araneid
 (20926, 4036, 2), -- Poison
-(20926, 4408, 9), -- HP Increase (1/2x)
-(20926, 4409, 1), -- MP Increase (1x)
-(20926, 4410, 11), -- Average P. Atk.
-(20926, 4411, 11), -- Average M. Atk.
-(20926, 4412, 11), -- Average P. Def.
-(20926, 4413, 11), -- Average M. Def.
-(20926, 4414, 3), -- Light Armor Type
-(20926, 4415, 5), -- Blunt Weapons
-(20926, 4416, 12), -- Bugs
+(20926, 4408, 9), -- HP Modifiers
+(20926, 4409, 1), -- MP Modifiers
+(20926, 4410, 11), -- P. Atk. Modifiers
+(20926, 4411, 11), -- M. Atk. Modifiers
+(20926, 4412, 11), -- P. Def. Modifiers
+(20926, 4413, 11), -- M. Def. Modifiers
+(20926, 4414, 3), -- Armor Type
+(20926, 4415, 5), -- Weapon Type
+(20926, 4416, 12), -- Races
 -- King of the Araneid
-(20927, 4067, 2), -- Blow
-(20927, 4071, 5), -- Resist Bow/Crossbow Weapons
-(20927, 4408, 9), -- HP Increase (1/2x)
-(20927, 4409, 1), -- MP Increase (1x)
-(20927, 4410, 11), -- Average P. Atk.
-(20927, 4411, 11), -- Average M. Atk.
-(20927, 4412, 11), -- Average P. Def.
-(20927, 4413, 11), -- Average M. Def.
-(20927, 4414, 3), -- Light Armor Type
-(20927, 4415, 5), -- Blunt Weapons
-(20927, 4416, 12), -- Bugs
+(20927, 4067, 2), -- NPC Mortal Blow
+(20927, 4071, 5), -- Resist Archery
+(20927, 4408, 9), -- HP Modifiers
+(20927, 4409, 1), -- MP Modifiers
+(20927, 4410, 11), -- P. Atk. Modifiers
+(20927, 4411, 11), -- M. Atk. Modifiers
+(20927, 4412, 11), -- P. Def. Modifiers
+(20927, 4413, 11), -- M. Def. Modifiers
+(20927, 4414, 3), -- Armor Type
+(20927, 4415, 5), -- Weapon Type
+(20927, 4416, 12), -- Races
 -- Hatu Weird Bee
 (20928, 4035, 3), -- Poison
-(20928, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(20928, 4408, 9), -- HP Increase (1/2x)
-(20928, 4409, 1), -- MP Increase (1x)
-(20928, 4410, 11), -- Average P. Atk.
-(20928, 4411, 11), -- Average M. Atk.
-(20928, 4412, 11), -- Average P. Def.
-(20928, 4413, 11), -- Average M. Def.
-(20928, 4414, 2), -- Standard Type
-(20928, 4415, 5), -- Blunt Weapons
-(20928, 4416, 12), -- Bugs
+(20928, 4276, 1), -- Archery Attack Weak Point
+(20928, 4408, 9), -- HP Modifiers
+(20928, 4409, 1), -- MP Modifiers
+(20928, 4410, 11), -- P. Atk. Modifiers
+(20928, 4411, 11), -- M. Atk. Modifiers
+(20928, 4412, 11), -- P. Def. Modifiers
+(20928, 4413, 11), -- M. Def. Modifiers
+(20928, 4414, 2), -- Armor Type
+(20928, 4415, 5), -- Weapon Type
+(20928, 4416, 12), -- Races
 -- Hatu Dire Wolf
-(20929, 4030, 2), -- Might
-(20929, 4408, 9), -- HP Increase (1/2x)
-(20929, 4409, 1), -- MP Increase (1x)
-(20929, 4410, 11), -- Average P. Atk.
-(20929, 4411, 11), -- Average M. Atk.
-(20929, 4412, 11), -- Average P. Def.
-(20929, 4413, 11), -- Average M. Def.
-(20929, 4414, 2), -- Standard Type
-(20929, 4415, 5), -- Blunt Weapons
-(20929, 4416, 4), -- Animals
+(20929, 4030, 2), -- NPC Clan Might
+(20929, 4408, 9), -- HP Modifiers
+(20929, 4409, 1), -- MP Modifiers
+(20929, 4410, 11), -- P. Atk. Modifiers
+(20929, 4411, 11), -- M. Atk. Modifiers
+(20929, 4412, 11), -- P. Def. Modifiers
+(20929, 4413, 11), -- M. Def. Modifiers
+(20929, 4414, 2), -- Armor Type
+(20929, 4415, 5), -- Weapon Type
+(20929, 4416, 4), -- Races
 -- Hatu Brown Bear
-(20930, 4032, 3), -- Power Strike
-(20930, 4408, 9), -- HP Increase (1/2x)
-(20930, 4409, 1), -- MP Increase (1x)
-(20930, 4410, 11), -- Average P. Atk.
-(20930, 4411, 11), -- Average M. Atk.
-(20930, 4412, 11), -- Average P. Def.
-(20930, 4413, 11), -- Average M. Def.
-(20930, 4414, 2), -- Standard Type
-(20930, 4415, 5), -- Blunt Weapons
-(20930, 4416, 4), -- Animals
+(20930, 4032, 3), -- NPC Strike
+(20930, 4408, 9), -- HP Modifiers
+(20930, 4409, 1), -- MP Modifiers
+(20930, 4410, 11), -- P. Atk. Modifiers
+(20930, 4411, 11), -- M. Atk. Modifiers
+(20930, 4412, 11), -- P. Def. Modifiers
+(20930, 4413, 11), -- M. Def. Modifiers
+(20930, 4414, 2), -- Armor Type
+(20930, 4415, 5), -- Weapon Type
+(20930, 4416, 4), -- Races
 -- Hatu Onyx Beast
-(20931, 4408, 9), -- HP Increase (1/2x)
-(20931, 4409, 1), -- MP Increase (1x)
-(20931, 4410, 11), -- Average P. Atk.
-(20931, 4411, 11), -- Average M. Atk.
-(20931, 4412, 11), -- Average P. Def.
-(20931, 4413, 11), -- Average M. Def.
-(20931, 4414, 2), -- Standard Type
-(20931, 4415, 5), -- Blunt Weapons
-(20931, 4416, 3), -- Beasts
-(20931, 4576, 3), -- Reflect Damage
+(20931, 4408, 9), -- HP Modifiers
+(20931, 4409, 1), -- MP Modifiers
+(20931, 4410, 11), -- P. Atk. Modifiers
+(20931, 4411, 11), -- M. Atk. Modifiers
+(20931, 4412, 11), -- P. Def. Modifiers
+(20931, 4413, 11), -- M. Def. Modifiers
+(20931, 4414, 2), -- Armor Type
+(20931, 4415, 5), -- Weapon Type
+(20931, 4416, 3), -- Races
+(20931, 4576, 3), -- NPC Clan Buff - Damage Shield
 -- Hatu Crimson Bear
-(20932, 4032, 3), -- Power Strike
-(20932, 4408, 9), -- HP Increase (1/2x)
-(20932, 4409, 1), -- MP Increase (1x)
-(20932, 4410, 11), -- Average P. Atk.
-(20932, 4411, 11), -- Average M. Atk.
-(20932, 4412, 11), -- Average P. Def.
-(20932, 4413, 11), -- Average M. Def.
-(20932, 4414, 2), -- Standard Type
-(20932, 4415, 5), -- Blunt Weapons
-(20932, 4416, 4), -- Animals
+(20932, 4032, 3), -- NPC Strike
+(20932, 4408, 9), -- HP Modifiers
+(20932, 4409, 1), -- MP Modifiers
+(20932, 4410, 11), -- P. Atk. Modifiers
+(20932, 4411, 11), -- M. Atk. Modifiers
+(20932, 4412, 11), -- P. Def. Modifiers
+(20932, 4413, 11), -- M. Def. Modifiers
+(20932, 4414, 2), -- Armor Type
+(20932, 4415, 5), -- Weapon Type
+(20932, 4416, 4), -- Races
 -- Hatu Windsus
-(20933, 4073, 4), -- Stun
+(20933, 4073, 4), -- Shock
 (20933, 4086, 1), -- Critical Chance
-(20933, 4408, 9), -- HP Increase (1/2x)
-(20933, 4409, 1), -- MP Increase (1x)
-(20933, 4410, 11), -- Average P. Atk.
-(20933, 4411, 11), -- Average M. Atk.
-(20933, 4412, 11), -- Average P. Def.
-(20933, 4413, 11), -- Average M. Def.
-(20933, 4414, 2), -- Standard Type
-(20933, 4415, 5), -- Blunt Weapons
-(20933, 4416, 4), -- Animals
+(20933, 4408, 9), -- HP Modifiers
+(20933, 4409, 1), -- MP Modifiers
+(20933, 4410, 11), -- P. Atk. Modifiers
+(20933, 4411, 11), -- M. Atk. Modifiers
+(20933, 4412, 11), -- P. Def. Modifiers
+(20933, 4413, 11), -- M. Def. Modifiers
+(20933, 4414, 2), -- Armor Type
+(20933, 4415, 5), -- Weapon Type
+(20933, 4416, 4), -- Races
 -- Wasp Worker
-(20934, 4030, 2), -- Might
-(20934, 4408, 9), -- HP Increase (1/2x)
-(20934, 4409, 1), -- MP Increase (1x)
-(20934, 4410, 11), -- Average P. Atk.
-(20934, 4411, 11), -- Average M. Atk.
-(20934, 4412, 11), -- Average P. Def.
-(20934, 4413, 11), -- Average M. Def.
-(20934, 4414, 3), -- Light Armor Type
-(20934, 4415, 5), -- Blunt Weapons
-(20934, 4416, 12), -- Bugs
+(20934, 4030, 2), -- NPC Clan Might
+(20934, 4408, 9), -- HP Modifiers
+(20934, 4409, 1), -- MP Modifiers
+(20934, 4410, 11), -- P. Atk. Modifiers
+(20934, 4411, 11), -- M. Atk. Modifiers
+(20934, 4412, 11), -- P. Def. Modifiers
+(20934, 4413, 11), -- M. Def. Modifiers
+(20934, 4414, 3), -- Armor Type
+(20934, 4415, 5), -- Weapon Type
+(20934, 4416, 12), -- Races
 -- Wasp Leader
-(20935, 4039, 3), -- Mana Drain
-(20935, 4408, 9), -- HP Increase (1/2x)
-(20935, 4409, 1), -- MP Increase (1x)
-(20935, 4410, 11), -- Average P. Atk.
-(20935, 4411, 11), -- Average M. Atk.
-(20935, 4412, 11), -- Average P. Def.
-(20935, 4413, 11), -- Average M. Def.
-(20935, 4414, 3), -- Light Armor Type
-(20935, 4415, 5), -- Blunt Weapons
-(20935, 4416, 12), -- Bugs
+(20935, 4039, 3), -- NPC MP Drain
+(20935, 4408, 9), -- HP Modifiers
+(20935, 4409, 1), -- MP Modifiers
+(20935, 4410, 11), -- P. Atk. Modifiers
+(20935, 4411, 11), -- M. Atk. Modifiers
+(20935, 4412, 11), -- P. Def. Modifiers
+(20935, 4413, 11), -- M. Def. Modifiers
+(20935, 4414, 3), -- Armor Type
+(20935, 4415, 5), -- Weapon Type
+(20935, 4416, 12), -- Races
 -- Tanor Silenos
-(20936, 4103, 2), -- Ultimate Evasion
-(20936, 4408, 9), -- HP Increase (1/2x)
-(20936, 4409, 1), -- MP Increase (1x)
-(20936, 4410, 11), -- Average P. Atk.
-(20936, 4411, 11), -- Average M. Atk.
-(20936, 4412, 11), -- Average P. Def.
-(20936, 4413, 11), -- Average M. Def.
-(20936, 4414, 2), -- Standard Type
-(20936, 4415, 5), -- Blunt Weapons
-(20936, 4416, 6), -- Humanoids
+(20936, 4103, 2), -- NPC Ultimate Evasion
+(20936, 4408, 9), -- HP Modifiers
+(20936, 4409, 1), -- MP Modifiers
+(20936, 4410, 11), -- P. Atk. Modifiers
+(20936, 4411, 11), -- M. Atk. Modifiers
+(20936, 4412, 11), -- P. Def. Modifiers
+(20936, 4413, 11), -- M. Def. Modifiers
+(20936, 4414, 2), -- Armor Type
+(20936, 4415, 5), -- Weapon Type
+(20936, 4416, 6), -- Races
 -- Tanor Silenos Grunt
-(20937, 4073, 4), -- Stun
-(20937, 4408, 9), -- HP Increase (1/2x)
-(20937, 4409, 1), -- MP Increase (1x)
-(20937, 4410, 11), -- Average P. Atk.
-(20937, 4411, 11), -- Average M. Atk.
-(20937, 4412, 11), -- Average P. Def.
-(20937, 4413, 11), -- Average M. Def.
-(20937, 4414, 2), -- Standard Type
-(20937, 4415, 5), -- Blunt Weapons
-(20937, 4416, 6), -- Humanoids
+(20937, 4073, 4), -- Shock
+(20937, 4408, 9), -- HP Modifiers
+(20937, 4409, 1), -- MP Modifiers
+(20937, 4410, 11), -- P. Atk. Modifiers
+(20937, 4411, 11), -- M. Atk. Modifiers
+(20937, 4412, 11), -- P. Def. Modifiers
+(20937, 4413, 11), -- M. Def. Modifiers
+(20937, 4414, 2), -- Armor Type
+(20937, 4415, 5), -- Weapon Type
+(20937, 4416, 6), -- Races
 -- Tanor Silenos Scout
-(20938, 4032, 4), -- Power Strike
-(20938, 4071, 5), -- Resist Bow/Crossbow Weapons
-(20938, 4273, 3), -- Resist Daggers/Rapier Weapon
-(20938, 4408, 9), -- HP Increase (1/2x)
-(20938, 4409, 1), -- MP Increase (1x)
-(20938, 4410, 11), -- Average P. Atk.
-(20938, 4411, 11), -- Average M. Atk.
-(20938, 4412, 11), -- Average P. Def.
-(20938, 4413, 11), -- Average M. Def.
-(20938, 4414, 2), -- Standard Type
-(20938, 4415, 5), -- Blunt Weapons
-(20938, 4416, 6), -- Humanoids
+(20938, 4032, 4), -- NPC Strike
+(20938, 4071, 5), -- Resist Archery
+(20938, 4273, 3), -- Resist Dagger
+(20938, 4408, 9), -- HP Modifiers
+(20938, 4409, 1), -- MP Modifiers
+(20938, 4410, 11), -- P. Atk. Modifiers
+(20938, 4411, 11), -- M. Atk. Modifiers
+(20938, 4412, 11), -- P. Def. Modifiers
+(20938, 4413, 11), -- M. Def. Modifiers
+(20938, 4414, 2), -- Armor Type
+(20938, 4415, 5), -- Weapon Type
+(20938, 4416, 6), -- Races
 (20938, 4439, 2), -- Greater Resist Hold
 -- Tanor Silenos Warrior
-(20939, 4032, 4), -- Power Strike
-(20939, 4071, 5), -- Resist Bow/Crossbow Weapons
-(20939, 4273, 3), -- Resist Daggers/Rapier Weapon
-(20939, 4408, 9), -- HP Increase (1/2x)
-(20939, 4409, 1), -- MP Increase (1x)
-(20939, 4410, 11), -- Average P. Atk.
-(20939, 4411, 11), -- Average M. Atk.
-(20939, 4412, 11), -- Average P. Def.
-(20939, 4413, 11), -- Average M. Def.
-(20939, 4414, 2), -- Standard Type
-(20939, 4415, 5), -- Blunt Weapons
-(20939, 4416, 6), -- Humanoids
+(20939, 4032, 4), -- NPC Strike
+(20939, 4071, 5), -- Resist Archery
+(20939, 4273, 3), -- Resist Dagger
+(20939, 4408, 9), -- HP Modifiers
+(20939, 4409, 1), -- MP Modifiers
+(20939, 4410, 11), -- P. Atk. Modifiers
+(20939, 4411, 11), -- M. Atk. Modifiers
+(20939, 4412, 11), -- P. Def. Modifiers
+(20939, 4413, 11), -- M. Def. Modifiers
+(20939, 4414, 2), -- Armor Type
+(20939, 4415, 5), -- Weapon Type
+(20939, 4416, 6), -- Races
 -- Tanor Silenos Shaman
-(20940, 4037, 2), -- Weakness
-(20940, 4065, 4), -- Heal
+(20940, 4037, 2), -- Decrease P.Atk
+(20940, 4065, 4), -- NPC Heal
 (20940, 4095, 1), -- Damage Shield
-(20940, 4408, 9), -- HP Increase (1/2x)
-(20940, 4409, 1), -- MP Increase (1x)
-(20940, 4410, 11), -- Average P. Atk.
-(20940, 4411, 11), -- Average M. Atk.
-(20940, 4412, 11), -- Average P. Def.
-(20940, 4413, 11), -- Average M. Def.
-(20940, 4414, 2), -- Standard Type
-(20940, 4415, 5), -- Blunt Weapons
-(20940, 4416, 6), -- Humanoids
+(20940, 4408, 9), -- HP Modifiers
+(20940, 4409, 1), -- MP Modifiers
+(20940, 4410, 11), -- P. Atk. Modifiers
+(20940, 4411, 11), -- M. Atk. Modifiers
+(20940, 4412, 11), -- P. Def. Modifiers
+(20940, 4413, 11), -- M. Def. Modifiers
+(20940, 4414, 2), -- Armor Type
+(20940, 4415, 5), -- Weapon Type
+(20940, 4416, 6), -- Races
 (20940, 4438, 2), -- Greater Resist Sleep
 -- Tanor Silenos Chieftain
-(20941, 4032, 5), -- Power Strike
-(20941, 4071, 5), -- Resist Bow/Crossbow Weapons
-(20941, 4273, 3), -- Resist Daggers/Rapier Weapon
-(20941, 4408, 9), -- HP Increase (1/2x)
-(20941, 4409, 1), -- MP Increase (1x)
-(20941, 4410, 11), -- Average P. Atk.
-(20941, 4411, 11), -- Average M. Atk.
-(20941, 4412, 11), -- Average P. Def.
-(20941, 4413, 11), -- Average M. Def.
-(20941, 4414, 2), -- Standard Type
-(20941, 4415, 5), -- Blunt Weapons
-(20941, 4416, 6), -- Humanoids
+(20941, 4032, 5), -- NPC Strike
+(20941, 4071, 5), -- Resist Archery
+(20941, 4273, 3), -- Resist Dagger
+(20941, 4408, 9), -- HP Modifiers
+(20941, 4409, 1), -- MP Modifiers
+(20941, 4410, 11), -- P. Atk. Modifiers
+(20941, 4411, 11), -- M. Atk. Modifiers
+(20941, 4412, 11), -- P. Def. Modifiers
+(20941, 4413, 11), -- M. Def. Modifiers
+(20941, 4414, 2), -- Armor Type
+(20941, 4415, 5), -- Weapon Type
+(20941, 4416, 6), -- Races
 (20941, 4438, 2), -- Greater Resist Sleep
 (20941, 4439, 2), -- Greater Resist Hold
 -- Nightmare Guide
-(20942, 4099, 2), -- Berserker Spirit
-(20942, 4408, 9), -- HP Increase (1/2x)
-(20942, 4409, 1), -- MP Increase (1x)
-(20942, 4410, 11), -- Average P. Atk.
-(20942, 4411, 11), -- Average M. Atk.
-(20942, 4412, 11), -- Average P. Def.
-(20942, 4413, 11), -- Average M. Def.
-(20942, 4414, 3), -- Light Armor Type
-(20942, 4415, 5), -- Blunt Weapons
-(20942, 4416, 3), -- Beasts
+(20942, 4099, 2), -- NPC Berserk
+(20942, 4408, 9), -- HP Modifiers
+(20942, 4409, 1), -- MP Modifiers
+(20942, 4410, 11), -- P. Atk. Modifiers
+(20942, 4411, 11), -- M. Atk. Modifiers
+(20942, 4412, 11), -- P. Def. Modifiers
+(20942, 4413, 11), -- M. Def. Modifiers
+(20942, 4414, 3), -- Armor Type
+(20942, 4415, 5), -- Weapon Type
+(20942, 4416, 3), -- Races
 -- Nightmare Keeper
-(20943, 4097, 4), -- Chant of Life
-(20943, 4100, 4), -- Prominence
-(20943, 4408, 9), -- HP Increase (1/2x)
-(20943, 4409, 1), -- MP Increase (1x)
-(20943, 4410, 11), -- Average P. Atk.
-(20943, 4411, 11), -- Average M. Atk.
-(20943, 4412, 11), -- Average P. Def.
-(20943, 4413, 11), -- Average M. Def.
-(20943, 4414, 3), -- Light Armor Type
-(20943, 4415, 5), -- Blunt Weapons
-(20943, 4416, 3), -- Beasts
+(20943, 4097, 4), -- NPC Chant of Life
+(20943, 4100, 4), -- NPC Prominence
+(20943, 4408, 9), -- HP Modifiers
+(20943, 4409, 1), -- MP Modifiers
+(20943, 4410, 11), -- P. Atk. Modifiers
+(20943, 4411, 11), -- M. Atk. Modifiers
+(20943, 4412, 11), -- P. Def. Modifiers
+(20943, 4413, 11), -- M. Def. Modifiers
+(20943, 4414, 3), -- Armor Type
+(20943, 4415, 5), -- Weapon Type
+(20943, 4416, 3), -- Races
 -- Nightmare Lord
-(20944, 4087, 4), -- Blaze
-(20944, 4408, 9), -- HP Increase (1/2x)
-(20944, 4409, 1), -- MP Increase (1x)
-(20944, 4410, 11), -- Average P. Atk.
-(20944, 4411, 11), -- Average M. Atk.
-(20944, 4412, 11), -- Average P. Def.
-(20944, 4413, 11), -- Average M. Def.
-(20944, 4414, 3), -- Light Armor Type
-(20944, 4415, 5), -- Blunt Weapons
-(20944, 4416, 9), -- Demons
+(20944, 4087, 4), -- NPC Blaze
+(20944, 4408, 9), -- HP Modifiers
+(20944, 4409, 1), -- MP Modifiers
+(20944, 4410, 11), -- P. Atk. Modifiers
+(20944, 4411, 11), -- M. Atk. Modifiers
+(20944, 4412, 11), -- P. Def. Modifiers
+(20944, 4413, 11), -- M. Def. Modifiers
+(20944, 4414, 3), -- Armor Type
+(20944, 4415, 5), -- Weapon Type
+(20944, 4416, 9), -- Races
 -- Cadeine
-(20945, 4099, 2), -- Berserker Spirit
-(20945, 4408, 9), -- HP Increase (1/2x)
-(20945, 4409, 1), -- MP Increase (1x)
-(20945, 4410, 11), -- Average P. Atk.
-(20945, 4411, 11), -- Average M. Atk.
-(20945, 4412, 11), -- Average P. Def.
-(20945, 4413, 11), -- Average M. Def.
-(20945, 4414, 2), -- Standard Type
-(20945, 4415, 5), -- Blunt Weapons
-(20945, 4416, 6), -- Humanoids
+(20945, 4099, 2), -- NPC Berserk
+(20945, 4408, 9), -- HP Modifiers
+(20945, 4409, 1), -- MP Modifiers
+(20945, 4410, 11), -- P. Atk. Modifiers
+(20945, 4411, 11), -- M. Atk. Modifiers
+(20945, 4412, 11), -- P. Def. Modifiers
+(20945, 4413, 11), -- M. Def. Modifiers
+(20945, 4414, 2), -- Armor Type
+(20945, 4415, 5), -- Weapon Type
+(20945, 4416, 6), -- Races
 -- Sanhidro
-(20946, 4067, 5), -- Blow
-(20946, 4408, 9), -- HP Increase (1/2x)
-(20946, 4409, 1), -- MP Increase (1x)
-(20946, 4410, 11), -- Average P. Atk.
-(20946, 4411, 11), -- Average M. Atk.
-(20946, 4412, 11), -- Average P. Def.
-(20946, 4413, 11), -- Average M. Def.
-(20946, 4414, 2), -- Standard Type
-(20946, 4415, 5), -- Blunt Weapons
-(20946, 4416, 11), -- Giants
+(20946, 4067, 5), -- NPC Mortal Blow
+(20946, 4408, 9), -- HP Modifiers
+(20946, 4409, 1), -- MP Modifiers
+(20946, 4410, 11), -- P. Atk. Modifiers
+(20946, 4411, 11), -- M. Atk. Modifiers
+(20946, 4412, 11), -- P. Def. Modifiers
+(20946, 4413, 11), -- M. Def. Modifiers
+(20946, 4414, 2), -- Armor Type
+(20946, 4415, 5), -- Weapon Type
+(20946, 4416, 11), -- Races
 -- Connabi
-(20947, 4032, 5), -- Power Strike
-(20947, 4408, 9), -- HP Increase (1/2x)
-(20947, 4409, 1), -- MP Increase (1x)
-(20947, 4410, 11), -- Average P. Atk.
-(20947, 4411, 11), -- Average M. Atk.
-(20947, 4412, 11), -- Average P. Def.
-(20947, 4413, 11), -- Average M. Def.
-(20947, 4414, 2), -- Standard Type
-(20947, 4415, 5), -- Blunt Weapons
-(20947, 4416, 11), -- Giants
+(20947, 4032, 5), -- NPC Strike
+(20947, 4408, 9), -- HP Modifiers
+(20947, 4409, 1), -- MP Modifiers
+(20947, 4410, 11), -- P. Atk. Modifiers
+(20947, 4411, 11), -- M. Atk. Modifiers
+(20947, 4412, 11), -- P. Def. Modifiers
+(20947, 4413, 11), -- M. Def. Modifiers
+(20947, 4414, 2), -- Armor Type
+(20947, 4415, 5), -- Weapon Type
+(20947, 4416, 11), -- Races
 -- Bartal
-(20948, 4065, 5), -- Heal
-(20948, 4100, 5), -- Prominence
-(20948, 4408, 9), -- HP Increase (1/2x)
-(20948, 4409, 1), -- MP Increase (1x)
-(20948, 4410, 11), -- Average P. Atk.
-(20948, 4411, 11), -- Average M. Atk.
-(20948, 4412, 11), -- Average P. Def.
-(20948, 4413, 11), -- Average M. Def.
-(20948, 4414, 2), -- Standard Type
-(20948, 4415, 5), -- Blunt Weapons
-(20948, 4416, 2), -- Magic Creatures
+(20948, 4065, 5), -- NPC Heal
+(20948, 4100, 5), -- NPC Prominence
+(20948, 4408, 9), -- HP Modifiers
+(20948, 4409, 1), -- MP Modifiers
+(20948, 4410, 11), -- P. Atk. Modifiers
+(20948, 4411, 11), -- M. Atk. Modifiers
+(20948, 4412, 11), -- P. Def. Modifiers
+(20948, 4413, 11), -- M. Def. Modifiers
+(20948, 4414, 2), -- Armor Type
+(20948, 4415, 5), -- Weapon Type
+(20948, 4416, 2), -- Races
 -- Luminun
-(20949, 4032, 5), -- Power Strike
-(20949, 4085, 1), -- Critical Damage
-(20949, 4408, 9), -- HP Increase (1/2x)
-(20949, 4409, 1), -- MP Increase (1x)
-(20949, 4410, 11), -- Average P. Atk.
-(20949, 4411, 11), -- Average M. Atk.
-(20949, 4412, 11), -- Average P. Def.
-(20949, 4413, 11), -- Average M. Def.
-(20949, 4414, 2), -- Standard Type
-(20949, 4415, 5), -- Blunt Weapons
-(20949, 4416, 11), -- Giants
+(20949, 4032, 5), -- NPC Strike
+(20949, 4085, 1), -- Critical Power
+(20949, 4408, 9), -- HP Modifiers
+(20949, 4409, 1), -- MP Modifiers
+(20949, 4410, 11), -- P. Atk. Modifiers
+(20949, 4411, 11), -- M. Atk. Modifiers
+(20949, 4412, 11), -- P. Def. Modifiers
+(20949, 4413, 11), -- M. Def. Modifiers
+(20949, 4414, 2), -- Armor Type
+(20949, 4415, 5), -- Weapon Type
+(20949, 4416, 11), -- Races
 -- Innersen
-(20950, 4073, 6), -- Stun
-(20950, 4408, 9), -- HP Increase (1/2x)
-(20950, 4409, 1), -- MP Increase (1x)
-(20950, 4410, 11), -- Average P. Atk.
-(20950, 4411, 11), -- Average M. Atk.
-(20950, 4412, 11), -- Average P. Def.
-(20950, 4413, 11), -- Average M. Def.
-(20950, 4414, 2), -- Standard Type
-(20950, 4415, 5), -- Blunt Weapons
-(20950, 4416, 11), -- Giants
+(20950, 4073, 6), -- Shock
+(20950, 4408, 9), -- HP Modifiers
+(20950, 4409, 1), -- MP Modifiers
+(20950, 4410, 11), -- P. Atk. Modifiers
+(20950, 4411, 11), -- M. Atk. Modifiers
+(20950, 4412, 11), -- P. Def. Modifiers
+(20950, 4413, 11), -- M. Def. Modifiers
+(20950, 4414, 2), -- Armor Type
+(20950, 4415, 5), -- Weapon Type
+(20950, 4416, 11), -- Races
 -- Pobby's Maid
-(20951, 4071, 5), -- Resist Bow/Crossbow Weapons
-(20951, 4163, 5), -- Damage Shield
-(20951, 4277, 5), -- Resist Poison Attacks
-(20951, 4408, 9), -- HP Increase (1/2x)
-(20951, 4409, 1), -- MP Increase (1x)
-(20951, 4410, 11), -- Average P. Atk.
-(20951, 4411, 11), -- Average M. Atk.
-(20951, 4412, 11), -- Average P. Def.
-(20951, 4413, 11), -- Average M. Def.
-(20951, 4414, 3), -- Light Armor Type
-(20951, 4415, 5), -- Blunt Weapons
-(20951, 4416, 5), -- Plants
+(20951, 4071, 5), -- Resist Archery
+(20951, 4163, 5), -- NPC Self Damage Shield
+(20951, 4277, 5), -- Resist Poison
+(20951, 4408, 9), -- HP Modifiers
+(20951, 4409, 1), -- MP Modifiers
+(20951, 4410, 11), -- P. Atk. Modifiers
+(20951, 4411, 11), -- M. Atk. Modifiers
+(20951, 4412, 11), -- P. Def. Modifiers
+(20951, 4413, 11), -- M. Def. Modifiers
+(20951, 4414, 3), -- Armor Type
+(20951, 4415, 5), -- Weapon Type
+(20951, 4416, 5), -- Races
 -- Pobby Escort
-(20952, 4071, 5), -- Resist Bow/Crossbow Weapons
-(20952, 4077, 5), -- Aura Burn
-(20952, 4277, 5), -- Resist Poison Attacks
-(20952, 4408, 9), -- HP Increase (1/2x)
-(20952, 4409, 1), -- MP Increase (1x)
-(20952, 4410, 11), -- Average P. Atk.
-(20952, 4411, 11), -- Average M. Atk.
-(20952, 4412, 11), -- Average P. Def.
-(20952, 4413, 11), -- Average M. Def.
-(20952, 4414, 3), -- Light Armor Type
-(20952, 4415, 5), -- Blunt Weapons
-(20952, 4416, 5), -- Plants
+(20952, 4071, 5), -- Resist Archery
+(20952, 4077, 5), -- NPC Aura Burn
+(20952, 4277, 5), -- Resist Poison
+(20952, 4408, 9), -- HP Modifiers
+(20952, 4409, 1), -- MP Modifiers
+(20952, 4410, 11), -- P. Atk. Modifiers
+(20952, 4411, 11), -- M. Atk. Modifiers
+(20952, 4412, 11), -- P. Def. Modifiers
+(20952, 4413, 11), -- M. Def. Modifiers
+(20952, 4414, 3), -- Armor Type
+(20952, 4415, 5), -- Weapon Type
+(20952, 4416, 5), -- Races
 -- Pobby
-(20953, 4071, 5), -- Resist Bow/Crossbow Weapons
-(20953, 4073, 5), -- Stun
-(20953, 4277, 5), -- Resist Poison Attacks
-(20953, 4408, 9), -- HP Increase (1/2x)
-(20953, 4409, 1), -- MP Increase (1x)
-(20953, 4410, 11), -- Average P. Atk.
-(20953, 4411, 11), -- Average M. Atk.
-(20953, 4412, 11), -- Average P. Def.
-(20953, 4413, 11), -- Average M. Def.
-(20953, 4414, 3), -- Light Armor Type
-(20953, 4415, 5), -- Blunt Weapons
-(20953, 4416, 5), -- Plants
+(20953, 4071, 5), -- Resist Archery
+(20953, 4073, 5), -- Shock
+(20953, 4277, 5), -- Resist Poison
+(20953, 4408, 9), -- HP Modifiers
+(20953, 4409, 1), -- MP Modifiers
+(20953, 4410, 11), -- P. Atk. Modifiers
+(20953, 4411, 11), -- M. Atk. Modifiers
+(20953, 4412, 11), -- P. Def. Modifiers
+(20953, 4413, 11), -- M. Def. Modifiers
+(20953, 4414, 3), -- Armor Type
+(20953, 4415, 5), -- Weapon Type
+(20953, 4416, 5), -- Races
 -- Hungered Corpse
-(20954, 4071, 5), -- Resist Bow/Crossbow Weapons
-(20954, 4073, 6), -- Stun
-(20954, 4274, 1), -- Blunt Weapon Weak Point
-(20954, 4408, 9), -- HP Increase (1/2x)
-(20954, 4409, 1), -- MP Increase (1x)
-(20954, 4410, 11), -- Average P. Atk.
-(20954, 4411, 11), -- Average M. Atk.
-(20954, 4412, 11), -- Average P. Def.
-(20954, 4413, 11), -- Average M. Def.
-(20954, 4414, 2), -- Standard Type
-(20954, 4415, 5), -- Blunt Weapons
-(20954, 4416, 1), -- Undead
+(20954, 4071, 5), -- Resist Archery
+(20954, 4073, 6), -- Shock
+(20954, 4274, 1), -- Blunt Attack Weak Point
+(20954, 4408, 9), -- HP Modifiers
+(20954, 4409, 1), -- MP Modifiers
+(20954, 4410, 11), -- P. Atk. Modifiers
+(20954, 4411, 11), -- M. Atk. Modifiers
+(20954, 4412, 11), -- P. Def. Modifiers
+(20954, 4413, 11), -- M. Def. Modifiers
+(20954, 4414, 2), -- Armor Type
+(20954, 4415, 5), -- Weapon Type
+(20954, 4416, 1), -- Races
 -- Ghostly Warrior
-(20955, 4071, 5), -- Resist Bow/Crossbow Weapons
-(20955, 4073, 6), -- Stun
-(20955, 4274, 1), -- Blunt Weapon Weak Point
-(20955, 4408, 9), -- HP Increase (1/2x)
-(20955, 4409, 1), -- MP Increase (1x)
-(20955, 4410, 11), -- Average P. Atk.
-(20955, 4411, 11), -- Average M. Atk.
-(20955, 4412, 11), -- Average P. Def.
-(20955, 4413, 18), -- Extremely Strong M. Def.
-(20955, 4414, 2), -- Standard Type
-(20955, 4415, 5), -- Blunt Weapons
-(20955, 4416, 1), -- Undead
+(20955, 4071, 5), -- Resist Archery
+(20955, 4073, 6), -- Shock
+(20955, 4274, 1), -- Blunt Attack Weak Point
+(20955, 4408, 9), -- HP Modifiers
+(20955, 4409, 1), -- MP Modifiers
+(20955, 4410, 11), -- P. Atk. Modifiers
+(20955, 4411, 11), -- M. Atk. Modifiers
+(20955, 4412, 11), -- P. Def. Modifiers
+(20955, 4413, 18), -- M. Def. Modifiers
+(20955, 4414, 2), -- Armor Type
+(20955, 4415, 5), -- Weapon Type
+(20955, 4416, 1), -- Races
 -- Past Knight
-(20956, 4032, 6), -- Power Strike
-(20956, 4274, 1), -- Blunt Weapon Weak Point
-(20956, 4408, 9), -- HP Increase (1/2x)
-(20956, 4409, 1), -- MP Increase (1x)
-(20956, 4410, 11), -- Average P. Atk.
-(20956, 4411, 11), -- Average M. Atk.
-(20956, 4412, 11), -- Average P. Def.
-(20956, 4413, 11), -- Average M. Def.
-(20956, 4414, 2), -- Standard Type
-(20956, 4415, 5); -- Blunt Weapons
+(20956, 4032, 6), -- NPC Strike
+(20956, 4274, 1), -- Blunt Attack Weak Point
+(20956, 4408, 9), -- HP Modifiers
+(20956, 4409, 1), -- MP Modifiers
+(20956, 4410, 11), -- P. Atk. Modifiers
+(20956, 4411, 11), -- M. Atk. Modifiers
+(20956, 4412, 11), -- P. Def. Modifiers
+(20956, 4413, 11), -- M. Def. Modifiers
+(20956, 4414, 2), -- Armor Type
+(20956, 4415, 5); -- Weapon Type
 
 INSERT INTO `npcskills` VALUES
-(20956, 4416, 1), -- Undead
+(20956, 4416, 1), -- Races
 -- Nihil Invader
-(20957, 4032, 6), -- Power Strike
-(20957, 4071, 5), -- Resist Bow/Crossbow Weapons
-(20957, 4274, 1), -- Blunt Weapon Weak Point
-(20957, 4408, 9), -- HP Increase (1/2x)
-(20957, 4409, 1), -- MP Increase (1x)
-(20957, 4410, 11), -- Average P. Atk.
-(20957, 4411, 11), -- Average M. Atk.
-(20957, 4412, 11), -- Average P. Def.
-(20957, 4413, 11), -- Average M. Def.
-(20957, 4414, 2), -- Standard Type
-(20957, 4415, 5), -- Blunt Weapons
-(20957, 4416, 1), -- Undead
+(20957, 4032, 6), -- NPC Strike
+(20957, 4071, 5), -- Resist Archery
+(20957, 4274, 1), -- Blunt Attack Weak Point
+(20957, 4408, 9), -- HP Modifiers
+(20957, 4409, 1), -- MP Modifiers
+(20957, 4410, 11), -- P. Atk. Modifiers
+(20957, 4411, 11), -- M. Atk. Modifiers
+(20957, 4412, 11), -- P. Def. Modifiers
+(20957, 4413, 11), -- M. Def. Modifiers
+(20957, 4414, 2), -- Armor Type
+(20957, 4415, 5), -- Weapon Type
+(20957, 4416, 1), -- Races
 -- Death Agent
-(20958, 4071, 5), -- Resist Bow/Crossbow Weapons
-(20958, 4099, 2), -- Berserker Spirit
-(20958, 4408, 9), -- HP Increase (1/2x)
-(20958, 4409, 1), -- MP Increase (1x)
-(20958, 4410, 11), -- Average P. Atk.
-(20958, 4411, 11), -- Average M. Atk.
-(20958, 4412, 11), -- Average P. Def.
-(20958, 4413, 11), -- Average M. Def.
-(20958, 4414, 2), -- Standard Type
-(20958, 4415, 5), -- Blunt Weapons
-(20958, 4416, 1), -- Undead
+(20958, 4071, 5), -- Resist Archery
+(20958, 4099, 2), -- NPC Berserk
+(20958, 4408, 9), -- HP Modifiers
+(20958, 4409, 1), -- MP Modifiers
+(20958, 4410, 11), -- P. Atk. Modifiers
+(20958, 4411, 11), -- M. Atk. Modifiers
+(20958, 4412, 11), -- P. Def. Modifiers
+(20958, 4413, 11), -- M. Def. Modifiers
+(20958, 4414, 2), -- Armor Type
+(20958, 4415, 5), -- Weapon Type
+(20958, 4416, 1), -- Races
 -- Dark Guard
-(20959, 4073, 7), -- Stun
-(20959, 4408, 9), -- HP Increase (1/2x)
-(20959, 4409, 1), -- MP Increase (1x)
-(20959, 4410, 11), -- Average P. Atk.
-(20959, 4411, 11), -- Average M. Atk.
-(20959, 4412, 11), -- Average P. Def.
-(20959, 4413, 15), -- Strong M. Def.
-(20959, 4414, 2), -- Standard Type
-(20959, 4415, 5), -- Blunt Weapons
-(20959, 4416, 1), -- Undead
+(20959, 4073, 7), -- Shock
+(20959, 4408, 9), -- HP Modifiers
+(20959, 4409, 1), -- MP Modifiers
+(20959, 4410, 11), -- P. Atk. Modifiers
+(20959, 4411, 11), -- M. Atk. Modifiers
+(20959, 4412, 11), -- P. Def. Modifiers
+(20959, 4413, 15), -- M. Def. Modifiers
+(20959, 4414, 2), -- Armor Type
+(20959, 4415, 5), -- Weapon Type
+(20959, 4416, 1), -- Races
 -- Bloody Ghost
-(20960, 4099, 2), -- Berserker Spirit
-(20960, 4408, 9), -- HP Increase (1/2x)
-(20960, 4409, 1), -- MP Increase (1x)
-(20960, 4410, 11), -- Average P. Atk.
-(20960, 4411, 11), -- Average M. Atk.
-(20960, 4412, 11), -- Average P. Def.
-(20960, 4413, 11), -- Average M. Def.
-(20960, 4414, 3), -- Light Armor Type
-(20960, 4415, 5), -- Blunt Weapons
-(20960, 4416, 9), -- Demons
+(20960, 4099, 2), -- NPC Berserk
+(20960, 4408, 9), -- HP Modifiers
+(20960, 4409, 1), -- MP Modifiers
+(20960, 4410, 11), -- P. Atk. Modifiers
+(20960, 4411, 11), -- M. Atk. Modifiers
+(20960, 4412, 11), -- P. Def. Modifiers
+(20960, 4413, 11), -- M. Def. Modifiers
+(20960, 4414, 3), -- Armor Type
+(20960, 4415, 5), -- Weapon Type
+(20960, 4416, 9), -- Races
 -- Bloody Knight
-(20961, 4073, 6), -- Stun
-(20961, 4408, 9), -- HP Increase (1/2x)
-(20961, 4409, 1), -- MP Increase (1x)
-(20961, 4410, 11), -- Average P. Atk.
-(20961, 4411, 11), -- Average M. Atk.
-(20961, 4412, 11), -- Average P. Def.
-(20961, 4413, 11), -- Average M. Def.
-(20961, 4414, 3), -- Light Armor Type
-(20961, 4415, 5), -- Blunt Weapons
-(20961, 4416, 9), -- Demons
+(20961, 4073, 6), -- Shock
+(20961, 4408, 9), -- HP Modifiers
+(20961, 4409, 1), -- MP Modifiers
+(20961, 4410, 11), -- P. Atk. Modifiers
+(20961, 4411, 11), -- M. Atk. Modifiers
+(20961, 4412, 11), -- P. Def. Modifiers
+(20961, 4413, 11), -- M. Def. Modifiers
+(20961, 4414, 3), -- Armor Type
+(20961, 4415, 5), -- Weapon Type
+(20961, 4416, 9), -- Races
 -- Bloody Priest
-(20962, 4065, 6), -- Heal
-(20962, 4076, 3), -- Slow
-(20962, 4408, 9), -- HP Increase (1/2x)
-(20962, 4409, 1), -- MP Increase (1x)
-(20962, 4410, 11), -- Average P. Atk.
-(20962, 4411, 11), -- Average M. Atk.
-(20962, 4412, 11), -- Average P. Def.
-(20962, 4413, 11), -- Average M. Def.
-(20962, 4414, 3), -- Light Armor Type
-(20962, 4415, 5), -- Blunt Weapons
-(20962, 4416, 9), -- Demons
+(20962, 4065, 6), -- NPC Heal
+(20962, 4076, 3), -- Reduction in movement speed
+(20962, 4408, 9), -- HP Modifiers
+(20962, 4409, 1), -- MP Modifiers
+(20962, 4410, 11), -- P. Atk. Modifiers
+(20962, 4411, 11), -- M. Atk. Modifiers
+(20962, 4412, 11), -- P. Def. Modifiers
+(20962, 4413, 11), -- M. Def. Modifiers
+(20962, 4414, 3), -- Armor Type
+(20962, 4415, 5), -- Weapon Type
+(20962, 4416, 9), -- Races
 -- Bloody Lord
 (20963, 4086, 1), -- Critical Chance
-(20963, 4100, 6), -- Prominence
-(20963, 4408, 9), -- HP Increase (1/2x)
-(20963, 4409, 1), -- MP Increase (1x)
-(20963, 4410, 11), -- Average P. Atk.
-(20963, 4411, 11), -- Average M. Atk.
-(20963, 4412, 11), -- Average P. Def.
-(20963, 4413, 18), -- Extremely Strong M. Def.
-(20963, 4414, 3), -- Light Armor Type
-(20963, 4415, 5), -- Blunt Weapons
-(20963, 4416, 9), -- Demons
+(20963, 4100, 6), -- NPC Prominence
+(20963, 4408, 9), -- HP Modifiers
+(20963, 4409, 1), -- MP Modifiers
+(20963, 4410, 11), -- P. Atk. Modifiers
+(20963, 4411, 11), -- M. Atk. Modifiers
+(20963, 4412, 11), -- P. Def. Modifiers
+(20963, 4413, 18), -- M. Def. Modifiers
+(20963, 4414, 3), -- Armor Type
+(20963, 4415, 5), -- Weapon Type
+(20963, 4416, 9), -- Races
 -- Chimera Piece
-(20965, 4032, 8), -- Power Strike
-(20965, 4408, 10), -- HP Increase (2x)
-(20965, 4409, 1), -- MP Increase (1x)
-(20965, 4410, 19), -- Extremely Strong P. Atk.
-(20965, 4411, 11), -- Average M. Atk.
-(20965, 4412, 11), -- Average P. Def.
-(20965, 4413, 18), -- Extremely Strong M. Def.
-(20965, 4414, 2), -- Standard Type
-(20965, 4415, 5), -- Blunt Weapons
-(20965, 4416, 2), -- Magic Creatures
+(20965, 4032, 8), -- NPC Strike
+(20965, 4408, 10), -- HP Modifiers
+(20965, 4409, 1), -- MP Modifiers
+(20965, 4410, 19), -- P. Atk. Modifiers
+(20965, 4411, 11), -- M. Atk. Modifiers
+(20965, 4412, 11), -- P. Def. Modifiers
+(20965, 4413, 18), -- M. Def. Modifiers
+(20965, 4414, 2), -- Armor Type
+(20965, 4415, 5), -- Weapon Type
+(20965, 4416, 2), -- Races
 (20965, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 (20965, 5620, 8), -- Short-Range Physical Attack Weakness
 (20965, 6019, 1), -- Searching Master
 -- Changed Creation
-(20966, 4032, 8), -- Power Strike
-(20966, 4408, 11), -- HP Increase (3x)
-(20966, 4409, 1), -- MP Increase (1x)
-(20966, 4410, 19), -- Extremely Strong P. Atk.
-(20966, 4411, 11), -- Average M. Atk.
-(20966, 4412, 11), -- Average P. Def.
-(20966, 4413, 18), -- Extremely Strong M. Def.
-(20966, 4414, 1), -- Heavy Armor Type
-(20966, 4415, 3), -- One-handed Sword
-(20966, 4416, 2), -- Magic Creatures
+(20966, 4032, 8), -- NPC Strike
+(20966, 4408, 11), -- HP Modifiers
+(20966, 4409, 1), -- MP Modifiers
+(20966, 4410, 19), -- P. Atk. Modifiers
+(20966, 4411, 11), -- M. Atk. Modifiers
+(20966, 4412, 11), -- P. Def. Modifiers
+(20966, 4413, 18), -- M. Def. Modifiers
+(20966, 4414, 1), -- Armor Type
+(20966, 4415, 3), -- Weapon Type
+(20966, 4416, 2), -- Races
 (20966, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 (20966, 5620, 8), -- Short-Range Physical Attack Weakness
 (20966, 6019, 1), -- Searching Master
 -- Ancient Creature
-(20967, 4032, 8), -- Power Strike
-(20967, 4408, 10), -- HP Increase (2x)
-(20967, 4409, 1), -- MP Increase (1x)
-(20967, 4410, 19), -- Extremely Strong P. Atk.
-(20967, 4411, 11), -- Average M. Atk.
-(20967, 4412, 11), -- Average P. Def.
-(20967, 4413, 18), -- Extremely Strong M. Def.
-(20967, 4414, 2), -- Standard Type
-(20967, 4415, 3), -- One-handed Sword
-(20967, 4416, 2), -- Magic Creatures
+(20967, 4032, 8), -- NPC Strike
+(20967, 4408, 10), -- HP Modifiers
+(20967, 4409, 1), -- MP Modifiers
+(20967, 4410, 19), -- P. Atk. Modifiers
+(20967, 4411, 11), -- M. Atk. Modifiers
+(20967, 4412, 11), -- P. Def. Modifiers
+(20967, 4413, 18), -- M. Def. Modifiers
+(20967, 4414, 2), -- Armor Type
+(20967, 4415, 3), -- Weapon Type
+(20967, 4416, 2), -- Races
 (20967, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 (20967, 5620, 9), -- Short-Range Physical Attack Weakness
 (20967, 6019, 1), -- Searching Master
 -- Forgotten Face
-(20968, 4408, 10), -- HP Increase (2x)
-(20968, 4409, 1), -- MP Increase (1x)
-(20968, 4410, 19), -- Extremely Strong P. Atk.
-(20968, 4411, 11), -- Average M. Atk.
-(20968, 4412, 11), -- Average P. Def.
-(20968, 4413, 18), -- Extremely Strong M. Def.
-(20968, 4414, 2), -- Standard Type
-(20968, 4415, 5), -- Blunt Weapons
-(20968, 4416, 2), -- Magic Creatures
+(20968, 4408, 10), -- HP Modifiers
+(20968, 4409, 1), -- MP Modifiers
+(20968, 4410, 19), -- P. Atk. Modifiers
+(20968, 4411, 11), -- M. Atk. Modifiers
+(20968, 4412, 11), -- P. Def. Modifiers
+(20968, 4413, 18), -- M. Def. Modifiers
+(20968, 4414, 2), -- Armor Type
+(20968, 4415, 5), -- Weapon Type
+(20968, 4416, 2), -- Races
 (20968, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 (20968, 4582, 8), -- Poison
 (20968, 5620, 9), -- Short-Range Physical Attack Weakness
 (20968, 6019, 1), -- Searching Master
 -- Giant's Shadow
-(20969, 4040, 8), -- Power Shot
-(20969, 4408, 11), -- HP Increase (3x)
-(20969, 4409, 1), -- MP Increase (1x)
-(20969, 4410, 19), -- Extremely Strong P. Atk.
-(20969, 4411, 11), -- Average M. Atk.
-(20969, 4412, 11), -- Average P. Def.
-(20969, 4413, 18), -- Extremely Strong M. Def.
-(20969, 4414, 1), -- Heavy Armor Type
-(20969, 4415, 9), -- Bows
-(20969, 4416, 11), -- Giants
+(20969, 4040, 8), -- NPC Bow Attack
+(20969, 4408, 11), -- HP Modifiers
+(20969, 4409, 1), -- MP Modifiers
+(20969, 4410, 19), -- P. Atk. Modifiers
+(20969, 4411, 11), -- M. Atk. Modifiers
+(20969, 4412, 11), -- P. Def. Modifiers
+(20969, 4413, 18), -- M. Def. Modifiers
+(20969, 4414, 1), -- Armor Type
+(20969, 4415, 9), -- Weapon Type
+(20969, 4416, 11), -- Races
 (20969, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 (20969, 5620, 9), -- Short-Range Physical Attack Weakness
 (20969, 6019, 1), -- Searching Master
 -- Soldier of Ancient Times
-(20970, 4408, 10), -- HP Increase (2x)
-(20970, 4409, 1), -- MP Increase (1x)
-(20970, 4410, 19), -- Extremely Strong P. Atk.
-(20970, 4411, 11), -- Average M. Atk.
-(20970, 4412, 11), -- Average P. Def.
-(20970, 4413, 18), -- Extremely Strong M. Def.
-(20970, 4414, 2), -- Standard Type
-(20970, 4415, 3), -- One-handed Sword
-(20970, 4416, 11), -- Giants
+(20970, 4408, 10), -- HP Modifiers
+(20970, 4409, 1), -- MP Modifiers
+(20970, 4410, 19), -- P. Atk. Modifiers
+(20970, 4411, 11), -- M. Atk. Modifiers
+(20970, 4412, 11), -- P. Def. Modifiers
+(20970, 4413, 18), -- M. Def. Modifiers
+(20970, 4414, 2), -- Armor Type
+(20970, 4415, 3), -- Weapon Type
+(20970, 4416, 11), -- Races
 (20970, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 (20970, 4582, 8), -- Poison
 (20970, 5620, 8), -- Short-Range Physical Attack Weakness
 (20970, 6019, 1), -- Searching Master
 -- Warrior of Ancient Times
-(20971, 4032, 8), -- Power Strike
-(20971, 4408, 10), -- HP Increase (2x)
-(20971, 4409, 1), -- MP Increase (1x)
-(20971, 4410, 19), -- Extremely Strong P. Atk.
-(20971, 4411, 11), -- Average M. Atk.
-(20971, 4412, 11), -- Average P. Def.
-(20971, 4413, 18), -- Extremely Strong M. Def.
-(20971, 4414, 2), -- Standard Type
-(20971, 4415, 3), -- One-handed Sword
-(20971, 4416, 11), -- Giants
+(20971, 4032, 8), -- NPC Strike
+(20971, 4408, 10), -- HP Modifiers
+(20971, 4409, 1), -- MP Modifiers
+(20971, 4410, 19), -- P. Atk. Modifiers
+(20971, 4411, 11), -- M. Atk. Modifiers
+(20971, 4412, 11), -- P. Def. Modifiers
+(20971, 4413, 18), -- M. Def. Modifiers
+(20971, 4414, 2), -- Armor Type
+(20971, 4415, 3), -- Weapon Type
+(20971, 4416, 11), -- Races
 (20971, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 (20971, 5620, 8), -- Short-Range Physical Attack Weakness
 (20971, 6019, 1), -- Searching Master
 -- Shaman of Ancient Times
-(20972, 4065, 8), -- Heal
-(20972, 4156, 8), -- Beam Cannon
-(20972, 4160, 8), -- Aura Burn
-(20972, 4408, 10), -- HP Increase (2x)
-(20972, 4409, 1), -- MP Increase (1x)
-(20972, 4410, 19), -- Extremely Strong P. Atk.
-(20972, 4411, 15), -- Strong M. Atk.
-(20972, 4412, 11), -- Average P. Def.
-(20972, 4413, 18), -- Extremely Strong M. Def.
-(20972, 4414, 1), -- Heavy Armor Type
-(20972, 4415, 5), -- Blunt Weapons
-(20972, 4416, 11), -- Giants
+(20972, 4065, 8), -- NPC Heal
+(20972, 4156, 8), -- NPC Curve Beam Cannon - Magic
+(20972, 4160, 8), -- NPC Aura Burn - Magic
+(20972, 4408, 10), -- HP Modifiers
+(20972, 4409, 1), -- MP Modifiers
+(20972, 4410, 19), -- P. Atk. Modifiers
+(20972, 4411, 15), -- M. Atk. Modifiers
+(20972, 4412, 11), -- P. Def. Modifiers
+(20972, 4413, 18), -- M. Def. Modifiers
+(20972, 4414, 1), -- Armor Type
+(20972, 4415, 5), -- Weapon Type
+(20972, 4416, 11), -- Races
 (20972, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 (20972, 5620, 8), -- Short-Range Physical Attack Weakness
 (20972, 6019, 1), -- Searching Master
 -- Forgotten Ancient People
-(20973, 4408, 11), -- HP Increase (3x)
-(20973, 4409, 1), -- MP Increase (1x)
-(20973, 4410, 19), -- Extremely Strong P. Atk.
-(20973, 4411, 11), -- Average M. Atk.
-(20973, 4412, 11), -- Average P. Def.
-(20973, 4413, 18), -- Extremely Strong M. Def.
-(20973, 4414, 1), -- Heavy Armor Type
-(20973, 4415, 5), -- Blunt Weapons
-(20973, 4416, 11), -- Giants
+(20973, 4408, 11), -- HP Modifiers
+(20973, 4409, 1), -- MP Modifiers
+(20973, 4410, 19), -- P. Atk. Modifiers
+(20973, 4411, 11), -- M. Atk. Modifiers
+(20973, 4412, 11), -- P. Def. Modifiers
+(20973, 4413, 18), -- M. Def. Modifiers
+(20973, 4414, 1), -- Armor Type
+(20973, 4415, 5), -- Weapon Type
+(20973, 4416, 11), -- Races
 (20973, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 (20973, 4582, 8), -- Poison
 (20973, 5620, 9), -- Short-Range Physical Attack Weakness
 (20973, 6019, 1), -- Searching Master
 -- Spiteful Soul Leader
-(20974, 4073, 6), -- Stun
-(20974, 4274, 1), -- Blunt Weapon Weak Point
-(20974, 4408, 1), -- HP Increase (1x)
-(20974, 4409, 1), -- MP Increase (1x)
-(20974, 4410, 11), -- Average P. Atk.
-(20974, 4411, 11), -- Average M. Atk.
-(20974, 4412, 11), -- Average P. Def.
-(20974, 4413, 11), -- Average M. Def.
-(20974, 4414, 2), -- Standard Type
-(20974, 4415, 3), -- One-handed Sword
-(20974, 4416, 1), -- Undead
+(20974, 4073, 6), -- Shock
+(20974, 4274, 1), -- Blunt Attack Weak Point
+(20974, 4408, 1), -- HP Modifiers
+(20974, 4409, 1), -- MP Modifiers
+(20974, 4410, 11), -- P. Atk. Modifiers
+(20974, 4411, 11), -- M. Atk. Modifiers
+(20974, 4412, 11), -- P. Def. Modifiers
+(20974, 4413, 11), -- M. Def. Modifiers
+(20974, 4414, 2), -- Armor Type
+(20974, 4415, 3), -- Weapon Type
+(20974, 4416, 1), -- Races
 -- Spiteful Soul Wizard
-(20975, 4065, 6), -- Heal
-(20975, 4087, 6), -- Blaze
-(20975, 4408, 1), -- HP Increase (1x)
-(20975, 4409, 1), -- MP Increase (1x)
-(20975, 4410, 11), -- Average P. Atk.
-(20975, 4411, 11), -- Average M. Atk.
-(20975, 4412, 11), -- Average P. Def.
-(20975, 4413, 11), -- Average M. Def.
-(20975, 4414, 2), -- Standard Type
-(20975, 4415, 3), -- One-handed Sword
-(20975, 4416, 1), -- Undead
+(20975, 4065, 6), -- NPC Heal
+(20975, 4087, 6), -- NPC Blaze
+(20975, 4408, 1), -- HP Modifiers
+(20975, 4409, 1), -- MP Modifiers
+(20975, 4410, 11), -- P. Atk. Modifiers
+(20975, 4411, 11), -- M. Atk. Modifiers
+(20975, 4412, 11), -- P. Def. Modifiers
+(20975, 4413, 11), -- M. Def. Modifiers
+(20975, 4414, 2), -- Armor Type
+(20975, 4415, 3), -- Weapon Type
+(20975, 4416, 1), -- Races
 -- Spiteful Soul Fighter
-(20976, 4099, 2), -- Berserker Spirit
-(20976, 4408, 1), -- HP Increase (1x)
-(20976, 4409, 1), -- MP Increase (1x)
-(20976, 4410, 11), -- Average P. Atk.
-(20976, 4411, 11), -- Average M. Atk.
-(20976, 4412, 11), -- Average P. Def.
-(20976, 4413, 11), -- Average M. Def.
-(20976, 4414, 2), -- Standard Type
-(20976, 4415, 3), -- One-handed Sword
-(20976, 4416, 1), -- Undead
+(20976, 4099, 2), -- NPC Berserk
+(20976, 4408, 1), -- HP Modifiers
+(20976, 4409, 1), -- MP Modifiers
+(20976, 4410, 11), -- P. Atk. Modifiers
+(20976, 4411, 11), -- M. Atk. Modifiers
+(20976, 4412, 11), -- P. Def. Modifiers
+(20976, 4413, 11), -- M. Def. Modifiers
+(20976, 4414, 2), -- Armor Type
+(20976, 4415, 3), -- Weapon Type
+(20976, 4416, 1), -- Races
 -- Elmoreden's Lady
-(20977, 4087, 6), -- Blaze
-(20977, 4408, 10), -- HP Increase (2x)
-(20977, 4409, 1), -- MP Increase (1x)
-(20977, 4410, 10), -- Slightly Weak P. Atk.
-(20977, 4411, 10), -- Slightly Weak M. Atk.
-(20977, 4412, 12), -- Slightly Strong P. Def.
-(20977, 4413, 14), -- Strong M. Def.
-(20977, 4414, 2), -- Standard Type
-(20977, 4415, 5), -- Blunt Weapons
-(20977, 4416, 9), -- Demons
+(20977, 4087, 6), -- NPC Blaze
+(20977, 4408, 10), -- HP Modifiers
+(20977, 4409, 1), -- MP Modifiers
+(20977, 4410, 10), -- P. Atk. Modifiers
+(20977, 4411, 10), -- M. Atk. Modifiers
+(20977, 4412, 12), -- P. Def. Modifiers
+(20977, 4413, 14), -- M. Def. Modifiers
+(20977, 4414, 2), -- Armor Type
+(20977, 4415, 5), -- Weapon Type
+(20977, 4416, 9), -- Races
 (20977, 4438, 2), -- Greater Resist Sleep
 (20977, 4439, 2), -- Greater Resist Hold
 -- Elmoreden's Archer Escort
-(20978, 4040, 6), -- Power Shot
-(20978, 4071, 5), -- Resist Bow/Crossbow Weapons
-(20978, 4408, 10), -- HP Increase (2x)
-(20978, 4409, 1), -- MP Increase (1x)
-(20978, 4410, 12), -- Slightly Strong P. Atk.
-(20978, 4411, 12), -- Slightly Strong M. Atk.
-(20978, 4412, 10), -- Slightly Weak P. Def.
-(20978, 4413, 10), -- Slightly Weak M. Def.
-(20978, 4414, 3), -- Light Armor Type
-(20978, 4415, 9), -- Bows
-(20978, 4416, 1), -- Undead
+(20978, 4040, 6), -- NPC Bow Attack
+(20978, 4071, 5), -- Resist Archery
+(20978, 4408, 10), -- HP Modifiers
+(20978, 4409, 1), -- MP Modifiers
+(20978, 4410, 12), -- P. Atk. Modifiers
+(20978, 4411, 12), -- M. Atk. Modifiers
+(20978, 4412, 10), -- P. Def. Modifiers
+(20978, 4413, 10), -- M. Def. Modifiers
+(20978, 4414, 3), -- Armor Type
+(20978, 4415, 9), -- Weapon Type
+(20978, 4416, 1), -- Races
 (20978, 4438, 2), -- Greater Resist Sleep
 -- Elmoreden's Maid
-(20979, 4099, 2), -- Berserker Spirit
-(20979, 4408, 10), -- HP Increase (2x)
-(20979, 4409, 1), -- MP Increase (1x)
-(20979, 4410, 12), -- Slightly Strong P. Atk.
-(20979, 4411, 12), -- Slightly Strong M. Atk.
-(20979, 4412, 10), -- Slightly Weak P. Def.
-(20979, 4413, 13), -- Slightly Strong M. Def.
-(20979, 4414, 2), -- Standard Type
-(20979, 4415, 3), -- One-handed Sword
-(20979, 4416, 9), -- Demons
+(20979, 4099, 2), -- NPC Berserk
+(20979, 4408, 10), -- HP Modifiers
+(20979, 4409, 1), -- MP Modifiers
+(20979, 4410, 12), -- P. Atk. Modifiers
+(20979, 4411, 12), -- M. Atk. Modifiers
+(20979, 4412, 10), -- P. Def. Modifiers
+(20979, 4413, 13), -- M. Def. Modifiers
+(20979, 4414, 2), -- Armor Type
+(20979, 4415, 3), -- Weapon Type
+(20979, 4416, 9), -- Races
 -- Hallate's Follower Mul
-(20980, 4073, 6), -- Stun
-(20980, 4085, 1), -- Critical Damage
+(20980, 4073, 6), -- Shock
+(20980, 4085, 1), -- Critical Power
 (20980, 4086, 1), -- Critical Chance
-(20980, 4408, 10), -- HP Increase (2x)
-(20980, 4409, 1), -- MP Increase (1x)
-(20980, 4410, 12), -- Slightly Strong P. Atk.
-(20980, 4411, 12), -- Slightly Strong M. Atk.
-(20980, 4412, 10), -- Slightly Weak P. Def.
-(20980, 4413, 10), -- Slightly Weak M. Def.
-(20980, 4414, 2), -- Standard Type
-(20980, 4415, 5), -- Blunt Weapons
-(20980, 4416, 9), -- Demons
+(20980, 4408, 10), -- HP Modifiers
+(20980, 4409, 1), -- MP Modifiers
+(20980, 4410, 12), -- P. Atk. Modifiers
+(20980, 4411, 12), -- M. Atk. Modifiers
+(20980, 4412, 10), -- P. Def. Modifiers
+(20980, 4413, 10), -- M. Def. Modifiers
+(20980, 4414, 2), -- Armor Type
+(20980, 4415, 5), -- Weapon Type
+(20980, 4416, 9), -- Races
 -- Mul's Wizard
-(20981, 4065, 6), -- Heal
-(20981, 4078, 6), -- Flame Strike
-(20981, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(20981, 4408, 10), -- HP Increase (2x)
-(20981, 4409, 1), -- MP Increase (1x)
-(20981, 4410, 10), -- Slightly Weak P. Atk.
-(20981, 4411, 11), -- Average M. Atk.
-(20981, 4412, 14), -- Strong P. Def.
-(20981, 4413, 11), -- Average M. Def.
-(20981, 4414, 2), -- Standard Type
-(20981, 4415, 5), -- Blunt Weapons
-(20981, 4416, 9), -- Demons
+(20981, 4065, 6), -- NPC Heal
+(20981, 4078, 6), -- NPC Flamestrike
+(20981, 4276, 1), -- Archery Attack Weak Point
+(20981, 4408, 10), -- HP Modifiers
+(20981, 4409, 1), -- MP Modifiers
+(20981, 4410, 10), -- P. Atk. Modifiers
+(20981, 4411, 11), -- M. Atk. Modifiers
+(20981, 4412, 14), -- P. Def. Modifiers
+(20981, 4413, 11), -- M. Def. Modifiers
+(20981, 4414, 2), -- Armor Type
+(20981, 4415, 5), -- Weapon Type
+(20981, 4416, 9), -- Races
 -- Mul's Knight
 (20982, 4118, 6), -- Paralysis
-(20982, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(20982, 4408, 10), -- HP Increase (2x)
-(20982, 4409, 1), -- MP Increase (1x)
-(20982, 4410, 12), -- Slightly Strong P. Atk.
-(20982, 4411, 12), -- Slightly Strong M. Atk.
-(20982, 4412, 10), -- Slightly Weak P. Def.
-(20982, 4413, 10), -- Slightly Weak M. Def.
-(20982, 4414, 2), -- Standard Type
-(20982, 4415, 7), -- Daggers
-(20982, 4416, 9), -- Demons
+(20982, 4276, 1), -- Archery Attack Weak Point
+(20982, 4408, 10), -- HP Modifiers
+(20982, 4409, 1), -- MP Modifiers
+(20982, 4410, 12), -- P. Atk. Modifiers
+(20982, 4411, 12), -- M. Atk. Modifiers
+(20982, 4412, 10), -- P. Def. Modifiers
+(20982, 4413, 10), -- M. Def. Modifiers
+(20982, 4414, 2), -- Armor Type
+(20982, 4415, 7), -- Weapon Type
+(20982, 4416, 9), -- Races
 -- Binder
-(20983, 4073, 7), -- Stun
-(20983, 4408, 10), -- HP Increase (2x)
-(20983, 4409, 1), -- MP Increase (1x)
-(20983, 4410, 12), -- Slightly Strong P. Atk.
-(20983, 4411, 12), -- Slightly Strong M. Atk.
-(20983, 4412, 12), -- Slightly Strong P. Def.
-(20983, 4413, 11), -- Average M. Def.
-(20983, 4414, 2), -- Standard Type
-(20983, 4415, 3), -- One-handed Sword
-(20983, 4416, 8), -- Angels
+(20983, 4073, 7), -- Shock
+(20983, 4408, 10), -- HP Modifiers
+(20983, 4409, 1), -- MP Modifiers
+(20983, 4410, 12), -- P. Atk. Modifiers
+(20983, 4411, 12), -- M. Atk. Modifiers
+(20983, 4412, 12), -- P. Def. Modifiers
+(20983, 4413, 11), -- M. Def. Modifiers
+(20983, 4414, 2), -- Armor Type
+(20983, 4415, 3), -- Weapon Type
+(20983, 4416, 8), -- Races
 -- Bound Warrior
-(20984, 4073, 7), -- Stun
-(20984, 4408, 10), -- HP Increase (2x)
-(20984, 4409, 1), -- MP Increase (1x)
-(20984, 4410, 12), -- Slightly Strong P. Atk.
-(20984, 4411, 12), -- Slightly Strong M. Atk.
-(20984, 4412, 10), -- Slightly Weak P. Def.
-(20984, 4413, 13), -- Slightly Strong M. Def.
-(20984, 4414, 2), -- Standard Type
-(20984, 4415, 3), -- One-handed Sword
-(20984, 4416, 8), -- Angels
+(20984, 4073, 7), -- Shock
+(20984, 4408, 10), -- HP Modifiers
+(20984, 4409, 1), -- MP Modifiers
+(20984, 4410, 12), -- P. Atk. Modifiers
+(20984, 4411, 12), -- M. Atk. Modifiers
+(20984, 4412, 10), -- P. Def. Modifiers
+(20984, 4413, 13), -- M. Def. Modifiers
+(20984, 4414, 2), -- Armor Type
+(20984, 4415, 3), -- Weapon Type
+(20984, 4416, 8), -- Races
 (20984, 4439, 2), -- Greater Resist Hold
 -- Bound Archer
-(20985, 4071, 5), -- Resist Bow/Crossbow Weapons
-(20985, 4085, 1), -- Critical Damage
+(20985, 4071, 5), -- Resist Archery
+(20985, 4085, 1), -- Critical Power
 (20985, 4086, 1), -- Critical Chance
-(20985, 4120, 7), -- Stun
-(20985, 4408, 10), -- HP Increase (2x)
-(20985, 4409, 1), -- MP Increase (1x)
-(20985, 4410, 12), -- Slightly Strong P. Atk.
-(20985, 4411, 12), -- Slightly Strong M. Atk.
-(20985, 4412, 10), -- Slightly Weak P. Def.
-(20985, 4413, 10), -- Slightly Weak M. Def.
-(20985, 4414, 3), -- Light Armor Type
-(20985, 4415, 9), -- Bows
-(20985, 4416, 8), -- Angels
+(20985, 4120, 7), -- Shock
+(20985, 4408, 10), -- HP Modifiers
+(20985, 4409, 1), -- MP Modifiers
+(20985, 4410, 12), -- P. Atk. Modifiers
+(20985, 4411, 12), -- M. Atk. Modifiers
+(20985, 4412, 10), -- P. Def. Modifiers
+(20985, 4413, 10), -- M. Def. Modifiers
+(20985, 4414, 3), -- Armor Type
+(20985, 4415, 9), -- Weapon Type
+(20985, 4416, 8), -- Races
 -- Sairon
-(20986, 4033, 5), -- Aura Burn
-(20986, 4071, 5), -- Resist Bow/Crossbow Weapons
-(20986, 4408, 10), -- HP Increase (2x)
-(20986, 4409, 1), -- MP Increase (1x)
-(20986, 4410, 11), -- Average P. Atk.
-(20986, 4411, 11), -- Average M. Atk.
-(20986, 4412, 11), -- Average P. Def.
-(20986, 4413, 11), -- Average M. Def.
-(20986, 4414, 2), -- Standard Type
-(20986, 4415, 3), -- One-handed Sword
-(20986, 4416, 9), -- Demons
+(20986, 4033, 5), -- NPC Burn
+(20986, 4071, 5), -- Resist Archery
+(20986, 4408, 10), -- HP Modifiers
+(20986, 4409, 1), -- MP Modifiers
+(20986, 4410, 11), -- P. Atk. Modifiers
+(20986, 4411, 11), -- M. Atk. Modifiers
+(20986, 4412, 11), -- P. Def. Modifiers
+(20986, 4413, 11), -- M. Def. Modifiers
+(20986, 4414, 2), -- Armor Type
+(20986, 4415, 3), -- Weapon Type
+(20986, 4416, 9), -- Races
 -- Sairon's Doll
-(20987, 4065, 5), -- Heal
-(20987, 4087, 5), -- Blaze
-(20987, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(20987, 4408, 10), -- HP Increase (2x)
-(20987, 4409, 1), -- MP Increase (1x)
-(20987, 4410, 11), -- Average P. Atk.
-(20987, 4411, 11), -- Average M. Atk.
-(20987, 4412, 11), -- Average P. Def.
-(20987, 4413, 11), -- Average M. Def.
-(20987, 4414, 2), -- Standard Type
-(20987, 4415, 3), -- One-handed Sword
-(20987, 4416, 9), -- Demons
+(20987, 4065, 5), -- NPC Heal
+(20987, 4087, 5), -- NPC Blaze
+(20987, 4276, 1), -- Archery Attack Weak Point
+(20987, 4408, 10), -- HP Modifiers
+(20987, 4409, 1), -- MP Modifiers
+(20987, 4410, 11), -- P. Atk. Modifiers
+(20987, 4411, 11), -- M. Atk. Modifiers
+(20987, 4412, 11), -- P. Def. Modifiers
+(20987, 4413, 11), -- M. Def. Modifiers
+(20987, 4414, 2), -- Armor Type
+(20987, 4415, 3), -- Weapon Type
+(20987, 4416, 9), -- Races
 -- Sairon's Puppet
-(20988, 4097, 5), -- Chant of Life
+(20988, 4097, 5), -- NPC Chant of Life
 (20988, 4117, 5), -- Paralysis
-(20988, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(20988, 4408, 10), -- HP Increase (2x)
-(20988, 4409, 1), -- MP Increase (1x)
-(20988, 4410, 11), -- Average P. Atk.
-(20988, 4411, 11), -- Average M. Atk.
-(20988, 4412, 11), -- Average P. Def.
-(20988, 4413, 11), -- Average M. Def.
-(20988, 4414, 2), -- Standard Type
-(20988, 4415, 3), -- One-handed Sword
-(20988, 4416, 9), -- Demons
+(20988, 4276, 1), -- Archery Attack Weak Point
+(20988, 4408, 10), -- HP Modifiers
+(20988, 4409, 1), -- MP Modifiers
+(20988, 4410, 11), -- P. Atk. Modifiers
+(20988, 4411, 11), -- M. Atk. Modifiers
+(20988, 4412, 11), -- P. Def. Modifiers
+(20988, 4413, 11), -- M. Def. Modifiers
+(20988, 4414, 2), -- Armor Type
+(20988, 4415, 3), -- Weapon Type
+(20988, 4416, 9), -- Races
 -- Lageos
-(20989, 4067, 3), -- Blow
-(20989, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(20989, 4408, 1), -- HP Increase (1x)
-(20989, 4409, 1), -- MP Increase (1x)
-(20989, 4410, 11), -- Average P. Atk.
-(20989, 4411, 11), -- Average M. Atk.
-(20989, 4412, 11), -- Average P. Def.
-(20989, 4413, 11), -- Average M. Def.
-(20989, 4414, 2), -- Standard Type
-(20989, 4415, 3), -- One-handed Sword
-(20989, 4416, 6), -- Humanoids
+(20989, 4067, 3), -- NPC Mortal Blow
+(20989, 4276, 1), -- Archery Attack Weak Point
+(20989, 4408, 1), -- HP Modifiers
+(20989, 4409, 1), -- MP Modifiers
+(20989, 4410, 11), -- P. Atk. Modifiers
+(20989, 4411, 11), -- M. Atk. Modifiers
+(20989, 4412, 11), -- P. Def. Modifiers
+(20989, 4413, 11), -- M. Def. Modifiers
+(20989, 4414, 2), -- Armor Type
+(20989, 4415, 3), -- Weapon Type
+(20989, 4416, 6), -- Races
 -- Pageos
-(20990, 4097, 3), -- Chant of Life
-(20990, 4408, 1), -- HP Increase (1x)
-(20990, 4409, 1), -- MP Increase (1x)
-(20990, 4410, 11), -- Average P. Atk.
-(20990, 4411, 11), -- Average M. Atk.
-(20990, 4412, 11), -- Average P. Def.
-(20990, 4413, 11), -- Average M. Def.
-(20990, 4414, 2), -- Standard Type
-(20990, 4415, 3), -- One-handed Sword
-(20990, 4416, 6), -- Humanoids
+(20990, 4097, 3), -- NPC Chant of Life
+(20990, 4408, 1), -- HP Modifiers
+(20990, 4409, 1), -- MP Modifiers
+(20990, 4410, 11), -- P. Atk. Modifiers
+(20990, 4411, 11), -- M. Atk. Modifiers
+(20990, 4412, 11), -- P. Def. Modifiers
+(20990, 4413, 11), -- M. Def. Modifiers
+(20990, 4414, 2), -- Armor Type
+(20990, 4415, 3), -- Weapon Type
+(20990, 4416, 6), -- Races
 -- Swamp Tribe
-(20991, 4073, 4), -- Stun
-(20991, 4085, 1), -- Critical Damage
+(20991, 4073, 4), -- Shock
+(20991, 4085, 1), -- Critical Power
 (20991, 4086, 1), -- Critical Chance
-(20991, 4408, 10), -- HP Increase (2x)
-(20991, 4409, 1), -- MP Increase (1x)
-(20991, 4410, 11), -- Average P. Atk.
-(20991, 4411, 11), -- Average M. Atk.
-(20991, 4412, 11), -- Average P. Def.
-(20991, 4413, 11), -- Average M. Def.
-(20991, 4414, 2), -- Standard Type
-(20991, 4415, 3), -- One-handed Sword
-(20991, 4416, 6), -- Humanoids
+(20991, 4408, 10), -- HP Modifiers
+(20991, 4409, 1), -- MP Modifiers
+(20991, 4410, 11), -- P. Atk. Modifiers
+(20991, 4411, 11), -- M. Atk. Modifiers
+(20991, 4412, 11), -- P. Def. Modifiers
+(20991, 4413, 11), -- M. Def. Modifiers
+(20991, 4414, 2), -- Armor Type
+(20991, 4415, 3), -- Weapon Type
+(20991, 4416, 6), -- Races
 -- Swamp Alligator
-(20992, 4067, 4), -- Blow
-(20992, 4408, 10), -- HP Increase (2x)
-(20992, 4409, 1), -- MP Increase (1x)
-(20992, 4410, 11), -- Average P. Atk.
-(20992, 4411, 11), -- Average M. Atk.
-(20992, 4412, 11), -- Average P. Def.
-(20992, 4413, 11), -- Average M. Def.
-(20992, 4414, 2), -- Standard Type
-(20992, 4415, 3), -- One-handed Sword
-(20992, 4416, 6), -- Humanoids
+(20992, 4067, 4), -- NPC Mortal Blow
+(20992, 4408, 10), -- HP Modifiers
+(20992, 4409, 1), -- MP Modifiers
+(20992, 4410, 11), -- P. Atk. Modifiers
+(20992, 4411, 11), -- M. Atk. Modifiers
+(20992, 4412, 11), -- P. Def. Modifiers
+(20992, 4413, 11), -- M. Def. Modifiers
+(20992, 4414, 2), -- Armor Type
+(20992, 4415, 3), -- Weapon Type
+(20992, 4416, 6), -- Races
 -- Swamp Warrior
 (20993, 4228, 4), -- Double Dagger Attack
-(20993, 4408, 10), -- HP Increase (2x)
-(20993, 4409, 1), -- MP Increase (1x)
-(20993, 4410, 11), -- Average P. Atk.
-(20993, 4411, 11), -- Average M. Atk.
-(20993, 4412, 11), -- Average P. Def.
-(20993, 4413, 11), -- Average M. Def.
-(20993, 4414, 2), -- Standard Type
-(20993, 4415, 9), -- Bows
-(20993, 4416, 6), -- Humanoids
+(20993, 4408, 10), -- HP Modifiers
+(20993, 4409, 1), -- MP Modifiers
+(20993, 4410, 11), -- P. Atk. Modifiers
+(20993, 4411, 11), -- M. Atk. Modifiers
+(20993, 4412, 11), -- P. Def. Modifiers
+(20993, 4413, 11), -- M. Def. Modifiers
+(20993, 4414, 2), -- Armor Type
+(20993, 4415, 9), -- Weapon Type
+(20993, 4416, 6), -- Races
 -- Garden Guard Leader
-(20994, 4073, 5), -- Stun
-(20994, 4085, 1), -- Critical Damage
+(20994, 4073, 5), -- Shock
+(20994, 4085, 1), -- Critical Power
 (20994, 4086, 1), -- Critical Chance
-(20994, 4408, 10), -- HP Increase (2x)
-(20994, 4409, 1), -- MP Increase (1x)
-(20994, 4410, 12), -- Slightly Strong P. Atk.
-(20994, 4411, 12), -- Slightly Strong M. Atk.
-(20994, 4412, 15), -- Strong P. Def.
-(20994, 4413, 10), -- Slightly Weak M. Def.
-(20994, 4414, 2), -- Standard Type
-(20994, 4415, 3), -- One-handed Sword
-(20994, 4416, 1), -- Undead
+(20994, 4408, 10), -- HP Modifiers
+(20994, 4409, 1), -- MP Modifiers
+(20994, 4410, 12), -- P. Atk. Modifiers
+(20994, 4411, 12), -- M. Atk. Modifiers
+(20994, 4412, 15), -- P. Def. Modifiers
+(20994, 4413, 10), -- M. Def. Modifiers
+(20994, 4414, 2), -- Armor Type
+(20994, 4415, 3), -- Weapon Type
+(20994, 4416, 1), -- Races
 -- Garden Guard
-(20995, 4067, 4), -- Blow
-(20995, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(20995, 4408, 10), -- HP Increase (2x)
-(20995, 4409, 1), -- MP Increase (1x)
-(20995, 4410, 11), -- Average P. Atk.
-(20995, 4411, 11), -- Average M. Atk.
-(20995, 4412, 11), -- Average P. Def.
-(20995, 4413, 11), -- Average M. Def.
-(20995, 4414, 2), -- Standard Type
-(20995, 4415, 3), -- One-handed Sword
-(20995, 4416, 7), -- Spirits
+(20995, 4067, 4), -- NPC Mortal Blow
+(20995, 4276, 1), -- Archery Attack Weak Point
+(20995, 4408, 10), -- HP Modifiers
+(20995, 4409, 1), -- MP Modifiers
+(20995, 4410, 11), -- P. Atk. Modifiers
+(20995, 4411, 11), -- M. Atk. Modifiers
+(20995, 4412, 11), -- P. Def. Modifiers
+(20995, 4413, 11), -- M. Def. Modifiers
+(20995, 4414, 2), -- Armor Type
+(20995, 4415, 3), -- Weapon Type
+(20995, 4416, 7), -- Races
 -- Spiteful Ghost of Ruins
-(20996, 4071, 5), -- Resist Bow/Crossbow Weapons
-(20996, 4085, 1), -- Critical Damage
-(20996, 4254, 5), -- Prominence
-(20996, 4284, 5), -- Resist Bleed Attacks
-(20996, 4408, 1), -- HP Increase (1x)
-(20996, 4409, 1), -- MP Increase (1x)
-(20996, 4410, 12), -- Slightly Strong P. Atk.
-(20996, 4411, 12), -- Slightly Strong M. Atk.
-(20996, 4412, 10), -- Slightly Weak P. Def.
-(20996, 4413, 18), -- Extremely Strong M. Def.
-(20996, 4414, 2), -- Standard Type
-(20996, 4415, 5), -- Blunt Weapons
-(20996, 4416, 1), -- Undead
+(20996, 4071, 5), -- Resist Archery
+(20996, 4085, 1), -- Critical Power
+(20996, 4254, 5), -- NPC Prominence - Slow
+(20996, 4284, 5), -- Resist Bleeding
+(20996, 4408, 1), -- HP Modifiers
+(20996, 4409, 1), -- MP Modifiers
+(20996, 4410, 12), -- P. Atk. Modifiers
+(20996, 4411, 12), -- M. Atk. Modifiers
+(20996, 4412, 10), -- P. Def. Modifiers
+(20996, 4413, 18), -- M. Def. Modifiers
+(20996, 4414, 2), -- Armor Type
+(20996, 4415, 5), -- Weapon Type
+(20996, 4416, 1), -- Races
 -- Soldier of Grief
-(20997, 4001, 5), -- Windstrike
-(20997, 4034, 5), -- Ice Bolt
-(20997, 4408, 1), -- HP Increase (1x)
-(20997, 4409, 1), -- MP Increase (1x)
-(20997, 4410, 12), -- Slightly Strong P. Atk.
-(20997, 4411, 12), -- Slightly Strong M. Atk.
-(20997, 4412, 10), -- Slightly Weak P. Def.
-(20997, 4413, 10), -- Slightly Weak M. Def.
-(20997, 4414, 2), -- Standard Type
-(20997, 4415, 5), -- Blunt Weapons
-(20997, 4416, 1), -- Undead
+(20997, 4001, 5), -- NPC Wind Strike
+(20997, 4034, 5), -- Decrease Speed
+(20997, 4408, 1), -- HP Modifiers
+(20997, 4409, 1), -- MP Modifiers
+(20997, 4410, 12), -- P. Atk. Modifiers
+(20997, 4411, 12), -- M. Atk. Modifiers
+(20997, 4412, 10), -- P. Def. Modifiers
+(20997, 4413, 10), -- M. Def. Modifiers
+(20997, 4414, 2), -- Armor Type
+(20997, 4415, 5), -- Weapon Type
+(20997, 4416, 1), -- Races
 -- Cruel Punisher
 (20998, 4036, 5), -- Poison
-(20998, 4408, 1), -- HP Increase (1x)
-(20998, 4409, 1), -- MP Increase (1x)
-(20998, 4410, 10), -- Slightly Weak P. Atk.
-(20998, 4411, 10), -- Slightly Weak M. Atk.
-(20998, 4412, 12), -- Slightly Strong P. Def.
-(20998, 4413, 12), -- Slightly Strong M. Def.
-(20998, 4414, 2), -- Standard Type
-(20998, 4415, 5), -- Blunt Weapons
-(20998, 4416, 1), -- Undead
+(20998, 4408, 1), -- HP Modifiers
+(20998, 4409, 1), -- MP Modifiers
+(20998, 4410, 10), -- P. Atk. Modifiers
+(20998, 4411, 10), -- M. Atk. Modifiers
+(20998, 4412, 12), -- P. Def. Modifiers
+(20998, 4413, 12), -- M. Def. Modifiers
+(20998, 4414, 2), -- Armor Type
+(20998, 4415, 5), -- Weapon Type
+(20998, 4416, 1), -- Races
 -- Roving Soul
-(20999, 4032, 5), -- Power Strike
-(20999, 4085, 1), -- Critical Damage
-(20999, 4408, 1), -- HP Increase (1x)
-(20999, 4409, 1), -- MP Increase (1x)
-(20999, 4410, 11), -- Average P. Atk.
-(20999, 4411, 11), -- Average M. Atk.
-(20999, 4412, 11), -- Average P. Def.
-(20999, 4413, 11), -- Average M. Def.
-(20999, 4414, 2), -- Standard Type
-(20999, 4415, 7), -- Daggers
-(20999, 4416, 1), -- Undead
+(20999, 4032, 5), -- NPC Strike
+(20999, 4085, 1), -- Critical Power
+(20999, 4408, 1), -- HP Modifiers
+(20999, 4409, 1), -- MP Modifiers
+(20999, 4410, 11), -- P. Atk. Modifiers
+(20999, 4411, 11), -- M. Atk. Modifiers
+(20999, 4412, 11), -- P. Def. Modifiers
+(20999, 4413, 11), -- M. Def. Modifiers
+(20999, 4414, 2), -- Armor Type
+(20999, 4415, 7), -- Weapon Type
+(20999, 4416, 1), -- Races
 -- Soul of Ruins
-(21000, 4002, 5), -- HP Drain
-(21000, 4408, 1), -- HP Increase (1x)
-(21000, 4409, 1), -- MP Increase (1x)
-(21000, 4410, 10), -- Slightly Weak P. Atk.
-(21000, 4411, 10), -- Slightly Weak M. Atk.
-(21000, 4412, 12), -- Slightly Strong P. Def.
-(21000, 4413, 12), -- Slightly Strong M. Def.
-(21000, 4414, 2), -- Standard Type
-(21000, 4415, 3), -- One-handed Sword
-(21000, 4416, 1), -- Undead
+(21000, 4002, 5), -- NPC HP Drain
+(21000, 4408, 1), -- HP Modifiers
+(21000, 4409, 1), -- MP Modifiers
+(21000, 4410, 10), -- P. Atk. Modifiers
+(21000, 4411, 10), -- M. Atk. Modifiers
+(21000, 4412, 12), -- P. Def. Modifiers
+(21000, 4413, 12), -- M. Def. Modifiers
+(21000, 4414, 2), -- Armor Type
+(21000, 4415, 3), -- Weapon Type
+(21000, 4416, 1), -- Races
 -- Wretched Archer
-(21001, 4085, 1), -- Critical Damage
+(21001, 4085, 1), -- Critical Power
 (21001, 4086, 1), -- Critical Chance
-(21001, 4120, 5), -- Stun
-(21001, 4408, 1), -- HP Increase (1x)
-(21001, 4409, 1), -- MP Increase (1x)
-(21001, 4410, 12), -- Slightly Strong P. Atk.
-(21001, 4411, 12), -- Slightly Strong M. Atk.
-(21001, 4412, 10), -- Slightly Weak P. Def.
-(21001, 4413, 10), -- Slightly Weak M. Def.
-(21001, 4414, 2), -- Standard Type
-(21001, 4415, 9), -- Bows
-(21001, 4416, 1), -- Undead
+(21001, 4120, 5), -- Shock
+(21001, 4408, 1), -- HP Modifiers
+(21001, 4409, 1), -- MP Modifiers
+(21001, 4410, 12), -- P. Atk. Modifiers
+(21001, 4411, 12), -- M. Atk. Modifiers
+(21001, 4412, 10), -- P. Def. Modifiers
+(21001, 4413, 10), -- M. Def. Modifiers
+(21001, 4414, 2), -- Armor Type
+(21001, 4415, 9), -- Weapon Type
+(21001, 4416, 1), -- Races
 -- Doom Scout
-(21002, 4074, 2), -- Haste
-(21002, 4408, 1), -- HP Increase (1x)
-(21002, 4409, 1), -- MP Increase (1x)
-(21002, 4410, 12), -- Slightly Strong P. Atk.
-(21002, 4411, 12), -- Slightly Strong M. Atk.
-(21002, 4412, 10), -- Slightly Weak P. Def.
-(21002, 4413, 10), -- Slightly Weak M. Def.
-(21002, 4414, 2), -- Standard Type
-(21002, 4415, 7), -- Daggers
-(21002, 4416, 1), -- Undead
+(21002, 4074, 2), -- NPC Haste
+(21002, 4408, 1), -- HP Modifiers
+(21002, 4409, 1), -- MP Modifiers
+(21002, 4410, 12), -- P. Atk. Modifiers
+(21002, 4411, 12), -- M. Atk. Modifiers
+(21002, 4412, 10), -- P. Def. Modifiers
+(21002, 4413, 10), -- M. Def. Modifiers
+(21002, 4414, 2), -- Armor Type
+(21002, 4415, 7), -- Weapon Type
+(21002, 4416, 1), -- Races
 -- Grave Lich
-(21003, 4002, 5), -- HP Drain
+(21003, 4002, 5), -- NPC HP Drain
 (21003, 4035, 5), -- Poison
 (21003, 4046, 5), -- Sleep
-(21003, 4094, 5), -- Cancellation
-(21003, 4408, 1), -- HP Increase (1x)
-(21003, 4409, 1), -- MP Increase (1x)
-(21003, 4410, 10), -- Slightly Weak P. Atk.
-(21003, 4411, 10), -- Slightly Weak M. Atk.
-(21003, 4412, 12), -- Slightly Strong P. Def.
-(21003, 4413, 12), -- Slightly Strong M. Def.
-(21003, 4414, 2), -- Standard Type
-(21003, 4415, 3), -- One-handed Sword
-(21003, 4416, 2), -- Magic Creatures
+(21003, 4094, 5), -- NPC Cancel Magic
+(21003, 4408, 1), -- HP Modifiers
+(21003, 4409, 1), -- MP Modifiers
+(21003, 4410, 10), -- P. Atk. Modifiers
+(21003, 4411, 10), -- M. Atk. Modifiers
+(21003, 4412, 12), -- P. Def. Modifiers
+(21003, 4413, 12), -- M. Def. Modifiers
+(21003, 4414, 2), -- Armor Type
+(21003, 4415, 3), -- Weapon Type
+(21003, 4416, 2), -- Races
 -- Dismal Pole
-(21004, 4028, 3), -- Might
-(21004, 4071, 5), -- Resist Bow/Crossbow Weapons
-(21004, 4277, 5), -- Resist Poison Attacks
-(21004, 4408, 1), -- HP Increase (1x)
-(21004, 4409, 1), -- MP Increase (1x)
-(21004, 4410, 10), -- Slightly Weak P. Atk.
-(21004, 4411, 10), -- Slightly Weak M. Atk.
-(21004, 4412, 12), -- Slightly Strong P. Def.
-(21004, 4413, 12), -- Slightly Strong M. Def.
-(21004, 4414, 2), -- Standard Type
-(21004, 4415, 13), -- Two-handed Sword
-(21004, 4416, 5), -- Plants
+(21004, 4028, 3), -- NPC Might
+(21004, 4071, 5), -- Resist Archery
+(21004, 4277, 5), -- Resist Poison
+(21004, 4408, 1), -- HP Modifiers
+(21004, 4409, 1), -- MP Modifiers
+(21004, 4410, 10), -- P. Atk. Modifiers
+(21004, 4411, 10), -- M. Atk. Modifiers
+(21004, 4412, 12), -- P. Def. Modifiers
+(21004, 4413, 12), -- M. Def. Modifiers
+(21004, 4414, 2), -- Armor Type
+(21004, 4415, 13), -- Weapon Type
+(21004, 4416, 5), -- Races
 -- Grave Predator
-(21005, 4074, 2), -- Haste
-(21005, 4408, 1), -- HP Increase (1x)
-(21005, 4409, 1), -- MP Increase (1x)
-(21005, 4410, 12), -- Slightly Strong P. Atk.
-(21005, 4411, 12), -- Slightly Strong M. Atk.
-(21005, 4412, 10), -- Slightly Weak P. Def.
-(21005, 4413, 10), -- Slightly Weak M. Def.
-(21005, 4414, 2), -- Standard Type
-(21005, 4415, 3), -- One-handed Sword
-(21005, 4416, 12), -- Bugs
+(21005, 4074, 2), -- NPC Haste
+(21005, 4408, 1), -- HP Modifiers
+(21005, 4409, 1), -- MP Modifiers
+(21005, 4410, 12), -- P. Atk. Modifiers
+(21005, 4411, 12), -- M. Atk. Modifiers
+(21005, 4412, 10), -- P. Def. Modifiers
+(21005, 4413, 10), -- M. Def. Modifiers
+(21005, 4414, 2), -- Armor Type
+(21005, 4415, 3), -- Weapon Type
+(21005, 4416, 12), -- Races
 -- Doom Servant
-(21006, 4002, 6), -- HP Drain
-(21006, 4038, 5), -- Decrease Atk. Spd.
-(21006, 4085, 1), -- Critical Damage
-(21006, 4100, 6), -- Prominence
-(21006, 4408, 1), -- HP Increase (1x)
-(21006, 4409, 1), -- MP Increase (1x)
-(21006, 4410, 12), -- Slightly Strong P. Atk.
-(21006, 4411, 12), -- Slightly Strong M. Atk.
-(21006, 4412, 10), -- Slightly Weak P. Def.
-(21006, 4413, 10), -- Slightly Weak M. Def.
-(21006, 4414, 2), -- Standard Type
-(21006, 4415, 5), -- Blunt Weapons
-(21006, 4416, 1), -- Undead
+(21006, 4002, 6), -- NPC HP Drain
+(21006, 4038, 5), -- Decrease Atk.Spd.
+(21006, 4085, 1), -- Critical Power
+(21006, 4100, 6), -- NPC Prominence
+(21006, 4408, 1), -- HP Modifiers
+(21006, 4409, 1), -- MP Modifiers
+(21006, 4410, 12), -- P. Atk. Modifiers
+(21006, 4411, 12), -- M. Atk. Modifiers
+(21006, 4412, 10), -- P. Def. Modifiers
+(21006, 4413, 10), -- M. Def. Modifiers
+(21006, 4414, 2), -- Armor Type
+(21006, 4415, 5), -- Weapon Type
+(21006, 4416, 1), -- Races
 -- Doom Guard
 (21007, 4036, 6), -- Poison
-(21007, 4085, 1), -- Critical Damage
-(21007, 4408, 1), -- HP Increase (1x)
-(21007, 4409, 1), -- MP Increase (1x)
-(21007, 4410, 12), -- Slightly Strong P. Atk.
-(21007, 4411, 12), -- Slightly Strong M. Atk.
-(21007, 4412, 10), -- Slightly Weak P. Def.
-(21007, 4413, 10), -- Slightly Weak M. Def.
-(21007, 4414, 2), -- Standard Type
-(21007, 4415, 5), -- Blunt Weapons
-(21007, 4416, 1), -- Undead
+(21007, 4085, 1), -- Critical Power
+(21007, 4408, 1), -- HP Modifiers
+(21007, 4409, 1), -- MP Modifiers
+(21007, 4410, 12), -- P. Atk. Modifiers
+(21007, 4411, 12), -- M. Atk. Modifiers
+(21007, 4412, 10), -- P. Def. Modifiers
+(21007, 4413, 10), -- M. Def. Modifiers
+(21007, 4414, 2), -- Armor Type
+(21007, 4415, 5), -- Weapon Type
+(21007, 4416, 1), -- Races
 -- Doom Archer
-(21008, 4085, 1), -- Critical Damage
-(21008, 4120, 6), -- Stun
-(21008, 4408, 1), -- HP Increase (1x)
-(21008, 4409, 1), -- MP Increase (1x)
-(21008, 4410, 12), -- Slightly Strong P. Atk.
-(21008, 4411, 12), -- Slightly Strong M. Atk.
-(21008, 4412, 10), -- Slightly Weak P. Def.
-(21008, 4413, 10), -- Slightly Weak M. Def.
-(21008, 4414, 2), -- Standard Type
-(21008, 4415, 9), -- Bows
-(21008, 4416, 1), -- Undead
+(21008, 4085, 1), -- Critical Power
+(21008, 4120, 6), -- Shock
+(21008, 4408, 1), -- HP Modifiers
+(21008, 4409, 1), -- MP Modifiers
+(21008, 4410, 12), -- P. Atk. Modifiers
+(21008, 4411, 12), -- M. Atk. Modifiers
+(21008, 4412, 10), -- P. Def. Modifiers
+(21008, 4413, 10), -- M. Def. Modifiers
+(21008, 4414, 2), -- Armor Type
+(21008, 4415, 9), -- Weapon Type
+(21008, 4416, 1), -- Races
 -- Doom Trooper 
-(21009, 4072, 6), -- Stun
-(21009, 4091, 1), -- Spirit Ogre
-(21009, 4244, 6), -- Wild Sweep
-(21009, 4408, 1), -- HP Increase (1x)
-(21009, 4409, 1), -- MP Increase (1x)
-(21009, 4410, 12), -- Slightly Strong P. Atk.
-(21009, 4411, 12), -- Slightly Strong M. Atk.
-(21009, 4412, 10), -- Slightly Weak P. Def.
-(21009, 4413, 10), -- Slightly Weak M. Def.
-(21009, 4414, 2), -- Standard Type
-(21009, 4415, 13), -- Two-handed Sword
-(21009, 4416, 1), -- Undead
+(21009, 4072, 6), -- Shock
+(21009, 4091, 1), -- NPC Ogre Spirit Totem
+(21009, 4244, 6), -- NPC Wild Sweep
+(21009, 4408, 1), -- HP Modifiers
+(21009, 4409, 1), -- MP Modifiers
+(21009, 4410, 12), -- P. Atk. Modifiers
+(21009, 4411, 12), -- M. Atk. Modifiers
+(21009, 4412, 10), -- P. Def. Modifiers
+(21009, 4413, 10), -- M. Def. Modifiers
+(21009, 4414, 2), -- Armor Type
+(21009, 4415, 13), -- Weapon Type
+(21009, 4416, 1), -- Races
 -- Doom Warrior
-(21010, 4030, 3), -- Might
-(21010, 4071, 5), -- Resist Bow/Crossbow Weapons
-(21010, 4085, 1), -- Critical Damage
-(21010, 4408, 1), -- HP Increase (1x)
-(21010, 4409, 1), -- MP Increase (1x)
-(21010, 4410, 12), -- Slightly Strong P. Atk.
-(21010, 4411, 12), -- Slightly Strong M. Atk.
-(21010, 4412, 10), -- Slightly Weak P. Def.
-(21010, 4413, 10), -- Slightly Weak M. Def.
-(21010, 4414, 2), -- Standard Type
-(21010, 4415, 7), -- Daggers
-(21010, 4416, 1), -- Undead
+(21010, 4030, 3), -- NPC Clan Might
+(21010, 4071, 5), -- Resist Archery
+(21010, 4085, 1), -- Critical Power
+(21010, 4408, 1), -- HP Modifiers
+(21010, 4409, 1), -- MP Modifiers
+(21010, 4410, 12), -- P. Atk. Modifiers
+(21010, 4411, 12), -- M. Atk. Modifiers
+(21010, 4412, 10), -- P. Def. Modifiers
+(21010, 4413, 10), -- M. Def. Modifiers
+(21010, 4414, 2), -- Armor Type
+(21010, 4415, 7), -- Weapon Type
+(21010, 4416, 1), -- Races
 -- Ol Mahum Van Grunt
-(21011, 4408, 1), -- HP Increase (1x)
-(21011, 4409, 1), -- MP Increase (1x)
-(21011, 4410, 11), -- Average P. Atk.
-(21011, 4411, 11), -- Average M. Atk.
-(21011, 4412, 11), -- Average P. Def.
-(21011, 4413, 11), -- Average M. Def.
-(21011, 4414, 2), -- Standard Type
-(21011, 4415, 3), -- One-handed Sword
-(21011, 4416, 6), -- Humanoids
+(21011, 4408, 1), -- HP Modifiers
+(21011, 4409, 1), -- MP Modifiers
+(21011, 4410, 11), -- P. Atk. Modifiers
+(21011, 4411, 11), -- M. Atk. Modifiers
+(21011, 4412, 11), -- P. Def. Modifiers
+(21011, 4413, 11), -- M. Def. Modifiers
+(21011, 4414, 2), -- Armor Type
+(21011, 4415, 3), -- Weapon Type
+(21011, 4416, 6), -- Races
 -- Magical Eye
 (21012, 4088, 3), -- Bleed
-(21012, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(21012, 4408, 1), -- HP Increase (1x)
-(21012, 4409, 1), -- MP Increase (1x)
-(21012, 4410, 10), -- Slightly Weak P. Atk.
-(21012, 4411, 10), -- Slightly Weak M. Atk.
-(21012, 4412, 12), -- Slightly Strong P. Def.
-(21012, 4413, 14), -- Strong M. Def.
-(21012, 4414, 2), -- Standard Type
-(21012, 4415, 3), -- One-handed Sword
-(21012, 4416, 2), -- Magic Creatures
+(21012, 4276, 1), -- Archery Attack Weak Point
+(21012, 4408, 1), -- HP Modifiers
+(21012, 4409, 1), -- MP Modifiers
+(21012, 4410, 10), -- P. Atk. Modifiers
+(21012, 4411, 10), -- M. Atk. Modifiers
+(21012, 4412, 12), -- P. Def. Modifiers
+(21012, 4413, 14), -- M. Def. Modifiers
+(21012, 4414, 2), -- Armor Type
+(21012, 4415, 3), -- Weapon Type
+(21012, 4416, 2), -- Races
 -- Ol Mahum Van Archer
-(21013, 4040, 3), -- Power Shot
-(21013, 4408, 1), -- HP Increase (1x)
-(21013, 4409, 1), -- MP Increase (1x)
-(21013, 4410, 12), -- Slightly Strong P. Atk.
-(21013, 4411, 12), -- Slightly Strong M. Atk.
-(21013, 4412, 10), -- Slightly Weak P. Def.
-(21013, 4413, 10), -- Slightly Weak M. Def.
-(21013, 4414, 2), -- Standard Type
-(21013, 4415, 9), -- Bows
-(21013, 4416, 6), -- Humanoids
+(21013, 4040, 3), -- NPC Bow Attack
+(21013, 4408, 1), -- HP Modifiers
+(21013, 4409, 1), -- MP Modifiers
+(21013, 4410, 12), -- P. Atk. Modifiers
+(21013, 4411, 12), -- M. Atk. Modifiers
+(21013, 4412, 10), -- P. Def. Modifiers
+(21013, 4413, 10), -- M. Def. Modifiers
+(21013, 4414, 2), -- Armor Type
+(21013, 4415, 9), -- Weapon Type
+(21013, 4416, 6), -- Races
 -- Lesser Warlike Tyrant
-(21014, 4067, 3), -- Blow
-(21014, 4085, 1), -- Critical Damage
+(21014, 4067, 3), -- NPC Mortal Blow
+(21014, 4085, 1), -- Critical Power
 (21014, 4086, 1), -- Critical Chance
-(21014, 4408, 1), -- HP Increase (1x)
-(21014, 4409, 1), -- MP Increase (1x)
-(21014, 4410, 10), -- Slightly Weak P. Atk.
-(21014, 4411, 10), -- Slightly Weak M. Atk.
-(21014, 4412, 12), -- Slightly Strong P. Def.
-(21014, 4413, 12), -- Slightly Strong M. Def.
-(21014, 4414, 2), -- Standard Type
-(21014, 4415, 3), -- One-handed Sword
-(21014, 4416, 3), -- Beasts
+(21014, 4408, 1), -- HP Modifiers
+(21014, 4409, 1), -- MP Modifiers
+(21014, 4410, 10), -- P. Atk. Modifiers
+(21014, 4411, 10), -- M. Atk. Modifiers
+(21014, 4412, 12), -- P. Def. Modifiers
+(21014, 4413, 12), -- M. Def. Modifiers
+(21014, 4414, 2), -- Armor Type
+(21014, 4415, 3), -- Weapon Type
+(21014, 4416, 3), -- Races
 -- Ol Mahum Van Leader
-(21015, 4032, 3), -- Power Strike
-(21015, 4071, 5), -- Resist Bow/Crossbow Weapons
-(21015, 4408, 1), -- HP Increase (1x)
-(21015, 4409, 1), -- MP Increase (1x)
-(21015, 4410, 12), -- Slightly Strong P. Atk.
-(21015, 4411, 12), -- Slightly Strong M. Atk.
-(21015, 4412, 10), -- Slightly Weak P. Def.
-(21015, 4413, 10), -- Slightly Weak M. Def.
-(21015, 4414, 2), -- Standard Type
-(21015, 4415, 3), -- One-handed Sword
-(21015, 4416, 6), -- Humanoids
+(21015, 4032, 3), -- NPC Strike
+(21015, 4071, 5), -- Resist Archery
+(21015, 4408, 1), -- HP Modifiers
+(21015, 4409, 1), -- MP Modifiers
+(21015, 4410, 12), -- P. Atk. Modifiers
+(21015, 4411, 12), -- M. Atk. Modifiers
+(21015, 4412, 10), -- P. Def. Modifiers
+(21015, 4413, 10), -- M. Def. Modifiers
+(21015, 4414, 2), -- Armor Type
+(21015, 4415, 3), -- Weapon Type
+(21015, 4416, 6), -- Races
 -- Warlike Tyrant
-(21016, 4067, 3), -- Blow
-(21016, 4085, 1), -- Critical Damage
+(21016, 4067, 3), -- NPC Mortal Blow
+(21016, 4085, 1), -- Critical Power
 (21016, 4086, 1), -- Critical Chance
-(21016, 4408, 1), -- HP Increase (1x)
-(21016, 4409, 1), -- MP Increase (1x)
-(21016, 4410, 12), -- Slightly Strong P. Atk.
-(21016, 4411, 12), -- Slightly Strong M. Atk.
-(21016, 4412, 10), -- Slightly Weak P. Def.
-(21016, 4413, 10), -- Slightly Weak M. Def.
-(21016, 4414, 2), -- Standard Type
-(21016, 4415, 3), -- One-handed Sword
-(21016, 4416, 3), -- Beasts
+(21016, 4408, 1), -- HP Modifiers
+(21016, 4409, 1), -- MP Modifiers
+(21016, 4410, 12), -- P. Atk. Modifiers
+(21016, 4411, 12), -- M. Atk. Modifiers
+(21016, 4412, 10), -- P. Def. Modifiers
+(21016, 4413, 10), -- M. Def. Modifiers
+(21016, 4414, 2), -- Armor Type
+(21016, 4415, 3), -- Weapon Type
+(21016, 4416, 3), -- Races
 -- Fallen Orc
-(21017, 4408, 1), -- HP Increase (1x)
-(21017, 4409, 1), -- MP Increase (1x)
-(21017, 4410, 12), -- Slightly Strong P. Atk.
-(21017, 4411, 12), -- Slightly Strong M. Atk.
-(21017, 4412, 10), -- Slightly Weak P. Def.
-(21017, 4413, 10), -- Slightly Weak M. Def.
-(21017, 4414, 2), -- Standard Type
-(21017, 4415, 3), -- One-handed Sword
-(21017, 4416, 6), -- Humanoids
+(21017, 4408, 1), -- HP Modifiers
+(21017, 4409, 1), -- MP Modifiers
+(21017, 4410, 12), -- P. Atk. Modifiers
+(21017, 4411, 12), -- M. Atk. Modifiers
+(21017, 4412, 10), -- P. Def. Modifiers
+(21017, 4413, 10), -- M. Def. Modifiers
+(21017, 4414, 2), -- Armor Type
+(21017, 4415, 3), -- Weapon Type
+(21017, 4416, 6), -- Races
 -- Ancient Gargoyle
-(21018, 4067, 5), -- Blow
-(21018, 4071, 3), -- Resist Bow/Crossbow Weapons
-(21018, 4408, 1), -- HP Increase (1x)
-(21018, 4409, 1), -- MP Increase (1x)
-(21018, 4410, 10), -- Slightly Weak P. Atk.
-(21018, 4411, 10), -- Slightly Weak M. Atk.
-(21018, 4412, 12), -- Slightly Strong P. Def.
-(21018, 4413, 12), -- Slightly Strong M. Def.
-(21018, 4414, 2), -- Standard Type
-(21018, 4415, 3), -- One-handed Sword
-(21018, 4416, 2), -- Magic Creatures
+(21018, 4067, 5), -- NPC Mortal Blow
+(21018, 4071, 3), -- Resist Archery
+(21018, 4408, 1), -- HP Modifiers
+(21018, 4409, 1), -- MP Modifiers
+(21018, 4410, 10), -- P. Atk. Modifiers
+(21018, 4411, 10), -- M. Atk. Modifiers
+(21018, 4412, 12), -- P. Def. Modifiers
+(21018, 4413, 12), -- M. Def. Modifiers
+(21018, 4414, 2), -- Armor Type
+(21018, 4415, 3), -- Weapon Type
+(21018, 4416, 2), -- Races
 -- Fallen Orc Archer
-(21019, 4040, 5), -- Power Shot
-(21019, 4071, 3), -- Resist Bow/Crossbow Weapons
-(21019, 4408, 1), -- HP Increase (1x)
-(21019, 4409, 1), -- MP Increase (1x)
-(21019, 4410, 10), -- Slightly Weak P. Atk.
-(21019, 4411, 10), -- Slightly Weak M. Atk.
-(21019, 4412, 12), -- Slightly Strong P. Def.
-(21019, 4413, 12), -- Slightly Strong M. Def.
-(21019, 4414, 2), -- Standard Type
-(21019, 4415, 9), -- Bows
-(21019, 4416, 6), -- Humanoids
+(21019, 4040, 5), -- NPC Bow Attack
+(21019, 4071, 3), -- Resist Archery
+(21019, 4408, 1), -- HP Modifiers
+(21019, 4409, 1), -- MP Modifiers
+(21019, 4410, 10), -- P. Atk. Modifiers
+(21019, 4411, 10), -- M. Atk. Modifiers
+(21019, 4412, 12), -- P. Def. Modifiers
+(21019, 4413, 12), -- M. Def. Modifiers
+(21019, 4414, 2), -- Armor Type
+(21019, 4415, 9), -- Weapon Type
+(21019, 4416, 6), -- Races
 -- Fallen Orc Shaman
-(21020, 4001, 5), -- Windstrike
+(21020, 4001, 5), -- NPC Wind Strike
 (21020, 4035, 5), -- Poison
-(21020, 4066, 5), -- Twister
+(21020, 4066, 5), -- NPC Twister
 (21020, 4095, 1), -- Damage Shield
-(21020, 4408, 1), -- HP Increase (1x)
-(21020, 4409, 1), -- MP Increase (1x)
-(21020, 4410, 10), -- Slightly Weak P. Atk.
-(21020, 4411, 10), -- Slightly Weak M. Atk.
-(21020, 4412, 12), -- Slightly Strong P. Def.
-(21020, 4413, 12), -- Slightly Strong M. Def.
-(21020, 4414, 2), -- Standard Type
-(21020, 4415, 5), -- Blunt Weapons
-(21020, 4416, 6), -- Humanoids
+(21020, 4408, 1), -- HP Modifiers
+(21020, 4409, 1), -- MP Modifiers
+(21020, 4410, 10), -- P. Atk. Modifiers
+(21020, 4411, 10), -- M. Atk. Modifiers
+(21020, 4412, 12), -- P. Def. Modifiers
+(21020, 4413, 12), -- M. Def. Modifiers
+(21020, 4414, 2), -- Armor Type
+(21020, 4415, 5), -- Weapon Type
+(21020, 4416, 6), -- Races
 -- Sharp Talon Tiger
-(21021, 4073, 5), -- Stun
-(21021, 4085, 1), -- Critical Damage
+(21021, 4073, 5), -- Shock
+(21021, 4085, 1), -- Critical Power
 (21021, 4086, 1), -- Critical Chance
-(21021, 4408, 1), -- HP Increase (1x)
-(21021, 4409, 1), -- MP Increase (1x)
-(21021, 4410, 12), -- Slightly Strong P. Atk.
-(21021, 4411, 12), -- Slightly Strong M. Atk.
-(21021, 4412, 10), -- Slightly Weak P. Def.
-(21021, 4413, 10), -- Slightly Weak M. Def.
-(21021, 4414, 3), -- Light Armor Type
-(21021, 4415, 5), -- Blunt Weapons
-(21021, 4416, 3), -- Beasts
+(21021, 4408, 1), -- HP Modifiers
+(21021, 4409, 1), -- MP Modifiers
+(21021, 4410, 12), -- P. Atk. Modifiers
+(21021, 4411, 12), -- M. Atk. Modifiers
+(21021, 4412, 10), -- P. Def. Modifiers
+(21021, 4413, 10), -- M. Def. Modifiers
+(21021, 4414, 3), -- Armor Type
+(21021, 4415, 5), -- Weapon Type
+(21021, 4416, 3), -- Races
 -- Fallen Orc Captain
-(21022, 4032, 6), -- Power Strike
-(21022, 4085, 1), -- Critical Damage
-(21022, 4408, 1), -- HP Increase (1x)
-(21022, 4409, 1), -- MP Increase (1x)
-(21022, 4410, 12), -- Slightly Strong P. Atk.
-(21022, 4411, 12), -- Slightly Strong M. Atk.
-(21022, 4412, 10), -- Slightly Weak P. Def.
-(21022, 4413, 10), -- Slightly Weak M. Def.
-(21022, 4414, 3), -- Light Armor Type
-(21022, 4415, 5), -- Blunt Weapons
-(21022, 4416, 6), -- Humanoids
+(21022, 4032, 6), -- NPC Strike
+(21022, 4085, 1), -- Critical Power
+(21022, 4408, 1), -- HP Modifiers
+(21022, 4409, 1), -- MP Modifiers
+(21022, 4410, 12), -- P. Atk. Modifiers
+(21022, 4411, 12), -- M. Atk. Modifiers
+(21022, 4412, 10), -- P. Def. Modifiers
+(21022, 4413, 10), -- M. Def. Modifiers
+(21022, 4414, 3), -- Armor Type
+(21022, 4415, 5), -- Weapon Type
+(21022, 4416, 6), -- Races
 -- Sobbing Wind
 (21023, 4046, 2), -- Sleep
-(21023, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(21023, 4408, 1), -- HP Increase (1x)
-(21023, 4409, 1), -- MP Increase (1x)
-(21023, 4410, 10), -- Slightly Weak P. Atk.
-(21023, 4411, 10), -- Slightly Weak M. Atk.
-(21023, 4412, 12), -- Slightly Strong P. Def.
-(21023, 4413, 12), -- Slightly Strong M. Def.
-(21023, 4414, 2), -- Standard Type
-(21023, 4415, 5), -- Blunt Weapons
-(21023, 4416, 7), -- Spirits
+(21023, 4276, 1), -- Archery Attack Weak Point
+(21023, 4408, 1), -- HP Modifiers
+(21023, 4409, 1), -- MP Modifiers
+(21023, 4410, 10), -- P. Atk. Modifiers
+(21023, 4411, 10), -- M. Atk. Modifiers
+(21023, 4412, 12), -- P. Def. Modifiers
+(21023, 4413, 12), -- M. Def. Modifiers
+(21023, 4414, 2), -- Armor Type
+(21023, 4415, 5), -- Weapon Type
+(21023, 4416, 7), -- Races
 -- Babbling Wind
-(21024, 4151, 2), -- Wind Strike
-(21024, 4160, 2), -- Aura Burn
-(21024, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(21024, 4408, 1), -- HP Increase (1x)
-(21024, 4409, 1), -- MP Increase (1x)
-(21024, 4410, 10), -- Slightly Weak P. Atk.
-(21024, 4411, 10), -- Slightly Weak M. Atk.
-(21024, 4412, 12), -- Slightly Strong P. Def.
-(21024, 4413, 12), -- Slightly Strong M. Def.
-(21024, 4414, 2), -- Standard Type
-(21024, 4415, 5), -- Blunt Weapons
-(21024, 4416, 7), -- Spirits
+(21024, 4151, 2), -- NPC Windstrike - Magic
+(21024, 4160, 2), -- NPC Aura Burn - Magic
+(21024, 4276, 1), -- Archery Attack Weak Point
+(21024, 4408, 1), -- HP Modifiers
+(21024, 4409, 1), -- MP Modifiers
+(21024, 4410, 10), -- P. Atk. Modifiers
+(21024, 4411, 10), -- M. Atk. Modifiers
+(21024, 4412, 12), -- P. Def. Modifiers
+(21024, 4413, 12), -- M. Def. Modifiers
+(21024, 4414, 2), -- Armor Type
+(21024, 4415, 5), -- Weapon Type
+(21024, 4416, 7), -- Races
 -- Giggling Wind
-(21025, 4001, 2), -- Windstrike
+(21025, 4001, 2), -- NPC Wind Strike
 (21025, 4047, 2), -- Hold
-(21025, 4098, 2), -- Silence
-(21025, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(21025, 4408, 1), -- HP Increase (1x)
-(21025, 4409, 1), -- MP Increase (1x)
-(21025, 4410, 10), -- Slightly Weak P. Atk.
-(21025, 4411, 10), -- Slightly Weak M. Atk.
-(21025, 4412, 12), -- Slightly Strong P. Def.
-(21025, 4413, 12), -- Slightly Strong M. Def.
-(21025, 4414, 2), -- Standard Type
-(21025, 4415, 5), -- Blunt Weapons
-(21025, 4416, 7), -- Spirits
+(21025, 4098, 2), -- Magic Skill Block
+(21025, 4276, 1), -- Archery Attack Weak Point
+(21025, 4408, 1), -- HP Modifiers
+(21025, 4409, 1), -- MP Modifiers
+(21025, 4410, 10), -- P. Atk. Modifiers
+(21025, 4411, 10), -- M. Atk. Modifiers
+(21025, 4412, 12), -- P. Def. Modifiers
+(21025, 4413, 12), -- M. Def. Modifiers
+(21025, 4414, 2), -- Armor Type
+(21025, 4415, 5), -- Weapon Type
+(21025, 4416, 7), -- Races
 -- Singing Wind
-(21026, 4001, 2), -- Windstrike
-(21026, 4038, 3), -- Decrease Atk. Spd.
-(21026, 4066, 2), -- Twister
-(21026, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(21026, 4408, 1), -- HP Increase (1x)
-(21026, 4409, 1), -- MP Increase (1x)
-(21026, 4410, 10), -- Slightly Weak P. Atk.
-(21026, 4411, 10), -- Slightly Weak M. Atk.
-(21026, 4412, 12), -- Slightly Strong P. Def.
-(21026, 4413, 12), -- Slightly Strong M. Def.
-(21026, 4414, 2), -- Standard Type
-(21026, 4415, 5), -- Blunt Weapons
-(21026, 4416, 7), -- Spirits
+(21026, 4001, 2), -- NPC Wind Strike
+(21026, 4038, 3), -- Decrease Atk.Spd.
+(21026, 4066, 2), -- NPC Twister
+(21026, 4276, 1), -- Archery Attack Weak Point
+(21026, 4408, 1), -- HP Modifiers
+(21026, 4409, 1), -- MP Modifiers
+(21026, 4410, 10), -- P. Atk. Modifiers
+(21026, 4411, 10), -- M. Atk. Modifiers
+(21026, 4412, 12), -- P. Def. Modifiers
+(21026, 4413, 12), -- M. Def. Modifiers
+(21026, 4414, 2), -- Armor Type
+(21026, 4415, 5), -- Weapon Type
+(21026, 4416, 7), -- Races
 -- Ogre
-(21034, 4032, 3), -- Power Strike
-(21034, 4085, 1), -- Critical Damage
-(21034, 4091, 1), -- Spirit Ogre
-(21034, 4225, 1), -- Resist Stun Attacks
-(21034, 4408, 9), -- HP Increase (1/2x)
-(21034, 4409, 1), -- MP Increase (1x)
-(21034, 4410, 14), -- Strong P. Atk.
-(21034, 4411, 14), -- Strong M. Atk.
-(21034, 4412, 8), -- Weak P. Def.
-(21034, 4413, 8), -- Weak M. Def.
-(21034, 4414, 2), -- Standard Type
-(21034, 4415, 6), -- Blunt Weapons
-(21034, 4416, 11), -- Giants
+(21034, 4032, 3), -- NPC Strike
+(21034, 4085, 1), -- Critical Power
+(21034, 4091, 1), -- NPC Ogre Spirit Totem
+(21034, 4225, 1), -- Resist Shock
+(21034, 4408, 9), -- HP Modifiers
+(21034, 4409, 1), -- MP Modifiers
+(21034, 4410, 14), -- P. Atk. Modifiers
+(21034, 4411, 14), -- M. Atk. Modifiers
+(21034, 4412, 8), -- P. Def. Modifiers
+(21034, 4413, 8), -- M. Def. Modifiers
+(21034, 4414, 2), -- Armor Type
+(21034, 4415, 6), -- Weapon Type
+(21034, 4416, 11), -- Races
 (21034, 4599, 3), -- Decrease Speed
 -- Catherok
-(21035, 4032, 4), -- Power Strike
-(21035, 4072, 4), -- Stun
-(21035, 4085, 1), -- Critical Damage
-(21035, 4408, 10), -- HP Increase (2x)
-(21035, 4409, 1), -- MP Increase (1x)
-(21035, 4410, 12), -- Slightly Strong P. Atk.
-(21035, 4411, 12), -- Slightly Strong M. Atk.
-(21035, 4412, 10), -- Slightly Weak P. Def.
-(21035, 4413, 12), -- Slightly Strong M. Def.
-(21035, 4414, 3), -- Light Armor Type
-(21035, 4415, 3), -- One-handed Sword
-(21035, 4416, 6), -- Humanoids
+(21035, 4032, 4), -- NPC Strike
+(21035, 4072, 4), -- Shock
+(21035, 4085, 1), -- Critical Power
+(21035, 4408, 10), -- HP Modifiers
+(21035, 4409, 1), -- MP Modifiers
+(21035, 4410, 12), -- P. Atk. Modifiers
+(21035, 4411, 12), -- M. Atk. Modifiers
+(21035, 4412, 10), -- P. Def. Modifiers
+(21035, 4413, 12), -- M. Def. Modifiers
+(21035, 4414, 3), -- Armor Type
+(21035, 4415, 3), -- Weapon Type
+(21035, 4416, 6), -- Races
 -- Shindebarn
-(21036, 4033, 4), -- Aura Burn
-(21036, 4077, 4), -- Aura Burn
-(21036, 4085, 1), -- Critical Damage
+(21036, 4033, 4), -- NPC Burn
+(21036, 4077, 4), -- NPC Aura Burn
+(21036, 4085, 1), -- Critical Power
 (21036, 4093, 1), -- Evasion
-(21036, 4408, 10), -- HP Increase (2x)
-(21036, 4409, 1), -- MP Increase (1x)
-(21036, 4410, 10), -- Slightly Weak P. Atk.
-(21036, 4411, 12), -- Slightly Strong M. Atk.
-(21036, 4412, 10), -- Slightly Weak P. Def.
-(21036, 4413, 14), -- Strong M. Def.
-(21036, 4414, 2), -- Standard Type
-(21036, 4415, 5), -- Blunt Weapons
-(21036, 4416, 2), -- Magic Creatures
+(21036, 4408, 10), -- HP Modifiers
+(21036, 4409, 1), -- MP Modifiers
+(21036, 4410, 10), -- P. Atk. Modifiers
+(21036, 4411, 12), -- M. Atk. Modifiers
+(21036, 4412, 10), -- P. Def. Modifiers
+(21036, 4413, 14), -- M. Def. Modifiers
+(21036, 4414, 2), -- Armor Type
+(21036, 4415, 5), -- Weapon Type
+(21036, 4416, 2), -- Races
 -- Ossiud
-(21037, 4032, 4), -- Power Strike
+(21037, 4032, 4), -- NPC Strike
 (21037, 4095, 1), -- Damage Shield
-(21037, 4408, 10), -- HP Increase (2x)
-(21037, 4409, 1), -- MP Increase (1x)
-(21037, 4410, 14), -- Strong P. Atk.
-(21037, 4411, 12), -- Slightly Strong M. Atk.
-(21037, 4412, 12), -- Slightly Strong P. Def.
-(21037, 4413, 13), -- Slightly Strong M. Def.
-(21037, 4414, 2), -- Standard Type
-(21037, 4415, 1), -- Bare Hands
-(21037, 4416, 2), -- Magic Creatures
+(21037, 4408, 10), -- HP Modifiers
+(21037, 4409, 1), -- MP Modifiers
+(21037, 4410, 14), -- P. Atk. Modifiers
+(21037, 4411, 12), -- M. Atk. Modifiers
+(21037, 4412, 12), -- P. Def. Modifiers
+(21037, 4413, 13), -- M. Def. Modifiers
+(21037, 4414, 2), -- Armor Type
+(21037, 4415, 1), -- Weapon Type
+(21037, 4416, 2), -- Races
 (21037, 4439, 5), -- Greater Resist Hold
 -- Liangma
 (21038, 4093, 1), -- Evasion
-(21038, 4154, 4), -- Mana Burn
-(21038, 4160, 4), -- Aura Burn
-(21038, 4408, 10), -- HP Increase (2x)
-(21038, 4409, 1), -- MP Increase (1x)
-(21038, 4410, 13), -- Slightly Strong P. Atk.
-(21038, 4411, 14), -- Strong M. Atk.
-(21038, 4412, 6), -- Very Weak P. Def.
-(21038, 4413, 8), -- Weak M. Def.
-(21038, 4414, 2), -- Standard Type
-(21038, 4415, 5), -- Blunt Weapons
-(21038, 4416, 2), -- Magic Creatures
+(21038, 4154, 4), -- NPC MP Drain - Magic
+(21038, 4160, 4), -- NPC Aura Burn - Magic
+(21038, 4408, 10), -- HP Modifiers
+(21038, 4409, 1), -- MP Modifiers
+(21038, 4410, 13), -- P. Atk. Modifiers
+(21038, 4411, 14), -- M. Atk. Modifiers
+(21038, 4412, 6), -- P. Def. Modifiers
+(21038, 4413, 8), -- M. Def. Modifiers
+(21038, 4414, 2), -- Armor Type
+(21038, 4415, 5), -- Weapon Type
+(21038, 4416, 2), -- Races
 (21038, 4453, 2), -- Sleep Attack Weak Point
 -- Snipe Cohort
-(21039, 4065, 4), -- Heal
-(21039, 4078, 4), -- Flame Strike
-(21039, 4408, 10), -- HP Increase (2x)
-(21039, 4409, 1), -- MP Increase (1x)
-(21039, 4410, 10), -- Slightly Weak P. Atk.
-(21039, 4411, 13), -- Slightly Strong M. Atk.
-(21039, 4412, 8), -- Weak P. Def.
-(21039, 4413, 11), -- Average M. Def.
-(21039, 4414, 2), -- Standard Type
-(21039, 4415, 1), -- Bare Hands
-(21039, 4416, 3), -- Beasts
+(21039, 4065, 4), -- NPC Heal
+(21039, 4078, 4), -- NPC Flamestrike
+(21039, 4408, 10), -- HP Modifiers
+(21039, 4409, 1), -- MP Modifiers
+(21039, 4410, 10), -- P. Atk. Modifiers
+(21039, 4411, 13), -- M. Atk. Modifiers
+(21039, 4412, 8), -- P. Def. Modifiers
+(21039, 4413, 11), -- M. Def. Modifiers
+(21039, 4414, 2), -- Armor Type
+(21039, 4415, 1), -- Weapon Type
+(21039, 4416, 3), -- Races
 -- Soldier of Darkness
-(21040, 4038, 4), -- Decrease Atk. Spd.
-(21040, 4065, 4), -- Heal
-(21040, 4408, 10), -- HP Increase (2x)
-(21040, 4409, 1), -- MP Increase (1x)
-(21040, 4410, 12), -- Slightly Strong P. Atk.
-(21040, 4411, 13), -- Slightly Strong M. Atk.
-(21040, 4412, 11), -- Average P. Def.
-(21040, 4413, 11), -- Average M. Def.
-(21040, 4414, 2), -- Standard Type
-(21040, 4415, 3), -- One-handed Sword
-(21040, 4416, 1), -- Undead
+(21040, 4038, 4), -- Decrease Atk.Spd.
+(21040, 4065, 4), -- NPC Heal
+(21040, 4408, 10), -- HP Modifiers
+(21040, 4409, 1), -- MP Modifiers
+(21040, 4410, 12), -- P. Atk. Modifiers
+(21040, 4411, 13), -- M. Atk. Modifiers
+(21040, 4412, 11), -- P. Def. Modifiers
+(21040, 4413, 11), -- M. Def. Modifiers
+(21040, 4414, 2), -- Armor Type
+(21040, 4415, 3), -- Weapon Type
+(21040, 4416, 1), -- Races
 -- Beast Lord
-(21058, 4072, 6), -- Stun
-(21058, 4085, 1), -- Critical Damage
+(21058, 4072, 6), -- Shock
+(21058, 4085, 1), -- Critical Power
 (21058, 4086, 1), -- Critical Chance
-(21058, 4408, 10), -- HP Increase (2x)
-(21058, 4409, 1), -- MP Increase (1x)
-(21058, 4410, 12), -- Slightly Strong P. Atk.
-(21058, 4411, 12), -- Slightly Strong M. Atk.
-(21058, 4412, 10), -- Slightly Weak P. Def.
-(21058, 4413, 14), -- Strong M. Def.
-(21058, 4414, 2), -- Standard Type
-(21058, 4415, 5), -- Blunt Weapons
-(21058, 4416, 3), -- Beasts
+(21058, 4408, 10), -- HP Modifiers
+(21058, 4409, 1), -- MP Modifiers
+(21058, 4410, 12), -- P. Atk. Modifiers
+(21058, 4411, 12), -- M. Atk. Modifiers
+(21058, 4412, 10), -- P. Def. Modifiers
+(21058, 4413, 14), -- M. Def. Modifiers
+(21058, 4414, 2), -- Armor Type
+(21058, 4415, 5), -- Weapon Type
+(21058, 4416, 3), -- Races
 -- Beast Guardian
-(21059, 4039, 5), -- Mana Drain
-(21059, 4097, 5), -- Chant of Life
-(21059, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(21059, 4408, 10), -- HP Increase (2x)
-(21059, 4409, 1), -- MP Increase (1x)
-(21059, 4410, 12), -- Slightly Strong P. Atk.
-(21059, 4411, 12), -- Slightly Strong M. Atk.
-(21059, 4412, 10), -- Slightly Weak P. Def.
-(21059, 4413, 10), -- Slightly Weak M. Def.
-(21059, 4414, 2), -- Standard Type
-(21059, 4415, 5), -- Blunt Weapons
-(21059, 4416, 3), -- Beasts
+(21059, 4039, 5), -- NPC MP Drain
+(21059, 4097, 5), -- NPC Chant of Life
+(21059, 4276, 1), -- Archery Attack Weak Point
+(21059, 4408, 10), -- HP Modifiers
+(21059, 4409, 1), -- MP Modifiers
+(21059, 4410, 12), -- P. Atk. Modifiers
+(21059, 4411, 12), -- M. Atk. Modifiers
+(21059, 4412, 10), -- P. Def. Modifiers
+(21059, 4413, 10), -- M. Def. Modifiers
+(21059, 4414, 2), -- Armor Type
+(21059, 4415, 5), -- Weapon Type
+(21059, 4416, 3), -- Races
 -- Beast Seer
-(21060, 4065, 5), -- Heal
-(21060, 4098, 5), -- Silence
-(21060, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(21060, 4408, 10), -- HP Increase (2x)
-(21060, 4409, 1), -- MP Increase (1x)
-(21060, 4410, 10), -- Slightly Weak P. Atk.
-(21060, 4411, 10), -- Slightly Weak M. Atk.
-(21060, 4412, 12), -- Slightly Strong P. Def.
-(21060, 4413, 12), -- Slightly Strong M. Def.
-(21060, 4414, 2), -- Standard Type
-(21060, 4415, 5), -- Blunt Weapons
-(21060, 4416, 2), -- Magic Creatures
+(21060, 4065, 5), -- NPC Heal
+(21060, 4098, 5), -- Magic Skill Block
+(21060, 4276, 1), -- Archery Attack Weak Point
+(21060, 4408, 10), -- HP Modifiers
+(21060, 4409, 1), -- MP Modifiers
+(21060, 4410, 10), -- P. Atk. Modifiers
+(21060, 4411, 10), -- M. Atk. Modifiers
+(21060, 4412, 12), -- P. Def. Modifiers
+(21060, 4413, 12), -- M. Def. Modifiers
+(21060, 4414, 2), -- Armor Type
+(21060, 4415, 5), -- Weapon Type
+(21060, 4416, 2), -- Races
 -- Hallate's Guardian
-(21061, 4032, 6), -- Power Strike
-(21061, 4072, 6), -- Stun
-(21061, 4090, 1), -- Spirit Wolf
-(21061, 4408, 12), -- HP Increase (4x)
-(21061, 4409, 1), -- MP Increase (1x)
-(21061, 4410, 12), -- Slightly Strong P. Atk.
-(21061, 4411, 12), -- Slightly Strong M. Atk.
-(21061, 4412, 12), -- Slightly Strong P. Def.
-(21061, 4413, 11), -- Average M. Def.
-(21061, 4414, 2), -- Standard Type
-(21061, 4415, 5), -- Blunt Weapons
-(21061, 4416, 9), -- Demons
+(21061, 4032, 6), -- NPC Strike
+(21061, 4072, 6), -- Shock
+(21061, 4090, 1), -- NPC Wolf Spirit Totem
+(21061, 4408, 12), -- HP Modifiers
+(21061, 4409, 1), -- MP Modifiers
+(21061, 4410, 12), -- P. Atk. Modifiers
+(21061, 4411, 12), -- M. Atk. Modifiers
+(21061, 4412, 12), -- P. Def. Modifiers
+(21061, 4413, 11), -- M. Def. Modifiers
+(21061, 4414, 2), -- Armor Type
+(21061, 4415, 5), -- Weapon Type
+(21061, 4416, 9), -- Races
 -- Messenger Angel
-(21062, 4033, 7), -- Aura Burn
-(21062, 4073, 7), -- Stun
-(21062, 4085, 1), -- Critical Damage
+(21062, 4033, 7), -- NPC Burn
+(21062, 4073, 7), -- Shock
+(21062, 4085, 1), -- Critical Power
 (21062, 4086, 1), -- Critical Chance
-(21062, 4092, 1), -- Spirit Puma
-(21062, 4408, 12), -- HP Increase (4x)
-(21062, 4409, 1), -- MP Increase (1x)
-(21062, 4410, 13), -- Slightly Strong P. Atk.
-(21062, 4411, 13), -- Slightly Strong M. Atk.
-(21062, 4412, 11), -- Average P. Def.
-(21062, 4413, 9), -- Slightly Weak M. Def.
-(21062, 4414, 2), -- Standard Type
-(21062, 4415, 5), -- Blunt Weapons
-(21062, 4416, 8), -- Angels
+(21062, 4092, 1), -- NPC Puma Spirit Totem
+(21062, 4408, 12), -- HP Modifiers
+(21062, 4409, 1), -- MP Modifiers
+(21062, 4410, 13), -- P. Atk. Modifiers
+(21062, 4411, 13), -- M. Atk. Modifiers
+(21062, 4412, 11), -- P. Def. Modifiers
+(21062, 4413, 9), -- M. Def. Modifiers
+(21062, 4414, 2), -- Armor Type
+(21062, 4415, 5), -- Weapon Type
+(21062, 4416, 8), -- Races
 -- Messenger Angel
 (21063, 4047, 7), -- Hold
-(21063, 4066, 7), -- Twister
-(21063, 4085, 1), -- Critical Damage
+(21063, 4066, 7), -- NPC Twister
+(21063, 4085, 1), -- Critical Power
 (21063, 4086, 1), -- Critical Chance
-(21063, 4098, 7), -- Silence
-(21063, 4408, 12), -- HP Increase (4x)
-(21063, 4409, 1), -- MP Increase (1x)
-(21063, 4410, 10), -- Slightly Weak P. Atk.
-(21063, 4411, 10), -- Slightly Weak M. Atk.
-(21063, 4412, 14), -- Strong P. Def.
-(21063, 4413, 12), -- Slightly Strong M. Def.
-(21063, 4414, 2), -- Standard Type
-(21063, 4415, 5), -- Blunt Weapons
-(21063, 4416, 8), -- Angels
+(21063, 4098, 7), -- Magic Skill Block
+(21063, 4408, 12), -- HP Modifiers
+(21063, 4409, 1), -- MP Modifiers
+(21063, 4410, 10), -- P. Atk. Modifiers
+(21063, 4411, 10), -- M. Atk. Modifiers
+(21063, 4412, 14), -- P. Def. Modifiers
+(21063, 4413, 12), -- M. Def. Modifiers
+(21063, 4414, 2), -- Armor Type
+(21063, 4415, 5), -- Weapon Type
+(21063, 4416, 8), -- Races
 -- Platinum Guardian Archer
-(21064, 4040, 7), -- Power Shot
+(21064, 4040, 7), -- NPC Bow Attack
 (21064, 4086, 1), -- Critical Chance
 (21064, 4095, 1), -- Damage Shield
-(21064, 4408, 12), -- HP Increase (4x)
-(21064, 4409, 1), -- MP Increase (1x)
-(21064, 4410, 12), -- Slightly Strong P. Atk.
-(21064, 4411, 12), -- Slightly Strong M. Atk.
-(21064, 4412, 10), -- Slightly Weak P. Def.
-(21064, 4413, 10), -- Slightly Weak M. Def.
-(21064, 4414, 3), -- Light Armor Type
-(21064, 4415, 9), -- Bows
-(21064, 4416, 8), -- Angels
+(21064, 4408, 12), -- HP Modifiers
+(21064, 4409, 1), -- MP Modifiers
+(21064, 4410, 12), -- P. Atk. Modifiers
+(21064, 4411, 12), -- M. Atk. Modifiers
+(21064, 4412, 10), -- P. Def. Modifiers
+(21064, 4413, 10), -- M. Def. Modifiers
+(21064, 4414, 3), -- Armor Type
+(21064, 4415, 9), -- Weapon Type
+(21064, 4416, 8), -- Races
 -- Platinum Guardian Warrior
-(21065, 4071, 5), -- Resist Bow/Crossbow Weapons
-(21065, 4073, 7), -- Stun
-(21065, 4085, 1), -- Critical Damage
+(21065, 4071, 5), -- Resist Archery
+(21065, 4073, 7), -- Shock
+(21065, 4085, 1), -- Critical Power
 (21065, 4086, 1), -- Critical Chance
-(21065, 4408, 13), -- HP Increase (5x)
-(21065, 4409, 1), -- MP Increase (1x)
-(21065, 4410, 10), -- Slightly Weak P. Atk.
-(21065, 4411, 10), -- Slightly Weak M. Atk.
-(21065, 4412, 12), -- Slightly Strong P. Def.
-(21065, 4413, 12), -- Slightly Strong M. Def.
-(21065, 4414, 2), -- Standard Type
-(21065, 4415, 5), -- Blunt Weapons
-(21065, 4416, 8), -- Angels
+(21065, 4408, 13), -- HP Modifiers
+(21065, 4409, 1), -- MP Modifiers
+(21065, 4410, 10), -- P. Atk. Modifiers
+(21065, 4411, 10), -- M. Atk. Modifiers
+(21065, 4412, 12), -- P. Def. Modifiers
+(21065, 4413, 12), -- M. Def. Modifiers
+(21065, 4414, 2), -- Armor Type
+(21065, 4415, 5), -- Weapon Type
+(21065, 4416, 8), -- Races
 -- Platinum Guardian Shaman
-(21066, 4039, 7), -- Mana Drain
-(21066, 4100, 7), -- Prominence
+(21066, 4039, 7), -- NPC MP Drain
+(21066, 4100, 7), -- NPC Prominence
 (21066, 4118, 7), -- Paralysis
-(21066, 4408, 13), -- HP Increase (5x)
-(21066, 4409, 1), -- MP Increase (1x)
-(21066, 4410, 12), -- Slightly Strong P. Atk.
-(21066, 4411, 12), -- Slightly Strong M. Atk.
-(21066, 4412, 10), -- Slightly Weak P. Def.
-(21066, 4413, 14), -- Strong M. Def.
-(21066, 4414, 2), -- Standard Type
-(21066, 4415, 5), -- Blunt Weapons
-(21066, 4416, 8), -- Angels
+(21066, 4408, 13), -- HP Modifiers
+(21066, 4409, 1), -- MP Modifiers
+(21066, 4410, 12), -- P. Atk. Modifiers
+(21066, 4411, 12), -- M. Atk. Modifiers
+(21066, 4412, 10), -- P. Def. Modifiers
+(21066, 4413, 14), -- M. Def. Modifiers
+(21066, 4414, 2), -- Armor Type
+(21066, 4415, 5), -- Weapon Type
+(21066, 4416, 8), -- Races
 -- Guardian Archangel
-(21067, 4032, 7), -- Power Strike
-(21067, 4033, 7), -- Aura Burn
-(21067, 4085, 1), -- Critical Damage
+(21067, 4032, 7), -- NPC Strike
+(21067, 4033, 7), -- NPC Burn
+(21067, 4085, 1), -- Critical Power
 (21067, 4086, 1), -- Critical Chance
-(21067, 4091, 1), -- Spirit Ogre
-(21067, 4408, 13), -- HP Increase (5x)
-(21067, 4409, 1), -- MP Increase (1x)
-(21067, 4410, 13), -- Slightly Strong P. Atk.
-(21067, 4411, 13), -- Slightly Strong M. Atk.
-(21067, 4412, 11), -- Average P. Def.
-(21067, 4413, 9), -- Slightly Weak M. Def.
-(21067, 4414, 2), -- Standard Type
-(21067, 4415, 5), -- Blunt Weapons
-(21067, 4416, 8), -- Angels
+(21067, 4091, 1), -- NPC Ogre Spirit Totem
+(21067, 4408, 13), -- HP Modifiers
+(21067, 4409, 1), -- MP Modifiers
+(21067, 4410, 13), -- P. Atk. Modifiers
+(21067, 4411, 13), -- M. Atk. Modifiers
+(21067, 4412, 11), -- P. Def. Modifiers
+(21067, 4413, 9), -- M. Def. Modifiers
+(21067, 4414, 2), -- Armor Type
+(21067, 4415, 5), -- Weapon Type
+(21067, 4416, 8), -- Races
 -- Guardian Archangel
 (21068, 4046, 7), -- Sleep
-(21068, 4085, 1), -- Critical Damage
+(21068, 4085, 1), -- Critical Power
 (21068, 4086, 1), -- Critical Chance
-(21068, 4087, 7), -- Blaze
-(21068, 4094, 7), -- Cancellation
-(21068, 4408, 13), -- HP Increase (5x)
-(21068, 4409, 1), -- MP Increase (1x)
-(21068, 4410, 12), -- Slightly Strong P. Atk.
-(21068, 4411, 12), -- Slightly Strong M. Atk.
-(21068, 4412, 12), -- Slightly Strong P. Def.
-(21068, 4413, 10), -- Slightly Weak M. Def.
-(21068, 4414, 2), -- Standard Type
-(21068, 4415, 5), -- Blunt Weapons
-(21068, 4416, 8), -- Angels
+(21068, 4087, 7), -- NPC Blaze
+(21068, 4094, 7), -- NPC Cancel Magic
+(21068, 4408, 13), -- HP Modifiers
+(21068, 4409, 1), -- MP Modifiers
+(21068, 4410, 12), -- P. Atk. Modifiers
+(21068, 4411, 12), -- M. Atk. Modifiers
+(21068, 4412, 12), -- P. Def. Modifiers
+(21068, 4413, 10), -- M. Def. Modifiers
+(21068, 4414, 2), -- Armor Type
+(21068, 4415, 5), -- Weapon Type
+(21068, 4416, 8), -- Races
 -- Platinum Guardian Prefect
-(21069, 4073, 7), -- Stun
-(21069, 4085, 1), -- Critical Damage
+(21069, 4073, 7), -- Shock
+(21069, 4085, 1), -- Critical Power
 (21069, 4086, 1), -- Critical Chance
-(21069, 4408, 13), -- HP Increase (5x)
-(21069, 4409, 1), -- MP Increase (1x)
-(21069, 4410, 13), -- Slightly Strong P. Atk.
-(21069, 4411, 13), -- Slightly Strong M. Atk.
-(21069, 4412, 16), -- Very Strong P. Def.
-(21069, 4413, 9), -- Slightly Weak M. Def.
-(21069, 4414, 2), -- Standard Type
-(21069, 4415, 3), -- One-handed Sword
-(21069, 4416, 8), -- Angels
+(21069, 4408, 13), -- HP Modifiers
+(21069, 4409, 1), -- MP Modifiers
+(21069, 4410, 13), -- P. Atk. Modifiers
+(21069, 4411, 13), -- M. Atk. Modifiers
+(21069, 4412, 16), -- P. Def. Modifiers
+(21069, 4413, 9), -- M. Def. Modifiers
+(21069, 4414, 2), -- Armor Type
+(21069, 4415, 3), -- Weapon Type
+(21069, 4416, 8), -- Races
 -- Seal Archangel
-(21070, 4032, 8), -- Power Strike
-(21070, 4033, 8), -- Aura Burn
-(21070, 4085, 1), -- Critical Damage
+(21070, 4032, 8), -- NPC Strike
+(21070, 4033, 8), -- NPC Burn
+(21070, 4085, 1), -- Critical Power
 (21070, 4086, 1), -- Critical Chance
-(21070, 4092, 1), -- Spirit Puma
-(21070, 4408, 13), -- HP Increase (5x)
-(21070, 4409, 1), -- MP Increase (1x)
-(21070, 4410, 13), -- Slightly Strong P. Atk.
-(21070, 4411, 13), -- Slightly Strong M. Atk.
-(21070, 4412, 11), -- Average P. Def.
-(21070, 4413, 9), -- Slightly Weak M. Def.
-(21070, 4414, 2), -- Standard Type
-(21070, 4415, 5), -- Blunt Weapons
-(21070, 4416, 8), -- Angels
+(21070, 4092, 1), -- NPC Puma Spirit Totem
+(21070, 4408, 13), -- HP Modifiers
+(21070, 4409, 1), -- MP Modifiers
+(21070, 4410, 13), -- P. Atk. Modifiers
+(21070, 4411, 13), -- M. Atk. Modifiers
+(21070, 4412, 11), -- P. Def. Modifiers
+(21070, 4413, 9), -- M. Def. Modifiers
+(21070, 4414, 2), -- Armor Type
+(21070, 4415, 5), -- Weapon Type
+(21070, 4416, 8), -- Races
 -- Seal Archangel
-(21071, 4066, 8), -- Twister
-(21071, 4085, 1), -- Critical Damage
+(21071, 4066, 8), -- NPC Twister
+(21071, 4085, 1), -- Critical Power
 (21071, 4086, 1), -- Critical Chance
-(21071, 4087, 8), -- Blaze
+(21071, 4087, 8), -- NPC Blaze
 (21071, 4118, 8), -- Paralysis
-(21071, 4408, 13), -- HP Increase (5x)
-(21071, 4409, 1), -- MP Increase (1x)
-(21071, 4410, 10), -- Slightly Weak P. Atk.
-(21071, 4411, 10), -- Slightly Weak M. Atk.
-(21071, 4412, 14), -- Strong P. Def.
-(21071, 4413, 12), -- Slightly Strong M. Def.
-(21071, 4414, 2), -- Standard Type
-(21071, 4415, 5), -- Blunt Weapons
-(21071, 4416, 8), -- Angels
+(21071, 4408, 13), -- HP Modifiers
+(21071, 4409, 1), -- MP Modifiers
+(21071, 4410, 10), -- P. Atk. Modifiers
+(21071, 4411, 10), -- M. Atk. Modifiers
+(21071, 4412, 14), -- P. Def. Modifiers
+(21071, 4413, 12), -- M. Def. Modifiers
+(21071, 4414, 2), -- Armor Type
+(21071, 4415, 5), -- Weapon Type
+(21071, 4416, 8), -- Races
 -- Platinum Guardian Chief
-(21072, 4102, 2), -- Surrender To Fire
-(21072, 4158, 8), -- Prominence
-(21072, 4160, 8), -- Aura Burn
-(21072, 4408, 13), -- HP Increase (5x)
-(21072, 4409, 1), -- MP Increase (1x)
-(21072, 4410, 12), -- Slightly Strong P. Atk.
-(21072, 4411, 12), -- Slightly Strong M. Atk.
-(21072, 4412, 10), -- Slightly Weak P. Def.
-(21072, 4413, 13), -- Slightly Strong M. Def.
-(21072, 4414, 2), -- Standard Type
-(21072, 4415, 5), -- Blunt Weapons
-(21072, 4416, 8), -- Angels
+(21072, 4102, 2), -- Become weak against line of fire
+(21072, 4158, 8), -- NPC Prominence - Magic
+(21072, 4160, 8), -- NPC Aura Burn - Magic
+(21072, 4408, 13), -- HP Modifiers
+(21072, 4409, 1), -- MP Modifiers
+(21072, 4410, 12), -- P. Atk. Modifiers
+(21072, 4411, 12), -- M. Atk. Modifiers
+(21072, 4412, 10), -- P. Def. Modifiers
+(21072, 4413, 13), -- M. Def. Modifiers
+(21072, 4414, 2), -- Armor Type
+(21072, 4415, 5), -- Weapon Type
+(21072, 4416, 8), -- Races
 -- Elmoreden's Guardian Warrior
-(21073, 4032, 6), -- Power Strike
-(21073, 4408, 10), -- HP Increase (2x)
-(21073, 4409, 1), -- MP Increase (1x)
-(21073, 4410, 12), -- Slightly Strong P. Atk.
-(21073, 4411, 12), -- Slightly Strong M. Atk.
-(21073, 4412, 10), -- Slightly Weak P. Def.
-(21073, 4413, 10), -- Slightly Weak M. Def.
-(21073, 4414, 2), -- Standard Type
-(21073, 4415, 3), -- One-handed Sword
-(21073, 4416, 1), -- Undead
+(21073, 4032, 6), -- NPC Strike
+(21073, 4408, 10), -- HP Modifiers
+(21073, 4409, 1), -- MP Modifiers
+(21073, 4410, 12), -- P. Atk. Modifiers
+(21073, 4411, 12), -- M. Atk. Modifiers
+(21073, 4412, 10), -- P. Def. Modifiers
+(21073, 4413, 10), -- M. Def. Modifiers
+(21073, 4414, 2), -- Armor Type
+(21073, 4415, 3), -- Weapon Type
+(21073, 4416, 1), -- Races
 -- Bound Shaman
-(21074, 4065, 7), -- Heal
-(21074, 4087, 7), -- Blaze
-(21074, 4408, 10), -- HP Increase (2x)
-(21074, 4409, 1), -- MP Increase (1x)
-(21074, 4410, 10), -- Slightly Weak P. Atk.
-(21074, 4411, 10), -- Slightly Weak M. Atk.
-(21074, 4412, 12), -- Slightly Strong P. Def.
-(21074, 4413, 14), -- Strong M. Def.
-(21074, 4414, 2), -- Standard Type
-(21074, 4415, 5), -- Blunt Weapons
-(21074, 4416, 8), -- Angels
+(21074, 4065, 7), -- NPC Heal
+(21074, 4087, 7), -- NPC Blaze
+(21074, 4408, 10), -- HP Modifiers
+(21074, 4409, 1), -- MP Modifiers
+(21074, 4410, 10), -- P. Atk. Modifiers
+(21074, 4411, 10), -- M. Atk. Modifiers
+(21074, 4412, 12), -- P. Def. Modifiers
+(21074, 4413, 14), -- M. Def. Modifiers
+(21074, 4414, 2), -- Armor Type
+(21074, 4415, 5), -- Weapon Type
+(21074, 4416, 8), -- Races
 (21074, 4438, 2), -- Greater Resist Sleep
 -- Slaughter Bathin
-(21075, 4073, 6), -- Stun
+(21075, 4073, 6), -- Shock
 (21075, 4086, 1), -- Critical Chance
-(21075, 4408, 10), -- HP Increase (2x)
-(21075, 4409, 1), -- MP Increase (1x)
-(21075, 4410, 12), -- Slightly Strong P. Atk.
-(21075, 4411, 12), -- Slightly Strong M. Atk.
-(21075, 4412, 12), -- Slightly Strong P. Def.
-(21075, 4413, 10), -- Slightly Weak M. Def.
-(21075, 4414, 2), -- Standard Type
-(21075, 4415, 3), -- One-handed Sword
-(21075, 4416, 1), -- Undead
+(21075, 4408, 10), -- HP Modifiers
+(21075, 4409, 1), -- MP Modifiers
+(21075, 4410, 12), -- P. Atk. Modifiers
+(21075, 4411, 12), -- M. Atk. Modifiers
+(21075, 4412, 12), -- P. Def. Modifiers
+(21075, 4413, 10), -- M. Def. Modifiers
+(21075, 4414, 2), -- Armor Type
+(21075, 4415, 3), -- Weapon Type
+(21075, 4416, 1), -- Races
 -- Bathin's Knight
-(21076, 4073, 6), -- Stun
+(21076, 4073, 6), -- Shock
 (21076, 4093, 1), -- Evasion
-(21076, 4408, 10), -- HP Increase (2x)
-(21076, 4409, 1), -- MP Increase (1x)
-(21076, 4410, 12), -- Slightly Strong P. Atk.
-(21076, 4411, 12), -- Slightly Strong M. Atk.
-(21076, 4412, 12), -- Slightly Strong P. Def.
-(21076, 4413, 10), -- Slightly Weak M. Def.
-(21076, 4414, 2), -- Standard Type
-(21076, 4415, 5), -- Blunt Weapons
-(21076, 4416, 1), -- Undead
+(21076, 4408, 10), -- HP Modifiers
+(21076, 4409, 1), -- MP Modifiers
+(21076, 4410, 12), -- P. Atk. Modifiers
+(21076, 4411, 12), -- M. Atk. Modifiers
+(21076, 4412, 12), -- P. Def. Modifiers
+(21076, 4413, 10), -- M. Def. Modifiers
+(21076, 4414, 2), -- Armor Type
+(21076, 4415, 5), -- Weapon Type
+(21076, 4416, 1), -- Races
 -- Bathin's Wizard
-(21077, 4065, 6), -- Heal
-(21077, 4071, 5), -- Resist Bow/Crossbow Weapons
+(21077, 4065, 6), -- NPC Heal
+(21077, 4071, 5), -- Resist Archery
 (21077, 4118, 6), -- Paralysis
-(21077, 4408, 10), -- HP Increase (2x)
-(21077, 4409, 1), -- MP Increase (1x)
-(21077, 4410, 12), -- Slightly Strong P. Atk.
-(21077, 4411, 12), -- Slightly Strong M. Atk.
-(21077, 4412, 10), -- Slightly Weak P. Def.
-(21077, 4413, 13), -- Slightly Strong M. Def.
-(21077, 4414, 2), -- Standard Type
-(21077, 4415, 5), -- Blunt Weapons
-(21077, 4416, 9), -- Demons
+(21077, 4408, 10), -- HP Modifiers
+(21077, 4409, 1), -- MP Modifiers
+(21077, 4410, 12), -- P. Atk. Modifiers
+(21077, 4411, 12), -- M. Atk. Modifiers
+(21077, 4412, 10), -- P. Def. Modifiers
+(21077, 4413, 13), -- M. Def. Modifiers
+(21077, 4414, 2), -- Armor Type
+(21077, 4415, 5), -- Weapon Type
+(21077, 4416, 9), -- Races
 (21077, 4438, 2), -- Greater Resist Sleep
 -- Magus Valac
-(21078, 4072, 7), -- Stun
-(21078, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(21078, 4408, 10), -- HP Increase (2x)
-(21078, 4409, 1), -- MP Increase (1x)
-(21078, 4410, 12), -- Slightly Strong P. Atk.
-(21078, 4411, 12), -- Slightly Strong M. Atk.
-(21078, 4412, 12), -- Slightly Strong P. Def.
-(21078, 4413, 10), -- Slightly Weak M. Def.
-(21078, 4414, 2), -- Standard Type
-(21078, 4415, 5), -- Blunt Weapons
-(21078, 4416, 9), -- Demons
+(21078, 4072, 7), -- Shock
+(21078, 4276, 1), -- Archery Attack Weak Point
+(21078, 4408, 10), -- HP Modifiers
+(21078, 4409, 1), -- MP Modifiers
+(21078, 4410, 12), -- P. Atk. Modifiers
+(21078, 4411, 12), -- M. Atk. Modifiers
+(21078, 4412, 12), -- P. Def. Modifiers
+(21078, 4413, 10), -- M. Def. Modifiers
+(21078, 4414, 2), -- Armor Type
+(21078, 4415, 5), -- Weapon Type
+(21078, 4416, 9), -- Races
 -- Valac's Creature
-(21079, 4077, 6), -- Aura Burn
-(21079, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(21079, 4408, 10), -- HP Increase (2x)
-(21079, 4409, 1), -- MP Increase (1x)
-(21079, 4410, 12), -- Slightly Strong P. Atk.
-(21079, 4411, 12), -- Slightly Strong M. Atk.
-(21079, 4412, 10), -- Slightly Weak P. Def.
-(21079, 4413, 10), -- Slightly Weak M. Def.
-(21079, 4414, 2), -- Standard Type
-(21079, 4415, 3), -- One-handed Sword
-(21079, 4416, 3), -- Beasts
+(21079, 4077, 6), -- NPC Aura Burn
+(21079, 4276, 1), -- Archery Attack Weak Point
+(21079, 4408, 10), -- HP Modifiers
+(21079, 4409, 1), -- MP Modifiers
+(21079, 4410, 12), -- P. Atk. Modifiers
+(21079, 4411, 12), -- M. Atk. Modifiers
+(21079, 4412, 10), -- P. Def. Modifiers
+(21079, 4413, 10), -- M. Def. Modifiers
+(21079, 4414, 2), -- Armor Type
+(21079, 4415, 3), -- Weapon Type
+(21079, 4416, 3), -- Races
 (21079, 4438, 2), -- Greater Resist Sleep
 (21079, 4439, 2), -- Greater Resist Hold
 -- Valac's Guardian Spirit
-(21080, 4002, 6), -- HP Drain
-(21080, 4065, 6), -- Heal
-(21080, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(21080, 4408, 10), -- HP Increase (2x)
-(21080, 4409, 1), -- MP Increase (1x)
-(21080, 4410, 10), -- Slightly Weak P. Atk.
-(21080, 4411, 10), -- Slightly Weak M. Atk.
-(21080, 4412, 12), -- Slightly Strong P. Def.
-(21080, 4413, 12), -- Slightly Strong M. Def.
-(21080, 4414, 2), -- Standard Type
-(21080, 4415, 7), -- Daggers
-(21080, 4416, 9), -- Demons
+(21080, 4002, 6), -- NPC HP Drain
+(21080, 4065, 6), -- NPC Heal
+(21080, 4276, 1), -- Archery Attack Weak Point
+(21080, 4408, 10), -- HP Modifiers
+(21080, 4409, 1), -- MP Modifiers
+(21080, 4410, 10), -- P. Atk. Modifiers
+(21080, 4411, 10), -- M. Atk. Modifiers
+(21080, 4412, 12), -- P. Def. Modifiers
+(21080, 4413, 12), -- M. Def. Modifiers
+(21080, 4414, 2), -- Armor Type
+(21080, 4415, 7), -- Weapon Type
+(21080, 4416, 9), -- Races
 -- Power Angel Amon
 (21081, 4093, 1), -- Evasion
 (21081, 4118, 8), -- Paralysis
-(21081, 4408, 10), -- HP Increase (2x)
-(21081, 4409, 1), -- MP Increase (1x)
-(21081, 4410, 12), -- Slightly Strong P. Atk.
-(21081, 4411, 12), -- Slightly Strong M. Atk.
-(21081, 4412, 10), -- Slightly Weak P. Def.
-(21081, 4413, 10), -- Slightly Weak M. Def.
-(21081, 4414, 2), -- Standard Type
-(21081, 4415, 5), -- Blunt Weapons
-(21081, 4416, 8), -- Angels
+(21081, 4408, 10), -- HP Modifiers
+(21081, 4409, 1), -- MP Modifiers
+(21081, 4410, 12), -- P. Atk. Modifiers
+(21081, 4411, 12), -- M. Atk. Modifiers
+(21081, 4412, 10), -- P. Def. Modifiers
+(21081, 4413, 10), -- M. Def. Modifiers
+(21081, 4414, 2), -- Armor Type
+(21081, 4415, 5), -- Weapon Type
+(21081, 4416, 8), -- Races
 -- Amon's Captain of the Guards
-(21082, 4032, 7), -- Power Strike
+(21082, 4032, 7), -- NPC Strike
 (21082, 4086, 1), -- Critical Chance
-(21082, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(21082, 4408, 10), -- HP Increase (2x)
-(21082, 4409, 1), -- MP Increase (1x)
-(21082, 4410, 12), -- Slightly Strong P. Atk.
-(21082, 4411, 12), -- Slightly Strong M. Atk.
-(21082, 4412, 10), -- Slightly Weak P. Def.
-(21082, 4413, 10), -- Slightly Weak M. Def.
-(21082, 4414, 2), -- Standard Type
-(21082, 4415, 3), -- One-handed Sword
-(21082, 4416, 8), -- Angels
+(21082, 4276, 1), -- Archery Attack Weak Point
+(21082, 4408, 10), -- HP Modifiers
+(21082, 4409, 1), -- MP Modifiers
+(21082, 4410, 12), -- P. Atk. Modifiers
+(21082, 4411, 12), -- M. Atk. Modifiers
+(21082, 4412, 10), -- P. Def. Modifiers
+(21082, 4413, 10), -- M. Def. Modifiers
+(21082, 4414, 2), -- Armor Type
+(21082, 4415, 3), -- Weapon Type
+(21082, 4416, 8), -- Races
 -- Amon's Spirits
-(21083, 4065, 7), -- Heal
-(21083, 4098, 7), -- Silence
-(21083, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(21083, 4408, 10), -- HP Increase (2x)
-(21083, 4409, 1), -- MP Increase (1x)
-(21083, 4410, 12), -- Slightly Strong P. Atk.
-(21083, 4411, 12), -- Slightly Strong M. Atk.
-(21083, 4412, 12), -- Slightly Strong P. Def.
-(21083, 4413, 13), -- Slightly Strong M. Def.
-(21083, 4414, 2), -- Standard Type
-(21083, 4415, 5), -- Blunt Weapons
-(21083, 4416, 13), -- Fairies
+(21083, 4065, 7), -- NPC Heal
+(21083, 4098, 7), -- Magic Skill Block
+(21083, 4276, 1), -- Archery Attack Weak Point
+(21083, 4408, 10), -- HP Modifiers
+(21083, 4409, 1), -- MP Modifiers
+(21083, 4410, 12), -- P. Atk. Modifiers
+(21083, 4411, 12), -- M. Atk. Modifiers
+(21083, 4412, 12), -- P. Def. Modifiers
+(21083, 4413, 13), -- M. Def. Modifiers
+(21083, 4414, 2), -- Armor Type
+(21083, 4415, 5), -- Weapon Type
+(21083, 4416, 13), -- Races
 -- Bloody Lady
 (21084, 4035, 6), -- Poison
-(21084, 4039, 6), -- Mana Drain
-(21084, 4408, 11), -- HP Increase (3x)
-(21084, 4409, 1), -- MP Increase (1x)
-(21084, 4410, 12), -- Slightly Strong P. Atk.
-(21084, 4411, 12), -- Slightly Strong M. Atk.
-(21084, 4412, 10), -- Slightly Weak P. Def.
-(21084, 4413, 10), -- Slightly Weak M. Def.
-(21084, 4414, 2), -- Standard Type
-(21084, 4415, 3), -- One-handed Sword
-(21084, 4416, 9), -- Demons
+(21084, 4039, 6), -- NPC MP Drain
+(21084, 4408, 11), -- HP Modifiers
+(21084, 4409, 1), -- MP Modifiers
+(21084, 4410, 12), -- P. Atk. Modifiers
+(21084, 4411, 12), -- M. Atk. Modifiers
+(21084, 4412, 10), -- P. Def. Modifiers
+(21084, 4413, 10), -- M. Def. Modifiers
+(21084, 4414, 2), -- Armor Type
+(21084, 4415, 3), -- Weapon Type
+(21084, 4416, 9), -- Races
 -- Bloody Sniper
-(21085, 4071, 5), -- Resist Bow/Crossbow Weapons
-(21085, 4141, 7), -- Wind Fist
-(21085, 4389, 4), -- Resist Mental Attacks
-(21085, 4408, 13), -- HP Increase (5x)
-(21085, 4409, 1), -- MP Increase (1x)
-(21085, 4410, 12), -- Slightly Strong P. Atk.
-(21085, 4411, 12), -- Slightly Strong M. Atk.
-(21085, 4412, 10), -- Slightly Weak P. Def.
-(21085, 4413, 10), -- Slightly Weak M. Def.
-(21085, 4414, 2), -- Standard Type
-(21085, 4415, 9), -- Bows
-(21085, 4416, 9), -- Demons
+(21085, 4071, 5), -- Resist Archery
+(21085, 4141, 7), -- NPC Wind Fist
+(21085, 4389, 4), -- Resist Mental Derangement
+(21085, 4408, 13), -- HP Modifiers
+(21085, 4409, 1), -- MP Modifiers
+(21085, 4410, 12), -- P. Atk. Modifiers
+(21085, 4411, 12), -- M. Atk. Modifiers
+(21085, 4412, 10), -- P. Def. Modifiers
+(21085, 4413, 10), -- M. Def. Modifiers
+(21085, 4414, 2), -- Armor Type
+(21085, 4415, 9), -- Weapon Type
+(21085, 4416, 9), -- Races
 -- Bloody Liviona
-(21086, 4157, 7), -- Blaze
-(21086, 4160, 7), -- Aura Burn
-(21086, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(21086, 4408, 13), -- HP Increase (5x)
-(21086, 4409, 1), -- MP Increase (1x)
-(21086, 4410, 11), -- Average P. Atk.
-(21086, 4411, 11), -- Average M. Atk.
-(21086, 4412, 11), -- Average P. Def.
-(21086, 4413, 11), -- Average M. Def.
-(21086, 4414, 2), -- Standard Type
-(21086, 4415, 3), -- One-handed Sword
-(21086, 4416, 2), -- Magic Creatures
+(21086, 4157, 7), -- NPC Blaze - Magic
+(21086, 4160, 7), -- NPC Aura Burn - Magic
+(21086, 4276, 1), -- Archery Attack Weak Point
+(21086, 4408, 13), -- HP Modifiers
+(21086, 4409, 1), -- MP Modifiers
+(21086, 4410, 11), -- P. Atk. Modifiers
+(21086, 4411, 11), -- M. Atk. Modifiers
+(21086, 4412, 11), -- P. Def. Modifiers
+(21086, 4413, 11), -- M. Def. Modifiers
+(21086, 4414, 2), -- Armor Type
+(21086, 4415, 3), -- Weapon Type
+(21086, 4416, 2), -- Races
 -- Bloody Knight
-(21087, 4033, 7), -- Aura Burn
-(21087, 4073, 7), -- Stun
-(21087, 4085, 1), -- Critical Damage
+(21087, 4033, 7), -- NPC Burn
+(21087, 4073, 7), -- Shock
+(21087, 4085, 1), -- Critical Power
 (21087, 4086, 1), -- Critical Chance
-(21087, 4092, 1), -- Spirit Puma
-(21087, 4408, 13), -- HP Increase (5x)
-(21087, 4409, 1), -- MP Increase (1x)
-(21087, 4410, 13), -- Slightly Strong P. Atk.
-(21087, 4411, 13), -- Slightly Strong M. Atk.
-(21087, 4412, 16), -- Very Strong P. Def.
-(21087, 4413, 9), -- Slightly Weak M. Def.
-(21087, 4414, 2), -- Standard Type
-(21087, 4415, 3), -- One-handed Sword
-(21087, 4416, 1), -- Undead
+(21087, 4092, 1), -- NPC Puma Spirit Totem
+(21087, 4408, 13), -- HP Modifiers
+(21087, 4409, 1), -- MP Modifiers
+(21087, 4410, 13), -- P. Atk. Modifiers
+(21087, 4411, 13), -- M. Atk. Modifiers
+(21087, 4412, 16), -- P. Def. Modifiers
+(21087, 4413, 9), -- M. Def. Modifiers
+(21087, 4414, 2), -- Armor Type
+(21087, 4415, 3), -- Weapon Type
+(21087, 4416, 1), -- Races
 -- Bloody Banshee
-(21088, 4160, 7), -- Aura Burn
-(21088, 4257, 7), -- Hydro Blast
-(21088, 4408, 13), -- HP Increase (5x)
-(21088, 4409, 1), -- MP Increase (1x)
-(21088, 4410, 11), -- Average P. Atk.
-(21088, 4411, 11), -- Average M. Atk.
-(21088, 4412, 11), -- Average P. Def.
-(21088, 4413, 11), -- Average M. Def.
-(21088, 4414, 2), -- Standard Type
-(21088, 4415, 3), -- One-handed Sword
-(21088, 4416, 9), -- Demons
+(21088, 4160, 7), -- NPC Aura Burn - Magic
+(21088, 4257, 7), -- NPC Hydroblast - Magic
+(21088, 4408, 13), -- HP Modifiers
+(21088, 4409, 1), -- MP Modifiers
+(21088, 4410, 11), -- P. Atk. Modifiers
+(21088, 4411, 11), -- M. Atk. Modifiers
+(21088, 4412, 11), -- P. Def. Modifiers
+(21088, 4413, 11), -- M. Def. Modifiers
+(21088, 4414, 2), -- Armor Type
+(21088, 4415, 3), -- Weapon Type
+(21088, 4416, 9), -- Races
 -- Bloody Lord
-(21089, 4032, 8), -- Power Strike
-(21089, 4072, 8), -- Stun
-(21089, 4085, 1), -- Critical Damage
+(21089, 4032, 8), -- NPC Strike
+(21089, 4072, 8), -- Shock
+(21089, 4085, 1), -- Critical Power
 (21089, 4086, 1), -- Critical Chance
-(21089, 4090, 1), -- Spirit Wolf
-(21089, 4408, 13), -- HP Increase (5x)
-(21089, 4409, 1), -- MP Increase (1x)
-(21089, 4410, 12), -- Slightly Strong P. Atk.
-(21089, 4411, 12), -- Slightly Strong M. Atk.
-(21089, 4412, 10), -- Slightly Weak P. Def.
-(21089, 4413, 10), -- Slightly Weak M. Def.
-(21089, 4414, 2), -- Standard Type
-(21089, 4415, 3), -- One-handed Sword
-(21089, 4416, 9), -- Demons
+(21089, 4090, 1), -- NPC Wolf Spirit Totem
+(21089, 4408, 13), -- HP Modifiers
+(21089, 4409, 1), -- MP Modifiers
+(21089, 4410, 12), -- P. Atk. Modifiers
+(21089, 4411, 12), -- M. Atk. Modifiers
+(21089, 4412, 10), -- P. Def. Modifiers
+(21089, 4413, 10), -- M. Def. Modifiers
+(21089, 4414, 2), -- Armor Type
+(21089, 4415, 3), -- Weapon Type
+(21089, 4416, 9), -- Races
 -- Bloody Guardian
-(21090, 4085, 1), -- Critical Damage
+(21090, 4085, 1), -- Critical Power
 (21090, 4086, 1), -- Critical Chance
 (21090, 4117, 8), -- Paralysis
-(21090, 4152, 8), -- Drain Health
-(21090, 4160, 8), -- Aura Burn
-(21090, 4408, 11), -- HP Increase (3x)
-(21090, 4409, 1), -- MP Increase (1x)
-(21090, 4410, 12), -- Slightly Strong P. Atk.
-(21090, 4411, 12), -- Slightly Strong M. Atk.
-(21090, 4412, 10), -- Slightly Weak P. Def.
-(21090, 4413, 10), -- Slightly Weak M. Def.
-(21090, 4414, 2), -- Standard Type
-(21090, 4415, 3), -- One-handed Sword
-(21090, 4416, 1), -- Undead
+(21090, 4152, 8), -- NPC HP Drain - Magic
+(21090, 4160, 8), -- NPC Aura Burn - Magic
+(21090, 4408, 11), -- HP Modifiers
+(21090, 4409, 1), -- MP Modifiers
+(21090, 4410, 12), -- P. Atk. Modifiers
+(21090, 4411, 12), -- M. Atk. Modifiers
+(21090, 4412, 10), -- P. Def. Modifiers
+(21090, 4413, 10), -- M. Def. Modifiers
+(21090, 4414, 2), -- Armor Type
+(21090, 4415, 3), -- Weapon Type
+(21090, 4416, 1), -- Races
 -- Bloody Keeper
-(21091, 4032, 7), -- Power Strike
-(21091, 4085, 1), -- Critical Damage
+(21091, 4032, 7), -- NPC Strike
+(21091, 4085, 1), -- Critical Power
 (21091, 4086, 1), -- Critical Chance
-(21091, 4408, 10), -- HP Increase (2x)
-(21091, 4409, 1), -- MP Increase (1x)
-(21091, 4410, 11), -- Average P. Atk.
-(21091, 4411, 11), -- Average M. Atk.
-(21091, 4412, 11), -- Average P. Def.
-(21091, 4413, 11), -- Average M. Def.
-(21091, 4414, 2), -- Standard Type
-(21091, 4415, 3), -- One-handed Sword
-(21091, 4416, 9), -- Demons
+(21091, 4408, 10), -- HP Modifiers
+(21091, 4409, 1), -- MP Modifiers
+(21091, 4410, 11), -- P. Atk. Modifiers
+(21091, 4411, 11), -- M. Atk. Modifiers
+(21091, 4412, 11), -- P. Def. Modifiers
+(21091, 4413, 11), -- M. Def. Modifiers
+(21091, 4414, 2), -- Armor Type
+(21091, 4415, 3), -- Weapon Type
+(21091, 4416, 9), -- Races
 -- Bloody Mystic
-(21092, 4065, 7), -- Heal
-(21092, 4085, 1), -- Critical Damage
+(21092, 4065, 7), -- NPC Heal
+(21092, 4085, 1), -- Critical Power
 (21092, 4086, 1), -- Critical Chance
-(21092, 4098, 7), -- Silence
-(21092, 4408, 10), -- HP Increase (2x)
-(21092, 4409, 1), -- MP Increase (1x)
-(21092, 4410, 11), -- Average P. Atk.
-(21092, 4411, 11), -- Average M. Atk.
-(21092, 4412, 11), -- Average P. Def.
-(21092, 4413, 11), -- Average M. Def.
-(21092, 4414, 2), -- Standard Type
-(21092, 4415, 3), -- One-handed Sword
-(21092, 4416, 9), -- Demons
+(21092, 4098, 7), -- Magic Skill Block
+(21092, 4408, 10), -- HP Modifiers
+(21092, 4409, 1), -- MP Modifiers
+(21092, 4410, 11), -- P. Atk. Modifiers
+(21092, 4411, 11), -- M. Atk. Modifiers
+(21092, 4412, 11), -- P. Def. Modifiers
+(21092, 4413, 11), -- M. Def. Modifiers
+(21092, 4414, 2), -- Armor Type
+(21092, 4415, 3), -- Weapon Type
+(21092, 4416, 9), -- Races
 (21092, 4438, 2), -- Greater Resist Sleep
 (21092, 4439, 2), -- Greater Resist Hold
 -- Ratman Sub Chieftain
-(21093, 4408, 1), -- HP Increase (1x)
-(21093, 4409, 1), -- MP Increase (1x)
-(21093, 4410, 12), -- Slightly Strong P. Atk.
-(21093, 4411, 12), -- Slightly Strong M. Atk.
-(21093, 4412, 10), -- Slightly Weak P. Def.
-(21093, 4413, 10), -- Slightly Weak M. Def.
-(21093, 4414, 3), -- Light Armor Type
-(21093, 4415, 3), -- One-handed Sword
-(21093, 4416, 6), -- Humanoids
+(21093, 4408, 1), -- HP Modifiers
+(21093, 4409, 1), -- MP Modifiers
+(21093, 4410, 12), -- P. Atk. Modifiers
+(21093, 4411, 12), -- M. Atk. Modifiers
+(21093, 4412, 10), -- P. Def. Modifiers
+(21093, 4413, 10), -- M. Def. Modifiers
+(21093, 4414, 3), -- Armor Type
+(21093, 4415, 3), -- Weapon Type
+(21093, 4416, 6), -- Races
 -- Ratman Chieftain
-(21094, 4408, 1), -- HP Increase (1x)
-(21094, 4409, 1), -- MP Increase (1x)
-(21094, 4410, 10), -- Slightly Weak P. Atk.
-(21094, 4411, 10), -- Slightly Weak M. Atk.
-(21094, 4412, 12), -- Slightly Strong P. Def.
-(21094, 4413, 12), -- Slightly Strong M. Def.
-(21094, 4414, 2), -- Standard Type
-(21094, 4415, 3), -- One-handed Sword
-(21094, 4416, 6), -- Humanoids
+(21094, 4408, 1), -- HP Modifiers
+(21094, 4409, 1), -- MP Modifiers
+(21094, 4410, 10), -- P. Atk. Modifiers
+(21094, 4411, 10), -- M. Atk. Modifiers
+(21094, 4412, 12), -- P. Def. Modifiers
+(21094, 4413, 12), -- M. Def. Modifiers
+(21094, 4414, 2), -- Armor Type
+(21094, 4415, 3), -- Weapon Type
+(21094, 4416, 6), -- Races
 -- Giant Poison Bee
 (21095, 4035, 2), -- Poison
-(21095, 4408, 1), -- HP Increase (1x)
-(21095, 4409, 1), -- MP Increase (1x)
-(21095, 4410, 11), -- Average P. Atk.
-(21095, 4411, 11), -- Average M. Atk.
-(21095, 4412, 11), -- Average P. Def.
-(21095, 4413, 11), -- Average M. Def.
-(21095, 4414, 3), -- Light Armor Type
-(21095, 4415, 7), -- Daggers
-(21095, 4416, 12), -- Bugs
+(21095, 4408, 1), -- HP Modifiers
+(21095, 4409, 1), -- MP Modifiers
+(21095, 4410, 11), -- P. Atk. Modifiers
+(21095, 4411, 11), -- M. Atk. Modifiers
+(21095, 4412, 11), -- P. Def. Modifiers
+(21095, 4413, 11), -- M. Def. Modifiers
+(21095, 4414, 3), -- Armor Type
+(21095, 4415, 7), -- Weapon Type
+(21095, 4416, 12), -- Races
 -- Cloudy Beast 
-(21096, 4408, 1), -- HP Increase (1x)
-(21096, 4409, 1), -- MP Increase (1x)
-(21096, 4410, 11), -- Average P. Atk.
-(21096, 4411, 11), -- Average M. Atk.
-(21096, 4412, 11), -- Average P. Def.
-(21096, 4413, 11), -- Average M. Def.
-(21096, 4414, 3), -- Light Armor Type
-(21096, 4415, 3), -- One-handed Sword
-(21096, 4416, 3), -- Beasts
+(21096, 4408, 1), -- HP Modifiers
+(21096, 4409, 1), -- MP Modifiers
+(21096, 4410, 11), -- P. Atk. Modifiers
+(21096, 4411, 11), -- M. Atk. Modifiers
+(21096, 4412, 11), -- P. Def. Modifiers
+(21096, 4413, 11), -- M. Def. Modifiers
+(21096, 4414, 3), -- Armor Type
+(21096, 4415, 3), -- Weapon Type
+(21096, 4416, 3), -- Races
 -- Young Araneid
 (21097, 4035, 2), -- Poison
-(21097, 4408, 1), -- HP Increase (1x)
-(21097, 4409, 1), -- MP Increase (1x)
-(21097, 4410, 11), -- Average P. Atk.
-(21097, 4411, 11), -- Average M. Atk.
-(21097, 4412, 11), -- Average P. Def.
-(21097, 4413, 11), -- Average M. Def.
-(21097, 4414, 2), -- Standard Type
-(21097, 4415, 3), -- One-handed Sword
-(21097, 4416, 12), -- Bugs
+(21097, 4408, 1), -- HP Modifiers
+(21097, 4409, 1), -- MP Modifiers
+(21097, 4410, 11), -- P. Atk. Modifiers
+(21097, 4411, 11), -- M. Atk. Modifiers
+(21097, 4412, 11), -- P. Def. Modifiers
+(21097, 4413, 11), -- M. Def. Modifiers
+(21097, 4414, 2), -- Armor Type
+(21097, 4415, 3), -- Weapon Type
+(21097, 4416, 12), -- Races
 -- Plain Grizzly
-(21098, 4408, 1), -- HP Increase (1x)
-(21098, 4409, 1), -- MP Increase (1x)
-(21098, 4410, 11), -- Average P. Atk.
-(21098, 4411, 11), -- Average M. Atk.
-(21098, 4412, 11), -- Average P. Def.
-(21098, 4413, 11), -- Average M. Def.
-(21098, 4414, 2), -- Standard Type
-(21098, 4415, 3), -- One-handed Sword
-(21098, 4416, 4), -- Animals
+(21098, 4408, 1), -- HP Modifiers
+(21098, 4409, 1), -- MP Modifiers
+(21098, 4410, 11), -- P. Atk. Modifiers
+(21098, 4411, 11), -- M. Atk. Modifiers
+(21098, 4412, 11), -- P. Def. Modifiers
+(21098, 4413, 11), -- M. Def. Modifiers
+(21098, 4414, 2), -- Armor Type
+(21098, 4415, 3), -- Weapon Type
+(21098, 4416, 4), -- Races
 -- Cloudy Beast Turen
-(21099, 4408, 1), -- HP Increase (1x)
-(21099, 4409, 1), -- MP Increase (1x)
-(21099, 4410, 11), -- Average P. Atk.
-(21099, 4411, 11), -- Average M. Atk.
-(21099, 4412, 11), -- Average P. Def.
-(21099, 4413, 11), -- Average M. Def.
-(21099, 4414, 3), -- Light Armor Type
-(21099, 4415, 3), -- One-handed Sword
-(21099, 4416, 3), -- Beasts
+(21099, 4408, 1), -- HP Modifiers
+(21099, 4409, 1), -- MP Modifiers
+(21099, 4410, 11), -- P. Atk. Modifiers
+(21099, 4411, 11), -- M. Atk. Modifiers
+(21099, 4412, 11), -- P. Def. Modifiers
+(21099, 4413, 11), -- M. Def. Modifiers
+(21099, 4414, 3), -- Armor Type
+(21099, 4415, 3), -- Weapon Type
+(21099, 4416, 3), -- Races
 -- Langk Lizardman Sentinel
-(21100, 4408, 1), -- HP Increase (1x)
-(21100, 4409, 1), -- MP Increase (1x)
-(21100, 4410, 11), -- Average P. Atk.
-(21100, 4411, 11), -- Average M. Atk.
-(21100, 4412, 11), -- Average P. Def.
-(21100, 4413, 11), -- Average M. Def.
-(21100, 4414, 2), -- Standard Type
-(21100, 4415, 3), -- One-handed Sword
-(21100, 4416, 6), -- Humanoids
+(21100, 4408, 1), -- HP Modifiers
+(21100, 4409, 1), -- MP Modifiers
+(21100, 4410, 11), -- P. Atk. Modifiers
+(21100, 4411, 11), -- M. Atk. Modifiers
+(21100, 4412, 11), -- P. Def. Modifiers
+(21100, 4413, 11), -- M. Def. Modifiers
+(21100, 4414, 2), -- Armor Type
+(21100, 4415, 3), -- Weapon Type
+(21100, 4416, 6), -- Races
 -- Langk Lizardman Shaman
-(21101, 4076, 1), -- Slow
-(21101, 4152, 2), -- Drain Health
-(21101, 4160, 2), -- Aura Burn
-(21101, 4408, 1), -- HP Increase (1x)
-(21101, 4409, 1), -- MP Increase (1x)
-(21101, 4410, 11), -- Average P. Atk.
-(21101, 4411, 11), -- Average M. Atk.
-(21101, 4412, 11), -- Average P. Def.
-(21101, 4413, 11), -- Average M. Def.
-(21101, 4414, 3), -- Light Armor Type
-(21101, 4415, 5), -- Blunt Weapons
-(21101, 4416, 6), -- Humanoids
+(21101, 4076, 1), -- Reduction in movement speed
+(21101, 4152, 2), -- NPC HP Drain - Magic
+(21101, 4160, 2), -- NPC Aura Burn - Magic
+(21101, 4408, 1), -- HP Modifiers
+(21101, 4409, 1), -- MP Modifiers
+(21101, 4410, 11), -- P. Atk. Modifiers
+(21101, 4411, 11), -- M. Atk. Modifiers
+(21101, 4412, 11), -- P. Def. Modifiers
+(21101, 4413, 11), -- M. Def. Modifiers
+(21101, 4414, 3), -- Armor Type
+(21101, 4415, 5), -- Weapon Type
+(21101, 4416, 6), -- Races
 -- Watchman of the Plains
-(21102, 4151, 3), -- Wind Strike
-(21102, 4160, 3), -- Aura Burn
-(21102, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(21102, 4408, 1), -- HP Increase (1x)
-(21102, 4409, 1), -- MP Increase (1x)
-(21102, 4410, 11), -- Average P. Atk.
-(21102, 4411, 11), -- Average M. Atk.
-(21102, 4412, 11), -- Average P. Def.
-(21102, 4413, 11), -- Average M. Def.
-(21102, 4414, 3), -- Light Armor Type
-(21102, 4415, 5), -- Blunt Weapons
-(21102, 4416, 2), -- Magic Creatures
+(21102, 4151, 3), -- NPC Windstrike - Magic
+(21102, 4160, 3), -- NPC Aura Burn - Magic
+(21102, 4276, 1), -- Archery Attack Weak Point
+(21102, 4408, 1), -- HP Modifiers
+(21102, 4409, 1), -- MP Modifiers
+(21102, 4410, 11), -- P. Atk. Modifiers
+(21102, 4411, 11), -- M. Atk. Modifiers
+(21102, 4412, 11), -- P. Def. Modifiers
+(21102, 4413, 11), -- M. Def. Modifiers
+(21102, 4414, 3), -- Armor Type
+(21102, 4415, 5), -- Weapon Type
+(21102, 4416, 2), -- Races
 -- Roughly Hewn Rock Golem
-(21103, 4254, 3), -- Prominence
-(21103, 4273, 3), -- Resist Daggers/Rapier Weapon
-(21103, 4274, 1), -- Blunt Weapon Weak Point
-(21103, 4408, 1), -- HP Increase (1x)
-(21103, 4409, 1), -- MP Increase (1x)
-(21103, 4410, 11), -- Average P. Atk.
-(21103, 4411, 11), -- Average M. Atk.
-(21103, 4412, 11), -- Average P. Def.
-(21103, 4413, 11), -- Average M. Def.
-(21103, 4414, 2), -- Standard Type
-(21103, 4415, 5), -- Blunt Weapons
-(21103, 4416, 2), -- Magic Creatures
+(21103, 4254, 3), -- NPC Prominence - Slow
+(21103, 4273, 3), -- Resist Dagger
+(21103, 4274, 1), -- Blunt Attack Weak Point
+(21103, 4408, 1), -- HP Modifiers
+(21103, 4409, 1), -- MP Modifiers
+(21103, 4410, 11), -- P. Atk. Modifiers
+(21103, 4411, 11), -- M. Atk. Modifiers
+(21103, 4412, 11), -- P. Def. Modifiers
+(21103, 4413, 11), -- M. Def. Modifiers
+(21103, 4414, 2), -- Armor Type
+(21103, 4415, 5), -- Weapon Type
+(21103, 4416, 2), -- Races
 (21103, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Delu Lizardman Supplier
-(21104, 4032, 3), -- Power Strike
-(21104, 4408, 1), -- HP Increase (1x)
-(21104, 4409, 1), -- MP Increase (1x)
-(21104, 4410, 11), -- Average P. Atk.
-(21104, 4411, 11), -- Average M. Atk.
-(21104, 4412, 11), -- Average P. Def.
-(21104, 4413, 11), -- Average M. Def.
-(21104, 4414, 2), -- Standard Type
-(21104, 4415, 7), -- Daggers
-(21104, 4416, 6), -- Humanoids
+(21104, 4032, 3), -- NPC Strike
+(21104, 4408, 1), -- HP Modifiers
+(21104, 4409, 1), -- MP Modifiers
+(21104, 4410, 11), -- P. Atk. Modifiers
+(21104, 4411, 11), -- M. Atk. Modifiers
+(21104, 4412, 11), -- P. Def. Modifiers
+(21104, 4413, 11), -- M. Def. Modifiers
+(21104, 4414, 2), -- Armor Type
+(21104, 4415, 7), -- Weapon Type
+(21104, 4416, 6), -- Races
 -- Delu Lizardman Special Agent
-(21105, 4124, 3), -- Spear Attack
-(21105, 4408, 1), -- HP Increase (1x)
-(21105, 4409, 1), -- MP Increase (1x)
-(21105, 4410, 12), -- Slightly Strong P. Atk.
-(21105, 4411, 12), -- Slightly Strong M. Atk.
-(21105, 4412, 10), -- Slightly Weak P. Def.
-(21105, 4413, 10), -- Slightly Weak M. Def.
-(21105, 4414, 2), -- Standard Type
-(21105, 4415, 9), -- Bows
-(21105, 4416, 6), -- Humanoids
+(21105, 4124, 3), -- NPC Spear Attack
+(21105, 4408, 1), -- HP Modifiers
+(21105, 4409, 1), -- MP Modifiers
+(21105, 4410, 12), -- P. Atk. Modifiers
+(21105, 4411, 12), -- M. Atk. Modifiers
+(21105, 4412, 10), -- P. Def. Modifiers
+(21105, 4413, 10), -- M. Def. Modifiers
+(21105, 4414, 2), -- Armor Type
+(21105, 4415, 9), -- Weapon Type
+(21105, 4416, 6), -- Races
 -- Cursed Seer
-(21106, 4038, 1), -- Decrease Atk. Spd.
-(21106, 4151, 3), -- Wind Strike
-(21106, 4160, 3), -- Aura Burn
-(21106, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(21106, 4408, 1), -- HP Increase (1x)
-(21106, 4409, 1), -- MP Increase (1x)
-(21106, 4410, 11), -- Average P. Atk.
-(21106, 4411, 11), -- Average M. Atk.
-(21106, 4412, 11), -- Average P. Def.
-(21106, 4413, 11), -- Average M. Def.
-(21106, 4414, 3), -- Light Armor Type
-(21106, 4415, 5), -- Blunt Weapons
-(21106, 4416, 2), -- Magic Creatures
+(21106, 4038, 1), -- Decrease Atk.Spd.
+(21106, 4151, 3), -- NPC Windstrike - Magic
+(21106, 4160, 3), -- NPC Aura Burn - Magic
+(21106, 4276, 1), -- Archery Attack Weak Point
+(21106, 4408, 1), -- HP Modifiers
+(21106, 4409, 1), -- MP Modifiers
+(21106, 4410, 11), -- P. Atk. Modifiers
+(21106, 4411, 11), -- M. Atk. Modifiers
+(21106, 4412, 11), -- P. Def. Modifiers
+(21106, 4413, 11), -- M. Def. Modifiers
+(21106, 4414, 3), -- Armor Type
+(21106, 4415, 5), -- Weapon Type
+(21106, 4416, 2), -- Races
 -- Delu Lizardman Commander
-(21107, 4033, 3), -- Aura Burn
-(21107, 4408, 10), -- HP Increase (2x)
-(21107, 4409, 1), -- MP Increase (1x)
-(21107, 4410, 11), -- Average P. Atk.
-(21107, 4411, 11), -- Average M. Atk.
-(21107, 4412, 11), -- Average P. Def.
-(21107, 4413, 11), -- Average M. Def.
-(21107, 4414, 2), -- Standard Type
-(21107, 4415, 3), -- One-handed Sword
-(21107, 4416, 6), -- Humanoids
+(21107, 4033, 3), -- NPC Burn
+(21107, 4408, 10), -- HP Modifiers
+(21107, 4409, 1), -- MP Modifiers
+(21107, 4410, 11), -- P. Atk. Modifiers
+(21107, 4411, 11), -- M. Atk. Modifiers
+(21107, 4412, 11), -- P. Def. Modifiers
+(21107, 4413, 11), -- M. Def. Modifiers
+(21107, 4414, 2), -- Armor Type
+(21107, 4415, 3), -- Weapon Type
+(21107, 4416, 6), -- Races
 -- Glow Wisp
-(21108, 4039, 6), -- Mana Drain
-(21108, 4076, 3), -- Slow
-(21108, 4100, 6), -- Prominence
-(21108, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(21108, 4408, 1), -- HP Increase (1x)
-(21108, 4409, 1), -- MP Increase (1x)
-(21108, 4410, 11), -- Average P. Atk.
-(21108, 4411, 11), -- Average M. Atk.
-(21108, 4412, 11), -- Average P. Def.
-(21108, 4413, 11), -- Average M. Def.
-(21108, 4414, 2), -- Standard Type
-(21108, 4415, 5), -- Blunt Weapons
-(21108, 4416, 2), -- Magic Creatures
+(21108, 4039, 6), -- NPC MP Drain
+(21108, 4076, 3), -- Reduction in movement speed
+(21108, 4100, 6), -- NPC Prominence
+(21108, 4276, 1), -- Archery Attack Weak Point
+(21108, 4408, 1), -- HP Modifiers
+(21108, 4409, 1), -- MP Modifiers
+(21108, 4410, 11), -- P. Atk. Modifiers
+(21108, 4411, 11), -- M. Atk. Modifiers
+(21108, 4412, 11), -- P. Def. Modifiers
+(21108, 4413, 11), -- M. Def. Modifiers
+(21108, 4414, 2), -- Armor Type
+(21108, 4415, 5), -- Weapon Type
+(21108, 4416, 2), -- Races
 -- Hames Orc Scout
-(21109, 4067, 6), -- Blow
-(21109, 4408, 1), -- HP Increase (1x)
-(21109, 4409, 1), -- MP Increase (1x)
-(21109, 4410, 11), -- Average P. Atk.
-(21109, 4411, 11), -- Average M. Atk.
-(21109, 4412, 11), -- Average P. Def.
-(21109, 4413, 11), -- Average M. Def.
-(21109, 4414, 3), -- Light Armor Type
-(21109, 4415, 7), -- Daggers
-(21109, 4416, 6), -- Humanoids
+(21109, 4067, 6), -- NPC Mortal Blow
+(21109, 4408, 1), -- HP Modifiers
+(21109, 4409, 1), -- MP Modifiers
+(21109, 4410, 11), -- P. Atk. Modifiers
+(21109, 4411, 11), -- M. Atk. Modifiers
+(21109, 4412, 11), -- P. Def. Modifiers
+(21109, 4413, 11), -- M. Def. Modifiers
+(21109, 4414, 3), -- Armor Type
+(21109, 4415, 7), -- Weapon Type
+(21109, 4416, 6), -- Races
 -- Marsh Predator
-(21110, 4152, 7), -- Drain Health
-(21110, 4160, 7), -- Aura Burn
-(21110, 4408, 1), -- HP Increase (1x)
-(21110, 4409, 1), -- MP Increase (1x)
-(21110, 4410, 11), -- Average P. Atk.
-(21110, 4411, 11), -- Average M. Atk.
-(21110, 4412, 11), -- Average P. Def.
-(21110, 4413, 11), -- Average M. Def.
-(21110, 4414, 2), -- Standard Type
-(21110, 4415, 3), -- One-handed Sword
-(21110, 4416, 12), -- Bugs
+(21110, 4152, 7), -- NPC HP Drain - Magic
+(21110, 4160, 7), -- NPC Aura Burn - Magic
+(21110, 4408, 1), -- HP Modifiers
+(21110, 4409, 1), -- MP Modifiers
+(21110, 4410, 11), -- P. Atk. Modifiers
+(21110, 4411, 11), -- M. Atk. Modifiers
+(21110, 4412, 11), -- P. Def. Modifiers
+(21110, 4413, 11), -- M. Def. Modifiers
+(21110, 4414, 2), -- Armor Type
+(21110, 4415, 3), -- Weapon Type
+(21110, 4416, 12), -- Races
 -- Lava Wyrm
-(21111, 4158, 7), -- Prominence
-(21111, 4160, 7), -- Aura Burn
-(21111, 4408, 1), -- HP Increase (1x)
-(21111, 4409, 1), -- MP Increase (1x)
-(21111, 4410, 11), -- Average P. Atk.
-(21111, 4411, 11), -- Average M. Atk.
-(21111, 4412, 11), -- Average P. Def.
-(21111, 4413, 11), -- Average M. Def.
-(21111, 4414, 2), -- Standard Type
-(21111, 4415, 3), -- One-handed Sword
-(21111, 4416, 10), -- Dragons
+(21111, 4158, 7), -- NPC Prominence - Magic
+(21111, 4160, 7), -- NPC Aura Burn - Magic
+(21111, 4408, 1), -- HP Modifiers
+(21111, 4409, 1), -- MP Modifiers
+(21111, 4410, 11), -- P. Atk. Modifiers
+(21111, 4411, 11), -- M. Atk. Modifiers
+(21111, 4412, 11), -- P. Def. Modifiers
+(21111, 4413, 11), -- M. Def. Modifiers
+(21111, 4414, 2), -- Armor Type
+(21111, 4415, 3), -- Weapon Type
+(21111, 4416, 10), -- Races
 -- Hames Orc Footsoldier
-(21112, 4032, 7), -- Power Strike
-(21112, 4408, 1), -- HP Increase (1x)
-(21112, 4409, 1), -- MP Increase (1x)
-(21112, 4410, 11), -- Average P. Atk.
-(21112, 4411, 11), -- Average M. Atk.
-(21112, 4412, 11), -- Average P. Def.
-(21112, 4413, 11), -- Average M. Def.
-(21112, 4414, 2), -- Standard Type
-(21112, 4415, 3), -- One-handed Sword
-(21112, 4416, 6), -- Humanoids
+(21112, 4032, 7), -- NPC Strike
+(21112, 4408, 1), -- HP Modifiers
+(21112, 4409, 1), -- MP Modifiers
+(21112, 4410, 11), -- P. Atk. Modifiers
+(21112, 4411, 11), -- M. Atk. Modifiers
+(21112, 4412, 11), -- P. Def. Modifiers
+(21112, 4413, 11), -- M. Def. Modifiers
+(21112, 4414, 2), -- Armor Type
+(21112, 4415, 3), -- Weapon Type
+(21112, 4416, 6), -- Races
 -- Hames Orc Sniper
-(21113, 4040, 7), -- Power Shot
-(21113, 4408, 1), -- HP Increase (1x)
-(21113, 4409, 1), -- MP Increase (1x)
-(21113, 4410, 11), -- Average P. Atk.
-(21113, 4411, 11), -- Average M. Atk.
-(21113, 4412, 11), -- Average P. Def.
-(21113, 4413, 11), -- Average M. Def.
-(21113, 4414, 3), -- Light Armor Type
-(21113, 4415, 9), -- Bows
-(21113, 4416, 6), -- Humanoids
+(21113, 4040, 7), -- NPC Bow Attack
+(21113, 4408, 1), -- HP Modifiers
+(21113, 4409, 1), -- MP Modifiers
+(21113, 4410, 11), -- P. Atk. Modifiers
+(21113, 4411, 11), -- M. Atk. Modifiers
+(21113, 4412, 11), -- P. Def. Modifiers
+(21113, 4413, 11), -- M. Def. Modifiers
+(21113, 4414, 3), -- Armor Type
+(21113, 4415, 9), -- Weapon Type
+(21113, 4416, 6), -- Races
 -- Cursed Guardian
-(21114, 4033, 7), -- Aura Burn
-(21114, 4408, 1), -- HP Increase (1x)
-(21114, 4409, 1), -- MP Increase (1x)
-(21114, 4410, 11), -- Average P. Atk.
-(21114, 4411, 11), -- Average M. Atk.
-(21114, 4412, 11), -- Average P. Def.
-(21114, 4413, 11), -- Average M. Def.
-(21114, 4414, 3), -- Light Armor Type
-(21114, 4415, 3), -- One-handed Sword
-(21114, 4416, 1), -- Undead
+(21114, 4033, 7), -- NPC Burn
+(21114, 4408, 1), -- HP Modifiers
+(21114, 4409, 1), -- MP Modifiers
+(21114, 4410, 11), -- P. Atk. Modifiers
+(21114, 4411, 11), -- M. Atk. Modifiers
+(21114, 4412, 11), -- P. Def. Modifiers
+(21114, 4413, 11), -- M. Def. Modifiers
+(21114, 4414, 3), -- Armor Type
+(21114, 4415, 3), -- Weapon Type
+(21114, 4416, 1), -- Races
 -- Hames Orc Shaman
-(21115, 4037, 2), -- Weakness
+(21115, 4037, 2), -- Decrease P.Atk
 (21115, 4047, 7), -- Hold
-(21115, 4087, 7), -- Blaze
-(21115, 4408, 1), -- HP Increase (1x)
-(21115, 4409, 1), -- MP Increase (1x)
-(21115, 4410, 11), -- Average P. Atk.
-(21115, 4411, 11), -- Average M. Atk.
-(21115, 4412, 11), -- Average P. Def.
-(21115, 4413, 11), -- Average M. Def.
-(21115, 4414, 3), -- Light Armor Type
-(21115, 4415, 5), -- Blunt Weapons
-(21115, 4416, 6), -- Humanoids
+(21115, 4087, 7), -- NPC Blaze
+(21115, 4408, 1), -- HP Modifiers
+(21115, 4409, 1), -- MP Modifiers
+(21115, 4410, 11), -- P. Atk. Modifiers
+(21115, 4411, 11), -- M. Atk. Modifiers
+(21115, 4412, 11), -- P. Def. Modifiers
+(21115, 4413, 11), -- M. Def. Modifiers
+(21115, 4414, 3), -- Armor Type
+(21115, 4415, 5), -- Weapon Type
+(21115, 4416, 6), -- Races
 -- Hames Orc Overlord
-(21116, 4032, 8), -- Power Strike
-(21116, 4033, 8), -- Aura Burn
-(21116, 4091, 1), -- Spirit Ogre
-(21116, 4273, 3), -- Resist Daggers/Rapier Weapon
+(21116, 4032, 8), -- NPC Strike
+(21116, 4033, 8), -- NPC Burn
+(21116, 4091, 1), -- NPC Ogre Spirit Totem
+(21116, 4273, 3), -- Resist Dagger
 (21116, 4318, 1), -- Ultimate Buff
-(21116, 4408, 1), -- HP Increase (1x)
-(21116, 4409, 1), -- MP Increase (1x)
-(21116, 4410, 12), -- Slightly Strong P. Atk.
-(21116, 4411, 12), -- Slightly Strong M. Atk.
-(21116, 4412, 10), -- Slightly Weak P. Def.
-(21116, 4413, 10), -- Slightly Weak M. Def.
-(21116, 4414, 2), -- Standard Type
-(21116, 4415, 3), -- One-handed Sword
-(21116, 4416, 6), -- Humanoids
+(21116, 4408, 1), -- HP Modifiers
+(21116, 4409, 1), -- MP Modifiers
+(21116, 4410, 12), -- P. Atk. Modifiers
+(21116, 4411, 12), -- M. Atk. Modifiers
+(21116, 4412, 10), -- P. Def. Modifiers
+(21116, 4413, 10), -- M. Def. Modifiers
+(21116, 4414, 2), -- Armor Type
+(21116, 4415, 3), -- Weapon Type
+(21116, 4416, 6), -- Races
 -- Kasha Imp
-(21117, 4408, 1), -- HP Increase (1x)
-(21117, 4409, 1), -- MP Increase (1x)
-(21117, 4410, 11), -- Average P. Atk.
-(21117, 4411, 11), -- Average M. Atk.
-(21117, 4412, 11), -- Average P. Def.
-(21117, 4413, 11), -- Average M. Def.
-(21117, 4414, 3), -- Light Armor Type
-(21117, 4415, 3), -- One-handed Sword
-(21117, 4416, 13), -- Fairies
+(21117, 4408, 1), -- HP Modifiers
+(21117, 4409, 1), -- MP Modifiers
+(21117, 4410, 11), -- P. Atk. Modifiers
+(21117, 4411, 11), -- M. Atk. Modifiers
+(21117, 4412, 11), -- P. Def. Modifiers
+(21117, 4413, 11), -- M. Def. Modifiers
+(21117, 4414, 3), -- Armor Type
+(21117, 4415, 3), -- Weapon Type
+(21117, 4416, 13), -- Races
 -- Baar Dre Vanul
-(21118, 4408, 1), -- HP Increase (1x)
-(21118, 4409, 1), -- MP Increase (1x)
-(21118, 4410, 11), -- Average P. Atk.
-(21118, 4411, 11), -- Average M. Atk.
-(21118, 4412, 11), -- Average P. Def.
-(21118, 4413, 11), -- Average M. Def.
-(21118, 4414, 2), -- Standard Type
-(21118, 4415, 3), -- One-handed Sword
-(21118, 4416, 9), -- Demons
+(21118, 4408, 1), -- HP Modifiers
+(21118, 4409, 1), -- MP Modifiers
+(21118, 4410, 11), -- P. Atk. Modifiers
+(21118, 4411, 11), -- M. Atk. Modifiers
+(21118, 4412, 11), -- P. Def. Modifiers
+(21118, 4413, 11), -- M. Def. Modifiers
+(21118, 4414, 2), -- Armor Type
+(21118, 4415, 3), -- Weapon Type
+(21118, 4416, 9), -- Races
 -- Hobgoblin
-(21119, 4408, 1), -- HP Increase (1x)
-(21119, 4409, 1), -- MP Increase (1x)
-(21119, 4410, 11), -- Average P. Atk.
-(21119, 4411, 11), -- Average M. Atk.
-(21119, 4412, 11), -- Average P. Def.
-(21119, 4413, 11), -- Average M. Def.
-(21119, 4414, 2), -- Standard Type
-(21119, 4415, 5), -- Blunt Weapons
-(21119, 4416, 6), -- Humanoids
+(21119, 4408, 1), -- HP Modifiers
+(21119, 4409, 1), -- MP Modifiers
+(21119, 4410, 11), -- P. Atk. Modifiers
+(21119, 4411, 11), -- M. Atk. Modifiers
+(21119, 4412, 11), -- P. Def. Modifiers
+(21119, 4413, 11), -- M. Def. Modifiers
+(21119, 4414, 2), -- Armor Type
+(21119, 4415, 5), -- Weapon Type
+(21119, 4416, 6), -- Races
 -- Kasha Imp Turen
-(21120, 4032, 2), -- Power Strike
-(21120, 4408, 1), -- HP Increase (1x)
-(21120, 4409, 1), -- MP Increase (1x)
-(21120, 4410, 12), -- Slightly Strong P. Atk.
-(21120, 4411, 12), -- Slightly Strong M. Atk.
-(21120, 4412, 10), -- Slightly Weak P. Def.
-(21120, 4413, 10), -- Slightly Weak M. Def.
-(21120, 4414, 3), -- Light Armor Type
-(21120, 4415, 3), -- One-handed Sword
-(21120, 4416, 13), -- Fairies
+(21120, 4032, 2), -- NPC Strike
+(21120, 4408, 1), -- HP Modifiers
+(21120, 4409, 1), -- MP Modifiers
+(21120, 4410, 12), -- P. Atk. Modifiers
+(21120, 4411, 12), -- M. Atk. Modifiers
+(21120, 4412, 10), -- P. Def. Modifiers
+(21120, 4413, 10), -- M. Def. Modifiers
+(21120, 4414, 3), -- Armor Type
+(21120, 4415, 3), -- Weapon Type
+(21120, 4416, 13), -- Races
 -- Kasha Dire Wolf
-(21121, 4408, 1), -- HP Increase (1x)
-(21121, 4409, 1), -- MP Increase (1x)
-(21121, 4410, 11), -- Average P. Atk.
-(21121, 4411, 11), -- Average M. Atk.
-(21121, 4412, 11), -- Average P. Def.
-(21121, 4413, 11), -- Average M. Def.
-(21121, 4414, 3), -- Light Armor Type
-(21121, 4415, 3), -- One-handed Sword
-(21121, 4416, 4), -- Animals
+(21121, 4408, 1), -- HP Modifiers
+(21121, 4409, 1), -- MP Modifiers
+(21121, 4410, 11), -- P. Atk. Modifiers
+(21121, 4411, 11), -- M. Atk. Modifiers
+(21121, 4412, 11), -- P. Def. Modifiers
+(21121, 4413, 11), -- M. Def. Modifiers
+(21121, 4414, 3), -- Armor Type
+(21121, 4415, 3), -- Weapon Type
+(21121, 4416, 4), -- Races
 -- Kasha Bugbear
-(21122, 4408, 1), -- HP Increase (1x)
-(21122, 4409, 1), -- MP Increase (1x)
-(21122, 4410, 11), -- Average P. Atk.
-(21122, 4411, 11), -- Average M. Atk.
-(21122, 4412, 11), -- Average P. Def.
-(21122, 4413, 11), -- Average M. Def.
-(21122, 4414, 2), -- Standard Type
-(21122, 4415, 5), -- Blunt Weapons
-(21122, 4416, 11), -- Giants
+(21122, 4408, 1), -- HP Modifiers
+(21122, 4409, 1), -- MP Modifiers
+(21122, 4410, 11), -- P. Atk. Modifiers
+(21122, 4411, 11), -- M. Atk. Modifiers
+(21122, 4412, 11), -- P. Def. Modifiers
+(21122, 4413, 11), -- M. Def. Modifiers
+(21122, 4414, 2), -- Armor Type
+(21122, 4415, 5), -- Weapon Type
+(21122, 4416, 11), -- Races
 -- Baar Dre Vanul Destroyer
-(21123, 4229, 2), -- Double Wind Fist
-(21123, 4408, 1), -- HP Increase (1x)
-(21123, 4409, 1), -- MP Increase (1x)
-(21123, 4410, 12), -- Slightly Strong P. Atk.
-(21123, 4411, 12), -- Slightly Strong M. Atk.
-(21123, 4412, 10), -- Slightly Weak P. Def.
-(21123, 4413, 10), -- Slightly Weak M. Def.
-(21123, 4414, 2), -- Standard Type
-(21123, 4415, 3), -- One-handed Sword
-(21123, 4416, 9), -- Demons
+(21123, 4229, 2), -- NPC Double Wind Fist
+(21123, 4408, 1), -- HP Modifiers
+(21123, 4409, 1), -- MP Modifiers
+(21123, 4410, 12), -- P. Atk. Modifiers
+(21123, 4411, 12), -- M. Atk. Modifiers
+(21123, 4412, 10), -- P. Def. Modifiers
+(21123, 4413, 10), -- M. Def. Modifiers
+(21123, 4414, 2), -- Armor Type
+(21123, 4415, 3), -- Weapon Type
+(21123, 4416, 9), -- Races
 -- Red Eye Barbed Bat
-(21124, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(21124, 4408, 1), -- HP Increase (1x)
-(21124, 4409, 1), -- MP Increase (1x)
-(21124, 4410, 11), -- Average P. Atk.
-(21124, 4411, 11), -- Average M. Atk.
-(21124, 4412, 11), -- Average P. Def.
-(21124, 4413, 11), -- Average M. Def.
-(21124, 4414, 3), -- Light Armor Type
-(21124, 4415, 3), -- One-handed Sword
-(21124, 4416, 4), -- Animals
+(21124, 4276, 1), -- Archery Attack Weak Point
+(21124, 4408, 1), -- HP Modifiers
+(21124, 4409, 1), -- MP Modifiers
+(21124, 4410, 11), -- P. Atk. Modifiers
+(21124, 4411, 11), -- M. Atk. Modifiers
+(21124, 4412, 11), -- P. Def. Modifiers
+(21124, 4413, 11), -- M. Def. Modifiers
+(21124, 4414, 3), -- Armor Type
+(21124, 4415, 3), -- Weapon Type
+(21124, 4416, 4), -- Races
 -- Northern Trimden
-(21125, 4408, 1), -- HP Increase (1x)
-(21125, 4409, 1), -- MP Increase (1x)
-(21125, 4410, 11), -- Average P. Atk.
-(21125, 4411, 11), -- Average M. Atk.
-(21125, 4412, 11), -- Average P. Def.
-(21125, 4413, 11), -- Average M. Def.
-(21125, 4414, 2), -- Standard Type
-(21125, 4415, 3), -- One-handed Sword
-(21125, 4416, 12), -- Bugs
+(21125, 4408, 1), -- HP Modifiers
+(21125, 4409, 1), -- MP Modifiers
+(21125, 4410, 11), -- P. Atk. Modifiers
+(21125, 4411, 11), -- M. Atk. Modifiers
+(21125, 4412, 11), -- P. Def. Modifiers
+(21125, 4413, 11), -- M. Def. Modifiers
+(21125, 4414, 2), -- Armor Type
+(21125, 4415, 3), -- Weapon Type
+(21125, 4416, 12), -- Races
 -- Kerope Werewolf
-(21126, 4408, 1), -- HP Increase (1x)
-(21126, 4409, 1), -- MP Increase (1x)
-(21126, 4410, 11), -- Average P. Atk.
-(21126, 4411, 11), -- Average M. Atk.
-(21126, 4412, 11), -- Average P. Def.
-(21126, 4413, 11), -- Average M. Def.
-(21126, 4414, 3), -- Light Armor Type
-(21126, 4415, 5), -- Blunt Weapons
-(21126, 4416, 6), -- Humanoids
+(21126, 4408, 1), -- HP Modifiers
+(21126, 4409, 1), -- MP Modifiers
+(21126, 4410, 11), -- P. Atk. Modifiers
+(21126, 4411, 11), -- M. Atk. Modifiers
+(21126, 4412, 11), -- P. Def. Modifiers
+(21126, 4413, 11), -- M. Def. Modifiers
+(21126, 4414, 3), -- Armor Type
+(21126, 4415, 5), -- Weapon Type
+(21126, 4416, 6), -- Races
 -- Northern Goblin
-(21127, 4408, 1), -- HP Increase (1x)
-(21127, 4409, 1), -- MP Increase (1x)
-(21127, 4410, 11), -- Average P. Atk.
-(21127, 4411, 11), -- Average M. Atk.
-(21127, 4412, 11), -- Average P. Def.
-(21127, 4413, 11), -- Average M. Def.
-(21127, 4414, 2), -- Standard Type
-(21127, 4415, 5), -- Blunt Weapons
-(21127, 4416, 6), -- Humanoids
+(21127, 4408, 1), -- HP Modifiers
+(21127, 4409, 1), -- MP Modifiers
+(21127, 4410, 11), -- P. Atk. Modifiers
+(21127, 4411, 11), -- M. Atk. Modifiers
+(21127, 4412, 11), -- P. Def. Modifiers
+(21127, 4413, 11), -- M. Def. Modifiers
+(21127, 4414, 2), -- Armor Type
+(21127, 4415, 5), -- Weapon Type
+(21127, 4416, 6), -- Races
 -- Spine Golem
-(21128, 4254, 2), -- Prominence
-(21128, 4273, 3), -- Resist Daggers/Rapier Weapon
-(21128, 4274, 1), -- Blunt Weapon Weak Point
-(21128, 4408, 1), -- HP Increase (1x)
-(21128, 4409, 1), -- MP Increase (1x)
-(21128, 4410, 11), -- Average P. Atk.
-(21128, 4411, 11), -- Average M. Atk.
-(21128, 4412, 11), -- Average P. Def.
-(21128, 4413, 11), -- Average M. Def.
-(21128, 4414, 2), -- Standard Type
-(21128, 4415, 5), -- Blunt Weapons
-(21128, 4416, 2), -- Magic Creatures
+(21128, 4254, 2), -- NPC Prominence - Slow
+(21128, 4273, 3), -- Resist Dagger
+(21128, 4274, 1), -- Blunt Attack Weak Point
+(21128, 4408, 1), -- HP Modifiers
+(21128, 4409, 1), -- MP Modifiers
+(21128, 4410, 11), -- P. Atk. Modifiers
+(21128, 4411, 11), -- M. Atk. Modifiers
+(21128, 4412, 11), -- P. Def. Modifiers
+(21128, 4413, 11), -- M. Def. Modifiers
+(21128, 4414, 2), -- Armor Type
+(21128, 4415, 5), -- Weapon Type
+(21128, 4416, 2), -- Races
 (21128, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Kerope Werewolf Chief
-(21129, 4408, 1), -- HP Increase (1x)
-(21129, 4409, 1), -- MP Increase (1x)
-(21129, 4410, 12), -- Slightly Strong P. Atk.
-(21129, 4411, 12), -- Slightly Strong M. Atk.
-(21129, 4412, 10), -- Slightly Weak P. Def.
-(21129, 4413, 10), -- Slightly Weak M. Def.
-(21129, 4414, 3), -- Light Armor Type
-(21129, 4415, 5), -- Blunt Weapons
-(21129, 4416, 6), -- Humanoids
+(21129, 4408, 1), -- HP Modifiers
+(21129, 4409, 1), -- MP Modifiers
+(21129, 4410, 12), -- P. Atk. Modifiers
+(21129, 4411, 12), -- M. Atk. Modifiers
+(21129, 4412, 10), -- P. Def. Modifiers
+(21129, 4413, 10), -- M. Def. Modifiers
+(21129, 4414, 3), -- Armor Type
+(21129, 4415, 5), -- Weapon Type
+(21129, 4416, 6), -- Races
 -- Northern Goblin Leader
-(21130, 4408, 1), -- HP Increase (1x)
-(21130, 4409, 1), -- MP Increase (1x)
-(21130, 4410, 11), -- Average P. Atk.
-(21130, 4411, 11), -- Average M. Atk.
-(21130, 4412, 11), -- Average P. Def.
-(21130, 4413, 11), -- Average M. Def.
-(21130, 4414, 2), -- Standard Type
-(21130, 4415, 5), -- Blunt Weapons
-(21130, 4416, 6), -- Humanoids
+(21130, 4408, 1), -- HP Modifiers
+(21130, 4409, 1), -- MP Modifiers
+(21130, 4410, 11), -- P. Atk. Modifiers
+(21130, 4411, 11), -- M. Atk. Modifiers
+(21130, 4412, 11), -- P. Def. Modifiers
+(21130, 4413, 11), -- M. Def. Modifiers
+(21130, 4414, 2), -- Armor Type
+(21130, 4415, 5), -- Weapon Type
+(21130, 4416, 6), -- Races
 -- Enchanted Spine Golem
-(21131, 4250, 3), -- Twister
-(21131, 4273, 3), -- Resist Daggers/Rapier Weapon
-(21131, 4274, 1), -- Blunt Weapon Weak Point
-(21131, 4408, 1), -- HP Increase (1x)
-(21131, 4409, 1), -- MP Increase (1x)
-(21131, 4410, 12), -- Slightly Strong P. Atk.
-(21131, 4411, 12), -- Slightly Strong M. Atk.
-(21131, 4412, 10), -- Slightly Weak P. Def.
-(21131, 4413, 10), -- Slightly Weak M. Def.
-(21131, 4414, 2), -- Standard Type
-(21131, 4415, 5), -- Blunt Weapons
-(21131, 4416, 2), -- Magic Creatures
+(21131, 4250, 3), -- NPC Twister - Slow
+(21131, 4273, 3), -- Resist Dagger
+(21131, 4274, 1), -- Blunt Attack Weak Point
+(21131, 4408, 1), -- HP Modifiers
+(21131, 4409, 1), -- MP Modifiers
+(21131, 4410, 12), -- P. Atk. Modifiers
+(21131, 4411, 12), -- M. Atk. Modifiers
+(21131, 4412, 10), -- P. Def. Modifiers
+(21131, 4413, 10), -- M. Def. Modifiers
+(21131, 4414, 2), -- Armor Type
+(21131, 4415, 5), -- Weapon Type
+(21131, 4416, 2), -- Races
 (21131, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Underground Kobold
-(21132, 4408, 1), -- HP Increase (1x)
-(21132, 4409, 1), -- MP Increase (1x)
-(21132, 4410, 11), -- Average P. Atk.
-(21132, 4411, 11), -- Average M. Atk.
-(21132, 4412, 11), -- Average P. Def.
-(21132, 4413, 11), -- Average M. Def.
-(21132, 4414, 3), -- Light Armor Type
-(21132, 4415, 3), -- One-handed Sword
-(21132, 4416, 6), -- Humanoids
+(21132, 4408, 1), -- HP Modifiers
+(21132, 4409, 1), -- MP Modifiers
+(21132, 4410, 11), -- P. Atk. Modifiers
+(21132, 4411, 11), -- M. Atk. Modifiers
+(21132, 4412, 11), -- P. Def. Modifiers
+(21132, 4413, 11), -- M. Def. Modifiers
+(21132, 4414, 3), -- Armor Type
+(21132, 4415, 3), -- Weapon Type
+(21132, 4416, 6), -- Races
 -- Dead Pit Skeleton Archer
-(21133, 4273, 3), -- Resist Daggers/Rapier Weapon
-(21133, 4274, 1), -- Blunt Weapon Weak Point
-(21133, 4408, 1), -- HP Increase (1x)
-(21133, 4409, 1), -- MP Increase (1x)
-(21133, 4410, 11), -- Average P. Atk.
-(21133, 4411, 11), -- Average M. Atk.
-(21133, 4412, 11), -- Average P. Def.
-(21133, 4413, 11), -- Average M. Def.
-(21133, 4414, 3), -- Light Armor Type
-(21133, 4415, 9), -- Bows
-(21133, 4416, 1), -- Undead
+(21133, 4273, 3), -- Resist Dagger
+(21133, 4274, 1), -- Blunt Attack Weak Point
+(21133, 4408, 1), -- HP Modifiers
+(21133, 4409, 1), -- MP Modifiers
+(21133, 4410, 11), -- P. Atk. Modifiers
+(21133, 4411, 11), -- M. Atk. Modifiers
+(21133, 4412, 11), -- P. Def. Modifiers
+(21133, 4413, 11), -- M. Def. Modifiers
+(21133, 4414, 3), -- Armor Type
+(21133, 4415, 9), -- Weapon Type
+(21133, 4416, 1), -- Races
 -- Dead Pit Spartoi
-(21134, 4273, 3), -- Resist Daggers/Rapier Weapon
-(21134, 4274, 1), -- Blunt Weapon Weak Point
-(21134, 4408, 1), -- HP Increase (1x)
-(21134, 4409, 1), -- MP Increase (1x)
-(21134, 4410, 11), -- Average P. Atk.
-(21134, 4411, 11), -- Average M. Atk.
-(21134, 4412, 11), -- Average P. Def.
-(21134, 4413, 11), -- Average M. Def.
-(21134, 4414, 3), -- Light Armor Type
-(21134, 4415, 3), -- One-handed Sword
-(21134, 4416, 1), -- Undead
+(21134, 4273, 3), -- Resist Dagger
+(21134, 4274, 1), -- Blunt Attack Weak Point
+(21134, 4408, 1), -- HP Modifiers
+(21134, 4409, 1), -- MP Modifiers
+(21134, 4410, 11), -- P. Atk. Modifiers
+(21134, 4411, 11), -- M. Atk. Modifiers
+(21134, 4412, 11), -- P. Def. Modifiers
+(21134, 4413, 11), -- M. Def. Modifiers
+(21134, 4414, 3), -- Armor Type
+(21134, 4415, 3), -- Weapon Type
+(21134, 4416, 1), -- Races
 -- Underground Kobold Warrior
-(21135, 4032, 2), -- Power Strike
-(21135, 4408, 1), -- HP Increase (1x)
-(21135, 4409, 1), -- MP Increase (1x)
-(21135, 4410, 12), -- Slightly Strong P. Atk.
-(21135, 4411, 12), -- Slightly Strong M. Atk.
-(21135, 4412, 10), -- Slightly Weak P. Def.
-(21135, 4413, 10), -- Slightly Weak M. Def.
-(21135, 4414, 2), -- Standard Type
-(21135, 4415, 3), -- One-handed Sword
-(21135, 4416, 6), -- Humanoids
+(21135, 4032, 2), -- NPC Strike
+(21135, 4408, 1), -- HP Modifiers
+(21135, 4409, 1), -- MP Modifiers
+(21135, 4410, 12), -- P. Atk. Modifiers
+(21135, 4411, 12), -- M. Atk. Modifiers
+(21135, 4412, 10), -- P. Def. Modifiers
+(21135, 4413, 10), -- M. Def. Modifiers
+(21135, 4414, 2), -- Armor Type
+(21135, 4415, 3), -- Weapon Type
+(21135, 4416, 6), -- Races
 -- Dead Pit Horror
-(21136, 4408, 1), -- HP Increase (1x)
-(21136, 4409, 1), -- MP Increase (1x)
-(21136, 4410, 11), -- Average P. Atk.
-(21136, 4411, 11), -- Average M. Atk.
-(21136, 4412, 11), -- Average P. Def.
-(21136, 4413, 11), -- Average M. Def.
-(21136, 4414, 3), -- Light Armor Type
-(21136, 4415, 3), -- One-handed Sword
-(21136, 4416, 1), -- Undead
+(21136, 4408, 1), -- HP Modifiers
+(21136, 4409, 1), -- MP Modifiers
+(21136, 4410, 11), -- P. Atk. Modifiers
+(21136, 4411, 11), -- M. Atk. Modifiers
+(21136, 4412, 11), -- P. Def. Modifiers
+(21136, 4413, 11), -- M. Def. Modifiers
+(21136, 4414, 3), -- Armor Type
+(21136, 4415, 3), -- Weapon Type
+(21136, 4416, 1), -- Races
 -- Iron Ore Golem
-(21137, 4250, 4), -- Twister
-(21137, 4273, 3), -- Resist Daggers/Rapier Weapon
-(21137, 4274, 1), -- Blunt Weapon Weak Point
-(21137, 4408, 1), -- HP Increase (1x)
-(21137, 4409, 1), -- MP Increase (1x)
-(21137, 4410, 10), -- Slightly Weak P. Atk.
-(21137, 4411, 10), -- Slightly Weak M. Atk.
-(21137, 4412, 12), -- Slightly Strong P. Def.
-(21137, 4413, 12), -- Slightly Strong M. Def.
-(21137, 4414, 2), -- Standard Type
-(21137, 4415, 5), -- Blunt Weapons
-(21137, 4416, 2), -- Magic Creatures
+(21137, 4250, 4), -- NPC Twister - Slow
+(21137, 4273, 3), -- Resist Dagger
+(21137, 4274, 1), -- Blunt Attack Weak Point
+(21137, 4408, 1), -- HP Modifiers
+(21137, 4409, 1), -- MP Modifiers
+(21137, 4410, 10), -- P. Atk. Modifiers
+(21137, 4411, 10), -- M. Atk. Modifiers
+(21137, 4412, 12), -- P. Def. Modifiers
+(21137, 4413, 12), -- M. Def. Modifiers
+(21137, 4414, 2), -- Armor Type
+(21137, 4415, 5), -- Weapon Type
+(21137, 4416, 2), -- Races
 (21137, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Greedy Geist
-(21138, 4028, 2), -- Might
-(21138, 4408, 1), -- HP Increase (1x)
-(21138, 4409, 1), -- MP Increase (1x)
-(21138, 4410, 11), -- Average P. Atk.
-(21138, 4411, 11), -- Average M. Atk.
-(21138, 4412, 11), -- Average P. Def.
-(21138, 4413, 11), -- Average M. Def.
-(21138, 4414, 3), -- Light Armor Type
-(21138, 4415, 5), -- Blunt Weapons
-(21138, 4416, 1), -- Undead
+(21138, 4028, 2), -- NPC Might
+(21138, 4408, 1), -- HP Modifiers
+(21138, 4409, 1), -- MP Modifiers
+(21138, 4410, 11), -- P. Atk. Modifiers
+(21138, 4411, 11), -- M. Atk. Modifiers
+(21138, 4412, 11), -- P. Def. Modifiers
+(21138, 4413, 11), -- M. Def. Modifiers
+(21138, 4414, 3), -- Armor Type
+(21138, 4415, 5), -- Weapon Type
+(21138, 4416, 1), -- Races
 -- Catacomb Barbed Bat
-(21139, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(21139, 4408, 12), -- HP Increase (4x)
-(21139, 4409, 1), -- MP Increase (1x)
-(21139, 4410, 11), -- Average P. Atk.
-(21139, 4411, 11), -- Average M. Atk.
-(21139, 4412, 11), -- Average P. Def.
-(21139, 4413, 11), -- Average M. Def.
-(21139, 4414, 3), -- Light Armor Type
-(21139, 4415, 3), -- One-handed Sword
-(21139, 4416, 4), -- Animals
+(21139, 4276, 1), -- Archery Attack Weak Point
+(21139, 4408, 12), -- HP Modifiers
+(21139, 4409, 1), -- MP Modifiers
+(21139, 4410, 11), -- P. Atk. Modifiers
+(21139, 4411, 11), -- M. Atk. Modifiers
+(21139, 4412, 11), -- P. Def. Modifiers
+(21139, 4413, 11), -- M. Def. Modifiers
+(21139, 4414, 3), -- Armor Type
+(21139, 4415, 3), -- Weapon Type
+(21139, 4416, 4), -- Races
 -- Catacomb Wisp
-(21140, 4151, 2), -- Wind Strike
-(21140, 4160, 2), -- Aura Burn
-(21140, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(21140, 4408, 12), -- HP Increase (4x)
-(21140, 4409, 1), -- MP Increase (1x)
-(21140, 4410, 11), -- Average P. Atk.
-(21140, 4411, 11), -- Average M. Atk.
-(21140, 4412, 11), -- Average P. Def.
-(21140, 4413, 11), -- Average M. Def.
-(21140, 4414, 3), -- Light Armor Type
-(21140, 4415, 5), -- Blunt Weapons
-(21140, 4416, 2), -- Magic Creatures
+(21140, 4151, 2), -- NPC Windstrike - Magic
+(21140, 4160, 2), -- NPC Aura Burn - Magic
+(21140, 4276, 1), -- Archery Attack Weak Point
+(21140, 4408, 12), -- HP Modifiers
+(21140, 4409, 1), -- MP Modifiers
+(21140, 4410, 11), -- P. Atk. Modifiers
+(21140, 4411, 11), -- M. Atk. Modifiers
+(21140, 4412, 11), -- P. Def. Modifiers
+(21140, 4413, 11), -- M. Def. Modifiers
+(21140, 4414, 3), -- Armor Type
+(21140, 4415, 5), -- Weapon Type
+(21140, 4416, 2), -- Races
 -- Catacomb Serpent
-(21141, 4101, 2), -- Whirlwind
-(21141, 4408, 12), -- HP Increase (4x)
-(21141, 4409, 1), -- MP Increase (1x)
-(21141, 4410, 11), -- Average P. Atk.
-(21141, 4411, 11), -- Average M. Atk.
-(21141, 4412, 11), -- Average P. Def.
-(21141, 4413, 11), -- Average M. Def.
-(21141, 4414, 3), -- Light Armor Type
-(21141, 4415, 3), -- One-handed Sword
-(21141, 4416, 3), -- Beasts
+(21141, 4101, 2), -- NPC Spinning Slash
+(21141, 4408, 12), -- HP Modifiers
+(21141, 4409, 1), -- MP Modifiers
+(21141, 4410, 11), -- P. Atk. Modifiers
+(21141, 4411, 11), -- M. Atk. Modifiers
+(21141, 4412, 11), -- P. Def. Modifiers
+(21141, 4413, 11), -- M. Def. Modifiers
+(21141, 4414, 3), -- Armor Type
+(21141, 4415, 3), -- Weapon Type
+(21141, 4416, 3), -- Races
 -- Grave Keeper Spartoi
-(21142, 4071, 5), -- Resist Bow/Crossbow Weapons
-(21142, 4273, 3), -- Resist Daggers/Rapier Weapon
-(21142, 4408, 12), -- HP Increase (4x)
-(21142, 4409, 1), -- MP Increase (1x)
-(21142, 4410, 10), -- Slightly Weak P. Atk.
-(21142, 4411, 10), -- Slightly Weak M. Atk.
-(21142, 4412, 12), -- Slightly Strong P. Def.
-(21142, 4413, 12), -- Slightly Strong M. Def.
-(21142, 4414, 2), -- Standard Type
-(21142, 4415, 3), -- One-handed Sword
-(21142, 4416, 1), -- Undead
+(21142, 4071, 5), -- Resist Archery
+(21142, 4273, 3), -- Resist Dagger
+(21142, 4408, 12), -- HP Modifiers
+(21142, 4409, 1), -- MP Modifiers
+(21142, 4410, 10), -- P. Atk. Modifiers
+(21142, 4411, 10), -- M. Atk. Modifiers
+(21142, 4412, 12), -- P. Def. Modifiers
+(21142, 4413, 12), -- M. Def. Modifiers
+(21142, 4414, 2), -- Armor Type
+(21142, 4415, 3), -- Weapon Type
+(21142, 4416, 1), -- Races
 -- Catacomb Scavenger Bat
-(21143, 4002, 3), -- HP Drain
-(21143, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(21143, 4408, 12), -- HP Increase (4x)
-(21143, 4409, 1), -- MP Increase (1x)
-(21143, 4410, 11), -- Average P. Atk.
-(21143, 4411, 11), -- Average M. Atk.
-(21143, 4412, 11), -- Average P. Def.
-(21143, 4413, 11), -- Average M. Def.
-(21143, 4414, 3), -- Light Armor Type
-(21143, 4415, 3), -- One-handed Sword
-(21143, 4416, 4), -- Animals
+(21143, 4002, 3), -- NPC HP Drain
+(21143, 4276, 1), -- Archery Attack Weak Point
+(21143, 4408, 12), -- HP Modifiers
+(21143, 4409, 1), -- MP Modifiers
+(21143, 4410, 11), -- P. Atk. Modifiers
+(21143, 4411, 11), -- M. Atk. Modifiers
+(21143, 4412, 11), -- P. Def. Modifiers
+(21143, 4413, 11), -- M. Def. Modifiers
+(21143, 4414, 3), -- Armor Type
+(21143, 4415, 3), -- Weapon Type
+(21143, 4416, 4), -- Races
 -- Catacomb Shadow
-(21144, 4076, 2), -- Slow
-(21144, 4158, 3), -- Prominence
-(21144, 4160, 3), -- Aura Burn
-(21144, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(21144, 4408, 12), -- HP Increase (4x)
-(21144, 4409, 1), -- MP Increase (1x)
-(21144, 4410, 11), -- Average P. Atk.
-(21144, 4411, 11), -- Average M. Atk.
-(21144, 4412, 11), -- Average P. Def.
-(21144, 4413, 11), -- Average M. Def.
-(21144, 4414, 3), -- Light Armor Type
-(21144, 4415, 5), -- Blunt Weapons
-(21144, 4416, 9), -- Demons
+(21144, 4076, 2), -- Reduction in movement speed
+(21144, 4158, 3), -- NPC Prominence - Magic
+(21144, 4160, 3), -- NPC Aura Burn - Magic
+(21144, 4276, 1), -- Archery Attack Weak Point
+(21144, 4408, 12), -- HP Modifiers
+(21144, 4409, 1), -- MP Modifiers
+(21144, 4410, 11), -- P. Atk. Modifiers
+(21144, 4411, 11), -- M. Atk. Modifiers
+(21144, 4412, 11), -- P. Def. Modifiers
+(21144, 4413, 11), -- M. Def. Modifiers
+(21144, 4414, 3), -- Armor Type
+(21144, 4415, 5), -- Weapon Type
+(21144, 4416, 9), -- Races
 -- Catacomb Stakato Soldier
 (21145, 4035, 3), -- Poison
-(21145, 4408, 12), -- HP Increase (4x)
-(21145, 4409, 1), -- MP Increase (1x)
-(21145, 4410, 11), -- Average P. Atk.
-(21145, 4411, 11), -- Average M. Atk.
-(21145, 4412, 11), -- Average P. Def.
-(21145, 4413, 11), -- Average M. Def.
-(21145, 4414, 3), -- Light Armor Type
-(21145, 4415, 3), -- One-handed Sword
-(21145, 4416, 6), -- Humanoids
+(21145, 4408, 12), -- HP Modifiers
+(21145, 4409, 1), -- MP Modifiers
+(21145, 4410, 11), -- P. Atk. Modifiers
+(21145, 4411, 11), -- M. Atk. Modifiers
+(21145, 4412, 11), -- P. Def. Modifiers
+(21145, 4413, 11), -- M. Def. Modifiers
+(21145, 4414, 3), -- Armor Type
+(21145, 4415, 3), -- Weapon Type
+(21145, 4416, 6), -- Races
 -- Grave Keeper Dark Horror
-(21146, 4066, 4), -- Twister
-(21146, 4408, 12), -- HP Increase (4x)
-(21146, 4409, 1), -- MP Increase (1x)
-(21146, 4410, 10), -- Slightly Weak P. Atk.
-(21146, 4411, 10), -- Slightly Weak M. Atk.
-(21146, 4412, 12), -- Slightly Strong P. Def.
-(21146, 4413, 12), -- Slightly Strong M. Def.
-(21146, 4414, 2), -- Standard Type
-(21146, 4415, 3), -- One-handed Sword
-(21146, 4416, 1), -- Undead
+(21146, 4066, 4), -- NPC Twister
+(21146, 4408, 12), -- HP Modifiers
+(21146, 4409, 1), -- MP Modifiers
+(21146, 4410, 10), -- P. Atk. Modifiers
+(21146, 4411, 10), -- M. Atk. Modifiers
+(21146, 4412, 12), -- P. Def. Modifiers
+(21146, 4413, 12), -- M. Def. Modifiers
+(21146, 4414, 2), -- Armor Type
+(21146, 4415, 3), -- Weapon Type
+(21146, 4416, 1), -- Races
 -- Catacomb Gargoyle
-(21147, 4072, 4), -- Stun
-(21147, 4273, 3), -- Resist Daggers/Rapier Weapon
-(21147, 4285, 3), -- Resist Sleep Attacks
-(21147, 4287, 3), -- Resist Hold Attacks
-(21147, 4408, 12), -- HP Increase (4x)
-(21147, 4409, 1), -- MP Increase (1x)
-(21147, 4410, 11), -- Average P. Atk.
-(21147, 4411, 11), -- Average M. Atk.
-(21147, 4412, 11), -- Average P. Def.
-(21147, 4413, 11), -- Average M. Def.
-(21147, 4414, 2), -- Standard Type
-(21147, 4415, 3), -- One-handed Sword
-(21147, 4416, 2), -- Magic Creatures
+(21147, 4072, 4), -- Shock
+(21147, 4273, 3), -- Resist Dagger
+(21147, 4285, 3), -- Resist Sleep
+(21147, 4287, 3), -- Resist Hold
+(21147, 4408, 12), -- HP Modifiers
+(21147, 4409, 1), -- MP Modifiers
+(21147, 4410, 11), -- P. Atk. Modifiers
+(21147, 4411, 11), -- M. Atk. Modifiers
+(21147, 4412, 11), -- P. Def. Modifiers
+(21147, 4413, 11), -- M. Def. Modifiers
+(21147, 4414, 2), -- Armor Type
+(21147, 4415, 3), -- Weapon Type
+(21147, 4416, 2), -- Races
 -- Catacomb Liviona
-(21148, 4038, 4), -- Decrease Atk. Spd.
-(21148, 4157, 4), -- Blaze
-(21148, 4160, 4), -- Aura Burn
-(21148, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(21148, 4408, 12), -- HP Increase (4x)
-(21148, 4409, 1), -- MP Increase (1x)
-(21148, 4410, 11), -- Average P. Atk.
-(21148, 4411, 11), -- Average M. Atk.
-(21148, 4412, 11), -- Average P. Def.
-(21148, 4413, 11), -- Average M. Def.
-(21148, 4414, 3), -- Light Armor Type
-(21148, 4415, 5), -- Blunt Weapons
-(21148, 4416, 2), -- Magic Creatures
+(21148, 4038, 4), -- Decrease Atk.Spd.
+(21148, 4157, 4), -- NPC Blaze - Magic
+(21148, 4160, 4), -- NPC Aura Burn - Magic
+(21148, 4276, 1), -- Archery Attack Weak Point
+(21148, 4408, 12), -- HP Modifiers
+(21148, 4409, 1), -- MP Modifiers
+(21148, 4410, 11), -- P. Atk. Modifiers
+(21148, 4411, 11), -- M. Atk. Modifiers
+(21148, 4412, 11), -- P. Def. Modifiers
+(21148, 4413, 11), -- M. Def. Modifiers
+(21148, 4414, 3), -- Armor Type
+(21148, 4415, 5), -- Weapon Type
+(21148, 4416, 2), -- Races
 -- Decayed Ancient Pikeman
-(21149, 4071, 5), -- Resist Bow/Crossbow Weapons
-(21149, 4101, 5), -- Whirlwind
-(21149, 4285, 3), -- Resist Sleep Attacks
-(21149, 4287, 3), -- Resist Hold Attacks
-(21149, 4408, 12), -- HP Increase (4x)
-(21149, 4409, 1), -- MP Increase (1x)
-(21149, 4410, 11), -- Average P. Atk.
-(21149, 4411, 11), -- Average M. Atk.
-(21149, 4412, 11), -- Average P. Def.
-(21149, 4413, 11), -- Average M. Def.
-(21149, 4414, 2), -- Standard Type
-(21149, 4415, 3), -- One-handed Sword
-(21149, 4416, 1), -- Undead
+(21149, 4071, 5), -- Resist Archery
+(21149, 4101, 5), -- NPC Spinning Slash
+(21149, 4285, 3), -- Resist Sleep
+(21149, 4287, 3), -- Resist Hold
+(21149, 4408, 12), -- HP Modifiers
+(21149, 4409, 1), -- MP Modifiers
+(21149, 4410, 11), -- P. Atk. Modifiers
+(21149, 4411, 11), -- M. Atk. Modifiers
+(21149, 4412, 11), -- P. Def. Modifiers
+(21149, 4413, 11), -- M. Def. Modifiers
+(21149, 4414, 2), -- Armor Type
+(21149, 4415, 3), -- Weapon Type
+(21149, 4416, 1), -- Races
 -- Decayed Ancient Soldier
-(21150, 4073, 4), -- Stun
-(21150, 4408, 12), -- HP Increase (4x)
-(21150, 4409, 1), -- MP Increase (1x)
-(21150, 4410, 11), -- Average P. Atk.
-(21150, 4411, 11), -- Average M. Atk.
-(21150, 4412, 11), -- Average P. Def.
-(21150, 4413, 11), -- Average M. Def.
-(21150, 4414, 2), -- Standard Type
-(21150, 4415, 3), -- One-handed Sword
-(21150, 4416, 1), -- Undead
+(21150, 4073, 4), -- Shock
+(21150, 4408, 12), -- HP Modifiers
+(21150, 4409, 1), -- MP Modifiers
+(21150, 4410, 11), -- P. Atk. Modifiers
+(21150, 4411, 11), -- M. Atk. Modifiers
+(21150, 4412, 11), -- P. Def. Modifiers
+(21150, 4413, 11), -- M. Def. Modifiers
+(21150, 4414, 2), -- Armor Type
+(21150, 4415, 3), -- Weapon Type
+(21150, 4416, 1), -- Races
 -- Decayed Ancient Knight
-(21151, 4071, 5), -- Resist Bow/Crossbow Weapons
-(21151, 4244, 5), -- Wild Sweep
-(21151, 4285, 3), -- Resist Sleep Attacks
-(21151, 4287, 3), -- Resist Hold Attacks
-(21151, 4408, 12), -- HP Increase (4x)
-(21151, 4409, 1), -- MP Increase (1x)
-(21151, 4410, 11), -- Average P. Atk.
-(21151, 4411, 11), -- Average M. Atk.
-(21151, 4412, 11), -- Average P. Def.
-(21151, 4413, 11), -- Average M. Def.
-(21151, 4414, 2), -- Standard Type
-(21151, 4415, 3), -- One-handed Sword
-(21151, 4416, 1), -- Undead
+(21151, 4071, 5), -- Resist Archery
+(21151, 4244, 5), -- NPC Wild Sweep
+(21151, 4285, 3), -- Resist Sleep
+(21151, 4287, 3), -- Resist Hold
+(21151, 4408, 12), -- HP Modifiers
+(21151, 4409, 1), -- MP Modifiers
+(21151, 4410, 11), -- P. Atk. Modifiers
+(21151, 4411, 11), -- M. Atk. Modifiers
+(21151, 4412, 11), -- P. Def. Modifiers
+(21151, 4413, 11), -- M. Def. Modifiers
+(21151, 4414, 2), -- Armor Type
+(21151, 4415, 3), -- Weapon Type
+(21151, 4416, 1), -- Races
 -- Purgatory Wisp
-(21152, 4151, 5), -- Wind Strike
-(21152, 4160, 5), -- Aura Burn
-(21152, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(21152, 4408, 12), -- HP Increase (4x)
-(21152, 4409, 1), -- MP Increase (1x)
-(21152, 4410, 11), -- Average P. Atk.
-(21152, 4411, 11), -- Average M. Atk.
-(21152, 4412, 11), -- Average P. Def.
-(21152, 4413, 11), -- Average M. Def.
-(21152, 4414, 3), -- Light Armor Type
-(21152, 4415, 5), -- Blunt Weapons
-(21152, 4416, 2), -- Magic Creatures
+(21152, 4151, 5), -- NPC Windstrike - Magic
+(21152, 4160, 5), -- NPC Aura Burn - Magic
+(21152, 4276, 1), -- Archery Attack Weak Point
+(21152, 4408, 12), -- HP Modifiers
+(21152, 4409, 1), -- MP Modifiers
+(21152, 4410, 11), -- P. Atk. Modifiers
+(21152, 4411, 11), -- M. Atk. Modifiers
+(21152, 4412, 11), -- P. Def. Modifiers
+(21152, 4413, 11), -- M. Def. Modifiers
+(21152, 4414, 3), -- Armor Type
+(21152, 4415, 5), -- Weapon Type
+(21152, 4416, 2), -- Races
 -- Purgatory Serpent
-(21153, 4101, 5), -- Whirlwind
-(21153, 4408, 12), -- HP Increase (4x)
-(21153, 4409, 1), -- MP Increase (1x)
-(21153, 4410, 11), -- Average P. Atk.
-(21153, 4411, 11), -- Average M. Atk.
-(21153, 4412, 11), -- Average P. Def.
-(21153, 4413, 11), -- Average M. Def.
-(21153, 4414, 3), -- Light Armor Type
-(21153, 4415, 3), -- One-handed Sword
-(21153, 4416, 3), -- Beasts
+(21153, 4101, 5), -- NPC Spinning Slash
+(21153, 4408, 12), -- HP Modifiers
+(21153, 4409, 1), -- MP Modifiers
+(21153, 4410, 11), -- P. Atk. Modifiers
+(21153, 4411, 11), -- M. Atk. Modifiers
+(21153, 4412, 11), -- P. Def. Modifiers
+(21153, 4413, 11), -- M. Def. Modifiers
+(21153, 4414, 3), -- Armor Type
+(21153, 4415, 3), -- Weapon Type
+(21153, 4416, 3), -- Races
 -- Hell Keeper Medusa
 (21154, 4035, 5), -- Poison
-(21154, 4408, 12), -- HP Increase (4x)
-(21154, 4409, 1), -- MP Increase (1x)
-(21154, 4410, 10), -- Slightly Weak P. Atk.
-(21154, 4411, 10), -- Slightly Weak M. Atk.
-(21154, 4412, 12), -- Slightly Strong P. Def.
-(21154, 4413, 12), -- Slightly Strong M. Def.
-(21154, 4414, 2), -- Standard Type
-(21154, 4415, 3), -- One-handed Sword
-(21154, 4416, 3), -- Beasts
+(21154, 4408, 12), -- HP Modifiers
+(21154, 4409, 1), -- MP Modifiers
+(21154, 4410, 10), -- P. Atk. Modifiers
+(21154, 4411, 10), -- M. Atk. Modifiers
+(21154, 4412, 12), -- P. Def. Modifiers
+(21154, 4413, 12), -- M. Def. Modifiers
+(21154, 4414, 2), -- Armor Type
+(21154, 4415, 3), -- Weapon Type
+(21154, 4416, 3), -- Races
 -- Purgatory Conjurer
-(21155, 4002, 5), -- HP Drain
-(21155, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(21155, 4408, 12), -- HP Increase (4x)
-(21155, 4409, 1), -- MP Increase (1x)
-(21155, 4410, 11), -- Average P. Atk.
-(21155, 4411, 11), -- Average M. Atk.
-(21155, 4412, 11), -- Average P. Def.
-(21155, 4413, 11), -- Average M. Def.
-(21155, 4414, 3), -- Light Armor Type
-(21155, 4415, 3), -- One-handed Sword
-(21155, 4416, 4), -- Animals
+(21155, 4002, 5), -- NPC HP Drain
+(21155, 4276, 1), -- Archery Attack Weak Point
+(21155, 4408, 12), -- HP Modifiers
+(21155, 4409, 1), -- MP Modifiers
+(21155, 4410, 11), -- P. Atk. Modifiers
+(21155, 4411, 11), -- M. Atk. Modifiers
+(21155, 4412, 11), -- P. Def. Modifiers
+(21155, 4413, 11), -- M. Def. Modifiers
+(21155, 4414, 3), -- Armor Type
+(21155, 4415, 3), -- Weapon Type
+(21155, 4416, 4), -- Races
 -- Purgatory Shadow
-(21156, 4076, 3), -- Slow
-(21156, 4158, 6), -- Prominence
-(21156, 4160, 6), -- Aura Burn
-(21156, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(21156, 4408, 12), -- HP Increase (4x)
-(21156, 4409, 1), -- MP Increase (1x)
-(21156, 4410, 11), -- Average P. Atk.
-(21156, 4411, 11), -- Average M. Atk.
-(21156, 4412, 11), -- Average P. Def.
-(21156, 4413, 11), -- Average M. Def.
-(21156, 4414, 3), -- Light Armor Type
-(21156, 4415, 5), -- Blunt Weapons
-(21156, 4416, 9), -- Demons
+(21156, 4076, 3), -- Reduction in movement speed
+(21156, 4158, 6), -- NPC Prominence - Magic
+(21156, 4160, 6), -- NPC Aura Burn - Magic
+(21156, 4276, 1), -- Archery Attack Weak Point
+(21156, 4408, 12), -- HP Modifiers
+(21156, 4409, 1), -- MP Modifiers
+(21156, 4410, 11), -- P. Atk. Modifiers
+(21156, 4411, 11), -- M. Atk. Modifiers
+(21156, 4412, 11), -- P. Def. Modifiers
+(21156, 4413, 11), -- M. Def. Modifiers
+(21156, 4414, 3), -- Armor Type
+(21156, 4415, 5), -- Weapon Type
+(21156, 4416, 9), -- Races
 -- Purgatory Tarantula
 (21157, 4035, 6), -- Poison
-(21157, 4408, 12), -- HP Increase (4x)
-(21157, 4409, 1), -- MP Increase (1x)
-(21157, 4410, 11), -- Average P. Atk.
-(21157, 4411, 11), -- Average M. Atk.
-(21157, 4412, 11), -- Average P. Def.
-(21157, 4413, 11), -- Average M. Def.
-(21157, 4414, 3); -- Light Armor Type
+(21157, 4408, 12), -- HP Modifiers
+(21157, 4409, 1), -- MP Modifiers
+(21157, 4410, 11), -- P. Atk. Modifiers
+(21157, 4411, 11), -- M. Atk. Modifiers
+(21157, 4412, 11), -- P. Def. Modifiers
+(21157, 4413, 11), -- M. Def. Modifiers
+(21157, 4414, 3); -- Armor Type
 
 INSERT INTO `npcskills` VALUES
-(21157, 4415, 3), -- One-handed Sword
-(21157, 4416, 12), -- Bugs
+(21157, 4415, 3), -- Weapon Type
+(21157, 4416, 12), -- Races
 -- Hell Keeper Crimson Doll
-(21158, 4073, 4), -- Stun
-(21158, 4285, 3), -- Resist Sleep Attacks
-(21158, 4287, 3), -- Resist Hold Attacks
-(21158, 4408, 12), -- HP Increase (4x)
-(21158, 4409, 1), -- MP Increase (1x)
-(21158, 4410, 10), -- Slightly Weak P. Atk.
-(21158, 4411, 10), -- Slightly Weak M. Atk.
-(21158, 4412, 12), -- Slightly Strong P. Def.
-(21158, 4413, 12), -- Slightly Strong M. Def.
-(21158, 4414, 2), -- Standard Type
-(21158, 4415, 3), -- One-handed Sword
-(21158, 4416, 1), -- Undead
+(21158, 4073, 4), -- Shock
+(21158, 4285, 3), -- Resist Sleep
+(21158, 4287, 3), -- Resist Hold
+(21158, 4408, 12), -- HP Modifiers
+(21158, 4409, 1), -- MP Modifiers
+(21158, 4410, 10), -- P. Atk. Modifiers
+(21158, 4411, 10), -- M. Atk. Modifiers
+(21158, 4412, 12), -- P. Def. Modifiers
+(21158, 4413, 12), -- M. Def. Modifiers
+(21158, 4414, 2), -- Armor Type
+(21158, 4415, 3), -- Weapon Type
+(21158, 4416, 1), -- Races
 -- Purgatory Gargoyle
-(21159, 4072, 6), -- Stun
-(21159, 4273, 3), -- Resist Daggers/Rapier Weapon
-(21159, 4285, 3), -- Resist Sleep Attacks
-(21159, 4287, 3), -- Resist Hold Attacks
-(21159, 4408, 12), -- HP Increase (4x)
-(21159, 4409, 1), -- MP Increase (1x)
-(21159, 4410, 11), -- Average P. Atk.
-(21159, 4411, 11), -- Average M. Atk.
-(21159, 4412, 11), -- Average P. Def.
-(21159, 4413, 11), -- Average M. Def.
-(21159, 4414, 2), -- Standard Type
-(21159, 4415, 3), -- One-handed Sword
-(21159, 4416, 2), -- Magic Creatures
+(21159, 4072, 6), -- Shock
+(21159, 4273, 3), -- Resist Dagger
+(21159, 4285, 3), -- Resist Sleep
+(21159, 4287, 3), -- Resist Hold
+(21159, 4408, 12), -- HP Modifiers
+(21159, 4409, 1), -- MP Modifiers
+(21159, 4410, 11), -- P. Atk. Modifiers
+(21159, 4411, 11), -- M. Atk. Modifiers
+(21159, 4412, 11), -- P. Def. Modifiers
+(21159, 4413, 11), -- M. Def. Modifiers
+(21159, 4414, 2), -- Armor Type
+(21159, 4415, 3), -- Weapon Type
+(21159, 4416, 2), -- Races
 -- Purgatory Liviona
-(21160, 4038, 5), -- Decrease Atk. Spd.
-(21160, 4157, 7), -- Blaze
-(21160, 4160, 7), -- Aura Burn
-(21160, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(21160, 4408, 12), -- HP Increase (4x)
-(21160, 4409, 1), -- MP Increase (1x)
-(21160, 4410, 11), -- Average P. Atk.
-(21160, 4411, 11), -- Average M. Atk.
-(21160, 4412, 11), -- Average P. Def.
-(21160, 4413, 11), -- Average M. Def.
-(21160, 4414, 3), -- Light Armor Type
-(21160, 4415, 5), -- Blunt Weapons
-(21160, 4416, 2), -- Magic Creatures
+(21160, 4038, 5), -- Decrease Atk.Spd.
+(21160, 4157, 7), -- NPC Blaze - Magic
+(21160, 4160, 7), -- NPC Aura Burn - Magic
+(21160, 4276, 1), -- Archery Attack Weak Point
+(21160, 4408, 12), -- HP Modifiers
+(21160, 4409, 1), -- MP Modifiers
+(21160, 4410, 11), -- P. Atk. Modifiers
+(21160, 4411, 11), -- M. Atk. Modifiers
+(21160, 4412, 11), -- P. Def. Modifiers
+(21160, 4413, 11), -- M. Def. Modifiers
+(21160, 4414, 3), -- Armor Type
+(21160, 4415, 5), -- Weapon Type
+(21160, 4416, 2), -- Races
 -- Lesser Ancient Soldier
 (21161, 4035, 7), -- Poison
-(21161, 4408, 12), -- HP Increase (4x)
-(21161, 4409, 1), -- MP Increase (1x)
-(21161, 4410, 11), -- Average P. Atk.
-(21161, 4411, 11), -- Average M. Atk.
-(21161, 4412, 11), -- Average P. Def.
-(21161, 4413, 11), -- Average M. Def.
-(21161, 4414, 2), -- Standard Type
-(21161, 4415, 3), -- One-handed Sword
-(21161, 4416, 3), -- Beasts
+(21161, 4408, 12), -- HP Modifiers
+(21161, 4409, 1), -- MP Modifiers
+(21161, 4410, 11), -- P. Atk. Modifiers
+(21161, 4411, 11), -- M. Atk. Modifiers
+(21161, 4412, 11), -- P. Def. Modifiers
+(21161, 4413, 11), -- M. Def. Modifiers
+(21161, 4414, 2), -- Armor Type
+(21161, 4415, 3), -- Weapon Type
+(21161, 4416, 3), -- Races
 -- Lesser Ancient Scout
-(21162, 4069, 7), -- Curve Beam
-(21162, 4285, 3), -- Resist Sleep Attacks
-(21162, 4287, 3), -- Resist Hold Attacks
-(21162, 4408, 12), -- HP Increase (4x)
-(21162, 4409, 1), -- MP Increase (1x)
-(21162, 4410, 11), -- Average P. Atk.
-(21162, 4411, 11), -- Average M. Atk.
-(21162, 4412, 11), -- Average P. Def.
-(21162, 4413, 11), -- Average M. Def.
-(21162, 4414, 2), -- Standard Type
-(21162, 4415, 3), -- One-handed Sword
-(21162, 4416, 6), -- Humanoids
+(21162, 4069, 7), -- NPC Curve Beam Cannon
+(21162, 4285, 3), -- Resist Sleep
+(21162, 4287, 3), -- Resist Hold
+(21162, 4408, 12), -- HP Modifiers
+(21162, 4409, 1), -- MP Modifiers
+(21162, 4410, 11), -- P. Atk. Modifiers
+(21162, 4411, 11), -- M. Atk. Modifiers
+(21162, 4412, 11), -- P. Def. Modifiers
+(21162, 4413, 11), -- M. Def. Modifiers
+(21162, 4414, 2), -- Armor Type
+(21162, 4415, 3), -- Weapon Type
+(21162, 4416, 6), -- Races
 -- Lesser Ancient Shaman
-(21163, 4076, 3), -- Slow
-(21163, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(21163, 4408, 12), -- HP Increase (4x)
-(21163, 4409, 1), -- MP Increase (1x)
-(21163, 4410, 11), -- Average P. Atk.
-(21163, 4411, 11), -- Average M. Atk.
-(21163, 4412, 11), -- Average P. Def.
-(21163, 4413, 11), -- Average M. Def.
-(21163, 4414, 3), -- Light Armor Type
-(21163, 4415, 3), -- One-handed Sword
-(21163, 4416, 9), -- Demons
+(21163, 4076, 3), -- Reduction in movement speed
+(21163, 4276, 1), -- Archery Attack Weak Point
+(21163, 4408, 12), -- HP Modifiers
+(21163, 4409, 1), -- MP Modifiers
+(21163, 4410, 11), -- P. Atk. Modifiers
+(21163, 4411, 11), -- M. Atk. Modifiers
+(21163, 4412, 11), -- P. Def. Modifiers
+(21163, 4413, 11), -- M. Def. Modifiers
+(21163, 4414, 3), -- Armor Type
+(21163, 4415, 3), -- Weapon Type
+(21163, 4416, 9), -- Races
 -- Guardian Spirit of Ancient Holy Ground
-(21164, 4101, 8), -- Whirlwind
-(21164, 4285, 3), -- Resist Sleep Attacks
-(21164, 4287, 3), -- Resist Hold Attacks
-(21164, 4408, 12), -- HP Increase (4x)
-(21164, 4409, 1), -- MP Increase (1x)
-(21164, 4410, 11), -- Average P. Atk.
-(21164, 4411, 11), -- Average M. Atk.
-(21164, 4412, 11), -- Average P. Def.
-(21164, 4413, 11), -- Average M. Def.
-(21164, 4414, 2), -- Standard Type
-(21164, 4415, 3), -- One-handed Sword
-(21164, 4416, 1), -- Undead
+(21164, 4101, 8), -- NPC Spinning Slash
+(21164, 4285, 3), -- Resist Sleep
+(21164, 4287, 3), -- Resist Hold
+(21164, 4408, 12), -- HP Modifiers
+(21164, 4409, 1), -- MP Modifiers
+(21164, 4410, 11), -- P. Atk. Modifiers
+(21164, 4411, 11), -- M. Atk. Modifiers
+(21164, 4412, 11), -- P. Def. Modifiers
+(21164, 4413, 11), -- M. Def. Modifiers
+(21164, 4414, 2), -- Armor Type
+(21164, 4415, 3), -- Weapon Type
+(21164, 4416, 1), -- Races
 -- Lesser Ancient Warrior
 (21165, 4046, 9), -- Sleep
-(21165, 4094, 9), -- Cancellation
-(21165, 4098, 9), -- Silence
-(21165, 4105, 9), -- Beam Cannon
-(21165, 4408, 12), -- HP Increase (4x)
-(21165, 4409, 1), -- MP Increase (1x)
-(21165, 4410, 13), -- Slightly Strong P. Atk.
-(21165, 4411, 13), -- Slightly Strong M. Atk.
-(21165, 4412, 11), -- Average P. Def.
-(21165, 4413, 9), -- Slightly Weak M. Def.
-(21165, 4414, 2), -- Standard Type
-(21165, 4415, 5), -- Blunt Weapons
-(21165, 4416, 9), -- Demons
+(21165, 4094, 9), -- NPC Cancel Magic
+(21165, 4098, 9), -- Magic Skill Block
+(21165, 4105, 9), -- NPC Straight Beam Cannon
+(21165, 4408, 12), -- HP Modifiers
+(21165, 4409, 1), -- MP Modifiers
+(21165, 4410, 13), -- P. Atk. Modifiers
+(21165, 4411, 13), -- M. Atk. Modifiers
+(21165, 4412, 11), -- P. Def. Modifiers
+(21165, 4413, 9), -- M. Def. Modifiers
+(21165, 4414, 2), -- Armor Type
+(21165, 4415, 5), -- Weapon Type
+(21165, 4416, 9), -- Races
 -- Lith Scout
-(21166, 4067, 2), -- Blow
-(21166, 4287, 5), -- Resist Hold Attacks
-(21166, 4408, 12), -- HP Increase (4x)
-(21166, 4409, 1), -- MP Increase (1x)
-(21166, 4410, 13), -- Slightly Strong P. Atk.
-(21166, 4411, 13), -- Slightly Strong M. Atk.
-(21166, 4412, 9), -- Slightly Weak P. Def.
-(21166, 4413, 9), -- Slightly Weak M. Def.
-(21166, 4414, 3), -- Light Armor Type
-(21166, 4415, 7), -- Daggers
-(21166, 4416, 9), -- Demons
+(21166, 4067, 2), -- NPC Mortal Blow
+(21166, 4287, 5), -- Resist Hold
+(21166, 4408, 12), -- HP Modifiers
+(21166, 4409, 1), -- MP Modifiers
+(21166, 4410, 13), -- P. Atk. Modifiers
+(21166, 4411, 13), -- M. Atk. Modifiers
+(21166, 4412, 9), -- P. Def. Modifiers
+(21166, 4413, 9), -- M. Def. Modifiers
+(21166, 4414, 3), -- Armor Type
+(21166, 4415, 7), -- Weapon Type
+(21166, 4416, 9), -- Races
 -- Lith Witch
-(21167, 4001, 2), -- Windstrike
-(21167, 4285, 5), -- Resist Sleep Attacks
-(21167, 4408, 12), -- HP Increase (4x)
-(21167, 4409, 1), -- MP Increase (1x)
-(21167, 4410, 13), -- Slightly Strong P. Atk.
-(21167, 4411, 13), -- Slightly Strong M. Atk.
-(21167, 4412, 9), -- Slightly Weak P. Def.
-(21167, 4413, 9), -- Slightly Weak M. Def.
-(21167, 4414, 2), -- Standard Type
-(21167, 4415, 5), -- Blunt Weapons
-(21167, 4416, 9), -- Demons
+(21167, 4001, 2), -- NPC Wind Strike
+(21167, 4285, 5), -- Resist Sleep
+(21167, 4408, 12), -- HP Modifiers
+(21167, 4409, 1), -- MP Modifiers
+(21167, 4410, 13), -- P. Atk. Modifiers
+(21167, 4411, 13), -- M. Atk. Modifiers
+(21167, 4412, 9), -- P. Def. Modifiers
+(21167, 4413, 9), -- M. Def. Modifiers
+(21167, 4414, 2), -- Armor Type
+(21167, 4415, 5), -- Weapon Type
+(21167, 4416, 9), -- Races
 -- Lith Warrior
-(21168, 4029, 2), -- Shield
-(21168, 4071, 3), -- Resist Bow/Crossbow Weapons
-(21168, 4273, 3), -- Resist Daggers/Rapier Weapon
-(21168, 4285, 3), -- Resist Sleep Attacks
-(21168, 4287, 3), -- Resist Hold Attacks
-(21168, 4408, 12), -- HP Increase (4x)
-(21168, 4409, 1), -- MP Increase (1x)
-(21168, 4410, 13), -- Slightly Strong P. Atk.
-(21168, 4411, 13), -- Slightly Strong M. Atk.
-(21168, 4412, 9), -- Slightly Weak P. Def.
-(21168, 4413, 9), -- Slightly Weak M. Def.
-(21168, 4414, 2), -- Standard Type
-(21168, 4415, 3), -- One-handed Sword
-(21168, 4416, 9), -- Demons
+(21168, 4029, 2), -- NPC Shield
+(21168, 4071, 3), -- Resist Archery
+(21168, 4273, 3), -- Resist Dagger
+(21168, 4285, 3), -- Resist Sleep
+(21168, 4287, 3), -- Resist Hold
+(21168, 4408, 12), -- HP Modifiers
+(21168, 4409, 1), -- MP Modifiers
+(21168, 4410, 13), -- P. Atk. Modifiers
+(21168, 4411, 13), -- M. Atk. Modifiers
+(21168, 4412, 9), -- P. Def. Modifiers
+(21168, 4413, 9), -- M. Def. Modifiers
+(21168, 4414, 2), -- Armor Type
+(21168, 4415, 3), -- Weapon Type
+(21168, 4416, 9), -- Races
 -- Lith Guard
-(21169, 4067, 3), -- Blow
-(21169, 4287, 5), -- Resist Hold Attacks
-(21169, 4408, 12), -- HP Increase (4x)
-(21169, 4409, 1), -- MP Increase (1x)
-(21169, 4410, 13), -- Slightly Strong P. Atk.
-(21169, 4411, 13), -- Slightly Strong M. Atk.
-(21169, 4412, 11), -- Average P. Def.
-(21169, 4413, 9), -- Slightly Weak M. Def.
-(21169, 4414, 3), -- Light Armor Type
-(21169, 4415, 7), -- Daggers
-(21169, 4416, 9), -- Demons
+(21169, 4067, 3), -- NPC Mortal Blow
+(21169, 4287, 5), -- Resist Hold
+(21169, 4408, 12), -- HP Modifiers
+(21169, 4409, 1), -- MP Modifiers
+(21169, 4410, 13), -- P. Atk. Modifiers
+(21169, 4411, 13), -- M. Atk. Modifiers
+(21169, 4412, 11), -- P. Def. Modifiers
+(21169, 4413, 9), -- M. Def. Modifiers
+(21169, 4414, 3), -- Armor Type
+(21169, 4415, 7), -- Weapon Type
+(21169, 4416, 9), -- Races
 -- Lith Medium
-(21170, 4001, 3), -- Windstrike
-(21170, 4285, 5), -- Resist Sleep Attacks
-(21170, 4408, 12), -- HP Increase (4x)
-(21170, 4409, 1), -- MP Increase (1x)
-(21170, 4410, 13), -- Slightly Strong P. Atk.
-(21170, 4411, 13), -- Slightly Strong M. Atk.
-(21170, 4412, 9), -- Slightly Weak P. Def.
-(21170, 4413, 11), -- Average M. Def.
-(21170, 4414, 2), -- Standard Type
-(21170, 4415, 5), -- Blunt Weapons
-(21170, 4416, 9), -- Demons
+(21170, 4001, 3), -- NPC Wind Strike
+(21170, 4285, 5), -- Resist Sleep
+(21170, 4408, 12), -- HP Modifiers
+(21170, 4409, 1), -- MP Modifiers
+(21170, 4410, 13), -- P. Atk. Modifiers
+(21170, 4411, 13), -- M. Atk. Modifiers
+(21170, 4412, 9), -- P. Def. Modifiers
+(21170, 4413, 11), -- M. Def. Modifiers
+(21170, 4414, 2), -- Armor Type
+(21170, 4415, 5), -- Weapon Type
+(21170, 4416, 9), -- Races
 -- Lith Overlord
-(21171, 4029, 2), -- Shield
-(21171, 4285, 3), -- Resist Sleep Attacks
-(21171, 4287, 3), -- Resist Hold Attacks
-(21171, 4408, 12), -- HP Increase (4x)
-(21171, 4409, 1), -- MP Increase (1x)
-(21171, 4410, 13), -- Slightly Strong P. Atk.
-(21171, 4411, 13), -- Slightly Strong M. Atk.
-(21171, 4412, 12), -- Slightly Strong P. Def.
-(21171, 4413, 9), -- Slightly Weak M. Def.
-(21171, 4414, 2), -- Standard Type
-(21171, 4415, 3), -- One-handed Sword
-(21171, 4416, 9), -- Demons
+(21171, 4029, 2), -- NPC Shield
+(21171, 4285, 3), -- Resist Sleep
+(21171, 4287, 3), -- Resist Hold
+(21171, 4408, 12), -- HP Modifiers
+(21171, 4409, 1), -- MP Modifiers
+(21171, 4410, 13), -- P. Atk. Modifiers
+(21171, 4411, 13), -- M. Atk. Modifiers
+(21171, 4412, 12), -- P. Def. Modifiers
+(21171, 4413, 9), -- M. Def. Modifiers
+(21171, 4414, 2), -- Armor Type
+(21171, 4415, 3), -- Weapon Type
+(21171, 4416, 9), -- Races
 -- Lith Patrolman
-(21172, 4067, 3), -- Blow
-(21172, 4287, 5), -- Resist Hold Attacks
-(21172, 4408, 12), -- HP Increase (4x)
-(21172, 4409, 1), -- MP Increase (1x)
-(21172, 4410, 13), -- Slightly Strong P. Atk.
-(21172, 4411, 13), -- Slightly Strong M. Atk.
-(21172, 4412, 12), -- Slightly Strong P. Def.
-(21172, 4413, 9), -- Slightly Weak M. Def.
-(21172, 4414, 3), -- Light Armor Type
-(21172, 4415, 7), -- Daggers
-(21172, 4416, 9), -- Demons
+(21172, 4067, 3), -- NPC Mortal Blow
+(21172, 4287, 5), -- Resist Hold
+(21172, 4408, 12), -- HP Modifiers
+(21172, 4409, 1), -- MP Modifiers
+(21172, 4410, 13), -- P. Atk. Modifiers
+(21172, 4411, 13), -- M. Atk. Modifiers
+(21172, 4412, 12), -- P. Def. Modifiers
+(21172, 4413, 9), -- M. Def. Modifiers
+(21172, 4414, 3), -- Armor Type
+(21172, 4415, 7), -- Weapon Type
+(21172, 4416, 9), -- Races
 -- Lith Shaman
-(21173, 4001, 4), -- Windstrike
-(21173, 4285, 5), -- Resist Sleep Attacks
-(21173, 4408, 12), -- HP Increase (4x)
-(21173, 4409, 1), -- MP Increase (1x)
-(21173, 4410, 13), -- Slightly Strong P. Atk.
-(21173, 4411, 13), -- Slightly Strong M. Atk.
-(21173, 4412, 9), -- Slightly Weak P. Def.
-(21173, 4413, 11), -- Average M. Def.
-(21173, 4414, 2), -- Standard Type
-(21173, 4415, 5), -- Blunt Weapons
-(21173, 4416, 9), -- Demons
+(21173, 4001, 4), -- NPC Wind Strike
+(21173, 4285, 5), -- Resist Sleep
+(21173, 4408, 12), -- HP Modifiers
+(21173, 4409, 1), -- MP Modifiers
+(21173, 4410, 13), -- P. Atk. Modifiers
+(21173, 4411, 13), -- M. Atk. Modifiers
+(21173, 4412, 9), -- P. Def. Modifiers
+(21173, 4413, 11), -- M. Def. Modifiers
+(21173, 4414, 2), -- Armor Type
+(21173, 4415, 5), -- Weapon Type
+(21173, 4416, 9), -- Races
 -- Lith Commander
-(21174, 4029, 3), -- Shield
-(21174, 4285, 3), -- Resist Sleep Attacks
-(21174, 4287, 3), -- Resist Hold Attacks
-(21174, 4408, 12), -- HP Increase (4x)
-(21174, 4409, 1), -- MP Increase (1x)
-(21174, 4410, 13), -- Slightly Strong P. Atk.
-(21174, 4411, 13), -- Slightly Strong M. Atk.
-(21174, 4412, 14), -- Strong P. Def.
-(21174, 4413, 9), -- Slightly Weak M. Def.
-(21174, 4414, 2), -- Standard Type
-(21174, 4415, 3), -- One-handed Sword
-(21174, 4416, 9), -- Demons
+(21174, 4029, 3), -- NPC Shield
+(21174, 4285, 3), -- Resist Sleep
+(21174, 4287, 3), -- Resist Hold
+(21174, 4408, 12), -- HP Modifiers
+(21174, 4409, 1), -- MP Modifiers
+(21174, 4410, 13), -- P. Atk. Modifiers
+(21174, 4411, 13), -- M. Atk. Modifiers
+(21174, 4412, 14), -- P. Def. Modifiers
+(21174, 4413, 9), -- M. Def. Modifiers
+(21174, 4414, 2), -- Armor Type
+(21174, 4415, 3), -- Weapon Type
+(21174, 4416, 9), -- Races
 -- Lilim Butcher
-(21175, 4067, 4), -- Blow
-(21175, 4287, 5), -- Resist Hold Attacks
-(21175, 4408, 12), -- HP Increase (4x)
-(21175, 4409, 1), -- MP Increase (1x)
-(21175, 4410, 13), -- Slightly Strong P. Atk.
-(21175, 4411, 13), -- Slightly Strong M. Atk.
-(21175, 4412, 14), -- Strong P. Def.
-(21175, 4413, 9), -- Slightly Weak M. Def.
-(21175, 4414, 3), -- Light Armor Type
-(21175, 4415, 7), -- Daggers
-(21175, 4416, 9), -- Demons
+(21175, 4067, 4), -- NPC Mortal Blow
+(21175, 4287, 5), -- Resist Hold
+(21175, 4408, 12), -- HP Modifiers
+(21175, 4409, 1), -- MP Modifiers
+(21175, 4410, 13), -- P. Atk. Modifiers
+(21175, 4411, 13), -- M. Atk. Modifiers
+(21175, 4412, 14), -- P. Def. Modifiers
+(21175, 4413, 9), -- M. Def. Modifiers
+(21175, 4414, 3), -- Armor Type
+(21175, 4415, 7), -- Weapon Type
+(21175, 4416, 9), -- Races
 -- Lilim Magus
-(21176, 4002, 5), -- HP Drain
+(21176, 4002, 5), -- NPC HP Drain
 (21176, 4046, 5), -- Sleep
-(21176, 4094, 5), -- Cancellation
-(21176, 4098, 5), -- Silence
-(21176, 4285, 5), -- Resist Sleep Attacks
-(21176, 4408, 12), -- HP Increase (4x)
-(21176, 4409, 1), -- MP Increase (1x)
-(21176, 4410, 13), -- Slightly Strong P. Atk.
-(21176, 4411, 13), -- Slightly Strong M. Atk.
-(21176, 4412, 9), -- Slightly Weak P. Def.
-(21176, 4413, 11), -- Average M. Def.
-(21176, 4414, 2), -- Standard Type
-(21176, 4415, 5), -- Blunt Weapons
-(21176, 4416, 9), -- Demons
+(21176, 4094, 5), -- NPC Cancel Magic
+(21176, 4098, 5), -- Magic Skill Block
+(21176, 4285, 5), -- Resist Sleep
+(21176, 4408, 12), -- HP Modifiers
+(21176, 4409, 1), -- MP Modifiers
+(21176, 4410, 13), -- P. Atk. Modifiers
+(21176, 4411, 13), -- M. Atk. Modifiers
+(21176, 4412, 9), -- P. Def. Modifiers
+(21176, 4413, 11), -- M. Def. Modifiers
+(21176, 4414, 2), -- Armor Type
+(21176, 4415, 5), -- Weapon Type
+(21176, 4416, 9), -- Races
 -- Lilim Knight-Errant
-(21177, 4032, 5), -- Power Strike
-(21177, 4072, 5), -- Stun
-(21177, 4092, 1), -- Spirit Puma
-(21177, 4285, 3), -- Resist Sleep Attacks
-(21177, 4287, 3), -- Resist Hold Attacks
-(21177, 4408, 12), -- HP Increase (4x)
-(21177, 4409, 1), -- MP Increase (1x)
-(21177, 4410, 13), -- Slightly Strong P. Atk.
-(21177, 4411, 13), -- Slightly Strong M. Atk.
-(21177, 4412, 14), -- Strong P. Def.
-(21177, 4413, 9), -- Slightly Weak M. Def.
-(21177, 4414, 2), -- Standard Type
-(21177, 4415, 3), -- One-handed Sword
-(21177, 4416, 9), -- Demons
+(21177, 4032, 5), -- NPC Strike
+(21177, 4072, 5), -- Shock
+(21177, 4092, 1), -- NPC Puma Spirit Totem
+(21177, 4285, 3), -- Resist Sleep
+(21177, 4287, 3), -- Resist Hold
+(21177, 4408, 12), -- HP Modifiers
+(21177, 4409, 1), -- MP Modifiers
+(21177, 4410, 13), -- P. Atk. Modifiers
+(21177, 4411, 13), -- M. Atk. Modifiers
+(21177, 4412, 14), -- P. Def. Modifiers
+(21177, 4413, 9), -- M. Def. Modifiers
+(21177, 4414, 2), -- Armor Type
+(21177, 4415, 3), -- Weapon Type
+(21177, 4416, 9), -- Races
 -- Lilim Marauder
-(21178, 4067, 5), -- Blow
-(21178, 4287, 5), -- Resist Hold Attacks
-(21178, 4408, 12), -- HP Increase (4x)
-(21178, 4409, 1), -- MP Increase (1x)
-(21178, 4410, 13), -- Slightly Strong P. Atk.
-(21178, 4411, 13), -- Slightly Strong M. Atk.
-(21178, 4412, 14), -- Strong P. Def.
-(21178, 4413, 9), -- Slightly Weak M. Def.
-(21178, 4414, 3), -- Light Armor Type
-(21178, 4415, 7), -- Daggers
-(21178, 4416, 9), -- Demons
+(21178, 4067, 5), -- NPC Mortal Blow
+(21178, 4287, 5), -- Resist Hold
+(21178, 4408, 12), -- HP Modifiers
+(21178, 4409, 1), -- MP Modifiers
+(21178, 4410, 13), -- P. Atk. Modifiers
+(21178, 4411, 13), -- M. Atk. Modifiers
+(21178, 4412, 14), -- P. Def. Modifiers
+(21178, 4413, 9), -- M. Def. Modifiers
+(21178, 4414, 3), -- Armor Type
+(21178, 4415, 7), -- Weapon Type
+(21178, 4416, 9), -- Races
 -- Lilim Priest
-(21179, 4002, 6), -- HP Drain
+(21179, 4002, 6), -- NPC HP Drain
 (21179, 4046, 6), -- Sleep
-(21179, 4094, 6), -- Cancellation
-(21179, 4098, 6), -- Silence
-(21179, 4285, 5), -- Resist Sleep Attacks
-(21179, 4408, 12), -- HP Increase (4x)
-(21179, 4409, 1), -- MP Increase (1x)
-(21179, 4410, 13), -- Slightly Strong P. Atk.
-(21179, 4411, 13), -- Slightly Strong M. Atk.
-(21179, 4412, 9), -- Slightly Weak P. Def.
-(21179, 4413, 11), -- Average M. Def.
-(21179, 4414, 2), -- Standard Type
-(21179, 4415, 5), -- Blunt Weapons
-(21179, 4416, 9), -- Demons
+(21179, 4094, 6), -- NPC Cancel Magic
+(21179, 4098, 6), -- Magic Skill Block
+(21179, 4285, 5), -- Resist Sleep
+(21179, 4408, 12), -- HP Modifiers
+(21179, 4409, 1), -- MP Modifiers
+(21179, 4410, 13), -- P. Atk. Modifiers
+(21179, 4411, 13), -- M. Atk. Modifiers
+(21179, 4412, 9), -- P. Def. Modifiers
+(21179, 4413, 11), -- M. Def. Modifiers
+(21179, 4414, 2), -- Armor Type
+(21179, 4415, 5), -- Weapon Type
+(21179, 4416, 9), -- Races
 -- Lilim Knight
-(21180, 4032, 6), -- Power Strike
-(21180, 4072, 6), -- Stun
-(21180, 4092, 1), -- Spirit Puma
-(21180, 4285, 3), -- Resist Sleep Attacks
-(21180, 4287, 3), -- Resist Hold Attacks
-(21180, 4408, 12), -- HP Increase (4x)
-(21180, 4409, 1), -- MP Increase (1x)
-(21180, 4410, 13), -- Slightly Strong P. Atk.
-(21180, 4411, 13), -- Slightly Strong M. Atk.
-(21180, 4412, 16), -- Very Strong P. Def.
-(21180, 4413, 9), -- Slightly Weak M. Def.
-(21180, 4414, 2), -- Standard Type
-(21180, 4415, 3), -- One-handed Sword
-(21180, 4416, 9), -- Demons
+(21180, 4032, 6), -- NPC Strike
+(21180, 4072, 6), -- Shock
+(21180, 4092, 1), -- NPC Puma Spirit Totem
+(21180, 4285, 3), -- Resist Sleep
+(21180, 4287, 3), -- Resist Hold
+(21180, 4408, 12), -- HP Modifiers
+(21180, 4409, 1), -- MP Modifiers
+(21180, 4410, 13), -- P. Atk. Modifiers
+(21180, 4411, 13), -- M. Atk. Modifiers
+(21180, 4412, 16), -- P. Def. Modifiers
+(21180, 4413, 9), -- M. Def. Modifiers
+(21180, 4414, 2), -- Armor Type
+(21180, 4415, 3), -- Weapon Type
+(21180, 4416, 9), -- Races
 -- Lilim Assassin
-(21181, 4067, 6), -- Blow
-(21181, 4287, 5), -- Resist Hold Attacks
-(21181, 4408, 12), -- HP Increase (4x)
-(21181, 4409, 1), -- MP Increase (1x)
-(21181, 4410, 13), -- Slightly Strong P. Atk.
-(21181, 4411, 13), -- Slightly Strong M. Atk.
-(21181, 4412, 16), -- Very Strong P. Def.
-(21181, 4413, 9), -- Slightly Weak M. Def.
-(21181, 4414, 3), -- Light Armor Type
-(21181, 4415, 7), -- Daggers
-(21181, 4416, 9), -- Demons
+(21181, 4067, 6), -- NPC Mortal Blow
+(21181, 4287, 5), -- Resist Hold
+(21181, 4408, 12), -- HP Modifiers
+(21181, 4409, 1), -- MP Modifiers
+(21181, 4410, 13), -- P. Atk. Modifiers
+(21181, 4411, 13), -- M. Atk. Modifiers
+(21181, 4412, 16), -- P. Def. Modifiers
+(21181, 4413, 9), -- M. Def. Modifiers
+(21181, 4414, 3), -- Armor Type
+(21181, 4415, 7), -- Weapon Type
+(21181, 4416, 9), -- Races
 -- Lilim Soldier
-(21182, 4002, 6), -- HP Drain
+(21182, 4002, 6), -- NPC HP Drain
 (21182, 4046, 6), -- Sleep
-(21182, 4094, 6), -- Cancellation
-(21182, 4098, 6), -- Silence
-(21182, 4285, 5), -- Resist Sleep Attacks
-(21182, 4408, 12), -- HP Increase (4x)
-(21182, 4409, 1), -- MP Increase (1x)
-(21182, 4410, 13), -- Slightly Strong P. Atk.
-(21182, 4411, 13), -- Slightly Strong M. Atk.
-(21182, 4412, 9), -- Slightly Weak P. Def.
-(21182, 4413, 11), -- Average M. Def.
-(21182, 4414, 2), -- Standard Type
-(21182, 4415, 5), -- Blunt Weapons
-(21182, 4416, 9), -- Demons
+(21182, 4094, 6), -- NPC Cancel Magic
+(21182, 4098, 6), -- Magic Skill Block
+(21182, 4285, 5), -- Resist Sleep
+(21182, 4408, 12), -- HP Modifiers
+(21182, 4409, 1), -- MP Modifiers
+(21182, 4410, 13), -- P. Atk. Modifiers
+(21182, 4411, 13), -- M. Atk. Modifiers
+(21182, 4412, 9), -- P. Def. Modifiers
+(21182, 4413, 11), -- M. Def. Modifiers
+(21182, 4414, 2), -- Armor Type
+(21182, 4415, 5), -- Weapon Type
+(21182, 4416, 9), -- Races
 -- Lilim Knight Commander
-(21183, 4032, 7), -- Power Strike
-(21183, 4072, 7), -- Stun
-(21183, 4092, 1), -- Spirit Puma
-(21183, 4285, 3), -- Resist Sleep Attacks
-(21183, 4287, 3), -- Resist Hold Attacks
-(21183, 4408, 12), -- HP Increase (4x)
-(21183, 4409, 1), -- MP Increase (1x)
-(21183, 4410, 13), -- Slightly Strong P. Atk.
-(21183, 4411, 13), -- Slightly Strong M. Atk.
-(21183, 4412, 16), -- Very Strong P. Def.
-(21183, 4413, 9), -- Slightly Weak M. Def.
-(21183, 4414, 2), -- Standard Type
-(21183, 4415, 3), -- One-handed Sword
-(21183, 4416, 9), -- Demons
+(21183, 4032, 7), -- NPC Strike
+(21183, 4072, 7), -- Shock
+(21183, 4092, 1), -- NPC Puma Spirit Totem
+(21183, 4285, 3), -- Resist Sleep
+(21183, 4287, 3), -- Resist Hold
+(21183, 4408, 12), -- HP Modifiers
+(21183, 4409, 1), -- MP Modifiers
+(21183, 4410, 13), -- P. Atk. Modifiers
+(21183, 4411, 13), -- M. Atk. Modifiers
+(21183, 4412, 16), -- P. Def. Modifiers
+(21183, 4413, 9), -- M. Def. Modifiers
+(21183, 4414, 2), -- Armor Type
+(21183, 4415, 3), -- Weapon Type
+(21183, 4416, 9), -- Races
 -- Lilim Slayer
-(21184, 4067, 8), -- Blow
-(21184, 4287, 5), -- Resist Hold Attacks
-(21184, 4408, 12), -- HP Increase (4x)
-(21184, 4409, 1), -- MP Increase (1x)
-(21184, 4410, 13), -- Slightly Strong P. Atk.
-(21184, 4411, 13), -- Slightly Strong M. Atk.
-(21184, 4412, 16), -- Very Strong P. Def.
-(21184, 4413, 9), -- Slightly Weak M. Def.
-(21184, 4414, 3), -- Light Armor Type
-(21184, 4415, 7), -- Daggers
-(21184, 4416, 9), -- Demons
+(21184, 4067, 8), -- NPC Mortal Blow
+(21184, 4287, 5), -- Resist Hold
+(21184, 4408, 12), -- HP Modifiers
+(21184, 4409, 1), -- MP Modifiers
+(21184, 4410, 13), -- P. Atk. Modifiers
+(21184, 4411, 13), -- M. Atk. Modifiers
+(21184, 4412, 16), -- P. Def. Modifiers
+(21184, 4413, 9), -- M. Def. Modifiers
+(21184, 4414, 3), -- Armor Type
+(21184, 4415, 7), -- Weapon Type
+(21184, 4416, 9), -- Races
 -- Lilim Great Magus
-(21185, 4002, 8), -- HP Drain
+(21185, 4002, 8), -- NPC HP Drain
 (21185, 4046, 8), -- Sleep
-(21185, 4094, 8), -- Cancellation
-(21185, 4098, 8), -- Silence
-(21185, 4285, 5), -- Resist Sleep Attacks
-(21185, 4408, 12), -- HP Increase (4x)
-(21185, 4409, 1), -- MP Increase (1x)
-(21185, 4410, 13), -- Slightly Strong P. Atk.
-(21185, 4411, 13), -- Slightly Strong M. Atk.
-(21185, 4412, 9), -- Slightly Weak P. Def.
-(21185, 4413, 11), -- Average M. Def.
-(21185, 4414, 2), -- Standard Type
-(21185, 4415, 5), -- Blunt Weapons
-(21185, 4416, 9), -- Demons
+(21185, 4094, 8), -- NPC Cancel Magic
+(21185, 4098, 8), -- Magic Skill Block
+(21185, 4285, 5), -- Resist Sleep
+(21185, 4408, 12), -- HP Modifiers
+(21185, 4409, 1), -- MP Modifiers
+(21185, 4410, 13), -- P. Atk. Modifiers
+(21185, 4411, 13), -- M. Atk. Modifiers
+(21185, 4412, 9), -- P. Def. Modifiers
+(21185, 4413, 11), -- M. Def. Modifiers
+(21185, 4414, 2), -- Armor Type
+(21185, 4415, 5), -- Weapon Type
+(21185, 4416, 9), -- Races
 -- Lilim Guard Knight
-(21186, 4032, 9), -- Power Strike
-(21186, 4072, 9), -- Stun
-(21186, 4092, 1), -- Spirit Puma
-(21186, 4285, 3), -- Resist Sleep Attacks
-(21186, 4287, 3), -- Resist Hold Attacks
-(21186, 4408, 12), -- HP Increase (4x)
-(21186, 4409, 1), -- MP Increase (1x)
-(21186, 4410, 13), -- Slightly Strong P. Atk.
-(21186, 4411, 13), -- Slightly Strong M. Atk.
-(21186, 4412, 16), -- Very Strong P. Def.
-(21186, 4413, 9), -- Slightly Weak M. Def.
-(21186, 4414, 2), -- Standard Type
-(21186, 4415, 3), -- One-handed Sword
-(21186, 4416, 9), -- Demons
+(21186, 4032, 9), -- NPC Strike
+(21186, 4072, 9), -- Shock
+(21186, 4092, 1), -- NPC Puma Spirit Totem
+(21186, 4285, 3), -- Resist Sleep
+(21186, 4287, 3), -- Resist Hold
+(21186, 4408, 12), -- HP Modifiers
+(21186, 4409, 1), -- MP Modifiers
+(21186, 4410, 13), -- P. Atk. Modifiers
+(21186, 4411, 13), -- M. Atk. Modifiers
+(21186, 4412, 16), -- P. Def. Modifiers
+(21186, 4413, 9), -- M. Def. Modifiers
+(21186, 4414, 2), -- Armor Type
+(21186, 4415, 3), -- Weapon Type
+(21186, 4416, 9), -- Races
 -- Gigant Slave
-(21187, 4032, 2), -- Power Strike
-(21187, 4287, 5), -- Resist Hold Attacks
-(21187, 4408, 12), -- HP Increase (4x)
-(21187, 4409, 1), -- MP Increase (1x)
-(21187, 4410, 13), -- Slightly Strong P. Atk.
-(21187, 4411, 13), -- Slightly Strong M. Atk.
-(21187, 4412, 9), -- Slightly Weak P. Def.
-(21187, 4413, 9), -- Slightly Weak M. Def.
-(21187, 4414, 3), -- Light Armor Type
-(21187, 4415, 3), -- One-handed Sword
-(21187, 4416, 8), -- Angels
+(21187, 4032, 2), -- NPC Strike
+(21187, 4287, 5), -- Resist Hold
+(21187, 4408, 12), -- HP Modifiers
+(21187, 4409, 1), -- MP Modifiers
+(21187, 4410, 13), -- P. Atk. Modifiers
+(21187, 4411, 13), -- M. Atk. Modifiers
+(21187, 4412, 9), -- P. Def. Modifiers
+(21187, 4413, 9), -- M. Def. Modifiers
+(21187, 4414, 3), -- Armor Type
+(21187, 4415, 3), -- Weapon Type
+(21187, 4416, 8), -- Races
 -- Gigant Acolyte
-(21188, 4078, 2), -- Flame Strike
-(21188, 4285, 5), -- Resist Sleep Attacks
-(21188, 4408, 12), -- HP Increase (4x)
-(21188, 4409, 1), -- MP Increase (1x)
-(21188, 4410, 13), -- Slightly Strong P. Atk.
-(21188, 4411, 13), -- Slightly Strong M. Atk.
-(21188, 4412, 9), -- Slightly Weak P. Def.
-(21188, 4413, 9), -- Slightly Weak M. Def.
-(21188, 4414, 2), -- Standard Type
-(21188, 4415, 5), -- Blunt Weapons
-(21188, 4416, 8), -- Angels
+(21188, 4078, 2), -- NPC Flamestrike
+(21188, 4285, 5), -- Resist Sleep
+(21188, 4408, 12), -- HP Modifiers
+(21188, 4409, 1), -- MP Modifiers
+(21188, 4410, 13), -- P. Atk. Modifiers
+(21188, 4411, 13), -- M. Atk. Modifiers
+(21188, 4412, 9), -- P. Def. Modifiers
+(21188, 4413, 9), -- M. Def. Modifiers
+(21188, 4414, 2), -- Armor Type
+(21188, 4415, 5), -- Weapon Type
+(21188, 4416, 8), -- Races
 -- Gigant Overseer
-(21189, 4029, 2), -- Shield
-(21189, 4071, 3), -- Resist Bow/Crossbow Weapons
-(21189, 4273, 3), -- Resist Daggers/Rapier Weapon
-(21189, 4285, 3), -- Resist Sleep Attacks
-(21189, 4287, 3), -- Resist Hold Attacks
-(21189, 4408, 12), -- HP Increase (4x)
-(21189, 4409, 1), -- MP Increase (1x)
-(21189, 4410, 13), -- Slightly Strong P. Atk.
-(21189, 4411, 13), -- Slightly Strong M. Atk.
-(21189, 4412, 9), -- Slightly Weak P. Def.
-(21189, 4413, 9), -- Slightly Weak M. Def.
-(21189, 4414, 2), -- Standard Type
-(21189, 4415, 3), -- One-handed Sword
-(21189, 4416, 8), -- Angels
+(21189, 4029, 2), -- NPC Shield
+(21189, 4071, 3), -- Resist Archery
+(21189, 4273, 3), -- Resist Dagger
+(21189, 4285, 3), -- Resist Sleep
+(21189, 4287, 3), -- Resist Hold
+(21189, 4408, 12), -- HP Modifiers
+(21189, 4409, 1), -- MP Modifiers
+(21189, 4410, 13), -- P. Atk. Modifiers
+(21189, 4411, 13), -- M. Atk. Modifiers
+(21189, 4412, 9), -- P. Def. Modifiers
+(21189, 4413, 9), -- M. Def. Modifiers
+(21189, 4414, 2), -- Armor Type
+(21189, 4415, 3), -- Weapon Type
+(21189, 4416, 8), -- Races
 -- Gigant Footman
-(21190, 4032, 3), -- Power Strike
-(21190, 4287, 5), -- Resist Hold Attacks
-(21190, 4408, 12), -- HP Increase (4x)
-(21190, 4409, 1), -- MP Increase (1x)
-(21190, 4410, 13), -- Slightly Strong P. Atk.
-(21190, 4411, 13), -- Slightly Strong M. Atk.
-(21190, 4412, 11), -- Average P. Def.
-(21190, 4413, 9), -- Slightly Weak M. Def.
-(21190, 4414, 3), -- Light Armor Type
-(21190, 4415, 3), -- One-handed Sword
-(21190, 4416, 8), -- Angels
+(21190, 4032, 3), -- NPC Strike
+(21190, 4287, 5), -- Resist Hold
+(21190, 4408, 12), -- HP Modifiers
+(21190, 4409, 1), -- MP Modifiers
+(21190, 4410, 13), -- P. Atk. Modifiers
+(21190, 4411, 13), -- M. Atk. Modifiers
+(21190, 4412, 11), -- P. Def. Modifiers
+(21190, 4413, 9), -- M. Def. Modifiers
+(21190, 4414, 3), -- Armor Type
+(21190, 4415, 3), -- Weapon Type
+(21190, 4416, 8), -- Races
 -- Gigant Cleric
-(21191, 4078, 3), -- Flame Strike
-(21191, 4285, 5), -- Resist Sleep Attacks
-(21191, 4408, 12), -- HP Increase (4x)
-(21191, 4409, 1), -- MP Increase (1x)
-(21191, 4410, 13), -- Slightly Strong P. Atk.
-(21191, 4411, 13), -- Slightly Strong M. Atk.
-(21191, 4412, 9), -- Slightly Weak P. Def.
-(21191, 4413, 11), -- Average M. Def.
-(21191, 4414, 2), -- Standard Type
-(21191, 4415, 5), -- Blunt Weapons
-(21191, 4416, 8), -- Angels
+(21191, 4078, 3), -- NPC Flamestrike
+(21191, 4285, 5), -- Resist Sleep
+(21191, 4408, 12), -- HP Modifiers
+(21191, 4409, 1), -- MP Modifiers
+(21191, 4410, 13), -- P. Atk. Modifiers
+(21191, 4411, 13), -- M. Atk. Modifiers
+(21191, 4412, 9), -- P. Def. Modifiers
+(21191, 4413, 11), -- M. Def. Modifiers
+(21191, 4414, 2), -- Armor Type
+(21191, 4415, 5), -- Weapon Type
+(21191, 4416, 8), -- Races
 -- Gigant Officer
-(21192, 4029, 2), -- Shield
-(21192, 4285, 3), -- Resist Sleep Attacks
-(21192, 4287, 3), -- Resist Hold Attacks
-(21192, 4408, 12), -- HP Increase (4x)
-(21192, 4409, 1), -- MP Increase (1x)
-(21192, 4410, 13), -- Slightly Strong P. Atk.
-(21192, 4411, 13), -- Slightly Strong M. Atk.
-(21192, 4412, 12), -- Slightly Strong P. Def.
-(21192, 4413, 9), -- Slightly Weak M. Def.
-(21192, 4414, 2), -- Standard Type
-(21192, 4415, 3), -- One-handed Sword
-(21192, 4416, 8), -- Angels
+(21192, 4029, 2), -- NPC Shield
+(21192, 4285, 3), -- Resist Sleep
+(21192, 4287, 3), -- Resist Hold
+(21192, 4408, 12), -- HP Modifiers
+(21192, 4409, 1), -- MP Modifiers
+(21192, 4410, 13), -- P. Atk. Modifiers
+(21192, 4411, 13), -- M. Atk. Modifiers
+(21192, 4412, 12), -- P. Def. Modifiers
+(21192, 4413, 9), -- M. Def. Modifiers
+(21192, 4414, 2), -- Armor Type
+(21192, 4415, 3), -- Weapon Type
+(21192, 4416, 8), -- Races
 -- Gigant Raider
-(21193, 4032, 3), -- Power Strike
-(21193, 4287, 5), -- Resist Hold Attacks
-(21193, 4408, 12), -- HP Increase (4x)
-(21193, 4409, 1), -- MP Increase (1x)
-(21193, 4410, 13), -- Slightly Strong P. Atk.
-(21193, 4411, 13), -- Slightly Strong M. Atk.
-(21193, 4412, 12), -- Slightly Strong P. Def.
-(21193, 4413, 9), -- Slightly Weak M. Def.
-(21193, 4414, 3), -- Light Armor Type
-(21193, 4415, 3), -- One-handed Sword
-(21193, 4416, 8), -- Angels
+(21193, 4032, 3), -- NPC Strike
+(21193, 4287, 5), -- Resist Hold
+(21193, 4408, 12), -- HP Modifiers
+(21193, 4409, 1), -- MP Modifiers
+(21193, 4410, 13), -- P. Atk. Modifiers
+(21193, 4411, 13), -- M. Atk. Modifiers
+(21193, 4412, 12), -- P. Def. Modifiers
+(21193, 4413, 9), -- M. Def. Modifiers
+(21193, 4414, 3), -- Armor Type
+(21193, 4415, 3), -- Weapon Type
+(21193, 4416, 8), -- Races
 -- Gigant Confessor
-(21194, 4078, 4), -- Flame Strike
-(21194, 4285, 5), -- Resist Sleep Attacks
-(21194, 4408, 12), -- HP Increase (4x)
-(21194, 4409, 1), -- MP Increase (1x)
-(21194, 4410, 13), -- Slightly Strong P. Atk.
-(21194, 4411, 13), -- Slightly Strong M. Atk.
-(21194, 4412, 9), -- Slightly Weak P. Def.
-(21194, 4413, 11), -- Average M. Def.
-(21194, 4414, 2), -- Standard Type
-(21194, 4415, 5), -- Blunt Weapons
-(21194, 4416, 8), -- Angels
+(21194, 4078, 4), -- NPC Flamestrike
+(21194, 4285, 5), -- Resist Sleep
+(21194, 4408, 12), -- HP Modifiers
+(21194, 4409, 1), -- MP Modifiers
+(21194, 4410, 13), -- P. Atk. Modifiers
+(21194, 4411, 13), -- M. Atk. Modifiers
+(21194, 4412, 9), -- P. Def. Modifiers
+(21194, 4413, 11), -- M. Def. Modifiers
+(21194, 4414, 2), -- Armor Type
+(21194, 4415, 5), -- Weapon Type
+(21194, 4416, 8), -- Races
 -- Gigant Commander
-(21195, 4029, 3), -- Shield
-(21195, 4285, 3), -- Resist Sleep Attacks
-(21195, 4287, 3), -- Resist Hold Attacks
-(21195, 4408, 12), -- HP Increase (4x)
-(21195, 4409, 1), -- MP Increase (1x)
-(21195, 4410, 13), -- Slightly Strong P. Atk.
-(21195, 4411, 13), -- Slightly Strong M. Atk.
-(21195, 4412, 14), -- Strong P. Def.
-(21195, 4413, 9), -- Slightly Weak M. Def.
-(21195, 4414, 2), -- Standard Type
-(21195, 4415, 3), -- One-handed Sword
-(21195, 4416, 8), -- Angels
+(21195, 4029, 3), -- NPC Shield
+(21195, 4285, 3), -- Resist Sleep
+(21195, 4287, 3), -- Resist Hold
+(21195, 4408, 12), -- HP Modifiers
+(21195, 4409, 1), -- MP Modifiers
+(21195, 4410, 13), -- P. Atk. Modifiers
+(21195, 4411, 13), -- M. Atk. Modifiers
+(21195, 4412, 14), -- P. Def. Modifiers
+(21195, 4413, 9), -- M. Def. Modifiers
+(21195, 4414, 2), -- Armor Type
+(21195, 4415, 3), -- Weapon Type
+(21195, 4416, 8), -- Races
 -- Nephilim Sentinel
-(21196, 4032, 4), -- Power Strike
-(21196, 4287, 5), -- Resist Hold Attacks
-(21196, 4408, 12), -- HP Increase (4x)
-(21196, 4409, 1), -- MP Increase (1x)
-(21196, 4410, 13), -- Slightly Strong P. Atk.
-(21196, 4411, 13), -- Slightly Strong M. Atk.
-(21196, 4412, 14), -- Strong P. Def.
-(21196, 4413, 9), -- Slightly Weak M. Def.
-(21196, 4414, 3), -- Light Armor Type
-(21196, 4415, 3), -- One-handed Sword
-(21196, 4416, 8), -- Angels
+(21196, 4032, 4), -- NPC Strike
+(21196, 4287, 5), -- Resist Hold
+(21196, 4408, 12), -- HP Modifiers
+(21196, 4409, 1), -- MP Modifiers
+(21196, 4410, 13), -- P. Atk. Modifiers
+(21196, 4411, 13), -- M. Atk. Modifiers
+(21196, 4412, 14), -- P. Def. Modifiers
+(21196, 4413, 9), -- M. Def. Modifiers
+(21196, 4414, 3), -- Armor Type
+(21196, 4415, 3), -- Weapon Type
+(21196, 4416, 8), -- Races
 -- Nephilim Priest
-(21197, 4030, 3), -- Might
+(21197, 4030, 3), -- NPC Clan Might
 (21197, 4046, 5), -- Sleep
-(21197, 4065, 5), -- Heal
-(21197, 4094, 5), -- Cancellation
-(21197, 4098, 5), -- Silence
-(21197, 4285, 5), -- Resist Sleep Attacks
-(21197, 4408, 12), -- HP Increase (4x)
-(21197, 4409, 1), -- MP Increase (1x)
-(21197, 4410, 13), -- Slightly Strong P. Atk.
-(21197, 4411, 13), -- Slightly Strong M. Atk.
-(21197, 4412, 9), -- Slightly Weak P. Def.
-(21197, 4413, 11), -- Average M. Def.
-(21197, 4414, 2), -- Standard Type
-(21197, 4415, 5), -- Blunt Weapons
-(21197, 4416, 8), -- Angels
+(21197, 4065, 5), -- NPC Heal
+(21197, 4094, 5), -- NPC Cancel Magic
+(21197, 4098, 5), -- Magic Skill Block
+(21197, 4285, 5), -- Resist Sleep
+(21197, 4408, 12), -- HP Modifiers
+(21197, 4409, 1), -- MP Modifiers
+(21197, 4410, 13), -- P. Atk. Modifiers
+(21197, 4411, 13), -- M. Atk. Modifiers
+(21197, 4412, 9), -- P. Def. Modifiers
+(21197, 4413, 11), -- M. Def. Modifiers
+(21197, 4414, 2), -- Armor Type
+(21197, 4415, 5), -- Weapon Type
+(21197, 4416, 8), -- Races
 -- Nephilim Swordsman
-(21198, 4032, 5), -- Power Strike
-(21198, 4072, 5), -- Stun
-(21198, 4091, 1), -- Spirit Ogre
-(21198, 4285, 3), -- Resist Sleep Attacks
-(21198, 4287, 3), -- Resist Hold Attacks
-(21198, 4408, 12), -- HP Increase (4x)
-(21198, 4409, 1), -- MP Increase (1x)
-(21198, 4410, 13), -- Slightly Strong P. Atk.
-(21198, 4411, 13), -- Slightly Strong M. Atk.
-(21198, 4412, 14), -- Strong P. Def.
-(21198, 4413, 9), -- Slightly Weak M. Def.
-(21198, 4414, 2), -- Standard Type
-(21198, 4415, 3), -- One-handed Sword
-(21198, 4416, 8), -- Angels
+(21198, 4032, 5), -- NPC Strike
+(21198, 4072, 5), -- Shock
+(21198, 4091, 1), -- NPC Ogre Spirit Totem
+(21198, 4285, 3), -- Resist Sleep
+(21198, 4287, 3), -- Resist Hold
+(21198, 4408, 12), -- HP Modifiers
+(21198, 4409, 1), -- MP Modifiers
+(21198, 4410, 13), -- P. Atk. Modifiers
+(21198, 4411, 13), -- M. Atk. Modifiers
+(21198, 4412, 14), -- P. Def. Modifiers
+(21198, 4413, 9), -- M. Def. Modifiers
+(21198, 4414, 2), -- Armor Type
+(21198, 4415, 3), -- Weapon Type
+(21198, 4416, 8), -- Races
 -- Nephilim Guard
-(21199, 4032, 5), -- Power Strike
-(21199, 4287, 5), -- Resist Hold Attacks
-(21199, 4408, 12), -- HP Increase (4x)
-(21199, 4409, 1), -- MP Increase (1x)
-(21199, 4410, 13), -- Slightly Strong P. Atk.
-(21199, 4411, 13), -- Slightly Strong M. Atk.
-(21199, 4412, 14), -- Strong P. Def.
-(21199, 4413, 9), -- Slightly Weak M. Def.
-(21199, 4414, 3), -- Light Armor Type
-(21199, 4415, 3), -- One-handed Sword
-(21199, 4416, 8), -- Angels
+(21199, 4032, 5), -- NPC Strike
+(21199, 4287, 5), -- Resist Hold
+(21199, 4408, 12), -- HP Modifiers
+(21199, 4409, 1), -- MP Modifiers
+(21199, 4410, 13), -- P. Atk. Modifiers
+(21199, 4411, 13), -- M. Atk. Modifiers
+(21199, 4412, 14), -- P. Def. Modifiers
+(21199, 4413, 9), -- M. Def. Modifiers
+(21199, 4414, 3), -- Armor Type
+(21199, 4415, 3), -- Weapon Type
+(21199, 4416, 8), -- Races
 -- Nephilim Bishop
-(21200, 4030, 3), -- Might
+(21200, 4030, 3), -- NPC Clan Might
 (21200, 4046, 6), -- Sleep
-(21200, 4065, 6), -- Heal
-(21200, 4094, 6), -- Cancellation
-(21200, 4098, 6), -- Silence
-(21200, 4285, 5), -- Resist Sleep Attacks
-(21200, 4408, 12), -- HP Increase (4x)
-(21200, 4409, 1), -- MP Increase (1x)
-(21200, 4410, 13), -- Slightly Strong P. Atk.
-(21200, 4411, 13), -- Slightly Strong M. Atk.
-(21200, 4412, 9), -- Slightly Weak P. Def.
-(21200, 4413, 11), -- Average M. Def.
-(21200, 4414, 2), -- Standard Type
-(21200, 4415, 5), -- Blunt Weapons
-(21200, 4416, 8), -- Angels
+(21200, 4065, 6), -- NPC Heal
+(21200, 4094, 6), -- NPC Cancel Magic
+(21200, 4098, 6), -- Magic Skill Block
+(21200, 4285, 5), -- Resist Sleep
+(21200, 4408, 12), -- HP Modifiers
+(21200, 4409, 1), -- MP Modifiers
+(21200, 4410, 13), -- P. Atk. Modifiers
+(21200, 4411, 13), -- M. Atk. Modifiers
+(21200, 4412, 9), -- P. Def. Modifiers
+(21200, 4413, 11), -- M. Def. Modifiers
+(21200, 4414, 2), -- Armor Type
+(21200, 4415, 5), -- Weapon Type
+(21200, 4416, 8), -- Races
 -- Nephilim Centurion
-(21201, 4032, 6), -- Power Strike
-(21201, 4072, 6), -- Stun
-(21201, 4091, 1), -- Spirit Ogre
-(21201, 4285, 3), -- Resist Sleep Attacks
-(21201, 4287, 3), -- Resist Hold Attacks
-(21201, 4408, 12), -- HP Increase (4x)
-(21201, 4409, 1), -- MP Increase (1x)
-(21201, 4410, 13), -- Slightly Strong P. Atk.
-(21201, 4411, 13), -- Slightly Strong M. Atk.
-(21201, 4412, 16), -- Very Strong P. Def.
-(21201, 4413, 9), -- Slightly Weak M. Def.
-(21201, 4414, 2), -- Standard Type
-(21201, 4415, 3), -- One-handed Sword
-(21201, 4416, 8), -- Angels
+(21201, 4032, 6), -- NPC Strike
+(21201, 4072, 6), -- Shock
+(21201, 4091, 1), -- NPC Ogre Spirit Totem
+(21201, 4285, 3), -- Resist Sleep
+(21201, 4287, 3), -- Resist Hold
+(21201, 4408, 12), -- HP Modifiers
+(21201, 4409, 1), -- MP Modifiers
+(21201, 4410, 13), -- P. Atk. Modifiers
+(21201, 4411, 13), -- M. Atk. Modifiers
+(21201, 4412, 16), -- P. Def. Modifiers
+(21201, 4413, 9), -- M. Def. Modifiers
+(21201, 4414, 2), -- Armor Type
+(21201, 4415, 3), -- Weapon Type
+(21201, 4416, 8), -- Races
 -- Nephilim Scout
-(21202, 4032, 6), -- Power Strike
-(21202, 4287, 5), -- Resist Hold Attacks
-(21202, 4408, 12), -- HP Increase (4x)
-(21202, 4409, 1), -- MP Increase (1x)
-(21202, 4410, 13), -- Slightly Strong P. Atk.
-(21202, 4411, 13), -- Slightly Strong M. Atk.
-(21202, 4412, 16), -- Very Strong P. Def.
-(21202, 4413, 9), -- Slightly Weak M. Def.
-(21202, 4414, 3), -- Light Armor Type
-(21202, 4415, 3), -- One-handed Sword
-(21202, 4416, 8), -- Angels
+(21202, 4032, 6), -- NPC Strike
+(21202, 4287, 5), -- Resist Hold
+(21202, 4408, 12), -- HP Modifiers
+(21202, 4409, 1), -- MP Modifiers
+(21202, 4410, 13), -- P. Atk. Modifiers
+(21202, 4411, 13), -- M. Atk. Modifiers
+(21202, 4412, 16), -- P. Def. Modifiers
+(21202, 4413, 9), -- M. Def. Modifiers
+(21202, 4414, 3), -- Armor Type
+(21202, 4415, 3), -- Weapon Type
+(21202, 4416, 8), -- Races
 -- Nephilim Archbishop
-(21203, 4030, 3), -- Might
+(21203, 4030, 3), -- NPC Clan Might
 (21203, 4046, 6), -- Sleep
-(21203, 4065, 6), -- Heal
-(21203, 4094, 6), -- Cancellation
-(21203, 4098, 6), -- Silence
-(21203, 4285, 5), -- Resist Sleep Attacks
-(21203, 4408, 12), -- HP Increase (4x)
-(21203, 4409, 1), -- MP Increase (1x)
-(21203, 4410, 13), -- Slightly Strong P. Atk.
-(21203, 4411, 13), -- Slightly Strong M. Atk.
-(21203, 4412, 9), -- Slightly Weak P. Def.
-(21203, 4413, 11), -- Average M. Def.
-(21203, 4414, 2), -- Standard Type
-(21203, 4415, 5), -- Blunt Weapons
-(21203, 4416, 8), -- Angels
+(21203, 4065, 6), -- NPC Heal
+(21203, 4094, 6), -- NPC Cancel Magic
+(21203, 4098, 6), -- Magic Skill Block
+(21203, 4285, 5), -- Resist Sleep
+(21203, 4408, 12), -- HP Modifiers
+(21203, 4409, 1), -- MP Modifiers
+(21203, 4410, 13), -- P. Atk. Modifiers
+(21203, 4411, 13), -- M. Atk. Modifiers
+(21203, 4412, 9), -- P. Def. Modifiers
+(21203, 4413, 11), -- M. Def. Modifiers
+(21203, 4414, 2), -- Armor Type
+(21203, 4415, 5), -- Weapon Type
+(21203, 4416, 8), -- Races
 -- Nephilim Praetorian
-(21204, 4032, 7), -- Power Strike
-(21204, 4072, 7), -- Stun
-(21204, 4091, 1), -- Spirit Ogre
-(21204, 4285, 3), -- Resist Sleep Attacks
-(21204, 4287, 3), -- Resist Hold Attacks
-(21204, 4408, 12), -- HP Increase (4x)
-(21204, 4409, 1), -- MP Increase (1x)
-(21204, 4410, 13), -- Slightly Strong P. Atk.
-(21204, 4411, 13), -- Slightly Strong M. Atk.
-(21204, 4412, 16), -- Very Strong P. Def.
-(21204, 4413, 9), -- Slightly Weak M. Def.
-(21204, 4414, 2), -- Standard Type
-(21204, 4415, 3), -- One-handed Sword
-(21204, 4416, 8), -- Angels
+(21204, 4032, 7), -- NPC Strike
+(21204, 4072, 7), -- Shock
+(21204, 4091, 1), -- NPC Ogre Spirit Totem
+(21204, 4285, 3), -- Resist Sleep
+(21204, 4287, 3), -- Resist Hold
+(21204, 4408, 12), -- HP Modifiers
+(21204, 4409, 1), -- MP Modifiers
+(21204, 4410, 13), -- P. Atk. Modifiers
+(21204, 4411, 13), -- M. Atk. Modifiers
+(21204, 4412, 16), -- P. Def. Modifiers
+(21204, 4413, 9), -- M. Def. Modifiers
+(21204, 4414, 2), -- Armor Type
+(21204, 4415, 3), -- Weapon Type
+(21204, 4416, 8), -- Races
 -- Nephilim Royal Guard
-(21205, 4032, 8), -- Power Strike
-(21205, 4287, 5), -- Resist Hold Attacks
-(21205, 4408, 12), -- HP Increase (4x)
-(21205, 4409, 1), -- MP Increase (1x)
-(21205, 4410, 13), -- Slightly Strong P. Atk.
-(21205, 4411, 13), -- Slightly Strong M. Atk.
-(21205, 4412, 16), -- Very Strong P. Def.
-(21205, 4413, 9), -- Slightly Weak M. Def.
-(21205, 4414, 3), -- Light Armor Type
-(21205, 4415, 3), -- One-handed Sword
-(21205, 4416, 8), -- Angels
+(21205, 4032, 8), -- NPC Strike
+(21205, 4287, 5), -- Resist Hold
+(21205, 4408, 12), -- HP Modifiers
+(21205, 4409, 1), -- MP Modifiers
+(21205, 4410, 13), -- P. Atk. Modifiers
+(21205, 4411, 13), -- M. Atk. Modifiers
+(21205, 4412, 16), -- P. Def. Modifiers
+(21205, 4413, 9), -- M. Def. Modifiers
+(21205, 4414, 3), -- Armor Type
+(21205, 4415, 3), -- Weapon Type
+(21205, 4416, 8), -- Races
 -- Nephilim Cardinal
-(21206, 4030, 3), -- Might
+(21206, 4030, 3), -- NPC Clan Might
 (21206, 4046, 8), -- Sleep
-(21206, 4065, 8), -- Heal
-(21206, 4094, 8), -- Cancellation
-(21206, 4098, 8), -- Silence
-(21206, 4285, 5), -- Resist Sleep Attacks
-(21206, 4408, 12), -- HP Increase (4x)
-(21206, 4409, 1), -- MP Increase (1x)
-(21206, 4410, 13), -- Slightly Strong P. Atk.
-(21206, 4411, 13), -- Slightly Strong M. Atk.
-(21206, 4412, 9), -- Slightly Weak P. Def.
-(21206, 4413, 9), -- Slightly Weak M. Def.
-(21206, 4414, 2), -- Standard Type
-(21206, 4415, 5), -- Blunt Weapons
-(21206, 4416, 8), -- Angels
+(21206, 4065, 8), -- NPC Heal
+(21206, 4094, 8), -- NPC Cancel Magic
+(21206, 4098, 8), -- Magic Skill Block
+(21206, 4285, 5), -- Resist Sleep
+(21206, 4408, 12), -- HP Modifiers
+(21206, 4409, 1), -- MP Modifiers
+(21206, 4410, 13), -- P. Atk. Modifiers
+(21206, 4411, 13), -- M. Atk. Modifiers
+(21206, 4412, 9), -- P. Def. Modifiers
+(21206, 4413, 9), -- M. Def. Modifiers
+(21206, 4414, 2), -- Armor Type
+(21206, 4415, 5), -- Weapon Type
+(21206, 4416, 8), -- Races
 -- Nephilim Commander
-(21207, 4032, 9), -- Power Strike
-(21207, 4072, 9), -- Stun
-(21207, 4091, 1), -- Spirit Ogre
-(21207, 4285, 3), -- Resist Sleep Attacks
-(21207, 4287, 3), -- Resist Hold Attacks
-(21207, 4408, 12), -- HP Increase (4x)
-(21207, 4409, 1), -- MP Increase (1x)
-(21207, 4410, 13), -- Slightly Strong P. Atk.
-(21207, 4411, 13), -- Slightly Strong M. Atk.
-(21207, 4412, 16), -- Very Strong P. Def.
-(21207, 4413, 9), -- Slightly Weak M. Def.
-(21207, 4414, 2), -- Standard Type
-(21207, 4415, 3), -- One-handed Sword
-(21207, 4416, 8), -- Angels
+(21207, 4032, 9), -- NPC Strike
+(21207, 4072, 9), -- Shock
+(21207, 4091, 1), -- NPC Ogre Spirit Totem
+(21207, 4285, 3), -- Resist Sleep
+(21207, 4287, 3), -- Resist Hold
+(21207, 4408, 12), -- HP Modifiers
+(21207, 4409, 1), -- MP Modifiers
+(21207, 4410, 13), -- P. Atk. Modifiers
+(21207, 4411, 13), -- M. Atk. Modifiers
+(21207, 4412, 16), -- P. Def. Modifiers
+(21207, 4413, 9), -- M. Def. Modifiers
+(21207, 4414, 2), -- Armor Type
+(21207, 4415, 3), -- Weapon Type
+(21207, 4416, 8), -- Races
 -- Hallowed Watchman
-(21208, 4274, 1), -- Blunt Weapon Weak Point
+(21208, 4274, 1), -- Blunt Attack Weak Point
 (21208, 4317, 1), -- Increase Rage Might
-(21208, 4408, 12), -- HP Increase (4x)
-(21208, 4409, 1), -- MP Increase (1x)
-(21208, 4410, 11), -- Average P. Atk.
-(21208, 4411, 11), -- Average M. Atk.
-(21208, 4412, 11), -- Average P. Def.
-(21208, 4413, 11), -- Average M. Def.
-(21208, 4414, 2), -- Standard Type
-(21208, 4415, 3), -- One-handed Sword
-(21208, 4416, 1), -- Undead
+(21208, 4408, 12), -- HP Modifiers
+(21208, 4409, 1), -- MP Modifiers
+(21208, 4410, 11), -- P. Atk. Modifiers
+(21208, 4411, 11), -- M. Atk. Modifiers
+(21208, 4412, 11), -- P. Def. Modifiers
+(21208, 4413, 11), -- M. Def. Modifiers
+(21208, 4414, 2), -- Armor Type
+(21208, 4415, 3), -- Weapon Type
+(21208, 4416, 1), -- Races
 -- Hallowed Seer
-(21209, 4099, 1), -- Berserker Spirit
-(21209, 4408, 12), -- HP Increase (4x)
-(21209, 4409, 1), -- MP Increase (1x)
-(21209, 4410, 11), -- Average P. Atk.
-(21209, 4411, 11), -- Average M. Atk.
-(21209, 4412, 11), -- Average P. Def.
-(21209, 4413, 11), -- Average M. Def.
-(21209, 4414, 3), -- Light Armor Type
-(21209, 4415, 5), -- Blunt Weapons
-(21209, 4416, 1), -- Undead
+(21209, 4099, 1), -- NPC Berserk
+(21209, 4408, 12), -- HP Modifiers
+(21209, 4409, 1), -- MP Modifiers
+(21209, 4410, 11), -- P. Atk. Modifiers
+(21209, 4411, 11), -- M. Atk. Modifiers
+(21209, 4412, 11), -- P. Def. Modifiers
+(21209, 4413, 11), -- M. Def. Modifiers
+(21209, 4414, 3), -- Armor Type
+(21209, 4415, 5), -- Weapon Type
+(21209, 4416, 1), -- Races
 -- Vault Guardian
-(21210, 4032, 2), -- Power Strike
-(21210, 4408, 12), -- HP Increase (4x)
-(21210, 4409, 1), -- MP Increase (1x)
-(21210, 4410, 11), -- Average P. Atk.
-(21210, 4411, 11), -- Average M. Atk.
-(21210, 4412, 11), -- Average P. Def.
-(21210, 4413, 11), -- Average M. Def.
-(21210, 4414, 2), -- Standard Type
-(21210, 4415, 3), -- One-handed Sword
-(21210, 4416, 13), -- Fairies
+(21210, 4032, 2), -- NPC Strike
+(21210, 4408, 12), -- HP Modifiers
+(21210, 4409, 1), -- MP Modifiers
+(21210, 4410, 11), -- P. Atk. Modifiers
+(21210, 4411, 11), -- M. Atk. Modifiers
+(21210, 4412, 11), -- P. Def. Modifiers
+(21210, 4413, 11), -- M. Def. Modifiers
+(21210, 4414, 2), -- Armor Type
+(21210, 4415, 3), -- Weapon Type
+(21210, 4416, 13), -- Races
 -- Vault Seer
-(21211, 4002, 2), -- HP Drain
-(21211, 4408, 12), -- HP Increase (4x)
-(21211, 4409, 1), -- MP Increase (1x)
-(21211, 4410, 11), -- Average P. Atk.
-(21211, 4411, 11), -- Average M. Atk.
-(21211, 4412, 11), -- Average P. Def.
-(21211, 4413, 11), -- Average M. Def.
-(21211, 4414, 3), -- Light Armor Type
-(21211, 4415, 3), -- One-handed Sword
-(21211, 4416, 9), -- Demons
+(21211, 4002, 2), -- NPC HP Drain
+(21211, 4408, 12), -- HP Modifiers
+(21211, 4409, 1), -- MP Modifiers
+(21211, 4410, 11), -- P. Atk. Modifiers
+(21211, 4411, 11), -- M. Atk. Modifiers
+(21211, 4412, 11), -- P. Def. Modifiers
+(21211, 4413, 11), -- M. Def. Modifiers
+(21211, 4414, 3), -- Armor Type
+(21211, 4415, 3), -- Weapon Type
+(21211, 4416, 9), -- Races
 -- Hallowed Sentinel
-(21212, 4274, 1), -- Blunt Weapon Weak Point
+(21212, 4274, 1), -- Blunt Attack Weak Point
 (21212, 4317, 1), -- Increase Rage Might
-(21212, 4408, 12), -- HP Increase (4x)
-(21212, 4409, 1), -- MP Increase (1x)
-(21212, 4410, 11), -- Average P. Atk.
-(21212, 4411, 11), -- Average M. Atk.
-(21212, 4412, 11), -- Average P. Def.
-(21212, 4413, 11), -- Average M. Def.
-(21212, 4414, 2), -- Standard Type
-(21212, 4415, 3), -- One-handed Sword
-(21212, 4416, 1), -- Undead
+(21212, 4408, 12), -- HP Modifiers
+(21212, 4409, 1), -- MP Modifiers
+(21212, 4410, 11), -- P. Atk. Modifiers
+(21212, 4411, 11), -- M. Atk. Modifiers
+(21212, 4412, 11), -- P. Def. Modifiers
+(21212, 4413, 11), -- M. Def. Modifiers
+(21212, 4414, 2), -- Armor Type
+(21212, 4415, 3), -- Weapon Type
+(21212, 4416, 1), -- Races
 -- Hallowed Monk
-(21213, 4099, 1), -- Berserker Spirit
-(21213, 4408, 12), -- HP Increase (4x)
-(21213, 4409, 1), -- MP Increase (1x)
-(21213, 4410, 11), -- Average P. Atk.
-(21213, 4411, 11), -- Average M. Atk.
-(21213, 4412, 11), -- Average P. Def.
-(21213, 4413, 11), -- Average M. Def.
-(21213, 4414, 3), -- Light Armor Type
-(21213, 4415, 5), -- Blunt Weapons
-(21213, 4416, 1), -- Undead
+(21213, 4099, 1), -- NPC Berserk
+(21213, 4408, 12), -- HP Modifiers
+(21213, 4409, 1), -- MP Modifiers
+(21213, 4410, 11), -- P. Atk. Modifiers
+(21213, 4411, 11), -- M. Atk. Modifiers
+(21213, 4412, 11), -- P. Def. Modifiers
+(21213, 4413, 11), -- M. Def. Modifiers
+(21213, 4414, 3), -- Armor Type
+(21213, 4415, 5), -- Weapon Type
+(21213, 4416, 1), -- Races
 -- Vault Sentinel
-(21214, 4032, 3), -- Power Strike
-(21214, 4408, 12), -- HP Increase (4x)
-(21214, 4409, 1), -- MP Increase (1x)
-(21214, 4410, 11), -- Average P. Atk.
-(21214, 4411, 11), -- Average M. Atk.
-(21214, 4412, 11), -- Average P. Def.
-(21214, 4413, 11), -- Average M. Def.
-(21214, 4414, 2), -- Standard Type
-(21214, 4415, 3), -- One-handed Sword
-(21214, 4416, 13), -- Fairies
+(21214, 4032, 3), -- NPC Strike
+(21214, 4408, 12), -- HP Modifiers
+(21214, 4409, 1), -- MP Modifiers
+(21214, 4410, 11), -- P. Atk. Modifiers
+(21214, 4411, 11), -- M. Atk. Modifiers
+(21214, 4412, 11), -- P. Def. Modifiers
+(21214, 4413, 11), -- M. Def. Modifiers
+(21214, 4414, 2), -- Armor Type
+(21214, 4415, 3), -- Weapon Type
+(21214, 4416, 13), -- Races
 -- Vault Monk
-(21215, 4002, 3), -- HP Drain
-(21215, 4408, 12), -- HP Increase (4x)
-(21215, 4409, 1), -- MP Increase (1x)
-(21215, 4410, 11), -- Average P. Atk.
-(21215, 4411, 11), -- Average M. Atk.
-(21215, 4412, 11), -- Average P. Def.
-(21215, 4413, 11), -- Average M. Def.
-(21215, 4414, 3), -- Light Armor Type
-(21215, 4415, 3), -- One-handed Sword
-(21215, 4416, 9), -- Demons
+(21215, 4002, 3), -- NPC HP Drain
+(21215, 4408, 12), -- HP Modifiers
+(21215, 4409, 1), -- MP Modifiers
+(21215, 4410, 11), -- P. Atk. Modifiers
+(21215, 4411, 11), -- M. Atk. Modifiers
+(21215, 4412, 11), -- P. Def. Modifiers
+(21215, 4413, 11), -- M. Def. Modifiers
+(21215, 4414, 3), -- Armor Type
+(21215, 4415, 3), -- Weapon Type
+(21215, 4416, 9), -- Races
 -- Overlord of the Holy Lands
-(21216, 4274, 1), -- Blunt Weapon Weak Point
+(21216, 4274, 1), -- Blunt Attack Weak Point
 (21216, 4317, 1), -- Increase Rage Might
-(21216, 4408, 12), -- HP Increase (4x)
-(21216, 4409, 1), -- MP Increase (1x)
-(21216, 4410, 12), -- Slightly Strong P. Atk.
-(21216, 4411, 12), -- Slightly Strong M. Atk.
-(21216, 4412, 10), -- Slightly Weak P. Def.
-(21216, 4413, 10), -- Slightly Weak M. Def.
-(21216, 4414, 2), -- Standard Type
-(21216, 4415, 3), -- One-handed Sword
-(21216, 4416, 1), -- Undead
+(21216, 4408, 12), -- HP Modifiers
+(21216, 4409, 1), -- MP Modifiers
+(21216, 4410, 12), -- P. Atk. Modifiers
+(21216, 4411, 12), -- M. Atk. Modifiers
+(21216, 4412, 10), -- P. Def. Modifiers
+(21216, 4413, 10), -- M. Def. Modifiers
+(21216, 4414, 2), -- Armor Type
+(21216, 4415, 3), -- Weapon Type
+(21216, 4416, 1), -- Races
 -- Hallowed Priest
-(21217, 4099, 2), -- Berserker Spirit
-(21217, 4408, 12), -- HP Increase (4x)
-(21217, 4409, 1), -- MP Increase (1x)
-(21217, 4410, 11), -- Average P. Atk.
-(21217, 4411, 11), -- Average M. Atk.
-(21217, 4412, 11), -- Average P. Def.
-(21217, 4413, 11), -- Average M. Def.
-(21217, 4414, 3), -- Light Armor Type
-(21217, 4415, 3), -- One-handed Sword
-(21217, 4416, 9), -- Demons
+(21217, 4099, 2), -- NPC Berserk
+(21217, 4408, 12), -- HP Modifiers
+(21217, 4409, 1), -- MP Modifiers
+(21217, 4410, 11), -- P. Atk. Modifiers
+(21217, 4411, 11), -- M. Atk. Modifiers
+(21217, 4412, 11), -- P. Def. Modifiers
+(21217, 4413, 11), -- M. Def. Modifiers
+(21217, 4414, 3), -- Armor Type
+(21217, 4415, 3), -- Weapon Type
+(21217, 4416, 9), -- Races
 -- Vault Overlord
-(21218, 4032, 4), -- Power Strike
-(21218, 4408, 12), -- HP Increase (4x)
-(21218, 4409, 1), -- MP Increase (1x)
-(21218, 4410, 12), -- Slightly Strong P. Atk.
-(21218, 4411, 12), -- Slightly Strong M. Atk.
-(21218, 4412, 10), -- Slightly Weak P. Def.
-(21218, 4413, 10), -- Slightly Weak M. Def.
-(21218, 4414, 2), -- Standard Type
-(21218, 4415, 3), -- One-handed Sword
-(21218, 4416, 1), -- Undead
+(21218, 4032, 4), -- NPC Strike
+(21218, 4408, 12), -- HP Modifiers
+(21218, 4409, 1), -- MP Modifiers
+(21218, 4410, 12), -- P. Atk. Modifiers
+(21218, 4411, 12), -- M. Atk. Modifiers
+(21218, 4412, 10), -- P. Def. Modifiers
+(21218, 4413, 10), -- M. Def. Modifiers
+(21218, 4414, 2), -- Armor Type
+(21218, 4415, 3), -- Weapon Type
+(21218, 4416, 1), -- Races
 -- Vault Priest
-(21219, 4002, 4), -- HP Drain
-(21219, 4408, 12), -- HP Increase (4x)
-(21219, 4409, 1), -- MP Increase (1x)
-(21219, 4410, 11), -- Average P. Atk.
-(21219, 4411, 11), -- Average M. Atk.
-(21219, 4412, 11), -- Average P. Def.
-(21219, 4413, 11), -- Average M. Def.
-(21219, 4414, 3), -- Light Armor Type
-(21219, 4415, 3), -- One-handed Sword
-(21219, 4416, 9), -- Demons
+(21219, 4002, 4), -- NPC HP Drain
+(21219, 4408, 12), -- HP Modifiers
+(21219, 4409, 1), -- MP Modifiers
+(21219, 4410, 11), -- P. Atk. Modifiers
+(21219, 4411, 11), -- M. Atk. Modifiers
+(21219, 4412, 11), -- P. Def. Modifiers
+(21219, 4413, 11), -- M. Def. Modifiers
+(21219, 4414, 3), -- Armor Type
+(21219, 4415, 3), -- Weapon Type
+(21219, 4416, 9), -- Races
 -- Sepulcher Archon
-(21220, 4274, 1), -- Blunt Weapon Weak Point
+(21220, 4274, 1), -- Blunt Attack Weak Point
 (21220, 4317, 1), -- Increase Rage Might
-(21220, 4408, 12), -- HP Increase (4x)
-(21220, 4409, 1), -- MP Increase (1x)
-(21220, 4410, 12), -- Slightly Strong P. Atk.
-(21220, 4411, 12), -- Slightly Strong M. Atk.
-(21220, 4412, 10), -- Slightly Weak P. Def.
-(21220, 4413, 10), -- Slightly Weak M. Def.
-(21220, 4414, 2), -- Standard Type
-(21220, 4415, 3), -- One-handed Sword
-(21220, 4416, 1), -- Undead
+(21220, 4408, 12), -- HP Modifiers
+(21220, 4409, 1), -- MP Modifiers
+(21220, 4410, 12), -- P. Atk. Modifiers
+(21220, 4411, 12), -- M. Atk. Modifiers
+(21220, 4412, 10), -- P. Def. Modifiers
+(21220, 4413, 10), -- M. Def. Modifiers
+(21220, 4414, 2), -- Armor Type
+(21220, 4415, 3), -- Weapon Type
+(21220, 4416, 1), -- Races
 -- Sepulcher Inquisitor
-(21221, 4099, 2), -- Berserker Spirit
-(21221, 4408, 12), -- HP Increase (4x)
-(21221, 4409, 1), -- MP Increase (1x)
-(21221, 4410, 11), -- Average P. Atk.
-(21221, 4411, 11), -- Average M. Atk.
-(21221, 4412, 11), -- Average P. Def.
-(21221, 4413, 11), -- Average M. Def.
-(21221, 4414, 3), -- Light Armor Type
-(21221, 4415, 3), -- One-handed Sword
-(21221, 4416, 9), -- Demons
+(21221, 4099, 2), -- NPC Berserk
+(21221, 4408, 12), -- HP Modifiers
+(21221, 4409, 1), -- MP Modifiers
+(21221, 4410, 11), -- P. Atk. Modifiers
+(21221, 4411, 11), -- M. Atk. Modifiers
+(21221, 4412, 11), -- P. Def. Modifiers
+(21221, 4413, 11), -- M. Def. Modifiers
+(21221, 4414, 3), -- Armor Type
+(21221, 4415, 3), -- Weapon Type
+(21221, 4416, 9), -- Races
 -- Sepulcher Archon
-(21222, 4032, 5), -- Power Strike
-(21222, 4408, 12), -- HP Increase (4x)
-(21222, 4409, 1), -- MP Increase (1x)
-(21222, 4410, 12), -- Slightly Strong P. Atk.
-(21222, 4411, 12), -- Slightly Strong M. Atk.
-(21222, 4412, 10), -- Slightly Weak P. Def.
-(21222, 4413, 10), -- Slightly Weak M. Def.
-(21222, 4414, 2), -- Standard Type
-(21222, 4415, 3), -- One-handed Sword
-(21222, 4416, 1), -- Undead
+(21222, 4032, 5), -- NPC Strike
+(21222, 4408, 12), -- HP Modifiers
+(21222, 4409, 1), -- MP Modifiers
+(21222, 4410, 12), -- P. Atk. Modifiers
+(21222, 4411, 12), -- M. Atk. Modifiers
+(21222, 4412, 10), -- P. Def. Modifiers
+(21222, 4413, 10), -- M. Def. Modifiers
+(21222, 4414, 2), -- Armor Type
+(21222, 4415, 3), -- Weapon Type
+(21222, 4416, 1), -- Races
 -- Sepulcher Inquisitor
-(21223, 4002, 5), -- HP Drain
-(21223, 4408, 12), -- HP Increase (4x)
-(21223, 4409, 1), -- MP Increase (1x)
-(21223, 4410, 11), -- Average P. Atk.
-(21223, 4411, 11), -- Average M. Atk.
-(21223, 4412, 11), -- Average P. Def.
-(21223, 4413, 11), -- Average M. Def.
-(21223, 4414, 3), -- Light Armor Type
-(21223, 4415, 3), -- One-handed Sword
-(21223, 4416, 9), -- Demons
+(21223, 4002, 5), -- NPC HP Drain
+(21223, 4408, 12), -- HP Modifiers
+(21223, 4409, 1), -- MP Modifiers
+(21223, 4410, 11), -- P. Atk. Modifiers
+(21223, 4411, 11), -- M. Atk. Modifiers
+(21223, 4412, 11), -- P. Def. Modifiers
+(21223, 4413, 11), -- M. Def. Modifiers
+(21223, 4414, 3), -- Armor Type
+(21223, 4415, 3), -- Weapon Type
+(21223, 4416, 9), -- Races
 -- Sepulcher Guardian
-(21224, 4273, 3), -- Resist Daggers/Rapier Weapon
-(21224, 4274, 1), -- Blunt Weapon Weak Point
+(21224, 4273, 3), -- Resist Dagger
+(21224, 4274, 1), -- Blunt Attack Weak Point
 (21224, 4317, 1), -- Increase Rage Might
-(21224, 4408, 12), -- HP Increase (4x)
-(21224, 4409, 1), -- MP Increase (1x)
-(21224, 4410, 12), -- Slightly Strong P. Atk.
-(21224, 4411, 12), -- Slightly Strong M. Atk.
-(21224, 4412, 10), -- Slightly Weak P. Def.
-(21224, 4413, 10), -- Slightly Weak M. Def.
-(21224, 4414, 2), -- Standard Type
-(21224, 4415, 7), -- Daggers
-(21224, 4416, 1), -- Undead
+(21224, 4408, 12), -- HP Modifiers
+(21224, 4409, 1), -- MP Modifiers
+(21224, 4410, 12), -- P. Atk. Modifiers
+(21224, 4411, 12), -- M. Atk. Modifiers
+(21224, 4412, 10), -- P. Def. Modifiers
+(21224, 4413, 10), -- M. Def. Modifiers
+(21224, 4414, 2), -- Armor Type
+(21224, 4415, 7), -- Weapon Type
+(21224, 4416, 1), -- Races
 (21224, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Sepulcher Sage
-(21225, 4099, 2), -- Berserker Spirit
-(21225, 4408, 12), -- HP Increase (4x)
-(21225, 4409, 1), -- MP Increase (1x)
-(21225, 4410, 11), -- Average P. Atk.
-(21225, 4411, 11), -- Average M. Atk.
-(21225, 4412, 11), -- Average P. Def.
-(21225, 4413, 11), -- Average M. Def.
-(21225, 4414, 3), -- Light Armor Type
-(21225, 4415, 3), -- One-handed Sword
-(21225, 4416, 9), -- Demons
+(21225, 4099, 2), -- NPC Berserk
+(21225, 4408, 12), -- HP Modifiers
+(21225, 4409, 1), -- MP Modifiers
+(21225, 4410, 11), -- P. Atk. Modifiers
+(21225, 4411, 11), -- M. Atk. Modifiers
+(21225, 4412, 11), -- P. Def. Modifiers
+(21225, 4413, 11), -- M. Def. Modifiers
+(21225, 4414, 3), -- Armor Type
+(21225, 4415, 3), -- Weapon Type
+(21225, 4416, 9), -- Races
 -- Sepulcher Guardian
-(21226, 4032, 6), -- Power Strike
-(21226, 4408, 12), -- HP Increase (4x)
-(21226, 4409, 1), -- MP Increase (1x)
-(21226, 4410, 12), -- Slightly Strong P. Atk.
-(21226, 4411, 12), -- Slightly Strong M. Atk.
-(21226, 4412, 10), -- Slightly Weak P. Def.
-(21226, 4413, 10), -- Slightly Weak M. Def.
-(21226, 4414, 2), -- Standard Type
-(21226, 4415, 3), -- One-handed Sword
-(21226, 4416, 1), -- Undead
+(21226, 4032, 6), -- NPC Strike
+(21226, 4408, 12), -- HP Modifiers
+(21226, 4409, 1), -- MP Modifiers
+(21226, 4410, 12), -- P. Atk. Modifiers
+(21226, 4411, 12), -- M. Atk. Modifiers
+(21226, 4412, 10), -- P. Def. Modifiers
+(21226, 4413, 10), -- M. Def. Modifiers
+(21226, 4414, 2), -- Armor Type
+(21226, 4415, 3), -- Weapon Type
+(21226, 4416, 1), -- Races
 -- Sepulcher Sage
-(21227, 4002, 6), -- HP Drain
-(21227, 4274, 1), -- Blunt Weapon Weak Point
-(21227, 4408, 12), -- HP Increase (4x)
-(21227, 4409, 1), -- MP Increase (1x)
-(21227, 4410, 11), -- Average P. Atk.
-(21227, 4411, 11), -- Average M. Atk.
-(21227, 4412, 13), -- Slightly Strong P. Def.
-(21227, 4413, 11), -- Average M. Def.
-(21227, 4414, 3), -- Light Armor Type
-(21227, 4415, 3), -- One-handed Sword
-(21227, 4416, 1), -- Undead
+(21227, 4002, 6), -- NPC HP Drain
+(21227, 4274, 1), -- Blunt Attack Weak Point
+(21227, 4408, 12), -- HP Modifiers
+(21227, 4409, 1), -- MP Modifiers
+(21227, 4410, 11), -- P. Atk. Modifiers
+(21227, 4411, 11), -- M. Atk. Modifiers
+(21227, 4412, 13), -- P. Def. Modifiers
+(21227, 4413, 11), -- M. Def. Modifiers
+(21227, 4414, 3), -- Armor Type
+(21227, 4415, 3), -- Weapon Type
+(21227, 4416, 1), -- Races
 -- Sepulcher Guard 
-(21228, 4273, 3), -- Resist Daggers/Rapier Weapon
-(21228, 4274, 1), -- Blunt Weapon Weak Point
+(21228, 4273, 3), -- Resist Dagger
+(21228, 4274, 1), -- Blunt Attack Weak Point
 (21228, 4317, 1), -- Increase Rage Might
-(21228, 4408, 12), -- HP Increase (4x)
-(21228, 4409, 1), -- MP Increase (1x)
-(21228, 4410, 12), -- Slightly Strong P. Atk.
-(21228, 4411, 12), -- Slightly Strong M. Atk.
-(21228, 4412, 10), -- Slightly Weak P. Def.
-(21228, 4413, 10), -- Slightly Weak M. Def.
-(21228, 4414, 2), -- Standard Type
-(21228, 4415, 7), -- Daggers
-(21228, 4416, 1), -- Undead
+(21228, 4408, 12), -- HP Modifiers
+(21228, 4409, 1), -- MP Modifiers
+(21228, 4410, 12), -- P. Atk. Modifiers
+(21228, 4411, 12), -- M. Atk. Modifiers
+(21228, 4412, 10), -- P. Def. Modifiers
+(21228, 4413, 10), -- M. Def. Modifiers
+(21228, 4414, 2), -- Armor Type
+(21228, 4415, 7), -- Weapon Type
+(21228, 4416, 1), -- Races
 (21228, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Sepulcher Preacher
-(21229, 4099, 2), -- Berserker Spirit
-(21229, 4408, 12), -- HP Increase (4x)
-(21229, 4409, 1), -- MP Increase (1x)
-(21229, 4410, 11), -- Average P. Atk.
-(21229, 4411, 11), -- Average M. Atk.
-(21229, 4412, 11), -- Average P. Def.
-(21229, 4413, 11), -- Average M. Def.
-(21229, 4414, 3), -- Light Armor Type
-(21229, 4415, 3), -- One-handed Sword
-(21229, 4416, 9), -- Demons
+(21229, 4099, 2), -- NPC Berserk
+(21229, 4408, 12), -- HP Modifiers
+(21229, 4409, 1), -- MP Modifiers
+(21229, 4410, 11), -- P. Atk. Modifiers
+(21229, 4411, 11), -- M. Atk. Modifiers
+(21229, 4412, 11), -- P. Def. Modifiers
+(21229, 4413, 11), -- M. Def. Modifiers
+(21229, 4414, 3), -- Armor Type
+(21229, 4415, 3), -- Weapon Type
+(21229, 4416, 9), -- Races
 -- Sepulcher Guard
-(21230, 4032, 8), -- Power Strike
-(21230, 4408, 12), -- HP Increase (4x)
-(21230, 4409, 1), -- MP Increase (1x)
-(21230, 4410, 12), -- Slightly Strong P. Atk.
-(21230, 4411, 12), -- Slightly Strong M. Atk.
-(21230, 4412, 10), -- Slightly Weak P. Def.
-(21230, 4413, 10), -- Slightly Weak M. Def.
-(21230, 4414, 2), -- Standard Type
-(21230, 4415, 3), -- One-handed Sword
-(21230, 4416, 1), -- Undead
+(21230, 4032, 8), -- NPC Strike
+(21230, 4408, 12), -- HP Modifiers
+(21230, 4409, 1), -- MP Modifiers
+(21230, 4410, 12), -- P. Atk. Modifiers
+(21230, 4411, 12), -- M. Atk. Modifiers
+(21230, 4412, 10), -- P. Def. Modifiers
+(21230, 4413, 10), -- M. Def. Modifiers
+(21230, 4414, 2), -- Armor Type
+(21230, 4415, 3), -- Weapon Type
+(21230, 4416, 1), -- Races
 -- Sepulcher Preacher
-(21231, 4002, 8), -- HP Drain
-(21231, 4274, 1), -- Blunt Weapon Weak Point
-(21231, 4408, 12), -- HP Increase (4x)
-(21231, 4409, 1), -- MP Increase (1x)
-(21231, 4410, 11), -- Average P. Atk.
-(21231, 4411, 11), -- Average M. Atk.
-(21231, 4412, 11), -- Average P. Def.
-(21231, 4413, 11), -- Average M. Def.
-(21231, 4414, 3), -- Light Armor Type
-(21231, 4415, 3), -- One-handed Sword
-(21231, 4416, 1), -- Undead
+(21231, 4002, 8), -- NPC HP Drain
+(21231, 4274, 1), -- Blunt Attack Weak Point
+(21231, 4408, 12), -- HP Modifiers
+(21231, 4409, 1), -- MP Modifiers
+(21231, 4410, 11), -- P. Atk. Modifiers
+(21231, 4411, 11), -- M. Atk. Modifiers
+(21231, 4412, 11), -- P. Def. Modifiers
+(21231, 4413, 11), -- M. Def. Modifiers
+(21231, 4414, 3), -- Armor Type
+(21231, 4415, 3), -- Weapon Type
+(21231, 4416, 1), -- Races
 -- Barrow Guardian
-(21232, 4274, 1), -- Blunt Weapon Weak Point
+(21232, 4274, 1), -- Blunt Attack Weak Point
 (21232, 4317, 1), -- Increase Rage Might
-(21232, 4408, 12), -- HP Increase (4x)
-(21232, 4409, 1), -- MP Increase (1x)
-(21232, 4410, 11), -- Average P. Atk.
-(21232, 4411, 11), -- Average M. Atk.
-(21232, 4412, 11), -- Average P. Def.
-(21232, 4413, 11), -- Average M. Def.
-(21232, 4414, 2), -- Standard Type
-(21232, 4415, 3), -- One-handed Sword
-(21232, 4416, 1), -- Undead
+(21232, 4408, 12), -- HP Modifiers
+(21232, 4409, 1), -- MP Modifiers
+(21232, 4410, 11), -- P. Atk. Modifiers
+(21232, 4411, 11), -- M. Atk. Modifiers
+(21232, 4412, 11), -- P. Def. Modifiers
+(21232, 4413, 11), -- M. Def. Modifiers
+(21232, 4414, 2), -- Armor Type
+(21232, 4415, 3), -- Weapon Type
+(21232, 4416, 1), -- Races
 -- Barrow Seer
-(21233, 4099, 1), -- Berserker Spirit
-(21233, 4408, 12), -- HP Increase (4x)
-(21233, 4409, 1), -- MP Increase (1x)
-(21233, 4410, 11), -- Average P. Atk.
-(21233, 4411, 11), -- Average M. Atk.
-(21233, 4412, 11), -- Average P. Def.
-(21233, 4413, 11), -- Average M. Def.
-(21233, 4414, 3), -- Light Armor Type
-(21233, 4415, 5), -- Blunt Weapons
-(21233, 4416, 1), -- Undead
+(21233, 4099, 1), -- NPC Berserk
+(21233, 4408, 12), -- HP Modifiers
+(21233, 4409, 1), -- MP Modifiers
+(21233, 4410, 11), -- P. Atk. Modifiers
+(21233, 4411, 11), -- M. Atk. Modifiers
+(21233, 4412, 11), -- P. Def. Modifiers
+(21233, 4413, 11), -- M. Def. Modifiers
+(21233, 4414, 3), -- Armor Type
+(21233, 4415, 5), -- Weapon Type
+(21233, 4416, 1), -- Races
 -- Grave Guardian
-(21234, 4032, 2), -- Power Strike
-(21234, 4408, 12), -- HP Increase (4x)
-(21234, 4409, 1), -- MP Increase (1x)
-(21234, 4410, 11), -- Average P. Atk.
-(21234, 4411, 11), -- Average M. Atk.
-(21234, 4412, 11), -- Average P. Def.
-(21234, 4413, 11), -- Average M. Def.
-(21234, 4414, 2), -- Standard Type
-(21234, 4415, 3), -- One-handed Sword
-(21234, 4416, 13), -- Fairies
+(21234, 4032, 2), -- NPC Strike
+(21234, 4408, 12), -- HP Modifiers
+(21234, 4409, 1), -- MP Modifiers
+(21234, 4410, 11), -- P. Atk. Modifiers
+(21234, 4411, 11), -- M. Atk. Modifiers
+(21234, 4412, 11), -- P. Def. Modifiers
+(21234, 4413, 11), -- M. Def. Modifiers
+(21234, 4414, 2), -- Armor Type
+(21234, 4415, 3), -- Weapon Type
+(21234, 4416, 13), -- Races
 -- Grave Seer
-(21235, 4002, 2), -- HP Drain
-(21235, 4408, 12), -- HP Increase (4x)
-(21235, 4409, 1), -- MP Increase (1x)
-(21235, 4410, 11), -- Average P. Atk.
-(21235, 4411, 11), -- Average M. Atk.
-(21235, 4412, 11), -- Average P. Def.
-(21235, 4413, 11), -- Average M. Def.
-(21235, 4414, 3), -- Light Armor Type
-(21235, 4415, 3), -- One-handed Sword
-(21235, 4416, 9), -- Demons
+(21235, 4002, 2), -- NPC HP Drain
+(21235, 4408, 12), -- HP Modifiers
+(21235, 4409, 1), -- MP Modifiers
+(21235, 4410, 11), -- P. Atk. Modifiers
+(21235, 4411, 11), -- M. Atk. Modifiers
+(21235, 4412, 11), -- P. Def. Modifiers
+(21235, 4413, 11), -- M. Def. Modifiers
+(21235, 4414, 3), -- Armor Type
+(21235, 4415, 3), -- Weapon Type
+(21235, 4416, 9), -- Races
 -- Barrow Sentinel
-(21236, 4274, 1), -- Blunt Weapon Weak Point
+(21236, 4274, 1), -- Blunt Attack Weak Point
 (21236, 4317, 1), -- Increase Rage Might
-(21236, 4408, 12), -- HP Increase (4x)
-(21236, 4409, 1), -- MP Increase (1x)
-(21236, 4410, 11), -- Average P. Atk.
-(21236, 4411, 11), -- Average M. Atk.
-(21236, 4412, 11), -- Average P. Def.
-(21236, 4413, 11), -- Average M. Def.
-(21236, 4414, 2), -- Standard Type
-(21236, 4415, 3), -- One-handed Sword
-(21236, 4416, 1), -- Undead
+(21236, 4408, 12), -- HP Modifiers
+(21236, 4409, 1), -- MP Modifiers
+(21236, 4410, 11), -- P. Atk. Modifiers
+(21236, 4411, 11), -- M. Atk. Modifiers
+(21236, 4412, 11), -- P. Def. Modifiers
+(21236, 4413, 11), -- M. Def. Modifiers
+(21236, 4414, 2), -- Armor Type
+(21236, 4415, 3), -- Weapon Type
+(21236, 4416, 1), -- Races
 -- Barrow Monk
-(21237, 4099, 1), -- Berserker Spirit
-(21237, 4408, 12), -- HP Increase (4x)
-(21237, 4409, 1), -- MP Increase (1x)
-(21237, 4410, 11), -- Average P. Atk.
-(21237, 4411, 11), -- Average M. Atk.
-(21237, 4412, 11), -- Average P. Def.
-(21237, 4413, 11), -- Average M. Def.
-(21237, 4414, 3), -- Light Armor Type
-(21237, 4415, 5), -- Blunt Weapons
-(21237, 4416, 1), -- Undead
+(21237, 4099, 1), -- NPC Berserk
+(21237, 4408, 12), -- HP Modifiers
+(21237, 4409, 1), -- MP Modifiers
+(21237, 4410, 11), -- P. Atk. Modifiers
+(21237, 4411, 11), -- M. Atk. Modifiers
+(21237, 4412, 11), -- P. Def. Modifiers
+(21237, 4413, 11), -- M. Def. Modifiers
+(21237, 4414, 3), -- Armor Type
+(21237, 4415, 5), -- Weapon Type
+(21237, 4416, 1), -- Races
 -- Grave Sentinel
-(21238, 4032, 3), -- Power Strike
-(21238, 4408, 12), -- HP Increase (4x)
-(21238, 4409, 1), -- MP Increase (1x)
-(21238, 4410, 11), -- Average P. Atk.
-(21238, 4411, 11), -- Average M. Atk.
-(21238, 4412, 11), -- Average P. Def.
-(21238, 4413, 11), -- Average M. Def.
-(21238, 4414, 2), -- Standard Type
-(21238, 4415, 3), -- One-handed Sword
-(21238, 4416, 13), -- Fairies
+(21238, 4032, 3), -- NPC Strike
+(21238, 4408, 12), -- HP Modifiers
+(21238, 4409, 1), -- MP Modifiers
+(21238, 4410, 11), -- P. Atk. Modifiers
+(21238, 4411, 11), -- M. Atk. Modifiers
+(21238, 4412, 11), -- P. Def. Modifiers
+(21238, 4413, 11), -- M. Def. Modifiers
+(21238, 4414, 2), -- Armor Type
+(21238, 4415, 3), -- Weapon Type
+(21238, 4416, 13), -- Races
 -- Grave Monk
-(21239, 4002, 3), -- HP Drain
-(21239, 4408, 12), -- HP Increase (4x)
-(21239, 4409, 1), -- MP Increase (1x)
-(21239, 4410, 11), -- Average P. Atk.
-(21239, 4411, 11), -- Average M. Atk.
-(21239, 4412, 11), -- Average P. Def.
-(21239, 4413, 11), -- Average M. Def.
-(21239, 4414, 3), -- Light Armor Type
-(21239, 4415, 3), -- One-handed Sword
-(21239, 4416, 9), -- Demons
+(21239, 4002, 3), -- NPC HP Drain
+(21239, 4408, 12), -- HP Modifiers
+(21239, 4409, 1), -- MP Modifiers
+(21239, 4410, 11), -- P. Atk. Modifiers
+(21239, 4411, 11), -- M. Atk. Modifiers
+(21239, 4412, 11), -- P. Def. Modifiers
+(21239, 4413, 11), -- M. Def. Modifiers
+(21239, 4414, 3), -- Armor Type
+(21239, 4415, 3), -- Weapon Type
+(21239, 4416, 9), -- Races
 -- Barrow Overlord
-(21240, 4274, 1), -- Blunt Weapon Weak Point
+(21240, 4274, 1), -- Blunt Attack Weak Point
 (21240, 4317, 1), -- Increase Rage Might
-(21240, 4408, 12), -- HP Increase (4x)
-(21240, 4409, 1), -- MP Increase (1x)
-(21240, 4410, 12), -- Slightly Strong P. Atk.
-(21240, 4411, 12), -- Slightly Strong M. Atk.
-(21240, 4412, 10), -- Slightly Weak P. Def.
-(21240, 4413, 10), -- Slightly Weak M. Def.
-(21240, 4414, 2), -- Standard Type
-(21240, 4415, 3), -- One-handed Sword
-(21240, 4416, 1), -- Undead
+(21240, 4408, 12), -- HP Modifiers
+(21240, 4409, 1), -- MP Modifiers
+(21240, 4410, 12), -- P. Atk. Modifiers
+(21240, 4411, 12), -- M. Atk. Modifiers
+(21240, 4412, 10), -- P. Def. Modifiers
+(21240, 4413, 10), -- M. Def. Modifiers
+(21240, 4414, 2), -- Armor Type
+(21240, 4415, 3), -- Weapon Type
+(21240, 4416, 1), -- Races
 -- Barrow Priest
-(21241, 4099, 2), -- Berserker Spirit
-(21241, 4408, 12), -- HP Increase (4x)
-(21241, 4409, 1), -- MP Increase (1x)
-(21241, 4410, 11), -- Average P. Atk.
-(21241, 4411, 11), -- Average M. Atk.
-(21241, 4412, 11), -- Average P. Def.
-(21241, 4413, 11), -- Average M. Def.
-(21241, 4414, 3), -- Light Armor Type
-(21241, 4415, 3), -- One-handed Sword
-(21241, 4416, 9), -- Demons
+(21241, 4099, 2), -- NPC Berserk
+(21241, 4408, 12), -- HP Modifiers
+(21241, 4409, 1), -- MP Modifiers
+(21241, 4410, 11), -- P. Atk. Modifiers
+(21241, 4411, 11), -- M. Atk. Modifiers
+(21241, 4412, 11), -- P. Def. Modifiers
+(21241, 4413, 11), -- M. Def. Modifiers
+(21241, 4414, 3), -- Armor Type
+(21241, 4415, 3), -- Weapon Type
+(21241, 4416, 9), -- Races
 -- Grave Overlord
-(21242, 4032, 4), -- Power Strike
-(21242, 4408, 12), -- HP Increase (4x)
-(21242, 4409, 1), -- MP Increase (1x)
-(21242, 4410, 12), -- Slightly Strong P. Atk.
-(21242, 4411, 12), -- Slightly Strong M. Atk.
-(21242, 4412, 10), -- Slightly Weak P. Def.
-(21242, 4413, 10), -- Slightly Weak M. Def.
-(21242, 4414, 2), -- Standard Type
-(21242, 4415, 3), -- One-handed Sword
-(21242, 4416, 1), -- Undead
+(21242, 4032, 4), -- NPC Strike
+(21242, 4408, 12), -- HP Modifiers
+(21242, 4409, 1), -- MP Modifiers
+(21242, 4410, 12), -- P. Atk. Modifiers
+(21242, 4411, 12), -- M. Atk. Modifiers
+(21242, 4412, 10), -- P. Def. Modifiers
+(21242, 4413, 10), -- M. Def. Modifiers
+(21242, 4414, 2), -- Armor Type
+(21242, 4415, 3), -- Weapon Type
+(21242, 4416, 1), -- Races
 -- Grave Priest
-(21243, 4002, 4), -- HP Drain
-(21243, 4408, 12), -- HP Increase (4x)
-(21243, 4409, 1), -- MP Increase (1x)
-(21243, 4410, 11), -- Average P. Atk.
-(21243, 4411, 11), -- Average M. Atk.
-(21243, 4412, 11), -- Average P. Def.
-(21243, 4413, 11), -- Average M. Def.
-(21243, 4414, 3), -- Light Armor Type
-(21243, 4415, 3), -- One-handed Sword
-(21243, 4416, 9), -- Demons
+(21243, 4002, 4), -- NPC HP Drain
+(21243, 4408, 12), -- HP Modifiers
+(21243, 4409, 1), -- MP Modifiers
+(21243, 4410, 11), -- P. Atk. Modifiers
+(21243, 4411, 11), -- M. Atk. Modifiers
+(21243, 4412, 11), -- P. Def. Modifiers
+(21243, 4413, 11), -- M. Def. Modifiers
+(21243, 4414, 3), -- Armor Type
+(21243, 4415, 3), -- Weapon Type
+(21243, 4416, 9), -- Races
 -- Crypt Archon
-(21244, 4274, 1), -- Blunt Weapon Weak Point
+(21244, 4274, 1), -- Blunt Attack Weak Point
 (21244, 4317, 1), -- Increase Rage Might
-(21244, 4408, 12), -- HP Increase (4x)
-(21244, 4409, 1), -- MP Increase (1x)
-(21244, 4410, 12), -- Slightly Strong P. Atk.
-(21244, 4411, 12), -- Slightly Strong M. Atk.
-(21244, 4412, 10), -- Slightly Weak P. Def.
-(21244, 4413, 10), -- Slightly Weak M. Def.
-(21244, 4414, 2), -- Standard Type
-(21244, 4415, 3), -- One-handed Sword
-(21244, 4416, 1), -- Undead
+(21244, 4408, 12), -- HP Modifiers
+(21244, 4409, 1), -- MP Modifiers
+(21244, 4410, 12), -- P. Atk. Modifiers
+(21244, 4411, 12), -- M. Atk. Modifiers
+(21244, 4412, 10), -- P. Def. Modifiers
+(21244, 4413, 10), -- M. Def. Modifiers
+(21244, 4414, 2), -- Armor Type
+(21244, 4415, 3), -- Weapon Type
+(21244, 4416, 1), -- Races
 -- Crypt Inquisitor
-(21245, 4099, 2), -- Berserker Spirit
-(21245, 4408, 12), -- HP Increase (4x)
-(21245, 4409, 1), -- MP Increase (1x)
-(21245, 4410, 11), -- Average P. Atk.
-(21245, 4411, 11), -- Average M. Atk.
-(21245, 4412, 11), -- Average P. Def.
-(21245, 4413, 11), -- Average M. Def.
-(21245, 4414, 3), -- Light Armor Type
-(21245, 4415, 3), -- One-handed Sword
-(21245, 4416, 9), -- Demons
+(21245, 4099, 2), -- NPC Berserk
+(21245, 4408, 12), -- HP Modifiers
+(21245, 4409, 1), -- MP Modifiers
+(21245, 4410, 11), -- P. Atk. Modifiers
+(21245, 4411, 11), -- M. Atk. Modifiers
+(21245, 4412, 11), -- P. Def. Modifiers
+(21245, 4413, 11), -- M. Def. Modifiers
+(21245, 4414, 3), -- Armor Type
+(21245, 4415, 3), -- Weapon Type
+(21245, 4416, 9), -- Races
 -- Tomb Archon
-(21246, 4032, 5), -- Power Strike
-(21246, 4408, 12), -- HP Increase (4x)
-(21246, 4409, 1), -- MP Increase (1x)
-(21246, 4410, 12), -- Slightly Strong P. Atk.
-(21246, 4411, 12), -- Slightly Strong M. Atk.
-(21246, 4412, 10), -- Slightly Weak P. Def.
-(21246, 4413, 10), -- Slightly Weak M. Def.
-(21246, 4414, 2), -- Standard Type
-(21246, 4415, 3), -- One-handed Sword
-(21246, 4416, 1), -- Undead
+(21246, 4032, 5), -- NPC Strike
+(21246, 4408, 12), -- HP Modifiers
+(21246, 4409, 1), -- MP Modifiers
+(21246, 4410, 12), -- P. Atk. Modifiers
+(21246, 4411, 12), -- M. Atk. Modifiers
+(21246, 4412, 10), -- P. Def. Modifiers
+(21246, 4413, 10), -- M. Def. Modifiers
+(21246, 4414, 2), -- Armor Type
+(21246, 4415, 3), -- Weapon Type
+(21246, 4416, 1), -- Races
 -- Tomb Inquisitor
-(21247, 4002, 5), -- HP Drain
-(21247, 4408, 12), -- HP Increase (4x)
-(21247, 4409, 1), -- MP Increase (1x)
-(21247, 4410, 11), -- Average P. Atk.
-(21247, 4411, 11), -- Average M. Atk.
-(21247, 4412, 11), -- Average P. Def.
-(21247, 4413, 11), -- Average M. Def.
-(21247, 4414, 3), -- Light Armor Type
-(21247, 4415, 3), -- One-handed Sword
-(21247, 4416, 9), -- Demons
+(21247, 4002, 5), -- NPC HP Drain
+(21247, 4408, 12), -- HP Modifiers
+(21247, 4409, 1), -- MP Modifiers
+(21247, 4410, 11), -- P. Atk. Modifiers
+(21247, 4411, 11), -- M. Atk. Modifiers
+(21247, 4412, 11), -- P. Def. Modifiers
+(21247, 4413, 11), -- M. Def. Modifiers
+(21247, 4414, 3), -- Armor Type
+(21247, 4415, 3), -- Weapon Type
+(21247, 4416, 9), -- Races
 -- Crypt Guardian
-(21248, 4273, 3), -- Resist Daggers/Rapier Weapon
-(21248, 4274, 1), -- Blunt Weapon Weak Point
+(21248, 4273, 3), -- Resist Dagger
+(21248, 4274, 1), -- Blunt Attack Weak Point
 (21248, 4317, 1), -- Increase Rage Might
-(21248, 4408, 12), -- HP Increase (4x)
-(21248, 4409, 1), -- MP Increase (1x)
-(21248, 4410, 12), -- Slightly Strong P. Atk.
-(21248, 4411, 12), -- Slightly Strong M. Atk.
-(21248, 4412, 10), -- Slightly Weak P. Def.
-(21248, 4413, 10), -- Slightly Weak M. Def.
-(21248, 4414, 2), -- Standard Type
-(21248, 4415, 7), -- Daggers
-(21248, 4416, 1), -- Undead
+(21248, 4408, 12), -- HP Modifiers
+(21248, 4409, 1), -- MP Modifiers
+(21248, 4410, 12), -- P. Atk. Modifiers
+(21248, 4411, 12), -- M. Atk. Modifiers
+(21248, 4412, 10), -- P. Def. Modifiers
+(21248, 4413, 10), -- M. Def. Modifiers
+(21248, 4414, 2), -- Armor Type
+(21248, 4415, 7), -- Weapon Type
+(21248, 4416, 1), -- Races
 (21248, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Crypt Sage
-(21249, 4099, 2), -- Berserker Spirit
-(21249, 4408, 12), -- HP Increase (4x)
-(21249, 4409, 1), -- MP Increase (1x)
-(21249, 4410, 11), -- Average P. Atk.
-(21249, 4411, 11), -- Average M. Atk.
-(21249, 4412, 11), -- Average P. Def.
-(21249, 4413, 11), -- Average M. Def.
-(21249, 4414, 3), -- Light Armor Type
-(21249, 4415, 3), -- One-handed Sword
-(21249, 4416, 9), -- Demons
+(21249, 4099, 2), -- NPC Berserk
+(21249, 4408, 12), -- HP Modifiers
+(21249, 4409, 1), -- MP Modifiers
+(21249, 4410, 11), -- P. Atk. Modifiers
+(21249, 4411, 11), -- M. Atk. Modifiers
+(21249, 4412, 11), -- P. Def. Modifiers
+(21249, 4413, 11), -- M. Def. Modifiers
+(21249, 4414, 3), -- Armor Type
+(21249, 4415, 3), -- Weapon Type
+(21249, 4416, 9), -- Races
 -- Tomb Guardian
-(21250, 4032, 6), -- Power Strike
-(21250, 4408, 12), -- HP Increase (4x)
-(21250, 4409, 1), -- MP Increase (1x)
-(21250, 4410, 12), -- Slightly Strong P. Atk.
-(21250, 4411, 12), -- Slightly Strong M. Atk.
-(21250, 4412, 10), -- Slightly Weak P. Def.
-(21250, 4413, 10), -- Slightly Weak M. Def.
-(21250, 4414, 2), -- Standard Type
-(21250, 4415, 3), -- One-handed Sword
-(21250, 4416, 1), -- Undead
+(21250, 4032, 6), -- NPC Strike
+(21250, 4408, 12), -- HP Modifiers
+(21250, 4409, 1), -- MP Modifiers
+(21250, 4410, 12), -- P. Atk. Modifiers
+(21250, 4411, 12), -- M. Atk. Modifiers
+(21250, 4412, 10), -- P. Def. Modifiers
+(21250, 4413, 10), -- M. Def. Modifiers
+(21250, 4414, 2), -- Armor Type
+(21250, 4415, 3), -- Weapon Type
+(21250, 4416, 1), -- Races
 -- Tomb Sage
-(21251, 4002, 6), -- HP Drain
-(21251, 4274, 1), -- Blunt Weapon Weak Point
-(21251, 4408, 12), -- HP Increase (4x)
-(21251, 4409, 1), -- MP Increase (1x)
-(21251, 4410, 11), -- Average P. Atk.
-(21251, 4411, 11), -- Average M. Atk.
-(21251, 4412, 13), -- Slightly Strong P. Def.
-(21251, 4413, 11), -- Average M. Def.
-(21251, 4414, 3), -- Light Armor Type
-(21251, 4415, 3), -- One-handed Sword
-(21251, 4416, 1), -- Undead
+(21251, 4002, 6), -- NPC HP Drain
+(21251, 4274, 1), -- Blunt Attack Weak Point
+(21251, 4408, 12), -- HP Modifiers
+(21251, 4409, 1), -- MP Modifiers
+(21251, 4410, 11), -- P. Atk. Modifiers
+(21251, 4411, 11), -- M. Atk. Modifiers
+(21251, 4412, 13), -- P. Def. Modifiers
+(21251, 4413, 11), -- M. Def. Modifiers
+(21251, 4414, 3), -- Armor Type
+(21251, 4415, 3), -- Weapon Type
+(21251, 4416, 1), -- Races
 -- Crypt Guard 
-(21252, 4273, 3), -- Resist Daggers/Rapier Weapon
-(21252, 4274, 1), -- Blunt Weapon Weak Point
+(21252, 4273, 3), -- Resist Dagger
+(21252, 4274, 1), -- Blunt Attack Weak Point
 (21252, 4317, 1), -- Increase Rage Might
-(21252, 4408, 12), -- HP Increase (4x)
-(21252, 4409, 1), -- MP Increase (1x)
-(21252, 4410, 12), -- Slightly Strong P. Atk.
-(21252, 4411, 12), -- Slightly Strong M. Atk.
-(21252, 4412, 10), -- Slightly Weak P. Def.
-(21252, 4413, 10), -- Slightly Weak M. Def.
-(21252, 4414, 2), -- Standard Type
-(21252, 4415, 7), -- Daggers
-(21252, 4416, 1), -- Undead
+(21252, 4408, 12), -- HP Modifiers
+(21252, 4409, 1), -- MP Modifiers
+(21252, 4410, 12), -- P. Atk. Modifiers
+(21252, 4411, 12), -- M. Atk. Modifiers
+(21252, 4412, 10), -- P. Def. Modifiers
+(21252, 4413, 10), -- M. Def. Modifiers
+(21252, 4414, 2), -- Armor Type
+(21252, 4415, 7), -- Weapon Type
+(21252, 4416, 1), -- Races
 (21252, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Crypt Preacher
-(21253, 4099, 2), -- Berserker Spirit
-(21253, 4408, 12), -- HP Increase (4x)
-(21253, 4409, 1), -- MP Increase (1x)
-(21253, 4410, 11), -- Average P. Atk.
-(21253, 4411, 11), -- Average M. Atk.
-(21253, 4412, 11), -- Average P. Def.
-(21253, 4413, 11), -- Average M. Def.
-(21253, 4414, 3), -- Light Armor Type
-(21253, 4415, 3), -- One-handed Sword
-(21253, 4416, 9), -- Demons
+(21253, 4099, 2), -- NPC Berserk
+(21253, 4408, 12), -- HP Modifiers
+(21253, 4409, 1), -- MP Modifiers
+(21253, 4410, 11), -- P. Atk. Modifiers
+(21253, 4411, 11), -- M. Atk. Modifiers
+(21253, 4412, 11), -- P. Def. Modifiers
+(21253, 4413, 11), -- M. Def. Modifiers
+(21253, 4414, 3), -- Armor Type
+(21253, 4415, 3), -- Weapon Type
+(21253, 4416, 9), -- Races
 -- Tomb Guard
-(21254, 4032, 8), -- Power Strike
-(21254, 4408, 12), -- HP Increase (4x)
-(21254, 4409, 1), -- MP Increase (1x)
-(21254, 4410, 12), -- Slightly Strong P. Atk.
-(21254, 4411, 12), -- Slightly Strong M. Atk.
-(21254, 4412, 10), -- Slightly Weak P. Def.
-(21254, 4413, 10), -- Slightly Weak M. Def.
-(21254, 4414, 2), -- Standard Type
-(21254, 4415, 3), -- One-handed Sword
-(21254, 4416, 1), -- Undead
+(21254, 4032, 8), -- NPC Strike
+(21254, 4408, 12), -- HP Modifiers
+(21254, 4409, 1), -- MP Modifiers
+(21254, 4410, 12), -- P. Atk. Modifiers
+(21254, 4411, 12), -- M. Atk. Modifiers
+(21254, 4412, 10), -- P. Def. Modifiers
+(21254, 4413, 10), -- M. Def. Modifiers
+(21254, 4414, 2), -- Armor Type
+(21254, 4415, 3), -- Weapon Type
+(21254, 4416, 1), -- Races
 -- Tomb Preacher
-(21255, 4002, 8), -- HP Drain
-(21255, 4274, 1), -- Blunt Weapon Weak Point
-(21255, 4408, 12), -- HP Increase (4x)
-(21255, 4409, 1), -- MP Increase (1x)
-(21255, 4410, 11), -- Average P. Atk.
-(21255, 4411, 11), -- Average M. Atk.
-(21255, 4412, 13), -- Slightly Strong P. Def.
-(21255, 4413, 11), -- Average M. Def.
-(21255, 4414, 3), -- Light Armor Type
-(21255, 4415, 3), -- One-handed Sword
-(21255, 4416, 1), -- Undead
+(21255, 4002, 8), -- NPC HP Drain
+(21255, 4274, 1), -- Blunt Attack Weak Point
+(21255, 4408, 12), -- HP Modifiers
+(21255, 4409, 1), -- MP Modifiers
+(21255, 4410, 11), -- P. Atk. Modifiers
+(21255, 4411, 11), -- M. Atk. Modifiers
+(21255, 4412, 13), -- P. Def. Modifiers
+(21255, 4413, 11), -- M. Def. Modifiers
+(21255, 4414, 3), -- Armor Type
+(21255, 4415, 3), -- Weapon Type
+(21255, 4416, 1), -- Races
 -- Underground Werewolf
-(21256, 4408, 1), -- HP Increase (1x)
-(21256, 4409, 1), -- MP Increase (1x)
-(21256, 4410, 11), -- Average P. Atk.
-(21256, 4411, 11), -- Average M. Atk.
-(21256, 4412, 11), -- Average P. Def.
-(21256, 4413, 11), -- Average M. Def.
-(21256, 4414, 3), -- Light Armor Type
-(21256, 4415, 5), -- Blunt Weapons
-(21256, 4416, 6), -- Humanoids
+(21256, 4408, 1), -- HP Modifiers
+(21256, 4409, 1), -- MP Modifiers
+(21256, 4410, 11), -- P. Atk. Modifiers
+(21256, 4411, 11), -- M. Atk. Modifiers
+(21256, 4412, 11), -- P. Def. Modifiers
+(21256, 4413, 11), -- M. Def. Modifiers
+(21256, 4414, 3), -- Armor Type
+(21256, 4415, 5), -- Weapon Type
+(21256, 4416, 6), -- Races
 -- Evil Eye Seer
-(21257, 4152, 1), -- Drain Health
-(21257, 4160, 1), -- Aura Burn
-(21257, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(21257, 4408, 1), -- HP Increase (1x)
-(21257, 4409, 1), -- MP Increase (1x)
-(21257, 4410, 11), -- Average P. Atk.
-(21257, 4411, 11), -- Average M. Atk.
-(21257, 4412, 11), -- Average P. Def.
-(21257, 4413, 11), -- Average M. Def.
-(21257, 4414, 3), -- Light Armor Type
-(21257, 4415, 5), -- Blunt Weapons
-(21257, 4416, 2), -- Magic Creatures
+(21257, 4152, 1), -- NPC HP Drain - Magic
+(21257, 4160, 1), -- NPC Aura Burn - Magic
+(21257, 4276, 1), -- Archery Attack Weak Point
+(21257, 4408, 1), -- HP Modifiers
+(21257, 4409, 1), -- MP Modifiers
+(21257, 4410, 11), -- P. Atk. Modifiers
+(21257, 4411, 11), -- M. Atk. Modifiers
+(21257, 4412, 11), -- P. Def. Modifiers
+(21257, 4413, 11), -- M. Def. Modifiers
+(21257, 4414, 3), -- Armor Type
+(21257, 4415, 5), -- Weapon Type
+(21257, 4416, 2), -- Races
 -- Fallen Orc Shaman
 (21258, 4095, 1), -- Damage Shield
-(21258, 4408, 1), -- HP Increase (1x)
-(21258, 4409, 1), -- MP Increase (1x)
-(21258, 4410, 11), -- Average P. Atk.
-(21258, 4411, 11), -- Average M. Atk.
-(21258, 4412, 11), -- Average P. Def.
-(21258, 4413, 11), -- Average M. Def.
-(21258, 4414, 3), -- Light Armor Type
-(21258, 4415, 5), -- Blunt Weapons
-(21258, 4416, 6), -- Humanoids
+(21258, 4408, 1), -- HP Modifiers
+(21258, 4409, 1), -- MP Modifiers
+(21258, 4410, 11), -- P. Atk. Modifiers
+(21258, 4411, 11), -- M. Atk. Modifiers
+(21258, 4412, 11), -- P. Def. Modifiers
+(21258, 4413, 11), -- M. Def. Modifiers
+(21258, 4414, 3), -- Armor Type
+(21258, 4415, 5), -- Weapon Type
+(21258, 4416, 6), -- Races
 -- Fallen Orc Shaman
-(21259, 4073, 5), -- Stun
-(21259, 4085, 1), -- Critical Damage
+(21259, 4073, 5), -- Shock
+(21259, 4085, 1), -- Critical Power
 (21259, 4086, 1), -- Critical Chance
-(21259, 4408, 1), -- HP Increase (1x)
-(21259, 4409, 1), -- MP Increase (1x)
-(21259, 4410, 11), -- Average P. Atk.
-(21259, 4411, 11), -- Average M. Atk.
-(21259, 4412, 11), -- Average P. Def.
-(21259, 4413, 11), -- Average M. Def.
-(21259, 4414, 3), -- Light Armor Type
-(21259, 4415, 3), -- One-handed Sword
-(21259, 4416, 3), -- Beasts
+(21259, 4408, 1), -- HP Modifiers
+(21259, 4409, 1), -- MP Modifiers
+(21259, 4410, 11), -- P. Atk. Modifiers
+(21259, 4411, 11), -- M. Atk. Modifiers
+(21259, 4412, 11), -- P. Def. Modifiers
+(21259, 4413, 11), -- M. Def. Modifiers
+(21259, 4414, 3), -- Armor Type
+(21259, 4415, 3), -- Weapon Type
+(21259, 4416, 3), -- Races
 -- Betrayer Orc Hero
-(21260, 4073, 5), -- Stun
-(21260, 4085, 1), -- Critical Damage
+(21260, 4073, 5), -- Shock
+(21260, 4085, 1), -- Critical Power
 (21260, 4086, 1), -- Critical Chance
-(21260, 4408, 1), -- HP Increase (1x)
-(21260, 4409, 1), -- MP Increase (1x)
-(21260, 4410, 11), -- Average P. Atk.
-(21260, 4411, 11), -- Average M. Atk.
-(21260, 4412, 11), -- Average P. Def.
-(21260, 4413, 11), -- Average M. Def.
-(21260, 4414, 2), -- Standard Type
-(21260, 4415, 3), -- One-handed Sword
-(21260, 4416, 6), -- Humanoids
+(21260, 4408, 1), -- HP Modifiers
+(21260, 4409, 1), -- MP Modifiers
+(21260, 4410, 11), -- P. Atk. Modifiers
+(21260, 4411, 11), -- M. Atk. Modifiers
+(21260, 4412, 11), -- P. Def. Modifiers
+(21260, 4413, 11), -- M. Def. Modifiers
+(21260, 4414, 2), -- Armor Type
+(21260, 4415, 3), -- Weapon Type
+(21260, 4416, 6), -- Races
 -- Ol Mahum Transcender
-(21261, 4032, 5), -- Power Strike
-(21261, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(21261, 4408, 1), -- HP Increase (1x)
-(21261, 4409, 1), -- MP Increase (1x)
-(21261, 4410, 11), -- Average P. Atk.
-(21261, 4411, 11), -- Average M. Atk.
-(21261, 4412, 11), -- Average P. Def.
-(21261, 4413, 11), -- Average M. Def.
-(21261, 4414, 2), -- Standard Type
-(21261, 4415, 3), -- One-handed Sword
-(21261, 4416, 6), -- Humanoids
+(21261, 4032, 5), -- NPC Strike
+(21261, 4276, 1), -- Archery Attack Weak Point
+(21261, 4408, 1), -- HP Modifiers
+(21261, 4409, 1), -- MP Modifiers
+(21261, 4410, 11), -- P. Atk. Modifiers
+(21261, 4411, 11), -- M. Atk. Modifiers
+(21261, 4412, 11), -- P. Def. Modifiers
+(21261, 4413, 11), -- M. Def. Modifiers
+(21261, 4414, 2), -- Armor Type
+(21261, 4415, 3), -- Weapon Type
+(21261, 4416, 6), -- Races
 (21261, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Ol Mahum Transcender
-(21262, 4032, 5), -- Power Strike
-(21262, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(21262, 4408, 1), -- HP Increase (1x)
-(21262, 4409, 1), -- MP Increase (1x)
-(21262, 4410, 11), -- Average P. Atk.
-(21262, 4411, 11), -- Average M. Atk.
-(21262, 4412, 11), -- Average P. Def.
-(21262, 4413, 11), -- Average M. Def.
-(21262, 4414, 2), -- Standard Type
-(21262, 4415, 3), -- One-handed Sword
-(21262, 4416, 6), -- Humanoids
+(21262, 4032, 5), -- NPC Strike
+(21262, 4276, 1), -- Archery Attack Weak Point
+(21262, 4408, 1), -- HP Modifiers
+(21262, 4409, 1), -- MP Modifiers
+(21262, 4410, 11), -- P. Atk. Modifiers
+(21262, 4411, 11), -- M. Atk. Modifiers
+(21262, 4412, 11), -- P. Def. Modifiers
+(21262, 4413, 11), -- M. Def. Modifiers
+(21262, 4414, 2), -- Armor Type
+(21262, 4415, 3), -- Weapon Type
+(21262, 4416, 6), -- Races
 (21262, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Ol Mahum Transcender
-(21263, 4032, 5), -- Power Strike
-(21263, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(21263, 4408, 1), -- HP Increase (1x)
-(21263, 4409, 1), -- MP Increase (1x)
-(21263, 4410, 11), -- Average P. Atk.
-(21263, 4411, 11), -- Average M. Atk.
-(21263, 4412, 11), -- Average P. Def.
-(21263, 4413, 11), -- Average M. Def.
-(21263, 4414, 2), -- Standard Type
-(21263, 4415, 3), -- One-handed Sword
-(21263, 4416, 6), -- Humanoids
+(21263, 4032, 5), -- NPC Strike
+(21263, 4276, 1), -- Archery Attack Weak Point
+(21263, 4408, 1), -- HP Modifiers
+(21263, 4409, 1), -- MP Modifiers
+(21263, 4410, 11), -- P. Atk. Modifiers
+(21263, 4411, 11), -- M. Atk. Modifiers
+(21263, 4412, 11), -- P. Def. Modifiers
+(21263, 4413, 11), -- M. Def. Modifiers
+(21263, 4414, 2), -- Armor Type
+(21263, 4415, 3), -- Weapon Type
+(21263, 4416, 6), -- Races
 (21263, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Ol Mahum Transcender
-(21264, 4032, 6), -- Power Strike
-(21264, 4085, 1), -- Critical Damage
+(21264, 4032, 6), -- NPC Strike
+(21264, 4085, 1), -- Critical Power
 (21264, 4086, 1), -- Critical Chance
-(21264, 4408, 1), -- HP Increase (1x)
-(21264, 4409, 1), -- MP Increase (1x)
-(21264, 4410, 11), -- Average P. Atk.
-(21264, 4411, 11), -- Average M. Atk.
-(21264, 4412, 11), -- Average P. Def.
-(21264, 4413, 11), -- Average M. Def.
-(21264, 4414, 3), -- Light Armor Type
-(21264, 4415, 3), -- One-handed Sword
-(21264, 4416, 8), -- Angels
+(21264, 4408, 1), -- HP Modifiers
+(21264, 4409, 1), -- MP Modifiers
+(21264, 4410, 11), -- P. Atk. Modifiers
+(21264, 4411, 11), -- M. Atk. Modifiers
+(21264, 4412, 11), -- P. Def. Modifiers
+(21264, 4413, 11), -- M. Def. Modifiers
+(21264, 4414, 3), -- Armor Type
+(21264, 4415, 3), -- Weapon Type
+(21264, 4416, 8), -- Races
 (21264, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Cave Ant Larva
-(21265, 4408, 1), -- HP Increase (1x)
-(21265, 4409, 1), -- MP Increase (1x)
-(21265, 4410, 11), -- Average P. Atk.
-(21265, 4411, 11), -- Average M. Atk.
-(21265, 4412, 11), -- Average P. Def.
-(21265, 4413, 11), -- Average M. Def.
-(21265, 4414, 2), -- Standard Type
-(21265, 4415, 3), -- One-handed Sword
-(21265, 4416, 12), -- Bugs
+(21265, 4408, 1), -- HP Modifiers
+(21265, 4409, 1), -- MP Modifiers
+(21265, 4410, 11), -- P. Atk. Modifiers
+(21265, 4411, 11), -- M. Atk. Modifiers
+(21265, 4412, 11), -- P. Def. Modifiers
+(21265, 4413, 11), -- M. Def. Modifiers
+(21265, 4414, 2), -- Armor Type
+(21265, 4415, 3), -- Weapon Type
+(21265, 4416, 12), -- Races
 -- Cave Ant Larva
-(21266, 4408, 1), -- HP Increase (1x)
-(21266, 4409, 1), -- MP Increase (1x)
-(21266, 4410, 11), -- Average P. Atk.
-(21266, 4411, 11), -- Average M. Atk.
-(21266, 4412, 11), -- Average P. Def.
-(21266, 4413, 11), -- Average M. Def.
-(21266, 4414, 2), -- Standard Type
-(21266, 4415, 3), -- One-handed Sword
-(21266, 4416, 12), -- Bugs
+(21266, 4408, 1), -- HP Modifiers
+(21266, 4409, 1), -- MP Modifiers
+(21266, 4410, 11), -- P. Atk. Modifiers
+(21266, 4411, 11), -- M. Atk. Modifiers
+(21266, 4412, 11), -- P. Def. Modifiers
+(21266, 4413, 11), -- M. Def. Modifiers
+(21266, 4414, 2), -- Armor Type
+(21266, 4415, 3), -- Weapon Type
+(21266, 4416, 12), -- Races
 -- Cave Ant Larva
-(21267, 4408, 1), -- HP Increase (1x)
-(21267, 4409, 1), -- MP Increase (1x)
-(21267, 4410, 11), -- Average P. Atk.
-(21267, 4411, 11), -- Average M. Atk.
-(21267, 4412, 11), -- Average P. Def.
-(21267, 4413, 11), -- Average M. Def.
-(21267, 4414, 2), -- Standard Type
-(21267, 4415, 3), -- One-handed Sword
-(21267, 4416, 12), -- Bugs
+(21267, 4408, 1), -- HP Modifiers
+(21267, 4409, 1), -- MP Modifiers
+(21267, 4410, 11), -- P. Atk. Modifiers
+(21267, 4411, 11), -- M. Atk. Modifiers
+(21267, 4412, 11), -- P. Def. Modifiers
+(21267, 4413, 11), -- M. Def. Modifiers
+(21267, 4414, 2), -- Armor Type
+(21267, 4415, 3), -- Weapon Type
+(21267, 4416, 12), -- Races
 -- Cave Ant Larva
-(21268, 4151, 3), -- Wind Strike
-(21268, 4160, 3), -- Aura Burn
-(21268, 4408, 10), -- HP Increase (2x)
-(21268, 4409, 1), -- MP Increase (1x)
-(21268, 4410, 10), -- Slightly Weak P. Atk.
-(21268, 4411, 10), -- Slightly Weak M. Atk.
-(21268, 4412, 12), -- Slightly Strong P. Def.
-(21268, 4413, 12), -- Slightly Strong M. Def.
-(21268, 4414, 2), -- Standard Type
-(21268, 4415, 3), -- One-handed Sword
-(21268, 4416, 12), -- Bugs
+(21268, 4151, 3), -- NPC Windstrike - Magic
+(21268, 4160, 3), -- NPC Aura Burn - Magic
+(21268, 4408, 10), -- HP Modifiers
+(21268, 4409, 1), -- MP Modifiers
+(21268, 4410, 10), -- P. Atk. Modifiers
+(21268, 4411, 10), -- M. Atk. Modifiers
+(21268, 4412, 12), -- P. Def. Modifiers
+(21268, 4413, 12), -- M. Def. Modifiers
+(21268, 4414, 2), -- Armor Type
+(21268, 4415, 3), -- Weapon Type
+(21268, 4416, 12), -- Races
 -- Cave Ant
 (21269, 4317, 1), -- Increase Rage Might
-(21269, 4408, 1), -- HP Increase (1x)
-(21269, 4409, 1), -- MP Increase (1x)
-(21269, 4410, 11), -- Average P. Atk.
-(21269, 4411, 11), -- Average M. Atk.
-(21269, 4412, 11), -- Average P. Def.
-(21269, 4413, 11), -- Average M. Def.
-(21269, 4414, 3), -- Light Armor Type
-(21269, 4415, 3), -- One-handed Sword
-(21269, 4416, 12), -- Bugs
+(21269, 4408, 1), -- HP Modifiers
+(21269, 4409, 1), -- MP Modifiers
+(21269, 4410, 11), -- P. Atk. Modifiers
+(21269, 4411, 11), -- M. Atk. Modifiers
+(21269, 4412, 11), -- P. Def. Modifiers
+(21269, 4413, 11), -- M. Def. Modifiers
+(21269, 4414, 3), -- Armor Type
+(21269, 4415, 3), -- Weapon Type
+(21269, 4416, 12), -- Races
 -- Cave Ant Soldier
-(21270, 4032, 3), -- Power Strike
-(21270, 4408, 1), -- HP Increase (1x)
-(21270, 4409, 1), -- MP Increase (1x)
-(21270, 4410, 11), -- Average P. Atk.
-(21270, 4411, 11), -- Average M. Atk.
-(21270, 4412, 11), -- Average P. Def.
-(21270, 4413, 11), -- Average M. Def.
-(21270, 4414, 2), -- Standard Type
-(21270, 4415, 3), -- One-handed Sword
-(21270, 4416, 12), -- Bugs
+(21270, 4032, 3), -- NPC Strike
+(21270, 4408, 1), -- HP Modifiers
+(21270, 4409, 1), -- MP Modifiers
+(21270, 4410, 11), -- P. Atk. Modifiers
+(21270, 4411, 11), -- M. Atk. Modifiers
+(21270, 4412, 11), -- P. Def. Modifiers
+(21270, 4413, 11), -- M. Def. Modifiers
+(21270, 4414, 2), -- Armor Type
+(21270, 4415, 3), -- Weapon Type
+(21270, 4416, 12), -- Races
 -- Cave Ant
 (21271, 4317, 1), -- Increase Rage Might
-(21271, 4408, 1), -- HP Increase (1x)
-(21271, 4409, 1), -- MP Increase (1x)
-(21271, 4410, 11), -- Average P. Atk.
-(21271, 4411, 11), -- Average M. Atk.
-(21271, 4412, 11), -- Average P. Def.
-(21271, 4413, 11), -- Average M. Def.
-(21271, 4414, 3), -- Light Armor Type
-(21271, 4415, 3), -- One-handed Sword
-(21271, 4416, 12), -- Bugs
+(21271, 4408, 1), -- HP Modifiers
+(21271, 4409, 1), -- MP Modifiers
+(21271, 4410, 11), -- P. Atk. Modifiers
+(21271, 4411, 11), -- M. Atk. Modifiers
+(21271, 4412, 11), -- P. Def. Modifiers
+(21271, 4413, 11), -- M. Def. Modifiers
+(21271, 4414, 3), -- Armor Type
+(21271, 4415, 3), -- Weapon Type
+(21271, 4416, 12), -- Races
 -- Cave Ant Soldier
-(21272, 4032, 3), -- Power Strike
-(21272, 4408, 1), -- HP Increase (1x)
-(21272, 4409, 1), -- MP Increase (1x)
-(21272, 4410, 11), -- Average P. Atk.
-(21272, 4411, 11), -- Average M. Atk.
-(21272, 4412, 11), -- Average P. Def.
-(21272, 4413, 11), -- Average M. Def.
-(21272, 4414, 2), -- Standard Type
-(21272, 4415, 3), -- One-handed Sword
-(21272, 4416, 12), -- Bugs
+(21272, 4032, 3), -- NPC Strike
+(21272, 4408, 1), -- HP Modifiers
+(21272, 4409, 1), -- MP Modifiers
+(21272, 4410, 11), -- P. Atk. Modifiers
+(21272, 4411, 11), -- M. Atk. Modifiers
+(21272, 4412, 11), -- P. Def. Modifiers
+(21272, 4413, 11), -- M. Def. Modifiers
+(21272, 4414, 2), -- Armor Type
+(21272, 4415, 3), -- Weapon Type
+(21272, 4416, 12), -- Races
 -- Cave Noble Ant
-(21273, 4032, 3), -- Power Strike
-(21273, 4072, 3), -- Stun
-(21273, 4085, 1), -- Critical Damage
+(21273, 4032, 3), -- NPC Strike
+(21273, 4072, 3), -- Shock
+(21273, 4085, 1), -- Critical Power
 (21273, 4086, 1), -- Critical Chance
-(21273, 4091, 1), -- Spirit Ogre
-(21273, 4408, 10), -- HP Increase (2x)
-(21273, 4409, 1), -- MP Increase (1x)
-(21273, 4410, 12), -- Slightly Strong P. Atk.
-(21273, 4411, 12), -- Slightly Strong M. Atk.
-(21273, 4412, 10), -- Slightly Weak P. Def.
-(21273, 4413, 10), -- Slightly Weak M. Def.
-(21273, 4414, 2), -- Standard Type
-(21273, 4415, 3), -- One-handed Sword
-(21273, 4416, 12), -- Bugs
+(21273, 4091, 1), -- NPC Ogre Spirit Totem
+(21273, 4408, 10), -- HP Modifiers
+(21273, 4409, 1), -- MP Modifiers
+(21273, 4410, 12), -- P. Atk. Modifiers
+(21273, 4411, 12), -- M. Atk. Modifiers
+(21273, 4412, 10), -- P. Def. Modifiers
+(21273, 4413, 10), -- M. Def. Modifiers
+(21273, 4414, 2), -- Armor Type
+(21273, 4415, 3), -- Weapon Type
+(21273, 4416, 12), -- Races
 -- Kookaburra
-(21274, 4067, 6), -- Blow
-(21274, 4408, 1), -- HP Increase (1x)
-(21274, 4409, 1), -- MP Increase (1x)
-(21274, 4410, 11), -- Average P. Atk.
-(21274, 4411, 11), -- Average M. Atk.
-(21274, 4412, 11), -- Average P. Def.
-(21274, 4413, 11), -- Average M. Def.
-(21274, 4414, 3), -- Light Armor Type
-(21274, 4415, 3), -- One-handed Sword
-(21274, 4416, 3), -- Beasts
+(21274, 4067, 6), -- NPC Mortal Blow
+(21274, 4408, 1), -- HP Modifiers
+(21274, 4409, 1), -- MP Modifiers
+(21274, 4410, 11), -- P. Atk. Modifiers
+(21274, 4411, 11), -- M. Atk. Modifiers
+(21274, 4412, 11), -- P. Def. Modifiers
+(21274, 4413, 11), -- M. Def. Modifiers
+(21274, 4414, 3), -- Armor Type
+(21274, 4415, 3), -- Weapon Type
+(21274, 4416, 3), -- Races
 (21274, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Kookaburra
-(21275, 4032, 6), -- Power Strike
-(21275, 4408, 1), -- HP Increase (1x)
-(21275, 4409, 1), -- MP Increase (1x)
-(21275, 4410, 13), -- Slightly Strong P. Atk.
-(21275, 4411, 13), -- Slightly Strong M. Atk.
-(21275, 4412, 9), -- Slightly Weak P. Def.
-(21275, 4413, 9), -- Slightly Weak M. Def.
-(21275, 4414, 3), -- Light Armor Type
-(21275, 4415, 3), -- One-handed Sword
-(21275, 4416, 3), -- Beasts
+(21275, 4032, 6), -- NPC Strike
+(21275, 4408, 1), -- HP Modifiers
+(21275, 4409, 1), -- MP Modifiers
+(21275, 4410, 13), -- P. Atk. Modifiers
+(21275, 4411, 13), -- M. Atk. Modifiers
+(21275, 4412, 9), -- P. Def. Modifiers
+(21275, 4413, 9), -- M. Def. Modifiers
+(21275, 4414, 3), -- Armor Type
+(21275, 4415, 3), -- Weapon Type
+(21275, 4416, 3), -- Races
 (21275, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Kookaburra
-(21276, 4244, 6), -- Wild Sweep
-(21276, 4408, 1), -- HP Increase (1x)
-(21276, 4409, 1), -- MP Increase (1x)
-(21276, 4410, 10), -- Slightly Weak P. Atk.
-(21276, 4411, 10), -- Slightly Weak M. Atk.
-(21276, 4412, 12), -- Slightly Strong P. Def.
-(21276, 4413, 12), -- Slightly Strong M. Def.
-(21276, 4414, 3), -- Light Armor Type
-(21276, 4415, 3), -- One-handed Sword
-(21276, 4416, 3), -- Beasts
+(21276, 4244, 6), -- NPC Wild Sweep
+(21276, 4408, 1), -- HP Modifiers
+(21276, 4409, 1), -- MP Modifiers
+(21276, 4410, 10), -- P. Atk. Modifiers
+(21276, 4411, 10), -- M. Atk. Modifiers
+(21276, 4412, 12), -- P. Def. Modifiers
+(21276, 4413, 12), -- M. Def. Modifiers
+(21276, 4414, 3), -- Armor Type
+(21276, 4415, 3), -- Weapon Type
+(21276, 4416, 3), -- Races
 (21276, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Antelope
-(21278, 4032, 6), -- Power Strike
-(21278, 4408, 1), -- HP Increase (1x)
-(21278, 4409, 1), -- MP Increase (1x)
-(21278, 4410, 11), -- Average P. Atk.
-(21278, 4411, 11), -- Average M. Atk.
-(21278, 4412, 11), -- Average P. Def.
-(21278, 4413, 11), -- Average M. Def.
-(21278, 4414, 2), -- Standard Type
-(21278, 4415, 3), -- One-handed Sword
-(21278, 4416, 4), -- Animals
+(21278, 4032, 6), -- NPC Strike
+(21278, 4408, 1), -- HP Modifiers
+(21278, 4409, 1), -- MP Modifiers
+(21278, 4410, 11), -- P. Atk. Modifiers
+(21278, 4411, 11), -- M. Atk. Modifiers
+(21278, 4412, 11), -- P. Def. Modifiers
+(21278, 4413, 11), -- M. Def. Modifiers
+(21278, 4414, 2), -- Armor Type
+(21278, 4415, 3), -- Weapon Type
+(21278, 4416, 4), -- Races
 (21278, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Antelope
-(21279, 4067, 6), -- Blow
-(21279, 4408, 1), -- HP Increase (1x)
-(21279, 4409, 1), -- MP Increase (1x)
-(21279, 4410, 10), -- Slightly Weak P. Atk.
-(21279, 4411, 10), -- Slightly Weak M. Atk.
-(21279, 4412, 12), -- Slightly Strong P. Def.
-(21279, 4413, 12), -- Slightly Strong M. Def.
-(21279, 4414, 2), -- Standard Type
-(21279, 4415, 3), -- One-handed Sword
-(21279, 4416, 4), -- Animals
+(21279, 4067, 6), -- NPC Mortal Blow
+(21279, 4408, 1), -- HP Modifiers
+(21279, 4409, 1), -- MP Modifiers
+(21279, 4410, 10), -- P. Atk. Modifiers
+(21279, 4411, 10), -- M. Atk. Modifiers
+(21279, 4412, 12), -- P. Def. Modifiers
+(21279, 4413, 12), -- M. Def. Modifiers
+(21279, 4414, 2), -- Armor Type
+(21279, 4415, 3), -- Weapon Type
+(21279, 4416, 4), -- Races
 (21279, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Antelope
-(21280, 4232, 6), -- Whirlwind
-(21280, 4408, 1), -- HP Increase (1x)
-(21280, 4409, 1), -- MP Increase (1x)
-(21280, 4410, 13), -- Slightly Strong P. Atk.
-(21280, 4411, 13), -- Slightly Strong M. Atk.
-(21280, 4412, 9), -- Slightly Weak P. Def.
-(21280, 4413, 9), -- Slightly Weak M. Def.
-(21280, 4414, 2), -- Standard Type
-(21280, 4415, 3), -- One-handed Sword
-(21280, 4416, 4), -- Animals
+(21280, 4232, 6), -- NPC AE Strike
+(21280, 4408, 1), -- HP Modifiers
+(21280, 4409, 1), -- MP Modifiers
+(21280, 4410, 13), -- P. Atk. Modifiers
+(21280, 4411, 13), -- M. Atk. Modifiers
+(21280, 4412, 9), -- P. Def. Modifiers
+(21280, 4413, 9), -- M. Def. Modifiers
+(21280, 4414, 2), -- Armor Type
+(21280, 4415, 3), -- Weapon Type
+(21280, 4416, 4), -- Races
 (21280, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Bandersnatch
-(21282, 4032, 6), -- Power Strike
-(21282, 4408, 1), -- HP Increase (1x)
-(21282, 4409, 1), -- MP Increase (1x)
-(21282, 4410, 11), -- Average P. Atk.
-(21282, 4411, 11), -- Average M. Atk.
-(21282, 4412, 11), -- Average P. Def.
-(21282, 4413, 11), -- Average M. Def.
-(21282, 4414, 2), -- Standard Type
-(21282, 4415, 4), -- One-handed Sword
-(21282, 4416, 3), -- Beasts
+(21282, 4032, 6), -- NPC Strike
+(21282, 4408, 1), -- HP Modifiers
+(21282, 4409, 1), -- MP Modifiers
+(21282, 4410, 11), -- P. Atk. Modifiers
+(21282, 4411, 11), -- M. Atk. Modifiers
+(21282, 4412, 11), -- P. Def. Modifiers
+(21282, 4413, 11), -- M. Def. Modifiers
+(21282, 4414, 2), -- Armor Type
+(21282, 4415, 4), -- Weapon Type
+(21282, 4416, 3), -- Races
 (21282, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Bandersnatch
-(21283, 4073, 6), -- Stun
-(21283, 4408, 1), -- HP Increase (1x)
-(21283, 4409, 1), -- MP Increase (1x)
-(21283, 4410, 13), -- Slightly Strong P. Atk.
-(21283, 4411, 13), -- Slightly Strong M. Atk.
-(21283, 4412, 9), -- Slightly Weak P. Def.
-(21283, 4413, 9), -- Slightly Weak M. Def.
-(21283, 4414, 2), -- Standard Type
-(21283, 4415, 4), -- One-handed Sword
-(21283, 4416, 3), -- Beasts
+(21283, 4073, 6), -- Shock
+(21283, 4408, 1), -- HP Modifiers
+(21283, 4409, 1), -- MP Modifiers
+(21283, 4410, 13), -- P. Atk. Modifiers
+(21283, 4411, 13), -- M. Atk. Modifiers
+(21283, 4412, 9), -- P. Def. Modifiers
+(21283, 4413, 9), -- M. Def. Modifiers
+(21283, 4414, 2), -- Armor Type
+(21283, 4415, 4), -- Weapon Type
+(21283, 4416, 3), -- Races
 (21283, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Bandersnatch
-(21284, 4072, 6), -- Stun
-(21284, 4408, 1), -- HP Increase (1x)
-(21284, 4409, 1), -- MP Increase (1x)
-(21284, 4410, 10), -- Slightly Weak P. Atk.
-(21284, 4411, 10), -- Slightly Weak M. Atk.
-(21284, 4412, 12), -- Slightly Strong P. Def.
-(21284, 4413, 12), -- Slightly Strong M. Def.
-(21284, 4414, 2), -- Standard Type
-(21284, 4415, 4), -- One-handed Sword
-(21284, 4416, 3), -- Beasts
+(21284, 4072, 6), -- Shock
+(21284, 4408, 1), -- HP Modifiers
+(21284, 4409, 1), -- MP Modifiers
+(21284, 4410, 10), -- P. Atk. Modifiers
+(21284, 4411, 10), -- M. Atk. Modifiers
+(21284, 4412, 12), -- P. Def. Modifiers
+(21284, 4413, 12), -- M. Def. Modifiers
+(21284, 4414, 2), -- Armor Type
+(21284, 4415, 4), -- Weapon Type
+(21284, 4416, 3), -- Races
 (21284, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Buffalo
-(21286, 4032, 7), -- Power Strike
-(21286, 4408, 1), -- HP Increase (1x)
-(21286, 4409, 1), -- MP Increase (1x)
-(21286, 4410, 11), -- Average P. Atk.
-(21286, 4411, 11), -- Average M. Atk.
-(21286, 4412, 11), -- Average P. Def.
-(21286, 4413, 11), -- Average M. Def.
-(21286, 4414, 2), -- Standard Type
-(21286, 4415, 6), -- Blunt Weapons
-(21286, 4416, 3), -- Beasts
+(21286, 4032, 7), -- NPC Strike
+(21286, 4408, 1), -- HP Modifiers
+(21286, 4409, 1), -- MP Modifiers
+(21286, 4410, 11), -- P. Atk. Modifiers
+(21286, 4411, 11), -- M. Atk. Modifiers
+(21286, 4412, 11), -- P. Def. Modifiers
+(21286, 4413, 11), -- M. Def. Modifiers
+(21286, 4414, 2), -- Armor Type
+(21286, 4415, 6), -- Weapon Type
+(21286, 4416, 3), -- Races
 (21286, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Buffalo
-(21287, 4072, 7), -- Stun
-(21287, 4408, 1), -- HP Increase (1x)
-(21287, 4409, 1), -- MP Increase (1x)
-(21287, 4410, 10), -- Slightly Weak P. Atk.
-(21287, 4411, 10), -- Slightly Weak M. Atk.
-(21287, 4412, 12), -- Slightly Strong P. Def.
-(21287, 4413, 12), -- Slightly Strong M. Def.
-(21287, 4414, 2), -- Standard Type
-(21287, 4415, 6), -- Blunt Weapons
-(21287, 4416, 3), -- Beasts
+(21287, 4072, 7), -- Shock
+(21287, 4408, 1), -- HP Modifiers
+(21287, 4409, 1), -- MP Modifiers
+(21287, 4410, 10), -- P. Atk. Modifiers
+(21287, 4411, 10), -- M. Atk. Modifiers
+(21287, 4412, 12), -- P. Def. Modifiers
+(21287, 4413, 12), -- M. Def. Modifiers
+(21287, 4414, 2), -- Armor Type
+(21287, 4415, 6), -- Weapon Type
+(21287, 4416, 3), -- Races
 (21287, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Buffalo
-(21288, 4244, 7), -- Wild Sweep
-(21288, 4408, 1), -- HP Increase (1x)
-(21288, 4409, 1), -- MP Increase (1x)
-(21288, 4410, 13), -- Slightly Strong P. Atk.
-(21288, 4411, 13), -- Slightly Strong M. Atk.
-(21288, 4412, 9), -- Slightly Weak P. Def.
-(21288, 4413, 9), -- Slightly Weak M. Def.
-(21288, 4414, 2), -- Standard Type
-(21288, 4415, 6), -- Blunt Weapons
-(21288, 4416, 3), -- Beasts
+(21288, 4244, 7), -- NPC Wild Sweep
+(21288, 4408, 1), -- HP Modifiers
+(21288, 4409, 1), -- MP Modifiers
+(21288, 4410, 13), -- P. Atk. Modifiers
+(21288, 4411, 13), -- M. Atk. Modifiers
+(21288, 4412, 9), -- P. Def. Modifiers
+(21288, 4413, 9), -- M. Def. Modifiers
+(21288, 4414, 2), -- Armor Type
+(21288, 4415, 6), -- Weapon Type
+(21288, 4416, 3), -- Races
 (21288, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Grendel
-(21290, 4032, 7), -- Power Strike
-(21290, 4408, 1), -- HP Increase (1x)
-(21290, 4409, 1), -- MP Increase (1x)
-(21290, 4410, 11), -- Average P. Atk.
-(21290, 4411, 11), -- Average M. Atk.
-(21290, 4412, 11), -- Average P. Def.
-(21290, 4413, 11), -- Average M. Def.
-(21290, 4414, 2), -- Standard Type
-(21290, 4415, 4), -- One-handed Sword
-(21290, 4416, 4), -- Animals
-(21290, 4789, 2), -- High Level
+(21290, 4032, 7), -- NPC Strike
+(21290, 4408, 1), -- HP Modifiers
+(21290, 4409, 1), -- MP Modifiers
+(21290, 4410, 11), -- P. Atk. Modifiers
+(21290, 4411, 11), -- M. Atk. Modifiers
+(21290, 4412, 11), -- P. Def. Modifiers
+(21290, 4413, 11), -- M. Def. Modifiers
+(21290, 4414, 2), -- Armor Type
+(21290, 4415, 4), -- Weapon Type
+(21290, 4416, 4), -- Races
+(21290, 4789, 2), -- NPC High Level
 (21290, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Grendel
-(21291, 4072, 7), -- Stun
-(21291, 4408, 1), -- HP Increase (1x)
-(21291, 4409, 1), -- MP Increase (1x)
-(21291, 4410, 10), -- Slightly Weak P. Atk.
-(21291, 4411, 10), -- Slightly Weak M. Atk.
-(21291, 4412, 12), -- Slightly Strong P. Def.
-(21291, 4413, 12), -- Slightly Strong M. Def.
-(21291, 4414, 2), -- Standard Type
-(21291, 4415, 4), -- One-handed Sword
-(21291, 4416, 4), -- Animals
-(21291, 4789, 2), -- High Level
+(21291, 4072, 7), -- Shock
+(21291, 4408, 1), -- HP Modifiers
+(21291, 4409, 1), -- MP Modifiers
+(21291, 4410, 10), -- P. Atk. Modifiers
+(21291, 4411, 10), -- M. Atk. Modifiers
+(21291, 4412, 12), -- P. Def. Modifiers
+(21291, 4413, 12), -- M. Def. Modifiers
+(21291, 4414, 2), -- Armor Type
+(21291, 4415, 4), -- Weapon Type
+(21291, 4416, 4), -- Races
+(21291, 4789, 2), -- NPC High Level
 (21291, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Grendel
-(21292, 4232, 7), -- Whirlwind
-(21292, 4408, 1), -- HP Increase (1x)
-(21292, 4409, 1), -- MP Increase (1x)
-(21292, 4410, 13), -- Slightly Strong P. Atk.
-(21292, 4411, 13), -- Slightly Strong M. Atk.
-(21292, 4412, 9), -- Slightly Weak P. Def.
-(21292, 4413, 9), -- Slightly Weak M. Def.
-(21292, 4414, 2), -- Standard Type
-(21292, 4415, 4), -- One-handed Sword
-(21292, 4416, 4), -- Animals
-(21292, 4789, 2), -- High Level
+(21292, 4232, 7), -- NPC AE Strike
+(21292, 4408, 1), -- HP Modifiers
+(21292, 4409, 1), -- MP Modifiers
+(21292, 4410, 13), -- P. Atk. Modifiers
+(21292, 4411, 13), -- M. Atk. Modifiers
+(21292, 4412, 9), -- P. Def. Modifiers
+(21292, 4413, 9), -- M. Def. Modifiers
+(21292, 4414, 2), -- Armor Type
+(21292, 4415, 4), -- Weapon Type
+(21292, 4416, 4), -- Races
+(21292, 4789, 2), -- NPC High Level
 (21292, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Canyon Antelope
-(21294, 4032, 6), -- Power Strike
-(21294, 4408, 10), -- HP Increase (2x)
-(21294, 4409, 1), -- MP Increase (1x)
-(21294, 4410, 11), -- Average P. Atk.
-(21294, 4411, 11), -- Average M. Atk.
-(21294, 4412, 11), -- Average P. Def.
-(21294, 4413, 11), -- Average M. Def.
-(21294, 4414, 2), -- Standard Type
-(21294, 4415, 3), -- One-handed Sword
-(21294, 4416, 4), -- Animals
+(21294, 4032, 6), -- NPC Strike
+(21294, 4408, 10), -- HP Modifiers
+(21294, 4409, 1), -- MP Modifiers
+(21294, 4410, 11), -- P. Atk. Modifiers
+(21294, 4411, 11), -- M. Atk. Modifiers
+(21294, 4412, 11), -- P. Def. Modifiers
+(21294, 4413, 11), -- M. Def. Modifiers
+(21294, 4414, 2), -- Armor Type
+(21294, 4415, 3), -- Weapon Type
+(21294, 4416, 4), -- Races
 -- Canyon Antelope Slave
-(21295, 4032, 6), -- Power Strike
-(21295, 4092, 1), -- Spirit Puma
-(21295, 4408, 10), -- HP Increase (2x)
-(21295, 4409, 1), -- MP Increase (1x)
-(21295, 4410, 11), -- Average P. Atk.
-(21295, 4411, 11), -- Average M. Atk.
-(21295, 4412, 11), -- Average P. Def.
-(21295, 4413, 11), -- Average M. Def.
-(21295, 4414, 2), -- Standard Type
-(21295, 4415, 3), -- One-handed Sword
-(21295, 4416, 4), -- Animals
+(21295, 4032, 6), -- NPC Strike
+(21295, 4092, 1), -- NPC Puma Spirit Totem
+(21295, 4408, 10), -- HP Modifiers
+(21295, 4409, 1), -- MP Modifiers
+(21295, 4410, 11), -- P. Atk. Modifiers
+(21295, 4411, 11), -- M. Atk. Modifiers
+(21295, 4412, 11), -- P. Def. Modifiers
+(21295, 4413, 11), -- M. Def. Modifiers
+(21295, 4414, 2), -- Armor Type
+(21295, 4415, 3), -- Weapon Type
+(21295, 4416, 4), -- Races
 -- Canyon Bandersnatch 
-(21296, 4408, 11), -- HP Increase (3x)
-(21296, 4409, 1), -- MP Increase (1x)
-(21296, 4410, 14), -- Strong P. Atk.
-(21296, 4411, 14), -- Strong M. Atk.
-(21296, 4412, 8), -- Weak P. Def.
-(21296, 4413, 8), -- Weak M. Def.
-(21296, 4414, 2), -- Standard Type
-(21296, 4415, 4), -- One-handed Sword
-(21296, 4416, 3), -- Beasts
+(21296, 4408, 11), -- HP Modifiers
+(21296, 4409, 1), -- MP Modifiers
+(21296, 4410, 14), -- P. Atk. Modifiers
+(21296, 4411, 14), -- M. Atk. Modifiers
+(21296, 4412, 8), -- P. Def. Modifiers
+(21296, 4413, 8), -- M. Def. Modifiers
+(21296, 4414, 2), -- Armor Type
+(21296, 4415, 4), -- Weapon Type
+(21296, 4416, 3), -- Races
 (21296, 4579, 7), -- Bleed
 -- Canyon Bandersnatch Slave
-(21297, 4032, 7), -- Power Strike
-(21297, 4090, 1), -- Spirit Wolf
-(21297, 4408, 11), -- HP Increase (3x)
-(21297, 4409, 1), -- MP Increase (1x)
-(21297, 4410, 10), -- Slightly Weak P. Atk.
-(21297, 4411, 10), -- Slightly Weak M. Atk.
-(21297, 4412, 12), -- Slightly Strong P. Def.
-(21297, 4413, 12), -- Slightly Strong M. Def.
-(21297, 4414, 2), -- Standard Type
-(21297, 4415, 4), -- One-handed Sword
-(21297, 4416, 3), -- Beasts
-(21297, 4789, 2), -- High Level
+(21297, 4032, 7), -- NPC Strike
+(21297, 4090, 1), -- NPC Wolf Spirit Totem
+(21297, 4408, 11), -- HP Modifiers
+(21297, 4409, 1), -- MP Modifiers
+(21297, 4410, 10), -- P. Atk. Modifiers
+(21297, 4411, 10), -- M. Atk. Modifiers
+(21297, 4412, 12), -- P. Def. Modifiers
+(21297, 4413, 12), -- M. Def. Modifiers
+(21297, 4414, 2), -- Armor Type
+(21297, 4415, 4), -- Weapon Type
+(21297, 4416, 3), -- Races
+(21297, 4789, 2), -- NPC High Level
 -- Eye of Restrainer 
-(21298, 4038, 5), -- Decrease Atk. Spd.
-(21298, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(21298, 4408, 10), -- HP Increase (2x)
-(21298, 4409, 1), -- MP Increase (1x)
-(21298, 4410, 10), -- Slightly Weak P. Atk.
-(21298, 4411, 10), -- Slightly Weak M. Atk.
-(21298, 4412, 12), -- Slightly Strong P. Def.
-(21298, 4413, 12), -- Slightly Strong M. Def.
-(21298, 4414, 3), -- Light Armor Type
-(21298, 4415, 3), -- One-handed Sword
-(21298, 4416, 2), -- Magic Creatures
-(21298, 4789, 2), -- High Level
+(21298, 4038, 5), -- Decrease Atk.Spd.
+(21298, 4276, 1), -- Archery Attack Weak Point
+(21298, 4408, 10), -- HP Modifiers
+(21298, 4409, 1), -- MP Modifiers
+(21298, 4410, 10), -- P. Atk. Modifiers
+(21298, 4411, 10), -- M. Atk. Modifiers
+(21298, 4412, 12), -- P. Def. Modifiers
+(21298, 4413, 12), -- M. Def. Modifiers
+(21298, 4414, 3), -- Armor Type
+(21298, 4415, 3), -- Weapon Type
+(21298, 4416, 2), -- Races
+(21298, 4789, 2), -- NPC High Level
 -- Buffalo Slave
-(21299, 4032, 7), -- Power Strike
-(21299, 4091, 1), -- Spirit Ogre
-(21299, 4408, 11), -- HP Increase (3x)
-(21299, 4409, 1), -- MP Increase (1x)
-(21299, 4410, 12), -- Slightly Strong P. Atk.
-(21299, 4411, 12), -- Slightly Strong M. Atk.
-(21299, 4412, 10), -- Slightly Weak P. Def.
-(21299, 4413, 10), -- Slightly Weak M. Def.
-(21299, 4414, 2), -- Standard Type
-(21299, 4415, 6), -- Blunt Weapons
-(21299, 4416, 3), -- Beasts
-(21299, 4789, 2), -- High Level
+(21299, 4032, 7), -- NPC Strike
+(21299, 4091, 1), -- NPC Ogre Spirit Totem
+(21299, 4408, 11), -- HP Modifiers
+(21299, 4409, 1), -- MP Modifiers
+(21299, 4410, 12), -- P. Atk. Modifiers
+(21299, 4411, 12), -- M. Atk. Modifiers
+(21299, 4412, 10), -- P. Def. Modifiers
+(21299, 4413, 10), -- M. Def. Modifiers
+(21299, 4414, 2), -- Armor Type
+(21299, 4415, 6), -- Weapon Type
+(21299, 4416, 3), -- Races
+(21299, 4789, 2), -- NPC High Level
 -- Eye of Guide
-(21300, 4158, 7), -- Prominence
-(21300, 4160, 7), -- Aura Burn
-(21300, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(21300, 4408, 11), -- HP Increase (3x)
-(21300, 4409, 1), -- MP Increase (1x)
-(21300, 4410, 9), -- Slightly Weak P. Atk.
-(21300, 4411, 9), -- Slightly Weak M. Atk.
-(21300, 4412, 13), -- Slightly Strong P. Def.
-(21300, 4413, 13), -- Slightly Strong M. Def.
-(21300, 4414, 3), -- Light Armor Type
-(21300, 4415, 3), -- One-handed Sword
-(21300, 4416, 2), -- Magic Creatures
-(21300, 4613, 7), -- Clan Heal
-(21300, 4789, 2), -- High Level
+(21300, 4158, 7), -- NPC Prominence - Magic
+(21300, 4160, 7), -- NPC Aura Burn - Magic
+(21300, 4276, 1), -- Archery Attack Weak Point
+(21300, 4408, 11), -- HP Modifiers
+(21300, 4409, 1), -- MP Modifiers
+(21300, 4410, 9), -- P. Atk. Modifiers
+(21300, 4411, 9), -- M. Atk. Modifiers
+(21300, 4412, 13), -- P. Def. Modifiers
+(21300, 4413, 13), -- M. Def. Modifiers
+(21300, 4414, 3), -- Armor Type
+(21300, 4415, 3), -- Weapon Type
+(21300, 4416, 2), -- Races
+(21300, 4613, 7), -- NPC Clan Heal
+(21300, 4789, 2), -- NPC High Level
 -- Gaze of Nightmare
 (21301, 4046, 7), -- Sleep
 (21301, 4047, 7), -- Hold
-(21301, 4094, 7), -- Cancellation
-(21301, 4098, 7), -- Silence
-(21301, 4105, 7), -- Beam Cannon
-(21301, 4408, 12), -- HP Increase (4x)
-(21301, 4409, 1), -- MP Increase (1x)
-(21301, 4410, 8), -- Weak P. Atk.
-(21301, 4411, 8), -- Weak M. Atk.
-(21301, 4412, 14), -- Strong P. Def.
-(21301, 4413, 14), -- Strong M. Def.
-(21301, 4414, 2), -- Standard Type
-(21301, 4415, 3), -- One-handed Sword
-(21301, 4416, 2), -- Magic Creatures
-(21301, 4650, 1), -- Hold Dispell
-(21301, 4789, 2), -- High Level
+(21301, 4094, 7), -- NPC Cancel Magic
+(21301, 4098, 7), -- Magic Skill Block
+(21301, 4105, 7), -- NPC Straight Beam Cannon
+(21301, 4408, 12), -- HP Modifiers
+(21301, 4409, 1), -- MP Modifiers
+(21301, 4410, 8), -- P. Atk. Modifiers
+(21301, 4411, 8), -- M. Atk. Modifiers
+(21301, 4412, 14), -- P. Def. Modifiers
+(21301, 4413, 14), -- M. Def. Modifiers
+(21301, 4414, 2), -- Armor Type
+(21301, 4415, 3), -- Weapon Type
+(21301, 4416, 2), -- Races
+(21301, 4650, 1), -- NPC AE - Dispel Hold
+(21301, 4789, 2), -- NPC High Level
 -- Eye of Watchman
 (21302, 4046, 7), -- Sleep
-(21302, 4094, 7), -- Cancellation
-(21302, 4098, 7), -- Silence
-(21302, 4105, 7), -- Beam Cannon
-(21302, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(21302, 4408, 11), -- HP Increase (3x)
-(21302, 4409, 1), -- MP Increase (1x)
-(21302, 4410, 13), -- Slightly Strong P. Atk.
-(21302, 4411, 13), -- Slightly Strong M. Atk.
-(21302, 4412, 9), -- Slightly Weak P. Def.
-(21302, 4413, 9), -- Slightly Weak M. Def.
-(21302, 4414, 3), -- Light Armor Type
-(21302, 4415, 3), -- One-handed Sword
-(21302, 4416, 2), -- Magic Creatures
-(21302, 4650, 1), -- Hold Dispell
+(21302, 4094, 7), -- NPC Cancel Magic
+(21302, 4098, 7), -- Magic Skill Block
+(21302, 4105, 7), -- NPC Straight Beam Cannon
+(21302, 4276, 1), -- Archery Attack Weak Point
+(21302, 4408, 11), -- HP Modifiers
+(21302, 4409, 1), -- MP Modifiers
+(21302, 4410, 13), -- P. Atk. Modifiers
+(21302, 4411, 13), -- M. Atk. Modifiers
+(21302, 4412, 9), -- P. Def. Modifiers
+(21302, 4413, 9), -- M. Def. Modifiers
+(21302, 4414, 3), -- Armor Type
+(21302, 4415, 3), -- Weapon Type
+(21302, 4416, 2), -- Races
+(21302, 4650, 1), -- NPC AE - Dispel Hold
 (21302, 4657, 7), -- Hold
-(21302, 4789, 3), -- High Level
+(21302, 4789, 3), -- NPC High Level
 -- Homunculus
-(21303, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(21303, 4408, 11), -- HP Increase (3x)
-(21303, 4409, 1), -- MP Increase (1x)
-(21303, 4410, 14), -- Strong P. Atk.
-(21303, 4411, 14), -- Strong M. Atk.
-(21303, 4412, 8), -- Weak P. Def.
-(21303, 4413, 8), -- Weak M. Def.
-(21303, 4414, 3), -- Light Armor Type
-(21303, 4415, 3), -- One-handed Sword
-(21303, 4416, 2), -- Magic Creatures
-(21303, 4561, 7), -- Fire Burn
-(21303, 4563, 7), -- Solar Flare
-(21303, 4789, 3), -- High Level
+(21303, 4276, 1), -- Archery Attack Weak Point
+(21303, 4408, 11), -- HP Modifiers
+(21303, 4409, 1), -- MP Modifiers
+(21303, 4410, 14), -- P. Atk. Modifiers
+(21303, 4411, 14), -- M. Atk. Modifiers
+(21303, 4412, 8), -- P. Def. Modifiers
+(21303, 4413, 8), -- M. Def. Modifiers
+(21303, 4414, 3), -- Armor Type
+(21303, 4415, 3), -- Weapon Type
+(21303, 4416, 2), -- Races
+(21303, 4561, 7), -- NPC Fire Burn - Magic
+(21303, 4563, 7), -- NPC Solar Flare - Magic
+(21303, 4789, 3), -- NPC High Level
 -- Grendel Slave
-(21304, 4089, 1), -- Spirit Bear
-(21304, 4090, 1), -- Spirit Wolf
-(21304, 4091, 1), -- Spirit Ogre
-(21304, 4092, 1), -- Spirit Puma
-(21304, 4408, 12), -- HP Increase (4x)
-(21304, 4409, 1), -- MP Increase (1x)
-(21304, 4410, 12), -- Slightly Strong P. Atk.
-(21304, 4411, 12), -- Slightly Strong M. Atk.
-(21304, 4412, 10), -- Slightly Weak P. Def.
-(21304, 4413, 10), -- Slightly Weak M. Def.
-(21304, 4414, 2), -- Standard Type
-(21304, 4415, 4), -- One-handed Sword
-(21304, 4416, 4), -- Animals
-(21304, 4789, 3), -- High Level
+(21304, 4089, 1), -- NPC Bear Spirit Totem
+(21304, 4090, 1), -- NPC Wolf Spirit Totem
+(21304, 4091, 1), -- NPC Ogre Spirit Totem
+(21304, 4092, 1), -- NPC Puma Spirit Totem
+(21304, 4408, 12), -- HP Modifiers
+(21304, 4409, 1), -- MP Modifiers
+(21304, 4410, 12), -- P. Atk. Modifiers
+(21304, 4411, 12), -- M. Atk. Modifiers
+(21304, 4412, 10), -- P. Def. Modifiers
+(21304, 4413, 10), -- M. Def. Modifiers
+(21304, 4414, 2), -- Armor Type
+(21304, 4415, 4), -- Weapon Type
+(21304, 4416, 4), -- Races
+(21304, 4789, 3), -- NPC High Level
 -- Eye of Pilgrim
-(21305, 4158, 7), -- Prominence
-(21305, 4160, 7), -- Aura Burn
-(21305, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(21305, 4408, 11), -- HP Increase (3x)
-(21305, 4409, 1), -- MP Increase (1x)
-(21305, 4410, 10), -- Slightly Weak P. Atk.
-(21305, 4411, 10), -- Slightly Weak M. Atk.
-(21305, 4412, 12), -- Slightly Strong P. Def.
-(21305, 4413, 12), -- Slightly Strong M. Def.
-(21305, 4414, 3), -- Light Armor Type
-(21305, 4415, 3), -- One-handed Sword
-(21305, 4416, 2), -- Magic Creatures
-(21305, 4613, 7), -- Clan Heal
-(21305, 4789, 3), -- High Level
+(21305, 4158, 7), -- NPC Prominence - Magic
+(21305, 4160, 7), -- NPC Aura Burn - Magic
+(21305, 4276, 1), -- Archery Attack Weak Point
+(21305, 4408, 11), -- HP Modifiers
+(21305, 4409, 1), -- MP Modifiers
+(21305, 4410, 10), -- P. Atk. Modifiers
+(21305, 4411, 10), -- M. Atk. Modifiers
+(21305, 4412, 12), -- P. Def. Modifiers
+(21305, 4413, 12), -- M. Def. Modifiers
+(21305, 4414, 3), -- Armor Type
+(21305, 4415, 3), -- Weapon Type
+(21305, 4416, 2), -- Races
+(21305, 4613, 7), -- NPC Clan Heal
+(21305, 4789, 3), -- NPC High Level
 -- Disciples of Protection
-(21306, 4085, 1), -- Critical Damage
+(21306, 4085, 1), -- Critical Power
 (21306, 4086, 1), -- Critical Chance
-(21306, 4408, 13), -- HP Increase (5x)
-(21306, 4409, 1), -- MP Increase (1x)
-(21306, 4410, 8), -- Weak P. Atk.
-(21306, 4411, 8), -- Weak M. Atk.
-(21306, 4412, 14), -- Strong P. Def.
-(21306, 4413, 14), -- Strong M. Def.
-(21306, 4414, 2), -- Standard Type
-(21306, 4415, 4), -- One-handed Sword
-(21306, 4416, 8), -- Angels
-(21306, 4585, 3), -- Berserker Spirit
-(21306, 4789, 3), -- High Level
+(21306, 4408, 13), -- HP Modifiers
+(21306, 4409, 1), -- MP Modifiers
+(21306, 4410, 8), -- P. Atk. Modifiers
+(21306, 4411, 8), -- M. Atk. Modifiers
+(21306, 4412, 14), -- P. Def. Modifiers
+(21306, 4413, 14), -- M. Def. Modifiers
+(21306, 4414, 2), -- Armor Type
+(21306, 4415, 4), -- Weapon Type
+(21306, 4416, 8), -- Races
+(21306, 4585, 3), -- NPC Clan Buff - Berserk Might
+(21306, 4789, 3), -- NPC High Level
 -- Elder Homunculus
-(21307, 4038, 5), -- Decrease Atk. Spd.
-(21307, 4257, 8), -- Hydro Blast
-(21307, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(21307, 4408, 12), -- HP Increase (4x)
-(21307, 4409, 1), -- MP Increase (1x)
-(21307, 4410, 13), -- Slightly Strong P. Atk.
-(21307, 4411, 13), -- Slightly Strong M. Atk.
-(21307, 4412, 9), -- Slightly Weak P. Def.
-(21307, 4413, 9), -- Slightly Weak M. Def.
-(21307, 4414, 3), -- Light Armor Type
-(21307, 4415, 3), -- One-handed Sword
-(21307, 4416, 2), -- Magic Creatures
-(21307, 4561, 8), -- Fire Burn
-(21307, 4789, 4), -- High Level
+(21307, 4038, 5), -- Decrease Atk.Spd.
+(21307, 4257, 8), -- NPC Hydroblast - Magic
+(21307, 4276, 1), -- Archery Attack Weak Point
+(21307, 4408, 12), -- HP Modifiers
+(21307, 4409, 1), -- MP Modifiers
+(21307, 4410, 13), -- P. Atk. Modifiers
+(21307, 4411, 13), -- M. Atk. Modifiers
+(21307, 4412, 9), -- P. Def. Modifiers
+(21307, 4413, 9), -- M. Def. Modifiers
+(21307, 4414, 3), -- Armor Type
+(21307, 4415, 3), -- Weapon Type
+(21307, 4416, 2), -- Races
+(21307, 4561, 8), -- NPC Fire Burn - Magic
+(21307, 4789, 4), -- NPC High Level
 -- Disciples of Punishment
-(21308, 4085, 1), -- Critical Damage
+(21308, 4085, 1), -- Critical Power
 (21308, 4086, 1), -- Critical Chance
-(21308, 4158, 8), -- Prominence
-(21308, 4408, 13), -- HP Increase (5x)
-(21308, 4409, 1), -- MP Increase (1x)
-(21308, 4410, 12), -- Slightly Strong P. Atk.
-(21308, 4411, 12), -- Slightly Strong M. Atk.
-(21308, 4412, 10), -- Slightly Weak P. Def.
-(21308, 4413, 10), -- Slightly Weak M. Def.
-(21308, 4414, 2), -- Standard Type
-(21308, 4415, 4), -- One-handed Sword
-(21308, 4416, 8), -- Angels
+(21308, 4158, 8), -- NPC Prominence - Magic
+(21308, 4408, 13), -- HP Modifiers
+(21308, 4409, 1), -- MP Modifiers
+(21308, 4410, 12), -- P. Atk. Modifiers
+(21308, 4411, 12), -- M. Atk. Modifiers
+(21308, 4412, 10), -- P. Def. Modifiers
+(21308, 4413, 10), -- M. Def. Modifiers
+(21308, 4414, 2), -- Armor Type
+(21308, 4415, 4), -- Weapon Type
+(21308, 4416, 8), -- Races
 (21308, 4599, 8), -- Decrease Speed
-(21308, 4789, 4), -- High Level
+(21308, 4789, 4), -- NPC High Level
 -- Disciples of Punishment
-(21309, 4033, 8), -- Aura Burn
-(21309, 4085, 1), -- Critical Damage
+(21309, 4033, 8), -- NPC Burn
+(21309, 4085, 1), -- Critical Power
 (21309, 4086, 1), -- Critical Chance
-(21309, 4091, 1), -- Spirit Ogre
-(21309, 4408, 13), -- HP Increase (5x)
-(21309, 4409, 1), -- MP Increase (1x)
-(21309, 4410, 9), -- Slightly Weak P. Atk.
-(21309, 4411, 9), -- Slightly Weak M. Atk.
-(21309, 4412, 13), -- Slightly Strong P. Def.
-(21309, 4413, 13), -- Slightly Strong M. Def.
-(21309, 4414, 2), -- Standard Type
-(21309, 4415, 4), -- One-handed Sword
-(21309, 4416, 8), -- Angels
+(21309, 4091, 1), -- NPC Ogre Spirit Totem
+(21309, 4408, 13), -- HP Modifiers
+(21309, 4409, 1), -- MP Modifiers
+(21309, 4410, 9), -- P. Atk. Modifiers
+(21309, 4411, 9), -- M. Atk. Modifiers
+(21309, 4412, 13), -- P. Def. Modifiers
+(21309, 4413, 13), -- M. Def. Modifiers
+(21309, 4414, 2), -- Armor Type
+(21309, 4415, 4), -- Weapon Type
+(21309, 4416, 8), -- Races
 (21309, 4580, 8), -- Decrease P. Atk.
-(21309, 4789, 4), -- High Level
+(21309, 4789, 4), -- NPC High Level
 -- Disciples of Authority
-(21310, 4085, 1), -- Critical Damage
+(21310, 4085, 1), -- Critical Power
 (21310, 4086, 1), -- Critical Chance
-(21310, 4158, 8), -- Prominence
-(21310, 4408, 13), -- HP Increase (5x)
-(21310, 4409, 1), -- MP Increase (1x)
-(21310, 4410, 12), -- Slightly Strong P. Atk.
-(21310, 4411, 12), -- Slightly Strong M. Atk.
-(21310, 4412, 10), -- Slightly Weak P. Def.
-(21310, 4413, 10), -- Slightly Weak M. Def.
-(21310, 4414, 3), -- Light Armor Type
-(21310, 4415, 5), -- Blunt Weapons
-(21310, 4416, 8), -- Angels
+(21310, 4158, 8), -- NPC Prominence - Magic
+(21310, 4408, 13), -- HP Modifiers
+(21310, 4409, 1), -- MP Modifiers
+(21310, 4410, 12), -- P. Atk. Modifiers
+(21310, 4411, 12), -- M. Atk. Modifiers
+(21310, 4412, 10), -- P. Def. Modifiers
+(21310, 4413, 10), -- M. Def. Modifiers
+(21310, 4414, 3), -- Armor Type
+(21310, 4415, 5), -- Weapon Type
+(21310, 4416, 8), -- Races
 (21310, 4599, 8), -- Decrease Speed
-(21310, 4789, 4), -- High Level
+(21310, 4789, 4), -- NPC High Level
 -- Disciples of Authority
-(21311, 4158, 8), -- Prominence
-(21311, 4160, 8), -- Aura Burn
-(21311, 4408, 13), -- HP Increase (5x)
-(21311, 4409, 1), -- MP Increase (1x)
-(21311, 4410, 9), -- Slightly Weak P. Atk.
-(21311, 4411, 9), -- Slightly Weak M. Atk.
-(21311, 4412, 13), -- Slightly Strong P. Def.
-(21311, 4413, 13), -- Slightly Strong M. Def.
-(21311, 4414, 3), -- Light Armor Type
-(21311, 4415, 5), -- Blunt Weapons
-(21311, 4416, 8), -- Angels
-(21311, 4789, 4), -- High Level
+(21311, 4158, 8), -- NPC Prominence - Magic
+(21311, 4160, 8), -- NPC Aura Burn - Magic
+(21311, 4408, 13), -- HP Modifiers
+(21311, 4409, 1), -- MP Modifiers
+(21311, 4410, 9), -- P. Atk. Modifiers
+(21311, 4411, 9), -- M. Atk. Modifiers
+(21311, 4412, 13), -- P. Def. Modifiers
+(21311, 4413, 13), -- M. Def. Modifiers
+(21311, 4414, 3), -- Armor Type
+(21311, 4415, 5), -- Weapon Type
+(21311, 4416, 8), -- Races
+(21311, 4789, 4), -- NPC High Level
 -- Eye of Ruler
 (21312, 4047, 7), -- Hold
-(21312, 4156, 7), -- Beam Cannon
-(21312, 4160, 7), -- Aura Burn
-(21312, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(21312, 4408, 11), -- HP Increase (3x)
-(21312, 4409, 1), -- MP Increase (1x)
-(21312, 4410, 10), -- Slightly Weak P. Atk.
-(21312, 4411, 10), -- Slightly Weak M. Atk.
-(21312, 4412, 12), -- Slightly Strong P. Def.
-(21312, 4413, 12), -- Slightly Strong M. Def.
-(21312, 4414, 3), -- Light Armor Type
-(21312, 4415, 3), -- One-handed Sword
-(21312, 4416, 2), -- Magic Creatures
-(21312, 4571, 7), -- Blazing Circle
-(21312, 4609, 4), -- Vampiric Rage
-(21312, 4650, 1), -- Hold Dispell
-(21312, 4789, 3), -- High Level
+(21312, 4156, 7), -- NPC Curve Beam Cannon - Magic
+(21312, 4160, 7), -- NPC Aura Burn - Magic
+(21312, 4276, 1), -- Archery Attack Weak Point
+(21312, 4408, 11), -- HP Modifiers
+(21312, 4409, 1), -- MP Modifiers
+(21312, 4410, 10), -- P. Atk. Modifiers
+(21312, 4411, 10), -- M. Atk. Modifiers
+(21312, 4412, 12), -- P. Def. Modifiers
+(21312, 4413, 12), -- M. Def. Modifiers
+(21312, 4414, 3), -- Armor Type
+(21312, 4415, 3), -- Weapon Type
+(21312, 4416, 2), -- Races
+(21312, 4571, 7), -- NPC Blazing Circle
+(21312, 4609, 4), -- NPC Clan Buff - Vampiric Rage
+(21312, 4650, 1), -- NPC AE - Dispel Hold
+(21312, 4789, 3), -- NPC High Level
 -- Sly Hound Dog
-(21313, 4408, 11), -- HP Increase (3x)
-(21313, 4409, 1), -- MP Increase (1x)
-(21313, 4410, 13), -- Slightly Strong P. Atk.
-(21313, 4411, 13), -- Slightly Strong M. Atk.
-(21313, 4412, 9), -- Slightly Weak P. Def.
-(21313, 4413, 9), -- Slightly Weak M. Def.
-(21313, 4414, 2), -- Standard Type
-(21313, 4415, 4), -- One-handed Sword
-(21313, 4416, 3), -- Beasts
+(21313, 4408, 11), -- HP Modifiers
+(21313, 4409, 1), -- MP Modifiers
+(21313, 4410, 13), -- P. Atk. Modifiers
+(21313, 4411, 13), -- M. Atk. Modifiers
+(21313, 4412, 9), -- P. Def. Modifiers
+(21313, 4413, 9), -- M. Def. Modifiers
+(21313, 4414, 2), -- Armor Type
+(21313, 4415, 4), -- Weapon Type
+(21313, 4416, 3), -- Races
 (21313, 4579, 7), -- Bleed
-(21313, 4789, 2), -- High Level
+(21313, 4789, 2), -- NPC High Level
 -- Hot Springs Bandersnatchling
-(21314, 4002, 7), -- HP Drain
-(21314, 4073, 7), -- Stun
-(21314, 4074, 2), -- Haste
-(21314, 4085, 1), -- Critical Damage
+(21314, 4002, 7), -- NPC HP Drain
+(21314, 4073, 7), -- Shock
+(21314, 4074, 2), -- NPC Haste
+(21314, 4085, 1), -- Critical Power
 (21314, 4086, 1), -- Critical Chance
-(21314, 4096, 3), -- Hawk Eye
-(21314, 4408, 10), -- HP Increase (2x)
-(21314, 4409, 1), -- MP Increase (1x)
-(21314, 4410, 11), -- Average P. Atk.
-(21314, 4411, 11), -- Average M. Atk.
-(21314, 4412, 11), -- Average P. Def.
-(21314, 4413, 11), -- Average M. Def.
-(21314, 4414, 2), -- Standard Type
-(21314, 4415, 4), -- One-handed Sword
-(21314, 4416, 3), -- Beasts
+(21314, 4096, 3), -- NPC Hawkeye
+(21314, 4408, 10), -- HP Modifiers
+(21314, 4409, 1), -- MP Modifiers
+(21314, 4410, 11), -- P. Atk. Modifiers
+(21314, 4411, 11), -- M. Atk. Modifiers
+(21314, 4412, 11), -- P. Def. Modifiers
+(21314, 4413, 11), -- M. Def. Modifiers
+(21314, 4414, 2), -- Armor Type
+(21314, 4415, 4), -- Weapon Type
+(21314, 4416, 3), -- Races
 (21314, 4551, 1), -- Hot Springs Rheumatism
 (21314, 4554, 1), -- Hot Spring Malaria
-(21314, 4555, 1), -- Resist Mutation
-(21314, 4789, 3), -- High Level
+(21314, 4555, 1), -- NPC Resist Mutant
+(21314, 4789, 3), -- NPC High Level
 -- Hot Springs Buffalo
-(21315, 4072, 7), -- Stun
-(21315, 4073, 7), -- Stun
-(21315, 4085, 1), -- Critical Damage
+(21315, 4072, 7), -- Shock
+(21315, 4073, 7), -- Shock
+(21315, 4085, 1), -- Critical Power
 (21315, 4086, 1), -- Critical Chance
-(21315, 4092, 1), -- Spirit Puma
-(21315, 4408, 10), -- HP Increase (2x)
-(21315, 4409, 1), -- MP Increase (1x)
-(21315, 4410, 11), -- Average P. Atk.
-(21315, 4411, 11), -- Average M. Atk.
-(21315, 4412, 11), -- Average P. Def.
-(21315, 4413, 11), -- Average M. Def.
-(21315, 4414, 2), -- Standard Type
-(21315, 4415, 6), -- Blunt Weapons
-(21315, 4416, 3), -- Beasts
+(21315, 4092, 1), -- NPC Puma Spirit Totem
+(21315, 4408, 10), -- HP Modifiers
+(21315, 4409, 1), -- MP Modifiers
+(21315, 4410, 11), -- P. Atk. Modifiers
+(21315, 4411, 11), -- M. Atk. Modifiers
+(21315, 4412, 11), -- P. Def. Modifiers
+(21315, 4413, 11), -- M. Def. Modifiers
+(21315, 4414, 2), -- Armor Type
+(21315, 4415, 6), -- Weapon Type
+(21315, 4416, 3), -- Races
 (21315, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
-(21315, 4555, 1), -- Resist Mutation
-(21315, 4789, 3), -- High Level
+(21315, 4555, 1), -- NPC Resist Mutant
+(21315, 4789, 3), -- NPC High Level
 -- Hot Springs Flava
-(21316, 4073, 7), -- Stun
-(21316, 4074, 2), -- Haste
-(21316, 4085, 1), -- Critical Damage
+(21316, 4073, 7), -- Shock
+(21316, 4074, 2), -- NPC Haste
+(21316, 4085, 1), -- Critical Power
 (21316, 4086, 1), -- Critical Chance
-(21316, 4099, 2), -- Berserker Spirit
-(21316, 4277, 5), -- Resist Poison Attacks
-(21316, 4408, 10), -- HP Increase (2x)
-(21316, 4409, 1), -- MP Increase (1x)
-(21316, 4410, 11), -- Average P. Atk.
-(21316, 4411, 11), -- Average M. Atk.
-(21316, 4412, 11), -- Average P. Def.
-(21316, 4413, 15), -- Strong M. Def.
-(21316, 4414, 2), -- Standard Type
-(21316, 4415, 5), -- Blunt Weapons
-(21316, 4416, 5), -- Plants
+(21316, 4099, 2), -- NPC Berserk
+(21316, 4277, 5), -- Resist Poison
+(21316, 4408, 10), -- HP Modifiers
+(21316, 4409, 1), -- MP Modifiers
+(21316, 4410, 11), -- P. Atk. Modifiers
+(21316, 4411, 11), -- M. Atk. Modifiers
+(21316, 4412, 11), -- P. Def. Modifiers
+(21316, 4413, 15), -- M. Def. Modifiers
+(21316, 4414, 2), -- Armor Type
+(21316, 4415, 5), -- Weapon Type
+(21316, 4416, 5), -- Races
 (21316, 4552, 1), -- Hot Springs Cholera
 (21316, 4554, 1), -- Hot Spring Malaria
-(21316, 4555, 1), -- Resist Mutation
-(21316, 4789, 3), -- High Level
+(21316, 4555, 1), -- NPC Resist Mutant
+(21316, 4789, 3), -- NPC High Level
 -- Hot Springs Atroxspawn
-(21317, 4002, 7), -- HP Drain
-(21317, 4073, 7), -- Stun
-(21317, 4074, 2), -- Haste
-(21317, 4085, 1), -- Critical Damage
+(21317, 4002, 7), -- NPC HP Drain
+(21317, 4073, 7), -- Shock
+(21317, 4074, 2), -- NPC Haste
+(21317, 4085, 1), -- Critical Power
 (21317, 4086, 1), -- Critical Chance
-(21317, 4096, 3), -- Hawk Eye
-(21317, 4408, 10), -- HP Increase (2x)
-(21317, 4409, 1), -- MP Increase (1x)
-(21317, 4410, 11), -- Average P. Atk.
-(21317, 4411, 11), -- Average M. Atk.
-(21317, 4412, 11), -- Average P. Def.
-(21317, 4413, 11), -- Average M. Def.
-(21317, 4414, 2), -- Standard Type
-(21317, 4415, 4), -- One-handed Sword
-(21317, 4416, 12), -- Bugs
+(21317, 4096, 3), -- NPC Hawkeye
+(21317, 4408, 10), -- HP Modifiers
+(21317, 4409, 1), -- MP Modifiers
+(21317, 4410, 11), -- P. Atk. Modifiers
+(21317, 4411, 11), -- M. Atk. Modifiers
+(21317, 4412, 11), -- P. Def. Modifiers
+(21317, 4413, 11), -- M. Def. Modifiers
+(21317, 4414, 2), -- Armor Type
+(21317, 4415, 4), -- Weapon Type
+(21317, 4416, 12), -- Races
 (21317, 4553, 1), -- Hot Springs Flu
 (21317, 4554, 1), -- Hot Spring Malaria
-(21317, 4555, 1), -- Resist Mutation
-(21317, 4789, 3), -- High Level
+(21317, 4555, 1), -- NPC Resist Mutant
+(21317, 4789, 3), -- NPC High Level
 -- Hot Springs Antelope
-(21318, 4033, 7), -- Aura Burn
-(21318, 4071, 5), -- Resist Bow/Crossbow Weapons
-(21318, 4073, 7), -- Stun
-(21318, 4085, 1), -- Critical Damage
+(21318, 4033, 7), -- NPC Burn
+(21318, 4071, 5), -- Resist Archery
+(21318, 4073, 7), -- Shock
+(21318, 4085, 1), -- Critical Power
 (21318, 4086, 1), -- Critical Chance
-(21318, 4092, 1), -- Spirit Puma
-(21318, 4408, 10), -- HP Increase (2x)
-(21318, 4409, 1), -- MP Increase (1x)
-(21318, 4410, 11), -- Average P. Atk.
-(21318, 4411, 11), -- Average M. Atk.
-(21318, 4412, 11), -- Average P. Def.
-(21318, 4413, 11), -- Average M. Def.
-(21318, 4414, 2), -- Standard Type
-(21318, 4415, 3), -- One-handed Sword
-(21318, 4416, 4), -- Animals
-(21318, 4555, 1), -- Resist Mutation
-(21318, 4789, 3), -- High Level
+(21318, 4092, 1), -- NPC Puma Spirit Totem
+(21318, 4408, 10), -- HP Modifiers
+(21318, 4409, 1), -- MP Modifiers
+(21318, 4410, 11), -- P. Atk. Modifiers
+(21318, 4411, 11), -- M. Atk. Modifiers
+(21318, 4412, 11), -- P. Def. Modifiers
+(21318, 4413, 11), -- M. Def. Modifiers
+(21318, 4414, 2), -- Armor Type
+(21318, 4415, 3), -- Weapon Type
+(21318, 4416, 4), -- Races
+(21318, 4555, 1), -- NPC Resist Mutant
+(21318, 4789, 3), -- NPC High Level
 -- Hot Springs Nepenthes
-(21319, 4072, 8), -- Stun
-(21319, 4073, 8), -- Stun
-(21319, 4074, 2), -- Haste
-(21319, 4085, 1), -- Critical Damage
+(21319, 4072, 8), -- Shock
+(21319, 4073, 8), -- Shock
+(21319, 4074, 2), -- NPC Haste
+(21319, 4085, 1), -- Critical Power
 (21319, 4086, 1), -- Critical Chance
-(21319, 4099, 2), -- Berserker Spirit
-(21319, 4277, 5), -- Resist Poison Attacks
-(21319, 4408, 10), -- HP Increase (2x)
-(21319, 4409, 1), -- MP Increase (1x)
-(21319, 4410, 11), -- Average P. Atk.
-(21319, 4411, 11), -- Average M. Atk.
-(21319, 4412, 11), -- Average P. Def.
-(21319, 4413, 15), -- Strong M. Def.
-(21319, 4414, 2), -- Standard Type
-(21319, 4415, 6), -- Blunt Weapons
-(21319, 4416, 5), -- Plants
+(21319, 4099, 2), -- NPC Berserk
+(21319, 4277, 5), -- Resist Poison
+(21319, 4408, 10), -- HP Modifiers
+(21319, 4409, 1), -- MP Modifiers
+(21319, 4410, 11), -- P. Atk. Modifiers
+(21319, 4411, 11), -- M. Atk. Modifiers
+(21319, 4412, 11), -- P. Def. Modifiers
+(21319, 4413, 15), -- M. Def. Modifiers
+(21319, 4414, 2), -- Armor Type
+(21319, 4415, 6), -- Weapon Type
+(21319, 4416, 5), -- Races
 (21319, 4552, 1), -- Hot Springs Cholera
 (21319, 4554, 1), -- Hot Spring Malaria
-(21319, 4555, 1), -- Resist Mutation
-(21319, 4789, 4), -- High Level
+(21319, 4555, 1), -- NPC Resist Mutant
+(21319, 4789, 4), -- NPC High Level
 -- Hot Springs Yeti
-(21320, 4072, 8), -- Stun
-(21320, 4073, 8), -- Stun
-(21320, 4085, 1), -- Critical Damage
+(21320, 4072, 8), -- Shock
+(21320, 4073, 8), -- Shock
+(21320, 4085, 1), -- Critical Power
 (21320, 4086, 1), -- Critical Chance
-(21320, 4092, 1), -- Spirit Puma
-(21320, 4408, 10), -- HP Increase (2x)
-(21320, 4409, 1), -- MP Increase (1x)
-(21320, 4410, 11), -- Average P. Atk.
-(21320, 4411, 11), -- Average M. Atk.
-(21320, 4412, 11), -- Average P. Def.
-(21320, 4413, 11), -- Average M. Def.
-(21320, 4414, 2), -- Standard Type
-(21320, 4415, 3), -- One-handed Sword
-(21320, 4416, 11), -- Giants
+(21320, 4092, 1), -- NPC Puma Spirit Totem
+(21320, 4408, 10), -- HP Modifiers
+(21320, 4409, 1), -- MP Modifiers
+(21320, 4410, 11), -- P. Atk. Modifiers
+(21320, 4411, 11), -- M. Atk. Modifiers
+(21320, 4412, 11), -- P. Def. Modifiers
+(21320, 4413, 11), -- M. Def. Modifiers
+(21320, 4414, 2), -- Armor Type
+(21320, 4415, 3), -- Weapon Type
+(21320, 4416, 11), -- Races
 (21320, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
-(21320, 4555, 1), -- Resist Mutation
-(21320, 4789, 4), -- High Level
+(21320, 4555, 1), -- NPC Resist Mutant
+(21320, 4789, 4), -- NPC High Level
 -- Hot Springs Atrox
-(21321, 4002, 8), -- HP Drain
-(21321, 4073, 8), -- Stun
-(21321, 4074, 2), -- Haste
-(21321, 4085, 1), -- Critical Damage
+(21321, 4002, 8), -- NPC HP Drain
+(21321, 4073, 8), -- Shock
+(21321, 4074, 2), -- NPC Haste
+(21321, 4085, 1), -- Critical Power
 (21321, 4086, 1), -- Critical Chance
-(21321, 4096, 3), -- Hawk Eye
-(21321, 4408, 10), -- HP Increase (2x)
-(21321, 4409, 1), -- MP Increase (1x)
-(21321, 4410, 11), -- Average P. Atk.
-(21321, 4411, 11), -- Average M. Atk.
-(21321, 4412, 11), -- Average P. Def.
-(21321, 4413, 15), -- Strong M. Def.
-(21321, 4414, 2), -- Standard Type
-(21321, 4415, 4), -- One-handed Sword
-(21321, 4416, 12), -- Bugs
+(21321, 4096, 3), -- NPC Hawkeye
+(21321, 4408, 10), -- HP Modifiers
+(21321, 4409, 1), -- MP Modifiers
+(21321, 4410, 11), -- P. Atk. Modifiers
+(21321, 4411, 11), -- M. Atk. Modifiers
+(21321, 4412, 11), -- P. Def. Modifiers
+(21321, 4413, 15), -- M. Def. Modifiers
+(21321, 4414, 2), -- Armor Type
+(21321, 4415, 4), -- Weapon Type
+(21321, 4416, 12), -- Races
 (21321, 4551, 1), -- Hot Springs Rheumatism
 (21321, 4554, 1), -- Hot Spring Malaria
-(21321, 4555, 1), -- Resist Mutation
-(21321, 4789, 4), -- High Level
+(21321, 4555, 1), -- NPC Resist Mutant
+(21321, 4789, 4), -- NPC High Level
 -- Hot Springs Bandersnatch
-(21322, 4002, 8), -- HP Drain
-(21322, 4073, 8), -- Stun
-(21322, 4074, 2), -- Haste
-(21322, 4085, 1), -- Critical Damage
+(21322, 4002, 8), -- NPC HP Drain
+(21322, 4073, 8), -- Shock
+(21322, 4074, 2), -- NPC Haste
+(21322, 4085, 1), -- Critical Power
 (21322, 4086, 1), -- Critical Chance
-(21322, 4099, 2), -- Berserker Spirit
-(21322, 4408, 10), -- HP Increase (2x)
-(21322, 4409, 1), -- MP Increase (1x)
-(21322, 4410, 11), -- Average P. Atk.
-(21322, 4411, 11), -- Average M. Atk.
-(21322, 4412, 11), -- Average P. Def.
-(21322, 4413, 15), -- Strong M. Def.
-(21322, 4414, 2), -- Standard Type
-(21322, 4415, 4), -- One-handed Sword
-(21322, 4416, 3), -- Beasts
+(21322, 4099, 2), -- NPC Berserk
+(21322, 4408, 10), -- HP Modifiers
+(21322, 4409, 1), -- MP Modifiers
+(21322, 4410, 11), -- P. Atk. Modifiers
+(21322, 4411, 11), -- M. Atk. Modifiers
+(21322, 4412, 11), -- P. Def. Modifiers
+(21322, 4413, 15), -- M. Def. Modifiers
+(21322, 4414, 2), -- Armor Type
+(21322, 4415, 4), -- Weapon Type
+(21322, 4416, 3), -- Races
 (21322, 4553, 1), -- Hot Springs Flu
 (21322, 4554, 1), -- Hot Spring Malaria
-(21322, 4555, 1), -- Resist Mutation
-(21322, 4789, 4), -- High Level
+(21322, 4555, 1), -- NPC Resist Mutant
+(21322, 4789, 4), -- NPC High Level
 -- Hot Springs Grendel
-(21323, 4033, 8), -- Aura Burn
-(21323, 4073, 8), -- Stun
-(21323, 4085, 1), -- Critical Damage
+(21323, 4033, 8), -- NPC Burn
+(21323, 4073, 8), -- Shock
+(21323, 4085, 1), -- Critical Power
 (21323, 4086, 1), -- Critical Chance
-(21323, 4092, 1), -- Spirit Puma
-(21323, 4408, 10), -- HP Increase (2x)
-(21323, 4409, 1), -- MP Increase (1x)
-(21323, 4410, 11), -- Average P. Atk.
-(21323, 4411, 11), -- Average M. Atk.
-(21323, 4412, 11), -- Average P. Def.
-(21323, 4413, 11), -- Average M. Def.
-(21323, 4414, 2), -- Standard Type
-(21323, 4415, 4), -- One-handed Sword
-(21323, 4416, 4), -- Animals
+(21323, 4092, 1), -- NPC Puma Spirit Totem
+(21323, 4408, 10), -- HP Modifiers
+(21323, 4409, 1), -- MP Modifiers
+(21323, 4410, 11), -- P. Atk. Modifiers
+(21323, 4411, 11), -- M. Atk. Modifiers
+(21323, 4412, 11), -- P. Def. Modifiers
+(21323, 4413, 11), -- M. Def. Modifiers
+(21323, 4414, 2), -- Armor Type
+(21323, 4415, 4), -- Weapon Type
+(21323, 4416, 4), -- Races
 (21323, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
-(21323, 4555, 1), -- Resist Mutation
-(21323, 4789, 4), -- High Level
+(21323, 4555, 1), -- NPC Resist Mutant
+(21323, 4789, 4), -- NPC High Level
 -- Ketra Orc Footman
-(21324, 4072, 8), -- Stun
-(21324, 4099, 2), -- Berserker Spirit
-(21324, 4408, 10), -- HP Increase (2x)
-(21324, 4409, 1), -- MP Increase (1x)
-(21324, 4410, 11), -- Average P. Atk.
-(21324, 4411, 11), -- Average M. Atk.
-(21324, 4412, 11), -- Average P. Def.
-(21324, 4413, 11), -- Average M. Def.
-(21324, 4414, 2), -- Standard Type
-(21324, 4415, 3), -- One-handed Sword
-(21324, 4416, 6), -- Humanoids
-(21324, 4573, 8), -- Sonic Blaster
-(21324, 4789, 5), -- High Level
+(21324, 4072, 8), -- Shock
+(21324, 4099, 2), -- NPC Berserk
+(21324, 4408, 10), -- HP Modifiers
+(21324, 4409, 1), -- MP Modifiers
+(21324, 4410, 11), -- P. Atk. Modifiers
+(21324, 4411, 11), -- M. Atk. Modifiers
+(21324, 4412, 11), -- P. Def. Modifiers
+(21324, 4413, 11), -- M. Def. Modifiers
+(21324, 4414, 2), -- Armor Type
+(21324, 4415, 3), -- Weapon Type
+(21324, 4416, 6), -- Races
+(21324, 4573, 8), -- NPC Sonic Blaster
+(21324, 4789, 5), -- NPC High Level
 -- Ketra's War Hound
-(21325, 4032, 8), -- Power Strike
-(21325, 4408, 10), -- HP Increase (2x)
-(21325, 4409, 1), -- MP Increase (1x)
-(21325, 4410, 12), -- Slightly Strong P. Atk.
-(21325, 4411, 12), -- Slightly Strong M. Atk.
-(21325, 4412, 10), -- Slightly Weak P. Def.
-(21325, 4413, 10), -- Slightly Weak M. Def.
-(21325, 4414, 2), -- Standard Type
-(21325, 4415, 4), -- One-handed Sword
-(21325, 4416, 3), -- Beasts
-(21325, 4789, 5), -- High Level
+(21325, 4032, 8), -- NPC Strike
+(21325, 4408, 10), -- HP Modifiers
+(21325, 4409, 1), -- MP Modifiers
+(21325, 4410, 12), -- P. Atk. Modifiers
+(21325, 4411, 12), -- M. Atk. Modifiers
+(21325, 4412, 10), -- P. Def. Modifiers
+(21325, 4413, 10), -- M. Def. Modifiers
+(21325, 4414, 2), -- Armor Type
+(21325, 4415, 4), -- Weapon Type
+(21325, 4416, 3), -- Races
+(21325, 4789, 5), -- NPC High Level
 -- Grazing Kookaburra
-(21326, 4073, 8), -- Stun
-(21326, 4408, 10), -- HP Increase (2x)
-(21326, 4409, 1), -- MP Increase (1x)
-(21326, 4410, 9), -- Slightly Weak P. Atk.
-(21326, 4411, 9), -- Slightly Weak M. Atk.
-(21326, 4412, 13), -- Slightly Strong P. Def.
-(21326, 4413, 13), -- Slightly Strong M. Def.
-(21326, 4414, 3), -- Light Armor Type
-(21326, 4415, 3), -- One-handed Sword
-(21326, 4416, 3), -- Beasts
-(21326, 4789, 5), -- High Level
+(21326, 4073, 8), -- Shock
+(21326, 4408, 10), -- HP Modifiers
+(21326, 4409, 1), -- MP Modifiers
+(21326, 4410, 9), -- P. Atk. Modifiers
+(21326, 4411, 9), -- M. Atk. Modifiers
+(21326, 4412, 13), -- P. Def. Modifiers
+(21326, 4413, 13), -- M. Def. Modifiers
+(21326, 4414, 3), -- Armor Type
+(21326, 4415, 3), -- Weapon Type
+(21326, 4416, 3), -- Races
+(21326, 4789, 5), -- NPC High Level
 -- Ketra Orc Raider
-(21327, 4038, 5), -- Decrease Atk. Spd.
-(21327, 4072, 8), -- Stun
-(21327, 4085, 1), -- Critical Damage
+(21327, 4038, 5), -- Decrease Atk.Spd.
+(21327, 4072, 8), -- Shock
+(21327, 4085, 1), -- Critical Power
 (21327, 4086, 1), -- Critical Chance
 (21327, 4317, 1), -- Increase Rage Might
-(21327, 4408, 10), -- HP Increase (2x)
-(21327, 4409, 1), -- MP Increase (1x)
-(21327, 4410, 13), -- Slightly Strong P. Atk.
-(21327, 4411, 13), -- Slightly Strong M. Atk.
-(21327, 4412, 9), -- Slightly Weak P. Def.
-(21327, 4413, 9), -- Slightly Weak M. Def.
-(21327, 4414, 2), -- Standard Type
-(21327, 4415, 3), -- One-handed Sword
-(21327, 4416, 6), -- Humanoids
-(21327, 4572, 8), -- Triple Sonic Slash
-(21327, 4789, 5), -- High Level
+(21327, 4408, 10), -- HP Modifiers
+(21327, 4409, 1), -- MP Modifiers
+(21327, 4410, 13), -- P. Atk. Modifiers
+(21327, 4411, 13), -- M. Atk. Modifiers
+(21327, 4412, 9), -- P. Def. Modifiers
+(21327, 4413, 9), -- M. Def. Modifiers
+(21327, 4414, 2), -- Armor Type
+(21327, 4415, 3), -- Weapon Type
+(21327, 4416, 6), -- Races
+(21327, 4572, 8), -- NPC Triple Sonic Slash
+(21327, 4789, 5), -- NPC High Level
 -- Ketra Orc Scout
-(21328, 4040, 8), -- Power Shot
-(21328, 4408, 10), -- HP Increase (2x)
-(21328, 4409, 1), -- MP Increase (1x)
-(21328, 4410, 10), -- Slightly Weak P. Atk.
-(21328, 4411, 10), -- Slightly Weak M. Atk.
-(21328, 4412, 12), -- Slightly Strong P. Def.
-(21328, 4413, 12), -- Slightly Strong M. Def.
-(21328, 4414, 2), -- Standard Type
-(21328, 4415, 9), -- Bows
-(21328, 4416, 6), -- Humanoids
-(21328, 4789, 5), -- High Level
+(21328, 4040, 8), -- NPC Bow Attack
+(21328, 4408, 10), -- HP Modifiers
+(21328, 4409, 1), -- MP Modifiers
+(21328, 4410, 10), -- P. Atk. Modifiers
+(21328, 4411, 10), -- M. Atk. Modifiers
+(21328, 4412, 12), -- P. Def. Modifiers
+(21328, 4413, 12), -- M. Def. Modifiers
+(21328, 4414, 2), -- Armor Type
+(21328, 4415, 9), -- Weapon Type
+(21328, 4416, 6), -- Races
+(21328, 4789, 5), -- NPC High Level
 -- Ketra Orc Shaman
-(21329, 4030, 3), -- Might
-(21329, 4031, 3); -- Might
+(21329, 4030, 3), -- NPC Clan Might
+(21329, 4031, 3); -- NPC Clan Aegis
 
 INSERT INTO `npcskills` VALUES
 (21329, 4035, 8), -- Poison
-(21329, 4157, 8), -- Blaze
-(21329, 4408, 10), -- HP Increase (2x)
-(21329, 4409, 1), -- MP Increase (1x)
-(21329, 4410, 11), -- Average P. Atk.
-(21329, 4411, 11), -- Average M. Atk.
-(21329, 4412, 11), -- Average P. Def.
-(21329, 4413, 11), -- Average M. Def.
-(21329, 4414, 3), -- Light Armor Type
-(21329, 4415, 5), -- Blunt Weapons
-(21329, 4416, 6), -- Humanoids
-(21329, 4561, 8), -- Fire Burn
-(21329, 4789, 6), -- High Level
+(21329, 4157, 8), -- NPC Blaze - Magic
+(21329, 4408, 10), -- HP Modifiers
+(21329, 4409, 1), -- MP Modifiers
+(21329, 4410, 11), -- P. Atk. Modifiers
+(21329, 4411, 11), -- M. Atk. Modifiers
+(21329, 4412, 11), -- P. Def. Modifiers
+(21329, 4413, 11), -- M. Def. Modifiers
+(21329, 4414, 3), -- Armor Type
+(21329, 4415, 5), -- Weapon Type
+(21329, 4416, 6), -- Races
+(21329, 4561, 8), -- NPC Fire Burn - Magic
+(21329, 4789, 6), -- NPC High Level
 -- Grazing Buffalo
-(21330, 4073, 8), -- Stun
-(21330, 4408, 10), -- HP Increase (2x)
-(21330, 4409, 1), -- MP Increase (1x)
-(21330, 4410, 9), -- Slightly Weak P. Atk.
-(21330, 4411, 9), -- Slightly Weak M. Atk.
-(21330, 4412, 13), -- Slightly Strong P. Def.
-(21330, 4413, 13), -- Slightly Strong M. Def.
-(21330, 4414, 2), -- Standard Type
-(21330, 4415, 6), -- Blunt Weapons
-(21330, 4416, 3), -- Beasts
-(21330, 4789, 6), -- High Level
+(21330, 4073, 8), -- Shock
+(21330, 4408, 10), -- HP Modifiers
+(21330, 4409, 1), -- MP Modifiers
+(21330, 4410, 9), -- P. Atk. Modifiers
+(21330, 4411, 9), -- M. Atk. Modifiers
+(21330, 4412, 13), -- P. Def. Modifiers
+(21330, 4413, 13), -- M. Def. Modifiers
+(21330, 4414, 2), -- Armor Type
+(21330, 4415, 6), -- Weapon Type
+(21330, 4416, 3), -- Races
+(21330, 4789, 6), -- NPC High Level
 -- Ketra Orc Warrior
-(21331, 4078, 9), -- Flame Strike
-(21331, 4119, 3), -- Decrease Accuracy
-(21331, 4408, 10), -- HP Increase (2x)
-(21331, 4409, 1), -- MP Increase (1x)
-(21331, 4410, 12), -- Slightly Strong P. Atk.
-(21331, 4411, 12), -- Slightly Strong M. Atk.
-(21331, 4412, 10), -- Slightly Weak P. Def.
-(21331, 4413, 10), -- Slightly Weak M. Def.
-(21331, 4414, 2), -- Standard Type
-(21331, 4415, 3), -- One-handed Sword
-(21331, 4416, 6), -- Humanoids
+(21331, 4078, 9), -- NPC Flamestrike
+(21331, 4119, 3), -- Fall in accuracy
+(21331, 4408, 10), -- HP Modifiers
+(21331, 4409, 1), -- MP Modifiers
+(21331, 4410, 12), -- P. Atk. Modifiers
+(21331, 4411, 12), -- M. Atk. Modifiers
+(21331, 4412, 10), -- P. Def. Modifiers
+(21331, 4413, 10), -- M. Def. Modifiers
+(21331, 4414, 2), -- Armor Type
+(21331, 4415, 3), -- Weapon Type
+(21331, 4416, 6), -- Races
 (21331, 4596, 9), -- Bleed
-(21331, 4789, 6), -- High Level
+(21331, 4789, 6), -- NPC High Level
 -- Ketra Orc Lieutenant
-(21332, 4038, 5), -- Decrease Atk. Spd.
-(21332, 4072, 9), -- Stun
-(21332, 4085, 1), -- Critical Damage
+(21332, 4038, 5), -- Decrease Atk.Spd.
+(21332, 4072, 9), -- Shock
+(21332, 4085, 1), -- Critical Power
 (21332, 4086, 1), -- Critical Chance
 (21332, 4317, 1), -- Increase Rage Might
-(21332, 4408, 10), -- HP Increase (2x)
-(21332, 4409, 1), -- MP Increase (1x)
-(21332, 4410, 10), -- Slightly Weak P. Atk.
-(21332, 4411, 10), -- Slightly Weak M. Atk.
-(21332, 4412, 12), -- Slightly Strong P. Def.
-(21332, 4413, 12), -- Slightly Strong M. Def.
-(21332, 4414, 2), -- Standard Type
-(21332, 4415, 6), -- Blunt Weapons
-(21332, 4416, 6), -- Humanoids
-(21332, 4573, 9), -- Sonic Blaster
-(21332, 4789, 6), -- High Level
+(21332, 4408, 10), -- HP Modifiers
+(21332, 4409, 1), -- MP Modifiers
+(21332, 4410, 10), -- P. Atk. Modifiers
+(21332, 4411, 10), -- M. Atk. Modifiers
+(21332, 4412, 12), -- P. Def. Modifiers
+(21332, 4413, 12), -- M. Def. Modifiers
+(21332, 4414, 2), -- Armor Type
+(21332, 4415, 6), -- Weapon Type
+(21332, 4416, 6), -- Races
+(21332, 4573, 9), -- NPC Sonic Blaster
+(21332, 4789, 6), -- NPC High Level
 -- Grazing Windsus
-(21333, 4067, 9), -- Blow
-(21333, 4408, 10), -- HP Increase (2x)
-(21333, 4409, 1), -- MP Increase (1x)
-(21333, 4410, 9), -- Slightly Weak P. Atk.
-(21333, 4411, 9), -- Slightly Weak M. Atk.
-(21333, 4412, 13), -- Slightly Strong P. Def.
-(21333, 4413, 13), -- Slightly Strong M. Def.
-(21333, 4414, 2), -- Standard Type
-(21333, 4415, 5), -- Blunt Weapons
-(21333, 4416, 4), -- Animals
-(21333, 4789, 7), -- High Level
+(21333, 4067, 9), -- NPC Mortal Blow
+(21333, 4408, 10), -- HP Modifiers
+(21333, 4409, 1), -- MP Modifiers
+(21333, 4410, 9), -- P. Atk. Modifiers
+(21333, 4411, 9), -- M. Atk. Modifiers
+(21333, 4412, 13), -- P. Def. Modifiers
+(21333, 4413, 13), -- M. Def. Modifiers
+(21333, 4414, 2), -- Armor Type
+(21333, 4415, 5), -- Weapon Type
+(21333, 4416, 4), -- Races
+(21333, 4789, 7), -- NPC High Level
 -- Ketra Orc Medium
 (21334, 4035, 9), -- Poison
-(21334, 4158, 9), -- Prominence
-(21334, 4408, 10), -- HP Increase (2x)
-(21334, 4409, 1), -- MP Increase (1x)
-(21334, 4410, 11), -- Average P. Atk.
-(21334, 4411, 11), -- Average M. Atk.
-(21334, 4412, 11), -- Average P. Def.
-(21334, 4413, 11), -- Average M. Def.
-(21334, 4414, 3), -- Light Armor Type
-(21334, 4415, 5), -- Blunt Weapons
-(21334, 4416, 6), -- Humanoids
-(21334, 4561, 9), -- Fire Burn
-(21334, 4571, 9), -- Blazing Circle
-(21334, 4575, 2), -- Haste
-(21334, 4576, 3), -- Reflect Damage
-(21334, 4789, 7), -- High Level
+(21334, 4158, 9), -- NPC Prominence - Magic
+(21334, 4408, 10), -- HP Modifiers
+(21334, 4409, 1), -- MP Modifiers
+(21334, 4410, 11), -- P. Atk. Modifiers
+(21334, 4411, 11), -- M. Atk. Modifiers
+(21334, 4412, 11), -- P. Def. Modifiers
+(21334, 4413, 11), -- M. Def. Modifiers
+(21334, 4414, 3), -- Armor Type
+(21334, 4415, 5), -- Weapon Type
+(21334, 4416, 6), -- Races
+(21334, 4561, 9), -- NPC Fire Burn - Magic
+(21334, 4571, 9), -- NPC Blazing Circle
+(21334, 4575, 2), -- NPC Clan Buff - Haste
+(21334, 4576, 3), -- NPC Clan Buff - Damage Shield
+(21334, 4789, 7), -- NPC High Level
 -- Ketra Orc Elite Soldier
-(21335, 4099, 2), -- Berserker Spirit
-(21335, 4408, 10), -- HP Increase (2x)
-(21335, 4409, 1), -- MP Increase (1x)
-(21335, 4410, 11), -- Average P. Atk.
-(21335, 4411, 11), -- Average M. Atk.
-(21335, 4412, 11), -- Average P. Def.
-(21335, 4413, 11), -- Average M. Def.
-(21335, 4414, 2), -- Standard Type
-(21335, 4415, 3), -- One-handed Sword
-(21335, 4416, 6), -- Humanoids
-(21335, 4571, 9), -- Blazing Circle
-(21335, 4573, 9), -- Sonic Blaster
-(21335, 4789, 7), -- High Level
+(21335, 4099, 2), -- NPC Berserk
+(21335, 4408, 10), -- HP Modifiers
+(21335, 4409, 1), -- MP Modifiers
+(21335, 4410, 11), -- P. Atk. Modifiers
+(21335, 4411, 11), -- M. Atk. Modifiers
+(21335, 4412, 11), -- P. Def. Modifiers
+(21335, 4413, 11), -- M. Def. Modifiers
+(21335, 4414, 2), -- Armor Type
+(21335, 4415, 3), -- Weapon Type
+(21335, 4416, 6), -- Races
+(21335, 4571, 9), -- NPC Blazing Circle
+(21335, 4573, 9), -- NPC Sonic Blaster
+(21335, 4789, 7), -- NPC High Level
 -- Ketra Orc White Captain
-(21336, 4038, 5), -- Decrease Atk. Spd.
-(21336, 4072, 9), -- Stun
-(21336, 4085, 1), -- Critical Damage
+(21336, 4038, 5), -- Decrease Atk.Spd.
+(21336, 4072, 9), -- Shock
+(21336, 4085, 1), -- Critical Power
 (21336, 4086, 1), -- Critical Chance
 (21336, 4317, 1), -- Increase Rage Might
-(21336, 4408, 10), -- HP Increase (2x)
-(21336, 4409, 1), -- MP Increase (1x)
-(21336, 4410, 10), -- Slightly Weak P. Atk.
-(21336, 4411, 10), -- Slightly Weak M. Atk.
-(21336, 4412, 12), -- Slightly Strong P. Def.
-(21336, 4413, 12), -- Slightly Strong M. Def.
-(21336, 4414, 2), -- Standard Type
-(21336, 4415, 3), -- One-handed Sword
-(21336, 4416, 6), -- Humanoids
-(21336, 4572, 9), -- Triple Sonic Slash
-(21336, 4789, 7), -- High Level
+(21336, 4408, 10), -- HP Modifiers
+(21336, 4409, 1), -- MP Modifiers
+(21336, 4410, 10), -- P. Atk. Modifiers
+(21336, 4411, 10), -- M. Atk. Modifiers
+(21336, 4412, 12), -- P. Def. Modifiers
+(21336, 4413, 12), -- M. Def. Modifiers
+(21336, 4414, 2), -- Armor Type
+(21336, 4415, 3), -- Weapon Type
+(21336, 4416, 6), -- Races
+(21336, 4572, 9), -- NPC Triple Sonic Slash
+(21336, 4789, 7), -- NPC High Level
 -- Grazing Elder Buffalo
-(21337, 4032, 9), -- Power Strike
-(21337, 4408, 10), -- HP Increase (2x)
-(21337, 4409, 1), -- MP Increase (1x)
-(21337, 4410, 9), -- Slightly Weak P. Atk.
-(21337, 4411, 9), -- Slightly Weak M. Atk.
-(21337, 4412, 13), -- Slightly Strong P. Def.
-(21337, 4413, 13), -- Slightly Strong M. Def.
-(21337, 4414, 2), -- Standard Type
-(21337, 4415, 6), -- Blunt Weapons
-(21337, 4416, 3), -- Beasts
-(21337, 4789, 8), -- High Level
+(21337, 4032, 9), -- NPC Strike
+(21337, 4408, 10), -- HP Modifiers
+(21337, 4409, 1), -- MP Modifiers
+(21337, 4410, 9), -- P. Atk. Modifiers
+(21337, 4411, 9), -- M. Atk. Modifiers
+(21337, 4412, 13), -- P. Def. Modifiers
+(21337, 4413, 13), -- M. Def. Modifiers
+(21337, 4414, 2), -- Armor Type
+(21337, 4415, 6), -- Weapon Type
+(21337, 4416, 3), -- Races
+(21337, 4789, 8), -- NPC High Level
 -- Ketra Orc Priest
-(21338, 4030, 3), -- Might
+(21338, 4030, 3), -- NPC Clan Might
 (21338, 4035, 9), -- Poison
-(21338, 4158, 9), -- Prominence
-(21338, 4408, 10), -- HP Increase (2x)
-(21338, 4409, 1), -- MP Increase (1x)
-(21338, 4410, 12), -- Slightly Strong P. Atk.
-(21338, 4411, 12), -- Slightly Strong M. Atk.
-(21338, 4412, 10), -- Slightly Weak P. Def.
-(21338, 4413, 10), -- Slightly Weak M. Def.
-(21338, 4414, 3), -- Light Armor Type
-(21338, 4415, 3), -- One-handed Sword
-(21338, 4416, 6), -- Humanoids
-(21338, 4561, 9), -- Fire Burn
-(21338, 4575, 2), -- Haste
-(21338, 4789, 8), -- High Level
+(21338, 4158, 9), -- NPC Prominence - Magic
+(21338, 4408, 10), -- HP Modifiers
+(21338, 4409, 1), -- MP Modifiers
+(21338, 4410, 12), -- P. Atk. Modifiers
+(21338, 4411, 12), -- M. Atk. Modifiers
+(21338, 4412, 10), -- P. Def. Modifiers
+(21338, 4413, 10), -- M. Def. Modifiers
+(21338, 4414, 3), -- Armor Type
+(21338, 4415, 3), -- Weapon Type
+(21338, 4416, 6), -- Races
+(21338, 4561, 9), -- NPC Fire Burn - Magic
+(21338, 4575, 2), -- NPC Clan Buff - Haste
+(21338, 4789, 8), -- NPC High Level
 -- Ketra Orc General
-(21339, 4038, 5), -- Decrease Atk. Spd.
-(21339, 4072, 9), -- Stun
-(21339, 4085, 1), -- Critical Damage
+(21339, 4038, 5), -- Decrease Atk.Spd.
+(21339, 4072, 9), -- Shock
+(21339, 4085, 1), -- Critical Power
 (21339, 4086, 1), -- Critical Chance
 (21339, 4317, 1), -- Increase Rage Might
-(21339, 4408, 10), -- HP Increase (2x)
-(21339, 4409, 1), -- MP Increase (1x)
-(21339, 4410, 13), -- Slightly Strong P. Atk.
-(21339, 4411, 13), -- Slightly Strong M. Atk.
-(21339, 4412, 9), -- Slightly Weak P. Def.
-(21339, 4413, 9), -- Slightly Weak M. Def.
-(21339, 4414, 2), -- Standard Type
-(21339, 4415, 6), -- Blunt Weapons
-(21339, 4416, 6), -- Humanoids
-(21339, 4573, 9), -- Sonic Blaster
-(21339, 4789, 8), -- High Level
+(21339, 4408, 10), -- HP Modifiers
+(21339, 4409, 1), -- MP Modifiers
+(21339, 4410, 13), -- P. Atk. Modifiers
+(21339, 4411, 13), -- M. Atk. Modifiers
+(21339, 4412, 9), -- P. Def. Modifiers
+(21339, 4413, 9), -- M. Def. Modifiers
+(21339, 4414, 2), -- Armor Type
+(21339, 4415, 6), -- Weapon Type
+(21339, 4416, 6), -- Races
+(21339, 4573, 9), -- NPC Sonic Blaster
+(21339, 4789, 8), -- NPC High Level
 -- Ketra Orc Battalion Commander
-(21340, 4038, 5), -- Decrease Atk. Spd.
-(21340, 4072, 9), -- Stun
-(21340, 4085, 1), -- Critical Damage
+(21340, 4038, 5), -- Decrease Atk.Spd.
+(21340, 4072, 9), -- Shock
+(21340, 4085, 1), -- Critical Power
 (21340, 4086, 1), -- Critical Chance
 (21340, 4317, 1), -- Increase Rage Might
-(21340, 4408, 10), -- HP Increase (2x)
-(21340, 4409, 1), -- MP Increase (1x)
-(21340, 4410, 11), -- Average P. Atk.
-(21340, 4411, 11), -- Average M. Atk.
-(21340, 4412, 11), -- Average P. Def.
-(21340, 4413, 11), -- Average M. Def.
-(21340, 4414, 2), -- Standard Type
-(21340, 4415, 3), -- One-handed Sword
-(21340, 4416, 6), -- Humanoids
-(21340, 4573, 9), -- Sonic Blaster
-(21340, 4789, 8), -- High Level
+(21340, 4408, 10), -- HP Modifiers
+(21340, 4409, 1), -- MP Modifiers
+(21340, 4410, 11), -- P. Atk. Modifiers
+(21340, 4411, 11), -- M. Atk. Modifiers
+(21340, 4412, 11), -- P. Def. Modifiers
+(21340, 4413, 11), -- M. Def. Modifiers
+(21340, 4414, 2), -- Armor Type
+(21340, 4415, 3), -- Weapon Type
+(21340, 4416, 6), -- Races
+(21340, 4573, 9), -- NPC Sonic Blaster
+(21340, 4789, 8), -- NPC High Level
 -- Grazing Elder Kookaburra
-(21341, 4408, 10), -- HP Increase (2x)
-(21341, 4409, 1), -- MP Increase (1x)
-(21341, 4410, 9), -- Slightly Weak P. Atk.
-(21341, 4411, 9), -- Slightly Weak M. Atk.
-(21341, 4412, 13), -- Slightly Strong P. Def.
-(21341, 4413, 13), -- Slightly Strong M. Def.
-(21341, 4414, 3), -- Light Armor Type
-(21341, 4415, 3), -- One-handed Sword
-(21341, 4416, 3), -- Beasts
+(21341, 4408, 10), -- HP Modifiers
+(21341, 4409, 1), -- MP Modifiers
+(21341, 4410, 9), -- P. Atk. Modifiers
+(21341, 4411, 9), -- M. Atk. Modifiers
+(21341, 4412, 13), -- P. Def. Modifiers
+(21341, 4413, 13), -- M. Def. Modifiers
+(21341, 4414, 3), -- Armor Type
+(21341, 4415, 3), -- Weapon Type
+(21341, 4416, 3), -- Races
 (21341, 4580, 9), -- Decrease P. Atk.
-(21341, 4789, 9), -- High Level
+(21341, 4789, 9), -- NPC High Level
 -- Ketra Orc Grand Priest
-(21342, 4031, 3), -- Might
+(21342, 4031, 3), -- NPC Clan Aegis
 (21342, 4035, 9), -- Poison
-(21342, 4158, 9), -- Prominence
-(21342, 4408, 10), -- HP Increase (2x)
-(21342, 4409, 1), -- MP Increase (1x)
-(21342, 4410, 11), -- Average P. Atk.
-(21342, 4411, 11), -- Average M. Atk.
-(21342, 4412, 11), -- Average P. Def.
-(21342, 4413, 11), -- Average M. Def.
-(21342, 4414, 2), -- Standard Type
-(21342, 4415, 5), -- Blunt Weapons
-(21342, 4416, 6), -- Humanoids
-(21342, 4561, 9), -- Fire Burn
-(21342, 4571, 9), -- Blazing Circle
-(21342, 4575, 2), -- Haste
-(21342, 4789, 9), -- High Level
+(21342, 4158, 9), -- NPC Prominence - Magic
+(21342, 4408, 10), -- HP Modifiers
+(21342, 4409, 1), -- MP Modifiers
+(21342, 4410, 11), -- P. Atk. Modifiers
+(21342, 4411, 11), -- M. Atk. Modifiers
+(21342, 4412, 11), -- P. Def. Modifiers
+(21342, 4413, 11), -- M. Def. Modifiers
+(21342, 4414, 2), -- Armor Type
+(21342, 4415, 5), -- Weapon Type
+(21342, 4416, 6), -- Races
+(21342, 4561, 9), -- NPC Fire Burn - Magic
+(21342, 4571, 9), -- NPC Blazing Circle
+(21342, 4575, 2), -- NPC Clan Buff - Haste
+(21342, 4789, 9), -- NPC High Level
 -- Ketra Commander
-(21343, 4038, 5), -- Decrease Atk. Spd.
-(21343, 4085, 1), -- Critical Damage
+(21343, 4038, 5), -- Decrease Atk.Spd.
+(21343, 4085, 1), -- Critical Power
 (21343, 4086, 1), -- Critical Chance
-(21343, 4408, 10), -- HP Increase (2x)
-(21343, 4409, 1), -- MP Increase (1x)
-(21343, 4410, 11), -- Average P. Atk.
-(21343, 4411, 11), -- Average M. Atk.
-(21343, 4412, 11), -- Average P. Def.
-(21343, 4413, 11), -- Average M. Def.
-(21343, 4414, 2), -- Standard Type
-(21343, 4415, 7), -- Daggers
-(21343, 4416, 6), -- Humanoids
-(21343, 4572, 9), -- Triple Sonic Slash
-(21343, 4575, 2), -- Haste
-(21343, 4789, 7), -- High Level
+(21343, 4408, 10), -- HP Modifiers
+(21343, 4409, 1), -- MP Modifiers
+(21343, 4410, 11), -- P. Atk. Modifiers
+(21343, 4411, 11), -- M. Atk. Modifiers
+(21343, 4412, 11), -- P. Def. Modifiers
+(21343, 4413, 11), -- M. Def. Modifiers
+(21343, 4414, 2), -- Armor Type
+(21343, 4415, 7), -- Weapon Type
+(21343, 4416, 6), -- Races
+(21343, 4572, 9), -- NPC Triple Sonic Slash
+(21343, 4575, 2), -- NPC Clan Buff - Haste
+(21343, 4789, 7), -- NPC High Level
 -- Ketra Elite Guard
-(21344, 4408, 10), -- HP Increase (2x)
-(21344, 4409, 1), -- MP Increase (1x)
-(21344, 4410, 13), -- Slightly Strong P. Atk.
-(21344, 4411, 13), -- Slightly Strong M. Atk.
-(21344, 4412, 9), -- Slightly Weak P. Def.
-(21344, 4413, 9), -- Slightly Weak M. Def.
-(21344, 4414, 2), -- Standard Type
-(21344, 4415, 3), -- One-handed Sword
-(21344, 4416, 6), -- Humanoids
-(21344, 4573, 9), -- Sonic Blaster
-(21344, 4789, 6), -- High Level
+(21344, 4408, 10), -- HP Modifiers
+(21344, 4409, 1), -- MP Modifiers
+(21344, 4410, 13), -- P. Atk. Modifiers
+(21344, 4411, 13), -- M. Atk. Modifiers
+(21344, 4412, 9), -- P. Def. Modifiers
+(21344, 4413, 9), -- M. Def. Modifiers
+(21344, 4414, 2), -- Armor Type
+(21344, 4415, 3), -- Weapon Type
+(21344, 4416, 6), -- Races
+(21344, 4573, 9), -- NPC Sonic Blaster
+(21344, 4789, 6), -- NPC High Level
 -- Ketra's Head Shaman
-(21345, 4100, 9), -- Prominence
-(21345, 4408, 10), -- HP Increase (2x)
-(21345, 4409, 1), -- MP Increase (1x)
-(21345, 4410, 12), -- Slightly Strong P. Atk.
-(21345, 4411, 12), -- Slightly Strong M. Atk.
-(21345, 4412, 10), -- Slightly Weak P. Def.
-(21345, 4413, 10), -- Slightly Weak M. Def.
-(21345, 4414, 2), -- Standard Type
-(21345, 4415, 5), -- Blunt Weapons
-(21345, 4416, 6), -- Humanoids
-(21345, 4789, 9), -- High Level
+(21345, 4100, 9), -- NPC Prominence
+(21345, 4408, 10), -- HP Modifiers
+(21345, 4409, 1), -- MP Modifiers
+(21345, 4410, 12), -- P. Atk. Modifiers
+(21345, 4411, 12), -- M. Atk. Modifiers
+(21345, 4412, 10), -- P. Def. Modifiers
+(21345, 4413, 10), -- M. Def. Modifiers
+(21345, 4414, 2), -- Armor Type
+(21345, 4415, 5), -- Weapon Type
+(21345, 4416, 6), -- Races
+(21345, 4789, 9), -- NPC High Level
 -- Ketra's Head Guard
-(21346, 4408, 10), -- HP Increase (2x)
-(21346, 4409, 1), -- MP Increase (1x)
-(21346, 4410, 9), -- Slightly Weak P. Atk.
-(21346, 4411, 9), -- Slightly Weak M. Atk.
-(21346, 4412, 13), -- Slightly Strong P. Def.
-(21346, 4413, 13), -- Slightly Strong M. Def.
-(21346, 4414, 2), -- Standard Type
-(21346, 4415, 6), -- Blunt Weapons
-(21346, 4416, 6), -- Humanoids
-(21346, 4573, 9), -- Sonic Blaster
-(21346, 4789, 8), -- High Level
+(21346, 4408, 10), -- HP Modifiers
+(21346, 4409, 1), -- MP Modifiers
+(21346, 4410, 9), -- P. Atk. Modifiers
+(21346, 4411, 9), -- M. Atk. Modifiers
+(21346, 4412, 13), -- P. Def. Modifiers
+(21346, 4413, 13), -- M. Def. Modifiers
+(21346, 4414, 2), -- Armor Type
+(21346, 4415, 6), -- Weapon Type
+(21346, 4416, 6), -- Races
+(21346, 4573, 9), -- NPC Sonic Blaster
+(21346, 4789, 8), -- NPC High Level
 -- Ketra Prophet
-(21347, 4030, 3), -- Might
+(21347, 4030, 3), -- NPC Clan Might
 (21347, 4035, 9), -- Poison
-(21347, 4158, 9), -- Prominence
-(21347, 4408, 10), -- HP Increase (2x)
-(21347, 4409, 1), -- MP Increase (1x)
-(21347, 4410, 11), -- Average P. Atk.
-(21347, 4411, 11), -- Average M. Atk.
-(21347, 4412, 11), -- Average P. Def.
-(21347, 4413, 11), -- Average M. Def.
-(21347, 4414, 2), -- Standard Type
-(21347, 4415, 5), -- Blunt Weapons
-(21347, 4416, 6), -- Humanoids
-(21347, 4561, 9), -- Fire Burn
-(21347, 4575, 2), -- Haste
-(21347, 4789, 10), -- High Level
+(21347, 4158, 9), -- NPC Prominence - Magic
+(21347, 4408, 10), -- HP Modifiers
+(21347, 4409, 1), -- MP Modifiers
+(21347, 4410, 11), -- P. Atk. Modifiers
+(21347, 4411, 11), -- M. Atk. Modifiers
+(21347, 4412, 11), -- P. Def. Modifiers
+(21347, 4413, 11), -- M. Def. Modifiers
+(21347, 4414, 2), -- Armor Type
+(21347, 4415, 5), -- Weapon Type
+(21347, 4416, 6), -- Races
+(21347, 4561, 9), -- NPC Fire Burn - Magic
+(21347, 4575, 2), -- NPC Clan Buff - Haste
+(21347, 4789, 10), -- NPC High Level
 -- Prophet's Guard
-(21348, 4408, 10), -- HP Increase (2x)
-(21348, 4409, 1), -- MP Increase (1x)
-(21348, 4410, 11), -- Average P. Atk.
-(21348, 4411, 11), -- Average M. Atk.
-(21348, 4412, 11), -- Average P. Def.
-(21348, 4413, 11), -- Average M. Def.
-(21348, 4414, 2), -- Standard Type
-(21348, 4415, 6), -- Blunt Weapons
-(21348, 4416, 6), -- Humanoids
-(21348, 4573, 9), -- Sonic Blaster
-(21348, 4789, 9), -- High Level
+(21348, 4408, 10), -- HP Modifiers
+(21348, 4409, 1), -- MP Modifiers
+(21348, 4410, 11), -- P. Atk. Modifiers
+(21348, 4411, 11), -- M. Atk. Modifiers
+(21348, 4412, 11), -- P. Def. Modifiers
+(21348, 4413, 11), -- M. Def. Modifiers
+(21348, 4414, 2), -- Armor Type
+(21348, 4415, 6), -- Weapon Type
+(21348, 4416, 6), -- Races
+(21348, 4573, 9), -- NPC Sonic Blaster
+(21348, 4789, 9), -- NPC High Level
 -- Prophet's Aide
 (21349, 4035, 9), -- Poison
-(21349, 4100, 9), -- Prominence
-(21349, 4408, 10), -- HP Increase (2x)
-(21349, 4409, 1), -- MP Increase (1x)
-(21349, 4410, 11), -- Average P. Atk.
-(21349, 4411, 11), -- Average M. Atk.
-(21349, 4412, 11), -- Average P. Def.
-(21349, 4413, 11), -- Average M. Def.
-(21349, 4414, 2), -- Standard Type
-(21349, 4415, 5), -- Blunt Weapons
-(21349, 4416, 6), -- Humanoids
-(21349, 4789, 9), -- High Level
+(21349, 4100, 9), -- NPC Prominence
+(21349, 4408, 10), -- HP Modifiers
+(21349, 4409, 1), -- MP Modifiers
+(21349, 4410, 11), -- P. Atk. Modifiers
+(21349, 4411, 11), -- M. Atk. Modifiers
+(21349, 4412, 11), -- P. Def. Modifiers
+(21349, 4413, 11), -- M. Def. Modifiers
+(21349, 4414, 2), -- Armor Type
+(21349, 4415, 5), -- Weapon Type
+(21349, 4416, 6), -- Races
+(21349, 4789, 9), -- NPC High Level
 -- Varka Silenos Recruit
-(21350, 4032, 8), -- Power Strike
-(21350, 4072, 8), -- Stun
-(21350, 4092, 1), -- Spirit Puma
-(21350, 4408, 10), -- HP Increase (2x)
-(21350, 4409, 1), -- MP Increase (1x)
-(21350, 4410, 11), -- Average P. Atk.
-(21350, 4411, 11), -- Average M. Atk.
-(21350, 4412, 11), -- Average P. Def.
-(21350, 4413, 11), -- Average M. Def.
-(21350, 4414, 2), -- Standard Type
-(21350, 4415, 3), -- One-handed Sword
-(21350, 4416, 6), -- Humanoids
-(21350, 4789, 5), -- High Level
+(21350, 4032, 8), -- NPC Strike
+(21350, 4072, 8), -- Shock
+(21350, 4092, 1), -- NPC Puma Spirit Totem
+(21350, 4408, 10), -- HP Modifiers
+(21350, 4409, 1), -- MP Modifiers
+(21350, 4410, 11), -- P. Atk. Modifiers
+(21350, 4411, 11), -- M. Atk. Modifiers
+(21350, 4412, 11), -- P. Def. Modifiers
+(21350, 4413, 11), -- M. Def. Modifiers
+(21350, 4414, 2), -- Armor Type
+(21350, 4415, 3), -- Weapon Type
+(21350, 4416, 6), -- Races
+(21350, 4789, 5), -- NPC High Level
 (21350, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Varka Silenos Footman
-(21351, 4408, 10), -- HP Increase (2x)
-(21351, 4409, 1), -- MP Increase (1x)
-(21351, 4410, 12), -- Slightly Strong P. Atk.
-(21351, 4411, 12), -- Slightly Strong M. Atk.
-(21351, 4412, 10), -- Slightly Weak P. Def.
-(21351, 4413, 10), -- Slightly Weak M. Def.
-(21351, 4414, 2), -- Standard Type
-(21351, 4415, 3), -- One-handed Sword
-(21351, 4416, 6), -- Humanoids
-(21351, 4573, 8), -- Sonic Blaster
-(21351, 4789, 5), -- High Level
+(21351, 4408, 10), -- HP Modifiers
+(21351, 4409, 1), -- MP Modifiers
+(21351, 4410, 12), -- P. Atk. Modifiers
+(21351, 4411, 12), -- M. Atk. Modifiers
+(21351, 4412, 10), -- P. Def. Modifiers
+(21351, 4413, 10), -- M. Def. Modifiers
+(21351, 4414, 2), -- Armor Type
+(21351, 4415, 3), -- Weapon Type
+(21351, 4416, 6), -- Races
+(21351, 4573, 8), -- NPC Sonic Blaster
+(21351, 4789, 5), -- NPC High Level
 (21351, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Grazing Antelope
-(21352, 4067, 8), -- Blow
-(21352, 4408, 1), -- HP Increase (1x)
-(21352, 4409, 1), -- MP Increase (1x)
-(21352, 4410, 9), -- Slightly Weak P. Atk.
-(21352, 4411, 9), -- Slightly Weak M. Atk.
-(21352, 4412, 13), -- Slightly Strong P. Def.
-(21352, 4413, 13), -- Slightly Strong M. Def.
-(21352, 4414, 2), -- Standard Type
-(21352, 4415, 3), -- One-handed Sword
-(21352, 4416, 4), -- Animals
-(21352, 4789, 5), -- High Level
+(21352, 4067, 8), -- NPC Mortal Blow
+(21352, 4408, 1), -- HP Modifiers
+(21352, 4409, 1), -- MP Modifiers
+(21352, 4410, 9), -- P. Atk. Modifiers
+(21352, 4411, 9), -- M. Atk. Modifiers
+(21352, 4412, 13), -- P. Def. Modifiers
+(21352, 4413, 13), -- M. Def. Modifiers
+(21352, 4414, 2), -- Armor Type
+(21352, 4415, 3), -- Weapon Type
+(21352, 4416, 4), -- Races
+(21352, 4789, 5), -- NPC High Level
 (21352, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Varka Silenos Scout
-(21353, 4038, 5), -- Decrease Atk. Spd.
-(21353, 4072, 8), -- Stun
-(21353, 4085, 1), -- Critical Damage
+(21353, 4038, 5), -- Decrease Atk.Spd.
+(21353, 4072, 8), -- Shock
+(21353, 4085, 1), -- Critical Power
 (21353, 4086, 1), -- Critical Chance
 (21353, 4317, 1), -- Increase Rage Might
-(21353, 4408, 10), -- HP Increase (2x)
-(21353, 4409, 1), -- MP Increase (1x)
-(21353, 4410, 13), -- Slightly Strong P. Atk.
-(21353, 4411, 13), -- Slightly Strong M. Atk.
-(21353, 4412, 9), -- Slightly Weak P. Def.
-(21353, 4413, 9), -- Slightly Weak M. Def.
-(21353, 4414, 2), -- Standard Type
-(21353, 4415, 3), -- One-handed Sword
-(21353, 4416, 6), -- Humanoids
-(21353, 4573, 8), -- Sonic Blaster
-(21353, 4789, 5), -- High Level
+(21353, 4408, 10), -- HP Modifiers
+(21353, 4409, 1), -- MP Modifiers
+(21353, 4410, 13), -- P. Atk. Modifiers
+(21353, 4411, 13), -- M. Atk. Modifiers
+(21353, 4412, 9), -- P. Def. Modifiers
+(21353, 4413, 9), -- M. Def. Modifiers
+(21353, 4414, 2), -- Armor Type
+(21353, 4415, 3), -- Weapon Type
+(21353, 4416, 6), -- Races
+(21353, 4573, 8), -- NPC Sonic Blaster
+(21353, 4789, 5), -- NPC High Level
 (21353, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Varka Silenos Hunter
-(21354, 4040, 8), -- Power Shot
-(21354, 4408, 10), -- HP Increase (2x)
-(21354, 4409, 1), -- MP Increase (1x)
-(21354, 4410, 10), -- Slightly Weak P. Atk.
-(21354, 4411, 10), -- Slightly Weak M. Atk.
-(21354, 4412, 12), -- Slightly Strong P. Def.
-(21354, 4413, 12), -- Slightly Strong M. Def.
-(21354, 4414, 2), -- Standard Type
-(21354, 4415, 9), -- Bows
-(21354, 4416, 6), -- Humanoids
-(21354, 4789, 5), -- High Level
+(21354, 4040, 8), -- NPC Bow Attack
+(21354, 4408, 10), -- HP Modifiers
+(21354, 4409, 1), -- MP Modifiers
+(21354, 4410, 10), -- P. Atk. Modifiers
+(21354, 4411, 10), -- M. Atk. Modifiers
+(21354, 4412, 12), -- P. Def. Modifiers
+(21354, 4413, 12), -- M. Def. Modifiers
+(21354, 4414, 2), -- Armor Type
+(21354, 4415, 9), -- Weapon Type
+(21354, 4416, 6), -- Races
+(21354, 4789, 5), -- NPC High Level
 (21354, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Varka Silenos Shaman
-(21355, 4030, 3), -- Might
-(21355, 4031, 3), -- Might
-(21355, 4098, 8), -- Silence
-(21355, 4160, 8), -- Aura Burn
-(21355, 4408, 10), -- HP Increase (2x)
-(21355, 4409, 1), -- MP Increase (1x)
-(21355, 4410, 11), -- Average P. Atk.
-(21355, 4411, 11), -- Average M. Atk.
-(21355, 4412, 11), -- Average P. Def.
-(21355, 4413, 11), -- Average M. Def.
-(21355, 4414, 3), -- Light Armor Type
-(21355, 4415, 6), -- Blunt Weapons
-(21355, 4416, 6), -- Humanoids
-(21355, 4563, 8), -- Solar Flare
-(21355, 4789, 6), -- High Level
+(21355, 4030, 3), -- NPC Clan Might
+(21355, 4031, 3), -- NPC Clan Aegis
+(21355, 4098, 8), -- Magic Skill Block
+(21355, 4160, 8), -- NPC Aura Burn - Magic
+(21355, 4408, 10), -- HP Modifiers
+(21355, 4409, 1), -- MP Modifiers
+(21355, 4410, 11), -- P. Atk. Modifiers
+(21355, 4411, 11), -- M. Atk. Modifiers
+(21355, 4412, 11), -- P. Def. Modifiers
+(21355, 4413, 11), -- M. Def. Modifiers
+(21355, 4414, 3), -- Armor Type
+(21355, 4415, 6), -- Weapon Type
+(21355, 4416, 6), -- Races
+(21355, 4563, 8), -- NPC Solar Flare - Magic
+(21355, 4789, 6), -- NPC High Level
 (21355, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Grazing Nepenthes
-(21356, 4073, 8), -- Stun
-(21356, 4277, 5), -- Resist Poison Attacks
-(21356, 4408, 1), -- HP Increase (1x)
-(21356, 4409, 1), -- MP Increase (1x)
-(21356, 4410, 9), -- Slightly Weak P. Atk.
-(21356, 4411, 9), -- Slightly Weak M. Atk.
-(21356, 4412, 13), -- Slightly Strong P. Def.
-(21356, 4413, 13), -- Slightly Strong M. Def.
-(21356, 4414, 2), -- Standard Type
-(21356, 4415, 6), -- Blunt Weapons
-(21356, 4416, 5), -- Plants
-(21356, 4789, 6), -- High Level
+(21356, 4073, 8), -- Shock
+(21356, 4277, 5), -- Resist Poison
+(21356, 4408, 1), -- HP Modifiers
+(21356, 4409, 1), -- MP Modifiers
+(21356, 4410, 9), -- P. Atk. Modifiers
+(21356, 4411, 9), -- M. Atk. Modifiers
+(21356, 4412, 13), -- P. Def. Modifiers
+(21356, 4413, 13), -- M. Def. Modifiers
+(21356, 4414, 2), -- Armor Type
+(21356, 4415, 6), -- Weapon Type
+(21356, 4416, 5), -- Races
+(21356, 4789, 6), -- NPC High Level
 (21356, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Varka Silenos Priest
-(21357, 4119, 3), -- Decrease Accuracy
-(21357, 4408, 10), -- HP Increase (2x)
-(21357, 4409, 1), -- MP Increase (1x)
-(21357, 4410, 12), -- Slightly Strong P. Atk.
-(21357, 4411, 12), -- Slightly Strong M. Atk.
-(21357, 4412, 10), -- Slightly Weak P. Def.
-(21357, 4413, 10), -- Slightly Weak M. Def.
-(21357, 4414, 2), -- Standard Type
-(21357, 4415, 3), -- One-handed Sword
-(21357, 4416, 6), -- Humanoids
-(21357, 4560, 9), -- Fire Burn
-(21357, 4562, 9), -- Solar Flare
-(21357, 4789, 6), -- High Level
+(21357, 4119, 3), -- Fall in accuracy
+(21357, 4408, 10), -- HP Modifiers
+(21357, 4409, 1), -- MP Modifiers
+(21357, 4410, 12), -- P. Atk. Modifiers
+(21357, 4411, 12), -- M. Atk. Modifiers
+(21357, 4412, 10), -- P. Def. Modifiers
+(21357, 4413, 10), -- M. Def. Modifiers
+(21357, 4414, 2), -- Armor Type
+(21357, 4415, 3), -- Weapon Type
+(21357, 4416, 6), -- Races
+(21357, 4560, 9), -- NPC Fire Burn
+(21357, 4562, 9), -- NPC Solar Flare
+(21357, 4789, 6), -- NPC High Level
 (21357, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Varka Silenos Warrior
-(21358, 4038, 5), -- Decrease Atk. Spd.
-(21358, 4072, 9), -- Stun
-(21358, 4085, 1), -- Critical Damage
+(21358, 4038, 5), -- Decrease Atk.Spd.
+(21358, 4072, 9), -- Shock
+(21358, 4085, 1), -- Critical Power
 (21358, 4086, 1), -- Critical Chance
 (21358, 4317, 1), -- Increase Rage Might
-(21358, 4408, 10), -- HP Increase (2x)
-(21358, 4409, 1), -- MP Increase (1x)
-(21358, 4410, 10), -- Slightly Weak P. Atk.
-(21358, 4411, 10), -- Slightly Weak M. Atk.
-(21358, 4412, 12), -- Slightly Strong P. Def.
-(21358, 4413, 12), -- Slightly Strong M. Def.
-(21358, 4414, 2), -- Standard Type
-(21358, 4415, 3), -- One-handed Sword
-(21358, 4416, 6), -- Humanoids
-(21358, 4572, 9), -- Triple Sonic Slash
-(21358, 4789, 6), -- High Level
+(21358, 4408, 10), -- HP Modifiers
+(21358, 4409, 1), -- MP Modifiers
+(21358, 4410, 10), -- P. Atk. Modifiers
+(21358, 4411, 10), -- M. Atk. Modifiers
+(21358, 4412, 12), -- P. Def. Modifiers
+(21358, 4413, 12), -- M. Def. Modifiers
+(21358, 4414, 2), -- Armor Type
+(21358, 4415, 3), -- Weapon Type
+(21358, 4416, 6), -- Races
+(21358, 4572, 9), -- NPC Triple Sonic Slash
+(21358, 4789, 6), -- NPC High Level
 (21358, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Grazing Bandersnatch
-(21359, 4032, 9), -- Power Strike
-(21359, 4408, 1), -- HP Increase (1x)
-(21359, 4409, 1), -- MP Increase (1x)
-(21359, 4410, 9), -- Slightly Weak P. Atk.
-(21359, 4411, 9), -- Slightly Weak M. Atk.
-(21359, 4412, 13), -- Slightly Strong P. Def.
-(21359, 4413, 13), -- Slightly Strong M. Def.
-(21359, 4414, 2), -- Standard Type
-(21359, 4415, 4), -- One-handed Sword
-(21359, 4416, 3), -- Beasts
-(21359, 4789, 7), -- High Level
+(21359, 4032, 9), -- NPC Strike
+(21359, 4408, 1), -- HP Modifiers
+(21359, 4409, 1), -- MP Modifiers
+(21359, 4410, 9), -- P. Atk. Modifiers
+(21359, 4411, 9), -- M. Atk. Modifiers
+(21359, 4412, 13), -- P. Def. Modifiers
+(21359, 4413, 13), -- M. Def. Modifiers
+(21359, 4414, 2), -- Armor Type
+(21359, 4415, 4), -- Weapon Type
+(21359, 4416, 3), -- Races
+(21359, 4789, 7), -- NPC High Level
 (21359, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Varka Silenos Medium
-(21360, 4033, 9), -- Aura Burn
+(21360, 4033, 9), -- NPC Burn
 (21360, 4035, 9), -- Poison
-(21360, 4160, 9), -- Aura Burn
-(21360, 4408, 10), -- HP Increase (2x)
-(21360, 4409, 1), -- MP Increase (1x)
-(21360, 4410, 11), -- Average P. Atk.
-(21360, 4411, 11), -- Average M. Atk.
-(21360, 4412, 11), -- Average P. Def.
-(21360, 4413, 11), -- Average M. Def.
-(21360, 4414, 3), -- Light Armor Type
-(21360, 4415, 6), -- Blunt Weapons
-(21360, 4416, 6), -- Humanoids
-(21360, 4563, 9), -- Solar Flare
-(21360, 4575, 2), -- Haste
-(21360, 4576, 3), -- Reflect Damage
-(21360, 4789, 7), -- High Level
+(21360, 4160, 9), -- NPC Aura Burn - Magic
+(21360, 4408, 10), -- HP Modifiers
+(21360, 4409, 1), -- MP Modifiers
+(21360, 4410, 11), -- P. Atk. Modifiers
+(21360, 4411, 11), -- M. Atk. Modifiers
+(21360, 4412, 11), -- P. Def. Modifiers
+(21360, 4413, 11), -- M. Def. Modifiers
+(21360, 4414, 3), -- Armor Type
+(21360, 4415, 6), -- Weapon Type
+(21360, 4416, 6), -- Races
+(21360, 4563, 9), -- NPC Solar Flare - Magic
+(21360, 4575, 2), -- NPC Clan Buff - Haste
+(21360, 4576, 3), -- NPC Clan Buff - Damage Shield
+(21360, 4789, 7), -- NPC High Level
 (21360, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Varka Silenos Magus
-(21361, 4099, 2), -- Berserker Spirit
-(21361, 4408, 10), -- HP Increase (2x)
-(21361, 4409, 1), -- MP Increase (1x)
-(21361, 4410, 11), -- Average P. Atk.
-(21361, 4411, 11), -- Average M. Atk.
-(21361, 4412, 11), -- Average P. Def.
-(21361, 4413, 11), -- Average M. Def.
-(21361, 4414, 2), -- Standard Type
-(21361, 4415, 5), -- Blunt Weapons
-(21361, 4416, 6), -- Humanoids
-(21361, 4571, 9), -- Blazing Circle
-(21361, 4573, 9), -- Sonic Blaster
-(21361, 4789, 7), -- High Level
+(21361, 4099, 2), -- NPC Berserk
+(21361, 4408, 10), -- HP Modifiers
+(21361, 4409, 1), -- MP Modifiers
+(21361, 4410, 11), -- P. Atk. Modifiers
+(21361, 4411, 11), -- M. Atk. Modifiers
+(21361, 4412, 11), -- P. Def. Modifiers
+(21361, 4413, 11), -- M. Def. Modifiers
+(21361, 4414, 2), -- Armor Type
+(21361, 4415, 5), -- Weapon Type
+(21361, 4416, 6), -- Races
+(21361, 4571, 9), -- NPC Blazing Circle
+(21361, 4573, 9), -- NPC Sonic Blaster
+(21361, 4789, 7), -- NPC High Level
 (21361, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Varka Silenos Officer
-(21362, 4038, 5), -- Decrease Atk. Spd.
-(21362, 4072, 9), -- Stun
-(21362, 4085, 1), -- Critical Damage
+(21362, 4038, 5), -- Decrease Atk.Spd.
+(21362, 4072, 9), -- Shock
+(21362, 4085, 1), -- Critical Power
 (21362, 4086, 1), -- Critical Chance
 (21362, 4317, 1), -- Increase Rage Might
-(21362, 4408, 10), -- HP Increase (2x)
-(21362, 4409, 1), -- MP Increase (1x)
-(21362, 4410, 10), -- Slightly Weak P. Atk.
-(21362, 4411, 10), -- Slightly Weak M. Atk.
-(21362, 4412, 12), -- Slightly Strong P. Def.
-(21362, 4413, 12), -- Slightly Strong M. Def.
-(21362, 4414, 2), -- Standard Type
-(21362, 4415, 6), -- Blunt Weapons
-(21362, 4416, 6), -- Humanoids
-(21362, 4572, 9), -- Triple Sonic Slash
-(21362, 4789, 7), -- High Level
+(21362, 4408, 10), -- HP Modifiers
+(21362, 4409, 1), -- MP Modifiers
+(21362, 4410, 10), -- P. Atk. Modifiers
+(21362, 4411, 10), -- M. Atk. Modifiers
+(21362, 4412, 12), -- P. Def. Modifiers
+(21362, 4413, 12), -- M. Def. Modifiers
+(21362, 4414, 2), -- Armor Type
+(21362, 4415, 6), -- Weapon Type
+(21362, 4416, 6), -- Races
+(21362, 4572, 9), -- NPC Triple Sonic Slash
+(21362, 4789, 7), -- NPC High Level
 (21362, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Grazing Flava
-(21363, 4032, 9), -- Power Strike
-(21363, 4277, 5), -- Resist Poison Attacks
-(21363, 4408, 10), -- HP Increase (2x)
-(21363, 4409, 1), -- MP Increase (1x)
-(21363, 4410, 9), -- Slightly Weak P. Atk.
-(21363, 4411, 9), -- Slightly Weak M. Atk.
-(21363, 4412, 13), -- Slightly Strong P. Def.
-(21363, 4413, 13), -- Slightly Strong M. Def.
-(21363, 4414, 2), -- Standard Type
-(21363, 4415, 3), -- One-handed Sword
-(21363, 4416, 5), -- Plants
-(21363, 4789, 8), -- High Level
+(21363, 4032, 9), -- NPC Strike
+(21363, 4277, 5), -- Resist Poison
+(21363, 4408, 10), -- HP Modifiers
+(21363, 4409, 1), -- MP Modifiers
+(21363, 4410, 9), -- P. Atk. Modifiers
+(21363, 4411, 9), -- M. Atk. Modifiers
+(21363, 4412, 13), -- P. Def. Modifiers
+(21363, 4413, 13), -- M. Def. Modifiers
+(21363, 4414, 2), -- Armor Type
+(21363, 4415, 3), -- Weapon Type
+(21363, 4416, 5), -- Races
+(21363, 4789, 8), -- NPC High Level
 (21363, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Varka Silenos Priest
-(21364, 4030, 3), -- Might
-(21364, 4119, 3), -- Decrease Accuracy
-(21364, 4160, 9), -- Aura Burn
-(21364, 4408, 1), -- HP Increase (1x)
-(21364, 4409, 1), -- MP Increase (1x)
-(21364, 4410, 12), -- Slightly Strong P. Atk.
-(21364, 4411, 12), -- Slightly Strong M. Atk.
-(21364, 4412, 10), -- Slightly Weak P. Def.
-(21364, 4413, 10), -- Slightly Weak M. Def.
-(21364, 4414, 3), -- Light Armor Type
-(21364, 4415, 6), -- Blunt Weapons
-(21364, 4416, 6), -- Humanoids
-(21364, 4562, 9), -- Solar Flare
-(21364, 4575, 2), -- Haste
-(21364, 4789, 8), -- High Level
+(21364, 4030, 3), -- NPC Clan Might
+(21364, 4119, 3), -- Fall in accuracy
+(21364, 4160, 9), -- NPC Aura Burn - Magic
+(21364, 4408, 1), -- HP Modifiers
+(21364, 4409, 1), -- MP Modifiers
+(21364, 4410, 12), -- P. Atk. Modifiers
+(21364, 4411, 12), -- M. Atk. Modifiers
+(21364, 4412, 10), -- P. Def. Modifiers
+(21364, 4413, 10), -- M. Def. Modifiers
+(21364, 4414, 3), -- Armor Type
+(21364, 4415, 6), -- Weapon Type
+(21364, 4416, 6), -- Races
+(21364, 4562, 9), -- NPC Solar Flare
+(21364, 4575, 2), -- NPC Clan Buff - Haste
+(21364, 4789, 8), -- NPC High Level
 (21364, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Varka Silenos Great Magus
-(21365, 4038, 5), -- Decrease Atk. Spd.
-(21365, 4072, 9), -- Stun
-(21365, 4085, 1), -- Critical Damage
+(21365, 4038, 5), -- Decrease Atk.Spd.
+(21365, 4072, 9), -- Shock
+(21365, 4085, 1), -- Critical Power
 (21365, 4086, 1), -- Critical Chance
 (21365, 4317, 1), -- Increase Rage Might
-(21365, 4408, 10), -- HP Increase (2x)
-(21365, 4409, 1), -- MP Increase (1x)
-(21365, 4410, 13), -- Slightly Strong P. Atk.
-(21365, 4411, 13), -- Slightly Strong M. Atk.
-(21365, 4412, 9), -- Slightly Weak P. Def.
-(21365, 4413, 9), -- Slightly Weak M. Def.
-(21365, 4414, 2), -- Standard Type
-(21365, 4415, 3), -- One-handed Sword
-(21365, 4416, 6), -- Humanoids
-(21365, 4573, 9), -- Sonic Blaster
-(21365, 4789, 8), -- High Level
+(21365, 4408, 10), -- HP Modifiers
+(21365, 4409, 1), -- MP Modifiers
+(21365, 4410, 13), -- P. Atk. Modifiers
+(21365, 4411, 13), -- M. Atk. Modifiers
+(21365, 4412, 9), -- P. Def. Modifiers
+(21365, 4413, 9), -- M. Def. Modifiers
+(21365, 4414, 2), -- Armor Type
+(21365, 4415, 3), -- Weapon Type
+(21365, 4416, 6), -- Races
+(21365, 4573, 9), -- NPC Sonic Blaster
+(21365, 4789, 8), -- NPC High Level
 (21365, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Varka Silenos General
-(21366, 4038, 5), -- Decrease Atk. Spd.
-(21366, 4072, 9), -- Stun
-(21366, 4077, 9), -- Aura Burn
-(21366, 4085, 1), -- Critical Damage
+(21366, 4038, 5), -- Decrease Atk.Spd.
+(21366, 4072, 9), -- Shock
+(21366, 4077, 9), -- NPC Aura Burn
+(21366, 4085, 1), -- Critical Power
 (21366, 4086, 1), -- Critical Chance
 (21366, 4317, 1), -- Increase Rage Might
-(21366, 4408, 10), -- HP Increase (2x)
-(21366, 4409, 1), -- MP Increase (1x)
-(21366, 4410, 11), -- Average P. Atk.
-(21366, 4411, 11), -- Average M. Atk.
-(21366, 4412, 11), -- Average P. Def.
-(21366, 4413, 11), -- Average M. Def.
-(21366, 4414, 2), -- Standard Type
-(21366, 4415, 6), -- Blunt Weapons
-(21366, 4416, 6), -- Humanoids
-(21366, 4789, 8), -- High Level
+(21366, 4408, 10), -- HP Modifiers
+(21366, 4409, 1), -- MP Modifiers
+(21366, 4410, 11), -- P. Atk. Modifiers
+(21366, 4411, 11), -- M. Atk. Modifiers
+(21366, 4412, 11), -- P. Def. Modifiers
+(21366, 4413, 11), -- M. Def. Modifiers
+(21366, 4414, 2), -- Armor Type
+(21366, 4415, 6), -- Weapon Type
+(21366, 4416, 6), -- Races
+(21366, 4789, 8), -- NPC High Level
 (21366, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Grazing Elder Antelope
-(21367, 4408, 1), -- HP Increase (1x)
-(21367, 4409, 1), -- MP Increase (1x)
-(21367, 4410, 9), -- Slightly Weak P. Atk.
-(21367, 4411, 9), -- Slightly Weak M. Atk.
-(21367, 4412, 13), -- Slightly Strong P. Def.
-(21367, 4413, 13), -- Slightly Strong M. Def.
-(21367, 4414, 2), -- Standard Type
-(21367, 4415, 3), -- One-handed Sword
-(21367, 4416, 4), -- Animals
+(21367, 4408, 1), -- HP Modifiers
+(21367, 4409, 1), -- MP Modifiers
+(21367, 4410, 9), -- P. Atk. Modifiers
+(21367, 4411, 9), -- M. Atk. Modifiers
+(21367, 4412, 13), -- P. Def. Modifiers
+(21367, 4413, 13), -- M. Def. Modifiers
+(21367, 4414, 2), -- Armor Type
+(21367, 4415, 3), -- Weapon Type
+(21367, 4416, 4), -- Races
 (21367, 4580, 9), -- Decrease P. Atk.
-(21367, 4789, 9), -- High Level
+(21367, 4789, 9), -- NPC High Level
 (21367, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Varka Silenos Grand Priest
-(21368, 4033, 9), -- Aura Burn
-(21368, 4119, 3), -- Decrease Accuracy
-(21368, 4160, 9), -- Aura Burn
-(21368, 4408, 10), -- HP Increase (2x)
-(21368, 4409, 1), -- MP Increase (1x)
-(21368, 4410, 11), -- Average P. Atk.
-(21368, 4411, 11), -- Average M. Atk.
-(21368, 4412, 11), -- Average P. Def.
-(21368, 4413, 11), -- Average M. Def.
-(21368, 4414, 3), -- Light Armor Type
-(21368, 4415, 6), -- Blunt Weapons
-(21368, 4416, 6), -- Humanoids
-(21368, 4563, 9), -- Solar Flare
-(21368, 4575, 2), -- Haste
-(21368, 4576, 3), -- Reflect Damage
-(21368, 4789, 9), -- High Level
+(21368, 4033, 9), -- NPC Burn
+(21368, 4119, 3), -- Fall in accuracy
+(21368, 4160, 9), -- NPC Aura Burn - Magic
+(21368, 4408, 10), -- HP Modifiers
+(21368, 4409, 1), -- MP Modifiers
+(21368, 4410, 11), -- P. Atk. Modifiers
+(21368, 4411, 11), -- M. Atk. Modifiers
+(21368, 4412, 11), -- P. Def. Modifiers
+(21368, 4413, 11), -- M. Def. Modifiers
+(21368, 4414, 3), -- Armor Type
+(21368, 4415, 6), -- Weapon Type
+(21368, 4416, 6), -- Races
+(21368, 4563, 9), -- NPC Solar Flare - Magic
+(21368, 4575, 2), -- NPC Clan Buff - Haste
+(21368, 4576, 3), -- NPC Clan Buff - Damage Shield
+(21368, 4789, 9), -- NPC High Level
 (21368, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Varka's Commander
-(21369, 4038, 5), -- Decrease Atk. Spd.
-(21369, 4085, 1), -- Critical Damage
+(21369, 4038, 5), -- Decrease Atk.Spd.
+(21369, 4085, 1), -- Critical Power
 (21369, 4086, 1), -- Critical Chance
-(21369, 4408, 10), -- HP Increase (2x)
-(21369, 4409, 1), -- MP Increase (1x)
-(21369, 4410, 11), -- Average P. Atk.
-(21369, 4411, 11), -- Average M. Atk.
-(21369, 4412, 11), -- Average P. Def.
-(21369, 4413, 11), -- Average M. Def.
-(21369, 4414, 2), -- Standard Type
-(21369, 4415, 4), -- One-handed Sword
-(21369, 4416, 6), -- Humanoids
-(21369, 4573, 9), -- Sonic Blaster
-(21369, 4575, 2), -- Haste
-(21369, 4789, 7), -- High Level
+(21369, 4408, 10), -- HP Modifiers
+(21369, 4409, 1), -- MP Modifiers
+(21369, 4410, 11), -- P. Atk. Modifiers
+(21369, 4411, 11), -- M. Atk. Modifiers
+(21369, 4412, 11), -- P. Def. Modifiers
+(21369, 4413, 11), -- M. Def. Modifiers
+(21369, 4414, 2), -- Armor Type
+(21369, 4415, 4), -- Weapon Type
+(21369, 4416, 6), -- Races
+(21369, 4573, 9), -- NPC Sonic Blaster
+(21369, 4575, 2), -- NPC Clan Buff - Haste
+(21369, 4789, 7), -- NPC High Level
 (21369, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Varka's Elite Guard
-(21370, 4408, 10), -- HP Increase (2x)
-(21370, 4409, 1), -- MP Increase (1x)
-(21370, 4410, 13), -- Slightly Strong P. Atk.
-(21370, 4411, 13), -- Slightly Strong M. Atk.
-(21370, 4412, 9), -- Slightly Weak P. Def.
-(21370, 4413, 9), -- Slightly Weak M. Def.
-(21370, 4414, 2), -- Standard Type
-(21370, 4415, 3), -- One-handed Sword
-(21370, 4416, 6), -- Humanoids
-(21370, 4572, 9), -- Triple Sonic Slash
-(21370, 4789, 6), -- High Level
+(21370, 4408, 10), -- HP Modifiers
+(21370, 4409, 1), -- MP Modifiers
+(21370, 4410, 13), -- P. Atk. Modifiers
+(21370, 4411, 13), -- M. Atk. Modifiers
+(21370, 4412, 9), -- P. Def. Modifiers
+(21370, 4413, 9), -- M. Def. Modifiers
+(21370, 4414, 2), -- Armor Type
+(21370, 4415, 3), -- Weapon Type
+(21370, 4416, 6), -- Races
+(21370, 4572, 9), -- NPC Triple Sonic Slash
+(21370, 4789, 6), -- NPC High Level
 (21370, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Varka's Head Magus
-(21371, 4408, 10), -- HP Increase (2x)
-(21371, 4409, 1), -- MP Increase (1x)
-(21371, 4410, 12), -- Slightly Strong P. Atk.
-(21371, 4411, 12), -- Slightly Strong M. Atk.
-(21371, 4412, 10), -- Slightly Weak P. Def.
-(21371, 4413, 10), -- Slightly Weak M. Def.
-(21371, 4414, 3), -- Light Armor Type
-(21371, 4415, 6), -- Blunt Weapons
-(21371, 4416, 6), -- Humanoids
-(21371, 4562, 9), -- Solar Flare
-(21371, 4789, 9), -- High Level
+(21371, 4408, 10), -- HP Modifiers
+(21371, 4409, 1), -- MP Modifiers
+(21371, 4410, 12), -- P. Atk. Modifiers
+(21371, 4411, 12), -- M. Atk. Modifiers
+(21371, 4412, 10), -- P. Def. Modifiers
+(21371, 4413, 10), -- M. Def. Modifiers
+(21371, 4414, 3), -- Armor Type
+(21371, 4415, 6), -- Weapon Type
+(21371, 4416, 6), -- Races
+(21371, 4562, 9), -- NPC Solar Flare
+(21371, 4789, 9), -- NPC High Level
 (21371, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Varka's Head Guard
-(21372, 4408, 1), -- HP Increase (1x)
-(21372, 4409, 1), -- MP Increase (1x)
-(21372, 4410, 9), -- Slightly Weak P. Atk.
-(21372, 4411, 9), -- Slightly Weak M. Atk.
-(21372, 4412, 13), -- Slightly Strong P. Def.
-(21372, 4413, 13), -- Slightly Strong M. Def.
-(21372, 4414, 2), -- Standard Type
-(21372, 4415, 3), -- One-handed Sword
-(21372, 4416, 6), -- Humanoids
-(21372, 4573, 9), -- Sonic Blaster
-(21372, 4789, 8), -- High Level
+(21372, 4408, 1), -- HP Modifiers
+(21372, 4409, 1), -- MP Modifiers
+(21372, 4410, 9), -- P. Atk. Modifiers
+(21372, 4411, 9), -- M. Atk. Modifiers
+(21372, 4412, 13), -- P. Def. Modifiers
+(21372, 4413, 13), -- M. Def. Modifiers
+(21372, 4414, 2), -- Armor Type
+(21372, 4415, 3), -- Weapon Type
+(21372, 4416, 6), -- Races
+(21372, 4573, 9), -- NPC Sonic Blaster
+(21372, 4789, 8), -- NPC High Level
 (21372, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Varka's Prophet
-(21373, 4030, 3), -- Might
-(21373, 4160, 9), -- Aura Burn
-(21373, 4408, 10), -- HP Increase (2x)
-(21373, 4409, 1), -- MP Increase (1x)
-(21373, 4410, 11), -- Average P. Atk.
-(21373, 4411, 11), -- Average M. Atk.
-(21373, 4412, 11), -- Average P. Def.
-(21373, 4413, 11), -- Average M. Def.
-(21373, 4414, 2), -- Standard Type
-(21373, 4415, 6), -- Blunt Weapons
-(21373, 4416, 6), -- Humanoids
-(21373, 4563, 9), -- Solar Flare
-(21373, 4575, 2), -- Haste
-(21373, 4789, 10), -- High Level
+(21373, 4030, 3), -- NPC Clan Might
+(21373, 4160, 9), -- NPC Aura Burn - Magic
+(21373, 4408, 10), -- HP Modifiers
+(21373, 4409, 1), -- MP Modifiers
+(21373, 4410, 11), -- P. Atk. Modifiers
+(21373, 4411, 11), -- M. Atk. Modifiers
+(21373, 4412, 11), -- P. Def. Modifiers
+(21373, 4413, 11), -- M. Def. Modifiers
+(21373, 4414, 2), -- Armor Type
+(21373, 4415, 6), -- Weapon Type
+(21373, 4416, 6), -- Races
+(21373, 4563, 9), -- NPC Solar Flare - Magic
+(21373, 4575, 2), -- NPC Clan Buff - Haste
+(21373, 4789, 10), -- NPC High Level
 (21373, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Prophet's Guard
-(21374, 4408, 1), -- HP Increase (1x)
-(21374, 4409, 1), -- MP Increase (1x)
-(21374, 4410, 11), -- Average P. Atk.
-(21374, 4411, 11), -- Average M. Atk.
-(21374, 4412, 11), -- Average P. Def.
-(21374, 4413, 11), -- Average M. Def.
-(21374, 4414, 2), -- Standard Type
-(21374, 4415, 3), -- One-handed Sword
-(21374, 4416, 6), -- Humanoids
-(21374, 4573, 9), -- Sonic Blaster
-(21374, 4789, 9), -- High Level
+(21374, 4408, 1), -- HP Modifiers
+(21374, 4409, 1), -- MP Modifiers
+(21374, 4410, 11), -- P. Atk. Modifiers
+(21374, 4411, 11), -- M. Atk. Modifiers
+(21374, 4412, 11), -- P. Def. Modifiers
+(21374, 4413, 11), -- M. Def. Modifiers
+(21374, 4414, 2), -- Armor Type
+(21374, 4415, 3), -- Weapon Type
+(21374, 4416, 6), -- Races
+(21374, 4573, 9), -- NPC Sonic Blaster
+(21374, 4789, 9), -- NPC High Level
 (21374, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Disciple of Prophet
-(21375, 4066, 9), -- Twister
-(21375, 4098, 9), -- Silence
-(21375, 4408, 1), -- HP Increase (1x)
-(21375, 4409, 1), -- MP Increase (1x)
-(21375, 4410, 11), -- Average P. Atk.
-(21375, 4411, 11), -- Average M. Atk.
-(21375, 4412, 11), -- Average P. Def.
-(21375, 4413, 11), -- Average M. Def.
-(21375, 4414, 2), -- Standard Type
-(21375, 4415, 3), -- One-handed Sword
-(21375, 4416, 6), -- Humanoids
-(21375, 4789, 9), -- High Level
+(21375, 4066, 9), -- NPC Twister
+(21375, 4098, 9), -- Magic Skill Block
+(21375, 4408, 1), -- HP Modifiers
+(21375, 4409, 1), -- MP Modifiers
+(21375, 4410, 11), -- P. Atk. Modifiers
+(21375, 4411, 11), -- M. Atk. Modifiers
+(21375, 4412, 11), -- P. Def. Modifiers
+(21375, 4413, 11), -- M. Def. Modifiers
+(21375, 4414, 2), -- Armor Type
+(21375, 4415, 3), -- Weapon Type
+(21375, 4416, 6), -- Races
+(21375, 4789, 9), -- NPC High Level
 (21375, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Scarlet Stakato Worker
-(21376, 4274, 1), -- Blunt Weapon Weak Point
-(21376, 4408, 13), -- HP Increase (5x)
-(21376, 4409, 1), -- MP Increase (1x)
-(21376, 4410, 12), -- Slightly Strong P. Atk.
-(21376, 4411, 12), -- Slightly Strong M. Atk.
-(21376, 4412, 10), -- Slightly Weak P. Def.
-(21376, 4413, 10), -- Slightly Weak M. Def.
-(21376, 4414, 2), -- Standard Type
-(21376, 4415, 3), -- One-handed Sword
-(21376, 4416, 6), -- Humanoids
+(21376, 4274, 1), -- Blunt Attack Weak Point
+(21376, 4408, 13), -- HP Modifiers
+(21376, 4409, 1), -- MP Modifiers
+(21376, 4410, 12), -- P. Atk. Modifiers
+(21376, 4411, 12), -- M. Atk. Modifiers
+(21376, 4412, 10), -- P. Def. Modifiers
+(21376, 4413, 10), -- M. Def. Modifiers
+(21376, 4414, 2), -- Armor Type
+(21376, 4415, 3), -- Weapon Type
+(21376, 4416, 6), -- Races
 (21376, 4579, 8), -- Bleed
-(21376, 4614, 8), -- Death Bomb
-(21376, 4789, 5), -- High Level
+(21376, 4614, 8), -- NPC Death Bomb
+(21376, 4789, 5), -- NPC High Level
 -- Scarlet Stakato Soldier
-(21377, 4274, 1), -- Blunt Weapon Weak Point
-(21377, 4408, 13), -- HP Increase (5x)
-(21377, 4409, 1), -- MP Increase (1x)
-(21377, 4410, 12), -- Slightly Strong P. Atk.
-(21377, 4411, 12), -- Slightly Strong M. Atk.
-(21377, 4412, 10), -- Slightly Weak P. Def.
-(21377, 4413, 10), -- Slightly Weak M. Def.
-(21377, 4414, 3), -- Light Armor Type
-(21377, 4415, 3), -- One-handed Sword
-(21377, 4416, 6), -- Humanoids
+(21377, 4274, 1), -- Blunt Attack Weak Point
+(21377, 4408, 13), -- HP Modifiers
+(21377, 4409, 1), -- MP Modifiers
+(21377, 4410, 12), -- P. Atk. Modifiers
+(21377, 4411, 12), -- M. Atk. Modifiers
+(21377, 4412, 10), -- P. Def. Modifiers
+(21377, 4413, 10), -- M. Def. Modifiers
+(21377, 4414, 3), -- Armor Type
+(21377, 4415, 3), -- Weapon Type
+(21377, 4416, 6), -- Races
 (21377, 4580, 8), -- Decrease P. Atk.
-(21377, 4614, 8), -- Death Bomb
-(21377, 4789, 5), -- High Level
+(21377, 4614, 8), -- NPC Death Bomb
+(21377, 4789, 5), -- NPC High Level
 -- Scarlet Stakato Noble
-(21378, 4408, 13), -- HP Increase (5x)
-(21378, 4409, 1), -- MP Increase (1x)
-(21378, 4410, 12), -- Slightly Strong P. Atk.
-(21378, 4411, 12), -- Slightly Strong M. Atk.
-(21378, 4412, 17), -- Very Strong P. Def.
-(21378, 4413, 10), -- Slightly Weak M. Def.
-(21378, 4414, 2), -- Standard Type
-(21378, 4415, 3), -- One-handed Sword
-(21378, 4416, 6), -- Humanoids
+(21378, 4408, 13), -- HP Modifiers
+(21378, 4409, 1), -- MP Modifiers
+(21378, 4410, 12), -- P. Atk. Modifiers
+(21378, 4411, 12), -- M. Atk. Modifiers
+(21378, 4412, 17), -- P. Def. Modifiers
+(21378, 4413, 10), -- M. Def. Modifiers
+(21378, 4414, 2), -- Armor Type
+(21378, 4415, 3), -- Weapon Type
+(21378, 4416, 6), -- Races
 (21378, 4581, 8), -- Hold
-(21378, 4614, 8), -- Death Bomb
-(21378, 4789, 6), -- High Level
+(21378, 4614, 8), -- NPC Death Bomb
+(21378, 4789, 6), -- NPC High Level
 -- Tepra Scorpion
-(21379, 4037, 2), -- Weakness
+(21379, 4037, 2), -- Decrease P.Atk
 (21379, 4117, 8), -- Paralysis
-(21379, 4274, 1), -- Blunt Weapon Weak Point
-(21379, 4408, 13), -- HP Increase (5x)
-(21379, 4409, 1), -- MP Increase (1x)
-(21379, 4410, 12), -- Slightly Strong P. Atk.
-(21379, 4411, 12), -- Slightly Strong M. Atk.
-(21379, 4412, 10), -- Slightly Weak P. Def.
-(21379, 4413, 10), -- Slightly Weak M. Def.
-(21379, 4414, 2), -- Standard Type
-(21379, 4415, 7), -- Daggers
-(21379, 4416, 12), -- Bugs
+(21379, 4274, 1), -- Blunt Attack Weak Point
+(21379, 4408, 13), -- HP Modifiers
+(21379, 4409, 1), -- MP Modifiers
+(21379, 4410, 12), -- P. Atk. Modifiers
+(21379, 4411, 12), -- M. Atk. Modifiers
+(21379, 4412, 10), -- P. Def. Modifiers
+(21379, 4413, 10), -- M. Def. Modifiers
+(21379, 4414, 2), -- Armor Type
+(21379, 4415, 7), -- Weapon Type
+(21379, 4416, 12), -- Races
 (21379, 4437, 4), -- Greater Resist Bleeding
-(21379, 4614, 8), -- Death Bomb
-(21379, 4789, 6), -- High Level
+(21379, 4614, 8), -- NPC Death Bomb
+(21379, 4789, 6), -- NPC High Level
 -- Tepra Scarab
-(21380, 4119, 3), -- Decrease Accuracy
-(21380, 4274, 1), -- Blunt Weapon Weak Point
-(21380, 4408, 13), -- HP Increase (5x)
-(21380, 4409, 1), -- MP Increase (1x)
-(21380, 4410, 12), -- Slightly Strong P. Atk.
-(21380, 4411, 12), -- Slightly Strong M. Atk.
-(21380, 4412, 10), -- Slightly Weak P. Def.
-(21380, 4413, 10), -- Slightly Weak M. Def.
-(21380, 4414, 2), -- Standard Type
-(21380, 4415, 5), -- Blunt Weapons
-(21380, 4416, 12), -- Bugs
+(21380, 4119, 3), -- Fall in accuracy
+(21380, 4274, 1), -- Blunt Attack Weak Point
+(21380, 4408, 13), -- HP Modifiers
+(21380, 4409, 1), -- MP Modifiers
+(21380, 4410, 12), -- P. Atk. Modifiers
+(21380, 4411, 12), -- M. Atk. Modifiers
+(21380, 4412, 10), -- P. Def. Modifiers
+(21380, 4413, 10), -- M. Def. Modifiers
+(21380, 4414, 2), -- Armor Type
+(21380, 4415, 5), -- Weapon Type
+(21380, 4416, 12), -- Races
 (21380, 4437, 4), -- Greater Resist Bleeding
 (21380, 4582, 8), -- Poison
-(21380, 4614, 8), -- Death Bomb
-(21380, 4789, 6), -- High Level
+(21380, 4614, 8), -- NPC Death Bomb
+(21380, 4789, 6), -- NPC High Level
 -- Assassin Beetle
-(21381, 4244, 9), -- Wild Sweep
-(21381, 4274, 1), -- Blunt Weapon Weak Point
-(21381, 4408, 13), -- HP Increase (5x)
-(21381, 4409, 1), -- MP Increase (1x)
-(21381, 4410, 12), -- Slightly Strong P. Atk.
-(21381, 4411, 12), -- Slightly Strong M. Atk.
-(21381, 4412, 13), -- Slightly Strong P. Def.
-(21381, 4413, 10), -- Slightly Weak M. Def.
-(21381, 4414, 2), -- Standard Type
-(21381, 4415, 3), -- One-handed Sword
-(21381, 4416, 12), -- Bugs
+(21381, 4244, 9), -- NPC Wild Sweep
+(21381, 4274, 1), -- Blunt Attack Weak Point
+(21381, 4408, 13), -- HP Modifiers
+(21381, 4409, 1), -- MP Modifiers
+(21381, 4410, 12), -- P. Atk. Modifiers
+(21381, 4411, 12), -- M. Atk. Modifiers
+(21381, 4412, 13), -- P. Def. Modifiers
+(21381, 4413, 10), -- M. Def. Modifiers
+(21381, 4414, 2), -- Armor Type
+(21381, 4415, 3), -- Weapon Type
+(21381, 4416, 12), -- Races
 (21381, 4437, 4), -- Greater Resist Bleeding
-(21381, 4573, 9), -- Sonic Blaster
-(21381, 4614, 9), -- Death Bomb
-(21381, 4789, 6), -- High Level
+(21381, 4573, 9), -- NPC Sonic Blaster
+(21381, 4614, 9), -- NPC Death Bomb
+(21381, 4789, 6), -- NPC High Level
 -- Mercenary of Destruction
-(21382, 4037, 2), -- Weakness
-(21382, 4072, 9), -- Stun
-(21382, 4274, 1), -- Blunt Weapon Weak Point
-(21382, 4287, 5), -- Resist Hold Attacks
+(21382, 4037, 2), -- Decrease P.Atk
+(21382, 4072, 9), -- Shock
+(21382, 4274, 1), -- Blunt Attack Weak Point
+(21382, 4287, 5), -- Resist Hold
 (21382, 4317, 1), -- Increase Rage Might
-(21382, 4408, 13), -- HP Increase (5x)
-(21382, 4409, 1), -- MP Increase (1x)
-(21382, 4410, 12), -- Slightly Strong P. Atk.
-(21382, 4411, 12), -- Slightly Strong M. Atk.
-(21382, 4412, 10), -- Slightly Weak P. Def.
-(21382, 4413, 18), -- Extremely Strong M. Def.
-(21382, 4414, 2), -- Standard Type
-(21382, 4415, 3), -- One-handed Sword
-(21382, 4416, 1), -- Undead
+(21382, 4408, 13), -- HP Modifiers
+(21382, 4409, 1), -- MP Modifiers
+(21382, 4410, 12), -- P. Atk. Modifiers
+(21382, 4411, 12), -- M. Atk. Modifiers
+(21382, 4412, 10), -- P. Def. Modifiers
+(21382, 4413, 18), -- M. Def. Modifiers
+(21382, 4414, 2), -- Armor Type
+(21382, 4415, 3), -- Weapon Type
+(21382, 4416, 1), -- Races
 (21382, 4584, 9), -- Reducing P. Def Stun
-(21382, 4614, 9), -- Death Bomb
-(21382, 4789, 6), -- High Level
+(21382, 4614, 9), -- NPC Death Bomb
+(21382, 4789, 6), -- NPC High Level
 -- Knight of Destruction
-(21383, 4274, 1), -- Blunt Weapon Weak Point
-(21383, 4408, 13), -- HP Increase (5x)
-(21383, 4409, 1), -- MP Increase (1x)
-(21383, 4410, 12), -- Slightly Strong P. Atk.
-(21383, 4411, 12), -- Slightly Strong M. Atk.
-(21383, 4412, 17), -- Very Strong P. Def.
-(21383, 4413, 10), -- Slightly Weak M. Def.
-(21383, 4414, 2), -- Standard Type
-(21383, 4415, 3), -- One-handed Sword
-(21383, 4416, 1), -- Undead
+(21383, 4274, 1), -- Blunt Attack Weak Point
+(21383, 4408, 13), -- HP Modifiers
+(21383, 4409, 1), -- MP Modifiers
+(21383, 4410, 12), -- P. Atk. Modifiers
+(21383, 4411, 12), -- M. Atk. Modifiers
+(21383, 4412, 17), -- P. Def. Modifiers
+(21383, 4413, 10), -- M. Def. Modifiers
+(21383, 4414, 2), -- Armor Type
+(21383, 4415, 3), -- Weapon Type
+(21383, 4416, 1), -- Races
 (21383, 4579, 9), -- Bleed
 (21383, 4586, 9), -- Decrease Evasion
-(21383, 4614, 9), -- Death Bomb
-(21383, 4789, 6), -- High Level
+(21383, 4614, 9), -- NPC Death Bomb
+(21383, 4789, 6), -- NPC High Level
 -- Necromancer of Destruction
-(21384, 4031, 3), -- Might
-(21384, 4072, 9), -- Stun
+(21384, 4031, 3), -- NPC Clan Aegis
+(21384, 4072, 9), -- Shock
 (21384, 4153, 9), -- Decrease Speed
-(21384, 4408, 13), -- HP Increase (5x)
-(21384, 4409, 1), -- MP Increase (1x)
-(21384, 4410, 12), -- Slightly Strong P. Atk.
-(21384, 4411, 12), -- Slightly Strong M. Atk.
-(21384, 4412, 13), -- Slightly Strong P. Def.
-(21384, 4413, 10), -- Slightly Weak M. Def.
-(21384, 4414, 3), -- Light Armor Type
-(21384, 4415, 5), -- Blunt Weapons
-(21384, 4416, 9), -- Demons
-(21384, 4614, 9), -- Death Bomb
-(21384, 4789, 7), -- High Level
+(21384, 4408, 13), -- HP Modifiers
+(21384, 4409, 1), -- MP Modifiers
+(21384, 4410, 12), -- P. Atk. Modifiers
+(21384, 4411, 12), -- M. Atk. Modifiers
+(21384, 4412, 13), -- P. Def. Modifiers
+(21384, 4413, 10), -- M. Def. Modifiers
+(21384, 4414, 3), -- Armor Type
+(21384, 4415, 5), -- Weapon Type
+(21384, 4416, 9), -- Races
+(21384, 4614, 9), -- NPC Death Bomb
+(21384, 4789, 7), -- NPC High Level
 -- Lavastone Golem
-(21385, 4274, 1), -- Blunt Weapon Weak Point
-(21385, 4408, 13), -- HP Increase (5x)
-(21385, 4409, 1), -- MP Increase (1x)
-(21385, 4410, 12), -- Slightly Strong P. Atk.
-(21385, 4411, 12), -- Slightly Strong M. Atk.
-(21385, 4412, 14), -- Strong P. Def.
-(21385, 4413, 10), -- Slightly Weak M. Def.
-(21385, 4414, 2), -- Standard Type
-(21385, 4415, 5), -- Blunt Weapons
-(21385, 4416, 2), -- Magic Creatures
+(21385, 4274, 1), -- Blunt Attack Weak Point
+(21385, 4408, 13), -- HP Modifiers
+(21385, 4409, 1), -- MP Modifiers
+(21385, 4410, 12), -- P. Atk. Modifiers
+(21385, 4411, 12), -- M. Atk. Modifiers
+(21385, 4412, 14), -- P. Def. Modifiers
+(21385, 4413, 10), -- M. Def. Modifiers
+(21385, 4414, 2), -- Armor Type
+(21385, 4415, 5), -- Weapon Type
+(21385, 4416, 2), -- Races
 (21385, 4594, 9), -- Decrease P. Def.
-(21385, 4614, 9), -- Death Bomb
-(21385, 4789, 7), -- High Level
+(21385, 4614, 9), -- NPC Death Bomb
+(21385, 4789, 7), -- NPC High Level
 -- Magma Golem
-(21386, 4274, 1), -- Blunt Weapon Weak Point
-(21386, 4408, 13), -- HP Increase (5x)
-(21386, 4409, 1), -- MP Increase (1x)
-(21386, 4410, 12), -- Slightly Strong P. Atk.
-(21386, 4411, 12), -- Slightly Strong M. Atk.
-(21386, 4412, 15), -- Strong P. Def.
-(21386, 4413, 10), -- Slightly Weak M. Def.
-(21386, 4414, 2), -- Standard Type
-(21386, 4415, 6), -- Blunt Weapons
-(21386, 4416, 2), -- Magic Creatures
+(21386, 4274, 1), -- Blunt Attack Weak Point
+(21386, 4408, 13), -- HP Modifiers
+(21386, 4409, 1), -- MP Modifiers
+(21386, 4410, 12), -- P. Atk. Modifiers
+(21386, 4411, 12), -- M. Atk. Modifiers
+(21386, 4412, 15), -- P. Def. Modifiers
+(21386, 4413, 10), -- M. Def. Modifiers
+(21386, 4414, 2), -- Armor Type
+(21386, 4415, 6), -- Weapon Type
+(21386, 4416, 2), -- Races
 (21386, 4591, 9), -- Decrease Speed
-(21386, 4614, 9), -- Death Bomb
-(21386, 4789, 7), -- High Level
+(21386, 4614, 9), -- NPC Death Bomb
+(21386, 4789, 7), -- NPC High Level
 -- Arimanes of Destruction
-(21387, 4157, 9), -- Blaze
-(21387, 4408, 13), -- HP Increase (5x)
-(21387, 4409, 1), -- MP Increase (1x)
-(21387, 4410, 12), -- Slightly Strong P. Atk.
-(21387, 4411, 12), -- Slightly Strong M. Atk.
-(21387, 4412, 10), -- Slightly Weak P. Def.
-(21387, 4413, 10), -- Slightly Weak M. Def.
-(21387, 4414, 2), -- Standard Type
-(21387, 4415, 4), -- One-handed Sword
-(21387, 4416, 9), -- Demons
+(21387, 4157, 9), -- NPC Blaze - Magic
+(21387, 4408, 13), -- HP Modifiers
+(21387, 4409, 1), -- MP Modifiers
+(21387, 4410, 12), -- P. Atk. Modifiers
+(21387, 4411, 12), -- M. Atk. Modifiers
+(21387, 4412, 10), -- P. Def. Modifiers
+(21387, 4413, 10), -- M. Def. Modifiers
+(21387, 4414, 2), -- Armor Type
+(21387, 4415, 4), -- Weapon Type
+(21387, 4416, 9), -- Races
 (21387, 4589, 9), -- Decrease Speed
-(21387, 4614, 9), -- Death Bomb
-(21387, 4789, 7), -- High Level
+(21387, 4614, 9), -- NPC Death Bomb
+(21387, 4789, 7), -- NPC High Level
 -- Iblis of Destruction
-(21388, 4141, 9), -- Wind Fist
-(21388, 4389, 4), -- Resist Mental Attacks
-(21388, 4408, 14), -- HP Increase (6x)
-(21388, 4409, 1), -- MP Increase (1x)
-(21388, 4410, 12), -- Slightly Strong P. Atk.
-(21388, 4411, 12), -- Slightly Strong M. Atk.
-(21388, 4412, 10), -- Slightly Weak P. Def.
-(21388, 4413, 10), -- Slightly Weak M. Def.
-(21388, 4414, 2), -- Standard Type
-(21388, 4415, 3), -- One-handed Sword
-(21388, 4416, 9), -- Demons
+(21388, 4141, 9), -- NPC Wind Fist
+(21388, 4389, 4), -- Resist Mental Derangement
+(21388, 4408, 14), -- HP Modifiers
+(21388, 4409, 1), -- MP Modifiers
+(21388, 4410, 12), -- P. Atk. Modifiers
+(21388, 4411, 12), -- M. Atk. Modifiers
+(21388, 4412, 10), -- P. Def. Modifiers
+(21388, 4413, 10), -- M. Def. Modifiers
+(21388, 4414, 2), -- Armor Type
+(21388, 4415, 3), -- Weapon Type
+(21388, 4416, 9), -- Races
 (21388, 4438, 2), -- Greater Resist Sleep
-(21388, 4595, 3), -- Acumen Shield
-(21388, 4614, 9), -- Death Bomb
-(21388, 4789, 7), -- High Level
+(21388, 4595, 3), -- NPC Clan Buff - Acumen Shield
+(21388, 4614, 9), -- NPC Death Bomb
+(21388, 4789, 7), -- NPC High Level
 -- Balor of Destruction
-(21389, 4408, 14), -- HP Increase (6x)
-(21389, 4409, 1), -- MP Increase (1x)
-(21389, 4410, 12), -- Slightly Strong P. Atk.
-(21389, 4411, 12), -- Slightly Strong M. Atk.
-(21389, 4412, 10), -- Slightly Weak P. Def.
-(21389, 4413, 16), -- Very Strong M. Def.
-(21389, 4414, 2), -- Standard Type
-(21389, 4415, 3), -- One-handed Sword
-(21389, 4416, 9), -- Demons
+(21389, 4408, 14), -- HP Modifiers
+(21389, 4409, 1), -- MP Modifiers
+(21389, 4410, 12), -- P. Atk. Modifiers
+(21389, 4411, 12), -- M. Atk. Modifiers
+(21389, 4412, 10), -- P. Def. Modifiers
+(21389, 4413, 16), -- M. Def. Modifiers
+(21389, 4414, 2), -- Armor Type
+(21389, 4415, 3), -- Weapon Type
+(21389, 4416, 9), -- Races
 (21389, 4597, 9), -- Bleed
 (21389, 4599, 9), -- Decrease Speed
-(21389, 4614, 9), -- Death Bomb
-(21389, 4789, 8), -- High Level
+(21389, 4614, 9), -- NPC Death Bomb
+(21389, 4789, 8), -- NPC High Level
 -- Ashuras of Destruction
-(21390, 4030, 3), -- Might
-(21390, 4072, 9), -- Stun
-(21390, 4408, 14), -- HP Increase (6x)
-(21390, 4409, 1), -- MP Increase (1x)
-(21390, 4410, 12), -- Slightly Strong P. Atk.
-(21390, 4411, 12), -- Slightly Strong M. Atk.
-(21390, 4412, 17), -- Very Strong P. Def.
-(21390, 4413, 10), -- Slightly Weak M. Def.
-(21390, 4414, 2), -- Standard Type
-(21390, 4415, 3), -- One-handed Sword
-(21390, 4416, 9), -- Demons
-(21390, 4614, 9), -- Death Bomb
-(21390, 4789, 8), -- High Level
+(21390, 4030, 3), -- NPC Clan Might
+(21390, 4072, 9), -- Shock
+(21390, 4408, 14), -- HP Modifiers
+(21390, 4409, 1), -- MP Modifiers
+(21390, 4410, 12), -- P. Atk. Modifiers
+(21390, 4411, 12), -- M. Atk. Modifiers
+(21390, 4412, 17), -- P. Def. Modifiers
+(21390, 4413, 10), -- M. Def. Modifiers
+(21390, 4414, 2), -- Armor Type
+(21390, 4415, 3), -- Weapon Type
+(21390, 4416, 9), -- Races
+(21390, 4614, 9), -- NPC Death Bomb
+(21390, 4789, 8), -- NPC High Level
 -- Lavasillisk
-(21391, 4078, 9), -- Flame Strike
-(21391, 4408, 14), -- HP Increase (6x)
-(21391, 4409, 1), -- MP Increase (1x)
-(21391, 4410, 12), -- Slightly Strong P. Atk.
-(21391, 4411, 12), -- Slightly Strong M. Atk.
-(21391, 4412, 10), -- Slightly Weak P. Def.
-(21391, 4413, 10), -- Slightly Weak M. Def.
-(21391, 4414, 2), -- Standard Type
-(21391, 4415, 3), -- One-handed Sword
-(21391, 4416, 3), -- Beasts
-(21391, 4601, 3), -- Acumen Focus
-(21391, 4614, 9), -- Death Bomb
-(21391, 4789, 8), -- High Level
+(21391, 4078, 9), -- NPC Flamestrike
+(21391, 4408, 14), -- HP Modifiers
+(21391, 4409, 1), -- MP Modifiers
+(21391, 4410, 12), -- P. Atk. Modifiers
+(21391, 4411, 12), -- M. Atk. Modifiers
+(21391, 4412, 10), -- P. Def. Modifiers
+(21391, 4413, 10), -- M. Def. Modifiers
+(21391, 4414, 2), -- Armor Type
+(21391, 4415, 3), -- Weapon Type
+(21391, 4416, 3), -- Races
+(21391, 4601, 3), -- NPC Clan Buff - Acumen Focus
+(21391, 4614, 9), -- NPC Death Bomb
+(21391, 4789, 8), -- NPC High Level
 -- Blazing Ifrit
-(21392, 4229, 9), -- Double Wind Fist
-(21392, 4408, 14), -- HP Increase (6x)
-(21392, 4409, 1), -- MP Increase (1x)
-(21392, 4410, 12), -- Slightly Strong P. Atk.
-(21392, 4411, 12), -- Slightly Strong M. Atk.
-(21392, 4412, 17), -- Very Strong P. Def.
-(21392, 4413, 10), -- Slightly Weak M. Def.
-(21392, 4414, 2), -- Standard Type
-(21392, 4415, 3), -- One-handed Sword
-(21392, 4416, 7), -- Spirits
+(21392, 4229, 9), -- NPC Double Wind Fist
+(21392, 4408, 14), -- HP Modifiers
+(21392, 4409, 1), -- MP Modifiers
+(21392, 4410, 12), -- P. Atk. Modifiers
+(21392, 4411, 12), -- M. Atk. Modifiers
+(21392, 4412, 17), -- P. Def. Modifiers
+(21392, 4413, 10), -- M. Def. Modifiers
+(21392, 4414, 2), -- Armor Type
+(21392, 4415, 3), -- Weapon Type
+(21392, 4416, 7), -- Races
 (21392, 4605, 9), -- Surrender To Fire
-(21392, 4614, 9), -- Death Bomb
-(21392, 4789, 8), -- High Level
+(21392, 4614, 9), -- NPC Death Bomb
+(21392, 4789, 8), -- NPC High Level
 -- Magma Drake
-(21393, 4408, 14), -- HP Increase (6x)
-(21393, 4409, 1), -- MP Increase (1x)
-(21393, 4410, 12), -- Slightly Strong P. Atk.
-(21393, 4411, 12), -- Slightly Strong M. Atk.
-(21393, 4412, 14), -- Strong P. Def.
-(21393, 4413, 10), -- Slightly Weak M. Def.
-(21393, 4414, 2), -- Standard Type
-(21393, 4415, 3), -- One-handed Sword
-(21393, 4416, 10), -- Dragons
+(21393, 4408, 14), -- HP Modifiers
+(21393, 4409, 1), -- MP Modifiers
+(21393, 4410, 12), -- P. Atk. Modifiers
+(21393, 4411, 12), -- M. Atk. Modifiers
+(21393, 4412, 14), -- P. Def. Modifiers
+(21393, 4413, 10), -- M. Def. Modifiers
+(21393, 4414, 2), -- Armor Type
+(21393, 4415, 3), -- Weapon Type
+(21393, 4416, 10), -- Races
 (21393, 4590, 9), -- Decrease Speed
 (21393, 4605, 9), -- Surrender To Fire
-(21393, 4614, 10), -- Death Bomb
-(21393, 4789, 9), -- High Level
+(21393, 4614, 10), -- NPC Death Bomb
+(21393, 4789, 9), -- NPC High Level
 -- Lavasaurus
-(21394, 4274, 1), -- Blunt Weapon Weak Point
-(21394, 4389, 4), -- Resist Mental Attacks
-(21394, 4408, 13), -- HP Increase (5x)
-(21394, 4409, 1), -- MP Increase (1x)
-(21394, 4410, 12), -- Slightly Strong P. Atk.
-(21394, 4411, 12), -- Slightly Strong M. Atk.
-(21394, 4412, 15), -- Strong P. Def.
-(21394, 4413, 10), -- Slightly Weak M. Def.
-(21394, 4414, 3), -- Light Armor Type
-(21394, 4415, 10), -- Bows
-(21394, 4416, 2), -- Magic Creatures
+(21394, 4274, 1), -- Blunt Attack Weak Point
+(21394, 4389, 4), -- Resist Mental Derangement
+(21394, 4408, 13), -- HP Modifiers
+(21394, 4409, 1), -- MP Modifiers
+(21394, 4410, 12), -- P. Atk. Modifiers
+(21394, 4411, 12), -- M. Atk. Modifiers
+(21394, 4412, 15), -- P. Def. Modifiers
+(21394, 4413, 10), -- M. Def. Modifiers
+(21394, 4414, 3), -- Armor Type
+(21394, 4415, 10), -- Weapon Type
+(21394, 4416, 2), -- Races
 (21394, 4607, 1), -- Magma Attack
-(21394, 4789, 6), -- High Level
+(21394, 4789, 6), -- NPC High Level
 -- Elder Lavasaurus
-(21395, 4274, 1), -- Blunt Weapon Weak Point
-(21395, 4389, 4), -- Resist Mental Attacks
-(21395, 4408, 14), -- HP Increase (6x)
-(21395, 4409, 1), -- MP Increase (1x)
-(21395, 4410, 12), -- Slightly Strong P. Atk.
-(21395, 4411, 12), -- Slightly Strong M. Atk.
-(21395, 4412, 15), -- Strong P. Def.
-(21395, 4413, 10), -- Slightly Weak M. Def.
-(21395, 4414, 3), -- Light Armor Type
-(21395, 4415, 10), -- Bows
-(21395, 4416, 2), -- Magic Creatures
+(21395, 4274, 1), -- Blunt Attack Weak Point
+(21395, 4389, 4), -- Resist Mental Derangement
+(21395, 4408, 14), -- HP Modifiers
+(21395, 4409, 1), -- MP Modifiers
+(21395, 4410, 12), -- P. Atk. Modifiers
+(21395, 4411, 12), -- M. Atk. Modifiers
+(21395, 4412, 15), -- P. Def. Modifiers
+(21395, 4413, 10), -- M. Def. Modifiers
+(21395, 4414, 3), -- Armor Type
+(21395, 4415, 10), -- Weapon Type
+(21395, 4416, 2), -- Races
 (21395, 4607, 1), -- Magma Attack
-(21395, 4789, 8), -- High Level
+(21395, 4789, 8), -- NPC High Level
 -- Carrion Scarab
-(21396, 4001, 8), -- Windstrike
-(21396, 4002, 8), -- HP Drain
+(21396, 4001, 8), -- NPC Wind Strike
+(21396, 4002, 8), -- NPC HP Drain
 (21396, 4047, 8), -- Hold
-(21396, 4071, 5), -- Resist Bow/Crossbow Weapons
-(21396, 4274, 1), -- Blunt Weapon Weak Point
-(21396, 4408, 11), -- HP Increase (3x)
-(21396, 4409, 1), -- MP Increase (1x)
-(21396, 4410, 9), -- Slightly Weak P. Atk.
-(21396, 4411, 9), -- Slightly Weak M. Atk.
-(21396, 4412, 16), -- Very Strong P. Def.
-(21396, 4413, 13), -- Slightly Strong M. Def.
-(21396, 4414, 2), -- Standard Type
-(21396, 4415, 3), -- One-handed Sword
-(21396, 4416, 12), -- Bugs
+(21396, 4071, 5), -- Resist Archery
+(21396, 4274, 1), -- Blunt Attack Weak Point
+(21396, 4408, 11), -- HP Modifiers
+(21396, 4409, 1), -- MP Modifiers
+(21396, 4410, 9), -- P. Atk. Modifiers
+(21396, 4411, 9), -- M. Atk. Modifiers
+(21396, 4412, 16), -- P. Def. Modifiers
+(21396, 4413, 13), -- M. Def. Modifiers
+(21396, 4414, 2), -- Armor Type
+(21396, 4415, 3), -- Weapon Type
+(21396, 4416, 12), -- Races
 (21396, 4437, 4), -- Greater Resist Bleeding
 (21396, 4439, 2), -- Greater Resist Hold
-(21396, 4789, 5), -- High Level
+(21396, 4789, 5), -- NPC High Level
 -- Carrion Scarab
-(21397, 4032, 8), -- Power Strike
-(21397, 4071, 5), -- Resist Bow/Crossbow Weapons
-(21397, 4274, 1), -- Blunt Weapon Weak Point
-(21397, 4408, 11), -- HP Increase (3x)
-(21397, 4409, 1), -- MP Increase (1x)
-(21397, 4410, 14), -- Strong P. Atk.
-(21397, 4411, 14), -- Strong M. Atk.
-(21397, 4412, 8), -- Weak P. Def.
-(21397, 4413, 8), -- Weak M. Def.
-(21397, 4414, 2), -- Standard Type
-(21397, 4415, 3), -- One-handed Sword
-(21397, 4416, 12), -- Bugs
+(21397, 4032, 8), -- NPC Strike
+(21397, 4071, 5), -- Resist Archery
+(21397, 4274, 1), -- Blunt Attack Weak Point
+(21397, 4408, 11), -- HP Modifiers
+(21397, 4409, 1), -- MP Modifiers
+(21397, 4410, 14), -- P. Atk. Modifiers
+(21397, 4411, 14), -- M. Atk. Modifiers
+(21397, 4412, 8), -- P. Def. Modifiers
+(21397, 4413, 8), -- M. Def. Modifiers
+(21397, 4414, 2), -- Armor Type
+(21397, 4415, 3), -- Weapon Type
+(21397, 4416, 12), -- Races
 (21397, 4437, 4), -- Greater Resist Bleeding
 (21397, 4438, 2), -- Greater Resist Sleep
-(21397, 4789, 5), -- High Level
+(21397, 4789, 5), -- NPC High Level
 -- Soldier Scarab
-(21398, 4071, 5), -- Resist Bow/Crossbow Weapons
-(21398, 4274, 1), -- Blunt Weapon Weak Point
-(21398, 4408, 14), -- HP Increase (6x)
-(21398, 4409, 1), -- MP Increase (1x)
-(21398, 4410, 11), -- Average P. Atk.
-(21398, 4411, 11), -- Average M. Atk.
-(21398, 4412, 11), -- Average P. Def.
-(21398, 4413, 11), -- Average M. Def.
-(21398, 4414, 2), -- Standard Type
-(21398, 4415, 3), -- One-handed Sword
-(21398, 4416, 12), -- Bugs
+(21398, 4071, 5), -- Resist Archery
+(21398, 4274, 1), -- Blunt Attack Weak Point
+(21398, 4408, 14), -- HP Modifiers
+(21398, 4409, 1), -- MP Modifiers
+(21398, 4410, 11), -- P. Atk. Modifiers
+(21398, 4411, 11), -- M. Atk. Modifiers
+(21398, 4412, 11), -- P. Def. Modifiers
+(21398, 4413, 11), -- M. Def. Modifiers
+(21398, 4414, 2), -- Armor Type
+(21398, 4415, 3), -- Weapon Type
+(21398, 4416, 12), -- Races
 (21398, 4437, 4), -- Greater Resist Bleeding
 (21398, 4579, 8), -- Bleed
-(21398, 4789, 5), -- High Level
+(21398, 4789, 5), -- NPC High Level
 -- Soldier Scarab
-(21399, 4071, 5), -- Resist Bow/Crossbow Weapons
-(21399, 4157, 8), -- Blaze
-(21399, 4160, 8), -- Aura Burn
-(21399, 4274, 1), -- Blunt Weapon Weak Point
-(21399, 4408, 13), -- HP Increase (5x)
-(21399, 4409, 1), -- MP Increase (1x)
-(21399, 4410, 11), -- Average P. Atk.
-(21399, 4411, 11), -- Average M. Atk.
-(21399, 4412, 15), -- Strong P. Def.
-(21399, 4413, 11), -- Average M. Def.
-(21399, 4414, 2), -- Standard Type
-(21399, 4415, 3), -- One-handed Sword
-(21399, 4416, 12), -- Bugs
+(21399, 4071, 5), -- Resist Archery
+(21399, 4157, 8), -- NPC Blaze - Magic
+(21399, 4160, 8), -- NPC Aura Burn - Magic
+(21399, 4274, 1), -- Blunt Attack Weak Point
+(21399, 4408, 13), -- HP Modifiers
+(21399, 4409, 1), -- MP Modifiers
+(21399, 4410, 11), -- P. Atk. Modifiers
+(21399, 4411, 11), -- M. Atk. Modifiers
+(21399, 4412, 15), -- P. Def. Modifiers
+(21399, 4413, 11), -- M. Def. Modifiers
+(21399, 4414, 2), -- Armor Type
+(21399, 4415, 3), -- Weapon Type
+(21399, 4416, 12), -- Races
 (21399, 4437, 4), -- Greater Resist Bleeding
 (21399, 4438, 2), -- Greater Resist Sleep
-(21399, 4789, 5), -- High Level
+(21399, 4789, 5), -- NPC High Level
 -- Hexa Beetle
-(21400, 4071, 5), -- Resist Bow/Crossbow Weapons
-(21400, 4274, 1), -- Blunt Weapon Weak Point
-(21400, 4408, 13), -- HP Increase (5x)
-(21400, 4409, 1), -- MP Increase (1x)
-(21400, 4410, 11), -- Average P. Atk.
-(21400, 4411, 11), -- Average M. Atk.
-(21400, 4412, 11), -- Average P. Def.
-(21400, 4413, 11), -- Average M. Def.
-(21400, 4414, 2), -- Standard Type
-(21400, 4415, 3), -- One-handed Sword
-(21400, 4416, 12), -- Bugs
+(21400, 4071, 5), -- Resist Archery
+(21400, 4274, 1), -- Blunt Attack Weak Point
+(21400, 4408, 13), -- HP Modifiers
+(21400, 4409, 1), -- MP Modifiers
+(21400, 4410, 11), -- P. Atk. Modifiers
+(21400, 4411, 11), -- M. Atk. Modifiers
+(21400, 4412, 11), -- P. Def. Modifiers
+(21400, 4413, 11), -- M. Def. Modifiers
+(21400, 4414, 2), -- Armor Type
+(21400, 4415, 3), -- Weapon Type
+(21400, 4416, 12), -- Races
 (21400, 4437, 4), -- Greater Resist Bleeding
-(21400, 4573, 8), -- Sonic Blaster
-(21400, 4789, 6), -- High Level
+(21400, 4573, 8), -- NPC Sonic Blaster
+(21400, 4789, 6), -- NPC High Level
 -- Hexa Beetle
-(21401, 4071, 5), -- Resist Bow/Crossbow Weapons
-(21401, 4072, 8), -- Stun
-(21401, 4274, 1), -- Blunt Weapon Weak Point
-(21401, 4408, 12), -- HP Increase (4x)
-(21401, 4409, 1), -- MP Increase (1x)
-(21401, 4410, 12), -- Slightly Strong P. Atk.
-(21401, 4411, 12), -- Slightly Strong M. Atk.
-(21401, 4412, 10), -- Slightly Weak P. Def.
-(21401, 4413, 10), -- Slightly Weak M. Def.
-(21401, 4414, 2), -- Standard Type
-(21401, 4415, 3), -- One-handed Sword
-(21401, 4416, 12), -- Bugs
+(21401, 4071, 5), -- Resist Archery
+(21401, 4072, 8), -- Shock
+(21401, 4274, 1), -- Blunt Attack Weak Point
+(21401, 4408, 12), -- HP Modifiers
+(21401, 4409, 1), -- MP Modifiers
+(21401, 4410, 12), -- P. Atk. Modifiers
+(21401, 4411, 12), -- M. Atk. Modifiers
+(21401, 4412, 10), -- P. Def. Modifiers
+(21401, 4413, 10), -- M. Def. Modifiers
+(21401, 4414, 2), -- Armor Type
+(21401, 4415, 3), -- Weapon Type
+(21401, 4416, 12), -- Races
 (21401, 4437, 4), -- Greater Resist Bleeding
-(21401, 4573, 8), -- Sonic Blaster
-(21401, 4789, 6), -- High Level
+(21401, 4573, 8), -- NPC Sonic Blaster
+(21401, 4789, 6), -- NPC High Level
 -- Katraxis
-(21402, 4032, 8), -- Power Strike
-(21402, 4071, 5), -- Resist Bow/Crossbow Weapons
-(21402, 4072, 8), -- Stun
-(21402, 4090, 1), -- Spirit Wolf
-(21402, 4274, 1), -- Blunt Weapon Weak Point
-(21402, 4408, 12), -- HP Increase (4x)
-(21402, 4409, 1), -- MP Increase (1x)
-(21402, 4410, 11), -- Average P. Atk.
-(21402, 4411, 11), -- Average M. Atk.
-(21402, 4412, 11), -- Average P. Def.
-(21402, 4413, 11), -- Average M. Def.
-(21402, 4414, 2), -- Standard Type
-(21402, 4415, 7), -- Daggers
-(21402, 4416, 12), -- Bugs
+(21402, 4032, 8), -- NPC Strike
+(21402, 4071, 5), -- Resist Archery
+(21402, 4072, 8), -- Shock
+(21402, 4090, 1), -- NPC Wolf Spirit Totem
+(21402, 4274, 1), -- Blunt Attack Weak Point
+(21402, 4408, 12), -- HP Modifiers
+(21402, 4409, 1), -- MP Modifiers
+(21402, 4410, 11), -- P. Atk. Modifiers
+(21402, 4411, 11), -- M. Atk. Modifiers
+(21402, 4412, 11), -- P. Def. Modifiers
+(21402, 4413, 11), -- M. Def. Modifiers
+(21402, 4414, 2), -- Armor Type
+(21402, 4415, 7), -- Weapon Type
+(21402, 4416, 12), -- Races
 (21402, 4437, 4), -- Greater Resist Bleeding
-(21402, 4789, 6), -- High Level
+(21402, 4789, 6), -- NPC High Level
 -- Katraxis
-(21403, 4071, 5), -- Resist Bow/Crossbow Weapons
-(21403, 4274, 1), -- Blunt Weapon Weak Point
-(21403, 4408, 13), -- HP Increase (5x)
-(21403, 4409, 1), -- MP Increase (1x)
-(21403, 4410, 11), -- Average P. Atk.
-(21403, 4411, 11), -- Average M. Atk.
-(21403, 4412, 11), -- Average P. Def.
-(21403, 4413, 11), -- Average M. Def.
-(21403, 4414, 2), -- Standard Type
-(21403, 4415, 7), -- Daggers
-(21403, 4416, 12), -- Bugs
+(21403, 4071, 5), -- Resist Archery
+(21403, 4274, 1), -- Blunt Attack Weak Point
+(21403, 4408, 13), -- HP Modifiers
+(21403, 4409, 1), -- MP Modifiers
+(21403, 4410, 11), -- P. Atk. Modifiers
+(21403, 4411, 11), -- M. Atk. Modifiers
+(21403, 4412, 11), -- P. Def. Modifiers
+(21403, 4413, 11), -- M. Def. Modifiers
+(21403, 4414, 2), -- Armor Type
+(21403, 4415, 7), -- Weapon Type
+(21403, 4416, 12), -- Races
 (21403, 4437, 4), -- Greater Resist Bleeding
 (21403, 4643, 8), -- Decrease Speed
-(21403, 4789, 6), -- High Level
+(21403, 4789, 6), -- NPC High Level
 -- Tera Beetle
-(21404, 4071, 5), -- Resist Bow/Crossbow Weapons
-(21404, 4157, 9), -- Blaze
-(21404, 4274, 1), -- Blunt Weapon Weak Point
-(21404, 4408, 12), -- HP Increase (4x)
-(21404, 4409, 1), -- MP Increase (1x)
-(21404, 4410, 10), -- Slightly Weak P. Atk.
-(21404, 4411, 10), -- Slightly Weak M. Atk.
-(21404, 4412, 20), -- Extremely Strong P. Def.
-(21404, 4413, 12), -- Slightly Strong M. Def.
-(21404, 4414, 2), -- Standard Type
-(21404, 4415, 3), -- One-handed Sword
-(21404, 4416, 12), -- Bugs
+(21404, 4071, 5), -- Resist Archery
+(21404, 4157, 9), -- NPC Blaze - Magic
+(21404, 4274, 1), -- Blunt Attack Weak Point
+(21404, 4408, 12), -- HP Modifiers
+(21404, 4409, 1), -- MP Modifiers
+(21404, 4410, 10), -- P. Atk. Modifiers
+(21404, 4411, 10), -- M. Atk. Modifiers
+(21404, 4412, 20), -- P. Def. Modifiers
+(21404, 4413, 12), -- M. Def. Modifiers
+(21404, 4414, 2), -- Armor Type
+(21404, 4415, 3), -- Weapon Type
+(21404, 4416, 12), -- Races
 (21404, 4437, 4), -- Greater Resist Bleeding
-(21404, 4561, 9), -- Fire Burn
-(21404, 4576, 3), -- Reflect Damage
-(21404, 4789, 6), -- High Level
+(21404, 4561, 9), -- NPC Fire Burn - Magic
+(21404, 4576, 3), -- NPC Clan Buff - Damage Shield
+(21404, 4789, 6), -- NPC High Level
 -- Tera Beetle
-(21405, 4001, 9), -- Windstrike
-(21405, 4029, 3), -- Shield
-(21405, 4071, 5), -- Resist Bow/Crossbow Weapons
-(21405, 4274, 1), -- Blunt Weapon Weak Point
-(21405, 4408, 12), -- HP Increase (4x)
-(21405, 4409, 1), -- MP Increase (1x)
-(21405, 4410, 11), -- Average P. Atk.
-(21405, 4411, 11), -- Average M. Atk.
-(21405, 4412, 11), -- Average P. Def.
-(21405, 4413, 11), -- Average M. Def.
-(21405, 4414, 2), -- Standard Type
-(21405, 4415, 3), -- One-handed Sword
-(21405, 4416, 12), -- Bugs
+(21405, 4001, 9), -- NPC Wind Strike
+(21405, 4029, 3), -- NPC Shield
+(21405, 4071, 5), -- Resist Archery
+(21405, 4274, 1), -- Blunt Attack Weak Point
+(21405, 4408, 12), -- HP Modifiers
+(21405, 4409, 1), -- MP Modifiers
+(21405, 4410, 11), -- P. Atk. Modifiers
+(21405, 4411, 11), -- M. Atk. Modifiers
+(21405, 4412, 11), -- P. Def. Modifiers
+(21405, 4413, 11), -- M. Def. Modifiers
+(21405, 4414, 2), -- Armor Type
+(21405, 4415, 3), -- Weapon Type
+(21405, 4416, 12), -- Races
 (21405, 4437, 4), -- Greater Resist Bleeding
-(21405, 4789, 6), -- High Level
+(21405, 4789, 6), -- NPC High Level
 -- Knight of Empire
 (21406, 4117, 9), -- Paralysis
-(21406, 4157, 9), -- Blaze
-(21406, 4274, 1), -- Blunt Weapon Weak Point
-(21406, 4408, 13), -- HP Increase (5x)
-(21406, 4409, 1), -- MP Increase (1x)
-(21406, 4410, 11), -- Average P. Atk.
-(21406, 4411, 11), -- Average M. Atk.
-(21406, 4412, 15), -- Strong P. Def.
-(21406, 4413, 11), -- Average M. Def.
-(21406, 4414, 2), -- Standard Type
-(21406, 4415, 3), -- One-handed Sword
-(21406, 4416, 1), -- Undead
-(21406, 4561, 9), -- Fire Burn
-(21406, 4789, 6), -- High Level
+(21406, 4157, 9), -- NPC Blaze - Magic
+(21406, 4274, 1), -- Blunt Attack Weak Point
+(21406, 4408, 13), -- HP Modifiers
+(21406, 4409, 1), -- MP Modifiers
+(21406, 4410, 11), -- P. Atk. Modifiers
+(21406, 4411, 11), -- M. Atk. Modifiers
+(21406, 4412, 15), -- P. Def. Modifiers
+(21406, 4413, 11), -- M. Def. Modifiers
+(21406, 4414, 2), -- Armor Type
+(21406, 4415, 3), -- Weapon Type
+(21406, 4416, 1), -- Races
+(21406, 4561, 9), -- NPC Fire Burn - Magic
+(21406, 4789, 6), -- NPC High Level
 -- Knight of Empire
-(21407, 4032, 9), -- Power Strike
-(21407, 4274, 1), -- Blunt Weapon Weak Point
-(21407, 4408, 11), -- HP Increase (3x)
-(21407, 4409, 1), -- MP Increase (1x)
-(21407, 4410, 11), -- Average P. Atk.
-(21407, 4411, 11), -- Average M. Atk.
-(21407, 4412, 15), -- Strong P. Def.
-(21407, 4413, 11), -- Average M. Def.
-(21407, 4414, 2), -- Standard Type
-(21407, 4415, 3), -- One-handed Sword
-(21407, 4416, 1), -- Undead
-(21407, 4663, 1), -- Aggression
-(21407, 4789, 6), -- High Level
+(21407, 4032, 9), -- NPC Strike
+(21407, 4274, 1), -- Blunt Attack Weak Point
+(21407, 4408, 11), -- HP Modifiers
+(21407, 4409, 1), -- MP Modifiers
+(21407, 4410, 11), -- P. Atk. Modifiers
+(21407, 4411, 11), -- M. Atk. Modifiers
+(21407, 4412, 15), -- P. Def. Modifiers
+(21407, 4413, 11), -- M. Def. Modifiers
+(21407, 4414, 2), -- Armor Type
+(21407, 4415, 3), -- Weapon Type
+(21407, 4416, 1), -- Races
+(21407, 4663, 1), -- NPC Hate
+(21407, 4789, 6), -- NPC High Level
 -- Royal Guard of Empire
 (21408, 4036, 9), -- Poison
-(21408, 4274, 1), -- Blunt Weapon Weak Point
-(21408, 4408, 13), -- HP Increase (5x)
-(21408, 4409, 1), -- MP Increase (1x)
-(21408, 4410, 12), -- Slightly Strong P. Atk.
-(21408, 4411, 12), -- Slightly Strong M. Atk.
-(21408, 4412, 10), -- Slightly Weak P. Def.
-(21408, 4413, 10), -- Slightly Weak M. Def.
-(21408, 4414, 2), -- Standard Type
-(21408, 4415, 3), -- One-handed Sword
-(21408, 4416, 1), -- Undead
+(21408, 4274, 1), -- Blunt Attack Weak Point
+(21408, 4408, 13), -- HP Modifiers
+(21408, 4409, 1), -- MP Modifiers
+(21408, 4410, 12), -- P. Atk. Modifiers
+(21408, 4411, 12), -- M. Atk. Modifiers
+(21408, 4412, 10), -- P. Def. Modifiers
+(21408, 4413, 10), -- M. Def. Modifiers
+(21408, 4414, 2), -- Armor Type
+(21408, 4415, 3), -- Weapon Type
+(21408, 4416, 1), -- Races
 (21408, 4438, 2), -- Greater Resist Sleep
 (21408, 4579, 9), -- Bleed
-(21408, 4789, 6), -- High Level
+(21408, 4789, 6), -- NPC High Level
 -- Royal Guard of Empire
 (21409, 4036, 9), -- Poison
-(21409, 4274, 1), -- Blunt Weapon Weak Point
-(21409, 4408, 14), -- HP Increase (6x)
-(21409, 4409, 1), -- MP Increase (1x)
-(21409, 4410, 9), -- Slightly Weak P. Atk.
-(21409, 4411, 9), -- Slightly Weak M. Atk.
-(21409, 4412, 13), -- Slightly Strong P. Def.
-(21409, 4413, 13), -- Slightly Strong M. Def.
-(21409, 4414, 2), -- Standard Type
-(21409, 4415, 3), -- One-handed Sword
-(21409, 4416, 1), -- Undead
+(21409, 4274, 1), -- Blunt Attack Weak Point
+(21409, 4408, 14), -- HP Modifiers
+(21409, 4409, 1), -- MP Modifiers
+(21409, 4410, 9), -- P. Atk. Modifiers
+(21409, 4411, 9), -- M. Atk. Modifiers
+(21409, 4412, 13), -- P. Def. Modifiers
+(21409, 4413, 13), -- M. Def. Modifiers
+(21409, 4414, 2), -- Armor Type
+(21409, 4415, 3), -- Weapon Type
+(21409, 4416, 1), -- Races
 (21409, 4592, 9), -- Decrease P. Def.
-(21409, 4789, 6), -- High Level
+(21409, 4789, 6), -- NPC High Level
 -- Guardian Scarab
 (21410, 4047, 9), -- Hold
-(21410, 4071, 5), -- Resist Bow/Crossbow Weapons
-(21410, 4073, 9), -- Stun
-(21410, 4274, 1), -- Blunt Weapon Weak Point
+(21410, 4071, 5), -- Resist Archery
+(21410, 4073, 9), -- Shock
+(21410, 4274, 1), -- Blunt Attack Weak Point
 (21410, 4317, 1), -- Increase Rage Might
-(21410, 4408, 13), -- HP Increase (5x)
-(21410, 4409, 1), -- MP Increase (1x)
-(21410, 4410, 11), -- Average P. Atk.
-(21410, 4411, 11), -- Average M. Atk.
-(21410, 4412, 11), -- Average P. Def.
-(21410, 4413, 11), -- Average M. Def.
-(21410, 4414, 2), -- Standard Type
-(21410, 4415, 3), -- One-handed Sword
-(21410, 4416, 12), -- Bugs
+(21410, 4408, 13), -- HP Modifiers
+(21410, 4409, 1), -- MP Modifiers
+(21410, 4410, 11), -- P. Atk. Modifiers
+(21410, 4411, 11), -- M. Atk. Modifiers
+(21410, 4412, 11), -- P. Def. Modifiers
+(21410, 4413, 11), -- M. Def. Modifiers
+(21410, 4414, 2), -- Armor Type
+(21410, 4415, 3), -- Weapon Type
+(21410, 4416, 12), -- Races
 (21410, 4437, 4), -- Greater Resist Bleeding
 (21410, 4599, 9), -- Decrease Speed
-(21410, 4789, 7), -- High Level
+(21410, 4789, 7), -- NPC High Level
 -- Guardian Scarab
-(21411, 4071, 5), -- Resist Bow/Crossbow Weapons
-(21411, 4077, 9), -- Aura Burn
-(21411, 4274, 1), -- Blunt Weapon Weak Point
-(21411, 4408, 12), -- HP Increase (4x)
-(21411, 4409, 1), -- MP Increase (1x)
-(21411, 4410, 11), -- Average P. Atk.
-(21411, 4411, 11), -- Average M. Atk.
-(21411, 4412, 11), -- Average P. Def.
-(21411, 4413, 11), -- Average M. Def.
-(21411, 4414, 2), -- Standard Type
-(21411, 4415, 3), -- One-handed Sword
-(21411, 4416, 12), -- Bugs
+(21411, 4071, 5), -- Resist Archery
+(21411, 4077, 9), -- NPC Aura Burn
+(21411, 4274, 1), -- Blunt Attack Weak Point
+(21411, 4408, 12), -- HP Modifiers
+(21411, 4409, 1), -- MP Modifiers
+(21411, 4410, 11), -- P. Atk. Modifiers
+(21411, 4411, 11), -- M. Atk. Modifiers
+(21411, 4412, 11), -- P. Def. Modifiers
+(21411, 4413, 11), -- M. Def. Modifiers
+(21411, 4414, 2), -- Armor Type
+(21411, 4415, 3), -- Weapon Type
+(21411, 4416, 12), -- Races
 (21411, 4437, 4), -- Greater Resist Bleeding
-(21411, 4789, 7), -- High Level
+(21411, 4789, 7), -- NPC High Level
 -- Ustralith
-(21412, 4071, 5), -- Resist Bow/Crossbow Weapons
-(21412, 4077, 9), -- Aura Burn
-(21412, 4274, 1), -- Blunt Weapon Weak Point
-(21412, 4408, 13), -- HP Increase (5x)
-(21412, 4409, 1), -- MP Increase (1x)
-(21412, 4410, 9), -- Slightly Weak P. Atk.
-(21412, 4411, 9), -- Slightly Weak M. Atk.
-(21412, 4412, 13), -- Slightly Strong P. Def.
-(21412, 4413, 13), -- Slightly Strong M. Def.
-(21412, 4414, 2), -- Standard Type
-(21412, 4415, 7), -- Daggers
-(21412, 4416, 12), -- Bugs
+(21412, 4071, 5), -- Resist Archery
+(21412, 4077, 9), -- NPC Aura Burn
+(21412, 4274, 1), -- Blunt Attack Weak Point
+(21412, 4408, 13), -- HP Modifiers
+(21412, 4409, 1), -- MP Modifiers
+(21412, 4410, 9), -- P. Atk. Modifiers
+(21412, 4411, 9), -- M. Atk. Modifiers
+(21412, 4412, 13), -- P. Def. Modifiers
+(21412, 4413, 13), -- M. Def. Modifiers
+(21412, 4414, 2), -- Armor Type
+(21412, 4415, 7), -- Weapon Type
+(21412, 4416, 12), -- Races
 (21412, 4437, 4), -- Greater Resist Bleeding
-(21412, 4568, 9), -- Solar Flare
-(21412, 4575, 2), -- Haste
+(21412, 4568, 9), -- NPC AE Solar Flare
+(21412, 4575, 2), -- NPC Clan Buff - Haste
 (21412, 4577, 9), -- Decrease Accuracy
-(21412, 4613, 9), -- Clan Heal
-(21412, 4789, 7), -- High Level
+(21412, 4613, 9), -- NPC Clan Heal
+(21412, 4789, 7), -- NPC High Level
 -- Ustralith
 (21413, 4047, 9), -- Hold
-(21413, 4071, 5), -- Resist Bow/Crossbow Weapons
-(21413, 4274, 1), -- Blunt Weapon Weak Point
-(21413, 4408, 13), -- HP Increase (5x)
-(21413, 4409, 1), -- MP Increase (1x)
-(21413, 4410, 12), -- Slightly Strong P. Atk.
-(21413, 4411, 12), -- Slightly Strong M. Atk.
-(21413, 4412, 10), -- Slightly Weak P. Def.
-(21413, 4413, 10), -- Slightly Weak M. Def.
-(21413, 4414, 2), -- Standard Type
-(21413, 4415, 7), -- Daggers
-(21413, 4416, 12), -- Bugs
+(21413, 4071, 5), -- Resist Archery
+(21413, 4274, 1), -- Blunt Attack Weak Point
+(21413, 4408, 13), -- HP Modifiers
+(21413, 4409, 1), -- MP Modifiers
+(21413, 4410, 12), -- P. Atk. Modifiers
+(21413, 4411, 12), -- M. Atk. Modifiers
+(21413, 4412, 10), -- P. Def. Modifiers
+(21413, 4413, 10), -- M. Def. Modifiers
+(21413, 4414, 2), -- Armor Type
+(21413, 4415, 7), -- Weapon Type
+(21413, 4416, 12), -- Races
 (21413, 4437, 4), -- Greater Resist Bleeding
 (21413, 4582, 9), -- Poison
-(21413, 4789, 7), -- High Level
+(21413, 4789, 7), -- NPC High Level
 -- Assassin of Empire
-(21414, 4274, 1), -- Blunt Weapon Weak Point
-(21414, 4408, 13), -- HP Increase (5x)
-(21414, 4409, 1), -- MP Increase (1x)
-(21414, 4410, 13), -- Slightly Strong P. Atk.
-(21414, 4411, 13), -- Slightly Strong M. Atk.
-(21414, 4412, 9), -- Slightly Weak P. Def.
-(21414, 4413, 9), -- Slightly Weak M. Def.
-(21414, 4414, 2), -- Standard Type
-(21414, 4415, 7), -- Daggers
-(21414, 4416, 1), -- Undead
-(21414, 4561, 9), -- Fire Burn
+(21414, 4274, 1), -- Blunt Attack Weak Point
+(21414, 4408, 13), -- HP Modifiers
+(21414, 4409, 1), -- MP Modifiers
+(21414, 4410, 13), -- P. Atk. Modifiers
+(21414, 4411, 13), -- M. Atk. Modifiers
+(21414, 4412, 9), -- P. Def. Modifiers
+(21414, 4413, 9), -- M. Def. Modifiers
+(21414, 4414, 2), -- Armor Type
+(21414, 4415, 7), -- Weapon Type
+(21414, 4416, 1), -- Races
+(21414, 4561, 9), -- NPC Fire Burn - Magic
 (21414, 4603, 9), -- Decrease P. Atk.
-(21414, 4613, 9), -- Clan Heal
-(21414, 4789, 7), -- High Level
+(21414, 4613, 9), -- NPC Clan Heal
+(21414, 4789, 7), -- NPC High Level
 -- Assassin of Empire
-(21415, 4274, 1), -- Blunt Weapon Weak Point
-(21415, 4408, 13), -- HP Increase (5x)
-(21415, 4409, 1), -- MP Increase (1x)
-(21415, 4410, 10), -- Slightly Weak P. Atk.
-(21415, 4411, 10), -- Slightly Weak M. Atk.
-(21415, 4412, 12), -- Slightly Strong P. Def.
-(21415, 4413, 12), -- Slightly Strong M. Def.
-(21415, 4414, 2), -- Standard Type
-(21415, 4415, 7), -- Daggers
-(21415, 4416, 1), -- Undead
+(21415, 4274, 1), -- Blunt Attack Weak Point
+(21415, 4408, 13), -- HP Modifiers
+(21415, 4409, 1), -- MP Modifiers
+(21415, 4410, 10), -- P. Atk. Modifiers
+(21415, 4411, 10), -- M. Atk. Modifiers
+(21415, 4412, 12), -- P. Def. Modifiers
+(21415, 4413, 12), -- M. Def. Modifiers
+(21415, 4414, 2), -- Armor Type
+(21415, 4415, 7), -- Weapon Type
+(21415, 4416, 1), -- Races
 (21415, 4579, 9), -- Bleed
-(21415, 4789, 7), -- High Level
+(21415, 4789, 7), -- NPC High Level
 -- Imperial Commander
-(21416, 4160, 9), -- Aura Burn
-(21416, 4274, 1), -- Blunt Weapon Weak Point
-(21416, 4408, 13), -- HP Increase (5x)
-(21416, 4409, 1), -- MP Increase (1x)
-(21416, 4410, 8), -- Weak P. Atk.
-(21416, 4411, 8), -- Weak M. Atk.
-(21416, 4412, 14), -- Strong P. Def.
-(21416, 4413, 17), -- Very Strong M. Def.
-(21416, 4414, 2), -- Standard Type
-(21416, 4415, 3), -- One-handed Sword
-(21416, 4416, 1), -- Undead
-(21416, 4665, 9), -- Drain Health
-(21416, 4789, 7), -- High Level
+(21416, 4160, 9), -- NPC Aura Burn - Magic
+(21416, 4274, 1), -- Blunt Attack Weak Point
+(21416, 4408, 13), -- HP Modifiers
+(21416, 4409, 1), -- MP Modifiers
+(21416, 4410, 8), -- P. Atk. Modifiers
+(21416, 4411, 8), -- M. Atk. Modifiers
+(21416, 4412, 14), -- P. Def. Modifiers
+(21416, 4413, 17), -- M. Def. Modifiers
+(21416, 4414, 2), -- Armor Type
+(21416, 4415, 3), -- Weapon Type
+(21416, 4416, 1), -- Races
+(21416, 4665, 9), -- NPC 100% HP Drain - Magic
+(21416, 4789, 7), -- NPC High Level
 -- Imperial Commander
-(21417, 4002, 9), -- HP Drain
-(21417, 4274, 1), -- Blunt Weapon Weak Point
-(21417, 4408, 14), -- HP Increase (6x)
-(21417, 4409, 1), -- MP Increase (1x)
-(21417, 4410, 13), -- Slightly Strong P. Atk.
-(21417, 4411, 13), -- Slightly Strong M. Atk.
-(21417, 4412, 18), -- Extremely Strong P. Def.
-(21417, 4413, 9), -- Slightly Weak M. Def.
-(21417, 4414, 2), -- Standard Type
-(21417, 4415, 3), -- One-handed Sword
-(21417, 4416, 1), -- Undead
-(21417, 4789, 7), -- High Level
+(21417, 4002, 9), -- NPC HP Drain
+(21417, 4274, 1), -- Blunt Attack Weak Point
+(21417, 4408, 14), -- HP Modifiers
+(21417, 4409, 1), -- MP Modifiers
+(21417, 4410, 13), -- P. Atk. Modifiers
+(21417, 4411, 13), -- M. Atk. Modifiers
+(21417, 4412, 18), -- P. Def. Modifiers
+(21417, 4413, 9), -- M. Def. Modifiers
+(21417, 4414, 2), -- Armor Type
+(21417, 4415, 3), -- Weapon Type
+(21417, 4416, 1), -- Races
+(21417, 4789, 7), -- NPC High Level
 -- Imperial Royal Guard
-(21418, 4274, 1), -- Blunt Weapon Weak Point
-(21418, 4408, 12), -- HP Increase (4x)
-(21418, 4409, 1), -- MP Increase (1x)
-(21418, 4410, 11), -- Average P. Atk.
-(21418, 4411, 11), -- Average M. Atk.
-(21418, 4412, 13), -- Slightly Strong P. Def.
-(21418, 4413, 11), -- Average M. Def.
-(21418, 4414, 2), -- Standard Type
-(21418, 4415, 3), -- One-handed Sword
-(21418, 4416, 1), -- Undead
-(21418, 4572, 9), -- Triple Sonic Slash
-(21418, 4789, 7), -- High Level
+(21418, 4274, 1), -- Blunt Attack Weak Point
+(21418, 4408, 12), -- HP Modifiers
+(21418, 4409, 1), -- MP Modifiers
+(21418, 4410, 11), -- P. Atk. Modifiers
+(21418, 4411, 11), -- M. Atk. Modifiers
+(21418, 4412, 13), -- P. Def. Modifiers
+(21418, 4413, 11), -- M. Def. Modifiers
+(21418, 4414, 2), -- Armor Type
+(21418, 4415, 3), -- Weapon Type
+(21418, 4416, 1), -- Races
+(21418, 4572, 9), -- NPC Triple Sonic Slash
+(21418, 4789, 7), -- NPC High Level
 -- Imperial Royal Guard
-(21419, 4274, 1), -- Blunt Weapon Weak Point
-(21419, 4408, 12), -- HP Increase (4x)
-(21419, 4409, 1), -- MP Increase (1x)
-(21419, 4410, 11), -- Average P. Atk.
-(21419, 4411, 11), -- Average M. Atk.
-(21419, 4412, 13), -- Slightly Strong P. Def.
-(21419, 4413, 11), -- Average M. Def.
-(21419, 4414, 2), -- Standard Type
-(21419, 4415, 3), -- One-handed Sword
-(21419, 4416, 1), -- Undead
-(21419, 4572, 9), -- Triple Sonic Slash
-(21419, 4573, 9), -- Sonic Blaster
-(21419, 4789, 7), -- High Level
+(21419, 4274, 1), -- Blunt Attack Weak Point
+(21419, 4408, 12), -- HP Modifiers
+(21419, 4409, 1), -- MP Modifiers
+(21419, 4410, 11), -- P. Atk. Modifiers
+(21419, 4411, 11), -- M. Atk. Modifiers
+(21419, 4412, 13), -- P. Def. Modifiers
+(21419, 4413, 11), -- M. Def. Modifiers
+(21419, 4414, 2), -- Armor Type
+(21419, 4415, 3), -- Weapon Type
+(21419, 4416, 1), -- Races
+(21419, 4572, 9), -- NPC Triple Sonic Slash
+(21419, 4573, 9), -- NPC Sonic Blaster
+(21419, 4789, 7), -- NPC High Level
 -- Ashuras
-(21420, 4072, 7), -- Stun
-(21420, 4076, 3), -- Slow
-(21420, 4285, 3), -- Resist Sleep Attacks
+(21420, 4072, 7), -- Shock
+(21420, 4076, 3), -- Reduction in movement speed
+(21420, 4285, 3), -- Resist Sleep
 (21420, 4317, 1), -- Increase Rage Might
-(21420, 4408, 13), -- HP Increase (5x)
-(21420, 4409, 1), -- MP Increase (1x)
-(21420, 4410, 11), -- Average P. Atk.
-(21420, 4411, 11), -- Average M. Atk.
-(21420, 4412, 11), -- Average P. Def.
-(21420, 4413, 11), -- Average M. Def.
-(21420, 4414, 2), -- Standard Type
-(21420, 4415, 3), -- One-handed Sword
-(21420, 4416, 9), -- Demons
-(21420, 4572, 7), -- Triple Sonic Slash
-(21420, 4789, 7), -- High Level
+(21420, 4408, 13), -- HP Modifiers
+(21420, 4409, 1), -- MP Modifiers
+(21420, 4410, 11), -- P. Atk. Modifiers
+(21420, 4411, 11), -- M. Atk. Modifiers
+(21420, 4412, 11), -- P. Def. Modifiers
+(21420, 4413, 11), -- M. Def. Modifiers
+(21420, 4414, 2), -- Armor Type
+(21420, 4415, 3), -- Weapon Type
+(21420, 4416, 9), -- Races
+(21420, 4572, 7), -- NPC Triple Sonic Slash
+(21420, 4789, 7), -- NPC High Level
 -- Ashuras
-(21421, 4285, 3), -- Resist Sleep Attacks
-(21421, 4408, 13), -- HP Increase (5x)
-(21421, 4409, 1), -- MP Increase (1x)
-(21421, 4410, 11), -- Average P. Atk.
-(21421, 4411, 11), -- Average M. Atk.
-(21421, 4412, 11), -- Average P. Def.
-(21421, 4413, 11), -- Average M. Def.
-(21421, 4414, 2), -- Standard Type
-(21421, 4415, 3), -- One-handed Sword
-(21421, 4416, 9), -- Demons
+(21421, 4285, 3), -- Resist Sleep
+(21421, 4408, 13), -- HP Modifiers
+(21421, 4409, 1), -- MP Modifiers
+(21421, 4410, 11), -- P. Atk. Modifiers
+(21421, 4411, 11), -- M. Atk. Modifiers
+(21421, 4412, 11), -- P. Def. Modifiers
+(21421, 4413, 11), -- M. Def. Modifiers
+(21421, 4414, 2), -- Armor Type
+(21421, 4415, 3), -- Weapon Type
+(21421, 4416, 9), -- Races
 (21421, 4592, 9), -- Decrease P. Def.
-(21421, 4789, 7), -- High Level
+(21421, 4789, 7), -- NPC High Level
 -- Dancer of Empire
-(21422, 4037, 2), -- Weakness
-(21422, 4160, 9), -- Aura Burn
+(21422, 4037, 2), -- Decrease P.Atk
+(21422, 4160, 9), -- NPC Aura Burn - Magic
 (21422, 4233, 1), -- Vampiric Attack
-(21422, 4285, 3), -- Resist Sleep Attacks
-(21422, 4408, 14), -- HP Increase (6x)
-(21422, 4409, 1), -- MP Increase (1x)
-(21422, 4410, 12), -- Slightly Strong P. Atk.
-(21422, 4411, 12), -- Slightly Strong M. Atk.
-(21422, 4412, 10), -- Slightly Weak P. Def.
-(21422, 4413, 10), -- Slightly Weak M. Def.
-(21422, 4414, 2), -- Standard Type
-(21422, 4415, 3), -- One-handed Sword
-(21422, 4416, 9), -- Demons
-(21422, 4566, 9), -- Rain of Fire
+(21422, 4285, 3), -- Resist Sleep
+(21422, 4408, 14), -- HP Modifiers
+(21422, 4409, 1), -- MP Modifiers
+(21422, 4410, 12), -- P. Atk. Modifiers
+(21422, 4411, 12), -- M. Atk. Modifiers
+(21422, 4412, 10), -- P. Def. Modifiers
+(21422, 4413, 10), -- M. Def. Modifiers
+(21422, 4414, 2), -- Armor Type
+(21422, 4415, 3), -- Weapon Type
+(21422, 4416, 9), -- Races
+(21422, 4566, 9), -- NPC Eruption - Magic
 (21422, 4657, 9), -- Hold
-(21422, 4789, 7), -- High Level
+(21422, 4789, 7), -- NPC High Level
 -- Dancer of Empire
-(21423, 4160, 9), -- Aura Burn
+(21423, 4160, 9), -- NPC Aura Burn - Magic
 (21423, 4233, 1), -- Vampiric Attack
-(21423, 4285, 3), -- Resist Sleep Attacks
-(21423, 4408, 14), -- HP Increase (6x)
-(21423, 4409, 1), -- MP Increase (1x)
-(21423, 4410, 12), -- Slightly Strong P. Atk.
-(21423, 4411, 12), -- Slightly Strong M. Atk.
-(21423, 4412, 10), -- Slightly Weak P. Def.
-(21423, 4413, 10), -- Slightly Weak M. Def.
-(21423, 4414, 2), -- Standard Type
-(21423, 4415, 3), -- One-handed Sword
-(21423, 4416, 9), -- Demons
-(21423, 4566, 9), -- Rain of Fire
-(21423, 4613, 9), -- Clan Heal
-(21423, 4789, 7), -- High Level
+(21423, 4285, 3), -- Resist Sleep
+(21423, 4408, 14), -- HP Modifiers
+(21423, 4409, 1), -- MP Modifiers
+(21423, 4410, 12), -- P. Atk. Modifiers
+(21423, 4411, 12), -- M. Atk. Modifiers
+(21423, 4412, 10), -- P. Def. Modifiers
+(21423, 4413, 10), -- M. Def. Modifiers
+(21423, 4414, 2), -- Armor Type
+(21423, 4415, 3), -- Weapon Type
+(21423, 4416, 9), -- Races
+(21423, 4566, 9), -- NPC Eruption - Magic
+(21423, 4613, 9), -- NPC Clan Heal
+(21423, 4789, 7), -- NPC High Level
 -- Ashkenas
-(21424, 4076, 3), -- Slow
-(21424, 4077, 9), -- Aura Burn
-(21424, 4285, 3), -- Resist Sleep Attacks
-(21424, 4408, 14), -- HP Increase (6x)
-(21424, 4409, 1), -- MP Increase (1x)
-(21424, 4410, 14), -- Strong P. Atk.
-(21424, 4411, 14), -- Strong M. Atk.
-(21424, 4412, 8), -- Weak P. Def.
-(21424, 4413, 8), -- Weak M. Def.
-(21424, 4414, 2), -- Standard Type
-(21424, 4415, 3), -- One-handed Sword
-(21424, 4416, 9), -- Demons
+(21424, 4076, 3), -- Reduction in movement speed
+(21424, 4077, 9), -- NPC Aura Burn
+(21424, 4285, 3), -- Resist Sleep
+(21424, 4408, 14), -- HP Modifiers
+(21424, 4409, 1), -- MP Modifiers
+(21424, 4410, 14), -- P. Atk. Modifiers
+(21424, 4411, 14), -- M. Atk. Modifiers
+(21424, 4412, 8), -- P. Def. Modifiers
+(21424, 4413, 8), -- M. Def. Modifiers
+(21424, 4414, 2), -- Armor Type
+(21424, 4415, 3), -- Weapon Type
+(21424, 4416, 9), -- Races
 (21424, 4596, 9), -- Bleed
-(21424, 4633, 3), -- Acumen Berserker Empower
-(21424, 4789, 7), -- High Level
+(21424, 4633, 3), -- NPC Buff - Acumen Empower Berserk
+(21424, 4789, 7), -- NPC High Level
 -- Ashkenas
-(21425, 4098, 9), -- Silence
-(21425, 4285, 3), -- Resist Sleep Attacks
-(21425, 4408, 14), -- HP Increase (6x)
-(21425, 4409, 1), -- MP Increase (1x)
-(21425, 4410, 14), -- Strong P. Atk.
-(21425, 4411, 14), -- Strong M. Atk.
-(21425, 4412, 8), -- Weak P. Def.
-(21425, 4413, 8), -- Weak M. Def.
-(21425, 4414, 2), -- Standard Type
-(21425, 4415, 3), -- One-handed Sword
-(21425, 4416, 9), -- Demons
-(21425, 4565, 9), -- Rain of Fire
+(21425, 4098, 9), -- Magic Skill Block
+(21425, 4285, 3), -- Resist Sleep
+(21425, 4408, 14), -- HP Modifiers
+(21425, 4409, 1), -- MP Modifiers
+(21425, 4410, 14), -- P. Atk. Modifiers
+(21425, 4411, 14), -- M. Atk. Modifiers
+(21425, 4412, 8), -- P. Def. Modifiers
+(21425, 4413, 8), -- M. Def. Modifiers
+(21425, 4414, 2), -- Armor Type
+(21425, 4415, 3), -- Weapon Type
+(21425, 4416, 9), -- Races
+(21425, 4565, 9), -- NPC Eruption
 (21425, 4584, 9), -- Reducing P. Def Stun
-(21425, 4632, 3), -- Acumen Empower Wild Magic
-(21425, 4789, 7), -- High Level
+(21425, 4632, 3), -- NPC Buff - Acumen Empower WildMagic
+(21425, 4789, 7), -- NPC High Level
 -- Abraxion
-(21426, 4285, 3), -- Resist Sleep Attacks
-(21426, 4408, 12), -- HP Increase (4x)
-(21426, 4409, 1), -- MP Increase (1x)
-(21426, 4410, 11), -- Average P. Atk.
-(21426, 4411, 11), -- Average M. Atk.
-(21426, 4412, 15), -- Strong P. Def.
-(21426, 4413, 11), -- Average M. Def.
-(21426, 4414, 2), -- Standard Type
-(21426, 4415, 6), -- Blunt Weapons
-(21426, 4416, 9), -- Demons
-(21426, 4576, 3), -- Reflect Damage
-(21426, 4585, 3), -- Berserker Spirit
-(21426, 4595, 3), -- Acumen Shield
-(21426, 4609, 4), -- Vampiric Rage
-(21426, 4789, 8), -- High Level
+(21426, 4285, 3), -- Resist Sleep
+(21426, 4408, 12), -- HP Modifiers
+(21426, 4409, 1), -- MP Modifiers
+(21426, 4410, 11), -- P. Atk. Modifiers
+(21426, 4411, 11), -- M. Atk. Modifiers
+(21426, 4412, 15), -- P. Def. Modifiers
+(21426, 4413, 11), -- M. Def. Modifiers
+(21426, 4414, 2), -- Armor Type
+(21426, 4415, 6), -- Weapon Type
+(21426, 4416, 9), -- Races
+(21426, 4576, 3), -- NPC Clan Buff - Damage Shield
+(21426, 4585, 3), -- NPC Clan Buff - Berserk Might
+(21426, 4595, 3), -- NPC Clan Buff - Acumen Shield
+(21426, 4609, 4), -- NPC Clan Buff - Vampiric Rage
+(21426, 4789, 8), -- NPC High Level
 -- Abraxion
-(21427, 4285, 3), -- Resist Sleep Attacks
-(21427, 4408, 12), -- HP Increase (4x)
-(21427, 4409, 1), -- MP Increase (1x)
-(21427, 4410, 11), -- Average P. Atk.
-(21427, 4411, 11), -- Average M. Atk.
-(21427, 4412, 15), -- Strong P. Def.
-(21427, 4413, 11), -- Average M. Def.
-(21427, 4414, 2), -- Standard Type
-(21427, 4415, 6), -- Blunt Weapons
-(21427, 4416, 9), -- Demons
-(21427, 4560, 9), -- Fire Burn
-(21427, 4789, 8), -- High Level
+(21427, 4285, 3), -- Resist Sleep
+(21427, 4408, 12), -- HP Modifiers
+(21427, 4409, 1), -- MP Modifiers
+(21427, 4410, 11), -- P. Atk. Modifiers
+(21427, 4411, 11), -- M. Atk. Modifiers
+(21427, 4412, 15), -- P. Def. Modifiers
+(21427, 4413, 11), -- M. Def. Modifiers
+(21427, 4414, 2), -- Armor Type
+(21427, 4415, 6), -- Weapon Type
+(21427, 4416, 9), -- Races
+(21427, 4560, 9), -- NPC Fire Burn
+(21427, 4789, 8), -- NPC High Level
 -- Hasturan
 (21428, 4233, 1), -- Vampiric Attack
-(21428, 4285, 3), -- Resist Sleep Attacks
-(21428, 4408, 13), -- HP Increase (5x)
-(21428, 4409, 1), -- MP Increase (1x)
-(21428, 4410, 12), -- Slightly Strong P. Atk.
-(21428, 4411, 12), -- Slightly Strong M. Atk.
-(21428, 4412, 10), -- Slightly Weak P. Def.
-(21428, 4413, 10), -- Slightly Weak M. Def.
-(21428, 4414, 2), -- Standard Type
-(21428, 4415, 6), -- Blunt Weapons
-(21428, 4416, 9), -- Demons
-(21428, 4571, 9), -- Blazing Circle
-(21428, 4789, 8), -- High Level
+(21428, 4285, 3), -- Resist Sleep
+(21428, 4408, 13), -- HP Modifiers
+(21428, 4409, 1), -- MP Modifiers
+(21428, 4410, 12), -- P. Atk. Modifiers
+(21428, 4411, 12), -- M. Atk. Modifiers
+(21428, 4412, 10), -- P. Def. Modifiers
+(21428, 4413, 10), -- M. Def. Modifiers
+(21428, 4414, 2), -- Armor Type
+(21428, 4415, 6), -- Weapon Type
+(21428, 4416, 9), -- Races
+(21428, 4571, 9), -- NPC Blazing Circle
+(21428, 4789, 8), -- NPC High Level
 -- Hasturan
-(21429, 4072, 9), -- Stun
-(21429, 4151, 9), -- Wind Strike
+(21429, 4072, 9), -- Shock
+(21429, 4151, 9), -- NPC Windstrike - Magic
 (21429, 4233, 1), -- Vampiric Attack
-(21429, 4285, 3), -- Resist Sleep Attacks
-(21429, 4408, 13), -- HP Increase (5x)
-(21429, 4409, 1), -- MP Increase (1x)
-(21429, 4410, 10), -- Slightly Weak P. Atk.
-(21429, 4411, 10), -- Slightly Weak M. Atk.
-(21429, 4412, 12), -- Slightly Strong P. Def.
-(21429, 4413, 12), -- Slightly Strong M. Def.
-(21429, 4414, 2), -- Standard Type
-(21429, 4415, 6), -- Blunt Weapons
-(21429, 4416, 9), -- Demons
-(21429, 4789, 8), -- High Level
+(21429, 4285, 3), -- Resist Sleep
+(21429, 4408, 13), -- HP Modifiers
+(21429, 4409, 1), -- MP Modifiers
+(21429, 4410, 10), -- P. Atk. Modifiers
+(21429, 4411, 10), -- M. Atk. Modifiers
+(21429, 4412, 12), -- P. Def. Modifiers
+(21429, 4413, 12), -- M. Def. Modifiers
+(21429, 4414, 2), -- Armor Type
+(21429, 4415, 6), -- Weapon Type
+(21429, 4416, 9), -- Races
+(21429, 4789, 8), -- NPC High Level
 -- Arimanes
-(21430, 4160, 9), -- Aura Burn
-(21430, 4257, 9), -- Hydro Blast
-(21430, 4285, 3), -- Resist Sleep Attacks
-(21430, 4408, 14), -- HP Increase (6x)
-(21430, 4409, 1), -- MP Increase (1x)
-(21430, 4410, 13), -- Slightly Strong P. Atk.
-(21430, 4411, 13), -- Slightly Strong M. Atk.
-(21430, 4412, 9), -- Slightly Weak P. Def.
-(21430, 4413, 9), -- Slightly Weak M. Def.
-(21430, 4414, 2), -- Standard Type
-(21430, 4415, 4), -- One-handed Sword
-(21430, 4416, 9), -- Demons
+(21430, 4160, 9), -- NPC Aura Burn - Magic
+(21430, 4257, 9), -- NPC Hydroblast - Magic
+(21430, 4285, 3), -- Resist Sleep
+(21430, 4408, 14), -- HP Modifiers
+(21430, 4409, 1), -- MP Modifiers
+(21430, 4410, 13), -- P. Atk. Modifiers
+(21430, 4411, 13), -- M. Atk. Modifiers
+(21430, 4412, 9), -- P. Def. Modifiers
+(21430, 4413, 9), -- M. Def. Modifiers
+(21430, 4414, 2), -- Armor Type
+(21430, 4415, 4), -- Weapon Type
+(21430, 4416, 9), -- Races
 (21430, 4577, 9), -- Decrease Accuracy
-(21430, 4585, 3), -- Berserker Spirit
-(21430, 4601, 3), -- Acumen Focus
-(21430, 4789, 8), -- High Level
+(21430, 4585, 3), -- NPC Clan Buff - Berserk Might
+(21430, 4601, 3), -- NPC Clan Buff - Acumen Focus
+(21430, 4789, 8), -- NPC High Level
 -- Arimanes
-(21431, 4285, 3), -- Resist Sleep Attacks
-(21431, 4408, 14), -- HP Increase (6x)
-(21431, 4409, 1), -- MP Increase (1x)
-(21431, 4410, 9), -- Slightly Weak P. Atk.
-(21431, 4411, 9), -- Slightly Weak M. Atk.
-(21431, 4412, 13), -- Slightly Strong P. Def.
-(21431, 4413, 13), -- Slightly Strong M. Def.
-(21431, 4414, 2), -- Standard Type
-(21431, 4415, 4), -- One-handed Sword
-(21431, 4416, 9), -- Demons
-(21431, 4560, 9), -- Fire Burn
-(21431, 4789, 8), -- High Level
+(21431, 4285, 3), -- Resist Sleep
+(21431, 4408, 14), -- HP Modifiers
+(21431, 4409, 1), -- MP Modifiers
+(21431, 4410, 9), -- P. Atk. Modifiers
+(21431, 4411, 9), -- M. Atk. Modifiers
+(21431, 4412, 13), -- P. Def. Modifiers
+(21431, 4413, 13), -- M. Def. Modifiers
+(21431, 4414, 2), -- Armor Type
+(21431, 4415, 4), -- Weapon Type
+(21431, 4416, 9), -- Races
+(21431, 4560, 9), -- NPC Fire Burn
+(21431, 4789, 8), -- NPC High Level
 -- Chakram Beetle
-(21432, 4040, 9), -- Power Shot
-(21432, 4065, 9), -- Heal
-(21432, 4071, 5), -- Resist Bow/Crossbow Weapons
-(21432, 4274, 1), -- Blunt Weapon Weak Point
-(21432, 4341, 1), -- Ultimate Buff
-(21432, 4408, 14), -- HP Increase (6x)
-(21432, 4409, 1), -- MP Increase (1x)
-(21432, 4410, 11), -- Average P. Atk.
-(21432, 4411, 11), -- Average M. Atk.
-(21432, 4412, 15), -- Strong P. Def.
-(21432, 4413, 15), -- Strong M. Def.
-(21432, 4414, 2), -- Standard Type
-(21432, 4415, 3), -- One-handed Sword
-(21432, 4416, 12), -- Bugs
+(21432, 4040, 9), -- NPC Bow Attack
+(21432, 4065, 9), -- NPC Heal
+(21432, 4071, 5), -- Resist Archery
+(21432, 4274, 1), -- Blunt Attack Weak Point
+(21432, 4341, 1), -- Ultimate Buff, 3rd
+(21432, 4408, 14), -- HP Modifiers
+(21432, 4409, 1), -- MP Modifiers
+(21432, 4410, 11), -- P. Atk. Modifiers
+(21432, 4411, 11), -- M. Atk. Modifiers
+(21432, 4412, 15), -- P. Def. Modifiers
+(21432, 4413, 15), -- M. Def. Modifiers
+(21432, 4414, 2), -- Armor Type
+(21432, 4415, 3), -- Weapon Type
+(21432, 4416, 12), -- Races
 (21432, 4437, 4), -- Greater Resist Bleeding
-(21432, 4789, 6), -- High Level
+(21432, 4789, 6), -- NPC High Level
 -- Jamadar Beetle
-(21433, 4065, 7), -- Heal
-(21433, 4071, 5), -- Resist Bow/Crossbow Weapons
-(21433, 4274, 1), -- Blunt Weapon Weak Point
-(21433, 4340, 1), -- Ultimate Buff
-(21433, 4408, 14), -- HP Increase (6x)
-(21433, 4409, 1), -- MP Increase (1x)
-(21433, 4410, 11), -- Average P. Atk.
-(21433, 4411, 11), -- Average M. Atk.
-(21433, 4412, 15), -- Strong P. Def.
-(21433, 4413, 15), -- Strong M. Def.
-(21433, 4414, 2), -- Standard Type
-(21433, 4415, 3), -- One-handed Sword
-(21433, 4416, 12), -- Bugs
+(21433, 4065, 7), -- NPC Heal
+(21433, 4071, 5), -- Resist Archery
+(21433, 4274, 1), -- Blunt Attack Weak Point
+(21433, 4340, 1), -- Ultimate Buff, 2nd
+(21433, 4408, 14), -- HP Modifiers
+(21433, 4409, 1), -- MP Modifiers
+(21433, 4410, 11), -- P. Atk. Modifiers
+(21433, 4411, 11), -- M. Atk. Modifiers
+(21433, 4412, 15), -- P. Def. Modifiers
+(21433, 4413, 15), -- M. Def. Modifiers
+(21433, 4414, 2), -- Armor Type
+(21433, 4415, 3), -- Weapon Type
+(21433, 4416, 12), -- Races
 (21433, 4437, 4), -- Greater Resist Bleeding
 (21433, 4579, 8), -- Bleed
-(21433, 4789, 6), -- High Level
+(21433, 4789, 6), -- NPC High Level
 -- Priest of Blood 
-(21434, 4285, 3), -- Resist Sleep Attacks
-(21434, 4408, 14), -- HP Increase (6x)
-(21434, 4409, 1), -- MP Increase (1x)
-(21434, 4410, 11), -- Average P. Atk.
-(21434, 4411, 11), -- Average M. Atk.
-(21434, 4412, 20), -- Extremely Strong P. Def.
-(21434, 4413, 11), -- Average M. Def.
-(21434, 4414, 2), -- Standard Type
-(21434, 4415, 6), -- Blunt Weapons
-(21434, 4416, 9), -- Demons
+(21434, 4285, 3), -- Resist Sleep
+(21434, 4408, 14), -- HP Modifiers
+(21434, 4409, 1), -- MP Modifiers
+(21434, 4410, 11), -- P. Atk. Modifiers
+(21434, 4411, 11), -- M. Atk. Modifiers
+(21434, 4412, 20), -- P. Def. Modifiers
+(21434, 4413, 11), -- M. Def. Modifiers
+(21434, 4414, 2), -- Armor Type
+(21434, 4415, 6), -- Weapon Type
+(21434, 4416, 9), -- Races
 (21434, 4605, 9), -- Surrender To Fire
-(21434, 4789, 7), -- High Level
+(21434, 4789, 7), -- NPC High Level
 -- Guide of Offering
-(21435, 4091, 1), -- Spirit Ogre
-(21435, 4274, 1), -- Blunt Weapon Weak Point
-(21435, 4408, 14), -- HP Increase (6x)
-(21435, 4409, 1), -- MP Increase (1x)
-(21435, 4410, 11), -- Average P. Atk.
-(21435, 4411, 11), -- Average M. Atk.
-(21435, 4412, 11), -- Average P. Def.
-(21435, 4413, 11), -- Average M. Def.
-(21435, 4414, 2), -- Standard Type
-(21435, 4415, 3), -- One-handed Sword
-(21435, 4416, 1), -- Undead
-(21435, 4663, 1), -- Aggression
-(21435, 4789, 6), -- High Level
+(21435, 4091, 1), -- NPC Ogre Spirit Totem
+(21435, 4274, 1), -- Blunt Attack Weak Point
+(21435, 4408, 14), -- HP Modifiers
+(21435, 4409, 1), -- MP Modifiers
+(21435, 4410, 11), -- P. Atk. Modifiers
+(21435, 4411, 11), -- M. Atk. Modifiers
+(21435, 4412, 11), -- P. Def. Modifiers
+(21435, 4413, 11), -- M. Def. Modifiers
+(21435, 4414, 2), -- Armor Type
+(21435, 4415, 3), -- Weapon Type
+(21435, 4416, 1), -- Races
+(21435, 4663, 1), -- NPC Hate
+(21435, 4789, 6), -- NPC High Level
 -- Leader of Offering
-(21436, 4274, 1), -- Blunt Weapon Weak Point
-(21436, 4408, 14), -- HP Increase (6x)
-(21436, 4409, 1), -- MP Increase (1x)
-(21436, 4410, 11), -- Average P. Atk.
-(21436, 4411, 11), -- Average M. Atk.
-(21436, 4412, 11), -- Average P. Def.
-(21436, 4413, 11), -- Average M. Def.
-(21436, 4414, 2), -- Standard Type
-(21436, 4415, 3), -- One-handed Sword
-(21436, 4416, 1), -- Undead
+(21436, 4274, 1), -- Blunt Attack Weak Point
+(21436, 4408, 14), -- HP Modifiers
+(21436, 4409, 1), -- MP Modifiers
+(21436, 4410, 11), -- P. Atk. Modifiers
+(21436, 4411, 11), -- M. Atk. Modifiers
+(21436, 4412, 11), -- P. Def. Modifiers
+(21436, 4413, 11), -- M. Def. Modifiers
+(21436, 4414, 2), -- Armor Type
+(21436, 4415, 3), -- Weapon Type
+(21436, 4416, 1), -- Races
 (21436, 4605, 9), -- Surrender To Fire
-(21436, 4789, 6), -- High Level
+(21436, 4789, 6), -- NPC High Level
 -- Offering Bug
-(21437, 4071, 5), -- Resist Bow/Crossbow Weapons
-(21437, 4274, 1), -- Blunt Weapon Weak Point
-(21437, 4408, 12), -- HP Increase (4x)
-(21437, 4409, 1), -- MP Increase (1x)
-(21437, 4410, 11), -- Average P. Atk.
-(21437, 4411, 11), -- Average M. Atk.
-(21437, 4412, 11), -- Average P. Def.
-(21437, 4413, 11), -- Average M. Def.
-(21437, 4414, 2), -- Standard Type
-(21437, 4415, 3), -- One-handed Sword
-(21437, 4416, 12), -- Bugs
+(21437, 4071, 5), -- Resist Archery
+(21437, 4274, 1), -- Blunt Attack Weak Point
+(21437, 4408, 12), -- HP Modifiers
+(21437, 4409, 1), -- MP Modifiers
+(21437, 4410, 11), -- P. Atk. Modifiers
+(21437, 4411, 11), -- M. Atk. Modifiers
+(21437, 4412, 11), -- P. Def. Modifiers
+(21437, 4413, 11), -- M. Def. Modifiers
+(21437, 4414, 2), -- Armor Type
+(21437, 4415, 3), -- Weapon Type
+(21437, 4416, 12), -- Races
 (21437, 4437, 4), -- Greater Resist Bleeding
 (21437, 4605, 8), -- Surrender To Fire
-(21437, 4613, 8), -- Clan Heal
-(21437, 4614, 8), -- Death Bomb
-(21437, 4789, 6), -- High Level
+(21437, 4613, 8), -- NPC Clan Heal
+(21437, 4614, 8), -- NPC Death Bomb
+(21437, 4789, 6), -- NPC High Level
 -- Heathen Warrior
-(21438, 4032, 6), -- Power Strike
-(21438, 4274, 1), -- Blunt Weapon Weak Point
-(21438, 4408, 8), -- HP Increase (1/4x)
-(21438, 4409, 1), -- MP Increase (1x)
-(21438, 4410, 13), -- Slightly Strong P. Atk.
-(21438, 4411, 13), -- Slightly Strong M. Atk.
-(21438, 4412, 9), -- Slightly Weak P. Def.
-(21438, 4413, 9), -- Slightly Weak M. Def.
-(21438, 4414, 2), -- Standard Type
-(21438, 4415, 7), -- Daggers
-(21438, 4416, 1), -- Undead
+(21438, 4032, 6), -- NPC Strike
+(21438, 4274, 1), -- Blunt Attack Weak Point
+(21438, 4408, 8), -- HP Modifiers
+(21438, 4409, 1), -- MP Modifiers
+(21438, 4410, 13), -- P. Atk. Modifiers
+(21438, 4411, 13), -- M. Atk. Modifiers
+(21438, 4412, 9), -- P. Def. Modifiers
+(21438, 4413, 9), -- M. Def. Modifiers
+(21438, 4414, 2), -- Armor Type
+(21438, 4415, 7), -- Weapon Type
+(21438, 4416, 1), -- Races
 -- Heathen Executed 
-(21439, 4073, 6), -- Stun
-(21439, 4408, 8), -- HP Increase (1/4x)
-(21439, 4409, 1), -- MP Increase (1x)
-(21439, 4410, 13), -- Slightly Strong P. Atk.
-(21439, 4411, 13), -- Slightly Strong M. Atk.
-(21439, 4412, 9), -- Slightly Weak P. Def.
-(21439, 4413, 9), -- Slightly Weak M. Def.
-(21439, 4414, 3), -- Light Armor Type
-(21439, 4415, 3), -- One-handed Sword
-(21439, 4416, 1), -- Undead
+(21439, 4073, 6), -- Shock
+(21439, 4408, 8), -- HP Modifiers
+(21439, 4409, 1), -- MP Modifiers
+(21439, 4410, 13), -- P. Atk. Modifiers
+(21439, 4411, 13), -- M. Atk. Modifiers
+(21439, 4412, 9), -- P. Def. Modifiers
+(21439, 4413, 9), -- M. Def. Modifiers
+(21439, 4414, 3), -- Armor Type
+(21439, 4415, 3), -- Weapon Type
+(21439, 4416, 1), -- Races
 -- Heathen Archer
-(21440, 4040, 6), -- Power Shot
-(21440, 4071, 3), -- Resist Bow/Crossbow Weapons
-(21440, 4274, 1), -- Blunt Weapon Weak Point
-(21440, 4408, 8), -- HP Increase (1/4x)
-(21440, 4409, 1), -- MP Increase (1x)
-(21440, 4410, 13), -- Slightly Strong P. Atk.
-(21440, 4411, 13), -- Slightly Strong M. Atk.
-(21440, 4412, 9), -- Slightly Weak P. Def.
-(21440, 4413, 9), -- Slightly Weak M. Def.
-(21440, 4414, 3), -- Light Armor Type
-(21440, 4415, 9), -- Bows
-(21440, 4416, 1), -- Undead
+(21440, 4040, 6), -- NPC Bow Attack
+(21440, 4071, 3), -- Resist Archery
+(21440, 4274, 1), -- Blunt Attack Weak Point
+(21440, 4408, 8), -- HP Modifiers
+(21440, 4409, 1), -- MP Modifiers
+(21440, 4410, 13), -- P. Atk. Modifiers
+(21440, 4411, 13), -- M. Atk. Modifiers
+(21440, 4412, 9), -- P. Def. Modifiers
+(21440, 4413, 9), -- M. Def. Modifiers
+(21440, 4414, 3), -- Armor Type
+(21440, 4415, 9), -- Weapon Type
+(21440, 4416, 1), -- Races
 -- Heathen Grunt
-(21441, 4072, 6), -- Stun
-(21441, 4274, 1), -- Blunt Weapon Weak Point
-(21441, 4408, 8), -- HP Increase (1/4x)
-(21441, 4409, 1), -- MP Increase (1x)
-(21441, 4410, 13), -- Slightly Strong P. Atk.
-(21441, 4411, 13), -- Slightly Strong M. Atk.
-(21441, 4412, 9), -- Slightly Weak P. Def.
-(21441, 4413, 9), -- Slightly Weak M. Def.
-(21441, 4414, 2), -- Standard Type
-(21441, 4415, 3), -- One-handed Sword
-(21441, 4416, 1), -- Undead
+(21441, 4072, 6), -- Shock
+(21441, 4274, 1), -- Blunt Attack Weak Point
+(21441, 4408, 8), -- HP Modifiers
+(21441, 4409, 1), -- MP Modifiers
+(21441, 4410, 13), -- P. Atk. Modifiers
+(21441, 4411, 13), -- M. Atk. Modifiers
+(21441, 4412, 9), -- P. Def. Modifiers
+(21441, 4413, 9), -- M. Def. Modifiers
+(21441, 4414, 2), -- Armor Type
+(21441, 4415, 3), -- Weapon Type
+(21441, 4416, 1), -- Races
 -- Heathen Knight
-(21442, 4232, 6), -- Whirlwind
-(21442, 4274, 1), -- Blunt Weapon Weak Point
-(21442, 4408, 8), -- HP Increase (1/4x)
-(21442, 4409, 1), -- MP Increase (1x)
-(21442, 4410, 13), -- Slightly Strong P. Atk.
-(21442, 4411, 13), -- Slightly Strong M. Atk.
-(21442, 4412, 9), -- Slightly Weak P. Def.
-(21442, 4413, 9), -- Slightly Weak M. Def.
-(21442, 4414, 2), -- Standard Type
-(21442, 4415, 3), -- One-handed Sword
-(21442, 4416, 1), -- Undead
+(21442, 4232, 6), -- NPC AE Strike
+(21442, 4274, 1), -- Blunt Attack Weak Point
+(21442, 4408, 8), -- HP Modifiers
+(21442, 4409, 1), -- MP Modifiers
+(21442, 4410, 13), -- P. Atk. Modifiers
+(21442, 4411, 13), -- M. Atk. Modifiers
+(21442, 4412, 9), -- P. Def. Modifiers
+(21442, 4413, 9), -- M. Def. Modifiers
+(21442, 4414, 2), -- Armor Type
+(21442, 4415, 3), -- Weapon Type
+(21442, 4416, 1), -- Races
 -- Raider of Pastureland
-(21443, 4032, 6), -- Power Strike
-(21443, 4408, 1), -- HP Increase (1x)
-(21443, 4409, 1), -- MP Increase (1x)
-(21443, 4410, 8), -- Weak P. Atk.
-(21443, 4411, 8), -- Weak M. Atk.
-(21443, 4412, 14), -- Strong P. Def.
-(21443, 4413, 14), -- Strong M. Def.
-(21443, 4414, 2), -- Standard Type
-(21443, 4415, 7), -- Daggers
-(21443, 4416, 6), -- Humanoids
+(21443, 4032, 6), -- NPC Strike
+(21443, 4408, 1), -- HP Modifiers
+(21443, 4409, 1), -- MP Modifiers
+(21443, 4410, 8), -- P. Atk. Modifiers
+(21443, 4411, 8), -- M. Atk. Modifiers
+(21443, 4412, 14), -- P. Def. Modifiers
+(21443, 4413, 14), -- M. Def. Modifiers
+(21443, 4414, 2), -- Armor Type
+(21443, 4415, 7), -- Weapon Type
+(21443, 4416, 6), -- Races
 -- Raider of Pastureland
-(21444, 4408, 1), -- HP Increase (1x)
-(21444, 4409, 1), -- MP Increase (1x)
-(21444, 4410, 8), -- Weak P. Atk.
-(21444, 4411, 8), -- Weak M. Atk.
-(21444, 4412, 14), -- Strong P. Def.
-(21444, 4413, 14), -- Strong M. Def.
-(21444, 4414, 2), -- Standard Type
-(21444, 4415, 3), -- One-handed Sword
-(21444, 4416, 6), -- Humanoids
+(21444, 4408, 1), -- HP Modifiers
+(21444, 4409, 1), -- MP Modifiers
+(21444, 4410, 8), -- P. Atk. Modifiers
+(21444, 4411, 8), -- M. Atk. Modifiers
+(21444, 4412, 14), -- P. Def. Modifiers
+(21444, 4413, 14), -- M. Def. Modifiers
+(21444, 4414, 2), -- Armor Type
+(21444, 4415, 3), -- Weapon Type
+(21444, 4416, 6), -- Races
 -- Alpine Bandersnatch
-(21445, 4408, 1), -- HP Increase (1x)
-(21445, 4409, 1), -- MP Increase (1x)
-(21445, 4410, 10), -- Slightly Weak P. Atk.
-(21445, 4411, 10), -- Slightly Weak M. Atk.
-(21445, 4412, 12), -- Slightly Strong P. Def.
-(21445, 4413, 12), -- Slightly Strong M. Def.
-(21445, 4414, 2), -- Standard Type
-(21445, 4415, 4), -- One-handed Sword
-(21445, 4416, 3), -- Beasts
+(21445, 4408, 1), -- HP Modifiers
+(21445, 4409, 1), -- MP Modifiers
+(21445, 4410, 10), -- P. Atk. Modifiers
+(21445, 4411, 10), -- M. Atk. Modifiers
+(21445, 4412, 12), -- P. Def. Modifiers
+(21445, 4413, 12), -- M. Def. Modifiers
+(21445, 4414, 2), -- Armor Type
+(21445, 4415, 4), -- Weapon Type
+(21445, 4416, 3), -- Races
 -- Raider of Pastureland
-(21446, 4073, 6), -- Stun
-(21446, 4085, 1), -- Critical Damage
+(21446, 4073, 6), -- Shock
+(21446, 4085, 1), -- Critical Power
 (21446, 4086, 1), -- Critical Chance
-(21446, 4408, 1), -- HP Increase (1x)
-(21446, 4409, 1), -- MP Increase (1x)
-(21446, 4410, 8), -- Weak P. Atk.
-(21446, 4411, 8), -- Weak M. Atk.
-(21446, 4412, 14), -- Strong P. Def.
-(21446, 4413, 14), -- Strong M. Def.
-(21446, 4414, 2), -- Standard Type
-(21446, 4415, 7), -- Daggers
-(21446, 4416, 6), -- Humanoids
+(21446, 4408, 1), -- HP Modifiers
+(21446, 4409, 1), -- MP Modifiers
+(21446, 4410, 8), -- P. Atk. Modifiers
+(21446, 4411, 8), -- M. Atk. Modifiers
+(21446, 4412, 14), -- P. Def. Modifiers
+(21446, 4413, 14), -- M. Def. Modifiers
+(21446, 4414, 2), -- Armor Type
+(21446, 4415, 7), -- Weapon Type
+(21446, 4416, 6), -- Races
 -- Raider of Pastureland
-(21447, 4067, 6), -- Blow
-(21447, 4408, 1), -- HP Increase (1x)
-(21447, 4409, 1), -- MP Increase (1x)
-(21447, 4410, 8), -- Weak P. Atk.
-(21447, 4411, 8), -- Weak M. Atk.
-(21447, 4412, 14), -- Strong P. Def.
-(21447, 4413, 14), -- Strong M. Def.
-(21447, 4414, 2), -- Standard Type
-(21447, 4415, 7), -- Daggers
-(21447, 4416, 6), -- Humanoids
+(21447, 4067, 6), -- NPC Mortal Blow
+(21447, 4408, 1), -- HP Modifiers
+(21447, 4409, 1), -- MP Modifiers
+(21447, 4410, 8), -- P. Atk. Modifiers
+(21447, 4411, 8), -- M. Atk. Modifiers
+(21447, 4412, 14), -- P. Def. Modifiers
+(21447, 4413, 14), -- M. Def. Modifiers
+(21447, 4414, 2), -- Armor Type
+(21447, 4415, 7), -- Weapon Type
+(21447, 4416, 6), -- Races
 -- Raider of Pastureland
-(21448, 4408, 1), -- HP Increase (1x)
-(21448, 4409, 1), -- MP Increase (1x)
-(21448, 4410, 8), -- Weak P. Atk.
-(21448, 4411, 8), -- Weak M. Atk.
-(21448, 4412, 14), -- Strong P. Def.
-(21448, 4413, 14), -- Strong M. Def.
-(21448, 4414, 2), -- Standard Type
-(21448, 4415, 3), -- One-handed Sword
-(21448, 4416, 6), -- Humanoids
+(21448, 4408, 1), -- HP Modifiers
+(21448, 4409, 1), -- MP Modifiers
+(21448, 4410, 8), -- P. Atk. Modifiers
+(21448, 4411, 8), -- M. Atk. Modifiers
+(21448, 4412, 14), -- P. Def. Modifiers
+(21448, 4413, 14), -- M. Def. Modifiers
+(21448, 4414, 2), -- Armor Type
+(21448, 4415, 3), -- Weapon Type
+(21448, 4416, 6), -- Races
 -- Raider of Pastureland
-(21449, 4085, 1), -- Critical Damage
+(21449, 4085, 1), -- Critical Power
 (21449, 4086, 1), -- Critical Chance
-(21449, 4232, 6), -- Whirlwind
-(21449, 4408, 1), -- HP Increase (1x)
-(21449, 4409, 1), -- MP Increase (1x)
-(21449, 4410, 8), -- Weak P. Atk.
-(21449, 4411, 8), -- Weak M. Atk.
-(21449, 4412, 14), -- Strong P. Def.
-(21449, 4413, 14), -- Strong M. Def.
-(21449, 4414, 2), -- Standard Type
-(21449, 4415, 7), -- Daggers
-(21449, 4416, 6), -- Humanoids
+(21449, 4232, 6), -- NPC AE Strike
+(21449, 4408, 1), -- HP Modifiers
+(21449, 4409, 1), -- MP Modifiers
+(21449, 4410, 8), -- P. Atk. Modifiers
+(21449, 4411, 8), -- M. Atk. Modifiers
+(21449, 4412, 14), -- P. Def. Modifiers
+(21449, 4413, 14), -- M. Def. Modifiers
+(21449, 4414, 2), -- Armor Type
+(21449, 4415, 7), -- Weapon Type
+(21449, 4416, 6), -- Races
 -- Alpine Grendel
-(21450, 4072, 6), -- Stun
-(21450, 4408, 1), -- HP Increase (1x)
-(21450, 4409, 1), -- MP Increase (1x)
-(21450, 4410, 8), -- Weak P. Atk.
-(21450, 4411, 8), -- Weak M. Atk.
-(21450, 4412, 14), -- Strong P. Def.
-(21450, 4413, 14), -- Strong M. Def.
-(21450, 4414, 2), -- Standard Type
-(21450, 4415, 4), -- One-handed Sword
-(21450, 4416, 4), -- Animals
+(21450, 4072, 6), -- Shock
+(21450, 4408, 1), -- HP Modifiers
+(21450, 4409, 1), -- MP Modifiers
+(21450, 4410, 8), -- P. Atk. Modifiers
+(21450, 4411, 8), -- M. Atk. Modifiers
+(21450, 4412, 14), -- P. Def. Modifiers
+(21450, 4413, 14), -- M. Def. Modifiers
+(21450, 4414, 2), -- Armor Type
+(21450, 4415, 4), -- Weapon Type
+(21450, 4416, 4), -- Races
 -- Alpine Kookaburra
 (21451, 2188, 1), -- Golden Spice
 (21451, 2189, 1), -- Crystal Spice
-(21451, 4408, 9), -- HP Increase (1/2x)
-(21451, 4409, 1), -- MP Increase (1x)
-(21451, 4410, 11), -- Average P. Atk.
-(21451, 4411, 11), -- Average M. Atk.
-(21451, 4412, 11), -- Average P. Def.
-(21451, 4413, 11), -- Average M. Def.
-(21451, 4414, 2), -- Standard Type
-(21451, 4415, 3), -- One-handed Sword
-(21451, 4416, 3), -- Beasts
+(21451, 4408, 9), -- HP Modifiers
+(21451, 4409, 1), -- MP Modifiers
+(21451, 4410, 11), -- P. Atk. Modifiers
+(21451, 4411, 11), -- M. Atk. Modifiers
+(21451, 4412, 11), -- P. Def. Modifiers
+(21451, 4413, 11), -- M. Def. Modifiers
+(21451, 4414, 2), -- Armor Type
+(21451, 4415, 3), -- Weapon Type
+(21451, 4416, 3), -- Races
 (21451, 4438, 2), -- Greater Resist Sleep
 -- Alpine Kookaburra
-(21452, 4032, 6), -- Power Strike
-(21452, 4092, 1), -- Spirit Puma
-(21452, 4408, 1), -- HP Increase (1x)
-(21452, 4409, 1), -- MP Increase (1x)
-(21452, 4410, 9), -- Slightly Weak P. Atk.
-(21452, 4411, 9), -- Slightly Weak M. Atk.
-(21452, 4412, 13), -- Slightly Strong P. Def.
-(21452, 4413, 13), -- Slightly Strong M. Def.
-(21452, 4414, 2), -- Standard Type
-(21452, 4415, 3), -- One-handed Sword
-(21452, 4416, 3), -- Beasts
+(21452, 4032, 6), -- NPC Strike
+(21452, 4092, 1), -- NPC Puma Spirit Totem
+(21452, 4408, 1), -- HP Modifiers
+(21452, 4409, 1), -- MP Modifiers
+(21452, 4410, 9), -- P. Atk. Modifiers
+(21452, 4411, 9), -- M. Atk. Modifiers
+(21452, 4412, 13), -- P. Def. Modifiers
+(21452, 4413, 13), -- M. Def. Modifiers
+(21452, 4414, 2), -- Armor Type
+(21452, 4415, 3), -- Weapon Type
+(21452, 4416, 3), -- Races
 (21452, 4438, 2), -- Greater Resist Sleep
 -- Alpine Kookaburra
-(21453, 4092, 1), -- Spirit Puma
-(21453, 4160, 6), -- Aura Burn
-(21453, 4257, 6), -- Hydro Blast
-(21453, 4408, 1), -- HP Increase (1x)
-(21453, 4409, 1), -- MP Increase (1x)
-(21453, 4410, 9), -- Slightly Weak P. Atk.
-(21453, 4411, 9), -- Slightly Weak M. Atk.
-(21453, 4412, 13), -- Slightly Strong P. Def.
-(21453, 4413, 13), -- Slightly Strong M. Def.
-(21453, 4414, 2), -- Standard Type
-(21453, 4415, 3), -- One-handed Sword
-(21453, 4416, 3), -- Beasts
+(21453, 4092, 1), -- NPC Puma Spirit Totem
+(21453, 4160, 6), -- NPC Aura Burn - Magic
+(21453, 4257, 6), -- NPC Hydroblast - Magic
+(21453, 4408, 1), -- HP Modifiers
+(21453, 4409, 1), -- MP Modifiers
+(21453, 4410, 9), -- P. Atk. Modifiers
+(21453, 4411, 9), -- M. Atk. Modifiers
+(21453, 4412, 13), -- P. Def. Modifiers
+(21453, 4413, 13), -- M. Def. Modifiers
+(21453, 4414, 2), -- Armor Type
+(21453, 4415, 3), -- Weapon Type
+(21453, 4416, 3), -- Races
 (21453, 4438, 2), -- Greater Resist Sleep
 -- Alpine Kookaburra
-(21454, 4067, 6), -- Blow
-(21454, 4092, 1), -- Spirit Puma
-(21454, 4408, 1), -- HP Increase (1x)
-(21454, 4409, 1), -- MP Increase (1x)
-(21454, 4410, 9), -- Slightly Weak P. Atk.
-(21454, 4411, 9), -- Slightly Weak M. Atk.
-(21454, 4412, 13), -- Slightly Strong P. Def.
-(21454, 4413, 13), -- Slightly Strong M. Def.
-(21454, 4414, 2), -- Standard Type
-(21454, 4415, 3), -- One-handed Sword
-(21454, 4416, 3), -- Beasts
+(21454, 4067, 6), -- NPC Mortal Blow
+(21454, 4092, 1), -- NPC Puma Spirit Totem
+(21454, 4408, 1), -- HP Modifiers
+(21454, 4409, 1), -- MP Modifiers
+(21454, 4410, 9), -- P. Atk. Modifiers
+(21454, 4411, 9), -- M. Atk. Modifiers
+(21454, 4412, 13), -- P. Def. Modifiers
+(21454, 4413, 13), -- M. Def. Modifiers
+(21454, 4414, 2), -- Armor Type
+(21454, 4415, 3), -- Weapon Type
+(21454, 4416, 3), -- Races
 (21454, 4438, 2), -- Greater Resist Sleep
 -- Alpine Kookaburra
-(21455, 4092, 1), -- Spirit Puma
-(21455, 4157, 6), -- Blaze
-(21455, 4160, 6), -- Aura Burn
-(21455, 4408, 1), -- HP Increase (1x)
-(21455, 4409, 1), -- MP Increase (1x)
-(21455, 4410, 9), -- Slightly Weak P. Atk.
-(21455, 4411, 9), -- Slightly Weak M. Atk.
-(21455, 4412, 13), -- Slightly Strong P. Def.
-(21455, 4413, 13), -- Slightly Strong M. Def.
-(21455, 4414, 2), -- Standard Type
-(21455, 4415, 3), -- One-handed Sword
-(21455, 4416, 3), -- Beasts
+(21455, 4092, 1), -- NPC Puma Spirit Totem
+(21455, 4157, 6), -- NPC Blaze - Magic
+(21455, 4160, 6), -- NPC Aura Burn - Magic
+(21455, 4408, 1), -- HP Modifiers
+(21455, 4409, 1), -- MP Modifiers
+(21455, 4410, 9), -- P. Atk. Modifiers
+(21455, 4411, 9), -- M. Atk. Modifiers
+(21455, 4412, 13), -- P. Def. Modifiers
+(21455, 4413, 13), -- M. Def. Modifiers
+(21455, 4414, 2), -- Armor Type
+(21455, 4415, 3), -- Weapon Type
+(21455, 4416, 3), -- Races
 (21455, 4438, 2), -- Greater Resist Sleep
 -- Alpine Kookaburra
-(21456, 4032, 6), -- Power Strike
-(21456, 4092, 1), -- Spirit Puma
-(21456, 4408, 1), -- HP Increase (1x)
-(21456, 4409, 1), -- MP Increase (1x)
-(21456, 4410, 9), -- Slightly Weak P. Atk.
-(21456, 4411, 9), -- Slightly Weak M. Atk.
-(21456, 4412, 13), -- Slightly Strong P. Def.
-(21456, 4413, 13), -- Slightly Strong M. Def.
-(21456, 4414, 2), -- Standard Type
-(21456, 4415, 3), -- One-handed Sword
-(21456, 4416, 3), -- Beasts
+(21456, 4032, 6), -- NPC Strike
+(21456, 4092, 1), -- NPC Puma Spirit Totem
+(21456, 4408, 1), -- HP Modifiers
+(21456, 4409, 1), -- MP Modifiers
+(21456, 4410, 9), -- P. Atk. Modifiers
+(21456, 4411, 9), -- M. Atk. Modifiers
+(21456, 4412, 13), -- P. Def. Modifiers
+(21456, 4413, 13), -- M. Def. Modifiers
+(21456, 4414, 2), -- Armor Type
+(21456, 4415, 3), -- Weapon Type
+(21456, 4416, 3), -- Races
 (21456, 4438, 2), -- Greater Resist Sleep
 -- Alpine Kookaburra
-(21457, 4092, 1), -- Spirit Puma
-(21457, 4160, 6), -- Aura Burn
-(21457, 4257, 6), -- Hydro Blast
-(21457, 4408, 1), -- HP Increase (1x)
-(21457, 4409, 1), -- MP Increase (1x)
-(21457, 4410, 9), -- Slightly Weak P. Atk.
-(21457, 4411, 9), -- Slightly Weak M. Atk.
-(21457, 4412, 13), -- Slightly Strong P. Def.
-(21457, 4413, 13), -- Slightly Strong M. Def.
-(21457, 4414, 2), -- Standard Type
-(21457, 4415, 3), -- One-handed Sword
-(21457, 4416, 3), -- Beasts
+(21457, 4092, 1), -- NPC Puma Spirit Totem
+(21457, 4160, 6), -- NPC Aura Burn - Magic
+(21457, 4257, 6), -- NPC Hydroblast - Magic
+(21457, 4408, 1), -- HP Modifiers
+(21457, 4409, 1), -- MP Modifiers
+(21457, 4410, 9), -- P. Atk. Modifiers
+(21457, 4411, 9), -- M. Atk. Modifiers
+(21457, 4412, 13), -- P. Def. Modifiers
+(21457, 4413, 13), -- M. Def. Modifiers
+(21457, 4414, 2), -- Armor Type
+(21457, 4415, 3), -- Weapon Type
+(21457, 4416, 3), -- Races
 (21457, 4438, 2), -- Greater Resist Sleep
 -- Alpine Kookaburra
-(21458, 4067, 6), -- Blow
-(21458, 4092, 1), -- Spirit Puma
-(21458, 4408, 1), -- HP Increase (1x)
-(21458, 4409, 1), -- MP Increase (1x)
-(21458, 4410, 9), -- Slightly Weak P. Atk.
-(21458, 4411, 9), -- Slightly Weak M. Atk.
-(21458, 4412, 13), -- Slightly Strong P. Def.
-(21458, 4413, 13), -- Slightly Strong M. Def.
-(21458, 4414, 2), -- Standard Type
-(21458, 4415, 3), -- One-handed Sword
-(21458, 4416, 3), -- Beasts
+(21458, 4067, 6), -- NPC Mortal Blow
+(21458, 4092, 1), -- NPC Puma Spirit Totem
+(21458, 4408, 1), -- HP Modifiers
+(21458, 4409, 1), -- MP Modifiers
+(21458, 4410, 9), -- P. Atk. Modifiers
+(21458, 4411, 9), -- M. Atk. Modifiers
+(21458, 4412, 13), -- P. Def. Modifiers
+(21458, 4413, 13), -- M. Def. Modifiers
+(21458, 4414, 2), -- Armor Type
+(21458, 4415, 3), -- Weapon Type
+(21458, 4416, 3), -- Races
 (21458, 4438, 2), -- Greater Resist Sleep
 -- Alpine Kookaburra
-(21459, 4092, 1), -- Spirit Puma
-(21459, 4157, 6), -- Blaze
-(21459, 4160, 6), -- Aura Burn
-(21459, 4408, 1), -- HP Increase (1x)
-(21459, 4409, 1), -- MP Increase (1x)
-(21459, 4410, 9), -- Slightly Weak P. Atk.
-(21459, 4411, 9), -- Slightly Weak M. Atk.
-(21459, 4412, 13), -- Slightly Strong P. Def.
-(21459, 4413, 13), -- Slightly Strong M. Def.
-(21459, 4414, 2), -- Standard Type
-(21459, 4415, 3), -- One-handed Sword
-(21459, 4416, 3), -- Beasts
+(21459, 4092, 1), -- NPC Puma Spirit Totem
+(21459, 4157, 6), -- NPC Blaze - Magic
+(21459, 4160, 6), -- NPC Aura Burn - Magic
+(21459, 4408, 1), -- HP Modifiers
+(21459, 4409, 1), -- MP Modifiers
+(21459, 4410, 9), -- P. Atk. Modifiers
+(21459, 4411, 9), -- M. Atk. Modifiers
+(21459, 4412, 13), -- P. Def. Modifiers
+(21459, 4413, 13), -- M. Def. Modifiers
+(21459, 4414, 2), -- Armor Type
+(21459, 4415, 3), -- Weapon Type
+(21459, 4416, 3), -- Races
 (21459, 4438, 2), -- Greater Resist Sleep
 -- Alpine Kookaburra
-(21460, 4073, 6), -- Stun
-(21460, 4074, 2), -- Haste
-(21460, 4232, 6), -- Whirlwind
-(21460, 4408, 10), -- HP Increase (2x)
-(21460, 4409, 1), -- MP Increase (1x)
-(21460, 4410, 11), -- Average P. Atk.
-(21460, 4411, 11), -- Average M. Atk.
-(21460, 4412, 11), -- Average P. Def.
-(21460, 4413, 11), -- Average M. Def.
-(21460, 4414, 2), -- Standard Type
-(21460, 4415, 3), -- One-handed Sword
-(21460, 4416, 3), -- Beasts
+(21460, 4073, 6), -- Shock
+(21460, 4074, 2), -- NPC Haste
+(21460, 4232, 6), -- NPC AE Strike
+(21460, 4408, 10), -- HP Modifiers
+(21460, 4409, 1), -- MP Modifiers
+(21460, 4410, 11), -- P. Atk. Modifiers
+(21460, 4411, 11), -- M. Atk. Modifiers
+(21460, 4412, 11), -- P. Def. Modifiers
+(21460, 4413, 11), -- M. Def. Modifiers
+(21460, 4414, 2), -- Armor Type
+(21460, 4415, 3), -- Weapon Type
+(21460, 4416, 3), -- Races
 (21460, 4438, 2), -- Greater Resist Sleep
 -- Alpine Kookaburra
-(21461, 4160, 6), -- Aura Burn
-(21461, 4232, 6), -- Whirlwind
-(21461, 4408, 10), -- HP Increase (2x)
-(21461, 4409, 1), -- MP Increase (1x)
-(21461, 4410, 11), -- Average P. Atk.
-(21461, 4411, 11), -- Average M. Atk.
-(21461, 4412, 11), -- Average P. Def.
-(21461, 4413, 11), -- Average M. Def.
-(21461, 4414, 2), -- Standard Type
-(21461, 4415, 3), -- One-handed Sword
-(21461, 4416, 3), -- Beasts
+(21461, 4160, 6), -- NPC Aura Burn - Magic
+(21461, 4232, 6), -- NPC AE Strike
+(21461, 4408, 10), -- HP Modifiers
+(21461, 4409, 1), -- MP Modifiers
+(21461, 4410, 11), -- P. Atk. Modifiers
+(21461, 4411, 11), -- M. Atk. Modifiers
+(21461, 4412, 11), -- P. Def. Modifiers
+(21461, 4413, 11), -- M. Def. Modifiers
+(21461, 4414, 2), -- Armor Type
+(21461, 4415, 3), -- Weapon Type
+(21461, 4416, 3), -- Races
 (21461, 4438, 2), -- Greater Resist Sleep
-(21461, 4566, 6), -- Rain of Fire
-(21461, 4633, 3), -- Acumen Berserker Empower
+(21461, 4566, 6), -- NPC Eruption - Magic
+(21461, 4633, 3), -- NPC Buff - Acumen Empower Berserk
 -- Alpine Kookaburra
-(21462, 4067, 6), -- Blow
-(21462, 4072, 6), -- Stun
-(21462, 4074, 2), -- Haste
-(21462, 4408, 10), -- HP Increase (2x)
-(21462, 4409, 1), -- MP Increase (1x)
-(21462, 4410, 11), -- Average P. Atk.
-(21462, 4411, 11), -- Average M. Atk.
-(21462, 4412, 11), -- Average P. Def.
-(21462, 4413, 11), -- Average M. Def.
-(21462, 4414, 2), -- Standard Type
-(21462, 4415, 3), -- One-handed Sword
-(21462, 4416, 3), -- Beasts
+(21462, 4067, 6), -- NPC Mortal Blow
+(21462, 4072, 6), -- Shock
+(21462, 4074, 2), -- NPC Haste
+(21462, 4408, 10), -- HP Modifiers
+(21462, 4409, 1), -- MP Modifiers
+(21462, 4410, 11), -- P. Atk. Modifiers
+(21462, 4411, 11), -- M. Atk. Modifiers
+(21462, 4412, 11), -- P. Def. Modifiers
+(21462, 4413, 11), -- M. Def. Modifiers
+(21462, 4414, 2), -- Armor Type
+(21462, 4415, 3), -- Weapon Type
+(21462, 4416, 3), -- Races
 (21462, 4438, 2), -- Greater Resist Sleep
 -- Alpine Kookaburra
-(21463, 4160, 6), -- Aura Burn
-(21463, 4408, 10), -- HP Increase (2x)
-(21463, 4409, 1), -- MP Increase (1x)
-(21463, 4410, 11), -- Average P. Atk.
-(21463, 4411, 11), -- Average M. Atk.
-(21463, 4412, 11), -- Average P. Def.
-(21463, 4413, 11), -- Average M. Def.
-(21463, 4414, 2), -- Standard Type
-(21463, 4415, 3), -- One-handed Sword
-(21463, 4416, 3), -- Beasts
+(21463, 4160, 6), -- NPC Aura Burn - Magic
+(21463, 4408, 10), -- HP Modifiers
+(21463, 4409, 1), -- MP Modifiers
+(21463, 4410, 11), -- P. Atk. Modifiers
+(21463, 4411, 11), -- M. Atk. Modifiers
+(21463, 4412, 11), -- P. Def. Modifiers
+(21463, 4413, 11), -- M. Def. Modifiers
+(21463, 4414, 2), -- Armor Type
+(21463, 4415, 3), -- Weapon Type
+(21463, 4416, 3), -- Races
 (21463, 4438, 2), -- Greater Resist Sleep
-(21463, 4566, 6), -- Rain of Fire
-(21463, 4571, 6), -- Blazing Circle
-(21463, 4633, 3), -- Acumen Berserker Empower
+(21463, 4566, 6), -- NPC Eruption - Magic
+(21463, 4571, 6), -- NPC Blazing Circle
+(21463, 4633, 3), -- NPC Buff - Acumen Empower Berserk
 -- Alpine Kookaburra
-(21464, 4073, 6), -- Stun
-(21464, 4074, 2), -- Haste
-(21464, 4232, 6), -- Whirlwind
-(21464, 4408, 10), -- HP Increase (2x)
-(21464, 4409, 1), -- MP Increase (1x)
-(21464, 4410, 11), -- Average P. Atk.
-(21464, 4411, 11), -- Average M. Atk.
-(21464, 4412, 11), -- Average P. Def.
-(21464, 4413, 11), -- Average M. Def.
-(21464, 4414, 2), -- Standard Type
-(21464, 4415, 3), -- One-handed Sword
-(21464, 4416, 3), -- Beasts
+(21464, 4073, 6), -- Shock
+(21464, 4074, 2), -- NPC Haste
+(21464, 4232, 6), -- NPC AE Strike
+(21464, 4408, 10), -- HP Modifiers
+(21464, 4409, 1), -- MP Modifiers
+(21464, 4410, 11), -- P. Atk. Modifiers
+(21464, 4411, 11), -- M. Atk. Modifiers
+(21464, 4412, 11), -- P. Def. Modifiers
+(21464, 4413, 11), -- M. Def. Modifiers
+(21464, 4414, 2), -- Armor Type
+(21464, 4415, 3), -- Weapon Type
+(21464, 4416, 3), -- Races
 (21464, 4438, 2), -- Greater Resist Sleep
 -- Alpine Kookaburra
-(21465, 4160, 6), -- Aura Burn
-(21465, 4232, 6), -- Whirlwind
-(21465, 4408, 10), -- HP Increase (2x)
-(21465, 4409, 1), -- MP Increase (1x)
-(21465, 4410, 11), -- Average P. Atk.
-(21465, 4411, 11), -- Average M. Atk.
-(21465, 4412, 11), -- Average P. Def.
-(21465, 4413, 11), -- Average M. Def.
-(21465, 4414, 2), -- Standard Type
-(21465, 4415, 3), -- One-handed Sword
-(21465, 4416, 3), -- Beasts
+(21465, 4160, 6), -- NPC Aura Burn - Magic
+(21465, 4232, 6), -- NPC AE Strike
+(21465, 4408, 10), -- HP Modifiers
+(21465, 4409, 1), -- MP Modifiers
+(21465, 4410, 11), -- P. Atk. Modifiers
+(21465, 4411, 11), -- M. Atk. Modifiers
+(21465, 4412, 11), -- P. Def. Modifiers
+(21465, 4413, 11), -- M. Def. Modifiers
+(21465, 4414, 2), -- Armor Type
+(21465, 4415, 3), -- Weapon Type
+(21465, 4416, 3), -- Races
 (21465, 4438, 2), -- Greater Resist Sleep
-(21465, 4566, 6), -- Rain of Fire
-(21465, 4633, 3), -- Acumen Berserker Empower
+(21465, 4566, 6), -- NPC Eruption - Magic
+(21465, 4633, 3), -- NPC Buff - Acumen Empower Berserk
 -- Alpine Kookaburra
-(21466, 4067, 6), -- Blow
-(21466, 4072, 6), -- Stun
-(21466, 4074, 2), -- Haste
-(21466, 4408, 10), -- HP Increase (2x)
-(21466, 4409, 1), -- MP Increase (1x)
-(21466, 4410, 11), -- Average P. Atk.
-(21466, 4411, 11), -- Average M. Atk.
-(21466, 4412, 11), -- Average P. Def.
-(21466, 4413, 11), -- Average M. Def.
-(21466, 4414, 2), -- Standard Type
-(21466, 4415, 3), -- One-handed Sword
-(21466, 4416, 3), -- Beasts
+(21466, 4067, 6), -- NPC Mortal Blow
+(21466, 4072, 6), -- Shock
+(21466, 4074, 2), -- NPC Haste
+(21466, 4408, 10), -- HP Modifiers
+(21466, 4409, 1), -- MP Modifiers
+(21466, 4410, 11), -- P. Atk. Modifiers
+(21466, 4411, 11), -- M. Atk. Modifiers
+(21466, 4412, 11), -- P. Def. Modifiers
+(21466, 4413, 11), -- M. Def. Modifiers
+(21466, 4414, 2), -- Armor Type
+(21466, 4415, 3), -- Weapon Type
+(21466, 4416, 3), -- Races
 (21466, 4438, 2), -- Greater Resist Sleep
 -- Alpine Kookaburra
-(21467, 4160, 6), -- Aura Burn
-(21467, 4408, 10), -- HP Increase (2x)
-(21467, 4409, 1), -- MP Increase (1x)
-(21467, 4410, 11), -- Average P. Atk.
-(21467, 4411, 11), -- Average M. Atk.
-(21467, 4412, 11), -- Average P. Def.
-(21467, 4413, 11), -- Average M. Def.
-(21467, 4414, 2), -- Standard Type
-(21467, 4415, 3), -- One-handed Sword
-(21467, 4416, 3), -- Beasts
+(21467, 4160, 6), -- NPC Aura Burn - Magic
+(21467, 4408, 10), -- HP Modifiers
+(21467, 4409, 1), -- MP Modifiers
+(21467, 4410, 11), -- P. Atk. Modifiers
+(21467, 4411, 11), -- M. Atk. Modifiers
+(21467, 4412, 11), -- P. Def. Modifiers
+(21467, 4413, 11), -- M. Def. Modifiers
+(21467, 4414, 2), -- Armor Type
+(21467, 4415, 3), -- Weapon Type
+(21467, 4416, 3), -- Races
 (21467, 4438, 2), -- Greater Resist Sleep
-(21467, 4566, 6), -- Rain of Fire
-(21467, 4571, 6), -- Blazing Circle
-(21467, 4633, 3), -- Acumen Berserker Empower
+(21467, 4566, 6), -- NPC Eruption - Magic
+(21467, 4571, 6), -- NPC Blazing Circle
+(21467, 4633, 3), -- NPC Buff - Acumen Empower Berserk
 -- Alpine Kookaburra
 (21468, 4318, 1), -- Ultimate Buff
-(21468, 4408, 12), -- HP Increase (4x)
-(21468, 4409, 1), -- MP Increase (1x)
-(21468, 4410, 14), -- Strong P. Atk.
-(21468, 4411, 14), -- Strong M. Atk.
-(21468, 4412, 8), -- Weak P. Def.
-(21468, 4413, 8), -- Weak M. Def.
-(21468, 4414, 2), -- Standard Type
-(21468, 4415, 3), -- One-handed Sword
-(21468, 4416, 3), -- Beasts
+(21468, 4408, 12), -- HP Modifiers
+(21468, 4409, 1), -- MP Modifiers
+(21468, 4410, 14), -- P. Atk. Modifiers
+(21468, 4411, 14), -- M. Atk. Modifiers
+(21468, 4412, 8), -- P. Def. Modifiers
+(21468, 4413, 8), -- M. Def. Modifiers
+(21468, 4414, 2), -- Armor Type
+(21468, 4415, 3), -- Weapon Type
+(21468, 4416, 3), -- Races
 (21468, 4438, 2), -- Greater Resist Sleep
 (21468, 4589, 6), -- Decrease Speed
 (21468, 4600, 6), -- Reducing P. Def Stun
 -- Alpine Kookaburra
-(21469, 4160, 6), -- Aura Burn
+(21469, 4160, 6), -- NPC Aura Burn - Magic
 (21469, 4318, 1), -- Ultimate Buff
-(21469, 4408, 12), -- HP Increase (4x)
-(21469, 4409, 1), -- MP Increase (1x)
-(21469, 4410, 14), -- Strong P. Atk.
-(21469, 4411, 14), -- Strong M. Atk.
-(21469, 4412, 8), -- Weak P. Def.
-(21469, 4413, 8), -- Weak M. Def.
-(21469, 4414, 2), -- Standard Type
-(21469, 4415, 3), -- One-handed Sword
-(21469, 4416, 3), -- Beasts
+(21469, 4408, 12), -- HP Modifiers
+(21469, 4409, 1), -- MP Modifiers
+(21469, 4410, 14), -- P. Atk. Modifiers
+(21469, 4411, 14), -- M. Atk. Modifiers
+(21469, 4412, 8), -- P. Def. Modifiers
+(21469, 4413, 8), -- M. Def. Modifiers
+(21469, 4414, 2), -- Armor Type
+(21469, 4415, 3), -- Weapon Type
+(21469, 4416, 3), -- Races
 (21469, 4438, 2), -- Greater Resist Sleep
-(21469, 4566, 6), -- Rain of Fire
-(21469, 4571, 6), -- Blazing Circle
+(21469, 4566, 6), -- NPC Eruption - Magic
+(21469, 4571, 6), -- NPC Blazing Circle
 (21469, 4657, 6), -- Hold
 -- Alpine Buffalo
 (21470, 2188, 1), -- Golden Spice
 (21470, 2189, 1), -- Crystal Spice
-(21470, 4408, 9), -- HP Increase (1/2x)
-(21470, 4409, 1), -- MP Increase (1x)
-(21470, 4410, 11), -- Average P. Atk.
-(21470, 4411, 11), -- Average M. Atk.
-(21470, 4412, 11), -- Average P. Def.
-(21470, 4413, 11), -- Average M. Def.
-(21470, 4414, 2), -- Standard Type
-(21470, 4415, 5), -- Blunt Weapons
-(21470, 4416, 3), -- Beasts
+(21470, 4408, 9), -- HP Modifiers
+(21470, 4409, 1), -- MP Modifiers
+(21470, 4410, 11), -- P. Atk. Modifiers
+(21470, 4411, 11), -- M. Atk. Modifiers
+(21470, 4412, 11), -- P. Def. Modifiers
+(21470, 4413, 11), -- M. Def. Modifiers
+(21470, 4414, 2), -- Armor Type
+(21470, 4415, 5), -- Weapon Type
+(21470, 4416, 3), -- Races
 (21470, 4438, 2), -- Greater Resist Sleep
 -- Alpine Buffalo
-(21471, 4032, 6), -- Power Strike
-(21471, 4099, 2), -- Berserker Spirit
-(21471, 4408, 1), -- HP Increase (1x)
-(21471, 4409, 1), -- MP Increase (1x)
-(21471, 4410, 9), -- Slightly Weak P. Atk.
-(21471, 4411, 9), -- Slightly Weak M. Atk.
-(21471, 4412, 13), -- Slightly Strong P. Def.
-(21471, 4413, 13), -- Slightly Strong M. Def.
-(21471, 4414, 2), -- Standard Type
-(21471, 4415, 5), -- Blunt Weapons
-(21471, 4416, 3), -- Beasts
+(21471, 4032, 6), -- NPC Strike
+(21471, 4099, 2), -- NPC Berserk
+(21471, 4408, 1), -- HP Modifiers
+(21471, 4409, 1), -- MP Modifiers
+(21471, 4410, 9), -- P. Atk. Modifiers
+(21471, 4411, 9), -- M. Atk. Modifiers
+(21471, 4412, 13), -- P. Def. Modifiers
+(21471, 4413, 13), -- M. Def. Modifiers
+(21471, 4414, 2), -- Armor Type
+(21471, 4415, 5), -- Weapon Type
+(21471, 4416, 3), -- Races
 (21471, 4438, 2), -- Greater Resist Sleep
 -- Alpine Buffalo
-(21472, 4099, 2), -- Berserker Spirit
-(21472, 4160, 6), -- Aura Burn
-(21472, 4257, 6), -- Hydro Blast
-(21472, 4408, 1), -- HP Increase (1x)
-(21472, 4409, 1), -- MP Increase (1x)
-(21472, 4410, 9), -- Slightly Weak P. Atk.
-(21472, 4411, 9), -- Slightly Weak M. Atk.
-(21472, 4412, 13), -- Slightly Strong P. Def.
-(21472, 4413, 13), -- Slightly Strong M. Def.
-(21472, 4414, 2), -- Standard Type
-(21472, 4415, 5), -- Blunt Weapons
-(21472, 4416, 3), -- Beasts
+(21472, 4099, 2), -- NPC Berserk
+(21472, 4160, 6), -- NPC Aura Burn - Magic
+(21472, 4257, 6), -- NPC Hydroblast - Magic
+(21472, 4408, 1), -- HP Modifiers
+(21472, 4409, 1), -- MP Modifiers
+(21472, 4410, 9), -- P. Atk. Modifiers
+(21472, 4411, 9), -- M. Atk. Modifiers
+(21472, 4412, 13), -- P. Def. Modifiers
+(21472, 4413, 13), -- M. Def. Modifiers
+(21472, 4414, 2), -- Armor Type
+(21472, 4415, 5), -- Weapon Type
+(21472, 4416, 3), -- Races
 (21472, 4438, 2), -- Greater Resist Sleep
 -- Alpine Buffalo
-(21473, 4067, 6), -- Blow
-(21473, 4099, 2), -- Berserker Spirit
-(21473, 4408, 1), -- HP Increase (1x)
-(21473, 4409, 1), -- MP Increase (1x)
-(21473, 4410, 9), -- Slightly Weak P. Atk.
-(21473, 4411, 9), -- Slightly Weak M. Atk.
-(21473, 4412, 13), -- Slightly Strong P. Def.
-(21473, 4413, 13), -- Slightly Strong M. Def.
-(21473, 4414, 2), -- Standard Type
-(21473, 4415, 5), -- Blunt Weapons
-(21473, 4416, 3), -- Beasts
+(21473, 4067, 6), -- NPC Mortal Blow
+(21473, 4099, 2), -- NPC Berserk
+(21473, 4408, 1), -- HP Modifiers
+(21473, 4409, 1), -- MP Modifiers
+(21473, 4410, 9), -- P. Atk. Modifiers
+(21473, 4411, 9), -- M. Atk. Modifiers
+(21473, 4412, 13), -- P. Def. Modifiers
+(21473, 4413, 13), -- M. Def. Modifiers
+(21473, 4414, 2), -- Armor Type
+(21473, 4415, 5), -- Weapon Type
+(21473, 4416, 3), -- Races
 (21473, 4438, 2), -- Greater Resist Sleep
 -- Alpine Buffalo
-(21474, 4099, 2), -- Berserker Spirit
-(21474, 4157, 6), -- Blaze
-(21474, 4160, 6), -- Aura Burn
-(21474, 4408, 1), -- HP Increase (1x)
-(21474, 4409, 1), -- MP Increase (1x)
-(21474, 4410, 9), -- Slightly Weak P. Atk.
-(21474, 4411, 9), -- Slightly Weak M. Atk.
-(21474, 4412, 13), -- Slightly Strong P. Def.
-(21474, 4413, 13), -- Slightly Strong M. Def.
-(21474, 4414, 2), -- Standard Type
-(21474, 4415, 5), -- Blunt Weapons
-(21474, 4416, 3), -- Beasts
+(21474, 4099, 2), -- NPC Berserk
+(21474, 4157, 6), -- NPC Blaze - Magic
+(21474, 4160, 6), -- NPC Aura Burn - Magic
+(21474, 4408, 1), -- HP Modifiers
+(21474, 4409, 1), -- MP Modifiers
+(21474, 4410, 9), -- P. Atk. Modifiers
+(21474, 4411, 9), -- M. Atk. Modifiers
+(21474, 4412, 13), -- P. Def. Modifiers
+(21474, 4413, 13), -- M. Def. Modifiers
+(21474, 4414, 2), -- Armor Type
+(21474, 4415, 5), -- Weapon Type
+(21474, 4416, 3), -- Races
 (21474, 4438, 2), -- Greater Resist Sleep
 -- Alpine Buffalo
-(21475, 4032, 6), -- Power Strike
-(21475, 4099, 2), -- Berserker Spirit
-(21475, 4408, 1), -- HP Increase (1x)
-(21475, 4409, 1), -- MP Increase (1x)
-(21475, 4410, 9), -- Slightly Weak P. Atk.
-(21475, 4411, 9), -- Slightly Weak M. Atk.
-(21475, 4412, 13), -- Slightly Strong P. Def.
-(21475, 4413, 13), -- Slightly Strong M. Def.
-(21475, 4414, 2), -- Standard Type
-(21475, 4415, 5), -- Blunt Weapons
-(21475, 4416, 3), -- Beasts
+(21475, 4032, 6), -- NPC Strike
+(21475, 4099, 2), -- NPC Berserk
+(21475, 4408, 1), -- HP Modifiers
+(21475, 4409, 1), -- MP Modifiers
+(21475, 4410, 9), -- P. Atk. Modifiers
+(21475, 4411, 9), -- M. Atk. Modifiers
+(21475, 4412, 13), -- P. Def. Modifiers
+(21475, 4413, 13), -- M. Def. Modifiers
+(21475, 4414, 2), -- Armor Type
+(21475, 4415, 5), -- Weapon Type
+(21475, 4416, 3), -- Races
 (21475, 4438, 2), -- Greater Resist Sleep
 -- Alpine Buffalo
-(21476, 4099, 2), -- Berserker Spirit
-(21476, 4160, 6), -- Aura Burn
-(21476, 4257, 6), -- Hydro Blast
-(21476, 4408, 1), -- HP Increase (1x)
-(21476, 4409, 1), -- MP Increase (1x)
-(21476, 4410, 9), -- Slightly Weak P. Atk.
-(21476, 4411, 9), -- Slightly Weak M. Atk.
-(21476, 4412, 13), -- Slightly Strong P. Def.
-(21476, 4413, 13), -- Slightly Strong M. Def.
-(21476, 4414, 2), -- Standard Type
-(21476, 4415, 5), -- Blunt Weapons
-(21476, 4416, 3), -- Beasts
+(21476, 4099, 2), -- NPC Berserk
+(21476, 4160, 6), -- NPC Aura Burn - Magic
+(21476, 4257, 6), -- NPC Hydroblast - Magic
+(21476, 4408, 1), -- HP Modifiers
+(21476, 4409, 1), -- MP Modifiers
+(21476, 4410, 9), -- P. Atk. Modifiers
+(21476, 4411, 9), -- M. Atk. Modifiers
+(21476, 4412, 13), -- P. Def. Modifiers
+(21476, 4413, 13), -- M. Def. Modifiers
+(21476, 4414, 2), -- Armor Type
+(21476, 4415, 5), -- Weapon Type
+(21476, 4416, 3), -- Races
 (21476, 4438, 2), -- Greater Resist Sleep
 -- Alpine Buffalo
-(21477, 4067, 6), -- Blow
-(21477, 4099, 2), -- Berserker Spirit
-(21477, 4408, 1), -- HP Increase (1x)
-(21477, 4409, 1), -- MP Increase (1x)
-(21477, 4410, 9), -- Slightly Weak P. Atk.
-(21477, 4411, 9); -- Slightly Weak M. Atk.
+(21477, 4067, 6), -- NPC Mortal Blow
+(21477, 4099, 2), -- NPC Berserk
+(21477, 4408, 1), -- HP Modifiers
+(21477, 4409, 1), -- MP Modifiers
+(21477, 4410, 9), -- P. Atk. Modifiers
+(21477, 4411, 9); -- M. Atk. Modifiers
 
 INSERT INTO `npcskills` VALUES
-(21477, 4412, 13), -- Slightly Strong P. Def.
-(21477, 4413, 13), -- Slightly Strong M. Def.
-(21477, 4414, 2), -- Standard Type
-(21477, 4415, 5), -- Blunt Weapons
-(21477, 4416, 3), -- Beasts
+(21477, 4412, 13), -- P. Def. Modifiers
+(21477, 4413, 13), -- M. Def. Modifiers
+(21477, 4414, 2), -- Armor Type
+(21477, 4415, 5), -- Weapon Type
+(21477, 4416, 3), -- Races
 (21477, 4438, 2), -- Greater Resist Sleep
 -- Alpine Buffalo
-(21478, 4099, 2), -- Berserker Spirit
-(21478, 4157, 6), -- Blaze
-(21478, 4160, 6), -- Aura Burn
-(21478, 4408, 1), -- HP Increase (1x)
-(21478, 4409, 1), -- MP Increase (1x)
-(21478, 4410, 9), -- Slightly Weak P. Atk.
-(21478, 4411, 9), -- Slightly Weak M. Atk.
-(21478, 4412, 13), -- Slightly Strong P. Def.
-(21478, 4413, 13), -- Slightly Strong M. Def.
-(21478, 4414, 2), -- Standard Type
-(21478, 4415, 5), -- Blunt Weapons
-(21478, 4416, 3), -- Beasts
+(21478, 4099, 2), -- NPC Berserk
+(21478, 4157, 6), -- NPC Blaze - Magic
+(21478, 4160, 6), -- NPC Aura Burn - Magic
+(21478, 4408, 1), -- HP Modifiers
+(21478, 4409, 1), -- MP Modifiers
+(21478, 4410, 9), -- P. Atk. Modifiers
+(21478, 4411, 9), -- M. Atk. Modifiers
+(21478, 4412, 13), -- P. Def. Modifiers
+(21478, 4413, 13), -- M. Def. Modifiers
+(21478, 4414, 2), -- Armor Type
+(21478, 4415, 5), -- Weapon Type
+(21478, 4416, 3), -- Races
 (21478, 4438, 2), -- Greater Resist Sleep
 -- Alpine Buffalo
-(21479, 4073, 6), -- Stun
-(21479, 4074, 2), -- Haste
-(21479, 4232, 6), -- Whirlwind
-(21479, 4408, 10), -- HP Increase (2x)
-(21479, 4409, 1), -- MP Increase (1x)
-(21479, 4410, 11), -- Average P. Atk.
-(21479, 4411, 11), -- Average M. Atk.
-(21479, 4412, 11), -- Average P. Def.
-(21479, 4413, 11), -- Average M. Def.
-(21479, 4414, 2), -- Standard Type
-(21479, 4415, 6), -- Blunt Weapons
-(21479, 4416, 3), -- Beasts
+(21479, 4073, 6), -- Shock
+(21479, 4074, 2), -- NPC Haste
+(21479, 4232, 6), -- NPC AE Strike
+(21479, 4408, 10), -- HP Modifiers
+(21479, 4409, 1), -- MP Modifiers
+(21479, 4410, 11), -- P. Atk. Modifiers
+(21479, 4411, 11), -- M. Atk. Modifiers
+(21479, 4412, 11), -- P. Def. Modifiers
+(21479, 4413, 11), -- M. Def. Modifiers
+(21479, 4414, 2), -- Armor Type
+(21479, 4415, 6), -- Weapon Type
+(21479, 4416, 3), -- Races
 (21479, 4438, 2), -- Greater Resist Sleep
 -- Alpine Buffalo
-(21480, 4160, 6), -- Aura Burn
-(21480, 4232, 6), -- Whirlwind
-(21480, 4408, 10), -- HP Increase (2x)
-(21480, 4409, 1), -- MP Increase (1x)
-(21480, 4410, 11), -- Average P. Atk.
-(21480, 4411, 11), -- Average M. Atk.
-(21480, 4412, 11), -- Average P. Def.
-(21480, 4413, 11), -- Average M. Def.
-(21480, 4414, 2), -- Standard Type
-(21480, 4415, 6), -- Blunt Weapons
-(21480, 4416, 3), -- Beasts
+(21480, 4160, 6), -- NPC Aura Burn - Magic
+(21480, 4232, 6), -- NPC AE Strike
+(21480, 4408, 10), -- HP Modifiers
+(21480, 4409, 1), -- MP Modifiers
+(21480, 4410, 11), -- P. Atk. Modifiers
+(21480, 4411, 11), -- M. Atk. Modifiers
+(21480, 4412, 11), -- P. Def. Modifiers
+(21480, 4413, 11), -- M. Def. Modifiers
+(21480, 4414, 2), -- Armor Type
+(21480, 4415, 6), -- Weapon Type
+(21480, 4416, 3), -- Races
 (21480, 4438, 2), -- Greater Resist Sleep
-(21480, 4566, 6), -- Rain of Fire
-(21480, 4633, 3), -- Acumen Berserker Empower
+(21480, 4566, 6), -- NPC Eruption - Magic
+(21480, 4633, 3), -- NPC Buff - Acumen Empower Berserk
 -- Alpine Buffalo
-(21481, 4067, 6), -- Blow
-(21481, 4072, 6), -- Stun
-(21481, 4074, 2), -- Haste
-(21481, 4408, 10), -- HP Increase (2x)
-(21481, 4409, 1), -- MP Increase (1x)
-(21481, 4410, 11), -- Average P. Atk.
-(21481, 4411, 11), -- Average M. Atk.
-(21481, 4412, 11), -- Average P. Def.
-(21481, 4413, 11), -- Average M. Def.
-(21481, 4414, 2), -- Standard Type
-(21481, 4415, 6), -- Blunt Weapons
-(21481, 4416, 3), -- Beasts
+(21481, 4067, 6), -- NPC Mortal Blow
+(21481, 4072, 6), -- Shock
+(21481, 4074, 2), -- NPC Haste
+(21481, 4408, 10), -- HP Modifiers
+(21481, 4409, 1), -- MP Modifiers
+(21481, 4410, 11), -- P. Atk. Modifiers
+(21481, 4411, 11), -- M. Atk. Modifiers
+(21481, 4412, 11), -- P. Def. Modifiers
+(21481, 4413, 11), -- M. Def. Modifiers
+(21481, 4414, 2), -- Armor Type
+(21481, 4415, 6), -- Weapon Type
+(21481, 4416, 3), -- Races
 (21481, 4438, 2), -- Greater Resist Sleep
 -- Alpine Buffalo
-(21482, 4160, 6), -- Aura Burn
-(21482, 4408, 10), -- HP Increase (2x)
-(21482, 4409, 1), -- MP Increase (1x)
-(21482, 4410, 11), -- Average P. Atk.
-(21482, 4411, 11), -- Average M. Atk.
-(21482, 4412, 11), -- Average P. Def.
-(21482, 4413, 11), -- Average M. Def.
-(21482, 4414, 2), -- Standard Type
-(21482, 4415, 6), -- Blunt Weapons
-(21482, 4416, 3), -- Beasts
+(21482, 4160, 6), -- NPC Aura Burn - Magic
+(21482, 4408, 10), -- HP Modifiers
+(21482, 4409, 1), -- MP Modifiers
+(21482, 4410, 11), -- P. Atk. Modifiers
+(21482, 4411, 11), -- M. Atk. Modifiers
+(21482, 4412, 11), -- P. Def. Modifiers
+(21482, 4413, 11), -- M. Def. Modifiers
+(21482, 4414, 2), -- Armor Type
+(21482, 4415, 6), -- Weapon Type
+(21482, 4416, 3), -- Races
 (21482, 4438, 2), -- Greater Resist Sleep
-(21482, 4566, 6), -- Rain of Fire
-(21482, 4571, 6), -- Blazing Circle
-(21482, 4633, 3), -- Acumen Berserker Empower
+(21482, 4566, 6), -- NPC Eruption - Magic
+(21482, 4571, 6), -- NPC Blazing Circle
+(21482, 4633, 3), -- NPC Buff - Acumen Empower Berserk
 -- Alpine Buffalo
-(21483, 4073, 6), -- Stun
-(21483, 4074, 2), -- Haste
-(21483, 4232, 6), -- Whirlwind
-(21483, 4408, 10), -- HP Increase (2x)
-(21483, 4409, 1), -- MP Increase (1x)
-(21483, 4410, 11), -- Average P. Atk.
-(21483, 4411, 11), -- Average M. Atk.
-(21483, 4412, 11), -- Average P. Def.
-(21483, 4413, 11), -- Average M. Def.
-(21483, 4414, 2), -- Standard Type
-(21483, 4415, 6), -- Blunt Weapons
-(21483, 4416, 3), -- Beasts
+(21483, 4073, 6), -- Shock
+(21483, 4074, 2), -- NPC Haste
+(21483, 4232, 6), -- NPC AE Strike
+(21483, 4408, 10), -- HP Modifiers
+(21483, 4409, 1), -- MP Modifiers
+(21483, 4410, 11), -- P. Atk. Modifiers
+(21483, 4411, 11), -- M. Atk. Modifiers
+(21483, 4412, 11), -- P. Def. Modifiers
+(21483, 4413, 11), -- M. Def. Modifiers
+(21483, 4414, 2), -- Armor Type
+(21483, 4415, 6), -- Weapon Type
+(21483, 4416, 3), -- Races
 (21483, 4438, 2), -- Greater Resist Sleep
 -- Alpine Buffalo
-(21484, 4160, 6), -- Aura Burn
-(21484, 4232, 6), -- Whirlwind
-(21484, 4408, 10), -- HP Increase (2x)
-(21484, 4409, 1), -- MP Increase (1x)
-(21484, 4410, 11), -- Average P. Atk.
-(21484, 4411, 11), -- Average M. Atk.
-(21484, 4412, 11), -- Average P. Def.
-(21484, 4413, 11), -- Average M. Def.
-(21484, 4414, 2), -- Standard Type
-(21484, 4415, 6), -- Blunt Weapons
-(21484, 4416, 3), -- Beasts
+(21484, 4160, 6), -- NPC Aura Burn - Magic
+(21484, 4232, 6), -- NPC AE Strike
+(21484, 4408, 10), -- HP Modifiers
+(21484, 4409, 1), -- MP Modifiers
+(21484, 4410, 11), -- P. Atk. Modifiers
+(21484, 4411, 11), -- M. Atk. Modifiers
+(21484, 4412, 11), -- P. Def. Modifiers
+(21484, 4413, 11), -- M. Def. Modifiers
+(21484, 4414, 2), -- Armor Type
+(21484, 4415, 6), -- Weapon Type
+(21484, 4416, 3), -- Races
 (21484, 4438, 2), -- Greater Resist Sleep
-(21484, 4566, 6), -- Rain of Fire
-(21484, 4633, 3), -- Acumen Berserker Empower
+(21484, 4566, 6), -- NPC Eruption - Magic
+(21484, 4633, 3), -- NPC Buff - Acumen Empower Berserk
 -- Alpine Buffalo
-(21485, 4067, 6), -- Blow
-(21485, 4072, 6), -- Stun
-(21485, 4074, 2), -- Haste
-(21485, 4408, 10), -- HP Increase (2x)
-(21485, 4409, 1), -- MP Increase (1x)
-(21485, 4410, 11), -- Average P. Atk.
-(21485, 4411, 11), -- Average M. Atk.
-(21485, 4412, 11), -- Average P. Def.
-(21485, 4413, 11), -- Average M. Def.
-(21485, 4414, 2), -- Standard Type
-(21485, 4415, 6), -- Blunt Weapons
-(21485, 4416, 3), -- Beasts
+(21485, 4067, 6), -- NPC Mortal Blow
+(21485, 4072, 6), -- Shock
+(21485, 4074, 2), -- NPC Haste
+(21485, 4408, 10), -- HP Modifiers
+(21485, 4409, 1), -- MP Modifiers
+(21485, 4410, 11), -- P. Atk. Modifiers
+(21485, 4411, 11), -- M. Atk. Modifiers
+(21485, 4412, 11), -- P. Def. Modifiers
+(21485, 4413, 11), -- M. Def. Modifiers
+(21485, 4414, 2), -- Armor Type
+(21485, 4415, 6), -- Weapon Type
+(21485, 4416, 3), -- Races
 (21485, 4438, 2), -- Greater Resist Sleep
 -- Alpine Buffalo
-(21486, 4160, 6), -- Aura Burn
-(21486, 4408, 10), -- HP Increase (2x)
-(21486, 4409, 1), -- MP Increase (1x)
-(21486, 4410, 11), -- Average P. Atk.
-(21486, 4411, 11), -- Average M. Atk.
-(21486, 4412, 11), -- Average P. Def.
-(21486, 4413, 11), -- Average M. Def.
-(21486, 4414, 2), -- Standard Type
-(21486, 4415, 6), -- Blunt Weapons
-(21486, 4416, 3), -- Beasts
+(21486, 4160, 6), -- NPC Aura Burn - Magic
+(21486, 4408, 10), -- HP Modifiers
+(21486, 4409, 1), -- MP Modifiers
+(21486, 4410, 11), -- P. Atk. Modifiers
+(21486, 4411, 11), -- M. Atk. Modifiers
+(21486, 4412, 11), -- P. Def. Modifiers
+(21486, 4413, 11), -- M. Def. Modifiers
+(21486, 4414, 2), -- Armor Type
+(21486, 4415, 6), -- Weapon Type
+(21486, 4416, 3), -- Races
 (21486, 4438, 2), -- Greater Resist Sleep
-(21486, 4566, 6), -- Rain of Fire
-(21486, 4571, 6), -- Blazing Circle
-(21486, 4633, 3), -- Acumen Berserker Empower
+(21486, 4566, 6), -- NPC Eruption - Magic
+(21486, 4571, 6), -- NPC Blazing Circle
+(21486, 4633, 3), -- NPC Buff - Acumen Empower Berserk
 -- Alpine Buffalo
 (21487, 4318, 1), -- Ultimate Buff
-(21487, 4408, 12), -- HP Increase (4x)
-(21487, 4409, 1), -- MP Increase (1x)
-(21487, 4410, 14), -- Strong P. Atk.
-(21487, 4411, 14), -- Strong M. Atk.
-(21487, 4412, 8), -- Weak P. Def.
-(21487, 4413, 8), -- Weak M. Def.
-(21487, 4414, 2), -- Standard Type
-(21487, 4415, 6), -- Blunt Weapons
-(21487, 4416, 3), -- Beasts
+(21487, 4408, 12), -- HP Modifiers
+(21487, 4409, 1), -- MP Modifiers
+(21487, 4410, 14), -- P. Atk. Modifiers
+(21487, 4411, 14), -- M. Atk. Modifiers
+(21487, 4412, 8), -- P. Def. Modifiers
+(21487, 4413, 8), -- M. Def. Modifiers
+(21487, 4414, 2), -- Armor Type
+(21487, 4415, 6), -- Weapon Type
+(21487, 4416, 3), -- Races
 (21487, 4438, 2), -- Greater Resist Sleep
 (21487, 4589, 6), -- Decrease Speed
 (21487, 4600, 6), -- Reducing P. Def Stun
 -- Alpine Buffalo
-(21488, 4160, 6), -- Aura Burn
+(21488, 4160, 6), -- NPC Aura Burn - Magic
 (21488, 4318, 1), -- Ultimate Buff
-(21488, 4408, 12), -- HP Increase (4x)
-(21488, 4409, 1), -- MP Increase (1x)
-(21488, 4410, 14), -- Strong P. Atk.
-(21488, 4411, 14), -- Strong M. Atk.
-(21488, 4412, 8), -- Weak P. Def.
-(21488, 4413, 8), -- Weak M. Def.
-(21488, 4414, 2), -- Standard Type
-(21488, 4415, 6), -- Blunt Weapons
-(21488, 4416, 3), -- Beasts
+(21488, 4408, 12), -- HP Modifiers
+(21488, 4409, 1), -- MP Modifiers
+(21488, 4410, 14), -- P. Atk. Modifiers
+(21488, 4411, 14), -- M. Atk. Modifiers
+(21488, 4412, 8), -- P. Def. Modifiers
+(21488, 4413, 8), -- M. Def. Modifiers
+(21488, 4414, 2), -- Armor Type
+(21488, 4415, 6), -- Weapon Type
+(21488, 4416, 3), -- Races
 (21488, 4438, 2), -- Greater Resist Sleep
-(21488, 4566, 6), -- Rain of Fire
-(21488, 4571, 6), -- Blazing Circle
+(21488, 4566, 6), -- NPC Eruption - Magic
+(21488, 4571, 6), -- NPC Blazing Circle
 (21488, 4657, 6), -- Hold
 -- Alpine Cougar
 (21489, 2188, 1), -- Golden Spice
 (21489, 2189, 1), -- Crystal Spice
-(21489, 4408, 9), -- HP Increase (1/2x)
-(21489, 4409, 1), -- MP Increase (1x)
-(21489, 4410, 11), -- Average P. Atk.
-(21489, 4411, 11), -- Average M. Atk.
-(21489, 4412, 11), -- Average P. Def.
-(21489, 4413, 11), -- Average M. Def.
-(21489, 4414, 2), -- Standard Type
-(21489, 4415, 3), -- One-handed Sword
-(21489, 4416, 3), -- Beasts
+(21489, 4408, 9), -- HP Modifiers
+(21489, 4409, 1), -- MP Modifiers
+(21489, 4410, 11), -- P. Atk. Modifiers
+(21489, 4411, 11), -- M. Atk. Modifiers
+(21489, 4412, 11), -- P. Def. Modifiers
+(21489, 4413, 11), -- M. Def. Modifiers
+(21489, 4414, 2), -- Armor Type
+(21489, 4415, 3), -- Weapon Type
+(21489, 4416, 3), -- Races
 (21489, 4438, 2), -- Greater Resist Sleep
 -- Alpine Cougar
-(21490, 4032, 6), -- Power Strike
-(21490, 4092, 1), -- Spirit Puma
-(21490, 4408, 1), -- HP Increase (1x)
-(21490, 4409, 1), -- MP Increase (1x)
-(21490, 4410, 9), -- Slightly Weak P. Atk.
-(21490, 4411, 9), -- Slightly Weak M. Atk.
-(21490, 4412, 13), -- Slightly Strong P. Def.
-(21490, 4413, 13), -- Slightly Strong M. Def.
-(21490, 4414, 2), -- Standard Type
-(21490, 4415, 3), -- One-handed Sword
-(21490, 4416, 3), -- Beasts
+(21490, 4032, 6), -- NPC Strike
+(21490, 4092, 1), -- NPC Puma Spirit Totem
+(21490, 4408, 1), -- HP Modifiers
+(21490, 4409, 1), -- MP Modifiers
+(21490, 4410, 9), -- P. Atk. Modifiers
+(21490, 4411, 9), -- M. Atk. Modifiers
+(21490, 4412, 13), -- P. Def. Modifiers
+(21490, 4413, 13), -- M. Def. Modifiers
+(21490, 4414, 2), -- Armor Type
+(21490, 4415, 3), -- Weapon Type
+(21490, 4416, 3), -- Races
 (21490, 4438, 2), -- Greater Resist Sleep
 -- Alpine Cougar
-(21491, 4092, 1), -- Spirit Puma
-(21491, 4160, 6), -- Aura Burn
-(21491, 4257, 6), -- Hydro Blast
-(21491, 4408, 1), -- HP Increase (1x)
-(21491, 4409, 1), -- MP Increase (1x)
-(21491, 4410, 9), -- Slightly Weak P. Atk.
-(21491, 4411, 9), -- Slightly Weak M. Atk.
-(21491, 4412, 13), -- Slightly Strong P. Def.
-(21491, 4413, 13), -- Slightly Strong M. Def.
-(21491, 4414, 2), -- Standard Type
-(21491, 4415, 3), -- One-handed Sword
-(21491, 4416, 3), -- Beasts
+(21491, 4092, 1), -- NPC Puma Spirit Totem
+(21491, 4160, 6), -- NPC Aura Burn - Magic
+(21491, 4257, 6), -- NPC Hydroblast - Magic
+(21491, 4408, 1), -- HP Modifiers
+(21491, 4409, 1), -- MP Modifiers
+(21491, 4410, 9), -- P. Atk. Modifiers
+(21491, 4411, 9), -- M. Atk. Modifiers
+(21491, 4412, 13), -- P. Def. Modifiers
+(21491, 4413, 13), -- M. Def. Modifiers
+(21491, 4414, 2), -- Armor Type
+(21491, 4415, 3), -- Weapon Type
+(21491, 4416, 3), -- Races
 (21491, 4438, 2), -- Greater Resist Sleep
 -- Alpine Cougar
-(21492, 4067, 6), -- Blow
-(21492, 4092, 1), -- Spirit Puma
-(21492, 4408, 1), -- HP Increase (1x)
-(21492, 4409, 1), -- MP Increase (1x)
-(21492, 4410, 9), -- Slightly Weak P. Atk.
-(21492, 4411, 9), -- Slightly Weak M. Atk.
-(21492, 4412, 13), -- Slightly Strong P. Def.
-(21492, 4413, 13), -- Slightly Strong M. Def.
-(21492, 4414, 2), -- Standard Type
-(21492, 4415, 3), -- One-handed Sword
-(21492, 4416, 3), -- Beasts
+(21492, 4067, 6), -- NPC Mortal Blow
+(21492, 4092, 1), -- NPC Puma Spirit Totem
+(21492, 4408, 1), -- HP Modifiers
+(21492, 4409, 1), -- MP Modifiers
+(21492, 4410, 9), -- P. Atk. Modifiers
+(21492, 4411, 9), -- M. Atk. Modifiers
+(21492, 4412, 13), -- P. Def. Modifiers
+(21492, 4413, 13), -- M. Def. Modifiers
+(21492, 4414, 2), -- Armor Type
+(21492, 4415, 3), -- Weapon Type
+(21492, 4416, 3), -- Races
 (21492, 4438, 2), -- Greater Resist Sleep
 -- Alpine Cougar
-(21493, 4092, 1), -- Spirit Puma
-(21493, 4157, 6), -- Blaze
-(21493, 4160, 6), -- Aura Burn
-(21493, 4408, 1), -- HP Increase (1x)
-(21493, 4409, 1), -- MP Increase (1x)
-(21493, 4410, 9), -- Slightly Weak P. Atk.
-(21493, 4411, 9), -- Slightly Weak M. Atk.
-(21493, 4412, 13), -- Slightly Strong P. Def.
-(21493, 4413, 13), -- Slightly Strong M. Def.
-(21493, 4414, 2), -- Standard Type
-(21493, 4415, 3), -- One-handed Sword
-(21493, 4416, 3), -- Beasts
+(21493, 4092, 1), -- NPC Puma Spirit Totem
+(21493, 4157, 6), -- NPC Blaze - Magic
+(21493, 4160, 6), -- NPC Aura Burn - Magic
+(21493, 4408, 1), -- HP Modifiers
+(21493, 4409, 1), -- MP Modifiers
+(21493, 4410, 9), -- P. Atk. Modifiers
+(21493, 4411, 9), -- M. Atk. Modifiers
+(21493, 4412, 13), -- P. Def. Modifiers
+(21493, 4413, 13), -- M. Def. Modifiers
+(21493, 4414, 2), -- Armor Type
+(21493, 4415, 3), -- Weapon Type
+(21493, 4416, 3), -- Races
 (21493, 4438, 2), -- Greater Resist Sleep
 -- Alpine Cougar
-(21494, 4032, 6), -- Power Strike
-(21494, 4092, 1), -- Spirit Puma
-(21494, 4408, 1), -- HP Increase (1x)
-(21494, 4409, 1), -- MP Increase (1x)
-(21494, 4410, 9), -- Slightly Weak P. Atk.
-(21494, 4411, 9), -- Slightly Weak M. Atk.
-(21494, 4412, 13), -- Slightly Strong P. Def.
-(21494, 4413, 13), -- Slightly Strong M. Def.
-(21494, 4414, 2), -- Standard Type
-(21494, 4415, 3), -- One-handed Sword
-(21494, 4416, 3), -- Beasts
+(21494, 4032, 6), -- NPC Strike
+(21494, 4092, 1), -- NPC Puma Spirit Totem
+(21494, 4408, 1), -- HP Modifiers
+(21494, 4409, 1), -- MP Modifiers
+(21494, 4410, 9), -- P. Atk. Modifiers
+(21494, 4411, 9), -- M. Atk. Modifiers
+(21494, 4412, 13), -- P. Def. Modifiers
+(21494, 4413, 13), -- M. Def. Modifiers
+(21494, 4414, 2), -- Armor Type
+(21494, 4415, 3), -- Weapon Type
+(21494, 4416, 3), -- Races
 (21494, 4438, 2), -- Greater Resist Sleep
 -- Alpine Cougar
-(21495, 4092, 1), -- Spirit Puma
-(21495, 4160, 6), -- Aura Burn
-(21495, 4257, 6), -- Hydro Blast
-(21495, 4408, 1), -- HP Increase (1x)
-(21495, 4409, 1), -- MP Increase (1x)
-(21495, 4410, 9), -- Slightly Weak P. Atk.
-(21495, 4411, 9), -- Slightly Weak M. Atk.
-(21495, 4412, 13), -- Slightly Strong P. Def.
-(21495, 4413, 13), -- Slightly Strong M. Def.
-(21495, 4414, 2), -- Standard Type
-(21495, 4415, 3), -- One-handed Sword
-(21495, 4416, 3), -- Beasts
+(21495, 4092, 1), -- NPC Puma Spirit Totem
+(21495, 4160, 6), -- NPC Aura Burn - Magic
+(21495, 4257, 6), -- NPC Hydroblast - Magic
+(21495, 4408, 1), -- HP Modifiers
+(21495, 4409, 1), -- MP Modifiers
+(21495, 4410, 9), -- P. Atk. Modifiers
+(21495, 4411, 9), -- M. Atk. Modifiers
+(21495, 4412, 13), -- P. Def. Modifiers
+(21495, 4413, 13), -- M. Def. Modifiers
+(21495, 4414, 2), -- Armor Type
+(21495, 4415, 3), -- Weapon Type
+(21495, 4416, 3), -- Races
 (21495, 4438, 2), -- Greater Resist Sleep
 -- Alpine Cougar
-(21496, 4067, 6), -- Blow
-(21496, 4092, 1), -- Spirit Puma
-(21496, 4408, 1), -- HP Increase (1x)
-(21496, 4409, 1), -- MP Increase (1x)
-(21496, 4410, 9), -- Slightly Weak P. Atk.
-(21496, 4411, 9), -- Slightly Weak M. Atk.
-(21496, 4412, 13), -- Slightly Strong P. Def.
-(21496, 4413, 13), -- Slightly Strong M. Def.
-(21496, 4414, 2), -- Standard Type
-(21496, 4415, 3), -- One-handed Sword
-(21496, 4416, 3), -- Beasts
+(21496, 4067, 6), -- NPC Mortal Blow
+(21496, 4092, 1), -- NPC Puma Spirit Totem
+(21496, 4408, 1), -- HP Modifiers
+(21496, 4409, 1), -- MP Modifiers
+(21496, 4410, 9), -- P. Atk. Modifiers
+(21496, 4411, 9), -- M. Atk. Modifiers
+(21496, 4412, 13), -- P. Def. Modifiers
+(21496, 4413, 13), -- M. Def. Modifiers
+(21496, 4414, 2), -- Armor Type
+(21496, 4415, 3), -- Weapon Type
+(21496, 4416, 3), -- Races
 (21496, 4438, 2), -- Greater Resist Sleep
 -- Alpine Cougar
-(21497, 4092, 1), -- Spirit Puma
-(21497, 4157, 6), -- Blaze
-(21497, 4160, 6), -- Aura Burn
-(21497, 4408, 1), -- HP Increase (1x)
-(21497, 4409, 1), -- MP Increase (1x)
-(21497, 4410, 9), -- Slightly Weak P. Atk.
-(21497, 4411, 9), -- Slightly Weak M. Atk.
-(21497, 4412, 13), -- Slightly Strong P. Def.
-(21497, 4413, 13), -- Slightly Strong M. Def.
-(21497, 4414, 2), -- Standard Type
-(21497, 4415, 3), -- One-handed Sword
-(21497, 4416, 3), -- Beasts
+(21497, 4092, 1), -- NPC Puma Spirit Totem
+(21497, 4157, 6), -- NPC Blaze - Magic
+(21497, 4160, 6), -- NPC Aura Burn - Magic
+(21497, 4408, 1), -- HP Modifiers
+(21497, 4409, 1), -- MP Modifiers
+(21497, 4410, 9), -- P. Atk. Modifiers
+(21497, 4411, 9), -- M. Atk. Modifiers
+(21497, 4412, 13), -- P. Def. Modifiers
+(21497, 4413, 13), -- M. Def. Modifiers
+(21497, 4414, 2), -- Armor Type
+(21497, 4415, 3), -- Weapon Type
+(21497, 4416, 3), -- Races
 (21497, 4438, 2), -- Greater Resist Sleep
 -- Alpine Cougar
-(21498, 4073, 6), -- Stun
-(21498, 4074, 2), -- Haste
-(21498, 4232, 6), -- Whirlwind
-(21498, 4408, 10), -- HP Increase (2x)
-(21498, 4409, 1), -- MP Increase (1x)
-(21498, 4410, 11), -- Average P. Atk.
-(21498, 4411, 11), -- Average M. Atk.
-(21498, 4412, 11), -- Average P. Def.
-(21498, 4413, 11), -- Average M. Def.
-(21498, 4414, 2), -- Standard Type
-(21498, 4415, 3), -- One-handed Sword
-(21498, 4416, 3), -- Beasts
+(21498, 4073, 6), -- Shock
+(21498, 4074, 2), -- NPC Haste
+(21498, 4232, 6), -- NPC AE Strike
+(21498, 4408, 10), -- HP Modifiers
+(21498, 4409, 1), -- MP Modifiers
+(21498, 4410, 11), -- P. Atk. Modifiers
+(21498, 4411, 11), -- M. Atk. Modifiers
+(21498, 4412, 11), -- P. Def. Modifiers
+(21498, 4413, 11), -- M. Def. Modifiers
+(21498, 4414, 2), -- Armor Type
+(21498, 4415, 3), -- Weapon Type
+(21498, 4416, 3), -- Races
 (21498, 4438, 2), -- Greater Resist Sleep
 -- Alpine Cougar
-(21499, 4160, 6), -- Aura Burn
-(21499, 4232, 6), -- Whirlwind
-(21499, 4408, 10), -- HP Increase (2x)
-(21499, 4409, 1), -- MP Increase (1x)
-(21499, 4410, 11), -- Average P. Atk.
-(21499, 4411, 11), -- Average M. Atk.
-(21499, 4412, 11), -- Average P. Def.
-(21499, 4413, 11), -- Average M. Def.
-(21499, 4414, 2), -- Standard Type
-(21499, 4415, 3), -- One-handed Sword
-(21499, 4416, 3), -- Beasts
+(21499, 4160, 6), -- NPC Aura Burn - Magic
+(21499, 4232, 6), -- NPC AE Strike
+(21499, 4408, 10), -- HP Modifiers
+(21499, 4409, 1), -- MP Modifiers
+(21499, 4410, 11), -- P. Atk. Modifiers
+(21499, 4411, 11), -- M. Atk. Modifiers
+(21499, 4412, 11), -- P. Def. Modifiers
+(21499, 4413, 11), -- M. Def. Modifiers
+(21499, 4414, 2), -- Armor Type
+(21499, 4415, 3), -- Weapon Type
+(21499, 4416, 3), -- Races
 (21499, 4438, 2), -- Greater Resist Sleep
-(21499, 4566, 6), -- Rain of Fire
-(21499, 4633, 3), -- Acumen Berserker Empower
+(21499, 4566, 6), -- NPC Eruption - Magic
+(21499, 4633, 3), -- NPC Buff - Acumen Empower Berserk
 -- Alpine Cougar
-(21500, 4067, 6), -- Blow
-(21500, 4072, 6), -- Stun
-(21500, 4074, 2), -- Haste
-(21500, 4408, 10), -- HP Increase (2x)
-(21500, 4409, 1), -- MP Increase (1x)
-(21500, 4410, 11), -- Average P. Atk.
-(21500, 4411, 11), -- Average M. Atk.
-(21500, 4412, 11), -- Average P. Def.
-(21500, 4413, 11), -- Average M. Def.
-(21500, 4414, 2), -- Standard Type
-(21500, 4415, 3), -- One-handed Sword
-(21500, 4416, 3), -- Beasts
+(21500, 4067, 6), -- NPC Mortal Blow
+(21500, 4072, 6), -- Shock
+(21500, 4074, 2), -- NPC Haste
+(21500, 4408, 10), -- HP Modifiers
+(21500, 4409, 1), -- MP Modifiers
+(21500, 4410, 11), -- P. Atk. Modifiers
+(21500, 4411, 11), -- M. Atk. Modifiers
+(21500, 4412, 11), -- P. Def. Modifiers
+(21500, 4413, 11), -- M. Def. Modifiers
+(21500, 4414, 2), -- Armor Type
+(21500, 4415, 3), -- Weapon Type
+(21500, 4416, 3), -- Races
 (21500, 4438, 2), -- Greater Resist Sleep
 -- Alpine Cougar
-(21501, 4160, 6), -- Aura Burn
-(21501, 4408, 10), -- HP Increase (2x)
-(21501, 4409, 1), -- MP Increase (1x)
-(21501, 4410, 11), -- Average P. Atk.
-(21501, 4411, 11), -- Average M. Atk.
-(21501, 4412, 11), -- Average P. Def.
-(21501, 4413, 11), -- Average M. Def.
-(21501, 4414, 2), -- Standard Type
-(21501, 4415, 3), -- One-handed Sword
-(21501, 4416, 3), -- Beasts
+(21501, 4160, 6), -- NPC Aura Burn - Magic
+(21501, 4408, 10), -- HP Modifiers
+(21501, 4409, 1), -- MP Modifiers
+(21501, 4410, 11), -- P. Atk. Modifiers
+(21501, 4411, 11), -- M. Atk. Modifiers
+(21501, 4412, 11), -- P. Def. Modifiers
+(21501, 4413, 11), -- M. Def. Modifiers
+(21501, 4414, 2), -- Armor Type
+(21501, 4415, 3), -- Weapon Type
+(21501, 4416, 3), -- Races
 (21501, 4438, 2), -- Greater Resist Sleep
-(21501, 4566, 6), -- Rain of Fire
-(21501, 4571, 6), -- Blazing Circle
-(21501, 4633, 3), -- Acumen Berserker Empower
+(21501, 4566, 6), -- NPC Eruption - Magic
+(21501, 4571, 6), -- NPC Blazing Circle
+(21501, 4633, 3), -- NPC Buff - Acumen Empower Berserk
 -- Alpine Cougar
-(21502, 4073, 6), -- Stun
-(21502, 4074, 2), -- Haste
-(21502, 4232, 6), -- Whirlwind
-(21502, 4408, 10), -- HP Increase (2x)
-(21502, 4409, 1), -- MP Increase (1x)
-(21502, 4410, 11), -- Average P. Atk.
-(21502, 4411, 11), -- Average M. Atk.
-(21502, 4412, 11), -- Average P. Def.
-(21502, 4413, 11), -- Average M. Def.
-(21502, 4414, 2), -- Standard Type
-(21502, 4415, 3), -- One-handed Sword
-(21502, 4416, 3), -- Beasts
+(21502, 4073, 6), -- Shock
+(21502, 4074, 2), -- NPC Haste
+(21502, 4232, 6), -- NPC AE Strike
+(21502, 4408, 10), -- HP Modifiers
+(21502, 4409, 1), -- MP Modifiers
+(21502, 4410, 11), -- P. Atk. Modifiers
+(21502, 4411, 11), -- M. Atk. Modifiers
+(21502, 4412, 11), -- P. Def. Modifiers
+(21502, 4413, 11), -- M. Def. Modifiers
+(21502, 4414, 2), -- Armor Type
+(21502, 4415, 3), -- Weapon Type
+(21502, 4416, 3), -- Races
 (21502, 4438, 2), -- Greater Resist Sleep
 -- Alpine Cougar
-(21503, 4160, 6), -- Aura Burn
-(21503, 4232, 6), -- Whirlwind
-(21503, 4408, 10), -- HP Increase (2x)
-(21503, 4409, 1), -- MP Increase (1x)
-(21503, 4410, 11), -- Average P. Atk.
-(21503, 4411, 11), -- Average M. Atk.
-(21503, 4412, 11), -- Average P. Def.
-(21503, 4413, 11), -- Average M. Def.
-(21503, 4414, 2), -- Standard Type
-(21503, 4415, 3), -- One-handed Sword
-(21503, 4416, 3), -- Beasts
+(21503, 4160, 6), -- NPC Aura Burn - Magic
+(21503, 4232, 6), -- NPC AE Strike
+(21503, 4408, 10), -- HP Modifiers
+(21503, 4409, 1), -- MP Modifiers
+(21503, 4410, 11), -- P. Atk. Modifiers
+(21503, 4411, 11), -- M. Atk. Modifiers
+(21503, 4412, 11), -- P. Def. Modifiers
+(21503, 4413, 11), -- M. Def. Modifiers
+(21503, 4414, 2), -- Armor Type
+(21503, 4415, 3), -- Weapon Type
+(21503, 4416, 3), -- Races
 (21503, 4438, 2), -- Greater Resist Sleep
-(21503, 4566, 6), -- Rain of Fire
-(21503, 4633, 3), -- Acumen Berserker Empower
+(21503, 4566, 6), -- NPC Eruption - Magic
+(21503, 4633, 3), -- NPC Buff - Acumen Empower Berserk
 -- Alpine Cougar
-(21504, 4067, 6), -- Blow
-(21504, 4072, 6), -- Stun
-(21504, 4074, 2), -- Haste
-(21504, 4408, 10), -- HP Increase (2x)
-(21504, 4409, 1), -- MP Increase (1x)
-(21504, 4410, 11), -- Average P. Atk.
-(21504, 4411, 11), -- Average M. Atk.
-(21504, 4412, 11), -- Average P. Def.
-(21504, 4413, 11), -- Average M. Def.
-(21504, 4414, 2), -- Standard Type
-(21504, 4415, 3), -- One-handed Sword
-(21504, 4416, 3), -- Beasts
+(21504, 4067, 6), -- NPC Mortal Blow
+(21504, 4072, 6), -- Shock
+(21504, 4074, 2), -- NPC Haste
+(21504, 4408, 10), -- HP Modifiers
+(21504, 4409, 1), -- MP Modifiers
+(21504, 4410, 11), -- P. Atk. Modifiers
+(21504, 4411, 11), -- M. Atk. Modifiers
+(21504, 4412, 11), -- P. Def. Modifiers
+(21504, 4413, 11), -- M. Def. Modifiers
+(21504, 4414, 2), -- Armor Type
+(21504, 4415, 3), -- Weapon Type
+(21504, 4416, 3), -- Races
 (21504, 4438, 2), -- Greater Resist Sleep
 -- Alpine Cougar
-(21505, 4160, 6), -- Aura Burn
-(21505, 4408, 10), -- HP Increase (2x)
-(21505, 4409, 1), -- MP Increase (1x)
-(21505, 4410, 11), -- Average P. Atk.
-(21505, 4411, 11), -- Average M. Atk.
-(21505, 4412, 11), -- Average P. Def.
-(21505, 4413, 11), -- Average M. Def.
-(21505, 4414, 2), -- Standard Type
-(21505, 4415, 3), -- One-handed Sword
-(21505, 4416, 3), -- Beasts
+(21505, 4160, 6), -- NPC Aura Burn - Magic
+(21505, 4408, 10), -- HP Modifiers
+(21505, 4409, 1), -- MP Modifiers
+(21505, 4410, 11), -- P. Atk. Modifiers
+(21505, 4411, 11), -- M. Atk. Modifiers
+(21505, 4412, 11), -- P. Def. Modifiers
+(21505, 4413, 11), -- M. Def. Modifiers
+(21505, 4414, 2), -- Armor Type
+(21505, 4415, 3), -- Weapon Type
+(21505, 4416, 3), -- Races
 (21505, 4438, 2), -- Greater Resist Sleep
-(21505, 4566, 6), -- Rain of Fire
-(21505, 4571, 6), -- Blazing Circle
-(21505, 4633, 3), -- Acumen Berserker Empower
+(21505, 4566, 6), -- NPC Eruption - Magic
+(21505, 4571, 6), -- NPC Blazing Circle
+(21505, 4633, 3), -- NPC Buff - Acumen Empower Berserk
 -- Alpine Cougar
 (21506, 4318, 1), -- Ultimate Buff
-(21506, 4408, 12), -- HP Increase (4x)
-(21506, 4409, 1), -- MP Increase (1x)
-(21506, 4410, 14), -- Strong P. Atk.
-(21506, 4411, 14), -- Strong M. Atk.
-(21506, 4412, 8), -- Weak P. Def.
-(21506, 4413, 8), -- Weak M. Def.
-(21506, 4414, 2), -- Standard Type
-(21506, 4415, 3), -- One-handed Sword
-(21506, 4416, 3), -- Beasts
+(21506, 4408, 12), -- HP Modifiers
+(21506, 4409, 1), -- MP Modifiers
+(21506, 4410, 14), -- P. Atk. Modifiers
+(21506, 4411, 14), -- M. Atk. Modifiers
+(21506, 4412, 8), -- P. Def. Modifiers
+(21506, 4413, 8), -- M. Def. Modifiers
+(21506, 4414, 2), -- Armor Type
+(21506, 4415, 3), -- Weapon Type
+(21506, 4416, 3), -- Races
 (21506, 4438, 2), -- Greater Resist Sleep
 (21506, 4589, 6), -- Decrease Speed
 (21506, 4600, 6), -- Reducing P. Def Stun
 -- Alpine Cougar
-(21507, 4160, 6), -- Aura Burn
+(21507, 4160, 6), -- NPC Aura Burn - Magic
 (21507, 4318, 1), -- Ultimate Buff
-(21507, 4408, 12), -- HP Increase (4x)
-(21507, 4409, 1), -- MP Increase (1x)
-(21507, 4410, 14), -- Strong P. Atk.
-(21507, 4411, 14), -- Strong M. Atk.
-(21507, 4412, 8), -- Weak P. Def.
-(21507, 4413, 8), -- Weak M. Def.
-(21507, 4414, 2), -- Standard Type
-(21507, 4415, 3), -- One-handed Sword
-(21507, 4416, 3), -- Beasts
+(21507, 4408, 12), -- HP Modifiers
+(21507, 4409, 1), -- MP Modifiers
+(21507, 4410, 14), -- P. Atk. Modifiers
+(21507, 4411, 14), -- M. Atk. Modifiers
+(21507, 4412, 8), -- P. Def. Modifiers
+(21507, 4413, 8), -- M. Def. Modifiers
+(21507, 4414, 2), -- Armor Type
+(21507, 4415, 3), -- Weapon Type
+(21507, 4416, 3), -- Races
 (21507, 4438, 2), -- Greater Resist Sleep
-(21507, 4566, 6), -- Rain of Fire
-(21507, 4571, 6), -- Blazing Circle
+(21507, 4566, 6), -- NPC Eruption - Magic
+(21507, 4571, 6), -- NPC Blazing Circle
 (21507, 4657, 6), -- Hold
 -- Splinter Stakato
-(21508, 4071, 5), -- Resist Bow/Crossbow Weapons
-(21508, 4408, 1), -- HP Increase (1x)
-(21508, 4409, 1), -- MP Increase (1x)
-(21508, 4410, 11), -- Average P. Atk.
-(21508, 4411, 11), -- Average M. Atk.
-(21508, 4412, 11), -- Average P. Def.
-(21508, 4413, 15), -- Strong M. Def.
-(21508, 4414, 3), -- Light Armor Type
-(21508, 4415, 3), -- One-handed Sword
-(21508, 4416, 6), -- Humanoids
+(21508, 4071, 5), -- Resist Archery
+(21508, 4408, 1), -- HP Modifiers
+(21508, 4409, 1), -- MP Modifiers
+(21508, 4410, 11), -- P. Atk. Modifiers
+(21508, 4411, 11), -- M. Atk. Modifiers
+(21508, 4412, 11), -- P. Def. Modifiers
+(21508, 4413, 15), -- M. Def. Modifiers
+(21508, 4414, 3), -- Armor Type
+(21508, 4415, 3), -- Weapon Type
+(21508, 4416, 6), -- Races
 (21508, 4643, 6), -- Decrease Speed
 (21508, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Splinter Stakato Worker
-(21509, 4071, 5), -- Resist Bow/Crossbow Weapons
-(21509, 4160, 6), -- Aura Burn
-(21509, 4408, 1), -- HP Increase (1x)
-(21509, 4409, 1), -- MP Increase (1x)
-(21509, 4410, 12), -- Slightly Strong P. Atk.
-(21509, 4411, 12), -- Slightly Strong M. Atk.
-(21509, 4412, 10), -- Slightly Weak P. Def.
-(21509, 4413, 15), -- Strong M. Def.
-(21509, 4414, 2), -- Standard Type
-(21509, 4415, 3), -- One-handed Sword
-(21509, 4416, 6), -- Humanoids
+(21509, 4071, 5), -- Resist Archery
+(21509, 4160, 6), -- NPC Aura Burn - Magic
+(21509, 4408, 1), -- HP Modifiers
+(21509, 4409, 1), -- MP Modifiers
+(21509, 4410, 12), -- P. Atk. Modifiers
+(21509, 4411, 12), -- M. Atk. Modifiers
+(21509, 4412, 10), -- P. Def. Modifiers
+(21509, 4413, 15), -- M. Def. Modifiers
+(21509, 4414, 2), -- Armor Type
+(21509, 4415, 3), -- Weapon Type
+(21509, 4416, 6), -- Races
 (21509, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Splinter Stakato Soldier
-(21510, 4071, 5), -- Resist Bow/Crossbow Weapons
-(21510, 4408, 1), -- HP Increase (1x)
-(21510, 4409, 1), -- MP Increase (1x)
-(21510, 4410, 13), -- Slightly Strong P. Atk.
-(21510, 4411, 13), -- Slightly Strong M. Atk.
-(21510, 4412, 9), -- Slightly Weak P. Def.
-(21510, 4413, 15), -- Strong M. Def.
-(21510, 4414, 2), -- Standard Type
-(21510, 4415, 3), -- One-handed Sword
-(21510, 4416, 6), -- Humanoids
-(21510, 4561, 6), -- Fire Burn
+(21510, 4071, 5), -- Resist Archery
+(21510, 4408, 1), -- HP Modifiers
+(21510, 4409, 1), -- MP Modifiers
+(21510, 4410, 13), -- P. Atk. Modifiers
+(21510, 4411, 13), -- M. Atk. Modifiers
+(21510, 4412, 9), -- P. Def. Modifiers
+(21510, 4413, 15), -- M. Def. Modifiers
+(21510, 4414, 2), -- Armor Type
+(21510, 4415, 3), -- Weapon Type
+(21510, 4416, 6), -- Races
+(21510, 4561, 6), -- NPC Fire Burn - Magic
 (21510, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Splinter Stakato Drone
-(21511, 4071, 5), -- Resist Bow/Crossbow Weapons
-(21511, 4408, 1), -- HP Increase (1x)
-(21511, 4409, 1), -- MP Increase (1x)
-(21511, 4410, 11), -- Average P. Atk.
-(21511, 4411, 11), -- Average M. Atk.
-(21511, 4412, 11), -- Average P. Def.
-(21511, 4413, 15), -- Strong M. Def.
-(21511, 4414, 3), -- Light Armor Type
-(21511, 4415, 3), -- One-handed Sword
-(21511, 4416, 6), -- Humanoids
+(21511, 4071, 5), -- Resist Archery
+(21511, 4408, 1), -- HP Modifiers
+(21511, 4409, 1), -- MP Modifiers
+(21511, 4410, 11), -- P. Atk. Modifiers
+(21511, 4411, 11), -- M. Atk. Modifiers
+(21511, 4412, 11), -- P. Def. Modifiers
+(21511, 4413, 15), -- M. Def. Modifiers
+(21511, 4414, 3), -- Armor Type
+(21511, 4415, 3), -- Weapon Type
+(21511, 4416, 6), -- Races
 (21511, 4579, 6), -- Bleed
 (21511, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Splinter Stakato Drone
-(21512, 4067, 6), -- Blow
-(21512, 4071, 5), -- Resist Bow/Crossbow Weapons
-(21512, 4408, 1), -- HP Increase (1x)
-(21512, 4409, 1), -- MP Increase (1x)
-(21512, 4410, 9), -- Slightly Weak P. Atk.
-(21512, 4411, 9), -- Slightly Weak M. Atk.
-(21512, 4412, 13), -- Slightly Strong P. Def.
-(21512, 4413, 15), -- Strong M. Def.
-(21512, 4414, 3), -- Light Armor Type
-(21512, 4415, 3), -- One-handed Sword
-(21512, 4416, 6), -- Humanoids
+(21512, 4067, 6), -- NPC Mortal Blow
+(21512, 4071, 5), -- Resist Archery
+(21512, 4408, 1), -- HP Modifiers
+(21512, 4409, 1), -- MP Modifiers
+(21512, 4410, 9), -- P. Atk. Modifiers
+(21512, 4411, 9), -- M. Atk. Modifiers
+(21512, 4412, 13), -- P. Def. Modifiers
+(21512, 4413, 15), -- M. Def. Modifiers
+(21512, 4414, 3), -- Armor Type
+(21512, 4415, 3), -- Weapon Type
+(21512, 4416, 6), -- Races
 (21512, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Needle Stakato
-(21513, 4071, 5), -- Resist Bow/Crossbow Weapons
-(21513, 4408, 1), -- HP Increase (1x)
-(21513, 4409, 1), -- MP Increase (1x)
-(21513, 4410, 11), -- Average P. Atk.
-(21513, 4411, 11), -- Average M. Atk.
-(21513, 4412, 11), -- Average P. Def.
-(21513, 4413, 15), -- Strong M. Def.
-(21513, 4414, 3), -- Light Armor Type
-(21513, 4415, 3), -- One-handed Sword
-(21513, 4416, 6), -- Humanoids
+(21513, 4071, 5), -- Resist Archery
+(21513, 4408, 1), -- HP Modifiers
+(21513, 4409, 1), -- MP Modifiers
+(21513, 4410, 11), -- P. Atk. Modifiers
+(21513, 4411, 11), -- M. Atk. Modifiers
+(21513, 4412, 11), -- P. Def. Modifiers
+(21513, 4413, 15), -- M. Def. Modifiers
+(21513, 4414, 3), -- Armor Type
+(21513, 4415, 3), -- Weapon Type
+(21513, 4416, 6), -- Races
 (21513, 4643, 6), -- Decrease Speed
 (21513, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Needle Stakato Worker
-(21514, 4071, 5), -- Resist Bow/Crossbow Weapons
-(21514, 4160, 6), -- Aura Burn
-(21514, 4408, 1), -- HP Increase (1x)
-(21514, 4409, 1), -- MP Increase (1x)
-(21514, 4410, 12), -- Slightly Strong P. Atk.
-(21514, 4411, 12), -- Slightly Strong M. Atk.
-(21514, 4412, 10), -- Slightly Weak P. Def.
-(21514, 4413, 15), -- Strong M. Def.
-(21514, 4414, 2), -- Standard Type
-(21514, 4415, 3), -- One-handed Sword
-(21514, 4416, 6), -- Humanoids
+(21514, 4071, 5), -- Resist Archery
+(21514, 4160, 6), -- NPC Aura Burn - Magic
+(21514, 4408, 1), -- HP Modifiers
+(21514, 4409, 1), -- MP Modifiers
+(21514, 4410, 12), -- P. Atk. Modifiers
+(21514, 4411, 12), -- M. Atk. Modifiers
+(21514, 4412, 10), -- P. Def. Modifiers
+(21514, 4413, 15), -- M. Def. Modifiers
+(21514, 4414, 2), -- Armor Type
+(21514, 4415, 3), -- Weapon Type
+(21514, 4416, 6), -- Races
 (21514, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Needle Stakato Soldier
-(21515, 4071, 5), -- Resist Bow/Crossbow Weapons
-(21515, 4408, 1), -- HP Increase (1x)
-(21515, 4409, 1), -- MP Increase (1x)
-(21515, 4410, 13), -- Slightly Strong P. Atk.
-(21515, 4411, 13), -- Slightly Strong M. Atk.
-(21515, 4412, 9), -- Slightly Weak P. Def.
-(21515, 4413, 15), -- Strong M. Def.
-(21515, 4414, 2), -- Standard Type
-(21515, 4415, 3), -- One-handed Sword
-(21515, 4416, 6), -- Humanoids
-(21515, 4561, 6), -- Fire Burn
+(21515, 4071, 5), -- Resist Archery
+(21515, 4408, 1), -- HP Modifiers
+(21515, 4409, 1), -- MP Modifiers
+(21515, 4410, 13), -- P. Atk. Modifiers
+(21515, 4411, 13), -- M. Atk. Modifiers
+(21515, 4412, 9), -- P. Def. Modifiers
+(21515, 4413, 15), -- M. Def. Modifiers
+(21515, 4414, 2), -- Armor Type
+(21515, 4415, 3), -- Weapon Type
+(21515, 4416, 6), -- Races
+(21515, 4561, 6), -- NPC Fire Burn - Magic
 (21515, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Needle Stakato Drone
-(21516, 4071, 5), -- Resist Bow/Crossbow Weapons
-(21516, 4072, 7), -- Stun
-(21516, 4408, 1), -- HP Increase (1x)
-(21516, 4409, 1), -- MP Increase (1x)
-(21516, 4410, 11), -- Average P. Atk.
-(21516, 4411, 11), -- Average M. Atk.
-(21516, 4412, 11), -- Average P. Def.
-(21516, 4413, 15), -- Strong M. Def.
-(21516, 4414, 3), -- Light Armor Type
-(21516, 4415, 3), -- One-handed Sword
-(21516, 4416, 6), -- Humanoids
+(21516, 4071, 5), -- Resist Archery
+(21516, 4072, 7), -- Shock
+(21516, 4408, 1), -- HP Modifiers
+(21516, 4409, 1), -- MP Modifiers
+(21516, 4410, 11), -- P. Atk. Modifiers
+(21516, 4411, 11), -- M. Atk. Modifiers
+(21516, 4412, 11), -- P. Def. Modifiers
+(21516, 4413, 15), -- M. Def. Modifiers
+(21516, 4414, 3), -- Armor Type
+(21516, 4415, 3), -- Weapon Type
+(21516, 4416, 6), -- Races
 (21516, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Needle Stakato Drone
-(21517, 4071, 5), -- Resist Bow/Crossbow Weapons
-(21517, 4244, 7), -- Wild Sweep
-(21517, 4408, 1), -- HP Increase (1x)
-(21517, 4409, 1), -- MP Increase (1x)
-(21517, 4410, 9), -- Slightly Weak P. Atk.
-(21517, 4411, 9), -- Slightly Weak M. Atk.
-(21517, 4412, 13), -- Slightly Strong P. Def.
-(21517, 4413, 15), -- Strong M. Def.
-(21517, 4414, 3), -- Light Armor Type
-(21517, 4415, 3), -- One-handed Sword
-(21517, 4416, 6), -- Humanoids
+(21517, 4071, 5), -- Resist Archery
+(21517, 4244, 7), -- NPC Wild Sweep
+(21517, 4408, 1), -- HP Modifiers
+(21517, 4409, 1), -- MP Modifiers
+(21517, 4410, 9), -- P. Atk. Modifiers
+(21517, 4411, 9), -- M. Atk. Modifiers
+(21517, 4412, 13), -- P. Def. Modifiers
+(21517, 4413, 15), -- M. Def. Modifiers
+(21517, 4414, 3), -- Armor Type
+(21517, 4415, 3), -- Weapon Type
+(21517, 4416, 6), -- Races
 (21517, 5620, 6), -- Short-Range Physical Attack Weakness
 -- Frenzied Stakato Soldier
-(21518, 4032, 6), -- Power Strike
-(21518, 4408, 1), -- HP Increase (1x)
-(21518, 4409, 1), -- MP Increase (1x)
-(21518, 4410, 14), -- Strong P. Atk.
-(21518, 4411, 14), -- Strong M. Atk.
-(21518, 4412, 8), -- Weak P. Def.
-(21518, 4413, 15), -- Strong M. Def.
-(21518, 4414, 2), -- Standard Type
-(21518, 4415, 3), -- One-handed Sword
-(21518, 4416, 6), -- Humanoids
+(21518, 4032, 6), -- NPC Strike
+(21518, 4408, 1), -- HP Modifiers
+(21518, 4409, 1), -- MP Modifiers
+(21518, 4410, 14), -- P. Atk. Modifiers
+(21518, 4411, 14), -- M. Atk. Modifiers
+(21518, 4412, 8), -- P. Def. Modifiers
+(21518, 4413, 15), -- M. Def. Modifiers
+(21518, 4414, 2), -- Armor Type
+(21518, 4415, 3), -- Weapon Type
+(21518, 4416, 6), -- Races
 -- Frenzied Stakato Drone
-(21519, 4067, 7), -- Blow
-(21519, 4408, 1), -- HP Increase (1x)
-(21519, 4409, 1), -- MP Increase (1x)
-(21519, 4410, 14), -- Strong P. Atk.
-(21519, 4411, 14), -- Strong M. Atk.
-(21519, 4412, 8), -- Weak P. Def.
-(21519, 4413, 15), -- Strong M. Def.
-(21519, 4414, 3), -- Light Armor Type
-(21519, 4415, 3), -- One-handed Sword
-(21519, 4416, 6), -- Humanoids
+(21519, 4067, 7), -- NPC Mortal Blow
+(21519, 4408, 1), -- HP Modifiers
+(21519, 4409, 1), -- MP Modifiers
+(21519, 4410, 14), -- P. Atk. Modifiers
+(21519, 4411, 14), -- M. Atk. Modifiers
+(21519, 4412, 8), -- P. Def. Modifiers
+(21519, 4413, 15), -- M. Def. Modifiers
+(21519, 4414, 3), -- Armor Type
+(21519, 4415, 3), -- Weapon Type
+(21519, 4416, 6), -- Races
 -- Eye of Splendor
 (21520, 4035, 6), -- Poison
-(21520, 4408, 1), -- HP Increase (1x)
-(21520, 4409, 1), -- MP Increase (1x)
-(21520, 4410, 11), -- Average P. Atk.
-(21520, 4411, 11), -- Average M. Atk.
-(21520, 4412, 11), -- Average P. Def.
-(21520, 4413, 11), -- Average M. Def.
-(21520, 4414, 2), -- Standard Type
-(21520, 4415, 3), -- One-handed Sword
-(21520, 4416, 8), -- Angels
-(21520, 4561, 6), -- Fire Burn
-(21520, 4631, 3), -- Acumen Shield Wild Magic
-(21520, 4642, 3), -- Fast Spell Casting
+(21520, 4408, 1), -- HP Modifiers
+(21520, 4409, 1), -- MP Modifiers
+(21520, 4410, 11), -- P. Atk. Modifiers
+(21520, 4411, 11), -- M. Atk. Modifiers
+(21520, 4412, 11), -- P. Def. Modifiers
+(21520, 4413, 11), -- M. Def. Modifiers
+(21520, 4414, 2), -- Armor Type
+(21520, 4415, 3), -- Weapon Type
+(21520, 4416, 8), -- Races
+(21520, 4561, 6), -- NPC Fire Burn - Magic
+(21520, 4631, 3), -- NPC Buff - Acumen Shield WildMagic
+(21520, 4642, 3), -- NPC Fast Spell Casting
 -- Claws of Splendor
 (21521, 4035, 6), -- Poison
-(21521, 4160, 6), -- Aura Burn
-(21521, 4408, 1), -- HP Increase (1x)
-(21521, 4409, 1), -- MP Increase (1x)
-(21521, 4410, 9), -- Slightly Weak P. Atk.
-(21521, 4411, 9), -- Slightly Weak M. Atk.
-(21521, 4412, 13), -- Slightly Strong P. Def.
-(21521, 4413, 13), -- Slightly Strong M. Def.
-(21521, 4414, 2), -- Standard Type
-(21521, 4415, 3), -- One-handed Sword
-(21521, 4416, 8), -- Angels
-(21521, 4638, 3), -- Acumen Wild Magic Damage Shield
-(21521, 4642, 3), -- Fast Spell Casting
+(21521, 4160, 6), -- NPC Aura Burn - Magic
+(21521, 4408, 1), -- HP Modifiers
+(21521, 4409, 1), -- MP Modifiers
+(21521, 4410, 9), -- P. Atk. Modifiers
+(21521, 4411, 9), -- M. Atk. Modifiers
+(21521, 4412, 13), -- P. Def. Modifiers
+(21521, 4413, 13), -- M. Def. Modifiers
+(21521, 4414, 2), -- Armor Type
+(21521, 4415, 3), -- Weapon Type
+(21521, 4416, 8), -- Races
+(21521, 4638, 3), -- NPC Clan Buff - Acumen Empower WildMagic
+(21521, 4642, 3), -- NPC Fast Spell Casting
 -- Claws of Splendor
-(21522, 4073, 6), -- Stun
-(21522, 4085, 1), -- Critical Damage
+(21522, 4073, 6), -- Shock
+(21522, 4085, 1), -- Critical Power
 (21522, 4086, 1), -- Critical Chance
-(21522, 4094, 6), -- Cancellation
-(21522, 4408, 1), -- HP Increase (1x)
-(21522, 4409, 1), -- MP Increase (1x)
-(21522, 4410, 13), -- Slightly Strong P. Atk.
-(21522, 4411, 13), -- Slightly Strong M. Atk.
-(21522, 4412, 9), -- Slightly Weak P. Def.
-(21522, 4413, 9), -- Slightly Weak M. Def.
-(21522, 4414, 3), -- Light Armor Type
-(21522, 4415, 3), -- One-handed Sword
-(21522, 4416, 4), -- Animals
-(21522, 4571, 6), -- Blazing Circle
+(21522, 4094, 6), -- NPC Cancel Magic
+(21522, 4408, 1), -- HP Modifiers
+(21522, 4409, 1), -- MP Modifiers
+(21522, 4410, 13), -- P. Atk. Modifiers
+(21522, 4411, 13), -- M. Atk. Modifiers
+(21522, 4412, 9), -- P. Def. Modifiers
+(21522, 4413, 9), -- M. Def. Modifiers
+(21522, 4414, 3), -- Armor Type
+(21522, 4415, 3), -- Weapon Type
+(21522, 4416, 4), -- Races
+(21522, 4571, 6), -- NPC Blazing Circle
 -- Flash of Splendor
 (21523, 4035, 6), -- Poison
-(21523, 4160, 6), -- Aura Burn
-(21523, 4408, 1), -- HP Increase (1x)
-(21523, 4409, 1), -- MP Increase (1x)
-(21523, 4410, 11), -- Average P. Atk.
-(21523, 4411, 11), -- Average M. Atk.
-(21523, 4412, 11), -- Average P. Def.
-(21523, 4413, 11), -- Average M. Def.
-(21523, 4414, 2), -- Standard Type
-(21523, 4415, 5), -- Blunt Weapons
-(21523, 4416, 8), -- Angels
-(21523, 4563, 6), -- Solar Flare
-(21523, 4569, 6), -- Solar Flare
-(21523, 4633, 3), -- Acumen Berserker Empower
-(21523, 4642, 3), -- Fast Spell Casting
+(21523, 4160, 6), -- NPC Aura Burn - Magic
+(21523, 4408, 1), -- HP Modifiers
+(21523, 4409, 1), -- MP Modifiers
+(21523, 4410, 11), -- P. Atk. Modifiers
+(21523, 4411, 11), -- M. Atk. Modifiers
+(21523, 4412, 11), -- P. Def. Modifiers
+(21523, 4413, 11), -- M. Def. Modifiers
+(21523, 4414, 2), -- Armor Type
+(21523, 4415, 5), -- Weapon Type
+(21523, 4416, 8), -- Races
+(21523, 4563, 6), -- NPC Solar Flare - Magic
+(21523, 4569, 6), -- NPC AE Solar Flare - Magic
+(21523, 4633, 3), -- NPC Buff - Acumen Empower Berserk
+(21523, 4642, 3), -- NPC Fast Spell Casting
 -- Blade of Splendor
-(21524, 4085, 1), -- Critical Damage
+(21524, 4085, 1), -- Critical Power
 (21524, 4086, 1), -- Critical Chance
-(21524, 4103, 2), -- Ultimate Evasion
-(21524, 4408, 1), -- HP Increase (1x)
-(21524, 4409, 1), -- MP Increase (1x)
-(21524, 4410, 14), -- Strong P. Atk.
-(21524, 4411, 14), -- Strong M. Atk.
-(21524, 4412, 8), -- Weak P. Def.
-(21524, 4413, 8), -- Weak M. Def.
-(21524, 4414, 2), -- Standard Type
-(21524, 4415, 3), -- One-handed Sword
-(21524, 4416, 8), -- Angels
-(21524, 4641, 6), -- Super Strike
-(21524, 4671, 1), -- Teleport
+(21524, 4103, 2), -- NPC Ultimate Evasion
+(21524, 4408, 1), -- HP Modifiers
+(21524, 4409, 1), -- MP Modifiers
+(21524, 4410, 14), -- P. Atk. Modifiers
+(21524, 4411, 14), -- M. Atk. Modifiers
+(21524, 4412, 8), -- P. Def. Modifiers
+(21524, 4413, 8), -- M. Def. Modifiers
+(21524, 4414, 2), -- Armor Type
+(21524, 4415, 3), -- Weapon Type
+(21524, 4416, 8), -- Races
+(21524, 4641, 6), -- NPC Super Strike
+(21524, 4671, 1), -- AV - Teleport
 -- Blade of Splendor
-(21525, 4085, 1), -- Critical Damage
+(21525, 4085, 1), -- Critical Power
 (21525, 4086, 1), -- Critical Chance
-(21525, 4103, 2), -- Ultimate Evasion
-(21525, 4408, 1), -- HP Increase (1x)
-(21525, 4409, 1), -- MP Increase (1x)
-(21525, 4410, 11), -- Average P. Atk.
-(21525, 4411, 11), -- Average M. Atk.
-(21525, 4412, 11), -- Average P. Def.
-(21525, 4413, 11), -- Average M. Def.
-(21525, 4414, 2), -- Standard Type
-(21525, 4415, 3), -- One-handed Sword
-(21525, 4416, 8), -- Angels
-(21525, 4641, 6), -- Super Strike
-(21525, 4671, 1), -- Teleport
+(21525, 4103, 2), -- NPC Ultimate Evasion
+(21525, 4408, 1), -- HP Modifiers
+(21525, 4409, 1), -- MP Modifiers
+(21525, 4410, 11), -- P. Atk. Modifiers
+(21525, 4411, 11), -- M. Atk. Modifiers
+(21525, 4412, 11), -- P. Def. Modifiers
+(21525, 4413, 11), -- M. Def. Modifiers
+(21525, 4414, 2), -- Armor Type
+(21525, 4415, 3), -- Weapon Type
+(21525, 4416, 8), -- Races
+(21525, 4641, 6), -- NPC Super Strike
+(21525, 4671, 1), -- AV - Teleport
 -- Wisdom of Splendor
-(21526, 4104, 6), -- Chill Flame
-(21526, 4408, 1), -- HP Increase (1x)
-(21526, 4409, 1), -- MP Increase (1x)
-(21526, 4410, 11), -- Average P. Atk.
-(21526, 4411, 11), -- Average M. Atk.
-(21526, 4412, 11), -- Average P. Def.
-(21526, 4413, 11), -- Average M. Def.
-(21526, 4414, 2), -- Standard Type
-(21526, 4415, 3), -- One-handed Sword
-(21526, 4416, 8), -- Angels
-(21526, 4561, 6), -- Fire Burn
-(21526, 4634, 3), -- Acumen Empower Damage Shield
-(21526, 4642, 3), -- Fast Spell Casting
+(21526, 4104, 6), -- Flame
+(21526, 4408, 1), -- HP Modifiers
+(21526, 4409, 1), -- MP Modifiers
+(21526, 4410, 11), -- P. Atk. Modifiers
+(21526, 4411, 11), -- M. Atk. Modifiers
+(21526, 4412, 11), -- P. Def. Modifiers
+(21526, 4413, 11), -- M. Def. Modifiers
+(21526, 4414, 2), -- Armor Type
+(21526, 4415, 3), -- Weapon Type
+(21526, 4416, 8), -- Races
+(21526, 4561, 6), -- NPC Fire Burn - Magic
+(21526, 4634, 3), -- NPC Buff - Acumen Empower DamageShield
+(21526, 4642, 3), -- NPC Fast Spell Casting
 -- Fury of Splendor
-(21527, 4102, 2), -- Surrender To Fire
-(21527, 4160, 6), -- Aura Burn
-(21527, 4408, 1), -- HP Increase (1x)
-(21527, 4409, 1), -- MP Increase (1x)
-(21527, 4410, 11), -- Average P. Atk.
-(21527, 4411, 11), -- Average M. Atk.
-(21527, 4412, 11), -- Average P. Def.
-(21527, 4413, 11), -- Average M. Def.
-(21527, 4414, 2), -- Standard Type
-(21527, 4415, 3), -- One-handed Sword
-(21527, 4416, 8), -- Angels
-(21527, 4566, 6), -- Rain of Fire
-(21527, 4632, 3), -- Acumen Empower Wild Magic
-(21527, 4642, 3), -- Fast Spell Casting
+(21527, 4102, 2), -- Become weak against line of fire
+(21527, 4160, 6), -- NPC Aura Burn - Magic
+(21527, 4408, 1), -- HP Modifiers
+(21527, 4409, 1), -- MP Modifiers
+(21527, 4410, 11), -- P. Atk. Modifiers
+(21527, 4411, 11), -- M. Atk. Modifiers
+(21527, 4412, 11), -- P. Def. Modifiers
+(21527, 4413, 11), -- M. Def. Modifiers
+(21527, 4414, 2), -- Armor Type
+(21527, 4415, 3), -- Weapon Type
+(21527, 4416, 8), -- Races
+(21527, 4566, 6), -- NPC Eruption - Magic
+(21527, 4632, 3), -- NPC Buff - Acumen Empower WildMagic
+(21527, 4642, 3), -- NPC Fast Spell Casting
 -- Fury of Splendor
-(21528, 4067, 6), -- Blow
-(21528, 4085, 1), -- Critical Damage
+(21528, 4067, 6), -- NPC Mortal Blow
+(21528, 4085, 1), -- Critical Power
 (21528, 4086, 1), -- Critical Chance
-(21528, 4094, 6), -- Cancellation
-(21528, 4408, 1), -- HP Increase (1x)
-(21528, 4409, 1), -- MP Increase (1x)
-(21528, 4410, 11), -- Average P. Atk.
-(21528, 4411, 11), -- Average M. Atk.
-(21528, 4412, 11), -- Average P. Def.
-(21528, 4413, 11), -- Average M. Def.
-(21528, 4414, 2), -- Standard Type
-(21528, 4415, 3), -- One-handed Sword
-(21528, 4416, 4), -- Animals
-(21528, 4571, 6), -- Blazing Circle
+(21528, 4094, 6), -- NPC Cancel Magic
+(21528, 4408, 1), -- HP Modifiers
+(21528, 4409, 1), -- MP Modifiers
+(21528, 4410, 11), -- P. Atk. Modifiers
+(21528, 4411, 11), -- M. Atk. Modifiers
+(21528, 4412, 11), -- P. Def. Modifiers
+(21528, 4413, 11), -- M. Def. Modifiers
+(21528, 4414, 2), -- Armor Type
+(21528, 4415, 3), -- Weapon Type
+(21528, 4416, 4), -- Races
+(21528, 4571, 6), -- NPC Blazing Circle
 -- Soul of Splendor
 (21529, 4035, 6), -- Poison
-(21529, 4408, 1), -- HP Increase (1x)
-(21529, 4409, 1), -- MP Increase (1x)
-(21529, 4410, 11), -- Average P. Atk.
-(21529, 4411, 11), -- Average M. Atk.
-(21529, 4412, 11), -- Average P. Def.
-(21529, 4413, 11), -- Average M. Def.
-(21529, 4414, 2), -- Standard Type
-(21529, 4415, 5), -- Blunt Weapons
-(21529, 4416, 8), -- Angels
-(21529, 4561, 6), -- Fire Burn
-(21529, 4571, 6), -- Blazing Circle
-(21529, 4630, 6), -- Twister
-(21529, 4635, 3), -- Acumen Berserker Wild Magic
-(21529, 4642, 3), -- Fast Spell Casting
+(21529, 4408, 1), -- HP Modifiers
+(21529, 4409, 1), -- MP Modifiers
+(21529, 4410, 11), -- P. Atk. Modifiers
+(21529, 4411, 11), -- M. Atk. Modifiers
+(21529, 4412, 11), -- P. Def. Modifiers
+(21529, 4413, 11), -- M. Def. Modifiers
+(21529, 4414, 2), -- Armor Type
+(21529, 4415, 5), -- Weapon Type
+(21529, 4416, 8), -- Races
+(21529, 4561, 6), -- NPC Fire Burn - Magic
+(21529, 4571, 6), -- NPC Blazing Circle
+(21529, 4630, 6), -- NPC MR - Twister
+(21529, 4635, 3), -- NPC Buff - Acumen Berserk WildMagic
+(21529, 4642, 3), -- NPC Fast Spell Casting
 -- Victory of Splendor
-(21530, 4119, 3), -- Decrease Accuracy
-(21530, 4160, 6), -- Aura Burn
-(21530, 4408, 1), -- HP Increase (1x)
-(21530, 4409, 1), -- MP Increase (1x)
-(21530, 4410, 11), -- Average P. Atk.
-(21530, 4411, 11), -- Average M. Atk.
-(21530, 4412, 11), -- Average P. Def.
-(21530, 4413, 11), -- Average M. Def.
-(21530, 4414, 2), -- Standard Type
-(21530, 4415, 3), -- One-handed Sword
-(21530, 4416, 8), -- Angels
-(21530, 4636, 3), -- Acumen Berserker Damage Shield
-(21530, 4642, 3), -- Fast Spell Casting
+(21530, 4119, 3), -- Fall in accuracy
+(21530, 4160, 6), -- NPC Aura Burn - Magic
+(21530, 4408, 1), -- HP Modifiers
+(21530, 4409, 1), -- MP Modifiers
+(21530, 4410, 11), -- P. Atk. Modifiers
+(21530, 4411, 11), -- M. Atk. Modifiers
+(21530, 4412, 11), -- P. Def. Modifiers
+(21530, 4413, 11), -- M. Def. Modifiers
+(21530, 4414, 2), -- Armor Type
+(21530, 4415, 3), -- Weapon Type
+(21530, 4416, 8), -- Races
+(21530, 4636, 3), -- NPC Buff - Acumen Berserk DamageShield
+(21530, 4642, 3), -- NPC Fast Spell Casting
 -- Punishment of Splendor
-(21531, 4085, 1), -- Critical Damage
+(21531, 4085, 1), -- Critical Power
 (21531, 4086, 1), -- Critical Chance
-(21531, 4103, 2), -- Ultimate Evasion
-(21531, 4408, 1), -- HP Increase (1x)
-(21531, 4409, 1), -- MP Increase (1x)
-(21531, 4410, 14), -- Strong P. Atk.
-(21531, 4411, 14), -- Strong M. Atk.
-(21531, 4412, 8), -- Weak P. Def.
-(21531, 4413, 8), -- Weak M. Def.
-(21531, 4414, 2), -- Standard Type
-(21531, 4415, 3), -- One-handed Sword
-(21531, 4416, 8), -- Angels
-(21531, 4641, 6), -- Super Strike
-(21531, 4671, 1), -- Teleport
+(21531, 4103, 2), -- NPC Ultimate Evasion
+(21531, 4408, 1), -- HP Modifiers
+(21531, 4409, 1), -- MP Modifiers
+(21531, 4410, 14), -- P. Atk. Modifiers
+(21531, 4411, 14), -- M. Atk. Modifiers
+(21531, 4412, 8), -- P. Def. Modifiers
+(21531, 4413, 8), -- M. Def. Modifiers
+(21531, 4414, 2), -- Armor Type
+(21531, 4415, 3), -- Weapon Type
+(21531, 4416, 8), -- Races
+(21531, 4641, 6), -- NPC Super Strike
+(21531, 4671, 1), -- AV - Teleport
 -- Shout of Splendor
-(21532, 4104, 6), -- Chill Flame
-(21532, 4158, 6), -- Prominence
-(21532, 4160, 6), -- Aura Burn
-(21532, 4408, 1), -- HP Increase (1x)
-(21532, 4409, 1), -- MP Increase (1x)
-(21532, 4410, 11), -- Average P. Atk.
-(21532, 4411, 11), -- Average M. Atk.
-(21532, 4412, 11), -- Average P. Def.
-(21532, 4413, 11), -- Average M. Def.
-(21532, 4414, 2), -- Standard Type
-(21532, 4415, 3), -- One-handed Sword
-(21532, 4416, 8), -- Angels
-(21532, 4566, 6), -- Rain of Fire
-(21532, 4638, 3), -- Acumen Wild Magic Damage Shield
-(21532, 4642, 3), -- Fast Spell Casting
+(21532, 4104, 6), -- Flame
+(21532, 4158, 6), -- NPC Prominence - Magic
+(21532, 4160, 6), -- NPC Aura Burn - Magic
+(21532, 4408, 1), -- HP Modifiers
+(21532, 4409, 1), -- MP Modifiers
+(21532, 4410, 11), -- P. Atk. Modifiers
+(21532, 4411, 11), -- M. Atk. Modifiers
+(21532, 4412, 11), -- P. Def. Modifiers
+(21532, 4413, 11), -- M. Def. Modifiers
+(21532, 4414, 2), -- Armor Type
+(21532, 4415, 3), -- Weapon Type
+(21532, 4416, 8), -- Races
+(21532, 4566, 6), -- NPC Eruption - Magic
+(21532, 4638, 3), -- NPC Clan Buff - Acumen Empower WildMagic
+(21532, 4642, 3), -- NPC Fast Spell Casting
 -- Alliance of Splendor
-(21533, 4076, 3), -- Slow
-(21533, 4408, 1), -- HP Increase (1x)
-(21533, 4409, 1), -- MP Increase (1x)
-(21533, 4410, 9), -- Slightly Weak P. Atk.
-(21533, 4411, 9), -- Slightly Weak M. Atk.
-(21533, 4412, 13), -- Slightly Strong P. Def.
-(21533, 4413, 13), -- Slightly Strong M. Def.
-(21533, 4414, 3), -- Light Armor Type
-(21533, 4415, 5), -- Blunt Weapons
-(21533, 4416, 8), -- Angels
-(21533, 4561, 6), -- Fire Burn
-(21533, 4633, 3), -- Acumen Berserker Empower
-(21533, 4642, 3), -- Fast Spell Casting
+(21533, 4076, 3), -- Reduction in movement speed
+(21533, 4408, 1), -- HP Modifiers
+(21533, 4409, 1), -- MP Modifiers
+(21533, 4410, 9), -- P. Atk. Modifiers
+(21533, 4411, 9), -- M. Atk. Modifiers
+(21533, 4412, 13), -- P. Def. Modifiers
+(21533, 4413, 13), -- M. Def. Modifiers
+(21533, 4414, 3), -- Armor Type
+(21533, 4415, 5), -- Weapon Type
+(21533, 4416, 8), -- Races
+(21533, 4561, 6), -- NPC Fire Burn - Magic
+(21533, 4633, 3), -- NPC Buff - Acumen Empower Berserk
+(21533, 4642, 3), -- NPC Fast Spell Casting
 -- Alliance of Splendor
-(21534, 4032, 6), -- Power Strike
-(21534, 4085, 1), -- Critical Damage
+(21534, 4032, 6), -- NPC Strike
+(21534, 4085, 1), -- Critical Power
 (21534, 4086, 1), -- Critical Chance
-(21534, 4094, 6), -- Cancellation
-(21534, 4408, 1), -- HP Increase (1x)
-(21534, 4409, 1), -- MP Increase (1x)
-(21534, 4410, 13), -- Slightly Strong P. Atk.
-(21534, 4411, 13), -- Slightly Strong M. Atk.
-(21534, 4412, 9), -- Slightly Weak P. Def.
-(21534, 4413, 9), -- Slightly Weak M. Def.
-(21534, 4414, 2), -- Standard Type
-(21534, 4415, 3), -- One-handed Sword
-(21534, 4416, 4), -- Animals
-(21534, 4571, 6), -- Blazing Circle
+(21534, 4094, 6), -- NPC Cancel Magic
+(21534, 4408, 1), -- HP Modifiers
+(21534, 4409, 1), -- MP Modifiers
+(21534, 4410, 13), -- P. Atk. Modifiers
+(21534, 4411, 13), -- M. Atk. Modifiers
+(21534, 4412, 9), -- P. Def. Modifiers
+(21534, 4413, 9), -- M. Def. Modifiers
+(21534, 4414, 2), -- Armor Type
+(21534, 4415, 3), -- Weapon Type
+(21534, 4416, 4), -- Races
+(21534, 4571, 6), -- NPC Blazing Circle
 -- Signet of Splendor
-(21535, 4104, 6), -- Chill Flame
-(21535, 4160, 6), -- Aura Burn
-(21535, 4408, 1), -- HP Increase (1x)
-(21535, 4409, 1), -- MP Increase (1x)
-(21535, 4410, 11), -- Average P. Atk.
-(21535, 4411, 11), -- Average M. Atk.
-(21535, 4412, 11), -- Average P. Def.
-(21535, 4413, 11), -- Average M. Def.
-(21535, 4414, 2), -- Standard Type
-(21535, 4415, 3), -- One-handed Sword
-(21535, 4416, 8), -- Angels
-(21535, 4571, 6), -- Blazing Circle
-(21535, 4630, 6), -- Twister
-(21535, 4636, 3), -- Acumen Berserker Damage Shield
-(21535, 4642, 3), -- Fast Spell Casting
+(21535, 4104, 6), -- Flame
+(21535, 4160, 6), -- NPC Aura Burn - Magic
+(21535, 4408, 1), -- HP Modifiers
+(21535, 4409, 1), -- MP Modifiers
+(21535, 4410, 11), -- P. Atk. Modifiers
+(21535, 4411, 11), -- M. Atk. Modifiers
+(21535, 4412, 11), -- P. Def. Modifiers
+(21535, 4413, 11), -- M. Def. Modifiers
+(21535, 4414, 2), -- Armor Type
+(21535, 4415, 3), -- Weapon Type
+(21535, 4416, 8), -- Races
+(21535, 4571, 6), -- NPC Blazing Circle
+(21535, 4630, 6), -- NPC MR - Twister
+(21535, 4636, 3), -- NPC Buff - Acumen Berserk DamageShield
+(21535, 4642, 3), -- NPC Fast Spell Casting
 -- Crown of Splendor
-(21536, 4102, 2), -- Surrender To Fire
-(21536, 4408, 1), -- HP Increase (1x)
-(21536, 4409, 1), -- MP Increase (1x)
-(21536, 4410, 11), -- Average P. Atk.
-(21536, 4411, 11), -- Average M. Atk.
-(21536, 4412, 11), -- Average P. Def.
-(21536, 4413, 11), -- Average M. Def.
-(21536, 4414, 2), -- Standard Type
-(21536, 4415, 3), -- One-handed Sword
-(21536, 4416, 8), -- Angels
-(21536, 4561, 6), -- Fire Burn
-(21536, 4637, 3), -- Acumen Wild Magic Damage Shield
-(21536, 4642, 3), -- Fast Spell Casting
+(21536, 4102, 2), -- Become weak against line of fire
+(21536, 4408, 1), -- HP Modifiers
+(21536, 4409, 1), -- MP Modifiers
+(21536, 4410, 11), -- P. Atk. Modifiers
+(21536, 4411, 11), -- M. Atk. Modifiers
+(21536, 4412, 11), -- P. Def. Modifiers
+(21536, 4413, 11), -- M. Def. Modifiers
+(21536, 4414, 2), -- Armor Type
+(21536, 4415, 3), -- Weapon Type
+(21536, 4416, 8), -- Races
+(21536, 4561, 6), -- NPC Fire Burn - Magic
+(21536, 4637, 3), -- NPC Buff - Acumen WildMagic DamageShield
+(21536, 4642, 3), -- NPC Fast Spell Casting
 -- Fang of Splendor
-(21537, 4104, 6), -- Chill Flame
-(21537, 4155, 6), -- Twister
-(21537, 4160, 6), -- Aura Burn
-(21537, 4408, 1), -- HP Increase (1x)
-(21537, 4409, 1), -- MP Increase (1x)
-(21537, 4410, 9), -- Slightly Weak P. Atk.
-(21537, 4411, 9), -- Slightly Weak M. Atk.
-(21537, 4412, 13), -- Slightly Strong P. Def.
-(21537, 4413, 13), -- Slightly Strong M. Def.
-(21537, 4414, 3), -- Light Armor Type
-(21537, 4415, 5), -- Blunt Weapons
-(21537, 4416, 8), -- Angels
-(21537, 4639, 3), -- Acumen Empower Berserker
-(21537, 4642, 3), -- Fast Spell Casting
+(21537, 4104, 6), -- Flame
+(21537, 4155, 6), -- NPC Twister - Magic
+(21537, 4160, 6), -- NPC Aura Burn - Magic
+(21537, 4408, 1), -- HP Modifiers
+(21537, 4409, 1), -- MP Modifiers
+(21537, 4410, 9), -- P. Atk. Modifiers
+(21537, 4411, 9), -- M. Atk. Modifiers
+(21537, 4412, 13), -- P. Def. Modifiers
+(21537, 4413, 13), -- M. Def. Modifiers
+(21537, 4414, 3), -- Armor Type
+(21537, 4415, 5), -- Weapon Type
+(21537, 4416, 8), -- Races
+(21537, 4639, 3), -- NPC Clan Buff - Acumen Empower Berserk
+(21537, 4642, 3), -- NPC Fast Spell Casting
 -- Fang of Splendor
-(21538, 4073, 6), -- Stun
-(21538, 4085, 1), -- Critical Damage
+(21538, 4073, 6), -- Shock
+(21538, 4085, 1), -- Critical Power
 (21538, 4086, 1), -- Critical Chance
-(21538, 4094, 6), -- Cancellation
-(21538, 4408, 1), -- HP Increase (1x)
-(21538, 4409, 1), -- MP Increase (1x)
-(21538, 4410, 13), -- Slightly Strong P. Atk.
-(21538, 4411, 13), -- Slightly Strong M. Atk.
-(21538, 4412, 9), -- Slightly Weak P. Def.
-(21538, 4413, 9), -- Slightly Weak M. Def.
-(21538, 4414, 2), -- Standard Type
-(21538, 4415, 3), -- One-handed Sword
-(21538, 4416, 4), -- Animals
-(21538, 4571, 6), -- Blazing Circle
+(21538, 4094, 6), -- NPC Cancel Magic
+(21538, 4408, 1), -- HP Modifiers
+(21538, 4409, 1), -- MP Modifiers
+(21538, 4410, 13), -- P. Atk. Modifiers
+(21538, 4411, 13), -- M. Atk. Modifiers
+(21538, 4412, 9), -- P. Def. Modifiers
+(21538, 4413, 9), -- M. Def. Modifiers
+(21538, 4414, 2), -- Armor Type
+(21538, 4415, 3), -- Weapon Type
+(21538, 4416, 4), -- Races
+(21538, 4571, 6), -- NPC Blazing Circle
 -- Wailing of Splendor
-(21539, 4085, 1), -- Critical Damage
+(21539, 4085, 1), -- Critical Power
 (21539, 4086, 1), -- Critical Chance
-(21539, 4103, 2), -- Ultimate Evasion
-(21539, 4408, 1), -- HP Increase (1x)
-(21539, 4409, 1), -- MP Increase (1x)
-(21539, 4410, 14), -- Strong P. Atk.
-(21539, 4411, 14), -- Strong M. Atk.
-(21539, 4412, 8), -- Weak P. Def.
-(21539, 4413, 8), -- Weak M. Def.
-(21539, 4414, 2), -- Standard Type
-(21539, 4415, 3), -- One-handed Sword
-(21539, 4416, 8), -- Angels
-(21539, 4641, 6), -- Super Strike
-(21539, 4671, 1), -- Teleport
+(21539, 4103, 2), -- NPC Ultimate Evasion
+(21539, 4408, 1), -- HP Modifiers
+(21539, 4409, 1), -- MP Modifiers
+(21539, 4410, 14), -- P. Atk. Modifiers
+(21539, 4411, 14), -- M. Atk. Modifiers
+(21539, 4412, 8), -- P. Def. Modifiers
+(21539, 4413, 8), -- M. Def. Modifiers
+(21539, 4414, 2), -- Armor Type
+(21539, 4415, 3), -- Weapon Type
+(21539, 4416, 8), -- Races
+(21539, 4641, 6), -- NPC Super Strike
+(21539, 4671, 1), -- AV - Teleport
 -- Wailing of Splendor
-(21540, 4085, 1), -- Critical Damage
+(21540, 4085, 1), -- Critical Power
 (21540, 4086, 1), -- Critical Chance
-(21540, 4103, 2), -- Ultimate Evasion
-(21540, 4408, 1), -- HP Increase (1x)
-(21540, 4409, 1), -- MP Increase (1x)
-(21540, 4410, 11), -- Average P. Atk.
-(21540, 4411, 11), -- Average M. Atk.
-(21540, 4412, 11), -- Average P. Def.
-(21540, 4413, 11), -- Average M. Def.
-(21540, 4414, 2), -- Standard Type
-(21540, 4415, 3), -- One-handed Sword
-(21540, 4416, 8), -- Angels
-(21540, 4641, 6), -- Super Strike
-(21540, 4671, 1), -- Teleport
+(21540, 4103, 2), -- NPC Ultimate Evasion
+(21540, 4408, 1), -- HP Modifiers
+(21540, 4409, 1), -- MP Modifiers
+(21540, 4410, 11), -- P. Atk. Modifiers
+(21540, 4411, 11), -- M. Atk. Modifiers
+(21540, 4412, 11), -- P. Def. Modifiers
+(21540, 4413, 11), -- M. Def. Modifiers
+(21540, 4414, 2), -- Armor Type
+(21540, 4415, 3), -- Weapon Type
+(21540, 4416, 8), -- Races
+(21540, 4641, 6), -- NPC Super Strike
+(21540, 4671, 1), -- AV - Teleport
 -- Pilgrim of Splendor
 (21541, 4036, 6), -- Poison
-(21541, 4158, 6), -- Prominence
-(21541, 4408, 1), -- HP Increase (1x)
-(21541, 4409, 1), -- MP Increase (1x)
-(21541, 4410, 11), -- Average P. Atk.
-(21541, 4411, 11), -- Average M. Atk.
-(21541, 4412, 11), -- Average P. Def.
-(21541, 4413, 11), -- Average M. Def.
-(21541, 4414, 3), -- Light Armor Type
-(21541, 4415, 5), -- Blunt Weapons
-(21541, 4416, 8), -- Angels
-(21541, 4566, 6), -- Rain of Fire
-(21541, 4638, 3), -- Acumen Wild Magic Damage Shield
-(21541, 4642, 3), -- Fast Spell Casting
+(21541, 4158, 6), -- NPC Prominence - Magic
+(21541, 4408, 1), -- HP Modifiers
+(21541, 4409, 1), -- MP Modifiers
+(21541, 4410, 11), -- P. Atk. Modifiers
+(21541, 4411, 11), -- M. Atk. Modifiers
+(21541, 4412, 11), -- P. Def. Modifiers
+(21541, 4413, 11), -- M. Def. Modifiers
+(21541, 4414, 3), -- Armor Type
+(21541, 4415, 5), -- Weapon Type
+(21541, 4416, 8), -- Races
+(21541, 4566, 6), -- NPC Eruption - Magic
+(21541, 4638, 3), -- NPC Clan Buff - Acumen Empower WildMagic
+(21541, 4642, 3), -- NPC Fast Spell Casting
 -- Disciple of Pilgrim
-(21542, 4158, 6), -- Prominence
-(21542, 4408, 1), -- HP Increase (1x)
-(21542, 4409, 1), -- MP Increase (1x)
-(21542, 4410, 12), -- Slightly Strong P. Atk.
-(21542, 4411, 12), -- Slightly Strong M. Atk.
-(21542, 4412, 10), -- Slightly Weak P. Def.
-(21542, 4413, 10), -- Slightly Weak M. Def.
-(21542, 4414, 2), -- Standard Type
-(21542, 4415, 3), -- One-handed Sword
-(21542, 4416, 8), -- Angels
-(21542, 4561, 6), -- Fire Burn
-(21542, 4642, 3), -- Fast Spell Casting
+(21542, 4158, 6), -- NPC Prominence - Magic
+(21542, 4408, 1), -- HP Modifiers
+(21542, 4409, 1), -- MP Modifiers
+(21542, 4410, 12), -- P. Atk. Modifiers
+(21542, 4411, 12), -- M. Atk. Modifiers
+(21542, 4412, 10), -- P. Def. Modifiers
+(21542, 4413, 10), -- M. Def. Modifiers
+(21542, 4414, 2), -- Armor Type
+(21542, 4415, 3), -- Weapon Type
+(21542, 4416, 8), -- Races
+(21542, 4561, 6), -- NPC Fire Burn - Magic
+(21542, 4642, 3), -- NPC Fast Spell Casting
 -- Page of Pilgrim
-(21543, 4097, 6), -- Chant of Life
-(21543, 4158, 6), -- Prominence
-(21543, 4408, 1), -- HP Increase (1x)
-(21543, 4409, 1), -- MP Increase (1x)
-(21543, 4410, 10), -- Slightly Weak P. Atk.
-(21543, 4411, 10), -- Slightly Weak M. Atk.
-(21543, 4412, 12), -- Slightly Strong P. Def.
-(21543, 4413, 12), -- Slightly Strong M. Def.
-(21543, 4414, 2), -- Standard Type
-(21543, 4415, 3), -- One-handed Sword
-(21543, 4416, 8), -- Angels
-(21543, 4561, 6), -- Fire Burn
-(21543, 4642, 3), -- Fast Spell Casting
+(21543, 4097, 6), -- NPC Chant of Life
+(21543, 4158, 6), -- NPC Prominence - Magic
+(21543, 4408, 1), -- HP Modifiers
+(21543, 4409, 1), -- MP Modifiers
+(21543, 4410, 10), -- P. Atk. Modifiers
+(21543, 4411, 10), -- M. Atk. Modifiers
+(21543, 4412, 12), -- P. Def. Modifiers
+(21543, 4413, 12), -- M. Def. Modifiers
+(21543, 4414, 2), -- Armor Type
+(21543, 4415, 3), -- Weapon Type
+(21543, 4416, 8), -- Races
+(21543, 4561, 6), -- NPC Fire Burn - Magic
+(21543, 4642, 3), -- NPC Fast Spell Casting
 -- Judge of Splendor
-(21544, 4155, 6), -- Twister
-(21544, 4408, 1), -- HP Increase (1x)
-(21544, 4409, 1), -- MP Increase (1x)
-(21544, 4410, 11), -- Average P. Atk.
-(21544, 4411, 11), -- Average M. Atk.
-(21544, 4412, 11), -- Average P. Def.
-(21544, 4413, 11), -- Average M. Def.
-(21544, 4414, 2), -- Standard Type
-(21544, 4415, 3), -- One-handed Sword
-(21544, 4416, 8), -- Angels
-(21544, 4569, 6), -- Solar Flare
-(21544, 4635, 3), -- Acumen Berserker Wild Magic
+(21544, 4155, 6), -- NPC Twister - Magic
+(21544, 4408, 1), -- HP Modifiers
+(21544, 4409, 1), -- MP Modifiers
+(21544, 4410, 11), -- P. Atk. Modifiers
+(21544, 4411, 11), -- M. Atk. Modifiers
+(21544, 4412, 11), -- P. Def. Modifiers
+(21544, 4413, 11), -- M. Def. Modifiers
+(21544, 4414, 2), -- Armor Type
+(21544, 4415, 3), -- Weapon Type
+(21544, 4416, 8), -- Races
+(21544, 4569, 6), -- NPC AE Solar Flare - Magic
+(21544, 4635, 3), -- NPC Buff - Acumen Berserk WildMagic
 (21544, 4640, 6), -- Sleep
-(21544, 4642, 3), -- Fast Spell Casting
+(21544, 4642, 3), -- NPC Fast Spell Casting
 -- Judge of Fire
-(21545, 4155, 6), -- Twister
-(21545, 4160, 6), -- Aura Burn
-(21545, 4408, 1), -- HP Increase (1x)
-(21545, 4409, 1), -- MP Increase (1x)
-(21545, 4410, 12), -- Slightly Strong P. Atk.
-(21545, 4411, 12), -- Slightly Strong M. Atk.
-(21545, 4412, 10), -- Slightly Weak P. Def.
-(21545, 4413, 10), -- Slightly Weak M. Def.
-(21545, 4414, 3), -- Light Armor Type
-(21545, 4415, 5), -- Blunt Weapons
-(21545, 4416, 8), -- Angels
-(21545, 4642, 3), -- Fast Spell Casting
+(21545, 4155, 6), -- NPC Twister - Magic
+(21545, 4160, 6), -- NPC Aura Burn - Magic
+(21545, 4408, 1), -- HP Modifiers
+(21545, 4409, 1), -- MP Modifiers
+(21545, 4410, 12), -- P. Atk. Modifiers
+(21545, 4411, 12), -- M. Atk. Modifiers
+(21545, 4412, 10), -- P. Def. Modifiers
+(21545, 4413, 10), -- M. Def. Modifiers
+(21545, 4414, 3), -- Armor Type
+(21545, 4415, 5), -- Weapon Type
+(21545, 4416, 8), -- Races
+(21545, 4642, 3), -- NPC Fast Spell Casting
 -- Judge of Light
-(21546, 4097, 6), -- Chant of Life
-(21546, 4408, 1), -- HP Increase (1x)
-(21546, 4409, 1), -- MP Increase (1x)
-(21546, 4410, 10), -- Slightly Weak P. Atk.
-(21546, 4411, 10), -- Slightly Weak M. Atk.
-(21546, 4412, 12), -- Slightly Strong P. Def.
-(21546, 4413, 12), -- Slightly Strong M. Def.
-(21546, 4414, 2), -- Standard Type
-(21546, 4415, 3), -- One-handed Sword
-(21546, 4416, 8), -- Angels
-(21546, 4561, 6), -- Fire Burn
-(21546, 4563, 6), -- Solar Flare
-(21546, 4642, 3), -- Fast Spell Casting
+(21546, 4097, 6), -- NPC Chant of Life
+(21546, 4408, 1), -- HP Modifiers
+(21546, 4409, 1), -- MP Modifiers
+(21546, 4410, 10), -- P. Atk. Modifiers
+(21546, 4411, 10), -- M. Atk. Modifiers
+(21546, 4412, 12), -- P. Def. Modifiers
+(21546, 4413, 12), -- M. Def. Modifiers
+(21546, 4414, 2), -- Armor Type
+(21546, 4415, 3), -- Weapon Type
+(21546, 4416, 8), -- Races
+(21546, 4561, 6), -- NPC Fire Burn - Magic
+(21546, 4563, 6), -- NPC Solar Flare - Magic
+(21546, 4642, 3), -- NPC Fast Spell Casting
 -- Corrupted Knight
-(21547, 4032, 6), -- Power Strike
-(21547, 4274, 1), -- Blunt Weapon Weak Point
-(21547, 4408, 1), -- HP Increase (1x)
-(21547, 4409, 1), -- MP Increase (1x)
-(21547, 4410, 11), -- Average P. Atk.
-(21547, 4411, 11), -- Average M. Atk.
-(21547, 4412, 15), -- Strong P. Def.
-(21547, 4413, 11), -- Average M. Def.
-(21547, 4414, 2), -- Standard Type
-(21547, 4415, 3), -- One-handed Sword
-(21547, 4416, 1), -- Undead
+(21547, 4032, 6), -- NPC Strike
+(21547, 4274, 1), -- Blunt Attack Weak Point
+(21547, 4408, 1), -- HP Modifiers
+(21547, 4409, 1), -- MP Modifiers
+(21547, 4410, 11), -- P. Atk. Modifiers
+(21547, 4411, 11), -- M. Atk. Modifiers
+(21547, 4412, 15), -- P. Def. Modifiers
+(21547, 4413, 11), -- M. Def. Modifiers
+(21547, 4414, 2), -- Armor Type
+(21547, 4415, 3), -- Weapon Type
+(21547, 4416, 1), -- Races
 (21547, 4649, 6), -- Poison
-(21547, 4671, 1), -- Teleport
+(21547, 4671, 1), -- AV - Teleport
 -- Resurrected Knight
-(21548, 4274, 1), -- Blunt Weapon Weak Point
-(21548, 4408, 1), -- HP Increase (1x)
-(21548, 4409, 1), -- MP Increase (1x)
-(21548, 4410, 11), -- Average P. Atk.
-(21548, 4411, 11), -- Average M. Atk.
-(21548, 4412, 15), -- Strong P. Def.
-(21548, 4413, 11), -- Average M. Def.
-(21548, 4414, 2), -- Standard Type
-(21548, 4415, 3), -- One-handed Sword
-(21548, 4416, 1), -- Undead
+(21548, 4274, 1), -- Blunt Attack Weak Point
+(21548, 4408, 1), -- HP Modifiers
+(21548, 4409, 1), -- MP Modifiers
+(21548, 4410, 11), -- P. Atk. Modifiers
+(21548, 4411, 11), -- M. Atk. Modifiers
+(21548, 4412, 15), -- P. Def. Modifiers
+(21548, 4413, 11), -- M. Def. Modifiers
+(21548, 4414, 2), -- Armor Type
+(21548, 4415, 3), -- Weapon Type
+(21548, 4416, 1), -- Races
 (21548, 4649, 6), -- Poison
 -- Corrupted Guard
-(21549, 4067, 6), -- Blow
-(21549, 4274, 1), -- Blunt Weapon Weak Point
-(21549, 4408, 1), -- HP Increase (1x)
-(21549, 4409, 1), -- MP Increase (1x)
-(21549, 4410, 11), -- Average P. Atk.
-(21549, 4411, 11), -- Average M. Atk.
-(21549, 4412, 15), -- Strong P. Def.
-(21549, 4413, 11), -- Average M. Def.
-(21549, 4414, 2), -- Standard Type
-(21549, 4415, 7), -- Daggers
-(21549, 4416, 1), -- Undead
+(21549, 4067, 6), -- NPC Mortal Blow
+(21549, 4274, 1), -- Blunt Attack Weak Point
+(21549, 4408, 1), -- HP Modifiers
+(21549, 4409, 1), -- MP Modifiers
+(21549, 4410, 11), -- P. Atk. Modifiers
+(21549, 4411, 11), -- M. Atk. Modifiers
+(21549, 4412, 15), -- P. Def. Modifiers
+(21549, 4413, 11), -- M. Def. Modifiers
+(21549, 4414, 2), -- Armor Type
+(21549, 4415, 7), -- Weapon Type
+(21549, 4416, 1), -- Races
 (21549, 4649, 6), -- Poison
 -- Corrupted Guard
-(21550, 4073, 6), -- Stun
-(21550, 4274, 1), -- Blunt Weapon Weak Point
-(21550, 4408, 1), -- HP Increase (1x)
-(21550, 4409, 1), -- MP Increase (1x)
-(21550, 4410, 14), -- Strong P. Atk.
-(21550, 4411, 14), -- Strong M. Atk.
-(21550, 4412, 13), -- Slightly Strong P. Def.
-(21550, 4413, 8), -- Weak M. Def.
-(21550, 4414, 2), -- Standard Type
-(21550, 4415, 7), -- Daggers
-(21550, 4416, 1), -- Undead
+(21550, 4073, 6), -- Shock
+(21550, 4274, 1), -- Blunt Attack Weak Point
+(21550, 4408, 1), -- HP Modifiers
+(21550, 4409, 1), -- MP Modifiers
+(21550, 4410, 14), -- P. Atk. Modifiers
+(21550, 4411, 14), -- M. Atk. Modifiers
+(21550, 4412, 13), -- P. Def. Modifiers
+(21550, 4413, 8), -- M. Def. Modifiers
+(21550, 4414, 2), -- Armor Type
+(21550, 4415, 7), -- Weapon Type
+(21550, 4416, 1), -- Races
 (21550, 4649, 6), -- Poison
-(21550, 4671, 1), -- Teleport
+(21550, 4671, 1), -- AV - Teleport
 -- Resurrected Guard
-(21551, 4274, 1), -- Blunt Weapon Weak Point
-(21551, 4408, 1), -- HP Increase (1x)
-(21551, 4409, 1), -- MP Increase (1x)
-(21551, 4410, 11), -- Average P. Atk.
-(21551, 4411, 11), -- Average M. Atk.
-(21551, 4412, 15), -- Strong P. Def.
-(21551, 4413, 11), -- Average M. Def.
-(21551, 4414, 2), -- Standard Type
-(21551, 4415, 7), -- Daggers
-(21551, 4416, 1), -- Undead
+(21551, 4274, 1), -- Blunt Attack Weak Point
+(21551, 4408, 1), -- HP Modifiers
+(21551, 4409, 1), -- MP Modifiers
+(21551, 4410, 11), -- P. Atk. Modifiers
+(21551, 4411, 11), -- M. Atk. Modifiers
+(21551, 4412, 15), -- P. Def. Modifiers
+(21551, 4413, 11), -- M. Def. Modifiers
+(21551, 4414, 2), -- Armor Type
+(21551, 4415, 7), -- Weapon Type
+(21551, 4416, 1), -- Races
 (21551, 4579, 6), -- Bleed
 (21551, 4649, 6), -- Poison
 -- Resurrected Guard
-(21552, 4073, 6), -- Stun
-(21552, 4274, 1), -- Blunt Weapon Weak Point
-(21552, 4408, 1), -- HP Increase (1x)
-(21552, 4409, 1), -- MP Increase (1x)
-(21552, 4410, 14), -- Strong P. Atk.
-(21552, 4411, 14), -- Strong M. Atk.
-(21552, 4412, 13), -- Slightly Strong P. Def.
-(21552, 4413, 8), -- Weak M. Def.
-(21552, 4414, 2), -- Standard Type
-(21552, 4415, 7), -- Daggers
-(21552, 4416, 1), -- Undead
+(21552, 4073, 6), -- Shock
+(21552, 4274, 1), -- Blunt Attack Weak Point
+(21552, 4408, 1), -- HP Modifiers
+(21552, 4409, 1), -- MP Modifiers
+(21552, 4410, 14), -- P. Atk. Modifiers
+(21552, 4411, 14), -- M. Atk. Modifiers
+(21552, 4412, 13), -- P. Def. Modifiers
+(21552, 4413, 8), -- M. Def. Modifiers
+(21552, 4414, 2), -- Armor Type
+(21552, 4415, 7), -- Weapon Type
+(21552, 4416, 1), -- Races
 (21552, 4649, 6), -- Poison
-(21552, 4671, 1), -- Teleport
+(21552, 4671, 1), -- AV - Teleport
 -- Trampled Man
-(21553, 4001, 6), -- Windstrike
-(21553, 4408, 1), -- HP Increase (1x)
-(21553, 4409, 1), -- MP Increase (1x)
-(21553, 4410, 11), -- Average P. Atk.
-(21553, 4411, 11), -- Average M. Atk.
-(21553, 4412, 11), -- Average P. Def.
-(21553, 4413, 11), -- Average M. Def.
-(21553, 4414, 3), -- Light Armor Type
-(21553, 4415, 3), -- One-handed Sword
-(21553, 4416, 1), -- Undead
+(21553, 4001, 6), -- NPC Wind Strike
+(21553, 4408, 1), -- HP Modifiers
+(21553, 4409, 1), -- MP Modifiers
+(21553, 4410, 11), -- P. Atk. Modifiers
+(21553, 4411, 11), -- M. Atk. Modifiers
+(21553, 4412, 11), -- P. Def. Modifiers
+(21553, 4413, 11), -- M. Def. Modifiers
+(21553, 4414, 3), -- Armor Type
+(21553, 4415, 3), -- Weapon Type
+(21553, 4416, 1), -- Races
 (21553, 4649, 6), -- Poison
 -- Trampled Man
-(21554, 4408, 1), -- HP Increase (1x)
-(21554, 4409, 1), -- MP Increase (1x)
-(21554, 4410, 13), -- Slightly Strong P. Atk.
-(21554, 4411, 13), -- Slightly Strong M. Atk.
-(21554, 4412, 9), -- Slightly Weak P. Def.
-(21554, 4413, 9), -- Slightly Weak M. Def.
-(21554, 4414, 3), -- Light Armor Type
-(21554, 4415, 3), -- One-handed Sword
-(21554, 4416, 1), -- Undead
+(21554, 4408, 1), -- HP Modifiers
+(21554, 4409, 1), -- MP Modifiers
+(21554, 4410, 13), -- P. Atk. Modifiers
+(21554, 4411, 13), -- M. Atk. Modifiers
+(21554, 4412, 9), -- P. Def. Modifiers
+(21554, 4413, 9), -- M. Def. Modifiers
+(21554, 4414, 3), -- Armor Type
+(21554, 4415, 3), -- Weapon Type
+(21554, 4416, 1), -- Races
 (21554, 4649, 6), -- Poison
-(21554, 4671, 1), -- Teleport
+(21554, 4671, 1), -- AV - Teleport
 -- Slaughter Executioner
-(21555, 4028, 3), -- Might
-(21555, 4408, 1), -- HP Increase (1x)
-(21555, 4409, 1), -- MP Increase (1x)
-(21555, 4410, 10), -- Slightly Weak P. Atk.
-(21555, 4411, 10), -- Slightly Weak M. Atk.
-(21555, 4412, 12), -- Slightly Strong P. Def.
-(21555, 4413, 12), -- Slightly Strong M. Def.
-(21555, 4414, 3), -- Light Armor Type
-(21555, 4415, 3), -- One-handed Sword
-(21555, 4416, 1), -- Undead
+(21555, 4028, 3), -- NPC Might
+(21555, 4408, 1), -- HP Modifiers
+(21555, 4409, 1), -- MP Modifiers
+(21555, 4410, 10), -- P. Atk. Modifiers
+(21555, 4411, 10), -- M. Atk. Modifiers
+(21555, 4412, 12), -- P. Def. Modifiers
+(21555, 4413, 12), -- M. Def. Modifiers
+(21555, 4414, 3), -- Armor Type
+(21555, 4415, 3), -- Weapon Type
+(21555, 4416, 1), -- Races
 (21555, 4581, 6), -- Hold
 -- Slaughter Executioner
-(21556, 4074, 2), -- Haste
-(21556, 4408, 1), -- HP Increase (1x)
-(21556, 4409, 1), -- MP Increase (1x)
-(21556, 4410, 11), -- Average P. Atk.
-(21556, 4411, 11), -- Average M. Atk.
-(21556, 4412, 11), -- Average P. Def.
-(21556, 4413, 11), -- Average M. Def.
-(21556, 4414, 3), -- Light Armor Type
-(21556, 4415, 3), -- One-handed Sword
-(21556, 4416, 1), -- Undead
+(21556, 4074, 2), -- NPC Haste
+(21556, 4408, 1), -- HP Modifiers
+(21556, 4409, 1), -- MP Modifiers
+(21556, 4410, 11), -- P. Atk. Modifiers
+(21556, 4411, 11), -- M. Atk. Modifiers
+(21556, 4412, 11), -- P. Def. Modifiers
+(21556, 4413, 11), -- M. Def. Modifiers
+(21556, 4414, 3), -- Armor Type
+(21556, 4415, 3), -- Weapon Type
+(21556, 4416, 1), -- Races
 (21556, 4596, 6), -- Bleed
 -- Bone Snatcher
 (21557, 4047, 6), -- Hold
-(21557, 4155, 6), -- Twister
-(21557, 4408, 1), -- HP Increase (1x)
-(21557, 4409, 1), -- MP Increase (1x)
-(21557, 4410, 11), -- Average P. Atk.
-(21557, 4411, 11), -- Average M. Atk.
-(21557, 4412, 11), -- Average P. Def.
-(21557, 4413, 11), -- Average M. Def.
-(21557, 4414, 2), -- Standard Type
-(21557, 4415, 3), -- One-handed Sword
-(21557, 4416, 6), -- Humanoids
-(21557, 4561, 6), -- Fire Burn
-(21557, 4650, 1), -- Hold Dispell
-(21557, 4654, 6), -- Death Link
-(21557, 4672, 1), -- Corpse Remove
+(21557, 4155, 6), -- NPC Twister - Magic
+(21557, 4408, 1), -- HP Modifiers
+(21557, 4409, 1), -- MP Modifiers
+(21557, 4410, 11), -- P. Atk. Modifiers
+(21557, 4411, 11), -- M. Atk. Modifiers
+(21557, 4412, 11), -- P. Def. Modifiers
+(21557, 4413, 11), -- M. Def. Modifiers
+(21557, 4414, 2), -- Armor Type
+(21557, 4415, 3), -- Weapon Type
+(21557, 4416, 6), -- Races
+(21557, 4561, 6), -- NPC Fire Burn - Magic
+(21557, 4650, 1), -- NPC AE - Dispel Hold
+(21557, 4654, 6), -- NPC Death Link
+(21557, 4672, 1), -- NPC Corpse Remove
 -- Bone Snatcher
-(21558, 4098, 6), -- Silence
-(21558, 4155, 6), -- Twister
-(21558, 4408, 1), -- HP Increase (1x)
-(21558, 4409, 1), -- MP Increase (1x)
-(21558, 4410, 11), -- Average P. Atk.
-(21558, 4411, 11), -- Average M. Atk.
-(21558, 4412, 11), -- Average P. Def.
-(21558, 4413, 11), -- Average M. Def.
-(21558, 4414, 2), -- Standard Type
-(21558, 4415, 3), -- One-handed Sword
-(21558, 4416, 6), -- Humanoids
-(21558, 4561, 6), -- Fire Burn
-(21558, 4652, 1), -- Silence Dispell
-(21558, 4654, 6), -- Death Link
+(21558, 4098, 6), -- Magic Skill Block
+(21558, 4155, 6), -- NPC Twister - Magic
+(21558, 4408, 1), -- HP Modifiers
+(21558, 4409, 1), -- MP Modifiers
+(21558, 4410, 11), -- P. Atk. Modifiers
+(21558, 4411, 11), -- M. Atk. Modifiers
+(21558, 4412, 11), -- P. Def. Modifiers
+(21558, 4413, 11), -- M. Def. Modifiers
+(21558, 4414, 2), -- Armor Type
+(21558, 4415, 3), -- Weapon Type
+(21558, 4416, 6), -- Races
+(21558, 4561, 6), -- NPC Fire Burn - Magic
+(21558, 4652, 1), -- NPC AE - Dispel Silence
+(21558, 4654, 6), -- NPC Death Link
 -- Bone Maker
 (21559, 4047, 6), -- Hold
-(21559, 4408, 1), -- HP Increase (1x)
-(21559, 4409, 1), -- MP Increase (1x)
-(21559, 4410, 10), -- Slightly Weak P. Atk.
-(21559, 4411, 10), -- Slightly Weak M. Atk.
-(21559, 4412, 12), -- Slightly Strong P. Def.
-(21559, 4413, 12), -- Slightly Strong M. Def.
-(21559, 4414, 2), -- Standard Type
-(21559, 4415, 3), -- One-handed Sword
-(21559, 4416, 6), -- Humanoids
-(21559, 4561, 6), -- Fire Burn
+(21559, 4408, 1), -- HP Modifiers
+(21559, 4409, 1), -- MP Modifiers
+(21559, 4410, 10), -- P. Atk. Modifiers
+(21559, 4411, 10), -- M. Atk. Modifiers
+(21559, 4412, 12), -- P. Def. Modifiers
+(21559, 4413, 12), -- M. Def. Modifiers
+(21559, 4414, 2), -- Armor Type
+(21559, 4415, 3), -- Weapon Type
+(21559, 4416, 6), -- Races
+(21559, 4561, 6), -- NPC Fire Burn - Magic
 (21559, 4597, 6), -- Bleed
-(21559, 4650, 1), -- Hold Dispell
-(21559, 4654, 6), -- Death Link
-(21559, 4672, 1), -- Corpse Remove
+(21559, 4650, 1), -- NPC AE - Dispel Hold
+(21559, 4654, 6), -- NPC Death Link
+(21559, 4672, 1), -- NPC Corpse Remove
 -- Bone Shaper
-(21560, 4098, 6), -- Silence
-(21560, 4408, 1), -- HP Increase (1x)
-(21560, 4409, 1), -- MP Increase (1x)
-(21560, 4410, 10), -- Slightly Weak P. Atk.
-(21560, 4411, 10), -- Slightly Weak M. Atk.
-(21560, 4412, 12), -- Slightly Strong P. Def.
-(21560, 4413, 12), -- Slightly Strong M. Def.
-(21560, 4414, 2), -- Standard Type
-(21560, 4415, 3), -- One-handed Sword
-(21560, 4416, 6), -- Humanoids
-(21560, 4561, 6), -- Fire Burn
+(21560, 4098, 6), -- Magic Skill Block
+(21560, 4408, 1), -- HP Modifiers
+(21560, 4409, 1), -- MP Modifiers
+(21560, 4410, 10), -- P. Atk. Modifiers
+(21560, 4411, 10), -- M. Atk. Modifiers
+(21560, 4412, 12), -- P. Def. Modifiers
+(21560, 4413, 12), -- M. Def. Modifiers
+(21560, 4414, 2), -- Armor Type
+(21560, 4415, 3), -- Weapon Type
+(21560, 4416, 6), -- Races
+(21560, 4561, 6), -- NPC Fire Burn - Magic
 (21560, 4597, 6), -- Bleed
-(21560, 4652, 1), -- Silence Dispell
-(21560, 4654, 6), -- Death Link
+(21560, 4652, 1), -- NPC AE - Dispel Silence
+(21560, 4654, 6), -- NPC Death Link
 -- Sacrificed Man
-(21561, 4073, 6), -- Stun
-(21561, 4408, 1), -- HP Increase (1x)
-(21561, 4409, 1), -- MP Increase (1x)
-(21561, 4410, 10), -- Slightly Weak P. Atk.
-(21561, 4411, 10), -- Slightly Weak M. Atk.
-(21561, 4412, 12), -- Slightly Strong P. Def.
-(21561, 4413, 12), -- Slightly Strong M. Def.
-(21561, 4414, 3), -- Light Armor Type
-(21561, 4415, 3), -- One-handed Sword
-(21561, 4416, 1), -- Undead
+(21561, 4073, 6), -- Shock
+(21561, 4408, 1), -- HP Modifiers
+(21561, 4409, 1), -- MP Modifiers
+(21561, 4410, 10), -- P. Atk. Modifiers
+(21561, 4411, 10), -- M. Atk. Modifiers
+(21561, 4412, 12), -- P. Def. Modifiers
+(21561, 4413, 12), -- M. Def. Modifiers
+(21561, 4414, 3), -- Armor Type
+(21561, 4415, 3), -- Weapon Type
+(21561, 4416, 1), -- Races
 (21561, 4649, 6), -- Poison
-(21561, 4671, 1), -- Teleport
+(21561, 4671, 1), -- AV - Teleport
 -- Guillotine's Ghost
-(21562, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(21562, 4408, 1), -- HP Increase (1x)
-(21562, 4409, 1), -- MP Increase (1x)
-(21562, 4410, 11), -- Average P. Atk.
-(21562, 4411, 11), -- Average M. Atk.
-(21562, 4412, 11), -- Average P. Def.
-(21562, 4413, 11), -- Average M. Def.
-(21562, 4414, 3), -- Light Armor Type
-(21562, 4415, 5), -- Blunt Weapons
-(21562, 4416, 2), -- Magic Creatures
+(21562, 4276, 1), -- Archery Attack Weak Point
+(21562, 4408, 1), -- HP Modifiers
+(21562, 4409, 1), -- MP Modifiers
+(21562, 4410, 11), -- P. Atk. Modifiers
+(21562, 4411, 11), -- M. Atk. Modifiers
+(21562, 4412, 11), -- P. Def. Modifiers
+(21562, 4413, 11), -- M. Def. Modifiers
+(21562, 4414, 3), -- Armor Type
+(21562, 4415, 5), -- Weapon Type
+(21562, 4416, 2), -- Races
 (21562, 4596, 6), -- Bleed
-(21562, 4635, 3), -- Acumen Berserker Wild Magic
+(21562, 4635, 3), -- NPC Buff - Acumen Berserk WildMagic
 -- Bone Collector
 (21563, 4047, 6), -- Hold
-(21563, 4408, 1), -- HP Increase (1x)
-(21563, 4409, 1), -- MP Increase (1x)
-(21563, 4410, 12), -- Slightly Strong P. Atk.
-(21563, 4411, 12), -- Slightly Strong M. Atk.
-(21563, 4412, 10), -- Slightly Weak P. Def.
-(21563, 4413, 10), -- Slightly Weak M. Def.
-(21563, 4414, 2), -- Standard Type
-(21563, 4415, 3), -- One-handed Sword
-(21563, 4416, 6), -- Humanoids
-(21563, 4561, 6), -- Fire Burn
+(21563, 4408, 1), -- HP Modifiers
+(21563, 4409, 1), -- MP Modifiers
+(21563, 4410, 12), -- P. Atk. Modifiers
+(21563, 4411, 12), -- M. Atk. Modifiers
+(21563, 4412, 10), -- P. Def. Modifiers
+(21563, 4413, 10), -- M. Def. Modifiers
+(21563, 4414, 2), -- Armor Type
+(21563, 4415, 3), -- Weapon Type
+(21563, 4416, 6), -- Races
+(21563, 4561, 6), -- NPC Fire Burn - Magic
 (21563, 4597, 6), -- Bleed
-(21563, 4650, 1), -- Hold Dispell
-(21563, 4654, 6), -- Death Link
-(21563, 4672, 1), -- Corpse Remove
+(21563, 4650, 1), -- NPC AE - Dispel Hold
+(21563, 4654, 6), -- NPC Death Link
+(21563, 4672, 1), -- NPC Corpse Remove
 -- Skull Collector
-(21564, 4076, 3), -- Slow
-(21564, 4408, 1), -- HP Increase (1x)
-(21564, 4409, 1), -- MP Increase (1x)
-(21564, 4410, 12), -- Slightly Strong P. Atk.
-(21564, 4411, 12), -- Slightly Strong M. Atk.
-(21564, 4412, 10), -- Slightly Weak P. Def.
-(21564, 4413, 10), -- Slightly Weak M. Def.
-(21564, 4414, 2), -- Standard Type
-(21564, 4415, 3), -- One-handed Sword
-(21564, 4416, 6), -- Humanoids
-(21564, 4561, 6), -- Fire Burn
-(21564, 4651, 3), -- Slow Dispell
-(21564, 4654, 6), -- Death Link
+(21564, 4076, 3), -- Reduction in movement speed
+(21564, 4408, 1), -- HP Modifiers
+(21564, 4409, 1), -- MP Modifiers
+(21564, 4410, 12), -- P. Atk. Modifiers
+(21564, 4411, 12), -- M. Atk. Modifiers
+(21564, 4412, 10), -- P. Def. Modifiers
+(21564, 4413, 10), -- M. Def. Modifiers
+(21564, 4414, 2), -- Armor Type
+(21564, 4415, 3), -- Weapon Type
+(21564, 4416, 6), -- Races
+(21564, 4561, 6), -- NPC Fire Burn - Magic
+(21564, 4651, 3), -- NPC AE - Dispel Slow
+(21564, 4654, 6), -- NPC Death Link
 (21564, 4658, 6), -- Hold
-(21564, 4672, 1), -- Corpse Remove
+(21564, 4672, 1), -- NPC Corpse Remove
 -- Bone Animator
 (21565, 4047, 6), -- Hold
-(21565, 4155, 6), -- Twister
-(21565, 4408, 1), -- HP Increase (1x)
-(21565, 4409, 1), -- MP Increase (1x)
-(21565, 4410, 12), -- Slightly Strong P. Atk.
-(21565, 4411, 12), -- Slightly Strong M. Atk.
-(21565, 4412, 10), -- Slightly Weak P. Def.
-(21565, 4413, 10), -- Slightly Weak M. Def.
-(21565, 4414, 2), -- Standard Type
-(21565, 4415, 3), -- One-handed Sword
-(21565, 4416, 6), -- Humanoids
-(21565, 4561, 6), -- Fire Burn
-(21565, 4650, 1), -- Hold Dispell
-(21565, 4654, 6), -- Death Link
+(21565, 4155, 6), -- NPC Twister - Magic
+(21565, 4408, 1), -- HP Modifiers
+(21565, 4409, 1), -- MP Modifiers
+(21565, 4410, 12), -- P. Atk. Modifiers
+(21565, 4411, 12), -- M. Atk. Modifiers
+(21565, 4412, 10), -- P. Def. Modifiers
+(21565, 4413, 10), -- M. Def. Modifiers
+(21565, 4414, 2), -- Armor Type
+(21565, 4415, 3), -- Weapon Type
+(21565, 4416, 6), -- Races
+(21565, 4561, 6), -- NPC Fire Burn - Magic
+(21565, 4650, 1), -- NPC AE - Dispel Hold
+(21565, 4654, 6), -- NPC Death Link
 -- Skull Animator
-(21566, 4098, 6), -- Silence
-(21566, 4408, 1), -- HP Increase (1x)
-(21566, 4409, 1), -- MP Increase (1x)
-(21566, 4410, 12), -- Slightly Strong P. Atk.
-(21566, 4411, 12), -- Slightly Strong M. Atk.
-(21566, 4412, 10), -- Slightly Weak P. Def.
-(21566, 4413, 10), -- Slightly Weak M. Def.
-(21566, 4414, 2), -- Standard Type
-(21566, 4415, 3), -- One-handed Sword
-(21566, 4416, 6), -- Humanoids
-(21566, 4561, 6), -- Fire Burn
+(21566, 4098, 6), -- Magic Skill Block
+(21566, 4408, 1), -- HP Modifiers
+(21566, 4409, 1), -- MP Modifiers
+(21566, 4410, 12), -- P. Atk. Modifiers
+(21566, 4411, 12), -- M. Atk. Modifiers
+(21566, 4412, 10), -- P. Def. Modifiers
+(21566, 4413, 10), -- M. Def. Modifiers
+(21566, 4414, 2), -- Armor Type
+(21566, 4415, 3), -- Weapon Type
+(21566, 4416, 6), -- Races
+(21566, 4561, 6), -- NPC Fire Burn - Magic
 (21566, 4597, 6), -- Bleed
-(21566, 4652, 1), -- Silence Dispell
-(21566, 4654, 6), -- Death Link
+(21566, 4652, 1), -- NPC AE - Dispel Silence
+(21566, 4654, 6), -- NPC Death Link
 -- Bone Slayer
-(21567, 4138, 6), -- Corpse Burst
-(21567, 4408, 1), -- HP Increase (1x)
-(21567, 4409, 1), -- MP Increase (1x)
-(21567, 4410, 10), -- Slightly Weak P. Atk.
-(21567, 4411, 10), -- Slightly Weak M. Atk.
-(21567, 4412, 12), -- Slightly Strong P. Def.
-(21567, 4413, 12), -- Slightly Strong M. Def.
-(21567, 4414, 2), -- Standard Type
-(21567, 4415, 3), -- One-handed Sword
-(21567, 4416, 6), -- Humanoids
-(21567, 4573, 6), -- Sonic Blaster
-(21567, 4654, 6), -- Death Link
+(21567, 4138, 6), -- NPC AE - Corpse Burst
+(21567, 4408, 1), -- HP Modifiers
+(21567, 4409, 1), -- MP Modifiers
+(21567, 4410, 10), -- P. Atk. Modifiers
+(21567, 4411, 10), -- M. Atk. Modifiers
+(21567, 4412, 12), -- P. Def. Modifiers
+(21567, 4413, 12), -- M. Def. Modifiers
+(21567, 4414, 2), -- Armor Type
+(21567, 4415, 3), -- Weapon Type
+(21567, 4416, 6), -- Races
+(21567, 4573, 6), -- NPC Sonic Blaster
+(21567, 4654, 6), -- NPC Death Link
 -- Devil Bat
-(21568, 4029, 3), -- Shield
-(21568, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(21568, 4408, 1), -- HP Increase (1x)
-(21568, 4409, 1), -- MP Increase (1x)
-(21568, 4410, 13), -- Slightly Strong P. Atk.
-(21568, 4411, 13), -- Slightly Strong M. Atk.
-(21568, 4412, 9), -- Slightly Weak P. Def.
-(21568, 4413, 9), -- Slightly Weak M. Def.
-(21568, 4414, 3), -- Light Armor Type
-(21568, 4415, 3), -- One-handed Sword
-(21568, 4416, 4), -- Animals
+(21568, 4029, 3), -- NPC Shield
+(21568, 4276, 1), -- Archery Attack Weak Point
+(21568, 4408, 1), -- HP Modifiers
+(21568, 4409, 1), -- MP Modifiers
+(21568, 4410, 13), -- P. Atk. Modifiers
+(21568, 4411, 13), -- M. Atk. Modifiers
+(21568, 4412, 9), -- P. Def. Modifiers
+(21568, 4413, 9), -- M. Def. Modifiers
+(21568, 4414, 3), -- Armor Type
+(21568, 4415, 3), -- Weapon Type
+(21568, 4416, 4), -- Races
 (21568, 4584, 6), -- Reducing P. Def Stun
 (21568, 4596, 6), -- Bleed
-(21568, 4664, 6), -- Drain Health
+(21568, 4664, 6), -- NPC 100% HP Drain
 -- Devil Bat
-(21569, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(21569, 4408, 1), -- HP Increase (1x)
-(21569, 4409, 1), -- MP Increase (1x)
-(21569, 4410, 11), -- Average P. Atk.
-(21569, 4411, 11), -- Average M. Atk.
-(21569, 4412, 11), -- Average P. Def.
-(21569, 4413, 11), -- Average M. Def.
-(21569, 4414, 3), -- Light Armor Type
-(21569, 4415, 3), -- One-handed Sword
-(21569, 4416, 4), -- Animals
-(21569, 4664, 6), -- Drain Health
+(21569, 4276, 1), -- Archery Attack Weak Point
+(21569, 4408, 1), -- HP Modifiers
+(21569, 4409, 1), -- MP Modifiers
+(21569, 4410, 11), -- P. Atk. Modifiers
+(21569, 4411, 11), -- M. Atk. Modifiers
+(21569, 4412, 11), -- P. Def. Modifiers
+(21569, 4413, 11), -- M. Def. Modifiers
+(21569, 4414, 3), -- Armor Type
+(21569, 4415, 3), -- Weapon Type
+(21569, 4416, 4), -- Races
+(21569, 4664, 6), -- NPC 100% HP Drain
 -- Ghost of Betrayer
-(21570, 4408, 1), -- HP Increase (1x)
-(21570, 4409, 1), -- MP Increase (1x)
-(21570, 4410, 10), -- Slightly Weak P. Atk.
-(21570, 4411, 10), -- Slightly Weak M. Atk.
-(21570, 4412, 12), -- Slightly Strong P. Def.
-(21570, 4413, 12), -- Slightly Strong M. Def.
-(21570, 4414, 2), -- Standard Type
-(21570, 4415, 3), -- One-handed Sword
-(21570, 4416, 1), -- Undead
+(21570, 4408, 1), -- HP Modifiers
+(21570, 4409, 1), -- MP Modifiers
+(21570, 4410, 10), -- P. Atk. Modifiers
+(21570, 4411, 10), -- M. Atk. Modifiers
+(21570, 4412, 12), -- P. Def. Modifiers
+(21570, 4413, 12), -- M. Def. Modifiers
+(21570, 4414, 2), -- Armor Type
+(21570, 4415, 3), -- Weapon Type
+(21570, 4416, 1), -- Races
 (21570, 4592, 6), -- Decrease P. Def.
 (21570, 4649, 6), -- Poison
-(21570, 4671, 1), -- Teleport
+(21570, 4671, 1), -- AV - Teleport
 -- Ghost of Rebellion Soldier
-(21571, 4074, 2), -- Haste
-(21571, 4274, 1), -- Blunt Weapon Weak Point
-(21571, 4408, 1), -- HP Increase (1x)
-(21571, 4409, 1), -- MP Increase (1x)
-(21571, 4410, 11), -- Average P. Atk.
-(21571, 4411, 11), -- Average M. Atk.
-(21571, 4412, 15), -- Strong P. Def.
-(21571, 4413, 11), -- Average M. Def.
-(21571, 4414, 2), -- Standard Type
-(21571, 4415, 3), -- One-handed Sword
-(21571, 4416, 1), -- Undead
+(21571, 4074, 2), -- NPC Haste
+(21571, 4274, 1), -- Blunt Attack Weak Point
+(21571, 4408, 1), -- HP Modifiers
+(21571, 4409, 1), -- MP Modifiers
+(21571, 4410, 11), -- P. Atk. Modifiers
+(21571, 4411, 11), -- M. Atk. Modifiers
+(21571, 4412, 15), -- P. Def. Modifiers
+(21571, 4413, 11), -- M. Def. Modifiers
+(21571, 4414, 2), -- Armor Type
+(21571, 4415, 3), -- Weapon Type
+(21571, 4416, 1), -- Races
 (21571, 4581, 6), -- Hold
 -- Bone Sweeper
-(21572, 4076, 3), -- Slow
-(21572, 4408, 1), -- HP Increase (1x)
-(21572, 4409, 1), -- MP Increase (1x)
-(21572, 4410, 12), -- Slightly Strong P. Atk.
-(21572, 4411, 12), -- Slightly Strong M. Atk.
-(21572, 4412, 10), -- Slightly Weak P. Def.
-(21572, 4413, 10), -- Slightly Weak M. Def.
-(21572, 4414, 2), -- Standard Type
-(21572, 4415, 3), -- One-handed Sword
-(21572, 4416, 6), -- Humanoids
-(21572, 4561, 6), -- Fire Burn
+(21572, 4076, 3), -- Reduction in movement speed
+(21572, 4408, 1), -- HP Modifiers
+(21572, 4409, 1), -- MP Modifiers
+(21572, 4410, 12), -- P. Atk. Modifiers
+(21572, 4411, 12), -- M. Atk. Modifiers
+(21572, 4412, 10), -- P. Def. Modifiers
+(21572, 4413, 10), -- M. Def. Modifiers
+(21572, 4414, 2), -- Armor Type
+(21572, 4415, 3), -- Weapon Type
+(21572, 4416, 6), -- Races
+(21572, 4561, 6), -- NPC Fire Burn - Magic
 (21572, 4597, 6), -- Bleed
-(21572, 4651, 3), -- Slow Dispell
-(21572, 4654, 6), -- Death Link
-(21572, 4672, 1), -- Corpse Remove
+(21572, 4651, 3), -- NPC AE - Dispel Slow
+(21572, 4654, 6), -- NPC Death Link
+(21572, 4672, 1), -- NPC Corpse Remove
 -- Atrox
-(21573, 4028, 3), -- Might
-(21573, 4408, 1), -- HP Increase (1x)
-(21573, 4409, 1), -- MP Increase (1x)
-(21573, 4410, 13), -- Slightly Strong P. Atk.
-(21573, 4411, 13), -- Slightly Strong M. Atk.
-(21573, 4412, 9), -- Slightly Weak P. Def.
-(21573, 4413, 9), -- Slightly Weak M. Def.
-(21573, 4414, 2), -- Standard Type
-(21573, 4415, 4), -- One-handed Sword
-(21573, 4416, 12), -- Bugs
+(21573, 4028, 3), -- NPC Might
+(21573, 4408, 1), -- HP Modifiers
+(21573, 4409, 1), -- MP Modifiers
+(21573, 4410, 13), -- P. Atk. Modifiers
+(21573, 4411, 13), -- M. Atk. Modifiers
+(21573, 4412, 9), -- P. Def. Modifiers
+(21573, 4413, 9), -- M. Def. Modifiers
+(21573, 4414, 2), -- Armor Type
+(21573, 4415, 4), -- Weapon Type
+(21573, 4416, 12), -- Races
 (21573, 4582, 6), -- Poison
 (21573, 4596, 6), -- Bleed
-(21573, 4664, 6), -- Drain Health
+(21573, 4664, 6), -- NPC 100% HP Drain
 -- Bone Grinder
-(21574, 4138, 7), -- Corpse Burst
-(21574, 4408, 1), -- HP Increase (1x)
-(21574, 4409, 1), -- MP Increase (1x)
-(21574, 4410, 10), -- Slightly Weak P. Atk.
-(21574, 4411, 10), -- Slightly Weak M. Atk.
-(21574, 4412, 12), -- Slightly Strong P. Def.
-(21574, 4413, 12), -- Slightly Strong M. Def.
-(21574, 4414, 2), -- Standard Type
-(21574, 4415, 3), -- One-handed Sword
-(21574, 4416, 6), -- Humanoids
-(21574, 4573, 7), -- Sonic Blaster
-(21574, 4654, 7), -- Death Link
+(21574, 4138, 7), -- NPC AE - Corpse Burst
+(21574, 4408, 1), -- HP Modifiers
+(21574, 4409, 1), -- MP Modifiers
+(21574, 4410, 10), -- P. Atk. Modifiers
+(21574, 4411, 10), -- M. Atk. Modifiers
+(21574, 4412, 12), -- P. Def. Modifiers
+(21574, 4413, 12), -- M. Def. Modifiers
+(21574, 4414, 2), -- Armor Type
+(21574, 4415, 3), -- Weapon Type
+(21574, 4416, 6), -- Races
+(21574, 4573, 7), -- NPC Sonic Blaster
+(21574, 4654, 7), -- NPC Death Link
 -- Bone Grinder
-(21575, 4408, 1), -- HP Increase (1x)
-(21575, 4409, 1), -- MP Increase (1x)
-(21575, 4410, 11), -- Average P. Atk.
-(21575, 4411, 11), -- Average M. Atk.
-(21575, 4412, 11), -- Average P. Def.
-(21575, 4413, 11), -- Average M. Def.
-(21575, 4414, 2), -- Standard Type
-(21575, 4415, 3), -- One-handed Sword
-(21575, 4416, 6), -- Humanoids
-(21575, 4561, 7), -- Fire Burn
+(21575, 4408, 1), -- HP Modifiers
+(21575, 4409, 1), -- MP Modifiers
+(21575, 4410, 11), -- P. Atk. Modifiers
+(21575, 4411, 11), -- M. Atk. Modifiers
+(21575, 4412, 11), -- P. Def. Modifiers
+(21575, 4413, 11), -- M. Def. Modifiers
+(21575, 4414, 2), -- Armor Type
+(21575, 4415, 3), -- Weapon Type
+(21575, 4416, 6), -- Races
+(21575, 4561, 7), -- NPC Fire Burn - Magic
 (21575, 4658, 7), -- Hold
 -- Ghost of Guillotine 
-(21576, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(21576, 4408, 1), -- HP Increase (1x)
-(21576, 4409, 1), -- MP Increase (1x)
-(21576, 4410, 13), -- Slightly Strong P. Atk.
-(21576, 4411, 13), -- Slightly Strong M. Atk.
-(21576, 4412, 9), -- Slightly Weak P. Def.
-(21576, 4413, 9), -- Slightly Weak M. Def.
-(21576, 4414, 3), -- Light Armor Type
-(21576, 4415, 5), -- Blunt Weapons
-(21576, 4416, 2), -- Magic Creatures
-(21576, 4561, 7), -- Fire Burn
+(21576, 4276, 1), -- Archery Attack Weak Point
+(21576, 4408, 1), -- HP Modifiers
+(21576, 4409, 1), -- MP Modifiers
+(21576, 4410, 13), -- P. Atk. Modifiers
+(21576, 4411, 13), -- M. Atk. Modifiers
+(21576, 4412, 9), -- P. Def. Modifiers
+(21576, 4413, 9), -- M. Def. Modifiers
+(21576, 4414, 3), -- Armor Type
+(21576, 4415, 5), -- Weapon Type
+(21576, 4416, 2), -- Races
+(21576, 4561, 7), -- NPC Fire Burn - Magic
 (21576, 4596, 7), -- Bleed
-(21576, 4622, 7), -- Drain Health
-(21576, 4664, 7), -- Drain Health
+(21576, 4622, 7), -- NPC AE - 80% HP Drain - Magic
+(21576, 4664, 7), -- NPC 100% HP Drain
 -- Ghost of Guillotine 
-(21577, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(21577, 4408, 1), -- HP Increase (1x)
-(21577, 4409, 1), -- MP Increase (1x)
-(21577, 4410, 11), -- Average P. Atk.
-(21577, 4411, 11), -- Average M. Atk.
-(21577, 4412, 11), -- Average P. Def.
-(21577, 4413, 11), -- Average M. Def.
-(21577, 4414, 3), -- Light Armor Type
-(21577, 4415, 5), -- Blunt Weapons
-(21577, 4416, 2), -- Magic Creatures
-(21577, 4561, 7), -- Fire Burn
+(21577, 4276, 1), -- Archery Attack Weak Point
+(21577, 4408, 1), -- HP Modifiers
+(21577, 4409, 1), -- MP Modifiers
+(21577, 4410, 11), -- P. Atk. Modifiers
+(21577, 4411, 11), -- M. Atk. Modifiers
+(21577, 4412, 11), -- P. Def. Modifiers
+(21577, 4413, 11), -- M. Def. Modifiers
+(21577, 4414, 3), -- Armor Type
+(21577, 4415, 5), -- Weapon Type
+(21577, 4416, 2), -- Races
+(21577, 4561, 7), -- NPC Fire Burn - Magic
 (21577, 4593, 7), -- Decrease P. Def.
 (21577, 4596, 7), -- Bleed
 -- Behemoth Zombie
-(21578, 4073, 7), -- Stun
-(21578, 4408, 1), -- HP Increase (1x)
-(21578, 4409, 1), -- MP Increase (1x)
-(21578, 4410, 10), -- Slightly Weak P. Atk.
-(21578, 4411, 10), -- Slightly Weak M. Atk.
-(21578, 4412, 16), -- Very Strong P. Def.
-(21578, 4413, 12), -- Slightly Strong M. Def.
-(21578, 4414, 2), -- Standard Type
-(21578, 4415, 3), -- One-handed Sword
-(21578, 4416, 1), -- Undead
+(21578, 4073, 7), -- Shock
+(21578, 4408, 1), -- HP Modifiers
+(21578, 4409, 1), -- MP Modifiers
+(21578, 4410, 10), -- P. Atk. Modifiers
+(21578, 4411, 10), -- M. Atk. Modifiers
+(21578, 4412, 16), -- P. Def. Modifiers
+(21578, 4413, 12), -- M. Def. Modifiers
+(21578, 4414, 2), -- Armor Type
+(21578, 4415, 3), -- Weapon Type
+(21578, 4416, 1), -- Races
 (21578, 4649, 7), -- Poison
-(21578, 4671, 1), -- Teleport
-(21578, 4789, 2), -- High Level
+(21578, 4671, 1), -- AV - Teleport
+(21578, 4789, 2), -- NPC High Level
 -- Ghost of Rebellion Leader
-(21579, 4274, 1), -- Blunt Weapon Weak Point
-(21579, 4408, 1), -- HP Increase (1x)
-(21579, 4409, 1), -- MP Increase (1x)
-(21579, 4410, 11), -- Average P. Atk.
-(21579, 4411, 11), -- Average M. Atk.
-(21579, 4412, 15), -- Strong P. Def.
-(21579, 4413, 11), -- Average M. Def.
-(21579, 4414, 2), -- Standard Type
-(21579, 4415, 7), -- Daggers
-(21579, 4416, 1), -- Undead
+(21579, 4274, 1), -- Blunt Attack Weak Point
+(21579, 4408, 1), -- HP Modifiers
+(21579, 4409, 1), -- MP Modifiers
+(21579, 4410, 11), -- P. Atk. Modifiers
+(21579, 4411, 11), -- M. Atk. Modifiers
+(21579, 4412, 15), -- P. Def. Modifiers
+(21579, 4413, 11), -- M. Def. Modifiers
+(21579, 4414, 2), -- Armor Type
+(21579, 4415, 7), -- Weapon Type
+(21579, 4416, 1), -- Races
 (21579, 4596, 7), -- Bleed
-(21579, 4635, 3), -- Acumen Berserker Wild Magic
-(21579, 4789, 2), -- High Level
+(21579, 4635, 3), -- NPC Buff - Acumen Berserk WildMagic
+(21579, 4789, 2), -- NPC High Level
 -- Bone Caster
 (21580, 4047, 7), -- Hold
-(21580, 4155, 7), -- Twister
-(21580, 4408, 1), -- HP Increase (1x)
-(21580, 4409, 1), -- MP Increase (1x)
-(21580, 4410, 12), -- Slightly Strong P. Atk.
-(21580, 4411, 12), -- Slightly Strong M. Atk.
-(21580, 4412, 10), -- Slightly Weak P. Def.
-(21580, 4413, 10), -- Slightly Weak M. Def.
-(21580, 4414, 2), -- Standard Type
-(21580, 4415, 3), -- One-handed Sword
-(21580, 4416, 6), -- Humanoids
-(21580, 4561, 7), -- Fire Burn
-(21580, 4650, 1), -- Hold Dispell
-(21580, 4654, 7), -- Death Link
-(21580, 4789, 2), -- High Level
+(21580, 4155, 7), -- NPC Twister - Magic
+(21580, 4408, 1), -- HP Modifiers
+(21580, 4409, 1), -- MP Modifiers
+(21580, 4410, 12), -- P. Atk. Modifiers
+(21580, 4411, 12), -- M. Atk. Modifiers
+(21580, 4412, 10), -- P. Def. Modifiers
+(21580, 4413, 10), -- M. Def. Modifiers
+(21580, 4414, 2), -- Armor Type
+(21580, 4415, 3), -- Weapon Type
+(21580, 4416, 6), -- Races
+(21580, 4561, 7), -- NPC Fire Burn - Magic
+(21580, 4650, 1), -- NPC AE - Dispel Hold
+(21580, 4654, 7), -- NPC Death Link
+(21580, 4789, 2), -- NPC High Level
 -- Bone Puppeteer
-(21581, 4098, 7), -- Silence
-(21581, 4408, 1), -- HP Increase (1x)
-(21581, 4409, 1), -- MP Increase (1x)
-(21581, 4410, 12), -- Slightly Strong P. Atk.
-(21581, 4411, 12), -- Slightly Strong M. Atk.
-(21581, 4412, 10), -- Slightly Weak P. Def.
-(21581, 4413, 10), -- Slightly Weak M. Def.
-(21581, 4414, 2), -- Standard Type
-(21581, 4415, 3), -- One-handed Sword
-(21581, 4416, 6), -- Humanoids
-(21581, 4561, 7), -- Fire Burn
+(21581, 4098, 7), -- Magic Skill Block
+(21581, 4408, 1), -- HP Modifiers
+(21581, 4409, 1), -- MP Modifiers
+(21581, 4410, 12), -- P. Atk. Modifiers
+(21581, 4411, 12), -- M. Atk. Modifiers
+(21581, 4412, 10), -- P. Def. Modifiers
+(21581, 4413, 10), -- M. Def. Modifiers
+(21581, 4414, 2), -- Armor Type
+(21581, 4415, 3), -- Weapon Type
+(21581, 4416, 6), -- Races
+(21581, 4561, 7), -- NPC Fire Burn - Magic
 (21581, 4597, 7), -- Bleed
-(21581, 4652, 1), -- Silence Dispell
-(21581, 4654, 7), -- Death Link
-(21581, 4789, 2), -- High Level
+(21581, 4652, 1), -- NPC AE - Dispel Silence
+(21581, 4654, 7), -- NPC Death Link
+(21581, 4789, 2), -- NPC High Level
 -- Vampire Soldier
-(21582, 4028, 3), -- Might
-(21582, 4285, 3), -- Resist Sleep Attacks
-(21582, 4408, 1), -- HP Increase (1x)
-(21582, 4409, 1), -- MP Increase (1x)
-(21582, 4410, 13), -- Slightly Strong P. Atk.
-(21582, 4411, 13), -- Slightly Strong M. Atk.
-(21582, 4412, 9), -- Slightly Weak P. Def.
-(21582, 4413, 9), -- Slightly Weak M. Def.
-(21582, 4414, 2), -- Standard Type
-(21582, 4415, 3), -- One-handed Sword
-(21582, 4416, 9), -- Demons
+(21582, 4028, 3), -- NPC Might
+(21582, 4285, 3), -- Resist Sleep
+(21582, 4408, 1), -- HP Modifiers
+(21582, 4409, 1), -- MP Modifiers
+(21582, 4410, 13), -- P. Atk. Modifiers
+(21582, 4411, 13), -- M. Atk. Modifiers
+(21582, 4412, 9), -- P. Def. Modifiers
+(21582, 4413, 9), -- M. Def. Modifiers
+(21582, 4414, 2), -- Armor Type
+(21582, 4415, 3), -- Weapon Type
+(21582, 4416, 9), -- Races
 (21582, 4582, 7), -- Poison
 (21582, 4596, 7), -- Bleed
-(21582, 4663, 1), -- Aggression
-(21582, 4664, 7), -- Drain Health
-(21582, 4789, 2), -- High Level
+(21582, 4663, 1), -- NPC Hate
+(21582, 4664, 7), -- NPC 100% HP Drain
+(21582, 4789, 2), -- NPC High Level
 -- Bone Scavenger
 (21583, 4047, 7), -- Hold
-(21583, 4408, 1), -- HP Increase (1x)
-(21583, 4409, 1), -- MP Increase (1x)
-(21583, 4410, 12), -- Slightly Strong P. Atk.
-(21583, 4411, 12), -- Slightly Strong M. Atk.
-(21583, 4412, 10), -- Slightly Weak P. Def.
-(21583, 4413, 10), -- Slightly Weak M. Def.
-(21583, 4414, 2), -- Standard Type
-(21583, 4415, 3), -- One-handed Sword
-(21583, 4416, 6), -- Humanoids
-(21583, 4561, 7), -- Fire Burn
+(21583, 4408, 1), -- HP Modifiers
+(21583, 4409, 1), -- MP Modifiers
+(21583, 4410, 12), -- P. Atk. Modifiers
+(21583, 4411, 12), -- M. Atk. Modifiers
+(21583, 4412, 10), -- P. Def. Modifiers
+(21583, 4413, 10), -- M. Def. Modifiers
+(21583, 4414, 2), -- Armor Type
+(21583, 4415, 3), -- Weapon Type
+(21583, 4416, 6), -- Races
+(21583, 4561, 7), -- NPC Fire Burn - Magic
 (21583, 4597, 7), -- Bleed
-(21583, 4650, 1), -- Hold Dispell
-(21583, 4654, 7), -- Death Link
-(21583, 4672, 1), -- Corpse Remove
-(21583, 4789, 2), -- High Level
+(21583, 4650, 1), -- NPC AE - Dispel Hold
+(21583, 4654, 7), -- NPC Death Link
+(21583, 4672, 1), -- NPC Corpse Remove
+(21583, 4789, 2), -- NPC High Level
 -- Bone Scavenger
-(21584, 4098, 7), -- Silence
-(21584, 4257, 7), -- Hydro Blast
-(21584, 4408, 1), -- HP Increase (1x)
-(21584, 4409, 1), -- MP Increase (1x)
-(21584, 4410, 10), -- Slightly Weak P. Atk.
-(21584, 4411, 10), -- Slightly Weak M. Atk.
-(21584, 4412, 12), -- Slightly Strong P. Def.
-(21584, 4413, 12), -- Slightly Strong M. Def.
-(21584, 4414, 2), -- Standard Type
-(21584, 4415, 3), -- One-handed Sword
-(21584, 4416, 6), -- Humanoids
-(21584, 4561, 7), -- Fire Burn
-(21584, 4652, 1), -- Silence Dispell
-(21584, 4654, 7), -- Death Link
-(21584, 4789, 2), -- High Level
+(21584, 4098, 7), -- Magic Skill Block
+(21584, 4257, 7), -- NPC Hydroblast - Magic
+(21584, 4408, 1), -- HP Modifiers
+(21584, 4409, 1), -- MP Modifiers
+(21584, 4410, 10), -- P. Atk. Modifiers
+(21584, 4411, 10), -- M. Atk. Modifiers
+(21584, 4412, 12), -- P. Def. Modifiers
+(21584, 4413, 12), -- M. Def. Modifiers
+(21584, 4414, 2), -- Armor Type
+(21584, 4415, 3), -- Weapon Type
+(21584, 4416, 6), -- Races
+(21584, 4561, 7), -- NPC Fire Burn - Magic
+(21584, 4652, 1), -- NPC AE - Dispel Silence
+(21584, 4654, 7), -- NPC Death Link
+(21584, 4789, 2), -- NPC High Level
 -- Vampire Magician
 (21585, 4047, 6), -- Hold
-(21585, 4285, 3), -- Resist Sleep Attacks
-(21585, 4408, 1), -- HP Increase (1x)
-(21585, 4409, 1), -- MP Increase (1x)
-(21585, 4410, 13), -- Slightly Strong P. Atk.
-(21585, 4411, 13), -- Slightly Strong M. Atk.
-(21585, 4412, 9), -- Slightly Weak P. Def.
-(21585, 4413, 9), -- Slightly Weak M. Def.
-(21585, 4414, 2), -- Standard Type
-(21585, 4415, 3), -- One-handed Sword
-(21585, 4416, 9), -- Demons
-(21585, 4561, 7), -- Fire Burn
+(21585, 4285, 3), -- Resist Sleep
+(21585, 4408, 1), -- HP Modifiers
+(21585, 4409, 1), -- MP Modifiers
+(21585, 4410, 13), -- P. Atk. Modifiers
+(21585, 4411, 13), -- M. Atk. Modifiers
+(21585, 4412, 9), -- P. Def. Modifiers
+(21585, 4413, 9), -- M. Def. Modifiers
+(21585, 4414, 2), -- Armor Type
+(21585, 4415, 3), -- Weapon Type
+(21585, 4416, 9), -- Races
+(21585, 4561, 7), -- NPC Fire Burn - Magic
 (21585, 4590, 7), -- Decrease Speed
 (21585, 4596, 7), -- Bleed
-(21585, 4650, 1), -- Hold Dispell
-(21585, 4664, 7), -- Drain Health
-(21585, 4789, 2), -- High Level
+(21585, 4650, 1), -- NPC AE - Dispel Hold
+(21585, 4664, 7), -- NPC 100% HP Drain
+(21585, 4789, 2), -- NPC High Level
 -- Vampire Adept
-(21586, 4033, 7), -- Aura Burn
-(21586, 4152, 7), -- Drain Health
-(21586, 4285, 3), -- Resist Sleep Attacks
-(21586, 4408, 1), -- HP Increase (1x)
-(21586, 4409, 1), -- MP Increase (1x)
-(21586, 4410, 13), -- Slightly Strong P. Atk.
-(21586, 4411, 13), -- Slightly Strong M. Atk.
-(21586, 4412, 9), -- Slightly Weak P. Def.
-(21586, 4413, 9), -- Slightly Weak M. Def.
-(21586, 4414, 2), -- Standard Type
-(21586, 4415, 3), -- One-handed Sword
-(21586, 4416, 9), -- Demons
-(21586, 4561, 7), -- Fire Burn
+(21586, 4033, 7), -- NPC Burn
+(21586, 4152, 7), -- NPC HP Drain - Magic
+(21586, 4285, 3), -- Resist Sleep
+(21586, 4408, 1), -- HP Modifiers
+(21586, 4409, 1), -- MP Modifiers
+(21586, 4410, 13), -- P. Atk. Modifiers
+(21586, 4411, 13), -- M. Atk. Modifiers
+(21586, 4412, 9), -- P. Def. Modifiers
+(21586, 4413, 9), -- M. Def. Modifiers
+(21586, 4414, 2), -- Armor Type
+(21586, 4415, 3), -- Weapon Type
+(21586, 4416, 9), -- Races
+(21586, 4561, 7), -- NPC Fire Burn - Magic
 (21586, 4596, 7), -- Bleed
-(21586, 4664, 7), -- Drain Health
-(21586, 4789, 2), -- High Level
+(21586, 4664, 7), -- NPC 100% HP Drain
+(21586, 4789, 2), -- NPC High Level
 -- Vampire Warrior
-(21587, 4099, 2), -- Berserker Spirit
-(21587, 4285, 3), -- Resist Sleep Attacks
-(21587, 4408, 1), -- HP Increase (1x)
-(21587, 4409, 1), -- MP Increase (1x)
-(21587, 4410, 13), -- Slightly Strong P. Atk.
-(21587, 4411, 13), -- Slightly Strong M. Atk.
-(21587, 4412, 9), -- Slightly Weak P. Def.
-(21587, 4413, 9), -- Slightly Weak M. Def.
-(21587, 4414, 2), -- Standard Type
-(21587, 4415, 3), -- One-handed Sword
-(21587, 4416, 9), -- Demons
+(21587, 4099, 2), -- NPC Berserk
+(21587, 4285, 3), -- Resist Sleep
+(21587, 4408, 1), -- HP Modifiers
+(21587, 4409, 1), -- MP Modifiers
+(21587, 4410, 13), -- P. Atk. Modifiers
+(21587, 4411, 13), -- M. Atk. Modifiers
+(21587, 4412, 9), -- P. Def. Modifiers
+(21587, 4413, 9), -- M. Def. Modifiers
+(21587, 4414, 2), -- Armor Type
+(21587, 4415, 3), -- Weapon Type
+(21587, 4416, 9), -- Races
 (21587, 4582, 7), -- Poison
 (21587, 4596, 7), -- Bleed
-(21587, 4663, 1), -- Aggression
-(21587, 4664, 7), -- Drain Health
-(21587, 4789, 2), -- High Level
+(21587, 4663, 1), -- NPC Hate
+(21587, 4664, 7), -- NPC 100% HP Drain
+(21587, 4789, 2), -- NPC High Level
 -- Vampire Wizard
-(21588, 4152, 7), -- Drain Health
-(21588, 4285, 3), -- Resist Sleep Attacks
-(21588, 4408, 1), -- HP Increase (1x)
-(21588, 4409, 1), -- MP Increase (1x)
-(21588, 4410, 14), -- Strong P. Atk.
-(21588, 4411, 14), -- Strong M. Atk.
-(21588, 4412, 8), -- Weak P. Def.
-(21588, 4413, 8), -- Weak M. Def.
-(21588, 4414, 2), -- Standard Type
-(21588, 4415, 3), -- One-handed Sword
-(21588, 4416, 9), -- Demons
-(21588, 4561, 7), -- Fire Burn
+(21588, 4152, 7), -- NPC HP Drain - Magic
+(21588, 4285, 3), -- Resist Sleep
+(21588, 4408, 1), -- HP Modifiers
+(21588, 4409, 1), -- MP Modifiers
+(21588, 4410, 14), -- P. Atk. Modifiers
+(21588, 4411, 14), -- M. Atk. Modifiers
+(21588, 4412, 8), -- P. Def. Modifiers
+(21588, 4413, 8), -- M. Def. Modifiers
+(21588, 4414, 2), -- Armor Type
+(21588, 4415, 3), -- Weapon Type
+(21588, 4416, 9), -- Races
+(21588, 4561, 7), -- NPC Fire Burn - Magic
 (21588, 4596, 7), -- Bleed
-(21588, 4664, 7), -- Drain Health
-(21588, 4671, 1), -- Teleport
-(21588, 4789, 3), -- High Level
+(21588, 4664, 7), -- NPC 100% HP Drain
+(21588, 4671, 1), -- AV - Teleport
+(21588, 4789, 3), -- NPC High Level
 -- Vampire Wizard
-(21589, 4285, 3), -- Resist Sleep Attacks
-(21589, 4408, 1), -- HP Increase (1x)
-(21589, 4409, 1), -- MP Increase (1x)
-(21589, 4410, 8), -- Weak P. Atk.
-(21589, 4411, 8), -- Weak M. Atk.
-(21589, 4412, 14), -- Strong P. Def.
-(21589, 4413, 14), -- Strong M. Def.
-(21589, 4414, 2), -- Standard Type
-(21589, 4415, 3), -- One-handed Sword
-(21589, 4416, 9), -- Demons
-(21589, 4561, 7), -- Fire Burn
+(21589, 4285, 3), -- Resist Sleep
+(21589, 4408, 1), -- HP Modifiers
+(21589, 4409, 1), -- MP Modifiers
+(21589, 4410, 8), -- P. Atk. Modifiers
+(21589, 4411, 8), -- M. Atk. Modifiers
+(21589, 4412, 14), -- P. Def. Modifiers
+(21589, 4413, 14), -- M. Def. Modifiers
+(21589, 4414, 2), -- Armor Type
+(21589, 4415, 3), -- Weapon Type
+(21589, 4416, 9), -- Races
+(21589, 4561, 7), -- NPC Fire Burn - Magic
 (21589, 4596, 7), -- Bleed
-(21589, 4622, 7), -- Drain Health
-(21589, 4664, 7), -- Drain Health
-(21589, 4671, 1), -- Teleport
-(21589, 4789, 3), -- High Level
+(21589, 4622, 7), -- NPC AE - 80% HP Drain - Magic
+(21589, 4664, 7), -- NPC 100% HP Drain
+(21589, 4671, 1), -- AV - Teleport
+(21589, 4789, 3), -- NPC High Level
 -- Vampire Magister
-(21590, 4157, 7), -- Blaze
-(21590, 4285, 3), -- Resist Sleep Attacks
-(21590, 4408, 1), -- HP Increase (1x)
-(21590, 4409, 1), -- MP Increase (1x)
-(21590, 4410, 13), -- Slightly Strong P. Atk.
-(21590, 4411, 13), -- Slightly Strong M. Atk.
-(21590, 4412, 9), -- Slightly Weak P. Def.
-(21590, 4413, 9), -- Slightly Weak M. Def.
-(21590, 4414, 2), -- Standard Type
-(21590, 4415, 3), -- One-handed Sword
-(21590, 4416, 9), -- Demons
-(21590, 4561, 7), -- Fire Burn
+(21590, 4157, 7), -- NPC Blaze - Magic
+(21590, 4285, 3), -- Resist Sleep
+(21590, 4408, 1), -- HP Modifiers
+(21590, 4409, 1), -- MP Modifiers
+(21590, 4410, 13), -- P. Atk. Modifiers
+(21590, 4411, 13), -- M. Atk. Modifiers
+(21590, 4412, 9), -- P. Def. Modifiers
+(21590, 4413, 9), -- M. Def. Modifiers
+(21590, 4414, 2), -- Armor Type
+(21590, 4415, 3), -- Weapon Type
+(21590, 4416, 9), -- Races
+(21590, 4561, 7), -- NPC Fire Burn - Magic
 (21590, 4596, 7), -- Bleed
-(21590, 4664, 7), -- Drain Health
-(21590, 4789, 3), -- High Level
+(21590, 4664, 7), -- NPC 100% HP Drain
+(21590, 4789, 3), -- NPC High Level
 -- Vampire Magister
-(21591, 4033, 7), -- Aura Burn
-(21591, 4157, 7), -- Blaze
-(21591, 4285, 3), -- Resist Sleep Attacks
-(21591, 4408, 1), -- HP Increase (1x)
-(21591, 4409, 1), -- MP Increase (1x)
-(21591, 4410, 13), -- Slightly Strong P. Atk.
-(21591, 4411, 13), -- Slightly Strong M. Atk.
-(21591, 4412, 9), -- Slightly Weak P. Def.
-(21591, 4413, 9), -- Slightly Weak M. Def.
-(21591, 4414, 2), -- Standard Type
-(21591, 4415, 3), -- One-handed Sword
-(21591, 4416, 9), -- Demons
-(21591, 4561, 7), -- Fire Burn
+(21591, 4033, 7), -- NPC Burn
+(21591, 4157, 7), -- NPC Blaze - Magic
+(21591, 4285, 3), -- Resist Sleep
+(21591, 4408, 1), -- HP Modifiers
+(21591, 4409, 1), -- MP Modifiers
+(21591, 4410, 13), -- P. Atk. Modifiers
+(21591, 4411, 13), -- M. Atk. Modifiers
+(21591, 4412, 9), -- P. Def. Modifiers
+(21591, 4413, 9), -- M. Def. Modifiers
+(21591, 4414, 2), -- Armor Type
+(21591, 4415, 3), -- Weapon Type
+(21591, 4416, 9), -- Races
+(21591, 4561, 7), -- NPC Fire Burn - Magic
 (21591, 4596, 7), -- Bleed
-(21591, 4664, 7), -- Drain Health
-(21591, 4789, 3), -- High Level
+(21591, 4664, 7), -- NPC 100% HP Drain
+(21591, 4789, 3), -- NPC High Level
 -- Vampire Magister
-(21592, 4257, 7), -- Hydro Blast
-(21592, 4285, 3), -- Resist Sleep Attacks
-(21592, 4408, 1), -- HP Increase (1x)
-(21592, 4409, 1), -- MP Increase (1x)
-(21592, 4410, 10), -- Slightly Weak P. Atk.
-(21592, 4411, 10), -- Slightly Weak M. Atk.
-(21592, 4412, 12), -- Slightly Strong P. Def.
-(21592, 4413, 12), -- Slightly Strong M. Def.
-(21592, 4414, 2), -- Standard Type
-(21592, 4415, 3), -- One-handed Sword
-(21592, 4416, 9), -- Demons
-(21592, 4561, 7), -- Fire Burn
-(21592, 4789, 3), -- High Level
+(21592, 4257, 7), -- NPC Hydroblast - Magic
+(21592, 4285, 3), -- Resist Sleep
+(21592, 4408, 1), -- HP Modifiers
+(21592, 4409, 1), -- MP Modifiers
+(21592, 4410, 10), -- P. Atk. Modifiers
+(21592, 4411, 10), -- M. Atk. Modifiers
+(21592, 4412, 12), -- P. Def. Modifiers
+(21592, 4413, 12), -- M. Def. Modifiers
+(21592, 4414, 2), -- Armor Type
+(21592, 4415, 3), -- Weapon Type
+(21592, 4416, 9), -- Races
+(21592, 4561, 7), -- NPC Fire Burn - Magic
+(21592, 4789, 3), -- NPC High Level
 -- Vampire Warlord
-(21593, 4285, 3), -- Resist Sleep Attacks
-(21593, 4408, 1), -- HP Increase (1x)
-(21593, 4409, 1), -- MP Increase (1x)
-(21593, 4410, 13), -- Slightly Strong P. Atk.
-(21593, 4411, 13), -- Slightly Strong M. Atk.
-(21593, 4412, 9), -- Slightly Weak P. Def.
-(21593, 4413, 9), -- Slightly Weak M. Def.
-(21593, 4414, 2), -- Standard Type
-(21593, 4415, 4), -- One-handed Sword
-(21593, 4416, 9), -- Demons
+(21593, 4285, 3), -- Resist Sleep
+(21593, 4408, 1), -- HP Modifiers
+(21593, 4409, 1), -- MP Modifiers
+(21593, 4410, 13), -- P. Atk. Modifiers
+(21593, 4411, 13), -- M. Atk. Modifiers
+(21593, 4412, 9), -- P. Def. Modifiers
+(21593, 4413, 9), -- M. Def. Modifiers
+(21593, 4414, 2), -- Armor Type
+(21593, 4415, 4), -- Weapon Type
+(21593, 4416, 9), -- Races
 (21593, 4582, 7), -- Poison
-(21593, 4585, 3), -- Berserker Spirit
+(21593, 4585, 3), -- NPC Clan Buff - Berserk Might
 (21593, 4596, 7), -- Bleed
-(21593, 4664, 7), -- Drain Health
-(21593, 4789, 3), -- High Level
+(21593, 4664, 7), -- NPC 100% HP Drain
+(21593, 4789, 3), -- NPC High Level
 -- Vampire Warlord
-(21594, 4028, 3), -- Might
-(21594, 4285, 3), -- Resist Sleep Attacks
-(21594, 4408, 1), -- HP Increase (1x)
-(21594, 4409, 1), -- MP Increase (1x)
-(21594, 4410, 13), -- Slightly Strong P. Atk.
-(21594, 4411, 13), -- Slightly Strong M. Atk.
-(21594, 4412, 9), -- Slightly Weak P. Def.
-(21594, 4413, 9), -- Slightly Weak M. Def.
-(21594, 4414, 2), -- Standard Type
-(21594, 4415, 4), -- One-handed Sword
-(21594, 4416, 9), -- Demons
+(21594, 4028, 3), -- NPC Might
+(21594, 4285, 3), -- Resist Sleep
+(21594, 4408, 1), -- HP Modifiers
+(21594, 4409, 1), -- MP Modifiers
+(21594, 4410, 13), -- P. Atk. Modifiers
+(21594, 4411, 13), -- M. Atk. Modifiers
+(21594, 4412, 9), -- P. Def. Modifiers
+(21594, 4413, 9), -- M. Def. Modifiers
+(21594, 4414, 2), -- Armor Type
+(21594, 4415, 4), -- Weapon Type
+(21594, 4416, 9), -- Races
 (21594, 4582, 7), -- Poison
 (21594, 4596, 7), -- Bleed
-(21594, 4663, 1), -- Aggression
-(21594, 4664, 7), -- Drain Health
-(21594, 4789, 3), -- High Level
+(21594, 4663, 1), -- NPC Hate
+(21594, 4664, 7), -- NPC 100% HP Drain
+(21594, 4789, 3), -- NPC High Level
 -- Vampire Warlord
-(21595, 4078, 7), -- Flame Strike
-(21595, 4285, 3), -- Resist Sleep Attacks
-(21595, 4408, 1), -- HP Increase (1x)
-(21595, 4409, 1), -- MP Increase (1x)
-(21595, 4410, 10), -- Slightly Weak P. Atk.
-(21595, 4411, 10), -- Slightly Weak M. Atk.
-(21595, 4412, 12), -- Slightly Strong P. Def.
-(21595, 4413, 12), -- Slightly Strong M. Def.
-(21595, 4414, 2), -- Standard Type
-(21595, 4415, 4), -- One-handed Sword
-(21595, 4416, 9), -- Demons
-(21595, 4663, 1), -- Aggression
-(21595, 4664, 7), -- Drain Health
-(21595, 4789, 3), -- High Level
+(21595, 4078, 7), -- NPC Flamestrike
+(21595, 4285, 3), -- Resist Sleep
+(21595, 4408, 1), -- HP Modifiers
+(21595, 4409, 1), -- MP Modifiers
+(21595, 4410, 10), -- P. Atk. Modifiers
+(21595, 4411, 10), -- M. Atk. Modifiers
+(21595, 4412, 12), -- P. Def. Modifiers
+(21595, 4413, 12), -- M. Def. Modifiers
+(21595, 4414, 2), -- Armor Type
+(21595, 4415, 4), -- Weapon Type
+(21595, 4416, 9), -- Races
+(21595, 4663, 1), -- NPC Hate
+(21595, 4664, 7), -- NPC 100% HP Drain
+(21595, 4789, 3), -- NPC High Level
 -- Requiem Lord
-(21596, 4138, 6), -- Corpse Burst
-(21596, 4408, 1), -- HP Increase (1x)
-(21596, 4409, 1), -- MP Increase (1x)
-(21596, 4410, 10), -- Slightly Weak P. Atk.
-(21596, 4411, 10), -- Slightly Weak M. Atk.
-(21596, 4412, 12), -- Slightly Strong P. Def.
-(21596, 4413, 12), -- Slightly Strong M. Def.
-(21596, 4414, 2), -- Standard Type
-(21596, 4415, 3), -- One-handed Sword
-(21596, 4416, 6), -- Humanoids
-(21596, 4561, 6), -- Fire Burn
+(21596, 4138, 6), -- NPC AE - Corpse Burst
+(21596, 4408, 1), -- HP Modifiers
+(21596, 4409, 1), -- MP Modifiers
+(21596, 4410, 10), -- P. Atk. Modifiers
+(21596, 4411, 10), -- M. Atk. Modifiers
+(21596, 4412, 12), -- P. Def. Modifiers
+(21596, 4413, 12), -- M. Def. Modifiers
+(21596, 4414, 2), -- Armor Type
+(21596, 4415, 3), -- Weapon Type
+(21596, 4416, 6), -- Races
+(21596, 4561, 6), -- NPC Fire Burn - Magic
 (21596, 4593, 6), -- Decrease P. Def.
-(21596, 4654, 6), -- Death Link
-(21596, 4672, 1), -- Corpse Remove
+(21596, 4654, 6), -- NPC Death Link
+(21596, 4672, 1), -- NPC Corpse Remove
 -- Requiem Behemoth
-(21597, 4408, 1), -- HP Increase (1x)
-(21597, 4409, 1), -- MP Increase (1x)
-(21597, 4410, 12), -- Slightly Strong P. Atk.
-(21597, 4411, 12), -- Slightly Strong M. Atk.
-(21597, 4412, 14), -- Strong P. Def.
-(21597, 4413, 10), -- Slightly Weak M. Def.
-(21597, 4414, 2), -- Standard Type
-(21597, 4415, 3), -- One-handed Sword
-(21597, 4416, 1), -- Undead
+(21597, 4408, 1), -- HP Modifiers
+(21597, 4409, 1), -- MP Modifiers
+(21597, 4410, 12), -- P. Atk. Modifiers
+(21597, 4411, 12), -- M. Atk. Modifiers
+(21597, 4412, 14), -- P. Def. Modifiers
+(21597, 4413, 10), -- M. Def. Modifiers
+(21597, 4414, 2), -- Armor Type
+(21597, 4415, 3), -- Weapon Type
+(21597, 4416, 1), -- Races
 (21597, 4592, 6), -- Decrease P. Def.
 (21597, 4649, 6), -- Poison
-(21597, 4671, 1), -- Teleport
+(21597, 4671, 1), -- AV - Teleport
 -- Requiem Behemoth
-(21598, 4032, 6), -- Power Strike
-(21598, 4408, 1), -- HP Increase (1x)
-(21598, 4409, 1), -- MP Increase (1x)
-(21598, 4410, 12), -- Slightly Strong P. Atk.
-(21598, 4411, 12), -- Slightly Strong M. Atk.
-(21598, 4412, 14), -- Strong P. Def.
-(21598, 4413, 10), -- Slightly Weak M. Def.
-(21598, 4414, 2), -- Standard Type
-(21598, 4415, 3), -- One-handed Sword
-(21598, 4416, 1), -- Undead
+(21598, 4032, 6), -- NPC Strike
+(21598, 4408, 1), -- HP Modifiers
+(21598, 4409, 1), -- MP Modifiers
+(21598, 4410, 12), -- P. Atk. Modifiers
+(21598, 4411, 12), -- M. Atk. Modifiers
+(21598, 4412, 14), -- P. Def. Modifiers
+(21598, 4413, 10), -- M. Def. Modifiers
+(21598, 4414, 2), -- Armor Type
+(21598, 4415, 3), -- Weapon Type
+(21598, 4416, 1), -- Races
 (21598, 4649, 6), -- Poison
-(21598, 4671, 1), -- Teleport
+(21598, 4671, 1), -- AV - Teleport
 -- Requiem Priest
-(21599, 4138, 7), -- Corpse Burst
-(21599, 4257, 7), -- Hydro Blast
-(21599, 4408, 1), -- HP Increase (1x)
-(21599, 4409, 1), -- MP Increase (1x)
-(21599, 4410, 10), -- Slightly Weak P. Atk.
-(21599, 4411, 10), -- Slightly Weak M. Atk.
-(21599, 4412, 12), -- Slightly Strong P. Def.
-(21599, 4413, 12), -- Slightly Strong M. Def.
-(21599, 4414, 2), -- Standard Type
-(21599, 4415, 3), -- One-handed Sword
-(21599, 4416, 6), -- Humanoids
-(21599, 4561, 7), -- Fire Burn
-(21599, 4654, 7), -- Death Link
-(21599, 4672, 1), -- Corpse Remove
-(21599, 4789, 2), -- High Level
+(21599, 4138, 7), -- NPC AE - Corpse Burst
+(21599, 4257, 7), -- NPC Hydroblast - Magic
+(21599, 4408, 1), -- HP Modifiers
+(21599, 4409, 1), -- MP Modifiers
+(21599, 4410, 10), -- P. Atk. Modifiers
+(21599, 4411, 10), -- M. Atk. Modifiers
+(21599, 4412, 12), -- P. Def. Modifiers
+(21599, 4413, 12), -- M. Def. Modifiers
+(21599, 4414, 2), -- Armor Type
+(21599, 4415, 3), -- Weapon Type
+(21599, 4416, 6), -- Races
+(21599, 4561, 7), -- NPC Fire Burn - Magic
+(21599, 4654, 7), -- NPC Death Link
+(21599, 4672, 1), -- NPC Corpse Remove
+(21599, 4789, 2), -- NPC High Level
 -- Requiem Behemoth
-(21600, 4408, 1), -- HP Increase (1x)
-(21600, 4409, 1), -- MP Increase (1x)
-(21600, 4410, 12), -- Slightly Strong P. Atk.
-(21600, 4411, 12), -- Slightly Strong M. Atk.
-(21600, 4412, 14), -- Strong P. Def.
-(21600, 4413, 10), -- Slightly Weak M. Def.
-(21600, 4414, 2), -- Standard Type
-(21600, 4415, 3), -- One-handed Sword
-(21600, 4416, 1), -- Undead
+(21600, 4408, 1), -- HP Modifiers
+(21600, 4409, 1), -- MP Modifiers
+(21600, 4410, 12), -- P. Atk. Modifiers
+(21600, 4411, 12), -- M. Atk. Modifiers
+(21600, 4412, 14), -- P. Def. Modifiers
+(21600, 4413, 10), -- M. Def. Modifiers
+(21600, 4414, 2), -- Armor Type
+(21600, 4415, 3), -- Weapon Type
+(21600, 4416, 1), -- Races
 (21600, 4592, 7), -- Decrease P. Def.
 (21600, 4649, 7), -- Poison
-(21600, 4671, 1), -- Teleport
+(21600, 4671, 1), -- AV - Teleport
 -- Requiem Behemoth
-(21601, 4408, 1), -- HP Increase (1x)
-(21601, 4409, 1), -- MP Increase (1x)
-(21601, 4410, 12), -- Slightly Strong P. Atk.
-(21601, 4411, 12), -- Slightly Strong M. Atk.
-(21601, 4412, 14), -- Strong P. Def.
-(21601, 4413, 10), -- Slightly Weak M. Def.
-(21601, 4414, 2), -- Standard Type
-(21601, 4415, 3), -- One-handed Sword
-(21601, 4416, 1), -- Undead
+(21601, 4408, 1), -- HP Modifiers
+(21601, 4409, 1), -- MP Modifiers
+(21601, 4410, 12), -- P. Atk. Modifiers
+(21601, 4411, 12), -- M. Atk. Modifiers
+(21601, 4412, 14), -- P. Def. Modifiers
+(21601, 4413, 10), -- M. Def. Modifiers
+(21601, 4414, 2), -- Armor Type
+(21601, 4415, 3), -- Weapon Type
+(21601, 4416, 1), -- Races
 (21601, 4579, 7), -- Bleed
 (21601, 4649, 7), -- Poison
-(21601, 4671, 1), -- Teleport
+(21601, 4671, 1), -- AV - Teleport
 -- Zaken's Pikeman
-(21602, 4244, 4), -- Wild Sweep
-(21602, 4408, 1), -- HP Increase (1x)
-(21602, 4409, 1), -- MP Increase (1x)
-(21602, 4410, 11), -- Average P. Atk.
-(21602, 4411, 11), -- Average M. Atk.
-(21602, 4412, 11), -- Average P. Def.
-(21602, 4413, 11), -- Average M. Def.
-(21602, 4414, 2), -- Standard Type
-(21602, 4415, 3), -- One-handed Sword
-(21602, 4416, 1), -- Undead
+(21602, 4244, 4), -- NPC Wild Sweep
+(21602, 4408, 1), -- HP Modifiers
+(21602, 4409, 1), -- MP Modifiers
+(21602, 4410, 11), -- P. Atk. Modifiers
+(21602, 4411, 11), -- M. Atk. Modifiers
+(21602, 4412, 11), -- P. Def. Modifiers
+(21602, 4413, 11), -- M. Def. Modifiers
+(21602, 4414, 2), -- Armor Type
+(21602, 4415, 3), -- Weapon Type
+(21602, 4416, 1), -- Races
 -- Zaken's Pikeman
-(21603, 4244, 4), -- Wild Sweep
-(21603, 4408, 1), -- HP Increase (1x)
-(21603, 4409, 1), -- MP Increase (1x)
-(21603, 4410, 14), -- Strong P. Atk.
-(21603, 4411, 14), -- Strong M. Atk.
-(21603, 4412, 8), -- Weak P. Def.
-(21603, 4413, 8), -- Weak M. Def.
-(21603, 4414, 2), -- Standard Type
-(21603, 4415, 3), -- One-handed Sword
-(21603, 4416, 1), -- Undead
+(21603, 4244, 4), -- NPC Wild Sweep
+(21603, 4408, 1), -- HP Modifiers
+(21603, 4409, 1), -- MP Modifiers
+(21603, 4410, 14), -- P. Atk. Modifiers
+(21603, 4411, 14), -- M. Atk. Modifiers
+(21603, 4412, 8), -- P. Def. Modifiers
+(21603, 4413, 8), -- M. Def. Modifiers
+(21603, 4414, 2), -- Armor Type
+(21603, 4415, 3), -- Weapon Type
+(21603, 4416, 1), -- Races
 -- Zaken's Elite Pikeman
-(21604, 4244, 4), -- Wild Sweep
-(21604, 4408, 12), -- HP Increase (4x)
-(21604, 4409, 1), -- MP Increase (1x)
-(21604, 4410, 14), -- Strong P. Atk.
-(21604, 4411, 14), -- Strong M. Atk.
-(21604, 4412, 8), -- Weak P. Def.
-(21604, 4413, 8), -- Weak M. Def.
-(21604, 4414, 2), -- Standard Type
-(21604, 4415, 3), -- One-handed Sword
-(21604, 4416, 1), -- Undead
+(21604, 4244, 4), -- NPC Wild Sweep
+(21604, 4408, 12), -- HP Modifiers
+(21604, 4409, 1), -- MP Modifiers
+(21604, 4410, 14), -- P. Atk. Modifiers
+(21604, 4411, 14), -- M. Atk. Modifiers
+(21604, 4412, 8), -- P. Def. Modifiers
+(21604, 4413, 8), -- M. Def. Modifiers
+(21604, 4414, 2), -- Armor Type
+(21604, 4415, 3), -- Weapon Type
+(21604, 4416, 1), -- Races
 -- Zaken's Archer
-(21605, 4040, 4), -- Power Shot
-(21605, 4408, 1), -- HP Increase (1x)
-(21605, 4409, 1), -- MP Increase (1x)
-(21605, 4410, 11), -- Average P. Atk.
-(21605, 4411, 11), -- Average M. Atk.
-(21605, 4412, 11), -- Average P. Def.
-(21605, 4413, 11), -- Average M. Def.
-(21605, 4414, 2), -- Standard Type
-(21605, 4415, 9), -- Bows
-(21605, 4416, 1), -- Undead
+(21605, 4040, 4), -- NPC Bow Attack
+(21605, 4408, 1), -- HP Modifiers
+(21605, 4409, 1), -- MP Modifiers
+(21605, 4410, 11), -- P. Atk. Modifiers
+(21605, 4411, 11), -- M. Atk. Modifiers
+(21605, 4412, 11), -- P. Def. Modifiers
+(21605, 4413, 11), -- M. Def. Modifiers
+(21605, 4414, 2), -- Armor Type
+(21605, 4415, 9), -- Weapon Type
+(21605, 4416, 1), -- Races
 -- Zaken's Archer
-(21606, 4040, 4), -- Power Shot
-(21606, 4408, 1), -- HP Increase (1x)
-(21606, 4409, 1), -- MP Increase (1x)
-(21606, 4410, 14), -- Strong P. Atk.
-(21606, 4411, 14), -- Strong M. Atk.
-(21606, 4412, 8), -- Weak P. Def.
-(21606, 4413, 8), -- Weak M. Def.
-(21606, 4414, 2), -- Standard Type
-(21606, 4415, 9), -- Bows
-(21606, 4416, 1), -- Undead
+(21606, 4040, 4), -- NPC Bow Attack
+(21606, 4408, 1), -- HP Modifiers
+(21606, 4409, 1), -- MP Modifiers
+(21606, 4410, 14), -- P. Atk. Modifiers
+(21606, 4411, 14), -- M. Atk. Modifiers
+(21606, 4412, 8), -- P. Def. Modifiers
+(21606, 4413, 8), -- M. Def. Modifiers
+(21606, 4414, 2), -- Armor Type
+(21606, 4415, 9), -- Weapon Type
+(21606, 4416, 1), -- Races
 -- Zaken's Elite Archer
-(21607, 4040, 4), -- Power Shot
-(21607, 4408, 12), -- HP Increase (4x)
-(21607, 4409, 1), -- MP Increase (1x)
-(21607, 4410, 14), -- Strong P. Atk.
-(21607, 4411, 14), -- Strong M. Atk.
-(21607, 4412, 8), -- Weak P. Def.
-(21607, 4413, 8), -- Weak M. Def.
-(21607, 4414, 2), -- Standard Type
-(21607, 4415, 9), -- Bows
-(21607, 4416, 1), -- Undead
+(21607, 4040, 4), -- NPC Bow Attack
+(21607, 4408, 12), -- HP Modifiers
+(21607, 4409, 1), -- MP Modifiers
+(21607, 4410, 14), -- P. Atk. Modifiers
+(21607, 4411, 14), -- M. Atk. Modifiers
+(21607, 4412, 8), -- P. Def. Modifiers
+(21607, 4413, 8), -- M. Def. Modifiers
+(21607, 4414, 2), -- Armor Type
+(21607, 4415, 9), -- Weapon Type
+(21607, 4416, 1), -- Races
 -- Zaken's Watchman
-(21608, 4151, 4), -- Wind Strike
-(21608, 4160, 4), -- Aura Burn
-(21608, 4273, 3), -- Resist Daggers/Rapier Weapon
-(21608, 4274, 1), -- Blunt Weapon Weak Point
-(21608, 4408, 1), -- HP Increase (1x)
-(21608, 4409, 1), -- MP Increase (1x)
-(21608, 4410, 11), -- Average P. Atk.
-(21608, 4411, 11), -- Average M. Atk.
-(21608, 4412, 11), -- Average P. Def.
-(21608, 4413, 11), -- Average M. Def.
-(21608, 4414, 3), -- Light Armor Type
-(21608, 4415, 5), -- Blunt Weapons
-(21608, 4416, 2), -- Magic Creatures
+(21608, 4151, 4), -- NPC Windstrike - Magic
+(21608, 4160, 4), -- NPC Aura Burn - Magic
+(21608, 4273, 3), -- Resist Dagger
+(21608, 4274, 1), -- Blunt Attack Weak Point
+(21608, 4408, 1), -- HP Modifiers
+(21608, 4409, 1), -- MP Modifiers
+(21608, 4410, 11), -- P. Atk. Modifiers
+(21608, 4411, 11), -- M. Atk. Modifiers
+(21608, 4412, 11), -- P. Def. Modifiers
+(21608, 4413, 11), -- M. Def. Modifiers
+(21608, 4414, 3), -- Armor Type
+(21608, 4415, 5), -- Weapon Type
+(21608, 4416, 2), -- Races
 (21608, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Zaken's Watchman
-(21609, 4151, 4), -- Wind Strike
-(21609, 4160, 4), -- Aura Burn
-(21609, 4273, 3), -- Resist Daggers/Rapier Weapon
-(21609, 4274, 1), -- Blunt Weapon Weak Point
-(21609, 4408, 1), -- HP Increase (1x)
-(21609, 4409, 1), -- MP Increase (1x)
-(21609, 4410, 14), -- Strong P. Atk.
-(21609, 4411, 14), -- Strong M. Atk.
-(21609, 4412, 8), -- Weak P. Def.
-(21609, 4413, 8), -- Weak M. Def.
-(21609, 4414, 3), -- Light Armor Type
-(21609, 4415, 5), -- Blunt Weapons
-(21609, 4416, 2), -- Magic Creatures
+(21609, 4151, 4), -- NPC Windstrike - Magic
+(21609, 4160, 4), -- NPC Aura Burn - Magic
+(21609, 4273, 3), -- Resist Dagger
+(21609, 4274, 1), -- Blunt Attack Weak Point
+(21609, 4408, 1), -- HP Modifiers
+(21609, 4409, 1), -- MP Modifiers
+(21609, 4410, 14), -- P. Atk. Modifiers
+(21609, 4411, 14), -- M. Atk. Modifiers
+(21609, 4412, 8), -- P. Def. Modifiers
+(21609, 4413, 8), -- M. Def. Modifiers
+(21609, 4414, 3), -- Armor Type
+(21609, 4415, 5), -- Weapon Type
+(21609, 4416, 2), -- Races
 (21609, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Zaken's High Grade Watchman
-(21610, 4151, 4), -- Wind Strike
-(21610, 4160, 4), -- Aura Burn
-(21610, 4273, 3), -- Resist Daggers/Rapier Weapon
-(21610, 4274, 1), -- Blunt Weapon Weak Point
-(21610, 4408, 12), -- HP Increase (4x)
-(21610, 4409, 1), -- MP Increase (1x)
-(21610, 4410, 14), -- Strong P. Atk.
-(21610, 4411, 14), -- Strong M. Atk.
-(21610, 4412, 8), -- Weak P. Def.
-(21610, 4413, 8), -- Weak M. Def.
-(21610, 4414, 3), -- Light Armor Type
-(21610, 4415, 5), -- Blunt Weapons
-(21610, 4416, 2), -- Magic Creatures
+(21610, 4151, 4), -- NPC Windstrike - Magic
+(21610, 4160, 4), -- NPC Aura Burn - Magic
+(21610, 4273, 3), -- Resist Dagger
+(21610, 4274, 1), -- Blunt Attack Weak Point
+(21610, 4408, 12), -- HP Modifiers
+(21610, 4409, 1), -- MP Modifiers
+(21610, 4410, 14), -- P. Atk. Modifiers
+(21610, 4411, 14), -- M. Atk. Modifiers
+(21610, 4412, 8), -- P. Def. Modifiers
+(21610, 4413, 8), -- M. Def. Modifiers
+(21610, 4414, 3), -- Armor Type
+(21610, 4415, 5), -- Weapon Type
+(21610, 4416, 2), -- Races
 (21610, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Unpleasant Humming
 (21611, 4088, 4), -- Bleed
-(21611, 4408, 1), -- HP Increase (1x)
-(21611, 4409, 1), -- MP Increase (1x)
-(21611, 4410, 11), -- Average P. Atk.
-(21611, 4411, 11), -- Average M. Atk.
-(21611, 4412, 11), -- Average P. Def.
-(21611, 4413, 11), -- Average M. Def.
-(21611, 4414, 2), -- Standard Type
-(21611, 4415, 3), -- One-handed Sword
-(21611, 4416, 1), -- Undead
+(21611, 4408, 1), -- HP Modifiers
+(21611, 4409, 1), -- MP Modifiers
+(21611, 4410, 11), -- P. Atk. Modifiers
+(21611, 4411, 11), -- M. Atk. Modifiers
+(21611, 4412, 11), -- P. Def. Modifiers
+(21611, 4413, 11), -- M. Def. Modifiers
+(21611, 4414, 2), -- Armor Type
+(21611, 4415, 3), -- Weapon Type
+(21611, 4416, 1), -- Races
 (21611, 4438, 2), -- Greater Resist Sleep
 -- Unpleasant Humming
 (21612, 4088, 4), -- Bleed
-(21612, 4408, 1), -- HP Increase (1x)
-(21612, 4409, 1), -- MP Increase (1x)
-(21612, 4410, 14), -- Strong P. Atk.
-(21612, 4411, 14), -- Strong M. Atk.
-(21612, 4412, 8), -- Weak P. Def.
-(21612, 4413, 8), -- Weak M. Def.
-(21612, 4414, 2), -- Standard Type
-(21612, 4415, 3), -- One-handed Sword
-(21612, 4416, 1), -- Undead
+(21612, 4408, 1), -- HP Modifiers
+(21612, 4409, 1), -- MP Modifiers
+(21612, 4410, 14), -- P. Atk. Modifiers
+(21612, 4411, 14), -- M. Atk. Modifiers
+(21612, 4412, 8), -- P. Def. Modifiers
+(21612, 4413, 8), -- M. Def. Modifiers
+(21612, 4414, 2), -- Armor Type
+(21612, 4415, 3), -- Weapon Type
+(21612, 4416, 1), -- Races
 (21612, 4438, 2), -- Greater Resist Sleep
 -- Unpleasant Shout
 (21613, 4088, 4), -- Bleed
-(21613, 4408, 12), -- HP Increase (4x)
-(21613, 4409, 1), -- MP Increase (1x)
-(21613, 4410, 14), -- Strong P. Atk.
-(21613, 4411, 14), -- Strong M. Atk.
-(21613, 4412, 8), -- Weak P. Def.
-(21613, 4413, 8), -- Weak M. Def.
-(21613, 4414, 2), -- Standard Type
-(21613, 4415, 3), -- One-handed Sword
-(21613, 4416, 1), -- Undead
+(21613, 4408, 12), -- HP Modifiers
+(21613, 4409, 1), -- MP Modifiers
+(21613, 4410, 14), -- P. Atk. Modifiers
+(21613, 4411, 14), -- M. Atk. Modifiers
+(21613, 4412, 8), -- P. Def. Modifiers
+(21613, 4413, 8), -- M. Def. Modifiers
+(21613, 4414, 2), -- Armor Type
+(21613, 4415, 3), -- Weapon Type
+(21613, 4416, 1), -- Races
 (21613, 4438, 2), -- Greater Resist Sleep
 -- Death Flyer
-(21614, 4074, 2), -- Haste
-(21614, 4408, 1), -- HP Increase (1x)
-(21614, 4409, 1), -- MP Increase (1x)
-(21614, 4410, 11), -- Average P. Atk.
-(21614, 4411, 11), -- Average M. Atk.
-(21614, 4412, 11), -- Average P. Def.
-(21614, 4413, 11), -- Average M. Def.
-(21614, 4414, 2), -- Standard Type
-(21614, 4415, 5), -- Blunt Weapons
-(21614, 4416, 1), -- Undead
+(21614, 4074, 2), -- NPC Haste
+(21614, 4408, 1), -- HP Modifiers
+(21614, 4409, 1), -- MP Modifiers
+(21614, 4410, 11), -- P. Atk. Modifiers
+(21614, 4411, 11), -- M. Atk. Modifiers
+(21614, 4412, 11), -- P. Def. Modifiers
+(21614, 4413, 11), -- M. Def. Modifiers
+(21614, 4414, 2), -- Armor Type
+(21614, 4415, 5), -- Weapon Type
+(21614, 4416, 1), -- Races
 (21614, 4438, 2), -- Greater Resist Sleep
 (21614, 4439, 2), -- Greater Resist Hold
 -- Death Flyer
-(21615, 4074, 2), -- Haste
-(21615, 4408, 1), -- HP Increase (1x)
-(21615, 4409, 1), -- MP Increase (1x)
-(21615, 4410, 14), -- Strong P. Atk.
-(21615, 4411, 14), -- Strong M. Atk.
-(21615, 4412, 8), -- Weak P. Def.
-(21615, 4413, 8), -- Weak M. Def.
-(21615, 4414, 2), -- Standard Type
-(21615, 4415, 5), -- Blunt Weapons
-(21615, 4416, 1), -- Undead
+(21615, 4074, 2), -- NPC Haste
+(21615, 4408, 1), -- HP Modifiers
+(21615, 4409, 1), -- MP Modifiers
+(21615, 4410, 14), -- P. Atk. Modifiers
+(21615, 4411, 14), -- M. Atk. Modifiers
+(21615, 4412, 8), -- P. Def. Modifiers
+(21615, 4413, 8), -- M. Def. Modifiers
+(21615, 4414, 2), -- Armor Type
+(21615, 4415, 5), -- Weapon Type
+(21615, 4416, 1), -- Races
 (21615, 4438, 2), -- Greater Resist Sleep
 (21615, 4439, 2), -- Greater Resist Hold
 -- Gigantic Flyer
-(21616, 4074, 2), -- Haste
-(21616, 4408, 12), -- HP Increase (4x)
-(21616, 4409, 1), -- MP Increase (1x)
-(21616, 4410, 14), -- Strong P. Atk.
-(21616, 4411, 14), -- Strong M. Atk.
-(21616, 4412, 8), -- Weak P. Def.
-(21616, 4413, 8), -- Weak M. Def.
-(21616, 4414, 2), -- Standard Type
-(21616, 4415, 5), -- Blunt Weapons
-(21616, 4416, 1), -- Undead
+(21616, 4074, 2), -- NPC Haste
+(21616, 4408, 12), -- HP Modifiers
+(21616, 4409, 1), -- MP Modifiers
+(21616, 4410, 14), -- P. Atk. Modifiers
+(21616, 4411, 14), -- M. Atk. Modifiers
+(21616, 4412, 8), -- P. Def. Modifiers
+(21616, 4413, 8), -- M. Def. Modifiers
+(21616, 4414, 2), -- Armor Type
+(21616, 4415, 5), -- Weapon Type
+(21616, 4416, 1), -- Races
 (21616, 4438, 2), -- Greater Resist Sleep
 (21616, 4439, 2), -- Greater Resist Hold
 -- Fiend Archer
-(21617, 4071, 5), -- Resist Bow/Crossbow Weapons
-(21617, 4085, 1), -- Critical Damage
+(21617, 4071, 5), -- Resist Archery
+(21617, 4085, 1), -- Critical Power
 (21617, 4086, 1), -- Critical Chance
-(21617, 4141, 4), -- Wind Fist
-(21617, 4389, 4), -- Resist Mental Attacks
-(21617, 4408, 1), -- HP Increase (1x)
-(21617, 4409, 1), -- MP Increase (1x)
-(21617, 4410, 11), -- Average P. Atk.
-(21617, 4411, 11), -- Average M. Atk.
-(21617, 4412, 11), -- Average P. Def.
-(21617, 4413, 11), -- Average M. Def.
-(21617, 4414, 3), -- Light Armor Type
-(21617, 4415, 9), -- Bows
-(21617, 4416, 9), -- Demons
+(21617, 4141, 4), -- NPC Wind Fist
+(21617, 4389, 4), -- Resist Mental Derangement
+(21617, 4408, 1), -- HP Modifiers
+(21617, 4409, 1), -- MP Modifiers
+(21617, 4410, 11), -- P. Atk. Modifiers
+(21617, 4411, 11), -- M. Atk. Modifiers
+(21617, 4412, 11), -- P. Def. Modifiers
+(21617, 4413, 11), -- M. Def. Modifiers
+(21617, 4414, 3), -- Armor Type
+(21617, 4415, 9), -- Weapon Type
+(21617, 4416, 9), -- Races
 -- Fiend Archer
-(21618, 4071, 5), -- Resist Bow/Crossbow Weapons
-(21618, 4085, 1), -- Critical Damage
+(21618, 4071, 5), -- Resist Archery
+(21618, 4085, 1), -- Critical Power
 (21618, 4086, 1), -- Critical Chance
-(21618, 4141, 4), -- Wind Fist
-(21618, 4389, 4), -- Resist Mental Attacks
-(21618, 4408, 1), -- HP Increase (1x)
-(21618, 4409, 1), -- MP Increase (1x)
-(21618, 4410, 14), -- Strong P. Atk.
-(21618, 4411, 14), -- Strong M. Atk.
-(21618, 4412, 8), -- Weak P. Def.
-(21618, 4413, 8), -- Weak M. Def.
-(21618, 4414, 3), -- Light Armor Type
-(21618, 4415, 9), -- Bows
-(21618, 4416, 9), -- Demons
+(21618, 4141, 4), -- NPC Wind Fist
+(21618, 4389, 4), -- Resist Mental Derangement
+(21618, 4408, 1), -- HP Modifiers
+(21618, 4409, 1), -- MP Modifiers
+(21618, 4410, 14), -- P. Atk. Modifiers
+(21618, 4411, 14), -- M. Atk. Modifiers
+(21618, 4412, 8), -- P. Def. Modifiers
+(21618, 4413, 8), -- M. Def. Modifiers
+(21618, 4414, 3), -- Armor Type
+(21618, 4415, 9), -- Weapon Type
+(21618, 4416, 9), -- Races
 -- Pit Archer
-(21619, 4071, 5), -- Resist Bow/Crossbow Weapons
-(21619, 4085, 1), -- Critical Damage
+(21619, 4071, 5), -- Resist Archery
+(21619, 4085, 1), -- Critical Power
 (21619, 4086, 1), -- Critical Chance
-(21619, 4141, 4), -- Wind Fist
-(21619, 4389, 4), -- Resist Mental Attacks
-(21619, 4408, 12), -- HP Increase (4x)
-(21619, 4409, 1), -- MP Increase (1x)
-(21619, 4410, 14), -- Strong P. Atk.
-(21619, 4411, 14), -- Strong M. Atk.
-(21619, 4412, 8), -- Weak P. Def.
-(21619, 4413, 8), -- Weak M. Def.
-(21619, 4414, 3), -- Light Armor Type
-(21619, 4415, 9), -- Bows
-(21619, 4416, 9), -- Demons
+(21619, 4141, 4), -- NPC Wind Fist
+(21619, 4389, 4), -- Resist Mental Derangement
+(21619, 4408, 12), -- HP Modifiers
+(21619, 4409, 1), -- MP Modifiers
+(21619, 4410, 14), -- P. Atk. Modifiers
+(21619, 4411, 14), -- M. Atk. Modifiers
+(21619, 4412, 8), -- P. Def. Modifiers
+(21619, 4413, 8), -- M. Def. Modifiers
+(21619, 4414, 3), -- Armor Type
+(21619, 4415, 9), -- Weapon Type
+(21619, 4416, 9), -- Races
 -- Musveren
-(21620, 4002, 4), -- HP Drain
-(21620, 4273, 3), -- Resist Daggers/Rapier Weapon
-(21620, 4274, 1), -- Blunt Weapon Weak Point
-(21620, 4408, 1), -- HP Increase (1x)
-(21620, 4409, 1), -- MP Increase (1x)
-(21620, 4410, 11), -- Average P. Atk.
-(21620, 4411, 11), -- Average M. Atk.
-(21620, 4412, 11), -- Average P. Def.
-(21620, 4413, 11), -- Average M. Def.
-(21620, 4414, 2), -- Standard Type
-(21620, 4415, 3), -- One-handed Sword
-(21620, 4416, 2), -- Magic Creatures
+(21620, 4002, 4), -- NPC HP Drain
+(21620, 4273, 3), -- Resist Dagger
+(21620, 4274, 1), -- Blunt Attack Weak Point
+(21620, 4408, 1), -- HP Modifiers
+(21620, 4409, 1), -- MP Modifiers
+(21620, 4410, 11), -- P. Atk. Modifiers
+(21620, 4411, 11), -- M. Atk. Modifiers
+(21620, 4412, 11), -- P. Def. Modifiers
+(21620, 4413, 11), -- M. Def. Modifiers
+(21620, 4414, 2), -- Armor Type
+(21620, 4415, 3), -- Weapon Type
+(21620, 4416, 2), -- Races
 (21620, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Musveren
-(21621, 4002, 4), -- HP Drain
-(21621, 4273, 3), -- Resist Daggers/Rapier Weapon
-(21621, 4274, 1), -- Blunt Weapon Weak Point
-(21621, 4408, 1), -- HP Increase (1x)
-(21621, 4409, 1), -- MP Increase (1x)
-(21621, 4410, 14), -- Strong P. Atk.
-(21621, 4411, 14), -- Strong M. Atk.
-(21621, 4412, 8), -- Weak P. Def.
-(21621, 4413, 8), -- Weak M. Def.
-(21621, 4414, 2), -- Standard Type
-(21621, 4415, 3), -- One-handed Sword
-(21621, 4416, 2), -- Magic Creatures
+(21621, 4002, 4), -- NPC HP Drain
+(21621, 4273, 3), -- Resist Dagger
+(21621, 4274, 1), -- Blunt Attack Weak Point
+(21621, 4408, 1), -- HP Modifiers
+(21621, 4409, 1), -- MP Modifiers
+(21621, 4410, 14), -- P. Atk. Modifiers
+(21621, 4411, 14), -- M. Atk. Modifiers
+(21621, 4412, 8), -- P. Def. Modifiers
+(21621, 4413, 8), -- M. Def. Modifiers
+(21621, 4414, 2), -- Armor Type
+(21621, 4415, 3), -- Weapon Type
+(21621, 4416, 2), -- Races
 (21621, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Greater Musveren
-(21622, 4002, 4), -- HP Drain
-(21622, 4273, 3), -- Resist Daggers/Rapier Weapon
-(21622, 4274, 1), -- Blunt Weapon Weak Point
-(21622, 4408, 12), -- HP Increase (4x)
-(21622, 4409, 1), -- MP Increase (1x)
-(21622, 4410, 14), -- Strong P. Atk.
-(21622, 4411, 14), -- Strong M. Atk.
-(21622, 4412, 8), -- Weak P. Def.
-(21622, 4413, 8), -- Weak M. Def.
-(21622, 4414, 2), -- Standard Type
-(21622, 4415, 3), -- One-handed Sword
-(21622, 4416, 2), -- Magic Creatures
+(21622, 4002, 4), -- NPC HP Drain
+(21622, 4273, 3), -- Resist Dagger
+(21622, 4274, 1), -- Blunt Attack Weak Point
+(21622, 4408, 12), -- HP Modifiers
+(21622, 4409, 1), -- MP Modifiers
+(21622, 4410, 14), -- P. Atk. Modifiers
+(21622, 4411, 14), -- M. Atk. Modifiers
+(21622, 4412, 8), -- P. Def. Modifiers
+(21622, 4413, 8), -- M. Def. Modifiers
+(21622, 4414, 2), -- Armor Type
+(21622, 4415, 3), -- Weapon Type
+(21622, 4416, 2), -- Races
 (21622, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Zaken's Guard
-(21623, 4067, 5), -- Blow
-(21623, 4071, 5), -- Resist Bow/Crossbow Weapons
-(21623, 4273, 3), -- Resist Daggers/Rapier Weapon
-(21623, 4274, 1), -- Blunt Weapon Weak Point
-(21623, 4408, 1), -- HP Increase (1x)
-(21623, 4409, 1), -- MP Increase (1x)
-(21623, 4410, 11), -- Average P. Atk.
-(21623, 4411, 11), -- Average M. Atk.
-(21623, 4412, 11), -- Average P. Def.
-(21623, 4413, 11), -- Average M. Def.
-(21623, 4414, 2), -- Standard Type
-(21623, 4415, 7), -- Daggers
-(21623, 4416, 1), -- Undead
+(21623, 4067, 5), -- NPC Mortal Blow
+(21623, 4071, 5), -- Resist Archery
+(21623, 4273, 3), -- Resist Dagger
+(21623, 4274, 1), -- Blunt Attack Weak Point
+(21623, 4408, 1), -- HP Modifiers
+(21623, 4409, 1), -- MP Modifiers
+(21623, 4410, 11), -- P. Atk. Modifiers
+(21623, 4411, 11), -- M. Atk. Modifiers
+(21623, 4412, 11), -- P. Def. Modifiers
+(21623, 4413, 11), -- M. Def. Modifiers
+(21623, 4414, 2), -- Armor Type
+(21623, 4415, 7), -- Weapon Type
+(21623, 4416, 1), -- Races
 -- Zaken's Guard
-(21624, 4067, 5), -- Blow
-(21624, 4071, 5), -- Resist Bow/Crossbow Weapons
-(21624, 4273, 3), -- Resist Daggers/Rapier Weapon
-(21624, 4274, 1), -- Blunt Weapon Weak Point
-(21624, 4408, 1), -- HP Increase (1x)
-(21624, 4409, 1), -- MP Increase (1x)
-(21624, 4410, 14), -- Strong P. Atk.
-(21624, 4411, 14), -- Strong M. Atk.
-(21624, 4412, 8), -- Weak P. Def.
-(21624, 4413, 8), -- Weak M. Def.
-(21624, 4414, 2), -- Standard Type
-(21624, 4415, 7), -- Daggers
-(21624, 4416, 1), -- Undead
+(21624, 4067, 5), -- NPC Mortal Blow
+(21624, 4071, 5), -- Resist Archery
+(21624, 4273, 3), -- Resist Dagger
+(21624, 4274, 1), -- Blunt Attack Weak Point
+(21624, 4408, 1), -- HP Modifiers
+(21624, 4409, 1), -- MP Modifiers
+(21624, 4410, 14), -- P. Atk. Modifiers
+(21624, 4411, 14), -- M. Atk. Modifiers
+(21624, 4412, 8), -- P. Def. Modifiers
+(21624, 4413, 8), -- M. Def. Modifiers
+(21624, 4414, 2), -- Armor Type
+(21624, 4415, 7), -- Weapon Type
+(21624, 4416, 1), -- Races
 -- Zaken's Elite Guard
-(21625, 4067, 5), -- Blow
-(21625, 4071, 5), -- Resist Bow/Crossbow Weapons
-(21625, 4273, 3), -- Resist Daggers/Rapier Weapon
-(21625, 4274, 1), -- Blunt Weapon Weak Point
-(21625, 4408, 12), -- HP Increase (4x)
-(21625, 4409, 1), -- MP Increase (1x)
-(21625, 4410, 14), -- Strong P. Atk.
-(21625, 4411, 14), -- Strong M. Atk.
-(21625, 4412, 8), -- Weak P. Def.
-(21625, 4413, 8), -- Weak M. Def.
-(21625, 4414, 2), -- Standard Type
-(21625, 4415, 7), -- Daggers
-(21625, 4416, 1), -- Undead
+(21625, 4067, 5), -- NPC Mortal Blow
+(21625, 4071, 5), -- Resist Archery
+(21625, 4273, 3), -- Resist Dagger
+(21625, 4274, 1), -- Blunt Attack Weak Point
+(21625, 4408, 12), -- HP Modifiers
+(21625, 4409, 1), -- MP Modifiers
+(21625, 4410, 14), -- P. Atk. Modifiers
+(21625, 4411, 14), -- M. Atk. Modifiers
+(21625, 4412, 8), -- P. Def. Modifiers
+(21625, 4413, 8), -- M. Def. Modifiers
+(21625, 4414, 2), -- Armor Type
+(21625, 4415, 7), -- Weapon Type
+(21625, 4416, 1), -- Races
 -- Kaim Vanul
 (21626, 4047, 5), -- Hold
-(21626, 4085, 1), -- Critical Damage
+(21626, 4085, 1), -- Critical Power
 (21626, 4086, 1), -- Critical Chance
-(21626, 4408, 1), -- HP Increase (1x)
-(21626, 4409, 1), -- MP Increase (1x)
-(21626, 4410, 11), -- Average P. Atk.
-(21626, 4411, 11), -- Average M. Atk.
-(21626, 4412, 11), -- Average P. Def.
-(21626, 4413, 11), -- Average M. Def.
-(21626, 4414, 2), -- Standard Type
-(21626, 4415, 3), -- One-handed Sword
-(21626, 4416, 9), -- Demons
+(21626, 4408, 1), -- HP Modifiers
+(21626, 4409, 1), -- MP Modifiers
+(21626, 4410, 11), -- P. Atk. Modifiers
+(21626, 4411, 11), -- M. Atk. Modifiers
+(21626, 4412, 11), -- P. Def. Modifiers
+(21626, 4413, 11), -- M. Def. Modifiers
+(21626, 4414, 2), -- Armor Type
+(21626, 4415, 3), -- Weapon Type
+(21626, 4416, 9), -- Races
 -- Kaim Vanul
 (21627, 4047, 5), -- Hold
-(21627, 4085, 1), -- Critical Damage
+(21627, 4085, 1), -- Critical Power
 (21627, 4086, 1), -- Critical Chance
-(21627, 4408, 1), -- HP Increase (1x)
-(21627, 4409, 1), -- MP Increase (1x)
-(21627, 4410, 14), -- Strong P. Atk.
-(21627, 4411, 14), -- Strong M. Atk.
-(21627, 4412, 8), -- Weak P. Def.
-(21627, 4413, 8), -- Weak M. Def.
-(21627, 4414, 2), -- Standard Type
-(21627, 4415, 3), -- One-handed Sword
-(21627, 4416, 9), -- Demons
+(21627, 4408, 1), -- HP Modifiers
+(21627, 4409, 1), -- MP Modifiers
+(21627, 4410, 14), -- P. Atk. Modifiers
+(21627, 4411, 14), -- M. Atk. Modifiers
+(21627, 4412, 8), -- P. Def. Modifiers
+(21627, 4413, 8), -- M. Def. Modifiers
+(21627, 4414, 2), -- Armor Type
+(21627, 4415, 3), -- Weapon Type
+(21627, 4416, 9), -- Races
 -- Kaim Vanul Lad
 (21628, 4047, 5), -- Hold
-(21628, 4085, 1), -- Critical Damage
+(21628, 4085, 1), -- Critical Power
 (21628, 4086, 1), -- Critical Chance
-(21628, 4408, 12), -- HP Increase (4x)
-(21628, 4409, 1), -- MP Increase (1x)
-(21628, 4410, 14), -- Strong P. Atk.
-(21628, 4411, 14), -- Strong M. Atk.
-(21628, 4412, 8), -- Weak P. Def.
-(21628, 4413, 8), -- Weak M. Def.
-(21628, 4414, 2), -- Standard Type
-(21628, 4415, 3), -- One-handed Sword
-(21628, 4416, 9), -- Demons
+(21628, 4408, 12), -- HP Modifiers
+(21628, 4409, 1), -- MP Modifiers
+(21628, 4410, 14), -- P. Atk. Modifiers
+(21628, 4411, 14), -- M. Atk. Modifiers
+(21628, 4412, 8), -- P. Def. Modifiers
+(21628, 4413, 8), -- M. Def. Modifiers
+(21628, 4414, 2), -- Armor Type
+(21628, 4415, 3), -- Weapon Type
+(21628, 4416, 9), -- Races
 -- Pirate Zombie Captain
-(21629, 4067, 5), -- Blow
-(21629, 4408, 1), -- HP Increase (1x)
-(21629, 4409, 1), -- MP Increase (1x)
-(21629, 4410, 11), -- Average P. Atk.
-(21629, 4411, 11), -- Average M. Atk.
-(21629, 4412, 16), -- Very Strong P. Def.
-(21629, 4413, 11), -- Average M. Def.
-(21629, 4414, 2), -- Standard Type
-(21629, 4415, 7), -- Daggers
-(21629, 4416, 1), -- Undead
+(21629, 4067, 5), -- NPC Mortal Blow
+(21629, 4408, 1), -- HP Modifiers
+(21629, 4409, 1), -- MP Modifiers
+(21629, 4410, 11), -- P. Atk. Modifiers
+(21629, 4411, 11), -- M. Atk. Modifiers
+(21629, 4412, 16), -- P. Def. Modifiers
+(21629, 4413, 11), -- M. Def. Modifiers
+(21629, 4414, 2), -- Armor Type
+(21629, 4415, 7), -- Weapon Type
+(21629, 4416, 1), -- Races
 -- Pirate Zombie Captain
-(21630, 4067, 5), -- Blow
-(21630, 4408, 1), -- HP Increase (1x)
-(21630, 4409, 1), -- MP Increase (1x)
-(21630, 4410, 14), -- Strong P. Atk.
-(21630, 4411, 14); -- Strong M. Atk.
+(21630, 4067, 5), -- NPC Mortal Blow
+(21630, 4408, 1), -- HP Modifiers
+(21630, 4409, 1), -- MP Modifiers
+(21630, 4410, 14), -- P. Atk. Modifiers
+(21630, 4411, 14); -- M. Atk. Modifiers
 
 INSERT INTO `npcskills` VALUES
-(21630, 4412, 14), -- Strong P. Def.
-(21630, 4413, 8), -- Weak M. Def.
-(21630, 4414, 2), -- Standard Type
-(21630, 4415, 7), -- Daggers
-(21630, 4416, 1), -- Undead
+(21630, 4412, 14), -- P. Def. Modifiers
+(21630, 4413, 8), -- M. Def. Modifiers
+(21630, 4414, 2), -- Armor Type
+(21630, 4415, 7), -- Weapon Type
+(21630, 4416, 1), -- Races
 -- Zombie Captain's Spiritual Body
-(21631, 4067, 5), -- Blow
-(21631, 4408, 12), -- HP Increase (4x)
-(21631, 4409, 1), -- MP Increase (1x)
-(21631, 4410, 14), -- Strong P. Atk.
-(21631, 4411, 14), -- Strong M. Atk.
-(21631, 4412, 14), -- Strong P. Def.
-(21631, 4413, 8), -- Weak M. Def.
-(21631, 4414, 2), -- Standard Type
-(21631, 4415, 7), -- Daggers
-(21631, 4416, 1), -- Undead
+(21631, 4067, 5), -- NPC Mortal Blow
+(21631, 4408, 12), -- HP Modifiers
+(21631, 4409, 1), -- MP Modifiers
+(21631, 4410, 14), -- P. Atk. Modifiers
+(21631, 4411, 14), -- M. Atk. Modifiers
+(21631, 4412, 14), -- P. Def. Modifiers
+(21631, 4413, 8), -- M. Def. Modifiers
+(21631, 4414, 2), -- Armor Type
+(21631, 4415, 7), -- Weapon Type
+(21631, 4416, 1), -- Races
 -- Doll Blader
-(21632, 4074, 2), -- Haste
-(21632, 4085, 1), -- Critical Damage
+(21632, 4074, 2), -- NPC Haste
+(21632, 4085, 1), -- Critical Power
 (21632, 4086, 1), -- Critical Chance
-(21632, 4408, 1), -- HP Increase (1x)
-(21632, 4409, 1), -- MP Increase (1x)
-(21632, 4410, 11), -- Average P. Atk.
-(21632, 4411, 11), -- Average M. Atk.
-(21632, 4412, 11), -- Average P. Def.
-(21632, 4413, 11), -- Average M. Def.
-(21632, 4414, 3), -- Light Armor Type
-(21632, 4415, 7), -- Daggers
-(21632, 4416, 9), -- Demons
+(21632, 4408, 1), -- HP Modifiers
+(21632, 4409, 1), -- MP Modifiers
+(21632, 4410, 11), -- P. Atk. Modifiers
+(21632, 4411, 11), -- M. Atk. Modifiers
+(21632, 4412, 11), -- P. Def. Modifiers
+(21632, 4413, 11), -- M. Def. Modifiers
+(21632, 4414, 3), -- Armor Type
+(21632, 4415, 7), -- Weapon Type
+(21632, 4416, 9), -- Races
 (21632, 4438, 2), -- Greater Resist Sleep
 (21632, 4439, 2), -- Greater Resist Hold
 -- Doll Blader
-(21633, 4074, 2), -- Haste
-(21633, 4085, 1), -- Critical Damage
+(21633, 4074, 2), -- NPC Haste
+(21633, 4085, 1), -- Critical Power
 (21633, 4086, 1), -- Critical Chance
-(21633, 4408, 1), -- HP Increase (1x)
-(21633, 4409, 1), -- MP Increase (1x)
-(21633, 4410, 14), -- Strong P. Atk.
-(21633, 4411, 14), -- Strong M. Atk.
-(21633, 4412, 8), -- Weak P. Def.
-(21633, 4413, 8), -- Weak M. Def.
-(21633, 4414, 3), -- Light Armor Type
-(21633, 4415, 7), -- Daggers
-(21633, 4416, 9), -- Demons
+(21633, 4408, 1), -- HP Modifiers
+(21633, 4409, 1), -- MP Modifiers
+(21633, 4410, 14), -- P. Atk. Modifiers
+(21633, 4411, 14), -- M. Atk. Modifiers
+(21633, 4412, 8), -- P. Def. Modifiers
+(21633, 4413, 8), -- M. Def. Modifiers
+(21633, 4414, 3), -- Armor Type
+(21633, 4415, 7), -- Weapon Type
+(21633, 4416, 9), -- Races
 (21633, 4438, 2), -- Greater Resist Sleep
 (21633, 4439, 2), -- Greater Resist Hold
 -- Crimson Doll Blader
-(21634, 4074, 2), -- Haste
-(21634, 4085, 1), -- Critical Damage
+(21634, 4074, 2), -- NPC Haste
+(21634, 4085, 1), -- Critical Power
 (21634, 4086, 1), -- Critical Chance
-(21634, 4408, 12), -- HP Increase (4x)
-(21634, 4409, 1), -- MP Increase (1x)
-(21634, 4410, 14), -- Strong P. Atk.
-(21634, 4411, 14), -- Strong M. Atk.
-(21634, 4412, 8), -- Weak P. Def.
-(21634, 4413, 8), -- Weak M. Def.
-(21634, 4414, 3), -- Light Armor Type
-(21634, 4415, 7), -- Daggers
-(21634, 4416, 9), -- Demons
+(21634, 4408, 12), -- HP Modifiers
+(21634, 4409, 1), -- MP Modifiers
+(21634, 4410, 14), -- P. Atk. Modifiers
+(21634, 4411, 14), -- M. Atk. Modifiers
+(21634, 4412, 8), -- P. Def. Modifiers
+(21634, 4413, 8), -- M. Def. Modifiers
+(21634, 4414, 3), -- Armor Type
+(21634, 4415, 7), -- Weapon Type
+(21634, 4416, 9), -- Races
 (21634, 4438, 2), -- Greater Resist Sleep
 (21634, 4439, 2), -- Greater Resist Hold
 -- Veil Master
 (21635, 4046, 5), -- Sleep
-(21635, 4076, 3), -- Slow
-(21635, 4085, 1), -- Critical Damage
+(21635, 4076, 3), -- Reduction in movement speed
+(21635, 4085, 1), -- Critical Power
 (21635, 4086, 1), -- Critical Chance
-(21635, 4087, 5), -- Blaze
-(21635, 4094, 5), -- Cancellation
-(21635, 4408, 1), -- HP Increase (1x)
-(21635, 4409, 1), -- MP Increase (1x)
-(21635, 4410, 11), -- Average P. Atk.
-(21635, 4411, 11), -- Average M. Atk.
-(21635, 4412, 11), -- Average P. Def.
-(21635, 4413, 11), -- Average M. Def.
-(21635, 4414, 3), -- Light Armor Type
-(21635, 4415, 3), -- One-handed Sword
-(21635, 4416, 9), -- Demons
+(21635, 4087, 5), -- NPC Blaze
+(21635, 4094, 5), -- NPC Cancel Magic
+(21635, 4408, 1), -- HP Modifiers
+(21635, 4409, 1), -- MP Modifiers
+(21635, 4410, 11), -- P. Atk. Modifiers
+(21635, 4411, 11), -- M. Atk. Modifiers
+(21635, 4412, 11), -- P. Def. Modifiers
+(21635, 4413, 11), -- M. Def. Modifiers
+(21635, 4414, 3), -- Armor Type
+(21635, 4415, 3), -- Weapon Type
+(21635, 4416, 9), -- Races
 -- Veil Master
 (21636, 4046, 5), -- Sleep
-(21636, 4076, 3), -- Slow
-(21636, 4085, 1), -- Critical Damage
+(21636, 4076, 3), -- Reduction in movement speed
+(21636, 4085, 1), -- Critical Power
 (21636, 4086, 1), -- Critical Chance
-(21636, 4087, 5), -- Blaze
-(21636, 4094, 5), -- Cancellation
-(21636, 4408, 1), -- HP Increase (1x)
-(21636, 4409, 1), -- MP Increase (1x)
-(21636, 4410, 14), -- Strong P. Atk.
-(21636, 4411, 14), -- Strong M. Atk.
-(21636, 4412, 8), -- Weak P. Def.
-(21636, 4413, 8), -- Weak M. Def.
-(21636, 4414, 3), -- Light Armor Type
-(21636, 4415, 3), -- One-handed Sword
-(21636, 4416, 9), -- Demons
+(21636, 4087, 5), -- NPC Blaze
+(21636, 4094, 5), -- NPC Cancel Magic
+(21636, 4408, 1), -- HP Modifiers
+(21636, 4409, 1), -- MP Modifiers
+(21636, 4410, 14), -- P. Atk. Modifiers
+(21636, 4411, 14), -- M. Atk. Modifiers
+(21636, 4412, 8), -- P. Def. Modifiers
+(21636, 4413, 8), -- M. Def. Modifiers
+(21636, 4414, 3), -- Armor Type
+(21636, 4415, 3), -- Weapon Type
+(21636, 4416, 9), -- Races
 -- Crimson Veil Master
 (21637, 4046, 5), -- Sleep
-(21637, 4076, 3), -- Slow
-(21637, 4085, 1), -- Critical Damage
+(21637, 4076, 3), -- Reduction in movement speed
+(21637, 4085, 1), -- Critical Power
 (21637, 4086, 1), -- Critical Chance
-(21637, 4087, 5), -- Blaze
-(21637, 4094, 5), -- Cancellation
-(21637, 4408, 12), -- HP Increase (4x)
-(21637, 4409, 1), -- MP Increase (1x)
-(21637, 4410, 14), -- Strong P. Atk.
-(21637, 4411, 14), -- Strong M. Atk.
-(21637, 4412, 8), -- Weak P. Def.
-(21637, 4413, 8), -- Weak M. Def.
-(21637, 4414, 3), -- Light Armor Type
-(21637, 4415, 3), -- One-handed Sword
-(21637, 4416, 9), -- Demons
+(21637, 4087, 5), -- NPC Blaze
+(21637, 4094, 5), -- NPC Cancel Magic
+(21637, 4408, 12), -- HP Modifiers
+(21637, 4409, 1), -- MP Modifiers
+(21637, 4410, 14), -- P. Atk. Modifiers
+(21637, 4411, 14), -- M. Atk. Modifiers
+(21637, 4412, 8), -- P. Def. Modifiers
+(21637, 4413, 8), -- M. Def. Modifiers
+(21637, 4414, 3), -- Armor Type
+(21637, 4415, 3), -- Weapon Type
+(21637, 4416, 9), -- Races
 -- Dread Wolf
-(21638, 4032, 3), -- Power Strike
-(21638, 4408, 9), -- HP Increase (1/2x)
-(21638, 4409, 1), -- MP Increase (1x)
-(21638, 4410, 12), -- Slightly Strong P. Atk.
-(21638, 4411, 12), -- Slightly Strong M. Atk.
-(21638, 4412, 10), -- Slightly Weak P. Def.
-(21638, 4413, 10), -- Slightly Weak M. Def.
-(21638, 4414, 2), -- Standard Type
-(21638, 4415, 3), -- One-handed Sword
-(21638, 4416, 4), -- Animals
+(21638, 4032, 3), -- NPC Strike
+(21638, 4408, 9), -- HP Modifiers
+(21638, 4409, 1), -- MP Modifiers
+(21638, 4410, 12), -- P. Atk. Modifiers
+(21638, 4411, 12), -- M. Atk. Modifiers
+(21638, 4412, 10), -- P. Def. Modifiers
+(21638, 4413, 10), -- M. Def. Modifiers
+(21638, 4414, 2), -- Armor Type
+(21638, 4415, 3), -- Weapon Type
+(21638, 4416, 4), -- Races
 -- Tasaba Lizardman
-(21639, 4124, 3), -- Spear Attack
-(21639, 4273, 3), -- Resist Daggers/Rapier Weapon
-(21639, 4274, 1), -- Blunt Weapon Weak Point
-(21639, 4408, 9), -- HP Increase (1/2x)
-(21639, 4409, 1), -- MP Increase (1x)
-(21639, 4410, 10), -- Slightly Weak P. Atk.
-(21639, 4411, 10), -- Slightly Weak M. Atk.
-(21639, 4412, 12), -- Slightly Strong P. Def.
-(21639, 4413, 12), -- Slightly Strong M. Def.
-(21639, 4414, 2), -- Standard Type
-(21639, 4415, 9), -- Bows
-(21639, 4416, 6), -- Humanoids
+(21639, 4124, 3), -- NPC Spear Attack
+(21639, 4273, 3), -- Resist Dagger
+(21639, 4274, 1), -- Blunt Attack Weak Point
+(21639, 4408, 9), -- HP Modifiers
+(21639, 4409, 1), -- MP Modifiers
+(21639, 4410, 10), -- P. Atk. Modifiers
+(21639, 4411, 10), -- M. Atk. Modifiers
+(21639, 4412, 12), -- P. Def. Modifiers
+(21639, 4413, 12), -- M. Def. Modifiers
+(21639, 4414, 2), -- Armor Type
+(21639, 4415, 9), -- Weapon Type
+(21639, 4416, 6), -- Races
 (21639, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Tasaba Lizardman Shaman 
 (21640, 4153, 3), -- Decrease Speed
-(21640, 4160, 3), -- Aura Burn
-(21640, 4408, 9), -- HP Increase (1/2x)
-(21640, 4409, 1), -- MP Increase (1x)
-(21640, 4410, 14), -- Strong P. Atk.
-(21640, 4411, 14), -- Strong M. Atk.
-(21640, 4412, 8), -- Weak P. Def.
-(21640, 4413, 11), -- Average M. Def.
-(21640, 4414, 3), -- Light Armor Type
-(21640, 4415, 5), -- Blunt Weapons
-(21640, 4416, 6), -- Humanoids
+(21640, 4160, 3), -- NPC Aura Burn - Magic
+(21640, 4408, 9), -- HP Modifiers
+(21640, 4409, 1), -- MP Modifiers
+(21640, 4410, 14), -- P. Atk. Modifiers
+(21640, 4411, 14), -- M. Atk. Modifiers
+(21640, 4412, 8), -- P. Def. Modifiers
+(21640, 4413, 11), -- M. Def. Modifiers
+(21640, 4414, 3), -- Armor Type
+(21640, 4415, 5), -- Weapon Type
+(21640, 4416, 6), -- Races
 -- Ogre
-(21641, 4032, 3), -- Power Strike
-(21641, 4092, 1), -- Spirit Puma
-(21641, 4273, 3), -- Resist Daggers/Rapier Weapon
-(21641, 4274, 1), -- Blunt Weapon Weak Point
-(21641, 4408, 9), -- HP Increase (1/2x)
-(21641, 4409, 1), -- MP Increase (1x)
-(21641, 4410, 10), -- Slightly Weak P. Atk.
-(21641, 4411, 10), -- Slightly Weak M. Atk.
-(21641, 4412, 12), -- Slightly Strong P. Def.
-(21641, 4413, 12), -- Slightly Strong M. Def.
-(21641, 4414, 2), -- Standard Type
-(21641, 4415, 6), -- Blunt Weapons
-(21641, 4416, 11), -- Giants
+(21641, 4032, 3), -- NPC Strike
+(21641, 4092, 1), -- NPC Puma Spirit Totem
+(21641, 4273, 3), -- Resist Dagger
+(21641, 4274, 1), -- Blunt Attack Weak Point
+(21641, 4408, 9), -- HP Modifiers
+(21641, 4409, 1), -- MP Modifiers
+(21641, 4410, 10), -- P. Atk. Modifiers
+(21641, 4411, 10), -- M. Atk. Modifiers
+(21641, 4412, 12), -- P. Def. Modifiers
+(21641, 4413, 12), -- M. Def. Modifiers
+(21641, 4414, 2), -- Armor Type
+(21641, 4415, 6), -- Weapon Type
+(21641, 4416, 11), -- Races
 (21641, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 (21641, 4599, 3), -- Decrease Speed
 -- Tasaba Lizardman Sniper
-(21642, 4071, 5), -- Resist Bow/Crossbow Weapons
-(21642, 4124, 3), -- Spear Attack
-(21642, 4408, 9), -- HP Increase (1/2x)
-(21642, 4409, 1), -- MP Increase (1x)
-(21642, 4410, 14), -- Strong P. Atk.
-(21642, 4411, 14), -- Strong M. Atk.
-(21642, 4412, 8), -- Weak P. Def.
-(21642, 4413, 8), -- Weak M. Def.
-(21642, 4414, 3), -- Light Armor Type
-(21642, 4415, 9), -- Bows
-(21642, 4416, 6), -- Humanoids
+(21642, 4071, 5), -- Resist Archery
+(21642, 4124, 3), -- NPC Spear Attack
+(21642, 4408, 9), -- HP Modifiers
+(21642, 4409, 1), -- MP Modifiers
+(21642, 4410, 14), -- P. Atk. Modifiers
+(21642, 4411, 14), -- M. Atk. Modifiers
+(21642, 4412, 8), -- P. Def. Modifiers
+(21642, 4413, 8), -- M. Def. Modifiers
+(21642, 4414, 3), -- Armor Type
+(21642, 4415, 9), -- Weapon Type
+(21642, 4416, 6), -- Races
 -- Tasaba Lizardman Sniper
-(21643, 4071, 5), -- Resist Bow/Crossbow Weapons
-(21643, 4091, 1), -- Spirit Ogre
-(21643, 4124, 3), -- Spear Attack
-(21643, 4244, 3), -- Wild Sweep
-(21643, 4408, 9), -- HP Increase (1/2x)
-(21643, 4409, 1), -- MP Increase (1x)
-(21643, 4410, 13), -- Slightly Strong P. Atk.
-(21643, 4411, 13), -- Slightly Strong M. Atk.
-(21643, 4412, 9), -- Slightly Weak P. Def.
-(21643, 4413, 9), -- Slightly Weak M. Def.
-(21643, 4414, 3), -- Light Armor Type
-(21643, 4415, 9), -- Bows
-(21643, 4416, 6), -- Humanoids
+(21643, 4071, 5), -- Resist Archery
+(21643, 4091, 1), -- NPC Ogre Spirit Totem
+(21643, 4124, 3), -- NPC Spear Attack
+(21643, 4244, 3), -- NPC Wild Sweep
+(21643, 4408, 9), -- HP Modifiers
+(21643, 4409, 1), -- MP Modifiers
+(21643, 4410, 13), -- P. Atk. Modifiers
+(21643, 4411, 13), -- M. Atk. Modifiers
+(21643, 4412, 9), -- P. Def. Modifiers
+(21643, 4413, 9), -- M. Def. Modifiers
+(21643, 4414, 3), -- Armor Type
+(21643, 4415, 9), -- Weapon Type
+(21643, 4416, 6), -- Races
 -- Lienrik
-(21644, 4408, 9), -- HP Increase (1/2x)
-(21644, 4409, 1), -- MP Increase (1x)
-(21644, 4410, 14), -- Strong P. Atk.
-(21644, 4411, 14), -- Strong M. Atk.
-(21644, 4412, 8), -- Weak P. Def.
-(21644, 4413, 8), -- Weak M. Def.
-(21644, 4414, 2), -- Standard Type
-(21644, 4415, 7), -- Daggers
-(21644, 4416, 3), -- Beasts
-(21644, 4565, 3), -- Rain of Fire
+(21644, 4408, 9), -- HP Modifiers
+(21644, 4409, 1), -- MP Modifiers
+(21644, 4410, 14), -- P. Atk. Modifiers
+(21644, 4411, 14), -- M. Atk. Modifiers
+(21644, 4412, 8), -- P. Def. Modifiers
+(21644, 4413, 8), -- M. Def. Modifiers
+(21644, 4414, 2), -- Armor Type
+(21644, 4415, 7), -- Weapon Type
+(21644, 4416, 3), -- Races
+(21644, 4565, 3), -- NPC Eruption
 -- Lienrik Lad
-(21645, 4076, 2), -- Slow
-(21645, 4157, 4), -- Blaze
-(21645, 4408, 9), -- HP Increase (1/2x)
-(21645, 4409, 1), -- MP Increase (1x)
-(21645, 4410, 14), -- Strong P. Atk.
-(21645, 4411, 14), -- Strong M. Atk.
-(21645, 4412, 8), -- Weak P. Def.
-(21645, 4413, 11), -- Average M. Def.
-(21645, 4414, 2), -- Standard Type
-(21645, 4415, 7), -- Daggers
-(21645, 4416, 3), -- Beasts
-(21645, 4560, 4), -- Fire Burn
+(21645, 4076, 2), -- Reduction in movement speed
+(21645, 4157, 4), -- NPC Blaze - Magic
+(21645, 4408, 9), -- HP Modifiers
+(21645, 4409, 1), -- MP Modifiers
+(21645, 4410, 14), -- P. Atk. Modifiers
+(21645, 4411, 14), -- M. Atk. Modifiers
+(21645, 4412, 8), -- P. Def. Modifiers
+(21645, 4413, 11), -- M. Def. Modifiers
+(21645, 4414, 2), -- Armor Type
+(21645, 4415, 7), -- Weapon Type
+(21645, 4416, 3), -- Races
+(21645, 4560, 4), -- NPC Fire Burn
 -- Grave Scarab
-(21646, 4408, 1), -- HP Increase (1x)
-(21646, 4409, 1), -- MP Increase (1x)
-(21646, 4410, 11), -- Average P. Atk.
-(21646, 4411, 11), -- Average M. Atk.
-(21646, 4412, 11), -- Average P. Def.
-(21646, 4413, 11), -- Average M. Def.
-(21646, 4414, 2), -- Standard Type
-(21646, 4415, 3), -- One-handed Sword
-(21646, 4416, 12), -- Bugs
-(21646, 4575, 2), -- Haste
-(21646, 4789, 3), -- High Level
+(21646, 4408, 1), -- HP Modifiers
+(21646, 4409, 1), -- MP Modifiers
+(21646, 4410, 11), -- P. Atk. Modifiers
+(21646, 4411, 11), -- M. Atk. Modifiers
+(21646, 4412, 11), -- P. Def. Modifiers
+(21646, 4413, 11), -- M. Def. Modifiers
+(21646, 4414, 2), -- Armor Type
+(21646, 4415, 3), -- Weapon Type
+(21646, 4416, 12), -- Races
+(21646, 4575, 2), -- NPC Clan Buff - Haste
+(21646, 4789, 3), -- NPC High Level
 -- Scavenger Scarab
-(21647, 4001, 7), -- Windstrike
-(21647, 4002, 7), -- HP Drain
+(21647, 4001, 7), -- NPC Wind Strike
+(21647, 4002, 7), -- NPC HP Drain
 (21647, 4035, 7), -- Poison
-(21647, 4408, 1), -- HP Increase (1x)
-(21647, 4409, 1), -- MP Increase (1x)
-(21647, 4410, 11), -- Average P. Atk.
-(21647, 4411, 11), -- Average M. Atk.
-(21647, 4412, 11), -- Average P. Def.
-(21647, 4413, 11), -- Average M. Def.
-(21647, 4414, 2), -- Standard Type
-(21647, 4415, 3), -- One-handed Sword
-(21647, 4416, 12), -- Bugs
-(21647, 4789, 3), -- High Level
+(21647, 4408, 1), -- HP Modifiers
+(21647, 4409, 1), -- MP Modifiers
+(21647, 4410, 11), -- P. Atk. Modifiers
+(21647, 4411, 11), -- M. Atk. Modifiers
+(21647, 4412, 11), -- P. Def. Modifiers
+(21647, 4413, 11), -- M. Def. Modifiers
+(21647, 4414, 2), -- Armor Type
+(21647, 4415, 3), -- Weapon Type
+(21647, 4416, 12), -- Races
+(21647, 4789, 3), -- NPC High Level
 -- Grave Ant
-(21648, 4067, 7), -- Blow
-(21648, 4408, 1), -- HP Increase (1x)
-(21648, 4409, 1), -- MP Increase (1x)
-(21648, 4410, 11), -- Average P. Atk.
-(21648, 4411, 11), -- Average M. Atk.
-(21648, 4412, 11), -- Average P. Def.
-(21648, 4413, 11), -- Average M. Def.
-(21648, 4414, 2), -- Standard Type
-(21648, 4415, 3), -- One-handed Sword
-(21648, 4416, 12), -- Bugs
-(21648, 4789, 3), -- High Level
+(21648, 4067, 7), -- NPC Mortal Blow
+(21648, 4408, 1), -- HP Modifiers
+(21648, 4409, 1), -- MP Modifiers
+(21648, 4410, 11), -- P. Atk. Modifiers
+(21648, 4411, 11), -- M. Atk. Modifiers
+(21648, 4412, 11), -- P. Def. Modifiers
+(21648, 4413, 11), -- M. Def. Modifiers
+(21648, 4414, 2), -- Armor Type
+(21648, 4415, 3), -- Weapon Type
+(21648, 4416, 12), -- Races
+(21648, 4789, 3), -- NPC High Level
 -- Scavenger Ant
-(21649, 4067, 7), -- Blow
-(21649, 4091, 1), -- Spirit Ogre
-(21649, 4232, 7), -- Whirlwind
-(21649, 4408, 1), -- HP Increase (1x)
-(21649, 4409, 1), -- MP Increase (1x)
-(21649, 4410, 11), -- Average P. Atk.
-(21649, 4411, 11), -- Average M. Atk.
-(21649, 4412, 11), -- Average P. Def.
-(21649, 4413, 11), -- Average M. Def.
-(21649, 4414, 2), -- Standard Type
-(21649, 4415, 3), -- One-handed Sword
-(21649, 4416, 12), -- Bugs
-(21649, 4789, 3), -- High Level
+(21649, 4067, 7), -- NPC Mortal Blow
+(21649, 4091, 1), -- NPC Ogre Spirit Totem
+(21649, 4232, 7), -- NPC AE Strike
+(21649, 4408, 1), -- HP Modifiers
+(21649, 4409, 1), -- MP Modifiers
+(21649, 4410, 11), -- P. Atk. Modifiers
+(21649, 4411, 11), -- M. Atk. Modifiers
+(21649, 4412, 11), -- P. Def. Modifiers
+(21649, 4413, 11), -- M. Def. Modifiers
+(21649, 4414, 2), -- Armor Type
+(21649, 4415, 3), -- Weapon Type
+(21649, 4416, 12), -- Races
+(21649, 4789, 3), -- NPC High Level
 -- Shrine Knight
 (21650, 4035, 8), -- Poison
-(21650, 4160, 8), -- Aura Burn
-(21650, 4408, 1), -- HP Increase (1x)
-(21650, 4409, 1), -- MP Increase (1x)
-(21650, 4410, 11), -- Average P. Atk.
-(21650, 4411, 11), -- Average M. Atk.
-(21650, 4412, 11), -- Average P. Def.
-(21650, 4413, 11), -- Average M. Def.
-(21650, 4414, 2), -- Standard Type
-(21650, 4415, 3), -- One-handed Sword
-(21650, 4416, 1), -- Undead
-(21650, 4571, 8), -- Blazing Circle
-(21650, 4630, 8), -- Twister
-(21650, 4635, 3), -- Acumen Berserker Wild Magic
-(21650, 4789, 4), -- High Level
+(21650, 4160, 8), -- NPC Aura Burn - Magic
+(21650, 4408, 1), -- HP Modifiers
+(21650, 4409, 1), -- MP Modifiers
+(21650, 4410, 11), -- P. Atk. Modifiers
+(21650, 4411, 11), -- M. Atk. Modifiers
+(21650, 4412, 11), -- P. Def. Modifiers
+(21650, 4413, 11), -- M. Def. Modifiers
+(21650, 4414, 2), -- Armor Type
+(21650, 4415, 3), -- Weapon Type
+(21650, 4416, 1), -- Races
+(21650, 4571, 8), -- NPC Blazing Circle
+(21650, 4630, 8), -- NPC MR - Twister
+(21650, 4635, 3), -- NPC Buff - Acumen Berserk WildMagic
+(21650, 4789, 4), -- NPC High Level
 -- Shrine Guard
-(21651, 4033, 8), -- Aura Burn
-(21651, 4408, 1), -- HP Increase (1x)
-(21651, 4409, 1), -- MP Increase (1x)
-(21651, 4410, 11), -- Average P. Atk.
-(21651, 4411, 11), -- Average M. Atk.
-(21651, 4412, 11), -- Average P. Def.
-(21651, 4413, 11), -- Average M. Def.
-(21651, 4414, 2), -- Standard Type
-(21651, 4415, 3), -- One-handed Sword
-(21651, 4416, 1), -- Undead
-(21651, 4789, 4), -- High Level
+(21651, 4033, 8), -- NPC Burn
+(21651, 4408, 1), -- HP Modifiers
+(21651, 4409, 1), -- MP Modifiers
+(21651, 4410, 11), -- P. Atk. Modifiers
+(21651, 4411, 11), -- M. Atk. Modifiers
+(21651, 4412, 11), -- P. Def. Modifiers
+(21651, 4413, 11), -- M. Def. Modifiers
+(21651, 4414, 2), -- Armor Type
+(21651, 4415, 3), -- Weapon Type
+(21651, 4416, 1), -- Races
+(21651, 4789, 4), -- NPC High Level
 -- Scarlet Stakato Noble
-(21652, 4408, 13), -- HP Increase (5x)
-(21652, 4409, 1), -- MP Increase (1x)
-(21652, 4410, 14), -- Strong P. Atk.
-(21652, 4411, 14), -- Strong M. Atk.
-(21652, 4412, 16), -- Very Strong P. Def.
-(21652, 4413, 8), -- Weak M. Def.
-(21652, 4414, 2), -- Standard Type
-(21652, 4415, 7), -- Daggers
-(21652, 4416, 6), -- Humanoids
-(21652, 4789, 6), -- High Level
+(21652, 4408, 13), -- HP Modifiers
+(21652, 4409, 1), -- MP Modifiers
+(21652, 4410, 14), -- P. Atk. Modifiers
+(21652, 4411, 14), -- M. Atk. Modifiers
+(21652, 4412, 16), -- P. Def. Modifiers
+(21652, 4413, 8), -- M. Def. Modifiers
+(21652, 4414, 2), -- Armor Type
+(21652, 4415, 7), -- Weapon Type
+(21652, 4416, 6), -- Races
+(21652, 4789, 6), -- NPC High Level
 -- Assassin Beetle
-(21653, 4274, 1), -- Blunt Weapon Weak Point
-(21653, 4408, 13), -- HP Increase (5x)
-(21653, 4409, 1), -- MP Increase (1x)
-(21653, 4410, 14), -- Strong P. Atk.
-(21653, 4411, 14), -- Strong M. Atk.
-(21653, 4412, 8), -- Weak P. Def.
-(21653, 4413, 8), -- Weak M. Def.
-(21653, 4414, 2), -- Standard Type
-(21653, 4415, 3), -- One-handed Sword
-(21653, 4416, 12), -- Bugs
+(21653, 4274, 1), -- Blunt Attack Weak Point
+(21653, 4408, 13), -- HP Modifiers
+(21653, 4409, 1), -- MP Modifiers
+(21653, 4410, 14), -- P. Atk. Modifiers
+(21653, 4411, 14), -- M. Atk. Modifiers
+(21653, 4412, 8), -- P. Def. Modifiers
+(21653, 4413, 8), -- M. Def. Modifiers
+(21653, 4414, 2), -- Armor Type
+(21653, 4415, 3), -- Weapon Type
+(21653, 4416, 12), -- Races
 (21653, 4437, 4), -- Greater Resist Bleeding
-(21653, 4789, 6), -- High Level
+(21653, 4789, 6), -- NPC High Level
 -- Necromancer of Destruction
-(21654, 4408, 13), -- HP Increase (5x)
-(21654, 4409, 1), -- MP Increase (1x)
-(21654, 4410, 14), -- Strong P. Atk.
-(21654, 4411, 14), -- Strong M. Atk.
-(21654, 4412, 11), -- Average P. Def.
-(21654, 4413, 8), -- Weak M. Def.
-(21654, 4414, 2), -- Standard Type
-(21654, 4415, 3), -- One-handed Sword
-(21654, 4416, 9), -- Demons
-(21654, 4789, 7), -- High Level
+(21654, 4408, 13), -- HP Modifiers
+(21654, 4409, 1), -- MP Modifiers
+(21654, 4410, 14), -- P. Atk. Modifiers
+(21654, 4411, 14), -- M. Atk. Modifiers
+(21654, 4412, 11), -- P. Def. Modifiers
+(21654, 4413, 8), -- M. Def. Modifiers
+(21654, 4414, 2), -- Armor Type
+(21654, 4415, 3), -- Weapon Type
+(21654, 4416, 9), -- Races
+(21654, 4789, 7), -- NPC High Level
 -- Arimanes of Destruction
-(21655, 4408, 13), -- HP Increase (5x)
-(21655, 4409, 1), -- MP Increase (1x)
-(21655, 4410, 14), -- Strong P. Atk.
-(21655, 4411, 14), -- Strong M. Atk.
-(21655, 4412, 8), -- Weak P. Def.
-(21655, 4413, 8), -- Weak M. Def.
-(21655, 4414, 2), -- Standard Type
-(21655, 4415, 4), -- One-handed Sword
-(21655, 4416, 9), -- Demons
-(21655, 4789, 7), -- High Level
+(21655, 4408, 13), -- HP Modifiers
+(21655, 4409, 1), -- MP Modifiers
+(21655, 4410, 14), -- P. Atk. Modifiers
+(21655, 4411, 14), -- M. Atk. Modifiers
+(21655, 4412, 8), -- P. Def. Modifiers
+(21655, 4413, 8), -- M. Def. Modifiers
+(21655, 4414, 2), -- Armor Type
+(21655, 4415, 4), -- Weapon Type
+(21655, 4416, 9), -- Races
+(21655, 4789, 7), -- NPC High Level
 -- Ashuras of Destruction
-(21656, 4408, 14), -- HP Increase (6x)
-(21656, 4409, 1), -- MP Increase (1x)
-(21656, 4410, 14), -- Strong P. Atk.
-(21656, 4411, 14), -- Strong M. Atk.
-(21656, 4412, 16), -- Very Strong P. Def.
-(21656, 4413, 8), -- Weak M. Def.
-(21656, 4414, 2), -- Standard Type
-(21656, 4415, 3), -- One-handed Sword
-(21656, 4416, 9), -- Demons
-(21656, 4789, 8), -- High Level
+(21656, 4408, 14), -- HP Modifiers
+(21656, 4409, 1), -- MP Modifiers
+(21656, 4410, 14), -- P. Atk. Modifiers
+(21656, 4411, 14), -- M. Atk. Modifiers
+(21656, 4412, 16), -- P. Def. Modifiers
+(21656, 4413, 8), -- M. Def. Modifiers
+(21656, 4414, 2), -- Armor Type
+(21656, 4415, 3), -- Weapon Type
+(21656, 4416, 9), -- Races
+(21656, 4789, 8), -- NPC High Level
 -- Magma Drake
-(21657, 4408, 14), -- HP Increase (6x)
-(21657, 4409, 1), -- MP Increase (1x)
-(21657, 4410, 14), -- Strong P. Atk.
-(21657, 4411, 14), -- Strong M. Atk.
-(21657, 4412, 13), -- Slightly Strong P. Def.
-(21657, 4413, 8), -- Weak M. Def.
-(21657, 4414, 2), -- Standard Type
-(21657, 4415, 3), -- One-handed Sword
-(21657, 4416, 10), -- Dragons
-(21657, 4789, 9), -- High Level
+(21657, 4408, 14), -- HP Modifiers
+(21657, 4409, 1), -- MP Modifiers
+(21657, 4410, 14), -- P. Atk. Modifiers
+(21657, 4411, 14), -- M. Atk. Modifiers
+(21657, 4412, 13), -- P. Def. Modifiers
+(21657, 4413, 8), -- M. Def. Modifiers
+(21657, 4414, 2), -- Armor Type
+(21657, 4415, 3), -- Weapon Type
+(21657, 4416, 10), -- Races
+(21657, 4789, 9), -- NPC High Level
 -- Punishment of Splendor
-(21658, 4085, 1), -- Critical Damage
+(21658, 4085, 1), -- Critical Power
 (21658, 4086, 1), -- Critical Chance
-(21658, 4103, 2), -- Ultimate Evasion
-(21658, 4408, 1), -- HP Increase (1x)
-(21658, 4409, 1), -- MP Increase (1x)
-(21658, 4410, 11), -- Average P. Atk.
-(21658, 4411, 11), -- Average M. Atk.
-(21658, 4412, 11), -- Average P. Def.
-(21658, 4413, 11), -- Average M. Def.
-(21658, 4414, 2), -- Standard Type
-(21658, 4415, 3), -- One-handed Sword
-(21658, 4416, 8), -- Angels
-(21658, 4641, 6), -- Super Strike
-(21658, 4671, 1), -- Teleport
+(21658, 4103, 2), -- NPC Ultimate Evasion
+(21658, 4408, 1), -- HP Modifiers
+(21658, 4409, 1), -- MP Modifiers
+(21658, 4410, 11), -- P. Atk. Modifiers
+(21658, 4411, 11), -- M. Atk. Modifiers
+(21658, 4412, 11), -- P. Def. Modifiers
+(21658, 4413, 11), -- M. Def. Modifiers
+(21658, 4414, 2), -- Armor Type
+(21658, 4415, 3), -- Weapon Type
+(21658, 4416, 8), -- Races
+(21658, 4641, 6), -- NPC Super Strike
+(21658, 4671, 1), -- AV - Teleport
 -- Otherworldly Invader Soldier
-(21659, 4067, 3), -- Blow
-(21659, 4408, 11), -- HP Increase (3x)
-(21659, 4409, 1), -- MP Increase (1x)
-(21659, 4410, 11), -- Average P. Atk.
-(21659, 4411, 11), -- Average M. Atk.
-(21659, 4412, 18), -- Extremely Strong P. Def.
-(21659, 4413, 11), -- Average M. Def.
-(21659, 4414, 3), -- Light Armor Type
-(21659, 4415, 7), -- Daggers
-(21659, 4416, 1), -- Undead
+(21659, 4067, 3), -- NPC Mortal Blow
+(21659, 4408, 11), -- HP Modifiers
+(21659, 4409, 1), -- MP Modifiers
+(21659, 4410, 11), -- P. Atk. Modifiers
+(21659, 4411, 11), -- M. Atk. Modifiers
+(21659, 4412, 18), -- P. Def. Modifiers
+(21659, 4413, 11), -- M. Def. Modifiers
+(21659, 4414, 3), -- Armor Type
+(21659, 4415, 7), -- Weapon Type
+(21659, 4416, 1), -- Races
 -- Otherworldly Invader Soldier
-(21660, 4408, 11), -- HP Increase (3x)
-(21660, 4409, 1), -- MP Increase (1x)
-(21660, 4410, 8), -- Weak P. Atk.
-(21660, 4411, 8), -- Weak M. Atk.
-(21660, 4412, 20), -- Extremely Strong P. Def.
-(21660, 4413, 14), -- Strong M. Def.
-(21660, 4414, 3), -- Light Armor Type
-(21660, 4415, 7), -- Daggers
-(21660, 4416, 1), -- Undead
+(21660, 4408, 11), -- HP Modifiers
+(21660, 4409, 1), -- MP Modifiers
+(21660, 4410, 8), -- P. Atk. Modifiers
+(21660, 4411, 8), -- M. Atk. Modifiers
+(21660, 4412, 20), -- P. Def. Modifiers
+(21660, 4413, 14), -- M. Def. Modifiers
+(21660, 4414, 3), -- Armor Type
+(21660, 4415, 7), -- Weapon Type
+(21660, 4416, 1), -- Races
 (21660, 4579, 3), -- Bleed
 -- Otherworldly Invader Archer
-(21661, 4274, 1), -- Blunt Weapon Weak Point
-(21661, 4408, 11), -- HP Increase (3x)
-(21661, 4409, 1), -- MP Increase (1x)
-(21661, 4410, 14), -- Strong P. Atk.
-(21661, 4411, 14), -- Strong M. Atk.
-(21661, 4412, 13), -- Slightly Strong P. Def.
-(21661, 4413, 8), -- Weak M. Def.
-(21661, 4414, 3), -- Light Armor Type
-(21661, 4415, 9), -- Bows
-(21661, 4416, 1), -- Undead
+(21661, 4274, 1), -- Blunt Attack Weak Point
+(21661, 4408, 11), -- HP Modifiers
+(21661, 4409, 1), -- MP Modifiers
+(21661, 4410, 14), -- P. Atk. Modifiers
+(21661, 4411, 14), -- M. Atk. Modifiers
+(21661, 4412, 13), -- P. Def. Modifiers
+(21661, 4413, 8), -- M. Def. Modifiers
+(21661, 4414, 3), -- Armor Type
+(21661, 4415, 9), -- Weapon Type
+(21661, 4416, 1), -- Races
 -- Otherworldly Invader Elite Soldier
-(21662, 4408, 11), -- HP Increase (3x)
-(21662, 4409, 1), -- MP Increase (1x)
-(21662, 4410, 11), -- Average P. Atk.
-(21662, 4411, 11), -- Average M. Atk.
-(21662, 4412, 11), -- Average P. Def.
-(21662, 4413, 11), -- Average M. Def.
-(21662, 4414, 3), -- Light Armor Type
-(21662, 4415, 3), -- One-handed Sword
-(21662, 4416, 1), -- Undead
+(21662, 4408, 11), -- HP Modifiers
+(21662, 4409, 1), -- MP Modifiers
+(21662, 4410, 11), -- P. Atk. Modifiers
+(21662, 4411, 11), -- M. Atk. Modifiers
+(21662, 4412, 11), -- P. Def. Modifiers
+(21662, 4413, 11), -- M. Def. Modifiers
+(21662, 4414, 3), -- Armor Type
+(21662, 4415, 3), -- Weapon Type
+(21662, 4416, 1), -- Races
 (21662, 4643, 3), -- Decrease Speed
 -- Otherworldly Invader Shaman
-(21663, 4157, 3), -- Blaze
-(21663, 4160, 3), -- Aura Burn
-(21663, 4408, 11), -- HP Increase (3x)
-(21663, 4409, 1), -- MP Increase (1x)
-(21663, 4410, 11), -- Average P. Atk.
-(21663, 4411, 11), -- Average M. Atk.
-(21663, 4412, 11), -- Average P. Def.
-(21663, 4413, 18), -- Extremely Strong M. Def.
-(21663, 4414, 3), -- Light Armor Type
-(21663, 4415, 3), -- One-handed Sword
-(21663, 4416, 1), -- Undead
-(21663, 4675, 1), -- Fighter Dispell
+(21663, 4157, 3), -- NPC Blaze - Magic
+(21663, 4160, 3), -- NPC Aura Burn - Magic
+(21663, 4408, 11), -- HP Modifiers
+(21663, 4409, 1), -- MP Modifiers
+(21663, 4410, 11), -- P. Atk. Modifiers
+(21663, 4411, 11), -- M. Atk. Modifiers
+(21663, 4412, 11), -- P. Def. Modifiers
+(21663, 4413, 18), -- M. Def. Modifiers
+(21663, 4414, 3), -- Armor Type
+(21663, 4415, 3), -- Weapon Type
+(21663, 4416, 1), -- Races
+(21663, 4675, 1), -- NPC Dispel Fighter Buff
 -- Otherworldly Invader Priest
 (21664, 4046, 3), -- Sleep
-(21664, 4065, 3), -- Heal
-(21664, 4408, 10), -- HP Increase (2x)
-(21664, 4409, 1), -- MP Increase (1x)
-(21664, 4410, 11), -- Average P. Atk.
-(21664, 4411, 11), -- Average M. Atk.
-(21664, 4412, 11), -- Average P. Def.
-(21664, 4413, 18), -- Extremely Strong M. Def.
-(21664, 4414, 3), -- Light Armor Type
-(21664, 4415, 3), -- One-handed Sword
-(21664, 4416, 1), -- Undead
+(21664, 4065, 3), -- NPC Heal
+(21664, 4408, 10), -- HP Modifiers
+(21664, 4409, 1), -- MP Modifiers
+(21664, 4410, 11), -- P. Atk. Modifiers
+(21664, 4411, 11), -- M. Atk. Modifiers
+(21664, 4412, 11), -- P. Def. Modifiers
+(21664, 4413, 18), -- M. Def. Modifiers
+(21664, 4414, 3), -- Armor Type
+(21664, 4415, 3), -- Weapon Type
+(21664, 4416, 1), -- Races
 -- Otherworldly Invader Magus
-(21665, 4160, 3), -- Aura Burn
-(21665, 4257, 3), -- Hydro Blast
-(21665, 4408, 11), -- HP Increase (3x)
-(21665, 4409, 1), -- MP Increase (1x)
-(21665, 4410, 14), -- Strong P. Atk.
-(21665, 4411, 14), -- Strong M. Atk.
-(21665, 4412, 8), -- Weak P. Def.
-(21665, 4413, 8), -- Weak M. Def.
-(21665, 4414, 3), -- Light Armor Type
-(21665, 4415, 3), -- One-handed Sword
-(21665, 4416, 1), -- Undead
+(21665, 4160, 3), -- NPC Aura Burn - Magic
+(21665, 4257, 3), -- NPC Hydroblast - Magic
+(21665, 4408, 11), -- HP Modifiers
+(21665, 4409, 1), -- MP Modifiers
+(21665, 4410, 14), -- P. Atk. Modifiers
+(21665, 4411, 14), -- M. Atk. Modifiers
+(21665, 4412, 8), -- P. Def. Modifiers
+(21665, 4413, 8), -- M. Def. Modifiers
+(21665, 4414, 3), -- Armor Type
+(21665, 4415, 3), -- Weapon Type
+(21665, 4416, 1), -- Races
 -- Otherworldly Invader Martyrs
 (21666, 4286, 1), -- Greater Resist Sleep
 (21666, 4288, 1), -- Greater Resist Hold
-(21666, 4408, 11), -- HP Increase (3x)
-(21666, 4409, 1), -- MP Increase (1x)
-(21666, 4410, 11), -- Average P. Atk.
-(21666, 4411, 11), -- Average M. Atk.
-(21666, 4412, 11), -- Average P. Def.
-(21666, 4413, 11), -- Average M. Def.
-(21666, 4414, 3), -- Light Armor Type
-(21666, 4415, 3), -- One-handed Sword
-(21666, 4416, 1), -- Undead
-(21666, 4614, 3), -- Death Bomb
+(21666, 4408, 11), -- HP Modifiers
+(21666, 4409, 1), -- MP Modifiers
+(21666, 4410, 11), -- P. Atk. Modifiers
+(21666, 4411, 11), -- M. Atk. Modifiers
+(21666, 4412, 11), -- P. Def. Modifiers
+(21666, 4413, 11), -- M. Def. Modifiers
+(21666, 4414, 3), -- Armor Type
+(21666, 4415, 3), -- Weapon Type
+(21666, 4416, 1), -- Races
+(21666, 4614, 3), -- NPC Death Bomb
 -- Otherworldly Invader Warrior
-(21667, 4408, 11), -- HP Increase (3x)
-(21667, 4409, 1), -- MP Increase (1x)
-(21667, 4410, 11), -- Average P. Atk.
-(21667, 4411, 11), -- Average M. Atk.
-(21667, 4412, 11), -- Average P. Def.
-(21667, 4413, 11), -- Average M. Def.
-(21667, 4414, 2), -- Standard Type
-(21667, 4415, 7), -- Daggers
-(21667, 4416, 1), -- Undead
+(21667, 4408, 11), -- HP Modifiers
+(21667, 4409, 1), -- MP Modifiers
+(21667, 4410, 11), -- P. Atk. Modifiers
+(21667, 4411, 11), -- M. Atk. Modifiers
+(21667, 4412, 11), -- P. Def. Modifiers
+(21667, 4413, 11), -- M. Def. Modifiers
+(21667, 4414, 2), -- Armor Type
+(21667, 4415, 7), -- Weapon Type
+(21667, 4416, 1), -- Races
 -- Otherworldly Invader Soldier
-(21668, 4408, 11), -- HP Increase (3x)
-(21668, 4409, 1), -- MP Increase (1x)
-(21668, 4410, 11), -- Average P. Atk.
-(21668, 4411, 11), -- Average M. Atk.
-(21668, 4412, 11), -- Average P. Def.
-(21668, 4413, 11), -- Average M. Def.
-(21668, 4414, 3), -- Light Armor Type
-(21668, 4415, 7), -- Daggers
-(21668, 4416, 1), -- Undead
+(21668, 4408, 11), -- HP Modifiers
+(21668, 4409, 1), -- MP Modifiers
+(21668, 4410, 11), -- P. Atk. Modifiers
+(21668, 4411, 11), -- M. Atk. Modifiers
+(21668, 4412, 11), -- P. Def. Modifiers
+(21668, 4413, 11), -- M. Def. Modifiers
+(21668, 4414, 3), -- Armor Type
+(21668, 4415, 7), -- Weapon Type
+(21668, 4416, 1), -- Races
 (21668, 4581, 3), -- Hold
 -- Otherworldly Invader Discipline
 (21669, 4117, 3), -- Paralysis
-(21669, 4274, 1), -- Blunt Weapon Weak Point
-(21669, 4408, 11), -- HP Increase (3x)
-(21669, 4409, 1), -- MP Increase (1x)
-(21669, 4410, 11), -- Average P. Atk.
-(21669, 4411, 11), -- Average M. Atk.
-(21669, 4412, 11), -- Average P. Def.
-(21669, 4413, 11), -- Average M. Def.
-(21669, 4414, 2), -- Standard Type
-(21669, 4415, 7), -- Daggers
-(21669, 4416, 1), -- Undead
+(21669, 4274, 1), -- Blunt Attack Weak Point
+(21669, 4408, 11), -- HP Modifiers
+(21669, 4409, 1), -- MP Modifiers
+(21669, 4410, 11), -- P. Atk. Modifiers
+(21669, 4411, 11), -- M. Atk. Modifiers
+(21669, 4412, 11), -- P. Def. Modifiers
+(21669, 4413, 11), -- M. Def. Modifiers
+(21669, 4414, 2), -- Armor Type
+(21669, 4415, 7), -- Weapon Type
+(21669, 4416, 1), -- Races
 -- Otherworldly Invader Berserker
 (21670, 4095, 1), -- Damage Shield
-(21670, 4119, 2), -- Decrease Accuracy
-(21670, 4274, 1), -- Blunt Weapon Weak Point
-(21670, 4408, 11), -- HP Increase (3x)
-(21670, 4409, 1), -- MP Increase (1x)
-(21670, 4410, 9), -- Slightly Weak P. Atk.
-(21670, 4411, 9), -- Slightly Weak M. Atk.
-(21670, 4412, 13), -- Slightly Strong P. Def.
-(21670, 4413, 13), -- Slightly Strong M. Def.
-(21670, 4414, 2), -- Standard Type
-(21670, 4415, 7), -- Daggers
-(21670, 4416, 1), -- Undead
+(21670, 4119, 2), -- Fall in accuracy
+(21670, 4274, 1), -- Blunt Attack Weak Point
+(21670, 4408, 11), -- HP Modifiers
+(21670, 4409, 1), -- MP Modifiers
+(21670, 4410, 9), -- P. Atk. Modifiers
+(21670, 4411, 9), -- M. Atk. Modifiers
+(21670, 4412, 13), -- P. Def. Modifiers
+(21670, 4413, 13), -- M. Def. Modifiers
+(21670, 4414, 2), -- Armor Type
+(21670, 4415, 7), -- Weapon Type
+(21670, 4416, 1), -- Races
 -- Otherworldly Invader Food
 (21671, 4045, 1), -- Resist Full Magic Attack
-(21671, 4408, 1), -- HP Increase (1x)
-(21671, 4409, 1), -- MP Increase (1x)
-(21671, 4410, 11), -- Average P. Atk.
-(21671, 4411, 11), -- Average M. Atk.
-(21671, 4412, 11), -- Average P. Def.
-(21671, 4413, 11), -- Average M. Def.
-(21671, 4414, 2), -- Standard Type
-(21671, 4415, 3), -- One-handed Sword
-(21671, 4416, 2), -- Magic Creatures
+(21671, 4408, 1), -- HP Modifiers
+(21671, 4409, 1), -- MP Modifiers
+(21671, 4410, 11), -- P. Atk. Modifiers
+(21671, 4411, 11), -- M. Atk. Modifiers
+(21671, 4412, 11), -- P. Def. Modifiers
+(21671, 4413, 11), -- M. Def. Modifiers
+(21671, 4414, 2), -- Armor Type
+(21671, 4415, 3), -- Weapon Type
+(21671, 4416, 2), -- Races
 -- Otherworldly Invader Elite Soldier
-(21672, 4032, 3), -- Power Strike
-(21672, 4274, 1), -- Blunt Weapon Weak Point
-(21672, 4408, 14), -- HP Increase (6x)
-(21672, 4409, 1), -- MP Increase (1x)
-(21672, 4410, 11), -- Average P. Atk.
-(21672, 4411, 11), -- Average M. Atk.
-(21672, 4412, 11), -- Average P. Def.
-(21672, 4413, 11), -- Average M. Def.
-(21672, 4414, 2), -- Standard Type
-(21672, 4415, 3), -- One-handed Sword
-(21672, 4416, 1), -- Undead
+(21672, 4032, 3), -- NPC Strike
+(21672, 4274, 1), -- Blunt Attack Weak Point
+(21672, 4408, 14), -- HP Modifiers
+(21672, 4409, 1), -- MP Modifiers
+(21672, 4410, 11), -- P. Atk. Modifiers
+(21672, 4411, 11), -- M. Atk. Modifiers
+(21672, 4412, 11), -- P. Def. Modifiers
+(21672, 4413, 11), -- M. Def. Modifiers
+(21672, 4414, 2), -- Armor Type
+(21672, 4415, 3), -- Weapon Type
+(21672, 4416, 1), -- Races
 -- Otherworldly Invader Elite Soldier
-(21673, 4274, 1), -- Blunt Weapon Weak Point
-(21673, 4408, 14), -- HP Increase (6x)
-(21673, 4409, 1), -- MP Increase (1x)
-(21673, 4410, 11), -- Average P. Atk.
-(21673, 4411, 11), -- Average M. Atk.
-(21673, 4412, 11), -- Average P. Def.
-(21673, 4413, 11), -- Average M. Def.
-(21673, 4414, 2), -- Standard Type
-(21673, 4415, 3), -- One-handed Sword
-(21673, 4416, 1), -- Undead
+(21673, 4274, 1), -- Blunt Attack Weak Point
+(21673, 4408, 14), -- HP Modifiers
+(21673, 4409, 1), -- MP Modifiers
+(21673, 4410, 11), -- P. Atk. Modifiers
+(21673, 4411, 11), -- M. Atk. Modifiers
+(21673, 4412, 11), -- P. Def. Modifiers
+(21673, 4413, 11), -- M. Def. Modifiers
+(21673, 4414, 2), -- Armor Type
+(21673, 4415, 3), -- Weapon Type
+(21673, 4416, 1), -- Races
 (21673, 4582, 3), -- Poison
 -- Otherworldly Invader Elite Soldier
-(21674, 4274, 1), -- Blunt Weapon Weak Point
-(21674, 4408, 8), -- HP Increase (1/4x)
-(21674, 4409, 1), -- MP Increase (1x)
-(21674, 4410, 8), -- Weak P. Atk.
-(21674, 4411, 8), -- Weak M. Atk.
-(21674, 4412, 14), -- Strong P. Def.
-(21674, 4413, 14), -- Strong M. Def.
-(21674, 4414, 2), -- Standard Type
-(21674, 4415, 3), -- One-handed Sword
-(21674, 4416, 1), -- Undead
-(21674, 4573, 3), -- Sonic Blaster
+(21674, 4274, 1), -- Blunt Attack Weak Point
+(21674, 4408, 8), -- HP Modifiers
+(21674, 4409, 1), -- MP Modifiers
+(21674, 4410, 8), -- P. Atk. Modifiers
+(21674, 4411, 8), -- M. Atk. Modifiers
+(21674, 4412, 14), -- P. Def. Modifiers
+(21674, 4413, 14), -- M. Def. Modifiers
+(21674, 4414, 2), -- Armor Type
+(21674, 4415, 3), -- Weapon Type
+(21674, 4416, 1), -- Races
+(21674, 4573, 3), -- NPC Sonic Blaster
 -- Otherworldly Invader Elite Soldier
-(21675, 4274, 1), -- Blunt Weapon Weak Point
-(21675, 4408, 9), -- HP Increase (1/2x)
-(21675, 4409, 1), -- MP Increase (1x)
-(21675, 4410, 14), -- Strong P. Atk.
-(21675, 4411, 14), -- Strong M. Atk.
-(21675, 4412, 8), -- Weak P. Def.
-(21675, 4413, 8), -- Weak M. Def.
-(21675, 4414, 2), -- Standard Type
-(21675, 4415, 3), -- One-handed Sword
-(21675, 4416, 1), -- Undead
-(21675, 4572, 3), -- Triple Sonic Slash
+(21675, 4274, 1), -- Blunt Attack Weak Point
+(21675, 4408, 9), -- HP Modifiers
+(21675, 4409, 1), -- MP Modifiers
+(21675, 4410, 14), -- P. Atk. Modifiers
+(21675, 4411, 14), -- M. Atk. Modifiers
+(21675, 4412, 8), -- P. Def. Modifiers
+(21675, 4413, 8), -- M. Def. Modifiers
+(21675, 4414, 2), -- Armor Type
+(21675, 4415, 3), -- Weapon Type
+(21675, 4416, 1), -- Races
+(21675, 4572, 3), -- NPC Triple Sonic Slash
 -- Otherworldly Invader Warrior
-(21676, 4274, 1), -- Blunt Weapon Weak Point
-(21676, 4408, 14), -- HP Increase (6x)
-(21676, 4409, 1), -- MP Increase (1x)
-(21676, 4410, 11), -- Average P. Atk.
-(21676, 4411, 11), -- Average M. Atk.
-(21676, 4412, 11), -- Average P. Def.
-(21676, 4413, 11), -- Average M. Def.
-(21676, 4414, 2), -- Standard Type
-(21676, 4415, 7), -- Daggers
-(21676, 4416, 1), -- Undead
-(21676, 4560, 3), -- Fire Burn
+(21676, 4274, 1), -- Blunt Attack Weak Point
+(21676, 4408, 14), -- HP Modifiers
+(21676, 4409, 1), -- MP Modifiers
+(21676, 4410, 11), -- P. Atk. Modifiers
+(21676, 4411, 11), -- M. Atk. Modifiers
+(21676, 4412, 11), -- P. Def. Modifiers
+(21676, 4413, 11), -- M. Def. Modifiers
+(21676, 4414, 2), -- Armor Type
+(21676, 4415, 7), -- Weapon Type
+(21676, 4416, 1), -- Races
+(21676, 4560, 3), -- NPC Fire Burn
 -- Otherworldly Invader Elite Soldier
-(21677, 4274, 1), -- Blunt Weapon Weak Point
-(21677, 4408, 14), -- HP Increase (6x)
-(21677, 4409, 1), -- MP Increase (1x)
-(21677, 4410, 9), -- Slightly Weak P. Atk.
-(21677, 4411, 9), -- Slightly Weak M. Atk.
-(21677, 4412, 13), -- Slightly Strong P. Def.
-(21677, 4413, 13), -- Slightly Strong M. Def.
-(21677, 4414, 2), -- Standard Type
-(21677, 4415, 3), -- One-handed Sword
-(21677, 4416, 1), -- Undead
-(21677, 4572, 3), -- Triple Sonic Slash
+(21677, 4274, 1), -- Blunt Attack Weak Point
+(21677, 4408, 14), -- HP Modifiers
+(21677, 4409, 1), -- MP Modifiers
+(21677, 4410, 9), -- P. Atk. Modifiers
+(21677, 4411, 9), -- M. Atk. Modifiers
+(21677, 4412, 13), -- P. Def. Modifiers
+(21677, 4413, 13), -- M. Def. Modifiers
+(21677, 4414, 2), -- Armor Type
+(21677, 4415, 3), -- Weapon Type
+(21677, 4416, 1), -- Races
+(21677, 4572, 3), -- NPC Triple Sonic Slash
 -- Otherworldly Invader Elite Soldier
-(21678, 4274, 1), -- Blunt Weapon Weak Point
-(21678, 4408, 14), -- HP Increase (6x)
-(21678, 4409, 1), -- MP Increase (1x)
-(21678, 4410, 13), -- Slightly Strong P. Atk.
-(21678, 4411, 13), -- Slightly Strong M. Atk.
-(21678, 4412, 9), -- Slightly Weak P. Def.
-(21678, 4413, 9), -- Slightly Weak M. Def.
-(21678, 4414, 2), -- Standard Type
-(21678, 4415, 3), -- One-handed Sword
-(21678, 4416, 1), -- Undead
-(21678, 4572, 3), -- Triple Sonic Slash
+(21678, 4274, 1), -- Blunt Attack Weak Point
+(21678, 4408, 14), -- HP Modifiers
+(21678, 4409, 1), -- MP Modifiers
+(21678, 4410, 13), -- P. Atk. Modifiers
+(21678, 4411, 13), -- M. Atk. Modifiers
+(21678, 4412, 9), -- P. Def. Modifiers
+(21678, 4413, 9), -- M. Def. Modifiers
+(21678, 4414, 2), -- Armor Type
+(21678, 4415, 3), -- Weapon Type
+(21678, 4416, 1), -- Races
+(21678, 4572, 3), -- NPC Triple Sonic Slash
 -- Otherworldly Invader Elite Soldier
-(21679, 4274, 1), -- Blunt Weapon Weak Point
-(21679, 4408, 14), -- HP Increase (6x)
-(21679, 4409, 1), -- MP Increase (1x)
-(21679, 4410, 9), -- Slightly Weak P. Atk.
-(21679, 4411, 9), -- Slightly Weak M. Atk.
-(21679, 4412, 13), -- Slightly Strong P. Def.
-(21679, 4413, 13), -- Slightly Strong M. Def.
-(21679, 4414, 2), -- Standard Type
-(21679, 4415, 3), -- One-handed Sword
-(21679, 4416, 1), -- Undead
-(21679, 4573, 3), -- Sonic Blaster
+(21679, 4274, 1), -- Blunt Attack Weak Point
+(21679, 4408, 14), -- HP Modifiers
+(21679, 4409, 1), -- MP Modifiers
+(21679, 4410, 9), -- P. Atk. Modifiers
+(21679, 4411, 9), -- M. Atk. Modifiers
+(21679, 4412, 13), -- P. Def. Modifiers
+(21679, 4413, 13), -- M. Def. Modifiers
+(21679, 4414, 2), -- Armor Type
+(21679, 4415, 3), -- Weapon Type
+(21679, 4416, 1), -- Races
+(21679, 4573, 3), -- NPC Sonic Blaster
 -- Otherworldly Invader Elite Soldier
-(21680, 4274, 1), -- Blunt Weapon Weak Point
-(21680, 4408, 14), -- HP Increase (6x)
-(21680, 4409, 1), -- MP Increase (1x)
-(21680, 4410, 13), -- Slightly Strong P. Atk.
-(21680, 4411, 13), -- Slightly Strong M. Atk.
-(21680, 4412, 9), -- Slightly Weak P. Def.
-(21680, 4413, 9), -- Slightly Weak M. Def.
-(21680, 4414, 2), -- Standard Type
-(21680, 4415, 3), -- One-handed Sword
-(21680, 4416, 1), -- Undead
-(21680, 4573, 3), -- Sonic Blaster
+(21680, 4274, 1), -- Blunt Attack Weak Point
+(21680, 4408, 14), -- HP Modifiers
+(21680, 4409, 1), -- MP Modifiers
+(21680, 4410, 13), -- P. Atk. Modifiers
+(21680, 4411, 13), -- M. Atk. Modifiers
+(21680, 4412, 9), -- P. Def. Modifiers
+(21680, 4413, 9), -- M. Def. Modifiers
+(21680, 4414, 2), -- Armor Type
+(21680, 4415, 3), -- Weapon Type
+(21680, 4416, 1), -- Races
+(21680, 4573, 3), -- NPC Sonic Blaster
 -- Otherworldly Invader Magus
-(21681, 4408, 14), -- HP Increase (6x)
-(21681, 4409, 1), -- MP Increase (1x)
-(21681, 4410, 11), -- Average P. Atk.
-(21681, 4411, 11), -- Average M. Atk.
-(21681, 4412, 11), -- Average P. Def.
-(21681, 4413, 11), -- Average M. Def.
-(21681, 4414, 2), -- Standard Type
-(21681, 4415, 3), -- One-handed Sword
-(21681, 4416, 1), -- Undead
-(21681, 4561, 3), -- Fire Burn
-(21681, 4563, 3), -- Solar Flare
+(21681, 4408, 14), -- HP Modifiers
+(21681, 4409, 1), -- MP Modifiers
+(21681, 4410, 11), -- P. Atk. Modifiers
+(21681, 4411, 11), -- M. Atk. Modifiers
+(21681, 4412, 11), -- P. Def. Modifiers
+(21681, 4413, 11), -- M. Def. Modifiers
+(21681, 4414, 2), -- Armor Type
+(21681, 4415, 3), -- Weapon Type
+(21681, 4416, 1), -- Races
+(21681, 4561, 3), -- NPC Fire Burn - Magic
+(21681, 4563, 3), -- NPC Solar Flare - Magic
 -- Dimension Invader Soldier
-(21682, 4067, 4), -- Blow
-(21682, 4408, 11), -- HP Increase (3x)
-(21682, 4409, 1), -- MP Increase (1x)
-(21682, 4410, 11), -- Average P. Atk.
-(21682, 4411, 11), -- Average M. Atk.
-(21682, 4412, 18), -- Extremely Strong P. Def.
-(21682, 4413, 11), -- Average M. Def.
-(21682, 4414, 3), -- Light Armor Type
-(21682, 4415, 7), -- Daggers
-(21682, 4416, 1), -- Undead
+(21682, 4067, 4), -- NPC Mortal Blow
+(21682, 4408, 11), -- HP Modifiers
+(21682, 4409, 1), -- MP Modifiers
+(21682, 4410, 11), -- P. Atk. Modifiers
+(21682, 4411, 11), -- M. Atk. Modifiers
+(21682, 4412, 18), -- P. Def. Modifiers
+(21682, 4413, 11), -- M. Def. Modifiers
+(21682, 4414, 3), -- Armor Type
+(21682, 4415, 7), -- Weapon Type
+(21682, 4416, 1), -- Races
 -- Dimension Invader Soldier
-(21683, 4408, 11), -- HP Increase (3x)
-(21683, 4409, 1), -- MP Increase (1x)
-(21683, 4410, 8), -- Weak P. Atk.
-(21683, 4411, 8), -- Weak M. Atk.
-(21683, 4412, 20), -- Extremely Strong P. Def.
-(21683, 4413, 14), -- Strong M. Def.
-(21683, 4414, 3), -- Light Armor Type
-(21683, 4415, 7), -- Daggers
-(21683, 4416, 1), -- Undead
+(21683, 4408, 11), -- HP Modifiers
+(21683, 4409, 1), -- MP Modifiers
+(21683, 4410, 8), -- P. Atk. Modifiers
+(21683, 4411, 8), -- M. Atk. Modifiers
+(21683, 4412, 20), -- P. Def. Modifiers
+(21683, 4413, 14), -- M. Def. Modifiers
+(21683, 4414, 3), -- Armor Type
+(21683, 4415, 7), -- Weapon Type
+(21683, 4416, 1), -- Races
 (21683, 4579, 4), -- Bleed
 -- Dimension Invader Archer
-(21684, 4274, 1), -- Blunt Weapon Weak Point
-(21684, 4408, 11), -- HP Increase (3x)
-(21684, 4409, 1), -- MP Increase (1x)
-(21684, 4410, 14), -- Strong P. Atk.
-(21684, 4411, 14), -- Strong M. Atk.
-(21684, 4412, 13), -- Slightly Strong P. Def.
-(21684, 4413, 8), -- Weak M. Def.
-(21684, 4414, 3), -- Light Armor Type
-(21684, 4415, 9), -- Bows
-(21684, 4416, 1), -- Undead
+(21684, 4274, 1), -- Blunt Attack Weak Point
+(21684, 4408, 11), -- HP Modifiers
+(21684, 4409, 1), -- MP Modifiers
+(21684, 4410, 14), -- P. Atk. Modifiers
+(21684, 4411, 14), -- M. Atk. Modifiers
+(21684, 4412, 13), -- P. Def. Modifiers
+(21684, 4413, 8), -- M. Def. Modifiers
+(21684, 4414, 3), -- Armor Type
+(21684, 4415, 9), -- Weapon Type
+(21684, 4416, 1), -- Races
 -- Dimension Invader Elite Soldier
-(21685, 4408, 11), -- HP Increase (3x)
-(21685, 4409, 1), -- MP Increase (1x)
-(21685, 4410, 11), -- Average P. Atk.
-(21685, 4411, 11), -- Average M. Atk.
-(21685, 4412, 11), -- Average P. Def.
-(21685, 4413, 15), -- Strong M. Def.
-(21685, 4414, 3), -- Light Armor Type
-(21685, 4415, 3), -- One-handed Sword
-(21685, 4416, 1), -- Undead
+(21685, 4408, 11), -- HP Modifiers
+(21685, 4409, 1), -- MP Modifiers
+(21685, 4410, 11), -- P. Atk. Modifiers
+(21685, 4411, 11), -- M. Atk. Modifiers
+(21685, 4412, 11), -- P. Def. Modifiers
+(21685, 4413, 15), -- M. Def. Modifiers
+(21685, 4414, 3), -- Armor Type
+(21685, 4415, 3), -- Weapon Type
+(21685, 4416, 1), -- Races
 (21685, 4643, 4), -- Decrease Speed
 -- Dimension Invader Shaman
-(21686, 4157, 4), -- Blaze
-(21686, 4160, 4), -- Aura Burn
-(21686, 4408, 11), -- HP Increase (3x)
-(21686, 4409, 1), -- MP Increase (1x)
-(21686, 4410, 11), -- Average P. Atk.
-(21686, 4411, 11), -- Average M. Atk.
-(21686, 4412, 11), -- Average P. Def.
-(21686, 4413, 18), -- Extremely Strong M. Def.
-(21686, 4414, 3), -- Light Armor Type
-(21686, 4415, 3), -- One-handed Sword
-(21686, 4416, 1), -- Undead
-(21686, 4675, 1), -- Fighter Dispell
+(21686, 4157, 4), -- NPC Blaze - Magic
+(21686, 4160, 4), -- NPC Aura Burn - Magic
+(21686, 4408, 11), -- HP Modifiers
+(21686, 4409, 1), -- MP Modifiers
+(21686, 4410, 11), -- P. Atk. Modifiers
+(21686, 4411, 11), -- M. Atk. Modifiers
+(21686, 4412, 11), -- P. Def. Modifiers
+(21686, 4413, 18), -- M. Def. Modifiers
+(21686, 4414, 3), -- Armor Type
+(21686, 4415, 3), -- Weapon Type
+(21686, 4416, 1), -- Races
+(21686, 4675, 1), -- NPC Dispel Fighter Buff
 -- Dimension Invader Priest
 (21687, 4046, 4), -- Sleep
-(21687, 4065, 4), -- Heal
-(21687, 4408, 10), -- HP Increase (2x)
-(21687, 4409, 1), -- MP Increase (1x)
-(21687, 4410, 11), -- Average P. Atk.
-(21687, 4411, 11), -- Average M. Atk.
-(21687, 4412, 11), -- Average P. Def.
-(21687, 4413, 18), -- Extremely Strong M. Def.
-(21687, 4414, 3), -- Light Armor Type
-(21687, 4415, 3), -- One-handed Sword
-(21687, 4416, 1), -- Undead
+(21687, 4065, 4), -- NPC Heal
+(21687, 4408, 10), -- HP Modifiers
+(21687, 4409, 1), -- MP Modifiers
+(21687, 4410, 11), -- P. Atk. Modifiers
+(21687, 4411, 11), -- M. Atk. Modifiers
+(21687, 4412, 11), -- P. Def. Modifiers
+(21687, 4413, 18), -- M. Def. Modifiers
+(21687, 4414, 3), -- Armor Type
+(21687, 4415, 3), -- Weapon Type
+(21687, 4416, 1), -- Races
 -- Dimension Invader Magus
-(21688, 4160, 4), -- Aura Burn
-(21688, 4257, 4), -- Hydro Blast
-(21688, 4408, 11), -- HP Increase (3x)
-(21688, 4409, 1), -- MP Increase (1x)
-(21688, 4410, 14), -- Strong P. Atk.
-(21688, 4411, 14), -- Strong M. Atk.
-(21688, 4412, 8), -- Weak P. Def.
-(21688, 4413, 8), -- Weak M. Def.
-(21688, 4414, 3), -- Light Armor Type
-(21688, 4415, 3), -- One-handed Sword
-(21688, 4416, 1), -- Undead
+(21688, 4160, 4), -- NPC Aura Burn - Magic
+(21688, 4257, 4), -- NPC Hydroblast - Magic
+(21688, 4408, 11), -- HP Modifiers
+(21688, 4409, 1), -- MP Modifiers
+(21688, 4410, 14), -- P. Atk. Modifiers
+(21688, 4411, 14), -- M. Atk. Modifiers
+(21688, 4412, 8), -- P. Def. Modifiers
+(21688, 4413, 8), -- M. Def. Modifiers
+(21688, 4414, 3), -- Armor Type
+(21688, 4415, 3), -- Weapon Type
+(21688, 4416, 1), -- Races
 -- Dimension Invader Martyrs
 (21689, 4286, 1), -- Greater Resist Sleep
 (21689, 4288, 1), -- Greater Resist Hold
-(21689, 4408, 11), -- HP Increase (3x)
-(21689, 4409, 1), -- MP Increase (1x)
-(21689, 4410, 11), -- Average P. Atk.
-(21689, 4411, 11), -- Average M. Atk.
-(21689, 4412, 11), -- Average P. Def.
-(21689, 4413, 11), -- Average M. Def.
-(21689, 4414, 3), -- Light Armor Type
-(21689, 4415, 3), -- One-handed Sword
-(21689, 4416, 1), -- Undead
-(21689, 4614, 4), -- Death Bomb
+(21689, 4408, 11), -- HP Modifiers
+(21689, 4409, 1), -- MP Modifiers
+(21689, 4410, 11), -- P. Atk. Modifiers
+(21689, 4411, 11), -- M. Atk. Modifiers
+(21689, 4412, 11), -- P. Def. Modifiers
+(21689, 4413, 11), -- M. Def. Modifiers
+(21689, 4414, 3), -- Armor Type
+(21689, 4415, 3), -- Weapon Type
+(21689, 4416, 1), -- Races
+(21689, 4614, 4), -- NPC Death Bomb
 -- Dimension Invader Warrior
-(21690, 4408, 11), -- HP Increase (3x)
-(21690, 4409, 1), -- MP Increase (1x)
-(21690, 4410, 11), -- Average P. Atk.
-(21690, 4411, 11), -- Average M. Atk.
-(21690, 4412, 11), -- Average P. Def.
-(21690, 4413, 11), -- Average M. Def.
-(21690, 4414, 2), -- Standard Type
-(21690, 4415, 3), -- One-handed Sword
-(21690, 4416, 1), -- Undead
+(21690, 4408, 11), -- HP Modifiers
+(21690, 4409, 1), -- MP Modifiers
+(21690, 4410, 11), -- P. Atk. Modifiers
+(21690, 4411, 11), -- M. Atk. Modifiers
+(21690, 4412, 11), -- P. Def. Modifiers
+(21690, 4413, 11), -- M. Def. Modifiers
+(21690, 4414, 2), -- Armor Type
+(21690, 4415, 3), -- Weapon Type
+(21690, 4416, 1), -- Races
 -- Dimension Invader Soldier
-(21691, 4408, 11), -- HP Increase (3x)
-(21691, 4409, 1), -- MP Increase (1x)
-(21691, 4410, 11), -- Average P. Atk.
-(21691, 4411, 11), -- Average M. Atk.
-(21691, 4412, 11), -- Average P. Def.
-(21691, 4413, 11), -- Average M. Def.
-(21691, 4414, 3), -- Light Armor Type
-(21691, 4415, 7), -- Daggers
-(21691, 4416, 1), -- Undead
+(21691, 4408, 11), -- HP Modifiers
+(21691, 4409, 1), -- MP Modifiers
+(21691, 4410, 11), -- P. Atk. Modifiers
+(21691, 4411, 11), -- M. Atk. Modifiers
+(21691, 4412, 11), -- P. Def. Modifiers
+(21691, 4413, 11), -- M. Def. Modifiers
+(21691, 4414, 3), -- Armor Type
+(21691, 4415, 7), -- Weapon Type
+(21691, 4416, 1), -- Races
 (21691, 4581, 4), -- Hold
 -- Dimension Invader Discipline
 (21692, 4117, 4), -- Paralysis
-(21692, 4274, 1), -- Blunt Weapon Weak Point
-(21692, 4408, 11), -- HP Increase (3x)
-(21692, 4409, 1), -- MP Increase (1x)
-(21692, 4410, 11), -- Average P. Atk.
-(21692, 4411, 11), -- Average M. Atk.
-(21692, 4412, 11), -- Average P. Def.
-(21692, 4413, 11), -- Average M. Def.
-(21692, 4414, 2), -- Standard Type
-(21692, 4415, 3), -- One-handed Sword
-(21692, 4416, 1), -- Undead
+(21692, 4274, 1), -- Blunt Attack Weak Point
+(21692, 4408, 11), -- HP Modifiers
+(21692, 4409, 1), -- MP Modifiers
+(21692, 4410, 11), -- P. Atk. Modifiers
+(21692, 4411, 11), -- M. Atk. Modifiers
+(21692, 4412, 11), -- P. Def. Modifiers
+(21692, 4413, 11), -- M. Def. Modifiers
+(21692, 4414, 2), -- Armor Type
+(21692, 4415, 3), -- Weapon Type
+(21692, 4416, 1), -- Races
 -- Dimension Invader Berserker 
 (21693, 4095, 1), -- Damage Shield
-(21693, 4119, 3), -- Decrease Accuracy
-(21693, 4274, 1), -- Blunt Weapon Weak Point
-(21693, 4408, 11), -- HP Increase (3x)
-(21693, 4409, 1), -- MP Increase (1x)
-(21693, 4410, 9), -- Slightly Weak P. Atk.
-(21693, 4411, 9), -- Slightly Weak M. Atk.
-(21693, 4412, 13), -- Slightly Strong P. Def.
-(21693, 4413, 13), -- Slightly Strong M. Def.
-(21693, 4414, 2), -- Standard Type
-(21693, 4415, 3), -- One-handed Sword
-(21693, 4416, 1), -- Undead
+(21693, 4119, 3), -- Fall in accuracy
+(21693, 4274, 1), -- Blunt Attack Weak Point
+(21693, 4408, 11), -- HP Modifiers
+(21693, 4409, 1), -- MP Modifiers
+(21693, 4410, 9), -- P. Atk. Modifiers
+(21693, 4411, 9), -- M. Atk. Modifiers
+(21693, 4412, 13), -- P. Def. Modifiers
+(21693, 4413, 13), -- M. Def. Modifiers
+(21693, 4414, 2), -- Armor Type
+(21693, 4415, 3), -- Weapon Type
+(21693, 4416, 1), -- Races
 -- Dimension Invader Food
 (21694, 4045, 1), -- Resist Full Magic Attack
-(21694, 4408, 1), -- HP Increase (1x)
-(21694, 4409, 1), -- MP Increase (1x)
-(21694, 4410, 11), -- Average P. Atk.
-(21694, 4411, 11), -- Average M. Atk.
-(21694, 4412, 11), -- Average P. Def.
-(21694, 4413, 11), -- Average M. Def.
-(21694, 4414, 2), -- Standard Type
-(21694, 4415, 3), -- One-handed Sword
-(21694, 4416, 2), -- Magic Creatures
+(21694, 4408, 1), -- HP Modifiers
+(21694, 4409, 1), -- MP Modifiers
+(21694, 4410, 11), -- P. Atk. Modifiers
+(21694, 4411, 11), -- M. Atk. Modifiers
+(21694, 4412, 11), -- P. Def. Modifiers
+(21694, 4413, 11), -- M. Def. Modifiers
+(21694, 4414, 2), -- Armor Type
+(21694, 4415, 3), -- Weapon Type
+(21694, 4416, 2), -- Races
 -- Dimension Invader Elite Soldier
-(21695, 4032, 4), -- Power Strike
-(21695, 4408, 14), -- HP Increase (6x)
-(21695, 4409, 1), -- MP Increase (1x)
-(21695, 4410, 11), -- Average P. Atk.
-(21695, 4411, 11), -- Average M. Atk.
-(21695, 4412, 11), -- Average P. Def.
-(21695, 4413, 11), -- Average M. Def.
-(21695, 4414, 2), -- Standard Type
-(21695, 4415, 3), -- One-handed Sword
-(21695, 4416, 1), -- Undead
+(21695, 4032, 4), -- NPC Strike
+(21695, 4408, 14), -- HP Modifiers
+(21695, 4409, 1), -- MP Modifiers
+(21695, 4410, 11), -- P. Atk. Modifiers
+(21695, 4411, 11), -- M. Atk. Modifiers
+(21695, 4412, 11), -- P. Def. Modifiers
+(21695, 4413, 11), -- M. Def. Modifiers
+(21695, 4414, 2), -- Armor Type
+(21695, 4415, 3), -- Weapon Type
+(21695, 4416, 1), -- Races
 -- Dimension Invader Elite Soldier
-(21696, 4408, 14), -- HP Increase (6x)
-(21696, 4409, 1), -- MP Increase (1x)
-(21696, 4410, 11), -- Average P. Atk.
-(21696, 4411, 11), -- Average M. Atk.
-(21696, 4412, 11), -- Average P. Def.
-(21696, 4413, 11), -- Average M. Def.
-(21696, 4414, 2), -- Standard Type
-(21696, 4415, 3), -- One-handed Sword
-(21696, 4416, 1), -- Undead
+(21696, 4408, 14), -- HP Modifiers
+(21696, 4409, 1), -- MP Modifiers
+(21696, 4410, 11), -- P. Atk. Modifiers
+(21696, 4411, 11), -- M. Atk. Modifiers
+(21696, 4412, 11), -- P. Def. Modifiers
+(21696, 4413, 11), -- M. Def. Modifiers
+(21696, 4414, 2), -- Armor Type
+(21696, 4415, 3), -- Weapon Type
+(21696, 4416, 1), -- Races
 (21696, 4582, 4), -- Poison
 -- Dimension Invader Elite Soldier
-(21697, 4408, 8), -- HP Increase (1/4x)
-(21697, 4409, 1), -- MP Increase (1x)
-(21697, 4410, 8), -- Weak P. Atk.
-(21697, 4411, 8), -- Weak M. Atk.
-(21697, 4412, 14), -- Strong P. Def.
-(21697, 4413, 14), -- Strong M. Def.
-(21697, 4414, 2), -- Standard Type
-(21697, 4415, 3), -- One-handed Sword
-(21697, 4416, 1), -- Undead
-(21697, 4573, 4), -- Sonic Blaster
+(21697, 4408, 8), -- HP Modifiers
+(21697, 4409, 1), -- MP Modifiers
+(21697, 4410, 8), -- P. Atk. Modifiers
+(21697, 4411, 8), -- M. Atk. Modifiers
+(21697, 4412, 14), -- P. Def. Modifiers
+(21697, 4413, 14), -- M. Def. Modifiers
+(21697, 4414, 2), -- Armor Type
+(21697, 4415, 3), -- Weapon Type
+(21697, 4416, 1), -- Races
+(21697, 4573, 4), -- NPC Sonic Blaster
 -- Dimension Invader Elite Soldier
-(21698, 4408, 9), -- HP Increase (1/2x)
-(21698, 4409, 1), -- MP Increase (1x)
-(21698, 4410, 14), -- Strong P. Atk.
-(21698, 4411, 14), -- Strong M. Atk.
-(21698, 4412, 8), -- Weak P. Def.
-(21698, 4413, 8), -- Weak M. Def.
-(21698, 4414, 2), -- Standard Type
-(21698, 4415, 3), -- One-handed Sword
-(21698, 4416, 1), -- Undead
-(21698, 4572, 4), -- Triple Sonic Slash
+(21698, 4408, 9), -- HP Modifiers
+(21698, 4409, 1), -- MP Modifiers
+(21698, 4410, 14), -- P. Atk. Modifiers
+(21698, 4411, 14), -- M. Atk. Modifiers
+(21698, 4412, 8), -- P. Def. Modifiers
+(21698, 4413, 8), -- M. Def. Modifiers
+(21698, 4414, 2), -- Armor Type
+(21698, 4415, 3), -- Weapon Type
+(21698, 4416, 1), -- Races
+(21698, 4572, 4), -- NPC Triple Sonic Slash
 -- Dimension Invader Warrior
-(21699, 4274, 1), -- Blunt Weapon Weak Point
-(21699, 4408, 14), -- HP Increase (6x)
-(21699, 4409, 1), -- MP Increase (1x)
-(21699, 4410, 11), -- Average P. Atk.
-(21699, 4411, 11), -- Average M. Atk.
-(21699, 4412, 11), -- Average P. Def.
-(21699, 4413, 11), -- Average M. Def.
-(21699, 4414, 2), -- Standard Type
-(21699, 4415, 3), -- One-handed Sword
-(21699, 4416, 1), -- Undead
-(21699, 4560, 4), -- Fire Burn
+(21699, 4274, 1), -- Blunt Attack Weak Point
+(21699, 4408, 14), -- HP Modifiers
+(21699, 4409, 1), -- MP Modifiers
+(21699, 4410, 11), -- P. Atk. Modifiers
+(21699, 4411, 11), -- M. Atk. Modifiers
+(21699, 4412, 11), -- P. Def. Modifiers
+(21699, 4413, 11), -- M. Def. Modifiers
+(21699, 4414, 2), -- Armor Type
+(21699, 4415, 3), -- Weapon Type
+(21699, 4416, 1), -- Races
+(21699, 4560, 4), -- NPC Fire Burn
 -- Dimension Invader Elite Soldier
-(21700, 4408, 14), -- HP Increase (6x)
-(21700, 4409, 1), -- MP Increase (1x)
-(21700, 4410, 9), -- Slightly Weak P. Atk.
-(21700, 4411, 9), -- Slightly Weak M. Atk.
-(21700, 4412, 13), -- Slightly Strong P. Def.
-(21700, 4413, 13), -- Slightly Strong M. Def.
-(21700, 4414, 2), -- Standard Type
-(21700, 4415, 3), -- One-handed Sword
-(21700, 4416, 1), -- Undead
-(21700, 4572, 4), -- Triple Sonic Slash
+(21700, 4408, 14), -- HP Modifiers
+(21700, 4409, 1), -- MP Modifiers
+(21700, 4410, 9), -- P. Atk. Modifiers
+(21700, 4411, 9), -- M. Atk. Modifiers
+(21700, 4412, 13), -- P. Def. Modifiers
+(21700, 4413, 13), -- M. Def. Modifiers
+(21700, 4414, 2), -- Armor Type
+(21700, 4415, 3), -- Weapon Type
+(21700, 4416, 1), -- Races
+(21700, 4572, 4), -- NPC Triple Sonic Slash
 -- Dimension Invader Elite Soldier
-(21701, 4408, 14), -- HP Increase (6x)
-(21701, 4409, 1), -- MP Increase (1x)
-(21701, 4410, 13), -- Slightly Strong P. Atk.
-(21701, 4411, 13), -- Slightly Strong M. Atk.
-(21701, 4412, 9), -- Slightly Weak P. Def.
-(21701, 4413, 9), -- Slightly Weak M. Def.
-(21701, 4414, 2), -- Standard Type
-(21701, 4415, 3), -- One-handed Sword
-(21701, 4416, 1), -- Undead
-(21701, 4572, 4), -- Triple Sonic Slash
+(21701, 4408, 14), -- HP Modifiers
+(21701, 4409, 1), -- MP Modifiers
+(21701, 4410, 13), -- P. Atk. Modifiers
+(21701, 4411, 13), -- M. Atk. Modifiers
+(21701, 4412, 9), -- P. Def. Modifiers
+(21701, 4413, 9), -- M. Def. Modifiers
+(21701, 4414, 2), -- Armor Type
+(21701, 4415, 3), -- Weapon Type
+(21701, 4416, 1), -- Races
+(21701, 4572, 4), -- NPC Triple Sonic Slash
 -- Dimension Invader Elite Soldier
-(21702, 4408, 14), -- HP Increase (6x)
-(21702, 4409, 1), -- MP Increase (1x)
-(21702, 4410, 9), -- Slightly Weak P. Atk.
-(21702, 4411, 9), -- Slightly Weak M. Atk.
-(21702, 4412, 13), -- Slightly Strong P. Def.
-(21702, 4413, 13), -- Slightly Strong M. Def.
-(21702, 4414, 2), -- Standard Type
-(21702, 4415, 3), -- One-handed Sword
-(21702, 4416, 1), -- Undead
-(21702, 4573, 4), -- Sonic Blaster
+(21702, 4408, 14), -- HP Modifiers
+(21702, 4409, 1), -- MP Modifiers
+(21702, 4410, 9), -- P. Atk. Modifiers
+(21702, 4411, 9), -- M. Atk. Modifiers
+(21702, 4412, 13), -- P. Def. Modifiers
+(21702, 4413, 13), -- M. Def. Modifiers
+(21702, 4414, 2), -- Armor Type
+(21702, 4415, 3), -- Weapon Type
+(21702, 4416, 1), -- Races
+(21702, 4573, 4), -- NPC Sonic Blaster
 -- Dimension Invader Elite Soldier
-(21703, 4408, 14), -- HP Increase (6x)
-(21703, 4409, 1), -- MP Increase (1x)
-(21703, 4410, 13), -- Slightly Strong P. Atk.
-(21703, 4411, 13), -- Slightly Strong M. Atk.
-(21703, 4412, 9), -- Slightly Weak P. Def.
-(21703, 4413, 9), -- Slightly Weak M. Def.
-(21703, 4414, 2), -- Standard Type
-(21703, 4415, 3), -- One-handed Sword
-(21703, 4416, 1), -- Undead
-(21703, 4573, 4), -- Sonic Blaster
+(21703, 4408, 14), -- HP Modifiers
+(21703, 4409, 1), -- MP Modifiers
+(21703, 4410, 13), -- P. Atk. Modifiers
+(21703, 4411, 13), -- M. Atk. Modifiers
+(21703, 4412, 9), -- P. Def. Modifiers
+(21703, 4413, 9), -- M. Def. Modifiers
+(21703, 4414, 2), -- Armor Type
+(21703, 4415, 3), -- Weapon Type
+(21703, 4416, 1), -- Races
+(21703, 4573, 4), -- NPC Sonic Blaster
 -- Dimension Invader Magus
-(21704, 4408, 14), -- HP Increase (6x)
-(21704, 4409, 1), -- MP Increase (1x)
-(21704, 4410, 11), -- Average P. Atk.
-(21704, 4411, 11), -- Average M. Atk.
-(21704, 4412, 11), -- Average P. Def.
-(21704, 4413, 11), -- Average M. Def.
-(21704, 4414, 2), -- Standard Type
-(21704, 4415, 3), -- One-handed Sword
-(21704, 4416, 1), -- Undead
-(21704, 4561, 4), -- Fire Burn
-(21704, 4563, 4), -- Solar Flare
+(21704, 4408, 14), -- HP Modifiers
+(21704, 4409, 1), -- MP Modifiers
+(21704, 4410, 11), -- P. Atk. Modifiers
+(21704, 4411, 11), -- M. Atk. Modifiers
+(21704, 4412, 11), -- P. Def. Modifiers
+(21704, 4413, 11), -- M. Def. Modifiers
+(21704, 4414, 2), -- Armor Type
+(21704, 4415, 3), -- Weapon Type
+(21704, 4416, 1), -- Races
+(21704, 4561, 4), -- NPC Fire Burn - Magic
+(21704, 4563, 4), -- NPC Solar Flare - Magic
 -- Purgatory Invader Soldier
-(21705, 4067, 5), -- Blow
-(21705, 4408, 11), -- HP Increase (3x)
-(21705, 4409, 1), -- MP Increase (1x)
-(21705, 4410, 11), -- Average P. Atk.
-(21705, 4411, 11), -- Average M. Atk.
-(21705, 4412, 18), -- Extremely Strong P. Def.
-(21705, 4413, 11), -- Average M. Def.
-(21705, 4414, 3), -- Light Armor Type
-(21705, 4415, 7), -- Daggers
-(21705, 4416, 9), -- Demons
+(21705, 4067, 5), -- NPC Mortal Blow
+(21705, 4408, 11), -- HP Modifiers
+(21705, 4409, 1), -- MP Modifiers
+(21705, 4410, 11), -- P. Atk. Modifiers
+(21705, 4411, 11), -- M. Atk. Modifiers
+(21705, 4412, 18), -- P. Def. Modifiers
+(21705, 4413, 11), -- M. Def. Modifiers
+(21705, 4414, 3), -- Armor Type
+(21705, 4415, 7), -- Weapon Type
+(21705, 4416, 9), -- Races
 -- Purgatory Invader Soldier
-(21706, 4408, 11), -- HP Increase (3x)
-(21706, 4409, 1), -- MP Increase (1x)
-(21706, 4410, 8), -- Weak P. Atk.
-(21706, 4411, 8), -- Weak M. Atk.
-(21706, 4412, 20), -- Extremely Strong P. Def.
-(21706, 4413, 14), -- Strong M. Def.
-(21706, 4414, 3), -- Light Armor Type
-(21706, 4415, 7), -- Daggers
-(21706, 4416, 9), -- Demons
+(21706, 4408, 11), -- HP Modifiers
+(21706, 4409, 1), -- MP Modifiers
+(21706, 4410, 8), -- P. Atk. Modifiers
+(21706, 4411, 8), -- M. Atk. Modifiers
+(21706, 4412, 20), -- P. Def. Modifiers
+(21706, 4413, 14), -- M. Def. Modifiers
+(21706, 4414, 3), -- Armor Type
+(21706, 4415, 7), -- Weapon Type
+(21706, 4416, 9), -- Races
 (21706, 4579, 5), -- Bleed
 -- Purgatory Invader Archer
-(21707, 4274, 1), -- Blunt Weapon Weak Point
-(21707, 4408, 11), -- HP Increase (3x)
-(21707, 4409, 1), -- MP Increase (1x)
-(21707, 4410, 14), -- Strong P. Atk.
-(21707, 4411, 14), -- Strong M. Atk.
-(21707, 4412, 13), -- Slightly Strong P. Def.
-(21707, 4413, 8), -- Weak M. Def.
-(21707, 4414, 3), -- Light Armor Type
-(21707, 4415, 9), -- Bows
-(21707, 4416, 1), -- Undead
+(21707, 4274, 1), -- Blunt Attack Weak Point
+(21707, 4408, 11), -- HP Modifiers
+(21707, 4409, 1), -- MP Modifiers
+(21707, 4410, 14), -- P. Atk. Modifiers
+(21707, 4411, 14), -- M. Atk. Modifiers
+(21707, 4412, 13), -- P. Def. Modifiers
+(21707, 4413, 8), -- M. Def. Modifiers
+(21707, 4414, 3), -- Armor Type
+(21707, 4415, 9), -- Weapon Type
+(21707, 4416, 1), -- Races
 -- Purgatory Invader Elite Soldier
-(21708, 4285, 3), -- Resist Sleep Attacks
-(21708, 4408, 11), -- HP Increase (3x)
-(21708, 4409, 1), -- MP Increase (1x)
-(21708, 4410, 11), -- Average P. Atk.
-(21708, 4411, 11), -- Average M. Atk.
-(21708, 4412, 11), -- Average P. Def.
-(21708, 4413, 15), -- Strong M. Def.
-(21708, 4414, 3), -- Light Armor Type
-(21708, 4415, 5), -- Blunt Weapons
-(21708, 4416, 9), -- Demons
+(21708, 4285, 3), -- Resist Sleep
+(21708, 4408, 11), -- HP Modifiers
+(21708, 4409, 1), -- MP Modifiers
+(21708, 4410, 11), -- P. Atk. Modifiers
+(21708, 4411, 11), -- M. Atk. Modifiers
+(21708, 4412, 11), -- P. Def. Modifiers
+(21708, 4413, 15), -- M. Def. Modifiers
+(21708, 4414, 3), -- Armor Type
+(21708, 4415, 5), -- Weapon Type
+(21708, 4416, 9), -- Races
 (21708, 4643, 5), -- Decrease Speed
 -- Purgatory Invader Shaman
-(21709, 4157, 5), -- Blaze
-(21709, 4160, 5), -- Aura Burn
-(21709, 4285, 3), -- Resist Sleep Attacks
-(21709, 4408, 11), -- HP Increase (3x)
-(21709, 4409, 1), -- MP Increase (1x)
-(21709, 4410, 11), -- Average P. Atk.
-(21709, 4411, 11), -- Average M. Atk.
-(21709, 4412, 11), -- Average P. Def.
-(21709, 4413, 18), -- Extremely Strong M. Def.
-(21709, 4414, 3), -- Light Armor Type
-(21709, 4415, 5), -- Blunt Weapons
-(21709, 4416, 9), -- Demons
-(21709, 4675, 1), -- Fighter Dispell
+(21709, 4157, 5), -- NPC Blaze - Magic
+(21709, 4160, 5), -- NPC Aura Burn - Magic
+(21709, 4285, 3), -- Resist Sleep
+(21709, 4408, 11), -- HP Modifiers
+(21709, 4409, 1), -- MP Modifiers
+(21709, 4410, 11), -- P. Atk. Modifiers
+(21709, 4411, 11), -- M. Atk. Modifiers
+(21709, 4412, 11), -- P. Def. Modifiers
+(21709, 4413, 18), -- M. Def. Modifiers
+(21709, 4414, 3), -- Armor Type
+(21709, 4415, 5), -- Weapon Type
+(21709, 4416, 9), -- Races
+(21709, 4675, 1), -- NPC Dispel Fighter Buff
 -- Purgatory Invader Priest
 (21710, 4046, 5), -- Sleep
-(21710, 4065, 5), -- Heal
-(21710, 4285, 3), -- Resist Sleep Attacks
-(21710, 4408, 10), -- HP Increase (2x)
-(21710, 4409, 1), -- MP Increase (1x)
-(21710, 4410, 11), -- Average P. Atk.
-(21710, 4411, 11), -- Average M. Atk.
-(21710, 4412, 11), -- Average P. Def.
-(21710, 4413, 18), -- Extremely Strong M. Def.
-(21710, 4414, 3), -- Light Armor Type
-(21710, 4415, 5), -- Blunt Weapons
-(21710, 4416, 9), -- Demons
+(21710, 4065, 5), -- NPC Heal
+(21710, 4285, 3), -- Resist Sleep
+(21710, 4408, 10), -- HP Modifiers
+(21710, 4409, 1), -- MP Modifiers
+(21710, 4410, 11), -- P. Atk. Modifiers
+(21710, 4411, 11), -- M. Atk. Modifiers
+(21710, 4412, 11), -- P. Def. Modifiers
+(21710, 4413, 18), -- M. Def. Modifiers
+(21710, 4414, 3), -- Armor Type
+(21710, 4415, 5), -- Weapon Type
+(21710, 4416, 9), -- Races
 -- Purgatory Invader Magus
-(21711, 4160, 5), -- Aura Burn
-(21711, 4257, 5), -- Hydro Blast
-(21711, 4285, 3), -- Resist Sleep Attacks
-(21711, 4408, 11), -- HP Increase (3x)
-(21711, 4409, 1), -- MP Increase (1x)
-(21711, 4410, 14), -- Strong P. Atk.
-(21711, 4411, 14), -- Strong M. Atk.
-(21711, 4412, 8), -- Weak P. Def.
-(21711, 4413, 8), -- Weak M. Def.
-(21711, 4414, 3), -- Light Armor Type
-(21711, 4415, 5), -- Blunt Weapons
-(21711, 4416, 9), -- Demons
+(21711, 4160, 5), -- NPC Aura Burn - Magic
+(21711, 4257, 5), -- NPC Hydroblast - Magic
+(21711, 4285, 3), -- Resist Sleep
+(21711, 4408, 11), -- HP Modifiers
+(21711, 4409, 1), -- MP Modifiers
+(21711, 4410, 14), -- P. Atk. Modifiers
+(21711, 4411, 14), -- M. Atk. Modifiers
+(21711, 4412, 8), -- P. Def. Modifiers
+(21711, 4413, 8), -- M. Def. Modifiers
+(21711, 4414, 3), -- Armor Type
+(21711, 4415, 5), -- Weapon Type
+(21711, 4416, 9), -- Races
 -- Purgatory Invader Martyrs
-(21712, 4285, 3), -- Resist Sleep Attacks
-(21712, 4408, 11), -- HP Increase (3x)
-(21712, 4409, 1), -- MP Increase (1x)
-(21712, 4410, 11), -- Average P. Atk.
-(21712, 4411, 11), -- Average M. Atk.
-(21712, 4412, 11), -- Average P. Def.
-(21712, 4413, 11), -- Average M. Def.
-(21712, 4414, 3), -- Light Armor Type
-(21712, 4415, 5), -- Blunt Weapons
-(21712, 4416, 9), -- Demons
-(21712, 4614, 5), -- Death Bomb
+(21712, 4285, 3), -- Resist Sleep
+(21712, 4408, 11), -- HP Modifiers
+(21712, 4409, 1), -- MP Modifiers
+(21712, 4410, 11), -- P. Atk. Modifiers
+(21712, 4411, 11), -- M. Atk. Modifiers
+(21712, 4412, 11), -- P. Def. Modifiers
+(21712, 4413, 11), -- M. Def. Modifiers
+(21712, 4414, 3), -- Armor Type
+(21712, 4415, 5), -- Weapon Type
+(21712, 4416, 9), -- Races
+(21712, 4614, 5), -- NPC Death Bomb
 -- Purgatory Invader Warrior
-(21713, 4274, 1), -- Blunt Weapon Weak Point
-(21713, 4408, 11), -- HP Increase (3x)
-(21713, 4409, 1), -- MP Increase (1x)
-(21713, 4410, 11), -- Average P. Atk.
-(21713, 4411, 11), -- Average M. Atk.
-(21713, 4412, 11), -- Average P. Def.
-(21713, 4413, 11), -- Average M. Def.
-(21713, 4414, 2), -- Standard Type
-(21713, 4415, 7), -- Daggers
-(21713, 4416, 1), -- Undead
+(21713, 4274, 1), -- Blunt Attack Weak Point
+(21713, 4408, 11), -- HP Modifiers
+(21713, 4409, 1), -- MP Modifiers
+(21713, 4410, 11), -- P. Atk. Modifiers
+(21713, 4411, 11), -- M. Atk. Modifiers
+(21713, 4412, 11), -- P. Def. Modifiers
+(21713, 4413, 11), -- M. Def. Modifiers
+(21713, 4414, 2), -- Armor Type
+(21713, 4415, 7), -- Weapon Type
+(21713, 4416, 1), -- Races
 -- Purgatory Invader Soldier
-(21714, 4285, 3), -- Resist Sleep Attacks
-(21714, 4408, 11), -- HP Increase (3x)
-(21714, 4409, 1), -- MP Increase (1x)
-(21714, 4410, 11), -- Average P. Atk.
-(21714, 4411, 11), -- Average M. Atk.
-(21714, 4412, 11), -- Average P. Def.
-(21714, 4413, 11), -- Average M. Def.
-(21714, 4414, 3), -- Light Armor Type
-(21714, 4415, 7), -- Daggers
-(21714, 4416, 9), -- Demons
+(21714, 4285, 3), -- Resist Sleep
+(21714, 4408, 11), -- HP Modifiers
+(21714, 4409, 1), -- MP Modifiers
+(21714, 4410, 11), -- P. Atk. Modifiers
+(21714, 4411, 11), -- M. Atk. Modifiers
+(21714, 4412, 11), -- P. Def. Modifiers
+(21714, 4413, 11), -- M. Def. Modifiers
+(21714, 4414, 3), -- Armor Type
+(21714, 4415, 7), -- Weapon Type
+(21714, 4416, 9), -- Races
 (21714, 4581, 5), -- Hold
 -- Purgatory Invader Disciples
 (21715, 4117, 5), -- Paralysis
-(21715, 4274, 1), -- Blunt Weapon Weak Point
-(21715, 4408, 11), -- HP Increase (3x)
-(21715, 4409, 1), -- MP Increase (1x)
-(21715, 4410, 11), -- Average P. Atk.
-(21715, 4411, 11), -- Average M. Atk.
-(21715, 4412, 11), -- Average P. Def.
-(21715, 4413, 11), -- Average M. Def.
-(21715, 4414, 2), -- Standard Type
-(21715, 4415, 7), -- Daggers
-(21715, 4416, 1), -- Undead
+(21715, 4274, 1), -- Blunt Attack Weak Point
+(21715, 4408, 11), -- HP Modifiers
+(21715, 4409, 1), -- MP Modifiers
+(21715, 4410, 11), -- P. Atk. Modifiers
+(21715, 4411, 11), -- M. Atk. Modifiers
+(21715, 4412, 11), -- P. Def. Modifiers
+(21715, 4413, 11), -- M. Def. Modifiers
+(21715, 4414, 2), -- Armor Type
+(21715, 4415, 7), -- Weapon Type
+(21715, 4416, 1), -- Races
 -- Purgatory Invader Berserker
 (21716, 4095, 1), -- Damage Shield
-(21716, 4119, 3), -- Decrease Accuracy
-(21716, 4274, 1), -- Blunt Weapon Weak Point
-(21716, 4408, 11), -- HP Increase (3x)
-(21716, 4409, 1), -- MP Increase (1x)
-(21716, 4410, 9), -- Slightly Weak P. Atk.
-(21716, 4411, 9), -- Slightly Weak M. Atk.
-(21716, 4412, 13), -- Slightly Strong P. Def.
-(21716, 4413, 13), -- Slightly Strong M. Def.
-(21716, 4414, 2), -- Standard Type
-(21716, 4415, 7), -- Daggers
-(21716, 4416, 1), -- Undead
+(21716, 4119, 3), -- Fall in accuracy
+(21716, 4274, 1), -- Blunt Attack Weak Point
+(21716, 4408, 11), -- HP Modifiers
+(21716, 4409, 1), -- MP Modifiers
+(21716, 4410, 9), -- P. Atk. Modifiers
+(21716, 4411, 9), -- M. Atk. Modifiers
+(21716, 4412, 13), -- P. Def. Modifiers
+(21716, 4413, 13), -- M. Def. Modifiers
+(21716, 4414, 2), -- Armor Type
+(21716, 4415, 7), -- Weapon Type
+(21716, 4416, 1), -- Races
 -- Purgatory Invader Food
 (21717, 4045, 1), -- Resist Full Magic Attack
-(21717, 4408, 1), -- HP Increase (1x)
-(21717, 4409, 1), -- MP Increase (1x)
-(21717, 4410, 11), -- Average P. Atk.
-(21717, 4411, 11), -- Average M. Atk.
-(21717, 4412, 11), -- Average P. Def.
-(21717, 4413, 11), -- Average M. Def.
-(21717, 4414, 2), -- Standard Type
-(21717, 4415, 3), -- One-handed Sword
-(21717, 4416, 2), -- Magic Creatures
+(21717, 4408, 1), -- HP Modifiers
+(21717, 4409, 1), -- MP Modifiers
+(21717, 4410, 11), -- P. Atk. Modifiers
+(21717, 4411, 11), -- M. Atk. Modifiers
+(21717, 4412, 11), -- P. Def. Modifiers
+(21717, 4413, 11), -- M. Def. Modifiers
+(21717, 4414, 2), -- Armor Type
+(21717, 4415, 3), -- Weapon Type
+(21717, 4416, 2), -- Races
 -- Purgatory Invader Elite Soldier
-(21718, 4032, 5), -- Power Strike
-(21718, 4285, 3), -- Resist Sleep Attacks
-(21718, 4408, 14), -- HP Increase (6x)
-(21718, 4409, 1), -- MP Increase (1x)
-(21718, 4410, 11), -- Average P. Atk.
-(21718, 4411, 11), -- Average M. Atk.
-(21718, 4412, 11), -- Average P. Def.
-(21718, 4413, 11), -- Average M. Def.
-(21718, 4414, 2), -- Standard Type
-(21718, 4415, 3), -- One-handed Sword
-(21718, 4416, 9), -- Demons
+(21718, 4032, 5), -- NPC Strike
+(21718, 4285, 3), -- Resist Sleep
+(21718, 4408, 14), -- HP Modifiers
+(21718, 4409, 1), -- MP Modifiers
+(21718, 4410, 11), -- P. Atk. Modifiers
+(21718, 4411, 11), -- M. Atk. Modifiers
+(21718, 4412, 11), -- P. Def. Modifiers
+(21718, 4413, 11), -- M. Def. Modifiers
+(21718, 4414, 2), -- Armor Type
+(21718, 4415, 3), -- Weapon Type
+(21718, 4416, 9), -- Races
 -- Purgatory Invader Elite Soldier
-(21719, 4285, 3), -- Resist Sleep Attacks
-(21719, 4408, 14), -- HP Increase (6x)
-(21719, 4409, 1), -- MP Increase (1x)
-(21719, 4410, 11), -- Average P. Atk.
-(21719, 4411, 11), -- Average M. Atk.
-(21719, 4412, 11), -- Average P. Def.
-(21719, 4413, 11), -- Average M. Def.
-(21719, 4414, 2), -- Standard Type
-(21719, 4415, 3), -- One-handed Sword
-(21719, 4416, 9), -- Demons
+(21719, 4285, 3), -- Resist Sleep
+(21719, 4408, 14), -- HP Modifiers
+(21719, 4409, 1), -- MP Modifiers
+(21719, 4410, 11), -- P. Atk. Modifiers
+(21719, 4411, 11), -- M. Atk. Modifiers
+(21719, 4412, 11), -- P. Def. Modifiers
+(21719, 4413, 11), -- M. Def. Modifiers
+(21719, 4414, 2), -- Armor Type
+(21719, 4415, 3), -- Weapon Type
+(21719, 4416, 9), -- Races
 (21719, 4582, 5), -- Poison
 -- Purgatory Invader Elite Soldier
-(21720, 4285, 3), -- Resist Sleep Attacks
-(21720, 4408, 8), -- HP Increase (1/4x)
-(21720, 4409, 1), -- MP Increase (1x)
-(21720, 4410, 8), -- Weak P. Atk.
-(21720, 4411, 8), -- Weak M. Atk.
-(21720, 4412, 14), -- Strong P. Def.
-(21720, 4413, 14), -- Strong M. Def.
-(21720, 4414, 2), -- Standard Type
-(21720, 4415, 3), -- One-handed Sword
-(21720, 4416, 9), -- Demons
-(21720, 4573, 5), -- Sonic Blaster
+(21720, 4285, 3), -- Resist Sleep
+(21720, 4408, 8), -- HP Modifiers
+(21720, 4409, 1), -- MP Modifiers
+(21720, 4410, 8), -- P. Atk. Modifiers
+(21720, 4411, 8), -- M. Atk. Modifiers
+(21720, 4412, 14), -- P. Def. Modifiers
+(21720, 4413, 14), -- M. Def. Modifiers
+(21720, 4414, 2), -- Armor Type
+(21720, 4415, 3), -- Weapon Type
+(21720, 4416, 9), -- Races
+(21720, 4573, 5), -- NPC Sonic Blaster
 -- Purgatory Invader Elite Soldier
-(21721, 4285, 3), -- Resist Sleep Attacks
-(21721, 4408, 9), -- HP Increase (1/2x)
-(21721, 4409, 1), -- MP Increase (1x)
-(21721, 4410, 14), -- Strong P. Atk.
-(21721, 4411, 14), -- Strong M. Atk.
-(21721, 4412, 8), -- Weak P. Def.
-(21721, 4413, 8), -- Weak M. Def.
-(21721, 4414, 2), -- Standard Type
-(21721, 4415, 3), -- One-handed Sword
-(21721, 4416, 9), -- Demons
-(21721, 4572, 5), -- Triple Sonic Slash
+(21721, 4285, 3), -- Resist Sleep
+(21721, 4408, 9), -- HP Modifiers
+(21721, 4409, 1), -- MP Modifiers
+(21721, 4410, 14), -- P. Atk. Modifiers
+(21721, 4411, 14), -- M. Atk. Modifiers
+(21721, 4412, 8), -- P. Def. Modifiers
+(21721, 4413, 8), -- M. Def. Modifiers
+(21721, 4414, 2), -- Armor Type
+(21721, 4415, 3), -- Weapon Type
+(21721, 4416, 9), -- Races
+(21721, 4572, 5), -- NPC Triple Sonic Slash
 -- Purgatory Invader Warrior
-(21722, 4274, 1), -- Blunt Weapon Weak Point
-(21722, 4408, 14), -- HP Increase (6x)
-(21722, 4409, 1), -- MP Increase (1x)
-(21722, 4410, 11), -- Average P. Atk.
-(21722, 4411, 11), -- Average M. Atk.
-(21722, 4412, 11), -- Average P. Def.
-(21722, 4413, 11), -- Average M. Def.
-(21722, 4414, 2), -- Standard Type
-(21722, 4415, 7), -- Daggers
-(21722, 4416, 1), -- Undead
-(21722, 4560, 5), -- Fire Burn
+(21722, 4274, 1), -- Blunt Attack Weak Point
+(21722, 4408, 14), -- HP Modifiers
+(21722, 4409, 1), -- MP Modifiers
+(21722, 4410, 11), -- P. Atk. Modifiers
+(21722, 4411, 11), -- M. Atk. Modifiers
+(21722, 4412, 11), -- P. Def. Modifiers
+(21722, 4413, 11), -- M. Def. Modifiers
+(21722, 4414, 2), -- Armor Type
+(21722, 4415, 7), -- Weapon Type
+(21722, 4416, 1), -- Races
+(21722, 4560, 5), -- NPC Fire Burn
 -- Purgatory Invader Elite Soldier
-(21723, 4285, 3), -- Resist Sleep Attacks
-(21723, 4408, 14), -- HP Increase (6x)
-(21723, 4409, 1), -- MP Increase (1x)
-(21723, 4410, 9), -- Slightly Weak P. Atk.
-(21723, 4411, 9), -- Slightly Weak M. Atk.
-(21723, 4412, 13), -- Slightly Strong P. Def.
-(21723, 4413, 13), -- Slightly Strong M. Def.
-(21723, 4414, 2), -- Standard Type
-(21723, 4415, 3), -- One-handed Sword
-(21723, 4416, 9), -- Demons
-(21723, 4572, 5), -- Triple Sonic Slash
+(21723, 4285, 3), -- Resist Sleep
+(21723, 4408, 14), -- HP Modifiers
+(21723, 4409, 1), -- MP Modifiers
+(21723, 4410, 9), -- P. Atk. Modifiers
+(21723, 4411, 9), -- M. Atk. Modifiers
+(21723, 4412, 13), -- P. Def. Modifiers
+(21723, 4413, 13), -- M. Def. Modifiers
+(21723, 4414, 2), -- Armor Type
+(21723, 4415, 3), -- Weapon Type
+(21723, 4416, 9), -- Races
+(21723, 4572, 5), -- NPC Triple Sonic Slash
 -- Purgatory Invader Elite Soldier
-(21724, 4285, 3), -- Resist Sleep Attacks
-(21724, 4408, 14), -- HP Increase (6x)
-(21724, 4409, 1), -- MP Increase (1x)
-(21724, 4410, 13), -- Slightly Strong P. Atk.
-(21724, 4411, 13), -- Slightly Strong M. Atk.
-(21724, 4412, 9), -- Slightly Weak P. Def.
-(21724, 4413, 9), -- Slightly Weak M. Def.
-(21724, 4414, 2), -- Standard Type
-(21724, 4415, 3), -- One-handed Sword
-(21724, 4416, 9), -- Demons
-(21724, 4572, 5), -- Triple Sonic Slash
+(21724, 4285, 3), -- Resist Sleep
+(21724, 4408, 14), -- HP Modifiers
+(21724, 4409, 1), -- MP Modifiers
+(21724, 4410, 13), -- P. Atk. Modifiers
+(21724, 4411, 13), -- M. Atk. Modifiers
+(21724, 4412, 9), -- P. Def. Modifiers
+(21724, 4413, 9), -- M. Def. Modifiers
+(21724, 4414, 2), -- Armor Type
+(21724, 4415, 3), -- Weapon Type
+(21724, 4416, 9), -- Races
+(21724, 4572, 5), -- NPC Triple Sonic Slash
 -- Purgatory Invader Elite Soldier
-(21725, 4285, 3), -- Resist Sleep Attacks
-(21725, 4408, 14), -- HP Increase (6x)
-(21725, 4409, 1), -- MP Increase (1x)
-(21725, 4410, 9), -- Slightly Weak P. Atk.
-(21725, 4411, 9), -- Slightly Weak M. Atk.
-(21725, 4412, 13), -- Slightly Strong P. Def.
-(21725, 4413, 13), -- Slightly Strong M. Def.
-(21725, 4414, 2), -- Standard Type
-(21725, 4415, 3), -- One-handed Sword
-(21725, 4416, 9), -- Demons
-(21725, 4573, 5), -- Sonic Blaster
+(21725, 4285, 3), -- Resist Sleep
+(21725, 4408, 14), -- HP Modifiers
+(21725, 4409, 1), -- MP Modifiers
+(21725, 4410, 9), -- P. Atk. Modifiers
+(21725, 4411, 9), -- M. Atk. Modifiers
+(21725, 4412, 13), -- P. Def. Modifiers
+(21725, 4413, 13), -- M. Def. Modifiers
+(21725, 4414, 2), -- Armor Type
+(21725, 4415, 3), -- Weapon Type
+(21725, 4416, 9), -- Races
+(21725, 4573, 5), -- NPC Sonic Blaster
 -- Purgatory Invader Elite Soldier
-(21726, 4285, 3), -- Resist Sleep Attacks
-(21726, 4408, 14), -- HP Increase (6x)
-(21726, 4409, 1), -- MP Increase (1x)
-(21726, 4410, 13), -- Slightly Strong P. Atk.
-(21726, 4411, 13), -- Slightly Strong M. Atk.
-(21726, 4412, 9), -- Slightly Weak P. Def.
-(21726, 4413, 9), -- Slightly Weak M. Def.
-(21726, 4414, 2), -- Standard Type
-(21726, 4415, 3), -- One-handed Sword
-(21726, 4416, 9), -- Demons
-(21726, 4573, 5), -- Sonic Blaster
+(21726, 4285, 3), -- Resist Sleep
+(21726, 4408, 14), -- HP Modifiers
+(21726, 4409, 1), -- MP Modifiers
+(21726, 4410, 13), -- P. Atk. Modifiers
+(21726, 4411, 13), -- M. Atk. Modifiers
+(21726, 4412, 9), -- P. Def. Modifiers
+(21726, 4413, 9), -- M. Def. Modifiers
+(21726, 4414, 2), -- Armor Type
+(21726, 4415, 3), -- Weapon Type
+(21726, 4416, 9), -- Races
+(21726, 4573, 5), -- NPC Sonic Blaster
 -- Purgatory Invader Magus
-(21727, 4285, 3), -- Resist Sleep Attacks
-(21727, 4408, 14), -- HP Increase (6x)
-(21727, 4409, 1), -- MP Increase (1x)
-(21727, 4410, 11), -- Average P. Atk.
-(21727, 4411, 11), -- Average M. Atk.
-(21727, 4412, 11), -- Average P. Def.
-(21727, 4413, 11), -- Average M. Def.
-(21727, 4414, 3), -- Light Armor Type
-(21727, 4415, 5), -- Blunt Weapons
-(21727, 4416, 9), -- Demons
-(21727, 4561, 5), -- Fire Burn
-(21727, 4563, 5), -- Solar Flare
+(21727, 4285, 3), -- Resist Sleep
+(21727, 4408, 14), -- HP Modifiers
+(21727, 4409, 1), -- MP Modifiers
+(21727, 4410, 11), -- P. Atk. Modifiers
+(21727, 4411, 11), -- M. Atk. Modifiers
+(21727, 4412, 11), -- P. Def. Modifiers
+(21727, 4413, 11), -- M. Def. Modifiers
+(21727, 4414, 3), -- Armor Type
+(21727, 4415, 5), -- Weapon Type
+(21727, 4416, 9), -- Races
+(21727, 4561, 5), -- NPC Fire Burn - Magic
+(21727, 4563, 5), -- NPC Solar Flare - Magic
 -- Forbidden Path Invader Elite Soldier
-(21728, 4067, 6), -- Blow
-(21728, 4408, 11), -- HP Increase (3x)
-(21728, 4409, 1), -- MP Increase (1x)
-(21728, 4410, 11), -- Average P. Atk.
-(21728, 4411, 11), -- Average M. Atk.
-(21728, 4412, 18), -- Extremely Strong P. Def.
-(21728, 4413, 11), -- Average M. Def.
-(21728, 4414, 3), -- Light Armor Type
-(21728, 4415, 7), -- Daggers
-(21728, 4416, 9), -- Demons
+(21728, 4067, 6), -- NPC Mortal Blow
+(21728, 4408, 11), -- HP Modifiers
+(21728, 4409, 1), -- MP Modifiers
+(21728, 4410, 11), -- P. Atk. Modifiers
+(21728, 4411, 11), -- M. Atk. Modifiers
+(21728, 4412, 18), -- P. Def. Modifiers
+(21728, 4413, 11), -- M. Def. Modifiers
+(21728, 4414, 3), -- Armor Type
+(21728, 4415, 7), -- Weapon Type
+(21728, 4416, 9), -- Races
 -- Forbidden Path Invader Elite Soldier
-(21729, 4408, 11), -- HP Increase (3x)
-(21729, 4409, 1), -- MP Increase (1x)
-(21729, 4410, 8), -- Weak P. Atk.
-(21729, 4411, 8), -- Weak M. Atk.
-(21729, 4412, 20), -- Extremely Strong P. Def.
-(21729, 4413, 14), -- Strong M. Def.
-(21729, 4414, 3), -- Light Armor Type
-(21729, 4415, 7), -- Daggers
-(21729, 4416, 9), -- Demons
+(21729, 4408, 11), -- HP Modifiers
+(21729, 4409, 1), -- MP Modifiers
+(21729, 4410, 8), -- P. Atk. Modifiers
+(21729, 4411, 8), -- M. Atk. Modifiers
+(21729, 4412, 20), -- P. Def. Modifiers
+(21729, 4413, 14), -- M. Def. Modifiers
+(21729, 4414, 3), -- Armor Type
+(21729, 4415, 7), -- Weapon Type
+(21729, 4416, 9), -- Races
 (21729, 4579, 6), -- Bleed
 -- Forbidden Path Invader Archer
-(21730, 4274, 1), -- Blunt Weapon Weak Point
-(21730, 4408, 11), -- HP Increase (3x)
-(21730, 4409, 1), -- MP Increase (1x)
-(21730, 4410, 14), -- Strong P. Atk.
-(21730, 4411, 14), -- Strong M. Atk.
-(21730, 4412, 13), -- Slightly Strong P. Def.
-(21730, 4413, 8), -- Weak M. Def.
-(21730, 4414, 3), -- Light Armor Type
-(21730, 4415, 9), -- Bows
-(21730, 4416, 1), -- Undead
+(21730, 4274, 1), -- Blunt Attack Weak Point
+(21730, 4408, 11), -- HP Modifiers
+(21730, 4409, 1), -- MP Modifiers
+(21730, 4410, 14), -- P. Atk. Modifiers
+(21730, 4411, 14), -- M. Atk. Modifiers
+(21730, 4412, 13), -- P. Def. Modifiers
+(21730, 4413, 8), -- M. Def. Modifiers
+(21730, 4414, 3), -- Armor Type
+(21730, 4415, 9), -- Weapon Type
+(21730, 4416, 1), -- Races
 -- Forbidden Path Invader Elite Soldier
-(21731, 4285, 3), -- Resist Sleep Attacks
-(21731, 4408, 11), -- HP Increase (3x)
-(21731, 4409, 1), -- MP Increase (1x)
-(21731, 4410, 11), -- Average P. Atk.
-(21731, 4411, 11), -- Average M. Atk.
-(21731, 4412, 11), -- Average P. Def.
-(21731, 4413, 15), -- Strong M. Def.
-(21731, 4414, 3), -- Light Armor Type
-(21731, 4415, 5), -- Blunt Weapons
-(21731, 4416, 9), -- Demons
+(21731, 4285, 3), -- Resist Sleep
+(21731, 4408, 11), -- HP Modifiers
+(21731, 4409, 1), -- MP Modifiers
+(21731, 4410, 11), -- P. Atk. Modifiers
+(21731, 4411, 11), -- M. Atk. Modifiers
+(21731, 4412, 11), -- P. Def. Modifiers
+(21731, 4413, 15), -- M. Def. Modifiers
+(21731, 4414, 3), -- Armor Type
+(21731, 4415, 5), -- Weapon Type
+(21731, 4416, 9), -- Races
 (21731, 4643, 6), -- Decrease Speed
 -- Forbidden Path Invader Shaman
-(21732, 4157, 6), -- Blaze
-(21732, 4160, 6), -- Aura Burn
-(21732, 4285, 3), -- Resist Sleep Attacks
-(21732, 4408, 11), -- HP Increase (3x)
-(21732, 4409, 1), -- MP Increase (1x)
-(21732, 4410, 11), -- Average P. Atk.
-(21732, 4411, 11), -- Average M. Atk.
-(21732, 4412, 11), -- Average P. Def.
-(21732, 4413, 18), -- Extremely Strong M. Def.
-(21732, 4414, 3), -- Light Armor Type
-(21732, 4415, 5), -- Blunt Weapons
-(21732, 4416, 9), -- Demons
-(21732, 4675, 1), -- Fighter Dispell
+(21732, 4157, 6), -- NPC Blaze - Magic
+(21732, 4160, 6), -- NPC Aura Burn - Magic
+(21732, 4285, 3), -- Resist Sleep
+(21732, 4408, 11), -- HP Modifiers
+(21732, 4409, 1), -- MP Modifiers
+(21732, 4410, 11), -- P. Atk. Modifiers
+(21732, 4411, 11), -- M. Atk. Modifiers
+(21732, 4412, 11), -- P. Def. Modifiers
+(21732, 4413, 18), -- M. Def. Modifiers
+(21732, 4414, 3), -- Armor Type
+(21732, 4415, 5), -- Weapon Type
+(21732, 4416, 9), -- Races
+(21732, 4675, 1), -- NPC Dispel Fighter Buff
 -- Forbidden Path Invader Priest
 (21733, 4046, 6), -- Sleep
-(21733, 4065, 6), -- Heal
-(21733, 4285, 3), -- Resist Sleep Attacks
-(21733, 4408, 10), -- HP Increase (2x)
-(21733, 4409, 1), -- MP Increase (1x)
-(21733, 4410, 11), -- Average P. Atk.
-(21733, 4411, 11), -- Average M. Atk.
-(21733, 4412, 11), -- Average P. Def.
-(21733, 4413, 11), -- Average M. Def.
-(21733, 4414, 3), -- Light Armor Type
-(21733, 4415, 5), -- Blunt Weapons
-(21733, 4416, 9), -- Demons
+(21733, 4065, 6), -- NPC Heal
+(21733, 4285, 3), -- Resist Sleep
+(21733, 4408, 10), -- HP Modifiers
+(21733, 4409, 1), -- MP Modifiers
+(21733, 4410, 11), -- P. Atk. Modifiers
+(21733, 4411, 11), -- M. Atk. Modifiers
+(21733, 4412, 11), -- P. Def. Modifiers
+(21733, 4413, 11), -- M. Def. Modifiers
+(21733, 4414, 3), -- Armor Type
+(21733, 4415, 5), -- Weapon Type
+(21733, 4416, 9), -- Races
 -- Forbidden Path Invader Magus
-(21734, 4160, 6), -- Aura Burn
-(21734, 4257, 6), -- Hydro Blast
-(21734, 4285, 3), -- Resist Sleep Attacks
-(21734, 4408, 11), -- HP Increase (3x)
-(21734, 4409, 1), -- MP Increase (1x)
-(21734, 4410, 14), -- Strong P. Atk.
-(21734, 4411, 14), -- Strong M. Atk.
-(21734, 4412, 8), -- Weak P. Def.
-(21734, 4413, 8), -- Weak M. Def.
-(21734, 4414, 3), -- Light Armor Type
-(21734, 4415, 5), -- Blunt Weapons
-(21734, 4416, 9), -- Demons
+(21734, 4160, 6), -- NPC Aura Burn - Magic
+(21734, 4257, 6), -- NPC Hydroblast - Magic
+(21734, 4285, 3), -- Resist Sleep
+(21734, 4408, 11), -- HP Modifiers
+(21734, 4409, 1), -- MP Modifiers
+(21734, 4410, 14), -- P. Atk. Modifiers
+(21734, 4411, 14), -- M. Atk. Modifiers
+(21734, 4412, 8), -- P. Def. Modifiers
+(21734, 4413, 8), -- M. Def. Modifiers
+(21734, 4414, 3), -- Armor Type
+(21734, 4415, 5), -- Weapon Type
+(21734, 4416, 9), -- Races
 -- Forbidden Path Invader Martyrs
-(21735, 4285, 3), -- Resist Sleep Attacks
-(21735, 4408, 11), -- HP Increase (3x)
-(21735, 4409, 1), -- MP Increase (1x)
-(21735, 4410, 11), -- Average P. Atk.
-(21735, 4411, 11), -- Average M. Atk.
-(21735, 4412, 11), -- Average P. Def.
-(21735, 4413, 11), -- Average M. Def.
-(21735, 4414, 3), -- Light Armor Type
-(21735, 4415, 5), -- Blunt Weapons
-(21735, 4416, 9), -- Demons
-(21735, 4614, 6), -- Death Bomb
+(21735, 4285, 3), -- Resist Sleep
+(21735, 4408, 11), -- HP Modifiers
+(21735, 4409, 1), -- MP Modifiers
+(21735, 4410, 11), -- P. Atk. Modifiers
+(21735, 4411, 11), -- M. Atk. Modifiers
+(21735, 4412, 11), -- P. Def. Modifiers
+(21735, 4413, 11), -- M. Def. Modifiers
+(21735, 4414, 3), -- Armor Type
+(21735, 4415, 5), -- Weapon Type
+(21735, 4416, 9), -- Races
+(21735, 4614, 6), -- NPC Death Bomb
 -- Forbidden Path Invader Warrior
-(21736, 4274, 1), -- Blunt Weapon Weak Point
-(21736, 4408, 11), -- HP Increase (3x)
-(21736, 4409, 1), -- MP Increase (1x)
-(21736, 4410, 11), -- Average P. Atk.
-(21736, 4411, 11), -- Average M. Atk.
-(21736, 4412, 11), -- Average P. Def.
-(21736, 4413, 11), -- Average M. Def.
-(21736, 4414, 2), -- Standard Type
-(21736, 4415, 7), -- Daggers
-(21736, 4416, 1), -- Undead
+(21736, 4274, 1), -- Blunt Attack Weak Point
+(21736, 4408, 11), -- HP Modifiers
+(21736, 4409, 1), -- MP Modifiers
+(21736, 4410, 11), -- P. Atk. Modifiers
+(21736, 4411, 11), -- M. Atk. Modifiers
+(21736, 4412, 11), -- P. Def. Modifiers
+(21736, 4413, 11), -- M. Def. Modifiers
+(21736, 4414, 2), -- Armor Type
+(21736, 4415, 7), -- Weapon Type
+(21736, 4416, 1), -- Races
 -- Forbidden Path Invader Soldier
-(21737, 4285, 3), -- Resist Sleep Attacks
-(21737, 4408, 11), -- HP Increase (3x)
-(21737, 4409, 1), -- MP Increase (1x)
-(21737, 4410, 11), -- Average P. Atk.
-(21737, 4411, 11), -- Average M. Atk.
-(21737, 4412, 11), -- Average P. Def.
-(21737, 4413, 11), -- Average M. Def.
-(21737, 4414, 3), -- Light Armor Type
-(21737, 4415, 7), -- Daggers
-(21737, 4416, 9), -- Demons
+(21737, 4285, 3), -- Resist Sleep
+(21737, 4408, 11), -- HP Modifiers
+(21737, 4409, 1), -- MP Modifiers
+(21737, 4410, 11), -- P. Atk. Modifiers
+(21737, 4411, 11), -- M. Atk. Modifiers
+(21737, 4412, 11), -- P. Def. Modifiers
+(21737, 4413, 11), -- M. Def. Modifiers
+(21737, 4414, 3), -- Armor Type
+(21737, 4415, 7), -- Weapon Type
+(21737, 4416, 9), -- Races
 (21737, 4581, 6), -- Hold
 -- Forbidden Path Invader Disciple
 (21738, 4117, 6), -- Paralysis
-(21738, 4274, 1), -- Blunt Weapon Weak Point
-(21738, 4408, 11), -- HP Increase (3x)
-(21738, 4409, 1), -- MP Increase (1x)
-(21738, 4410, 11), -- Average P. Atk.
-(21738, 4411, 11), -- Average M. Atk.
-(21738, 4412, 11), -- Average P. Def.
-(21738, 4413, 11), -- Average M. Def.
-(21738, 4414, 2), -- Standard Type
-(21738, 4415, 7), -- Daggers
-(21738, 4416, 1), -- Undead
+(21738, 4274, 1), -- Blunt Attack Weak Point
+(21738, 4408, 11), -- HP Modifiers
+(21738, 4409, 1), -- MP Modifiers
+(21738, 4410, 11), -- P. Atk. Modifiers
+(21738, 4411, 11), -- M. Atk. Modifiers
+(21738, 4412, 11), -- P. Def. Modifiers
+(21738, 4413, 11), -- M. Def. Modifiers
+(21738, 4414, 2), -- Armor Type
+(21738, 4415, 7), -- Weapon Type
+(21738, 4416, 1), -- Races
 -- Forbidden Path Invader Berserker
 (21739, 4095, 1), -- Damage Shield
-(21739, 4119, 3), -- Decrease Accuracy
-(21739, 4274, 1), -- Blunt Weapon Weak Point
-(21739, 4408, 11), -- HP Increase (3x)
-(21739, 4409, 1), -- MP Increase (1x)
-(21739, 4410, 9), -- Slightly Weak P. Atk.
-(21739, 4411, 9), -- Slightly Weak M. Atk.
-(21739, 4412, 13), -- Slightly Strong P. Def.
-(21739, 4413, 13), -- Slightly Strong M. Def.
-(21739, 4414, 2), -- Standard Type
-(21739, 4415, 7), -- Daggers
-(21739, 4416, 1), -- Undead
+(21739, 4119, 3), -- Fall in accuracy
+(21739, 4274, 1), -- Blunt Attack Weak Point
+(21739, 4408, 11), -- HP Modifiers
+(21739, 4409, 1), -- MP Modifiers
+(21739, 4410, 9), -- P. Atk. Modifiers
+(21739, 4411, 9), -- M. Atk. Modifiers
+(21739, 4412, 13), -- P. Def. Modifiers
+(21739, 4413, 13), -- M. Def. Modifiers
+(21739, 4414, 2), -- Armor Type
+(21739, 4415, 7), -- Weapon Type
+(21739, 4416, 1), -- Races
 -- Forbidden Path Invader Food
 (21740, 4045, 1), -- Resist Full Magic Attack
-(21740, 4408, 1), -- HP Increase (1x)
-(21740, 4409, 1), -- MP Increase (1x)
-(21740, 4410, 11), -- Average P. Atk.
-(21740, 4411, 11), -- Average M. Atk.
-(21740, 4412, 11), -- Average P. Def.
-(21740, 4413, 11), -- Average M. Def.
-(21740, 4414, 2), -- Standard Type
-(21740, 4415, 3), -- One-handed Sword
-(21740, 4416, 2), -- Magic Creatures
+(21740, 4408, 1), -- HP Modifiers
+(21740, 4409, 1), -- MP Modifiers
+(21740, 4410, 11), -- P. Atk. Modifiers
+(21740, 4411, 11), -- M. Atk. Modifiers
+(21740, 4412, 11), -- P. Def. Modifiers
+(21740, 4413, 11), -- M. Def. Modifiers
+(21740, 4414, 2), -- Armor Type
+(21740, 4415, 3), -- Weapon Type
+(21740, 4416, 2), -- Races
 -- Forbidden Path Invader Elite Soldier
-(21741, 4032, 6), -- Power Strike
-(21741, 4285, 3), -- Resist Sleep Attacks
-(21741, 4408, 14), -- HP Increase (6x)
-(21741, 4409, 1), -- MP Increase (1x)
-(21741, 4410, 11), -- Average P. Atk.
-(21741, 4411, 11), -- Average M. Atk.
-(21741, 4412, 11), -- Average P. Def.
-(21741, 4413, 11), -- Average M. Def.
-(21741, 4414, 2), -- Standard Type
-(21741, 4415, 3), -- One-handed Sword
-(21741, 4416, 9), -- Demons
+(21741, 4032, 6), -- NPC Strike
+(21741, 4285, 3), -- Resist Sleep
+(21741, 4408, 14), -- HP Modifiers
+(21741, 4409, 1), -- MP Modifiers
+(21741, 4410, 11), -- P. Atk. Modifiers
+(21741, 4411, 11), -- M. Atk. Modifiers
+(21741, 4412, 11), -- P. Def. Modifiers
+(21741, 4413, 11), -- M. Def. Modifiers
+(21741, 4414, 2), -- Armor Type
+(21741, 4415, 3), -- Weapon Type
+(21741, 4416, 9), -- Races
 -- Forbidden Path Invader Elite Soldier
-(21742, 4285, 3), -- Resist Sleep Attacks
-(21742, 4408, 14), -- HP Increase (6x)
-(21742, 4409, 1), -- MP Increase (1x)
-(21742, 4410, 11), -- Average P. Atk.
-(21742, 4411, 11), -- Average M. Atk.
-(21742, 4412, 11), -- Average P. Def.
-(21742, 4413, 11), -- Average M. Def.
-(21742, 4414, 2), -- Standard Type
-(21742, 4415, 3), -- One-handed Sword
-(21742, 4416, 9), -- Demons
+(21742, 4285, 3), -- Resist Sleep
+(21742, 4408, 14), -- HP Modifiers
+(21742, 4409, 1), -- MP Modifiers
+(21742, 4410, 11), -- P. Atk. Modifiers
+(21742, 4411, 11), -- M. Atk. Modifiers
+(21742, 4412, 11), -- P. Def. Modifiers
+(21742, 4413, 11), -- M. Def. Modifiers
+(21742, 4414, 2), -- Armor Type
+(21742, 4415, 3), -- Weapon Type
+(21742, 4416, 9), -- Races
 (21742, 4582, 6), -- Poison
 -- Forbidden Path Invader Elite Soldier
-(21743, 4285, 3), -- Resist Sleep Attacks
-(21743, 4408, 8), -- HP Increase (1/4x)
-(21743, 4409, 1), -- MP Increase (1x)
-(21743, 4410, 8), -- Weak P. Atk.
-(21743, 4411, 8), -- Weak M. Atk.
-(21743, 4412, 14), -- Strong P. Def.
-(21743, 4413, 14), -- Strong M. Def.
-(21743, 4414, 2), -- Standard Type
-(21743, 4415, 3), -- One-handed Sword
-(21743, 4416, 9), -- Demons
-(21743, 4573, 6), -- Sonic Blaster
+(21743, 4285, 3), -- Resist Sleep
+(21743, 4408, 8), -- HP Modifiers
+(21743, 4409, 1), -- MP Modifiers
+(21743, 4410, 8), -- P. Atk. Modifiers
+(21743, 4411, 8), -- M. Atk. Modifiers
+(21743, 4412, 14), -- P. Def. Modifiers
+(21743, 4413, 14), -- M. Def. Modifiers
+(21743, 4414, 2), -- Armor Type
+(21743, 4415, 3), -- Weapon Type
+(21743, 4416, 9), -- Races
+(21743, 4573, 6), -- NPC Sonic Blaster
 -- Forbidden Path Invader Elite Soldier
-(21744, 4285, 3), -- Resist Sleep Attacks
-(21744, 4408, 9), -- HP Increase (1/2x)
-(21744, 4409, 1), -- MP Increase (1x)
-(21744, 4410, 14), -- Strong P. Atk.
-(21744, 4411, 14), -- Strong M. Atk.
-(21744, 4412, 8), -- Weak P. Def.
-(21744, 4413, 8), -- Weak M. Def.
-(21744, 4414, 2), -- Standard Type
-(21744, 4415, 3), -- One-handed Sword
-(21744, 4416, 9), -- Demons
-(21744, 4572, 6), -- Triple Sonic Slash
+(21744, 4285, 3), -- Resist Sleep
+(21744, 4408, 9), -- HP Modifiers
+(21744, 4409, 1), -- MP Modifiers
+(21744, 4410, 14), -- P. Atk. Modifiers
+(21744, 4411, 14), -- M. Atk. Modifiers
+(21744, 4412, 8), -- P. Def. Modifiers
+(21744, 4413, 8), -- M. Def. Modifiers
+(21744, 4414, 2), -- Armor Type
+(21744, 4415, 3), -- Weapon Type
+(21744, 4416, 9), -- Races
+(21744, 4572, 6), -- NPC Triple Sonic Slash
 -- Forbidden Path Invader Warrior
-(21745, 4274, 1), -- Blunt Weapon Weak Point
-(21745, 4408, 14), -- HP Increase (6x)
-(21745, 4409, 1), -- MP Increase (1x)
-(21745, 4410, 11), -- Average P. Atk.
-(21745, 4411, 11), -- Average M. Atk.
-(21745, 4412, 11), -- Average P. Def.
-(21745, 4413, 11), -- Average M. Def.
-(21745, 4414, 2), -- Standard Type
-(21745, 4415, 7), -- Daggers
-(21745, 4416, 1), -- Undead
-(21745, 4560, 6), -- Fire Burn
+(21745, 4274, 1), -- Blunt Attack Weak Point
+(21745, 4408, 14), -- HP Modifiers
+(21745, 4409, 1), -- MP Modifiers
+(21745, 4410, 11), -- P. Atk. Modifiers
+(21745, 4411, 11), -- M. Atk. Modifiers
+(21745, 4412, 11), -- P. Def. Modifiers
+(21745, 4413, 11), -- M. Def. Modifiers
+(21745, 4414, 2), -- Armor Type
+(21745, 4415, 7), -- Weapon Type
+(21745, 4416, 1), -- Races
+(21745, 4560, 6), -- NPC Fire Burn
 -- Forbidden Path Invader Elite Soldier
-(21746, 4285, 3), -- Resist Sleep Attacks
-(21746, 4408, 14), -- HP Increase (6x)
-(21746, 4409, 1), -- MP Increase (1x)
-(21746, 4410, 9), -- Slightly Weak P. Atk.
-(21746, 4411, 9), -- Slightly Weak M. Atk.
-(21746, 4412, 13), -- Slightly Strong P. Def.
-(21746, 4413, 13), -- Slightly Strong M. Def.
-(21746, 4414, 2), -- Standard Type
-(21746, 4415, 3), -- One-handed Sword
-(21746, 4416, 9), -- Demons
-(21746, 4572, 6), -- Triple Sonic Slash
+(21746, 4285, 3), -- Resist Sleep
+(21746, 4408, 14), -- HP Modifiers
+(21746, 4409, 1), -- MP Modifiers
+(21746, 4410, 9), -- P. Atk. Modifiers
+(21746, 4411, 9), -- M. Atk. Modifiers
+(21746, 4412, 13), -- P. Def. Modifiers
+(21746, 4413, 13), -- M. Def. Modifiers
+(21746, 4414, 2), -- Armor Type
+(21746, 4415, 3), -- Weapon Type
+(21746, 4416, 9), -- Races
+(21746, 4572, 6), -- NPC Triple Sonic Slash
 -- Forbidden Path Invader Elite Soldier
-(21747, 4285, 3), -- Resist Sleep Attacks
-(21747, 4408, 14), -- HP Increase (6x)
-(21747, 4409, 1), -- MP Increase (1x)
-(21747, 4410, 13), -- Slightly Strong P. Atk.
-(21747, 4411, 13), -- Slightly Strong M. Atk.
-(21747, 4412, 9), -- Slightly Weak P. Def.
-(21747, 4413, 9), -- Slightly Weak M. Def.
-(21747, 4414, 2), -- Standard Type
-(21747, 4415, 3), -- One-handed Sword
-(21747, 4416, 9), -- Demons
-(21747, 4572, 6), -- Triple Sonic Slash
+(21747, 4285, 3), -- Resist Sleep
+(21747, 4408, 14), -- HP Modifiers
+(21747, 4409, 1), -- MP Modifiers
+(21747, 4410, 13), -- P. Atk. Modifiers
+(21747, 4411, 13), -- M. Atk. Modifiers
+(21747, 4412, 9), -- P. Def. Modifiers
+(21747, 4413, 9), -- M. Def. Modifiers
+(21747, 4414, 2), -- Armor Type
+(21747, 4415, 3), -- Weapon Type
+(21747, 4416, 9), -- Races
+(21747, 4572, 6), -- NPC Triple Sonic Slash
 -- Forbidden Path Invader Elite Soldier
-(21748, 4285, 3), -- Resist Sleep Attacks
-(21748, 4408, 14), -- HP Increase (6x)
-(21748, 4409, 1), -- MP Increase (1x)
-(21748, 4410, 9), -- Slightly Weak P. Atk.
-(21748, 4411, 9), -- Slightly Weak M. Atk.
-(21748, 4412, 13), -- Slightly Strong P. Def.
-(21748, 4413, 13), -- Slightly Strong M. Def.
-(21748, 4414, 2), -- Standard Type
-(21748, 4415, 3), -- One-handed Sword
-(21748, 4416, 9), -- Demons
-(21748, 4573, 6), -- Sonic Blaster
+(21748, 4285, 3), -- Resist Sleep
+(21748, 4408, 14), -- HP Modifiers
+(21748, 4409, 1), -- MP Modifiers
+(21748, 4410, 9), -- P. Atk. Modifiers
+(21748, 4411, 9), -- M. Atk. Modifiers
+(21748, 4412, 13), -- P. Def. Modifiers
+(21748, 4413, 13), -- M. Def. Modifiers
+(21748, 4414, 2), -- Armor Type
+(21748, 4415, 3), -- Weapon Type
+(21748, 4416, 9), -- Races
+(21748, 4573, 6), -- NPC Sonic Blaster
 -- Forbidden Path Invader Elite Soldier
-(21749, 4285, 3), -- Resist Sleep Attacks
-(21749, 4408, 14), -- HP Increase (6x)
-(21749, 4409, 1), -- MP Increase (1x)
-(21749, 4410, 13), -- Slightly Strong P. Atk.
-(21749, 4411, 13), -- Slightly Strong M. Atk.
-(21749, 4412, 9), -- Slightly Weak P. Def.
-(21749, 4413, 9), -- Slightly Weak M. Def.
-(21749, 4414, 2), -- Standard Type
-(21749, 4415, 3), -- One-handed Sword
-(21749, 4416, 9), -- Demons
-(21749, 4573, 6), -- Sonic Blaster
+(21749, 4285, 3), -- Resist Sleep
+(21749, 4408, 14), -- HP Modifiers
+(21749, 4409, 1), -- MP Modifiers
+(21749, 4410, 13), -- P. Atk. Modifiers
+(21749, 4411, 13), -- M. Atk. Modifiers
+(21749, 4412, 9), -- P. Def. Modifiers
+(21749, 4413, 9), -- M. Def. Modifiers
+(21749, 4414, 2), -- Armor Type
+(21749, 4415, 3), -- Weapon Type
+(21749, 4416, 9), -- Races
+(21749, 4573, 6), -- NPC Sonic Blaster
 -- Forbidden Path Invader Magus
-(21750, 4285, 3), -- Resist Sleep Attacks
-(21750, 4408, 14), -- HP Increase (6x)
-(21750, 4409, 1), -- MP Increase (1x)
-(21750, 4410, 11), -- Average P. Atk.
-(21750, 4411, 11), -- Average M. Atk.
-(21750, 4412, 11), -- Average P. Def.
-(21750, 4413, 11), -- Average M. Def.
-(21750, 4414, 3), -- Light Armor Type
-(21750, 4415, 5), -- Blunt Weapons
-(21750, 4416, 9), -- Demons
-(21750, 4561, 6), -- Fire Burn
-(21750, 4563, 6), -- Solar Flare
+(21750, 4285, 3), -- Resist Sleep
+(21750, 4408, 14), -- HP Modifiers
+(21750, 4409, 1), -- MP Modifiers
+(21750, 4410, 11), -- P. Atk. Modifiers
+(21750, 4411, 11), -- M. Atk. Modifiers
+(21750, 4412, 11), -- P. Def. Modifiers
+(21750, 4413, 11), -- M. Def. Modifiers
+(21750, 4414, 3), -- Armor Type
+(21750, 4415, 5), -- Weapon Type
+(21750, 4416, 9), -- Races
+(21750, 4561, 6), -- NPC Fire Burn - Magic
+(21750, 4563, 6), -- NPC Solar Flare - Magic
 -- Dark Omen Invader Soldier
-(21751, 4067, 7), -- Blow
-(21751, 4408, 11), -- HP Increase (3x)
-(21751, 4409, 1), -- MP Increase (1x)
-(21751, 4410, 11), -- Average P. Atk.
-(21751, 4411, 11), -- Average M. Atk.
-(21751, 4412, 18), -- Extremely Strong P. Def.
-(21751, 4413, 11), -- Average M. Def.
-(21751, 4414, 2), -- Standard Type
-(21751, 4415, 3), -- One-handed Sword
-(21751, 4416, 1), -- Undead
+(21751, 4067, 7), -- NPC Mortal Blow
+(21751, 4408, 11), -- HP Modifiers
+(21751, 4409, 1), -- MP Modifiers
+(21751, 4410, 11), -- P. Atk. Modifiers
+(21751, 4411, 11), -- M. Atk. Modifiers
+(21751, 4412, 18), -- P. Def. Modifiers
+(21751, 4413, 11), -- M. Def. Modifiers
+(21751, 4414, 2), -- Armor Type
+(21751, 4415, 3), -- Weapon Type
+(21751, 4416, 1), -- Races
 -- Dark Omen Invader Soldier
-(21752, 4408, 11), -- HP Increase (3x)
-(21752, 4409, 1), -- MP Increase (1x)
-(21752, 4410, 8), -- Weak P. Atk.
-(21752, 4411, 8), -- Weak M. Atk.
-(21752, 4412, 20), -- Extremely Strong P. Def.
-(21752, 4413, 14), -- Strong M. Def.
-(21752, 4414, 2), -- Standard Type
-(21752, 4415, 3), -- One-handed Sword
-(21752, 4416, 1), -- Undead
+(21752, 4408, 11), -- HP Modifiers
+(21752, 4409, 1), -- MP Modifiers
+(21752, 4410, 8), -- P. Atk. Modifiers
+(21752, 4411, 8), -- M. Atk. Modifiers
+(21752, 4412, 20), -- P. Def. Modifiers
+(21752, 4413, 14), -- M. Def. Modifiers
+(21752, 4414, 2), -- Armor Type
+(21752, 4415, 3), -- Weapon Type
+(21752, 4416, 1), -- Races
 (21752, 4579, 8), -- Bleed
-(21752, 4789, 4), -- High Level
+(21752, 4789, 4), -- NPC High Level
 -- Dark Omen Invader Archer
-(21753, 4274, 1), -- Blunt Weapon Weak Point
-(21753, 4408, 11), -- HP Increase (3x)
-(21753, 4409, 1), -- MP Increase (1x)
-(21753, 4410, 14), -- Strong P. Atk.
-(21753, 4411, 14), -- Strong M. Atk.
-(21753, 4412, 16), -- Very Strong P. Def.
-(21753, 4413, 8), -- Weak M. Def.
-(21753, 4414, 3), -- Light Armor Type
-(21753, 4415, 9), -- Bows
-(21753, 4416, 1), -- Undead
-(21753, 4789, 3), -- High Level
+(21753, 4274, 1), -- Blunt Attack Weak Point
+(21753, 4408, 11), -- HP Modifiers
+(21753, 4409, 1), -- MP Modifiers
+(21753, 4410, 14), -- P. Atk. Modifiers
+(21753, 4411, 14), -- M. Atk. Modifiers
+(21753, 4412, 16), -- P. Def. Modifiers
+(21753, 4413, 8), -- M. Def. Modifiers
+(21753, 4414, 3), -- Armor Type
+(21753, 4415, 9), -- Weapon Type
+(21753, 4416, 1), -- Races
+(21753, 4789, 3), -- NPC High Level
 -- Dark Omen Invader Elite Soldier
-(21754, 4408, 11), -- HP Increase (3x)
-(21754, 4409, 1), -- MP Increase (1x)
-(21754, 4410, 11), -- Average P. Atk.
-(21754, 4411, 11), -- Average M. Atk.
-(21754, 4412, 11), -- Average P. Def.
-(21754, 4413, 15), -- Strong M. Def.
-(21754, 4414, 3), -- Light Armor Type
-(21754, 4415, 7), -- Daggers
-(21754, 4416, 1), -- Undead
+(21754, 4408, 11), -- HP Modifiers
+(21754, 4409, 1), -- MP Modifiers
+(21754, 4410, 11), -- P. Atk. Modifiers
+(21754, 4411, 11), -- M. Atk. Modifiers
+(21754, 4412, 11), -- P. Def. Modifiers
+(21754, 4413, 15), -- M. Def. Modifiers
+(21754, 4414, 3), -- Armor Type
+(21754, 4415, 7), -- Weapon Type
+(21754, 4416, 1), -- Races
 (21754, 4643, 8), -- Decrease Speed
-(21754, 4789, 4), -- High Level
+(21754, 4789, 4), -- NPC High Level
 -- Dark Omen Invader Shaman
-(21755, 4157, 7), -- Blaze
-(21755, 4160, 7), -- Aura Burn
-(21755, 4408, 11), -- HP Increase (3x)
-(21755, 4409, 1), -- MP Increase (1x)
-(21755, 4410, 11), -- Average P. Atk.
-(21755, 4411, 11), -- Average M. Atk.
-(21755, 4412, 11), -- Average P. Def.
-(21755, 4413, 18), -- Extremely Strong M. Def.
-(21755, 4414, 3), -- Light Armor Type
-(21755, 4415, 7), -- Daggers
-(21755, 4416, 1), -- Undead
-(21755, 4675, 1), -- Fighter Dispell
-(21755, 4789, 3), -- High Level
+(21755, 4157, 7), -- NPC Blaze - Magic
+(21755, 4160, 7), -- NPC Aura Burn - Magic
+(21755, 4408, 11), -- HP Modifiers
+(21755, 4409, 1), -- MP Modifiers
+(21755, 4410, 11), -- P. Atk. Modifiers
+(21755, 4411, 11), -- M. Atk. Modifiers
+(21755, 4412, 11), -- P. Def. Modifiers
+(21755, 4413, 18), -- M. Def. Modifiers
+(21755, 4414, 3), -- Armor Type
+(21755, 4415, 7), -- Weapon Type
+(21755, 4416, 1), -- Races
+(21755, 4675, 1), -- NPC Dispel Fighter Buff
+(21755, 4789, 3), -- NPC High Level
 -- Dark Omen Invader Priest
 (21756, 4046, 7), -- Sleep
-(21756, 4065, 7), -- Heal
-(21756, 4408, 10), -- HP Increase (2x)
-(21756, 4409, 1), -- MP Increase (1x)
-(21756, 4410, 11), -- Average P. Atk.
-(21756, 4411, 11), -- Average M. Atk.
-(21756, 4412, 11), -- Average P. Def.
-(21756, 4413, 18), -- Extremely Strong M. Def.
-(21756, 4414, 3), -- Light Armor Type
-(21756, 4415, 7), -- Daggers
-(21756, 4416, 1), -- Undead
+(21756, 4065, 7), -- NPC Heal
+(21756, 4408, 10), -- HP Modifiers
+(21756, 4409, 1), -- MP Modifiers
+(21756, 4410, 11), -- P. Atk. Modifiers
+(21756, 4411, 11), -- M. Atk. Modifiers
+(21756, 4412, 11), -- P. Def. Modifiers
+(21756, 4413, 18), -- M. Def. Modifiers
+(21756, 4414, 3), -- Armor Type
+(21756, 4415, 7), -- Weapon Type
+(21756, 4416, 1), -- Races
 -- Dark Omen Invader Magus
-(21757, 4160, 8), -- Aura Burn
-(21757, 4257, 8), -- Hydro Blast
-(21757, 4408, 11), -- HP Increase (3x)
-(21757, 4409, 1), -- MP Increase (1x)
-(21757, 4410, 14), -- Strong P. Atk.
-(21757, 4411, 14), -- Strong M. Atk.
-(21757, 4412, 8), -- Weak P. Def.
-(21757, 4413, 8), -- Weak M. Def.
-(21757, 4414, 3), -- Light Armor Type
-(21757, 4415, 7), -- Daggers
-(21757, 4416, 1), -- Undead
-(21757, 4789, 4), -- High Level
+(21757, 4160, 8), -- NPC Aura Burn - Magic
+(21757, 4257, 8), -- NPC Hydroblast - Magic
+(21757, 4408, 11), -- HP Modifiers
+(21757, 4409, 1), -- MP Modifiers
+(21757, 4410, 14), -- P. Atk. Modifiers
+(21757, 4411, 14), -- M. Atk. Modifiers
+(21757, 4412, 8), -- P. Def. Modifiers
+(21757, 4413, 8), -- M. Def. Modifiers
+(21757, 4414, 3), -- Armor Type
+(21757, 4415, 7), -- Weapon Type
+(21757, 4416, 1), -- Races
+(21757, 4789, 4), -- NPC High Level
 -- Dark Omen Invader Martyrs
 (21758, 4286, 1), -- Greater Resist Sleep
 (21758, 4288, 1), -- Greater Resist Hold
-(21758, 4408, 11), -- HP Increase (3x)
-(21758, 4409, 1), -- MP Increase (1x)
-(21758, 4410, 11), -- Average P. Atk.
-(21758, 4411, 11), -- Average M. Atk.
-(21758, 4412, 11), -- Average P. Def.
-(21758, 4413, 11), -- Average M. Def.
-(21758, 4414, 3), -- Light Armor Type
-(21758, 4415, 7), -- Daggers
-(21758, 4416, 1), -- Undead
-(21758, 4614, 7), -- Death Bomb
+(21758, 4408, 11), -- HP Modifiers
+(21758, 4409, 1), -- MP Modifiers
+(21758, 4410, 11), -- P. Atk. Modifiers
+(21758, 4411, 11), -- M. Atk. Modifiers
+(21758, 4412, 11), -- P. Def. Modifiers
+(21758, 4413, 11), -- M. Def. Modifiers
+(21758, 4414, 3), -- Armor Type
+(21758, 4415, 7), -- Weapon Type
+(21758, 4416, 1), -- Races
+(21758, 4614, 7), -- NPC Death Bomb
 -- Dark Omen Invader Warrior
-(21759, 4274, 1), -- Blunt Weapon Weak Point
-(21759, 4408, 11), -- HP Increase (3x)
-(21759, 4409, 1), -- MP Increase (1x)
-(21759, 4410, 11), -- Average P. Atk.
-(21759, 4411, 11), -- Average M. Atk.
-(21759, 4412, 11), -- Average P. Def.
-(21759, 4413, 11), -- Average M. Def.
-(21759, 4414, 2), -- Standard Type
-(21759, 4415, 3), -- One-handed Sword
-(21759, 4416, 1), -- Undead
-(21759, 4789, 3), -- High Level
+(21759, 4274, 1), -- Blunt Attack Weak Point
+(21759, 4408, 11), -- HP Modifiers
+(21759, 4409, 1), -- MP Modifiers
+(21759, 4410, 11), -- P. Atk. Modifiers
+(21759, 4411, 11), -- M. Atk. Modifiers
+(21759, 4412, 11), -- P. Def. Modifiers
+(21759, 4413, 11), -- M. Def. Modifiers
+(21759, 4414, 2), -- Armor Type
+(21759, 4415, 3), -- Weapon Type
+(21759, 4416, 1), -- Races
+(21759, 4789, 3), -- NPC High Level
 -- Dark Omen Invader Soldier
-(21760, 4408, 11), -- HP Increase (3x)
-(21760, 4409, 1), -- MP Increase (1x)
-(21760, 4410, 11), -- Average P. Atk.
-(21760, 4411, 11), -- Average M. Atk.
-(21760, 4412, 11), -- Average P. Def.
-(21760, 4413, 11), -- Average M. Def.
-(21760, 4414, 2), -- Standard Type
-(21760, 4415, 3), -- One-handed Sword
-(21760, 4416, 1), -- Undead
+(21760, 4408, 11), -- HP Modifiers
+(21760, 4409, 1), -- MP Modifiers
+(21760, 4410, 11), -- P. Atk. Modifiers
+(21760, 4411, 11), -- M. Atk. Modifiers
+(21760, 4412, 11), -- P. Def. Modifiers
+(21760, 4413, 11), -- M. Def. Modifiers
+(21760, 4414, 2), -- Armor Type
+(21760, 4415, 3), -- Weapon Type
+(21760, 4416, 1), -- Races
 (21760, 4581, 7), -- Hold
 -- Dark Omen Invader Disciple
 (21761, 4117, 7), -- Paralysis
-(21761, 4274, 1), -- Blunt Weapon Weak Point
-(21761, 4408, 11), -- HP Increase (3x)
-(21761, 4409, 1), -- MP Increase (1x)
-(21761, 4410, 11), -- Average P. Atk.
-(21761, 4411, 11), -- Average M. Atk.
-(21761, 4412, 11), -- Average P. Def.
-(21761, 4413, 11), -- Average M. Def.
-(21761, 4414, 2), -- Standard Type
-(21761, 4415, 3), -- One-handed Sword
-(21761, 4416, 1), -- Undead
-(21761, 4789, 3), -- High Level
+(21761, 4274, 1), -- Blunt Attack Weak Point
+(21761, 4408, 11), -- HP Modifiers
+(21761, 4409, 1), -- MP Modifiers
+(21761, 4410, 11), -- P. Atk. Modifiers
+(21761, 4411, 11), -- M. Atk. Modifiers
+(21761, 4412, 11), -- P. Def. Modifiers
+(21761, 4413, 11), -- M. Def. Modifiers
+(21761, 4414, 2), -- Armor Type
+(21761, 4415, 3), -- Weapon Type
+(21761, 4416, 1), -- Races
+(21761, 4789, 3), -- NPC High Level
 -- Dark Omen Invader Berserker
 (21762, 4095, 1), -- Damage Shield
-(21762, 4119, 3), -- Decrease Accuracy
-(21762, 4274, 1), -- Blunt Weapon Weak Point
-(21762, 4408, 11), -- HP Increase (3x)
-(21762, 4409, 1), -- MP Increase (1x)
-(21762, 4410, 9), -- Slightly Weak P. Atk.
-(21762, 4411, 9), -- Slightly Weak M. Atk.
-(21762, 4412, 13), -- Slightly Strong P. Def.
-(21762, 4413, 13), -- Slightly Strong M. Def.
-(21762, 4414, 2), -- Standard Type
-(21762, 4415, 3), -- One-handed Sword
-(21762, 4416, 1), -- Undead
-(21762, 4789, 4), -- High Level
+(21762, 4119, 3), -- Fall in accuracy
+(21762, 4274, 1), -- Blunt Attack Weak Point
+(21762, 4408, 11), -- HP Modifiers
+(21762, 4409, 1), -- MP Modifiers
+(21762, 4410, 9), -- P. Atk. Modifiers
+(21762, 4411, 9), -- M. Atk. Modifiers
+(21762, 4412, 13), -- P. Def. Modifiers
+(21762, 4413, 13), -- M. Def. Modifiers
+(21762, 4414, 2), -- Armor Type
+(21762, 4415, 3), -- Weapon Type
+(21762, 4416, 1), -- Races
+(21762, 4789, 4), -- NPC High Level
 -- Dark Omen Invader Food
 (21763, 4045, 1), -- Resist Full Magic Attack
-(21763, 4408, 1), -- HP Increase (1x)
-(21763, 4409, 1), -- MP Increase (1x)
-(21763, 4410, 11), -- Average P. Atk.
-(21763, 4411, 11), -- Average M. Atk.
-(21763, 4412, 11), -- Average P. Def.
-(21763, 4413, 11), -- Average M. Def.
-(21763, 4414, 2), -- Standard Type
-(21763, 4415, 3), -- One-handed Sword
-(21763, 4416, 2), -- Magic Creatures
+(21763, 4408, 1), -- HP Modifiers
+(21763, 4409, 1), -- MP Modifiers
+(21763, 4410, 11), -- P. Atk. Modifiers
+(21763, 4411, 11), -- M. Atk. Modifiers
+(21763, 4412, 11), -- P. Def. Modifiers
+(21763, 4413, 11), -- M. Def. Modifiers
+(21763, 4414, 2), -- Armor Type
+(21763, 4415, 3), -- Weapon Type
+(21763, 4416, 2), -- Races
 -- Dark Omen Invader Elite Soldier
-(21764, 4032, 8), -- Power Strike
-(21764, 4408, 14), -- HP Increase (6x)
-(21764, 4409, 1), -- MP Increase (1x)
-(21764, 4410, 11), -- Average P. Atk.
-(21764, 4411, 11), -- Average M. Atk.
-(21764, 4412, 11), -- Average P. Def.
-(21764, 4413, 11), -- Average M. Def.
-(21764, 4414, 2), -- Standard Type
-(21764, 4415, 3), -- One-handed Sword
-(21764, 4416, 1), -- Undead
-(21764, 4789, 4), -- High Level
+(21764, 4032, 8), -- NPC Strike
+(21764, 4408, 14), -- HP Modifiers
+(21764, 4409, 1), -- MP Modifiers
+(21764, 4410, 11), -- P. Atk. Modifiers
+(21764, 4411, 11), -- M. Atk. Modifiers
+(21764, 4412, 11), -- P. Def. Modifiers
+(21764, 4413, 11), -- M. Def. Modifiers
+(21764, 4414, 2), -- Armor Type
+(21764, 4415, 3), -- Weapon Type
+(21764, 4416, 1), -- Races
+(21764, 4789, 4), -- NPC High Level
 -- Dark Omen Invader Elite Soldier
-(21765, 4408, 14), -- HP Increase (6x)
-(21765, 4409, 1), -- MP Increase (1x)
-(21765, 4410, 11), -- Average P. Atk.
-(21765, 4411, 11), -- Average M. Atk.
-(21765, 4412, 11), -- Average P. Def.
-(21765, 4413, 11), -- Average M. Def.
-(21765, 4414, 2), -- Standard Type
-(21765, 4415, 3), -- One-handed Sword
-(21765, 4416, 1), -- Undead
+(21765, 4408, 14), -- HP Modifiers
+(21765, 4409, 1), -- MP Modifiers
+(21765, 4410, 11), -- P. Atk. Modifiers
+(21765, 4411, 11), -- M. Atk. Modifiers
+(21765, 4412, 11), -- P. Def. Modifiers
+(21765, 4413, 11), -- M. Def. Modifiers
+(21765, 4414, 2), -- Armor Type
+(21765, 4415, 3), -- Weapon Type
+(21765, 4416, 1), -- Races
 (21765, 4582, 8), -- Poison
-(21765, 4789, 4), -- High Level
+(21765, 4789, 4), -- NPC High Level
 -- Dark Omen Invader Elite Soldier
-(21766, 4408, 8), -- HP Increase (1/4x)
-(21766, 4409, 1), -- MP Increase (1x)
-(21766, 4410, 8), -- Weak P. Atk.
-(21766, 4411, 8), -- Weak M. Atk.
-(21766, 4412, 14), -- Strong P. Def.
-(21766, 4413, 14), -- Strong M. Def.
-(21766, 4414, 2), -- Standard Type
-(21766, 4415, 3), -- One-handed Sword
-(21766, 4416, 1), -- Undead
-(21766, 4573, 7), -- Sonic Blaster
-(21766, 4789, 4), -- High Level
+(21766, 4408, 8), -- HP Modifiers
+(21766, 4409, 1), -- MP Modifiers
+(21766, 4410, 8), -- P. Atk. Modifiers
+(21766, 4411, 8), -- M. Atk. Modifiers
+(21766, 4412, 14), -- P. Def. Modifiers
+(21766, 4413, 14), -- M. Def. Modifiers
+(21766, 4414, 2), -- Armor Type
+(21766, 4415, 3), -- Weapon Type
+(21766, 4416, 1), -- Races
+(21766, 4573, 7), -- NPC Sonic Blaster
+(21766, 4789, 4), -- NPC High Level
 -- Dark Omen Invader Elite Soldier
-(21767, 4408, 9), -- HP Increase (1/2x)
-(21767, 4409, 1), -- MP Increase (1x)
-(21767, 4410, 14), -- Strong P. Atk.
-(21767, 4411, 14), -- Strong M. Atk.
-(21767, 4412, 8), -- Weak P. Def.
-(21767, 4413, 8), -- Weak M. Def.
-(21767, 4414, 2), -- Standard Type
-(21767, 4415, 3), -- One-handed Sword
-(21767, 4416, 1), -- Undead
-(21767, 4572, 7), -- Triple Sonic Slash
+(21767, 4408, 9), -- HP Modifiers
+(21767, 4409, 1), -- MP Modifiers
+(21767, 4410, 14), -- P. Atk. Modifiers
+(21767, 4411, 14), -- M. Atk. Modifiers
+(21767, 4412, 8), -- P. Def. Modifiers
+(21767, 4413, 8), -- M. Def. Modifiers
+(21767, 4414, 2), -- Armor Type
+(21767, 4415, 3), -- Weapon Type
+(21767, 4416, 1), -- Races
+(21767, 4572, 7), -- NPC Triple Sonic Slash
 -- Dark Omen Invader Warrior
-(21768, 4274, 1), -- Blunt Weapon Weak Point
-(21768, 4408, 14), -- HP Increase (6x)
-(21768, 4409, 1), -- MP Increase (1x)
-(21768, 4410, 11), -- Average P. Atk.
-(21768, 4411, 11), -- Average M. Atk.
-(21768, 4412, 11), -- Average P. Def.
-(21768, 4413, 11), -- Average M. Def.
-(21768, 4414, 2), -- Standard Type
-(21768, 4415, 3), -- One-handed Sword
-(21768, 4416, 1), -- Undead
-(21768, 4560, 7), -- Fire Burn
-(21768, 4789, 3), -- High Level
+(21768, 4274, 1), -- Blunt Attack Weak Point
+(21768, 4408, 14), -- HP Modifiers
+(21768, 4409, 1), -- MP Modifiers
+(21768, 4410, 11), -- P. Atk. Modifiers
+(21768, 4411, 11), -- M. Atk. Modifiers
+(21768, 4412, 11), -- P. Def. Modifiers
+(21768, 4413, 11), -- M. Def. Modifiers
+(21768, 4414, 2), -- Armor Type
+(21768, 4415, 3), -- Weapon Type
+(21768, 4416, 1), -- Races
+(21768, 4560, 7), -- NPC Fire Burn
+(21768, 4789, 3), -- NPC High Level
 -- Dark Omen Invader Elite Soldier
-(21769, 4408, 14), -- HP Increase (6x)
-(21769, 4409, 1), -- MP Increase (1x)
-(21769, 4410, 9), -- Slightly Weak P. Atk.
-(21769, 4411, 9), -- Slightly Weak M. Atk.
-(21769, 4412, 13), -- Slightly Strong P. Def.
-(21769, 4413, 13), -- Slightly Strong M. Def.
-(21769, 4414, 2), -- Standard Type
-(21769, 4415, 3), -- One-handed Sword
-(21769, 4416, 1), -- Undead
-(21769, 4572, 7), -- Triple Sonic Slash
+(21769, 4408, 14), -- HP Modifiers
+(21769, 4409, 1), -- MP Modifiers
+(21769, 4410, 9), -- P. Atk. Modifiers
+(21769, 4411, 9), -- M. Atk. Modifiers
+(21769, 4412, 13), -- P. Def. Modifiers
+(21769, 4413, 13), -- M. Def. Modifiers
+(21769, 4414, 2), -- Armor Type
+(21769, 4415, 3), -- Weapon Type
+(21769, 4416, 1), -- Races
+(21769, 4572, 7), -- NPC Triple Sonic Slash
 -- Dark Omen Invader Elite Soldier
-(21770, 4408, 14), -- HP Increase (6x)
-(21770, 4409, 1), -- MP Increase (1x)
-(21770, 4410, 13), -- Slightly Strong P. Atk.
-(21770, 4411, 13), -- Slightly Strong M. Atk.
-(21770, 4412, 9), -- Slightly Weak P. Def.
-(21770, 4413, 9), -- Slightly Weak M. Def.
-(21770, 4414, 2), -- Standard Type
-(21770, 4415, 3), -- One-handed Sword
-(21770, 4416, 1), -- Undead
-(21770, 4572, 7), -- Triple Sonic Slash
-(21770, 4789, 3), -- High Level
+(21770, 4408, 14), -- HP Modifiers
+(21770, 4409, 1), -- MP Modifiers
+(21770, 4410, 13), -- P. Atk. Modifiers
+(21770, 4411, 13), -- M. Atk. Modifiers
+(21770, 4412, 9), -- P. Def. Modifiers
+(21770, 4413, 9), -- M. Def. Modifiers
+(21770, 4414, 2), -- Armor Type
+(21770, 4415, 3), -- Weapon Type
+(21770, 4416, 1), -- Races
+(21770, 4572, 7), -- NPC Triple Sonic Slash
+(21770, 4789, 3), -- NPC High Level
 -- Dark Omen Invader Elite Soldier
-(21771, 4408, 14), -- HP Increase (6x)
-(21771, 4409, 1), -- MP Increase (1x)
-(21771, 4410, 9), -- Slightly Weak P. Atk.
-(21771, 4411, 9), -- Slightly Weak M. Atk.
-(21771, 4412, 13), -- Slightly Strong P. Def.
-(21771, 4413, 13), -- Slightly Strong M. Def.
-(21771, 4414, 2), -- Standard Type
-(21771, 4415, 3), -- One-handed Sword
-(21771, 4416, 1), -- Undead
-(21771, 4573, 7), -- Sonic Blaster
+(21771, 4408, 14), -- HP Modifiers
+(21771, 4409, 1), -- MP Modifiers
+(21771, 4410, 9), -- P. Atk. Modifiers
+(21771, 4411, 9), -- M. Atk. Modifiers
+(21771, 4412, 13), -- P. Def. Modifiers
+(21771, 4413, 13), -- M. Def. Modifiers
+(21771, 4414, 2), -- Armor Type
+(21771, 4415, 3), -- Weapon Type
+(21771, 4416, 1), -- Races
+(21771, 4573, 7), -- NPC Sonic Blaster
 -- Dark Omen Invader Elite Soldier
-(21772, 4408, 14), -- HP Increase (6x)
-(21772, 4409, 1), -- MP Increase (1x)
-(21772, 4410, 13), -- Slightly Strong P. Atk.
-(21772, 4411, 13), -- Slightly Strong M. Atk.
-(21772, 4412, 9), -- Slightly Weak P. Def.
-(21772, 4413, 9), -- Slightly Weak M. Def.
-(21772, 4414, 2), -- Standard Type
-(21772, 4415, 3), -- One-handed Sword
-(21772, 4416, 1), -- Undead
-(21772, 4573, 8), -- Sonic Blaster
-(21772, 4789, 4), -- High Level
+(21772, 4408, 14), -- HP Modifiers
+(21772, 4409, 1), -- MP Modifiers
+(21772, 4410, 13), -- P. Atk. Modifiers
+(21772, 4411, 13), -- M. Atk. Modifiers
+(21772, 4412, 9), -- P. Def. Modifiers
+(21772, 4413, 9), -- M. Def. Modifiers
+(21772, 4414, 2), -- Armor Type
+(21772, 4415, 3), -- Weapon Type
+(21772, 4416, 1), -- Races
+(21772, 4573, 8), -- NPC Sonic Blaster
+(21772, 4789, 4), -- NPC High Level
 -- Dark Omen Invader Magus
-(21773, 4408, 14), -- HP Increase (6x)
-(21773, 4409, 1), -- MP Increase (1x)
-(21773, 4410, 11), -- Average P. Atk.
-(21773, 4411, 11), -- Average M. Atk.
-(21773, 4412, 11), -- Average P. Def.
-(21773, 4413, 11), -- Average M. Def.
-(21773, 4414, 3), -- Light Armor Type
-(21773, 4415, 7), -- Daggers
-(21773, 4416, 1), -- Undead
-(21773, 4561, 7), -- Fire Burn
-(21773, 4563, 7), -- Solar Flare
-(21773, 4789, 3), -- High Level
+(21773, 4408, 14), -- HP Modifiers
+(21773, 4409, 1), -- MP Modifiers
+(21773, 4410, 11), -- P. Atk. Modifiers
+(21773, 4411, 11), -- M. Atk. Modifiers
+(21773, 4412, 11), -- P. Def. Modifiers
+(21773, 4413, 11), -- M. Def. Modifiers
+(21773, 4414, 3), -- Armor Type
+(21773, 4415, 7), -- Weapon Type
+(21773, 4416, 1), -- Races
+(21773, 4561, 7), -- NPC Fire Burn - Magic
+(21773, 4563, 7), -- NPC Solar Flare - Magic
+(21773, 4789, 3), -- NPC High Level
 -- Messenger Invader Soldier
-(21774, 4067, 9), -- Blow
-(21774, 4408, 11), -- HP Increase (3x)
-(21774, 4409, 1), -- MP Increase (1x)
-(21774, 4410, 11), -- Average P. Atk.
-(21774, 4411, 11), -- Average M. Atk.
-(21774, 4412, 18), -- Extremely Strong P. Def.
-(21774, 4413, 11), -- Average M. Def.
-(21774, 4414, 2), -- Standard Type
-(21774, 4415, 3), -- One-handed Sword
-(21774, 4416, 1), -- Undead
-(21774, 4789, 6), -- High Level
+(21774, 4067, 9), -- NPC Mortal Blow
+(21774, 4408, 11), -- HP Modifiers
+(21774, 4409, 1), -- MP Modifiers
+(21774, 4410, 11), -- P. Atk. Modifiers
+(21774, 4411, 11), -- M. Atk. Modifiers
+(21774, 4412, 18), -- P. Def. Modifiers
+(21774, 4413, 11), -- M. Def. Modifiers
+(21774, 4414, 2), -- Armor Type
+(21774, 4415, 3), -- Weapon Type
+(21774, 4416, 1), -- Races
+(21774, 4789, 6), -- NPC High Level
 -- Messenger Invader Soldier
-(21775, 4408, 11), -- HP Increase (3x)
-(21775, 4409, 1), -- MP Increase (1x)
-(21775, 4410, 8), -- Weak P. Atk.
-(21775, 4411, 8), -- Weak M. Atk.
-(21775, 4412, 20), -- Extremely Strong P. Def.
-(21775, 4413, 14), -- Strong M. Def.
-(21775, 4414, 2), -- Standard Type
-(21775, 4415, 3), -- One-handed Sword
-(21775, 4416, 1), -- Undead
+(21775, 4408, 11), -- HP Modifiers
+(21775, 4409, 1), -- MP Modifiers
+(21775, 4410, 8), -- P. Atk. Modifiers
+(21775, 4411, 8), -- M. Atk. Modifiers
+(21775, 4412, 20), -- P. Def. Modifiers
+(21775, 4413, 14), -- M. Def. Modifiers
+(21775, 4414, 2), -- Armor Type
+(21775, 4415, 3), -- Weapon Type
+(21775, 4416, 1), -- Races
 (21775, 4579, 10), -- Bleed
-(21775, 4789, 9), -- High Level
+(21775, 4789, 9), -- NPC High Level
 -- Messenger Invader Archer
-(21776, 4274, 1), -- Blunt Weapon Weak Point
-(21776, 4408, 11), -- HP Increase (3x)
-(21776, 4409, 1), -- MP Increase (1x)
-(21776, 4410, 14), -- Strong P. Atk.
-(21776, 4411, 14), -- Strong M. Atk.
-(21776, 4412, 13), -- Slightly Strong P. Def.
-(21776, 4413, 8), -- Weak M. Def.
-(21776, 4414, 3), -- Light Armor Type
-(21776, 4415, 9), -- Bows
-(21776, 4416, 1), -- Undead
-(21776, 4789, 8), -- High Level
+(21776, 4274, 1), -- Blunt Attack Weak Point
+(21776, 4408, 11), -- HP Modifiers
+(21776, 4409, 1), -- MP Modifiers
+(21776, 4410, 14), -- P. Atk. Modifiers
+(21776, 4411, 14), -- M. Atk. Modifiers
+(21776, 4412, 13), -- P. Def. Modifiers
+(21776, 4413, 8), -- M. Def. Modifiers
+(21776, 4414, 3), -- Armor Type
+(21776, 4415, 9), -- Weapon Type
+(21776, 4416, 1), -- Races
+(21776, 4789, 8), -- NPC High Level
 -- Messenger Invader Elite Soldier
-(21777, 4408, 11), -- HP Increase (3x)
-(21777, 4409, 1), -- MP Increase (1x)
-(21777, 4410, 11), -- Average P. Atk.
-(21777, 4411, 11), -- Average M. Atk.
-(21777, 4412, 11), -- Average P. Def.
-(21777, 4413, 15), -- Strong M. Def.
-(21777, 4414, 3), -- Light Armor Type
-(21777, 4415, 7), -- Daggers
-(21777, 4416, 1), -- Undead
+(21777, 4408, 11), -- HP Modifiers
+(21777, 4409, 1), -- MP Modifiers
+(21777, 4410, 11), -- P. Atk. Modifiers
+(21777, 4411, 11), -- M. Atk. Modifiers
+(21777, 4412, 11), -- P. Def. Modifiers
+(21777, 4413, 15), -- M. Def. Modifiers
+(21777, 4414, 3), -- Armor Type
+(21777, 4415, 7), -- Weapon Type
+(21777, 4416, 1), -- Races
 (21777, 4643, 10), -- Decrease Speed
-(21777, 4789, 9), -- High Level
+(21777, 4789, 9), -- NPC High Level
 -- Messenger Invader Shaman
-(21778, 4157, 9), -- Blaze
-(21778, 4160, 9), -- Aura Burn
-(21778, 4408, 11), -- HP Increase (3x)
-(21778, 4409, 1), -- MP Increase (1x)
-(21778, 4410, 11), -- Average P. Atk.
-(21778, 4411, 11), -- Average M. Atk.
-(21778, 4412, 11), -- Average P. Def.
-(21778, 4413, 18), -- Extremely Strong M. Def.
-(21778, 4414, 3), -- Light Armor Type
-(21778, 4415, 7), -- Daggers
-(21778, 4416, 1), -- Undead
-(21778, 4675, 1), -- Fighter Dispell
-(21778, 4789, 8), -- High Level
+(21778, 4157, 9), -- NPC Blaze - Magic
+(21778, 4160, 9), -- NPC Aura Burn - Magic
+(21778, 4408, 11), -- HP Modifiers
+(21778, 4409, 1), -- MP Modifiers
+(21778, 4410, 11), -- P. Atk. Modifiers
+(21778, 4411, 11), -- M. Atk. Modifiers
+(21778, 4412, 11), -- P. Def. Modifiers
+(21778, 4413, 18), -- M. Def. Modifiers
+(21778, 4414, 3), -- Armor Type
+(21778, 4415, 7), -- Weapon Type
+(21778, 4416, 1), -- Races
+(21778, 4675, 1), -- NPC Dispel Fighter Buff
+(21778, 4789, 8), -- NPC High Level
 -- Messenger Invader Priest
 (21779, 4046, 9), -- Sleep
-(21779, 4065, 9), -- Heal
-(21779, 4408, 10), -- HP Increase (2x)
-(21779, 4409, 1), -- MP Increase (1x)
-(21779, 4410, 11), -- Average P. Atk.
-(21779, 4411, 11), -- Average M. Atk.
-(21779, 4412, 11), -- Average P. Def.
-(21779, 4413, 18), -- Extremely Strong M. Def.
-(21779, 4414, 3), -- Light Armor Type
-(21779, 4415, 7), -- Daggers
-(21779, 4416, 1), -- Undead
-(21779, 4789, 6), -- High Level
+(21779, 4065, 9), -- NPC Heal
+(21779, 4408, 10), -- HP Modifiers
+(21779, 4409, 1), -- MP Modifiers
+(21779, 4410, 11), -- P. Atk. Modifiers
+(21779, 4411, 11), -- M. Atk. Modifiers
+(21779, 4412, 11), -- P. Def. Modifiers
+(21779, 4413, 18), -- M. Def. Modifiers
+(21779, 4414, 3), -- Armor Type
+(21779, 4415, 7), -- Weapon Type
+(21779, 4416, 1), -- Races
+(21779, 4789, 6), -- NPC High Level
 -- Messenger Invader Magus
-(21780, 4160, 10), -- Aura Burn
-(21780, 4257, 10), -- Hydro Blast
-(21780, 4408, 11), -- HP Increase (3x)
-(21780, 4409, 1), -- MP Increase (1x)
-(21780, 4410, 14), -- Strong P. Atk.
-(21780, 4411, 14), -- Strong M. Atk.
-(21780, 4412, 8), -- Weak P. Def.
-(21780, 4413, 8), -- Weak M. Def.
-(21780, 4414, 3), -- Light Armor Type
-(21780, 4415, 7), -- Daggers
-(21780, 4416, 1), -- Undead
-(21780, 4789, 9), -- High Level
+(21780, 4160, 10), -- NPC Aura Burn - Magic
+(21780, 4257, 10), -- NPC Hydroblast - Magic
+(21780, 4408, 11), -- HP Modifiers
+(21780, 4409, 1), -- MP Modifiers
+(21780, 4410, 14), -- P. Atk. Modifiers
+(21780, 4411, 14), -- M. Atk. Modifiers
+(21780, 4412, 8), -- P. Def. Modifiers
+(21780, 4413, 8), -- M. Def. Modifiers
+(21780, 4414, 3), -- Armor Type
+(21780, 4415, 7), -- Weapon Type
+(21780, 4416, 1), -- Races
+(21780, 4789, 9), -- NPC High Level
 -- Messenger Invader Martyrs
 (21781, 4286, 1), -- Greater Resist Sleep
 (21781, 4288, 1), -- Greater Resist Hold
-(21781, 4408, 11), -- HP Increase (3x)
-(21781, 4409, 1), -- MP Increase (1x)
-(21781, 4410, 11), -- Average P. Atk.
-(21781, 4411, 11), -- Average M. Atk.
-(21781, 4412, 11), -- Average P. Def.
-(21781, 4413, 11), -- Average M. Def.
-(21781, 4414, 3), -- Light Armor Type
-(21781, 4415, 7), -- Daggers
-(21781, 4416, 1), -- Undead
-(21781, 4614, 9), -- Death Bomb
-(21781, 4789, 6), -- High Level
+(21781, 4408, 11), -- HP Modifiers
+(21781, 4409, 1), -- MP Modifiers
+(21781, 4410, 11), -- P. Atk. Modifiers
+(21781, 4411, 11), -- M. Atk. Modifiers
+(21781, 4412, 11), -- P. Def. Modifiers
+(21781, 4413, 11), -- M. Def. Modifiers
+(21781, 4414, 3), -- Armor Type
+(21781, 4415, 7), -- Weapon Type
+(21781, 4416, 1), -- Races
+(21781, 4614, 9), -- NPC Death Bomb
+(21781, 4789, 6), -- NPC High Level
 -- Messenger Invader Warrior
-(21782, 4274, 1), -- Blunt Weapon Weak Point
-(21782, 4408, 11), -- HP Increase (3x)
-(21782, 4409, 1), -- MP Increase (1x)
-(21782, 4410, 11), -- Average P. Atk.
-(21782, 4411, 11), -- Average M. Atk.
-(21782, 4412, 11), -- Average P. Def.
-(21782, 4413, 11), -- Average M. Def.
-(21782, 4414, 2), -- Standard Type
-(21782, 4415, 3), -- One-handed Sword
-(21782, 4416, 1), -- Undead
-(21782, 4789, 8), -- High Level
+(21782, 4274, 1), -- Blunt Attack Weak Point
+(21782, 4408, 11), -- HP Modifiers
+(21782, 4409, 1), -- MP Modifiers
+(21782, 4410, 11), -- P. Atk. Modifiers
+(21782, 4411, 11), -- M. Atk. Modifiers
+(21782, 4412, 11), -- P. Def. Modifiers
+(21782, 4413, 11), -- M. Def. Modifiers
+(21782, 4414, 2), -- Armor Type
+(21782, 4415, 3), -- Weapon Type
+(21782, 4416, 1), -- Races
+(21782, 4789, 8), -- NPC High Level
 -- Messenger Invader Soldier
-(21783, 4408, 11), -- HP Increase (3x)
-(21783, 4409, 1), -- MP Increase (1x)
-(21783, 4410, 11), -- Average P. Atk.
-(21783, 4411, 11), -- Average M. Atk.
-(21783, 4412, 11), -- Average P. Def.
-(21783, 4413, 11), -- Average M. Def.
-(21783, 4414, 2), -- Standard Type
-(21783, 4415, 3), -- One-handed Sword
-(21783, 4416, 1), -- Undead
+(21783, 4408, 11), -- HP Modifiers
+(21783, 4409, 1), -- MP Modifiers
+(21783, 4410, 11), -- P. Atk. Modifiers
+(21783, 4411, 11), -- M. Atk. Modifiers
+(21783, 4412, 11), -- P. Def. Modifiers
+(21783, 4413, 11), -- M. Def. Modifiers
+(21783, 4414, 2), -- Armor Type
+(21783, 4415, 3), -- Weapon Type
+(21783, 4416, 1), -- Races
 (21783, 4581, 9), -- Hold
-(21783, 4789, 6), -- High Level
+(21783, 4789, 6), -- NPC High Level
 -- Messenger Invader Disciple
 (21784, 4117, 9), -- Paralysis
-(21784, 4274, 1), -- Blunt Weapon Weak Point
-(21784, 4408, 11), -- HP Increase (3x)
-(21784, 4409, 1), -- MP Increase (1x)
-(21784, 4410, 11), -- Average P. Atk.
-(21784, 4411, 11), -- Average M. Atk.
-(21784, 4412, 11), -- Average P. Def.
-(21784, 4413, 11), -- Average M. Def.
-(21784, 4414, 2), -- Standard Type
-(21784, 4415, 3), -- One-handed Sword
-(21784, 4416, 1), -- Undead
-(21784, 4789, 8), -- High Level
+(21784, 4274, 1), -- Blunt Attack Weak Point
+(21784, 4408, 11), -- HP Modifiers
+(21784, 4409, 1), -- MP Modifiers
+(21784, 4410, 11), -- P. Atk. Modifiers
+(21784, 4411, 11), -- M. Atk. Modifiers
+(21784, 4412, 11), -- P. Def. Modifiers
+(21784, 4413, 11), -- M. Def. Modifiers
+(21784, 4414, 2), -- Armor Type
+(21784, 4415, 3), -- Weapon Type
+(21784, 4416, 1), -- Races
+(21784, 4789, 8), -- NPC High Level
 -- Messenger Invader Berserker
 (21785, 4095, 1), -- Damage Shield
-(21785, 4119, 3), -- Decrease Accuracy
-(21785, 4274, 1), -- Blunt Weapon Weak Point
-(21785, 4408, 11), -- HP Increase (3x)
-(21785, 4409, 1), -- MP Increase (1x)
-(21785, 4410, 9), -- Slightly Weak P. Atk.
-(21785, 4411, 9), -- Slightly Weak M. Atk.
-(21785, 4412, 13), -- Slightly Strong P. Def.
-(21785, 4413, 13), -- Slightly Strong M. Def.
-(21785, 4414, 2), -- Standard Type
-(21785, 4415, 3), -- One-handed Sword
-(21785, 4416, 1), -- Undead
-(21785, 4789, 9), -- High Level
+(21785, 4119, 3), -- Fall in accuracy
+(21785, 4274, 1), -- Blunt Attack Weak Point
+(21785, 4408, 11), -- HP Modifiers
+(21785, 4409, 1), -- MP Modifiers
+(21785, 4410, 9), -- P. Atk. Modifiers
+(21785, 4411, 9), -- M. Atk. Modifiers
+(21785, 4412, 13), -- P. Def. Modifiers
+(21785, 4413, 13), -- M. Def. Modifiers
+(21785, 4414, 2), -- Armor Type
+(21785, 4415, 3), -- Weapon Type
+(21785, 4416, 1), -- Races
+(21785, 4789, 9), -- NPC High Level
 -- Messenger Invader Food
 (21786, 4045, 1), -- Resist Full Magic Attack
-(21786, 4408, 1), -- HP Increase (1x)
-(21786, 4409, 1), -- MP Increase (1x)
-(21786, 4410, 11), -- Average P. Atk.
-(21786, 4411, 11), -- Average M. Atk.
-(21786, 4412, 11), -- Average P. Def.
-(21786, 4413, 11), -- Average M. Def.
-(21786, 4414, 2), -- Standard Type
-(21786, 4415, 3), -- One-handed Sword
-(21786, 4416, 2), -- Magic Creatures
-(21786, 4789, 6), -- High Level
+(21786, 4408, 1), -- HP Modifiers
+(21786, 4409, 1), -- MP Modifiers
+(21786, 4410, 11), -- P. Atk. Modifiers
+(21786, 4411, 11), -- M. Atk. Modifiers
+(21786, 4412, 11), -- P. Def. Modifiers
+(21786, 4413, 11), -- M. Def. Modifiers
+(21786, 4414, 2), -- Armor Type
+(21786, 4415, 3), -- Weapon Type
+(21786, 4416, 2), -- Races
+(21786, 4789, 6), -- NPC High Level
 -- Messenger Invader Elite Soldier
-(21787, 4032, 10), -- Power Strike
-(21787, 4408, 14), -- HP Increase (6x)
-(21787, 4409, 1), -- MP Increase (1x)
-(21787, 4410, 11), -- Average P. Atk.
-(21787, 4411, 11), -- Average M. Atk.
-(21787, 4412, 11), -- Average P. Def.
-(21787, 4413, 11), -- Average M. Def.
-(21787, 4414, 2), -- Standard Type
-(21787, 4415, 3), -- One-handed Sword
-(21787, 4416, 1), -- Undead
-(21787, 4789, 9), -- High Level
+(21787, 4032, 10), -- NPC Strike
+(21787, 4408, 14), -- HP Modifiers
+(21787, 4409, 1), -- MP Modifiers
+(21787, 4410, 11), -- P. Atk. Modifiers
+(21787, 4411, 11), -- M. Atk. Modifiers
+(21787, 4412, 11), -- P. Def. Modifiers
+(21787, 4413, 11), -- M. Def. Modifiers
+(21787, 4414, 2), -- Armor Type
+(21787, 4415, 3), -- Weapon Type
+(21787, 4416, 1), -- Races
+(21787, 4789, 9), -- NPC High Level
 -- Messenger Invader Elite Soldier
-(21788, 4408, 14), -- HP Increase (6x)
-(21788, 4409, 1), -- MP Increase (1x)
-(21788, 4410, 11), -- Average P. Atk.
-(21788, 4411, 11), -- Average M. Atk.
-(21788, 4412, 11), -- Average P. Def.
-(21788, 4413, 11), -- Average M. Def.
-(21788, 4414, 2), -- Standard Type
-(21788, 4415, 3), -- One-handed Sword
-(21788, 4416, 1), -- Undead
+(21788, 4408, 14), -- HP Modifiers
+(21788, 4409, 1), -- MP Modifiers
+(21788, 4410, 11), -- P. Atk. Modifiers
+(21788, 4411, 11), -- M. Atk. Modifiers
+(21788, 4412, 11), -- P. Def. Modifiers
+(21788, 4413, 11), -- M. Def. Modifiers
+(21788, 4414, 2), -- Armor Type
+(21788, 4415, 3), -- Weapon Type
+(21788, 4416, 1), -- Races
 (21788, 4582, 10), -- Poison
-(21788, 4789, 9), -- High Level
+(21788, 4789, 9), -- NPC High Level
 -- Messenger Invader Elite Soldier
-(21789, 4408, 8), -- HP Increase (1/4x)
-(21789, 4409, 1), -- MP Increase (1x)
-(21789, 4410, 8), -- Weak P. Atk.
-(21789, 4411, 8), -- Weak M. Atk.
-(21789, 4412, 14), -- Strong P. Def.
-(21789, 4413, 14), -- Strong M. Def.
-(21789, 4414, 2), -- Standard Type
-(21789, 4415, 3), -- One-handed Sword
-(21789, 4416, 1), -- Undead
-(21789, 4573, 10), -- Sonic Blaster
-(21789, 4789, 9), -- High Level
+(21789, 4408, 8), -- HP Modifiers
+(21789, 4409, 1), -- MP Modifiers
+(21789, 4410, 8), -- P. Atk. Modifiers
+(21789, 4411, 8), -- M. Atk. Modifiers
+(21789, 4412, 14), -- P. Def. Modifiers
+(21789, 4413, 14), -- M. Def. Modifiers
+(21789, 4414, 2), -- Armor Type
+(21789, 4415, 3), -- Weapon Type
+(21789, 4416, 1), -- Races
+(21789, 4573, 10), -- NPC Sonic Blaster
+(21789, 4789, 9), -- NPC High Level
 -- Messenger Invader Elite Soldier
-(21790, 4408, 9), -- HP Increase (1/2x)
-(21790, 4409, 1), -- MP Increase (1x)
-(21790, 4410, 14), -- Strong P. Atk.
-(21790, 4411, 14), -- Strong M. Atk.
-(21790, 4412, 8), -- Weak P. Def.
-(21790, 4413, 8), -- Weak M. Def.
-(21790, 4414, 2), -- Standard Type
-(21790, 4415, 3), -- One-handed Sword
-(21790, 4416, 1), -- Undead
-(21790, 4572, 9), -- Triple Sonic Slash
-(21790, 4789, 6), -- High Level
+(21790, 4408, 9), -- HP Modifiers
+(21790, 4409, 1), -- MP Modifiers
+(21790, 4410, 14), -- P. Atk. Modifiers
+(21790, 4411, 14), -- M. Atk. Modifiers
+(21790, 4412, 8), -- P. Def. Modifiers
+(21790, 4413, 8), -- M. Def. Modifiers
+(21790, 4414, 2), -- Armor Type
+(21790, 4415, 3), -- Weapon Type
+(21790, 4416, 1), -- Races
+(21790, 4572, 9), -- NPC Triple Sonic Slash
+(21790, 4789, 6), -- NPC High Level
 -- Messenger Invader Warrior
-(21791, 4274, 1), -- Blunt Weapon Weak Point
-(21791, 4408, 14), -- HP Increase (6x)
-(21791, 4409, 1), -- MP Increase (1x)
-(21791, 4410, 11), -- Average P. Atk.
-(21791, 4411, 11), -- Average M. Atk.
-(21791, 4412, 11), -- Average P. Def.
-(21791, 4413, 11), -- Average M. Def.
-(21791, 4414, 2), -- Standard Type
-(21791, 4415, 3), -- One-handed Sword
-(21791, 4416, 1), -- Undead
-(21791, 4560, 9), -- Fire Burn
-(21791, 4789, 8), -- High Level
+(21791, 4274, 1), -- Blunt Attack Weak Point
+(21791, 4408, 14), -- HP Modifiers
+(21791, 4409, 1), -- MP Modifiers
+(21791, 4410, 11), -- P. Atk. Modifiers
+(21791, 4411, 11), -- M. Atk. Modifiers
+(21791, 4412, 11), -- P. Def. Modifiers
+(21791, 4413, 11), -- M. Def. Modifiers
+(21791, 4414, 2), -- Armor Type
+(21791, 4415, 3), -- Weapon Type
+(21791, 4416, 1), -- Races
+(21791, 4560, 9), -- NPC Fire Burn
+(21791, 4789, 8), -- NPC High Level
 -- Messenger Invader Elite Soldier
-(21792, 4408, 14), -- HP Increase (6x)
-(21792, 4409, 1), -- MP Increase (1x)
-(21792, 4410, 9), -- Slightly Weak P. Atk.
-(21792, 4411, 9), -- Slightly Weak M. Atk.
-(21792, 4412, 13), -- Slightly Strong P. Def.
-(21792, 4413, 13), -- Slightly Strong M. Def.
-(21792, 4414, 2), -- Standard Type
-(21792, 4415, 3), -- One-handed Sword
-(21792, 4416, 1), -- Undead
-(21792, 4572, 9), -- Triple Sonic Slash
-(21792, 4789, 6), -- High Level
+(21792, 4408, 14), -- HP Modifiers
+(21792, 4409, 1), -- MP Modifiers
+(21792, 4410, 9), -- P. Atk. Modifiers
+(21792, 4411, 9), -- M. Atk. Modifiers
+(21792, 4412, 13), -- P. Def. Modifiers
+(21792, 4413, 13), -- M. Def. Modifiers
+(21792, 4414, 2), -- Armor Type
+(21792, 4415, 3), -- Weapon Type
+(21792, 4416, 1), -- Races
+(21792, 4572, 9), -- NPC Triple Sonic Slash
+(21792, 4789, 6), -- NPC High Level
 -- Messenger Invader Elite Soldier
-(21793, 4408, 14), -- HP Increase (6x)
-(21793, 4409, 1), -- MP Increase (1x)
-(21793, 4410, 13), -- Slightly Strong P. Atk.
-(21793, 4411, 13), -- Slightly Strong M. Atk.
-(21793, 4412, 9), -- Slightly Weak P. Def.
-(21793, 4413, 9), -- Slightly Weak M. Def.
-(21793, 4414, 2), -- Standard Type
-(21793, 4415, 3), -- One-handed Sword
-(21793, 4416, 1), -- Undead
-(21793, 4572, 9), -- Triple Sonic Slash
-(21793, 4789, 8), -- High Level
+(21793, 4408, 14), -- HP Modifiers
+(21793, 4409, 1), -- MP Modifiers
+(21793, 4410, 13), -- P. Atk. Modifiers
+(21793, 4411, 13), -- M. Atk. Modifiers
+(21793, 4412, 9), -- P. Def. Modifiers
+(21793, 4413, 9), -- M. Def. Modifiers
+(21793, 4414, 2), -- Armor Type
+(21793, 4415, 3), -- Weapon Type
+(21793, 4416, 1), -- Races
+(21793, 4572, 9), -- NPC Triple Sonic Slash
+(21793, 4789, 8), -- NPC High Level
 -- Messenger Invader Elite Soldier
-(21794, 4408, 14), -- HP Increase (6x)
-(21794, 4409, 1), -- MP Increase (1x)
-(21794, 4410, 9), -- Slightly Weak P. Atk.
-(21794, 4411, 9), -- Slightly Weak M. Atk.
-(21794, 4412, 13), -- Slightly Strong P. Def.
-(21794, 4413, 13), -- Slightly Strong M. Def.
-(21794, 4414, 2), -- Standard Type
-(21794, 4415, 3), -- One-handed Sword
-(21794, 4416, 1), -- Undead
-(21794, 4573, 9), -- Sonic Blaster
-(21794, 4789, 6), -- High Level
+(21794, 4408, 14), -- HP Modifiers
+(21794, 4409, 1), -- MP Modifiers
+(21794, 4410, 9), -- P. Atk. Modifiers
+(21794, 4411, 9), -- M. Atk. Modifiers
+(21794, 4412, 13), -- P. Def. Modifiers
+(21794, 4413, 13), -- M. Def. Modifiers
+(21794, 4414, 2), -- Armor Type
+(21794, 4415, 3), -- Weapon Type
+(21794, 4416, 1), -- Races
+(21794, 4573, 9), -- NPC Sonic Blaster
+(21794, 4789, 6), -- NPC High Level
 -- Messenger Invader Elite Soldier
-(21795, 4408, 14), -- HP Increase (6x)
-(21795, 4409, 1), -- MP Increase (1x)
-(21795, 4410, 13), -- Slightly Strong P. Atk.
-(21795, 4411, 13), -- Slightly Strong M. Atk.
-(21795, 4412, 9), -- Slightly Weak P. Def.
-(21795, 4413, 9), -- Slightly Weak M. Def.
-(21795, 4414, 2), -- Standard Type
-(21795, 4415, 3), -- One-handed Sword
-(21795, 4416, 1), -- Undead
-(21795, 4573, 10), -- Sonic Blaster
-(21795, 4789, 9), -- High Level
+(21795, 4408, 14), -- HP Modifiers
+(21795, 4409, 1), -- MP Modifiers
+(21795, 4410, 13), -- P. Atk. Modifiers
+(21795, 4411, 13), -- M. Atk. Modifiers
+(21795, 4412, 9), -- P. Def. Modifiers
+(21795, 4413, 9), -- M. Def. Modifiers
+(21795, 4414, 2), -- Armor Type
+(21795, 4415, 3), -- Weapon Type
+(21795, 4416, 1), -- Races
+(21795, 4573, 10), -- NPC Sonic Blaster
+(21795, 4789, 9), -- NPC High Level
 -- Messenger Invader Magus
-(21796, 4408, 14), -- HP Increase (6x)
-(21796, 4409, 1), -- MP Increase (1x)
-(21796, 4410, 11), -- Average P. Atk.
-(21796, 4411, 11), -- Average M. Atk.
-(21796, 4412, 11), -- Average P. Def.
-(21796, 4413, 11), -- Average M. Def.
-(21796, 4414, 3), -- Light Armor Type
-(21796, 4415, 7), -- Daggers
-(21796, 4416, 1), -- Undead
-(21796, 4561, 9), -- Fire Burn
-(21796, 4563, 9), -- Solar Flare
-(21796, 4789, 8), -- High Level
+(21796, 4408, 14), -- HP Modifiers
+(21796, 4409, 1), -- MP Modifiers
+(21796, 4410, 11), -- P. Atk. Modifiers
+(21796, 4411, 11), -- M. Atk. Modifiers
+(21796, 4412, 11), -- P. Def. Modifiers
+(21796, 4413, 11), -- M. Def. Modifiers
+(21796, 4414, 3), -- Armor Type
+(21796, 4415, 7), -- Weapon Type
+(21796, 4416, 1), -- Races
+(21796, 4561, 9), -- NPC Fire Burn - Magic
+(21796, 4563, 9), -- NPC Solar Flare - Magic
+(21796, 4789, 8), -- NPC High Level
 -- Spirit of Timiniel
-(21797, 4408, 9), -- HP Increase (1/2x)
-(21797, 4409, 1), -- MP Increase (1x)
-(21797, 4410, 9), -- Slightly Weak P. Atk.
-(21797, 4411, 9), -- Slightly Weak M. Atk.
-(21797, 4412, 13), -- Slightly Strong P. Def.
-(21797, 4413, 13), -- Slightly Strong M. Def.
-(21797, 4414, 3), -- Light Armor Type
-(21797, 4415, 5), -- Blunt Weapons
-(21797, 4416, 13), -- Fairies
-(21797, 4562, 5), -- Solar Flare
+(21797, 4408, 9), -- HP Modifiers
+(21797, 4409, 1), -- MP Modifiers
+(21797, 4410, 9), -- P. Atk. Modifiers
+(21797, 4411, 9), -- M. Atk. Modifiers
+(21797, 4412, 13), -- P. Def. Modifiers
+(21797, 4413, 13), -- M. Def. Modifiers
+(21797, 4414, 3), -- Armor Type
+(21797, 4415, 5), -- Weapon Type
+(21797, 4416, 13), -- Races
+(21797, 4562, 5), -- NPC Solar Flare
 -- Ghost of a Doorman
-(21798, 4073, 8), -- Stun
-(21798, 4274, 1), -- Blunt Weapon Weak Point
-(21798, 4408, 10), -- HP Increase (2x)
-(21798, 4409, 1), -- MP Increase (1x)
-(21798, 4410, 11), -- Average P. Atk.
-(21798, 4411, 11), -- Average M. Atk.
-(21798, 4412, 11), -- Average P. Def.
-(21798, 4413, 11), -- Average M. Def.
-(21798, 4414, 2), -- Standard Type
-(21798, 4415, 3), -- One-handed Sword
-(21798, 4416, 1), -- Undead
-(21798, 4789, 4), -- High Level
+(21798, 4073, 8), -- Shock
+(21798, 4274, 1), -- Blunt Attack Weak Point
+(21798, 4408, 10), -- HP Modifiers
+(21798, 4409, 1), -- MP Modifiers
+(21798, 4410, 11), -- P. Atk. Modifiers
+(21798, 4411, 11), -- M. Atk. Modifiers
+(21798, 4412, 11), -- P. Def. Modifiers
+(21798, 4413, 11), -- M. Def. Modifiers
+(21798, 4414, 2), -- Armor Type
+(21798, 4415, 3), -- Weapon Type
+(21798, 4416, 1), -- Races
+(21798, 4789, 4), -- NPC High Level
 -- Ghost of a Doorman
-(21799, 4032, 8), -- Power Strike
-(21799, 4274, 1), -- Blunt Weapon Weak Point
-(21799, 4408, 11), -- HP Increase (3x)
-(21799, 4409, 1), -- MP Increase (1x)
-(21799, 4410, 11), -- Average P. Atk.
-(21799, 4411, 11), -- Average M. Atk.
-(21799, 4412, 11), -- Average P. Def.
-(21799, 4413, 11), -- Average M. Def.
-(21799, 4414, 2), -- Standard Type
-(21799, 4415, 3), -- One-handed Sword
-(21799, 4416, 1), -- Undead
-(21799, 4571, 8), -- Blazing Circle
-(21799, 4631, 3), -- Acumen Shield Wild Magic
-(21799, 4789, 4), -- High Level
+(21799, 4032, 8), -- NPC Strike
+(21799, 4274, 1), -- Blunt Attack Weak Point
+(21799, 4408, 11), -- HP Modifiers
+(21799, 4409, 1), -- MP Modifiers
+(21799, 4410, 11), -- P. Atk. Modifiers
+(21799, 4411, 11), -- M. Atk. Modifiers
+(21799, 4412, 11), -- P. Def. Modifiers
+(21799, 4413, 11), -- M. Def. Modifiers
+(21799, 4414, 2), -- Armor Type
+(21799, 4415, 3), -- Weapon Type
+(21799, 4416, 1), -- Races
+(21799, 4571, 8), -- NPC Blazing Circle
+(21799, 4631, 3), -- NPC Buff - Acumen Shield WildMagic
+(21799, 4789, 4), -- NPC High Level
 -- Vassal Ghost
-(21800, 4274, 1), -- Blunt Weapon Weak Point
-(21800, 4408, 10), -- HP Increase (2x)
-(21800, 4409, 1), -- MP Increase (1x)
-(21800, 4410, 11), -- Average P. Atk.
-(21800, 4411, 11), -- Average M. Atk.
-(21800, 4412, 11), -- Average P. Def.
-(21800, 4413, 11), -- Average M. Def.
-(21800, 4414, 2), -- Standard Type
-(21800, 4415, 3), -- One-handed Sword
-(21800, 4416, 1), -- Undead
-(21800, 4567, 8), -- Rain of Fire
-(21800, 4789, 5), -- High Level
+(21800, 4274, 1), -- Blunt Attack Weak Point
+(21800, 4408, 10), -- HP Modifiers
+(21800, 4409, 1), -- MP Modifiers
+(21800, 4410, 11), -- P. Atk. Modifiers
+(21800, 4411, 11), -- M. Atk. Modifiers
+(21800, 4412, 11), -- P. Def. Modifiers
+(21800, 4413, 11), -- M. Def. Modifiers
+(21800, 4414, 2), -- Armor Type
+(21800, 4415, 3), -- Weapon Type
+(21800, 4416, 1), -- Races
+(21800, 4567, 8), -- NPC Eruption - Slow
+(21800, 4789, 5), -- NPC High Level
 -- Treasure Chest
 (21801, 4045, 1), -- Resist Full Magic Attack
-(21801, 4408, 1), -- HP Increase (1x)
-(21801, 4409, 1), -- MP Increase (1x)
-(21801, 4410, 11), -- Average P. Atk.
-(21801, 4411, 11), -- Average M. Atk.
-(21801, 4412, 11), -- Average P. Def.
-(21801, 4413, 11), -- Average M. Def.
-(21801, 4414, 2), -- Standard Type
-(21801, 4415, 5), -- Blunt Weapons
-(21801, 4416, 2), -- Magic Creatures
+(21801, 4408, 1), -- HP Modifiers
+(21801, 4409, 1), -- MP Modifiers
+(21801, 4410, 11), -- P. Atk. Modifiers
+(21801, 4411, 11), -- M. Atk. Modifiers
+(21801, 4412, 11), -- P. Def. Modifiers
+(21801, 4413, 11), -- M. Def. Modifiers
+(21801, 4414, 2), -- Armor Type
+(21801, 4415, 5), -- Weapon Type
+(21801, 4416, 2), -- Races
 -- Treasure Chest
 (21802, 4045, 1), -- Resist Full Magic Attack
-(21802, 4408, 1), -- HP Increase (1x)
-(21802, 4409, 1), -- MP Increase (1x)
-(21802, 4410, 11), -- Average P. Atk.
-(21802, 4411, 11), -- Average M. Atk.
-(21802, 4412, 11), -- Average P. Def.
-(21802, 4413, 11), -- Average M. Def.
-(21802, 4414, 2), -- Standard Type
-(21802, 4415, 5), -- Blunt Weapons
-(21802, 4416, 2), -- Magic Creatures
+(21802, 4408, 1), -- HP Modifiers
+(21802, 4409, 1), -- MP Modifiers
+(21802, 4410, 11), -- P. Atk. Modifiers
+(21802, 4411, 11), -- M. Atk. Modifiers
+(21802, 4412, 11), -- P. Def. Modifiers
+(21802, 4413, 11), -- M. Def. Modifiers
+(21802, 4414, 2), -- Armor Type
+(21802, 4415, 5), -- Weapon Type
+(21802, 4416, 2), -- Races
 -- Treasure Chest
 (21803, 4045, 1), -- Resist Full Magic Attack
-(21803, 4408, 1), -- HP Increase (1x)
-(21803, 4409, 1), -- MP Increase (1x)
-(21803, 4410, 11), -- Average P. Atk.
-(21803, 4411, 11), -- Average M. Atk.
-(21803, 4412, 11), -- Average P. Def.
-(21803, 4413, 11), -- Average M. Def.
-(21803, 4414, 2), -- Standard Type
-(21803, 4415, 5), -- Blunt Weapons
-(21803, 4416, 2), -- Magic Creatures
+(21803, 4408, 1), -- HP Modifiers
+(21803, 4409, 1), -- MP Modifiers
+(21803, 4410, 11), -- P. Atk. Modifiers
+(21803, 4411, 11), -- M. Atk. Modifiers
+(21803, 4412, 11), -- P. Def. Modifiers
+(21803, 4413, 11), -- M. Def. Modifiers
+(21803, 4414, 2), -- Armor Type
+(21803, 4415, 5), -- Weapon Type
+(21803, 4416, 2), -- Races
 -- Treasure Chest
 (21804, 4045, 1), -- Resist Full Magic Attack
-(21804, 4408, 1), -- HP Increase (1x)
-(21804, 4409, 1), -- MP Increase (1x)
-(21804, 4410, 11), -- Average P. Atk.
-(21804, 4411, 11), -- Average M. Atk.
-(21804, 4412, 11), -- Average P. Def.
-(21804, 4413, 11), -- Average M. Def.
-(21804, 4414, 2), -- Standard Type
-(21804, 4415, 5), -- Blunt Weapons
-(21804, 4416, 2), -- Magic Creatures
+(21804, 4408, 1), -- HP Modifiers
+(21804, 4409, 1), -- MP Modifiers
+(21804, 4410, 11), -- P. Atk. Modifiers
+(21804, 4411, 11), -- M. Atk. Modifiers
+(21804, 4412, 11), -- P. Def. Modifiers
+(21804, 4413, 11), -- M. Def. Modifiers
+(21804, 4414, 2), -- Armor Type
+(21804, 4415, 5), -- Weapon Type
+(21804, 4416, 2), -- Races
 -- Treasure Chest
 (21805, 4045, 1), -- Resist Full Magic Attack
-(21805, 4408, 1), -- HP Increase (1x)
-(21805, 4409, 1), -- MP Increase (1x)
-(21805, 4410, 11), -- Average P. Atk.
-(21805, 4411, 11), -- Average M. Atk.
-(21805, 4412, 11), -- Average P. Def.
-(21805, 4413, 11), -- Average M. Def.
-(21805, 4414, 2), -- Standard Type
-(21805, 4415, 5), -- Blunt Weapons
-(21805, 4416, 2), -- Magic Creatures
+(21805, 4408, 1), -- HP Modifiers
+(21805, 4409, 1), -- MP Modifiers
+(21805, 4410, 11), -- P. Atk. Modifiers
+(21805, 4411, 11), -- M. Atk. Modifiers
+(21805, 4412, 11), -- P. Def. Modifiers
+(21805, 4413, 11), -- M. Def. Modifiers
+(21805, 4414, 2), -- Armor Type
+(21805, 4415, 5), -- Weapon Type
+(21805, 4416, 2), -- Races
 -- Treasure Chest
 (21806, 4045, 1), -- Resist Full Magic Attack
-(21806, 4408, 1), -- HP Increase (1x)
-(21806, 4409, 1), -- MP Increase (1x)
-(21806, 4410, 11), -- Average P. Atk.
-(21806, 4411, 11), -- Average M. Atk.
-(21806, 4412, 11), -- Average P. Def.
-(21806, 4413, 11), -- Average M. Def.
-(21806, 4414, 2), -- Standard Type
-(21806, 4415, 5), -- Blunt Weapons
-(21806, 4416, 2), -- Magic Creatures
+(21806, 4408, 1), -- HP Modifiers
+(21806, 4409, 1), -- MP Modifiers
+(21806, 4410, 11), -- P. Atk. Modifiers
+(21806, 4411, 11), -- M. Atk. Modifiers
+(21806, 4412, 11), -- P. Def. Modifiers
+(21806, 4413, 11), -- M. Def. Modifiers
+(21806, 4414, 2), -- Armor Type
+(21806, 4415, 5), -- Weapon Type
+(21806, 4416, 2), -- Races
 -- Treasure Chest
 (21807, 4045, 1), -- Resist Full Magic Attack
-(21807, 4408, 1), -- HP Increase (1x)
-(21807, 4409, 1), -- MP Increase (1x)
-(21807, 4410, 11), -- Average P. Atk.
-(21807, 4411, 11), -- Average M. Atk.
-(21807, 4412, 11), -- Average P. Def.
-(21807, 4413, 11), -- Average M. Def.
-(21807, 4414, 2), -- Standard Type
-(21807, 4415, 5), -- Blunt Weapons
-(21807, 4416, 2), -- Magic Creatures
+(21807, 4408, 1), -- HP Modifiers
+(21807, 4409, 1), -- MP Modifiers
+(21807, 4410, 11), -- P. Atk. Modifiers
+(21807, 4411, 11), -- M. Atk. Modifiers
+(21807, 4412, 11), -- P. Def. Modifiers
+(21807, 4413, 11), -- M. Def. Modifiers
+(21807, 4414, 2), -- Armor Type
+(21807, 4415, 5), -- Weapon Type
+(21807, 4416, 2), -- Races
 -- Treasure Chest
 (21808, 4045, 1), -- Resist Full Magic Attack
-(21808, 4408, 1), -- HP Increase (1x)
-(21808, 4409, 1), -- MP Increase (1x)
-(21808, 4410, 11), -- Average P. Atk.
-(21808, 4411, 11), -- Average M. Atk.
-(21808, 4412, 11), -- Average P. Def.
-(21808, 4413, 11), -- Average M. Def.
-(21808, 4414, 2), -- Standard Type
-(21808, 4415, 5), -- Blunt Weapons
-(21808, 4416, 2), -- Magic Creatures
+(21808, 4408, 1), -- HP Modifiers
+(21808, 4409, 1), -- MP Modifiers
+(21808, 4410, 11), -- P. Atk. Modifiers
+(21808, 4411, 11), -- M. Atk. Modifiers
+(21808, 4412, 11), -- P. Def. Modifiers
+(21808, 4413, 11), -- M. Def. Modifiers
+(21808, 4414, 2), -- Armor Type
+(21808, 4415, 5), -- Weapon Type
+(21808, 4416, 2), -- Races
 -- Treasure Chest
 (21809, 4045, 1), -- Resist Full Magic Attack
-(21809, 4408, 1), -- HP Increase (1x)
-(21809, 4409, 1), -- MP Increase (1x)
-(21809, 4410, 11), -- Average P. Atk.
-(21809, 4411, 11), -- Average M. Atk.
-(21809, 4412, 11), -- Average P. Def.
-(21809, 4413, 11), -- Average M. Def.
-(21809, 4414, 2), -- Standard Type
-(21809, 4415, 5), -- Blunt Weapons
-(21809, 4416, 2), -- Magic Creatures
+(21809, 4408, 1), -- HP Modifiers
+(21809, 4409, 1), -- MP Modifiers
+(21809, 4410, 11), -- P. Atk. Modifiers
+(21809, 4411, 11), -- M. Atk. Modifiers
+(21809, 4412, 11), -- P. Def. Modifiers
+(21809, 4413, 11), -- M. Def. Modifiers
+(21809, 4414, 2), -- Armor Type
+(21809, 4415, 5), -- Weapon Type
+(21809, 4416, 2), -- Races
 -- Treasure Chest
 (21810, 4045, 1); -- Resist Full Magic Attack
 
 INSERT INTO `npcskills` VALUES
-(21810, 4408, 1), -- HP Increase (1x)
-(21810, 4409, 1), -- MP Increase (1x)
-(21810, 4410, 11), -- Average P. Atk.
-(21810, 4411, 11), -- Average M. Atk.
-(21810, 4412, 11), -- Average P. Def.
-(21810, 4413, 11), -- Average M. Def.
-(21810, 4414, 2), -- Standard Type
-(21810, 4415, 5), -- Blunt Weapons
-(21810, 4416, 2), -- Magic Creatures
+(21810, 4408, 1), -- HP Modifiers
+(21810, 4409, 1), -- MP Modifiers
+(21810, 4410, 11), -- P. Atk. Modifiers
+(21810, 4411, 11), -- M. Atk. Modifiers
+(21810, 4412, 11), -- P. Def. Modifiers
+(21810, 4413, 11), -- M. Def. Modifiers
+(21810, 4414, 2), -- Armor Type
+(21810, 4415, 5), -- Weapon Type
+(21810, 4416, 2), -- Races
 -- Treasure Chest
 (21811, 4045, 1), -- Resist Full Magic Attack
-(21811, 4408, 1), -- HP Increase (1x)
-(21811, 4409, 1), -- MP Increase (1x)
-(21811, 4410, 11), -- Average P. Atk.
-(21811, 4411, 11), -- Average M. Atk.
-(21811, 4412, 11), -- Average P. Def.
-(21811, 4413, 11), -- Average M. Def.
-(21811, 4414, 2), -- Standard Type
-(21811, 4415, 5), -- Blunt Weapons
-(21811, 4416, 2), -- Magic Creatures
+(21811, 4408, 1), -- HP Modifiers
+(21811, 4409, 1), -- MP Modifiers
+(21811, 4410, 11), -- P. Atk. Modifiers
+(21811, 4411, 11), -- M. Atk. Modifiers
+(21811, 4412, 11), -- P. Def. Modifiers
+(21811, 4413, 11), -- M. Def. Modifiers
+(21811, 4414, 2), -- Armor Type
+(21811, 4415, 5), -- Weapon Type
+(21811, 4416, 2), -- Races
 -- Treasure Chest
 (21812, 4045, 1), -- Resist Full Magic Attack
-(21812, 4408, 1), -- HP Increase (1x)
-(21812, 4409, 1), -- MP Increase (1x)
-(21812, 4410, 11), -- Average P. Atk.
-(21812, 4411, 11), -- Average M. Atk.
-(21812, 4412, 11), -- Average P. Def.
-(21812, 4413, 11), -- Average M. Def.
-(21812, 4414, 2), -- Standard Type
-(21812, 4415, 5), -- Blunt Weapons
-(21812, 4416, 2), -- Magic Creatures
+(21812, 4408, 1), -- HP Modifiers
+(21812, 4409, 1), -- MP Modifiers
+(21812, 4410, 11), -- P. Atk. Modifiers
+(21812, 4411, 11), -- M. Atk. Modifiers
+(21812, 4412, 11), -- P. Def. Modifiers
+(21812, 4413, 11), -- M. Def. Modifiers
+(21812, 4414, 2), -- Armor Type
+(21812, 4415, 5), -- Weapon Type
+(21812, 4416, 2), -- Races
 -- Treasure Chest
 (21813, 4045, 1), -- Resist Full Magic Attack
-(21813, 4408, 1), -- HP Increase (1x)
-(21813, 4409, 1), -- MP Increase (1x)
-(21813, 4410, 11), -- Average P. Atk.
-(21813, 4411, 11), -- Average M. Atk.
-(21813, 4412, 11), -- Average P. Def.
-(21813, 4413, 11), -- Average M. Def.
-(21813, 4414, 2), -- Standard Type
-(21813, 4415, 5), -- Blunt Weapons
-(21813, 4416, 2), -- Magic Creatures
+(21813, 4408, 1), -- HP Modifiers
+(21813, 4409, 1), -- MP Modifiers
+(21813, 4410, 11), -- P. Atk. Modifiers
+(21813, 4411, 11), -- M. Atk. Modifiers
+(21813, 4412, 11), -- P. Def. Modifiers
+(21813, 4413, 11), -- M. Def. Modifiers
+(21813, 4414, 2), -- Armor Type
+(21813, 4415, 5), -- Weapon Type
+(21813, 4416, 2), -- Races
 -- Treasure Chest
 (21814, 4045, 1), -- Resist Full Magic Attack
-(21814, 4408, 1), -- HP Increase (1x)
-(21814, 4409, 1), -- MP Increase (1x)
-(21814, 4410, 11), -- Average P. Atk.
-(21814, 4411, 11), -- Average M. Atk.
-(21814, 4412, 11), -- Average P. Def.
-(21814, 4413, 11), -- Average M. Def.
-(21814, 4414, 2), -- Standard Type
-(21814, 4415, 5), -- Blunt Weapons
-(21814, 4416, 2), -- Magic Creatures
+(21814, 4408, 1), -- HP Modifiers
+(21814, 4409, 1), -- MP Modifiers
+(21814, 4410, 11), -- P. Atk. Modifiers
+(21814, 4411, 11), -- M. Atk. Modifiers
+(21814, 4412, 11), -- P. Def. Modifiers
+(21814, 4413, 11), -- M. Def. Modifiers
+(21814, 4414, 2), -- Armor Type
+(21814, 4415, 5), -- Weapon Type
+(21814, 4416, 2), -- Races
 -- Treasure Chest
 (21815, 4045, 1), -- Resist Full Magic Attack
-(21815, 4408, 1), -- HP Increase (1x)
-(21815, 4409, 1), -- MP Increase (1x)
-(21815, 4410, 11), -- Average P. Atk.
-(21815, 4411, 11), -- Average M. Atk.
-(21815, 4412, 11), -- Average P. Def.
-(21815, 4413, 11), -- Average M. Def.
-(21815, 4414, 2), -- Standard Type
-(21815, 4415, 5), -- Blunt Weapons
-(21815, 4416, 2), -- Magic Creatures
+(21815, 4408, 1), -- HP Modifiers
+(21815, 4409, 1), -- MP Modifiers
+(21815, 4410, 11), -- P. Atk. Modifiers
+(21815, 4411, 11), -- M. Atk. Modifiers
+(21815, 4412, 11), -- P. Def. Modifiers
+(21815, 4413, 11), -- M. Def. Modifiers
+(21815, 4414, 2), -- Armor Type
+(21815, 4415, 5), -- Weapon Type
+(21815, 4416, 2), -- Races
 -- Treasure Chest
 (21816, 4045, 1), -- Resist Full Magic Attack
-(21816, 4408, 1), -- HP Increase (1x)
-(21816, 4409, 1), -- MP Increase (1x)
-(21816, 4410, 11), -- Average P. Atk.
-(21816, 4411, 11), -- Average M. Atk.
-(21816, 4412, 11), -- Average P. Def.
-(21816, 4413, 11), -- Average M. Def.
-(21816, 4414, 2), -- Standard Type
-(21816, 4415, 5), -- Blunt Weapons
-(21816, 4416, 2), -- Magic Creatures
+(21816, 4408, 1), -- HP Modifiers
+(21816, 4409, 1), -- MP Modifiers
+(21816, 4410, 11), -- P. Atk. Modifiers
+(21816, 4411, 11), -- M. Atk. Modifiers
+(21816, 4412, 11), -- P. Def. Modifiers
+(21816, 4413, 11), -- M. Def. Modifiers
+(21816, 4414, 2), -- Armor Type
+(21816, 4415, 5), -- Weapon Type
+(21816, 4416, 2), -- Races
 -- Treasure Chest
 (21817, 4045, 1), -- Resist Full Magic Attack
-(21817, 4408, 1), -- HP Increase (1x)
-(21817, 4409, 1), -- MP Increase (1x)
-(21817, 4410, 11), -- Average P. Atk.
-(21817, 4411, 11), -- Average M. Atk.
-(21817, 4412, 11), -- Average P. Def.
-(21817, 4413, 11), -- Average M. Def.
-(21817, 4414, 2), -- Standard Type
-(21817, 4415, 5), -- Blunt Weapons
-(21817, 4416, 2), -- Magic Creatures
+(21817, 4408, 1), -- HP Modifiers
+(21817, 4409, 1), -- MP Modifiers
+(21817, 4410, 11), -- P. Atk. Modifiers
+(21817, 4411, 11), -- M. Atk. Modifiers
+(21817, 4412, 11), -- P. Def. Modifiers
+(21817, 4413, 11), -- M. Def. Modifiers
+(21817, 4414, 2), -- Armor Type
+(21817, 4415, 5), -- Weapon Type
+(21817, 4416, 2), -- Races
 -- Treasure Chest
 (21818, 4045, 1), -- Resist Full Magic Attack
-(21818, 4408, 1), -- HP Increase (1x)
-(21818, 4409, 1), -- MP Increase (1x)
-(21818, 4410, 11), -- Average P. Atk.
-(21818, 4411, 11), -- Average M. Atk.
-(21818, 4412, 11), -- Average P. Def.
-(21818, 4413, 11), -- Average M. Def.
-(21818, 4414, 2), -- Standard Type
-(21818, 4415, 5), -- Blunt Weapons
-(21818, 4416, 2), -- Magic Creatures
-(21818, 4789, 2), -- High Level
+(21818, 4408, 1), -- HP Modifiers
+(21818, 4409, 1), -- MP Modifiers
+(21818, 4410, 11), -- P. Atk. Modifiers
+(21818, 4411, 11), -- M. Atk. Modifiers
+(21818, 4412, 11), -- P. Def. Modifiers
+(21818, 4413, 11), -- M. Def. Modifiers
+(21818, 4414, 2), -- Armor Type
+(21818, 4415, 5), -- Weapon Type
+(21818, 4416, 2), -- Races
+(21818, 4789, 2), -- NPC High Level
 -- Treasure Chest
 (21819, 4045, 1), -- Resist Full Magic Attack
-(21819, 4408, 1), -- HP Increase (1x)
-(21819, 4409, 1), -- MP Increase (1x)
-(21819, 4410, 11), -- Average P. Atk.
-(21819, 4411, 11), -- Average M. Atk.
-(21819, 4412, 11), -- Average P. Def.
-(21819, 4413, 11), -- Average M. Def.
-(21819, 4414, 2), -- Standard Type
-(21819, 4415, 5), -- Blunt Weapons
-(21819, 4416, 2), -- Magic Creatures
-(21819, 4789, 4), -- High Level
+(21819, 4408, 1), -- HP Modifiers
+(21819, 4409, 1), -- MP Modifiers
+(21819, 4410, 11), -- P. Atk. Modifiers
+(21819, 4411, 11), -- M. Atk. Modifiers
+(21819, 4412, 11), -- P. Def. Modifiers
+(21819, 4413, 11), -- M. Def. Modifiers
+(21819, 4414, 2), -- Armor Type
+(21819, 4415, 5), -- Weapon Type
+(21819, 4416, 2), -- Races
+(21819, 4789, 4), -- NPC High Level
 -- Treasure Chest
 (21820, 4045, 1), -- Resist Full Magic Attack
-(21820, 4408, 1), -- HP Increase (1x)
-(21820, 4409, 1), -- MP Increase (1x)
-(21820, 4410, 11), -- Average P. Atk.
-(21820, 4411, 11), -- Average M. Atk.
-(21820, 4412, 11), -- Average P. Def.
-(21820, 4413, 11), -- Average M. Def.
-(21820, 4414, 2), -- Standard Type
-(21820, 4415, 5), -- Blunt Weapons
-(21820, 4416, 2), -- Magic Creatures
-(21820, 4789, 5), -- High Level
+(21820, 4408, 1), -- HP Modifiers
+(21820, 4409, 1), -- MP Modifiers
+(21820, 4410, 11), -- P. Atk. Modifiers
+(21820, 4411, 11), -- M. Atk. Modifiers
+(21820, 4412, 11), -- P. Def. Modifiers
+(21820, 4413, 11), -- M. Def. Modifiers
+(21820, 4414, 2), -- Armor Type
+(21820, 4415, 5), -- Weapon Type
+(21820, 4416, 2), -- Races
+(21820, 4789, 5), -- NPC High Level
 -- Treasure Chest
 (21821, 4045, 1), -- Resist Full Magic Attack
-(21821, 4408, 1), -- HP Increase (1x)
-(21821, 4409, 1), -- MP Increase (1x)
-(21821, 4410, 11), -- Average P. Atk.
-(21821, 4411, 11), -- Average M. Atk.
-(21821, 4412, 11), -- Average P. Def.
-(21821, 4413, 11), -- Average M. Def.
-(21821, 4414, 2), -- Standard Type
-(21821, 4415, 5), -- Blunt Weapons
-(21821, 4416, 2), -- Magic Creatures
-(21821, 4789, 7), -- High Level
+(21821, 4408, 1), -- HP Modifiers
+(21821, 4409, 1), -- MP Modifiers
+(21821, 4410, 11), -- P. Atk. Modifiers
+(21821, 4411, 11), -- M. Atk. Modifiers
+(21821, 4412, 11), -- P. Def. Modifiers
+(21821, 4413, 11), -- M. Def. Modifiers
+(21821, 4414, 2), -- Armor Type
+(21821, 4415, 5), -- Weapon Type
+(21821, 4416, 2), -- Races
+(21821, 4789, 7), -- NPC High Level
 -- Treasure Chest
 (21822, 4045, 1), -- Resist Full Magic Attack
-(21822, 4408, 1), -- HP Increase (1x)
-(21822, 4409, 1), -- MP Increase (1x)
-(21822, 4410, 11), -- Average P. Atk.
-(21822, 4411, 11), -- Average M. Atk.
-(21822, 4412, 11), -- Average P. Def.
-(21822, 4413, 11), -- Average M. Def.
-(21822, 4414, 2), -- Standard Type
-(21822, 4415, 5), -- Blunt Weapons
-(21822, 4416, 2), -- Magic Creatures
-(21822, 4789, 8), -- High Level
+(21822, 4408, 1), -- HP Modifiers
+(21822, 4409, 1), -- MP Modifiers
+(21822, 4410, 11), -- P. Atk. Modifiers
+(21822, 4411, 11), -- M. Atk. Modifiers
+(21822, 4412, 11), -- P. Def. Modifiers
+(21822, 4413, 11), -- M. Def. Modifiers
+(21822, 4414, 2), -- Armor Type
+(21822, 4415, 5), -- Weapon Type
+(21822, 4416, 2), -- Races
+(21822, 4789, 8), -- NPC High Level
 -- Executor of Offerings
-(21823, 4077, 9), -- Aura Burn
-(21823, 4078, 9), -- Flame Strike
-(21823, 4285, 5), -- Resist Sleep Attacks
-(21823, 4287, 5), -- Resist Hold Attacks
-(21823, 4408, 14), -- HP Increase (6x)
-(21823, 4409, 1), -- MP Increase (1x)
-(21823, 4410, 11), -- Average P. Atk.
-(21823, 4411, 11), -- Average M. Atk.
-(21823, 4412, 11), -- Average P. Def.
-(21823, 4413, 11), -- Average M. Def.
-(21823, 4414, 2), -- Standard Type
-(21823, 4415, 3), -- One-handed Sword
-(21823, 4416, 1), -- Undead
-(21823, 4613, 9), -- Clan Heal
-(21823, 4789, 6), -- High Level
+(21823, 4077, 9), -- NPC Aura Burn
+(21823, 4078, 9), -- NPC Flamestrike
+(21823, 4285, 5), -- Resist Sleep
+(21823, 4287, 5), -- Resist Hold
+(21823, 4408, 14), -- HP Modifiers
+(21823, 4409, 1), -- MP Modifiers
+(21823, 4410, 11), -- P. Atk. Modifiers
+(21823, 4411, 11), -- M. Atk. Modifiers
+(21823, 4412, 11), -- P. Def. Modifiers
+(21823, 4413, 11), -- M. Def. Modifiers
+(21823, 4414, 2), -- Armor Type
+(21823, 4415, 3), -- Weapon Type
+(21823, 4416, 1), -- Races
+(21823, 4613, 9), -- NPC Clan Heal
+(21823, 4789, 6), -- NPC High Level
 -- Alpine Kookaburra
 (21824, 4318, 1), -- Ultimate Buff
-(21824, 4408, 12), -- HP Increase (4x)
-(21824, 4409, 1), -- MP Increase (1x)
-(21824, 4410, 14), -- Strong P. Atk.
-(21824, 4411, 14), -- Strong M. Atk.
-(21824, 4412, 8), -- Weak P. Def.
-(21824, 4413, 8), -- Weak M. Def.
-(21824, 4414, 2), -- Standard Type
-(21824, 4415, 3), -- One-handed Sword
-(21824, 4416, 3), -- Beasts
+(21824, 4408, 12), -- HP Modifiers
+(21824, 4409, 1), -- MP Modifiers
+(21824, 4410, 14), -- P. Atk. Modifiers
+(21824, 4411, 14), -- M. Atk. Modifiers
+(21824, 4412, 8), -- P. Def. Modifiers
+(21824, 4413, 8), -- M. Def. Modifiers
+(21824, 4414, 2), -- Armor Type
+(21824, 4415, 3), -- Weapon Type
+(21824, 4416, 3), -- Races
 (21824, 4438, 2), -- Greater Resist Sleep
 (21824, 4589, 6), -- Decrease Speed
 (21824, 4600, 6), -- Reducing P. Def Stun
 -- Alpine Kookaburra
-(21825, 4160, 6), -- Aura Burn
+(21825, 4160, 6), -- NPC Aura Burn - Magic
 (21825, 4318, 1), -- Ultimate Buff
-(21825, 4408, 12), -- HP Increase (4x)
-(21825, 4409, 1), -- MP Increase (1x)
-(21825, 4410, 14), -- Strong P. Atk.
-(21825, 4411, 14), -- Strong M. Atk.
-(21825, 4412, 8), -- Weak P. Def.
-(21825, 4413, 8), -- Weak M. Def.
-(21825, 4414, 2), -- Standard Type
-(21825, 4415, 3), -- One-handed Sword
-(21825, 4416, 3), -- Beasts
+(21825, 4408, 12), -- HP Modifiers
+(21825, 4409, 1), -- MP Modifiers
+(21825, 4410, 14), -- P. Atk. Modifiers
+(21825, 4411, 14), -- M. Atk. Modifiers
+(21825, 4412, 8), -- P. Def. Modifiers
+(21825, 4413, 8), -- M. Def. Modifiers
+(21825, 4414, 2), -- Armor Type
+(21825, 4415, 3), -- Weapon Type
+(21825, 4416, 3), -- Races
 (21825, 4438, 2), -- Greater Resist Sleep
-(21825, 4566, 6), -- Rain of Fire
-(21825, 4571, 6), -- Blazing Circle
+(21825, 4566, 6), -- NPC Eruption - Magic
+(21825, 4571, 6), -- NPC Blazing Circle
 (21825, 4657, 6), -- Hold
 -- Alpine Buffalo
 (21826, 4318, 1), -- Ultimate Buff
-(21826, 4408, 12), -- HP Increase (4x)
-(21826, 4409, 1), -- MP Increase (1x)
-(21826, 4410, 14), -- Strong P. Atk.
-(21826, 4411, 14), -- Strong M. Atk.
-(21826, 4412, 8), -- Weak P. Def.
-(21826, 4413, 8), -- Weak M. Def.
-(21826, 4414, 2), -- Standard Type
-(21826, 4415, 6), -- Blunt Weapons
-(21826, 4416, 3), -- Beasts
+(21826, 4408, 12), -- HP Modifiers
+(21826, 4409, 1), -- MP Modifiers
+(21826, 4410, 14), -- P. Atk. Modifiers
+(21826, 4411, 14), -- M. Atk. Modifiers
+(21826, 4412, 8), -- P. Def. Modifiers
+(21826, 4413, 8), -- M. Def. Modifiers
+(21826, 4414, 2), -- Armor Type
+(21826, 4415, 6), -- Weapon Type
+(21826, 4416, 3), -- Races
 (21826, 4438, 2), -- Greater Resist Sleep
 (21826, 4589, 6), -- Decrease Speed
 (21826, 4600, 6), -- Reducing P. Def Stun
 -- Alpine Buffalo
-(21827, 4160, 6), -- Aura Burn
+(21827, 4160, 6), -- NPC Aura Burn - Magic
 (21827, 4318, 1), -- Ultimate Buff
-(21827, 4408, 12), -- HP Increase (4x)
-(21827, 4409, 1), -- MP Increase (1x)
-(21827, 4410, 14), -- Strong P. Atk.
-(21827, 4411, 14), -- Strong M. Atk.
-(21827, 4412, 8), -- Weak P. Def.
-(21827, 4413, 8), -- Weak M. Def.
-(21827, 4414, 2), -- Standard Type
-(21827, 4415, 6), -- Blunt Weapons
-(21827, 4416, 3), -- Beasts
+(21827, 4408, 12), -- HP Modifiers
+(21827, 4409, 1), -- MP Modifiers
+(21827, 4410, 14), -- P. Atk. Modifiers
+(21827, 4411, 14), -- M. Atk. Modifiers
+(21827, 4412, 8), -- P. Def. Modifiers
+(21827, 4413, 8), -- M. Def. Modifiers
+(21827, 4414, 2), -- Armor Type
+(21827, 4415, 6), -- Weapon Type
+(21827, 4416, 3), -- Races
 (21827, 4438, 2), -- Greater Resist Sleep
-(21827, 4566, 6), -- Rain of Fire
-(21827, 4571, 6), -- Blazing Circle
+(21827, 4566, 6), -- NPC Eruption - Magic
+(21827, 4571, 6), -- NPC Blazing Circle
 (21827, 4657, 6), -- Hold
 -- Alpine Cougar
 (21828, 4318, 1), -- Ultimate Buff
-(21828, 4408, 12), -- HP Increase (4x)
-(21828, 4409, 1), -- MP Increase (1x)
-(21828, 4410, 14), -- Strong P. Atk.
-(21828, 4411, 14), -- Strong M. Atk.
-(21828, 4412, 8), -- Weak P. Def.
-(21828, 4413, 8), -- Weak M. Def.
-(21828, 4414, 2), -- Standard Type
-(21828, 4415, 3), -- One-handed Sword
-(21828, 4416, 3), -- Beasts
+(21828, 4408, 12), -- HP Modifiers
+(21828, 4409, 1), -- MP Modifiers
+(21828, 4410, 14), -- P. Atk. Modifiers
+(21828, 4411, 14), -- M. Atk. Modifiers
+(21828, 4412, 8), -- P. Def. Modifiers
+(21828, 4413, 8), -- M. Def. Modifiers
+(21828, 4414, 2), -- Armor Type
+(21828, 4415, 3), -- Weapon Type
+(21828, 4416, 3), -- Races
 (21828, 4438, 2), -- Greater Resist Sleep
 (21828, 4589, 6), -- Decrease Speed
 (21828, 4600, 6), -- Reducing P. Def Stun
 -- Alpine Cougar
-(21829, 4160, 6), -- Aura Burn
+(21829, 4160, 6), -- NPC Aura Burn - Magic
 (21829, 4318, 1), -- Ultimate Buff
-(21829, 4408, 12), -- HP Increase (4x)
-(21829, 4409, 1), -- MP Increase (1x)
-(21829, 4410, 14), -- Strong P. Atk.
-(21829, 4411, 14), -- Strong M. Atk.
-(21829, 4412, 8), -- Weak P. Def.
-(21829, 4413, 8), -- Weak M. Def.
-(21829, 4414, 2), -- Standard Type
-(21829, 4415, 3), -- One-handed Sword
-(21829, 4416, 3), -- Beasts
+(21829, 4408, 12), -- HP Modifiers
+(21829, 4409, 1), -- MP Modifiers
+(21829, 4410, 14), -- P. Atk. Modifiers
+(21829, 4411, 14), -- M. Atk. Modifiers
+(21829, 4412, 8), -- P. Def. Modifiers
+(21829, 4413, 8), -- M. Def. Modifiers
+(21829, 4414, 2), -- Armor Type
+(21829, 4415, 3), -- Weapon Type
+(21829, 4416, 3), -- Races
 (21829, 4438, 2), -- Greater Resist Sleep
-(21829, 4566, 6), -- Rain of Fire
-(21829, 4571, 6), -- Blazing Circle
+(21829, 4566, 6), -- NPC Eruption - Magic
+(21829, 4571, 6), -- NPC Blazing Circle
 (21829, 4657, 6), -- Hold
 -- Grim Wolf
-(22001, 4274, 3), -- Blunt Weapon Weak Point
-(22001, 4408, 1), -- HP Increase (1x)
-(22001, 4409, 1), -- MP Increase (1x)
-(22001, 4410, 11), -- Average P. Atk.
-(22001, 4411, 11), -- Average M. Atk.
-(22001, 4412, 11), -- Average P. Def.
-(22001, 4413, 13), -- Slightly Strong M. Def.
-(22001, 4414, 2), -- Standard Type
-(22001, 4415, 1), -- Bare Hands
-(22001, 4416, 4), -- Animals
-(22001, 4417, 1), -- Animals
+(22001, 4274, 3), -- Blunt Attack Weak Point
+(22001, 4408, 1), -- HP Modifiers
+(22001, 4409, 1), -- MP Modifiers
+(22001, 4410, 11), -- P. Atk. Modifiers
+(22001, 4411, 11), -- M. Atk. Modifiers
+(22001, 4412, 11), -- P. Def. Modifiers
+(22001, 4413, 13), -- M. Def. Modifiers
+(22001, 4414, 2), -- Armor Type
+(22001, 4415, 1), -- Weapon Type
+(22001, 4416, 4), -- Races
+(22001, 4417, 1), -- Race Types
 (22001, 4458, 3), -- Spear Weapon Weak Point
 -- Grim Grizzly
-(22002, 4032, 2), -- Power Strike
-(22002, 4274, 3), -- Blunt Weapon Weak Point
-(22002, 4408, 1), -- HP Increase (1x)
-(22002, 4409, 1), -- MP Increase (1x)
-(22002, 4410, 11), -- Average P. Atk.
-(22002, 4411, 11), -- Average M. Atk.
-(22002, 4412, 11), -- Average P. Def.
-(22002, 4413, 13), -- Slightly Strong M. Def.
-(22002, 4414, 1), -- Heavy Armor Type
-(22002, 4415, 1), -- Bare Hands
-(22002, 4416, 4), -- Animals
-(22002, 4417, 1), -- Animals
+(22002, 4032, 2), -- NPC Strike
+(22002, 4274, 3), -- Blunt Attack Weak Point
+(22002, 4408, 1), -- HP Modifiers
+(22002, 4409, 1), -- MP Modifiers
+(22002, 4410, 11), -- P. Atk. Modifiers
+(22002, 4411, 11), -- M. Atk. Modifiers
+(22002, 4412, 11), -- P. Def. Modifiers
+(22002, 4413, 13), -- M. Def. Modifiers
+(22002, 4414, 1), -- Armor Type
+(22002, 4415, 1), -- Weapon Type
+(22002, 4416, 4), -- Races
+(22002, 4417, 1), -- Race Types
 (22002, 4458, 3), -- Spear Weapon Weak Point
 -- Grave Robber Scout
-(22003, 4274, 3), -- Blunt Weapon Weak Point
-(22003, 4408, 1), -- HP Increase (1x)
-(22003, 4409, 1), -- MP Increase (1x)
-(22003, 4410, 11), -- Average P. Atk.
-(22003, 4411, 11), -- Average M. Atk.
-(22003, 4412, 11), -- Average P. Def.
-(22003, 4413, 13), -- Slightly Strong M. Def.
-(22003, 4414, 2), -- Standard Type
-(22003, 4415, 9), -- Bows
-(22003, 4416, 1), -- Undead
-(22003, 4417, 26), -- Humanoids
+(22003, 4274, 3), -- Blunt Attack Weak Point
+(22003, 4408, 1), -- HP Modifiers
+(22003, 4409, 1), -- MP Modifiers
+(22003, 4410, 11), -- P. Atk. Modifiers
+(22003, 4411, 11), -- M. Atk. Modifiers
+(22003, 4412, 11), -- P. Def. Modifiers
+(22003, 4413, 13), -- M. Def. Modifiers
+(22003, 4414, 2), -- Armor Type
+(22003, 4415, 9), -- Weapon Type
+(22003, 4416, 1), -- Races
+(22003, 4417, 26), -- Race Types
 (22003, 4458, 3), -- Spear Weapon Weak Point
 -- Grave Robber Lookout
-(22004, 4028, 2), -- Might
-(22004, 4274, 3), -- Blunt Weapon Weak Point
-(22004, 4408, 1), -- HP Increase (1x)
-(22004, 4409, 1), -- MP Increase (1x)
-(22004, 4410, 11), -- Average P. Atk.
-(22004, 4411, 11), -- Average M. Atk.
-(22004, 4412, 11), -- Average P. Def.
-(22004, 4413, 13), -- Slightly Strong M. Def.
-(22004, 4414, 2), -- Standard Type
-(22004, 4415, 5), -- Blunt Weapons
-(22004, 4416, 1), -- Undead
-(22004, 4417, 37), -- Undead
+(22004, 4028, 2), -- NPC Might
+(22004, 4274, 3), -- Blunt Attack Weak Point
+(22004, 4408, 1), -- HP Modifiers
+(22004, 4409, 1), -- MP Modifiers
+(22004, 4410, 11), -- P. Atk. Modifiers
+(22004, 4411, 11), -- M. Atk. Modifiers
+(22004, 4412, 11), -- P. Def. Modifiers
+(22004, 4413, 13), -- M. Def. Modifiers
+(22004, 4414, 2), -- Armor Type
+(22004, 4415, 5), -- Weapon Type
+(22004, 4416, 1), -- Races
+(22004, 4417, 37), -- Race Types
 (22004, 4458, 3), -- Spear Weapon Weak Point
 -- Grave Robber Ranger
-(22005, 4032, 2), -- Power Strike
-(22005, 4274, 3), -- Blunt Weapon Weak Point
-(22005, 4408, 1), -- HP Increase (1x)
-(22005, 4409, 1), -- MP Increase (1x)
-(22005, 4410, 11), -- Average P. Atk.
-(22005, 4411, 11), -- Average M. Atk.
-(22005, 4412, 11), -- Average P. Def.
-(22005, 4413, 13), -- Slightly Strong M. Def.
-(22005, 4414, 2), -- Standard Type
-(22005, 4415, 7), -- Daggers
-(22005, 4416, 6), -- Humanoids
-(22005, 4417, 26), -- Humanoids
+(22005, 4032, 2), -- NPC Strike
+(22005, 4274, 3), -- Blunt Attack Weak Point
+(22005, 4408, 1), -- HP Modifiers
+(22005, 4409, 1), -- MP Modifiers
+(22005, 4410, 11), -- P. Atk. Modifiers
+(22005, 4411, 11), -- M. Atk. Modifiers
+(22005, 4412, 11), -- P. Def. Modifiers
+(22005, 4413, 13), -- M. Def. Modifiers
+(22005, 4414, 2), -- Armor Type
+(22005, 4415, 7), -- Weapon Type
+(22005, 4416, 6), -- Races
+(22005, 4417, 26), -- Race Types
 (22005, 4458, 3), -- Spear Weapon Weak Point
 -- Grave Robber Guard
-(22006, 4032, 2), -- Power Strike
-(22006, 4274, 3), -- Blunt Weapon Weak Point
-(22006, 4408, 1), -- HP Increase (1x)
-(22006, 4409, 1), -- MP Increase (1x)
-(22006, 4410, 11), -- Average P. Atk.
-(22006, 4411, 11), -- Average M. Atk.
-(22006, 4412, 11), -- Average P. Def.
-(22006, 4413, 13), -- Slightly Strong M. Def.
-(22006, 4414, 2), -- Standard Type
-(22006, 4415, 5), -- Blunt Weapons
-(22006, 4416, 6), -- Humanoids
-(22006, 4417, 26), -- Humanoids
+(22006, 4032, 2), -- NPC Strike
+(22006, 4274, 3), -- Blunt Attack Weak Point
+(22006, 4408, 1), -- HP Modifiers
+(22006, 4409, 1), -- MP Modifiers
+(22006, 4410, 11), -- P. Atk. Modifiers
+(22006, 4411, 11), -- M. Atk. Modifiers
+(22006, 4412, 11), -- P. Def. Modifiers
+(22006, 4413, 13), -- M. Def. Modifiers
+(22006, 4414, 2), -- Armor Type
+(22006, 4415, 5), -- Weapon Type
+(22006, 4416, 6), -- Races
+(22006, 4417, 26), -- Race Types
 (22006, 4458, 3), -- Spear Weapon Weak Point
 -- Ghost of a Soldier
-(22007, 4032, 2), -- Power Strike
-(22007, 4274, 3), -- Blunt Weapon Weak Point
-(22007, 4408, 1), -- HP Increase (1x)
-(22007, 4409, 1), -- MP Increase (1x)
-(22007, 4410, 11), -- Average P. Atk.
-(22007, 4411, 11), -- Average M. Atk.
-(22007, 4412, 11), -- Average P. Def.
-(22007, 4413, 13), -- Slightly Strong M. Def.
-(22007, 4414, 1), -- Heavy Armor Type
-(22007, 4415, 3), -- One-handed Sword
-(22007, 4416, 1), -- Undead
-(22007, 4417, 27), -- Humanoids
+(22007, 4032, 2), -- NPC Strike
+(22007, 4274, 3), -- Blunt Attack Weak Point
+(22007, 4408, 1), -- HP Modifiers
+(22007, 4409, 1), -- MP Modifiers
+(22007, 4410, 11), -- P. Atk. Modifiers
+(22007, 4411, 11), -- M. Atk. Modifiers
+(22007, 4412, 11), -- P. Def. Modifiers
+(22007, 4413, 13), -- M. Def. Modifiers
+(22007, 4414, 1), -- Armor Type
+(22007, 4415, 3), -- Weapon Type
+(22007, 4416, 1), -- Races
+(22007, 4417, 27), -- Race Types
 (22007, 4458, 3), -- Spear Weapon Weak Point
 -- Grave Robber Fighter
-(22008, 4032, 2), -- Power Strike
-(22008, 4274, 3), -- Blunt Weapon Weak Point
-(22008, 4408, 1), -- HP Increase (1x)
-(22008, 4409, 1), -- MP Increase (1x)
-(22008, 4410, 11), -- Average P. Atk.
-(22008, 4411, 11), -- Average M. Atk.
-(22008, 4412, 11), -- Average P. Def.
-(22008, 4413, 13), -- Slightly Strong M. Def.
-(22008, 4414, 1), -- Heavy Armor Type
-(22008, 4415, 5), -- Blunt Weapons
-(22008, 4416, 6), -- Humanoids
-(22008, 4417, 26), -- Humanoids
+(22008, 4032, 2), -- NPC Strike
+(22008, 4274, 3), -- Blunt Attack Weak Point
+(22008, 4408, 1), -- HP Modifiers
+(22008, 4409, 1), -- MP Modifiers
+(22008, 4410, 11), -- P. Atk. Modifiers
+(22008, 4411, 11), -- M. Atk. Modifiers
+(22008, 4412, 11), -- P. Def. Modifiers
+(22008, 4413, 13), -- M. Def. Modifiers
+(22008, 4414, 1), -- Armor Type
+(22008, 4415, 5), -- Weapon Type
+(22008, 4416, 6), -- Races
+(22008, 4417, 26), -- Race Types
 (22008, 4458, 3), -- Spear Weapon Weak Point
 -- Ghost of a Loyal Vassal
-(22009, 4089, 1), -- Spirit Bear
-(22009, 4090, 1), -- Spirit Wolf
-(22009, 4091, 1), -- Spirit Ogre
-(22009, 4092, 1), -- Spirit Puma
-(22009, 4274, 3), -- Blunt Weapon Weak Point
-(22009, 4408, 1), -- HP Increase (1x)
-(22009, 4409, 1), -- MP Increase (1x)
-(22009, 4410, 11), -- Average P. Atk.
-(22009, 4411, 11), -- Average M. Atk.
-(22009, 4412, 11), -- Average P. Def.
-(22009, 4413, 13), -- Slightly Strong M. Def.
-(22009, 4414, 1), -- Heavy Armor Type
-(22009, 4415, 5), -- Blunt Weapons
-(22009, 4416, 1), -- Undead
-(22009, 4417, 27), -- Humanoids
+(22009, 4089, 1), -- NPC Bear Spirit Totem
+(22009, 4090, 1), -- NPC Wolf Spirit Totem
+(22009, 4091, 1), -- NPC Ogre Spirit Totem
+(22009, 4092, 1), -- NPC Puma Spirit Totem
+(22009, 4274, 3), -- Blunt Attack Weak Point
+(22009, 4408, 1), -- HP Modifiers
+(22009, 4409, 1), -- MP Modifiers
+(22009, 4410, 11), -- P. Atk. Modifiers
+(22009, 4411, 11), -- M. Atk. Modifiers
+(22009, 4412, 11), -- P. Def. Modifiers
+(22009, 4413, 13), -- M. Def. Modifiers
+(22009, 4414, 1), -- Armor Type
+(22009, 4415, 5), -- Weapon Type
+(22009, 4416, 1), -- Races
+(22009, 4417, 27), -- Race Types
 (22009, 4458, 3), -- Spear Weapon Weak Point
 -- Ghost of a General
-(22010, 4028, 2), -- Might
-(22010, 4032, 2), -- Power Strike
-(22010, 4274, 3), -- Blunt Weapon Weak Point
-(22010, 4408, 1), -- HP Increase (1x)
-(22010, 4409, 1), -- MP Increase (1x)
-(22010, 4410, 11), -- Average P. Atk.
-(22010, 4411, 11), -- Average M. Atk.
-(22010, 4412, 11), -- Average P. Def.
-(22010, 4413, 13), -- Slightly Strong M. Def.
-(22010, 4414, 1), -- Heavy Armor Type
-(22010, 4415, 3), -- One-handed Sword
-(22010, 4416, 1), -- Undead
-(22010, 4417, 27), -- Humanoids
+(22010, 4028, 2), -- NPC Might
+(22010, 4032, 2), -- NPC Strike
+(22010, 4274, 3), -- Blunt Attack Weak Point
+(22010, 4408, 1), -- HP Modifiers
+(22010, 4409, 1), -- MP Modifiers
+(22010, 4410, 11), -- P. Atk. Modifiers
+(22010, 4411, 11), -- M. Atk. Modifiers
+(22010, 4412, 11), -- P. Def. Modifiers
+(22010, 4413, 13), -- M. Def. Modifiers
+(22010, 4414, 1), -- Armor Type
+(22010, 4415, 3), -- Weapon Type
+(22010, 4416, 1), -- Races
+(22010, 4417, 27), -- Race Types
 (22010, 4458, 3), -- Spear Weapon Weak Point
-(22010, 4612, 3), -- Wide Sweep
+(22010, 4612, 3), -- NPC Wide Wild Sweep
 -- Ghost of a Batur Chief
-(22011, 4032, 3), -- Power Strike
-(22011, 4274, 3), -- Blunt Weapon Weak Point
-(22011, 4408, 1), -- HP Increase (1x)
-(22011, 4409, 1), -- MP Increase (1x)
-(22011, 4410, 11), -- Average P. Atk.
-(22011, 4411, 11), -- Average M. Atk.
-(22011, 4412, 11), -- Average P. Def.
-(22011, 4413, 13), -- Slightly Strong M. Def.
-(22011, 4414, 1), -- Heavy Armor Type
-(22011, 4415, 3), -- One-handed Sword
-(22011, 4416, 1), -- Undead
-(22011, 4417, 27), -- Humanoids
+(22011, 4032, 3), -- NPC Strike
+(22011, 4274, 3), -- Blunt Attack Weak Point
+(22011, 4408, 1), -- HP Modifiers
+(22011, 4409, 1), -- MP Modifiers
+(22011, 4410, 11), -- P. Atk. Modifiers
+(22011, 4411, 11), -- M. Atk. Modifiers
+(22011, 4412, 11), -- P. Def. Modifiers
+(22011, 4413, 13), -- M. Def. Modifiers
+(22011, 4414, 1), -- Armor Type
+(22011, 4415, 3), -- Weapon Type
+(22011, 4416, 1), -- Races
+(22011, 4417, 27), -- Race Types
 (22011, 4458, 3), -- Spear Weapon Weak Point
 -- Ghost of a Batur Chief
-(22012, 4032, 3), -- Power Strike
-(22012, 4274, 3), -- Blunt Weapon Weak Point
-(22012, 4408, 1), -- HP Increase (1x)
-(22012, 4409, 1), -- MP Increase (1x)
-(22012, 4410, 11), -- Average P. Atk.
-(22012, 4411, 11), -- Average M. Atk.
-(22012, 4412, 11), -- Average P. Def.
-(22012, 4413, 13), -- Slightly Strong M. Def.
-(22012, 4414, 1), -- Heavy Armor Type
-(22012, 4415, 3), -- One-handed Sword
-(22012, 4416, 1), -- Undead
-(22012, 4417, 27), -- Humanoids
+(22012, 4032, 3), -- NPC Strike
+(22012, 4274, 3), -- Blunt Attack Weak Point
+(22012, 4408, 1), -- HP Modifiers
+(22012, 4409, 1), -- MP Modifiers
+(22012, 4410, 11), -- P. Atk. Modifiers
+(22012, 4411, 11), -- M. Atk. Modifiers
+(22012, 4412, 11), -- P. Def. Modifiers
+(22012, 4413, 13), -- M. Def. Modifiers
+(22012, 4414, 1), -- Armor Type
+(22012, 4415, 3), -- Weapon Type
+(22012, 4416, 1), -- Races
+(22012, 4417, 27), -- Race Types
 (22012, 4458, 3), -- Spear Weapon Weak Point
 -- Ghost of a Morek Chief
-(22013, 4032, 3), -- Power Strike
-(22013, 4274, 3), -- Blunt Weapon Weak Point
-(22013, 4408, 1), -- HP Increase (1x)
-(22013, 4409, 1), -- MP Increase (1x)
-(22013, 4410, 11), -- Average P. Atk.
-(22013, 4411, 11), -- Average M. Atk.
-(22013, 4412, 11), -- Average P. Def.
-(22013, 4413, 13), -- Slightly Strong M. Def.
-(22013, 4414, 1), -- Heavy Armor Type
-(22013, 4415, 3), -- One-handed Sword
-(22013, 4416, 1), -- Undead
-(22013, 4417, 27), -- Humanoids
+(22013, 4032, 3), -- NPC Strike
+(22013, 4274, 3), -- Blunt Attack Weak Point
+(22013, 4408, 1), -- HP Modifiers
+(22013, 4409, 1), -- MP Modifiers
+(22013, 4410, 11), -- P. Atk. Modifiers
+(22013, 4411, 11), -- M. Atk. Modifiers
+(22013, 4412, 11), -- P. Def. Modifiers
+(22013, 4413, 13), -- M. Def. Modifiers
+(22013, 4414, 1), -- Armor Type
+(22013, 4415, 3), -- Weapon Type
+(22013, 4416, 1), -- Races
+(22013, 4417, 27), -- Race Types
 (22013, 4458, 3), -- Spear Weapon Weak Point
 -- Ghost of a Morek Chief
-(22014, 4032, 3), -- Power Strike
-(22014, 4274, 3), -- Blunt Weapon Weak Point
-(22014, 4408, 1), -- HP Increase (1x)
-(22014, 4409, 1), -- MP Increase (1x)
-(22014, 4410, 11), -- Average P. Atk.
-(22014, 4411, 11), -- Average M. Atk.
-(22014, 4412, 11), -- Average P. Def.
-(22014, 4413, 13), -- Slightly Strong M. Def.
-(22014, 4414, 1), -- Heavy Armor Type
-(22014, 4415, 3), -- One-handed Sword
-(22014, 4416, 1), -- Undead
-(22014, 4417, 27), -- Humanoids
+(22014, 4032, 3), -- NPC Strike
+(22014, 4274, 3), -- Blunt Attack Weak Point
+(22014, 4408, 1), -- HP Modifiers
+(22014, 4409, 1), -- MP Modifiers
+(22014, 4410, 11), -- P. Atk. Modifiers
+(22014, 4411, 11), -- M. Atk. Modifiers
+(22014, 4412, 11), -- P. Def. Modifiers
+(22014, 4413, 13), -- M. Def. Modifiers
+(22014, 4414, 1), -- Armor Type
+(22014, 4415, 3), -- Weapon Type
+(22014, 4416, 1), -- Races
+(22014, 4417, 27), -- Race Types
 (22014, 4458, 3), -- Spear Weapon Weak Point
 -- Ghost of a Turka Chief
-(22015, 4032, 3), -- Power Strike
-(22015, 4274, 3), -- Blunt Weapon Weak Point
-(22015, 4408, 1), -- HP Increase (1x)
-(22015, 4409, 1), -- MP Increase (1x)
-(22015, 4410, 11), -- Average P. Atk.
-(22015, 4411, 11), -- Average M. Atk.
-(22015, 4412, 11), -- Average P. Def.
-(22015, 4413, 13), -- Slightly Strong M. Def.
-(22015, 4414, 1), -- Heavy Armor Type
-(22015, 4415, 3), -- One-handed Sword
-(22015, 4416, 1), -- Undead
-(22015, 4417, 27), -- Humanoids
+(22015, 4032, 3), -- NPC Strike
+(22015, 4274, 3), -- Blunt Attack Weak Point
+(22015, 4408, 1), -- HP Modifiers
+(22015, 4409, 1), -- MP Modifiers
+(22015, 4410, 11), -- P. Atk. Modifiers
+(22015, 4411, 11), -- M. Atk. Modifiers
+(22015, 4412, 11), -- P. Def. Modifiers
+(22015, 4413, 13), -- M. Def. Modifiers
+(22015, 4414, 1), -- Armor Type
+(22015, 4415, 3), -- Weapon Type
+(22015, 4416, 1), -- Races
+(22015, 4417, 27), -- Race Types
 (22015, 4458, 3), -- Spear Weapon Weak Point
 -- Ghost of a Turka Chief
-(22016, 4032, 3), -- Power Strike
-(22016, 4274, 3), -- Blunt Weapon Weak Point
-(22016, 4408, 1), -- HP Increase (1x)
-(22016, 4409, 1), -- MP Increase (1x)
-(22016, 4410, 11), -- Average P. Atk.
-(22016, 4411, 11), -- Average M. Atk.
-(22016, 4412, 11), -- Average P. Def.
-(22016, 4413, 13), -- Slightly Strong M. Def.
-(22016, 4414, 1), -- Heavy Armor Type
-(22016, 4415, 3), -- One-handed Sword
-(22016, 4416, 1), -- Undead
-(22016, 4417, 27), -- Humanoids
+(22016, 4032, 3), -- NPC Strike
+(22016, 4274, 3), -- Blunt Attack Weak Point
+(22016, 4408, 1), -- HP Modifiers
+(22016, 4409, 1), -- MP Modifiers
+(22016, 4410, 11), -- P. Atk. Modifiers
+(22016, 4411, 11), -- M. Atk. Modifiers
+(22016, 4412, 11), -- P. Def. Modifiers
+(22016, 4413, 13), -- M. Def. Modifiers
+(22016, 4414, 1), -- Armor Type
+(22016, 4415, 3), -- Weapon Type
+(22016, 4416, 1), -- Races
+(22016, 4417, 27), -- Race Types
 (22016, 4458, 3), -- Spear Weapon Weak Point
 -- Bandit Sweeper
-(22017, 4032, 3), -- Power Strike
-(22017, 4274, 2), -- Blunt Weapon Weak Point
-(22017, 4408, 1), -- HP Increase (1x)
-(22017, 4409, 1), -- MP Increase (1x)
-(22017, 4410, 12), -- Slightly Strong P. Atk.
-(22017, 4411, 11), -- Average M. Atk.
-(22017, 4412, 12), -- Slightly Strong P. Def.
-(22017, 4413, 11), -- Average M. Def.
-(22017, 4414, 3), -- Light Armor Type
-(22017, 4415, 3), -- One-handed Sword
-(22017, 4416, 6), -- Humanoids
-(22017, 4417, 26), -- Humanoids
+(22017, 4032, 3), -- NPC Strike
+(22017, 4274, 2), -- Blunt Attack Weak Point
+(22017, 4408, 1), -- HP Modifiers
+(22017, 4409, 1), -- MP Modifiers
+(22017, 4410, 12), -- P. Atk. Modifiers
+(22017, 4411, 11), -- M. Atk. Modifiers
+(22017, 4412, 12), -- P. Def. Modifiers
+(22017, 4413, 11), -- M. Def. Modifiers
+(22017, 4414, 3), -- Armor Type
+(22017, 4415, 3), -- Weapon Type
+(22017, 4416, 6), -- Races
+(22017, 4417, 26), -- Race Types
 (22017, 4450, 3), -- Stun Attack Weak Point
-(22017, 4470, 1), -- Spoil
+(22017, 4470, 1), -- NPC Spoils
 -- Bandit Hound
-(22018, 4408, 1), -- HP Increase (1x)
-(22018, 4409, 1), -- MP Increase (1x)
-(22018, 4410, 12), -- Slightly Strong P. Atk.
-(22018, 4411, 11), -- Average M. Atk.
-(22018, 4412, 12), -- Slightly Strong P. Def.
-(22018, 4413, 11), -- Average M. Def.
-(22018, 4414, 2), -- Standard Type
-(22018, 4415, 3), -- One-handed Sword
-(22018, 4416, 4), -- Animals
-(22018, 4417, 1), -- Animals
+(22018, 4408, 1), -- HP Modifiers
+(22018, 4409, 1), -- MP Modifiers
+(22018, 4410, 12), -- P. Atk. Modifiers
+(22018, 4411, 11), -- M. Atk. Modifiers
+(22018, 4412, 12), -- P. Def. Modifiers
+(22018, 4413, 11), -- M. Def. Modifiers
+(22018, 4414, 2), -- Armor Type
+(22018, 4415, 3), -- Weapon Type
+(22018, 4416, 4), -- Races
+(22018, 4417, 1), -- Race Types
 -- Bandit Watchman
-(22019, 4040, 3), -- Power Shot
-(22019, 4274, 2), -- Blunt Weapon Weak Point
-(22019, 4408, 1), -- HP Increase (1x)
-(22019, 4409, 1), -- MP Increase (1x)
-(22019, 4410, 12), -- Slightly Strong P. Atk.
-(22019, 4411, 11), -- Average M. Atk.
-(22019, 4412, 12), -- Slightly Strong P. Def.
-(22019, 4413, 11), -- Average M. Def.
-(22019, 4414, 2), -- Standard Type
-(22019, 4415, 9), -- Bows
-(22019, 4416, 6), -- Humanoids
-(22019, 4417, 32), -- Humanoids
+(22019, 4040, 3), -- NPC Bow Attack
+(22019, 4274, 2), -- Blunt Attack Weak Point
+(22019, 4408, 1), -- HP Modifiers
+(22019, 4409, 1), -- MP Modifiers
+(22019, 4410, 12), -- P. Atk. Modifiers
+(22019, 4411, 11), -- M. Atk. Modifiers
+(22019, 4412, 12), -- P. Def. Modifiers
+(22019, 4413, 11), -- M. Def. Modifiers
+(22019, 4414, 2), -- Armor Type
+(22019, 4415, 9), -- Weapon Type
+(22019, 4416, 6), -- Races
+(22019, 4417, 32), -- Race Types
 (22019, 4450, 3), -- Stun Attack Weak Point
 -- Snow Lynx
-(22020, 4032, 3), -- Power Strike
-(22020, 4408, 1), -- HP Increase (1x)
-(22020, 4409, 1), -- MP Increase (1x)
-(22020, 4410, 12), -- Slightly Strong P. Atk.
-(22020, 4411, 11), -- Average M. Atk.
-(22020, 4412, 12), -- Slightly Strong P. Def.
-(22020, 4413, 11), -- Average M. Def.
-(22020, 4414, 2), -- Standard Type
-(22020, 4415, 3), -- One-handed Sword
-(22020, 4416, 3), -- Beasts
-(22020, 4417, 4), -- Beasts
+(22020, 4032, 3), -- NPC Strike
+(22020, 4408, 1), -- HP Modifiers
+(22020, 4409, 1), -- MP Modifiers
+(22020, 4410, 12), -- P. Atk. Modifiers
+(22020, 4411, 11), -- M. Atk. Modifiers
+(22020, 4412, 12), -- P. Def. Modifiers
+(22020, 4413, 11), -- M. Def. Modifiers
+(22020, 4414, 2), -- Armor Type
+(22020, 4415, 3), -- Weapon Type
+(22020, 4416, 3), -- Races
+(22020, 4417, 4), -- Race Types
 -- Bandit Undertaker
-(22021, 4151, 3), -- Wind Strike
-(22021, 4160, 3), -- Aura Burn
-(22021, 4274, 2), -- Blunt Weapon Weak Point
-(22021, 4408, 1), -- HP Increase (1x)
-(22021, 4409, 1), -- MP Increase (1x)
-(22021, 4410, 11), -- Average P. Atk.
-(22021, 4411, 11), -- Average M. Atk.
-(22021, 4412, 12), -- Slightly Strong P. Def.
-(22021, 4413, 11), -- Average M. Def.
-(22021, 4414, 2), -- Standard Type
-(22021, 4415, 5), -- Blunt Weapons
-(22021, 4416, 6), -- Humanoids
-(22021, 4417, 26), -- Humanoids
+(22021, 4151, 3), -- NPC Windstrike - Magic
+(22021, 4160, 3), -- NPC Aura Burn - Magic
+(22021, 4274, 2), -- Blunt Attack Weak Point
+(22021, 4408, 1), -- HP Modifiers
+(22021, 4409, 1), -- MP Modifiers
+(22021, 4410, 11), -- P. Atk. Modifiers
+(22021, 4411, 11), -- M. Atk. Modifiers
+(22021, 4412, 12), -- P. Def. Modifiers
+(22021, 4413, 11), -- M. Def. Modifiers
+(22021, 4414, 2), -- Armor Type
+(22021, 4415, 5), -- Weapon Type
+(22021, 4416, 6), -- Races
+(22021, 4417, 26), -- Race Types
 (22021, 4450, 3), -- Stun Attack Weak Point
 -- Bandit Assassin
-(22022, 4067, 3), -- Blow
-(22022, 4408, 1), -- HP Increase (1x)
-(22022, 4409, 1), -- MP Increase (1x)
-(22022, 4410, 12), -- Slightly Strong P. Atk.
-(22022, 4411, 11), -- Average M. Atk.
-(22022, 4412, 12), -- Slightly Strong P. Def.
-(22022, 4413, 11), -- Average M. Def.
-(22022, 4414, 2), -- Standard Type
-(22022, 4415, 7), -- Daggers
-(22022, 4416, 6), -- Humanoids
-(22022, 4417, 31), -- Humanoids
-(22022, 5040, 3), -- Healing Potion
+(22022, 4067, 3), -- NPC Mortal Blow
+(22022, 4408, 1), -- HP Modifiers
+(22022, 4409, 1), -- MP Modifiers
+(22022, 4410, 12), -- P. Atk. Modifiers
+(22022, 4411, 11), -- M. Atk. Modifiers
+(22022, 4412, 12), -- P. Def. Modifiers
+(22022, 4413, 11), -- M. Def. Modifiers
+(22022, 4414, 2), -- Armor Type
+(22022, 4415, 7), -- Weapon Type
+(22022, 4416, 6), -- Races
+(22022, 4417, 31), -- Race Types
+(22022, 5040, 3), -- NPC - Healing Potion
 -- Bandit Warrior
-(22023, 4032, 3), -- Power Strike
-(22023, 4274, 2), -- Blunt Weapon Weak Point
-(22023, 4408, 1), -- HP Increase (1x)
-(22023, 4409, 1), -- MP Increase (1x)
-(22023, 4410, 12), -- Slightly Strong P. Atk.
-(22023, 4411, 11), -- Average M. Atk.
-(22023, 4412, 12), -- Slightly Strong P. Def.
-(22023, 4413, 11), -- Average M. Def.
-(22023, 4414, 2), -- Standard Type
-(22023, 4415, 3), -- One-handed Sword
-(22023, 4416, 6), -- Humanoids
-(22023, 4417, 32), -- Humanoids
+(22023, 4032, 3), -- NPC Strike
+(22023, 4274, 2), -- Blunt Attack Weak Point
+(22023, 4408, 1), -- HP Modifiers
+(22023, 4409, 1), -- MP Modifiers
+(22023, 4410, 12), -- P. Atk. Modifiers
+(22023, 4411, 11), -- M. Atk. Modifiers
+(22023, 4412, 12), -- P. Def. Modifiers
+(22023, 4413, 11), -- M. Def. Modifiers
+(22023, 4414, 2), -- Armor Type
+(22023, 4415, 3), -- Weapon Type
+(22023, 4416, 6), -- Races
+(22023, 4417, 32), -- Race Types
 (22023, 4450, 3), -- Stun Attack Weak Point
-(22023, 5040, 3), -- Healing Potion
+(22023, 5040, 3), -- NPC - Healing Potion
 -- Bandit Inspector
-(22024, 4032, 3), -- Power Strike
-(22024, 4408, 1), -- HP Increase (1x)
-(22024, 4409, 1), -- MP Increase (1x)
-(22024, 4410, 12), -- Slightly Strong P. Atk.
-(22024, 4411, 11), -- Average M. Atk.
-(22024, 4412, 12), -- Slightly Strong P. Def.
-(22024, 4413, 11), -- Average M. Def.
-(22024, 4414, 3), -- Light Armor Type
-(22024, 4415, 5), -- Blunt Weapons
-(22024, 4416, 6), -- Humanoids
-(22024, 4417, 26), -- Humanoids
-(22024, 4470, 1), -- Spoil
+(22024, 4032, 3), -- NPC Strike
+(22024, 4408, 1), -- HP Modifiers
+(22024, 4409, 1), -- MP Modifiers
+(22024, 4410, 12), -- P. Atk. Modifiers
+(22024, 4411, 11), -- M. Atk. Modifiers
+(22024, 4412, 12), -- P. Def. Modifiers
+(22024, 4413, 11), -- M. Def. Modifiers
+(22024, 4414, 3), -- Armor Type
+(22024, 4415, 5), -- Weapon Type
+(22024, 4416, 6), -- Races
+(22024, 4417, 26), -- Race Types
+(22024, 4470, 1), -- NPC Spoils
 -- Frozen Wasteland Werewolf
-(22025, 4032, 3), -- Power Strike
-(22025, 4408, 1), -- HP Increase (1x)
-(22025, 4409, 1), -- MP Increase (1x)
-(22025, 4410, 12), -- Slightly Strong P. Atk.
-(22025, 4411, 11), -- Average M. Atk.
-(22025, 4412, 12), -- Slightly Strong P. Def.
-(22025, 4413, 11), -- Average M. Def.
-(22025, 4414, 2), -- Standard Type
-(22025, 4415, 3), -- One-handed Sword
-(22025, 4416, 6), -- Humanoids
-(22025, 4417, 31), -- Humanoids
+(22025, 4032, 3), -- NPC Strike
+(22025, 4408, 1), -- HP Modifiers
+(22025, 4409, 1), -- MP Modifiers
+(22025, 4410, 12), -- P. Atk. Modifiers
+(22025, 4411, 11), -- M. Atk. Modifiers
+(22025, 4412, 12), -- P. Def. Modifiers
+(22025, 4413, 11), -- M. Def. Modifiers
+(22025, 4414, 2), -- Armor Type
+(22025, 4415, 3), -- Weapon Type
+(22025, 4416, 6), -- Races
+(22025, 4417, 31), -- Race Types
 -- Bandit Captain
-(22026, 4032, 3), -- Power Strike
-(22026, 4274, 2), -- Blunt Weapon Weak Point
-(22026, 4408, 1), -- HP Increase (1x)
-(22026, 4409, 1), -- MP Increase (1x)
-(22026, 4410, 12), -- Slightly Strong P. Atk.
-(22026, 4411, 11), -- Average M. Atk.
-(22026, 4412, 12), -- Slightly Strong P. Def.
-(22026, 4413, 11), -- Average M. Def.
-(22026, 4414, 2), -- Standard Type
-(22026, 4415, 5), -- Blunt Weapons
-(22026, 4416, 6), -- Humanoids
-(22026, 4417, 32), -- Humanoids
+(22026, 4032, 3), -- NPC Strike
+(22026, 4274, 2), -- Blunt Attack Weak Point
+(22026, 4408, 1), -- HP Modifiers
+(22026, 4409, 1), -- MP Modifiers
+(22026, 4410, 12), -- P. Atk. Modifiers
+(22026, 4411, 11), -- M. Atk. Modifiers
+(22026, 4412, 12), -- P. Def. Modifiers
+(22026, 4413, 11), -- M. Def. Modifiers
+(22026, 4414, 2), -- Armor Type
+(22026, 4415, 5), -- Weapon Type
+(22026, 4416, 6), -- Races
+(22026, 4417, 32), -- Race Types
 (22026, 4450, 3), -- Stun Attack Weak Point
-(22026, 5040, 4), -- Healing Potion
+(22026, 5040, 4), -- NPC - Healing Potion
 -- Forgotten Crewman
-(22027, 4032, 3), -- Power Strike
-(22027, 4274, 1), -- Blunt Weapon Weak Point
-(22027, 4408, 10), -- HP Increase (2x)
-(22027, 4409, 1), -- MP Increase (1x)
-(22027, 4410, 12), -- Slightly Strong P. Atk.
-(22027, 4411, 11), -- Average M. Atk.
-(22027, 4412, 12), -- Slightly Strong P. Def.
-(22027, 4413, 11), -- Average M. Def.
-(22027, 4414, 2), -- Standard Type
-(22027, 4415, 3), -- One-handed Sword
-(22027, 4416, 1), -- Undead
-(22027, 4417, 37), -- Undead
+(22027, 4032, 3), -- NPC Strike
+(22027, 4274, 1), -- Blunt Attack Weak Point
+(22027, 4408, 10), -- HP Modifiers
+(22027, 4409, 1), -- MP Modifiers
+(22027, 4410, 12), -- P. Atk. Modifiers
+(22027, 4411, 11), -- M. Atk. Modifiers
+(22027, 4412, 12), -- P. Def. Modifiers
+(22027, 4413, 11), -- M. Def. Modifiers
+(22027, 4414, 2), -- Armor Type
+(22027, 4415, 3), -- Weapon Type
+(22027, 4416, 1), -- Races
+(22027, 4417, 37), -- Race Types
 -- Vagabond of the Ruins
-(22028, 4100, 4), -- Prominence
-(22028, 4274, 1), -- Blunt Weapon Weak Point
-(22028, 4408, 10), -- HP Increase (2x)
-(22028, 4409, 1), -- MP Increase (1x)
-(22028, 4410, 11), -- Average P. Atk.
-(22028, 4411, 12), -- Slightly Strong M. Atk.
-(22028, 4412, 12), -- Slightly Strong P. Def.
-(22028, 4413, 11), -- Average M. Def.
-(22028, 4414, 2), -- Standard Type
-(22028, 4415, 7), -- Daggers
-(22028, 4416, 1), -- Undead
-(22028, 4417, 26), -- Humanoids
+(22028, 4100, 4), -- NPC Prominence
+(22028, 4274, 1), -- Blunt Attack Weak Point
+(22028, 4408, 10), -- HP Modifiers
+(22028, 4409, 1), -- MP Modifiers
+(22028, 4410, 11), -- P. Atk. Modifiers
+(22028, 4411, 12), -- M. Atk. Modifiers
+(22028, 4412, 12), -- P. Def. Modifiers
+(22028, 4413, 11), -- M. Def. Modifiers
+(22028, 4414, 2), -- Armor Type
+(22028, 4415, 7), -- Weapon Type
+(22028, 4416, 1), -- Races
+(22028, 4417, 26), -- Race Types
 -- Ragna Orc
-(22029, 4032, 4), -- Power Strike
-(22029, 4099, 1), -- Berserker Spirit
-(22029, 4408, 1), -- HP Increase (1x)
-(22029, 4409, 1), -- MP Increase (1x)
-(22029, 4410, 13), -- Slightly Strong P. Atk.
-(22029, 4411, 11), -- Average M. Atk.
-(22029, 4412, 11), -- Average P. Def.
-(22029, 4413, 11), -- Average M. Def.
-(22029, 4414, 2), -- Standard Type
-(22029, 4415, 5), -- Blunt Weapons
-(22029, 4416, 6), -- Humanoids
-(22029, 4417, 27), -- Humanoids
+(22029, 4032, 4), -- NPC Strike
+(22029, 4099, 1), -- NPC Berserk
+(22029, 4408, 1), -- HP Modifiers
+(22029, 4409, 1), -- MP Modifiers
+(22029, 4410, 13), -- P. Atk. Modifiers
+(22029, 4411, 11), -- M. Atk. Modifiers
+(22029, 4412, 11), -- P. Def. Modifiers
+(22029, 4413, 11), -- M. Def. Modifiers
+(22029, 4414, 2), -- Armor Type
+(22029, 4415, 5), -- Weapon Type
+(22029, 4416, 6), -- Races
+(22029, 4417, 27), -- Race Types
 -- Ragna Orc Shaman
-(22030, 4065, 4), -- Heal
-(22030, 4100, 4), -- Prominence
-(22030, 4160, 4), -- Aura Burn
-(22030, 4408, 1), -- HP Increase (1x)
-(22030, 4409, 1), -- MP Increase (1x)
-(22030, 4410, 11), -- Average P. Atk.
-(22030, 4411, 13), -- Slightly Strong M. Atk.
-(22030, 4412, 11), -- Average P. Def.
-(22030, 4413, 11), -- Average M. Def.
-(22030, 4414, 2), -- Standard Type
-(22030, 4415, 5), -- Blunt Weapons
-(22030, 4416, 6), -- Humanoids
-(22030, 4417, 27), -- Humanoids
+(22030, 4065, 4), -- NPC Heal
+(22030, 4100, 4), -- NPC Prominence
+(22030, 4160, 4), -- NPC Aura Burn - Magic
+(22030, 4408, 1), -- HP Modifiers
+(22030, 4409, 1), -- MP Modifiers
+(22030, 4410, 11), -- P. Atk. Modifiers
+(22030, 4411, 13), -- M. Atk. Modifiers
+(22030, 4412, 11), -- P. Def. Modifiers
+(22030, 4413, 11), -- M. Def. Modifiers
+(22030, 4414, 2), -- Armor Type
+(22030, 4415, 5), -- Weapon Type
+(22030, 4416, 6), -- Races
+(22030, 4417, 27), -- Race Types
 -- Ragna Orc Archer
-(22031, 4408, 1), -- HP Increase (1x)
-(22031, 4409, 1), -- MP Increase (1x)
-(22031, 4410, 11), -- Average P. Atk.
-(22031, 4411, 11), -- Average M. Atk.
-(22031, 4412, 11), -- Average P. Def.
-(22031, 4413, 11), -- Average M. Def.
-(22031, 4414, 3), -- Light Armor Type
-(22031, 4415, 9), -- Bows
-(22031, 4416, 6), -- Humanoids
-(22031, 4417, 27), -- Humanoids
+(22031, 4408, 1), -- HP Modifiers
+(22031, 4409, 1), -- MP Modifiers
+(22031, 4410, 11), -- P. Atk. Modifiers
+(22031, 4411, 11), -- M. Atk. Modifiers
+(22031, 4412, 11), -- P. Def. Modifiers
+(22031, 4413, 11), -- M. Def. Modifiers
+(22031, 4414, 3), -- Armor Type
+(22031, 4415, 9), -- Weapon Type
+(22031, 4416, 6), -- Races
+(22031, 4417, 27), -- Race Types
 -- Ragna Orc Warrior
-(22032, 4028, 2), -- Might
-(22032, 4073, 4), -- Stun
-(22032, 4408, 1), -- HP Increase (1x)
-(22032, 4409, 1), -- MP Increase (1x)
-(22032, 4410, 13), -- Slightly Strong P. Atk.
-(22032, 4411, 11), -- Average M. Atk.
-(22032, 4412, 11), -- Average P. Def.
-(22032, 4413, 11), -- Average M. Def.
-(22032, 4414, 1), -- Heavy Armor Type
-(22032, 4415, 3), -- One-handed Sword
-(22032, 4416, 6), -- Humanoids
-(22032, 4417, 27), -- Humanoids
+(22032, 4028, 2), -- NPC Might
+(22032, 4073, 4), -- Shock
+(22032, 4408, 1), -- HP Modifiers
+(22032, 4409, 1), -- MP Modifiers
+(22032, 4410, 13), -- P. Atk. Modifiers
+(22032, 4411, 11), -- M. Atk. Modifiers
+(22032, 4412, 11), -- P. Def. Modifiers
+(22032, 4413, 11), -- M. Def. Modifiers
+(22032, 4414, 1), -- Armor Type
+(22032, 4415, 3), -- Weapon Type
+(22032, 4416, 6), -- Races
+(22032, 4417, 27), -- Race Types
 -- Ragna Orc Mage
-(22033, 4100, 4), -- Prominence
-(22033, 4160, 4), -- Aura Burn
-(22033, 4408, 1), -- HP Increase (1x)
-(22033, 4409, 1), -- MP Increase (1x)
-(22033, 4410, 11), -- Average P. Atk.
-(22033, 4411, 13), -- Slightly Strong M. Atk.
-(22033, 4412, 11), -- Average P. Def.
-(22033, 4413, 11), -- Average M. Def.
-(22033, 4414, 2), -- Standard Type
-(22033, 4415, 5), -- Blunt Weapons
-(22033, 4416, 6), -- Humanoids
-(22033, 4417, 27), -- Humanoids
+(22033, 4100, 4), -- NPC Prominence
+(22033, 4160, 4), -- NPC Aura Burn - Magic
+(22033, 4408, 1), -- HP Modifiers
+(22033, 4409, 1), -- MP Modifiers
+(22033, 4410, 11), -- P. Atk. Modifiers
+(22033, 4411, 13), -- M. Atk. Modifiers
+(22033, 4412, 11), -- P. Def. Modifiers
+(22033, 4413, 11), -- M. Def. Modifiers
+(22033, 4414, 2), -- Armor Type
+(22033, 4415, 5), -- Weapon Type
+(22033, 4416, 6), -- Races
+(22033, 4417, 27), -- Race Types
 -- Ragna Orc Mage
-(22034, 4100, 4), -- Prominence
-(22034, 4160, 4), -- Aura Burn
-(22034, 4408, 1), -- HP Increase (1x)
-(22034, 4409, 1), -- MP Increase (1x)
-(22034, 4410, 11), -- Average P. Atk.
-(22034, 4411, 13), -- Slightly Strong M. Atk.
-(22034, 4412, 11), -- Average P. Def.
-(22034, 4413, 11), -- Average M. Def.
-(22034, 4414, 2), -- Standard Type
-(22034, 4415, 5), -- Blunt Weapons
-(22034, 4416, 6), -- Humanoids
-(22034, 4417, 27), -- Humanoids
+(22034, 4100, 4), -- NPC Prominence
+(22034, 4160, 4), -- NPC Aura Burn - Magic
+(22034, 4408, 1), -- HP Modifiers
+(22034, 4409, 1), -- MP Modifiers
+(22034, 4410, 11), -- P. Atk. Modifiers
+(22034, 4411, 13), -- M. Atk. Modifiers
+(22034, 4412, 11), -- P. Def. Modifiers
+(22034, 4413, 11), -- M. Def. Modifiers
+(22034, 4414, 2), -- Armor Type
+(22034, 4415, 5), -- Weapon Type
+(22034, 4416, 6), -- Races
+(22034, 4417, 27), -- Race Types
 -- Ragna Orc Mage
-(22035, 4100, 4), -- Prominence
-(22035, 4160, 4), -- Aura Burn
-(22035, 4408, 1), -- HP Increase (1x)
-(22035, 4409, 1), -- MP Increase (1x)
-(22035, 4410, 11), -- Average P. Atk.
-(22035, 4411, 13), -- Slightly Strong M. Atk.
-(22035, 4412, 11), -- Average P. Def.
-(22035, 4413, 11), -- Average M. Def.
-(22035, 4414, 2), -- Standard Type
-(22035, 4415, 5), -- Blunt Weapons
-(22035, 4416, 6), -- Humanoids
-(22035, 4417, 27), -- Humanoids
+(22035, 4100, 4), -- NPC Prominence
+(22035, 4160, 4), -- NPC Aura Burn - Magic
+(22035, 4408, 1), -- HP Modifiers
+(22035, 4409, 1), -- MP Modifiers
+(22035, 4410, 11), -- P. Atk. Modifiers
+(22035, 4411, 13), -- M. Atk. Modifiers
+(22035, 4412, 11), -- P. Def. Modifiers
+(22035, 4413, 11), -- M. Def. Modifiers
+(22035, 4414, 2), -- Armor Type
+(22035, 4415, 5), -- Weapon Type
+(22035, 4416, 6), -- Races
+(22035, 4417, 27), -- Race Types
 -- Ragna Orc Mage
-(22036, 4100, 4), -- Prominence
-(22036, 4160, 4), -- Aura Burn
-(22036, 4408, 1), -- HP Increase (1x)
-(22036, 4409, 1), -- MP Increase (1x)
-(22036, 4410, 11), -- Average P. Atk.
-(22036, 4411, 13), -- Slightly Strong M. Atk.
-(22036, 4412, 11), -- Average P. Def.
-(22036, 4413, 11), -- Average M. Def.
-(22036, 4414, 2), -- Standard Type
-(22036, 4415, 5), -- Blunt Weapons
-(22036, 4416, 6), -- Humanoids
-(22036, 4417, 27), -- Humanoids
+(22036, 4100, 4), -- NPC Prominence
+(22036, 4160, 4), -- NPC Aura Burn - Magic
+(22036, 4408, 1), -- HP Modifiers
+(22036, 4409, 1), -- MP Modifiers
+(22036, 4410, 11), -- P. Atk. Modifiers
+(22036, 4411, 13), -- M. Atk. Modifiers
+(22036, 4412, 11), -- P. Def. Modifiers
+(22036, 4413, 11), -- M. Def. Modifiers
+(22036, 4414, 2), -- Armor Type
+(22036, 4415, 5), -- Weapon Type
+(22036, 4416, 6), -- Races
+(22036, 4417, 27), -- Race Types
 -- Ragna Orc Healer
-(22037, 4065, 4), -- Heal
+(22037, 4065, 4), -- NPC Heal
 (22037, 4137, 4), -- Hydro Screw
-(22037, 4160, 4), -- Aura Burn
-(22037, 4408, 1), -- HP Increase (1x)
-(22037, 4409, 1), -- MP Increase (1x)
-(22037, 4410, 11), -- Average P. Atk.
-(22037, 4411, 13), -- Slightly Strong M. Atk.
-(22037, 4412, 11), -- Average P. Def.
-(22037, 4413, 11), -- Average M. Def.
-(22037, 4414, 2), -- Standard Type
-(22037, 4415, 5), -- Blunt Weapons
-(22037, 4416, 6), -- Humanoids
-(22037, 4417, 27), -- Humanoids
+(22037, 4160, 4), -- NPC Aura Burn - Magic
+(22037, 4408, 1), -- HP Modifiers
+(22037, 4409, 1), -- MP Modifiers
+(22037, 4410, 11), -- P. Atk. Modifiers
+(22037, 4411, 13), -- M. Atk. Modifiers
+(22037, 4412, 11), -- P. Def. Modifiers
+(22037, 4413, 11), -- M. Def. Modifiers
+(22037, 4414, 2), -- Armor Type
+(22037, 4415, 5), -- Weapon Type
+(22037, 4416, 6), -- Races
+(22037, 4417, 27), -- Race Types
 -- Ragna Orc Hero
-(22038, 4029, 2), -- Shield
-(22038, 4073, 4), -- Stun
-(22038, 4408, 1), -- HP Increase (1x)
-(22038, 4409, 1), -- MP Increase (1x)
-(22038, 4410, 13), -- Slightly Strong P. Atk.
-(22038, 4411, 11), -- Average M. Atk.
-(22038, 4412, 11), -- Average P. Def.
-(22038, 4413, 11), -- Average M. Def.
-(22038, 4414, 1), -- Heavy Armor Type
-(22038, 4415, 3), -- One-handed Sword
-(22038, 4416, 6), -- Humanoids
-(22038, 4417, 27), -- Humanoids
+(22038, 4029, 2), -- NPC Shield
+(22038, 4073, 4), -- Shock
+(22038, 4408, 1), -- HP Modifiers
+(22038, 4409, 1), -- MP Modifiers
+(22038, 4410, 13), -- P. Atk. Modifiers
+(22038, 4411, 11), -- M. Atk. Modifiers
+(22038, 4412, 11), -- P. Def. Modifiers
+(22038, 4413, 11), -- M. Def. Modifiers
+(22038, 4414, 1), -- Armor Type
+(22038, 4415, 3), -- Weapon Type
+(22038, 4416, 6), -- Races
+(22038, 4417, 27), -- Race Types
 -- Ragna Orc Commander
-(22039, 4073, 4), -- Stun
-(22039, 4099, 1), -- Berserker Spirit
-(22039, 4408, 1), -- HP Increase (1x)
-(22039, 4409, 1), -- MP Increase (1x)
-(22039, 4410, 13), -- Slightly Strong P. Atk.
-(22039, 4411, 11), -- Average M. Atk.
-(22039, 4412, 11), -- Average P. Def.
-(22039, 4413, 11), -- Average M. Def.
-(22039, 4414, 1), -- Heavy Armor Type
-(22039, 4415, 3), -- One-handed Sword
-(22039, 4416, 6), -- Humanoids
-(22039, 4417, 27), -- Humanoids
+(22039, 4073, 4), -- Shock
+(22039, 4099, 1), -- NPC Berserk
+(22039, 4408, 1), -- HP Modifiers
+(22039, 4409, 1), -- MP Modifiers
+(22039, 4410, 13), -- P. Atk. Modifiers
+(22039, 4411, 11), -- M. Atk. Modifiers
+(22039, 4412, 11), -- P. Def. Modifiers
+(22039, 4413, 11), -- M. Def. Modifiers
+(22039, 4414, 1), -- Armor Type
+(22039, 4415, 3), -- Weapon Type
+(22039, 4416, 6), -- Races
+(22039, 4417, 27), -- Race Types
 -- Ragna Orc Sniper
-(22040, 4408, 1), -- HP Increase (1x)
-(22040, 4409, 1), -- MP Increase (1x)
-(22040, 4410, 11), -- Average P. Atk.
-(22040, 4411, 11), -- Average M. Atk.
-(22040, 4412, 11), -- Average P. Def.
-(22040, 4413, 11), -- Average M. Def.
-(22040, 4414, 3), -- Light Armor Type
-(22040, 4415, 9), -- Bows
-(22040, 4416, 6), -- Humanoids
-(22040, 4417, 27), -- Humanoids
+(22040, 4408, 1), -- HP Modifiers
+(22040, 4409, 1), -- MP Modifiers
+(22040, 4410, 11), -- P. Atk. Modifiers
+(22040, 4411, 11), -- M. Atk. Modifiers
+(22040, 4412, 11), -- P. Def. Modifiers
+(22040, 4413, 11), -- M. Def. Modifiers
+(22040, 4414, 3), -- Armor Type
+(22040, 4415, 9), -- Weapon Type
+(22040, 4416, 6), -- Races
+(22040, 4417, 27), -- Race Types
 -- Ragna Orc Sorcerer
-(22041, 4100, 4), -- Prominence
-(22041, 4160, 4), -- Aura Burn
-(22041, 4408, 1), -- HP Increase (1x)
-(22041, 4409, 1), -- MP Increase (1x)
-(22041, 4410, 11), -- Average P. Atk.
-(22041, 4411, 13), -- Slightly Strong M. Atk.
-(22041, 4412, 11), -- Average P. Def.
-(22041, 4413, 11), -- Average M. Def.
-(22041, 4414, 2), -- Standard Type
-(22041, 4415, 5), -- Blunt Weapons
-(22041, 4416, 6), -- Humanoids
-(22041, 4417, 27), -- Humanoids
+(22041, 4100, 4), -- NPC Prominence
+(22041, 4160, 4), -- NPC Aura Burn - Magic
+(22041, 4408, 1), -- HP Modifiers
+(22041, 4409, 1), -- MP Modifiers
+(22041, 4410, 11), -- P. Atk. Modifiers
+(22041, 4411, 13), -- M. Atk. Modifiers
+(22041, 4412, 11), -- P. Def. Modifiers
+(22041, 4413, 11), -- M. Def. Modifiers
+(22041, 4414, 2), -- Armor Type
+(22041, 4415, 5), -- Weapon Type
+(22041, 4416, 6), -- Races
+(22041, 4417, 27), -- Race Types
 -- Ragna Orc Sorcerer
-(22042, 4100, 4), -- Prominence
-(22042, 4160, 4), -- Aura Burn
-(22042, 4408, 1), -- HP Increase (1x)
-(22042, 4409, 1), -- MP Increase (1x)
-(22042, 4410, 11), -- Average P. Atk.
-(22042, 4411, 13), -- Slightly Strong M. Atk.
-(22042, 4412, 11), -- Average P. Def.
-(22042, 4413, 11), -- Average M. Def.
-(22042, 4414, 2), -- Standard Type
-(22042, 4415, 5), -- Blunt Weapons
-(22042, 4416, 6), -- Humanoids
-(22042, 4417, 27), -- Humanoids
+(22042, 4100, 4), -- NPC Prominence
+(22042, 4160, 4), -- NPC Aura Burn - Magic
+(22042, 4408, 1), -- HP Modifiers
+(22042, 4409, 1), -- MP Modifiers
+(22042, 4410, 11), -- P. Atk. Modifiers
+(22042, 4411, 13), -- M. Atk. Modifiers
+(22042, 4412, 11), -- P. Def. Modifiers
+(22042, 4413, 11), -- M. Def. Modifiers
+(22042, 4414, 2), -- Armor Type
+(22042, 4415, 5), -- Weapon Type
+(22042, 4416, 6), -- Races
+(22042, 4417, 27), -- Race Types
 -- Ragna Orc Sorcerer
-(22043, 4100, 4), -- Prominence
-(22043, 4160, 4), -- Aura Burn
-(22043, 4408, 1), -- HP Increase (1x)
-(22043, 4409, 1), -- MP Increase (1x)
-(22043, 4410, 11), -- Average P. Atk.
-(22043, 4411, 13), -- Slightly Strong M. Atk.
-(22043, 4412, 11), -- Average P. Def.
-(22043, 4413, 11), -- Average M. Def.
-(22043, 4414, 2), -- Standard Type
-(22043, 4415, 5), -- Blunt Weapons
-(22043, 4416, 6), -- Humanoids
-(22043, 4417, 27), -- Humanoids
+(22043, 4100, 4), -- NPC Prominence
+(22043, 4160, 4), -- NPC Aura Burn - Magic
+(22043, 4408, 1), -- HP Modifiers
+(22043, 4409, 1), -- MP Modifiers
+(22043, 4410, 11), -- P. Atk. Modifiers
+(22043, 4411, 13), -- M. Atk. Modifiers
+(22043, 4412, 11), -- P. Def. Modifiers
+(22043, 4413, 11), -- M. Def. Modifiers
+(22043, 4414, 2), -- Armor Type
+(22043, 4415, 5), -- Weapon Type
+(22043, 4416, 6), -- Races
+(22043, 4417, 27), -- Race Types
 -- Ragna Orc Sorcerer
-(22044, 4100, 4), -- Prominence
-(22044, 4160, 4), -- Aura Burn
-(22044, 4408, 1), -- HP Increase (1x)
-(22044, 4409, 1), -- MP Increase (1x)
-(22044, 4410, 11), -- Average P. Atk.
-(22044, 4411, 13), -- Slightly Strong M. Atk.
-(22044, 4412, 11), -- Average P. Def.
-(22044, 4413, 11), -- Average M. Def.
-(22044, 4414, 2), -- Standard Type
-(22044, 4415, 5), -- Blunt Weapons
-(22044, 4416, 6), -- Humanoids
-(22044, 4417, 27), -- Humanoids
+(22044, 4100, 4), -- NPC Prominence
+(22044, 4160, 4), -- NPC Aura Burn - Magic
+(22044, 4408, 1), -- HP Modifiers
+(22044, 4409, 1), -- MP Modifiers
+(22044, 4410, 11), -- P. Atk. Modifiers
+(22044, 4411, 13), -- M. Atk. Modifiers
+(22044, 4412, 11), -- P. Def. Modifiers
+(22044, 4413, 11), -- M. Def. Modifiers
+(22044, 4414, 2), -- Armor Type
+(22044, 4415, 5), -- Weapon Type
+(22044, 4416, 6), -- Races
+(22044, 4417, 27), -- Race Types
 -- Dark Corpse
-(22045, 4071, 3), -- Resist Bow/Crossbow Weapons
-(22045, 4248, 4), -- Energy Drain
-(22045, 4408, 9), -- HP Increase (1/2x)
-(22045, 4409, 1), -- MP Increase (1x)
-(22045, 4410, 11), -- Average P. Atk.
-(22045, 4411, 11), -- Average M. Atk.
-(22045, 4412, 11), -- Average P. Def.
-(22045, 4413, 14), -- Strong M. Def.
-(22045, 4414, 2), -- Standard Type
-(22045, 4415, 7), -- Daggers
-(22045, 4416, 1), -- Undead
-(22045, 4417, 35), -- Undead
+(22045, 4071, 3), -- Resist Archery
+(22045, 4248, 4), -- NPC HP Drain - Slow
+(22045, 4408, 9), -- HP Modifiers
+(22045, 4409, 1), -- MP Modifiers
+(22045, 4410, 11), -- P. Atk. Modifiers
+(22045, 4411, 11), -- M. Atk. Modifiers
+(22045, 4412, 11), -- P. Def. Modifiers
+(22045, 4413, 14), -- M. Def. Modifiers
+(22045, 4414, 2), -- Armor Type
+(22045, 4415, 7), -- Weapon Type
+(22045, 4416, 1), -- Races
+(22045, 4417, 35), -- Race Types
 -- Varangka's Dre Vanul
-(22046, 4071, 3), -- Resist Bow/Crossbow Weapons
-(22046, 4072, 4), -- Stun
-(22046, 4151, 4), -- Wind Strike
-(22046, 4408, 9), -- HP Increase (1/2x)
-(22046, 4409, 1), -- MP Increase (1x)
-(22046, 4410, 11), -- Average P. Atk.
-(22046, 4411, 11), -- Average M. Atk.
-(22046, 4412, 11), -- Average P. Def.
-(22046, 4413, 14), -- Strong M. Def.
-(22046, 4414, 2), -- Standard Type
-(22046, 4415, 7), -- Daggers
-(22046, 4416, 9), -- Demons
-(22046, 4417, 14), -- Demons
+(22046, 4071, 3), -- Resist Archery
+(22046, 4072, 4), -- Shock
+(22046, 4151, 4), -- NPC Windstrike - Magic
+(22046, 4408, 9), -- HP Modifiers
+(22046, 4409, 1), -- MP Modifiers
+(22046, 4410, 11), -- P. Atk. Modifiers
+(22046, 4411, 11), -- M. Atk. Modifiers
+(22046, 4412, 11), -- P. Def. Modifiers
+(22046, 4413, 14), -- M. Def. Modifiers
+(22046, 4414, 2), -- Armor Type
+(22046, 4415, 7), -- Weapon Type
+(22046, 4416, 9), -- Races
+(22046, 4417, 14), -- Race Types
 -- Guardian of the Ghost Town
-(22047, 4071, 3), -- Resist Bow/Crossbow Weapons
-(22047, 4155, 4), -- Twister
-(22047, 4160, 4), -- Aura Burn
-(22047, 4408, 9), -- HP Increase (1/2x)
-(22047, 4409, 1), -- MP Increase (1x)
-(22047, 4410, 11), -- Average P. Atk.
-(22047, 4411, 11), -- Average M. Atk.
-(22047, 4412, 11), -- Average P. Def.
-(22047, 4413, 14), -- Strong M. Def.
-(22047, 4414, 2), -- Standard Type
-(22047, 4415, 3), -- One-handed Sword
-(22047, 4416, 2), -- Magic Creatures
-(22047, 4417, 11), -- Magic Creatures
+(22047, 4071, 3), -- Resist Archery
+(22047, 4155, 4), -- NPC Twister - Magic
+(22047, 4160, 4), -- NPC Aura Burn - Magic
+(22047, 4408, 9), -- HP Modifiers
+(22047, 4409, 1), -- MP Modifiers
+(22047, 4410, 11), -- P. Atk. Modifiers
+(22047, 4411, 11), -- M. Atk. Modifiers
+(22047, 4412, 11), -- P. Def. Modifiers
+(22047, 4413, 14), -- M. Def. Modifiers
+(22047, 4414, 2), -- Armor Type
+(22047, 4415, 3), -- Weapon Type
+(22047, 4416, 2), -- Races
+(22047, 4417, 11), -- Race Types
 -- Dark Spider
-(22048, 4032, 4), -- Power Strike
-(22048, 4071, 3), -- Resist Bow/Crossbow Weapons
-(22048, 4408, 9), -- HP Increase (1/2x)
-(22048, 4409, 1), -- MP Increase (1x)
-(22048, 4410, 11), -- Average P. Atk.
-(22048, 4411, 11), -- Average M. Atk.
-(22048, 4412, 11), -- Average P. Def.
-(22048, 4413, 14), -- Strong M. Def.
-(22048, 4414, 2), -- Standard Type
-(22048, 4415, 7), -- Daggers
-(22048, 4416, 12), -- Bugs
-(22048, 4417, 7), -- Bugs
+(22048, 4032, 4), -- NPC Strike
+(22048, 4071, 3), -- Resist Archery
+(22048, 4408, 9), -- HP Modifiers
+(22048, 4409, 1), -- MP Modifiers
+(22048, 4410, 11), -- P. Atk. Modifiers
+(22048, 4411, 11), -- M. Atk. Modifiers
+(22048, 4412, 11), -- P. Def. Modifiers
+(22048, 4413, 14), -- M. Def. Modifiers
+(22048, 4414, 2), -- Armor Type
+(22048, 4415, 7), -- Weapon Type
+(22048, 4416, 12), -- Races
+(22048, 4417, 7), -- Race Types
 -- Varangka's Succubus
-(22049, 4071, 3), -- Resist Bow/Crossbow Weapons
-(22049, 4072, 4), -- Stun
-(22049, 4151, 4), -- Wind Strike
-(22049, 4408, 9), -- HP Increase (1/2x)
-(22049, 4409, 1), -- MP Increase (1x)
-(22049, 4410, 11), -- Average P. Atk.
-(22049, 4411, 11), -- Average M. Atk.
-(22049, 4412, 11), -- Average P. Def.
-(22049, 4413, 14), -- Strong M. Def.
-(22049, 4414, 2), -- Standard Type
-(22049, 4415, 7), -- Daggers
-(22049, 4416, 9), -- Demons
-(22049, 4417, 14), -- Demons
+(22049, 4071, 3), -- Resist Archery
+(22049, 4072, 4), -- Shock
+(22049, 4151, 4), -- NPC Windstrike - Magic
+(22049, 4408, 9), -- HP Modifiers
+(22049, 4409, 1), -- MP Modifiers
+(22049, 4410, 11), -- P. Atk. Modifiers
+(22049, 4411, 11), -- M. Atk. Modifiers
+(22049, 4412, 11), -- P. Def. Modifiers
+(22049, 4413, 14), -- M. Def. Modifiers
+(22049, 4414, 2), -- Armor Type
+(22049, 4415, 7), -- Weapon Type
+(22049, 4416, 9), -- Races
+(22049, 4417, 14), -- Race Types
 -- Probe Golem Prodigy IV
-(22050, 4105, 4), -- Beam Cannon
-(22050, 4273, 1), -- Resist Daggers/Rapier Weapon
-(22050, 4274, 1), -- Blunt Weapon Weak Point
-(22050, 4408, 1), -- HP Increase (1x)
-(22050, 4409, 1), -- MP Increase (1x)
-(22050, 4410, 11), -- Average P. Atk.
-(22050, 4411, 11), -- Average M. Atk.
-(22050, 4412, 11), -- Average P. Def.
-(22050, 4413, 14), -- Strong M. Def.
-(22050, 4414, 2), -- Standard Type
-(22050, 4415, 4), -- One-handed Sword
-(22050, 4416, 2), -- Magic Creatures
-(22050, 4417, 10), -- Magic Creatures
+(22050, 4105, 4), -- NPC Straight Beam Cannon
+(22050, 4273, 1), -- Resist Dagger
+(22050, 4274, 1), -- Blunt Attack Weak Point
+(22050, 4408, 1), -- HP Modifiers
+(22050, 4409, 1), -- MP Modifiers
+(22050, 4410, 11), -- P. Atk. Modifiers
+(22050, 4411, 11), -- M. Atk. Modifiers
+(22050, 4412, 11), -- P. Def. Modifiers
+(22050, 4413, 14), -- M. Def. Modifiers
+(22050, 4414, 2), -- Armor Type
+(22050, 4415, 4), -- Weapon Type
+(22050, 4416, 2), -- Races
+(22050, 4417, 10), -- Race Types
 (22050, 4437, 4), -- Greater Resist Bleeding
-(22050, 4457, 2), -- fist Weapon Weak Point
+(22050, 4457, 2), -- Hand-to-hand Weapon Weak Point
 -- Spelunking Spider
 (22051, 4035, 4), -- Poison
-(22051, 4408, 1), -- HP Increase (1x)
-(22051, 4409, 1), -- MP Increase (1x)
-(22051, 4410, 11), -- Average P. Atk.
-(22051, 4411, 11), -- Average M. Atk.
-(22051, 4412, 11), -- Average P. Def.
-(22051, 4413, 11), -- Average M. Def.
-(22051, 4414, 3), -- Light Armor Type
-(22051, 4415, 5), -- Blunt Weapons
-(22051, 4416, 12), -- Bugs
-(22051, 4417, 7), -- Bugs
+(22051, 4408, 1), -- HP Modifiers
+(22051, 4409, 1), -- MP Modifiers
+(22051, 4410, 11), -- P. Atk. Modifiers
+(22051, 4411, 11), -- M. Atk. Modifiers
+(22051, 4412, 11), -- P. Def. Modifiers
+(22051, 4413, 11), -- M. Def. Modifiers
+(22051, 4414, 3), -- Armor Type
+(22051, 4415, 5), -- Weapon Type
+(22051, 4416, 12), -- Races
+(22051, 4417, 7), -- Race Types
 -- Menacing Jackhammer Golem
-(22052, 4101, 5), -- Whirlwind
-(22052, 4273, 1), -- Resist Daggers/Rapier Weapon
-(22052, 4274, 1), -- Blunt Weapon Weak Point
-(22052, 4408, 1), -- HP Increase (1x)
-(22052, 4409, 1), -- MP Increase (1x)
-(22052, 4410, 11), -- Average P. Atk.
-(22052, 4411, 11), -- Average M. Atk.
-(22052, 4412, 11), -- Average P. Def.
-(22052, 4413, 13), -- Slightly Strong M. Def.
-(22052, 4414, 1), -- Heavy Armor Type
-(22052, 4415, 4), -- One-handed Sword
-(22052, 4416, 2), -- Magic Creatures
-(22052, 4417, 10), -- Magic Creatures
+(22052, 4101, 5), -- NPC Spinning Slash
+(22052, 4273, 1), -- Resist Dagger
+(22052, 4274, 1), -- Blunt Attack Weak Point
+(22052, 4408, 1), -- HP Modifiers
+(22052, 4409, 1), -- MP Modifiers
+(22052, 4410, 11), -- P. Atk. Modifiers
+(22052, 4411, 11), -- M. Atk. Modifiers
+(22052, 4412, 11), -- P. Def. Modifiers
+(22052, 4413, 13), -- M. Def. Modifiers
+(22052, 4414, 1), -- Armor Type
+(22052, 4415, 4), -- Weapon Type
+(22052, 4416, 2), -- Races
+(22052, 4417, 10), -- Race Types
 (22052, 4437, 4), -- Greater Resist Bleeding
-(22052, 4457, 2), -- fist Weapon Weak Point
-(22052, 4472, 5), -- Golem Strike
+(22052, 4457, 2), -- Hand-to-hand Weapon Weak Point
+(22052, 4472, 5), -- NPC Strike Golem
 -- Horrifying Cannon Golem I
-(22053, 4032, 6), -- Power Strike
-(22053, 4232, 5), -- Whirlwind
-(22053, 4273, 1), -- Resist Daggers/Rapier Weapon
-(22053, 4274, 1), -- Blunt Weapon Weak Point
-(22053, 4408, 1), -- HP Increase (1x)
-(22053, 4409, 1), -- MP Increase (1x)
-(22053, 4410, 11), -- Average P. Atk.
-(22053, 4411, 11), -- Average M. Atk.
-(22053, 4412, 11), -- Average P. Def.
-(22053, 4413, 13), -- Slightly Strong M. Def.
-(22053, 4414, 1), -- Heavy Armor Type
-(22053, 4415, 4), -- One-handed Sword
-(22053, 4416, 2), -- Magic Creatures
-(22053, 4417, 10), -- Magic Creatures
+(22053, 4032, 6), -- NPC Strike
+(22053, 4232, 5), -- NPC AE Strike
+(22053, 4273, 1), -- Resist Dagger
+(22053, 4274, 1), -- Blunt Attack Weak Point
+(22053, 4408, 1), -- HP Modifiers
+(22053, 4409, 1), -- MP Modifiers
+(22053, 4410, 11), -- P. Atk. Modifiers
+(22053, 4411, 11), -- M. Atk. Modifiers
+(22053, 4412, 11), -- P. Def. Modifiers
+(22053, 4413, 13), -- M. Def. Modifiers
+(22053, 4414, 1), -- Armor Type
+(22053, 4415, 4), -- Weapon Type
+(22053, 4416, 2), -- Races
+(22053, 4417, 10), -- Race Types
 (22053, 4437, 4), -- Greater Resist Bleeding
-(22053, 4457, 2), -- fist Weapon Weak Point
+(22053, 4457, 2), -- Hand-to-hand Weapon Weak Point
 (22053, 4473, 4), -- Stun
 -- Horrifying Cannon Golem IV
-(22054, 4028, 2), -- Might
-(22054, 4029, 2), -- Shield
-(22054, 4032, 6), -- Power Strike
-(22054, 4037, 1), -- Weakness
-(22054, 4054, 2), -- Cubic Weakness
-(22054, 4232, 5), -- Whirlwind
-(22054, 4273, 1), -- Resist Daggers/Rapier Weapon
-(22054, 4274, 1), -- Blunt Weapon Weak Point
-(22054, 4408, 1), -- HP Increase (1x)
-(22054, 4409, 1), -- MP Increase (1x)
-(22054, 4410, 11), -- Average P. Atk.
-(22054, 4411, 11), -- Average M. Atk.
-(22054, 4412, 11), -- Average P. Def.
-(22054, 4413, 13), -- Slightly Strong M. Def.
-(22054, 4414, 1), -- Heavy Armor Type
-(22054, 4415, 4), -- One-handed Sword
-(22054, 4416, 2), -- Magic Creatures
-(22054, 4417, 10), -- Magic Creatures
+(22054, 4028, 2), -- NPC Might
+(22054, 4029, 2), -- NPC Shield
+(22054, 4032, 6), -- NPC Strike
+(22054, 4037, 1), -- Decrease P.Atk
+(22054, 4054, 2), -- Decrease P. Def
+(22054, 4232, 5), -- NPC AE Strike
+(22054, 4273, 1), -- Resist Dagger
+(22054, 4274, 1), -- Blunt Attack Weak Point
+(22054, 4408, 1), -- HP Modifiers
+(22054, 4409, 1), -- MP Modifiers
+(22054, 4410, 11), -- P. Atk. Modifiers
+(22054, 4411, 11), -- M. Atk. Modifiers
+(22054, 4412, 11), -- P. Def. Modifiers
+(22054, 4413, 13), -- M. Def. Modifiers
+(22054, 4414, 1), -- Armor Type
+(22054, 4415, 4), -- Weapon Type
+(22054, 4416, 2), -- Races
+(22054, 4417, 10), -- Race Types
 (22054, 4437, 4), -- Greater Resist Bleeding
-(22054, 4457, 2), -- fist Weapon Weak Point
+(22054, 4457, 2), -- Hand-to-hand Weapon Weak Point
 (22054, 4473, 4), -- Stun
 (22054, 4492, 5), -- Enlarging Head Curse
 -- Cruel Vice Golem
-(22055, 4101, 5), -- Whirlwind
-(22055, 4273, 1), -- Resist Daggers/Rapier Weapon
-(22055, 4274, 1), -- Blunt Weapon Weak Point
-(22055, 4408, 1), -- HP Increase (1x)
-(22055, 4409, 1), -- MP Increase (1x)
-(22055, 4410, 11), -- Average P. Atk.
-(22055, 4411, 11), -- Average M. Atk.
-(22055, 4412, 11), -- Average P. Def.
-(22055, 4413, 13), -- Slightly Strong M. Def.
-(22055, 4414, 1), -- Heavy Armor Type
-(22055, 4415, 4), -- One-handed Sword
-(22055, 4416, 2), -- Magic Creatures
-(22055, 4417, 10), -- Magic Creatures
+(22055, 4101, 5), -- NPC Spinning Slash
+(22055, 4273, 1), -- Resist Dagger
+(22055, 4274, 1), -- Blunt Attack Weak Point
+(22055, 4408, 1), -- HP Modifiers
+(22055, 4409, 1), -- MP Modifiers
+(22055, 4410, 11), -- P. Atk. Modifiers
+(22055, 4411, 11), -- M. Atk. Modifiers
+(22055, 4412, 11), -- P. Def. Modifiers
+(22055, 4413, 13), -- M. Def. Modifiers
+(22055, 4414, 1), -- Armor Type
+(22055, 4415, 4), -- Weapon Type
+(22055, 4416, 2), -- Races
+(22055, 4417, 10), -- Race Types
 (22055, 4437, 4), -- Greater Resist Bleeding
-(22055, 4457, 2), -- fist Weapon Weak Point
-(22055, 4472, 5), -- Golem Strike
+(22055, 4457, 2), -- Hand-to-hand Weapon Weak Point
+(22055, 4472, 5), -- NPC Strike Golem
 -- Probe Golem Champion I
-(22056, 4105, 4), -- Beam Cannon
-(22056, 4273, 1), -- Resist Daggers/Rapier Weapon
-(22056, 4274, 1), -- Blunt Weapon Weak Point
-(22056, 4408, 1), -- HP Increase (1x)
-(22056, 4409, 1), -- MP Increase (1x)
-(22056, 4410, 11), -- Average P. Atk.
-(22056, 4411, 11), -- Average M. Atk.
-(22056, 4412, 11), -- Average P. Def.
-(22056, 4413, 13), -- Slightly Strong M. Def.
-(22056, 4414, 2), -- Standard Type
-(22056, 4415, 4), -- One-handed Sword
-(22056, 4416, 2), -- Magic Creatures
-(22056, 4417, 10), -- Magic Creatures
+(22056, 4105, 4), -- NPC Straight Beam Cannon
+(22056, 4273, 1), -- Resist Dagger
+(22056, 4274, 1), -- Blunt Attack Weak Point
+(22056, 4408, 1), -- HP Modifiers
+(22056, 4409, 1), -- MP Modifiers
+(22056, 4410, 11), -- P. Atk. Modifiers
+(22056, 4411, 11), -- M. Atk. Modifiers
+(22056, 4412, 11), -- P. Def. Modifiers
+(22056, 4413, 13), -- M. Def. Modifiers
+(22056, 4414, 2), -- Armor Type
+(22056, 4415, 4), -- Weapon Type
+(22056, 4416, 2), -- Races
+(22056, 4417, 10), -- Race Types
 (22056, 4437, 4), -- Greater Resist Bleeding
-(22056, 4457, 2), -- fist Weapon Weak Point
+(22056, 4457, 2), -- Hand-to-hand Weapon Weak Point
 -- Spelunking Ant
-(22057, 4408, 1), -- HP Increase (1x)
-(22057, 4409, 1), -- MP Increase (1x)
-(22057, 4410, 11), -- Average P. Atk.
-(22057, 4411, 11), -- Average M. Atk.
-(22057, 4412, 11), -- Average P. Def.
-(22057, 4413, 11), -- Average M. Def.
-(22057, 4414, 3), -- Light Armor Type
-(22057, 4415, 5), -- Blunt Weapons
-(22057, 4416, 12), -- Bugs
-(22057, 4417, 7), -- Bugs
+(22057, 4408, 1), -- HP Modifiers
+(22057, 4409, 1), -- MP Modifiers
+(22057, 4410, 11), -- P. Atk. Modifiers
+(22057, 4411, 11), -- M. Atk. Modifiers
+(22057, 4412, 11), -- P. Def. Modifiers
+(22057, 4413, 11), -- M. Def. Modifiers
+(22057, 4414, 3), -- Armor Type
+(22057, 4415, 5), -- Weapon Type
+(22057, 4416, 12), -- Races
+(22057, 4417, 7), -- Race Types
 -- Horrifying Excavator Golem III
-(22058, 4101, 5), -- Whirlwind
-(22058, 4273, 1), -- Resist Daggers/Rapier Weapon
-(22058, 4274, 1), -- Blunt Weapon Weak Point
-(22058, 4408, 1), -- HP Increase (1x)
-(22058, 4409, 1), -- MP Increase (1x)
-(22058, 4410, 11), -- Average P. Atk.
-(22058, 4411, 11), -- Average M. Atk.
-(22058, 4412, 11), -- Average P. Def.
-(22058, 4413, 13), -- Slightly Strong M. Def.
-(22058, 4414, 1), -- Heavy Armor Type
-(22058, 4415, 4), -- One-handed Sword
-(22058, 4416, 2), -- Magic Creatures
-(22058, 4417, 10), -- Magic Creatures
+(22058, 4101, 5), -- NPC Spinning Slash
+(22058, 4273, 1), -- Resist Dagger
+(22058, 4274, 1), -- Blunt Attack Weak Point
+(22058, 4408, 1), -- HP Modifiers
+(22058, 4409, 1), -- MP Modifiers
+(22058, 4410, 11), -- P. Atk. Modifiers
+(22058, 4411, 11), -- M. Atk. Modifiers
+(22058, 4412, 11), -- P. Def. Modifiers
+(22058, 4413, 13), -- M. Def. Modifiers
+(22058, 4414, 1), -- Armor Type
+(22058, 4415, 4), -- Weapon Type
+(22058, 4416, 2), -- Races
+(22058, 4417, 10), -- Race Types
 (22058, 4437, 4), -- Greater Resist Bleeding
-(22058, 4457, 2), -- fist Weapon Weak Point
-(22058, 4472, 5), -- Golem Strike
+(22058, 4457, 2), -- Hand-to-hand Weapon Weak Point
+(22058, 4472, 5), -- NPC Strike Golem
 -- Bloodthirsty Ginzu Golem VII
-(22059, 4273, 1), -- Resist Daggers/Rapier Weapon
-(22059, 4274, 1), -- Blunt Weapon Weak Point
-(22059, 4408, 12), -- HP Increase (4x)
-(22059, 4409, 1), -- MP Increase (1x)
-(22059, 4410, 11), -- Average P. Atk.
-(22059, 4411, 11), -- Average M. Atk.
-(22059, 4412, 16), -- Very Strong P. Def.
-(22059, 4413, 11), -- Average M. Def.
-(22059, 4414, 1), -- Heavy Armor Type
-(22059, 4415, 4), -- One-handed Sword
-(22059, 4416, 2), -- Magic Creatures
-(22059, 4417, 10), -- Magic Creatures
+(22059, 4273, 1), -- Resist Dagger
+(22059, 4274, 1), -- Blunt Attack Weak Point
+(22059, 4408, 12), -- HP Modifiers
+(22059, 4409, 1), -- MP Modifiers
+(22059, 4410, 11), -- P. Atk. Modifiers
+(22059, 4411, 11), -- M. Atk. Modifiers
+(22059, 4412, 16), -- P. Def. Modifiers
+(22059, 4413, 11), -- M. Def. Modifiers
+(22059, 4414, 1), -- Armor Type
+(22059, 4415, 4), -- Weapon Type
+(22059, 4416, 2), -- Races
+(22059, 4417, 10), -- Race Types
 (22059, 4437, 4), -- Greater Resist Bleeding
-(22059, 4457, 2), -- fist Weapon Weak Point
-(22059, 4471, 1), -- Anger
-(22059, 4641, 5), -- Super Strike
+(22059, 4457, 2), -- Hand-to-hand Weapon Weak Point
+(22059, 4471, 1), -- NPC Anger
+(22059, 4641, 5), -- NPC Super Strike
 -- Horrifying Cannon Golem
-(22060, 4032, 6), -- Power Strike
-(22060, 4232, 5), -- Whirlwind
-(22060, 4273, 1), -- Resist Daggers/Rapier Weapon
-(22060, 4274, 1), -- Blunt Weapon Weak Point
-(22060, 4408, 10), -- HP Increase (2x)
-(22060, 4409, 1), -- MP Increase (1x)
-(22060, 4410, 11), -- Average P. Atk.
-(22060, 4411, 11), -- Average M. Atk.
-(22060, 4412, 14), -- Strong P. Def.
-(22060, 4413, 11), -- Average M. Def.
-(22060, 4414, 1), -- Heavy Armor Type
-(22060, 4415, 4), -- One-handed Sword
-(22060, 4416, 2), -- Magic Creatures
-(22060, 4417, 10), -- Magic Creatures
+(22060, 4032, 6), -- NPC Strike
+(22060, 4232, 5), -- NPC AE Strike
+(22060, 4273, 1), -- Resist Dagger
+(22060, 4274, 1), -- Blunt Attack Weak Point
+(22060, 4408, 10), -- HP Modifiers
+(22060, 4409, 1), -- MP Modifiers
+(22060, 4410, 11), -- P. Atk. Modifiers
+(22060, 4411, 11), -- M. Atk. Modifiers
+(22060, 4412, 14), -- P. Def. Modifiers
+(22060, 4413, 11), -- M. Def. Modifiers
+(22060, 4414, 1), -- Armor Type
+(22060, 4415, 4), -- Weapon Type
+(22060, 4416, 2), -- Races
+(22060, 4417, 10), -- Race Types
 (22060, 4437, 4), -- Greater Resist Bleeding
-(22060, 4457, 2), -- fist Weapon Weak Point
-(22060, 4663, 1), -- Aggression
+(22060, 4457, 2), -- Hand-to-hand Weapon Weak Point
+(22060, 4663, 1), -- NPC Hate
 -- Horrifying Cannon Golem III
-(22061, 4105, 4), -- Beam Cannon
-(22061, 4273, 1), -- Resist Daggers/Rapier Weapon
-(22061, 4274, 1), -- Blunt Weapon Weak Point
-(22061, 4408, 1), -- HP Increase (1x)
-(22061, 4409, 1), -- MP Increase (1x)
-(22061, 4410, 11), -- Average P. Atk.
-(22061, 4411, 11), -- Average M. Atk.
-(22061, 4412, 14), -- Strong P. Def.
-(22061, 4413, 11), -- Average M. Def.
-(22061, 4414, 1), -- Heavy Armor Type
-(22061, 4415, 4), -- One-handed Sword
-(22061, 4416, 2), -- Magic Creatures
-(22061, 4417, 10), -- Magic Creatures
+(22061, 4105, 4), -- NPC Straight Beam Cannon
+(22061, 4273, 1), -- Resist Dagger
+(22061, 4274, 1), -- Blunt Attack Weak Point
+(22061, 4408, 1), -- HP Modifiers
+(22061, 4409, 1), -- MP Modifiers
+(22061, 4410, 11), -- P. Atk. Modifiers
+(22061, 4411, 11), -- M. Atk. Modifiers
+(22061, 4412, 14), -- P. Def. Modifiers
+(22061, 4413, 11), -- M. Def. Modifiers
+(22061, 4414, 1), -- Armor Type
+(22061, 4415, 4), -- Weapon Type
+(22061, 4416, 2), -- Races
+(22061, 4417, 10), -- Race Types
 (22061, 4437, 4), -- Greater Resist Bleeding
-(22061, 4457, 2), -- fist Weapon Weak Point
+(22061, 4457, 2), -- Hand-to-hand Weapon Weak Point
 -- Horrifying Jackhammer Golem
-(22062, 4101, 5), -- Whirlwind
-(22062, 4273, 1), -- Resist Daggers/Rapier Weapon
-(22062, 4274, 1), -- Blunt Weapon Weak Point
-(22062, 4408, 11), -- HP Increase (3x)
-(22062, 4409, 1), -- MP Increase (1x)
-(22062, 4410, 11), -- Average P. Atk.
-(22062, 4411, 11), -- Average M. Atk.
-(22062, 4412, 14), -- Strong P. Def.
-(22062, 4413, 11), -- Average M. Def.
-(22062, 4414, 1), -- Heavy Armor Type
-(22062, 4415, 4), -- One-handed Sword
-(22062, 4416, 2), -- Magic Creatures
-(22062, 4417, 10), -- Magic Creatures
+(22062, 4101, 5), -- NPC Spinning Slash
+(22062, 4273, 1), -- Resist Dagger
+(22062, 4274, 1), -- Blunt Attack Weak Point
+(22062, 4408, 11), -- HP Modifiers
+(22062, 4409, 1), -- MP Modifiers
+(22062, 4410, 11), -- P. Atk. Modifiers
+(22062, 4411, 11), -- M. Atk. Modifiers
+(22062, 4412, 14), -- P. Def. Modifiers
+(22062, 4413, 11), -- M. Def. Modifiers
+(22062, 4414, 1), -- Armor Type
+(22062, 4415, 4), -- Weapon Type
+(22062, 4416, 2), -- Races
+(22062, 4417, 10), -- Race Types
 (22062, 4437, 4), -- Greater Resist Bleeding
-(22062, 4457, 2), -- fist Weapon Weak Point
-(22062, 4472, 5), -- Golem Strike
+(22062, 4457, 2), -- Hand-to-hand Weapon Weak Point
+(22062, 4472, 5), -- NPC Strike Golem
 -- Ginzu Golem Prodigy X
-(22063, 4273, 1), -- Resist Daggers/Rapier Weapon
-(22063, 4274, 1), -- Blunt Weapon Weak Point
-(22063, 4408, 12), -- HP Increase (4x)
-(22063, 4409, 1), -- MP Increase (1x)
-(22063, 4410, 11), -- Average P. Atk.
-(22063, 4411, 11), -- Average M. Atk.
-(22063, 4412, 14), -- Strong P. Def.
-(22063, 4413, 11), -- Average M. Def.
-(22063, 4414, 1), -- Heavy Armor Type
-(22063, 4415, 4), -- One-handed Sword
-(22063, 4416, 2), -- Magic Creatures
-(22063, 4417, 10), -- Magic Creatures
+(22063, 4273, 1), -- Resist Dagger
+(22063, 4274, 1), -- Blunt Attack Weak Point
+(22063, 4408, 12), -- HP Modifiers
+(22063, 4409, 1), -- MP Modifiers
+(22063, 4410, 11), -- P. Atk. Modifiers
+(22063, 4411, 11), -- M. Atk. Modifiers
+(22063, 4412, 14), -- P. Def. Modifiers
+(22063, 4413, 11), -- M. Def. Modifiers
+(22063, 4414, 1), -- Armor Type
+(22063, 4415, 4), -- Weapon Type
+(22063, 4416, 2), -- Races
+(22063, 4417, 10), -- Race Types
 (22063, 4437, 4), -- Greater Resist Bleeding
-(22063, 4457, 2), -- fist Weapon Weak Point
-(22063, 4471, 1), -- Anger
-(22063, 4641, 5), -- Super Strike
+(22063, 4457, 2), -- Hand-to-hand Weapon Weak Point
+(22063, 4471, 1), -- NPC Anger
+(22063, 4641, 5), -- NPC Super Strike
 -- Bloodthirsty Ginzu Golem II
-(22064, 4273, 1), -- Resist Daggers/Rapier Weapon
-(22064, 4274, 1), -- Blunt Weapon Weak Point
-(22064, 4408, 12), -- HP Increase (4x)
-(22064, 4409, 1), -- MP Increase (1x)
-(22064, 4410, 11), -- Average P. Atk.
-(22064, 4411, 11), -- Average M. Atk.
-(22064, 4412, 16), -- Very Strong P. Def.
-(22064, 4413, 11), -- Average M. Def.
-(22064, 4414, 1), -- Heavy Armor Type
-(22064, 4415, 4), -- One-handed Sword
-(22064, 4416, 2), -- Magic Creatures
-(22064, 4417, 10), -- Magic Creatures
+(22064, 4273, 1), -- Resist Dagger
+(22064, 4274, 1), -- Blunt Attack Weak Point
+(22064, 4408, 12), -- HP Modifiers
+(22064, 4409, 1), -- MP Modifiers
+(22064, 4410, 11), -- P. Atk. Modifiers
+(22064, 4411, 11), -- M. Atk. Modifiers
+(22064, 4412, 16), -- P. Def. Modifiers
+(22064, 4413, 11), -- M. Def. Modifiers
+(22064, 4414, 1), -- Armor Type
+(22064, 4415, 4), -- Weapon Type
+(22064, 4416, 2), -- Races
+(22064, 4417, 10), -- Race Types
 (22064, 4437, 4), -- Greater Resist Bleeding
-(22064, 4457, 2), -- fist Weapon Weak Point
-(22064, 4471, 1), -- Anger
-(22064, 4641, 5), -- Super Strike
+(22064, 4457, 2), -- Hand-to-hand Weapon Weak Point
+(22064, 4471, 1), -- NPC Anger
+(22064, 4641, 5), -- NPC Super Strike
 -- Horrifying Ginzu Golem V
-(22065, 4273, 1), -- Resist Daggers/Rapier Weapon
-(22065, 4274, 1), -- Blunt Weapon Weak Point
-(22065, 4408, 12), -- HP Increase (4x)
-(22065, 4409, 1), -- MP Increase (1x)
-(22065, 4410, 11), -- Average P. Atk.
-(22065, 4411, 11), -- Average M. Atk.
-(22065, 4412, 16), -- Very Strong P. Def.
-(22065, 4413, 11), -- Average M. Def.
-(22065, 4414, 1), -- Heavy Armor Type
-(22065, 4415, 4), -- One-handed Sword
-(22065, 4416, 2), -- Magic Creatures
-(22065, 4417, 10), -- Magic Creatures
+(22065, 4273, 1), -- Resist Dagger
+(22065, 4274, 1), -- Blunt Attack Weak Point
+(22065, 4408, 12), -- HP Modifiers
+(22065, 4409, 1), -- MP Modifiers
+(22065, 4410, 11), -- P. Atk. Modifiers
+(22065, 4411, 11), -- M. Atk. Modifiers
+(22065, 4412, 16), -- P. Def. Modifiers
+(22065, 4413, 11), -- M. Def. Modifiers
+(22065, 4414, 1), -- Armor Type
+(22065, 4415, 4), -- Weapon Type
+(22065, 4416, 2), -- Races
+(22065, 4417, 10), -- Race Types
 (22065, 4437, 4), -- Greater Resist Bleeding
-(22065, 4457, 2), -- fist Weapon Weak Point
-(22065, 4471, 1), -- Anger
-(22065, 4641, 5), -- Super Strike
+(22065, 4457, 2), -- Hand-to-hand Weapon Weak Point
+(22065, 4471, 1), -- NPC Anger
+(22065, 4641, 5), -- NPC Super Strike
 -- Horrifying Cannon Golem VI
-(22066, 4032, 6), -- Power Strike
-(22066, 4232, 5), -- Whirlwind
-(22066, 4273, 1), -- Resist Daggers/Rapier Weapon
-(22066, 4274, 1), -- Blunt Weapon Weak Point
-(22066, 4408, 10), -- HP Increase (2x)
-(22066, 4409, 1), -- MP Increase (1x)
-(22066, 4410, 11), -- Average P. Atk.
-(22066, 4411, 11), -- Average M. Atk.
-(22066, 4412, 14), -- Strong P. Def.
-(22066, 4413, 11), -- Average M. Def.
-(22066, 4414, 1), -- Heavy Armor Type
-(22066, 4415, 4), -- One-handed Sword
-(22066, 4416, 2), -- Magic Creatures
-(22066, 4417, 10), -- Magic Creatures
+(22066, 4032, 6), -- NPC Strike
+(22066, 4232, 5), -- NPC AE Strike
+(22066, 4273, 1), -- Resist Dagger
+(22066, 4274, 1), -- Blunt Attack Weak Point
+(22066, 4408, 10), -- HP Modifiers
+(22066, 4409, 1), -- MP Modifiers
+(22066, 4410, 11), -- P. Atk. Modifiers
+(22066, 4411, 11), -- M. Atk. Modifiers
+(22066, 4412, 14), -- P. Def. Modifiers
+(22066, 4413, 11), -- M. Def. Modifiers
+(22066, 4414, 1), -- Armor Type
+(22066, 4415, 4), -- Weapon Type
+(22066, 4416, 2), -- Races
+(22066, 4417, 10), -- Race Types
 (22066, 4437, 4), -- Greater Resist Bleeding
-(22066, 4457, 2), -- fist Weapon Weak Point
+(22066, 4457, 2), -- Hand-to-hand Weapon Weak Point
 -- Horrifying Cannon Golem VI
-(22067, 4032, 6), -- Power Strike
-(22067, 4232, 5), -- Whirlwind
-(22067, 4273, 1), -- Resist Daggers/Rapier Weapon
-(22067, 4274, 1), -- Blunt Weapon Weak Point
-(22067, 4408, 10), -- HP Increase (2x)
-(22067, 4409, 1), -- MP Increase (1x)
-(22067, 4410, 11), -- Average P. Atk.
-(22067, 4411, 11), -- Average M. Atk.
-(22067, 4412, 14), -- Strong P. Def.
-(22067, 4413, 11), -- Average M. Def.
-(22067, 4414, 1), -- Heavy Armor Type
-(22067, 4415, 4), -- One-handed Sword
-(22067, 4416, 2), -- Magic Creatures
-(22067, 4417, 10), -- Magic Creatures
+(22067, 4032, 6), -- NPC Strike
+(22067, 4232, 5), -- NPC AE Strike
+(22067, 4273, 1), -- Resist Dagger
+(22067, 4274, 1), -- Blunt Attack Weak Point
+(22067, 4408, 10), -- HP Modifiers
+(22067, 4409, 1), -- MP Modifiers
+(22067, 4410, 11), -- P. Atk. Modifiers
+(22067, 4411, 11), -- M. Atk. Modifiers
+(22067, 4412, 14), -- P. Def. Modifiers
+(22067, 4413, 11), -- M. Def. Modifiers
+(22067, 4414, 1), -- Armor Type
+(22067, 4415, 4), -- Weapon Type
+(22067, 4416, 2), -- Races
+(22067, 4417, 10), -- Race Types
 (22067, 4437, 4), -- Greater Resist Bleeding
-(22067, 4457, 2), -- fist Weapon Weak Point
+(22067, 4457, 2), -- Hand-to-hand Weapon Weak Point
 -- Horrifying Cannon Golem VI
-(22068, 4032, 6), -- Power Strike
-(22068, 4232, 5), -- Whirlwind
-(22068, 4273, 1), -- Resist Daggers/Rapier Weapon
-(22068, 4274, 1), -- Blunt Weapon Weak Point
-(22068, 4408, 10), -- HP Increase (2x)
-(22068, 4409, 1), -- MP Increase (1x)
-(22068, 4410, 11), -- Average P. Atk.
-(22068, 4411, 11), -- Average M. Atk.
-(22068, 4412, 14), -- Strong P. Def.
-(22068, 4413, 11), -- Average M. Def.
-(22068, 4414, 1), -- Heavy Armor Type
-(22068, 4415, 4), -- One-handed Sword
-(22068, 4416, 2), -- Magic Creatures
-(22068, 4417, 10), -- Magic Creatures
+(22068, 4032, 6), -- NPC Strike
+(22068, 4232, 5), -- NPC AE Strike
+(22068, 4273, 1), -- Resist Dagger
+(22068, 4274, 1), -- Blunt Attack Weak Point
+(22068, 4408, 10), -- HP Modifiers
+(22068, 4409, 1), -- MP Modifiers
+(22068, 4410, 11), -- P. Atk. Modifiers
+(22068, 4411, 11), -- M. Atk. Modifiers
+(22068, 4412, 14), -- P. Def. Modifiers
+(22068, 4413, 11), -- M. Def. Modifiers
+(22068, 4414, 1), -- Armor Type
+(22068, 4415, 4), -- Weapon Type
+(22068, 4416, 2), -- Races
+(22068, 4417, 10), -- Race Types
 (22068, 4437, 4), -- Greater Resist Bleeding
-(22068, 4457, 2), -- fist Weapon Weak Point
+(22068, 4457, 2), -- Hand-to-hand Weapon Weak Point
 -- Horrifying Cannon Golem VI
-(22069, 4032, 6), -- Power Strike
-(22069, 4232, 5), -- Whirlwind
-(22069, 4273, 1), -- Resist Daggers/Rapier Weapon
-(22069, 4274, 1), -- Blunt Weapon Weak Point
-(22069, 4408, 10), -- HP Increase (2x)
-(22069, 4409, 1), -- MP Increase (1x)
-(22069, 4410, 11), -- Average P. Atk.
-(22069, 4411, 11), -- Average M. Atk.
-(22069, 4412, 14), -- Strong P. Def.
-(22069, 4413, 11), -- Average M. Def.
-(22069, 4414, 1), -- Heavy Armor Type
-(22069, 4415, 4), -- One-handed Sword
-(22069, 4416, 2), -- Magic Creatures
-(22069, 4417, 10), -- Magic Creatures
+(22069, 4032, 6), -- NPC Strike
+(22069, 4232, 5), -- NPC AE Strike
+(22069, 4273, 1), -- Resist Dagger
+(22069, 4274, 1), -- Blunt Attack Weak Point
+(22069, 4408, 10), -- HP Modifiers
+(22069, 4409, 1), -- MP Modifiers
+(22069, 4410, 11), -- P. Atk. Modifiers
+(22069, 4411, 11), -- M. Atk. Modifiers
+(22069, 4412, 14), -- P. Def. Modifiers
+(22069, 4413, 11), -- M. Def. Modifiers
+(22069, 4414, 1), -- Armor Type
+(22069, 4415, 4), -- Weapon Type
+(22069, 4416, 2), -- Races
+(22069, 4417, 10), -- Race Types
 (22069, 4437, 4), -- Greater Resist Bleeding
-(22069, 4457, 2), -- fist Weapon Weak Point
+(22069, 4457, 2), -- Hand-to-hand Weapon Weak Point
 -- Horrifying Cannon Golem VI
-(22070, 4032, 6), -- Power Strike
-(22070, 4232, 5), -- Whirlwind
-(22070, 4273, 1), -- Resist Daggers/Rapier Weapon
-(22070, 4274, 1), -- Blunt Weapon Weak Point
-(22070, 4408, 10), -- HP Increase (2x)
-(22070, 4409, 1), -- MP Increase (1x)
-(22070, 4410, 11), -- Average P. Atk.
-(22070, 4411, 11), -- Average M. Atk.
-(22070, 4412, 14), -- Strong P. Def.
-(22070, 4413, 11), -- Average M. Def.
-(22070, 4414, 1), -- Heavy Armor Type
-(22070, 4415, 4), -- One-handed Sword
-(22070, 4416, 2), -- Magic Creatures
-(22070, 4417, 10), -- Magic Creatures
+(22070, 4032, 6), -- NPC Strike
+(22070, 4232, 5), -- NPC AE Strike
+(22070, 4273, 1), -- Resist Dagger
+(22070, 4274, 1), -- Blunt Attack Weak Point
+(22070, 4408, 10), -- HP Modifiers
+(22070, 4409, 1), -- MP Modifiers
+(22070, 4410, 11), -- P. Atk. Modifiers
+(22070, 4411, 11), -- M. Atk. Modifiers
+(22070, 4412, 14), -- P. Def. Modifiers
+(22070, 4413, 11), -- M. Def. Modifiers
+(22070, 4414, 1), -- Armor Type
+(22070, 4415, 4), -- Weapon Type
+(22070, 4416, 2), -- Races
+(22070, 4417, 10), -- Race Types
 (22070, 4437, 4), -- Greater Resist Bleeding
-(22070, 4457, 2), -- fist Weapon Weak Point
+(22070, 4457, 2), -- Hand-to-hand Weapon Weak Point
 -- Horrifying Cannon Golem VI
-(22071, 4032, 6), -- Power Strike
-(22071, 4232, 5), -- Whirlwind
-(22071, 4273, 1), -- Resist Daggers/Rapier Weapon
-(22071, 4274, 1), -- Blunt Weapon Weak Point
-(22071, 4408, 10), -- HP Increase (2x)
-(22071, 4409, 1), -- MP Increase (1x)
-(22071, 4410, 11), -- Average P. Atk.
-(22071, 4411, 11), -- Average M. Atk.
-(22071, 4412, 14), -- Strong P. Def.
-(22071, 4413, 11), -- Average M. Def.
-(22071, 4414, 1), -- Heavy Armor Type
-(22071, 4415, 4), -- One-handed Sword
-(22071, 4416, 2), -- Magic Creatures
-(22071, 4417, 10), -- Magic Creatures
+(22071, 4032, 6), -- NPC Strike
+(22071, 4232, 5), -- NPC AE Strike
+(22071, 4273, 1), -- Resist Dagger
+(22071, 4274, 1), -- Blunt Attack Weak Point
+(22071, 4408, 10), -- HP Modifiers
+(22071, 4409, 1), -- MP Modifiers
+(22071, 4410, 11), -- P. Atk. Modifiers
+(22071, 4411, 11), -- M. Atk. Modifiers
+(22071, 4412, 14), -- P. Def. Modifiers
+(22071, 4413, 11), -- M. Def. Modifiers
+(22071, 4414, 1), -- Armor Type
+(22071, 4415, 4), -- Weapon Type
+(22071, 4416, 2), -- Races
+(22071, 4417, 10), -- Race Types
 (22071, 4437, 4), -- Greater Resist Bleeding
-(22071, 4457, 2), -- fist Weapon Weak Point
+(22071, 4457, 2), -- Hand-to-hand Weapon Weak Point
 -- Horrifying Cannon Golem VI
-(22072, 4032, 6), -- Power Strike
-(22072, 4232, 5), -- Whirlwind
-(22072, 4273, 1), -- Resist Daggers/Rapier Weapon
-(22072, 4274, 1), -- Blunt Weapon Weak Point
-(22072, 4408, 10), -- HP Increase (2x)
-(22072, 4409, 1), -- MP Increase (1x)
-(22072, 4410, 11), -- Average P. Atk.
-(22072, 4411, 11), -- Average M. Atk.
-(22072, 4412, 14), -- Strong P. Def.
-(22072, 4413, 11), -- Average M. Def.
-(22072, 4414, 1), -- Heavy Armor Type
-(22072, 4415, 4), -- One-handed Sword
-(22072, 4416, 2), -- Magic Creatures
-(22072, 4417, 10), -- Magic Creatures
+(22072, 4032, 6), -- NPC Strike
+(22072, 4232, 5), -- NPC AE Strike
+(22072, 4273, 1), -- Resist Dagger
+(22072, 4274, 1), -- Blunt Attack Weak Point
+(22072, 4408, 10), -- HP Modifiers
+(22072, 4409, 1), -- MP Modifiers
+(22072, 4410, 11), -- P. Atk. Modifiers
+(22072, 4411, 11), -- M. Atk. Modifiers
+(22072, 4412, 14), -- P. Def. Modifiers
+(22072, 4413, 11), -- M. Def. Modifiers
+(22072, 4414, 1), -- Armor Type
+(22072, 4415, 4), -- Weapon Type
+(22072, 4416, 2), -- Races
+(22072, 4417, 10), -- Race Types
 (22072, 4437, 4), -- Greater Resist Bleeding
-(22072, 4457, 2), -- fist Weapon Weak Point
+(22072, 4457, 2), -- Hand-to-hand Weapon Weak Point
 -- Horrifying Cannon Golem VI
-(22073, 4032, 6), -- Power Strike
-(22073, 4232, 5), -- Whirlwind
-(22073, 4273, 1), -- Resist Daggers/Rapier Weapon
-(22073, 4274, 1), -- Blunt Weapon Weak Point
-(22073, 4408, 10), -- HP Increase (2x)
-(22073, 4409, 1), -- MP Increase (1x)
-(22073, 4410, 11), -- Average P. Atk.
-(22073, 4411, 11), -- Average M. Atk.
-(22073, 4412, 14), -- Strong P. Def.
-(22073, 4413, 11), -- Average M. Def.
-(22073, 4414, 1), -- Heavy Armor Type
-(22073, 4415, 4), -- One-handed Sword
-(22073, 4416, 2), -- Magic Creatures
-(22073, 4417, 10), -- Magic Creatures
+(22073, 4032, 6), -- NPC Strike
+(22073, 4232, 5), -- NPC AE Strike
+(22073, 4273, 1), -- Resist Dagger
+(22073, 4274, 1), -- Blunt Attack Weak Point
+(22073, 4408, 10), -- HP Modifiers
+(22073, 4409, 1), -- MP Modifiers
+(22073, 4410, 11), -- P. Atk. Modifiers
+(22073, 4411, 11), -- M. Atk. Modifiers
+(22073, 4412, 14), -- P. Def. Modifiers
+(22073, 4413, 11), -- M. Def. Modifiers
+(22073, 4414, 1), -- Armor Type
+(22073, 4415, 4), -- Weapon Type
+(22073, 4416, 2), -- Races
+(22073, 4417, 10), -- Race Types
 (22073, 4437, 4), -- Greater Resist Bleeding
-(22073, 4457, 2), -- fist Weapon Weak Point
+(22073, 4457, 2), -- Hand-to-hand Weapon Weak Point
 -- Epic Cannon Golem
-(22074, 4032, 6), -- Power Strike
-(22074, 4232, 5), -- Whirlwind
-(22074, 4273, 1), -- Resist Daggers/Rapier Weapon
-(22074, 4274, 1), -- Blunt Weapon Weak Point
-(22074, 4408, 10), -- HP Increase (2x)
-(22074, 4409, 1), -- MP Increase (1x)
-(22074, 4410, 11), -- Average P. Atk.
-(22074, 4411, 11), -- Average M. Atk.
-(22074, 4412, 14), -- Strong P. Def.
-(22074, 4413, 11), -- Average M. Def.
-(22074, 4414, 1), -- Heavy Armor Type
-(22074, 4415, 4), -- One-handed Sword
-(22074, 4416, 2), -- Magic Creatures
-(22074, 4417, 10), -- Magic Creatures
+(22074, 4032, 6), -- NPC Strike
+(22074, 4232, 5), -- NPC AE Strike
+(22074, 4273, 1), -- Resist Dagger
+(22074, 4274, 1), -- Blunt Attack Weak Point
+(22074, 4408, 10), -- HP Modifiers
+(22074, 4409, 1), -- MP Modifiers
+(22074, 4410, 11), -- P. Atk. Modifiers
+(22074, 4411, 11), -- M. Atk. Modifiers
+(22074, 4412, 14), -- P. Def. Modifiers
+(22074, 4413, 11), -- M. Def. Modifiers
+(22074, 4414, 1), -- Armor Type
+(22074, 4415, 4), -- Weapon Type
+(22074, 4416, 2), -- Races
+(22074, 4417, 10), -- Race Types
 (22074, 4437, 4), -- Greater Resist Bleeding
-(22074, 4457, 2), -- fist Weapon Weak Point
-(22074, 4663, 1), -- Aggression
+(22074, 4457, 2), -- Hand-to-hand Weapon Weak Point
+(22074, 4663, 1), -- NPC Hate
 -- Epic Cannon Golem Adjunct
-(22075, 4105, 4), -- Beam Cannon
-(22075, 4273, 1), -- Resist Daggers/Rapier Weapon
-(22075, 4274, 1), -- Blunt Weapon Weak Point
-(22075, 4408, 1), -- HP Increase (1x)
-(22075, 4409, 1), -- MP Increase (1x)
-(22075, 4410, 11), -- Average P. Atk.
-(22075, 4411, 11), -- Average M. Atk.
-(22075, 4412, 14), -- Strong P. Def.
-(22075, 4413, 11), -- Average M. Def.
-(22075, 4414, 1), -- Heavy Armor Type
-(22075, 4415, 4), -- One-handed Sword
-(22075, 4416, 2), -- Magic Creatures
-(22075, 4417, 10), -- Magic Creatures
+(22075, 4105, 4), -- NPC Straight Beam Cannon
+(22075, 4273, 1), -- Resist Dagger
+(22075, 4274, 1), -- Blunt Attack Weak Point
+(22075, 4408, 1), -- HP Modifiers
+(22075, 4409, 1), -- MP Modifiers
+(22075, 4410, 11), -- P. Atk. Modifiers
+(22075, 4411, 11), -- M. Atk. Modifiers
+(22075, 4412, 14), -- P. Def. Modifiers
+(22075, 4413, 11), -- M. Def. Modifiers
+(22075, 4414, 1), -- Armor Type
+(22075, 4415, 4), -- Weapon Type
+(22075, 4416, 2), -- Races
+(22075, 4417, 10), -- Race Types
 (22075, 4437, 4), -- Greater Resist Bleeding
-(22075, 4457, 2), -- fist Weapon Weak Point
+(22075, 4457, 2), -- Hand-to-hand Weapon Weak Point
 -- Deadly Ginzu Golem V
-(22076, 4273, 1), -- Resist Daggers/Rapier Weapon
-(22076, 4274, 1), -- Blunt Weapon Weak Point
-(22076, 4408, 12), -- HP Increase (4x)
-(22076, 4409, 1), -- MP Increase (1x)
-(22076, 4410, 11), -- Average P. Atk.
-(22076, 4411, 11), -- Average M. Atk.
-(22076, 4412, 16), -- Very Strong P. Def.
-(22076, 4413, 11), -- Average M. Def.
-(22076, 4414, 1), -- Heavy Armor Type
-(22076, 4415, 4), -- One-handed Sword
-(22076, 4416, 2), -- Magic Creatures
-(22076, 4417, 10), -- Magic Creatures
+(22076, 4273, 1), -- Resist Dagger
+(22076, 4274, 1), -- Blunt Attack Weak Point
+(22076, 4408, 12), -- HP Modifiers
+(22076, 4409, 1), -- MP Modifiers
+(22076, 4410, 11), -- P. Atk. Modifiers
+(22076, 4411, 11), -- M. Atk. Modifiers
+(22076, 4412, 16), -- P. Def. Modifiers
+(22076, 4413, 11), -- M. Def. Modifiers
+(22076, 4414, 1), -- Armor Type
+(22076, 4415, 4), -- Weapon Type
+(22076, 4416, 2), -- Races
+(22076, 4417, 10), -- Race Types
 (22076, 4437, 4), -- Greater Resist Bleeding
-(22076, 4457, 2), -- fist Weapon Weak Point
-(22076, 4471, 1), -- Anger
-(22076, 4641, 5), -- Super Strike
+(22076, 4457, 2), -- Hand-to-hand Weapon Weak Point
+(22076, 4471, 1), -- NPC Anger
+(22076, 4641, 5), -- NPC Super Strike
 -- Horrifying Ginzu Golem VIII
-(22077, 4273, 1), -- Resist Daggers/Rapier Weapon
-(22077, 4274, 1), -- Blunt Weapon Weak Point
-(22077, 4408, 12), -- HP Increase (4x)
-(22077, 4409, 1), -- MP Increase (1x)
-(22077, 4410, 11), -- Average P. Atk.
-(22077, 4411, 11), -- Average M. Atk.
-(22077, 4412, 16), -- Very Strong P. Def.
-(22077, 4413, 11), -- Average M. Def.
-(22077, 4414, 1), -- Heavy Armor Type
-(22077, 4415, 4), -- One-handed Sword
-(22077, 4416, 2), -- Magic Creatures
-(22077, 4417, 10), -- Magic Creatures
+(22077, 4273, 1), -- Resist Dagger
+(22077, 4274, 1), -- Blunt Attack Weak Point
+(22077, 4408, 12), -- HP Modifiers
+(22077, 4409, 1), -- MP Modifiers
+(22077, 4410, 11), -- P. Atk. Modifiers
+(22077, 4411, 11), -- M. Atk. Modifiers
+(22077, 4412, 16), -- P. Def. Modifiers
+(22077, 4413, 11), -- M. Def. Modifiers
+(22077, 4414, 1), -- Armor Type
+(22077, 4415, 4), -- Weapon Type
+(22077, 4416, 2), -- Races
+(22077, 4417, 10), -- Race Types
 (22077, 4437, 4), -- Greater Resist Bleeding
-(22077, 4457, 2), -- fist Weapon Weak Point
-(22077, 4471, 1), -- Anger
-(22077, 4641, 5), -- Super Strike
+(22077, 4457, 2), -- Hand-to-hand Weapon Weak Point
+(22077, 4471, 1), -- NPC Anger
+(22077, 4641, 5), -- NPC Super Strike
 -- Deadly Ginzu Golem VIII
-(22078, 4273, 1), -- Resist Daggers/Rapier Weapon
-(22078, 4274, 1), -- Blunt Weapon Weak Point
-(22078, 4408, 12), -- HP Increase (4x)
-(22078, 4409, 1), -- MP Increase (1x)
-(22078, 4410, 11), -- Average P. Atk.
-(22078, 4411, 11), -- Average M. Atk.
-(22078, 4412, 16), -- Very Strong P. Def.
-(22078, 4413, 11), -- Average M. Def.
-(22078, 4414, 1), -- Heavy Armor Type
-(22078, 4415, 4), -- One-handed Sword
-(22078, 4416, 2), -- Magic Creatures
-(22078, 4417, 10), -- Magic Creatures
+(22078, 4273, 1), -- Resist Dagger
+(22078, 4274, 1), -- Blunt Attack Weak Point
+(22078, 4408, 12), -- HP Modifiers
+(22078, 4409, 1), -- MP Modifiers
+(22078, 4410, 11), -- P. Atk. Modifiers
+(22078, 4411, 11), -- M. Atk. Modifiers
+(22078, 4412, 16), -- P. Def. Modifiers
+(22078, 4413, 11), -- M. Def. Modifiers
+(22078, 4414, 1), -- Armor Type
+(22078, 4415, 4), -- Weapon Type
+(22078, 4416, 2), -- Races
+(22078, 4417, 10), -- Race Types
 (22078, 4437, 4), -- Greater Resist Bleeding
-(22078, 4457, 2), -- fist Weapon Weak Point
-(22078, 4471, 1), -- Anger
-(22078, 4641, 5), -- Super Strike
+(22078, 4457, 2), -- Hand-to-hand Weapon Weak Point
+(22078, 4471, 1), -- NPC Anger
+(22078, 4641, 5), -- NPC Super Strike
 -- Lost Bandersnatch
-(22079, 4408, 9), -- HP Increase (1/2x)
-(22079, 4409, 1), -- MP Increase (1x)
-(22079, 4410, 11), -- Average P. Atk.
-(22079, 4411, 11), -- Average M. Atk.
-(22079, 4412, 11), -- Average P. Def.
-(22079, 4413, 11), -- Average M. Def.
-(22079, 4414, 2), -- Standard Type
-(22079, 4415, 3), -- One-handed Sword
-(22079, 4416, 3), -- Beasts
-(22079, 4417, 1), -- Animals
+(22079, 4408, 9), -- HP Modifiers
+(22079, 4409, 1), -- MP Modifiers
+(22079, 4410, 11), -- P. Atk. Modifiers
+(22079, 4411, 11), -- M. Atk. Modifiers
+(22079, 4412, 11), -- P. Def. Modifiers
+(22079, 4413, 11), -- M. Def. Modifiers
+(22079, 4414, 2), -- Armor Type
+(22079, 4415, 3), -- Weapon Type
+(22079, 4416, 3), -- Races
+(22079, 4417, 1), -- Race Types
 -- Massive Lost Bandersnatch
-(22080, 4032, 5), -- Power Strike
-(22080, 4408, 9), -- HP Increase (1/2x)
-(22080, 4409, 1), -- MP Increase (1x)
-(22080, 4410, 13), -- Slightly Strong P. Atk.
-(22080, 4411, 11), -- Average M. Atk.
-(22080, 4412, 11), -- Average P. Def.
-(22080, 4413, 11), -- Average M. Def.
-(22080, 4414, 2), -- Standard Type
-(22080, 4415, 3), -- One-handed Sword
-(22080, 4416, 3), -- Beasts
-(22080, 4417, 1), -- Animals
+(22080, 4032, 5), -- NPC Strike
+(22080, 4408, 9), -- HP Modifiers
+(22080, 4409, 1), -- MP Modifiers
+(22080, 4410, 13), -- P. Atk. Modifiers
+(22080, 4411, 11), -- M. Atk. Modifiers
+(22080, 4412, 11), -- P. Def. Modifiers
+(22080, 4413, 11), -- M. Def. Modifiers
+(22080, 4414, 2), -- Armor Type
+(22080, 4415, 3), -- Weapon Type
+(22080, 4416, 3), -- Races
+(22080, 4417, 1), -- Race Types
 -- Lost Watcher
 (22081, 4137, 5), -- Hydro Screw
-(22081, 4160, 5), -- Aura Burn
-(22081, 4408, 1), -- HP Increase (1x)
-(22081, 4409, 1), -- MP Increase (1x)
-(22081, 4410, 11), -- Average P. Atk.
-(22081, 4411, 11), -- Average M. Atk.
-(22081, 4412, 11), -- Average P. Def.
-(22081, 4413, 11), -- Average M. Def.
-(22081, 4414, 2), -- Standard Type
-(22081, 4415, 3), -- One-handed Sword
-(22081, 4416, 2), -- Magic Creatures
-(22081, 4417, 11), -- Magic Creatures
+(22081, 4160, 5), -- NPC Aura Burn - Magic
+(22081, 4408, 1), -- HP Modifiers
+(22081, 4409, 1), -- MP Modifiers
+(22081, 4410, 11), -- P. Atk. Modifiers
+(22081, 4411, 11), -- M. Atk. Modifiers
+(22081, 4412, 11), -- P. Def. Modifiers
+(22081, 4413, 11), -- M. Def. Modifiers
+(22081, 4414, 2), -- Armor Type
+(22081, 4415, 3), -- Weapon Type
+(22081, 4416, 2), -- Races
+(22081, 4417, 11), -- Race Types
 (22081, 4460, 2), -- Sword Weak Point
 -- Elder Lost Watcher
 (22082, 4137, 5), -- Hydro Screw
-(22082, 4160, 5), -- Aura Burn
-(22082, 4408, 1), -- HP Increase (1x)
-(22082, 4409, 1), -- MP Increase (1x)
-(22082, 4410, 11), -- Average P. Atk.
-(22082, 4411, 11), -- Average M. Atk.
-(22082, 4412, 11), -- Average P. Def.
-(22082, 4413, 14), -- Strong M. Def.
-(22082, 4414, 2), -- Standard Type
-(22082, 4415, 3), -- One-handed Sword
-(22082, 4416, 2), -- Magic Creatures
-(22082, 4417, 11), -- Magic Creatures
+(22082, 4160, 5), -- NPC Aura Burn - Magic
+(22082, 4408, 1), -- HP Modifiers
+(22082, 4409, 1), -- MP Modifiers
+(22082, 4410, 11), -- P. Atk. Modifiers
+(22082, 4411, 11), -- M. Atk. Modifiers
+(22082, 4412, 11), -- P. Def. Modifiers
+(22082, 4413, 14), -- M. Def. Modifiers
+(22082, 4414, 2), -- Armor Type
+(22082, 4415, 3), -- Weapon Type
+(22082, 4416, 2), -- Races
+(22082, 4417, 11), -- Race Types
 (22082, 4460, 2), -- Sword Weak Point
 -- Baby Panthera
-(22083, 4032, 5), -- Power Strike
-(22083, 4408, 9), -- HP Increase (1/2x)
-(22083, 4409, 1), -- MP Increase (1x)
-(22083, 4410, 11), -- Average P. Atk.
-(22083, 4411, 11), -- Average M. Atk.
-(22083, 4412, 11), -- Average P. Def.
-(22083, 4413, 11), -- Average M. Def.
-(22083, 4414, 2), -- Standard Type
-(22083, 4415, 3), -- One-handed Sword
-(22083, 4416, 3), -- Beasts
-(22083, 4417, 4), -- Beasts
+(22083, 4032, 5), -- NPC Strike
+(22083, 4408, 9), -- HP Modifiers
+(22083, 4409, 1), -- MP Modifiers
+(22083, 4410, 11), -- P. Atk. Modifiers
+(22083, 4411, 11), -- M. Atk. Modifiers
+(22083, 4412, 11), -- P. Def. Modifiers
+(22083, 4413, 11), -- M. Def. Modifiers
+(22083, 4414, 2), -- Armor Type
+(22083, 4415, 3), -- Weapon Type
+(22083, 4416, 3), -- Races
+(22083, 4417, 4), -- Race Types
 -- Panthera
-(22084, 4032, 5), -- Power Strike
-(22084, 4408, 9), -- HP Increase (1/2x)
-(22084, 4409, 1), -- MP Increase (1x)
-(22084, 4410, 11), -- Average P. Atk.
-(22084, 4411, 11), -- Average M. Atk.
-(22084, 4412, 11), -- Average P. Def.
-(22084, 4413, 11), -- Average M. Def.
-(22084, 4414, 2), -- Standard Type
-(22084, 4415, 3), -- One-handed Sword
-(22084, 4416, 3), -- Beasts
-(22084, 4417, 4), -- Beasts
+(22084, 4032, 5), -- NPC Strike
+(22084, 4408, 9), -- HP Modifiers
+(22084, 4409, 1), -- MP Modifiers
+(22084, 4410, 11), -- P. Atk. Modifiers
+(22084, 4411, 11), -- M. Atk. Modifiers
+(22084, 4412, 11), -- P. Def. Modifiers
+(22084, 4413, 11), -- M. Def. Modifiers
+(22084, 4414, 2), -- Armor Type
+(22084, 4415, 3), -- Weapon Type
+(22084, 4416, 3), -- Races
+(22084, 4417, 4), -- Race Types
 -- Lost Gargoyle
-(22085, 4074, 2), -- Haste
-(22085, 4408, 1), -- HP Increase (1x)
-(22085, 4409, 1), -- MP Increase (1x)
-(22085, 4410, 11), -- Average P. Atk.
-(22085, 4411, 11), -- Average M. Atk.
-(22085, 4412, 11), -- Average P. Def.
-(22085, 4413, 11), -- Average M. Def.
-(22085, 4414, 2), -- Standard Type
-(22085, 4415, 3), -- One-handed Sword
-(22085, 4416, 2), -- Magic Creatures
-(22085, 4417, 5), -- Beasts
-(22085, 4461, 2), -- Weak Point against Daggers/Rapier Weapon
+(22085, 4074, 2), -- NPC Haste
+(22085, 4408, 1), -- HP Modifiers
+(22085, 4409, 1), -- MP Modifiers
+(22085, 4410, 11), -- P. Atk. Modifiers
+(22085, 4411, 11), -- M. Atk. Modifiers
+(22085, 4412, 11), -- P. Def. Modifiers
+(22085, 4413, 11), -- M. Def. Modifiers
+(22085, 4414, 2), -- Armor Type
+(22085, 4415, 3), -- Weapon Type
+(22085, 4416, 2), -- Races
+(22085, 4417, 5), -- Race Types
+(22085, 4461, 2), -- Dagger Weak Point
 -- Lost Gargoyle Youngling
-(22086, 4065, 5), -- Heal
+(22086, 4065, 5), -- NPC Heal
 (22086, 4137, 5), -- Hydro Screw
-(22086, 4160, 5), -- Aura Burn
-(22086, 4408, 1), -- HP Increase (1x)
-(22086, 4409, 1), -- MP Increase (1x)
-(22086, 4410, 11), -- Average P. Atk.
-(22086, 4411, 11), -- Average M. Atk.
-(22086, 4412, 11), -- Average P. Def.
-(22086, 4413, 14), -- Strong M. Def.
-(22086, 4414, 2), -- Standard Type
-(22086, 4415, 3), -- One-handed Sword
-(22086, 4416, 2), -- Magic Creatures
-(22086, 4417, 5), -- Beasts
-(22086, 4461, 2), -- Weak Point against Daggers/Rapier Weapon
+(22086, 4160, 5), -- NPC Aura Burn - Magic
+(22086, 4408, 1), -- HP Modifiers
+(22086, 4409, 1), -- MP Modifiers
+(22086, 4410, 11), -- P. Atk. Modifiers
+(22086, 4411, 11), -- M. Atk. Modifiers
+(22086, 4412, 11), -- P. Def. Modifiers
+(22086, 4413, 14), -- M. Def. Modifiers
+(22086, 4414, 2), -- Armor Type
+(22086, 4415, 3), -- Weapon Type
+(22086, 4416, 2), -- Races
+(22086, 4417, 5), -- Race Types
+(22086, 4461, 2), -- Dagger Weak Point
 -- Pronghorn Spirit
-(22087, 4032, 5), -- Power Strike
-(22087, 4073, 5), -- Stun
-(22087, 4408, 1), -- HP Increase (1x)
-(22087, 4409, 1), -- MP Increase (1x)
-(22087, 4410, 11), -- Average P. Atk.
-(22087, 4411, 11), -- Average M. Atk.
-(22087, 4412, 11), -- Average P. Def.
-(22087, 4413, 11), -- Average M. Def.
-(22087, 4414, 2), -- Standard Type
-(22087, 4415, 3), -- One-handed Sword
-(22087, 4416, 4), -- Animals
-(22087, 4417, 1), -- Animals
+(22087, 4032, 5), -- NPC Strike
+(22087, 4073, 5), -- Shock
+(22087, 4408, 1), -- HP Modifiers
+(22087, 4409, 1), -- MP Modifiers
+(22087, 4410, 11), -- P. Atk. Modifiers
+(22087, 4411, 11), -- M. Atk. Modifiers
+(22087, 4412, 11), -- P. Def. Modifiers
+(22087, 4413, 11), -- M. Def. Modifiers
+(22087, 4414, 2), -- Armor Type
+(22087, 4415, 3), -- Weapon Type
+(22087, 4416, 4), -- Races
+(22087, 4417, 1), -- Race Types
 -- Pronghorn
-(22088, 4408, 1), -- HP Increase (1x)
-(22088, 4409, 1), -- MP Increase (1x)
-(22088, 4410, 11), -- Average P. Atk.
-(22088, 4411, 11), -- Average M. Atk.
-(22088, 4412, 11), -- Average P. Def.
-(22088, 4413, 11), -- Average M. Def.
-(22088, 4414, 2), -- Standard Type
-(22088, 4415, 3), -- One-handed Sword
-(22088, 4416, 4), -- Animals
-(22088, 4417, 1), -- Animals
+(22088, 4408, 1), -- HP Modifiers
+(22088, 4409, 1), -- MP Modifiers
+(22088, 4410, 11), -- P. Atk. Modifiers
+(22088, 4411, 11), -- M. Atk. Modifiers
+(22088, 4412, 11), -- P. Def. Modifiers
+(22088, 4413, 11), -- M. Def. Modifiers
+(22088, 4414, 2), -- Armor Type
+(22088, 4415, 3), -- Weapon Type
+(22088, 4416, 4), -- Races
+(22088, 4417, 1), -- Race Types
 -- Ice Tarantula
-(22089, 4408, 1), -- HP Increase (1x)
-(22089, 4409, 1), -- MP Increase (1x)
-(22089, 4410, 11), -- Average P. Atk.
-(22089, 4411, 11), -- Average M. Atk.
-(22089, 4412, 11), -- Average P. Def.
-(22089, 4413, 11), -- Average M. Def.
-(22089, 4414, 2), -- Standard Type
-(22089, 4415, 5), -- Blunt Weapons
-(22089, 4416, 12), -- Bugs
-(22089, 4417, 7), -- Bugs
+(22089, 4408, 1), -- HP Modifiers
+(22089, 4409, 1), -- MP Modifiers
+(22089, 4410, 11), -- P. Atk. Modifiers
+(22089, 4411, 11), -- M. Atk. Modifiers
+(22089, 4412, 11), -- P. Def. Modifiers
+(22089, 4413, 11), -- M. Def. Modifiers
+(22089, 4414, 2), -- Armor Type
+(22089, 4415, 5), -- Weapon Type
+(22089, 4416, 12), -- Races
+(22089, 4417, 7), -- Race Types
 (22089, 4460, 2), -- Sword Weak Point
 -- Frost Tarantula
-(22090, 4408, 1), -- HP Increase (1x)
-(22090, 4409, 1), -- MP Increase (1x)
-(22090, 4410, 11), -- Average P. Atk.
-(22090, 4411, 11), -- Average M. Atk.
-(22090, 4412, 11), -- Average P. Def.
-(22090, 4413, 11), -- Average M. Def.
-(22090, 4414, 2), -- Standard Type
-(22090, 4415, 5), -- Blunt Weapons
-(22090, 4416, 12), -- Bugs
-(22090, 4417, 7), -- Bugs
+(22090, 4408, 1), -- HP Modifiers
+(22090, 4409, 1), -- MP Modifiers
+(22090, 4410, 11), -- P. Atk. Modifiers
+(22090, 4411, 11), -- M. Atk. Modifiers
+(22090, 4412, 11), -- P. Def. Modifiers
+(22090, 4413, 11), -- M. Def. Modifiers
+(22090, 4414, 2), -- Armor Type
+(22090, 4415, 5), -- Weapon Type
+(22090, 4416, 12), -- Races
+(22090, 4417, 7), -- Race Types
 (22090, 4460, 2), -- Sword Weak Point
 -- Lost Iron Golem
-(22091, 4247, 5), -- Wind Strike
-(22091, 4273, 3), -- Resist Daggers/Rapier Weapon
-(22091, 4274, 2), -- Blunt Weapon Weak Point
-(22091, 4408, 9), -- HP Increase (1/2x)
-(22091, 4409, 1), -- MP Increase (1x)
-(22091, 4410, 11), -- Average P. Atk.
-(22091, 4411, 11), -- Average M. Atk.
-(22091, 4412, 11), -- Average P. Def.
-(22091, 4413, 19), -- Extremely Strong M. Def.
-(22091, 4414, 2), -- Standard Type
-(22091, 4415, 5), -- Blunt Weapons
-(22091, 4416, 2), -- Magic Creatures
-(22091, 4417, 10), -- Magic Creatures
+(22091, 4247, 5), -- NPC Windstrike - Slow
+(22091, 4273, 3), -- Resist Dagger
+(22091, 4274, 2), -- Blunt Attack Weak Point
+(22091, 4408, 9), -- HP Modifiers
+(22091, 4409, 1), -- MP Modifiers
+(22091, 4410, 11), -- P. Atk. Modifiers
+(22091, 4411, 11), -- M. Atk. Modifiers
+(22091, 4412, 11), -- P. Def. Modifiers
+(22091, 4413, 19), -- M. Def. Modifiers
+(22091, 4414, 2), -- Armor Type
+(22091, 4415, 5), -- Weapon Type
+(22091, 4416, 2), -- Races
+(22091, 4417, 10), -- Race Types
 (22091, 4437, 4), -- Greater Resist Bleeding
 (22091, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Frost Iron Golem
-(22092, 4247, 5), -- Wind Strike
-(22092, 4273, 3), -- Resist Daggers/Rapier Weapon
-(22092, 4274, 2), -- Blunt Weapon Weak Point
-(22092, 4408, 9), -- HP Increase (1/2x)
-(22092, 4409, 1), -- MP Increase (1x)
-(22092, 4410, 11), -- Average P. Atk.
-(22092, 4411, 11), -- Average M. Atk.
-(22092, 4412, 11), -- Average P. Def.
-(22092, 4413, 19), -- Extremely Strong M. Def.
-(22092, 4414, 2), -- Standard Type
-(22092, 4415, 3), -- One-handed Sword
-(22092, 4416, 2), -- Magic Creatures
-(22092, 4417, 10), -- Magic Creatures
+(22092, 4247, 5), -- NPC Windstrike - Slow
+(22092, 4273, 3), -- Resist Dagger
+(22092, 4274, 2), -- Blunt Attack Weak Point
+(22092, 4408, 9), -- HP Modifiers
+(22092, 4409, 1), -- MP Modifiers
+(22092, 4410, 11), -- P. Atk. Modifiers
+(22092, 4411, 11), -- M. Atk. Modifiers
+(22092, 4412, 11), -- P. Def. Modifiers
+(22092, 4413, 19), -- M. Def. Modifiers
+(22092, 4414, 2), -- Armor Type
+(22092, 4415, 3), -- Weapon Type
+(22092, 4416, 2), -- Races
+(22092, 4417, 10), -- Race Types
 (22092, 4437, 4), -- Greater Resist Bleeding
 (22092, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Lost Buffalo
-(22093, 4032, 5), -- Power Strike
-(22093, 4073, 5), -- Stun
-(22093, 4408, 1), -- HP Increase (1x)
-(22093, 4409, 1), -- MP Increase (1x)
-(22093, 4410, 11), -- Average P. Atk.
-(22093, 4411, 11), -- Average M. Atk.
-(22093, 4412, 11), -- Average P. Def.
-(22093, 4413, 11), -- Average M. Def.
-(22093, 4414, 2), -- Standard Type
-(22093, 4415, 5), -- Blunt Weapons
-(22093, 4416, 3), -- Beasts
-(22093, 4417, 1), -- Animals
+(22093, 4032, 5), -- NPC Strike
+(22093, 4073, 5), -- Shock
+(22093, 4408, 1), -- HP Modifiers
+(22093, 4409, 1), -- MP Modifiers
+(22093, 4410, 11), -- P. Atk. Modifiers
+(22093, 4411, 11), -- M. Atk. Modifiers
+(22093, 4412, 11), -- P. Def. Modifiers
+(22093, 4413, 11), -- M. Def. Modifiers
+(22093, 4414, 2), -- Armor Type
+(22093, 4415, 5), -- Weapon Type
+(22093, 4416, 3), -- Races
+(22093, 4417, 1), -- Race Types
 -- Frost Buffalo
-(22094, 4408, 1), -- HP Increase (1x)
-(22094, 4409, 1), -- MP Increase (1x)
-(22094, 4410, 11), -- Average P. Atk.
-(22094, 4411, 11), -- Average M. Atk.
-(22094, 4412, 11), -- Average P. Def.
-(22094, 4413, 11), -- Average M. Def.
-(22094, 4414, 2), -- Standard Type
-(22094, 4415, 5), -- Blunt Weapons
-(22094, 4416, 3), -- Beasts
-(22094, 4417, 1), -- Animals
+(22094, 4408, 1), -- HP Modifiers
+(22094, 4409, 1), -- MP Modifiers
+(22094, 4410, 11), -- P. Atk. Modifiers
+(22094, 4411, 11), -- M. Atk. Modifiers
+(22094, 4412, 11), -- P. Def. Modifiers
+(22094, 4413, 11), -- M. Def. Modifiers
+(22094, 4414, 2), -- Armor Type
+(22094, 4415, 5), -- Weapon Type
+(22094, 4416, 3), -- Races
+(22094, 4417, 1), -- Race Types
 -- Ursus Cub
-(22095, 4408, 9), -- HP Increase (1/2x)
-(22095, 4409, 1), -- MP Increase (1x)
-(22095, 4410, 11), -- Average P. Atk.
-(22095, 4411, 11), -- Average M. Atk.
-(22095, 4412, 11), -- Average P. Def.
-(22095, 4413, 11), -- Average M. Def.
-(22095, 4414, 2), -- Standard Type
-(22095, 4415, 3), -- One-handed Sword
-(22095, 4416, 4), -- Animals
-(22095, 4417, 1), -- Animals
+(22095, 4408, 9), -- HP Modifiers
+(22095, 4409, 1), -- MP Modifiers
+(22095, 4410, 11), -- P. Atk. Modifiers
+(22095, 4411, 11), -- M. Atk. Modifiers
+(22095, 4412, 11), -- P. Def. Modifiers
+(22095, 4413, 11), -- M. Def. Modifiers
+(22095, 4414, 2), -- Armor Type
+(22095, 4415, 3), -- Weapon Type
+(22095, 4416, 4), -- Races
+(22095, 4417, 1), -- Race Types
 -- Ursus
-(22096, 4032, 5), -- Power Strike
-(22096, 4408, 9), -- HP Increase (1/2x)
-(22096, 4409, 1), -- MP Increase (1x)
-(22096, 4410, 11), -- Average P. Atk.
-(22096, 4411, 11), -- Average M. Atk.
-(22096, 4412, 11), -- Average P. Def.
-(22096, 4413, 11), -- Average M. Def.
-(22096, 4414, 2), -- Standard Type
-(22096, 4415, 3), -- One-handed Sword
-(22096, 4416, 4), -- Animals
-(22096, 4417, 1), -- Animals
+(22096, 4032, 5), -- NPC Strike
+(22096, 4408, 9), -- HP Modifiers
+(22096, 4409, 1), -- MP Modifiers
+(22096, 4410, 11), -- P. Atk. Modifiers
+(22096, 4411, 11), -- M. Atk. Modifiers
+(22096, 4412, 11), -- P. Def. Modifiers
+(22096, 4413, 11), -- M. Def. Modifiers
+(22096, 4414, 2), -- Armor Type
+(22096, 4415, 3), -- Weapon Type
+(22096, 4416, 4), -- Races
+(22096, 4417, 1), -- Race Types
 -- Lost Yeti
-(22097, 4408, 1), -- HP Increase (1x)
-(22097, 4409, 1), -- MP Increase (1x)
-(22097, 4410, 11), -- Average P. Atk.
-(22097, 4411, 11), -- Average M. Atk.
-(22097, 4412, 11), -- Average P. Def.
-(22097, 4413, 11), -- Average M. Def.
-(22097, 4414, 2), -- Standard Type
-(22097, 4415, 5), -- Blunt Weapons
-(22097, 4416, 11), -- Giants
-(22097, 4417, 25), -- Giants
-(22097, 4461, 2), -- Weak Point against Daggers/Rapier Weapon
+(22097, 4408, 1), -- HP Modifiers
+(22097, 4409, 1), -- MP Modifiers
+(22097, 4410, 11), -- P. Atk. Modifiers
+(22097, 4411, 11), -- M. Atk. Modifiers
+(22097, 4412, 11), -- P. Def. Modifiers
+(22097, 4413, 11), -- M. Def. Modifiers
+(22097, 4414, 2), -- Armor Type
+(22097, 4415, 5), -- Weapon Type
+(22097, 4416, 11), -- Races
+(22097, 4417, 25), -- Race Types
+(22097, 4461, 2), -- Dagger Weak Point
 -- Frost Yeti
-(22098, 4408, 1), -- HP Increase (1x)
-(22098, 4409, 1), -- MP Increase (1x)
-(22098, 4410, 11), -- Average P. Atk.
-(22098, 4411, 11), -- Average M. Atk.
-(22098, 4412, 11), -- Average P. Def.
-(22098, 4413, 11), -- Average M. Def.
-(22098, 4414, 2), -- Standard Type
-(22098, 4415, 5), -- Blunt Weapons
-(22098, 4416, 11), -- Giants
-(22098, 4417, 25), -- Giants
-(22098, 4461, 2), -- Weak Point against Daggers/Rapier Weapon
+(22098, 4408, 1), -- HP Modifiers
+(22098, 4409, 1), -- MP Modifiers
+(22098, 4410, 11), -- P. Atk. Modifiers
+(22098, 4411, 11), -- M. Atk. Modifiers
+(22098, 4412, 11), -- P. Def. Modifiers
+(22098, 4413, 11), -- M. Def. Modifiers
+(22098, 4414, 2), -- Armor Type
+(22098, 4415, 5), -- Weapon Type
+(22098, 4416, 11), -- Races
+(22098, 4417, 25), -- Race Types
+(22098, 4461, 2), -- Dagger Weak Point
 -- Freya's Buffalo
-(22099, 4379, 5), -- Resist Spear Weapons
-(22099, 4408, 16), -- HP Increase (8x)
-(22099, 4409, 1), -- MP Increase (1x)
-(22099, 4410, 18), -- Extremely Strong P. Atk.
-(22099, 4411, 11), -- Average M. Atk.
-(22099, 4412, 11), -- Average P. Def.
-(22099, 4413, 20), -- Extremely Strong M. Def.
-(22099, 4414, 1), -- Heavy Armor Type
-(22099, 4415, 3), -- One-handed Sword
-(22099, 4416, 3), -- Beasts
-(22099, 4417, 1), -- Animals
+(22099, 4379, 5), -- Resist Pole Arm
+(22099, 4408, 16), -- HP Modifiers
+(22099, 4409, 1), -- MP Modifiers
+(22099, 4410, 18), -- P. Atk. Modifiers
+(22099, 4411, 11), -- M. Atk. Modifiers
+(22099, 4412, 11), -- P. Def. Modifiers
+(22099, 4413, 20), -- M. Def. Modifiers
+(22099, 4414, 1), -- Armor Type
+(22099, 4415, 3), -- Weapon Type
+(22099, 4416, 3), -- Races
+(22099, 4417, 1), -- Race Types
 (22099, 4438, 5), -- Greater Resist Sleep
 (22099, 4439, 5), -- Greater Resist Hold
-(22099, 5044, 2), -- Ultimate Defense
+(22099, 5044, 2), -- NPC Ultimate Defense
 -- Freya's Gardener
-(22100, 4085, 1), -- Critical Damage
+(22100, 4085, 1), -- Critical Power
 (22100, 4086, 1), -- Critical Chance
-(22100, 4379, 5), -- Resist Spear Weapons
-(22100, 4408, 16), -- HP Increase (8x)
-(22100, 4409, 1), -- MP Increase (1x)
-(22100, 4410, 19), -- Extremely Strong P. Atk.
-(22100, 4411, 11), -- Average M. Atk.
-(22100, 4412, 11), -- Average P. Def.
-(22100, 4413, 20), -- Extremely Strong M. Def.
-(22100, 4414, 1), -- Heavy Armor Type
-(22100, 4415, 3), -- One-handed Sword
-(22100, 4416, 2), -- Magic Creatures
-(22100, 4417, 11), -- Magic Creatures
+(22100, 4379, 5), -- Resist Pole Arm
+(22100, 4408, 16), -- HP Modifiers
+(22100, 4409, 1), -- MP Modifiers
+(22100, 4410, 19), -- P. Atk. Modifiers
+(22100, 4411, 11), -- M. Atk. Modifiers
+(22100, 4412, 11), -- P. Def. Modifiers
+(22100, 4413, 20), -- M. Def. Modifiers
+(22100, 4414, 1), -- Armor Type
+(22100, 4415, 3), -- Weapon Type
+(22100, 4416, 2), -- Races
+(22100, 4417, 11), -- Race Types
 (22100, 4483, 6), -- Hold
 -- Freya's Servant
-(22101, 4032, 5), -- Power Strike
-(22101, 4379, 5), -- Resist Spear Weapons
-(22101, 4408, 16), -- HP Increase (8x)
-(22101, 4409, 1), -- MP Increase (1x)
-(22101, 4410, 19), -- Extremely Strong P. Atk.
-(22101, 4411, 11), -- Average M. Atk.
-(22101, 4412, 11), -- Average P. Def.
-(22101, 4413, 20), -- Extremely Strong M. Def.
-(22101, 4414, 1), -- Heavy Armor Type
-(22101, 4415, 7), -- Daggers
-(22101, 4416, 2), -- Magic Creatures
-(22101, 4417, 5), -- Beasts
+(22101, 4032, 5), -- NPC Strike
+(22101, 4379, 5), -- Resist Pole Arm
+(22101, 4408, 16), -- HP Modifiers
+(22101, 4409, 1), -- MP Modifiers
+(22101, 4410, 19), -- P. Atk. Modifiers
+(22101, 4411, 11), -- M. Atk. Modifiers
+(22101, 4412, 11), -- P. Def. Modifiers
+(22101, 4413, 20), -- M. Def. Modifiers
+(22101, 4414, 1), -- Armor Type
+(22101, 4415, 7), -- Weapon Type
+(22101, 4416, 2), -- Races
+(22101, 4417, 5), -- Race Types
 -- Freya's Servant
-(22102, 4379, 5), -- Resist Spear Weapons
-(22102, 4408, 16), -- HP Increase (8x)
-(22102, 4409, 1), -- MP Increase (1x)
-(22102, 4410, 19), -- Extremely Strong P. Atk.
-(22102, 4411, 11), -- Average M. Atk.
-(22102, 4412, 11), -- Average P. Def.
-(22102, 4413, 20), -- Extremely Strong M. Def.
-(22102, 4414, 1), -- Heavy Armor Type
-(22102, 4415, 4), -- One-handed Sword
-(22102, 4416, 2), -- Magic Creatures
-(22102, 4417, 5), -- Beasts
+(22102, 4379, 5), -- Resist Pole Arm
+(22102, 4408, 16), -- HP Modifiers
+(22102, 4409, 1), -- MP Modifiers
+(22102, 4410, 19), -- P. Atk. Modifiers
+(22102, 4411, 11), -- M. Atk. Modifiers
+(22102, 4412, 11), -- P. Def. Modifiers
+(22102, 4413, 20), -- M. Def. Modifiers
+(22102, 4414, 1), -- Armor Type
+(22102, 4415, 4), -- Weapon Type
+(22102, 4416, 2), -- Races
+(22102, 4417, 5), -- Race Types
 -- Freya's White Bear
-(22103, 4065, 5), -- Heal
-(22103, 4379, 5), -- Resist Spear Weapons
-(22103, 4408, 16), -- HP Increase (8x)
-(22103, 4409, 1), -- MP Increase (1x)
-(22103, 4410, 19), -- Extremely Strong P. Atk.
-(22103, 4411, 11), -- Average M. Atk.
-(22103, 4412, 18), -- Extremely Strong P. Def.
-(22103, 4413, 11), -- Average M. Def.
-(22103, 4414, 1), -- Heavy Armor Type
-(22103, 4415, 3), -- One-handed Sword
-(22103, 4416, 4), -- Animals
-(22103, 4417, 1), -- Animals
+(22103, 4065, 5), -- NPC Heal
+(22103, 4379, 5), -- Resist Pole Arm
+(22103, 4408, 16), -- HP Modifiers
+(22103, 4409, 1), -- MP Modifiers
+(22103, 4410, 19), -- P. Atk. Modifiers
+(22103, 4411, 11), -- M. Atk. Modifiers
+(22103, 4412, 18), -- P. Def. Modifiers
+(22103, 4413, 11), -- M. Def. Modifiers
+(22103, 4414, 1), -- Armor Type
+(22103, 4415, 3), -- Weapon Type
+(22103, 4416, 4), -- Races
+(22103, 4417, 1), -- Race Types
 (22103, 4438, 5), -- Greater Resist Sleep
 (22103, 4439, 5), -- Greater Resist Hold
 -- Freya's Dog
-(22104, 4379, 5), -- Resist Spear Weapons
-(22104, 4408, 16), -- HP Increase (8x)
-(22104, 4409, 1), -- MP Increase (1x)
-(22104, 4410, 19), -- Extremely Strong P. Atk.
-(22104, 4411, 11), -- Average M. Atk.
-(22104, 4412, 19), -- Extremely Strong P. Def.
-(22104, 4413, 11), -- Average M. Def.
-(22104, 4414, 1), -- Heavy Armor Type
-(22104, 4415, 3), -- One-handed Sword
-(22104, 4416, 3), -- Beasts
-(22104, 4417, 4), -- Beasts
+(22104, 4379, 5), -- Resist Pole Arm
+(22104, 4408, 16), -- HP Modifiers
+(22104, 4409, 1), -- MP Modifiers
+(22104, 4410, 19), -- P. Atk. Modifiers
+(22104, 4411, 11), -- M. Atk. Modifiers
+(22104, 4412, 19), -- P. Def. Modifiers
+(22104, 4413, 11), -- M. Def. Modifiers
+(22104, 4414, 1), -- Armor Type
+(22104, 4415, 3), -- Weapon Type
+(22104, 4416, 3), -- Races
+(22104, 4417, 4), -- Race Types
 (22104, 4438, 5), -- Greater Resist Sleep
 (22104, 4439, 5), -- Greater Resist Hold
-(22104, 5044, 2), -- Ultimate Defense
+(22104, 5044, 2), -- NPC Ultimate Defense
 -- Spiked Stakato
-(22105, 4032, 7), -- Power Strike
-(22105, 4408, 12), -- HP Increase (4x)
-(22105, 4409, 1), -- MP Increase (1x)
-(22105, 4410, 14), -- Strong P. Atk.
-(22105, 4411, 11), -- Average M. Atk.
-(22105, 4412, 14), -- Strong P. Def.
-(22105, 4413, 11), -- Average M. Def.
-(22105, 4414, 1), -- Heavy Armor Type
-(22105, 4415, 5), -- Blunt Weapons
-(22105, 4416, 6), -- Humanoids
-(22105, 4417, 29), -- Humanoids
-(22105, 4789, 2), -- High Level
+(22105, 4032, 7), -- NPC Strike
+(22105, 4408, 12), -- HP Modifiers
+(22105, 4409, 1), -- MP Modifiers
+(22105, 4410, 14), -- P. Atk. Modifiers
+(22105, 4411, 11), -- M. Atk. Modifiers
+(22105, 4412, 14), -- P. Def. Modifiers
+(22105, 4413, 11), -- M. Def. Modifiers
+(22105, 4414, 1), -- Armor Type
+(22105, 4415, 5), -- Weapon Type
+(22105, 4416, 6), -- Races
+(22105, 4417, 29), -- Race Types
+(22105, 4789, 2), -- NPC High Level
 -- Spiked Stakato Worker
-(22106, 4067, 7), -- Blow
-(22106, 4408, 12), -- HP Increase (4x)
-(22106, 4409, 1), -- MP Increase (1x)
-(22106, 4410, 14), -- Strong P. Atk.
-(22106, 4411, 11), -- Average M. Atk.
-(22106, 4412, 14), -- Strong P. Def.
-(22106, 4413, 11), -- Average M. Def.
-(22106, 4414, 1), -- Heavy Armor Type
-(22106, 4415, 3), -- One-handed Sword
-(22106, 4416, 6), -- Humanoids
-(22106, 4417, 29), -- Humanoids
-(22106, 4789, 3), -- High Level
+(22106, 4067, 7), -- NPC Mortal Blow
+(22106, 4408, 12), -- HP Modifiers
+(22106, 4409, 1), -- MP Modifiers
+(22106, 4410, 14), -- P. Atk. Modifiers
+(22106, 4411, 11), -- M. Atk. Modifiers
+(22106, 4412, 14), -- P. Def. Modifiers
+(22106, 4413, 11), -- M. Def. Modifiers
+(22106, 4414, 1), -- Armor Type
+(22106, 4415, 3), -- Weapon Type
+(22106, 4416, 6), -- Races
+(22106, 4417, 29), -- Race Types
+(22106, 4789, 3), -- NPC High Level
 -- Spiked Stakato Guard
-(22107, 4067, 7), -- Blow
-(22107, 4408, 12), -- HP Increase (4x)
-(22107, 4409, 1), -- MP Increase (1x)
-(22107, 4410, 14), -- Strong P. Atk.
-(22107, 4411, 11), -- Average M. Atk.
-(22107, 4412, 14), -- Strong P. Def.
-(22107, 4413, 11), -- Average M. Def.
-(22107, 4414, 1), -- Heavy Armor Type
-(22107, 4415, 3), -- One-handed Sword
-(22107, 4416, 6), -- Humanoids
-(22107, 4417, 29), -- Humanoids
-(22107, 4789, 3), -- High Level
+(22107, 4067, 7), -- NPC Mortal Blow
+(22107, 4408, 12), -- HP Modifiers
+(22107, 4409, 1), -- MP Modifiers
+(22107, 4410, 14), -- P. Atk. Modifiers
+(22107, 4411, 11), -- M. Atk. Modifiers
+(22107, 4412, 14), -- P. Def. Modifiers
+(22107, 4413, 11), -- M. Def. Modifiers
+(22107, 4414, 1), -- Armor Type
+(22107, 4415, 3), -- Weapon Type
+(22107, 4416, 6), -- Races
+(22107, 4417, 29), -- Race Types
+(22107, 4789, 3), -- NPC High Level
 -- Female Spiked Stakato
-(22108, 4029, 3), -- Shield
+(22108, 4029, 3), -- NPC Shield
 (22108, 4036, 7), -- Poison
-(22108, 4073, 7), -- Stun
-(22108, 4408, 12), -- HP Increase (4x)
-(22108, 4409, 1), -- MP Increase (1x)
-(22108, 4410, 14), -- Strong P. Atk.
-(22108, 4411, 11), -- Average M. Atk.
-(22108, 4412, 14), -- Strong P. Def.
-(22108, 4413, 11), -- Average M. Def.
-(22108, 4414, 1), -- Heavy Armor Type
-(22108, 4415, 3), -- One-handed Sword
-(22108, 4416, 6), -- Humanoids
-(22108, 4417, 29), -- Humanoids
+(22108, 4073, 7), -- Shock
+(22108, 4408, 12), -- HP Modifiers
+(22108, 4409, 1), -- MP Modifiers
+(22108, 4410, 14), -- P. Atk. Modifiers
+(22108, 4411, 11), -- M. Atk. Modifiers
+(22108, 4412, 14), -- P. Def. Modifiers
+(22108, 4413, 11), -- M. Def. Modifiers
+(22108, 4414, 1), -- Armor Type
+(22108, 4415, 3), -- Weapon Type
+(22108, 4416, 6), -- Races
+(22108, 4417, 29), -- Race Types
 (22108, 4435, 5), -- Greater Resist Stun
 (22108, 4438, 5), -- Greater Resist Sleep
 (22108, 4439, 5), -- Greater Resist Hold
-(22108, 4789, 3), -- High Level
+(22108, 4789, 3), -- NPC High Level
 -- Male Spiked Stakato
-(22109, 4032, 7), -- Power Strike
-(22109, 4072, 7), -- Stun
-(22109, 4408, 12), -- HP Increase (4x)
-(22109, 4409, 1), -- MP Increase (1x)
-(22109, 4410, 14), -- Strong P. Atk.
-(22109, 4411, 11), -- Average M. Atk.
-(22109, 4412, 14), -- Strong P. Def.
-(22109, 4413, 11), -- Average M. Def.
-(22109, 4414, 1), -- Heavy Armor Type
-(22109, 4415, 3), -- One-handed Sword
-(22109, 4416, 6), -- Humanoids
-(22109, 4417, 29), -- Humanoids
+(22109, 4032, 7), -- NPC Strike
+(22109, 4072, 7), -- Shock
+(22109, 4408, 12), -- HP Modifiers
+(22109, 4409, 1), -- MP Modifiers
+(22109, 4410, 14), -- P. Atk. Modifiers
+(22109, 4411, 11), -- M. Atk. Modifiers
+(22109, 4412, 14), -- P. Def. Modifiers
+(22109, 4413, 11), -- M. Def. Modifiers
+(22109, 4414, 1), -- Armor Type
+(22109, 4415, 3), -- Weapon Type
+(22109, 4416, 6), -- Races
+(22109, 4417, 29), -- Race Types
 (22109, 4435, 5), -- Greater Resist Stun
 (22109, 4438, 5), -- Greater Resist Sleep
 (22109, 4439, 5), -- Greater Resist Hold
-(22109, 4789, 3), -- High Level
+(22109, 4789, 3), -- NPC High Level
 -- Male Spiked Stakato
-(22110, 4030, 3), -- Might
-(22110, 4232, 7), -- Whirlwind
-(22110, 4408, 12), -- HP Increase (4x)
-(22110, 4409, 1), -- MP Increase (1x)
-(22110, 4410, 16), -- Very Strong P. Atk.
-(22110, 4411, 11), -- Average M. Atk.
-(22110, 4412, 14), -- Strong P. Def.
-(22110, 4413, 11), -- Average M. Def.
-(22110, 4414, 1), -- Heavy Armor Type
-(22110, 4415, 3), -- One-handed Sword
-(22110, 4416, 6), -- Humanoids
-(22110, 4417, 29), -- Humanoids
+(22110, 4030, 3), -- NPC Clan Might
+(22110, 4232, 7), -- NPC AE Strike
+(22110, 4408, 12), -- HP Modifiers
+(22110, 4409, 1), -- MP Modifiers
+(22110, 4410, 16), -- P. Atk. Modifiers
+(22110, 4411, 11), -- M. Atk. Modifiers
+(22110, 4412, 14), -- P. Def. Modifiers
+(22110, 4413, 11), -- M. Def. Modifiers
+(22110, 4414, 1), -- Armor Type
+(22110, 4415, 3), -- Weapon Type
+(22110, 4416, 6), -- Races
+(22110, 4417, 29), -- Race Types
 (22110, 4435, 5), -- Greater Resist Stun
 (22110, 4438, 5), -- Greater Resist Sleep
 (22110, 4439, 5), -- Greater Resist Hold
-(22110, 4571, 7), -- Blazing Circle
-(22110, 4789, 3), -- High Level
+(22110, 4571, 7), -- NPC Blazing Circle
+(22110, 4789, 3), -- NPC High Level
 -- Spiked Stakato Sorcerer
-(22111, 4257, 7), -- Hydro Blast
-(22111, 4408, 12), -- HP Increase (4x)
-(22111, 4409, 1), -- MP Increase (1x)
-(22111, 4410, 11), -- Average P. Atk.
-(22111, 4411, 14), -- Strong M. Atk.
-(22111, 4412, 11), -- Average P. Def.
-(22111, 4413, 14), -- Strong M. Def.
-(22111, 4414, 3), -- Light Armor Type
-(22111, 4415, 7), -- Daggers
-(22111, 4416, 6), -- Humanoids
-(22111, 4417, 29), -- Humanoids
-(22111, 4563, 7), -- Solar Flare
-(22111, 4789, 4), -- High Level
+(22111, 4257, 7), -- NPC Hydroblast - Magic
+(22111, 4408, 12), -- HP Modifiers
+(22111, 4409, 1), -- MP Modifiers
+(22111, 4410, 11), -- P. Atk. Modifiers
+(22111, 4411, 14), -- M. Atk. Modifiers
+(22111, 4412, 11), -- P. Def. Modifiers
+(22111, 4413, 14), -- M. Def. Modifiers
+(22111, 4414, 3), -- Armor Type
+(22111, 4415, 7), -- Weapon Type
+(22111, 4416, 6), -- Races
+(22111, 4417, 29), -- Race Types
+(22111, 4563, 7), -- NPC Solar Flare - Magic
+(22111, 4789, 4), -- NPC High Level
 -- Cannibalistic Stakato Follower 
-(22112, 4072, 8), -- Stun
-(22112, 4232, 8), -- Whirlwind
-(22112, 4408, 12), -- HP Increase (4x)
-(22112, 4409, 1), -- MP Increase (1x)
-(22112, 4410, 14), -- Strong P. Atk.
-(22112, 4411, 11), -- Average M. Atk.
-(22112, 4412, 14), -- Strong P. Def.
-(22112, 4413, 11), -- Average M. Def.
-(22112, 4414, 1), -- Heavy Armor Type
-(22112, 4415, 3), -- One-handed Sword
-(22112, 4416, 6), -- Humanoids
-(22112, 4417, 29), -- Humanoids
+(22112, 4072, 8), -- Shock
+(22112, 4232, 8), -- NPC AE Strike
+(22112, 4408, 12), -- HP Modifiers
+(22112, 4409, 1), -- MP Modifiers
+(22112, 4410, 14), -- P. Atk. Modifiers
+(22112, 4411, 11), -- M. Atk. Modifiers
+(22112, 4412, 14), -- P. Def. Modifiers
+(22112, 4413, 11), -- M. Def. Modifiers
+(22112, 4414, 1), -- Armor Type
+(22112, 4415, 3), -- Weapon Type
+(22112, 4416, 6), -- Races
+(22112, 4417, 29), -- Race Types
 (22112, 4435, 5), -- Greater Resist Stun
 (22112, 4438, 5), -- Greater Resist Sleep
 (22112, 4439, 5), -- Greater Resist Hold
-(22112, 4789, 3), -- High Level
+(22112, 4789, 3), -- NPC High Level
 -- Cannibalistic Stakato Leader
-(22113, 4028, 3), -- Might
-(22113, 4073, 8), -- Stun
-(22113, 4408, 12), -- HP Increase (4x)
-(22113, 4409, 1), -- MP Increase (1x)
-(22113, 4410, 14), -- Strong P. Atk.
-(22113, 4411, 11), -- Average M. Atk.
-(22113, 4412, 14), -- Strong P. Def.
-(22113, 4413, 11), -- Average M. Def.
-(22113, 4414, 1), -- Heavy Armor Type
-(22113, 4415, 5), -- Blunt Weapons
-(22113, 4416, 6), -- Humanoids
-(22113, 4417, 29), -- Humanoids
+(22113, 4028, 3), -- NPC Might
+(22113, 4073, 8), -- Shock
+(22113, 4408, 12), -- HP Modifiers
+(22113, 4409, 1), -- MP Modifiers
+(22113, 4410, 14), -- P. Atk. Modifiers
+(22113, 4411, 11), -- M. Atk. Modifiers
+(22113, 4412, 14), -- P. Def. Modifiers
+(22113, 4413, 11), -- M. Def. Modifiers
+(22113, 4414, 1), -- Armor Type
+(22113, 4415, 5), -- Weapon Type
+(22113, 4416, 6), -- Races
+(22113, 4417, 29), -- Race Types
 (22113, 4435, 5), -- Greater Resist Stun
 (22113, 4438, 5), -- Greater Resist Sleep
 (22113, 4439, 5), -- Greater Resist Hold
-(22113, 4484, 1), -- Follower Devouring
-(22113, 4485, 1), -- Follower Devouring
-(22113, 4789, 4), -- High Level
+(22113, 4484, 1), -- Eating Follower Heal
+(22113, 4485, 1), -- Eating Follower
+(22113, 4789, 4), -- NPC High Level
 -- Cannibalistic Stakato Leader 
-(22114, 4029, 3), -- Shield
-(22114, 4072, 8), -- Stun
-(22114, 4408, 12), -- HP Increase (4x)
-(22114, 4409, 1), -- MP Increase (1x)
-(22114, 4410, 16), -- Very Strong P. Atk.
-(22114, 4411, 11), -- Average M. Atk.
-(22114, 4412, 14), -- Strong P. Def.
-(22114, 4413, 11), -- Average M. Def.
-(22114, 4414, 1), -- Heavy Armor Type
-(22114, 4415, 5), -- Blunt Weapons
-(22114, 4416, 6), -- Humanoids
-(22114, 4417, 29), -- Humanoids
+(22114, 4029, 3), -- NPC Shield
+(22114, 4072, 8), -- Shock
+(22114, 4408, 12), -- HP Modifiers
+(22114, 4409, 1), -- MP Modifiers
+(22114, 4410, 16), -- P. Atk. Modifiers
+(22114, 4411, 11), -- M. Atk. Modifiers
+(22114, 4412, 14), -- P. Def. Modifiers
+(22114, 4413, 11), -- M. Def. Modifiers
+(22114, 4414, 1), -- Armor Type
+(22114, 4415, 5), -- Weapon Type
+(22114, 4416, 6), -- Races
+(22114, 4417, 29), -- Race Types
 (22114, 4435, 5), -- Greater Resist Stun
 (22114, 4438, 5), -- Greater Resist Sleep
 (22114, 4439, 5), -- Greater Resist Hold
-(22114, 4571, 8), -- Blazing Circle
-(22114, 4789, 4), -- High Level
+(22114, 4571, 8), -- NPC Blazing Circle
+(22114, 4789, 4), -- NPC High Level
 -- Spiked Stakato Soldier
-(22115, 4032, 8), -- Power Strike
-(22115, 4408, 12), -- HP Increase (4x)
-(22115, 4409, 1), -- MP Increase (1x)
-(22115, 4410, 14), -- Strong P. Atk.
-(22115, 4411, 11), -- Average M. Atk.
-(22115, 4412, 14), -- Strong P. Def.
-(22115, 4413, 11), -- Average M. Def.
-(22115, 4414, 1), -- Heavy Armor Type
-(22115, 4415, 5), -- Blunt Weapons
-(22115, 4416, 6), -- Humanoids
-(22115, 4417, 29), -- Humanoids
-(22115, 4789, 4), -- High Level
+(22115, 4032, 8), -- NPC Strike
+(22115, 4408, 12), -- HP Modifiers
+(22115, 4409, 1), -- MP Modifiers
+(22115, 4410, 14), -- P. Atk. Modifiers
+(22115, 4411, 11), -- M. Atk. Modifiers
+(22115, 4412, 14), -- P. Def. Modifiers
+(22115, 4413, 11), -- M. Def. Modifiers
+(22115, 4414, 1), -- Armor Type
+(22115, 4415, 5), -- Weapon Type
+(22115, 4416, 6), -- Races
+(22115, 4417, 29), -- Race Types
+(22115, 4789, 4), -- NPC High Level
 -- Spiked Stakato Drone
-(22116, 4232, 8), -- Whirlwind
-(22116, 4408, 12), -- HP Increase (4x)
-(22116, 4409, 1), -- MP Increase (1x)
-(22116, 4410, 14), -- Strong P. Atk.
-(22116, 4411, 11), -- Average M. Atk.
-(22116, 4412, 14), -- Strong P. Def.
-(22116, 4413, 11), -- Average M. Def.
-(22116, 4414, 1), -- Heavy Armor Type
-(22116, 4415, 3), -- One-handed Sword
-(22116, 4416, 6), -- Humanoids
-(22116, 4417, 29), -- Humanoids
-(22116, 4789, 5), -- High Level
+(22116, 4232, 8), -- NPC AE Strike
+(22116, 4408, 12), -- HP Modifiers
+(22116, 4409, 1), -- MP Modifiers
+(22116, 4410, 14), -- P. Atk. Modifiers
+(22116, 4411, 11), -- M. Atk. Modifiers
+(22116, 4412, 14), -- P. Def. Modifiers
+(22116, 4413, 11), -- M. Def. Modifiers
+(22116, 4414, 1), -- Armor Type
+(22116, 4415, 3), -- Weapon Type
+(22116, 4416, 6), -- Races
+(22116, 4417, 29), -- Race Types
+(22116, 4789, 5), -- NPC High Level
 -- Spiked Stakato Captain
-(22117, 4032, 8), -- Power Strike
-(22117, 4408, 12), -- HP Increase (4x)
-(22117, 4409, 1), -- MP Increase (1x)
-(22117, 4410, 14), -- Strong P. Atk.
-(22117, 4411, 11), -- Average M. Atk.
-(22117, 4412, 14), -- Strong P. Def.
-(22117, 4413, 11), -- Average M. Def.
-(22117, 4414, 1), -- Heavy Armor Type
-(22117, 4415, 7), -- Daggers
-(22117, 4416, 6), -- Humanoids
-(22117, 4417, 29), -- Humanoids
-(22117, 4789, 5), -- High Level
+(22117, 4032, 8), -- NPC Strike
+(22117, 4408, 12), -- HP Modifiers
+(22117, 4409, 1), -- MP Modifiers
+(22117, 4410, 14), -- P. Atk. Modifiers
+(22117, 4411, 11), -- M. Atk. Modifiers
+(22117, 4412, 14), -- P. Def. Modifiers
+(22117, 4413, 11), -- M. Def. Modifiers
+(22117, 4414, 1), -- Armor Type
+(22117, 4415, 7), -- Weapon Type
+(22117, 4416, 6), -- Races
+(22117, 4417, 29), -- Race Types
+(22117, 4789, 5), -- NPC High Level
 -- Spiked Stakato Nurse
-(22118, 4078, 8), -- Flame Strike
-(22118, 4408, 12), -- HP Increase (4x)
-(22118, 4409, 1), -- MP Increase (1x)
-(22118, 4410, 11), -- Average P. Atk.
-(22118, 4411, 14), -- Strong M. Atk.
-(22118, 4412, 11), -- Average P. Def.
-(22118, 4413, 14), -- Strong M. Def.
-(22118, 4414, 1), -- Heavy Armor Type
-(22118, 4415, 3), -- One-handed Sword
-(22118, 4416, 6), -- Humanoids
-(22118, 4417, 29), -- Humanoids
+(22118, 4078, 8), -- NPC Flamestrike
+(22118, 4408, 12), -- HP Modifiers
+(22118, 4409, 1), -- MP Modifiers
+(22118, 4410, 11), -- P. Atk. Modifiers
+(22118, 4411, 14), -- M. Atk. Modifiers
+(22118, 4412, 11), -- P. Def. Modifiers
+(22118, 4413, 14), -- M. Def. Modifiers
+(22118, 4414, 1), -- Armor Type
+(22118, 4415, 3), -- Weapon Type
+(22118, 4416, 6), -- Races
+(22118, 4417, 29), -- Race Types
 (22118, 4435, 5), -- Greater Resist Stun
 (22118, 4438, 5), -- Greater Resist Sleep
 (22118, 4439, 5), -- Greater Resist Hold
-(22118, 4571, 8), -- Blazing Circle
-(22118, 4789, 6), -- High Level
+(22118, 4571, 8), -- NPC Blazing Circle
+(22118, 4789, 6), -- NPC High Level
 -- Spiked Stakato Nurse
-(22119, 4078, 8), -- Flame Strike
-(22119, 4100, 8), -- Prominence
-(22119, 4408, 12), -- HP Increase (4x)
-(22119, 4409, 1), -- MP Increase (1x)
-(22119, 4410, 11), -- Average P. Atk.
-(22119, 4411, 16), -- Very Strong M. Atk.
-(22119, 4412, 11), -- Average P. Def.
-(22119, 4413, 14), -- Strong M. Def.
-(22119, 4414, 1), -- Heavy Armor Type
-(22119, 4415, 3), -- One-handed Sword
-(22119, 4416, 6), -- Humanoids
-(22119, 4417, 29), -- Humanoids
+(22119, 4078, 8), -- NPC Flamestrike
+(22119, 4100, 8), -- NPC Prominence
+(22119, 4408, 12), -- HP Modifiers
+(22119, 4409, 1), -- MP Modifiers
+(22119, 4410, 11), -- P. Atk. Modifiers
+(22119, 4411, 16), -- M. Atk. Modifiers
+(22119, 4412, 11), -- P. Def. Modifiers
+(22119, 4413, 14), -- M. Def. Modifiers
+(22119, 4414, 1), -- Armor Type
+(22119, 4415, 3), -- Weapon Type
+(22119, 4416, 6), -- Races
+(22119, 4417, 29), -- Race Types
 (22119, 4435, 5), -- Greater Resist Stun
 (22119, 4438, 5), -- Greater Resist Sleep
 (22119, 4439, 5), -- Greater Resist Hold
-(22119, 4486, 7), -- Decrease P. Def.
-(22119, 4789, 6), -- High Level
+(22119, 4486, 7), -- Decrease P. Def
+(22119, 4789, 6), -- NPC High Level
 -- Spiked Stakato Baby
-(22120, 4244, 8), -- Wild Sweep
-(22120, 4408, 12), -- HP Increase (4x)
-(22120, 4409, 1), -- MP Increase (1x)
-(22120, 4410, 14), -- Strong P. Atk.
-(22120, 4411, 11), -- Average M. Atk.
-(22120, 4412, 14), -- Strong P. Def.
-(22120, 4413, 11), -- Average M. Def.
-(22120, 4414, 1), -- Heavy Armor Type
-(22120, 4415, 3), -- One-handed Sword
-(22120, 4416, 6), -- Humanoids
-(22120, 4417, 29), -- Humanoids
+(22120, 4244, 8), -- NPC Wild Sweep
+(22120, 4408, 12), -- HP Modifiers
+(22120, 4409, 1), -- MP Modifiers
+(22120, 4410, 14), -- P. Atk. Modifiers
+(22120, 4411, 11), -- M. Atk. Modifiers
+(22120, 4412, 14), -- P. Def. Modifiers
+(22120, 4413, 11), -- M. Def. Modifiers
+(22120, 4414, 1), -- Armor Type
+(22120, 4415, 3), -- Weapon Type
+(22120, 4416, 6), -- Races
+(22120, 4417, 29), -- Race Types
 (22120, 4435, 5), -- Greater Resist Stun
 (22120, 4438, 5), -- Greater Resist Sleep
 (22120, 4439, 5), -- Greater Resist Hold
-(22120, 4585, 3), -- Berserker Spirit
-(22120, 4789, 6), -- High Level
+(22120, 4585, 3), -- NPC Clan Buff - Berserk Might
+(22120, 4789, 6), -- NPC High Level
 -- Spiked Stakato Shaman
 (22121, 4036, 8), -- Poison
-(22121, 4158, 8), -- Prominence
-(22121, 4408, 12), -- HP Increase (4x)
-(22121, 4409, 1), -- MP Increase (1x)
-(22121, 4410, 11), -- Average P. Atk.
-(22121, 4411, 14), -- Strong M. Atk.
-(22121, 4412, 11), -- Average P. Def.
-(22121, 4413, 14), -- Strong M. Def.
-(22121, 4414, 3), -- Light Armor Type
-(22121, 4415, 7), -- Daggers
-(22121, 4416, 6), -- Humanoids
-(22121, 4417, 29), -- Humanoids
-(22121, 4563, 8), -- Solar Flare
-(22121, 4789, 6), -- High Level
+(22121, 4158, 8), -- NPC Prominence - Magic
+(22121, 4408, 12), -- HP Modifiers
+(22121, 4409, 1), -- MP Modifiers
+(22121, 4410, 11), -- P. Atk. Modifiers
+(22121, 4411, 14), -- M. Atk. Modifiers
+(22121, 4412, 11), -- P. Def. Modifiers
+(22121, 4413, 14), -- M. Def. Modifiers
+(22121, 4414, 3), -- Armor Type
+(22121, 4415, 7), -- Weapon Type
+(22121, 4416, 6), -- Races
+(22121, 4417, 29), -- Race Types
+(22121, 4563, 8), -- NPC Solar Flare - Magic
+(22121, 4789, 6), -- NPC High Level
 -- Monastic Pilgrim
-(22122, 4032, 9), -- Power Strike
-(22122, 4065, 9), -- Heal
-(22122, 4408, 12), -- HP Increase (4x)
-(22122, 4409, 1), -- MP Increase (1x)
-(22122, 4410, 11), -- Average P. Atk.
-(22122, 4411, 11), -- Average M. Atk.
-(22122, 4412, 11), -- Average P. Def.
-(22122, 4413, 11), -- Average M. Def.
-(22122, 4414, 2), -- Standard Type
-(22122, 4415, 3), -- One-handed Sword
-(22122, 4416, 8), -- Angels
-(22122, 4417, 16), -- Angels
-(22122, 4789, 6), -- High Level
+(22122, 4032, 9), -- NPC Strike
+(22122, 4065, 9), -- NPC Heal
+(22122, 4408, 12), -- HP Modifiers
+(22122, 4409, 1), -- MP Modifiers
+(22122, 4410, 11), -- P. Atk. Modifiers
+(22122, 4411, 11), -- M. Atk. Modifiers
+(22122, 4412, 11), -- P. Def. Modifiers
+(22122, 4413, 11), -- M. Def. Modifiers
+(22122, 4414, 2), -- Armor Type
+(22122, 4415, 3), -- Weapon Type
+(22122, 4416, 8), -- Races
+(22122, 4417, 16), -- Race Types
+(22122, 4789, 6), -- NPC High Level
 -- Monastic Crusader
-(22123, 4032, 9), -- Power Strike
-(22123, 4408, 12), -- HP Increase (4x)
-(22123, 4409, 1), -- MP Increase (1x)
-(22123, 4410, 11), -- Average P. Atk.
-(22123, 4411, 11), -- Average M. Atk.
-(22123, 4412, 11), -- Average P. Def.
-(22123, 4413, 11), -- Average M. Def.
-(22123, 4414, 1), -- Heavy Armor Type
-(22123, 4415, 11), -- Spears
-(22123, 4416, 8), -- Angels
-(22123, 4417, 16), -- Angels
-(22123, 4789, 9), -- High Level
+(22123, 4032, 9), -- NPC Strike
+(22123, 4408, 12), -- HP Modifiers
+(22123, 4409, 1), -- MP Modifiers
+(22123, 4410, 11), -- P. Atk. Modifiers
+(22123, 4411, 11), -- M. Atk. Modifiers
+(22123, 4412, 11), -- P. Def. Modifiers
+(22123, 4413, 11), -- M. Def. Modifiers
+(22123, 4414, 1), -- Armor Type
+(22123, 4415, 11), -- Weapon Type
+(22123, 4416, 8), -- Races
+(22123, 4417, 16), -- Race Types
+(22123, 4789, 9), -- NPC High Level
 -- Solina Brother
-(22124, 4032, 9), -- Power Strike
-(22124, 4408, 12), -- HP Increase (4x)
-(22124, 4409, 1), -- MP Increase (1x)
-(22124, 4410, 16), -- Very Strong P. Atk.
-(22124, 4411, 11), -- Average M. Atk.
-(22124, 4412, 11), -- Average P. Def.
-(22124, 4413, 11), -- Average M. Def.
-(22124, 4414, 2), -- Standard Type
-(22124, 4415, 5), -- Blunt Weapons
-(22124, 4416, 8), -- Angels
-(22124, 4417, 17), -- Angels
+(22124, 4032, 9), -- NPC Strike
+(22124, 4408, 12), -- HP Modifiers
+(22124, 4409, 1), -- MP Modifiers
+(22124, 4410, 16), -- P. Atk. Modifiers
+(22124, 4411, 11), -- M. Atk. Modifiers
+(22124, 4412, 11), -- P. Def. Modifiers
+(22124, 4413, 11), -- M. Def. Modifiers
+(22124, 4414, 2), -- Armor Type
+(22124, 4415, 5), -- Weapon Type
+(22124, 4416, 8), -- Races
+(22124, 4417, 17), -- Race Types
 (22124, 4467, 3), -- Surrender To Light
-(22124, 4574, 9), -- Sonic Storm
+(22124, 4574, 9), -- NPC Sonic Storm
 (22124, 4589, 10), -- Decrease Speed
-(22124, 4789, 9), -- High Level
+(22124, 4789, 9), -- NPC High Level
 -- Solina Lay Brother
-(22125, 4160, 9), -- Aura Burn
-(22125, 4408, 12), -- HP Increase (4x)
-(22125, 4409, 1), -- MP Increase (1x)
-(22125, 4410, 11), -- Average P. Atk.
-(22125, 4411, 16), -- Very Strong M. Atk.
-(22125, 4412, 11), -- Average P. Def.
-(22125, 4413, 11), -- Average M. Def.
-(22125, 4414, 2), -- Standard Type
-(22125, 4415, 5), -- Blunt Weapons
-(22125, 4416, 8), -- Angels
-(22125, 4417, 17), -- Angels
-(22125, 4563, 9), -- Solar Flare
-(22125, 4613, 9), -- Clan Heal
-(22125, 4789, 9), -- High Level
+(22125, 4160, 9), -- NPC Aura Burn - Magic
+(22125, 4408, 12), -- HP Modifiers
+(22125, 4409, 1), -- MP Modifiers
+(22125, 4410, 11), -- P. Atk. Modifiers
+(22125, 4411, 16), -- M. Atk. Modifiers
+(22125, 4412, 11), -- P. Def. Modifiers
+(22125, 4413, 11), -- M. Def. Modifiers
+(22125, 4414, 2), -- Armor Type
+(22125, 4415, 5), -- Weapon Type
+(22125, 4416, 8), -- Races
+(22125, 4417, 17), -- Race Types
+(22125, 4563, 9), -- NPC Solar Flare - Magic
+(22125, 4613, 9), -- NPC Clan Heal
+(22125, 4789, 9), -- NPC High Level
 -- Silent Seeker
-(22126, 4032, 9), -- Power Strike
-(22126, 4408, 12), -- HP Increase (4x)
-(22126, 4409, 1), -- MP Increase (1x)
-(22126, 4410, 16), -- Very Strong P. Atk.
-(22126, 4411, 11), -- Average M. Atk.
-(22126, 4412, 11), -- Average P. Def.
-(22126, 4413, 11), -- Average M. Def.
-(22126, 4414, 2), -- Standard Type
-(22126, 4415, 3), -- One-handed Sword
-(22126, 4416, 8), -- Angels
-(22126, 4417, 17), -- Angels
+(22126, 4032, 9), -- NPC Strike
+(22126, 4408, 12), -- HP Modifiers
+(22126, 4409, 1), -- MP Modifiers
+(22126, 4410, 16), -- P. Atk. Modifiers
+(22126, 4411, 11), -- M. Atk. Modifiers
+(22126, 4412, 11), -- P. Def. Modifiers
+(22126, 4413, 11), -- M. Def. Modifiers
+(22126, 4414, 2), -- Armor Type
+(22126, 4415, 3), -- Weapon Type
+(22126, 4416, 8), -- Races
+(22126, 4417, 17), -- Race Types
 (22126, 4467, 3), -- Surrender To Light
-(22126, 4574, 9), -- Sonic Storm
+(22126, 4574, 9), -- NPC Sonic Storm
 (22126, 4589, 10), -- Decrease Speed
-(22126, 4789, 9), -- High Level
+(22126, 4789, 9), -- NPC High Level
 -- Silent Brother
-(22127, 4160, 9), -- Aura Burn
-(22127, 4408, 12), -- HP Increase (4x)
-(22127, 4409, 1), -- MP Increase (1x)
-(22127, 4410, 11), -- Average P. Atk.
-(22127, 4411, 16), -- Very Strong M. Atk.
-(22127, 4412, 11), -- Average P. Def.
-(22127, 4413, 11), -- Average M. Def.
-(22127, 4414, 2), -- Standard Type
-(22127, 4415, 3), -- One-handed Sword
-(22127, 4416, 8), -- Angels
-(22127, 4417, 17), -- Angels
-(22127, 4563, 9), -- Solar Flare
-(22127, 4789, 9), -- High Level
+(22127, 4160, 9), -- NPC Aura Burn - Magic
+(22127, 4408, 12), -- HP Modifiers
+(22127, 4409, 1), -- MP Modifiers
+(22127, 4410, 11), -- P. Atk. Modifiers
+(22127, 4411, 16), -- M. Atk. Modifiers
+(22127, 4412, 11), -- P. Def. Modifiers
+(22127, 4413, 11), -- M. Def. Modifiers
+(22127, 4414, 2), -- Armor Type
+(22127, 4415, 3), -- Weapon Type
+(22127, 4416, 8), -- Races
+(22127, 4417, 17), -- Race Types
+(22127, 4563, 9), -- NPC Solar Flare - Magic
+(22127, 4789, 9), -- NPC High Level
 (22127, 5021, 9), -- Inspiration of Einhasad
 -- Monastic Guardian
-(22128, 4408, 1), -- HP Increase (1x)
-(22128, 4409, 1), -- MP Increase (1x)
-(22128, 4410, 13), -- Slightly Strong P. Atk.
-(22128, 4411, 11), -- Average M. Atk.
-(22128, 4412, 11), -- Average P. Def.
-(22128, 4413, 11), -- Average M. Def.
-(22128, 4414, 3), -- Light Armor Type
-(22128, 4415, 3), -- One-handed Sword
-(22128, 4416, 8), -- Angels
-(22128, 4417, 16), -- Angels
+(22128, 4408, 1), -- HP Modifiers
+(22128, 4409, 1), -- MP Modifiers
+(22128, 4410, 13), -- P. Atk. Modifiers
+(22128, 4411, 11), -- M. Atk. Modifiers
+(22128, 4412, 11), -- P. Def. Modifiers
+(22128, 4413, 11), -- M. Def. Modifiers
+(22128, 4414, 3), -- Armor Type
+(22128, 4415, 3), -- Weapon Type
+(22128, 4416, 8), -- Races
+(22128, 4417, 16), -- Race Types
 (22128, 4438, 4), -- Greater Resist Sleep
 (22128, 4439, 4), -- Greater Resist Hold
-(22128, 4614, 8), -- Death Bomb
-(22128, 4789, 9), -- High Level
+(22128, 4614, 8), -- NPC Death Bomb
+(22128, 4789, 9), -- NPC High Level
 -- Warrior Monk
-(22129, 4032, 9), -- Power Strike
-(22129, 4408, 12), -- HP Increase (4x)
-(22129, 4409, 1), -- MP Increase (1x)
-(22129, 4410, 16), -- Very Strong P. Atk.
-(22129, 4411, 11), -- Average M. Atk.
-(22129, 4412, 11), -- Average P. Def.
-(22129, 4413, 11), -- Average M. Def.
-(22129, 4414, 1), -- Heavy Armor Type
-(22129, 4415, 3), -- One-handed Sword
-(22129, 4416, 8), -- Angels
-(22129, 4417, 17), -- Angels
+(22129, 4032, 9), -- NPC Strike
+(22129, 4408, 12), -- HP Modifiers
+(22129, 4409, 1), -- MP Modifiers
+(22129, 4410, 16), -- P. Atk. Modifiers
+(22129, 4411, 11), -- M. Atk. Modifiers
+(22129, 4412, 11), -- P. Def. Modifiers
+(22129, 4413, 11), -- M. Def. Modifiers
+(22129, 4414, 1), -- Armor Type
+(22129, 4415, 3), -- Weapon Type
+(22129, 4416, 8), -- Races
+(22129, 4417, 17), -- Race Types
 (22129, 4467, 3), -- Surrender To Light
-(22129, 4574, 9), -- Sonic Storm
+(22129, 4574, 9), -- NPC Sonic Storm
 (22129, 4643, 10), -- Decrease Speed
-(22129, 4789, 9), -- High Level
+(22129, 4789, 9), -- NPC High Level
 -- Divine Advocate
-(22130, 4065, 6), -- Heal
-(22130, 4408, 12), -- HP Increase (4x)
-(22130, 4409, 1), -- MP Increase (1x)
-(22130, 4410, 11), -- Average P. Atk.
-(22130, 4411, 16), -- Very Strong M. Atk.
-(22130, 4412, 11), -- Average P. Def.
-(22130, 4413, 17), -- Very Strong M. Def.
-(22130, 4414, 2), -- Standard Type
-(22130, 4415, 3), -- One-handed Sword
-(22130, 4416, 8), -- Angels
-(22130, 4417, 16), -- Angels
-(22130, 4789, 10), -- High Level
+(22130, 4065, 6), -- NPC Heal
+(22130, 4408, 12), -- HP Modifiers
+(22130, 4409, 1), -- MP Modifiers
+(22130, 4410, 11), -- P. Atk. Modifiers
+(22130, 4411, 16), -- M. Atk. Modifiers
+(22130, 4412, 11), -- P. Def. Modifiers
+(22130, 4413, 17), -- M. Def. Modifiers
+(22130, 4414, 2), -- Armor Type
+(22130, 4415, 3), -- Weapon Type
+(22130, 4416, 8), -- Races
+(22130, 4417, 16), -- Race Types
+(22130, 4789, 10), -- NPC High Level
 -- Pilgrim of Light
-(22131, 4028, 3), -- Might
-(22131, 4029, 3), -- Shield
-(22131, 4074, 2), -- Haste
-(22131, 4099, 2), -- Berserker Spirit
-(22131, 4163, 10), -- Damage Shield
-(22131, 4408, 13), -- HP Increase (5x)
-(22131, 4409, 1), -- MP Increase (1x)
-(22131, 4410, 11), -- Average P. Atk.
-(22131, 4411, 15), -- Strong M. Atk.
-(22131, 4412, 11), -- Average P. Def.
-(22131, 4413, 17), -- Very Strong M. Def.
-(22131, 4414, 2); -- Standard Type
+(22131, 4028, 3), -- NPC Might
+(22131, 4029, 3), -- NPC Shield
+(22131, 4074, 2), -- NPC Haste
+(22131, 4099, 2), -- NPC Berserk
+(22131, 4163, 10), -- NPC Self Damage Shield
+(22131, 4408, 13), -- HP Modifiers
+(22131, 4409, 1), -- MP Modifiers
+(22131, 4410, 11), -- P. Atk. Modifiers
+(22131, 4411, 15), -- M. Atk. Modifiers
+(22131, 4412, 11), -- P. Def. Modifiers
+(22131, 4413, 17), -- M. Def. Modifiers
+(22131, 4414, 2); -- Armor Type
 
 INSERT INTO `npcskills` VALUES
-(22131, 4415, 5), -- Blunt Weapons
-(22131, 4416, 8), -- Angels
-(22131, 4417, 16), -- Angels
-(22131, 4789, 10), -- High Level
+(22131, 4415, 5), -- Weapon Type
+(22131, 4416, 8), -- Races
+(22131, 4417, 16), -- Race Types
+(22131, 4789, 10), -- NPC High Level
 -- Judge of Light
-(22132, 4065, 9), -- Heal
-(22132, 4408, 13), -- HP Increase (5x)
-(22132, 4409, 1), -- MP Increase (1x)
-(22132, 4410, 14), -- Strong P. Atk.
-(22132, 4411, 11), -- Average M. Atk.
-(22132, 4412, 11), -- Average P. Def.
-(22132, 4413, 11), -- Average M. Def.
-(22132, 4414, 2), -- Standard Type
-(22132, 4415, 5), -- Blunt Weapons
-(22132, 4416, 8), -- Angels
-(22132, 4417, 17), -- Angels
+(22132, 4065, 9), -- NPC Heal
+(22132, 4408, 13), -- HP Modifiers
+(22132, 4409, 1), -- MP Modifiers
+(22132, 4410, 14), -- P. Atk. Modifiers
+(22132, 4411, 11), -- M. Atk. Modifiers
+(22132, 4412, 11), -- P. Def. Modifiers
+(22132, 4413, 11), -- M. Def. Modifiers
+(22132, 4414, 2), -- Armor Type
+(22132, 4415, 5), -- Weapon Type
+(22132, 4416, 8), -- Races
+(22132, 4417, 17), -- Race Types
 (22132, 4491, 9), -- Holy Weapon
-(22132, 4789, 10), -- High Level
+(22132, 4789, 10), -- NPC High Level
 -- Guardian of the Grail
-(22133, 4408, 1), -- HP Increase (1x)
-(22133, 4409, 1), -- MP Increase (1x)
-(22133, 4410, 13), -- Slightly Strong P. Atk.
-(22133, 4411, 11), -- Average M. Atk.
-(22133, 4412, 11), -- Average P. Def.
-(22133, 4413, 11), -- Average M. Def.
-(22133, 4414, 3), -- Light Armor Type
-(22133, 4415, 7), -- Daggers
-(22133, 4416, 2), -- Magic Creatures
-(22133, 4417, 11), -- Magic Creatures
+(22133, 4408, 1), -- HP Modifiers
+(22133, 4409, 1), -- MP Modifiers
+(22133, 4410, 13), -- P. Atk. Modifiers
+(22133, 4411, 11), -- M. Atk. Modifiers
+(22133, 4412, 11), -- P. Def. Modifiers
+(22133, 4413, 11), -- M. Def. Modifiers
+(22133, 4414, 3), -- Armor Type
+(22133, 4415, 7), -- Weapon Type
+(22133, 4416, 2), -- Races
+(22133, 4417, 11), -- Race Types
 (22133, 4438, 4), -- Greater Resist Sleep
 (22133, 4439, 4), -- Greater Resist Hold
 (22133, 4488, 10), -- Hold
-(22133, 4489, 10), -- Death Bomb
-(22133, 4614, 8), -- Death Bomb
-(22133, 4671, 1), -- Teleport
-(22133, 4789, 10), -- High Level
+(22133, 4489, 10), -- NPC Death MP Bomb
+(22133, 4614, 8), -- NPC Death Bomb
+(22133, 4671, 1), -- AV - Teleport
+(22133, 4789, 10), -- NPC High Level
 -- Guardian of the Holy Land
-(22134, 4160, 9), -- Aura Burn
-(22134, 4408, 12), -- HP Increase (4x)
-(22134, 4409, 1), -- MP Increase (1x)
-(22134, 4410, 11), -- Average P. Atk.
-(22134, 4411, 16), -- Very Strong M. Atk.
-(22134, 4412, 11), -- Average P. Def.
-(22134, 4413, 11), -- Average M. Def.
-(22134, 4414, 2), -- Standard Type
-(22134, 4415, 5), -- Blunt Weapons
-(22134, 4416, 8), -- Angels
-(22134, 4417, 17), -- Angels
-(22134, 4563, 9), -- Solar Flare
-(22134, 4613, 9), -- Clan Heal
-(22134, 4789, 10), -- High Level
+(22134, 4160, 9), -- NPC Aura Burn - Magic
+(22134, 4408, 12), -- HP Modifiers
+(22134, 4409, 1), -- MP Modifiers
+(22134, 4410, 11), -- P. Atk. Modifiers
+(22134, 4411, 16), -- M. Atk. Modifiers
+(22134, 4412, 11), -- P. Def. Modifiers
+(22134, 4413, 11), -- M. Def. Modifiers
+(22134, 4414, 2), -- Armor Type
+(22134, 4415, 5), -- Weapon Type
+(22134, 4416, 8), -- Races
+(22134, 4417, 17), -- Race Types
+(22134, 4563, 9), -- NPC Solar Flare - Magic
+(22134, 4613, 9), -- NPC Clan Heal
+(22134, 4789, 10), -- NPC High Level
 -- Beholder of Light
-(22135, 4408, 14), -- HP Increase (6x)
-(22135, 4409, 1), -- MP Increase (1x)
-(22135, 4410, 16), -- Very Strong P. Atk.
-(22135, 4411, 11), -- Average M. Atk.
-(22135, 4412, 11), -- Average P. Def.
-(22135, 4413, 17), -- Very Strong M. Def.
-(22135, 4414, 2), -- Standard Type
-(22135, 4415, 11), -- Spears
-(22135, 4416, 8), -- Angels
-(22135, 4417, 17), -- Angels
-(22135, 4574, 9), -- Sonic Storm
-(22135, 4789, 10), -- High Level
+(22135, 4408, 14), -- HP Modifiers
+(22135, 4409, 1), -- MP Modifiers
+(22135, 4410, 16), -- P. Atk. Modifiers
+(22135, 4411, 11), -- M. Atk. Modifiers
+(22135, 4412, 11), -- P. Def. Modifiers
+(22135, 4413, 17), -- M. Def. Modifiers
+(22135, 4414, 2), -- Armor Type
+(22135, 4415, 11), -- Weapon Type
+(22135, 4416, 8), -- Races
+(22135, 4417, 17), -- Race Types
+(22135, 4574, 9), -- NPC Sonic Storm
+(22135, 4789, 10), -- NPC High Level
 -- Doorman Zombie
-(22136, 4408, 12), -- HP Increase (4x)
-(22136, 4409, 1), -- MP Increase (1x)
-(22136, 4410, 11), -- Average P. Atk.
-(22136, 4411, 15), -- Strong M. Atk.
-(22136, 4412, 11), -- Average P. Def.
-(22136, 4413, 11), -- Average M. Def.
-(22136, 4414, 3), -- Light Armor Type
-(22136, 4415, 5), -- Blunt Weapons
-(22136, 4416, 1), -- Undead
-(22136, 4417, 35), -- Undead
-(22136, 4789, 9), -- High Level
-(22136, 5043, 10), -- Super Sonic Blaster
+(22136, 4408, 12), -- HP Modifiers
+(22136, 4409, 1), -- MP Modifiers
+(22136, 4410, 11), -- P. Atk. Modifiers
+(22136, 4411, 15), -- M. Atk. Modifiers
+(22136, 4412, 11), -- P. Def. Modifiers
+(22136, 4413, 11), -- M. Def. Modifiers
+(22136, 4414, 3), -- Armor Type
+(22136, 4415, 5), -- Weapon Type
+(22136, 4416, 1), -- Races
+(22136, 4417, 35), -- Race Types
+(22136, 4789, 9), -- NPC High Level
+(22136, 5043, 10), -- NPC Super Sonic Blaster
 -- Penance Guard
-(22137, 4032, 9), -- Power Strike
-(22137, 4253, 9), -- Blaze
-(22137, 4408, 9), -- HP Increase (1/2x)
-(22137, 4409, 1), -- MP Increase (1x)
-(22137, 4410, 11), -- Average P. Atk.
-(22137, 4411, 11), -- Average M. Atk.
-(22137, 4412, 11), -- Average P. Def.
-(22137, 4413, 11), -- Average M. Def.
-(22137, 4414, 2), -- Standard Type
-(22137, 4415, 3), -- One-handed Sword
-(22137, 4416, 1), -- Undead
-(22137, 4417, 35), -- Undead
-(22137, 4789, 9), -- High Level
+(22137, 4032, 9), -- NPC Strike
+(22137, 4253, 9), -- NPC Blaze - Slow
+(22137, 4408, 9), -- HP Modifiers
+(22137, 4409, 1), -- MP Modifiers
+(22137, 4410, 11), -- P. Atk. Modifiers
+(22137, 4411, 11), -- M. Atk. Modifiers
+(22137, 4412, 11), -- P. Def. Modifiers
+(22137, 4413, 11), -- M. Def. Modifiers
+(22137, 4414, 2), -- Armor Type
+(22137, 4415, 3), -- Weapon Type
+(22137, 4416, 1), -- Races
+(22137, 4417, 35), -- Race Types
+(22137, 4789, 9), -- NPC High Level
 -- Chapel Guard
-(22138, 4032, 9), -- Power Strike
-(22138, 4253, 9), -- Blaze
-(22138, 4408, 9), -- HP Increase (1/2x)
-(22138, 4409, 1), -- MP Increase (1x)
-(22138, 4410, 11), -- Average P. Atk.
-(22138, 4411, 11), -- Average M. Atk.
-(22138, 4412, 11), -- Average P. Def.
-(22138, 4413, 11), -- Average M. Def.
-(22138, 4414, 2), -- Standard Type
-(22138, 4415, 5), -- Blunt Weapons
-(22138, 4416, 1), -- Undead
-(22138, 4417, 35), -- Undead
-(22138, 4789, 10), -- High Level
+(22138, 4032, 9), -- NPC Strike
+(22138, 4253, 9), -- NPC Blaze - Slow
+(22138, 4408, 9), -- HP Modifiers
+(22138, 4409, 1), -- MP Modifiers
+(22138, 4410, 11), -- P. Atk. Modifiers
+(22138, 4411, 11), -- M. Atk. Modifiers
+(22138, 4412, 11), -- P. Def. Modifiers
+(22138, 4413, 11), -- M. Def. Modifiers
+(22138, 4414, 2), -- Armor Type
+(22138, 4415, 5), -- Weapon Type
+(22138, 4416, 1), -- Races
+(22138, 4417, 35), -- Race Types
+(22138, 4789, 10), -- NPC High Level
 -- Old Aristocrat's Soldier
-(22139, 4408, 12), -- HP Increase (4x)
-(22139, 4409, 1), -- MP Increase (1x)
-(22139, 4410, 11), -- Average P. Atk.
-(22139, 4411, 11), -- Average M. Atk.
-(22139, 4412, 11), -- Average P. Def.
-(22139, 4413, 11), -- Average M. Def.
-(22139, 4414, 1), -- Heavy Armor Type
-(22139, 4415, 5), -- Blunt Weapons
-(22139, 4416, 1), -- Undead
-(22139, 4417, 35), -- Undead
+(22139, 4408, 12), -- HP Modifiers
+(22139, 4409, 1), -- MP Modifiers
+(22139, 4410, 11), -- P. Atk. Modifiers
+(22139, 4411, 11), -- M. Atk. Modifiers
+(22139, 4412, 11), -- P. Def. Modifiers
+(22139, 4413, 11), -- M. Def. Modifiers
+(22139, 4414, 1), -- Armor Type
+(22139, 4415, 5), -- Weapon Type
+(22139, 4416, 1), -- Races
+(22139, 4417, 35), -- Race Types
 (22139, 4466, 3), -- Surrender To Darkness
-(22139, 4622, 9), -- Drain Health
-(22139, 4665, 9), -- Drain Health
-(22139, 4789, 9), -- High Level
+(22139, 4622, 9), -- NPC AE - 80% HP Drain - Magic
+(22139, 4665, 9), -- NPC 100% HP Drain - Magic
+(22139, 4789, 9), -- NPC High Level
 -- Zombie Worker
-(22140, 4032, 2), -- Power Strike
-(22140, 4408, 12), -- HP Increase (4x)
-(22140, 4409, 1), -- MP Increase (1x)
-(22140, 4410, 11), -- Average P. Atk.
-(22140, 4411, 11), -- Average M. Atk.
-(22140, 4412, 11), -- Average P. Def.
-(22140, 4413, 11), -- Average M. Def.
-(22140, 4414, 1), -- Heavy Armor Type
-(22140, 4415, 3), -- One-handed Sword
-(22140, 4416, 1), -- Undead
-(22140, 4417, 35), -- Undead
+(22140, 4032, 2), -- NPC Strike
+(22140, 4408, 12), -- HP Modifiers
+(22140, 4409, 1), -- MP Modifiers
+(22140, 4410, 11), -- P. Atk. Modifiers
+(22140, 4411, 11), -- M. Atk. Modifiers
+(22140, 4412, 11), -- P. Def. Modifiers
+(22140, 4413, 11), -- M. Def. Modifiers
+(22140, 4414, 1), -- Armor Type
+(22140, 4415, 3), -- Weapon Type
+(22140, 4416, 1), -- Races
+(22140, 4417, 35), -- Race Types
 (22140, 4649, 9), -- Poison
-(22140, 4789, 6), -- High Level
+(22140, 4789, 6), -- NPC High Level
 -- Forgotten Victim
 (22141, 4088, 9), -- Bleed
-(22141, 4408, 12), -- HP Increase (4x)
-(22141, 4409, 1), -- MP Increase (1x)
-(22141, 4410, 11), -- Average P. Atk.
-(22141, 4411, 11), -- Average M. Atk.
-(22141, 4412, 11), -- Average P. Def.
-(22141, 4413, 11), -- Average M. Def.
-(22141, 4414, 1), -- Heavy Armor Type
-(22141, 4415, 3), -- One-handed Sword
-(22141, 4416, 1), -- Undead
-(22141, 4417, 35), -- Undead
-(22141, 4612, 9), -- Wide Sweep
-(22141, 4789, 6), -- High Level
+(22141, 4408, 12), -- HP Modifiers
+(22141, 4409, 1), -- MP Modifiers
+(22141, 4410, 11), -- P. Atk. Modifiers
+(22141, 4411, 11), -- M. Atk. Modifiers
+(22141, 4412, 11), -- P. Def. Modifiers
+(22141, 4413, 11), -- M. Def. Modifiers
+(22141, 4414, 1), -- Armor Type
+(22141, 4415, 3), -- Weapon Type
+(22141, 4416, 1), -- Races
+(22141, 4417, 35), -- Race Types
+(22141, 4612, 9), -- NPC Wide Wild Sweep
+(22141, 4789, 6), -- NPC High Level
 -- Triol's Layperson
-(22142, 4032, 9), -- Power Strike
+(22142, 4032, 9), -- NPC Strike
 (22142, 4047, 9), -- Hold
-(22142, 4408, 13), -- HP Increase (5x)
-(22142, 4409, 1), -- MP Increase (1x)
-(22142, 4410, 11), -- Average P. Atk.
-(22142, 4411, 11), -- Average M. Atk.
-(22142, 4412, 11), -- Average P. Def.
-(22142, 4413, 11), -- Average M. Def.
-(22142, 4414, 2), -- Standard Type
-(22142, 4415, 1), -- Bare Hands
-(22142, 4416, 6), -- Humanoids
-(22142, 4417, 26), -- Humanoids
-(22142, 4573, 9), -- Sonic Blaster
-(22142, 4789, 9), -- High Level
+(22142, 4408, 13), -- HP Modifiers
+(22142, 4409, 1), -- MP Modifiers
+(22142, 4410, 11), -- P. Atk. Modifiers
+(22142, 4411, 11), -- M. Atk. Modifiers
+(22142, 4412, 11), -- P. Def. Modifiers
+(22142, 4413, 11), -- M. Def. Modifiers
+(22142, 4414, 2), -- Armor Type
+(22142, 4415, 1), -- Weapon Type
+(22142, 4416, 6), -- Races
+(22142, 4417, 26), -- Race Types
+(22142, 4573, 9), -- NPC Sonic Blaster
+(22142, 4789, 9), -- NPC High Level
 -- Triol's Believer
 (22143, 4047, 9), -- Hold
-(22143, 4408, 13), -- HP Increase (5x)
-(22143, 4409, 1), -- MP Increase (1x)
-(22143, 4410, 11), -- Average P. Atk.
-(22143, 4411, 11), -- Average M. Atk.
-(22143, 4412, 11), -- Average P. Def.
-(22143, 4413, 11), -- Average M. Def.
-(22143, 4414, 2), -- Standard Type
-(22143, 4415, 11), -- Spears
-(22143, 4416, 6), -- Humanoids
-(22143, 4417, 26), -- Humanoids
+(22143, 4408, 13), -- HP Modifiers
+(22143, 4409, 1), -- MP Modifiers
+(22143, 4410, 11), -- P. Atk. Modifiers
+(22143, 4411, 11), -- M. Atk. Modifiers
+(22143, 4412, 11), -- P. Def. Modifiers
+(22143, 4413, 11), -- M. Def. Modifiers
+(22143, 4414, 2), -- Armor Type
+(22143, 4415, 11), -- Weapon Type
+(22143, 4416, 6), -- Races
+(22143, 4417, 26), -- Race Types
 (22143, 4466, 3), -- Surrender To Darkness
-(22143, 4629, 9), -- Drain Health
-(22143, 4668, 9), -- Drain Health
-(22143, 4789, 9), -- High Level
+(22143, 4629, 9), -- NPC MR - HP Drain
+(22143, 4668, 9), -- NPC Strong 100% HP Drain - Magic
+(22143, 4789, 9), -- NPC High Level
 -- Resurrected Temple Knight
-(22144, 4152, 9), -- Drain Health
-(22144, 4160, 9), -- Aura Burn
-(22144, 4408, 12), -- HP Increase (4x)
-(22144, 4409, 1), -- MP Increase (1x)
-(22144, 4410, 11), -- Average P. Atk.
-(22144, 4411, 11), -- Average M. Atk.
-(22144, 4412, 11), -- Average P. Def.
-(22144, 4413, 11), -- Average M. Def.
-(22144, 4414, 1), -- Heavy Armor Type
-(22144, 4415, 5), -- Blunt Weapons
-(22144, 4416, 1), -- Undead
-(22144, 4417, 35), -- Undead
-(22144, 4789, 9), -- High Level
+(22144, 4152, 9), -- NPC HP Drain - Magic
+(22144, 4160, 9), -- NPC Aura Burn - Magic
+(22144, 4408, 12), -- HP Modifiers
+(22144, 4409, 1), -- MP Modifiers
+(22144, 4410, 11), -- P. Atk. Modifiers
+(22144, 4411, 11), -- M. Atk. Modifiers
+(22144, 4412, 11), -- P. Def. Modifiers
+(22144, 4413, 11), -- M. Def. Modifiers
+(22144, 4414, 1), -- Armor Type
+(22144, 4415, 5), -- Weapon Type
+(22144, 4416, 1), -- Races
+(22144, 4417, 35), -- Race Types
+(22144, 4789, 9), -- NPC High Level
 -- Ritual Sacrifice
-(22145, 4408, 12), -- HP Increase (4x)
-(22145, 4409, 1), -- MP Increase (1x)
-(22145, 4410, 11), -- Average P. Atk.
-(22145, 4411, 11), -- Average M. Atk.
-(22145, 4412, 11), -- Average P. Def.
-(22145, 4413, 11), -- Average M. Def.
-(22145, 4414, 3), -- Light Armor Type
-(22145, 4415, 5), -- Blunt Weapons
-(22145, 4416, 1), -- Undead
-(22145, 4417, 36), -- Undead
-(22145, 4614, 9), -- Death Bomb
-(22145, 4789, 9), -- High Level
+(22145, 4408, 12), -- HP Modifiers
+(22145, 4409, 1), -- MP Modifiers
+(22145, 4410, 11), -- P. Atk. Modifiers
+(22145, 4411, 11), -- M. Atk. Modifiers
+(22145, 4412, 11), -- P. Def. Modifiers
+(22145, 4413, 11), -- M. Def. Modifiers
+(22145, 4414, 3), -- Armor Type
+(22145, 4415, 5), -- Weapon Type
+(22145, 4416, 1), -- Races
+(22145, 4417, 36), -- Race Types
+(22145, 4614, 9), -- NPC Death Bomb
+(22145, 4789, 9), -- NPC High Level
 -- Triol's Priest
-(22146, 4032, 9), -- Power Strike
+(22146, 4032, 9), -- NPC Strike
 (22146, 4047, 9), -- Hold
-(22146, 4408, 13), -- HP Increase (5x)
-(22146, 4409, 1), -- MP Increase (1x)
-(22146, 4410, 11), -- Average P. Atk.
-(22146, 4411, 11), -- Average M. Atk.
-(22146, 4412, 11), -- Average P. Def.
-(22146, 4413, 11), -- Average M. Def.
-(22146, 4414, 2), -- Standard Type
-(22146, 4415, 11), -- Spears
-(22146, 4416, 6), -- Humanoids
-(22146, 4417, 26), -- Humanoids
-(22146, 4573, 9), -- Sonic Blaster
-(22146, 4789, 9), -- High Level
+(22146, 4408, 13), -- HP Modifiers
+(22146, 4409, 1), -- MP Modifiers
+(22146, 4410, 11), -- P. Atk. Modifiers
+(22146, 4411, 11), -- M. Atk. Modifiers
+(22146, 4412, 11), -- P. Def. Modifiers
+(22146, 4413, 11), -- M. Def. Modifiers
+(22146, 4414, 2), -- Armor Type
+(22146, 4415, 11), -- Weapon Type
+(22146, 4416, 6), -- Races
+(22146, 4417, 26), -- Race Types
+(22146, 4573, 9), -- NPC Sonic Blaster
+(22146, 4789, 9), -- NPC High Level
 -- Ritual Offering
-(22147, 4408, 12), -- HP Increase (4x)
-(22147, 4409, 1), -- MP Increase (1x)
-(22147, 4410, 11), -- Average P. Atk.
-(22147, 4411, 11), -- Average M. Atk.
-(22147, 4412, 11), -- Average P. Def.
-(22147, 4413, 11), -- Average M. Def.
-(22147, 4414, 2), -- Standard Type
-(22147, 4415, 5), -- Blunt Weapons
-(22147, 4416, 1), -- Undead
-(22147, 4417, 35), -- Undead
-(22147, 4612, 9), -- Wide Sweep
+(22147, 4408, 12), -- HP Modifiers
+(22147, 4409, 1), -- MP Modifiers
+(22147, 4410, 11), -- P. Atk. Modifiers
+(22147, 4411, 11), -- M. Atk. Modifiers
+(22147, 4412, 11), -- P. Def. Modifiers
+(22147, 4413, 11), -- M. Def. Modifiers
+(22147, 4414, 2), -- Armor Type
+(22147, 4415, 5), -- Weapon Type
+(22147, 4416, 1), -- Races
+(22147, 4417, 35), -- Race Types
+(22147, 4612, 9), -- NPC Wide Wild Sweep
 (22147, 4615, 9), -- Bleed
-(22147, 4789, 9), -- High Level
+(22147, 4789, 9), -- NPC High Level
 -- Triol's Believer
 (22148, 4088, 9), -- Bleed
-(22148, 4408, 12), -- HP Increase (4x)
-(22148, 4409, 1), -- MP Increase (1x)
-(22148, 4410, 11), -- Average P. Atk.
-(22148, 4411, 11), -- Average M. Atk.
-(22148, 4412, 11), -- Average P. Def.
-(22148, 4413, 11), -- Average M. Def.
-(22148, 4414, 2), -- Standard Type
-(22148, 4415, 11), -- Spears
-(22148, 4416, 6), -- Humanoids
-(22148, 4417, 26), -- Humanoids
-(22148, 4622, 9), -- Drain Health
-(22148, 4665, 9), -- Drain Health
-(22148, 4789, 9), -- High Level
+(22148, 4408, 12), -- HP Modifiers
+(22148, 4409, 1), -- MP Modifiers
+(22148, 4410, 11), -- P. Atk. Modifiers
+(22148, 4411, 11), -- M. Atk. Modifiers
+(22148, 4412, 11), -- P. Def. Modifiers
+(22148, 4413, 11), -- M. Def. Modifiers
+(22148, 4414, 2), -- Armor Type
+(22148, 4415, 11), -- Weapon Type
+(22148, 4416, 6), -- Races
+(22148, 4417, 26), -- Race Types
+(22148, 4622, 9), -- NPC AE - 80% HP Drain - Magic
+(22148, 4665, 9), -- NPC 100% HP Drain - Magic
+(22148, 4789, 9), -- NPC High Level
 -- Ritual Offering
-(22149, 4032, 2), -- Power Strike
-(22149, 4408, 12), -- HP Increase (4x)
-(22149, 4409, 1), -- MP Increase (1x)
-(22149, 4410, 11), -- Average P. Atk.
-(22149, 4411, 11), -- Average M. Atk.
-(22149, 4412, 11), -- Average P. Def.
-(22149, 4413, 11), -- Average M. Def.
-(22149, 4414, 2), -- Standard Type
-(22149, 4415, 5), -- Blunt Weapons
-(22149, 4416, 1), -- Undead
-(22149, 4417, 35), -- Undead
+(22149, 4032, 2), -- NPC Strike
+(22149, 4408, 12), -- HP Modifiers
+(22149, 4409, 1), -- MP Modifiers
+(22149, 4410, 11), -- P. Atk. Modifiers
+(22149, 4411, 11), -- M. Atk. Modifiers
+(22149, 4412, 11), -- P. Def. Modifiers
+(22149, 4413, 11), -- M. Def. Modifiers
+(22149, 4414, 2), -- Armor Type
+(22149, 4415, 5), -- Weapon Type
+(22149, 4416, 1), -- Races
+(22149, 4417, 35), -- Race Types
 (22149, 4649, 9), -- Poison
-(22149, 4789, 9), -- High Level
+(22149, 4789, 9), -- NPC High Level
 -- Triol's Believer
 (22150, 4088, 9), -- Bleed
-(22150, 4408, 12), -- HP Increase (4x)
-(22150, 4409, 1), -- MP Increase (1x)
-(22150, 4410, 11), -- Average P. Atk.
-(22150, 4411, 11), -- Average M. Atk.
-(22150, 4412, 11), -- Average P. Def.
-(22150, 4413, 11), -- Average M. Def.
-(22150, 4414, 2), -- Standard Type
-(22150, 4415, 11), -- Spears
-(22150, 4416, 6), -- Humanoids
-(22150, 4417, 26), -- Humanoids
+(22150, 4408, 12), -- HP Modifiers
+(22150, 4409, 1), -- MP Modifiers
+(22150, 4410, 11), -- P. Atk. Modifiers
+(22150, 4411, 11), -- M. Atk. Modifiers
+(22150, 4412, 11), -- P. Def. Modifiers
+(22150, 4413, 11), -- M. Def. Modifiers
+(22150, 4414, 2), -- Armor Type
+(22150, 4415, 11), -- Weapon Type
+(22150, 4416, 6), -- Races
+(22150, 4417, 26), -- Race Types
 (22150, 4466, 3), -- Surrender To Darkness
-(22150, 4629, 9), -- Drain Health
-(22150, 4668, 9), -- Drain Health
-(22150, 4789, 9), -- High Level
+(22150, 4629, 9), -- NPC MR - HP Drain
+(22150, 4668, 9), -- NPC Strong 100% HP Drain - Magic
+(22150, 4789, 9), -- NPC High Level
 -- Triol's Priest
 (22151, 4047, 9), -- Hold
-(22151, 4408, 13), -- HP Increase (5x)
-(22151, 4409, 1), -- MP Increase (1x)
-(22151, 4410, 11), -- Average P. Atk.
-(22151, 4411, 11), -- Average M. Atk.
-(22151, 4412, 11), -- Average P. Def.
-(22151, 4413, 11), -- Average M. Def.
-(22151, 4414, 2), -- Standard Type
-(22151, 4415, 11), -- Spears
-(22151, 4416, 6), -- Humanoids
-(22151, 4417, 26), -- Humanoids
+(22151, 4408, 13), -- HP Modifiers
+(22151, 4409, 1), -- MP Modifiers
+(22151, 4410, 11), -- P. Atk. Modifiers
+(22151, 4411, 11), -- M. Atk. Modifiers
+(22151, 4412, 11), -- P. Def. Modifiers
+(22151, 4413, 11), -- M. Def. Modifiers
+(22151, 4414, 2), -- Armor Type
+(22151, 4415, 11), -- Weapon Type
+(22151, 4416, 6), -- Races
+(22151, 4417, 26), -- Race Types
 (22151, 4615, 9), -- Bleed
-(22151, 4629, 9), -- Drain Health
-(22151, 4668, 9), -- Drain Health
-(22151, 4789, 10), -- High Level
+(22151, 4629, 9), -- NPC MR - HP Drain
+(22151, 4668, 9), -- NPC Strong 100% HP Drain - Magic
+(22151, 4789, 10), -- NPC High Level
 -- Temple Guard
-(22152, 4408, 12), -- HP Increase (4x)
-(22152, 4409, 1), -- MP Increase (1x)
-(22152, 4410, 11), -- Average P. Atk.
-(22152, 4411, 11), -- Average M. Atk.
-(22152, 4412, 11), -- Average P. Def.
-(22152, 4413, 11), -- Average M. Def.
-(22152, 4414, 2), -- Standard Type
-(22152, 4415, 13), -- Two-handed Sword
-(22152, 4416, 1), -- Undead
-(22152, 4417, 35), -- Undead
-(22152, 4612, 9), -- Wide Sweep
+(22152, 4408, 12), -- HP Modifiers
+(22152, 4409, 1), -- MP Modifiers
+(22152, 4410, 11), -- P. Atk. Modifiers
+(22152, 4411, 11), -- M. Atk. Modifiers
+(22152, 4412, 11), -- P. Def. Modifiers
+(22152, 4413, 11), -- M. Def. Modifiers
+(22152, 4414, 2), -- Armor Type
+(22152, 4415, 13), -- Weapon Type
+(22152, 4416, 1), -- Races
+(22152, 4417, 35), -- Race Types
+(22152, 4612, 9), -- NPC Wide Wild Sweep
 (22152, 4615, 9), -- Bleed
-(22152, 4789, 9), -- High Level
+(22152, 4789, 9), -- NPC High Level
 -- Temple Guard Captain
-(22153, 4408, 12), -- HP Increase (4x)
-(22153, 4409, 1), -- MP Increase (1x)
-(22153, 4410, 11), -- Average P. Atk.
-(22153, 4411, 11), -- Average M. Atk.
-(22153, 4412, 11), -- Average P. Def.
-(22153, 4413, 11), -- Average M. Def.
-(22153, 4414, 2), -- Standard Type
-(22153, 4415, 13), -- Two-handed Sword
-(22153, 4416, 1), -- Undead
-(22153, 4417, 35), -- Undead
+(22153, 4408, 12), -- HP Modifiers
+(22153, 4409, 1), -- MP Modifiers
+(22153, 4410, 11), -- P. Atk. Modifiers
+(22153, 4411, 11), -- M. Atk. Modifiers
+(22153, 4412, 11), -- P. Def. Modifiers
+(22153, 4413, 11), -- M. Def. Modifiers
+(22153, 4414, 2), -- Armor Type
+(22153, 4415, 13), -- Weapon Type
+(22153, 4416, 1), -- Races
+(22153, 4417, 35), -- Race Types
 (22153, 4466, 3), -- Surrender To Darkness
-(22153, 4622, 9), -- Drain Health
-(22153, 4665, 9), -- Drain Health
-(22153, 4789, 9), -- High Level
+(22153, 4622, 9), -- NPC AE - 80% HP Drain - Magic
+(22153, 4665, 9), -- NPC 100% HP Drain - Magic
+(22153, 4789, 9), -- NPC High Level
 -- Ritual Sacrifice
-(22154, 4408, 12), -- HP Increase (4x)
-(22154, 4409, 1), -- MP Increase (1x)
-(22154, 4410, 11), -- Average P. Atk.
-(22154, 4411, 11), -- Average M. Atk.
-(22154, 4412, 11), -- Average P. Def.
-(22154, 4413, 11), -- Average M. Def.
-(22154, 4414, 3), -- Light Armor Type
-(22154, 4415, 3), -- One-handed Sword
-(22154, 4416, 1), -- Undead
-(22154, 4417, 36), -- Undead
-(22154, 4614, 9), -- Death Bomb
-(22154, 4789, 10), -- High Level
+(22154, 4408, 12), -- HP Modifiers
+(22154, 4409, 1), -- MP Modifiers
+(22154, 4410, 11), -- P. Atk. Modifiers
+(22154, 4411, 11), -- M. Atk. Modifiers
+(22154, 4412, 11), -- P. Def. Modifiers
+(22154, 4413, 11), -- M. Def. Modifiers
+(22154, 4414, 3), -- Armor Type
+(22154, 4415, 3), -- Weapon Type
+(22154, 4416, 1), -- Races
+(22154, 4417, 36), -- Race Types
+(22154, 4614, 9), -- NPC Death Bomb
+(22154, 4789, 10), -- NPC High Level
 -- Triol's High Priest
-(22155, 4032, 9), -- Power Strike
-(22155, 4065, 9), -- Heal
-(22155, 4408, 13), -- HP Increase (5x)
-(22155, 4409, 1), -- MP Increase (1x)
-(22155, 4410, 11), -- Average P. Atk.
-(22155, 4411, 11), -- Average M. Atk.
-(22155, 4412, 11), -- Average P. Def.
-(22155, 4413, 11), -- Average M. Def.
-(22155, 4414, 2), -- Standard Type
-(22155, 4415, 3), -- One-handed Sword
-(22155, 4416, 6), -- Humanoids
-(22155, 4417, 26), -- Humanoids
-(22155, 4612, 9), -- Wide Sweep
-(22155, 4641, 10), -- Super Strike
-(22155, 4789, 10), -- High Level
+(22155, 4032, 9), -- NPC Strike
+(22155, 4065, 9), -- NPC Heal
+(22155, 4408, 13), -- HP Modifiers
+(22155, 4409, 1), -- MP Modifiers
+(22155, 4410, 11), -- P. Atk. Modifiers
+(22155, 4411, 11), -- M. Atk. Modifiers
+(22155, 4412, 11), -- P. Def. Modifiers
+(22155, 4413, 11), -- M. Def. Modifiers
+(22155, 4414, 2), -- Armor Type
+(22155, 4415, 3), -- Weapon Type
+(22155, 4416, 6), -- Races
+(22155, 4417, 26), -- Race Types
+(22155, 4612, 9), -- NPC Wide Wild Sweep
+(22155, 4641, 10), -- NPC Super Strike
+(22155, 4789, 10), -- NPC High Level
 -- Triol's Priest
-(22156, 4032, 9), -- Power Strike
-(22156, 4408, 12), -- HP Increase (4x)
-(22156, 4409, 1), -- MP Increase (1x)
-(22156, 4410, 11), -- Average P. Atk.
-(22156, 4411, 11), -- Average M. Atk.
-(22156, 4412, 11), -- Average P. Def.
-(22156, 4413, 11), -- Average M. Def.
-(22156, 4414, 2), -- Standard Type
-(22156, 4415, 11), -- Spears
-(22156, 4416, 6), -- Humanoids
-(22156, 4417, 26), -- Humanoids
-(22156, 4789, 10), -- High Level
+(22156, 4032, 9), -- NPC Strike
+(22156, 4408, 12), -- HP Modifiers
+(22156, 4409, 1), -- MP Modifiers
+(22156, 4410, 11), -- P. Atk. Modifiers
+(22156, 4411, 11), -- M. Atk. Modifiers
+(22156, 4412, 11), -- P. Def. Modifiers
+(22156, 4413, 11), -- M. Def. Modifiers
+(22156, 4414, 2), -- Armor Type
+(22156, 4415, 11), -- Weapon Type
+(22156, 4416, 6), -- Races
+(22156, 4417, 26), -- Race Types
+(22156, 4789, 10), -- NPC High Level
 -- Triol's Priest
-(22157, 4408, 12), -- HP Increase (4x)
-(22157, 4409, 1), -- MP Increase (1x)
-(22157, 4410, 11), -- Average P. Atk.
-(22157, 4411, 11), -- Average M. Atk.
-(22157, 4412, 11), -- Average P. Def.
-(22157, 4413, 11), -- Average M. Def.
-(22157, 4414, 2), -- Standard Type
-(22157, 4415, 11), -- Spears
-(22157, 4416, 6), -- Humanoids
-(22157, 4417, 26), -- Humanoids
+(22157, 4408, 12), -- HP Modifiers
+(22157, 4409, 1), -- MP Modifiers
+(22157, 4410, 11), -- P. Atk. Modifiers
+(22157, 4411, 11), -- M. Atk. Modifiers
+(22157, 4412, 11), -- P. Def. Modifiers
+(22157, 4413, 11), -- M. Def. Modifiers
+(22157, 4414, 2), -- Armor Type
+(22157, 4415, 11), -- Weapon Type
+(22157, 4416, 6), -- Races
+(22157, 4417, 26), -- Race Types
 (22157, 4466, 3), -- Surrender To Darkness
-(22157, 4789, 10), -- High Level
+(22157, 4789, 10), -- NPC High Level
 -- Triol's Believer
-(22158, 4408, 12), -- HP Increase (4x)
-(22158, 4409, 1), -- MP Increase (1x)
-(22158, 4410, 11), -- Average P. Atk.
-(22158, 4411, 11), -- Average M. Atk.
-(22158, 4412, 11), -- Average P. Def.
-(22158, 4413, 11), -- Average M. Def.
-(22158, 4414, 2), -- Standard Type
-(22158, 4415, 1), -- Bare Hands
-(22158, 4416, 6), -- Humanoids
-(22158, 4417, 26), -- Humanoids
+(22158, 4408, 12), -- HP Modifiers
+(22158, 4409, 1), -- MP Modifiers
+(22158, 4410, 11), -- P. Atk. Modifiers
+(22158, 4411, 11), -- M. Atk. Modifiers
+(22158, 4412, 11), -- P. Def. Modifiers
+(22158, 4413, 11), -- M. Def. Modifiers
+(22158, 4414, 2), -- Armor Type
+(22158, 4415, 1), -- Weapon Type
+(22158, 4416, 6), -- Races
+(22158, 4417, 26), -- Race Types
 (22158, 4466, 3), -- Surrender To Darkness
-(22158, 4622, 9), -- Drain Health
-(22158, 4665, 9), -- Drain Health
-(22158, 4789, 10), -- High Level
+(22158, 4622, 9), -- NPC AE - 80% HP Drain - Magic
+(22158, 4665, 9), -- NPC 100% HP Drain - Magic
+(22158, 4789, 10), -- NPC High Level
 -- Triol's High Priest
-(22159, 4032, 9), -- Power Strike
-(22159, 4065, 9), -- Heal
-(22159, 4408, 13), -- HP Increase (5x)
-(22159, 4409, 1), -- MP Increase (1x)
-(22159, 4410, 11), -- Average P. Atk.
-(22159, 4411, 11), -- Average M. Atk.
-(22159, 4412, 11), -- Average P. Def.
-(22159, 4413, 11), -- Average M. Def.
-(22159, 4414, 2), -- Standard Type
-(22159, 4415, 3), -- One-handed Sword
-(22159, 4416, 6), -- Humanoids
-(22159, 4417, 26), -- Humanoids
-(22159, 4612, 9), -- Wide Sweep
-(22159, 4641, 10), -- Super Strike
-(22159, 4789, 10), -- High Level
+(22159, 4032, 9), -- NPC Strike
+(22159, 4065, 9), -- NPC Heal
+(22159, 4408, 13), -- HP Modifiers
+(22159, 4409, 1), -- MP Modifiers
+(22159, 4410, 11), -- P. Atk. Modifiers
+(22159, 4411, 11), -- M. Atk. Modifiers
+(22159, 4412, 11), -- P. Def. Modifiers
+(22159, 4413, 11), -- M. Def. Modifiers
+(22159, 4414, 2), -- Armor Type
+(22159, 4415, 3), -- Weapon Type
+(22159, 4416, 6), -- Races
+(22159, 4417, 26), -- Race Types
+(22159, 4612, 9), -- NPC Wide Wild Sweep
+(22159, 4641, 10), -- NPC Super Strike
+(22159, 4789, 10), -- NPC High Level
 -- Triol's Priest
-(22160, 4032, 9), -- Power Strike
-(22160, 4408, 12), -- HP Increase (4x)
-(22160, 4409, 1), -- MP Increase (1x)
-(22160, 4410, 11), -- Average P. Atk.
-(22160, 4411, 11), -- Average M. Atk.
-(22160, 4412, 11), -- Average P. Def.
-(22160, 4413, 11), -- Average M. Def.
-(22160, 4414, 2), -- Standard Type
-(22160, 4415, 11), -- Spears
-(22160, 4416, 6), -- Humanoids
-(22160, 4417, 26), -- Humanoids
-(22160, 4789, 10), -- High Level
+(22160, 4032, 9), -- NPC Strike
+(22160, 4408, 12), -- HP Modifiers
+(22160, 4409, 1), -- MP Modifiers
+(22160, 4410, 11), -- P. Atk. Modifiers
+(22160, 4411, 11), -- M. Atk. Modifiers
+(22160, 4412, 11), -- P. Def. Modifiers
+(22160, 4413, 11), -- M. Def. Modifiers
+(22160, 4414, 2), -- Armor Type
+(22160, 4415, 11), -- Weapon Type
+(22160, 4416, 6), -- Races
+(22160, 4417, 26), -- Race Types
+(22160, 4789, 10), -- NPC High Level
 -- Ritual Sacrifice
-(22161, 4032, 9), -- Power Strike
-(22161, 4408, 12), -- HP Increase (4x)
-(22161, 4409, 1), -- MP Increase (1x)
-(22161, 4410, 11), -- Average P. Atk.
-(22161, 4411, 11), -- Average M. Atk.
-(22161, 4412, 11), -- Average P. Def.
-(22161, 4413, 11), -- Average M. Def.
-(22161, 4414, 3), -- Light Armor Type
-(22161, 4415, 3), -- One-handed Sword
-(22161, 4416, 1), -- Undead
-(22161, 4417, 36), -- Undead
-(22161, 4614, 9), -- Death Bomb
-(22161, 4789, 10), -- High Level
+(22161, 4032, 9), -- NPC Strike
+(22161, 4408, 12), -- HP Modifiers
+(22161, 4409, 1), -- MP Modifiers
+(22161, 4410, 11), -- P. Atk. Modifiers
+(22161, 4411, 11), -- M. Atk. Modifiers
+(22161, 4412, 11), -- P. Def. Modifiers
+(22161, 4413, 11), -- M. Def. Modifiers
+(22161, 4414, 3), -- Armor Type
+(22161, 4415, 3), -- Weapon Type
+(22161, 4416, 1), -- Races
+(22161, 4417, 36), -- Race Types
+(22161, 4614, 9), -- NPC Death Bomb
+(22161, 4789, 10), -- NPC High Level
 -- Triol's Believer
-(22162, 4408, 12), -- HP Increase (4x)
-(22162, 4409, 1), -- MP Increase (1x)
-(22162, 4410, 11), -- Average P. Atk.
-(22162, 4411, 11), -- Average M. Atk.
-(22162, 4412, 11), -- Average P. Def.
-(22162, 4413, 11), -- Average M. Def.
-(22162, 4414, 2), -- Standard Type
-(22162, 4415, 3), -- One-handed Sword
-(22162, 4416, 6), -- Humanoids
-(22162, 4417, 26), -- Humanoids
+(22162, 4408, 12), -- HP Modifiers
+(22162, 4409, 1), -- MP Modifiers
+(22162, 4410, 11), -- P. Atk. Modifiers
+(22162, 4411, 11), -- M. Atk. Modifiers
+(22162, 4412, 11), -- P. Def. Modifiers
+(22162, 4413, 11), -- M. Def. Modifiers
+(22162, 4414, 2), -- Armor Type
+(22162, 4415, 3), -- Weapon Type
+(22162, 4416, 6), -- Races
+(22162, 4417, 26), -- Race Types
 (22162, 4466, 3), -- Surrender To Darkness
-(22162, 4622, 9), -- Drain Health
-(22162, 4665, 9), -- Drain Health
-(22162, 4789, 10), -- High Level
+(22162, 4622, 9), -- NPC AE - 80% HP Drain - Magic
+(22162, 4665, 9), -- NPC 100% HP Drain - Magic
+(22162, 4789, 10), -- NPC High Level
 -- Triol's High Priest
-(22163, 4065, 9), -- Heal
+(22163, 4065, 9), -- NPC Heal
 (22163, 4088, 9), -- Bleed
-(22163, 4158, 9), -- Prominence
-(22163, 4408, 13), -- HP Increase (5x)
-(22163, 4409, 1), -- MP Increase (1x)
-(22163, 4410, 11), -- Average P. Atk.
-(22163, 4411, 11), -- Average M. Atk.
-(22163, 4412, 11), -- Average P. Def.
-(22163, 4413, 11), -- Average M. Def.
-(22163, 4414, 2), -- Standard Type
-(22163, 4415, 5), -- Blunt Weapons
-(22163, 4416, 6), -- Humanoids
-(22163, 4417, 26), -- Humanoids
-(22163, 4622, 9), -- Drain Health
-(22163, 4641, 10), -- Super Strike
-(22163, 4655, 9), -- Death Link
-(22163, 4789, 10), -- High Level
+(22163, 4158, 9), -- NPC Prominence - Magic
+(22163, 4408, 13), -- HP Modifiers
+(22163, 4409, 1), -- MP Modifiers
+(22163, 4410, 11), -- P. Atk. Modifiers
+(22163, 4411, 11), -- M. Atk. Modifiers
+(22163, 4412, 11), -- P. Def. Modifiers
+(22163, 4413, 11), -- M. Def. Modifiers
+(22163, 4414, 2), -- Armor Type
+(22163, 4415, 5), -- Weapon Type
+(22163, 4416, 6), -- Races
+(22163, 4417, 26), -- Race Types
+(22163, 4622, 9), -- NPC AE - 80% HP Drain - Magic
+(22163, 4641, 10), -- NPC Super Strike
+(22163, 4655, 9), -- NPC Death Link - Magic
+(22163, 4789, 10), -- NPC High Level
 -- Triol's Believer
-(22164, 4408, 12), -- HP Increase (4x)
-(22164, 4409, 1), -- MP Increase (1x)
-(22164, 4410, 11), -- Average P. Atk.
-(22164, 4411, 11), -- Average M. Atk.
-(22164, 4412, 11), -- Average P. Def.
-(22164, 4413, 11), -- Average M. Def.
-(22164, 4414, 2), -- Standard Type
-(22164, 4415, 3), -- One-handed Sword
-(22164, 4416, 6), -- Humanoids
-(22164, 4417, 26), -- Humanoids
-(22164, 4612, 9), -- Wide Sweep
-(22164, 4789, 10), -- High Level
+(22164, 4408, 12), -- HP Modifiers
+(22164, 4409, 1), -- MP Modifiers
+(22164, 4410, 11), -- P. Atk. Modifiers
+(22164, 4411, 11), -- M. Atk. Modifiers
+(22164, 4412, 11), -- P. Def. Modifiers
+(22164, 4413, 11), -- M. Def. Modifiers
+(22164, 4414, 2), -- Armor Type
+(22164, 4415, 3), -- Weapon Type
+(22164, 4416, 6), -- Races
+(22164, 4417, 26), -- Race Types
+(22164, 4612, 9), -- NPC Wide Wild Sweep
+(22164, 4789, 10), -- NPC High Level
 -- Triol's Priest
-(22165, 4408, 12), -- HP Increase (4x)
-(22165, 4409, 1), -- MP Increase (1x)
-(22165, 4410, 11), -- Average P. Atk.
-(22165, 4411, 11), -- Average M. Atk.
-(22165, 4412, 11), -- Average P. Def.
-(22165, 4413, 11), -- Average M. Def.
-(22165, 4414, 2), -- Standard Type
-(22165, 4415, 11), -- Spears
-(22165, 4416, 6), -- Humanoids
-(22165, 4417, 26), -- Humanoids
+(22165, 4408, 12), -- HP Modifiers
+(22165, 4409, 1), -- MP Modifiers
+(22165, 4410, 11), -- P. Atk. Modifiers
+(22165, 4411, 11), -- M. Atk. Modifiers
+(22165, 4412, 11), -- P. Def. Modifiers
+(22165, 4413, 11), -- M. Def. Modifiers
+(22165, 4414, 2), -- Armor Type
+(22165, 4415, 11), -- Weapon Type
+(22165, 4416, 6), -- Races
+(22165, 4417, 26), -- Race Types
 (22165, 4466, 3), -- Surrender To Darkness
-(22165, 4622, 9), -- Drain Health
-(22165, 4665, 9), -- Drain Health
-(22165, 4789, 10), -- High Level
+(22165, 4622, 9), -- NPC AE - 80% HP Drain - Magic
+(22165, 4665, 9), -- NPC 100% HP Drain - Magic
+(22165, 4789, 10), -- NPC High Level
 -- Triol's Believer
-(22166, 4408, 12), -- HP Increase (4x)
-(22166, 4409, 1), -- MP Increase (1x)
-(22166, 4410, 11), -- Average P. Atk.
-(22166, 4411, 11), -- Average M. Atk.
-(22166, 4412, 11), -- Average P. Def.
-(22166, 4413, 11), -- Average M. Def.
-(22166, 4414, 2), -- Standard Type
-(22166, 4415, 11), -- Spears
-(22166, 4416, 6), -- Humanoids
-(22166, 4417, 26), -- Humanoids
-(22166, 4622, 9), -- Drain Health
-(22166, 4665, 9), -- Drain Health
-(22166, 4789, 10), -- High Level
+(22166, 4408, 12), -- HP Modifiers
+(22166, 4409, 1), -- MP Modifiers
+(22166, 4410, 11), -- P. Atk. Modifiers
+(22166, 4411, 11), -- M. Atk. Modifiers
+(22166, 4412, 11), -- P. Def. Modifiers
+(22166, 4413, 11), -- M. Def. Modifiers
+(22166, 4414, 2), -- Armor Type
+(22166, 4415, 11), -- Weapon Type
+(22166, 4416, 6), -- Races
+(22166, 4417, 26), -- Race Types
+(22166, 4622, 9), -- NPC AE - 80% HP Drain - Magic
+(22166, 4665, 9), -- NPC 100% HP Drain - Magic
+(22166, 4789, 10), -- NPC High Level
 -- Triol's High Priest
-(22167, 4032, 9), -- Power Strike
-(22167, 4065, 9), -- Heal
-(22167, 4408, 13), -- HP Increase (5x)
-(22167, 4409, 1), -- MP Increase (1x)
-(22167, 4410, 11), -- Average P. Atk.
-(22167, 4411, 11), -- Average M. Atk.
-(22167, 4412, 11), -- Average P. Def.
-(22167, 4413, 11), -- Average M. Def.
-(22167, 4414, 2), -- Standard Type
-(22167, 4415, 3), -- One-handed Sword
-(22167, 4416, 6), -- Humanoids
-(22167, 4417, 26), -- Humanoids
-(22167, 4612, 9), -- Wide Sweep
-(22167, 4641, 10), -- Super Strike
-(22167, 4789, 10), -- High Level
+(22167, 4032, 9), -- NPC Strike
+(22167, 4065, 9), -- NPC Heal
+(22167, 4408, 13), -- HP Modifiers
+(22167, 4409, 1), -- MP Modifiers
+(22167, 4410, 11), -- P. Atk. Modifiers
+(22167, 4411, 11), -- M. Atk. Modifiers
+(22167, 4412, 11), -- P. Def. Modifiers
+(22167, 4413, 11), -- M. Def. Modifiers
+(22167, 4414, 2), -- Armor Type
+(22167, 4415, 3), -- Weapon Type
+(22167, 4416, 6), -- Races
+(22167, 4417, 26), -- Race Types
+(22167, 4612, 9), -- NPC Wide Wild Sweep
+(22167, 4641, 10), -- NPC Super Strike
+(22167, 4789, 10), -- NPC High Level
 -- Triol's Priest
-(22168, 4408, 12), -- HP Increase (4x)
-(22168, 4409, 1), -- MP Increase (1x)
-(22168, 4410, 11), -- Average P. Atk.
-(22168, 4411, 11), -- Average M. Atk.
-(22168, 4412, 11), -- Average P. Def.
-(22168, 4413, 11), -- Average M. Def.
-(22168, 4414, 2), -- Standard Type
-(22168, 4415, 11), -- Spears
-(22168, 4416, 6), -- Humanoids
-(22168, 4417, 26), -- Humanoids
+(22168, 4408, 12), -- HP Modifiers
+(22168, 4409, 1), -- MP Modifiers
+(22168, 4410, 11), -- P. Atk. Modifiers
+(22168, 4411, 11), -- M. Atk. Modifiers
+(22168, 4412, 11), -- P. Def. Modifiers
+(22168, 4413, 11), -- M. Def. Modifiers
+(22168, 4414, 2), -- Armor Type
+(22168, 4415, 11), -- Weapon Type
+(22168, 4416, 6), -- Races
+(22168, 4417, 26), -- Race Types
 (22168, 4466, 3), -- Surrender To Darkness
-(22168, 4622, 9), -- Drain Health
-(22168, 4665, 9), -- Drain Health
-(22168, 4789, 10), -- High Level
+(22168, 4622, 9), -- NPC AE - 80% HP Drain - Magic
+(22168, 4665, 9), -- NPC 100% HP Drain - Magic
+(22168, 4789, 10), -- NPC High Level
 -- Ritual Sacrifice
-(22169, 4032, 9), -- Power Strike
-(22169, 4408, 12), -- HP Increase (4x)
-(22169, 4409, 1), -- MP Increase (1x)
-(22169, 4410, 11), -- Average P. Atk.
-(22169, 4411, 11), -- Average M. Atk.
-(22169, 4412, 11), -- Average P. Def.
-(22169, 4413, 11), -- Average M. Def.
-(22169, 4414, 3), -- Light Armor Type
-(22169, 4415, 3), -- One-handed Sword
-(22169, 4416, 1), -- Undead
-(22169, 4417, 36), -- Undead
-(22169, 4614, 9), -- Death Bomb
-(22169, 4789, 10), -- High Level
+(22169, 4032, 9), -- NPC Strike
+(22169, 4408, 12), -- HP Modifiers
+(22169, 4409, 1), -- MP Modifiers
+(22169, 4410, 11), -- P. Atk. Modifiers
+(22169, 4411, 11), -- M. Atk. Modifiers
+(22169, 4412, 11), -- P. Def. Modifiers
+(22169, 4413, 11), -- M. Def. Modifiers
+(22169, 4414, 3), -- Armor Type
+(22169, 4415, 3), -- Weapon Type
+(22169, 4416, 1), -- Races
+(22169, 4417, 36), -- Race Types
+(22169, 4614, 9), -- NPC Death Bomb
+(22169, 4789, 10), -- NPC High Level
 -- Triol's Believer
-(22170, 4032, 9), -- Power Strike
-(22170, 4408, 12), -- HP Increase (4x)
-(22170, 4409, 1), -- MP Increase (1x)
-(22170, 4410, 11), -- Average P. Atk.
-(22170, 4411, 11), -- Average M. Atk.
-(22170, 4412, 11), -- Average P. Def.
-(22170, 4413, 11), -- Average M. Def.
-(22170, 4414, 2), -- Standard Type
-(22170, 4415, 3), -- One-handed Sword
-(22170, 4416, 6), -- Humanoids
-(22170, 4417, 26), -- Humanoids
-(22170, 4789, 10), -- High Level
+(22170, 4032, 9), -- NPC Strike
+(22170, 4408, 12), -- HP Modifiers
+(22170, 4409, 1), -- MP Modifiers
+(22170, 4410, 11), -- P. Atk. Modifiers
+(22170, 4411, 11), -- M. Atk. Modifiers
+(22170, 4412, 11), -- P. Def. Modifiers
+(22170, 4413, 11), -- M. Def. Modifiers
+(22170, 4414, 2), -- Armor Type
+(22170, 4415, 3), -- Weapon Type
+(22170, 4416, 6), -- Races
+(22170, 4417, 26), -- Race Types
+(22170, 4789, 10), -- NPC High Level
 -- Triol's High Priest
-(22171, 4065, 9), -- Heal
+(22171, 4065, 9), -- NPC Heal
 (22171, 4088, 10), -- Bleed
-(22171, 4158, 9), -- Prominence
-(22171, 4408, 13), -- HP Increase (5x)
-(22171, 4409, 1), -- MP Increase (1x)
-(22171, 4410, 11), -- Average P. Atk.
-(22171, 4411, 11), -- Average M. Atk.
-(22171, 4412, 11), -- Average P. Def.
-(22171, 4413, 11), -- Average M. Def.
-(22171, 4414, 2), -- Standard Type
-(22171, 4415, 5), -- Blunt Weapons
-(22171, 4416, 6), -- Humanoids
-(22171, 4417, 26), -- Humanoids
-(22171, 4622, 9), -- Drain Health
-(22171, 4641, 10), -- Super Strike
-(22171, 4655, 9), -- Death Link
-(22171, 4789, 10), -- High Level
+(22171, 4158, 9), -- NPC Prominence - Magic
+(22171, 4408, 13), -- HP Modifiers
+(22171, 4409, 1), -- MP Modifiers
+(22171, 4410, 11), -- P. Atk. Modifiers
+(22171, 4411, 11), -- M. Atk. Modifiers
+(22171, 4412, 11), -- P. Def. Modifiers
+(22171, 4413, 11), -- M. Def. Modifiers
+(22171, 4414, 2), -- Armor Type
+(22171, 4415, 5), -- Weapon Type
+(22171, 4416, 6), -- Races
+(22171, 4417, 26), -- Race Types
+(22171, 4622, 9), -- NPC AE - 80% HP Drain - Magic
+(22171, 4641, 10), -- NPC Super Strike
+(22171, 4655, 9), -- NPC Death Link - Magic
+(22171, 4789, 10), -- NPC High Level
 -- Ritual Sacrifice
-(22172, 4032, 9), -- Power Strike
-(22172, 4408, 12), -- HP Increase (4x)
-(22172, 4409, 1), -- MP Increase (1x)
-(22172, 4410, 11), -- Average P. Atk.
-(22172, 4411, 11), -- Average M. Atk.
-(22172, 4412, 11), -- Average P. Def.
-(22172, 4413, 11), -- Average M. Def.
-(22172, 4414, 3), -- Light Armor Type
-(22172, 4415, 3), -- One-handed Sword
-(22172, 4416, 1), -- Undead
-(22172, 4417, 36), -- Undead
-(22172, 4614, 9), -- Death Bomb
-(22172, 4789, 10), -- High Level
+(22172, 4032, 9), -- NPC Strike
+(22172, 4408, 12), -- HP Modifiers
+(22172, 4409, 1), -- MP Modifiers
+(22172, 4410, 11), -- P. Atk. Modifiers
+(22172, 4411, 11), -- M. Atk. Modifiers
+(22172, 4412, 11), -- P. Def. Modifiers
+(22172, 4413, 11), -- M. Def. Modifiers
+(22172, 4414, 3), -- Armor Type
+(22172, 4415, 3), -- Weapon Type
+(22172, 4416, 1), -- Races
+(22172, 4417, 36), -- Race Types
+(22172, 4614, 9), -- NPC Death Bomb
+(22172, 4789, 10), -- NPC High Level
 -- Triol's Priest
 (22173, 4088, 10), -- Bleed
-(22173, 4408, 12), -- HP Increase (4x)
-(22173, 4409, 1), -- MP Increase (1x)
-(22173, 4410, 11), -- Average P. Atk.
-(22173, 4411, 11), -- Average M. Atk.
-(22173, 4412, 11), -- Average P. Def.
-(22173, 4413, 11), -- Average M. Def.
-(22173, 4414, 2), -- Standard Type
-(22173, 4415, 11), -- Spears
-(22173, 4416, 6), -- Humanoids
-(22173, 4417, 26), -- Humanoids
-(22173, 4622, 9), -- Drain Health
-(22173, 4665, 9), -- Drain Health
-(22173, 4789, 10), -- High Level
+(22173, 4408, 12), -- HP Modifiers
+(22173, 4409, 1), -- MP Modifiers
+(22173, 4410, 11), -- P. Atk. Modifiers
+(22173, 4411, 11), -- M. Atk. Modifiers
+(22173, 4412, 11), -- P. Def. Modifiers
+(22173, 4413, 11), -- M. Def. Modifiers
+(22173, 4414, 2), -- Armor Type
+(22173, 4415, 11), -- Weapon Type
+(22173, 4416, 6), -- Races
+(22173, 4417, 26), -- Race Types
+(22173, 4622, 9), -- NPC AE - 80% HP Drain - Magic
+(22173, 4665, 9), -- NPC 100% HP Drain - Magic
+(22173, 4789, 10), -- NPC High Level
 -- Triol's Priest
-(22174, 4408, 12), -- HP Increase (4x)
-(22174, 4409, 1), -- MP Increase (1x)
-(22174, 4410, 11), -- Average P. Atk.
-(22174, 4411, 11), -- Average M. Atk.
-(22174, 4412, 11), -- Average P. Def.
-(22174, 4413, 11), -- Average M. Def.
-(22174, 4414, 2), -- Standard Type
-(22174, 4415, 11), -- Spears
-(22174, 4416, 6), -- Humanoids
-(22174, 4417, 26), -- Humanoids
+(22174, 4408, 12), -- HP Modifiers
+(22174, 4409, 1), -- MP Modifiers
+(22174, 4410, 11), -- P. Atk. Modifiers
+(22174, 4411, 11), -- M. Atk. Modifiers
+(22174, 4412, 11), -- P. Def. Modifiers
+(22174, 4413, 11), -- M. Def. Modifiers
+(22174, 4414, 2), -- Armor Type
+(22174, 4415, 11), -- Weapon Type
+(22174, 4416, 6), -- Races
+(22174, 4417, 26), -- Race Types
 (22174, 4466, 3), -- Surrender To Darkness
-(22174, 4622, 9), -- Drain Health
-(22174, 4665, 9), -- Drain Health
-(22174, 4789, 10), -- High Level
+(22174, 4622, 9), -- NPC AE - 80% HP Drain - Magic
+(22174, 4665, 9), -- NPC 100% HP Drain - Magic
+(22174, 4789, 10), -- NPC High Level
 -- Andreas' Captain of the Royal Guard
 (22175, 4047, 9), -- Hold
-(22175, 4408, 8), -- HP Increase (1/4x)
-(22175, 4409, 1), -- MP Increase (1x)
-(22175, 4410, 11), -- Average P. Atk.
-(22175, 4411, 11), -- Average M. Atk.
-(22175, 4412, 11), -- Average P. Def.
-(22175, 4413, 11), -- Average M. Def.
-(22175, 4414, 1), -- Heavy Armor Type
-(22175, 4415, 13), -- Two-handed Sword
-(22175, 4416, 1), -- Undead
-(22175, 4417, 35), -- Undead
-(22175, 4573, 9), -- Sonic Blaster
-(22175, 4612, 9), -- Wide Sweep
-(22175, 4789, 10), -- High Level
+(22175, 4408, 8), -- HP Modifiers
+(22175, 4409, 1), -- MP Modifiers
+(22175, 4410, 11), -- P. Atk. Modifiers
+(22175, 4411, 11), -- M. Atk. Modifiers
+(22175, 4412, 11), -- P. Def. Modifiers
+(22175, 4413, 11), -- M. Def. Modifiers
+(22175, 4414, 1), -- Armor Type
+(22175, 4415, 13), -- Weapon Type
+(22175, 4416, 1), -- Races
+(22175, 4417, 35), -- Race Types
+(22175, 4573, 9), -- NPC Sonic Blaster
+(22175, 4612, 9), -- NPC Wide Wild Sweep
+(22175, 4789, 10), -- NPC High Level
 -- Andreas' Royal Guards
-(22176, 4032, 2), -- Power Strike
-(22176, 4408, 8), -- HP Increase (1/4x)
-(22176, 4409, 1), -- MP Increase (1x)
-(22176, 4410, 11), -- Average P. Atk.
-(22176, 4411, 11), -- Average M. Atk.
-(22176, 4412, 11), -- Average P. Def.
-(22176, 4413, 11), -- Average M. Def.
-(22176, 4414, 1), -- Heavy Armor Type
-(22176, 4416, 1), -- Undead
-(22176, 4417, 35), -- Undead
+(22176, 4032, 2), -- NPC Strike
+(22176, 4408, 8), -- HP Modifiers
+(22176, 4409, 1), -- MP Modifiers
+(22176, 4410, 11), -- P. Atk. Modifiers
+(22176, 4411, 11), -- M. Atk. Modifiers
+(22176, 4412, 11), -- P. Def. Modifiers
+(22176, 4413, 11), -- M. Def. Modifiers
+(22176, 4414, 1), -- Armor Type
+(22176, 4416, 1), -- Races
+(22176, 4417, 35), -- Race Types
 (22176, 4649, 9), -- Poison
-(22176, 4789, 10), -- High Level
+(22176, 4789, 10), -- NPC High Level
 -- Andreas' Captain of the Royal Guard
-(22188, 4032, 9), -- Power Strike
-(22188, 4408, 11), -- HP Increase (3x)
-(22188, 4409, 1), -- MP Increase (1x)
-(22188, 4410, 11), -- Average P. Atk.
-(22188, 4411, 11), -- Average M. Atk.
-(22188, 4412, 11), -- Average P. Def.
-(22188, 4413, 11), -- Average M. Def.
-(22188, 4414, 3), -- Light Armor Type
-(22188, 4415, 5), -- Blunt Weapons
-(22188, 4416, 6), -- Humanoids
-(22188, 4417, 26), -- Humanoids
-(22188, 4612, 9), -- Wide Sweep
-(22188, 4789, 10), -- High Level
+(22188, 4032, 9), -- NPC Strike
+(22188, 4408, 11), -- HP Modifiers
+(22188, 4409, 1), -- MP Modifiers
+(22188, 4410, 11), -- P. Atk. Modifiers
+(22188, 4411, 11), -- M. Atk. Modifiers
+(22188, 4412, 11), -- P. Def. Modifiers
+(22188, 4413, 11), -- M. Def. Modifiers
+(22188, 4414, 3), -- Armor Type
+(22188, 4415, 5), -- Weapon Type
+(22188, 4416, 6), -- Races
+(22188, 4417, 26), -- Race Types
+(22188, 4612, 9), -- NPC Wide Wild Sweep
+(22188, 4789, 10), -- NPC High Level
 -- Andreas' Royal Guards
-(22189, 4032, 9), -- Power Strike
-(22189, 4408, 10), -- HP Increase (2x)
-(22189, 4409, 1), -- MP Increase (1x)
-(22189, 4410, 11), -- Average P. Atk.
-(22189, 4411, 11), -- Average M. Atk.
-(22189, 4412, 11), -- Average P. Def.
-(22189, 4413, 11), -- Average M. Def.
-(22189, 4414, 3), -- Light Armor Type
-(22189, 4415, 11), -- Spears
-(22189, 4416, 6), -- Humanoids
-(22189, 4417, 26), -- Humanoids
-(22189, 4789, 10), -- High Level
+(22189, 4032, 9), -- NPC Strike
+(22189, 4408, 10), -- HP Modifiers
+(22189, 4409, 1), -- MP Modifiers
+(22189, 4410, 11), -- P. Atk. Modifiers
+(22189, 4411, 11), -- M. Atk. Modifiers
+(22189, 4412, 11), -- P. Def. Modifiers
+(22189, 4413, 11), -- M. Def. Modifiers
+(22189, 4414, 3), -- Armor Type
+(22189, 4415, 11), -- Weapon Type
+(22189, 4416, 6), -- Races
+(22189, 4417, 26), -- Race Types
+(22189, 4789, 10), -- NPC High Level
 -- Ritual Sacrifice
-(22190, 4032, 9), -- Power Strike
-(22190, 4408, 10), -- HP Increase (2x)
-(22190, 4409, 1), -- MP Increase (1x)
-(22190, 4410, 11), -- Average P. Atk.
-(22190, 4411, 11), -- Average M. Atk.
-(22190, 4412, 11), -- Average P. Def.
-(22190, 4413, 11), -- Average M. Def.
-(22190, 4414, 3), -- Light Armor Type
-(22190, 4415, 3), -- One-handed Sword
-(22190, 4416, 1), -- Undead
-(22190, 4417, 36), -- Undead
-(22190, 4614, 9), -- Death Bomb
-(22190, 4789, 10), -- High Level
+(22190, 4032, 9), -- NPC Strike
+(22190, 4408, 10), -- HP Modifiers
+(22190, 4409, 1), -- MP Modifiers
+(22190, 4410, 11), -- P. Atk. Modifiers
+(22190, 4411, 11), -- M. Atk. Modifiers
+(22190, 4412, 11), -- P. Def. Modifiers
+(22190, 4413, 11), -- M. Def. Modifiers
+(22190, 4414, 3), -- Armor Type
+(22190, 4415, 3), -- Weapon Type
+(22190, 4416, 1), -- Races
+(22190, 4417, 36), -- Race Types
+(22190, 4614, 9), -- NPC Death Bomb
+(22190, 4789, 10), -- NPC High Level
 -- Andreas' Captain of the Royal Guard
-(22191, 4158, 9), -- Prominence
-(22191, 4408, 10), -- HP Increase (2x)
-(22191, 4409, 1), -- MP Increase (1x)
-(22191, 4410, 11), -- Average P. Atk.
-(22191, 4411, 11), -- Average M. Atk.
-(22191, 4412, 11), -- Average P. Def.
-(22191, 4413, 11), -- Average M. Def.
-(22191, 4414, 3), -- Light Armor Type
-(22191, 4415, 5), -- Blunt Weapons
-(22191, 4416, 6), -- Humanoids
-(22191, 4417, 26), -- Humanoids
+(22191, 4158, 9), -- NPC Prominence - Magic
+(22191, 4408, 10), -- HP Modifiers
+(22191, 4409, 1), -- MP Modifiers
+(22191, 4410, 11), -- P. Atk. Modifiers
+(22191, 4411, 11), -- M. Atk. Modifiers
+(22191, 4412, 11), -- P. Def. Modifiers
+(22191, 4413, 11), -- M. Def. Modifiers
+(22191, 4414, 3), -- Armor Type
+(22191, 4415, 5), -- Weapon Type
+(22191, 4416, 6), -- Races
+(22191, 4417, 26), -- Race Types
 (22191, 4466, 3), -- Surrender To Darkness
-(22191, 4622, 9), -- Drain Health
-(22191, 4789, 10), -- High Level
+(22191, 4622, 9), -- NPC AE - 80% HP Drain - Magic
+(22191, 4789, 10), -- NPC High Level
 -- Andreas' Royal Guards
-(22192, 4408, 1), -- HP Increase (1x)
-(22192, 4409, 1), -- MP Increase (1x)
-(22192, 4410, 11), -- Average P. Atk.
-(22192, 4411, 11), -- Average M. Atk.
-(22192, 4412, 11), -- Average P. Def.
-(22192, 4413, 11), -- Average M. Def.
-(22192, 4414, 3), -- Light Armor Type
-(22192, 4415, 11), -- Spears
-(22192, 4416, 6), -- Humanoids
-(22192, 4417, 26), -- Humanoids
+(22192, 4408, 1), -- HP Modifiers
+(22192, 4409, 1), -- MP Modifiers
+(22192, 4410, 11), -- P. Atk. Modifiers
+(22192, 4411, 11), -- M. Atk. Modifiers
+(22192, 4412, 11), -- P. Def. Modifiers
+(22192, 4413, 11), -- M. Def. Modifiers
+(22192, 4414, 3), -- Armor Type
+(22192, 4415, 11), -- Weapon Type
+(22192, 4416, 6), -- Races
+(22192, 4417, 26), -- Race Types
 (22192, 4466, 3), -- Surrender To Darkness
-(22192, 4622, 9), -- Drain Health
-(22192, 4665, 9), -- Drain Health
-(22192, 4789, 10), -- High Level
+(22192, 4622, 9), -- NPC AE - 80% HP Drain - Magic
+(22192, 4665, 9), -- NPC 100% HP Drain - Magic
+(22192, 4789, 10), -- NPC High Level
 -- Andreas' Royal Guards
-(22193, 4408, 1), -- HP Increase (1x)
-(22193, 4409, 1), -- MP Increase (1x)
-(22193, 4410, 11), -- Average P. Atk.
-(22193, 4411, 11), -- Average M. Atk.
-(22193, 4412, 11), -- Average P. Def.
-(22193, 4413, 11), -- Average M. Def.
-(22193, 4414, 3), -- Light Armor Type
-(22193, 4415, 11), -- Spears
-(22193, 4416, 6), -- Humanoids
-(22193, 4417, 26), -- Humanoids
-(22193, 4622, 9), -- Drain Health
-(22193, 4665, 9), -- Drain Health
-(22193, 4789, 10), -- High Level
+(22193, 4408, 1), -- HP Modifiers
+(22193, 4409, 1), -- MP Modifiers
+(22193, 4410, 11), -- P. Atk. Modifiers
+(22193, 4411, 11), -- M. Atk. Modifiers
+(22193, 4412, 11), -- P. Def. Modifiers
+(22193, 4413, 11), -- M. Def. Modifiers
+(22193, 4414, 3), -- Armor Type
+(22193, 4415, 11), -- Weapon Type
+(22193, 4416, 6), -- Races
+(22193, 4417, 26), -- Race Types
+(22193, 4622, 9), -- NPC AE - 80% HP Drain - Magic
+(22193, 4665, 9), -- NPC 100% HP Drain - Magic
+(22193, 4789, 10), -- NPC High Level
 -- Penance Guard
-(22194, 4032, 9), -- Power Strike
-(22194, 4253, 9), -- Blaze
-(22194, 4408, 9), -- HP Increase (1/2x)
-(22194, 4409, 1), -- MP Increase (1x)
-(22194, 4410, 11), -- Average P. Atk.
-(22194, 4411, 11), -- Average M. Atk.
-(22194, 4412, 11), -- Average P. Def.
-(22194, 4413, 11), -- Average M. Def.
-(22194, 4414, 2), -- Standard Type
-(22194, 4415, 3), -- One-handed Sword
-(22194, 4416, 1), -- Undead
-(22194, 4417, 35), -- Undead
-(22194, 4789, 9), -- High Level
+(22194, 4032, 9), -- NPC Strike
+(22194, 4253, 9), -- NPC Blaze - Slow
+(22194, 4408, 9), -- HP Modifiers
+(22194, 4409, 1), -- MP Modifiers
+(22194, 4410, 11), -- P. Atk. Modifiers
+(22194, 4411, 11), -- M. Atk. Modifiers
+(22194, 4412, 11), -- P. Def. Modifiers
+(22194, 4413, 11), -- M. Def. Modifiers
+(22194, 4414, 2), -- Armor Type
+(22194, 4415, 3), -- Weapon Type
+(22194, 4416, 1), -- Races
+(22194, 4417, 35), -- Race Types
+(22194, 4789, 9), -- NPC High Level
 -- Ritual Sacrifice
-(22195, 4408, 12), -- HP Increase (4x)
-(22195, 4409, 1), -- MP Increase (1x)
-(22195, 4410, 11), -- Average P. Atk.
-(22195, 4411, 11), -- Average M. Atk.
-(22195, 4412, 11), -- Average P. Def.
-(22195, 4413, 11), -- Average M. Def.
-(22195, 4414, 3), -- Light Armor Type
-(22195, 4415, 5), -- Blunt Weapons
-(22195, 4416, 1), -- Undead
-(22195, 4417, 36), -- Undead
-(22195, 4614, 9), -- Death Bomb
-(22195, 4789, 9), -- High Level
+(22195, 4408, 12), -- HP Modifiers
+(22195, 4409, 1), -- MP Modifiers
+(22195, 4410, 11), -- P. Atk. Modifiers
+(22195, 4411, 11), -- M. Atk. Modifiers
+(22195, 4412, 11), -- P. Def. Modifiers
+(22195, 4413, 11), -- M. Def. Modifiers
+(22195, 4414, 3), -- Armor Type
+(22195, 4415, 5), -- Weapon Type
+(22195, 4416, 1), -- Races
+(22195, 4417, 36), -- Race Types
+(22195, 4614, 9), -- NPC Death Bomb
+(22195, 4789, 9), -- NPC High Level
 -- Velociraptor
-(22196, 4071, 3), -- Resist Bow/Crossbow Weapons
+(22196, 4071, 3), -- Resist Archery
 (22196, 4084, 9), -- Resist Physical Attack
-(22196, 4285, 5), -- Resist Sleep Attacks
-(22196, 4408, 1), -- HP Increase (1x)
-(22196, 4409, 1), -- MP Increase (1x)
-(22196, 4410, 12), -- Slightly Strong P. Atk.
-(22196, 4411, 11), -- Average M. Atk.
-(22196, 4412, 12), -- Slightly Strong P. Def.
-(22196, 4413, 11), -- Average M. Def.
-(22196, 4414, 3), -- Light Armor Type
-(22196, 4415, 5), -- Blunt Weapons
-(22196, 4416, 3), -- Beasts
-(22196, 4417, 4), -- Beasts
+(22196, 4285, 5), -- Resist Sleep
+(22196, 4408, 1), -- HP Modifiers
+(22196, 4409, 1), -- MP Modifiers
+(22196, 4410, 12), -- P. Atk. Modifiers
+(22196, 4411, 11), -- M. Atk. Modifiers
+(22196, 4412, 12), -- P. Def. Modifiers
+(22196, 4413, 11), -- M. Def. Modifiers
+(22196, 4414, 3), -- Armor Type
+(22196, 4415, 5), -- Weapon Type
+(22196, 4416, 3), -- Races
+(22196, 4417, 4), -- Race Types
 (22196, 4439, 2), -- Greater Resist Hold
 (22196, 4445, 2), -- Greater Resist Spear Weapons
-(22196, 5079, 1), -- Haste Focus
+(22196, 5079, 1), -- NPC Focused Haste
 (22196, 5081, 2), -- Silence
-(22196, 5082, 2), -- Whirlwind
+(22196, 5082, 2), -- NPC Spinning, Slashing Trick
 (22196, 5465, 1), -- Earth Attacks
 (22196, 5601, 9), -- Short-Range Physical Attack Resistance
 -- Velociraptor
-(22197, 4071, 3), -- Resist Bow/Crossbow Weapons
-(22197, 4073, 10), -- Stun
+(22197, 4071, 3), -- Resist Archery
+(22197, 4073, 10), -- Shock
 (22197, 4084, 9), -- Resist Physical Attack
-(22197, 4285, 5), -- Resist Sleep Attacks
-(22197, 4408, 1), -- HP Increase (1x)
-(22197, 4409, 1), -- MP Increase (1x)
-(22197, 4410, 12), -- Slightly Strong P. Atk.
-(22197, 4411, 11), -- Average M. Atk.
-(22197, 4412, 12), -- Slightly Strong P. Def.
-(22197, 4413, 11), -- Average M. Def.
-(22197, 4414, 3), -- Light Armor Type
-(22197, 4415, 5), -- Blunt Weapons
-(22197, 4416, 3), -- Beasts
-(22197, 4417, 4), -- Beasts
+(22197, 4285, 5), -- Resist Sleep
+(22197, 4408, 1), -- HP Modifiers
+(22197, 4409, 1), -- MP Modifiers
+(22197, 4410, 12), -- P. Atk. Modifiers
+(22197, 4411, 11), -- M. Atk. Modifiers
+(22197, 4412, 12), -- P. Def. Modifiers
+(22197, 4413, 11), -- M. Def. Modifiers
+(22197, 4414, 3), -- Armor Type
+(22197, 4415, 5), -- Weapon Type
+(22197, 4416, 3), -- Races
+(22197, 4417, 4), -- Race Types
 (22197, 4439, 2), -- Greater Resist Hold
 (22197, 4445, 2), -- Greater Resist Spear Weapons
 (22197, 5465, 1), -- Earth Attacks
 (22197, 5601, 9), -- Short-Range Physical Attack Resistance
 -- Velociraptor
-(22198, 4071, 3), -- Resist Bow/Crossbow Weapons
+(22198, 4071, 3), -- Resist Archery
 (22198, 4084, 9), -- Resist Physical Attack
-(22198, 4285, 5), -- Resist Sleep Attacks
-(22198, 4408, 1), -- HP Increase (1x)
-(22198, 4409, 1), -- MP Increase (1x)
-(22198, 4410, 12), -- Slightly Strong P. Atk.
-(22198, 4411, 11), -- Average M. Atk.
-(22198, 4412, 12), -- Slightly Strong P. Def.
-(22198, 4413, 11), -- Average M. Def.
-(22198, 4414, 3), -- Light Armor Type
-(22198, 4415, 5), -- Blunt Weapons
-(22198, 4416, 3), -- Beasts
-(22198, 4417, 4), -- Beasts
+(22198, 4285, 5), -- Resist Sleep
+(22198, 4408, 1), -- HP Modifiers
+(22198, 4409, 1), -- MP Modifiers
+(22198, 4410, 12), -- P. Atk. Modifiers
+(22198, 4411, 11), -- M. Atk. Modifiers
+(22198, 4412, 12), -- P. Def. Modifiers
+(22198, 4413, 11), -- M. Def. Modifiers
+(22198, 4414, 3), -- Armor Type
+(22198, 4415, 5), -- Weapon Type
+(22198, 4416, 3), -- Races
+(22198, 4417, 4), -- Race Types
 (22198, 4439, 2), -- Greater Resist Hold
 (22198, 4445, 2), -- Greater Resist Spear Weapons
-(22198, 5079, 1), -- Haste Focus
+(22198, 5079, 1), -- NPC Focused Haste
 (22198, 5081, 2), -- Silence
-(22198, 5082, 2), -- Whirlwind
+(22198, 5082, 2), -- NPC Spinning, Slashing Trick
 (22198, 5465, 1), -- Earth Attacks
 (22198, 5601, 9), -- Short-Range Physical Attack Resistance
 -- Pterosaur
-(22199, 4071, 3), -- Resist Bow/Crossbow Weapons
+(22199, 4071, 3), -- Resist Archery
 (22199, 4084, 9), -- Resist Physical Attack
-(22199, 4244, 10), -- Wild Sweep
-(22199, 4408, 1), -- HP Increase (1x)
-(22199, 4409, 1), -- MP Increase (1x)
-(22199, 4410, 12), -- Slightly Strong P. Atk.
-(22199, 4411, 11), -- Average M. Atk.
-(22199, 4412, 12), -- Slightly Strong P. Def.
-(22199, 4413, 11), -- Average M. Def.
-(22199, 4414, 2), -- Standard Type
-(22199, 4415, 5), -- Blunt Weapons
-(22199, 4416, 3), -- Beasts
-(22199, 4417, 4), -- Beasts
+(22199, 4244, 10), -- NPC Wild Sweep
+(22199, 4408, 1), -- HP Modifiers
+(22199, 4409, 1), -- MP Modifiers
+(22199, 4410, 12), -- P. Atk. Modifiers
+(22199, 4411, 11), -- M. Atk. Modifiers
+(22199, 4412, 12), -- P. Def. Modifiers
+(22199, 4413, 11), -- M. Def. Modifiers
+(22199, 4414, 2), -- Armor Type
+(22199, 4415, 5), -- Weapon Type
+(22199, 4416, 3), -- Races
+(22199, 4417, 4), -- Race Types
 (22199, 4438, 5), -- Greater Resist Sleep
 (22199, 4439, 5), -- Greater Resist Hold
 (22199, 4440, 5), -- Greater Resist Paralysis
@@ -51101,268 +51101,268 @@ INSERT INTO `npcskills` VALUES
 (22199, 5465, 1), -- Earth Attacks
 (22199, 5601, 9), -- Short-Range Physical Attack Resistance
 -- Ornithomimus
-(22200, 4071, 5), -- Resist Bow/Crossbow Weapons
+(22200, 4071, 5), -- Resist Archery
 (22200, 4084, 9), -- Resist Physical Attack
-(22200, 4285, 5), -- Resist Sleep Attacks
-(22200, 4408, 1), -- HP Increase (1x)
-(22200, 4409, 1), -- MP Increase (1x)
-(22200, 4410, 11), -- Average P. Atk.
-(22200, 4411, 11), -- Average M. Atk.
-(22200, 4412, 12), -- Slightly Strong P. Def.
-(22200, 4413, 11), -- Average M. Def.
-(22200, 4414, 3), -- Light Armor Type
-(22200, 4415, 5), -- Blunt Weapons
-(22200, 4416, 3), -- Beasts
-(22200, 4417, 4), -- Beasts
+(22200, 4285, 5), -- Resist Sleep
+(22200, 4408, 1), -- HP Modifiers
+(22200, 4409, 1), -- MP Modifiers
+(22200, 4410, 11), -- P. Atk. Modifiers
+(22200, 4411, 11), -- M. Atk. Modifiers
+(22200, 4412, 12), -- P. Def. Modifiers
+(22200, 4413, 11), -- M. Def. Modifiers
+(22200, 4414, 3), -- Armor Type
+(22200, 4415, 5), -- Weapon Type
+(22200, 4416, 3), -- Races
+(22200, 4417, 4), -- Race Types
 (22200, 4439, 2), -- Greater Resist Hold
 (22200, 4445, 1), -- Greater Resist Spear Weapons
-(22200, 5080, 1), -- Haste Might
+(22200, 5080, 1), -- NPC Mighty Haste
 (22200, 5083, 1), -- Stun
-(22200, 5084, 1), -- Blinding Blow
+(22200, 5084, 1), -- NPC Blinding Blow
 (22200, 5601, 9), -- Short-Range Physical Attack Resistance
 -- Ornithomimus
-(22201, 4071, 5), -- Resist Bow/Crossbow Weapons
+(22201, 4071, 5), -- Resist Archery
 (22201, 4084, 9), -- Resist Physical Attack
-(22201, 4285, 5), -- Resist Sleep Attacks
-(22201, 4408, 1), -- HP Increase (1x)
-(22201, 4409, 1), -- MP Increase (1x)
-(22201, 4410, 11), -- Average P. Atk.
-(22201, 4411, 11), -- Average M. Atk.
-(22201, 4412, 12), -- Slightly Strong P. Def.
-(22201, 4413, 11), -- Average M. Def.
-(22201, 4414, 2), -- Standard Type
-(22201, 4415, 5), -- Blunt Weapons
-(22201, 4416, 3), -- Beasts
-(22201, 4417, 4), -- Beasts
+(22201, 4285, 5), -- Resist Sleep
+(22201, 4408, 1), -- HP Modifiers
+(22201, 4409, 1), -- MP Modifiers
+(22201, 4410, 11), -- P. Atk. Modifiers
+(22201, 4411, 11), -- M. Atk. Modifiers
+(22201, 4412, 12), -- P. Def. Modifiers
+(22201, 4413, 11), -- M. Def. Modifiers
+(22201, 4414, 2), -- Armor Type
+(22201, 4415, 5), -- Weapon Type
+(22201, 4416, 3), -- Races
+(22201, 4417, 4), -- Race Types
 (22201, 4439, 2), -- Greater Resist Hold
 (22201, 4445, 1), -- Greater Resist Spear Weapons
-(22201, 5084, 1), -- Blinding Blow
+(22201, 5084, 1), -- NPC Blinding Blow
 (22201, 5601, 9), -- Short-Range Physical Attack Resistance
 -- Ornithomimus
-(22202, 4071, 5), -- Resist Bow/Crossbow Weapons
+(22202, 4071, 5), -- Resist Archery
 (22202, 4084, 9), -- Resist Physical Attack
-(22202, 4285, 5), -- Resist Sleep Attacks
-(22202, 4408, 1), -- HP Increase (1x)
-(22202, 4409, 1), -- MP Increase (1x)
-(22202, 4410, 11), -- Average P. Atk.
-(22202, 4411, 11), -- Average M. Atk.
-(22202, 4412, 12), -- Slightly Strong P. Def.
-(22202, 4413, 11), -- Average M. Def.
-(22202, 4414, 3), -- Light Armor Type
-(22202, 4415, 5), -- Blunt Weapons
-(22202, 4416, 3), -- Beasts
-(22202, 4417, 4), -- Beasts
+(22202, 4285, 5), -- Resist Sleep
+(22202, 4408, 1), -- HP Modifiers
+(22202, 4409, 1), -- MP Modifiers
+(22202, 4410, 11), -- P. Atk. Modifiers
+(22202, 4411, 11), -- M. Atk. Modifiers
+(22202, 4412, 12), -- P. Def. Modifiers
+(22202, 4413, 11), -- M. Def. Modifiers
+(22202, 4414, 3), -- Armor Type
+(22202, 4415, 5), -- Weapon Type
+(22202, 4416, 3), -- Races
+(22202, 4417, 4), -- Race Types
 (22202, 4439, 2), -- Greater Resist Hold
 (22202, 4445, 1), -- Greater Resist Spear Weapons
-(22202, 5080, 1), -- Haste Might
+(22202, 5080, 1), -- NPC Mighty Haste
 (22202, 5083, 1), -- Stun
-(22202, 5084, 1), -- Blinding Blow
+(22202, 5084, 1), -- NPC Blinding Blow
 (22202, 5601, 9), -- Short-Range Physical Attack Resistance
 -- Deinonychus
-(22203, 4071, 3), -- Resist Bow/Crossbow Weapons
+(22203, 4071, 3), -- Resist Archery
 (22203, 4084, 9), -- Resist Physical Attack
-(22203, 4285, 5), -- Resist Sleep Attacks
-(22203, 4287, 5), -- Resist Hold Attacks
-(22203, 4408, 1), -- HP Increase (1x)
-(22203, 4409, 1), -- MP Increase (1x)
-(22203, 4410, 11), -- Average P. Atk.
-(22203, 4411, 11), -- Average M. Atk.
-(22203, 4412, 12), -- Slightly Strong P. Def.
-(22203, 4413, 11), -- Average M. Def.
-(22203, 4414, 3), -- Light Armor Type
-(22203, 4415, 5), -- Blunt Weapons
-(22203, 4416, 3), -- Beasts
-(22203, 4417, 4), -- Beasts
+(22203, 4285, 5), -- Resist Sleep
+(22203, 4287, 5), -- Resist Hold
+(22203, 4408, 1), -- HP Modifiers
+(22203, 4409, 1), -- MP Modifiers
+(22203, 4410, 11), -- P. Atk. Modifiers
+(22203, 4411, 11), -- M. Atk. Modifiers
+(22203, 4412, 12), -- P. Def. Modifiers
+(22203, 4413, 11), -- M. Def. Modifiers
+(22203, 4414, 3), -- Armor Type
+(22203, 4415, 5), -- Weapon Type
+(22203, 4416, 3), -- Races
+(22203, 4417, 4), -- Race Types
 (22203, 4445, 1), -- Greater Resist Spear Weapons
-(22203, 5079, 1), -- Haste Focus
-(22203, 5082, 1), -- Whirlwind
-(22203, 5084, 1), -- Blinding Blow
+(22203, 5079, 1), -- NPC Focused Haste
+(22203, 5082, 1), -- NPC Spinning, Slashing Trick
+(22203, 5084, 1), -- NPC Blinding Blow
 (22203, 5601, 9), -- Short-Range Physical Attack Resistance
 -- Deinonychus
-(22204, 4071, 3), -- Resist Bow/Crossbow Weapons
+(22204, 4071, 3), -- Resist Archery
 (22204, 4084, 9), -- Resist Physical Attack
-(22204, 4285, 5), -- Resist Sleep Attacks
-(22204, 4287, 5), -- Resist Hold Attacks
-(22204, 4408, 1), -- HP Increase (1x)
-(22204, 4409, 1), -- MP Increase (1x)
-(22204, 4410, 11), -- Average P. Atk.
-(22204, 4411, 11), -- Average M. Atk.
-(22204, 4412, 12), -- Slightly Strong P. Def.
-(22204, 4413, 11), -- Average M. Def.
-(22204, 4414, 2), -- Standard Type
-(22204, 4415, 5), -- Blunt Weapons
-(22204, 4416, 3), -- Beasts
-(22204, 4417, 4), -- Beasts
+(22204, 4285, 5), -- Resist Sleep
+(22204, 4287, 5), -- Resist Hold
+(22204, 4408, 1), -- HP Modifiers
+(22204, 4409, 1), -- MP Modifiers
+(22204, 4410, 11), -- P. Atk. Modifiers
+(22204, 4411, 11), -- M. Atk. Modifiers
+(22204, 4412, 12), -- P. Def. Modifiers
+(22204, 4413, 11), -- M. Def. Modifiers
+(22204, 4414, 2), -- Armor Type
+(22204, 4415, 5), -- Weapon Type
+(22204, 4416, 3), -- Races
+(22204, 4417, 4), -- Race Types
 (22204, 4445, 1), -- Greater Resist Spear Weapons
 (22204, 5601, 9), -- Short-Range Physical Attack Resistance
 -- Deinonychus
-(22205, 4071, 3), -- Resist Bow/Crossbow Weapons
+(22205, 4071, 3), -- Resist Archery
 (22205, 4084, 9), -- Resist Physical Attack
-(22205, 4285, 5), -- Resist Sleep Attacks
-(22205, 4287, 5), -- Resist Hold Attacks
-(22205, 4408, 1), -- HP Increase (1x)
-(22205, 4409, 1), -- MP Increase (1x)
-(22205, 4410, 11), -- Average P. Atk.
-(22205, 4411, 11), -- Average M. Atk.
-(22205, 4412, 12), -- Slightly Strong P. Def.
-(22205, 4413, 11), -- Average M. Def.
-(22205, 4414, 3), -- Light Armor Type
-(22205, 4415, 5), -- Blunt Weapons
-(22205, 4416, 3), -- Beasts
-(22205, 4417, 4), -- Beasts
+(22205, 4285, 5), -- Resist Sleep
+(22205, 4287, 5), -- Resist Hold
+(22205, 4408, 1), -- HP Modifiers
+(22205, 4409, 1), -- MP Modifiers
+(22205, 4410, 11), -- P. Atk. Modifiers
+(22205, 4411, 11), -- M. Atk. Modifiers
+(22205, 4412, 12), -- P. Def. Modifiers
+(22205, 4413, 11), -- M. Def. Modifiers
+(22205, 4414, 3), -- Armor Type
+(22205, 4415, 5), -- Weapon Type
+(22205, 4416, 3), -- Races
+(22205, 4417, 4), -- Race Types
 (22205, 4445, 1), -- Greater Resist Spear Weapons
-(22205, 5079, 1), -- Haste Focus
-(22205, 5082, 1), -- Whirlwind
-(22205, 5084, 1), -- Blinding Blow
+(22205, 5079, 1), -- NPC Focused Haste
+(22205, 5082, 1), -- NPC Spinning, Slashing Trick
+(22205, 5084, 1), -- NPC Blinding Blow
 (22205, 5601, 9), -- Short-Range Physical Attack Resistance
 -- Pachycephalosaurus
-(22208, 4067, 10), -- Blow
-(22208, 4071, 3), -- Resist Bow/Crossbow Weapons
+(22208, 4067, 10), -- NPC Mortal Blow
+(22208, 4071, 3), -- Resist Archery
 (22208, 4084, 9), -- Resist Physical Attack
-(22208, 4285, 5), -- Resist Sleep Attacks
-(22208, 4408, 1), -- HP Increase (1x)
-(22208, 4409, 1), -- MP Increase (1x)
-(22208, 4410, 11), -- Average P. Atk.
-(22208, 4411, 11), -- Average M. Atk.
-(22208, 4412, 12), -- Slightly Strong P. Def.
-(22208, 4413, 11), -- Average M. Def.
-(22208, 4414, 3), -- Light Armor Type
-(22208, 4415, 5), -- Blunt Weapons
-(22208, 4416, 3), -- Beasts
-(22208, 4417, 4), -- Beasts
+(22208, 4285, 5), -- Resist Sleep
+(22208, 4408, 1), -- HP Modifiers
+(22208, 4409, 1), -- MP Modifiers
+(22208, 4410, 11), -- P. Atk. Modifiers
+(22208, 4411, 11), -- M. Atk. Modifiers
+(22208, 4412, 12), -- P. Def. Modifiers
+(22208, 4413, 11), -- M. Def. Modifiers
+(22208, 4414, 3), -- Armor Type
+(22208, 4415, 5), -- Weapon Type
+(22208, 4416, 3), -- Races
+(22208, 4417, 4), -- Race Types
 (22208, 4439, 2), -- Greater Resist Hold
 (22208, 4445, 1), -- Greater Resist Spear Weapons
-(22208, 5080, 1), -- Haste Might
+(22208, 5080, 1), -- NPC Mighty Haste
 (22208, 5083, 1), -- Stun
 (22208, 5601, 9), -- Short-Range Physical Attack Resistance
 -- Pachycephalosaurus
-(22209, 4071, 2), -- Resist Bow/Crossbow Weapons
+(22209, 4071, 2), -- Resist Archery
 (22209, 4084, 9), -- Resist Physical Attack
-(22209, 4285, 5), -- Resist Sleep Attacks
-(22209, 4408, 1), -- HP Increase (1x)
-(22209, 4409, 1), -- MP Increase (1x)
-(22209, 4410, 11), -- Average P. Atk.
-(22209, 4411, 11), -- Average M. Atk.
-(22209, 4412, 12), -- Slightly Strong P. Def.
-(22209, 4413, 11), -- Average M. Def.
-(22209, 4414, 2), -- Standard Type
-(22209, 4415, 5), -- Blunt Weapons
-(22209, 4416, 3), -- Beasts
-(22209, 4417, 4), -- Beasts
+(22209, 4285, 5), -- Resist Sleep
+(22209, 4408, 1), -- HP Modifiers
+(22209, 4409, 1), -- MP Modifiers
+(22209, 4410, 11), -- P. Atk. Modifiers
+(22209, 4411, 11), -- M. Atk. Modifiers
+(22209, 4412, 12), -- P. Def. Modifiers
+(22209, 4413, 11), -- M. Def. Modifiers
+(22209, 4414, 2), -- Armor Type
+(22209, 4415, 5), -- Weapon Type
+(22209, 4416, 3), -- Races
+(22209, 4417, 4), -- Race Types
 (22209, 4439, 2), -- Greater Resist Hold
 (22209, 4445, 1), -- Greater Resist Spear Weapons
 (22209, 5601, 9), -- Short-Range Physical Attack Resistance
 -- Pachycephalosaurus
-(22210, 4067, 10), -- Blow
-(22210, 4071, 3), -- Resist Bow/Crossbow Weapons
+(22210, 4067, 10), -- NPC Mortal Blow
+(22210, 4071, 3), -- Resist Archery
 (22210, 4084, 9), -- Resist Physical Attack
-(22210, 4285, 5), -- Resist Sleep Attacks
-(22210, 4408, 1), -- HP Increase (1x)
-(22210, 4409, 1), -- MP Increase (1x)
-(22210, 4410, 11), -- Average P. Atk.
-(22210, 4411, 11), -- Average M. Atk.
-(22210, 4412, 12), -- Slightly Strong P. Def.
-(22210, 4413, 11), -- Average M. Def.
-(22210, 4414, 3), -- Light Armor Type
-(22210, 4415, 5), -- Blunt Weapons
-(22210, 4416, 3), -- Beasts
-(22210, 4417, 4), -- Beasts
+(22210, 4285, 5), -- Resist Sleep
+(22210, 4408, 1), -- HP Modifiers
+(22210, 4409, 1), -- MP Modifiers
+(22210, 4410, 11), -- P. Atk. Modifiers
+(22210, 4411, 11), -- M. Atk. Modifiers
+(22210, 4412, 12), -- P. Def. Modifiers
+(22210, 4413, 11), -- M. Def. Modifiers
+(22210, 4414, 3), -- Armor Type
+(22210, 4415, 5), -- Weapon Type
+(22210, 4416, 3), -- Races
+(22210, 4417, 4), -- Race Types
 (22210, 4439, 2), -- Greater Resist Hold
 (22210, 4445, 1), -- Greater Resist Spear Weapons
-(22210, 5080, 1), -- Haste Might
+(22210, 5080, 1), -- NPC Mighty Haste
 (22210, 5083, 1), -- Stun
 (22210, 5601, 9), -- Short-Range Physical Attack Resistance
 -- Wild Strider
-(22211, 4071, 4), -- Resist Bow/Crossbow Weapons
+(22211, 4071, 4), -- Resist Archery
 (22211, 4084, 9), -- Resist Physical Attack
-(22211, 4232, 10), -- Whirlwind
-(22211, 4285, 5), -- Resist Sleep Attacks
-(22211, 4408, 1), -- HP Increase (1x)
-(22211, 4409, 1), -- MP Increase (1x)
-(22211, 4410, 11), -- Average P. Atk.
-(22211, 4411, 11), -- Average M. Atk.
-(22211, 4412, 12), -- Slightly Strong P. Def.
-(22211, 4413, 11), -- Average M. Def.
-(22211, 4414, 3), -- Light Armor Type
-(22211, 4415, 5), -- Blunt Weapons
-(22211, 4416, 3), -- Beasts
-(22211, 4417, 4), -- Beasts
+(22211, 4232, 10), -- NPC AE Strike
+(22211, 4285, 5), -- Resist Sleep
+(22211, 4408, 1), -- HP Modifiers
+(22211, 4409, 1), -- MP Modifiers
+(22211, 4410, 11), -- P. Atk. Modifiers
+(22211, 4411, 11), -- M. Atk. Modifiers
+(22211, 4412, 12), -- P. Def. Modifiers
+(22211, 4413, 11), -- M. Def. Modifiers
+(22211, 4414, 3), -- Armor Type
+(22211, 4415, 5), -- Weapon Type
+(22211, 4416, 3), -- Races
+(22211, 4417, 4), -- Race Types
 (22211, 4439, 2), -- Greater Resist Hold
 (22211, 4445, 1), -- Greater Resist Spear Weapons
-(22211, 5079, 1), -- Haste Focus
+(22211, 5079, 1), -- NPC Focused Haste
 (22211, 5081, 1), -- Silence
 (22211, 5601, 9), -- Short-Range Physical Attack Resistance
 -- Wild Strider
-(22212, 4067, 10), -- Blow
-(22212, 4071, 4), -- Resist Bow/Crossbow Weapons
+(22212, 4067, 10), -- NPC Mortal Blow
+(22212, 4071, 4), -- Resist Archery
 (22212, 4084, 9), -- Resist Physical Attack
-(22212, 4285, 5), -- Resist Sleep Attacks
-(22212, 4408, 1), -- HP Increase (1x)
-(22212, 4409, 1), -- MP Increase (1x)
-(22212, 4410, 11), -- Average P. Atk.
-(22212, 4411, 11), -- Average M. Atk.
-(22212, 4412, 12), -- Slightly Strong P. Def.
-(22212, 4413, 11), -- Average M. Def.
-(22212, 4414, 2), -- Standard Type
-(22212, 4415, 5), -- Blunt Weapons
-(22212, 4416, 3), -- Beasts
-(22212, 4417, 4), -- Beasts
+(22212, 4285, 5), -- Resist Sleep
+(22212, 4408, 1), -- HP Modifiers
+(22212, 4409, 1), -- MP Modifiers
+(22212, 4410, 11), -- P. Atk. Modifiers
+(22212, 4411, 11), -- M. Atk. Modifiers
+(22212, 4412, 12), -- P. Def. Modifiers
+(22212, 4413, 11), -- M. Def. Modifiers
+(22212, 4414, 2), -- Armor Type
+(22212, 4415, 5), -- Weapon Type
+(22212, 4416, 3), -- Races
+(22212, 4417, 4), -- Race Types
 (22212, 4439, 2), -- Greater Resist Hold
 (22212, 4445, 1), -- Greater Resist Spear Weapons
 (22212, 5601, 9), -- Short-Range Physical Attack Resistance
 -- Wild Strider
-(22213, 4071, 4), -- Resist Bow/Crossbow Weapons
+(22213, 4071, 4), -- Resist Archery
 (22213, 4084, 9), -- Resist Physical Attack
-(22213, 4232, 10), -- Whirlwind
-(22213, 4285, 5), -- Resist Sleep Attacks
-(22213, 4408, 1), -- HP Increase (1x)
-(22213, 4409, 1), -- MP Increase (1x)
-(22213, 4410, 11), -- Average P. Atk.
-(22213, 4411, 11), -- Average M. Atk.
-(22213, 4412, 12), -- Slightly Strong P. Def.
-(22213, 4413, 11), -- Average M. Def.
-(22213, 4414, 3), -- Light Armor Type
-(22213, 4415, 5), -- Blunt Weapons
-(22213, 4416, 3), -- Beasts
-(22213, 4417, 4), -- Beasts
+(22213, 4232, 10), -- NPC AE Strike
+(22213, 4285, 5), -- Resist Sleep
+(22213, 4408, 1), -- HP Modifiers
+(22213, 4409, 1), -- MP Modifiers
+(22213, 4410, 11), -- P. Atk. Modifiers
+(22213, 4411, 11), -- M. Atk. Modifiers
+(22213, 4412, 12), -- P. Def. Modifiers
+(22213, 4413, 11), -- M. Def. Modifiers
+(22213, 4414, 3), -- Armor Type
+(22213, 4415, 5), -- Weapon Type
+(22213, 4416, 3), -- Races
+(22213, 4417, 4), -- Race Types
 (22213, 4439, 2), -- Greater Resist Hold
 (22213, 4445, 1), -- Greater Resist Spear Weapons
-(22213, 5079, 1), -- Haste Focus
+(22213, 5079, 1), -- NPC Focused Haste
 (22213, 5081, 1), -- Silence
 (22213, 5601, 9), -- Short-Range Physical Attack Resistance
 -- Elroki
-(22214, 4071, 2), -- Resist Bow/Crossbow Weapons
+(22214, 4071, 2), -- Resist Archery
 (22214, 4084, 9), -- Resist Physical Attack
-(22214, 4151, 10), -- Wind Strike
-(22214, 4408, 1), -- HP Increase (1x)
-(22214, 4409, 1), -- MP Increase (1x)
-(22214, 4410, 11), -- Average P. Atk.
-(22214, 4411, 11), -- Average M. Atk.
-(22214, 4412, 12), -- Slightly Strong P. Def.
-(22214, 4413, 11), -- Average M. Def.
-(22214, 4414, 2), -- Standard Type
-(22214, 4415, 5), -- Blunt Weapons
-(22214, 4416, 6), -- Humanoids
-(22214, 4417, 4), -- Beasts
+(22214, 4151, 10), -- NPC Windstrike - Magic
+(22214, 4408, 1), -- HP Modifiers
+(22214, 4409, 1), -- MP Modifiers
+(22214, 4410, 11), -- P. Atk. Modifiers
+(22214, 4411, 11), -- M. Atk. Modifiers
+(22214, 4412, 12), -- P. Def. Modifiers
+(22214, 4413, 11), -- M. Def. Modifiers
+(22214, 4414, 2), -- Armor Type
+(22214, 4415, 5), -- Weapon Type
+(22214, 4416, 6), -- Races
+(22214, 4417, 4), -- Race Types
 (22214, 4438, 5), -- Greater Resist Sleep
 (22214, 4439, 5), -- Greater Resist Hold
 (22214, 4445, 1), -- Greater Resist Spear Weapons
-(22214, 4486, 10), -- Decrease P. Def.
-(22214, 5080, 1), -- Haste Might
+(22214, 4486, 10), -- Decrease P. Def
+(22214, 5080, 1), -- NPC Mighty Haste
 (22214, 5178, 1), -- NPC Burn
 (22214, 5601, 9), -- Short-Range Physical Attack Resistance
 -- Tyrannosaurus
 (22215, 4084, 9), -- Resist Physical Attack
-(22215, 4408, 1), -- HP Increase (1x)
-(22215, 4409, 1), -- MP Increase (1x)
-(22215, 4410, 11), -- Average P. Atk.
-(22215, 4411, 11), -- Average M. Atk.
-(22215, 4412, 12), -- Slightly Strong P. Def.
-(22215, 4413, 11), -- Average M. Def.
-(22215, 4414, 2), -- Standard Type
-(22215, 4415, 5), -- Blunt Weapons
-(22215, 4416, 3), -- Beasts
-(22215, 4417, 4), -- Beasts
+(22215, 4408, 1), -- HP Modifiers
+(22215, 4409, 1), -- MP Modifiers
+(22215, 4410, 11), -- P. Atk. Modifiers
+(22215, 4411, 11), -- M. Atk. Modifiers
+(22215, 4412, 12), -- P. Def. Modifiers
+(22215, 4413, 11), -- M. Def. Modifiers
+(22215, 4414, 2), -- Armor Type
+(22215, 4415, 5), -- Weapon Type
+(22215, 4416, 3), -- Races
+(22215, 4417, 4), -- Race Types
 (22215, 4438, 5), -- Greater Resist Sleep
 (22215, 4439, 5), -- Greater Resist Hold
 (22215, 4440, 5), -- Greater Resist Paralysis
@@ -51370,7 +51370,7 @@ INSERT INTO `npcskills` VALUES
 (22215, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 (22215, 4445, 1), -- Greater Resist Spear Weapons
 (22215, 5081, 4), -- Silence
-(22215, 5082, 4), -- Whirlwind
+(22215, 5082, 4), -- NPC Spinning, Slashing Trick
 (22215, 5083, 4), -- Stun
 (22215, 5087, 1), -- Berserk
 (22215, 5098, 1), -- Capture Penalty
@@ -51383,16 +51383,16 @@ INSERT INTO `npcskills` VALUES
 (22215, 5601, 9), -- Short-Range Physical Attack Resistance
 -- Tyrannosaurus
 (22216, 4084, 9), -- Resist Physical Attack
-(22216, 4408, 1), -- HP Increase (1x)
-(22216, 4409, 1), -- MP Increase (1x)
-(22216, 4410, 11), -- Average P. Atk.
-(22216, 4411, 11), -- Average M. Atk.
-(22216, 4412, 12), -- Slightly Strong P. Def.
-(22216, 4413, 11), -- Average M. Def.
-(22216, 4414, 2), -- Standard Type
-(22216, 4415, 5), -- Blunt Weapons
-(22216, 4416, 3), -- Beasts
-(22216, 4417, 4), -- Beasts
+(22216, 4408, 1), -- HP Modifiers
+(22216, 4409, 1), -- MP Modifiers
+(22216, 4410, 11), -- P. Atk. Modifiers
+(22216, 4411, 11), -- M. Atk. Modifiers
+(22216, 4412, 12), -- P. Def. Modifiers
+(22216, 4413, 11), -- M. Def. Modifiers
+(22216, 4414, 2), -- Armor Type
+(22216, 4415, 5), -- Weapon Type
+(22216, 4416, 3), -- Races
+(22216, 4417, 4), -- Race Types
 (22216, 4438, 5), -- Greater Resist Sleep
 (22216, 4439, 5), -- Greater Resist Hold
 (22216, 4440, 5), -- Greater Resist Paralysis
@@ -51400,7 +51400,7 @@ INSERT INTO `npcskills` VALUES
 (22216, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 (22216, 4445, 1), -- Greater Resist Spear Weapons
 (22216, 5081, 4), -- Silence
-(22216, 5082, 4), -- Whirlwind
+(22216, 5082, 4), -- NPC Spinning, Slashing Trick
 (22216, 5083, 4), -- Stun
 (22216, 5087, 1), -- Berserk
 (22216, 5098, 1), -- Capture Penalty
@@ -51413,16 +51413,16 @@ INSERT INTO `npcskills` VALUES
 (22216, 5601, 9), -- Short-Range Physical Attack Resistance
 -- Tyrannosaurus
 (22217, 4084, 9), -- Resist Physical Attack
-(22217, 4408, 1), -- HP Increase (1x)
-(22217, 4409, 1), -- MP Increase (1x)
-(22217, 4410, 11), -- Average P. Atk.
-(22217, 4411, 11), -- Average M. Atk.
-(22217, 4412, 12), -- Slightly Strong P. Def.
-(22217, 4413, 11), -- Average M. Def.
-(22217, 4414, 2), -- Standard Type
-(22217, 4415, 5), -- Blunt Weapons
-(22217, 4416, 3), -- Beasts
-(22217, 4417, 4), -- Beasts
+(22217, 4408, 1), -- HP Modifiers
+(22217, 4409, 1), -- MP Modifiers
+(22217, 4410, 11), -- P. Atk. Modifiers
+(22217, 4411, 11), -- M. Atk. Modifiers
+(22217, 4412, 12), -- P. Def. Modifiers
+(22217, 4413, 11), -- M. Def. Modifiers
+(22217, 4414, 2), -- Armor Type
+(22217, 4415, 5), -- Weapon Type
+(22217, 4416, 3), -- Races
+(22217, 4417, 4), -- Race Types
 (22217, 4438, 5), -- Greater Resist Sleep
 (22217, 4439, 5), -- Greater Resist Hold
 (22217, 4440, 5), -- Greater Resist Paralysis
@@ -51430,7 +51430,7 @@ INSERT INTO `npcskills` VALUES
 (22217, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 (22217, 4445, 1), -- Greater Resist Spear Weapons
 (22217, 5081, 4), -- Silence
-(22217, 5082, 4), -- Whirlwind
+(22217, 5082, 4), -- NPC Spinning, Slashing Trick
 (22217, 5083, 4), -- Stun
 (22217, 5087, 1), -- Berserk
 (22217, 5098, 1), -- Capture Penalty
@@ -51442,3825 +51442,3825 @@ INSERT INTO `npcskills` VALUES
 (22217, 5599, 9), -- Stun Resistance
 (22217, 5601, 9), -- Short-Range Physical Attack Resistance
 -- Velociraptor
-(22218, 4032, 10), -- Power Strike
-(22218, 4071, 3), -- Resist Bow/Crossbow Weapons
+(22218, 4032, 10), -- NPC Strike
+(22218, 4071, 3), -- Resist Archery
 (22218, 4084, 9), -- Resist Physical Attack
-(22218, 4285, 5), -- Resist Sleep Attacks
-(22218, 4408, 1), -- HP Increase (1x)
-(22218, 4409, 1), -- MP Increase (1x)
-(22218, 4410, 12), -- Slightly Strong P. Atk.
-(22218, 4411, 11), -- Average M. Atk.
-(22218, 4412, 12), -- Slightly Strong P. Def.
-(22218, 4413, 11), -- Average M. Def.
-(22218, 4414, 3), -- Light Armor Type
-(22218, 4415, 5), -- Blunt Weapons
-(22218, 4416, 3), -- Beasts
-(22218, 4417, 4), -- Beasts
+(22218, 4285, 5), -- Resist Sleep
+(22218, 4408, 1), -- HP Modifiers
+(22218, 4409, 1), -- MP Modifiers
+(22218, 4410, 12), -- P. Atk. Modifiers
+(22218, 4411, 11), -- M. Atk. Modifiers
+(22218, 4412, 12), -- P. Def. Modifiers
+(22218, 4413, 11), -- M. Def. Modifiers
+(22218, 4414, 3), -- Armor Type
+(22218, 4415, 5), -- Weapon Type
+(22218, 4416, 3), -- Races
+(22218, 4417, 4), -- Race Types
 (22218, 4439, 2), -- Greater Resist Hold
 (22218, 4445, 1), -- Greater Resist Spear Weapons
 (22218, 5465, 1), -- Earth Attacks
 (22218, 5601, 9), -- Short-Range Physical Attack Resistance
 -- Ornithomimus
-(22219, 4071, 5), -- Resist Bow/Crossbow Weapons
+(22219, 4071, 5), -- Resist Archery
 (22219, 4084, 9), -- Resist Physical Attack
-(22219, 4285, 5), -- Resist Sleep Attacks
-(22219, 4408, 1), -- HP Increase (1x)
-(22219, 4409, 1), -- MP Increase (1x)
-(22219, 4410, 11), -- Average P. Atk.
-(22219, 4411, 11), -- Average M. Atk.
-(22219, 4412, 12), -- Slightly Strong P. Def.
-(22219, 4413, 11), -- Average M. Def.
-(22219, 4414, 2), -- Standard Type
-(22219, 4415, 5), -- Blunt Weapons
-(22219, 4416, 3), -- Beasts
-(22219, 4417, 4), -- Beasts
+(22219, 4285, 5), -- Resist Sleep
+(22219, 4408, 1), -- HP Modifiers
+(22219, 4409, 1), -- MP Modifiers
+(22219, 4410, 11), -- P. Atk. Modifiers
+(22219, 4411, 11), -- M. Atk. Modifiers
+(22219, 4412, 12), -- P. Def. Modifiers
+(22219, 4413, 11), -- M. Def. Modifiers
+(22219, 4414, 2), -- Armor Type
+(22219, 4415, 5), -- Weapon Type
+(22219, 4416, 3), -- Races
+(22219, 4417, 4), -- Race Types
 (22219, 4439, 2), -- Greater Resist Hold
 (22219, 4445, 1), -- Greater Resist Spear Weapons
-(22219, 5084, 1), -- Blinding Blow
+(22219, 5084, 1), -- NPC Blinding Blow
 (22219, 5601, 9), -- Short-Range Physical Attack Resistance
 -- Deinonychus
-(22220, 4067, 10), -- Blow
-(22220, 4071, 3), -- Resist Bow/Crossbow Weapons
+(22220, 4067, 10), -- NPC Mortal Blow
+(22220, 4071, 3), -- Resist Archery
 (22220, 4084, 9), -- Resist Physical Attack
-(22220, 4285, 5), -- Resist Sleep Attacks
-(22220, 4287, 5), -- Resist Hold Attacks
-(22220, 4408, 1), -- HP Increase (1x)
-(22220, 4409, 1), -- MP Increase (1x)
-(22220, 4410, 11), -- Average P. Atk.
-(22220, 4411, 11), -- Average M. Atk.
-(22220, 4412, 12), -- Slightly Strong P. Def.
-(22220, 4413, 11), -- Average M. Def.
-(22220, 4414, 2), -- Standard Type
-(22220, 4415, 5), -- Blunt Weapons
-(22220, 4416, 3), -- Beasts
-(22220, 4417, 4), -- Beasts
+(22220, 4285, 5), -- Resist Sleep
+(22220, 4287, 5), -- Resist Hold
+(22220, 4408, 1), -- HP Modifiers
+(22220, 4409, 1), -- MP Modifiers
+(22220, 4410, 11), -- P. Atk. Modifiers
+(22220, 4411, 11), -- M. Atk. Modifiers
+(22220, 4412, 12), -- P. Def. Modifiers
+(22220, 4413, 11), -- M. Def. Modifiers
+(22220, 4414, 2), -- Armor Type
+(22220, 4415, 5), -- Weapon Type
+(22220, 4416, 3), -- Races
+(22220, 4417, 4), -- Race Types
 (22220, 4445, 1), -- Greater Resist Spear Weapons
 (22220, 5601, 9), -- Short-Range Physical Attack Resistance
 -- Pachycephalosaurus
-(22221, 4071, 2), -- Resist Bow/Crossbow Weapons
+(22221, 4071, 2), -- Resist Archery
 (22221, 4084, 9), -- Resist Physical Attack
-(22221, 4285, 5), -- Resist Sleep Attacks
-(22221, 4408, 1), -- HP Increase (1x)
-(22221, 4409, 1), -- MP Increase (1x)
-(22221, 4410, 11), -- Average P. Atk.
-(22221, 4411, 11), -- Average M. Atk.
-(22221, 4412, 12), -- Slightly Strong P. Def.
-(22221, 4413, 11), -- Average M. Def.
-(22221, 4414, 2), -- Standard Type
-(22221, 4415, 5), -- Blunt Weapons
-(22221, 4416, 3), -- Beasts
-(22221, 4417, 4), -- Beasts
+(22221, 4285, 5), -- Resist Sleep
+(22221, 4408, 1), -- HP Modifiers
+(22221, 4409, 1), -- MP Modifiers
+(22221, 4410, 11), -- P. Atk. Modifiers
+(22221, 4411, 11), -- M. Atk. Modifiers
+(22221, 4412, 12), -- P. Def. Modifiers
+(22221, 4413, 11), -- M. Def. Modifiers
+(22221, 4414, 2), -- Armor Type
+(22221, 4415, 5), -- Weapon Type
+(22221, 4416, 3), -- Races
+(22221, 4417, 4), -- Race Types
 (22221, 4439, 2), -- Greater Resist Hold
 (22221, 4445, 1), -- Greater Resist Spear Weapons
 (22221, 5601, 9), -- Short-Range Physical Attack Resistance
 -- Wild Strider
-(22222, 4067, 10), -- Blow
-(22222, 4071, 4), -- Resist Bow/Crossbow Weapons
+(22222, 4067, 10), -- NPC Mortal Blow
+(22222, 4071, 4), -- Resist Archery
 (22222, 4084, 9), -- Resist Physical Attack
-(22222, 4285, 5), -- Resist Sleep Attacks
-(22222, 4408, 1), -- HP Increase (1x)
-(22222, 4409, 1), -- MP Increase (1x)
-(22222, 4410, 11), -- Average P. Atk.
-(22222, 4411, 11), -- Average M. Atk.
-(22222, 4412, 12), -- Slightly Strong P. Def.
-(22222, 4413, 11), -- Average M. Def.
-(22222, 4414, 2), -- Standard Type
-(22222, 4415, 5), -- Blunt Weapons
-(22222, 4416, 3), -- Beasts
-(22222, 4417, 4), -- Beasts
+(22222, 4285, 5), -- Resist Sleep
+(22222, 4408, 1), -- HP Modifiers
+(22222, 4409, 1), -- MP Modifiers
+(22222, 4410, 11), -- P. Atk. Modifiers
+(22222, 4411, 11), -- M. Atk. Modifiers
+(22222, 4412, 12), -- P. Def. Modifiers
+(22222, 4413, 11), -- M. Def. Modifiers
+(22222, 4414, 2), -- Armor Type
+(22222, 4415, 5), -- Weapon Type
+(22222, 4416, 3), -- Races
+(22222, 4417, 4), -- Race Types
 (22222, 4439, 2), -- Greater Resist Hold
 (22222, 4445, 1), -- Greater Resist Spear Weapons
 (22222, 5601, 9), -- Short-Range Physical Attack Resistance
 -- Velociraptor
-(22223, 4071, 3), -- Resist Bow/Crossbow Weapons
+(22223, 4071, 3), -- Resist Archery
 (22223, 4084, 9), -- Resist Physical Attack
-(22223, 4285, 5), -- Resist Sleep Attacks
-(22223, 4408, 1), -- HP Increase (1x)
-(22223, 4409, 1), -- MP Increase (1x)
-(22223, 4410, 12), -- Slightly Strong P. Atk.
-(22223, 4411, 11), -- Average M. Atk.
-(22223, 4412, 12), -- Slightly Strong P. Def.
-(22223, 4413, 11), -- Average M. Def.
-(22223, 4414, 3), -- Light Armor Type
-(22223, 4415, 5), -- Blunt Weapons
-(22223, 4416, 3), -- Beasts
-(22223, 4417, 4), -- Beasts
+(22223, 4285, 5), -- Resist Sleep
+(22223, 4408, 1), -- HP Modifiers
+(22223, 4409, 1), -- MP Modifiers
+(22223, 4410, 12), -- P. Atk. Modifiers
+(22223, 4411, 11), -- M. Atk. Modifiers
+(22223, 4412, 12), -- P. Def. Modifiers
+(22223, 4413, 11), -- M. Def. Modifiers
+(22223, 4414, 3), -- Armor Type
+(22223, 4415, 5), -- Weapon Type
+(22223, 4416, 3), -- Races
+(22223, 4417, 4), -- Race Types
 (22223, 4439, 2), -- Greater Resist Hold
 (22223, 4445, 1), -- Greater Resist Spear Weapons
-(22223, 5079, 1), -- Haste Focus
+(22223, 5079, 1), -- NPC Focused Haste
 (22223, 5081, 1), -- Silence
-(22223, 5082, 1), -- Whirlwind
+(22223, 5082, 1), -- NPC Spinning, Slashing Trick
 (22223, 5465, 1), -- Earth Attacks
 (22223, 5601, 9), -- Short-Range Physical Attack Resistance
 -- Ornithomimus
-(22224, 4071, 5), -- Resist Bow/Crossbow Weapons
+(22224, 4071, 5), -- Resist Archery
 (22224, 4084, 9), -- Resist Physical Attack
-(22224, 4285, 5), -- Resist Sleep Attacks
-(22224, 4408, 1), -- HP Increase (1x)
-(22224, 4409, 1), -- MP Increase (1x)
-(22224, 4410, 11), -- Average P. Atk.
-(22224, 4411, 11), -- Average M. Atk.
-(22224, 4412, 12), -- Slightly Strong P. Def.
-(22224, 4413, 11), -- Average M. Def.
-(22224, 4414, 3), -- Light Armor Type
-(22224, 4415, 5), -- Blunt Weapons
-(22224, 4416, 3), -- Beasts
-(22224, 4417, 4), -- Beasts
+(22224, 4285, 5), -- Resist Sleep
+(22224, 4408, 1), -- HP Modifiers
+(22224, 4409, 1), -- MP Modifiers
+(22224, 4410, 11), -- P. Atk. Modifiers
+(22224, 4411, 11), -- M. Atk. Modifiers
+(22224, 4412, 12), -- P. Def. Modifiers
+(22224, 4413, 11), -- M. Def. Modifiers
+(22224, 4414, 3), -- Armor Type
+(22224, 4415, 5), -- Weapon Type
+(22224, 4416, 3), -- Races
+(22224, 4417, 4), -- Race Types
 (22224, 4439, 2), -- Greater Resist Hold
 (22224, 4445, 1), -- Greater Resist Spear Weapons
-(22224, 5080, 1), -- Haste Might
+(22224, 5080, 1), -- NPC Mighty Haste
 (22224, 5083, 1), -- Stun
-(22224, 5084, 1), -- Blinding Blow
+(22224, 5084, 1), -- NPC Blinding Blow
 (22224, 5601, 9), -- Short-Range Physical Attack Resistance
 -- Deinonychus
-(22225, 4071, 3), -- Resist Bow/Crossbow Weapons
+(22225, 4071, 3), -- Resist Archery
 (22225, 4084, 9), -- Resist Physical Attack
-(22225, 4285, 5), -- Resist Sleep Attacks
-(22225, 4287, 5), -- Resist Hold Attacks
-(22225, 4408, 1), -- HP Increase (1x)
-(22225, 4409, 1), -- MP Increase (1x)
-(22225, 4410, 11), -- Average P. Atk.
-(22225, 4411, 11), -- Average M. Atk.
-(22225, 4412, 12), -- Slightly Strong P. Def.
-(22225, 4413, 11), -- Average M. Def.
-(22225, 4414, 3), -- Light Armor Type
-(22225, 4415, 5), -- Blunt Weapons
-(22225, 4416, 3), -- Beasts
-(22225, 4417, 4), -- Beasts
+(22225, 4285, 5), -- Resist Sleep
+(22225, 4287, 5), -- Resist Hold
+(22225, 4408, 1), -- HP Modifiers
+(22225, 4409, 1), -- MP Modifiers
+(22225, 4410, 11), -- P. Atk. Modifiers
+(22225, 4411, 11), -- M. Atk. Modifiers
+(22225, 4412, 12), -- P. Def. Modifiers
+(22225, 4413, 11), -- M. Def. Modifiers
+(22225, 4414, 3), -- Armor Type
+(22225, 4415, 5), -- Weapon Type
+(22225, 4416, 3), -- Races
+(22225, 4417, 4), -- Race Types
 (22225, 4445, 1), -- Greater Resist Spear Weapons
-(22225, 5079, 1), -- Haste Focus
-(22225, 5082, 1), -- Whirlwind
-(22225, 5084, 1), -- Blinding Blow
+(22225, 5079, 1), -- NPC Focused Haste
+(22225, 5082, 1), -- NPC Spinning, Slashing Trick
+(22225, 5084, 1), -- NPC Blinding Blow
 (22225, 5601, 9), -- Short-Range Physical Attack Resistance
 -- Pachycephalosaurus
-(22226, 4067, 10), -- Blow
-(22226, 4071, 3), -- Resist Bow/Crossbow Weapons
+(22226, 4067, 10), -- NPC Mortal Blow
+(22226, 4071, 3), -- Resist Archery
 (22226, 4084, 9), -- Resist Physical Attack
-(22226, 4285, 5), -- Resist Sleep Attacks
-(22226, 4408, 1), -- HP Increase (1x)
-(22226, 4409, 1), -- MP Increase (1x)
-(22226, 4410, 11), -- Average P. Atk.
-(22226, 4411, 11), -- Average M. Atk.
-(22226, 4412, 12), -- Slightly Strong P. Def.
-(22226, 4413, 11), -- Average M. Def.
-(22226, 4414, 3), -- Light Armor Type
-(22226, 4415, 5), -- Blunt Weapons
-(22226, 4416, 3), -- Beasts
-(22226, 4417, 4), -- Beasts
+(22226, 4285, 5), -- Resist Sleep
+(22226, 4408, 1), -- HP Modifiers
+(22226, 4409, 1), -- MP Modifiers
+(22226, 4410, 11), -- P. Atk. Modifiers
+(22226, 4411, 11), -- M. Atk. Modifiers
+(22226, 4412, 12), -- P. Def. Modifiers
+(22226, 4413, 11), -- M. Def. Modifiers
+(22226, 4414, 3), -- Armor Type
+(22226, 4415, 5), -- Weapon Type
+(22226, 4416, 3), -- Races
+(22226, 4417, 4), -- Race Types
 (22226, 4439, 2), -- Greater Resist Hold
 (22226, 4445, 1), -- Greater Resist Spear Weapons
-(22226, 5080, 1), -- Haste Might
+(22226, 5080, 1), -- NPC Mighty Haste
 (22226, 5083, 1), -- Stun
 (22226, 5601, 9), -- Short-Range Physical Attack Resistance
 -- Wild Strider
-(22227, 4071, 4), -- Resist Bow/Crossbow Weapons
+(22227, 4071, 4), -- Resist Archery
 (22227, 4084, 9), -- Resist Physical Attack
-(22227, 4232, 10), -- Whirlwind
-(22227, 4285, 5), -- Resist Sleep Attacks
-(22227, 4408, 1), -- HP Increase (1x)
-(22227, 4409, 1), -- MP Increase (1x)
-(22227, 4410, 11), -- Average P. Atk.
-(22227, 4411, 11), -- Average M. Atk.
-(22227, 4412, 12), -- Slightly Strong P. Def.
-(22227, 4413, 11), -- Average M. Def.
-(22227, 4414, 3), -- Light Armor Type
-(22227, 4415, 5), -- Blunt Weapons
-(22227, 4416, 3), -- Beasts
-(22227, 4417, 4), -- Beasts
+(22227, 4232, 10), -- NPC AE Strike
+(22227, 4285, 5), -- Resist Sleep
+(22227, 4408, 1), -- HP Modifiers
+(22227, 4409, 1), -- MP Modifiers
+(22227, 4410, 11), -- P. Atk. Modifiers
+(22227, 4411, 11), -- M. Atk. Modifiers
+(22227, 4412, 12), -- P. Def. Modifiers
+(22227, 4413, 11), -- M. Def. Modifiers
+(22227, 4414, 3), -- Armor Type
+(22227, 4415, 5), -- Weapon Type
+(22227, 4416, 3), -- Races
+(22227, 4417, 4), -- Race Types
 (22227, 4439, 2), -- Greater Resist Hold
 (22227, 4445, 1), -- Greater Resist Spear Weapons
-(22227, 5079, 1), -- Haste Focus
+(22227, 5079, 1), -- NPC Focused Haste
 (22227, 5081, 1), -- Silence
 (22227, 5601, 9), -- Short-Range Physical Attack Resistance
 -- Grey Elpy
-(22228, 4408, 1), -- HP Increase (1x)
-(22228, 4409, 1), -- MP Increase (1x)
-(22228, 4410, 11), -- Average P. Atk.
-(22228, 4411, 11), -- Average M. Atk.
-(22228, 4412, 11), -- Average P. Def.
-(22228, 4413, 11), -- Average M. Def.
-(22228, 4414, 2), -- Standard Type
-(22228, 4415, 3), -- One-handed Sword
-(22228, 4416, 4), -- Animals
+(22228, 4408, 1), -- HP Modifiers
+(22228, 4409, 1), -- MP Modifiers
+(22228, 4410, 11), -- P. Atk. Modifiers
+(22228, 4411, 11), -- M. Atk. Modifiers
+(22228, 4412, 11), -- P. Def. Modifiers
+(22228, 4413, 11), -- M. Def. Modifiers
+(22228, 4414, 2), -- Armor Type
+(22228, 4415, 3), -- Weapon Type
+(22228, 4416, 4), -- Races
 -- Young Grey Keltir
-(22229, 4408, 1), -- HP Increase (1x)
-(22229, 4409, 1), -- MP Increase (1x)
-(22229, 4410, 11), -- Average P. Atk.
-(22229, 4411, 11), -- Average M. Atk.
-(22229, 4412, 11), -- Average P. Def.
-(22229, 4413, 11), -- Average M. Def.
-(22229, 4414, 2), -- Standard Type
-(22229, 4415, 3), -- One-handed Sword
-(22229, 4416, 4), -- Animals
+(22229, 4408, 1), -- HP Modifiers
+(22229, 4409, 1), -- MP Modifiers
+(22229, 4410, 11), -- P. Atk. Modifiers
+(22229, 4411, 11), -- M. Atk. Modifiers
+(22229, 4412, 11), -- P. Def. Modifiers
+(22229, 4413, 11), -- M. Def. Modifiers
+(22229, 4414, 2), -- Armor Type
+(22229, 4415, 3), -- Weapon Type
+(22229, 4416, 4), -- Races
 -- Grey Keltir
-(22230, 4408, 1), -- HP Increase (1x)
-(22230, 4409, 1), -- MP Increase (1x)
-(22230, 4410, 11), -- Average P. Atk.
-(22230, 4411, 11), -- Average M. Atk.
-(22230, 4412, 11), -- Average P. Def.
-(22230, 4413, 11), -- Average M. Def.
-(22230, 4414, 2), -- Standard Type
-(22230, 4415, 3), -- One-handed Sword
-(22230, 4416, 4), -- Animals
+(22230, 4408, 1), -- HP Modifiers
+(22230, 4409, 1), -- MP Modifiers
+(22230, 4410, 11), -- P. Atk. Modifiers
+(22230, 4411, 11), -- M. Atk. Modifiers
+(22230, 4412, 11), -- P. Def. Modifiers
+(22230, 4413, 11), -- M. Def. Modifiers
+(22230, 4414, 2), -- Armor Type
+(22230, 4415, 3), -- Weapon Type
+(22230, 4416, 4), -- Races
 -- Dominant Grey Keltir
-(22231, 4408, 1), -- HP Increase (1x)
-(22231, 4409, 1), -- MP Increase (1x)
-(22231, 4410, 11), -- Average P. Atk.
-(22231, 4411, 11), -- Average M. Atk.
-(22231, 4412, 11), -- Average P. Def.
-(22231, 4413, 11), -- Average M. Def.
-(22231, 4414, 2), -- Standard Type
-(22231, 4415, 3), -- One-handed Sword
-(22231, 4416, 4), -- Animals
+(22231, 4408, 1), -- HP Modifiers
+(22231, 4409, 1), -- MP Modifiers
+(22231, 4410, 11), -- P. Atk. Modifiers
+(22231, 4411, 11), -- M. Atk. Modifiers
+(22231, 4412, 11), -- P. Def. Modifiers
+(22231, 4413, 11), -- M. Def. Modifiers
+(22231, 4414, 2), -- Armor Type
+(22231, 4415, 3), -- Weapon Type
+(22231, 4416, 4), -- Races
 -- Black Wolf
-(22232, 4408, 1), -- HP Increase (1x)
-(22232, 4409, 1), -- MP Increase (1x)
-(22232, 4410, 11), -- Average P. Atk.
-(22232, 4411, 11), -- Average M. Atk.
-(22232, 4412, 11), -- Average P. Def.
-(22232, 4413, 11), -- Average M. Def.
-(22232, 4414, 2), -- Standard Type
-(22232, 4415, 3), -- One-handed Sword
-(22232, 4416, 4), -- Animals
+(22232, 4408, 1), -- HP Modifiers
+(22232, 4409, 1), -- MP Modifiers
+(22232, 4410, 11), -- P. Atk. Modifiers
+(22232, 4411, 11), -- M. Atk. Modifiers
+(22232, 4412, 11), -- P. Def. Modifiers
+(22232, 4413, 11), -- M. Def. Modifiers
+(22232, 4414, 2), -- Armor Type
+(22232, 4415, 3), -- Weapon Type
+(22232, 4416, 4), -- Races
 -- Dominant Black Wolf
-(22233, 4408, 1), -- HP Increase (1x)
-(22233, 4409, 1), -- MP Increase (1x)
-(22233, 4410, 11), -- Average P. Atk.
-(22233, 4411, 11), -- Average M. Atk.
-(22233, 4412, 11), -- Average P. Def.
-(22233, 4413, 11), -- Average M. Def.
-(22233, 4414, 2), -- Standard Type
-(22233, 4415, 3), -- One-handed Sword
-(22233, 4416, 4), -- Animals
+(22233, 4408, 1), -- HP Modifiers
+(22233, 4409, 1), -- MP Modifiers
+(22233, 4410, 11), -- P. Atk. Modifiers
+(22233, 4411, 11), -- M. Atk. Modifiers
+(22233, 4412, 11), -- P. Def. Modifiers
+(22233, 4413, 11), -- M. Def. Modifiers
+(22233, 4414, 2), -- Armor Type
+(22233, 4415, 3), -- Weapon Type
+(22233, 4416, 4), -- Races
 -- Green Goblin
-(22234, 4408, 1), -- HP Increase (1x)
-(22234, 4409, 1), -- MP Increase (1x)
-(22234, 4410, 11), -- Average P. Atk.
-(22234, 4411, 11), -- Average M. Atk.
-(22234, 4412, 11), -- Average P. Def.
-(22234, 4413, 11), -- Average M. Def.
-(22234, 4414, 2), -- Standard Type
-(22234, 4415, 5), -- Blunt Weapons
-(22234, 4416, 6), -- Humanoids
+(22234, 4408, 1), -- HP Modifiers
+(22234, 4409, 1), -- MP Modifiers
+(22234, 4410, 11), -- P. Atk. Modifiers
+(22234, 4411, 11), -- M. Atk. Modifiers
+(22234, 4412, 11), -- P. Def. Modifiers
+(22234, 4413, 11), -- M. Def. Modifiers
+(22234, 4414, 2), -- Armor Type
+(22234, 4415, 5), -- Weapon Type
+(22234, 4416, 6), -- Races
 -- Mountain Werewolf
-(22235, 4408, 1), -- HP Increase (1x)
-(22235, 4409, 1), -- MP Increase (1x)
-(22235, 4410, 12), -- Slightly Strong P. Atk.
-(22235, 4411, 12), -- Slightly Strong M. Atk.
-(22235, 4412, 10), -- Slightly Weak P. Def.
-(22235, 4413, 10), -- Slightly Weak M. Def.
-(22235, 4414, 2), -- Standard Type
-(22235, 4415, 5), -- Blunt Weapons
-(22235, 4416, 6), -- Humanoids
+(22235, 4408, 1), -- HP Modifiers
+(22235, 4409, 1), -- MP Modifiers
+(22235, 4410, 12), -- P. Atk. Modifiers
+(22235, 4411, 12), -- M. Atk. Modifiers
+(22235, 4412, 10), -- P. Def. Modifiers
+(22235, 4413, 10), -- M. Def. Modifiers
+(22235, 4414, 2), -- Armor Type
+(22235, 4415, 5), -- Weapon Type
+(22235, 4416, 6), -- Races
 -- Muertos Archer
-(22236, 4408, 1), -- HP Increase (1x)
-(22236, 4409, 1), -- MP Increase (1x)
-(22236, 4410, 11), -- Average P. Atk.
-(22236, 4411, 11), -- Average M. Atk.
-(22236, 4412, 11), -- Average P. Def.
-(22236, 4413, 11), -- Average M. Def.
-(22236, 4414, 2), -- Standard Type
-(22236, 4416, 6), -- Humanoids
+(22236, 4408, 1), -- HP Modifiers
+(22236, 4409, 1), -- MP Modifiers
+(22236, 4410, 11), -- P. Atk. Modifiers
+(22236, 4411, 11), -- M. Atk. Modifiers
+(22236, 4412, 11), -- P. Def. Modifiers
+(22236, 4413, 11), -- M. Def. Modifiers
+(22236, 4414, 2), -- Armor Type
+(22236, 4416, 6), -- Races
 -- Mountain Fungus
-(22237, 4408, 1), -- HP Increase (1x)
-(22237, 4409, 1), -- MP Increase (1x)
-(22237, 4410, 12), -- Slightly Strong P. Atk.
-(22237, 4411, 12), -- Slightly Strong M. Atk.
-(22237, 4412, 10), -- Slightly Weak P. Def.
-(22237, 4413, 10), -- Slightly Weak M. Def.
-(22237, 4414, 2), -- Standard Type
-(22237, 4415, 3), -- One-handed Sword
-(22237, 4416, 5), -- Plants
+(22237, 4408, 1), -- HP Modifiers
+(22237, 4409, 1), -- MP Modifiers
+(22237, 4410, 12), -- P. Atk. Modifiers
+(22237, 4411, 12), -- M. Atk. Modifiers
+(22237, 4412, 10), -- P. Def. Modifiers
+(22237, 4413, 10), -- M. Def. Modifiers
+(22237, 4414, 2), -- Armor Type
+(22237, 4415, 3), -- Weapon Type
+(22237, 4416, 5), -- Races
 -- Mountain Werewolf Chief
-(22238, 4408, 1), -- HP Increase (1x)
-(22238, 4409, 1), -- MP Increase (1x)
-(22238, 4410, 12), -- Slightly Strong P. Atk.
-(22238, 4411, 12), -- Slightly Strong M. Atk.
-(22238, 4412, 10), -- Slightly Weak P. Def.
-(22238, 4413, 10), -- Slightly Weak M. Def.
-(22238, 4414, 2), -- Standard Type
-(22238, 4415, 5), -- Blunt Weapons
-(22238, 4416, 6), -- Humanoids
+(22238, 4408, 1), -- HP Modifiers
+(22238, 4409, 1), -- MP Modifiers
+(22238, 4410, 12), -- P. Atk. Modifiers
+(22238, 4411, 12), -- M. Atk. Modifiers
+(22238, 4412, 10), -- P. Def. Modifiers
+(22238, 4413, 10), -- M. Def. Modifiers
+(22238, 4414, 2), -- Armor Type
+(22238, 4415, 5), -- Weapon Type
+(22238, 4416, 6), -- Races
 -- Muertos Guard
-(22239, 4408, 1), -- HP Increase (1x)
-(22239, 4409, 1), -- MP Increase (1x)
-(22239, 4410, 11), -- Average P. Atk.
-(22239, 4411, 11), -- Average M. Atk.
-(22239, 4412, 11), -- Average P. Def.
-(22239, 4413, 11), -- Average M. Def.
-(22239, 4414, 2), -- Standard Type
-(22239, 4415, 3), -- One-handed Sword
-(22239, 4416, 6), -- Humanoids
+(22239, 4408, 1), -- HP Modifiers
+(22239, 4409, 1), -- MP Modifiers
+(22239, 4410, 11), -- P. Atk. Modifiers
+(22239, 4411, 11), -- M. Atk. Modifiers
+(22239, 4412, 11), -- P. Def. Modifiers
+(22239, 4413, 11), -- M. Def. Modifiers
+(22239, 4414, 2), -- Armor Type
+(22239, 4415, 3), -- Weapon Type
+(22239, 4416, 6), -- Races
 -- Muertos Scout
-(22240, 4408, 1), -- HP Increase (1x)
-(22240, 4409, 1), -- MP Increase (1x)
-(22240, 4410, 11), -- Average P. Atk.
-(22240, 4411, 11), -- Average M. Atk.
-(22240, 4412, 11), -- Average P. Def.
-(22240, 4413, 11), -- Average M. Def.
-(22240, 4414, 2), -- Standard Type
-(22240, 4415, 3), -- One-handed Sword
-(22240, 4416, 6), -- Humanoids
+(22240, 4408, 1), -- HP Modifiers
+(22240, 4409, 1), -- MP Modifiers
+(22240, 4410, 11), -- P. Atk. Modifiers
+(22240, 4411, 11), -- M. Atk. Modifiers
+(22240, 4412, 11), -- P. Def. Modifiers
+(22240, 4413, 11), -- M. Def. Modifiers
+(22240, 4414, 2), -- Armor Type
+(22240, 4415, 3), -- Weapon Type
+(22240, 4416, 6), -- Races
 -- Colossus
-(22241, 4247, 1), -- Wind Strike
-(22241, 4273, 3), -- Resist Daggers/Rapier Weapon
-(22241, 4274, 1), -- Blunt Weapon Weak Point
-(22241, 4284, 5), -- Resist Bleed Attacks
-(22241, 4408, 1), -- HP Increase (1x)
-(22241, 4409, 1), -- MP Increase (1x)
-(22241, 4410, 11), -- Average P. Atk.
-(22241, 4411, 11), -- Average M. Atk.
-(22241, 4412, 13), -- Slightly Strong P. Def.
-(22241, 4413, 16), -- Very Strong M. Def.
-(22241, 4414, 2), -- Standard Type
-(22241, 4415, 5), -- Blunt Weapons
-(22241, 4416, 2), -- Magic Creatures
+(22241, 4247, 1), -- NPC Windstrike - Slow
+(22241, 4273, 3), -- Resist Dagger
+(22241, 4274, 1), -- Blunt Attack Weak Point
+(22241, 4284, 5), -- Resist Bleeding
+(22241, 4408, 1), -- HP Modifiers
+(22241, 4409, 1), -- MP Modifiers
+(22241, 4410, 11), -- P. Atk. Modifiers
+(22241, 4411, 11), -- M. Atk. Modifiers
+(22241, 4412, 13), -- P. Def. Modifiers
+(22241, 4413, 16), -- M. Def. Modifiers
+(22241, 4414, 2), -- Armor Type
+(22241, 4415, 5), -- Weapon Type
+(22241, 4416, 2), -- Races
 (22241, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Muertos Warrior
-(22242, 4408, 1), -- HP Increase (1x)
-(22242, 4409, 1), -- MP Increase (1x)
-(22242, 4410, 10), -- Slightly Weak P. Atk.
-(22242, 4411, 10), -- Slightly Weak M. Atk.
-(22242, 4412, 12), -- Slightly Strong P. Def.
-(22242, 4413, 12), -- Slightly Strong M. Def.
-(22242, 4414, 2), -- Standard Type
-(22242, 4415, 3), -- One-handed Sword
-(22242, 4416, 6), -- Humanoids
+(22242, 4408, 1), -- HP Modifiers
+(22242, 4409, 1), -- MP Modifiers
+(22242, 4410, 10), -- P. Atk. Modifiers
+(22242, 4411, 10), -- M. Atk. Modifiers
+(22242, 4412, 12), -- P. Def. Modifiers
+(22242, 4413, 12), -- M. Def. Modifiers
+(22242, 4414, 2), -- Armor Type
+(22242, 4415, 3), -- Weapon Type
+(22242, 4416, 6), -- Races
 -- Muertos Captain
-(22243, 4408, 1), -- HP Increase (1x)
-(22243, 4409, 1), -- MP Increase (1x)
-(22243, 4410, 11), -- Average P. Atk.
-(22243, 4411, 11), -- Average M. Atk.
-(22243, 4412, 11), -- Average P. Def.
-(22243, 4413, 11), -- Average M. Def.
-(22243, 4414, 2), -- Standard Type
-(22243, 4415, 3), -- One-handed Sword
-(22243, 4416, 6), -- Humanoids
+(22243, 4408, 1), -- HP Modifiers
+(22243, 4409, 1), -- MP Modifiers
+(22243, 4410, 11), -- P. Atk. Modifiers
+(22243, 4411, 11), -- M. Atk. Modifiers
+(22243, 4412, 11), -- P. Def. Modifiers
+(22243, 4413, 11), -- M. Def. Modifiers
+(22243, 4414, 2), -- Armor Type
+(22243, 4415, 3), -- Weapon Type
+(22243, 4416, 6), -- Races
 -- Crimson Spider
-(22244, 4408, 1), -- HP Increase (1x)
-(22244, 4409, 1), -- MP Increase (1x)
-(22244, 4410, 11), -- Average P. Atk.
-(22244, 4411, 11), -- Average M. Atk.
-(22244, 4412, 11), -- Average P. Def.
-(22244, 4413, 11), -- Average M. Def.
-(22244, 4414, 2), -- Standard Type
-(22244, 4415, 1), -- Bare Hands
-(22244, 4416, 12), -- Bugs
+(22244, 4408, 1), -- HP Modifiers
+(22244, 4409, 1), -- MP Modifiers
+(22244, 4410, 11), -- P. Atk. Modifiers
+(22244, 4411, 11), -- M. Atk. Modifiers
+(22244, 4412, 11), -- P. Def. Modifiers
+(22244, 4413, 11), -- M. Def. Modifiers
+(22244, 4414, 2), -- Armor Type
+(22244, 4415, 1), -- Weapon Type
+(22244, 4416, 12), -- Races
 -- Muertos Lieutenant
-(22245, 4408, 1), -- HP Increase (1x)
-(22245, 4409, 1), -- MP Increase (1x)
-(22245, 4410, 11), -- Average P. Atk.
-(22245, 4411, 11), -- Average M. Atk.
-(22245, 4412, 11), -- Average P. Def.
-(22245, 4413, 11), -- Average M. Def.
-(22245, 4414, 2), -- Standard Type
-(22245, 4415, 3), -- One-handed Sword
-(22245, 4416, 6), -- Humanoids
+(22245, 4408, 1), -- HP Modifiers
+(22245, 4409, 1), -- MP Modifiers
+(22245, 4410, 11), -- P. Atk. Modifiers
+(22245, 4411, 11), -- M. Atk. Modifiers
+(22245, 4412, 11), -- P. Def. Modifiers
+(22245, 4413, 11), -- M. Def. Modifiers
+(22245, 4414, 2), -- Armor Type
+(22245, 4415, 3), -- Weapon Type
+(22245, 4416, 6), -- Races
 -- Muertos Commander
-(22246, 4408, 1), -- HP Increase (1x)
-(22246, 4409, 1), -- MP Increase (1x)
-(22246, 4410, 11), -- Average P. Atk.
-(22246, 4411, 11), -- Average M. Atk.
-(22246, 4412, 11), -- Average P. Def.
-(22246, 4413, 11), -- Average M. Def.
-(22246, 4414, 2), -- Standard Type
-(22246, 4415, 3), -- One-handed Sword
-(22246, 4416, 6), -- Humanoids
+(22246, 4408, 1), -- HP Modifiers
+(22246, 4409, 1), -- MP Modifiers
+(22246, 4410, 11), -- P. Atk. Modifiers
+(22246, 4411, 11), -- M. Atk. Modifiers
+(22246, 4412, 11), -- P. Def. Modifiers
+(22246, 4413, 11), -- M. Def. Modifiers
+(22246, 4414, 2), -- Armor Type
+(22246, 4415, 3), -- Weapon Type
+(22246, 4416, 6), -- Races
 -- Grotto Golem
-(22247, 4247, 1), -- Wind Strike
-(22247, 4273, 3), -- Resist Daggers/Rapier Weapon
-(22247, 4274, 1), -- Blunt Weapon Weak Point
-(22247, 4284, 5), -- Resist Bleed Attacks
-(22247, 4408, 10), -- HP Increase (2x)
-(22247, 4409, 1), -- MP Increase (1x)
-(22247, 4410, 11), -- Average P. Atk.
-(22247, 4411, 11), -- Average M. Atk.
-(22247, 4412, 13), -- Slightly Strong P. Def.
-(22247, 4413, 16), -- Very Strong M. Def.
-(22247, 4414, 2), -- Standard Type
-(22247, 4415, 5), -- Blunt Weapons
-(22247, 4416, 2), -- Magic Creatures
+(22247, 4247, 1), -- NPC Windstrike - Slow
+(22247, 4273, 3), -- Resist Dagger
+(22247, 4274, 1), -- Blunt Attack Weak Point
+(22247, 4284, 5), -- Resist Bleeding
+(22247, 4408, 10), -- HP Modifiers
+(22247, 4409, 1), -- MP Modifiers
+(22247, 4410, 11), -- P. Atk. Modifiers
+(22247, 4411, 11), -- M. Atk. Modifiers
+(22247, 4412, 13), -- P. Def. Modifiers
+(22247, 4413, 16), -- M. Def. Modifiers
+(22247, 4414, 2), -- Armor Type
+(22247, 4415, 5), -- Weapon Type
+(22247, 4416, 2), -- Races
 (22247, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Shady Muertos
-(22248, 4408, 10), -- HP Increase (2x)
-(22248, 4409, 1), -- MP Increase (1x)
-(22248, 4410, 12), -- Slightly Strong P. Atk.
-(22248, 4411, 12), -- Slightly Strong M. Atk.
-(22248, 4412, 10), -- Slightly Weak P. Def.
-(22248, 4413, 10), -- Slightly Weak M. Def.
-(22248, 4414, 2), -- Standard Type
-(22248, 4415, 3), -- One-handed Sword
-(22248, 4416, 6), -- Humanoids
+(22248, 4408, 10), -- HP Modifiers
+(22248, 4409, 1), -- MP Modifiers
+(22248, 4410, 12), -- P. Atk. Modifiers
+(22248, 4411, 12), -- M. Atk. Modifiers
+(22248, 4412, 10), -- P. Def. Modifiers
+(22248, 4413, 10), -- M. Def. Modifiers
+(22248, 4414, 2), -- Armor Type
+(22248, 4415, 3), -- Weapon Type
+(22248, 4416, 6), -- Races
 -- Shady Muertos Guard
-(22249, 4408, 10), -- HP Increase (2x)
-(22249, 4409, 1), -- MP Increase (1x)
-(22249, 4410, 12), -- Slightly Strong P. Atk.
-(22249, 4411, 12), -- Slightly Strong M. Atk.
-(22249, 4412, 10), -- Slightly Weak P. Def.
-(22249, 4413, 10), -- Slightly Weak M. Def.
-(22249, 4414, 2), -- Standard Type
-(22249, 4416, 6), -- Humanoids
+(22249, 4408, 10), -- HP Modifiers
+(22249, 4409, 1), -- MP Modifiers
+(22249, 4410, 12), -- P. Atk. Modifiers
+(22249, 4411, 12), -- M. Atk. Modifiers
+(22249, 4412, 10), -- P. Def. Modifiers
+(22249, 4413, 10), -- M. Def. Modifiers
+(22249, 4414, 2), -- Armor Type
+(22249, 4416, 6), -- Races
 -- Grotto Leopard
-(22250, 4408, 10), -- HP Increase (2x)
-(22250, 4409, 1), -- MP Increase (1x)
-(22250, 4410, 12), -- Slightly Strong P. Atk.
-(22250, 4411, 12), -- Slightly Strong M. Atk.
-(22250, 4412, 10), -- Slightly Weak P. Def.
-(22250, 4413, 10), -- Slightly Weak M. Def.
-(22250, 4414, 2), -- Standard Type
-(22250, 4415, 5), -- Blunt Weapons
-(22250, 4416, 3), -- Beasts
+(22250, 4408, 10), -- HP Modifiers
+(22250, 4409, 1), -- MP Modifiers
+(22250, 4410, 12), -- P. Atk. Modifiers
+(22250, 4411, 12), -- M. Atk. Modifiers
+(22250, 4412, 10), -- P. Def. Modifiers
+(22250, 4413, 10), -- M. Def. Modifiers
+(22250, 4414, 2), -- Armor Type
+(22250, 4415, 5), -- Weapon Type
+(22250, 4416, 3), -- Races
 -- Shady Muertos Captain
-(22251, 4408, 10), -- HP Increase (2x)
-(22251, 4409, 1), -- MP Increase (1x)
-(22251, 4410, 11), -- Average P. Atk.
-(22251, 4411, 11), -- Average M. Atk.
-(22251, 4412, 11), -- Average P. Def.
-(22251, 4413, 11), -- Average M. Def.
-(22251, 4414, 2), -- Standard Type
-(22251, 4415, 3), -- One-handed Sword
-(22251, 4416, 6), -- Humanoids
+(22251, 4408, 10), -- HP Modifiers
+(22251, 4409, 1), -- MP Modifiers
+(22251, 4410, 11), -- P. Atk. Modifiers
+(22251, 4411, 11), -- M. Atk. Modifiers
+(22251, 4412, 11), -- P. Def. Modifiers
+(22251, 4413, 11), -- M. Def. Modifiers
+(22251, 4414, 2), -- Armor Type
+(22251, 4415, 3), -- Weapon Type
+(22251, 4416, 6), -- Races
 -- Grotto Grizzly
-(22252, 4408, 10), -- HP Increase (2x)
-(22252, 4409, 1), -- MP Increase (1x)
-(22252, 4410, 10), -- Slightly Weak P. Atk.
-(22252, 4411, 10), -- Slightly Weak M. Atk.
-(22252, 4412, 12), -- Slightly Strong P. Def.
-(22252, 4413, 12), -- Slightly Strong M. Def.
-(22252, 4414, 2), -- Standard Type
-(22252, 4415, 5), -- Blunt Weapons
-(22252, 4416, 4), -- Animals
+(22252, 4408, 10), -- HP Modifiers
+(22252, 4409, 1), -- MP Modifiers
+(22252, 4410, 10), -- P. Atk. Modifiers
+(22252, 4411, 10), -- M. Atk. Modifiers
+(22252, 4412, 12), -- P. Def. Modifiers
+(22252, 4413, 12), -- M. Def. Modifiers
+(22252, 4414, 2), -- Armor Type
+(22252, 4415, 5), -- Weapon Type
+(22252, 4416, 4), -- Races
 -- Shady Muertos Warrior
-(22253, 4408, 10), -- HP Increase (2x)
-(22253, 4409, 1), -- MP Increase (1x)
-(22253, 4410, 11), -- Average P. Atk.
-(22253, 4411, 11), -- Average M. Atk.
-(22253, 4412, 11), -- Average P. Def.
-(22253, 4413, 11), -- Average M. Def.
-(22253, 4414, 2), -- Standard Type
-(22253, 4415, 3), -- One-handed Sword
-(22253, 4416, 6), -- Humanoids
+(22253, 4408, 10), -- HP Modifiers
+(22253, 4409, 1), -- MP Modifiers
+(22253, 4410, 11), -- P. Atk. Modifiers
+(22253, 4411, 11), -- M. Atk. Modifiers
+(22253, 4412, 11), -- P. Def. Modifiers
+(22253, 4413, 11), -- M. Def. Modifiers
+(22253, 4414, 2), -- Armor Type
+(22253, 4415, 3), -- Weapon Type
+(22253, 4416, 6), -- Races
 -- Shady Muertos Archer
-(22254, 4408, 10), -- HP Increase (2x)
-(22254, 4409, 1), -- MP Increase (1x)
-(22254, 4410, 12), -- Slightly Strong P. Atk.
-(22254, 4411, 12), -- Slightly Strong M. Atk.
-(22254, 4412, 10), -- Slightly Weak P. Def.
-(22254, 4413, 10), -- Slightly Weak M. Def.
-(22254, 4414, 2), -- Standard Type
-(22254, 4416, 6), -- Humanoids
+(22254, 4408, 10), -- HP Modifiers
+(22254, 4409, 1), -- MP Modifiers
+(22254, 4410, 12), -- P. Atk. Modifiers
+(22254, 4411, 12), -- M. Atk. Modifiers
+(22254, 4412, 10), -- P. Def. Modifiers
+(22254, 4413, 10), -- M. Def. Modifiers
+(22254, 4414, 2), -- Armor Type
+(22254, 4416, 6), -- Races
 -- Shady Muertos Commander
-(22255, 4408, 10), -- HP Increase (2x)
-(22255, 4409, 1), -- MP Increase (1x)
-(22255, 4410, 11), -- Average P. Atk.
-(22255, 4411, 11), -- Average M. Atk.
-(22255, 4412, 11), -- Average P. Def.
-(22255, 4413, 11), -- Average M. Def.
-(22255, 4414, 2), -- Standard Type
-(22255, 4415, 3), -- One-handed Sword
-(22255, 4416, 6), -- Humanoids
+(22255, 4408, 10), -- HP Modifiers
+(22255, 4409, 1), -- MP Modifiers
+(22255, 4410, 11), -- P. Atk. Modifiers
+(22255, 4411, 11), -- M. Atk. Modifiers
+(22255, 4412, 11), -- P. Def. Modifiers
+(22255, 4413, 11), -- M. Def. Modifiers
+(22255, 4414, 2), -- Armor Type
+(22255, 4415, 3), -- Weapon Type
+(22255, 4416, 6), -- Races
 -- Shady Muertos Wizard
-(22256, 4033, 1), -- Aura Burn
-(22256, 4408, 10), -- HP Increase (2x)
-(22256, 4409, 1), -- MP Increase (1x)
-(22256, 4410, 10), -- Slightly Weak P. Atk.
-(22256, 4411, 10), -- Slightly Weak M. Atk.
-(22256, 4412, 12), -- Slightly Strong P. Def.
-(22256, 4413, 12), -- Slightly Strong M. Def.
-(22256, 4414, 2), -- Standard Type
-(22256, 4415, 3), -- One-handed Sword
-(22256, 4416, 6), -- Humanoids
+(22256, 4033, 1), -- NPC Burn
+(22256, 4408, 10), -- HP Modifiers
+(22256, 4409, 1), -- MP Modifiers
+(22256, 4410, 10), -- P. Atk. Modifiers
+(22256, 4411, 10), -- M. Atk. Modifiers
+(22256, 4412, 12), -- P. Def. Modifiers
+(22256, 4413, 12), -- M. Def. Modifiers
+(22256, 4414, 2), -- Armor Type
+(22256, 4415, 3), -- Weapon Type
+(22256, 4416, 6), -- Races
 -- Island Guardian
 (22257, 4153, 9), -- Decrease Speed
 (22257, 4288, 1), -- Greater Resist Hold
-(22257, 4408, 1), -- HP Increase (1x)
-(22257, 4409, 1), -- MP Increase (1x)
-(22257, 4410, 11), -- Average P. Atk.
-(22257, 4411, 11), -- Average M. Atk.
-(22257, 4412, 11), -- Average P. Def.
-(22257, 4413, 11), -- Average M. Def.
-(22257, 4414, 2), -- Standard Type
-(22257, 4415, 1), -- Bare Hands
-(22257, 4416, 4), -- Animals
+(22257, 4408, 1), -- HP Modifiers
+(22257, 4409, 1), -- MP Modifiers
+(22257, 4410, 11), -- P. Atk. Modifiers
+(22257, 4411, 11), -- M. Atk. Modifiers
+(22257, 4412, 11), -- P. Def. Modifiers
+(22257, 4413, 11), -- M. Def. Modifiers
+(22257, 4414, 2), -- Armor Type
+(22257, 4415, 1), -- Weapon Type
+(22257, 4416, 4), -- Races
 (22257, 4436, 2), -- Greater Resist Poison
 (22257, 4459, 2), -- Dual-Sword Weapon Weak Point
-(22257, 4477, 9), -- Frost Wall
+(22257, 4477, 9), -- NPC Frost Wall
 (22257, 5242, 1), -- Sickness
 (22257, 5463, 1), -- Water Attacks
 (22257, 5549, 1), -- Physical Short-range Weakness
 -- White Sand Mirage
 (22258, 4153, 9), -- Decrease Speed
 (22258, 4288, 1), -- Greater Resist Hold
-(22258, 4408, 1), -- HP Increase (1x)
-(22258, 4409, 1), -- MP Increase (1x)
-(22258, 4410, 11), -- Average P. Atk.
-(22258, 4411, 11), -- Average M. Atk.
-(22258, 4412, 11), -- Average P. Def.
-(22258, 4413, 11), -- Average M. Def.
-(22258, 4414, 2), -- Standard Type
-(22258, 4415, 3), -- One-handed Sword
-(22258, 4416, 7), -- Spirits
+(22258, 4408, 1), -- HP Modifiers
+(22258, 4409, 1), -- MP Modifiers
+(22258, 4410, 11), -- P. Atk. Modifiers
+(22258, 4411, 11), -- M. Atk. Modifiers
+(22258, 4412, 11), -- P. Def. Modifiers
+(22258, 4413, 11), -- M. Def. Modifiers
+(22258, 4414, 2), -- Armor Type
+(22258, 4415, 3), -- Weapon Type
+(22258, 4416, 7), -- Races
 (22258, 4444, 1), -- Higher Resist Bow/Crossbow Weapons
-(22258, 4477, 9), -- Frost Wall
+(22258, 4477, 9), -- NPC Frost Wall
 (22258, 5242, 1), -- Sickness
 (22258, 5463, 1), -- Water Attacks
 (22258, 5549, 1), -- Physical Short-range Weakness
 -- Muddy Coral
-(22259, 4032, 9), -- Power Strike
+(22259, 4032, 9), -- NPC Strike
 (22259, 4086, 1), -- Critical Chance
-(22259, 4408, 1), -- HP Increase (1x)
-(22259, 4409, 1), -- MP Increase (1x)
-(22259, 4410, 11), -- Average P. Atk.
-(22259, 4411, 11), -- Average M. Atk.
-(22259, 4412, 11), -- Average P. Def.
-(22259, 4413, 11), -- Average M. Def.
-(22259, 4414, 2), -- Standard Type
-(22259, 4415, 13), -- Two-handed Sword
-(22259, 4416, 7), -- Spirits
+(22259, 4408, 1), -- HP Modifiers
+(22259, 4409, 1), -- MP Modifiers
+(22259, 4410, 11), -- P. Atk. Modifiers
+(22259, 4411, 11), -- M. Atk. Modifiers
+(22259, 4412, 11), -- P. Def. Modifiers
+(22259, 4413, 11), -- M. Def. Modifiers
+(22259, 4414, 2), -- Armor Type
+(22259, 4415, 13), -- Weapon Type
+(22259, 4416, 7), -- Races
 (22259, 5242, 1), -- Sickness
 (22259, 5463, 1), -- Water Attacks
 (22259, 5549, 1), -- Physical Short-range Weakness
 -- Kleopora
-(22260, 4160, 9), -- Aura Burn
+(22260, 4160, 9), -- NPC Aura Burn - Magic
 (22260, 4288, 1), -- Greater Resist Hold
-(22260, 4408, 1), -- HP Increase (1x)
-(22260, 4409, 1), -- MP Increase (1x)
-(22260, 4410, 11), -- Average P. Atk.
-(22260, 4411, 11), -- Average M. Atk.
-(22260, 4412, 11), -- Average P. Def.
-(22260, 4413, 11), -- Average M. Def.
-(22260, 4414, 2), -- Standard Type
-(22260, 4415, 3), -- One-handed Sword
-(22260, 4416, 2), -- Magic Creatures
+(22260, 4408, 1), -- HP Modifiers
+(22260, 4409, 1), -- MP Modifiers
+(22260, 4410, 11), -- P. Atk. Modifiers
+(22260, 4411, 11), -- M. Atk. Modifiers
+(22260, 4412, 11), -- P. Def. Modifiers
+(22260, 4413, 11), -- M. Def. Modifiers
+(22260, 4414, 2), -- Armor Type
+(22260, 4415, 3), -- Weapon Type
+(22260, 4416, 2), -- Races
 (22260, 4658, 10), -- Hold
 (22260, 5242, 1), -- Sickness
 (22260, 5463, 1), -- Water Attacks
 (22260, 5549, 1), -- Physical Short-range Weakness
 -- Seychelles
-(22261, 4085, 1), -- Critical Damage
-(22261, 4257, 10), -- Hydro Blast
-(22261, 4408, 1), -- HP Increase (1x)
-(22261, 4409, 1), -- MP Increase (1x)
-(22261, 4410, 11), -- Average P. Atk.
-(22261, 4411, 11), -- Average M. Atk.
-(22261, 4412, 11), -- Average P. Def.
-(22261, 4413, 11), -- Average M. Def.
-(22261, 4414, 2), -- Standard Type
-(22261, 4415, 3), -- One-handed Sword
-(22261, 4416, 11), -- Giants
+(22261, 4085, 1), -- Critical Power
+(22261, 4257, 10), -- NPC Hydroblast - Magic
+(22261, 4408, 1), -- HP Modifiers
+(22261, 4409, 1), -- MP Modifiers
+(22261, 4410, 11), -- P. Atk. Modifiers
+(22261, 4411, 11), -- M. Atk. Modifiers
+(22261, 4412, 11), -- P. Def. Modifiers
+(22261, 4413, 11), -- M. Def. Modifiers
+(22261, 4414, 2), -- Armor Type
+(22261, 4415, 3), -- Weapon Type
+(22261, 4416, 11), -- Races
 (22261, 4463, 3), -- Surrender To Water
 (22261, 5083, 1), -- Stun
 (22261, 5463, 1), -- Water Attacks
 (22261, 5549, 1), -- Physical Short-range Weakness
 -- Naiad
-(22262, 4160, 10), -- Aura Burn
-(22262, 4257, 10), -- Hydro Blast
-(22262, 4408, 1), -- HP Increase (1x)
-(22262, 4409, 1), -- MP Increase (1x)
-(22262, 4410, 11), -- Average P. Atk.
-(22262, 4411, 11), -- Average M. Atk.
-(22262, 4412, 11), -- Average P. Def.
-(22262, 4413, 11), -- Average M. Def.
-(22262, 4414, 2), -- Standard Type
-(22262, 4415, 3), -- One-handed Sword
-(22262, 4416, 7), -- Spirits
+(22262, 4160, 10), -- NPC Aura Burn - Magic
+(22262, 4257, 10), -- NPC Hydroblast - Magic
+(22262, 4408, 1), -- HP Modifiers
+(22262, 4409, 1), -- MP Modifiers
+(22262, 4410, 11), -- P. Atk. Modifiers
+(22262, 4411, 11), -- M. Atk. Modifiers
+(22262, 4412, 11), -- P. Def. Modifiers
+(22262, 4413, 11), -- M. Def. Modifiers
+(22262, 4414, 2), -- Armor Type
+(22262, 4415, 3), -- Weapon Type
+(22262, 4416, 7), -- Races
 (22262, 5242, 1), -- Sickness
 (22262, 5463, 1), -- Water Attacks
 (22262, 5549, 1), -- Physical Short-range Weakness
 -- Sonneratia
-(22263, 4032, 9), -- Power Strike
+(22263, 4032, 9), -- NPC Strike
 (22263, 4093, 1), -- Evasion
-(22263, 4408, 1), -- HP Increase (1x)
-(22263, 4409, 1), -- MP Increase (1x)
-(22263, 4410, 11), -- Average P. Atk.
-(22263, 4411, 11), -- Average M. Atk.
-(22263, 4412, 11), -- Average P. Def.
-(22263, 4413, 11), -- Average M. Def.
-(22263, 4414, 2), -- Standard Type
-(22263, 4415, 3), -- One-handed Sword
-(22263, 4416, 3), -- Beasts
+(22263, 4408, 1), -- HP Modifiers
+(22263, 4409, 1), -- MP Modifiers
+(22263, 4410, 11), -- P. Atk. Modifiers
+(22263, 4411, 11), -- M. Atk. Modifiers
+(22263, 4412, 11), -- P. Def. Modifiers
+(22263, 4413, 11), -- M. Def. Modifiers
+(22263, 4414, 2), -- Armor Type
+(22263, 4415, 3), -- Weapon Type
+(22263, 4416, 3), -- Races
 (22263, 5242, 1), -- Sickness
 (22263, 5463, 1), -- Water Attacks
 (22263, 5549, 1), -- Physical Short-range Weakness
 -- Castalia
-(22264, 4408, 1), -- HP Increase (1x)
-(22264, 4409, 1), -- MP Increase (1x)
-(22264, 4410, 11), -- Average P. Atk.
-(22264, 4411, 11), -- Average M. Atk.
-(22264, 4412, 11), -- Average P. Def.
-(22264, 4413, 11), -- Average M. Def.
-(22264, 4414, 2), -- Standard Type
-(22264, 4415, 3), -- One-handed Sword
-(22264, 4416, 7), -- Spirits
+(22264, 4408, 1), -- HP Modifiers
+(22264, 4409, 1), -- MP Modifiers
+(22264, 4410, 11), -- P. Atk. Modifiers
+(22264, 4411, 11), -- M. Atk. Modifiers
+(22264, 4412, 11), -- P. Def. Modifiers
+(22264, 4413, 11), -- M. Def. Modifiers
+(22264, 4414, 2), -- Armor Type
+(22264, 4415, 3), -- Weapon Type
+(22264, 4416, 7), -- Races
 (22264, 5242, 1), -- Sickness
-(22264, 5263, 10), -- Chain Lightning
-(22264, 5265, 10), -- Soul Emission
+(22264, 5263, 10), -- NPC _ Chain Lightning
+(22264, 5265, 10), -- NPC - Soul Emission
 (22264, 5463, 1), -- Water Attacks
 (22264, 5549, 1), -- Physical Short-range Weakness
 -- Chrysocolla
-(22265, 4073, 10), -- Stun
-(22265, 4257, 10), -- Hydro Blast
+(22265, 4073, 10), -- Shock
+(22265, 4257, 10), -- NPC Hydroblast - Magic
 (22265, 4286, 1), -- Greater Resist Sleep
-(22265, 4408, 1), -- HP Increase (1x)
-(22265, 4409, 1), -- MP Increase (1x)
-(22265, 4410, 11), -- Average P. Atk.
-(22265, 4411, 11), -- Average M. Atk.
-(22265, 4412, 11), -- Average P. Def.
-(22265, 4413, 11), -- Average M. Def.
-(22265, 4414, 2), -- Standard Type
-(22265, 4415, 3), -- One-handed Sword
-(22265, 4416, 2), -- Magic Creatures
+(22265, 4408, 1), -- HP Modifiers
+(22265, 4409, 1), -- MP Modifiers
+(22265, 4410, 11), -- P. Atk. Modifiers
+(22265, 4411, 11), -- M. Atk. Modifiers
+(22265, 4412, 11), -- P. Def. Modifiers
+(22265, 4413, 11), -- M. Def. Modifiers
+(22265, 4414, 2), -- Armor Type
+(22265, 4415, 3), -- Weapon Type
+(22265, 4416, 2), -- Races
 (22265, 5242, 1), -- Sickness
 (22265, 5463, 1), -- Water Attacks
 (22265, 5549, 1), -- Physical Short-range Weakness
 -- Pythia
-(22266, 4160, 10), -- Aura Burn
-(22266, 4257, 10), -- Hydro Blast
-(22266, 4408, 1), -- HP Increase (1x)
-(22266, 4409, 1), -- MP Increase (1x)
-(22266, 4410, 11), -- Average P. Atk.
-(22266, 4411, 11), -- Average M. Atk.
-(22266, 4412, 11), -- Average P. Def.
-(22266, 4413, 11), -- Average M. Def.
-(22266, 4414, 2), -- Standard Type
-(22266, 4415, 3), -- One-handed Sword
-(22266, 4416, 7), -- Spirits
+(22266, 4160, 10), -- NPC Aura Burn - Magic
+(22266, 4257, 10), -- NPC Hydroblast - Magic
+(22266, 4408, 1), -- HP Modifiers
+(22266, 4409, 1), -- MP Modifiers
+(22266, 4410, 11), -- P. Atk. Modifiers
+(22266, 4411, 11), -- M. Atk. Modifiers
+(22266, 4412, 11), -- P. Def. Modifiers
+(22266, 4413, 11), -- M. Def. Modifiers
+(22266, 4414, 2), -- Armor Type
+(22266, 4415, 3), -- Weapon Type
+(22266, 4416, 7), -- Races
 (22266, 5242, 1), -- Sickness
 (22266, 5463, 1), -- Water Attacks
 (22266, 5549, 1), -- Physical Short-range Weakness
 -- Dark Water Dragon
-(22267, 4408, 1), -- HP Increase (1x)
-(22267, 4409, 1), -- MP Increase (1x)
-(22267, 4410, 11), -- Average P. Atk.
-(22267, 4411, 11), -- Average M. Atk.
-(22267, 4412, 11), -- Average P. Def.
-(22267, 4413, 11), -- Average M. Def.
-(22267, 4414, 2), -- Standard Type
-(22267, 4415, 3), -- One-handed Sword
-(22267, 4416, 10), -- Dragons
+(22267, 4408, 1), -- HP Modifiers
+(22267, 4409, 1), -- MP Modifiers
+(22267, 4410, 11), -- P. Atk. Modifiers
+(22267, 4411, 11), -- M. Atk. Modifiers
+(22267, 4412, 11), -- P. Def. Modifiers
+(22267, 4413, 11), -- M. Def. Modifiers
+(22267, 4414, 2), -- Armor Type
+(22267, 4415, 3), -- Weapon Type
+(22267, 4416, 10), -- Races
 (22267, 4441, 5), -- Greater Resist Mental Derangement
-(22267, 5043, 9), -- Super Sonic Blaster
+(22267, 5043, 9), -- NPC Super Sonic Blaster
 (22267, 5467, 1), -- Dark Attacks
 (22267, 5549, 1), -- Physical Short-range Weakness
 -- Shade
 (22268, 4086, 1), -- Critical Chance
 (22268, 4265, 3), -- Holiday Might
-(22268, 4408, 1), -- HP Increase (1x)
-(22268, 4409, 1), -- MP Increase (1x)
-(22268, 4410, 9), -- Slightly Weak P. Atk.
-(22268, 4411, 11), -- Average M. Atk.
-(22268, 4412, 10), -- Slightly Weak P. Def.
-(22268, 4413, 11), -- Average M. Def.
-(22268, 4414, 2), -- Standard Type
-(22268, 4415, 3), -- One-handed Sword
-(22268, 4416, 9), -- Demons
+(22268, 4408, 1), -- HP Modifiers
+(22268, 4409, 1), -- MP Modifiers
+(22268, 4410, 9), -- P. Atk. Modifiers
+(22268, 4411, 11), -- M. Atk. Modifiers
+(22268, 4412, 10), -- P. Def. Modifiers
+(22268, 4413, 11), -- M. Def. Modifiers
+(22268, 4414, 2), -- Armor Type
+(22268, 4415, 3), -- Weapon Type
+(22268, 4416, 9), -- Races
 (22268, 4441, 5), -- Greater Resist Mental Derangement
-(22268, 4629, 10), -- Drain Health
+(22268, 4629, 10), -- NPC MR - HP Drain
 (22268, 5467, 1), -- Dark Attacks
 (22268, 5549, 1), -- Physical Short-range Weakness
 -- Shade
 (22269, 4086, 1), -- Critical Chance
 (22269, 4265, 3), -- Holiday Might
-(22269, 4408, 1), -- HP Increase (1x)
-(22269, 4409, 1), -- MP Increase (1x)
-(22269, 4410, 9), -- Slightly Weak P. Atk.
-(22269, 4411, 11), -- Average M. Atk.
-(22269, 4412, 11), -- Average P. Def.
-(22269, 4413, 10), -- Slightly Weak M. Def.
-(22269, 4414, 2), -- Standard Type
-(22269, 4415, 3), -- One-handed Sword
-(22269, 4416, 9), -- Demons
+(22269, 4408, 1), -- HP Modifiers
+(22269, 4409, 1), -- MP Modifiers
+(22269, 4410, 9), -- P. Atk. Modifiers
+(22269, 4411, 11), -- M. Atk. Modifiers
+(22269, 4412, 11), -- P. Def. Modifiers
+(22269, 4413, 10), -- M. Def. Modifiers
+(22269, 4414, 2), -- Armor Type
+(22269, 4415, 3), -- Weapon Type
+(22269, 4416, 9), -- Races
 (22269, 4441, 5), -- Greater Resist Mental Derangement
-(22269, 5265, 10), -- Soul Emission
+(22269, 5265, 10), -- NPC - Soul Emission
 (22269, 5467, 1), -- Dark Attacks
 (22269, 5549, 1), -- Physical Short-range Weakness
 -- Water Dragon Detractor
 (22270, 4086, 1), -- Critical Chance
 (22270, 4265, 3), -- Holiday Might
-(22270, 4408, 1), -- HP Increase (1x)
-(22270, 4409, 1), -- MP Increase (1x)
-(22270, 4410, 11), -- Average P. Atk.
-(22270, 4411, 11), -- Average M. Atk.
-(22270, 4412, 11), -- Average P. Def.
-(22270, 4413, 11), -- Average M. Def.
-(22270, 4414, 2), -- Standard Type
-(22270, 4415, 3), -- One-handed Sword
-(22270, 4416, 9), -- Demons
+(22270, 4408, 1), -- HP Modifiers
+(22270, 4409, 1), -- MP Modifiers
+(22270, 4410, 11), -- P. Atk. Modifiers
+(22270, 4411, 11), -- M. Atk. Modifiers
+(22270, 4412, 11), -- P. Def. Modifiers
+(22270, 4413, 11), -- M. Def. Modifiers
+(22270, 4414, 2), -- Armor Type
+(22270, 4415, 3), -- Weapon Type
+(22270, 4416, 9), -- Races
 (22270, 4441, 5), -- Greater Resist Mental Derangement
-(22270, 4629, 10), -- Drain Health
+(22270, 4629, 10), -- NPC MR - HP Drain
 (22270, 5467, 1), -- Dark Attacks
 (22270, 5549, 1), -- Physical Short-range Weakness
 -- Water Dragon Detractor
 (22271, 4086, 1), -- Critical Chance
 (22271, 4265, 3), -- Holiday Might
-(22271, 4408, 1), -- HP Increase (1x)
-(22271, 4409, 1), -- MP Increase (1x)
-(22271, 4410, 11), -- Average P. Atk.
-(22271, 4411, 11), -- Average M. Atk.
-(22271, 4412, 11), -- Average P. Def.
-(22271, 4413, 11), -- Average M. Def.
-(22271, 4414, 2), -- Standard Type
-(22271, 4415, 3), -- One-handed Sword
-(22271, 4416, 9), -- Demons
+(22271, 4408, 1), -- HP Modifiers
+(22271, 4409, 1), -- MP Modifiers
+(22271, 4410, 11), -- P. Atk. Modifiers
+(22271, 4411, 11), -- M. Atk. Modifiers
+(22271, 4412, 11), -- P. Def. Modifiers
+(22271, 4413, 11), -- M. Def. Modifiers
+(22271, 4414, 2), -- Armor Type
+(22271, 4415, 3), -- Weapon Type
+(22271, 4416, 9), -- Races
 (22271, 4441, 5), -- Greater Resist Mental Derangement
-(22271, 4489, 10), -- Death Bomb
+(22271, 4489, 10), -- NPC Death MP Bomb
 (22271, 5467, 1), -- Dark Attacks
 (22271, 5549, 1), -- Physical Short-range Weakness
 -- Beleth's Minion
-(22272, 4073, 9), -- Stun
-(22272, 4408, 10), -- HP Increase (2x)
-(22272, 4409, 1), -- MP Increase (1x)
-(22272, 4410, 11), -- Average P. Atk.
-(22272, 4411, 11), -- Average M. Atk.
-(22272, 4412, 11), -- Average P. Def.
-(22272, 4413, 11), -- Average M. Def.
-(22272, 4414, 2), -- Standard Type
-(22272, 4415, 3), -- One-handed Sword
-(22272, 4416, 9), -- Demons
-(22272, 4573, 9), -- Sonic Blaster
+(22272, 4073, 9), -- Shock
+(22272, 4408, 10), -- HP Modifiers
+(22272, 4409, 1), -- MP Modifiers
+(22272, 4410, 11), -- P. Atk. Modifiers
+(22272, 4411, 11), -- M. Atk. Modifiers
+(22272, 4412, 11), -- P. Def. Modifiers
+(22272, 4413, 11), -- M. Def. Modifiers
+(22272, 4414, 2), -- Armor Type
+(22272, 4415, 3), -- Weapon Type
+(22272, 4416, 9), -- Races
+(22272, 4573, 9), -- NPC Sonic Blaster
 -- Beleth's Minion
-(22273, 4002, 9), -- HP Drain
-(22273, 4033, 9), -- Aura Burn
-(22273, 4408, 10), -- HP Increase (2x)
-(22273, 4409, 1), -- MP Increase (1x)
-(22273, 4410, 11), -- Average P. Atk.
-(22273, 4411, 11), -- Average M. Atk.
-(22273, 4412, 11), -- Average P. Def.
-(22273, 4413, 11), -- Average M. Def.
-(22273, 4414, 2), -- Standard Type
-(22273, 4415, 3), -- One-handed Sword
-(22273, 4416, 9), -- Demons
+(22273, 4002, 9), -- NPC HP Drain
+(22273, 4033, 9), -- NPC Burn
+(22273, 4408, 10), -- HP Modifiers
+(22273, 4409, 1), -- MP Modifiers
+(22273, 4410, 11), -- P. Atk. Modifiers
+(22273, 4411, 11), -- M. Atk. Modifiers
+(22273, 4412, 11), -- P. Def. Modifiers
+(22273, 4413, 11), -- M. Def. Modifiers
+(22273, 4414, 2), -- Armor Type
+(22273, 4415, 3), -- Weapon Type
+(22273, 4416, 9), -- Races
 -- Beleth's Minion
-(22274, 4408, 10), -- HP Increase (2x)
-(22274, 4409, 1), -- MP Increase (1x)
-(22274, 4410, 11), -- Average P. Atk.
-(22274, 4411, 11), -- Average M. Atk.
-(22274, 4412, 11), -- Average P. Def.
-(22274, 4413, 11), -- Average M. Def.
-(22274, 4414, 2), -- Standard Type
-(22274, 4415, 3), -- One-handed Sword
-(22274, 4416, 9), -- Demons
+(22274, 4408, 10), -- HP Modifiers
+(22274, 4409, 1), -- MP Modifiers
+(22274, 4410, 11), -- P. Atk. Modifiers
+(22274, 4411, 11), -- M. Atk. Modifiers
+(22274, 4412, 11), -- P. Def. Modifiers
+(22274, 4413, 11), -- M. Def. Modifiers
+(22274, 4414, 2), -- Armor Type
+(22274, 4415, 3), -- Weapon Type
+(22274, 4416, 9), -- Races
 (22274, 4602, 10), -- Decrease P. Atk.
-(22274, 4641, 9), -- Super Strike
+(22274, 4641, 9), -- NPC Super Strike
 -- Gatekeeper Lohan
-(22275, 4408, 1), -- HP Increase (1x)
-(22275, 4409, 1), -- MP Increase (1x)
-(22275, 4410, 11), -- Average P. Atk.
-(22275, 4411, 11), -- Average M. Atk.
-(22275, 4412, 11), -- Average P. Def.
-(22275, 4413, 11), -- Average M. Def.
-(22275, 4414, 1), -- Heavy Armor Type
-(22275, 4415, 3), -- One-handed Sword
-(22275, 4416, 5), -- Plants
-(22275, 5299, 3), -- Whirlwind
+(22275, 4408, 1), -- HP Modifiers
+(22275, 4409, 1), -- MP Modifiers
+(22275, 4410, 11), -- P. Atk. Modifiers
+(22275, 4411, 11), -- M. Atk. Modifiers
+(22275, 4412, 11), -- P. Def. Modifiers
+(22275, 4413, 11), -- M. Def. Modifiers
+(22275, 4414, 1), -- Armor Type
+(22275, 4415, 3), -- Weapon Type
+(22275, 4416, 5), -- Races
+(22275, 5299, 3), -- NPC(party) - Physical Range Close Range Attack - Dark
 (22275, 5467, 1), -- Dark Attacks
 -- Gatekeeper of the Square
-(22276, 4408, 12), -- HP Increase (4x)
-(22276, 4409, 1), -- MP Increase (1x)
-(22276, 4410, 13), -- Slightly Strong P. Atk.
-(22276, 4411, 13), -- Slightly Strong M. Atk.
-(22276, 4412, 13), -- Slightly Strong P. Def.
-(22276, 4413, 11), -- Average M. Def.
-(22276, 4414, 2), -- Standard Type
-(22276, 4415, 3), -- One-handed Sword
-(22276, 4416, 2), -- Magic Creatures
-(22276, 4668, 10), -- Drain Health
-(22276, 5265, 10), -- Soul Emission
+(22276, 4408, 12), -- HP Modifiers
+(22276, 4409, 1), -- MP Modifiers
+(22276, 4410, 13), -- P. Atk. Modifiers
+(22276, 4411, 13), -- M. Atk. Modifiers
+(22276, 4412, 13), -- P. Def. Modifiers
+(22276, 4413, 11), -- M. Def. Modifiers
+(22276, 4414, 2), -- Armor Type
+(22276, 4415, 3), -- Weapon Type
+(22276, 4416, 2), -- Races
+(22276, 4668, 10), -- NPC Strong 100% HP Drain - Magic
+(22276, 5265, 10), -- NPC - Soul Emission
 (22276, 5467, 1), -- Dark Attacks
 -- Gatekeeper Provo
-(22277, 4408, 1), -- HP Increase (1x)
-(22277, 4409, 1), -- MP Increase (1x)
-(22277, 4410, 11), -- Average P. Atk.
-(22277, 4411, 11), -- Average M. Atk.
-(22277, 4412, 11), -- Average P. Def.
-(22277, 4413, 11), -- Average M. Def.
-(22277, 4414, 3), -- Light Armor Type
-(22277, 4415, 3), -- One-handed Sword
-(22277, 4416, 2), -- Magic Creatures
-(22277, 5279, 3), -- Whirlwind
+(22277, 4408, 1), -- HP Modifiers
+(22277, 4409, 1), -- MP Modifiers
+(22277, 4410, 11), -- P. Atk. Modifiers
+(22277, 4411, 11), -- M. Atk. Modifiers
+(22277, 4412, 11), -- P. Def. Modifiers
+(22277, 4413, 11), -- M. Def. Modifiers
+(22277, 4414, 3), -- Armor Type
+(22277, 4415, 3), -- Weapon Type
+(22277, 4416, 2), -- Races
+(22277, 5279, 3), -- NPC(party) - Physical Range Close Range Attack - Fire
 (22277, 5462, 1), -- Fire Attacks
 -- Gatekeeper of Fire
-(22278, 4067, 10), -- Blow
-(22278, 4085, 1), -- Critical Damage
-(22278, 4408, 12), -- HP Increase (4x)
-(22278, 4409, 1), -- MP Increase (1x)
-(22278, 4410, 13), -- Slightly Strong P. Atk.
-(22278, 4411, 13), -- Slightly Strong M. Atk.
-(22278, 4412, 13), -- Slightly Strong P. Def.
-(22278, 4413, 11), -- Average M. Def.
-(22278, 4414, 2), -- Standard Type
-(22278, 4415, 3), -- One-handed Sword
-(22278, 4416, 2), -- Magic Creatures
+(22278, 4067, 10), -- NPC Mortal Blow
+(22278, 4085, 1), -- Critical Power
+(22278, 4408, 12), -- HP Modifiers
+(22278, 4409, 1), -- MP Modifiers
+(22278, 4410, 13), -- P. Atk. Modifiers
+(22278, 4411, 13), -- M. Atk. Modifiers
+(22278, 4412, 13), -- P. Def. Modifiers
+(22278, 4413, 11), -- M. Def. Modifiers
+(22278, 4414, 2), -- Armor Type
+(22278, 4415, 3), -- Weapon Type
+(22278, 4416, 2), -- Races
 (22278, 5462, 1), -- Fire Attacks
 -- Chromatic Detainee
-(22279, 4408, 12), -- HP Increase (4x)
-(22279, 4409, 1), -- MP Increase (1x)
-(22279, 4410, 11), -- Average P. Atk.
-(22279, 4411, 11), -- Average M. Atk.
-(22279, 4412, 11), -- Average P. Def.
-(22279, 4413, 11), -- Average M. Def.
-(22279, 4414, 2), -- Standard Type
-(22279, 4415, 3), -- One-handed Sword
-(22279, 4416, 6), -- Humanoids
+(22279, 4408, 12), -- HP Modifiers
+(22279, 4409, 1), -- MP Modifiers
+(22279, 4410, 11), -- P. Atk. Modifiers
+(22279, 4411, 11), -- M. Atk. Modifiers
+(22279, 4412, 11), -- P. Def. Modifiers
+(22279, 4413, 11), -- M. Def. Modifiers
+(22279, 4414, 2), -- Armor Type
+(22279, 4415, 3), -- Weapon Type
+(22279, 4416, 6), -- Races
 (22279, 4580, 10), -- Decrease P. Atk.
-(22279, 4629, 10), -- Drain Health
+(22279, 4629, 10), -- NPC MR - HP Drain
 (22279, 5467, 1), -- Dark Attacks
 -- Rodo Knight
-(22280, 4032, 10), -- Power Strike
-(22280, 4408, 10), -- HP Increase (2x)
-(22280, 4409, 1), -- MP Increase (1x)
-(22280, 4410, 11), -- Average P. Atk.
-(22280, 4411, 11), -- Average M. Atk.
-(22280, 4412, 11), -- Average P. Def.
-(22280, 4413, 11), -- Average M. Def.
-(22280, 4414, 2), -- Standard Type
-(22280, 4415, 3), -- One-handed Sword
-(22280, 4416, 2), -- Magic Creatures
-(22280, 4472, 10), -- Golem Strike
+(22280, 4032, 10), -- NPC Strike
+(22280, 4408, 10), -- HP Modifiers
+(22280, 4409, 1), -- MP Modifiers
+(22280, 4410, 11), -- P. Atk. Modifiers
+(22280, 4411, 11), -- M. Atk. Modifiers
+(22280, 4412, 11), -- P. Def. Modifiers
+(22280, 4413, 11), -- M. Def. Modifiers
+(22280, 4414, 2), -- Armor Type
+(22280, 4415, 3), -- Weapon Type
+(22280, 4416, 2), -- Races
+(22280, 4472, 10), -- NPC Strike Golem
 -- Plaza Caiman
-(22281, 4408, 9), -- HP Increase (1/2x)
-(22281, 4409, 1), -- MP Increase (1x)
-(22281, 4410, 11), -- Average P. Atk.
-(22281, 4411, 11), -- Average M. Atk.
-(22281, 4412, 9), -- Slightly Weak P. Def.
-(22281, 4413, 11), -- Average M. Def.
-(22281, 4414, 2), -- Standard Type
-(22281, 4415, 3), -- One-handed Sword
-(22281, 4416, 6), -- Humanoids
+(22281, 4408, 9), -- HP Modifiers
+(22281, 4409, 1), -- MP Modifiers
+(22281, 4410, 11), -- P. Atk. Modifiers
+(22281, 4411, 11), -- M. Atk. Modifiers
+(22281, 4412, 9), -- P. Def. Modifiers
+(22281, 4413, 11), -- M. Def. Modifiers
+(22281, 4414, 2), -- Armor Type
+(22281, 4415, 3), -- Weapon Type
+(22281, 4416, 6), -- Races
 (22281, 4577, 10), -- Decrease Accuracy
-(22281, 5297, 4), -- Power Strike
+(22281, 5297, 4), -- NPC(party) - Physical Single Close Range Attack - Dark
 (22281, 5467, 1), -- Dark Attacks
 -- Chromatic Detainee
-(22282, 4244, 10), -- Wild Sweep
-(22282, 4408, 12), -- HP Increase (4x)
-(22282, 4409, 1), -- MP Increase (1x)
-(22282, 4410, 11), -- Average P. Atk.
-(22282, 4411, 11), -- Average M. Atk.
-(22282, 4412, 11), -- Average P. Def.
-(22282, 4413, 11), -- Average M. Def.
-(22282, 4414, 2), -- Standard Type
-(22282, 4415, 3), -- One-handed Sword
-(22282, 4416, 6), -- Humanoids
+(22282, 4244, 10), -- NPC Wild Sweep
+(22282, 4408, 12), -- HP Modifiers
+(22282, 4409, 1), -- MP Modifiers
+(22282, 4410, 11), -- P. Atk. Modifiers
+(22282, 4411, 11), -- M. Atk. Modifiers
+(22282, 4412, 11), -- P. Def. Modifiers
+(22282, 4413, 11), -- M. Def. Modifiers
+(22282, 4414, 2), -- Armor Type
+(22282, 4415, 3), -- Weapon Type
+(22282, 4416, 6), -- Races
 (22282, 5467, 1), -- Dark Attacks
 -- Emerald Alligar
 (22283, 4238, 1), -- Increase Re-use Time
-(22283, 4408, 9), -- HP Increase (1/2x)
-(22283, 4409, 1), -- MP Increase (1x)
-(22283, 4410, 11), -- Average P. Atk.
-(22283, 4411, 11), -- Average M. Atk.
-(22283, 4412, 9), -- Slightly Weak P. Def.
-(22283, 4413, 11), -- Average M. Def.
-(22283, 4414, 2), -- Standard Type
-(22283, 4415, 3), -- One-handed Sword
-(22283, 4416, 6), -- Humanoids
-(22283, 5297, 4), -- Power Strike
+(22283, 4408, 9), -- HP Modifiers
+(22283, 4409, 1), -- MP Modifiers
+(22283, 4410, 11), -- P. Atk. Modifiers
+(22283, 4411, 11), -- M. Atk. Modifiers
+(22283, 4412, 9), -- P. Def. Modifiers
+(22283, 4413, 11), -- M. Def. Modifiers
+(22283, 4414, 2), -- Armor Type
+(22283, 4415, 3), -- Weapon Type
+(22283, 4416, 6), -- Races
+(22283, 5297, 4), -- NPC(party) - Physical Single Close Range Attack - Dark
 (22283, 5467, 1), -- Dark Attacks
 -- Chromatic Detainee
-(22284, 4160, 10), -- Aura Burn
-(22284, 4408, 12), -- HP Increase (4x)
-(22284, 4409, 1), -- MP Increase (1x)
-(22284, 4410, 11), -- Average P. Atk.
-(22284, 4411, 11), -- Average M. Atk.
-(22284, 4412, 11), -- Average P. Def.
-(22284, 4413, 11), -- Average M. Def.
-(22284, 4414, 2), -- Standard Type
-(22284, 4415, 3), -- One-handed Sword
-(22284, 4416, 6), -- Humanoids
+(22284, 4160, 10), -- NPC Aura Burn - Magic
+(22284, 4408, 12), -- HP Modifiers
+(22284, 4409, 1), -- MP Modifiers
+(22284, 4410, 11), -- P. Atk. Modifiers
+(22284, 4411, 11), -- M. Atk. Modifiers
+(22284, 4412, 11), -- P. Def. Modifiers
+(22284, 4413, 11), -- M. Def. Modifiers
+(22284, 4414, 2), -- Armor Type
+(22284, 4415, 3), -- Weapon Type
+(22284, 4416, 6), -- Races
 (22284, 4593, 10), -- Decrease P. Def.
 (22284, 5462, 1), -- Fire Attacks
 -- Chromatic Detainee
-(22285, 4039, 10), -- Mana Drain
-(22285, 4408, 12), -- HP Increase (4x)
-(22285, 4409, 1), -- MP Increase (1x)
-(22285, 4410, 11), -- Average P. Atk.
-(22285, 4411, 11), -- Average M. Atk.
-(22285, 4412, 11), -- Average P. Def.
-(22285, 4413, 11), -- Average M. Def.
-(22285, 4414, 2), -- Standard Type
-(22285, 4415, 3), -- One-handed Sword
-(22285, 4416, 6), -- Humanoids
-(22285, 4560, 10), -- Fire Burn
+(22285, 4039, 10), -- NPC MP Drain
+(22285, 4408, 12), -- HP Modifiers
+(22285, 4409, 1), -- MP Modifiers
+(22285, 4410, 11), -- P. Atk. Modifiers
+(22285, 4411, 11), -- M. Atk. Modifiers
+(22285, 4412, 11), -- P. Def. Modifiers
+(22285, 4413, 11), -- M. Def. Modifiers
+(22285, 4414, 2), -- Armor Type
+(22285, 4415, 3), -- Weapon Type
+(22285, 4416, 6), -- Races
+(22285, 4560, 10), -- NPC Fire Burn
 (22285, 5462, 1), -- Fire Attacks
 -- Plaza Gaviel
-(22286, 4408, 9), -- HP Increase (1/2x)
-(22286, 4409, 1), -- MP Increase (1x)
-(22286, 4410, 11), -- Average P. Atk.
-(22286, 4411, 11), -- Average M. Atk.
-(22286, 4412, 9), -- Slightly Weak P. Def.
-(22286, 4413, 11), -- Average M. Def.
-(22286, 4414, 2), -- Standard Type
-(22286, 4415, 3), -- One-handed Sword
-(22286, 4416, 6), -- Humanoids
+(22286, 4408, 9), -- HP Modifiers
+(22286, 4409, 1), -- MP Modifiers
+(22286, 4410, 11), -- P. Atk. Modifiers
+(22286, 4411, 11), -- M. Atk. Modifiers
+(22286, 4412, 9), -- P. Def. Modifiers
+(22286, 4413, 11), -- M. Def. Modifiers
+(22286, 4414, 2), -- Armor Type
+(22286, 4415, 3), -- Weapon Type
+(22286, 4416, 6), -- Races
 (22286, 4466, 3), -- Surrender To Darkness
-(22286, 5297, 4), -- Power Strike
+(22286, 5297, 4), -- NPC(party) - Physical Single Close Range Attack - Dark
 (22286, 5467, 1), -- Dark Attacks
 -- Crystalline Unicorn
-(22287, 4160, 10), -- Aura Burn
-(22287, 4408, 14), -- HP Increase (6x)
-(22287, 4409, 1), -- MP Increase (1x)
-(22287, 4410, 11), -- Average P. Atk.
-(22287, 4411, 11), -- Average M. Atk.
-(22287, 4412, 11), -- Average P. Def.
-(22287, 4413, 11), -- Average M. Def.
-(22287, 4414, 1), -- Heavy Armor Type
-(22287, 4415, 3), -- One-handed Sword
-(22287, 4416, 7), -- Spirits
-(22287, 5263, 10), -- Chain Lightning
+(22287, 4160, 10), -- NPC Aura Burn - Magic
+(22287, 4408, 14), -- HP Modifiers
+(22287, 4409, 1), -- MP Modifiers
+(22287, 4410, 11), -- P. Atk. Modifiers
+(22287, 4411, 11), -- M. Atk. Modifiers
+(22287, 4412, 11), -- P. Def. Modifiers
+(22287, 4413, 11), -- M. Def. Modifiers
+(22287, 4414, 1), -- Armor Type
+(22287, 4415, 3), -- Weapon Type
+(22287, 4416, 7), -- Races
+(22287, 5263, 10), -- NPC _ Chain Lightning
 (22287, 5463, 1), -- Water Attacks
 -- Emerald Boar
-(22288, 4032, 10), -- Power Strike
-(22288, 4408, 14), -- HP Increase (6x)
-(22288, 4409, 1), -- MP Increase (1x)
-(22288, 4410, 11), -- Average P. Atk.
-(22288, 4411, 11), -- Average M. Atk.
-(22288, 4412, 11), -- Average P. Def.
-(22288, 4413, 11), -- Average M. Def.
-(22288, 4414, 2), -- Standard Type
-(22288, 4415, 5), -- Blunt Weapons
-(22288, 4416, 4), -- Animals
-(22288, 4670, 10), -- Stuns
+(22288, 4032, 10), -- NPC Strike
+(22288, 4408, 14), -- HP Modifiers
+(22288, 4409, 1), -- MP Modifiers
+(22288, 4410, 11), -- P. Atk. Modifiers
+(22288, 4411, 11), -- M. Atk. Modifiers
+(22288, 4412, 11), -- P. Def. Modifiers
+(22288, 4413, 11), -- M. Def. Modifiers
+(22288, 4414, 2), -- Armor Type
+(22288, 4415, 5), -- Weapon Type
+(22288, 4416, 4), -- Races
+(22288, 4670, 10), -- Short Stun
 -- Plaza Helm
-(22289, 4032, 10), -- Power Strike
-(22289, 4408, 13), -- HP Increase (5x)
-(22289, 4409, 1), -- MP Increase (1x)
-(22289, 4410, 11), -- Average P. Atk.
-(22289, 4411, 11), -- Average M. Atk.
-(22289, 4412, 11), -- Average P. Def.
-(22289, 4413, 11), -- Average M. Def.
-(22289, 4414, 3), -- Light Armor Type
-(22289, 4415, 3); -- One-handed Sword
+(22289, 4032, 10), -- NPC Strike
+(22289, 4408, 13), -- HP Modifiers
+(22289, 4409, 1), -- MP Modifiers
+(22289, 4410, 11), -- P. Atk. Modifiers
+(22289, 4411, 11), -- M. Atk. Modifiers
+(22289, 4412, 11), -- P. Def. Modifiers
+(22289, 4413, 11), -- M. Def. Modifiers
+(22289, 4414, 3), -- Armor Type
+(22289, 4415, 3); -- Weapon Type
 
 INSERT INTO `npcskills` VALUES
-(22289, 4416, 4), -- Animals
+(22289, 4416, 4), -- Races
 (22289, 4584, 10), -- Reducing P. Def Stun
 -- Terod's Minion
-(22290, 4408, 1), -- HP Increase (1x)
-(22290, 4409, 1), -- MP Increase (1x)
-(22290, 4410, 11), -- Average P. Atk.
-(22290, 4411, 14), -- Strong M. Atk.
-(22290, 4412, 11), -- Average P. Def.
-(22290, 4413, 11), -- Average M. Def.
-(22290, 4414, 2), -- Standard Type
-(22290, 4415, 3), -- One-handed Sword
-(22290, 4416, 9), -- Demons
-(22290, 5273, 3), -- Power Strike
+(22290, 4408, 1), -- HP Modifiers
+(22290, 4409, 1), -- MP Modifiers
+(22290, 4410, 11), -- P. Atk. Modifiers
+(22290, 4411, 14), -- M. Atk. Modifiers
+(22290, 4412, 11), -- P. Def. Modifiers
+(22290, 4413, 11), -- M. Def. Modifiers
+(22290, 4414, 2), -- Armor Type
+(22290, 4415, 3), -- Weapon Type
+(22290, 4416, 9), -- Races
+(22290, 5273, 3), -- NPC(party) - Physical Single Close Range Attack
 -- Weylin's Minion
-(22291, 4408, 1), -- HP Increase (1x)
-(22291, 4409, 1), -- MP Increase (1x)
-(22291, 4410, 11), -- Average P. Atk.
-(22291, 4411, 11), -- Average M. Atk.
-(22291, 4412, 11), -- Average P. Def.
-(22291, 4413, 11), -- Average M. Def.
-(22291, 4414, 2), -- Standard Type
-(22291, 4415, 3), -- One-handed Sword
-(22291, 4416, 9), -- Demons
-(22291, 5316, 3), -- Hydro Blast
-(22291, 5331, 4), -- Drain Health
+(22291, 4408, 1), -- HP Modifiers
+(22291, 4409, 1), -- MP Modifiers
+(22291, 4410, 11), -- P. Atk. Modifiers
+(22291, 4411, 11), -- M. Atk. Modifiers
+(22291, 4412, 11), -- P. Def. Modifiers
+(22291, 4413, 11), -- M. Def. Modifiers
+(22291, 4414, 2), -- Armor Type
+(22291, 4415, 3), -- Weapon Type
+(22291, 4416, 9), -- Races
+(22291, 5316, 3), -- NPC(party) -Magic Single Long Range DD - Water
+(22291, 5331, 4), -- NPC HP Drain
 -- Tourmaline
-(22292, 4408, 1), -- HP Increase (1x)
-(22292, 4409, 1), -- MP Increase (1x)
-(22292, 4410, 11), -- Average P. Atk.
-(22292, 4411, 11), -- Average M. Atk.
-(22292, 4412, 11), -- Average P. Def.
-(22292, 4413, 11), -- Average M. Def.
-(22292, 4414, 2), -- Standard Type
-(22292, 4415, 3), -- One-handed Sword
-(22292, 4416, 2), -- Magic Creatures
+(22292, 4408, 1), -- HP Modifiers
+(22292, 4409, 1), -- MP Modifiers
+(22292, 4410, 11), -- P. Atk. Modifiers
+(22292, 4411, 11), -- M. Atk. Modifiers
+(22292, 4412, 11), -- P. Def. Modifiers
+(22292, 4413, 11), -- M. Def. Modifiers
+(22292, 4414, 2), -- Armor Type
+(22292, 4415, 3), -- Weapon Type
+(22292, 4416, 2), -- Races
 (22292, 4581, 10), -- Hold
-(22292, 5273, 4), -- Power Strike
+(22292, 5273, 4), -- NPC(party) - Physical Single Close Range Attack
 -- Spinel
-(22293, 4033, 10), -- Aura Burn
+(22293, 4033, 10), -- NPC Burn
 (22293, 4249, 10), -- Decrease Speed
-(22293, 4408, 12), -- HP Increase (4x)
-(22293, 4409, 1), -- MP Increase (1x)
-(22293, 4410, 11), -- Average P. Atk.
-(22293, 4411, 11), -- Average M. Atk.
-(22293, 4412, 11), -- Average P. Def.
-(22293, 4413, 11), -- Average M. Def.
-(22293, 4414, 2), -- Standard Type
-(22293, 4415, 3), -- One-handed Sword
-(22293, 4416, 2), -- Magic Creatures
-(22293, 4656, 10), -- Death Link
+(22293, 4408, 12), -- HP Modifiers
+(22293, 4409, 1), -- MP Modifiers
+(22293, 4410, 11), -- P. Atk. Modifiers
+(22293, 4411, 11), -- M. Atk. Modifiers
+(22293, 4412, 11), -- P. Def. Modifiers
+(22293, 4413, 11), -- M. Def. Modifiers
+(22293, 4414, 2), -- Armor Type
+(22293, 4415, 3), -- Weapon Type
+(22293, 4416, 2), -- Races
+(22293, 4656, 10), -- NPC Death Link - Slow
 -- Fire Opal
-(22294, 4408, 1), -- HP Increase (1x)
-(22294, 4409, 1), -- MP Increase (1x)
-(22294, 4410, 11), -- Average P. Atk.
-(22294, 4411, 11), -- Average M. Atk.
-(22294, 4412, 11), -- Average P. Def.
-(22294, 4413, 11), -- Average M. Def.
-(22294, 4414, 2), -- Standard Type
-(22294, 4415, 3), -- One-handed Sword
-(22294, 4416, 2), -- Magic Creatures
+(22294, 4408, 1), -- HP Modifiers
+(22294, 4409, 1), -- MP Modifiers
+(22294, 4410, 11), -- P. Atk. Modifiers
+(22294, 4411, 11), -- M. Atk. Modifiers
+(22294, 4412, 11), -- P. Def. Modifiers
+(22294, 4413, 11), -- M. Def. Modifiers
+(22294, 4414, 2), -- Armor Type
+(22294, 4415, 3), -- Weapon Type
+(22294, 4416, 2), -- Races
 (22294, 4580, 10), -- Decrease P. Atk.
-(22294, 5273, 4), -- Power Strike
+(22294, 5273, 4), -- NPC(party) - Physical Single Close Range Attack
 -- Reef Golem
-(22295, 4408, 1), -- HP Increase (1x)
-(22295, 4409, 1), -- MP Increase (1x)
-(22295, 4410, 11), -- Average P. Atk.
-(22295, 4411, 11), -- Average M. Atk.
-(22295, 4412, 11), -- Average P. Def.
-(22295, 4413, 13), -- Slightly Strong M. Def.
-(22295, 4414, 2), -- Standard Type
-(22295, 4415, 3), -- One-handed Sword
-(22295, 4416, 2), -- Magic Creatures
+(22295, 4408, 1), -- HP Modifiers
+(22295, 4409, 1), -- MP Modifiers
+(22295, 4410, 11), -- P. Atk. Modifiers
+(22295, 4411, 11), -- M. Atk. Modifiers
+(22295, 4412, 11), -- P. Def. Modifiers
+(22295, 4413, 13), -- M. Def. Modifiers
+(22295, 4414, 2), -- Armor Type
+(22295, 4415, 3), -- Weapon Type
+(22295, 4416, 2), -- Races
 (22295, 5259, 10), -- Fear
-(22295, 5310, 4), -- Aura Burn
-(22295, 5329, 4), -- Unholy Blast
+(22295, 5310, 4), -- NPC(party) - Magic Close Range DD - less powerful
+(22295, 5329, 4), -- NPC(party) -Magic Range Long Range DD - Holy
 (22295, 5467, 1), -- Dark Attacks
 -- Reef Golem
-(22296, 4408, 1), -- HP Increase (1x)
-(22296, 4409, 1), -- MP Increase (1x)
-(22296, 4410, 11), -- Average P. Atk.
-(22296, 4411, 11), -- Average M. Atk.
-(22296, 4412, 13), -- Slightly Strong P. Def.
-(22296, 4413, 11), -- Average M. Def.
-(22296, 4414, 2), -- Standard Type
-(22296, 4415, 3), -- One-handed Sword
-(22296, 4416, 2), -- Magic Creatures
-(22296, 5273, 3), -- Power Strike
+(22296, 4408, 1), -- HP Modifiers
+(22296, 4409, 1), -- MP Modifiers
+(22296, 4410, 11), -- P. Atk. Modifiers
+(22296, 4411, 11), -- M. Atk. Modifiers
+(22296, 4412, 13), -- P. Def. Modifiers
+(22296, 4413, 11), -- M. Def. Modifiers
+(22296, 4414, 2), -- Armor Type
+(22296, 4415, 3), -- Weapon Type
+(22296, 4416, 2), -- Races
+(22296, 5273, 3), -- NPC(party) - Physical Single Close Range Attack
 (22296, 5467, 1), -- Dark Attacks
 -- Reef Golem
-(22297, 4408, 1), -- HP Increase (1x)
-(22297, 4409, 1), -- MP Increase (1x)
-(22297, 4410, 13), -- Slightly Strong P. Atk.
-(22297, 4411, 11), -- Average M. Atk.
-(22297, 4412, 11), -- Average P. Def.
-(22297, 4413, 11), -- Average M. Def.
-(22297, 4414, 2), -- Standard Type
-(22297, 4415, 3), -- One-handed Sword
-(22297, 4416, 2), -- Magic Creatures
-(22297, 5299, 4), -- Whirlwind
-(22297, 5328, 4), -- Unholy Strike
+(22297, 4408, 1), -- HP Modifiers
+(22297, 4409, 1), -- MP Modifiers
+(22297, 4410, 13), -- P. Atk. Modifiers
+(22297, 4411, 11), -- M. Atk. Modifiers
+(22297, 4412, 11), -- P. Def. Modifiers
+(22297, 4413, 11), -- M. Def. Modifiers
+(22297, 4414, 2), -- Armor Type
+(22297, 4415, 3), -- Weapon Type
+(22297, 4416, 2), -- Races
+(22297, 5299, 4), -- NPC(party) - Physical Range Close Range Attack - Dark
+(22297, 5328, 4), -- NPC(party) -Magic Single Long Range DD - Dark
 (22297, 5467, 1), -- Dark Attacks
 -- Weylin
-(22298, 4408, 1), -- HP Increase (1x)
-(22298, 4409, 1), -- MP Increase (1x)
-(22298, 4410, 11), -- Average P. Atk.
-(22298, 4411, 11), -- Average M. Atk.
-(22298, 4412, 11), -- Average P. Def.
-(22298, 4413, 11), -- Average M. Def.
-(22298, 4414, 3), -- Light Armor Type
-(22298, 4415, 3), -- One-handed Sword
-(22298, 4416, 9), -- Demons
-(22298, 5317, 3), -- Mass Hydro Blast
-(22298, 5318, 3), -- Frost Wall
-(22298, 5332, 3), -- Mana Burn
+(22298, 4408, 1), -- HP Modifiers
+(22298, 4409, 1), -- MP Modifiers
+(22298, 4410, 11), -- P. Atk. Modifiers
+(22298, 4411, 11), -- M. Atk. Modifiers
+(22298, 4412, 11), -- P. Def. Modifiers
+(22298, 4413, 11), -- M. Def. Modifiers
+(22298, 4414, 3), -- Armor Type
+(22298, 4415, 3), -- Weapon Type
+(22298, 4416, 9), -- Races
+(22298, 5317, 3), -- NPC(party) -Magic Range Long Range DD - Water
+(22298, 5318, 3), -- NPC(party) -Magic Range Close Range DD - Water
+(22298, 5332, 3), -- NPC MP Burn
 (22298, 5463, 1), -- Water Attacks
 -- Dolph
-(22299, 4408, 1), -- HP Increase (1x)
-(22299, 4409, 1), -- MP Increase (1x)
-(22299, 4410, 11), -- Average P. Atk.
-(22299, 4411, 11), -- Average M. Atk.
-(22299, 4412, 11), -- Average P. Def.
-(22299, 4413, 11), -- Average M. Def.
-(22299, 4414, 1), -- Heavy Armor Type
-(22299, 4415, 12), -- Spears
-(22299, 4416, 13), -- Fairies
-(22299, 5273, 3), -- Power Strike
-(22299, 5274, 3), -- Power Shot
-(22299, 5275, 3), -- Whirlwind
+(22299, 4408, 1), -- HP Modifiers
+(22299, 4409, 1), -- MP Modifiers
+(22299, 4410, 11), -- P. Atk. Modifiers
+(22299, 4411, 11), -- M. Atk. Modifiers
+(22299, 4412, 11), -- P. Def. Modifiers
+(22299, 4413, 11), -- M. Def. Modifiers
+(22299, 4414, 1), -- Armor Type
+(22299, 4415, 12), -- Weapon Type
+(22299, 4416, 13), -- Races
+(22299, 5273, 3), -- NPC(party) - Physical Single Close Range Attack
+(22299, 5274, 3), -- NPC(party) - Physical Single Long Range Attack
+(22299, 5275, 3), -- NPC(party) - Physical Range Close Range Attack
 (22299, 5467, 1), -- Dark Attacks
 -- Dolph's Minion
-(22300, 4408, 1), -- HP Increase (1x)
-(22300, 4409, 1), -- MP Increase (1x)
-(22300, 4410, 11), -- Average P. Atk.
-(22300, 4411, 14), -- Strong M. Atk.
-(22300, 4412, 8), -- Weak P. Def.
-(22300, 4413, 11), -- Average M. Def.
-(22300, 4414, 2), -- Standard Type
-(22300, 4415, 3), -- One-handed Sword
-(22300, 4416, 9), -- Demons
+(22300, 4408, 1), -- HP Modifiers
+(22300, 4409, 1), -- MP Modifiers
+(22300, 4410, 11), -- P. Atk. Modifiers
+(22300, 4411, 14), -- M. Atk. Modifiers
+(22300, 4412, 8), -- P. Def. Modifiers
+(22300, 4413, 11), -- M. Def. Modifiers
+(22300, 4414, 2), -- Armor Type
+(22300, 4415, 3), -- Weapon Type
+(22300, 4416, 9), -- Races
 (22300, 5303, 4), -- Bleed
 -- Terod
-(22301, 4408, 1), -- HP Increase (1x)
-(22301, 4409, 1), -- MP Increase (1x)
-(22301, 4410, 11), -- Average P. Atk.
-(22301, 4411, 11), -- Average M. Atk.
-(22301, 4412, 11), -- Average P. Def.
-(22301, 4413, 11), -- Average M. Def.
-(22301, 4414, 3), -- Light Armor Type
-(22301, 4415, 3), -- One-handed Sword
-(22301, 4416, 1), -- Undead
+(22301, 4408, 1), -- HP Modifiers
+(22301, 4409, 1), -- MP Modifiers
+(22301, 4410, 11), -- P. Atk. Modifiers
+(22301, 4411, 11), -- M. Atk. Modifiers
+(22301, 4412, 11), -- P. Def. Modifiers
+(22301, 4413, 11), -- M. Def. Modifiers
+(22301, 4414, 3), -- Armor Type
+(22301, 4415, 3), -- Weapon Type
+(22301, 4416, 1), -- Races
 (22301, 5203, 10), -- Fear
-(22301, 5283, 4), -- Whirlwind
-(22301, 5317, 4), -- Mass Hydro Blast
+(22301, 5283, 4), -- NPC(party) - Physical Range Close Range Attack - Water
+(22301, 5317, 4), -- NPC(party) -Magic Range Long Range DD - Water
 (22301, 5463, 1), -- Water Attacks
 -- Darnel's Guardian
-(22302, 4408, 1), -- HP Increase (1x)
-(22302, 4409, 1), -- MP Increase (1x)
-(22302, 4410, 11), -- Average P. Atk.
-(22302, 4411, 14), -- Strong M. Atk.
-(22302, 4412, 11), -- Average P. Def.
-(22302, 4413, 11), -- Average M. Def.
-(22302, 4414, 2), -- Standard Type
-(22302, 4415, 3), -- One-handed Sword
-(22302, 4416, 13), -- Fairies
-(22302, 4666, 10), -- Drain Health
-(22302, 5360, 2), -- Whirlwind
-(22302, 5390, 4), -- Unholy Blast
+(22302, 4408, 1), -- HP Modifiers
+(22302, 4409, 1), -- MP Modifiers
+(22302, 4410, 11), -- P. Atk. Modifiers
+(22302, 4411, 14), -- M. Atk. Modifiers
+(22302, 4412, 11), -- P. Def. Modifiers
+(22302, 4413, 11), -- M. Def. Modifiers
+(22302, 4414, 2), -- Armor Type
+(22302, 4415, 3), -- Weapon Type
+(22302, 4416, 13), -- Races
+(22302, 4666, 10), -- NPC 100% HP Drain - Slow
+(22302, 5360, 2), -- NPC(party) - Physical Range Close Range Attack - Dark
+(22302, 5390, 4), -- NPC(party) -Magic Range Long Range DD - Holy
 (22302, 5467, 1), -- Dark Attacks
 -- Guardian of the Square
-(22303, 4408, 1), -- HP Increase (1x)
-(22303, 4409, 1), -- MP Increase (1x)
-(22303, 4410, 14), -- Strong P. Atk.
-(22303, 4411, 11), -- Average M. Atk.
-(22303, 4412, 11), -- Average P. Def.
-(22303, 4413, 11), -- Average M. Def.
-(22303, 4414, 2), -- Standard Type
-(22303, 4415, 3), -- One-handed Sword
-(22303, 4416, 7), -- Spirits
-(22303, 5359, 4), -- Power Shot
+(22303, 4408, 1), -- HP Modifiers
+(22303, 4409, 1), -- MP Modifiers
+(22303, 4410, 14), -- P. Atk. Modifiers
+(22303, 4411, 11), -- M. Atk. Modifiers
+(22303, 4412, 11), -- P. Def. Modifiers
+(22303, 4413, 11), -- M. Def. Modifiers
+(22303, 4414, 2), -- Armor Type
+(22303, 4415, 3), -- Weapon Type
+(22303, 4416, 7), -- Races
+(22303, 5359, 4), -- NPC(party) - Physical Single Long Range Attack - Dark
 (22303, 5365, 4), -- Paralysis
 (22303, 5467, 1), -- Dark Attacks
 -- Guardian of the Emerald
-(22304, 4408, 1), -- HP Increase (1x)
-(22304, 4409, 1), -- MP Increase (1x)
-(22304, 4410, 11), -- Average P. Atk.
-(22304, 4411, 11), -- Average M. Atk.
-(22304, 4412, 11), -- Average P. Def.
-(22304, 4413, 14), -- Strong M. Def.
-(22304, 4414, 2), -- Standard Type
-(22304, 4415, 3), -- One-handed Sword
-(22304, 4416, 7), -- Spirits
+(22304, 4408, 1), -- HP Modifiers
+(22304, 4409, 1), -- MP Modifiers
+(22304, 4410, 11), -- P. Atk. Modifiers
+(22304, 4411, 11), -- M. Atk. Modifiers
+(22304, 4412, 11), -- P. Def. Modifiers
+(22304, 4413, 14), -- M. Def. Modifiers
+(22304, 4414, 2), -- Armor Type
+(22304, 4415, 3), -- Weapon Type
+(22304, 4416, 7), -- Races
 (22304, 5362, 4), -- Stun
-(22304, 5393, 4), -- Mana Burn
+(22304, 5393, 4), -- NPC MP Burn
 (22304, 5467, 1), -- Dark Attacks
 -- Kechi's Captain
-(22305, 4408, 1), -- HP Increase (1x)
-(22305, 4409, 1), -- MP Increase (1x)
-(22305, 4410, 11), -- Average P. Atk.
-(22305, 4411, 11), -- Average M. Atk.
-(22305, 4412, 11), -- Average P. Def.
-(22305, 4413, 11), -- Average M. Def.
-(22305, 4414, 2), -- Standard Type
-(22305, 4415, 3), -- One-handed Sword
-(22305, 4416, 2), -- Magic Creatures
-(22305, 5273, 3), -- Power Strike
+(22305, 4408, 1), -- HP Modifiers
+(22305, 4409, 1), -- MP Modifiers
+(22305, 4410, 11), -- P. Atk. Modifiers
+(22305, 4411, 11), -- M. Atk. Modifiers
+(22305, 4412, 11), -- P. Def. Modifiers
+(22305, 4413, 11), -- M. Def. Modifiers
+(22305, 4414, 2), -- Armor Type
+(22305, 4415, 3), -- Weapon Type
+(22305, 4416, 2), -- Races
+(22305, 5273, 3), -- NPC(party) - Physical Single Close Range Attack
 (22305, 5462, 1), -- Fire Attacks
 -- Kechi's Captain
-(22306, 4408, 11), -- HP Increase (3x)
-(22306, 4409, 1), -- MP Increase (1x)
-(22306, 4410, 11), -- Average P. Atk.
-(22306, 4411, 11), -- Average M. Atk.
-(22306, 4412, 11), -- Average P. Def.
-(22306, 4413, 11), -- Average M. Def.
-(22306, 4414, 3), -- Light Armor Type
-(22306, 4415, 3), -- One-handed Sword
-(22306, 4416, 2), -- Magic Creatures
-(22306, 5312, 4), -- Blaze
-(22306, 5314, 4), -- Blazing Circle
+(22306, 4408, 11), -- HP Modifiers
+(22306, 4409, 1), -- MP Modifiers
+(22306, 4410, 11), -- P. Atk. Modifiers
+(22306, 4411, 11), -- M. Atk. Modifiers
+(22306, 4412, 11), -- P. Def. Modifiers
+(22306, 4413, 11), -- M. Def. Modifiers
+(22306, 4414, 3), -- Armor Type
+(22306, 4415, 3), -- Weapon Type
+(22306, 4416, 2), -- Races
+(22306, 5312, 4), -- NPC(party) -Magic Single Long Range DD - Fire
+(22306, 5314, 4), -- NPC(party) -Magic Range Close Range DD - Fire
 (22306, 5462, 1), -- Fire Attacks
 -- Kechi's Captain
-(22307, 4408, 10), -- HP Increase (2x)
-(22307, 4409, 1), -- MP Increase (1x)
-(22307, 4410, 11), -- Average P. Atk.
-(22307, 4411, 11), -- Average M. Atk.
-(22307, 4412, 13), -- Slightly Strong P. Def.
-(22307, 4413, 11), -- Average M. Def.
-(22307, 4414, 1), -- Heavy Armor Type
-(22307, 4415, 5), -- Blunt Weapons
-(22307, 4416, 2), -- Magic Creatures
+(22307, 4408, 10), -- HP Modifiers
+(22307, 4409, 1), -- MP Modifiers
+(22307, 4410, 11), -- P. Atk. Modifiers
+(22307, 4411, 11), -- M. Atk. Modifiers
+(22307, 4412, 13), -- P. Def. Modifiers
+(22307, 4413, 11), -- M. Def. Modifiers
+(22307, 4414, 1), -- Armor Type
+(22307, 4415, 5), -- Weapon Type
+(22307, 4416, 2), -- Races
 (22307, 4444, 1), -- Higher Resist Bow/Crossbow Weapons
-(22307, 5340, 3), -- Whirlwind
+(22307, 5340, 3), -- NPC(party) - Physical Range Close Range Attack - Fire
 (22307, 5462, 1), -- Fire Attacks
 -- Kechi's Guard
-(22308, 4408, 12), -- HP Increase (4x)
-(22308, 4409, 1), -- MP Increase (1x)
-(22308, 4410, 11), -- Average P. Atk.
-(22308, 4411, 11), -- Average M. Atk.
-(22308, 4412, 11), -- Average P. Def.
-(22308, 4413, 11), -- Average M. Def.
-(22308, 4414, 3), -- Light Armor Type
-(22308, 4415, 1), -- Bare Hands
-(22308, 4416, 2), -- Magic Creatures
-(22308, 4614, 10), -- Death Bomb
+(22308, 4408, 12), -- HP Modifiers
+(22308, 4409, 1), -- MP Modifiers
+(22308, 4410, 11), -- P. Atk. Modifiers
+(22308, 4411, 11), -- M. Atk. Modifiers
+(22308, 4412, 11), -- P. Def. Modifiers
+(22308, 4413, 11), -- M. Def. Modifiers
+(22308, 4414, 3), -- Armor Type
+(22308, 4415, 1), -- Weapon Type
+(22308, 4416, 2), -- Races
+(22308, 4614, 10), -- NPC Death Bomb
 (22308, 5462, 1), -- Fire Attacks
 -- Kechi's Guard
-(22309, 4085, 1), -- Critical Damage
-(22309, 4408, 14), -- HP Increase (6x)
-(22309, 4409, 1), -- MP Increase (1x)
-(22309, 4410, 11), -- Average P. Atk.
-(22309, 4411, 11), -- Average M. Atk.
-(22309, 4412, 14), -- Strong P. Def.
-(22309, 4413, 11), -- Average M. Def.
-(22309, 4414, 1), -- Heavy Armor Type
-(22309, 4415, 1), -- Bare Hands
-(22309, 4416, 6), -- Humanoids
-(22309, 4572, 10), -- Triple Sonic Slash
+(22309, 4085, 1), -- Critical Power
+(22309, 4408, 14), -- HP Modifiers
+(22309, 4409, 1), -- MP Modifiers
+(22309, 4410, 11), -- P. Atk. Modifiers
+(22309, 4411, 11), -- M. Atk. Modifiers
+(22309, 4412, 14), -- P. Def. Modifiers
+(22309, 4413, 11), -- M. Def. Modifiers
+(22309, 4414, 1), -- Armor Type
+(22309, 4415, 1), -- Weapon Type
+(22309, 4416, 6), -- Races
+(22309, 4572, 10), -- NPC Triple Sonic Slash
 (22309, 5301, 3), -- Stun
 (22309, 5462, 1), -- Fire Attacks
 -- Kechi's Guard
-(22310, 4157, 10), -- Blaze
-(22310, 4408, 14), -- HP Increase (6x)
-(22310, 4409, 1), -- MP Increase (1x)
-(22310, 4410, 11), -- Average P. Atk.
-(22310, 4411, 14), -- Strong M. Atk.
-(22310, 4412, 11), -- Average P. Def.
-(22310, 4413, 11), -- Average M. Def.
-(22310, 4414, 2), -- Standard Type
-(22310, 4415, 1), -- Bare Hands
-(22310, 4416, 9), -- Demons
+(22310, 4157, 10), -- NPC Blaze - Magic
+(22310, 4408, 14), -- HP Modifiers
+(22310, 4409, 1), -- MP Modifiers
+(22310, 4410, 11), -- P. Atk. Modifiers
+(22310, 4411, 14), -- M. Atk. Modifiers
+(22310, 4412, 11), -- P. Def. Modifiers
+(22310, 4413, 11), -- M. Def. Modifiers
+(22310, 4414, 2), -- Armor Type
+(22310, 4415, 1), -- Weapon Type
+(22310, 4416, 9), -- Races
 (22310, 4439, 5), -- Greater Resist Hold
 (22310, 4443, 1), -- Greater Resist Blunt Weapons
 (22310, 4444, 1), -- Higher Resist Bow/Crossbow Weapons
-(22310, 4561, 10), -- Fire Burn
+(22310, 4561, 10), -- NPC Fire Burn - Magic
 (22310, 5462, 1), -- Fire Attacks
 -- Parme's Guardian
-(22311, 4408, 10), -- HP Increase (2x)
-(22311, 4409, 1), -- MP Increase (1x)
-(22311, 4410, 11), -- Average P. Atk.
-(22311, 4411, 13), -- Slightly Strong M. Atk.
-(22311, 4412, 11), -- Average P. Def.
-(22311, 4413, 13), -- Slightly Strong M. Def.
-(22311, 4414, 3), -- Light Armor Type
-(22311, 4415, 3), -- One-handed Sword
-(22311, 4416, 12), -- Bugs
-(22311, 5317, 4), -- Mass Hydro Blast
-(22311, 5318, 4), -- Frost Wall
+(22311, 4408, 10), -- HP Modifiers
+(22311, 4409, 1), -- MP Modifiers
+(22311, 4410, 11), -- P. Atk. Modifiers
+(22311, 4411, 13), -- M. Atk. Modifiers
+(22311, 4412, 11), -- P. Def. Modifiers
+(22311, 4413, 13), -- M. Def. Modifiers
+(22311, 4414, 3), -- Armor Type
+(22311, 4415, 3), -- Weapon Type
+(22311, 4416, 12), -- Races
+(22311, 5317, 4), -- NPC(party) -Magic Range Long Range DD - Water
+(22311, 5318, 4), -- NPC(party) -Magic Range Close Range DD - Water
 (22311, 5463, 1), -- Water Attacks
 -- Fafurion's Henchman
-(22312, 4408, 1), -- HP Increase (1x)
-(22312, 4409, 1), -- MP Increase (1x)
-(22312, 4410, 14), -- Strong P. Atk.
-(22312, 4411, 11), -- Average M. Atk.
-(22312, 4412, 11), -- Average P. Def.
-(22312, 4413, 9), -- Slightly Weak M. Def.
-(22312, 4414, 1), -- Heavy Armor Type
-(22312, 4415, 3), -- One-handed Sword
-(22312, 4416, 12), -- Bugs
-(22312, 5282, 4), -- Power Shot
-(22312, 5283, 4), -- Whirlwind
+(22312, 4408, 1), -- HP Modifiers
+(22312, 4409, 1), -- MP Modifiers
+(22312, 4410, 14), -- P. Atk. Modifiers
+(22312, 4411, 11), -- M. Atk. Modifiers
+(22312, 4412, 11), -- P. Def. Modifiers
+(22312, 4413, 9), -- M. Def. Modifiers
+(22312, 4414, 1), -- Armor Type
+(22312, 4415, 3), -- Weapon Type
+(22312, 4416, 12), -- Races
+(22312, 5282, 4), -- NPC(party) - Physical Single Long Range Attack - Water
+(22312, 5283, 4), -- NPC(party) - Physical Range Close Range Attack - Water
 (22312, 5463, 1), -- Water Attacks
 -- Garden Stakato
-(22313, 4072, 10), -- Stun
+(22313, 4072, 10), -- Shock
 (22313, 4086, 1), -- Critical Chance
-(22313, 4408, 10), -- HP Increase (2x)
-(22313, 4409, 1), -- MP Increase (1x)
-(22313, 4410, 11), -- Average P. Atk.
-(22313, 4411, 11), -- Average M. Atk.
-(22313, 4412, 11), -- Average P. Def.
-(22313, 4413, 11), -- Average M. Def.
-(22313, 4414, 3), -- Light Armor Type
-(22313, 4415, 3), -- One-handed Sword
-(22313, 4416, 6), -- Humanoids
-(22313, 5282, 4), -- Power Shot
+(22313, 4408, 10), -- HP Modifiers
+(22313, 4409, 1), -- MP Modifiers
+(22313, 4410, 11), -- P. Atk. Modifiers
+(22313, 4411, 11), -- M. Atk. Modifiers
+(22313, 4412, 11), -- P. Def. Modifiers
+(22313, 4413, 11), -- M. Def. Modifiers
+(22313, 4414, 3), -- Armor Type
+(22313, 4415, 3), -- Weapon Type
+(22313, 4416, 6), -- Races
+(22313, 5282, 4), -- NPC(party) - Physical Single Long Range Attack - Water
 (22313, 5463, 1), -- Water Attacks
 -- Garden Poison Moth
-(22314, 4408, 10), -- HP Increase (2x)
-(22314, 4409, 1), -- MP Increase (1x)
-(22314, 4410, 11), -- Average P. Atk.
-(22314, 4411, 11), -- Average M. Atk.
-(22314, 4412, 11), -- Average P. Def.
-(22314, 4413, 11), -- Average M. Def.
-(22314, 4414, 2), -- Standard Type
-(22314, 4415, 1), -- Bare Hands
-(22314, 4416, 9), -- Demons
-(22314, 5310, 4), -- Aura Burn
+(22314, 4408, 10), -- HP Modifiers
+(22314, 4409, 1), -- MP Modifiers
+(22314, 4410, 11), -- P. Atk. Modifiers
+(22314, 4411, 11), -- M. Atk. Modifiers
+(22314, 4412, 11), -- P. Def. Modifiers
+(22314, 4413, 11), -- M. Def. Modifiers
+(22314, 4414, 2), -- Armor Type
+(22314, 4415, 1), -- Weapon Type
+(22314, 4416, 9), -- Races
+(22314, 5310, 4), -- NPC(party) - Magic Close Range DD - less powerful
 (22314, 5333, 4), -- Poison
 (22314, 5463, 1), -- Water Attacks
 -- Garden Guard 
-(22315, 4408, 1), -- HP Increase (1x)
-(22315, 4409, 1), -- MP Increase (1x)
-(22315, 4410, 13), -- Slightly Strong P. Atk.
-(22315, 4411, 11), -- Average M. Atk.
-(22315, 4412, 11), -- Average P. Def.
-(22315, 4413, 8), -- Weak M. Def.
-(22315, 4414, 1), -- Heavy Armor Type
-(22315, 4415, 11), -- Spears
-(22315, 4416, 11), -- Giants
-(22315, 5273, 4), -- Power Strike
+(22315, 4408, 1), -- HP Modifiers
+(22315, 4409, 1), -- MP Modifiers
+(22315, 4410, 13), -- P. Atk. Modifiers
+(22315, 4411, 11), -- M. Atk. Modifiers
+(22315, 4412, 11), -- P. Def. Modifiers
+(22315, 4413, 8), -- M. Def. Modifiers
+(22315, 4414, 1), -- Armor Type
+(22315, 4415, 11), -- Weapon Type
+(22315, 4416, 11), -- Races
+(22315, 5273, 4), -- NPC(party) - Physical Single Close Range Attack
 (22315, 5309, 4), -- Bleed
 (22315, 5463, 1), -- Water Attacks
 -- Garden Guardian Tree
-(22316, 4408, 1), -- HP Increase (1x)
-(22316, 4409, 1), -- MP Increase (1x)
-(22316, 4410, 11), -- Average P. Atk.
-(22316, 4411, 14), -- Strong M. Atk.
-(22316, 4412, 16), -- Very Strong P. Def.
-(22316, 4413, 11), -- Average M. Def.
-(22316, 4414, 1), -- Heavy Armor Type
-(22316, 4415, 3), -- One-handed Sword
-(22316, 4416, 5), -- Plants
+(22316, 4408, 1), -- HP Modifiers
+(22316, 4409, 1), -- MP Modifiers
+(22316, 4410, 11), -- P. Atk. Modifiers
+(22316, 4411, 14), -- M. Atk. Modifiers
+(22316, 4412, 16), -- P. Def. Modifiers
+(22316, 4413, 11), -- M. Def. Modifiers
+(22316, 4414, 1), -- Armor Type
+(22316, 4415, 3), -- Weapon Type
+(22316, 4416, 5), -- Races
 (22316, 4463, 3), -- Surrender To Water
-(22316, 5273, 4), -- Power Strike
+(22316, 5273, 4), -- NPC(party) - Physical Single Close Range Attack
 (22316, 5463, 1), -- Water Attacks
 -- Garden Castalia
-(22317, 4408, 9), -- HP Increase (1/2x)
-(22317, 4409, 1), -- MP Increase (1x)
-(22317, 4410, 11), -- Average P. Atk.
-(22317, 4411, 13), -- Slightly Strong M. Atk.
-(22317, 4412, 11), -- Average P. Def.
-(22317, 4413, 11), -- Average M. Def.
-(22317, 4414, 2), -- Standard Type
-(22317, 4415, 3), -- One-handed Sword
-(22317, 4416, 7), -- Spirits
-(22317, 4613, 10), -- Clan Heal
-(22317, 5282, 4), -- Power Shot
-(22317, 5318, 4), -- Frost Wall
+(22317, 4408, 9), -- HP Modifiers
+(22317, 4409, 1), -- MP Modifiers
+(22317, 4410, 11), -- P. Atk. Modifiers
+(22317, 4411, 13), -- M. Atk. Modifiers
+(22317, 4412, 11), -- P. Def. Modifiers
+(22317, 4413, 11), -- M. Def. Modifiers
+(22317, 4414, 2), -- Armor Type
+(22317, 4415, 3), -- Weapon Type
+(22317, 4416, 7), -- Races
+(22317, 4613, 10), -- NPC Clan Heal
+(22317, 5282, 4), -- NPC(party) - Physical Single Long Range Attack - Water
+(22317, 5318, 4), -- NPC(party) -Magic Range Close Range DD - Water
 (22317, 5463, 1), -- Water Attacks
 -- Junior Watchman
-(22320, 4408, 1), -- HP Increase (1x)
-(22320, 4409, 1), -- MP Increase (1x)
-(22320, 4410, 11), -- Average P. Atk.
-(22320, 4411, 11), -- Average M. Atk.
-(22320, 4412, 11), -- Average P. Def.
-(22320, 4413, 11), -- Average M. Def.
-(22320, 4414, 2), -- Standard Type
-(22320, 4415, 3), -- One-handed Sword
-(22320, 4416, 9), -- Demons
+(22320, 4408, 1), -- HP Modifiers
+(22320, 4409, 1), -- MP Modifiers
+(22320, 4410, 11), -- P. Atk. Modifiers
+(22320, 4411, 11), -- M. Atk. Modifiers
+(22320, 4412, 11), -- P. Def. Modifiers
+(22320, 4413, 11), -- M. Def. Modifiers
+(22320, 4414, 2), -- Armor Type
+(22320, 4415, 3), -- Weapon Type
+(22320, 4416, 9), -- Races
 (22320, 4592, 9), -- Decrease P. Def.
-(22320, 5331, 3), -- Drain Health
-(22320, 5334, 4), -- Power Strike
+(22320, 5331, 3), -- NPC HP Drain
+(22320, 5334, 4), -- NPC(party) - Physical Single Close Range Attack
 (22320, 5467, 1), -- Dark Attacks
 -- Junior Summoner
-(22321, 4408, 1), -- HP Increase (1x)
-(22321, 4409, 1), -- MP Increase (1x)
-(22321, 4410, 11), -- Average P. Atk.
-(22321, 4411, 11), -- Average M. Atk.
-(22321, 4412, 11), -- Average P. Def.
-(22321, 4413, 11), -- Average M. Def.
-(22321, 4414, 2), -- Standard Type
-(22321, 4415, 3), -- One-handed Sword
-(22321, 4416, 9), -- Demons
+(22321, 4408, 1), -- HP Modifiers
+(22321, 4409, 1), -- MP Modifiers
+(22321, 4410, 11), -- P. Atk. Modifiers
+(22321, 4411, 11), -- M. Atk. Modifiers
+(22321, 4412, 11), -- P. Def. Modifiers
+(22321, 4413, 11), -- M. Def. Modifiers
+(22321, 4414, 2), -- Armor Type
+(22321, 4415, 3), -- Weapon Type
+(22321, 4416, 9), -- Races
 (22321, 4466, 2), -- Surrender To Darkness
-(22321, 5310, 3), -- Aura Burn
-(22321, 5331, 3), -- Drain Health
-(22321, 5332, 3), -- Mana Burn
+(22321, 5310, 3), -- NPC(party) - Magic Close Range DD - less powerful
+(22321, 5331, 3), -- NPC HP Drain
+(22321, 5332, 3), -- NPC MP Burn
 (22321, 5467, 1), -- Dark Attacks
 -- Subjugated Native
-(22322, 4408, 9), -- HP Increase (1/2x)
-(22322, 4409, 1), -- MP Increase (1x)
-(22322, 4410, 11), -- Average P. Atk.
-(22322, 4411, 11), -- Average M. Atk.
-(22322, 4412, 11), -- Average P. Def.
-(22322, 4413, 11), -- Average M. Def.
-(22322, 4414, 2), -- Standard Type
-(22322, 4415, 3), -- One-handed Sword
-(22322, 4416, 14), -- Humans
-(22322, 4614, 9), -- Death Bomb
+(22322, 4408, 9), -- HP Modifiers
+(22322, 4409, 1), -- MP Modifiers
+(22322, 4410, 11), -- P. Atk. Modifiers
+(22322, 4411, 11), -- M. Atk. Modifiers
+(22322, 4412, 11), -- P. Def. Modifiers
+(22322, 4413, 11), -- M. Def. Modifiers
+(22322, 4414, 2), -- Armor Type
+(22322, 4415, 3), -- Weapon Type
+(22322, 4416, 14), -- Races
+(22322, 4614, 9), -- NPC Death Bomb
 (22322, 5467, 1), -- Dark Attacks
 -- Charmed Native
-(22323, 4065, 9), -- Heal
-(22323, 4408, 9), -- HP Increase (1/2x)
-(22323, 4409, 1), -- MP Increase (1x)
-(22323, 4410, 11), -- Average P. Atk.
-(22323, 4411, 11), -- Average M. Atk.
-(22323, 4412, 11), -- Average P. Def.
-(22323, 4413, 11), -- Average M. Def.
-(22323, 4414, 2), -- Standard Type
-(22323, 4415, 5), -- Blunt Weapons
-(22323, 4416, 14), -- Humans
+(22323, 4065, 9), -- NPC Heal
+(22323, 4408, 9), -- HP Modifiers
+(22323, 4409, 1), -- MP Modifiers
+(22323, 4410, 11), -- P. Atk. Modifiers
+(22323, 4411, 11), -- M. Atk. Modifiers
+(22323, 4412, 11), -- P. Def. Modifiers
+(22323, 4413, 11), -- M. Def. Modifiers
+(22323, 4414, 2), -- Armor Type
+(22323, 4415, 5), -- Weapon Type
+(22323, 4416, 14), -- Races
 (22323, 5467, 1), -- Dark Attacks
 -- Blind Huntsman
 (22324, 4088, 9), -- Bleed
-(22324, 4408, 10), -- HP Increase (2x)
-(22324, 4409, 1), -- MP Increase (1x)
-(22324, 4410, 13), -- Slightly Strong P. Atk.
-(22324, 4411, 11), -- Average M. Atk.
-(22324, 4412, 13), -- Slightly Strong P. Def.
-(22324, 4413, 11), -- Average M. Def.
-(22324, 4414, 2), -- Standard Type
-(22324, 4415, 3), -- One-handed Sword
-(22324, 4416, 9), -- Demons
-(22324, 5273, 9), -- Power Strike
+(22324, 4408, 10), -- HP Modifiers
+(22324, 4409, 1), -- MP Modifiers
+(22324, 4410, 13), -- P. Atk. Modifiers
+(22324, 4411, 11), -- M. Atk. Modifiers
+(22324, 4412, 13), -- P. Def. Modifiers
+(22324, 4413, 11), -- M. Def. Modifiers
+(22324, 4414, 2), -- Armor Type
+(22324, 4415, 3), -- Weapon Type
+(22324, 4416, 9), -- Races
+(22324, 5273, 9), -- NPC(party) - Physical Single Close Range Attack
 (22324, 5467, 1), -- Dark Attacks
 -- Blind Watchman
-(22325, 4408, 10), -- HP Increase (2x)
-(22325, 4409, 1), -- MP Increase (1x)
-(22325, 4410, 11), -- Average P. Atk.
-(22325, 4411, 13), -- Slightly Strong M. Atk.
-(22325, 4412, 11), -- Average P. Def.
-(22325, 4413, 13), -- Slightly Strong M. Def.
-(22325, 4414, 2), -- Standard Type
-(22325, 4415, 3), -- One-handed Sword
-(22325, 4416, 9), -- Demons
-(22325, 5265, 10), -- Soul Emission
-(22325, 5331, 3), -- Drain Health
-(22325, 5332, 3), -- Mana Burn
+(22325, 4408, 10), -- HP Modifiers
+(22325, 4409, 1), -- MP Modifiers
+(22325, 4410, 11), -- P. Atk. Modifiers
+(22325, 4411, 13), -- M. Atk. Modifiers
+(22325, 4412, 11), -- P. Def. Modifiers
+(22325, 4413, 13), -- M. Def. Modifiers
+(22325, 4414, 2), -- Armor Type
+(22325, 4415, 3), -- Weapon Type
+(22325, 4416, 9), -- Races
+(22325, 5265, 10), -- NPC - Soul Emission
+(22325, 5331, 3), -- NPC HP Drain
+(22325, 5332, 3), -- NPC MP Burn
 (22325, 5467, 1), -- Dark Attacks
 -- Hellinark
-(22326, 4408, 10), -- HP Increase (2x)
-(22326, 4409, 1), -- MP Increase (1x)
-(22326, 4410, 13), -- Slightly Strong P. Atk.
-(22326, 4411, 11), -- Average M. Atk.
-(22326, 4412, 13), -- Slightly Strong P. Def.
-(22326, 4413, 11), -- Average M. Def.
-(22326, 4414, 1), -- Heavy Armor Type
-(22326, 4415, 3), -- One-handed Sword
-(22326, 4416, 9), -- Demons
-(22326, 5335, 4), -- Power Shot
+(22326, 4408, 10), -- HP Modifiers
+(22326, 4409, 1), -- MP Modifiers
+(22326, 4410, 13), -- P. Atk. Modifiers
+(22326, 4411, 11), -- M. Atk. Modifiers
+(22326, 4412, 13), -- P. Def. Modifiers
+(22326, 4413, 11), -- M. Def. Modifiers
+(22326, 4414, 1), -- Armor Type
+(22326, 4415, 3), -- Weapon Type
+(22326, 4416, 9), -- Races
+(22326, 5335, 4), -- NPC(party) - Physical Single Long Range Attack
 (22326, 5362, 4), -- Stun
 (22326, 5467, 1), -- Dark Attacks
 -- Arcane Scout
 (22327, 4047, 10), -- Hold
-(22327, 4408, 1), -- HP Increase (1x)
-(22327, 4409, 1), -- MP Increase (1x)
-(22327, 4410, 11), -- Average P. Atk.
-(22327, 4411, 11), -- Average M. Atk.
-(22327, 4412, 11), -- Average P. Def.
-(22327, 4413, 11), -- Average M. Def.
-(22327, 4414, 3), -- Light Armor Type
-(22327, 4415, 3), -- One-handed Sword
-(22327, 4416, 6), -- Humanoids
-(22327, 5273, 4), -- Power Strike
+(22327, 4408, 1), -- HP Modifiers
+(22327, 4409, 1), -- MP Modifiers
+(22327, 4410, 11), -- P. Atk. Modifiers
+(22327, 4411, 11), -- M. Atk. Modifiers
+(22327, 4412, 11), -- P. Def. Modifiers
+(22327, 4413, 11), -- M. Def. Modifiers
+(22327, 4414, 3), -- Armor Type
+(22327, 4415, 3), -- Weapon Type
+(22327, 4416, 6), -- Races
+(22327, 5273, 4), -- NPC(party) - Physical Single Close Range Attack
 (22327, 5467, 1), -- Dark Attacks
 -- Arcane Guardian
-(22328, 4408, 9), -- HP Increase (1/2x)
-(22328, 4409, 1), -- MP Increase (1x)
-(22328, 4410, 11), -- Average P. Atk.
-(22328, 4411, 9), -- Slightly Weak M. Atk.
-(22328, 4412, 9), -- Slightly Weak P. Def.
-(22328, 4413, 11), -- Average M. Def.
-(22328, 4414, 2), -- Standard Type
-(22328, 4415, 3), -- One-handed Sword
-(22328, 4416, 9), -- Demons
-(22328, 5311, 4), -- Aura Flare
-(22328, 5331, 4), -- Drain Health
+(22328, 4408, 9), -- HP Modifiers
+(22328, 4409, 1), -- MP Modifiers
+(22328, 4410, 11), -- P. Atk. Modifiers
+(22328, 4411, 9), -- M. Atk. Modifiers
+(22328, 4412, 9), -- P. Def. Modifiers
+(22328, 4413, 11), -- M. Def. Modifiers
+(22328, 4414, 2), -- Armor Type
+(22328, 4415, 3), -- Weapon Type
+(22328, 4416, 9), -- Races
+(22328, 5311, 4), -- NPC(party) - Magic Close Range DD - less powerful
+(22328, 5331, 4), -- NPC HP Drain
 (22328, 5467, 1), -- Dark Attacks
 -- Arcane Watchman
-(22329, 4408, 1), -- HP Increase (1x)
-(22329, 4409, 1), -- MP Increase (1x)
-(22329, 4410, 11), -- Average P. Atk.
-(22329, 4411, 13), -- Slightly Strong M. Atk.
-(22329, 4412, 13), -- Slightly Strong P. Def.
-(22329, 4413, 11), -- Average M. Def.
-(22329, 4414, 2), -- Standard Type
-(22329, 4415, 1), -- Bare Hands
-(22329, 4416, 9), -- Demons
-(22329, 5273, 4), -- Power Strike
-(22329, 5328, 4), -- Unholy Strike
+(22329, 4408, 1), -- HP Modifiers
+(22329, 4409, 1), -- MP Modifiers
+(22329, 4410, 11), -- P. Atk. Modifiers
+(22329, 4411, 13), -- M. Atk. Modifiers
+(22329, 4412, 13), -- P. Def. Modifiers
+(22329, 4413, 11), -- M. Def. Modifiers
+(22329, 4414, 2), -- Armor Type
+(22329, 4415, 1), -- Weapon Type
+(22329, 4416, 9), -- Races
+(22329, 5273, 4), -- NPC(party) - Physical Single Close Range Attack
+(22329, 5328, 4), -- NPC(party) -Magic Single Long Range DD - Dark
 (22329, 5467, 1), -- Dark Attacks
 -- Remnant Wraith
-(22330, 4408, 1), -- HP Increase (1x)
-(22330, 4409, 1), -- MP Increase (1x)
-(22330, 4410, 14), -- Strong P. Atk.
-(22330, 4411, 11), -- Average M. Atk.
-(22330, 4412, 8), -- Weak P. Def.
-(22330, 4413, 11), -- Average M. Def.
-(22330, 4414, 2), -- Standard Type
-(22330, 4415, 3), -- One-handed Sword
-(22330, 4416, 1), -- Undead
+(22330, 4408, 1), -- HP Modifiers
+(22330, 4409, 1), -- MP Modifiers
+(22330, 4410, 14), -- P. Atk. Modifiers
+(22330, 4411, 11), -- M. Atk. Modifiers
+(22330, 4412, 8), -- P. Def. Modifiers
+(22330, 4413, 11), -- M. Def. Modifiers
+(22330, 4414, 2), -- Armor Type
+(22330, 4415, 3), -- Weapon Type
+(22330, 4416, 1), -- Races
 (22330, 4579, 10), -- Bleed
 (22330, 5467, 1), -- Dark Attacks
 -- Sand Scorpion
-(22334, 4408, 1), -- HP Increase (1x)
-(22334, 4409, 1), -- MP Increase (1x)
-(22334, 4410, 13), -- Slightly Strong P. Atk.
-(22334, 4411, 11), -- Average M. Atk.
-(22334, 4412, 11), -- Average P. Def.
-(22334, 4413, 11), -- Average M. Def.
-(22334, 4414, 1), -- Heavy Armor Type
-(22334, 4415, 3), -- One-handed Sword
-(22334, 4416, 12), -- Bugs
+(22334, 4408, 1), -- HP Modifiers
+(22334, 4409, 1), -- MP Modifiers
+(22334, 4410, 13), -- P. Atk. Modifiers
+(22334, 4411, 11), -- M. Atk. Modifiers
+(22334, 4412, 11), -- P. Def. Modifiers
+(22334, 4413, 11), -- M. Def. Modifiers
+(22334, 4414, 1), -- Armor Type
+(22334, 4415, 3), -- Weapon Type
+(22334, 4416, 12), -- Races
 (22334, 5251, 10), -- Poison
-(22334, 5273, 9), -- Power Strike
+(22334, 5273, 9), -- NPC(party) - Physical Single Close Range Attack
 (22334, 5465, 1), -- Earth Attacks
 -- Desert Scorpion
-(22335, 4408, 1), -- HP Increase (1x)
-(22335, 4409, 1), -- MP Increase (1x)
-(22335, 4410, 13), -- Slightly Strong P. Atk.
-(22335, 4411, 11), -- Average M. Atk.
-(22335, 4412, 11), -- Average P. Def.
-(22335, 4413, 11), -- Average M. Def.
-(22335, 4414, 1), -- Heavy Armor Type
-(22335, 4415, 3), -- One-handed Sword
-(22335, 4416, 12), -- Bugs
+(22335, 4408, 1), -- HP Modifiers
+(22335, 4409, 1), -- MP Modifiers
+(22335, 4410, 13), -- P. Atk. Modifiers
+(22335, 4411, 11), -- M. Atk. Modifiers
+(22335, 4412, 11), -- P. Def. Modifiers
+(22335, 4413, 11), -- M. Def. Modifiers
+(22335, 4414, 1), -- Armor Type
+(22335, 4415, 3), -- Weapon Type
+(22335, 4416, 12), -- Races
 (22335, 5253, 9), -- Bleed
 (22335, 5301, 4), -- Stun
 (22335, 5465, 1), -- Earth Attacks
 -- Sand Devil
-(22336, 4408, 1), -- HP Increase (1x)
-(22336, 4409, 1), -- MP Increase (1x)
-(22336, 4410, 11), -- Average P. Atk.
-(22336, 4411, 11), -- Average M. Atk.
-(22336, 4412, 9), -- Slightly Weak P. Def.
-(22336, 4413, 11), -- Average M. Def.
-(22336, 4414, 3), -- Light Armor Type
-(22336, 4415, 3), -- One-handed Sword
-(22336, 4416, 7), -- Spirits
+(22336, 4408, 1), -- HP Modifiers
+(22336, 4409, 1), -- MP Modifiers
+(22336, 4410, 11), -- P. Atk. Modifiers
+(22336, 4411, 11), -- M. Atk. Modifiers
+(22336, 4412, 9), -- P. Def. Modifiers
+(22336, 4413, 11), -- M. Def. Modifiers
+(22336, 4414, 3), -- Armor Type
+(22336, 4415, 3), -- Weapon Type
+(22336, 4416, 7), -- Races
 (22336, 4579, 9), -- Bleed
 (22336, 4587, 9), -- Decrease P. Atk.
 (22336, 5465, 1), -- Earth Attacks
 -- Desiccator
-(22337, 4408, 1), -- HP Increase (1x)
-(22337, 4409, 1), -- MP Increase (1x)
-(22337, 4410, 11), -- Average P. Atk.
-(22337, 4411, 11), -- Average M. Atk.
-(22337, 4412, 9), -- Slightly Weak P. Def.
-(22337, 4413, 11), -- Average M. Def.
-(22337, 4414, 3), -- Light Armor Type
-(22337, 4415, 3), -- One-handed Sword
-(22337, 4416, 7), -- Spirits
+(22337, 4408, 1), -- HP Modifiers
+(22337, 4409, 1), -- MP Modifiers
+(22337, 4410, 11), -- P. Atk. Modifiers
+(22337, 4411, 11), -- M. Atk. Modifiers
+(22337, 4412, 9), -- P. Def. Modifiers
+(22337, 4413, 11), -- M. Def. Modifiers
+(22337, 4414, 3), -- Armor Type
+(22337, 4415, 3), -- Weapon Type
+(22337, 4416, 7), -- Races
 (22337, 4587, 9), -- Decrease P. Atk.
-(22337, 5265, 10), -- Soul Emission
-(22337, 5331, 3), -- Drain Health
-(22337, 5332, 3), -- Mana Burn
+(22337, 5265, 10), -- NPC - Soul Emission
+(22337, 5331, 3), -- NPC HP Drain
+(22337, 5332, 3), -- NPC MP Burn
 (22337, 5465, 1), -- Earth Attacks
 -- Wandering Caravan
-(22339, 4408, 1), -- HP Increase (1x)
-(22339, 4409, 1), -- MP Increase (1x)
-(22339, 4410, 11), -- Average P. Atk.
-(22339, 4411, 11), -- Average M. Atk.
-(22339, 4412, 11), -- Average P. Def.
-(22339, 4413, 11), -- Average M. Def.
-(22339, 4414, 2), -- Standard Type
-(22339, 4415, 3), -- One-handed Sword
-(22339, 4416, 6), -- Humanoids
+(22339, 4408, 1), -- HP Modifiers
+(22339, 4409, 1), -- MP Modifiers
+(22339, 4410, 11), -- P. Atk. Modifiers
+(22339, 4411, 11), -- M. Atk. Modifiers
+(22339, 4412, 11), -- P. Def. Modifiers
+(22339, 4413, 11), -- M. Def. Modifiers
+(22339, 4414, 2), -- Armor Type
+(22339, 4415, 3), -- Weapon Type
+(22339, 4416, 6), -- Races
 (22339, 4579, 9), -- Bleed
 (22339, 4587, 9), -- Decrease P. Atk.
 -- Sandstorm
-(22340, 4408, 1), -- HP Increase (1x)
-(22340, 4409, 1), -- MP Increase (1x)
-(22340, 4410, 11), -- Average P. Atk.
-(22340, 4411, 11), -- Average M. Atk.
-(22340, 4412, 9), -- Slightly Weak P. Def.
-(22340, 4413, 11), -- Average M. Def.
-(22340, 4414, 3), -- Light Armor Type
-(22340, 4415, 5), -- Blunt Weapons
-(22340, 4416, 7), -- Spirits
-(22340, 5286, 4), -- Power Shot
-(22340, 5382, 4), -- Tempest
+(22340, 4408, 1), -- HP Modifiers
+(22340, 4409, 1), -- MP Modifiers
+(22340, 4410, 11), -- P. Atk. Modifiers
+(22340, 4411, 11), -- M. Atk. Modifiers
+(22340, 4412, 9), -- P. Def. Modifiers
+(22340, 4413, 11), -- M. Def. Modifiers
+(22340, 4414, 3), -- Armor Type
+(22340, 4415, 5), -- Weapon Type
+(22340, 4416, 7), -- Races
+(22340, 5286, 4), -- NPC(party) - Physical Single Long Range Attack - Wind
+(22340, 5382, 4), -- NPC(party) -Magic Range Close Range DD - Wind
 (22340, 5465, 1), -- Earth Attacks
 -- Keltas
-(22341, 4408, 1), -- HP Increase (1x)
-(22341, 4409, 1), -- MP Increase (1x)
-(22341, 4410, 11), -- Average P. Atk.
-(22341, 4411, 11), -- Average M. Atk.
-(22341, 4412, 11), -- Average P. Def.
-(22341, 4413, 11), -- Average M. Def.
-(22341, 4414, 2), -- Standard Type
-(22341, 4415, 3), -- One-handed Sword
-(22341, 4416, 9), -- Demons
-(22341, 5273, 4), -- Power Strike
-(22341, 5328, 4), -- Unholy Strike
+(22341, 4408, 1), -- HP Modifiers
+(22341, 4409, 1), -- MP Modifiers
+(22341, 4410, 11), -- P. Atk. Modifiers
+(22341, 4411, 11), -- M. Atk. Modifiers
+(22341, 4412, 11), -- P. Def. Modifiers
+(22341, 4413, 11), -- M. Def. Modifiers
+(22341, 4414, 2), -- Armor Type
+(22341, 4415, 3), -- Weapon Type
+(22341, 4416, 9), -- Races
+(22341, 5273, 4), -- NPC(party) - Physical Single Close Range Attack
+(22341, 5328, 4), -- NPC(party) -Magic Single Long Range DD - Dark
 (22341, 5467, 1), -- Dark Attacks
 -- Darion's Enforcer
-(22342, 4408, 1), -- HP Increase (1x)
-(22342, 4409, 1), -- MP Increase (1x)
-(22342, 4410, 11), -- Average P. Atk.
-(22342, 4411, 11), -- Average M. Atk.
-(22342, 4412, 11), -- Average P. Def.
-(22342, 4413, 11), -- Average M. Def.
-(22342, 4414, 2), -- Standard Type
-(22342, 4415, 3), -- One-handed Sword
-(22342, 4416, 9), -- Demons
-(22342, 4573, 10), -- Sonic Blaster
+(22342, 4408, 1), -- HP Modifiers
+(22342, 4409, 1), -- MP Modifiers
+(22342, 4410, 11), -- P. Atk. Modifiers
+(22342, 4411, 11), -- M. Atk. Modifiers
+(22342, 4412, 11), -- P. Def. Modifiers
+(22342, 4413, 11), -- M. Def. Modifiers
+(22342, 4414, 2), -- Armor Type
+(22342, 4415, 3), -- Weapon Type
+(22342, 4416, 9), -- Races
+(22342, 4573, 10), -- NPC Sonic Blaster
 (22342, 4580, 10), -- Decrease P. Atk.
 (22342, 5467, 1), -- Dark Attacks
 -- Darion's Executioner
-(22343, 4408, 1), -- HP Increase (1x)
-(22343, 4409, 1), -- MP Increase (1x)
-(22343, 4410, 11), -- Average P. Atk.
-(22343, 4411, 11), -- Average M. Atk.
-(22343, 4412, 11), -- Average P. Def.
-(22343, 4413, 11), -- Average M. Def.
-(22343, 4414, 2), -- Standard Type
-(22343, 4415, 3), -- One-handed Sword
-(22343, 4416, 9), -- Demons
-(22343, 4629, 10), -- Drain Health
-(22343, 5265, 10), -- Soul Emission
+(22343, 4408, 1), -- HP Modifiers
+(22343, 4409, 1), -- MP Modifiers
+(22343, 4410, 11), -- P. Atk. Modifiers
+(22343, 4411, 11), -- M. Atk. Modifiers
+(22343, 4412, 11), -- P. Def. Modifiers
+(22343, 4413, 11), -- M. Def. Modifiers
+(22343, 4414, 2), -- Armor Type
+(22343, 4415, 3), -- Weapon Type
+(22343, 4416, 9), -- Races
+(22343, 4629, 10), -- NPC MR - HP Drain
+(22343, 5265, 10), -- NPC - Soul Emission
 (22343, 5467, 1), -- Dark Attacks
 -- Quarry Supervisor
-(22344, 4408, 9), -- HP Increase (1/2x)
-(22344, 4409, 1), -- MP Increase (1x)
-(22344, 4410, 11), -- Average P. Atk.
-(22344, 4411, 11), -- Average M. Atk.
-(22344, 4412, 11), -- Average P. Def.
-(22344, 4413, 11), -- Average M. Def.
-(22344, 4414, 2), -- Standard Type
-(22344, 4415, 3), -- One-handed Sword
-(22344, 4416, 9), -- Demons
-(22344, 5273, 3), -- Power Strike
+(22344, 4408, 9), -- HP Modifiers
+(22344, 4409, 1), -- MP Modifiers
+(22344, 4410, 11), -- P. Atk. Modifiers
+(22344, 4411, 11), -- M. Atk. Modifiers
+(22344, 4412, 11), -- P. Def. Modifiers
+(22344, 4413, 11), -- M. Def. Modifiers
+(22344, 4414, 2), -- Armor Type
+(22344, 4415, 3), -- Weapon Type
+(22344, 4416, 9), -- Races
+(22344, 5273, 3), -- NPC(party) - Physical Single Close Range Attack
 (22344, 5467, 1), -- Dark Attacks
 -- Quarry Bowman
-(22345, 4408, 9), -- HP Increase (1/2x)
-(22345, 4409, 1), -- MP Increase (1x)
-(22345, 4410, 11), -- Average P. Atk.
-(22345, 4411, 11), -- Average M. Atk.
-(22345, 4412, 11), -- Average P. Def.
-(22345, 4413, 11), -- Average M. Def.
-(22345, 4414, 2), -- Standard Type
-(22345, 4415, 5), -- Blunt Weapons
-(22345, 4416, 9), -- Demons
-(22345, 5328, 4), -- Unholy Strike
-(22345, 5330, 4), -- Unholy Circle
+(22345, 4408, 9), -- HP Modifiers
+(22345, 4409, 1), -- MP Modifiers
+(22345, 4410, 11), -- P. Atk. Modifiers
+(22345, 4411, 11), -- M. Atk. Modifiers
+(22345, 4412, 11), -- P. Def. Modifiers
+(22345, 4413, 11), -- M. Def. Modifiers
+(22345, 4414, 2), -- Armor Type
+(22345, 4415, 5), -- Weapon Type
+(22345, 4416, 9), -- Races
+(22345, 5328, 4), -- NPC(party) -Magic Single Long Range DD - Dark
+(22345, 5330, 4), -- NPC(party) -Magic Range Close Range DD - Holy
 (22345, 5467, 1), -- Dark Attacks
 -- Quarry Foreman
 (22346, 4047, 10), -- Hold
-(22346, 4408, 1), -- HP Increase (1x)
-(22346, 4409, 1), -- MP Increase (1x)
-(22346, 4410, 13), -- Slightly Strong P. Atk.
-(22346, 4411, 11), -- Average M. Atk.
-(22346, 4412, 11), -- Average P. Def.
-(22346, 4413, 11), -- Average M. Def.
-(22346, 4414, 2), -- Standard Type
-(22346, 4415, 3), -- One-handed Sword
-(22346, 4416, 9), -- Demons
-(22346, 5298, 4), -- Power Shot
+(22346, 4408, 1), -- HP Modifiers
+(22346, 4409, 1), -- MP Modifiers
+(22346, 4410, 13), -- P. Atk. Modifiers
+(22346, 4411, 11), -- M. Atk. Modifiers
+(22346, 4412, 11), -- P. Def. Modifiers
+(22346, 4413, 11), -- M. Def. Modifiers
+(22346, 4414, 2), -- Armor Type
+(22346, 4415, 3), -- Weapon Type
+(22346, 4416, 9), -- Races
+(22346, 5298, 4), -- NPC(party) - Physical Single Long Range Attack - Dark
 (22346, 5467, 1), -- Dark Attacks
 -- Quarry Patrolman
-(22347, 4408, 1), -- HP Increase (1x)
-(22347, 4409, 1), -- MP Increase (1x)
-(22347, 4410, 13), -- Slightly Strong P. Atk.
-(22347, 4411, 11), -- Average M. Atk.
-(22347, 4412, 11), -- Average P. Def.
-(22347, 4413, 11), -- Average M. Def.
-(22347, 4414, 2), -- Standard Type
-(22347, 4415, 3), -- One-handed Sword
-(22347, 4416, 9), -- Demons
-(22347, 4574, 10), -- Sonic Storm
+(22347, 4408, 1), -- HP Modifiers
+(22347, 4409, 1), -- MP Modifiers
+(22347, 4410, 13), -- P. Atk. Modifiers
+(22347, 4411, 11), -- M. Atk. Modifiers
+(22347, 4412, 11), -- P. Def. Modifiers
+(22347, 4413, 11), -- M. Def. Modifiers
+(22347, 4414, 2), -- Armor Type
+(22347, 4415, 3), -- Weapon Type
+(22347, 4416, 9), -- Races
+(22347, 4574, 10), -- NPC Sonic Storm
 (22347, 5467, 1), -- Dark Attacks
 -- Chimera of Earth
 (22349, 4093, 1), -- Evasion
-(22349, 4408, 1), -- HP Increase (1x)
-(22349, 4409, 1), -- MP Increase (1x)
-(22349, 4410, 11), -- Average P. Atk.
-(22349, 4411, 11), -- Average M. Atk.
-(22349, 4412, 11), -- Average P. Def.
-(22349, 4413, 11), -- Average M. Def.
-(22349, 4414, 3), -- Light Armor Type
-(22349, 4415, 3), -- One-handed Sword
-(22349, 4416, 2), -- Magic Creatures
+(22349, 4408, 1), -- HP Modifiers
+(22349, 4409, 1), -- MP Modifiers
+(22349, 4410, 11), -- P. Atk. Modifiers
+(22349, 4411, 11), -- M. Atk. Modifiers
+(22349, 4412, 11), -- P. Def. Modifiers
+(22349, 4413, 11), -- M. Def. Modifiers
+(22349, 4414, 3), -- Armor Type
+(22349, 4415, 3), -- Weapon Type
+(22349, 4416, 2), -- Races
 (22349, 4465, 3), -- Surrender To Earth
 (22349, 5253, 10), -- Bleed
-(22349, 5297, 4), -- Power Strike
+(22349, 5297, 4), -- NPC(party) - Physical Single Close Range Attack - Dark
 (22349, 5465, 1), -- Earth Attacks
 -- Chimera of Darkness
 (22350, 4093, 1), -- Evasion
-(22350, 4408, 1), -- HP Increase (1x)
-(22350, 4409, 1), -- MP Increase (1x)
-(22350, 4410, 11), -- Average P. Atk.
-(22350, 4411, 11), -- Average M. Atk.
-(22350, 4412, 11), -- Average P. Def.
-(22350, 4413, 11), -- Average M. Def.
-(22350, 4414, 3), -- Light Armor Type
-(22350, 4415, 3), -- One-handed Sword
-(22350, 4416, 2), -- Magic Creatures
+(22350, 4408, 1), -- HP Modifiers
+(22350, 4409, 1), -- MP Modifiers
+(22350, 4410, 11), -- P. Atk. Modifiers
+(22350, 4411, 11), -- M. Atk. Modifiers
+(22350, 4412, 11), -- P. Def. Modifiers
+(22350, 4413, 11), -- M. Def. Modifiers
+(22350, 4414, 3), -- Armor Type
+(22350, 4415, 3), -- Weapon Type
+(22350, 4416, 2), -- Races
 (22350, 4466, 3), -- Surrender To Darkness
 (22350, 5305, 4), -- Poison
-(22350, 5331, 4), -- Drain Health
+(22350, 5331, 4), -- NPC HP Drain
 (22350, 5467, 1), -- Dark Attacks
 -- Chimera of Wind
 (22351, 4093, 1), -- Evasion
-(22351, 4408, 1), -- HP Increase (1x)
-(22351, 4409, 1), -- MP Increase (1x)
-(22351, 4410, 11), -- Average P. Atk.
-(22351, 4411, 11), -- Average M. Atk.
-(22351, 4412, 11), -- Average P. Def.
-(22351, 4413, 11), -- Average M. Def.
-(22351, 4414, 3), -- Light Armor Type
-(22351, 4415, 3), -- One-handed Sword
-(22351, 4416, 2), -- Magic Creatures
+(22351, 4408, 1), -- HP Modifiers
+(22351, 4409, 1), -- MP Modifiers
+(22351, 4410, 11), -- P. Atk. Modifiers
+(22351, 4411, 11), -- M. Atk. Modifiers
+(22351, 4412, 11), -- P. Def. Modifiers
+(22351, 4413, 11), -- M. Def. Modifiers
+(22351, 4414, 3), -- Armor Type
+(22351, 4415, 3), -- Weapon Type
+(22351, 4416, 2), -- Races
 (22351, 4464, 3), -- Surrender To Wind
 (22351, 5305, 4), -- Poison
-(22351, 5331, 4), -- Drain Health
+(22351, 5331, 4), -- NPC HP Drain
 (22351, 5464, 1), -- Wind Attacks
 -- Chimera of Fire
 (22352, 4093, 1), -- Evasion
-(22352, 4102, 3), -- Surrender To Fire
-(22352, 4408, 1), -- HP Increase (1x)
-(22352, 4409, 1), -- MP Increase (1x)
-(22352, 4410, 11), -- Average P. Atk.
-(22352, 4411, 11), -- Average M. Atk.
-(22352, 4412, 11), -- Average P. Def.
-(22352, 4413, 11), -- Average M. Def.
-(22352, 4414, 3), -- Light Armor Type
-(22352, 4415, 3), -- One-handed Sword
-(22352, 4416, 2), -- Magic Creatures
-(22352, 5299, 4), -- Whirlwind
+(22352, 4102, 3), -- Become weak against line of fire
+(22352, 4408, 1), -- HP Modifiers
+(22352, 4409, 1), -- MP Modifiers
+(22352, 4410, 11), -- P. Atk. Modifiers
+(22352, 4411, 11), -- M. Atk. Modifiers
+(22352, 4412, 11), -- P. Def. Modifiers
+(22352, 4413, 11), -- M. Def. Modifiers
+(22352, 4414, 3), -- Armor Type
+(22352, 4415, 3), -- Weapon Type
+(22352, 4416, 2), -- Races
+(22352, 5299, 4), -- NPC(party) - Physical Range Close Range Attack - Dark
 (22352, 5462, 1), -- Fire Attacks
 -- Celtus
 (22353, 4093, 1), -- Evasion
-(22353, 4408, 1), -- HP Increase (1x)
-(22353, 4409, 1), -- MP Increase (1x)
-(22353, 4410, 11), -- Average P. Atk.
-(22353, 4411, 13), -- Slightly Strong M. Atk.
-(22353, 4412, 11), -- Average P. Def.
-(22353, 4413, 11), -- Average M. Def.
-(22353, 4414, 3), -- Light Armor Type
-(22353, 4415, 3), -- One-handed Sword
-(22353, 4416, 2), -- Magic Creatures
+(22353, 4408, 1), -- HP Modifiers
+(22353, 4409, 1), -- MP Modifiers
+(22353, 4410, 11), -- P. Atk. Modifiers
+(22353, 4411, 13), -- M. Atk. Modifiers
+(22353, 4412, 11), -- P. Def. Modifiers
+(22353, 4413, 11), -- M. Def. Modifiers
+(22353, 4414, 3), -- Armor Type
+(22353, 4415, 3), -- Weapon Type
+(22353, 4416, 2), -- Races
 (22353, 4466, 3), -- Surrender To Darkness
-(22353, 5332, 4), -- Mana Burn
+(22353, 5332, 4), -- NPC MP Burn
 (22353, 5367, 4), -- Paralysis
 (22353, 5467, 1), -- Dark Attacks
 -- Enceinte Defender
-(22355, 4408, 1), -- HP Increase (1x)
-(22355, 4409, 1), -- MP Increase (1x)
-(22355, 4410, 11), -- Average P. Atk.
-(22355, 4411, 11), -- Average M. Atk.
-(22355, 4412, 11), -- Average P. Def.
-(22355, 4413, 11), -- Average M. Def.
-(22355, 4414, 2), -- Standard Type
-(22355, 4415, 3), -- One-handed Sword
-(22355, 4416, 9), -- Demons
-(22355, 5310, 4), -- Aura Burn
-(22355, 5334, 4), -- Power Strike
+(22355, 4408, 1), -- HP Modifiers
+(22355, 4409, 1), -- MP Modifiers
+(22355, 4410, 11), -- P. Atk. Modifiers
+(22355, 4411, 11), -- M. Atk. Modifiers
+(22355, 4412, 11), -- P. Def. Modifiers
+(22355, 4413, 11), -- M. Def. Modifiers
+(22355, 4414, 2), -- Armor Type
+(22355, 4415, 3), -- Weapon Type
+(22355, 4416, 9), -- Races
+(22355, 5310, 4), -- NPC(party) - Magic Close Range DD - less powerful
+(22355, 5334, 4), -- NPC(party) - Physical Single Close Range Attack
 (22355, 5467, 1), -- Dark Attacks
 -- Enceinte Defender
-(22356, 4408, 1), -- HP Increase (1x)
-(22356, 4409, 1), -- MP Increase (1x)
-(22356, 4410, 11), -- Average P. Atk.
-(22356, 4411, 11), -- Average M. Atk.
-(22356, 4412, 11), -- Average P. Def.
-(22356, 4413, 11), -- Average M. Def.
-(22356, 4414, 2), -- Standard Type
-(22356, 4415, 3), -- One-handed Sword
-(22356, 4416, 9), -- Demons
-(22356, 5360, 4), -- Whirlwind
+(22356, 4408, 1), -- HP Modifiers
+(22356, 4409, 1), -- MP Modifiers
+(22356, 4410, 11), -- P. Atk. Modifiers
+(22356, 4411, 11), -- M. Atk. Modifiers
+(22356, 4412, 11), -- P. Def. Modifiers
+(22356, 4413, 11), -- M. Def. Modifiers
+(22356, 4414, 2), -- Armor Type
+(22356, 4415, 3), -- Weapon Type
+(22356, 4416, 9), -- Races
+(22356, 5360, 4), -- NPC(party) - Physical Range Close Range Attack - Dark
 (22356, 5467, 1), -- Dark Attacks
 -- Enceinte Defender
-(22357, 4408, 1), -- HP Increase (1x)
-(22357, 4409, 1), -- MP Increase (1x)
-(22357, 4410, 11), -- Average P. Atk.
-(22357, 4411, 11), -- Average M. Atk.
-(22357, 4412, 11), -- Average P. Def.
-(22357, 4413, 11), -- Average M. Def.
-(22357, 4414, 2), -- Standard Type
-(22357, 4415, 3), -- One-handed Sword
-(22357, 4416, 9), -- Demons
-(22357, 5298, 4), -- Power Shot
+(22357, 4408, 1), -- HP Modifiers
+(22357, 4409, 1), -- MP Modifiers
+(22357, 4410, 11), -- P. Atk. Modifiers
+(22357, 4411, 11), -- M. Atk. Modifiers
+(22357, 4412, 11), -- P. Def. Modifiers
+(22357, 4413, 11), -- M. Def. Modifiers
+(22357, 4414, 2), -- Armor Type
+(22357, 4415, 3), -- Weapon Type
+(22357, 4416, 9), -- Races
+(22357, 5298, 4), -- NPC(party) - Physical Single Long Range Attack - Dark
 (22357, 5467, 1), -- Dark Attacks
 -- Enceinte Defender
-(22358, 4408, 1), -- HP Increase (1x)
-(22358, 4409, 1), -- MP Increase (1x)
-(22358, 4410, 11), -- Average P. Atk.
-(22358, 4411, 11), -- Average M. Atk.
-(22358, 4412, 11), -- Average P. Def.
-(22358, 4413, 11), -- Average M. Def.
-(22358, 4414, 2), -- Standard Type
-(22358, 4415, 3), -- One-handed Sword
-(22358, 4416, 9), -- Demons
-(22358, 5372, 3), -- Aura Flare
-(22358, 5389, 3), -- Unholy Strike
+(22358, 4408, 1), -- HP Modifiers
+(22358, 4409, 1), -- MP Modifiers
+(22358, 4410, 11), -- P. Atk. Modifiers
+(22358, 4411, 11), -- M. Atk. Modifiers
+(22358, 4412, 11), -- P. Def. Modifiers
+(22358, 4413, 11), -- M. Def. Modifiers
+(22358, 4414, 2), -- Armor Type
+(22358, 4415, 3), -- Weapon Type
+(22358, 4416, 9), -- Races
+(22358, 5372, 3), -- NPC(party) - Magic Close Range DD - less powerful
+(22358, 5389, 3), -- NPC(party) -Magic Single Long Range DD - Dark
 (22358, 5467, 1), -- Dark Attacks
 -- Town Guard
-(22359, 4073, 10), -- Stun
-(22359, 4408, 1), -- HP Increase (1x)
-(22359, 4409, 1), -- MP Increase (1x)
-(22359, 4410, 14), -- Strong P. Atk.
-(22359, 4411, 11), -- Average M. Atk.
-(22359, 4412, 11), -- Average P. Def.
-(22359, 4413, 11), -- Average M. Def.
-(22359, 4414, 2), -- Standard Type
-(22359, 4415, 3), -- One-handed Sword
-(22359, 4416, 9), -- Demons
-(22359, 5297, 4), -- Power Strike
+(22359, 4073, 10), -- Shock
+(22359, 4408, 1), -- HP Modifiers
+(22359, 4409, 1), -- MP Modifiers
+(22359, 4410, 14), -- P. Atk. Modifiers
+(22359, 4411, 11), -- M. Atk. Modifiers
+(22359, 4412, 11), -- P. Def. Modifiers
+(22359, 4413, 11), -- M. Def. Modifiers
+(22359, 4414, 2), -- Armor Type
+(22359, 4415, 3), -- Weapon Type
+(22359, 4416, 9), -- Races
+(22359, 5297, 4), -- NPC(party) - Physical Single Close Range Attack - Dark
 (22359, 5467, 1), -- Dark Attacks
 -- Town Patrolman
-(22360, 4408, 1), -- HP Increase (1x)
-(22360, 4409, 1), -- MP Increase (1x)
-(22360, 4410, 11), -- Average P. Atk.
-(22360, 4411, 11), -- Average M. Atk.
-(22360, 4412, 11), -- Average P. Def.
-(22360, 4413, 11), -- Average M. Def.
-(22360, 4414, 3), -- Light Armor Type
-(22360, 4415, 3), -- One-handed Sword
-(22360, 4416, 6), -- Humanoids
-(22360, 5299, 4), -- Whirlwind
+(22360, 4408, 1), -- HP Modifiers
+(22360, 4409, 1), -- MP Modifiers
+(22360, 4410, 11), -- P. Atk. Modifiers
+(22360, 4411, 11), -- M. Atk. Modifiers
+(22360, 4412, 11), -- P. Def. Modifiers
+(22360, 4413, 11), -- M. Def. Modifiers
+(22360, 4414, 3), -- Armor Type
+(22360, 4415, 3), -- Weapon Type
+(22360, 4416, 6), -- Races
+(22360, 5299, 4), -- NPC(party) - Physical Range Close Range Attack - Dark
 (22360, 5467, 1), -- Dark Attacks
 -- Steel Citadel Keymaster
-(22361, 4408, 1), -- HP Increase (1x)
-(22361, 4409, 1), -- MP Increase (1x)
-(22361, 4410, 13), -- Slightly Strong P. Atk.
-(22361, 4411, 11), -- Average M. Atk.
-(22361, 4412, 13), -- Slightly Strong P. Def.
-(22361, 4413, 11), -- Average M. Def.
-(22361, 4414, 2), -- Standard Type
-(22361, 4415, 3), -- One-handed Sword
-(22361, 4416, 9), -- Demons
-(22361, 5298, 4), -- Power Shot
-(22361, 5360, 4), -- Whirlwind
+(22361, 4408, 1), -- HP Modifiers
+(22361, 4409, 1), -- MP Modifiers
+(22361, 4410, 13), -- P. Atk. Modifiers
+(22361, 4411, 11), -- M. Atk. Modifiers
+(22361, 4412, 13), -- P. Def. Modifiers
+(22361, 4413, 11), -- M. Def. Modifiers
+(22361, 4414, 2), -- Armor Type
+(22361, 4415, 3), -- Weapon Type
+(22361, 4416, 9), -- Races
+(22361, 5298, 4), -- NPC(party) - Physical Single Long Range Attack - Dark
+(22361, 5360, 4), -- NPC(party) - Physical Range Close Range Attack - Dark
 (22361, 5467, 1), -- Dark Attacks
 -- Guzen
-(22362, 4408, 1), -- HP Increase (1x)
-(22362, 4409, 1), -- MP Increase (1x)
-(22362, 4410, 11), -- Average P. Atk.
-(22362, 4411, 11), -- Average M. Atk.
-(22362, 4412, 11), -- Average P. Def.
-(22362, 4413, 11), -- Average M. Def.
-(22362, 4414, 2), -- Standard Type
-(22362, 4415, 3), -- One-handed Sword
-(22362, 4416, 9), -- Demons
-(22362, 5360, 4), -- Whirlwind
+(22362, 4408, 1), -- HP Modifiers
+(22362, 4409, 1), -- MP Modifiers
+(22362, 4410, 11), -- P. Atk. Modifiers
+(22362, 4411, 11), -- M. Atk. Modifiers
+(22362, 4412, 11), -- P. Def. Modifiers
+(22362, 4413, 11), -- M. Def. Modifiers
+(22362, 4414, 2), -- Armor Type
+(22362, 4415, 3), -- Weapon Type
+(22362, 4416, 9), -- Races
+(22362, 5360, 4), -- NPC(party) - Physical Range Close Range Attack - Dark
 (22362, 5467, 1), -- Dark Attacks
 -- Body Destroyer
-(22363, 4408, 1), -- HP Increase (1x)
-(22363, 4409, 1), -- MP Increase (1x)
-(22363, 4410, 11), -- Average P. Atk.
-(22363, 4411, 11), -- Average M. Atk.
-(22363, 4412, 11), -- Average P. Def.
-(22363, 4413, 11), -- Average M. Def.
-(22363, 4414, 2), -- Standard Type
-(22363, 4415, 5), -- Blunt Weapons
-(22363, 4416, 1), -- Undead
+(22363, 4408, 1), -- HP Modifiers
+(22363, 4409, 1), -- MP Modifiers
+(22363, 4410, 11), -- P. Atk. Modifiers
+(22363, 4411, 11), -- M. Atk. Modifiers
+(22363, 4412, 11), -- P. Def. Modifiers
+(22363, 4413, 11), -- M. Def. Modifiers
+(22363, 4414, 2), -- Armor Type
+(22363, 4415, 5), -- Weapon Type
+(22363, 4416, 1), -- Races
 (22363, 5256, 1), -- Announcement of Death
 (22363, 5257, 1), -- Death
-(22363, 5334, 5), -- Power Strike
+(22363, 5334, 5), -- NPC(party) - Physical Single Close Range Attack
 (22363, 5467, 1), -- Dark Attacks
 -- Soul Dominator
-(22364, 4408, 1), -- HP Increase (1x)
-(22364, 4409, 1), -- MP Increase (1x)
-(22364, 4410, 11), -- Average P. Atk.
-(22364, 4411, 11), -- Average M. Atk.
-(22364, 4412, 11), -- Average P. Def.
-(22364, 4413, 14), -- Strong M. Def.
-(22364, 4414, 3), -- Light Armor Type
-(22364, 4415, 1), -- Bare Hands
-(22364, 4416, 1), -- Undead
-(22364, 5389, 5), -- Unholy Strike
-(22364, 5391, 4), -- Unholy Circle
+(22364, 4408, 1), -- HP Modifiers
+(22364, 4409, 1), -- MP Modifiers
+(22364, 4410, 11), -- P. Atk. Modifiers
+(22364, 4411, 11), -- M. Atk. Modifiers
+(22364, 4412, 11), -- P. Def. Modifiers
+(22364, 4413, 14), -- M. Def. Modifiers
+(22364, 4414, 3), -- Armor Type
+(22364, 4415, 1), -- Weapon Type
+(22364, 4416, 1), -- Races
+(22364, 5389, 5), -- NPC(party) -Magic Single Long Range DD - Dark
+(22364, 5391, 4), -- NPC(party) -Magic Range Close Range DD - Holy
 (22364, 5467, 1), -- Dark Attacks
 (22364, 5529, 10), -- Surrender to the Unholy
 -- Labyrinth Watchman
-(22365, 4408, 1), -- HP Increase (1x)
-(22365, 4409, 1), -- MP Increase (1x)
-(22365, 4410, 11), -- Average P. Atk.
-(22365, 4411, 11), -- Average M. Atk.
-(22365, 4412, 11), -- Average P. Def.
-(22365, 4413, 11), -- Average M. Def.
-(22365, 4414, 2), -- Standard Type
-(22365, 4415, 1), -- Bare Hands
-(22365, 4416, 9), -- Demons
-(22365, 5358, 5), -- Power Strike
+(22365, 4408, 1), -- HP Modifiers
+(22365, 4409, 1), -- MP Modifiers
+(22365, 4410, 11), -- P. Atk. Modifiers
+(22365, 4411, 11), -- M. Atk. Modifiers
+(22365, 4412, 11), -- P. Def. Modifiers
+(22365, 4413, 11), -- M. Def. Modifiers
+(22365, 4414, 2), -- Armor Type
+(22365, 4415, 1), -- Weapon Type
+(22365, 4416, 9), -- Races
+(22365, 5358, 5), -- NPC(party) - Physical Single Close Range Attack - Dark
 (22365, 5467, 1), -- Dark Attacks
 -- Labyrinth Watchman
-(22366, 4408, 1), -- HP Increase (1x)
-(22366, 4409, 1), -- MP Increase (1x)
-(22366, 4410, 11), -- Average P. Atk.
-(22366, 4411, 11), -- Average M. Atk.
-(22366, 4412, 11), -- Average P. Def.
-(22366, 4413, 11), -- Average M. Def.
-(22366, 4414, 2), -- Standard Type
-(22366, 4415, 1), -- Bare Hands
-(22366, 4416, 9), -- Demons
-(22366, 5358, 5), -- Power Strike
+(22366, 4408, 1), -- HP Modifiers
+(22366, 4409, 1), -- MP Modifiers
+(22366, 4410, 11), -- P. Atk. Modifiers
+(22366, 4411, 11), -- M. Atk. Modifiers
+(22366, 4412, 11), -- P. Def. Modifiers
+(22366, 4413, 11), -- M. Def. Modifiers
+(22366, 4414, 2), -- Armor Type
+(22366, 4415, 1), -- Weapon Type
+(22366, 4416, 9), -- Races
+(22366, 5358, 5), -- NPC(party) - Physical Single Close Range Attack - Dark
 (22366, 5467, 1), -- Dark Attacks
 -- Labyrinth Mystic
-(22367, 4408, 1), -- HP Increase (1x)
-(22367, 4409, 1), -- MP Increase (1x)
-(22367, 4410, 11), -- Average P. Atk.
-(22367, 4411, 11), -- Average M. Atk.
-(22367, 4412, 11), -- Average P. Def.
-(22367, 4413, 14), -- Strong M. Def.
-(22367, 4415, 1), -- Bare Hands
-(22367, 4416, 9), -- Demons
-(22367, 5328, 5), -- Unholy Strike
-(22367, 5371, 4), -- Aura Burn
+(22367, 4408, 1), -- HP Modifiers
+(22367, 4409, 1), -- MP Modifiers
+(22367, 4410, 11), -- P. Atk. Modifiers
+(22367, 4411, 11), -- M. Atk. Modifiers
+(22367, 4412, 11), -- P. Def. Modifiers
+(22367, 4413, 14), -- M. Def. Modifiers
+(22367, 4415, 1), -- Weapon Type
+(22367, 4416, 9), -- Races
+(22367, 5328, 5), -- NPC(party) -Magic Single Long Range DD - Dark
+(22367, 5371, 4), -- NPC(party) - Magic Close Range DD - less powerful
 (22367, 5467, 1), -- Dark Attacks
 -- Labyrinth Captain
-(22368, 4408, 10), -- HP Increase (2x)
-(22368, 4409, 1), -- MP Increase (1x)
-(22368, 4410, 11), -- Average P. Atk.
-(22368, 4411, 11), -- Average M. Atk.
-(22368, 4412, 11), -- Average P. Def.
-(22368, 4413, 11), -- Average M. Def.
-(22368, 4414, 1), -- Heavy Armor Type
-(22368, 4415, 3), -- One-handed Sword
-(22368, 4416, 1), -- Undead
-(22368, 5359, 5), -- Power Shot
-(22368, 5360, 5), -- Whirlwind
+(22368, 4408, 10), -- HP Modifiers
+(22368, 4409, 1), -- MP Modifiers
+(22368, 4410, 11), -- P. Atk. Modifiers
+(22368, 4411, 11), -- M. Atk. Modifiers
+(22368, 4412, 11), -- P. Def. Modifiers
+(22368, 4413, 11), -- M. Def. Modifiers
+(22368, 4414, 1), -- Armor Type
+(22368, 4415, 3), -- Weapon Type
+(22368, 4416, 1), -- Races
+(22368, 5359, 5), -- NPC(party) - Physical Single Long Range Attack - Dark
+(22368, 5360, 5), -- NPC(party) - Physical Range Close Range Attack - Dark
 (22368, 5467, 1), -- Dark Attacks
 -- Labyrinth Priest
 (22369, 4047, 10), -- Hold
-(22369, 4408, 9), -- HP Increase (1/2x)
-(22369, 4409, 1), -- MP Increase (1x)
-(22369, 4410, 11), -- Average P. Atk.
-(22369, 4411, 13), -- Slightly Strong M. Atk.
-(22369, 4412, 11), -- Average P. Def.
-(22369, 4413, 11), -- Average M. Def.
-(22369, 4414, 3), -- Light Armor Type
-(22369, 4415, 5), -- Blunt Weapons
-(22369, 4416, 9), -- Demons
-(22369, 5328, 5), -- Unholy Strike
-(22369, 5330, 5), -- Unholy Circle
+(22369, 4408, 9), -- HP Modifiers
+(22369, 4409, 1), -- MP Modifiers
+(22369, 4410, 11), -- P. Atk. Modifiers
+(22369, 4411, 13), -- M. Atk. Modifiers
+(22369, 4412, 11), -- P. Def. Modifiers
+(22369, 4413, 11), -- M. Def. Modifiers
+(22369, 4414, 3), -- Armor Type
+(22369, 4415, 5), -- Weapon Type
+(22369, 4416, 9), -- Races
+(22369, 5328, 5), -- NPC(party) -Magic Single Long Range DD - Dark
+(22369, 5330, 5), -- NPC(party) -Magic Range Close Range DD - Holy
 (22369, 5467, 1), -- Dark Attacks
 -- Passageway Captain
-(22370, 4408, 1), -- HP Increase (1x)
-(22370, 4409, 1), -- MP Increase (1x)
-(22370, 4410, 11), -- Average P. Atk.
-(22370, 4411, 11), -- Average M. Atk.
-(22370, 4412, 11), -- Average P. Def.
-(22370, 4413, 11), -- Average M. Def.
-(22370, 4414, 2), -- Standard Type
-(22370, 4415, 5), -- Blunt Weapons
-(22370, 4416, 9), -- Demons
+(22370, 4408, 1), -- HP Modifiers
+(22370, 4409, 1), -- MP Modifiers
+(22370, 4410, 11), -- P. Atk. Modifiers
+(22370, 4411, 11), -- M. Atk. Modifiers
+(22370, 4412, 11), -- P. Def. Modifiers
+(22370, 4413, 11), -- M. Def. Modifiers
+(22370, 4414, 2), -- Armor Type
+(22370, 4415, 5), -- Weapon Type
+(22370, 4416, 9), -- Races
 (22370, 4439, 5), -- Greater Resist Hold
 (22370, 5362, 5), -- Stun
 (22370, 5467, 1), -- Dark Attacks
 -- Passageway Guards
-(22371, 4408, 1), -- HP Increase (1x)
-(22371, 4409, 1), -- MP Increase (1x)
-(22371, 4410, 11), -- Average P. Atk.
-(22371, 4411, 11), -- Average M. Atk.
-(22371, 4412, 11), -- Average P. Def.
-(22371, 4413, 11), -- Average M. Def.
-(22371, 4414, 1), -- Heavy Armor Type
-(22371, 4415, 3), -- One-handed Sword
-(22371, 4416, 9), -- Demons
+(22371, 4408, 1), -- HP Modifiers
+(22371, 4409, 1), -- MP Modifiers
+(22371, 4410, 11), -- P. Atk. Modifiers
+(22371, 4411, 11), -- M. Atk. Modifiers
+(22371, 4412, 11), -- P. Def. Modifiers
+(22371, 4413, 11), -- M. Def. Modifiers
+(22371, 4414, 1), -- Armor Type
+(22371, 4415, 3), -- Weapon Type
+(22371, 4416, 9), -- Races
 (22371, 4437, 1), -- Greater Resist Bleeding
-(22371, 5358, 5), -- Power Strike
+(22371, 5358, 5), -- NPC(party) - Physical Single Close Range Attack - Dark
 (22371, 5467, 1), -- Dark Attacks
 -- Passageway Mystic
-(22372, 4408, 1), -- HP Increase (1x)
-(22372, 4409, 1), -- MP Increase (1x)
-(22372, 4410, 11), -- Average P. Atk.
-(22372, 4411, 11), -- Average M. Atk.
-(22372, 4412, 11), -- Average P. Def.
-(22372, 4413, 11), -- Average M. Def.
-(22372, 4414, 3), -- Light Armor Type
-(22372, 4415, 5), -- Blunt Weapons
-(22372, 4416, 9), -- Demons
+(22372, 4408, 1), -- HP Modifiers
+(22372, 4409, 1), -- MP Modifiers
+(22372, 4410, 11), -- P. Atk. Modifiers
+(22372, 4411, 11), -- M. Atk. Modifiers
+(22372, 4412, 11), -- P. Def. Modifiers
+(22372, 4413, 11), -- M. Def. Modifiers
+(22372, 4414, 3), -- Armor Type
+(22372, 4415, 5), -- Weapon Type
+(22372, 4416, 9), -- Races
 (22372, 4657, 10), -- Hold
-(22372, 5391, 4), -- Unholy Circle
-(22372, 5393, 5), -- Mana Burn
+(22372, 5391, 4), -- NPC(party) -Magic Range Close Range DD - Holy
+(22372, 5393, 5), -- NPC MP Burn
 (22372, 5467, 1), -- Dark Attacks
 -- Cosmic Scout
-(22373, 4408, 1), -- HP Increase (1x)
-(22373, 4409, 1), -- MP Increase (1x)
-(22373, 4410, 11), -- Average P. Atk.
-(22373, 4411, 11), -- Average M. Atk.
-(22373, 4412, 14), -- Strong P. Def.
-(22373, 4413, 11), -- Average M. Def.
-(22373, 4414, 3), -- Light Armor Type
-(22373, 4415, 7), -- Daggers
-(22373, 4416, 1), -- Undead
-(22373, 5360, 3), -- Whirlwind
+(22373, 4408, 1), -- HP Modifiers
+(22373, 4409, 1), -- MP Modifiers
+(22373, 4410, 11), -- P. Atk. Modifiers
+(22373, 4411, 11), -- M. Atk. Modifiers
+(22373, 4412, 14), -- P. Def. Modifiers
+(22373, 4413, 11), -- M. Def. Modifiers
+(22373, 4414, 3), -- Armor Type
+(22373, 4415, 7), -- Weapon Type
+(22373, 4416, 1), -- Races
+(22373, 5360, 3), -- NPC(party) - Physical Range Close Range Attack - Dark
 (22373, 5365, 3), -- Paralysis
 (22373, 5467, 1), -- Dark Attacks
 -- Cosmic Watcher
-(22374, 4408, 1), -- HP Increase (1x)
-(22374, 4409, 1), -- MP Increase (1x)
-(22374, 4410, 11), -- Average P. Atk.
-(22374, 4411, 11), -- Average M. Atk.
-(22374, 4412, 11), -- Average P. Def.
-(22374, 4413, 11), -- Average M. Def.
-(22374, 4414, 3), -- Light Armor Type
-(22374, 4415, 1), -- Bare Hands
-(22374, 4416, 1), -- Undead
+(22374, 4408, 1), -- HP Modifiers
+(22374, 4409, 1), -- MP Modifiers
+(22374, 4410, 11), -- P. Atk. Modifiers
+(22374, 4411, 11), -- M. Atk. Modifiers
+(22374, 4412, 11), -- P. Def. Modifiers
+(22374, 4413, 11), -- M. Def. Modifiers
+(22374, 4414, 3), -- Armor Type
+(22374, 4415, 1), -- Weapon Type
+(22374, 4416, 1), -- Races
 (22374, 4657, 9), -- Hold
-(22374, 5328, 3), -- Unholy Strike
-(22374, 5372, 3), -- Aura Flare
+(22374, 5328, 3), -- NPC(party) -Magic Single Long Range DD - Dark
+(22374, 5372, 3), -- NPC(party) - Magic Close Range DD - less powerful
 (22374, 5467, 1), -- Dark Attacks
 -- Cosmic Priest
-(22375, 4408, 1), -- HP Increase (1x)
-(22375, 4409, 1), -- MP Increase (1x)
-(22375, 4410, 11), -- Average P. Atk.
-(22375, 4411, 11), -- Average M. Atk.
-(22375, 4412, 11), -- Average P. Def.
-(22375, 4413, 11), -- Average M. Def.
-(22375, 4414, 3), -- Light Armor Type
-(22375, 4415, 5), -- Blunt Weapons
-(22375, 4416, 9), -- Demons
-(22375, 5328, 3), -- Unholy Strike
-(22375, 5372, 3), -- Aura Flare
+(22375, 4408, 1), -- HP Modifiers
+(22375, 4409, 1), -- MP Modifiers
+(22375, 4410, 11), -- P. Atk. Modifiers
+(22375, 4411, 11), -- M. Atk. Modifiers
+(22375, 4412, 11), -- P. Def. Modifiers
+(22375, 4413, 11), -- M. Def. Modifiers
+(22375, 4414, 3), -- Armor Type
+(22375, 4415, 5), -- Weapon Type
+(22375, 4416, 9), -- Races
+(22375, 5328, 3), -- NPC(party) -Magic Single Long Range DD - Dark
+(22375, 5372, 3), -- NPC(party) - Magic Close Range DD - less powerful
 (22375, 5467, 1), -- Dark Attacks
 (22375, 5529, 9), -- Surrender to the Unholy
 -- Cosmic Lord
-(22376, 4408, 9), -- HP Increase (1/2x)
-(22376, 4409, 1), -- MP Increase (1x)
-(22376, 4410, 11), -- Average P. Atk.
-(22376, 4411, 11), -- Average M. Atk.
-(22376, 4412, 11), -- Average P. Def.
-(22376, 4413, 11), -- Average M. Def.
-(22376, 4414, 2), -- Standard Type
-(22376, 4415, 7), -- Daggers
-(22376, 4416, 9), -- Demons
-(22376, 5359, 3), -- Power Shot
-(22376, 5360, 3), -- Whirlwind
+(22376, 4408, 9), -- HP Modifiers
+(22376, 4409, 1), -- MP Modifiers
+(22376, 4410, 11), -- P. Atk. Modifiers
+(22376, 4411, 11), -- M. Atk. Modifiers
+(22376, 4412, 11), -- P. Def. Modifiers
+(22376, 4413, 11), -- M. Def. Modifiers
+(22376, 4414, 2), -- Armor Type
+(22376, 4415, 7), -- Weapon Type
+(22376, 4416, 9), -- Races
+(22376, 5359, 3), -- NPC(party) - Physical Single Long Range Attack - Dark
+(22376, 5360, 3), -- NPC(party) - Physical Range Close Range Attack - Dark
 (22376, 5467, 1), -- Dark Attacks
 -- Master Zelos
-(22377, 4408, 1), -- HP Increase (1x)
-(22377, 4409, 1), -- MP Increase (1x)
-(22377, 4410, 11), -- Average P. Atk.
-(22377, 4411, 11), -- Average M. Atk.
-(22377, 4412, 11), -- Average P. Def.
-(22377, 4413, 11), -- Average M. Def.
-(22377, 4414, 2), -- Standard Type
-(22377, 4415, 7), -- Daggers
-(22377, 4416, 9), -- Demons
-(22377, 5358, 3), -- Power Strike
+(22377, 4408, 1), -- HP Modifiers
+(22377, 4409, 1), -- MP Modifiers
+(22377, 4410, 11), -- P. Atk. Modifiers
+(22377, 4411, 11), -- M. Atk. Modifiers
+(22377, 4412, 11), -- P. Def. Modifiers
+(22377, 4413, 11), -- M. Def. Modifiers
+(22377, 4414, 2), -- Armor Type
+(22377, 4415, 7), -- Weapon Type
+(22377, 4416, 9), -- Races
+(22377, 5358, 3), -- NPC(party) - Physical Single Close Range Attack - Dark
 (22377, 5362, 3), -- Stun
 (22377, 5467, 1), -- Dark Attacks
 -- Master's Minion
-(22378, 4408, 1), -- HP Increase (1x)
-(22378, 4409, 1), -- MP Increase (1x)
-(22378, 4410, 8), -- Weak P. Atk.
-(22378, 4411, 11), -- Average M. Atk.
-(22378, 4412, 14), -- Strong P. Def.
-(22378, 4413, 11), -- Average M. Def.
-(22378, 4414, 2), -- Standard Type
-(22378, 4415, 3), -- One-handed Sword
-(22378, 4416, 9), -- Demons
+(22378, 4408, 1), -- HP Modifiers
+(22378, 4409, 1), -- MP Modifiers
+(22378, 4410, 8), -- P. Atk. Modifiers
+(22378, 4411, 11), -- M. Atk. Modifiers
+(22378, 4412, 14), -- P. Def. Modifiers
+(22378, 4413, 11), -- M. Def. Modifiers
+(22378, 4414, 2), -- Armor Type
+(22378, 4415, 3), -- Weapon Type
+(22378, 4416, 9), -- Races
 (22378, 5301, 3), -- Stun
 (22378, 5467, 1), -- Dark Attacks
 -- Master's Minion
-(22379, 4408, 1), -- HP Increase (1x)
-(22379, 4409, 1), -- MP Increase (1x)
-(22379, 4410, 11), -- Average P. Atk.
-(22379, 4411, 11), -- Average M. Atk.
-(22379, 4412, 11), -- Average P. Def.
-(22379, 4413, 11), -- Average M. Def.
-(22379, 4414, 3), -- Light Armor Type
-(22379, 4415, 5), -- Blunt Weapons
-(22379, 4416, 9), -- Demons
-(22379, 5311, 3), -- Aura Flare
-(22379, 5328, 3), -- Unholy Strike
+(22379, 4408, 1), -- HP Modifiers
+(22379, 4409, 1), -- MP Modifiers
+(22379, 4410, 11), -- P. Atk. Modifiers
+(22379, 4411, 11), -- M. Atk. Modifiers
+(22379, 4412, 11), -- P. Def. Modifiers
+(22379, 4413, 11), -- M. Def. Modifiers
+(22379, 4414, 3), -- Armor Type
+(22379, 4415, 5), -- Weapon Type
+(22379, 4416, 9), -- Races
+(22379, 5311, 3), -- NPC(party) - Magic Close Range DD - less powerful
+(22379, 5328, 3), -- NPC(party) -Magic Single Long Range DD - Dark
 (22379, 5467, 1), -- Dark Attacks
 -- Master Festina
-(22380, 4098, 9), -- Silence
-(22380, 4408, 1), -- HP Increase (1x)
-(22380, 4409, 1), -- MP Increase (1x)
-(22380, 4410, 11), -- Average P. Atk.
-(22380, 4411, 11), -- Average M. Atk.
-(22380, 4412, 11), -- Average P. Def.
-(22380, 4413, 11), -- Average M. Def.
-(22380, 4414, 2), -- Standard Type
-(22380, 4415, 5), -- Blunt Weapons
-(22380, 4416, 9), -- Demons
-(22380, 5372, 3), -- Aura Flare
-(22380, 5389, 3), -- Unholy Strike
+(22380, 4098, 9), -- Magic Skill Block
+(22380, 4408, 1), -- HP Modifiers
+(22380, 4409, 1), -- MP Modifiers
+(22380, 4410, 11), -- P. Atk. Modifiers
+(22380, 4411, 11), -- M. Atk. Modifiers
+(22380, 4412, 11), -- P. Def. Modifiers
+(22380, 4413, 11), -- M. Def. Modifiers
+(22380, 4414, 2), -- Armor Type
+(22380, 4415, 5), -- Weapon Type
+(22380, 4416, 9), -- Races
+(22380, 5372, 3), -- NPC(party) - Magic Close Range DD - less powerful
+(22380, 5389, 3), -- NPC(party) -Magic Single Long Range DD - Dark
 (22380, 5467, 1), -- Dark Attacks
 -- Master's Guard
-(22381, 4408, 1), -- HP Increase (1x)
-(22381, 4409, 1), -- MP Increase (1x)
-(22381, 4410, 11), -- Average P. Atk.
-(22381, 4411, 11), -- Average M. Atk.
-(22381, 4412, 11), -- Average P. Def.
-(22381, 4413, 11), -- Average M. Def.
-(22381, 4414, 3), -- Light Armor Type
-(22381, 4415, 1), -- Bare Hands
-(22381, 4416, 9), -- Demons
-(22381, 5328, 3), -- Unholy Strike
-(22381, 5371, 3), -- Aura Burn
+(22381, 4408, 1), -- HP Modifiers
+(22381, 4409, 1), -- MP Modifiers
+(22381, 4410, 11), -- P. Atk. Modifiers
+(22381, 4411, 11), -- M. Atk. Modifiers
+(22381, 4412, 11), -- P. Def. Modifiers
+(22381, 4413, 11), -- M. Def. Modifiers
+(22381, 4414, 3), -- Armor Type
+(22381, 4415, 1), -- Weapon Type
+(22381, 4416, 9), -- Races
+(22381, 5328, 3), -- NPC(party) -Magic Single Long Range DD - Dark
+(22381, 5371, 3), -- NPC(party) - Magic Close Range DD - less powerful
 (22381, 5467, 1), -- Dark Attacks
 -- Master's Guard
-(22382, 4408, 1), -- HP Increase (1x)
-(22382, 4409, 1), -- MP Increase (1x)
-(22382, 4410, 11), -- Average P. Atk.
-(22382, 4411, 11), -- Average M. Atk.
-(22382, 4412, 11), -- Average P. Def.
-(22382, 4413, 11), -- Average M. Def.
-(22382, 4414, 3), -- Light Armor Type
-(22382, 4415, 1), -- Bare Hands
-(22382, 4416, 9), -- Demons
-(22382, 5310, 3), -- Aura Burn
-(22382, 5389, 3), -- Unholy Strike
+(22382, 4408, 1), -- HP Modifiers
+(22382, 4409, 1), -- MP Modifiers
+(22382, 4410, 11), -- P. Atk. Modifiers
+(22382, 4411, 11), -- M. Atk. Modifiers
+(22382, 4412, 11), -- P. Def. Modifiers
+(22382, 4413, 11), -- M. Def. Modifiers
+(22382, 4414, 3), -- Armor Type
+(22382, 4415, 1), -- Weapon Type
+(22382, 4416, 9), -- Races
+(22382, 5310, 3), -- NPC(party) - Magic Close Range DD - less powerful
+(22382, 5389, 3), -- NPC(party) -Magic Single Long Range DD - Dark
 (22382, 5467, 1), -- Dark Attacks
 -- Tully's Toy
-(22383, 4408, 8), -- HP Increase (1/4x)
-(22383, 4409, 1), -- MP Increase (1x)
-(22383, 4410, 11), -- Average P. Atk.
-(22383, 4411, 11), -- Average M. Atk.
-(22383, 4412, 13), -- Slightly Strong P. Def.
-(22383, 4413, 11), -- Average M. Def.
-(22383, 4414, 1), -- Heavy Armor Type
-(22383, 4415, 5), -- Blunt Weapons
-(22383, 4416, 2), -- Magic Creatures
+(22383, 4408, 8), -- HP Modifiers
+(22383, 4409, 1), -- MP Modifiers
+(22383, 4410, 11), -- P. Atk. Modifiers
+(22383, 4411, 11), -- M. Atk. Modifiers
+(22383, 4412, 13), -- P. Def. Modifiers
+(22383, 4413, 11), -- M. Def. Modifiers
+(22383, 4414, 1), -- Armor Type
+(22383, 4415, 5), -- Weapon Type
+(22383, 4416, 2), -- Races
 (22383, 4438, 5), -- Greater Resist Sleep
-(22383, 5336, 3), -- Whirlwind
+(22383, 5336, 3), -- NPC(party) - Physical Range Close Range Attack
 (22383, 5599, 8), -- Stun Resistance
 -- Mystic's Toy
-(22384, 4408, 8), -- HP Increase (1/4x)
-(22384, 4409, 1), -- MP Increase (1x)
-(22384, 4410, 11), -- Average P. Atk.
-(22384, 4411, 11), -- Average M. Atk.
-(22384, 4412, 11), -- Average P. Def.
-(22384, 4413, 13), -- Slightly Strong M. Def.
-(22384, 4414, 1), -- Heavy Armor Type
-(22384, 4415, 7), -- Daggers
-(22384, 4416, 2), -- Magic Creatures
+(22384, 4408, 8), -- HP Modifiers
+(22384, 4409, 1), -- MP Modifiers
+(22384, 4410, 11), -- P. Atk. Modifiers
+(22384, 4411, 11), -- M. Atk. Modifiers
+(22384, 4412, 11), -- P. Def. Modifiers
+(22384, 4413, 13), -- M. Def. Modifiers
+(22384, 4414, 1), -- Armor Type
+(22384, 4415, 7), -- Weapon Type
+(22384, 4416, 2), -- Races
 (22384, 4438, 5), -- Greater Resist Sleep
-(22384, 5336, 3), -- Whirlwind
+(22384, 5336, 3), -- NPC(party) - Physical Range Close Range Attack
 (22384, 5599, 8), -- Stun Resistance
 -- Tully's Golem Guard
-(22385, 4408, 1), -- HP Increase (1x)
-(22385, 4409, 1), -- MP Increase (1x)
-(22385, 4410, 11), -- Average P. Atk.
-(22385, 4411, 11), -- Average M. Atk.
-(22385, 4412, 11), -- Average P. Def.
-(22385, 4413, 11), -- Average M. Def.
-(22385, 4414, 1), -- Heavy Armor Type
-(22385, 4415, 3), -- One-handed Sword
-(22385, 4416, 2), -- Magic Creatures
+(22385, 4408, 1), -- HP Modifiers
+(22385, 4409, 1), -- MP Modifiers
+(22385, 4410, 11), -- P. Atk. Modifiers
+(22385, 4411, 11), -- M. Atk. Modifiers
+(22385, 4412, 11), -- P. Def. Modifiers
+(22385, 4413, 11), -- M. Def. Modifiers
+(22385, 4414, 1), -- Armor Type
+(22385, 4415, 3), -- Weapon Type
+(22385, 4416, 2), -- Races
 (22385, 4438, 5), -- Greater Resist Sleep
 (22385, 5362, 3), -- Stun
 (22385, 5364, 3), -- Bleed
 (22385, 5467, 1), -- Dark Attacks
 (22385, 5599, 8), -- Stun Resistance
 -- Foundry Mystic
-(22386, 4408, 1), -- HP Increase (1x)
-(22386, 4409, 1), -- MP Increase (1x)
-(22386, 4410, 11), -- Average P. Atk.
-(22386, 4411, 11), -- Average M. Atk.
-(22386, 4412, 11), -- Average P. Def.
-(22386, 4413, 11), -- Average M. Def.
-(22386, 4414, 3), -- Light Armor Type
-(22386, 4415, 17), -- fist weapons
-(22386, 4416, 1), -- Undead
+(22386, 4408, 1), -- HP Modifiers
+(22386, 4409, 1), -- MP Modifiers
+(22386, 4410, 11), -- P. Atk. Modifiers
+(22386, 4411, 11), -- M. Atk. Modifiers
+(22386, 4412, 11), -- P. Def. Modifiers
+(22386, 4413, 11), -- M. Def. Modifiers
+(22386, 4414, 3), -- Armor Type
+(22386, 4415, 17), -- Weapon Type
+(22386, 4416, 1), -- Races
 (22386, 4657, 9), -- Hold
-(22386, 5328, 3), -- Unholy Strike
-(22386, 5372, 3), -- Aura Flare
+(22386, 5328, 3), -- NPC(party) -Magic Single Long Range DD - Dark
+(22386, 5372, 3), -- NPC(party) - Magic Close Range DD - less powerful
 (22386, 5467, 1), -- Dark Attacks
 -- Foundry Mystic
-(22387, 4408, 1), -- HP Increase (1x)
-(22387, 4409, 1), -- MP Increase (1x)
-(22387, 4410, 11), -- Average P. Atk.
-(22387, 4411, 11), -- Average M. Atk.
-(22387, 4412, 11), -- Average P. Def.
-(22387, 4413, 11), -- Average M. Def.
-(22387, 4414, 3), -- Light Armor Type
-(22387, 4415, 17), -- fist weapons
-(22387, 4416, 1), -- Undead
+(22387, 4408, 1), -- HP Modifiers
+(22387, 4409, 1), -- MP Modifiers
+(22387, 4410, 11), -- P. Atk. Modifiers
+(22387, 4411, 11), -- M. Atk. Modifiers
+(22387, 4412, 11), -- P. Def. Modifiers
+(22387, 4413, 11), -- M. Def. Modifiers
+(22387, 4414, 3), -- Armor Type
+(22387, 4415, 17), -- Weapon Type
+(22387, 4416, 1), -- Races
 (22387, 4657, 9), -- Hold
-(22387, 5328, 3), -- Unholy Strike
-(22387, 5372, 3), -- Aura Flare
+(22387, 5328, 3), -- NPC(party) -Magic Single Long Range DD - Dark
+(22387, 5372, 3), -- NPC(party) - Magic Close Range DD - less powerful
 (22387, 5467, 1), -- Dark Attacks
 -- Foundry Spirit Guard
-(22388, 4408, 1), -- HP Increase (1x)
-(22388, 4409, 1), -- MP Increase (1x)
-(22388, 4410, 11), -- Average P. Atk.
-(22388, 4411, 11), -- Average M. Atk.
-(22388, 4412, 11), -- Average P. Def.
-(22388, 4413, 11), -- Average M. Def.
-(22388, 4414, 2), -- Standard Type
-(22388, 4415, 5), -- Blunt Weapons
-(22388, 4416, 1), -- Undead
-(22388, 5299, 3), -- Whirlwind
+(22388, 4408, 1), -- HP Modifiers
+(22388, 4409, 1), -- MP Modifiers
+(22388, 4410, 11), -- P. Atk. Modifiers
+(22388, 4411, 11), -- M. Atk. Modifiers
+(22388, 4412, 11), -- P. Def. Modifiers
+(22388, 4413, 11), -- M. Def. Modifiers
+(22388, 4414, 2), -- Armor Type
+(22388, 4415, 5), -- Weapon Type
+(22388, 4416, 1), -- Races
+(22388, 5299, 3), -- NPC(party) - Physical Range Close Range Attack - Dark
 (22388, 5364, 3), -- Bleed
 (22388, 5467, 1), -- Dark Attacks
 -- Foundry Spirit Guard
-(22389, 4408, 1), -- HP Increase (1x)
-(22389, 4409, 1), -- MP Increase (1x)
-(22389, 4410, 11), -- Average P. Atk.
-(22389, 4411, 11), -- Average M. Atk.
-(22389, 4412, 11), -- Average P. Def.
-(22389, 4413, 11), -- Average M. Def.
-(22389, 4414, 2), -- Standard Type
-(22389, 4415, 5), -- Blunt Weapons
-(22389, 4416, 1), -- Undead
-(22389, 5299, 3), -- Whirlwind
+(22389, 4408, 1), -- HP Modifiers
+(22389, 4409, 1), -- MP Modifiers
+(22389, 4410, 11), -- P. Atk. Modifiers
+(22389, 4411, 11), -- M. Atk. Modifiers
+(22389, 4412, 11), -- P. Def. Modifiers
+(22389, 4413, 11), -- M. Def. Modifiers
+(22389, 4414, 2), -- Armor Type
+(22389, 4415, 5), -- Weapon Type
+(22389, 4416, 1), -- Races
+(22389, 5299, 3), -- NPC(party) - Physical Range Close Range Attack - Dark
 (22389, 5364, 3), -- Bleed
 (22389, 5467, 1), -- Dark Attacks
 -- Foundry Foreman
 (22390, 4117, 9), -- Paralysis
-(22390, 4408, 1), -- HP Increase (1x)
-(22390, 4409, 1), -- MP Increase (1x)
-(22390, 4410, 11), -- Average P. Atk.
-(22390, 4411, 11), -- Average M. Atk.
-(22390, 4412, 11), -- Average P. Def.
-(22390, 4413, 11), -- Average M. Def.
-(22390, 4414, 2), -- Standard Type
-(22390, 4415, 11), -- Spears
-(22390, 4416, 9), -- Demons
-(22390, 5358, 3), -- Power Strike
+(22390, 4408, 1), -- HP Modifiers
+(22390, 4409, 1), -- MP Modifiers
+(22390, 4410, 11), -- P. Atk. Modifiers
+(22390, 4411, 11), -- M. Atk. Modifiers
+(22390, 4412, 11), -- P. Def. Modifiers
+(22390, 4413, 11), -- M. Def. Modifiers
+(22390, 4414, 2), -- Armor Type
+(22390, 4415, 11), -- Weapon Type
+(22390, 4416, 9), -- Races
+(22390, 5358, 3), -- NPC(party) - Physical Single Close Range Attack - Dark
 (22390, 5467, 1), -- Dark Attacks
 -- Foundry Assistant Overseer
 (22391, 4093, 1), -- Evasion
-(22391, 4408, 10), -- HP Increase (2x)
-(22391, 4409, 1), -- MP Increase (1x)
-(22391, 4410, 12), -- Slightly Strong P. Atk.
-(22391, 4411, 11), -- Average M. Atk.
-(22391, 4412, 7), -- Weak P. Def.
-(22391, 4413, 11), -- Average M. Def.
-(22391, 4414, 2), -- Standard Type
-(22391, 4415, 3), -- One-handed Sword
-(22391, 4416, 9), -- Demons
-(22391, 5297, 3), -- Power Strike
+(22391, 4408, 10), -- HP Modifiers
+(22391, 4409, 1), -- MP Modifiers
+(22391, 4410, 12), -- P. Atk. Modifiers
+(22391, 4411, 11), -- M. Atk. Modifiers
+(22391, 4412, 7), -- P. Def. Modifiers
+(22391, 4413, 11), -- M. Def. Modifiers
+(22391, 4414, 2), -- Armor Type
+(22391, 4415, 3), -- Weapon Type
+(22391, 4416, 9), -- Races
+(22391, 5297, 3), -- NPC(party) - Physical Single Close Range Attack - Dark
 (22391, 5467, 1), -- Dark Attacks
 -- Failed Experimental Timetwister Golem
-(22392, 4256, 1), -- Resist Shock
-(22392, 4379, 1), -- Resist Spear Weapons
-(22392, 4408, 11), -- HP Increase (3x)
-(22392, 4409, 1), -- MP Increase (1x)
-(22392, 4410, 9), -- Slightly Weak P. Atk.
-(22392, 4411, 11), -- Average M. Atk.
-(22392, 4412, 15), -- Strong P. Def.
-(22392, 4413, 11), -- Average M. Def.
-(22392, 4414, 3), -- Light Armor Type
-(22392, 4415, 11), -- Spears
-(22392, 4416, 9), -- Demons
+(22392, 4256, 1), -- 100% Stun Resistance.
+(22392, 4379, 1), -- Resist Pole Arm
+(22392, 4408, 11), -- HP Modifiers
+(22392, 4409, 1), -- MP Modifiers
+(22392, 4410, 9), -- P. Atk. Modifiers
+(22392, 4411, 11), -- M. Atk. Modifiers
+(22392, 4412, 15), -- P. Def. Modifiers
+(22392, 4413, 11), -- M. Def. Modifiers
+(22392, 4414, 3), -- Armor Type
+(22392, 4415, 11), -- Weapon Type
+(22392, 4416, 9), -- Races
 (22392, 4441, 1), -- Greater Resist Mental Derangement
 (22392, 5467, 1), -- Dark Attacks
-(22392, 5550, 11), -- Trigger Stun
+(22392, 5550, 11), -- NPC Trigger Stun
 -- Beleth's Follower
-(22393, 4408, 1), -- HP Increase (1x)
-(22393, 4409, 1), -- MP Increase (1x)
-(22393, 4410, 11), -- Average P. Atk.
-(22393, 4411, 11), -- Average M. Atk.
-(22393, 4412, 11), -- Average P. Def.
-(22393, 4413, 11), -- Average M. Def.
-(22393, 4414, 2), -- Standard Type
-(22393, 4415, 3), -- One-handed Sword
-(22393, 4416, 1), -- Undead
-(22393, 5273, 5), -- Power Strike
+(22393, 4408, 1), -- HP Modifiers
+(22393, 4409, 1), -- MP Modifiers
+(22393, 4410, 11), -- P. Atk. Modifiers
+(22393, 4411, 11), -- M. Atk. Modifiers
+(22393, 4412, 11), -- P. Def. Modifiers
+(22393, 4413, 11), -- M. Def. Modifiers
+(22393, 4414, 2), -- Armor Type
+(22393, 4415, 3), -- Weapon Type
+(22393, 4416, 1), -- Races
+(22393, 5273, 5), -- NPC(party) - Physical Single Close Range Attack
 (22393, 5467, 1), -- Dark Attacks
 (22393, 5597, 1), -- Invalid Skill cancel
 -- Beleth's Devotee
-(22394, 4408, 9), -- HP Increase (1/2x)
-(22394, 4409, 1), -- MP Increase (1x)
-(22394, 4410, 11), -- Average P. Atk.
-(22394, 4411, 14), -- Strong M. Atk.
-(22394, 4412, 11), -- Average P. Def.
-(22394, 4413, 11), -- Average M. Def.
-(22394, 4414, 3), -- Light Armor Type
-(22394, 4415, 1), -- Bare Hands
-(22394, 4416, 9), -- Demons
-(22394, 5390, 5), -- Unholy Blast
-(22394, 5391, 5), -- Unholy Circle
+(22394, 4408, 9), -- HP Modifiers
+(22394, 4409, 1), -- MP Modifiers
+(22394, 4410, 11), -- P. Atk. Modifiers
+(22394, 4411, 14), -- M. Atk. Modifiers
+(22394, 4412, 11), -- P. Def. Modifiers
+(22394, 4413, 11), -- M. Def. Modifiers
+(22394, 4414, 3), -- Armor Type
+(22394, 4415, 1), -- Weapon Type
+(22394, 4416, 9), -- Races
+(22394, 5390, 5), -- NPC(party) -Magic Range Long Range DD - Holy
+(22394, 5391, 5), -- NPC(party) -Magic Range Close Range DD - Holy
 (22394, 5467, 1), -- Dark Attacks
 (22394, 5597, 1), -- Invalid Skill cancel
 -- Beleth's Projection
-(22395, 4065, 12), -- Heal
-(22395, 4091, 3), -- Spirit Ogre
-(22395, 4408, 10), -- HP Increase (2x)
-(22395, 4409, 1), -- MP Increase (1x)
-(22395, 4410, 12), -- Slightly Strong P. Atk.
-(22395, 4411, 11), -- Average M. Atk.
-(22395, 4412, 11), -- Average P. Def.
-(22395, 4413, 11), -- Average M. Def.
-(22395, 4414, 1), -- Heavy Armor Type
-(22395, 4415, 19), -- Dual-Sword Weapons
-(22395, 4416, 9), -- Demons
+(22395, 4065, 12), -- NPC Heal
+(22395, 4091, 3), -- NPC Ogre Spirit Totem
+(22395, 4408, 10), -- HP Modifiers
+(22395, 4409, 1), -- MP Modifiers
+(22395, 4410, 12), -- P. Atk. Modifiers
+(22395, 4411, 11), -- M. Atk. Modifiers
+(22395, 4412, 11), -- P. Def. Modifiers
+(22395, 4413, 11), -- M. Def. Modifiers
+(22395, 4414, 1), -- Armor Type
+(22395, 4415, 19), -- Weapon Type
+(22395, 4416, 9), -- Races
 (22395, 4438, 5), -- Greater Resist Sleep
 (22395, 4439, 5), -- Greater Resist Hold
 (22395, 4440, 5), -- Greater Resist Paralysis
-(22395, 5300, 5), -- Burst Shot
+(22395, 5300, 5), -- NPC(party) - Physical Range Long Range Attack - Dark
 (22395, 5301, 5), -- Stun
 (22395, 5467, 1), -- Dark Attacks
 (22395, 5597, 1), -- Invalid Skill cancel
 -- Foundry Laborer
-(22396, 4408, 1), -- HP Increase (1x)
-(22396, 4409, 1), -- MP Increase (1x)
-(22396, 4410, 11), -- Average P. Atk.
-(22396, 4411, 11), -- Average M. Atk.
-(22396, 4412, 11), -- Average P. Def.
-(22396, 4413, 11), -- Average M. Def.
-(22396, 4414, 2), -- Standard Type
-(22396, 4415, 5), -- Blunt Weapons
-(22396, 4416, 6), -- Humanoids
+(22396, 4408, 1), -- HP Modifiers
+(22396, 4409, 1), -- MP Modifiers
+(22396, 4410, 11), -- P. Atk. Modifiers
+(22396, 4411, 11), -- M. Atk. Modifiers
+(22396, 4412, 11), -- P. Def. Modifiers
+(22396, 4413, 11), -- M. Def. Modifiers
+(22396, 4414, 2), -- Armor Type
+(22396, 4415, 5), -- Weapon Type
+(22396, 4416, 6), -- Races
 (22396, 5462, 1), -- Fire Attacks
 -- Foundry Foreman  
-(22397, 4408, 1), -- HP Increase (1x)
-(22397, 4409, 1), -- MP Increase (1x)
-(22397, 4410, 11), -- Average P. Atk.
-(22397, 4411, 11), -- Average M. Atk.
-(22397, 4412, 11), -- Average P. Def.
-(22397, 4413, 11), -- Average M. Def.
-(22397, 4414, 2), -- Standard Type
-(22397, 4415, 3), -- One-handed Sword
-(22397, 4416, 9), -- Demons
-(22397, 5360, 9), -- Whirlwind
+(22397, 4408, 1), -- HP Modifiers
+(22397, 4409, 1), -- MP Modifiers
+(22397, 4410, 11), -- P. Atk. Modifiers
+(22397, 4411, 11), -- M. Atk. Modifiers
+(22397, 4412, 11), -- P. Def. Modifiers
+(22397, 4413, 11), -- M. Def. Modifiers
+(22397, 4414, 2), -- Armor Type
+(22397, 4415, 3), -- Weapon Type
+(22397, 4416, 9), -- Races
+(22397, 5360, 9), -- NPC(party) - Physical Range Close Range Attack - Dark
 (22397, 5462, 1), -- Fire Attacks
 -- Lesser Evil
-(22398, 4408, 10), -- HP Increase (2x)
-(22398, 4409, 1), -- MP Increase (1x)
-(22398, 4410, 12), -- Slightly Strong P. Atk.
-(22398, 4411, 11), -- Average M. Atk.
-(22398, 4412, 12), -- Slightly Strong P. Def.
-(22398, 4413, 11), -- Average M. Def.
-(22398, 4414, 2), -- Standard Type
-(22398, 4415, 11), -- Spears
-(22398, 4416, 1), -- Undead
-(22398, 5360, 9), -- Whirlwind
+(22398, 4408, 10), -- HP Modifiers
+(22398, 4409, 1), -- MP Modifiers
+(22398, 4410, 12), -- P. Atk. Modifiers
+(22398, 4411, 11), -- M. Atk. Modifiers
+(22398, 4412, 12), -- P. Def. Modifiers
+(22398, 4413, 11), -- M. Def. Modifiers
+(22398, 4414, 2), -- Armor Type
+(22398, 4415, 11), -- Weapon Type
+(22398, 4416, 1), -- Races
+(22398, 5360, 9), -- NPC(party) - Physical Range Close Range Attack - Dark
 (22398, 5462, 1), -- Fire Attacks
 -- Greater Evil
-(22399, 4408, 11), -- HP Increase (3x)
-(22399, 4409, 1), -- MP Increase (1x)
-(22399, 4410, 12), -- Slightly Strong P. Atk.
-(22399, 4411, 11), -- Average M. Atk.
-(22399, 4412, 12), -- Slightly Strong P. Def.
-(22399, 4413, 11), -- Average M. Def.
-(22399, 4414, 2), -- Standard Type
-(22399, 4415, 11), -- Spears
-(22399, 4416, 1), -- Undead
-(22399, 5360, 9), -- Whirlwind
+(22399, 4408, 11), -- HP Modifiers
+(22399, 4409, 1), -- MP Modifiers
+(22399, 4410, 12), -- P. Atk. Modifiers
+(22399, 4411, 11), -- M. Atk. Modifiers
+(22399, 4412, 12), -- P. Def. Modifiers
+(22399, 4413, 11), -- M. Def. Modifiers
+(22399, 4414, 2), -- Armor Type
+(22399, 4415, 11), -- Weapon Type
+(22399, 4416, 1), -- Races
+(22399, 5360, 9), -- NPC(party) - Physical Range Close Range Attack - Dark
 (22399, 5462, 1), -- Fire Attacks
 -- Parme's Healer
-(22400, 4065, 9), -- Heal
-(22400, 4408, 1), -- HP Increase (1x)
-(22400, 4409, 1), -- MP Increase (1x)
-(22400, 4410, 11), -- Average P. Atk.
-(22400, 4411, 11), -- Average M. Atk.
-(22400, 4412, 11), -- Average P. Def.
-(22400, 4413, 11), -- Average M. Def.
-(22400, 4414, 2), -- Standard Type
-(22400, 4415, 3), -- One-handed Sword
-(22400, 4416, 7), -- Spirits
+(22400, 4065, 9), -- NPC Heal
+(22400, 4408, 1), -- HP Modifiers
+(22400, 4409, 1), -- MP Modifiers
+(22400, 4410, 11), -- P. Atk. Modifiers
+(22400, 4411, 11), -- M. Atk. Modifiers
+(22400, 4412, 11), -- P. Def. Modifiers
+(22400, 4413, 11), -- M. Def. Modifiers
+(22400, 4414, 2), -- Armor Type
+(22400, 4415, 3), -- Weapon Type
+(22400, 4416, 7), -- Races
 -- Parme's Healer
-(22401, 4065, 9), -- Heal
-(22401, 4408, 1), -- HP Increase (1x)
-(22401, 4409, 1), -- MP Increase (1x)
-(22401, 4410, 11), -- Average P. Atk.
-(22401, 4411, 11), -- Average M. Atk.
-(22401, 4412, 11), -- Average P. Def.
-(22401, 4413, 11), -- Average M. Def.
-(22401, 4414, 2), -- Standard Type
-(22401, 4415, 3), -- One-handed Sword
-(22401, 4416, 7), -- Spirits
+(22401, 4065, 9), -- NPC Heal
+(22401, 4408, 1), -- HP Modifiers
+(22401, 4409, 1), -- MP Modifiers
+(22401, 4410, 11), -- P. Atk. Modifiers
+(22401, 4411, 11), -- M. Atk. Modifiers
+(22401, 4412, 11), -- P. Def. Modifiers
+(22401, 4413, 11), -- M. Def. Modifiers
+(22401, 4414, 2), -- Armor Type
+(22401, 4415, 3), -- Weapon Type
+(22401, 4416, 7), -- Races
 -- Shadow Column
-(22402, 4178, 12), -- Flame Strike
-(22402, 4408, 1), -- HP Increase (1x)
-(22402, 4409, 1), -- MP Increase (1x)
-(22402, 4410, 11), -- Average P. Atk.
-(22402, 4411, 11), -- Average M. Atk.
-(22402, 4412, 11), -- Average P. Def.
-(22402, 4413, 11), -- Average M. Def.
-(22402, 4414, 2), -- Standard Type
-(22402, 4415, 3), -- One-handed Sword
-(22402, 4416, 2), -- Magic Creatures
-(22402, 4614, 9), -- Death Bomb
+(22402, 4178, 12), -- BOSS Flame Strike
+(22402, 4408, 1), -- HP Modifiers
+(22402, 4409, 1), -- MP Modifiers
+(22402, 4410, 11), -- P. Atk. Modifiers
+(22402, 4411, 11), -- M. Atk. Modifiers
+(22402, 4412, 11), -- P. Def. Modifiers
+(22402, 4413, 11), -- M. Def. Modifiers
+(22402, 4414, 2), -- Armor Type
+(22402, 4415, 3), -- Weapon Type
+(22402, 4416, 2), -- Races
+(22402, 4614, 9), -- NPC Death Bomb
 (22402, 5417, 1), -- Invincible
 -- Foundry Foreman  
-(22403, 4408, 1), -- HP Increase (1x)
-(22403, 4409, 1), -- MP Increase (1x)
-(22403, 4410, 11), -- Average P. Atk.
-(22403, 4411, 11), -- Average M. Atk.
-(22403, 4412, 11), -- Average P. Def.
-(22403, 4413, 11), -- Average M. Def.
-(22403, 4414, 2), -- Standard Type
-(22403, 4415, 3), -- One-handed Sword
-(22403, 4416, 9), -- Demons
-(22403, 5299, 4), -- Whirlwind
-(22403, 5328, 4), -- Unholy Strike
+(22403, 4408, 1), -- HP Modifiers
+(22403, 4409, 1), -- MP Modifiers
+(22403, 4410, 11), -- P. Atk. Modifiers
+(22403, 4411, 11), -- M. Atk. Modifiers
+(22403, 4412, 11), -- P. Def. Modifiers
+(22403, 4413, 11), -- M. Def. Modifiers
+(22403, 4414, 2), -- Armor Type
+(22403, 4415, 3), -- Weapon Type
+(22403, 4416, 9), -- Races
+(22403, 5299, 4), -- NPC(party) - Physical Range Close Range Attack - Dark
+(22403, 5328, 4), -- NPC(party) -Magic Single Long Range DD - Dark
 (22403, 5462, 1), -- Fire Attacks
 -- Arcane Captain
-(22404, 4408, 10), -- HP Increase (2x)
-(22404, 4409, 1), -- MP Increase (1x)
-(22404, 4410, 13), -- Slightly Strong P. Atk.
-(22404, 4411, 11), -- Average M. Atk.
-(22404, 4412, 11), -- Average P. Def.
-(22404, 4413, 11), -- Average M. Def.
-(22404, 4414, 2), -- Standard Type
-(22404, 4415, 3), -- One-handed Sword
-(22404, 4416, 9), -- Demons
-(22404, 5275, 4), -- Whirlwind
-(22404, 5329, 4), -- Unholy Blast
+(22404, 4408, 10), -- HP Modifiers
+(22404, 4409, 1), -- MP Modifiers
+(22404, 4410, 13), -- P. Atk. Modifiers
+(22404, 4411, 11), -- M. Atk. Modifiers
+(22404, 4412, 11), -- P. Def. Modifiers
+(22404, 4413, 11), -- M. Def. Modifiers
+(22404, 4414, 2), -- Armor Type
+(22404, 4415, 3), -- Weapon Type
+(22404, 4416, 9), -- Races
+(22404, 5275, 4), -- NPC(party) - Physical Range Close Range Attack
+(22404, 5329, 4), -- NPC(party) -Magic Range Long Range DD - Holy
 (22404, 5467, 1), -- Dark Attacks
 -- Darion's Faithful Servant
-(22405, 4408, 10), -- HP Increase (2x)
-(22405, 4409, 1), -- MP Increase (1x)
-(22405, 4410, 9), -- Slightly Weak P. Atk.
-(22405, 4411, 11), -- Average M. Atk.
-(22405, 4412, 11), -- Average P. Def.
-(22405, 4413, 11), -- Average M. Def.
-(22405, 4414, 1), -- Heavy Armor Type
-(22405, 4415, 7), -- Daggers
-(22405, 4416, 2), -- Magic Creatures
-(22405, 5336, 3), -- Whirlwind
-(22405, 5359, 3), -- Power Shot
+(22405, 4408, 10), -- HP Modifiers
+(22405, 4409, 1), -- MP Modifiers
+(22405, 4410, 9), -- P. Atk. Modifiers
+(22405, 4411, 11), -- M. Atk. Modifiers
+(22405, 4412, 11), -- P. Def. Modifiers
+(22405, 4413, 11), -- M. Def. Modifiers
+(22405, 4414, 1), -- Armor Type
+(22405, 4415, 7), -- Weapon Type
+(22405, 4416, 2), -- Races
+(22405, 5336, 3), -- NPC(party) - Physical Range Close Range Attack
+(22405, 5359, 3), -- NPC(party) - Physical Single Long Range Attack - Dark
 (22405, 5362, 3), -- Stun
-(22405, 5392, 3), -- Drain Health
+(22405, 5392, 3), -- NPC HP Drain
 (22405, 5467, 1), -- Dark Attacks
 -- Darion's Faithful Servant
-(22406, 4408, 1), -- HP Increase (1x)
-(22406, 4409, 1), -- MP Increase (1x)
-(22406, 4410, 11), -- Average P. Atk.
-(22406, 4411, 11), -- Average M. Atk.
-(22406, 4412, 11), -- Average P. Def.
-(22406, 4413, 11), -- Average M. Def.
-(22406, 4414, 3), -- Light Armor Type
-(22406, 4415, 11), -- Spears
-(22406, 4416, 9), -- Demons
-(22406, 5336, 3), -- Whirlwind
-(22406, 5359, 3), -- Power Shot
+(22406, 4408, 1), -- HP Modifiers
+(22406, 4409, 1), -- MP Modifiers
+(22406, 4410, 11), -- P. Atk. Modifiers
+(22406, 4411, 11), -- M. Atk. Modifiers
+(22406, 4412, 11), -- P. Def. Modifiers
+(22406, 4413, 11), -- M. Def. Modifiers
+(22406, 4414, 3), -- Armor Type
+(22406, 4415, 11), -- Weapon Type
+(22406, 4416, 9), -- Races
+(22406, 5336, 3), -- NPC(party) - Physical Range Close Range Attack
+(22406, 5359, 3), -- NPC(party) - Physical Single Long Range Attack - Dark
 (22406, 5362, 3), -- Stun
-(22406, 5392, 3), -- Drain Health
+(22406, 5392, 3), -- NPC HP Drain
 (22406, 5467, 1), -- Dark Attacks
 -- Darion's Faithful Servant
-(22407, 4408, 10), -- HP Increase (2x)
-(22407, 4409, 1), -- MP Increase (1x)
-(22407, 4410, 15), -- Strong P. Atk.
-(22407, 4411, 11), -- Average M. Atk.
-(22407, 4412, 8), -- Weak P. Def.
-(22407, 4413, 11), -- Average M. Def.
-(22407, 4414, 3), -- Light Armor Type
-(22407, 4415, 11), -- Spears
-(22407, 4416, 9), -- Demons
-(22407, 5336, 3), -- Whirlwind
-(22407, 5359, 3), -- Power Shot
+(22407, 4408, 10), -- HP Modifiers
+(22407, 4409, 1), -- MP Modifiers
+(22407, 4410, 15), -- P. Atk. Modifiers
+(22407, 4411, 11), -- M. Atk. Modifiers
+(22407, 4412, 8), -- P. Def. Modifiers
+(22407, 4413, 11), -- M. Def. Modifiers
+(22407, 4414, 3), -- Armor Type
+(22407, 4415, 11), -- Weapon Type
+(22407, 4416, 9), -- Races
+(22407, 5336, 3), -- NPC(party) - Physical Range Close Range Attack
+(22407, 5359, 3), -- NPC(party) - Physical Single Long Range Attack - Dark
 (22407, 5362, 3), -- Stun
-(22407, 5392, 3), -- Drain Health
+(22407, 5392, 3), -- NPC HP Drain
 (22407, 5467, 1), -- Dark Attacks
 -- Darion's Faithful Servant
-(22408, 4408, 1), -- HP Increase (1x)
-(22408, 4409, 1), -- MP Increase (1x)
-(22408, 4410, 8), -- Weak P. Atk.
-(22408, 4411, 11), -- Average M. Atk.
-(22408, 4412, 8), -- Weak P. Def.
-(22408, 4413, 11), -- Average M. Def.
-(22408, 4414, 3), -- Light Armor Type
-(22408, 4415, 11), -- Spears
-(22408, 4416, 9), -- Demons
-(22408, 5275, 3), -- Whirlwind
-(22408, 5359, 3), -- Power Shot
+(22408, 4408, 1), -- HP Modifiers
+(22408, 4409, 1), -- MP Modifiers
+(22408, 4410, 8), -- P. Atk. Modifiers
+(22408, 4411, 11), -- M. Atk. Modifiers
+(22408, 4412, 8), -- P. Def. Modifiers
+(22408, 4413, 11), -- M. Def. Modifiers
+(22408, 4414, 3), -- Armor Type
+(22408, 4415, 11), -- Weapon Type
+(22408, 4416, 9), -- Races
+(22408, 5275, 3), -- NPC(party) - Physical Range Close Range Attack
+(22408, 5359, 3), -- NPC(party) - Physical Single Long Range Attack - Dark
 (22408, 5365, 3), -- Paralysis
-(22408, 5392, 3), -- Drain Health
+(22408, 5392, 3), -- NPC HP Drain
 (22408, 5467, 1), -- Dark Attacks
 -- Darion's Faithful Servant
-(22409, 4408, 1), -- HP Increase (1x)
-(22409, 4409, 1), -- MP Increase (1x)
-(22409, 4410, 12), -- Slightly Strong P. Atk.
-(22409, 4411, 11), -- Average M. Atk.
-(22409, 4412, 10), -- Slightly Weak P. Def.
-(22409, 4413, 11), -- Average M. Def.
-(22409, 4414, 3), -- Light Armor Type
-(22409, 4415, 11), -- Spears
-(22409, 4416, 9), -- Demons
-(22409, 5275, 3), -- Whirlwind
-(22409, 5359, 3), -- Power Shot
+(22409, 4408, 1), -- HP Modifiers
+(22409, 4409, 1), -- MP Modifiers
+(22409, 4410, 12), -- P. Atk. Modifiers
+(22409, 4411, 11), -- M. Atk. Modifiers
+(22409, 4412, 10), -- P. Def. Modifiers
+(22409, 4413, 11), -- M. Def. Modifiers
+(22409, 4414, 3), -- Armor Type
+(22409, 4415, 11), -- Weapon Type
+(22409, 4416, 9), -- Races
+(22409, 5275, 3), -- NPC(party) - Physical Range Close Range Attack
+(22409, 5359, 3), -- NPC(party) - Physical Single Long Range Attack - Dark
 (22409, 5365, 3), -- Paralysis
-(22409, 5392, 3), -- Drain Health
+(22409, 5392, 3), -- NPC HP Drain
 (22409, 5467, 1), -- Dark Attacks
 -- Darion's Faithful Servant
-(22410, 4408, 1), -- HP Increase (1x)
-(22410, 4409, 1), -- MP Increase (1x)
-(22410, 4410, 15), -- Strong P. Atk.
-(22410, 4411, 11), -- Average M. Atk.
-(22410, 4412, 11), -- Average P. Def.
-(22410, 4413, 11), -- Average M. Def.
-(22410, 4414, 3), -- Light Armor Type
-(22410, 4415, 11), -- Spears
-(22410, 4416, 9), -- Demons
-(22410, 5275, 3), -- Whirlwind
-(22410, 5359, 3), -- Power Shot
+(22410, 4408, 1), -- HP Modifiers
+(22410, 4409, 1), -- MP Modifiers
+(22410, 4410, 15), -- P. Atk. Modifiers
+(22410, 4411, 11), -- M. Atk. Modifiers
+(22410, 4412, 11), -- P. Def. Modifiers
+(22410, 4413, 11), -- M. Def. Modifiers
+(22410, 4414, 3), -- Armor Type
+(22410, 4415, 11), -- Weapon Type
+(22410, 4416, 9), -- Races
+(22410, 5275, 3), -- NPC(party) - Physical Range Close Range Attack
+(22410, 5359, 3), -- NPC(party) - Physical Single Long Range Attack - Dark
 (22410, 5365, 3), -- Paralysis
-(22410, 5392, 3), -- Drain Health
+(22410, 5392, 3), -- NPC HP Drain
 (22410, 5467, 1), -- Dark Attacks
 -- Beleth's Retainer
 (22411, 4086, 1), -- Critical Chance
-(22411, 4408, 13), -- HP Increase (5x)
-(22411, 4409, 1), -- MP Increase (1x)
-(22411, 4410, 8), -- Weak P. Atk.
-(22411, 4411, 11), -- Average M. Atk.
-(22411, 4412, 11), -- Average P. Def.
-(22411, 4413, 11), -- Average M. Def.
-(22411, 4414, 3), -- Light Armor Type
-(22411, 4415, 11), -- Spears
-(22411, 4416, 9), -- Demons
-(22411, 4654, 10), -- Death Link
-(22411, 5299, 5), -- Whirlwind
+(22411, 4408, 13), -- HP Modifiers
+(22411, 4409, 1), -- MP Modifiers
+(22411, 4410, 8), -- P. Atk. Modifiers
+(22411, 4411, 11), -- M. Atk. Modifiers
+(22411, 4412, 11), -- P. Def. Modifiers
+(22411, 4413, 11), -- M. Def. Modifiers
+(22411, 4414, 3), -- Armor Type
+(22411, 4415, 11), -- Weapon Type
+(22411, 4416, 9), -- Races
+(22411, 4654, 10), -- NPC Death Link
+(22411, 5299, 5), -- NPC(party) - Physical Range Close Range Attack - Dark
 (22411, 5467, 1), -- Dark Attacks
 (22411, 5597, 1), -- Invalid Skill cancel
 -- Beleth's Fighter
-(22412, 4408, 10), -- HP Increase (2x)
-(22412, 4409, 1), -- MP Increase (1x)
-(22412, 4410, 17), -- Very Strong P. Atk.
-(22412, 4411, 11), -- Average M. Atk.
-(22412, 4412, 8), -- Weak P. Def.
-(22412, 4413, 11), -- Average M. Def.
-(22412, 4414, 1), -- Heavy Armor Type
-(22412, 4415, 19), -- Dual-Sword Weapons
-(22412, 4416, 9), -- Demons
+(22412, 4408, 10), -- HP Modifiers
+(22412, 4409, 1), -- MP Modifiers
+(22412, 4410, 17), -- P. Atk. Modifiers
+(22412, 4411, 11), -- M. Atk. Modifiers
+(22412, 4412, 8), -- P. Def. Modifiers
+(22412, 4413, 11), -- M. Def. Modifiers
+(22412, 4414, 1), -- Armor Type
+(22412, 4415, 19), -- Weapon Type
+(22412, 4416, 9), -- Races
 (22412, 4438, 5), -- Greater Resist Sleep
 (22412, 4439, 5), -- Greater Resist Hold
 (22412, 4440, 5), -- Greater Resist Paralysis
 (22412, 5203, 11), -- Fear
-(22412, 5299, 5), -- Whirlwind
+(22412, 5299, 5), -- NPC(party) - Physical Range Close Range Attack - Dark
 (22412, 5304, 5), -- Paralysis
 (22412, 5467, 1), -- Dark Attacks
 (22412, 5597, 1), -- Invalid Skill cancel
 -- Beleth's Low Servant
-(22413, 4032, 10), -- Power Strike
-(22413, 4034, 10), -- Ice Bolt
-(22413, 4408, 11), -- HP Increase (3x)
-(22413, 4409, 1), -- MP Increase (1x)
-(22413, 4410, 18), -- Extremely Strong P. Atk.
-(22413, 4411, 11), -- Average M. Atk.
-(22413, 4412, 11), -- Average P. Def.
-(22413, 4413, 11), -- Average M. Def.
-(22413, 4414, 3), -- Light Armor Type
-(22413, 4415, 11), -- Spears
-(22413, 4416, 9), -- Demons
+(22413, 4032, 10), -- NPC Strike
+(22413, 4034, 10), -- Decrease Speed
+(22413, 4408, 11), -- HP Modifiers
+(22413, 4409, 1), -- MP Modifiers
+(22413, 4410, 18), -- P. Atk. Modifiers
+(22413, 4411, 11), -- M. Atk. Modifiers
+(22413, 4412, 11), -- P. Def. Modifiers
+(22413, 4413, 11), -- M. Def. Modifiers
+(22413, 4414, 3), -- Armor Type
+(22413, 4415, 11), -- Weapon Type
+(22413, 4416, 9), -- Races
 (22413, 5083, 4), -- Stun
 (22413, 5467, 1), -- Dark Attacks
 (22413, 5597, 1), -- Invalid Skill cancel
 -- Beleth's Follower
-(22414, 4408, 1), -- HP Increase (1x)
-(22414, 4409, 1), -- MP Increase (1x)
-(22414, 4410, 11), -- Average P. Atk.
-(22414, 4411, 11), -- Average M. Atk.
-(22414, 4412, 11), -- Average P. Def.
-(22414, 4413, 11), -- Average M. Def.
-(22414, 4414, 2), -- Standard Type
-(22414, 4415, 3), -- One-handed Sword
-(22414, 4416, 1), -- Undead
-(22414, 5273, 5), -- Power Strike
+(22414, 4408, 1), -- HP Modifiers
+(22414, 4409, 1), -- MP Modifiers
+(22414, 4410, 11), -- P. Atk. Modifiers
+(22414, 4411, 11), -- M. Atk. Modifiers
+(22414, 4412, 11), -- P. Def. Modifiers
+(22414, 4413, 11), -- M. Def. Modifiers
+(22414, 4414, 2), -- Armor Type
+(22414, 4415, 3), -- Weapon Type
+(22414, 4416, 1), -- Races
+(22414, 5273, 5), -- NPC(party) - Physical Single Close Range Attack
 (22414, 5467, 1), -- Dark Attacks
 (22414, 5597, 1), -- Invalid Skill cancel
 -- Beleth's Devotee
-(22415, 4161, 1), -- Summon
-(22415, 4408, 9), -- HP Increase (1/2x)
-(22415, 4409, 1), -- MP Increase (1x)
-(22415, 4410, 11), -- Average P. Atk.
-(22415, 4411, 14), -- Strong M. Atk.
-(22415, 4412, 11), -- Average P. Def.
-(22415, 4413, 11), -- Average M. Def.
-(22415, 4414, 3), -- Light Armor Type
-(22415, 4415, 1), -- Bare Hands
-(22415, 4416, 9), -- Demons
-(22415, 5389, 2), -- Unholy Strike
-(22415, 5390, 5), -- Unholy Blast
-(22415, 5391, 5), -- Unholy Circle
+(22415, 4161, 1), -- Summon PC
+(22415, 4408, 9), -- HP Modifiers
+(22415, 4409, 1), -- MP Modifiers
+(22415, 4410, 11), -- P. Atk. Modifiers
+(22415, 4411, 14), -- M. Atk. Modifiers
+(22415, 4412, 11), -- P. Def. Modifiers
+(22415, 4413, 11), -- M. Def. Modifiers
+(22415, 4414, 3), -- Armor Type
+(22415, 4415, 1), -- Weapon Type
+(22415, 4416, 9), -- Races
+(22415, 5389, 2), -- NPC(party) -Magic Single Long Range DD - Dark
+(22415, 5390, 5), -- NPC(party) -Magic Range Long Range DD - Holy
+(22415, 5391, 5), -- NPC(party) -Magic Range Close Range DD - Holy
 (22415, 5467, 1), -- Dark Attacks
 (22415, 5597, 1), -- Invalid Skill cancel
 -- Kechi's Captain
-(22416, 4408, 1), -- HP Increase (1x)
-(22416, 4409, 1), -- MP Increase (1x)
-(22416, 4410, 11), -- Average P. Atk.
-(22416, 4411, 13), -- Slightly Strong M. Atk.
-(22416, 4412, 11), -- Average P. Def.
-(22416, 4413, 11), -- Average M. Def.
-(22416, 4414, 3), -- Light Armor Type
-(22416, 4415, 3), -- One-handed Sword
-(22416, 4416, 7), -- Spirits
-(22416, 5273, 4), -- Power Strike
-(22416, 5280, 3), -- Burst Shot
+(22416, 4408, 1), -- HP Modifiers
+(22416, 4409, 1), -- MP Modifiers
+(22416, 4410, 11), -- P. Atk. Modifiers
+(22416, 4411, 13), -- M. Atk. Modifiers
+(22416, 4412, 11), -- P. Def. Modifiers
+(22416, 4413, 11), -- M. Def. Modifiers
+(22416, 4414, 3), -- Armor Type
+(22416, 4415, 3), -- Weapon Type
+(22416, 4416, 7), -- Races
+(22416, 5273, 4), -- NPC(party) - Physical Single Close Range Attack
+(22416, 5280, 3), -- NPC(party) - Physical Range Long Range Attack - Fire
 (22416, 5462, 1), -- Fire Attacks
 -- Kechi's Guard
-(22417, 4104, 10), -- Chill Flame
-(22417, 4160, 10), -- Aura Burn
-(22417, 4408, 14), -- HP Increase (6x)
-(22417, 4409, 1), -- MP Increase (1x)
-(22417, 4410, 11), -- Average P. Atk.
-(22417, 4411, 11), -- Average M. Atk.
-(22417, 4412, 11), -- Average P. Def.
-(22417, 4413, 14), -- Strong M. Def.
-(22417, 4414, 2), -- Standard Type
-(22417, 4415, 1), -- Bare Hands
-(22417, 4416, 9), -- Demons
+(22417, 4104, 10), -- Flame
+(22417, 4160, 10), -- NPC Aura Burn - Magic
+(22417, 4408, 14), -- HP Modifiers
+(22417, 4409, 1), -- MP Modifiers
+(22417, 4410, 11), -- P. Atk. Modifiers
+(22417, 4411, 11), -- M. Atk. Modifiers
+(22417, 4412, 11), -- P. Def. Modifiers
+(22417, 4413, 14), -- M. Def. Modifiers
+(22417, 4414, 2), -- Armor Type
+(22417, 4415, 1), -- Weapon Type
+(22417, 4416, 9), -- Races
 (22417, 4439, 5), -- Greater Resist Hold
 (22417, 4443, 1), -- Greater Resist Blunt Weapons
 (22417, 4444, 1), -- Higher Resist Bow/Crossbow Weapons
 (22417, 4593, 1), -- Decrease P. Def.
 (22417, 5462, 1), -- Fire Attacks
 -- Burning Iris
-(22418, 4032, 10), -- Power Strike
-(22418, 4408, 12), -- HP Increase (4x)
-(22418, 4409, 1), -- MP Increase (1x)
-(22418, 4410, 14), -- Strong P. Atk.
-(22418, 4411, 11), -- Average M. Atk.
-(22418, 4412, 11), -- Average P. Def.
-(22418, 4413, 11), -- Average M. Def.
-(22418, 4414, 2), -- Standard Type
-(22418, 4415, 3), -- One-handed Sword
-(22418, 4416, 9), -- Demons
+(22418, 4032, 10), -- NPC Strike
+(22418, 4408, 12), -- HP Modifiers
+(22418, 4409, 1), -- MP Modifiers
+(22418, 4410, 14), -- P. Atk. Modifiers
+(22418, 4411, 11), -- M. Atk. Modifiers
+(22418, 4412, 11), -- P. Def. Modifiers
+(22418, 4413, 11), -- M. Def. Modifiers
+(22418, 4414, 2), -- Armor Type
+(22418, 4415, 3), -- Weapon Type
+(22418, 4416, 9), -- Races
 (22418, 4460, 2), -- Sword Weak Point
 (22418, 5462, 1), -- Fire Attacks
 -- Flame Iris
-(22419, 4157, 10), -- Blaze
-(22419, 4160, 10), -- Aura Burn
-(22419, 4408, 12), -- HP Increase (4x)
-(22419, 4409, 1), -- MP Increase (1x)
-(22419, 4410, 11), -- Average P. Atk.
-(22419, 4411, 14), -- Strong M. Atk.
-(22419, 4412, 11), -- Average P. Def.
-(22419, 4413, 11), -- Average M. Def.
-(22419, 4414, 2), -- Standard Type
-(22419, 4415, 3), -- One-handed Sword
-(22419, 4416, 9), -- Demons
+(22419, 4157, 10), -- NPC Blaze - Magic
+(22419, 4160, 10), -- NPC Aura Burn - Magic
+(22419, 4408, 12), -- HP Modifiers
+(22419, 4409, 1), -- MP Modifiers
+(22419, 4410, 11), -- P. Atk. Modifiers
+(22419, 4411, 14), -- M. Atk. Modifiers
+(22419, 4412, 11), -- P. Def. Modifiers
+(22419, 4413, 11), -- M. Def. Modifiers
+(22419, 4414, 2), -- Armor Type
+(22419, 4415, 3), -- Weapon Type
+(22419, 4416, 9), -- Races
 (22419, 4460, 2), -- Sword Weak Point
 (22419, 5462, 1), -- Fire Attacks
 -- Brimstone Iris
-(22420, 4072, 10), -- Stun
-(22420, 4078, 10), -- Flame Strike
-(22420, 4408, 12), -- HP Increase (4x)
-(22420, 4409, 1), -- MP Increase (1x)
-(22420, 4410, 14), -- Strong P. Atk.
-(22420, 4411, 11), -- Average M. Atk.
-(22420, 4412, 11), -- Average P. Def.
-(22420, 4413, 13), -- Slightly Strong M. Def.
-(22420, 4414, 2), -- Standard Type
-(22420, 4415, 3), -- One-handed Sword
-(22420, 4416, 9), -- Demons
+(22420, 4072, 10), -- Shock
+(22420, 4078, 10), -- NPC Flamestrike
+(22420, 4408, 12), -- HP Modifiers
+(22420, 4409, 1), -- MP Modifiers
+(22420, 4410, 14), -- P. Atk. Modifiers
+(22420, 4411, 11), -- M. Atk. Modifiers
+(22420, 4412, 11), -- P. Def. Modifiers
+(22420, 4413, 13), -- M. Def. Modifiers
+(22420, 4414, 2), -- Armor Type
+(22420, 4415, 3), -- Weapon Type
+(22420, 4416, 9), -- Races
 (22420, 4460, 2), -- Sword Weak Point
 (22420, 5462, 1), -- Fire Attacks
 -- Failan's Guard
-(22422, 4408, 1), -- HP Increase (1x)
-(22422, 4409, 1), -- MP Increase (1x)
-(22422, 4410, 11), -- Average P. Atk.
-(22422, 4411, 13), -- Slightly Strong M. Atk.
-(22422, 4412, 13), -- Slightly Strong P. Def.
-(22422, 4413, 11), -- Average M. Def.
-(22422, 4414, 2), -- Standard Type
-(22422, 4415, 1), -- Bare Hands
-(22422, 4416, 9), -- Demons
-(22422, 5273, 4), -- Power Strike
-(22422, 5328, 4), -- Unholy Strike
+(22422, 4408, 1), -- HP Modifiers
+(22422, 4409, 1), -- MP Modifiers
+(22422, 4410, 11), -- P. Atk. Modifiers
+(22422, 4411, 13), -- M. Atk. Modifiers
+(22422, 4412, 13), -- P. Def. Modifiers
+(22422, 4413, 11), -- M. Def. Modifiers
+(22422, 4414, 2), -- Armor Type
+(22422, 4415, 1), -- Weapon Type
+(22422, 4416, 9), -- Races
+(22422, 5273, 4), -- NPC(party) - Physical Single Close Range Attack
+(22422, 5328, 4), -- NPC(party) -Magic Single Long Range DD - Dark
 (22422, 5467, 1), -- Dark Attacks
 -- Original Sin Warden
-(22423, 4379, 1), -- Resist Spear Weapons
-(22423, 4408, 8), -- HP Increase (1/4x)
-(22423, 4409, 1), -- MP Increase (1x)
-(22423, 4410, 8), -- Weak P. Atk.
-(22423, 4411, 11), -- Average M. Atk.
-(22423, 4412, 15), -- Strong P. Def.
-(22423, 4413, 11), -- Average M. Def.
-(22423, 4414, 3), -- Light Armor Type
-(22423, 4415, 11), -- Spears
-(22423, 4416, 9), -- Demons
+(22423, 4379, 1), -- Resist Pole Arm
+(22423, 4408, 8), -- HP Modifiers
+(22423, 4409, 1), -- MP Modifiers
+(22423, 4410, 8), -- P. Atk. Modifiers
+(22423, 4411, 11), -- M. Atk. Modifiers
+(22423, 4412, 15), -- P. Def. Modifiers
+(22423, 4413, 11), -- M. Def. Modifiers
+(22423, 4414, 3), -- Armor Type
+(22423, 4415, 11), -- Weapon Type
+(22423, 4416, 9), -- Races
 (22423, 4435, 1), -- Greater Resist Stun
 (22423, 4441, 1), -- Greater Resist Mental Derangement
 (22423, 5467, 1), -- Dark Attacks
 (22423, 5522, 1), -- Chain Magic - Dark Explosion
 (22423, 5523, 1), -- Chain Magic - Unholy Castle
 -- Slave of Greed
-(22424, 4408, 11), -- HP Increase (3x)
-(22424, 4409, 1), -- MP Increase (1x)
-(22424, 4410, 17), -- Very Strong P. Atk.
-(22424, 4411, 13), -- Slightly Strong M. Atk.
-(22424, 4412, 16), -- Very Strong P. Def.
-(22424, 4413, 11), -- Average M. Def.
-(22424, 4414, 2), -- Standard Type
-(22424, 4415, 3), -- One-handed Sword
-(22424, 4416, 9), -- Demons
+(22424, 4408, 11), -- HP Modifiers
+(22424, 4409, 1), -- MP Modifiers
+(22424, 4410, 17), -- P. Atk. Modifiers
+(22424, 4411, 13), -- M. Atk. Modifiers
+(22424, 4412, 16), -- P. Def. Modifiers
+(22424, 4413, 11), -- M. Def. Modifiers
+(22424, 4414, 2), -- Armor Type
+(22424, 4415, 3), -- Weapon Type
+(22424, 4416, 9), -- Races
 (22424, 5467, 1), -- Dark Attacks
 (22424, 5519, 1), -- Chain Buff - Power Up
 -- Slave of Lust
-(22425, 4408, 11), -- HP Increase (3x)
-(22425, 4409, 1), -- MP Increase (1x)
-(22425, 4410, 17), -- Very Strong P. Atk.
-(22425, 4411, 13), -- Slightly Strong M. Atk.
-(22425, 4412, 16), -- Very Strong P. Def.
-(22425, 4413, 11), -- Average M. Def.
-(22425, 4414, 2), -- Standard Type
-(22425, 4415, 3), -- One-handed Sword
-(22425, 4416, 9), -- Demons
+(22425, 4408, 11), -- HP Modifiers
+(22425, 4409, 1), -- MP Modifiers
+(22425, 4410, 17), -- P. Atk. Modifiers
+(22425, 4411, 13), -- M. Atk. Modifiers
+(22425, 4412, 16), -- P. Def. Modifiers
+(22425, 4413, 11), -- M. Def. Modifiers
+(22425, 4414, 2), -- Armor Type
+(22425, 4415, 3), -- Weapon Type
+(22425, 4416, 9), -- Races
 (22425, 5467, 1), -- Dark Attacks
 (22425, 5520, 1), -- Chain Buff - Vampiric Shield
 -- Slave of Wrath
-(22426, 4408, 11), -- HP Increase (3x)
-(22426, 4409, 1), -- MP Increase (1x)
-(22426, 4410, 17), -- Very Strong P. Atk.
-(22426, 4411, 13), -- Slightly Strong M. Atk.
-(22426, 4412, 16), -- Very Strong P. Def.
-(22426, 4413, 11), -- Average M. Def.
-(22426, 4415, 1), -- Bare Hands
-(22426, 4416, 9), -- Demons
+(22426, 4408, 11), -- HP Modifiers
+(22426, 4409, 1), -- MP Modifiers
+(22426, 4410, 17), -- P. Atk. Modifiers
+(22426, 4411, 13), -- M. Atk. Modifiers
+(22426, 4412, 16), -- P. Def. Modifiers
+(22426, 4413, 11), -- M. Def. Modifiers
+(22426, 4415, 1), -- Weapon Type
+(22426, 4416, 9), -- Races
 (22426, 5467, 1), -- Dark Attacks
 (22426, 5521, 1), -- Chain Buff - Critical Sense
 -- Slave of Sloth
-(22427, 4408, 11), -- HP Increase (3x)
-(22427, 4409, 1), -- MP Increase (1x)
-(22427, 4410, 17), -- Very Strong P. Atk.
-(22427, 4411, 13), -- Slightly Strong M. Atk.
-(22427, 4412, 16), -- Very Strong P. Def.
-(22427, 4413, 11), -- Average M. Def.
-(22427, 4414, 2), -- Standard Type
-(22427, 4415, 5), -- Blunt Weapons
-(22427, 4416, 1), -- Undead
+(22427, 4408, 11), -- HP Modifiers
+(22427, 4409, 1), -- MP Modifiers
+(22427, 4410, 17), -- P. Atk. Modifiers
+(22427, 4411, 13), -- M. Atk. Modifiers
+(22427, 4412, 16), -- P. Def. Modifiers
+(22427, 4413, 11), -- M. Def. Modifiers
+(22427, 4414, 2), -- Armor Type
+(22427, 4415, 5), -- Weapon Type
+(22427, 4416, 1), -- Races
 (22427, 5467, 1), -- Dark Attacks
 (22427, 5522, 1), -- Chain Magic - Dark Explosion
 -- Slave of Envy
-(22428, 4408, 11), -- HP Increase (3x)
-(22428, 4409, 1), -- MP Increase (1x)
-(22428, 4410, 17), -- Very Strong P. Atk.
-(22428, 4411, 13), -- Slightly Strong M. Atk.
-(22428, 4412, 16), -- Very Strong P. Def.
-(22428, 4413, 11), -- Average M. Def.
-(22428, 4414, 3), -- Light Armor Type
-(22428, 4415, 11), -- Spears
-(22428, 4416, 9), -- Demons
+(22428, 4408, 11), -- HP Modifiers
+(22428, 4409, 1), -- MP Modifiers
+(22428, 4410, 17), -- P. Atk. Modifiers
+(22428, 4411, 13), -- M. Atk. Modifiers
+(22428, 4412, 16), -- P. Def. Modifiers
+(22428, 4413, 11), -- M. Def. Modifiers
+(22428, 4414, 3), -- Armor Type
+(22428, 4415, 11), -- Weapon Type
+(22428, 4416, 9), -- Races
 (22428, 5467, 1), -- Dark Attacks
 (22428, 5523, 1), -- Chain Magic - Unholy Castle
 -- Slave of Pride
-(22429, 4408, 11), -- HP Increase (3x)
-(22429, 4409, 1), -- MP Increase (1x)
-(22429, 4410, 17), -- Very Strong P. Atk.
-(22429, 4411, 13), -- Slightly Strong M. Atk.
-(22429, 4412, 16), -- Very Strong P. Def.
-(22429, 4413, 11), -- Average M. Def.
-(22429, 4414, 3), -- Light Armor Type
-(22429, 4415, 3), -- One-handed Sword
-(22429, 4416, 9), -- Demons
+(22429, 4408, 11), -- HP Modifiers
+(22429, 4409, 1), -- MP Modifiers
+(22429, 4410, 17), -- P. Atk. Modifiers
+(22429, 4411, 13), -- M. Atk. Modifiers
+(22429, 4412, 16), -- P. Def. Modifiers
+(22429, 4413, 11), -- M. Def. Modifiers
+(22429, 4414, 3), -- Armor Type
+(22429, 4415, 3), -- Weapon Type
+(22429, 4416, 9), -- Races
 (22429, 5467, 1), -- Dark Attacks
 (22429, 5524, 1), -- Chain Buff - Resistance to Bow and Magic attacks
 -- Slave of Gluttony
-(22430, 4408, 11), -- HP Increase (3x)
-(22430, 4409, 1), -- MP Increase (1x)
-(22430, 4410, 17), -- Very Strong P. Atk.
-(22430, 4411, 13), -- Slightly Strong M. Atk.
-(22430, 4412, 16), -- Very Strong P. Def.
-(22430, 4413, 11), -- Average M. Def.
-(22430, 4414, 3), -- Light Armor Type
-(22430, 4415, 7), -- Daggers
-(22430, 4416, 9), -- Demons
+(22430, 4408, 11), -- HP Modifiers
+(22430, 4409, 1), -- MP Modifiers
+(22430, 4410, 17), -- P. Atk. Modifiers
+(22430, 4411, 13), -- M. Atk. Modifiers
+(22430, 4412, 16), -- P. Def. Modifiers
+(22430, 4413, 11), -- M. Def. Modifiers
+(22430, 4414, 3), -- Armor Type
+(22430, 4415, 7), -- Weapon Type
+(22430, 4416, 9), -- Races
 (22430, 5467, 1), -- Dark Attacks
 (22430, 5525, 1), -- Chain Buff - Resistance to Melee Attacks
 -- Original Sin Warden
-(22431, 4379, 1), -- Resist Spear Weapons
-(22431, 4408, 8), -- HP Increase (1/4x)
-(22431, 4409, 1), -- MP Increase (1x)
-(22431, 4410, 9), -- Slightly Weak P. Atk.
-(22431, 4411, 9), -- Slightly Weak M. Atk.
-(22431, 4412, 15), -- Strong P. Def.
-(22431, 4413, 11), -- Average M. Def.
-(22431, 4414, 1), -- Heavy Armor Type
-(22431, 4415, 19), -- Dual-Sword Weapons
-(22431, 4416, 9), -- Demons
+(22431, 4379, 1), -- Resist Pole Arm
+(22431, 4408, 8), -- HP Modifiers
+(22431, 4409, 1), -- MP Modifiers
+(22431, 4410, 9), -- P. Atk. Modifiers
+(22431, 4411, 9), -- M. Atk. Modifiers
+(22431, 4412, 15), -- P. Def. Modifiers
+(22431, 4413, 11), -- M. Def. Modifiers
+(22431, 4414, 1), -- Armor Type
+(22431, 4415, 19), -- Weapon Type
+(22431, 4416, 9), -- Races
 (22431, 4435, 1), -- Greater Resist Stun
 (22431, 4441, 1), -- Greater Resist Mental Derangement
 (22431, 5467, 1), -- Dark Attacks
 (22431, 5522, 1), -- Chain Magic - Dark Explosion
 (22431, 5523, 1), -- Chain Magic - Unholy Castle
 -- Slave of Greed
-(22432, 4408, 1), -- HP Increase (1x)
-(22432, 4409, 1), -- MP Increase (1x)
-(22432, 4410, 3), -- Extremely Weak P. Atk.
-(22432, 4411, 10), -- Slightly Weak M. Atk.
-(22432, 4412, 4), -- Extremely Weak P. Def.
-(22432, 4413, 11), -- Average M. Def.
-(22432, 4414, 2), -- Standard Type
-(22432, 4415, 3), -- One-handed Sword
-(22432, 4416, 9), -- Demons
+(22432, 4408, 1), -- HP Modifiers
+(22432, 4409, 1), -- MP Modifiers
+(22432, 4410, 3), -- P. Atk. Modifiers
+(22432, 4411, 10), -- M. Atk. Modifiers
+(22432, 4412, 4), -- P. Def. Modifiers
+(22432, 4413, 11), -- M. Def. Modifiers
+(22432, 4414, 2), -- Armor Type
+(22432, 4415, 3), -- Weapon Type
+(22432, 4416, 9), -- Races
 (22432, 5467, 1), -- Dark Attacks
 (22432, 5519, 1), -- Chain Buff - Power Up
 -- Slave of Lust
-(22433, 4408, 1), -- HP Increase (1x)
-(22433, 4409, 1), -- MP Increase (1x)
-(22433, 4410, 3), -- Extremely Weak P. Atk.
-(22433, 4411, 10), -- Slightly Weak M. Atk.
-(22433, 4412, 4), -- Extremely Weak P. Def.
-(22433, 4413, 11), -- Average M. Def.
-(22433, 4414, 2), -- Standard Type
-(22433, 4415, 3), -- One-handed Sword
-(22433, 4416, 9), -- Demons
+(22433, 4408, 1), -- HP Modifiers
+(22433, 4409, 1), -- MP Modifiers
+(22433, 4410, 3), -- P. Atk. Modifiers
+(22433, 4411, 10), -- M. Atk. Modifiers
+(22433, 4412, 4), -- P. Def. Modifiers
+(22433, 4413, 11), -- M. Def. Modifiers
+(22433, 4414, 2), -- Armor Type
+(22433, 4415, 3), -- Weapon Type
+(22433, 4416, 9), -- Races
 (22433, 5467, 1), -- Dark Attacks
 (22433, 5520, 1), -- Chain Buff - Vampiric Shield
 -- Slave of Wrath
-(22434, 4408, 1), -- HP Increase (1x)
-(22434, 4409, 1), -- MP Increase (1x)
-(22434, 4410, 3), -- Extremely Weak P. Atk.
-(22434, 4411, 10), -- Slightly Weak M. Atk.
-(22434, 4412, 4), -- Extremely Weak P. Def.
-(22434, 4413, 11), -- Average M. Def.
-(22434, 4415, 1), -- Bare Hands
-(22434, 4416, 9), -- Demons
+(22434, 4408, 1), -- HP Modifiers
+(22434, 4409, 1), -- MP Modifiers
+(22434, 4410, 3), -- P. Atk. Modifiers
+(22434, 4411, 10), -- M. Atk. Modifiers
+(22434, 4412, 4), -- P. Def. Modifiers
+(22434, 4413, 11), -- M. Def. Modifiers
+(22434, 4415, 1), -- Weapon Type
+(22434, 4416, 9), -- Races
 (22434, 5467, 1), -- Dark Attacks
 (22434, 5521, 1), -- Chain Buff - Critical Sense
 -- Slave of Sloth
-(22435, 4408, 1), -- HP Increase (1x)
-(22435, 4409, 1), -- MP Increase (1x)
-(22435, 4410, 3), -- Extremely Weak P. Atk.
-(22435, 4411, 10), -- Slightly Weak M. Atk.
-(22435, 4412, 4), -- Extremely Weak P. Def.
-(22435, 4413, 11), -- Average M. Def.
-(22435, 4414, 2), -- Standard Type
-(22435, 4415, 5), -- Blunt Weapons
-(22435, 4416, 1), -- Undead
+(22435, 4408, 1), -- HP Modifiers
+(22435, 4409, 1), -- MP Modifiers
+(22435, 4410, 3), -- P. Atk. Modifiers
+(22435, 4411, 10), -- M. Atk. Modifiers
+(22435, 4412, 4), -- P. Def. Modifiers
+(22435, 4413, 11), -- M. Def. Modifiers
+(22435, 4414, 2), -- Armor Type
+(22435, 4415, 5), -- Weapon Type
+(22435, 4416, 1), -- Races
 (22435, 5467, 1), -- Dark Attacks
 (22435, 5522, 1), -- Chain Magic - Dark Explosion
 -- Slave of Envy
-(22436, 4408, 1), -- HP Increase (1x)
-(22436, 4409, 1), -- MP Increase (1x)
-(22436, 4410, 3), -- Extremely Weak P. Atk.
-(22436, 4411, 10), -- Slightly Weak M. Atk.
-(22436, 4412, 4), -- Extremely Weak P. Def.
-(22436, 4413, 11), -- Average M. Def.
-(22436, 4414, 3), -- Light Armor Type
-(22436, 4415, 11), -- Spears
-(22436, 4416, 9), -- Demons
+(22436, 4408, 1), -- HP Modifiers
+(22436, 4409, 1), -- MP Modifiers
+(22436, 4410, 3), -- P. Atk. Modifiers
+(22436, 4411, 10), -- M. Atk. Modifiers
+(22436, 4412, 4), -- P. Def. Modifiers
+(22436, 4413, 11), -- M. Def. Modifiers
+(22436, 4414, 3), -- Armor Type
+(22436, 4415, 11), -- Weapon Type
+(22436, 4416, 9), -- Races
 (22436, 5467, 1), -- Dark Attacks
 (22436, 5523, 1), -- Chain Magic - Unholy Castle
 -- Slave of Pride
-(22437, 4408, 1), -- HP Increase (1x)
-(22437, 4409, 1), -- MP Increase (1x)
-(22437, 4410, 3), -- Extremely Weak P. Atk.
-(22437, 4411, 10), -- Slightly Weak M. Atk.
-(22437, 4412, 4), -- Extremely Weak P. Def.
-(22437, 4413, 11), -- Average M. Def.
-(22437, 4414, 3), -- Light Armor Type
-(22437, 4415, 3), -- One-handed Sword
-(22437, 4416, 9), -- Demons
+(22437, 4408, 1), -- HP Modifiers
+(22437, 4409, 1), -- MP Modifiers
+(22437, 4410, 3), -- P. Atk. Modifiers
+(22437, 4411, 10), -- M. Atk. Modifiers
+(22437, 4412, 4), -- P. Def. Modifiers
+(22437, 4413, 11), -- M. Def. Modifiers
+(22437, 4414, 3), -- Armor Type
+(22437, 4415, 3), -- Weapon Type
+(22437, 4416, 9), -- Races
 (22437, 5467, 1), -- Dark Attacks
 (22437, 5524, 1), -- Chain Buff - Resistance to Bow and Magic attacks
 -- Slave of Gluttony
-(22438, 4408, 1), -- HP Increase (1x)
-(22438, 4409, 1), -- MP Increase (1x)
-(22438, 4410, 3), -- Extremely Weak P. Atk.
-(22438, 4411, 10), -- Slightly Weak M. Atk.
-(22438, 4412, 4), -- Extremely Weak P. Def.
-(22438, 4413, 11), -- Average M. Def.
-(22438, 4414, 3), -- Light Armor Type
-(22438, 4415, 7), -- Daggers
-(22438, 4416, 9), -- Demons
+(22438, 4408, 1), -- HP Modifiers
+(22438, 4409, 1), -- MP Modifiers
+(22438, 4410, 3), -- P. Atk. Modifiers
+(22438, 4411, 10), -- M. Atk. Modifiers
+(22438, 4412, 4), -- P. Def. Modifiers
+(22438, 4413, 11), -- M. Def. Modifiers
+(22438, 4414, 3), -- Armor Type
+(22438, 4415, 7), -- Weapon Type
+(22438, 4416, 9), -- Races
 (22438, 5467, 1), -- Dark Attacks
 (22438, 5525, 1), -- Chain Buff - Resistance to Melee Attacks
 -- Beleth's Assassin
-(22439, 4408, 1), -- HP Increase (1x)
-(22439, 4409, 1), -- MP Increase (1x)
-(22439, 4410, 12), -- Slightly Strong P. Atk.
-(22439, 4411, 11), -- Average M. Atk.
-(22439, 4412, 11), -- Average P. Def.
-(22439, 4413, 14), -- Strong M. Def.
-(22439, 4414, 3), -- Light Armor Type
-(22439, 4415, 3), -- One-handed Sword
-(22439, 4416, 6), -- Humanoids
+(22439, 4408, 1), -- HP Modifiers
+(22439, 4409, 1), -- MP Modifiers
+(22439, 4410, 12), -- P. Atk. Modifiers
+(22439, 4411, 11), -- M. Atk. Modifiers
+(22439, 4412, 11), -- P. Def. Modifiers
+(22439, 4413, 14), -- M. Def. Modifiers
+(22439, 4414, 3), -- Armor Type
+(22439, 4415, 3), -- Weapon Type
+(22439, 4416, 6), -- Races
 (22439, 4438, 5), -- Greater Resist Sleep
 (22439, 4439, 5), -- Greater Resist Hold
 (22439, 4440, 5), -- Greater Resist Paralysis
-(22439, 5360, 5), -- Whirlwind
+(22439, 5360, 5), -- NPC(party) - Physical Range Close Range Attack - Dark
 (22439, 5362, 5), -- Stun
 (22439, 5467, 1), -- Dark Attacks
 (22439, 5549, 1), -- Physical Short-range Weakness
 (22439, 5597, 1), -- Invalid Skill cancel
 -- Beleth's Assassin
-(22440, 4408, 1), -- HP Increase (1x)
-(22440, 4409, 1), -- MP Increase (1x)
-(22440, 4410, 12), -- Slightly Strong P. Atk.
-(22440, 4411, 11), -- Average M. Atk.
-(22440, 4412, 11), -- Average P. Def.
-(22440, 4413, 11), -- Average M. Def.
-(22440, 4414, 3), -- Light Armor Type
-(22440, 4415, 3), -- One-handed Sword
-(22440, 4416, 6), -- Humanoids
+(22440, 4408, 1), -- HP Modifiers
+(22440, 4409, 1), -- MP Modifiers
+(22440, 4410, 12), -- P. Atk. Modifiers
+(22440, 4411, 11), -- M. Atk. Modifiers
+(22440, 4412, 11), -- P. Def. Modifiers
+(22440, 4413, 11), -- M. Def. Modifiers
+(22440, 4414, 3), -- Armor Type
+(22440, 4415, 3), -- Weapon Type
+(22440, 4416, 6), -- Races
 (22440, 4438, 5), -- Greater Resist Sleep
 (22440, 4439, 5), -- Greater Resist Hold
 (22440, 4440, 5), -- Greater Resist Paralysis
-(22440, 5360, 5), -- Whirlwind
+(22440, 5360, 5), -- NPC(party) - Physical Range Close Range Attack - Dark
 (22440, 5362, 5), -- Stun
 (22440, 5467, 1), -- Dark Attacks
 (22440, 5549, 1), -- Physical Short-range Weakness
 (22440, 5597, 1), -- Invalid Skill cancel
 -- Beleth's Minion
-(22441, 4408, 10), -- HP Increase (2x)
-(22441, 4409, 1), -- MP Increase (1x)
-(22441, 4410, 11), -- Average P. Atk.
-(22441, 4411, 11), -- Average M. Atk.
-(22441, 4412, 11), -- Average P. Def.
-(22441, 4413, 11), -- Average M. Def.
-(22441, 4414, 2), -- Standard Type
-(22441, 4415, 3), -- One-handed Sword
-(22441, 4416, 9), -- Demons
+(22441, 4408, 10), -- HP Modifiers
+(22441, 4409, 1), -- MP Modifiers
+(22441, 4410, 11), -- P. Atk. Modifiers
+(22441, 4411, 11), -- M. Atk. Modifiers
+(22441, 4412, 11), -- P. Def. Modifiers
+(22441, 4413, 11), -- M. Def. Modifiers
+(22441, 4414, 2), -- Armor Type
+(22441, 4415, 3), -- Weapon Type
+(22441, 4416, 9), -- Races
 (22441, 4438, 5), -- Greater Resist Sleep
 (22441, 4439, 5), -- Greater Resist Hold
 (22441, 4440, 5), -- Greater Resist Paralysis
-(22441, 5275, 7), -- Whirlwind
+(22441, 5275, 7), -- NPC(party) - Physical Range Close Range Attack
 (22441, 5301, 7), -- Stun
 (22441, 5467, 1), -- Dark Attacks
 (22441, 5597, 1), -- Invalid Skill cancel
 -- Beleth's Minion
-(22442, 4408, 10), -- HP Increase (2x)
-(22442, 4409, 1), -- MP Increase (1x)
-(22442, 4410, 9), -- Slightly Weak P. Atk.
-(22442, 4411, 11), -- Average M. Atk.
-(22442, 4412, 11), -- Average P. Def.
-(22442, 4413, 11), -- Average M. Def.
-(22442, 4414, 2), -- Standard Type
-(22442, 4415, 3), -- One-handed Sword
-(22442, 4416, 9), -- Demons
+(22442, 4408, 10), -- HP Modifiers
+(22442, 4409, 1), -- MP Modifiers
+(22442, 4410, 9), -- P. Atk. Modifiers
+(22442, 4411, 11), -- M. Atk. Modifiers
+(22442, 4412, 11), -- P. Def. Modifiers
+(22442, 4413, 11), -- M. Def. Modifiers
+(22442, 4414, 2), -- Armor Type
+(22442, 4415, 3), -- Weapon Type
+(22442, 4416, 9), -- Races
 (22442, 4438, 5), -- Greater Resist Sleep
 (22442, 4439, 5), -- Greater Resist Hold
 (22442, 4440, 5), -- Greater Resist Paralysis
-(22442, 5334, 3), -- Power Strike
-(22442, 5336, 3), -- Whirlwind
+(22442, 5334, 3), -- NPC(party) - Physical Single Close Range Attack
+(22442, 5336, 3), -- NPC(party) - Physical Range Close Range Attack
 (22442, 5467, 1), -- Dark Attacks
 (22442, 5597, 1), -- Invalid Skill cancel
 -- Kertang's Messenger
-(22443, 4408, 1), -- HP Increase (1x)
-(22443, 4409, 1), -- MP Increase (1x)
-(22443, 4410, 11), -- Average P. Atk.
-(22443, 4411, 11), -- Average M. Atk.
-(22443, 4412, 11), -- Average P. Def.
-(22443, 4413, 11), -- Average M. Def.
-(22443, 4414, 3), -- Light Armor Type
-(22443, 4415, 1), -- Bare Hands
-(22443, 4416, 3), -- Beasts
+(22443, 4408, 1), -- HP Modifiers
+(22443, 4409, 1), -- MP Modifiers
+(22443, 4410, 11), -- P. Atk. Modifiers
+(22443, 4411, 11), -- M. Atk. Modifiers
+(22443, 4412, 11), -- P. Def. Modifiers
+(22443, 4413, 11), -- M. Def. Modifiers
+(22443, 4414, 3), -- Armor Type
+(22443, 4415, 1), -- Weapon Type
+(22443, 4416, 3), -- Races
 (22443, 4579, 5), -- Bleed
 (22443, 4582, 5), -- Poison
 -- Kertang's Messenger
-(22444, 4408, 1), -- HP Increase (1x)
-(22444, 4409, 1), -- MP Increase (1x)
-(22444, 4410, 11), -- Average P. Atk.
-(22444, 4411, 11), -- Average M. Atk.
-(22444, 4412, 11), -- Average P. Def.
-(22444, 4413, 11), -- Average M. Def.
-(22444, 4414, 3), -- Light Armor Type
-(22444, 4415, 1), -- Bare Hands
-(22444, 4416, 3), -- Beasts
+(22444, 4408, 1), -- HP Modifiers
+(22444, 4409, 1), -- MP Modifiers
+(22444, 4410, 11), -- P. Atk. Modifiers
+(22444, 4411, 11), -- M. Atk. Modifiers
+(22444, 4412, 11), -- P. Def. Modifiers
+(22444, 4413, 11), -- M. Def. Modifiers
+(22444, 4414, 3), -- Armor Type
+(22444, 4415, 1), -- Weapon Type
+(22444, 4416, 3), -- Races
 (22444, 4579, 5), -- Bleed
 (22444, 4582, 6), -- Poison
 -- Kertang's Messenger
-(22445, 4408, 1), -- HP Increase (1x)
-(22445, 4409, 1), -- MP Increase (1x)
-(22445, 4410, 11), -- Average P. Atk.
-(22445, 4411, 11), -- Average M. Atk.
-(22445, 4412, 11), -- Average P. Def.
-(22445, 4413, 11), -- Average M. Def.
-(22445, 4414, 3), -- Light Armor Type
-(22445, 4415, 1), -- Bare Hands
-(22445, 4416, 3), -- Beasts
+(22445, 4408, 1), -- HP Modifiers
+(22445, 4409, 1), -- MP Modifiers
+(22445, 4410, 11), -- P. Atk. Modifiers
+(22445, 4411, 11), -- M. Atk. Modifiers
+(22445, 4412, 11), -- P. Def. Modifiers
+(22445, 4413, 11), -- M. Def. Modifiers
+(22445, 4414, 3), -- Armor Type
+(22445, 4415, 1), -- Weapon Type
+(22445, 4416, 3), -- Races
 (22445, 4579, 6), -- Bleed
 (22445, 4606, 7), -- Poison
 -- Kertang's Messenger
-(22446, 4408, 1), -- HP Increase (1x)
-(22446, 4409, 1), -- MP Increase (1x)
-(22446, 4410, 11), -- Average P. Atk.
-(22446, 4411, 11), -- Average M. Atk.
-(22446, 4412, 11), -- Average P. Def.
-(22446, 4413, 11), -- Average M. Def.
-(22446, 4414, 3), -- Light Armor Type
-(22446, 4415, 1), -- Bare Hands
-(22446, 4416, 3), -- Beasts
+(22446, 4408, 1), -- HP Modifiers
+(22446, 4409, 1), -- MP Modifiers
+(22446, 4410, 11), -- P. Atk. Modifiers
+(22446, 4411, 11), -- M. Atk. Modifiers
+(22446, 4412, 11), -- P. Def. Modifiers
+(22446, 4413, 11), -- M. Def. Modifiers
+(22446, 4414, 3), -- Armor Type
+(22446, 4415, 1), -- Weapon Type
+(22446, 4416, 3), -- Races
 (22446, 4597, 8), -- Bleed
 (22446, 4606, 8), -- Poison
 -- Kertang's Messenger
-(22447, 4078, 9), -- Flame Strike
-(22447, 4408, 1), -- HP Increase (1x)
-(22447, 4409, 1), -- MP Increase (1x)
-(22447, 4410, 11), -- Average P. Atk.
-(22447, 4411, 11), -- Average M. Atk.
-(22447, 4412, 11), -- Average P. Def.
-(22447, 4413, 11), -- Average M. Def.
-(22447, 4414, 3), -- Light Armor Type
-(22447, 4415, 1), -- Bare Hands
-(22447, 4416, 3), -- Beasts
+(22447, 4078, 9), -- NPC Flamestrike
+(22447, 4408, 1), -- HP Modifiers
+(22447, 4409, 1), -- MP Modifiers
+(22447, 4410, 11), -- P. Atk. Modifiers
+(22447, 4411, 11), -- M. Atk. Modifiers
+(22447, 4412, 11), -- P. Def. Modifiers
+(22447, 4413, 11), -- M. Def. Modifiers
+(22447, 4414, 3), -- Armor Type
+(22447, 4415, 1), -- Weapon Type
+(22447, 4416, 3), -- Races
 (22447, 4597, 9), -- Bleed
 (22447, 4606, 9), -- Poison
 -- Leodas
-(22448, 4379, 1), -- Resist Spear Weapons
-(22448, 4408, 11), -- HP Increase (3x)
-(22448, 4409, 1), -- MP Increase (1x)
-(22448, 4410, 9), -- Slightly Weak P. Atk.
-(22448, 4411, 11), -- Average M. Atk.
-(22448, 4412, 15), -- Strong P. Def.
-(22448, 4413, 11), -- Average M. Def.
-(22448, 4414, 2), -- Standard Type
-(22448, 4415, 3), -- One-handed Sword
-(22448, 4416, 14), -- Humans
+(22448, 4379, 1), -- Resist Pole Arm
+(22448, 4408, 11), -- HP Modifiers
+(22448, 4409, 1), -- MP Modifiers
+(22448, 4410, 9), -- P. Atk. Modifiers
+(22448, 4411, 11), -- M. Atk. Modifiers
+(22448, 4412, 15), -- P. Def. Modifiers
+(22448, 4413, 11), -- M. Def. Modifiers
+(22448, 4414, 2), -- Armor Type
+(22448, 4415, 3), -- Weapon Type
+(22448, 4416, 14), -- Races
 (22448, 4435, 1), -- Greater Resist Stun
 (22448, 4441, 1), -- Greater Resist Mental Derangement
 (22448, 5203, 10), -- Fear
-(22448, 5356, 5), -- Whirlwind
-(22448, 5438, 5), -- Heal
-(22448, 5550, 11), -- Trigger Stun
+(22448, 5356, 5), -- NPC(party) - Physical Range Close Range Attack - Holy
+(22448, 5438, 5), -- NPC party 30 Clan Heal
+(22448, 5550, 11), -- NPC Trigger Stun
 -- Amaskari
 (22449, 4095, 1), -- Damage Shield
-(22449, 4277, 4), -- Resist Poison Attacks
-(22449, 4285, 4), -- Resist Sleep Attacks
-(22449, 4287, 4), -- Resist Hold Attacks
-(22449, 4388, 4), -- Resist Paralysis Attacks
-(22449, 4408, 1), -- HP Increase (1x)
-(22449, 4409, 1), -- MP Increase (1x)
-(22449, 4410, 11), -- Average P. Atk.
-(22449, 4411, 8), -- Weak M. Atk.
-(22449, 4412, 11), -- Average P. Def.
-(22449, 4413, 14), -- Strong M. Def.
-(22449, 4414, 2), -- Standard Type
-(22449, 4415, 5), -- Blunt Weapons
-(22449, 4416, 9), -- Demons
+(22449, 4277, 4), -- Resist Poison
+(22449, 4285, 4), -- Resist Sleep
+(22449, 4287, 4), -- Resist Hold
+(22449, 4388, 4), -- Resist Paralysis
+(22449, 4408, 1), -- HP Modifiers
+(22449, 4409, 1), -- MP Modifiers
+(22449, 4410, 11), -- P. Atk. Modifiers
+(22449, 4411, 8), -- M. Atk. Modifiers
+(22449, 4412, 11), -- P. Def. Modifiers
+(22449, 4413, 14), -- M. Def. Modifiers
+(22449, 4414, 2), -- Armor Type
+(22449, 4415, 5), -- Weapon Type
+(22449, 4416, 9), -- Races
 (22449, 5254, 11), -- Invasion of Spirit
-(22449, 5329, 5), -- Unholy Blast
-(22449, 5330, 5), -- Unholy Circle
+(22449, 5329, 5), -- NPC(party) -Magic Range Long Range DD - Holy
+(22449, 5330, 5), -- NPC(party) -Magic Range Close Range DD - Holy
 (22449, 5467, 1), -- Dark Attacks
 -- Tortured Native
-(22450, 4285, 5), -- Resist Sleep Attacks
-(22450, 4287, 5), -- Resist Hold Attacks
-(22450, 4388, 5), -- Resist Paralysis Attacks
-(22450, 4408, 1), -- HP Increase (1x)
-(22450, 4409, 1), -- MP Increase (1x)
-(22450, 4410, 11), -- Average P. Atk.
-(22450, 4411, 11), -- Average M. Atk.
-(22450, 4412, 11), -- Average P. Def.
-(22450, 4413, 11), -- Average M. Def.
-(22450, 4414, 2), -- Standard Type
-(22450, 4415, 3), -- One-handed Sword
-(22450, 4416, 14), -- Humans
+(22450, 4285, 5), -- Resist Sleep
+(22450, 4287, 5), -- Resist Hold
+(22450, 4388, 5), -- Resist Paralysis
+(22450, 4408, 1), -- HP Modifiers
+(22450, 4409, 1), -- MP Modifiers
+(22450, 4410, 11), -- P. Atk. Modifiers
+(22450, 4411, 11), -- M. Atk. Modifiers
+(22450, 4412, 11), -- P. Def. Modifiers
+(22450, 4413, 11), -- M. Def. Modifiers
+(22450, 4414, 2), -- Armor Type
+(22450, 4415, 3), -- Weapon Type
+(22450, 4416, 14), -- Races
 -- Native Elite Soldier
-(22451, 4232, 11), -- Whirlwind
-(22451, 4379, 1), -- Resist Spear Weapons
-(22451, 4408, 6), -- HP Very High
-(22451, 4409, 1), -- MP Increase (1x)
-(22451, 4410, 14), -- Strong P. Atk.
-(22451, 4411, 11), -- Average M. Atk.
-(22451, 4412, 11), -- Average P. Def.
-(22451, 4413, 11), -- Average M. Def.
-(22451, 4414, 2), -- Standard Type
-(22451, 4415, 3), -- One-handed Sword
-(22451, 4416, 14), -- Humans
+(22451, 4232, 11), -- NPC AE Strike
+(22451, 4379, 1), -- Resist Pole Arm
+(22451, 4408, 6), -- HP Modifiers
+(22451, 4409, 1), -- MP Modifiers
+(22451, 4410, 14), -- P. Atk. Modifiers
+(22451, 4411, 11), -- M. Atk. Modifiers
+(22451, 4412, 11), -- P. Def. Modifiers
+(22451, 4413, 11), -- M. Def. Modifiers
+(22451, 4414, 2), -- Armor Type
+(22451, 4415, 3), -- Weapon Type
+(22451, 4416, 14), -- Races
 (22451, 4435, 1), -- Greater Resist Stun
 (22451, 4441, 1), -- Greater Resist Mental Derangement
 -- White Skull Kanabion
-(22452, 4032, 2), -- Power Strike
-(22452, 4408, 1), -- HP Increase (1x)
-(22452, 4409, 1), -- MP Increase (1x)
-(22452, 4410, 11), -- Average P. Atk.
-(22452, 4411, 11), -- Average M. Atk.
-(22452, 4412, 11), -- Average P. Def.
-(22452, 4413, 11), -- Average M. Def.
-(22452, 4414, 3), -- Light Armor Type
-(22452, 4415, 11), -- Spears
-(22452, 4416, 1), -- Undead
-(22452, 5719, 1), -- Kanabion Susceptibility
+(22452, 4032, 2), -- NPC Strike
+(22452, 4408, 1), -- HP Modifiers
+(22452, 4409, 1), -- MP Modifiers
+(22452, 4410, 11), -- P. Atk. Modifiers
+(22452, 4411, 11), -- M. Atk. Modifiers
+(22452, 4412, 11), -- P. Def. Modifiers
+(22452, 4413, 11), -- M. Def. Modifiers
+(22452, 4414, 3), -- Armor Type
+(22452, 4415, 11), -- Weapon Type
+(22452, 4416, 1), -- Races
+(22452, 5719, 1), -- Kamabion Susceptibility
 -- White Skull Kanabion
-(22453, 4032, 2), -- Power Strike
-(22453, 4408, 1), -- HP Increase (1x)
-(22453, 4409, 1), -- MP Increase (1x)
-(22453, 4410, 11), -- Average P. Atk.
-(22453, 4411, 11), -- Average M. Atk.
-(22453, 4412, 11), -- Average P. Def.
-(22453, 4413, 11), -- Average M. Def.
-(22453, 4414, 2), -- Standard Type
-(22453, 4415, 13), -- Two-handed Sword
-(22453, 4416, 1), -- Undead
+(22453, 4032, 2), -- NPC Strike
+(22453, 4408, 1), -- HP Modifiers
+(22453, 4409, 1), -- MP Modifiers
+(22453, 4410, 11), -- P. Atk. Modifiers
+(22453, 4411, 11), -- M. Atk. Modifiers
+(22453, 4412, 11), -- P. Def. Modifiers
+(22453, 4413, 11), -- M. Def. Modifiers
+(22453, 4414, 2), -- Armor Type
+(22453, 4415, 13), -- Weapon Type
+(22453, 4416, 1), -- Races
 (22453, 4436, 5), -- Greater Resist Poison
 (22453, 4437, 5), -- Greater Resist Bleeding
-(22453, 5719, 1), -- Kanabion Susceptibility
+(22453, 5719, 1), -- Kamabion Susceptibility
 -- White Skull Kanabion
-(22454, 4032, 2), -- Power Strike
-(22454, 4340, 1), -- Ultimate Buff
-(22454, 4408, 1), -- HP Increase (1x)
-(22454, 4409, 1), -- MP Increase (1x)
-(22454, 4410, 11), -- Average P. Atk.
-(22454, 4411, 11), -- Average M. Atk.
-(22454, 4412, 11), -- Average P. Def.
-(22454, 4413, 11), -- Average M. Def.
-(22454, 4414, 2), -- Standard Type
-(22454, 4415, 7), -- Daggers
-(22454, 4416, 1), -- Undead
+(22454, 4032, 2), -- NPC Strike
+(22454, 4340, 1), -- Ultimate Buff, 2nd
+(22454, 4408, 1), -- HP Modifiers
+(22454, 4409, 1), -- MP Modifiers
+(22454, 4410, 11), -- P. Atk. Modifiers
+(22454, 4411, 11), -- M. Atk. Modifiers
+(22454, 4412, 11), -- P. Def. Modifiers
+(22454, 4413, 11), -- M. Def. Modifiers
+(22454, 4414, 2), -- Armor Type
+(22454, 4415, 7), -- Weapon Type
+(22454, 4416, 1), -- Races
 (22454, 4436, 5), -- Greater Resist Poison
 (22454, 4437, 5), -- Greater Resist Bleeding
-(22454, 5719, 1), -- Kanabion Susceptibility
+(22454, 5719, 1), -- Kamabion Susceptibility
 -- Begrudged Kanabion
-(22455, 4032, 3), -- Power Strike
-(22455, 4408, 1), -- HP Increase (1x)
-(22455, 4409, 1), -- MP Increase (1x)
-(22455, 4410, 11), -- Average P. Atk.
-(22455, 4411, 11), -- Average M. Atk.
-(22455, 4412, 11), -- Average P. Def.
-(22455, 4413, 11), -- Average M. Def.
-(22455, 4414, 2), -- Standard Type
-(22455, 4415, 3), -- One-handed Sword
-(22455, 4416, 6), -- Humanoids
-(22455, 5719, 1), -- Kanabion Susceptibility
+(22455, 4032, 3), -- NPC Strike
+(22455, 4408, 1), -- HP Modifiers
+(22455, 4409, 1), -- MP Modifiers
+(22455, 4410, 11), -- P. Atk. Modifiers
+(22455, 4411, 11), -- M. Atk. Modifiers
+(22455, 4412, 11), -- P. Def. Modifiers
+(22455, 4413, 11), -- M. Def. Modifiers
+(22455, 4414, 2), -- Armor Type
+(22455, 4415, 3), -- Weapon Type
+(22455, 4416, 6), -- Races
+(22455, 5719, 1), -- Kamabion Susceptibility
 -- Begrudged Kanabion
-(22456, 4032, 3), -- Power Strike
-(22456, 4408, 1), -- HP Increase (1x)
-(22456, 4409, 1), -- MP Increase (1x)
-(22456, 4410, 11), -- Average P. Atk.
-(22456, 4411, 11), -- Average M. Atk.
-(22456, 4412, 11), -- Average P. Def.
-(22456, 4413, 11), -- Average M. Def.
-(22456, 4414, 2), -- Standard Type
-(22456, 4415, 7), -- Daggers
-(22456, 4416, 6), -- Humanoids
-(22456, 5719, 1), -- Kanabion Susceptibility
+(22456, 4032, 3), -- NPC Strike
+(22456, 4408, 1), -- HP Modifiers
+(22456, 4409, 1), -- MP Modifiers
+(22456, 4410, 11), -- P. Atk. Modifiers
+(22456, 4411, 11), -- M. Atk. Modifiers
+(22456, 4412, 11), -- P. Def. Modifiers
+(22456, 4413, 11), -- M. Def. Modifiers
+(22456, 4414, 2), -- Armor Type
+(22456, 4415, 7), -- Weapon Type
+(22456, 4416, 6), -- Races
+(22456, 5719, 1), -- Kamabion Susceptibility
 -- Begrudged Kanabion
-(22457, 4032, 3), -- Power Strike
-(22457, 4340, 1), -- Ultimate Buff
-(22457, 4408, 1), -- HP Increase (1x)
-(22457, 4409, 1), -- MP Increase (1x)
-(22457, 4410, 11), -- Average P. Atk.
-(22457, 4411, 11), -- Average M. Atk.
-(22457, 4412, 11), -- Average P. Def.
-(22457, 4413, 11), -- Average M. Def.
-(22457, 4414, 3), -- Light Armor Type
-(22457, 4415, 7), -- Daggers
-(22457, 4416, 6), -- Humanoids
-(22457, 5719, 1), -- Kanabion Susceptibility
+(22457, 4032, 3), -- NPC Strike
+(22457, 4340, 1), -- Ultimate Buff, 2nd
+(22457, 4408, 1), -- HP Modifiers
+(22457, 4409, 1), -- MP Modifiers
+(22457, 4410, 11), -- P. Atk. Modifiers
+(22457, 4411, 11), -- M. Atk. Modifiers
+(22457, 4412, 11), -- P. Def. Modifiers
+(22457, 4413, 11), -- M. Def. Modifiers
+(22457, 4414, 3), -- Armor Type
+(22457, 4415, 7), -- Weapon Type
+(22457, 4416, 6), -- Races
+(22457, 5719, 1), -- Kamabion Susceptibility
 -- Rotten Kanabion
-(22458, 4032, 3), -- Power Strike
-(22458, 4408, 1), -- HP Increase (1x)
-(22458, 4409, 1), -- MP Increase (1x)
-(22458, 4410, 11), -- Average P. Atk.
-(22458, 4411, 11), -- Average M. Atk.
-(22458, 4412, 11), -- Average P. Def.
-(22458, 4413, 11), -- Average M. Def.
-(22458, 4414, 2), -- Standard Type
-(22458, 4415, 1), -- Bare Hands
-(22458, 4416, 1), -- Undead
-(22458, 5719, 1), -- Kanabion Susceptibility
+(22458, 4032, 3), -- NPC Strike
+(22458, 4408, 1), -- HP Modifiers
+(22458, 4409, 1), -- MP Modifiers
+(22458, 4410, 11), -- P. Atk. Modifiers
+(22458, 4411, 11), -- M. Atk. Modifiers
+(22458, 4412, 11), -- P. Def. Modifiers
+(22458, 4413, 11), -- M. Def. Modifiers
+(22458, 4414, 2), -- Armor Type
+(22458, 4415, 1), -- Weapon Type
+(22458, 4416, 1), -- Races
+(22458, 5719, 1), -- Kamabion Susceptibility
 -- Rotten Kanabion
-(22459, 4032, 3), -- Power Strike
-(22459, 4408, 1), -- HP Increase (1x)
-(22459, 4409, 1), -- MP Increase (1x)
-(22459, 4410, 11), -- Average P. Atk.
-(22459, 4411, 11), -- Average M. Atk.
-(22459, 4412, 11), -- Average P. Def.
-(22459, 4413, 11), -- Average M. Def.
-(22459, 4414, 2), -- Standard Type
-(22459, 4415, 3), -- One-handed Sword
-(22459, 4416, 1), -- Undead
-(22459, 5719, 1), -- Kanabion Susceptibility
+(22459, 4032, 3), -- NPC Strike
+(22459, 4408, 1), -- HP Modifiers
+(22459, 4409, 1), -- MP Modifiers
+(22459, 4410, 11), -- P. Atk. Modifiers
+(22459, 4411, 11), -- M. Atk. Modifiers
+(22459, 4412, 11), -- P. Def. Modifiers
+(22459, 4413, 11), -- M. Def. Modifiers
+(22459, 4414, 2), -- Armor Type
+(22459, 4415, 3), -- Weapon Type
+(22459, 4416, 1), -- Races
+(22459, 5719, 1), -- Kamabion Susceptibility
 -- Rotten Kanabion
-(22460, 4032, 3), -- Power Strike
-(22460, 4340, 1), -- Ultimate Buff
-(22460, 4408, 1), -- HP Increase (1x)
-(22460, 4409, 1), -- MP Increase (1x)
-(22460, 4410, 11), -- Average P. Atk.
-(22460, 4411, 11), -- Average M. Atk.
-(22460, 4412, 11), -- Average P. Def.
-(22460, 4413, 11), -- Average M. Def.
-(22460, 4414, 2), -- Standard Type
-(22460, 4415, 1), -- Bare Hands
-(22460, 4416, 1), -- Undead
-(22460, 5719, 1); -- Kanabion Susceptibility
+(22460, 4032, 3), -- NPC Strike
+(22460, 4340, 1), -- Ultimate Buff, 2nd
+(22460, 4408, 1), -- HP Modifiers
+(22460, 4409, 1), -- MP Modifiers
+(22460, 4410, 11), -- P. Atk. Modifiers
+(22460, 4411, 11), -- M. Atk. Modifiers
+(22460, 4412, 11), -- P. Def. Modifiers
+(22460, 4413, 11), -- M. Def. Modifiers
+(22460, 4414, 2), -- Armor Type
+(22460, 4415, 1), -- Weapon Type
+(22460, 4416, 1), -- Races
+(22460, 5719, 1); -- Kamabion Susceptibility
 
 INSERT INTO `npcskills` VALUES
 -- Gluttonous Kanabion
-(22461, 4032, 4), -- Power Strike
-(22461, 4408, 1), -- HP Increase (1x)
-(22461, 4409, 1), -- MP Increase (1x)
-(22461, 4410, 11), -- Average P. Atk.
-(22461, 4411, 11), -- Average M. Atk.
-(22461, 4412, 11), -- Average P. Def.
-(22461, 4413, 11), -- Average M. Def.
-(22461, 4414, 1), -- Heavy Armor Type
-(22461, 4415, 3), -- One-handed Sword
-(22461, 4416, 6), -- Humanoids
-(22461, 5719, 1), -- Kanabion Susceptibility
+(22461, 4032, 4), -- NPC Strike
+(22461, 4408, 1), -- HP Modifiers
+(22461, 4409, 1), -- MP Modifiers
+(22461, 4410, 11), -- P. Atk. Modifiers
+(22461, 4411, 11), -- M. Atk. Modifiers
+(22461, 4412, 11), -- P. Def. Modifiers
+(22461, 4413, 11), -- M. Def. Modifiers
+(22461, 4414, 1), -- Armor Type
+(22461, 4415, 3), -- Weapon Type
+(22461, 4416, 6), -- Races
+(22461, 5719, 1), -- Kamabion Susceptibility
 -- Gluttonous Kanabion
-(22462, 4032, 4), -- Power Strike
-(22462, 4408, 1), -- HP Increase (1x)
-(22462, 4409, 1), -- MP Increase (1x)
-(22462, 4410, 11), -- Average P. Atk.
-(22462, 4411, 11), -- Average M. Atk.
-(22462, 4412, 11), -- Average P. Def.
-(22462, 4413, 11), -- Average M. Def.
-(22462, 4414, 1), -- Heavy Armor Type
-(22462, 4415, 11), -- Spears
-(22462, 4416, 6), -- Humanoids
-(22462, 5719, 1), -- Kanabion Susceptibility
+(22462, 4032, 4), -- NPC Strike
+(22462, 4408, 1), -- HP Modifiers
+(22462, 4409, 1), -- MP Modifiers
+(22462, 4410, 11), -- P. Atk. Modifiers
+(22462, 4411, 11), -- M. Atk. Modifiers
+(22462, 4412, 11), -- P. Def. Modifiers
+(22462, 4413, 11), -- M. Def. Modifiers
+(22462, 4414, 1), -- Armor Type
+(22462, 4415, 11), -- Weapon Type
+(22462, 4416, 6), -- Races
+(22462, 5719, 1), -- Kamabion Susceptibility
 -- Gluttonous Kanabion
-(22463, 4032, 4), -- Power Strike
-(22463, 4340, 1), -- Ultimate Buff
-(22463, 4408, 1), -- HP Increase (1x)
-(22463, 4409, 1), -- MP Increase (1x)
-(22463, 4410, 11), -- Average P. Atk.
-(22463, 4411, 11), -- Average M. Atk.
-(22463, 4412, 11), -- Average P. Def.
-(22463, 4413, 11), -- Average M. Def.
-(22463, 4414, 2), -- Standard Type
-(22463, 4415, 3), -- One-handed Sword
-(22463, 4416, 6), -- Humanoids
-(22463, 5719, 1), -- Kanabion Susceptibility
+(22463, 4032, 4), -- NPC Strike
+(22463, 4340, 1), -- Ultimate Buff, 2nd
+(22463, 4408, 1), -- HP Modifiers
+(22463, 4409, 1), -- MP Modifiers
+(22463, 4410, 11), -- P. Atk. Modifiers
+(22463, 4411, 11), -- M. Atk. Modifiers
+(22463, 4412, 11), -- P. Def. Modifiers
+(22463, 4413, 11), -- M. Def. Modifiers
+(22463, 4414, 2), -- Armor Type
+(22463, 4415, 3), -- Weapon Type
+(22463, 4416, 6), -- Races
+(22463, 5719, 1), -- Kamabion Susceptibility
 -- Callous Kanabion
-(22464, 4032, 4), -- Power Strike
-(22464, 4408, 1), -- HP Increase (1x)
-(22464, 4409, 1), -- MP Increase (1x)
-(22464, 4410, 11), -- Average P. Atk.
-(22464, 4411, 11), -- Average M. Atk.
-(22464, 4412, 11), -- Average P. Def.
-(22464, 4413, 11), -- Average M. Def.
-(22464, 4414, 3), -- Light Armor Type
-(22464, 4415, 3), -- One-handed Sword
-(22464, 4416, 6), -- Humanoids
-(22464, 5719, 1), -- Kanabion Susceptibility
+(22464, 4032, 4), -- NPC Strike
+(22464, 4408, 1), -- HP Modifiers
+(22464, 4409, 1), -- MP Modifiers
+(22464, 4410, 11), -- P. Atk. Modifiers
+(22464, 4411, 11), -- M. Atk. Modifiers
+(22464, 4412, 11), -- P. Def. Modifiers
+(22464, 4413, 11), -- M. Def. Modifiers
+(22464, 4414, 3), -- Armor Type
+(22464, 4415, 3), -- Weapon Type
+(22464, 4416, 6), -- Races
+(22464, 5719, 1), -- Kamabion Susceptibility
 -- Callous Kanabion
-(22465, 4032, 4), -- Power Strike
-(22465, 4408, 1), -- HP Increase (1x)
-(22465, 4409, 1), -- MP Increase (1x)
-(22465, 4410, 11), -- Average P. Atk.
-(22465, 4411, 11), -- Average M. Atk.
-(22465, 4412, 11), -- Average P. Def.
-(22465, 4413, 11), -- Average M. Def.
-(22465, 4414, 3), -- Light Armor Type
-(22465, 4415, 11), -- Spears
-(22465, 4416, 6), -- Humanoids
-(22465, 5719, 1), -- Kanabion Susceptibility
+(22465, 4032, 4), -- NPC Strike
+(22465, 4408, 1), -- HP Modifiers
+(22465, 4409, 1), -- MP Modifiers
+(22465, 4410, 11), -- P. Atk. Modifiers
+(22465, 4411, 11), -- M. Atk. Modifiers
+(22465, 4412, 11), -- P. Def. Modifiers
+(22465, 4413, 11), -- M. Def. Modifiers
+(22465, 4414, 3), -- Armor Type
+(22465, 4415, 11), -- Weapon Type
+(22465, 4416, 6), -- Races
+(22465, 5719, 1), -- Kamabion Susceptibility
 -- Callous Kanabion
-(22466, 4032, 4), -- Power Strike
-(22466, 4340, 1), -- Ultimate Buff
-(22466, 4408, 1), -- HP Increase (1x)
-(22466, 4409, 1), -- MP Increase (1x)
-(22466, 4410, 11), -- Average P. Atk.
-(22466, 4411, 11), -- Average M. Atk.
-(22466, 4412, 11), -- Average P. Def.
-(22466, 4413, 11), -- Average M. Def.
-(22466, 4414, 3), -- Light Armor Type
-(22466, 4415, 7), -- Daggers
-(22466, 4416, 6), -- Humanoids
-(22466, 5719, 1), -- Kanabion Susceptibility
+(22466, 4032, 4), -- NPC Strike
+(22466, 4340, 1), -- Ultimate Buff, 2nd
+(22466, 4408, 1), -- HP Modifiers
+(22466, 4409, 1), -- MP Modifiers
+(22466, 4410, 11), -- P. Atk. Modifiers
+(22466, 4411, 11), -- M. Atk. Modifiers
+(22466, 4412, 11), -- P. Def. Modifiers
+(22466, 4413, 11), -- M. Def. Modifiers
+(22466, 4414, 3), -- Armor Type
+(22466, 4415, 7), -- Weapon Type
+(22466, 4416, 6), -- Races
+(22466, 5719, 1), -- Kamabion Susceptibility
 -- Savage Kanabion
-(22467, 4032, 5), -- Power Strike
-(22467, 4408, 1), -- HP Increase (1x)
-(22467, 4409, 1), -- MP Increase (1x)
-(22467, 4410, 11), -- Average P. Atk.
-(22467, 4411, 11), -- Average M. Atk.
-(22467, 4412, 11), -- Average P. Def.
-(22467, 4413, 11), -- Average M. Def.
-(22467, 4414, 2), -- Standard Type
-(22467, 4415, 3), -- One-handed Sword
-(22467, 4416, 6), -- Humanoids
-(22467, 5719, 1), -- Kanabion Susceptibility
+(22467, 4032, 5), -- NPC Strike
+(22467, 4408, 1), -- HP Modifiers
+(22467, 4409, 1), -- MP Modifiers
+(22467, 4410, 11), -- P. Atk. Modifiers
+(22467, 4411, 11), -- M. Atk. Modifiers
+(22467, 4412, 11), -- P. Def. Modifiers
+(22467, 4413, 11), -- M. Def. Modifiers
+(22467, 4414, 2), -- Armor Type
+(22467, 4415, 3), -- Weapon Type
+(22467, 4416, 6), -- Races
+(22467, 5719, 1), -- Kamabion Susceptibility
 -- Savage Kanabion
-(22468, 4032, 5), -- Power Strike
-(22468, 4408, 1), -- HP Increase (1x)
-(22468, 4409, 1), -- MP Increase (1x)
-(22468, 4410, 11), -- Average P. Atk.
-(22468, 4411, 11), -- Average M. Atk.
-(22468, 4412, 11), -- Average P. Def.
-(22468, 4413, 11), -- Average M. Def.
-(22468, 4414, 2), -- Standard Type
-(22468, 4415, 3), -- One-handed Sword
-(22468, 4416, 6), -- Humanoids
-(22468, 5719, 1), -- Kanabion Susceptibility
+(22468, 4032, 5), -- NPC Strike
+(22468, 4408, 1), -- HP Modifiers
+(22468, 4409, 1), -- MP Modifiers
+(22468, 4410, 11), -- P. Atk. Modifiers
+(22468, 4411, 11), -- M. Atk. Modifiers
+(22468, 4412, 11), -- P. Def. Modifiers
+(22468, 4413, 11), -- M. Def. Modifiers
+(22468, 4414, 2), -- Armor Type
+(22468, 4415, 3), -- Weapon Type
+(22468, 4416, 6), -- Races
+(22468, 5719, 1), -- Kamabion Susceptibility
 -- Savage Kanabion
-(22469, 4032, 5), -- Power Strike
-(22469, 4340, 1), -- Ultimate Buff
-(22469, 4408, 1), -- HP Increase (1x)
-(22469, 4409, 1), -- MP Increase (1x)
-(22469, 4410, 11), -- Average P. Atk.
-(22469, 4411, 11), -- Average M. Atk.
-(22469, 4412, 11), -- Average P. Def.
-(22469, 4413, 11), -- Average M. Def.
-(22469, 4414, 2), -- Standard Type
-(22469, 4415, 3), -- One-handed Sword
-(22469, 4416, 6), -- Humanoids
-(22469, 5719, 1), -- Kanabion Susceptibility
+(22469, 4032, 5), -- NPC Strike
+(22469, 4340, 1), -- Ultimate Buff, 2nd
+(22469, 4408, 1), -- HP Modifiers
+(22469, 4409, 1), -- MP Modifiers
+(22469, 4410, 11), -- P. Atk. Modifiers
+(22469, 4411, 11), -- M. Atk. Modifiers
+(22469, 4412, 11), -- P. Def. Modifiers
+(22469, 4413, 11), -- M. Def. Modifiers
+(22469, 4414, 2), -- Armor Type
+(22469, 4415, 3), -- Weapon Type
+(22469, 4416, 6), -- Races
+(22469, 5719, 1), -- Kamabion Susceptibility
 -- Peerless Kanabion
-(22470, 4032, 5), -- Power Strike
-(22470, 4408, 1), -- HP Increase (1x)
-(22470, 4409, 1), -- MP Increase (1x)
-(22470, 4410, 11), -- Average P. Atk.
-(22470, 4411, 11), -- Average M. Atk.
-(22470, 4412, 11), -- Average P. Def.
-(22470, 4413, 11), -- Average M. Def.
-(22470, 4414, 2), -- Standard Type
-(22470, 4415, 3), -- One-handed Sword
-(22470, 4416, 6), -- Humanoids
-(22470, 5719, 1), -- Kanabion Susceptibility
+(22470, 4032, 5), -- NPC Strike
+(22470, 4408, 1), -- HP Modifiers
+(22470, 4409, 1), -- MP Modifiers
+(22470, 4410, 11), -- P. Atk. Modifiers
+(22470, 4411, 11), -- M. Atk. Modifiers
+(22470, 4412, 11), -- P. Def. Modifiers
+(22470, 4413, 11), -- M. Def. Modifiers
+(22470, 4414, 2), -- Armor Type
+(22470, 4415, 3), -- Weapon Type
+(22470, 4416, 6), -- Races
+(22470, 5719, 1), -- Kamabion Susceptibility
 -- Peerless Kanabion
-(22471, 4032, 5), -- Power Strike
-(22471, 4408, 1), -- HP Increase (1x)
-(22471, 4409, 1), -- MP Increase (1x)
-(22471, 4410, 11), -- Average P. Atk.
-(22471, 4411, 11), -- Average M. Atk.
-(22471, 4412, 11), -- Average P. Def.
-(22471, 4413, 11), -- Average M. Def.
-(22471, 4414, 2), -- Standard Type
-(22471, 4415, 3), -- One-handed Sword
-(22471, 4416, 6), -- Humanoids
-(22471, 5719, 1), -- Kanabion Susceptibility
+(22471, 4032, 5), -- NPC Strike
+(22471, 4408, 1), -- HP Modifiers
+(22471, 4409, 1), -- MP Modifiers
+(22471, 4410, 11), -- P. Atk. Modifiers
+(22471, 4411, 11), -- M. Atk. Modifiers
+(22471, 4412, 11), -- P. Def. Modifiers
+(22471, 4413, 11), -- M. Def. Modifiers
+(22471, 4414, 2), -- Armor Type
+(22471, 4415, 3), -- Weapon Type
+(22471, 4416, 6), -- Races
+(22471, 5719, 1), -- Kamabion Susceptibility
 -- Peerless Kanabion
-(22472, 4032, 5), -- Power Strike
-(22472, 4340, 1), -- Ultimate Buff
-(22472, 4408, 1), -- HP Increase (1x)
-(22472, 4409, 1), -- MP Increase (1x)
-(22472, 4410, 11), -- Average P. Atk.
-(22472, 4411, 11), -- Average M. Atk.
-(22472, 4412, 11), -- Average P. Def.
-(22472, 4413, 11), -- Average M. Def.
-(22472, 4414, 2), -- Standard Type
-(22472, 4415, 3), -- One-handed Sword
-(22472, 4416, 6), -- Humanoids
-(22472, 5719, 1), -- Kanabion Susceptibility
+(22472, 4032, 5), -- NPC Strike
+(22472, 4340, 1), -- Ultimate Buff, 2nd
+(22472, 4408, 1), -- HP Modifiers
+(22472, 4409, 1), -- MP Modifiers
+(22472, 4410, 11), -- P. Atk. Modifiers
+(22472, 4411, 11), -- M. Atk. Modifiers
+(22472, 4412, 11), -- P. Def. Modifiers
+(22472, 4413, 11), -- M. Def. Modifiers
+(22472, 4414, 2), -- Armor Type
+(22472, 4415, 3), -- Weapon Type
+(22472, 4416, 6), -- Races
+(22472, 5719, 1), -- Kamabion Susceptibility
 -- Massive Kanabion
-(22473, 4032, 6), -- Power Strike
-(22473, 4408, 1), -- HP Increase (1x)
-(22473, 4409, 1), -- MP Increase (1x)
-(22473, 4410, 11), -- Average P. Atk.
-(22473, 4411, 11), -- Average M. Atk.
-(22473, 4412, 11), -- Average P. Def.
-(22473, 4413, 11), -- Average M. Def.
-(22473, 4414, 3), -- Light Armor Type
-(22473, 4415, 3), -- One-handed Sword
-(22473, 4416, 8), -- Angels
-(22473, 5719, 1), -- Kanabion Susceptibility
+(22473, 4032, 6), -- NPC Strike
+(22473, 4408, 1), -- HP Modifiers
+(22473, 4409, 1), -- MP Modifiers
+(22473, 4410, 11), -- P. Atk. Modifiers
+(22473, 4411, 11), -- M. Atk. Modifiers
+(22473, 4412, 11), -- P. Def. Modifiers
+(22473, 4413, 11), -- M. Def. Modifiers
+(22473, 4414, 3), -- Armor Type
+(22473, 4415, 3), -- Weapon Type
+(22473, 4416, 8), -- Races
+(22473, 5719, 1), -- Kamabion Susceptibility
 -- Massive Kanabion
-(22474, 4032, 6), -- Power Strike
-(22474, 4408, 1), -- HP Increase (1x)
-(22474, 4409, 1), -- MP Increase (1x)
-(22474, 4410, 11), -- Average P. Atk.
-(22474, 4411, 11), -- Average M. Atk.
-(22474, 4412, 11), -- Average P. Def.
-(22474, 4413, 11), -- Average M. Def.
-(22474, 4414, 2), -- Standard Type
-(22474, 4415, 3), -- One-handed Sword
-(22474, 4416, 8), -- Angels
-(22474, 5719, 1), -- Kanabion Susceptibility
+(22474, 4032, 6), -- NPC Strike
+(22474, 4408, 1), -- HP Modifiers
+(22474, 4409, 1), -- MP Modifiers
+(22474, 4410, 11), -- P. Atk. Modifiers
+(22474, 4411, 11), -- M. Atk. Modifiers
+(22474, 4412, 11), -- P. Def. Modifiers
+(22474, 4413, 11), -- M. Def. Modifiers
+(22474, 4414, 2), -- Armor Type
+(22474, 4415, 3), -- Weapon Type
+(22474, 4416, 8), -- Races
+(22474, 5719, 1), -- Kamabion Susceptibility
 -- Massive Kanabion
-(22475, 4032, 6), -- Power Strike
-(22475, 4340, 1), -- Ultimate Buff
-(22475, 4408, 1), -- HP Increase (1x)
-(22475, 4409, 1), -- MP Increase (1x)
-(22475, 4410, 11), -- Average P. Atk.
-(22475, 4411, 11), -- Average M. Atk.
-(22475, 4412, 11), -- Average P. Def.
-(22475, 4413, 11), -- Average M. Def.
-(22475, 4414, 2), -- Standard Type
-(22475, 4415, 3), -- One-handed Sword
-(22475, 4416, 8), -- Angels
-(22475, 5719, 1), -- Kanabion Susceptibility
+(22475, 4032, 6), -- NPC Strike
+(22475, 4340, 1), -- Ultimate Buff, 2nd
+(22475, 4408, 1), -- HP Modifiers
+(22475, 4409, 1), -- MP Modifiers
+(22475, 4410, 11), -- P. Atk. Modifiers
+(22475, 4411, 11), -- M. Atk. Modifiers
+(22475, 4412, 11), -- P. Def. Modifiers
+(22475, 4413, 11), -- M. Def. Modifiers
+(22475, 4414, 2), -- Armor Type
+(22475, 4415, 3), -- Weapon Type
+(22475, 4416, 8), -- Races
+(22475, 5719, 1), -- Kamabion Susceptibility
 -- Fervent Kanabion
-(22476, 4032, 6), -- Power Strike
-(22476, 4408, 1), -- HP Increase (1x)
-(22476, 4409, 1), -- MP Increase (1x)
-(22476, 4410, 11), -- Average P. Atk.
-(22476, 4411, 11), -- Average M. Atk.
-(22476, 4412, 11), -- Average P. Def.
-(22476, 4413, 11), -- Average M. Def.
-(22476, 4414, 1), -- Heavy Armor Type
-(22476, 4415, 3), -- One-handed Sword
-(22476, 4416, 9), -- Demons
-(22476, 5719, 1), -- Kanabion Susceptibility
+(22476, 4032, 6), -- NPC Strike
+(22476, 4408, 1), -- HP Modifiers
+(22476, 4409, 1), -- MP Modifiers
+(22476, 4410, 11), -- P. Atk. Modifiers
+(22476, 4411, 11), -- M. Atk. Modifiers
+(22476, 4412, 11), -- P. Def. Modifiers
+(22476, 4413, 11), -- M. Def. Modifiers
+(22476, 4414, 1), -- Armor Type
+(22476, 4415, 3), -- Weapon Type
+(22476, 4416, 9), -- Races
+(22476, 5719, 1), -- Kamabion Susceptibility
 -- Fervent Kanabion
-(22477, 4032, 6), -- Power Strike
-(22477, 4408, 1), -- HP Increase (1x)
-(22477, 4409, 1), -- MP Increase (1x)
-(22477, 4410, 11), -- Average P. Atk.
-(22477, 4411, 11), -- Average M. Atk.
-(22477, 4412, 11), -- Average P. Def.
-(22477, 4413, 11), -- Average M. Def.
-(22477, 4414, 2), -- Standard Type
-(22477, 4415, 3), -- One-handed Sword
-(22477, 4416, 9), -- Demons
-(22477, 5719, 1), -- Kanabion Susceptibility
+(22477, 4032, 6), -- NPC Strike
+(22477, 4408, 1), -- HP Modifiers
+(22477, 4409, 1), -- MP Modifiers
+(22477, 4410, 11), -- P. Atk. Modifiers
+(22477, 4411, 11), -- M. Atk. Modifiers
+(22477, 4412, 11), -- P. Def. Modifiers
+(22477, 4413, 11), -- M. Def. Modifiers
+(22477, 4414, 2), -- Armor Type
+(22477, 4415, 3), -- Weapon Type
+(22477, 4416, 9), -- Races
+(22477, 5719, 1), -- Kamabion Susceptibility
 -- Fervent Kanabion
-(22478, 4032, 6), -- Power Strike
-(22478, 4340, 1), -- Ultimate Buff
-(22478, 4408, 1), -- HP Increase (1x)
-(22478, 4409, 1), -- MP Increase (1x)
-(22478, 4410, 11), -- Average P. Atk.
-(22478, 4411, 11), -- Average M. Atk.
-(22478, 4412, 11), -- Average P. Def.
-(22478, 4413, 11), -- Average M. Def.
-(22478, 4414, 2), -- Standard Type
-(22478, 4415, 3), -- One-handed Sword
-(22478, 4416, 9), -- Demons
-(22478, 5719, 1), -- Kanabion Susceptibility
+(22478, 4032, 6), -- NPC Strike
+(22478, 4340, 1), -- Ultimate Buff, 2nd
+(22478, 4408, 1), -- HP Modifiers
+(22478, 4409, 1), -- MP Modifiers
+(22478, 4410, 11), -- P. Atk. Modifiers
+(22478, 4411, 11), -- M. Atk. Modifiers
+(22478, 4412, 11), -- P. Def. Modifiers
+(22478, 4413, 11), -- M. Def. Modifiers
+(22478, 4414, 2), -- Armor Type
+(22478, 4415, 3), -- Weapon Type
+(22478, 4416, 9), -- Races
+(22478, 5719, 1), -- Kamabion Susceptibility
 -- Ruptured Kanabion
-(22479, 4032, 7), -- Power Strike
-(22479, 4408, 1), -- HP Increase (1x)
-(22479, 4409, 1), -- MP Increase (1x)
-(22479, 4410, 11), -- Average P. Atk.
-(22479, 4411, 11), -- Average M. Atk.
-(22479, 4412, 11), -- Average P. Def.
-(22479, 4413, 11), -- Average M. Def.
-(22479, 4414, 2), -- Standard Type
-(22479, 4415, 1), -- Bare Hands
-(22479, 4416, 9), -- Demons
-(22479, 5719, 1), -- Kanabion Susceptibility
+(22479, 4032, 7), -- NPC Strike
+(22479, 4408, 1), -- HP Modifiers
+(22479, 4409, 1), -- MP Modifiers
+(22479, 4410, 11), -- P. Atk. Modifiers
+(22479, 4411, 11), -- M. Atk. Modifiers
+(22479, 4412, 11), -- P. Def. Modifiers
+(22479, 4413, 11), -- M. Def. Modifiers
+(22479, 4414, 2), -- Armor Type
+(22479, 4415, 1), -- Weapon Type
+(22479, 4416, 9), -- Races
+(22479, 5719, 1), -- Kamabion Susceptibility
 -- Ruptured Kanabion
-(22480, 4032, 7), -- Power Strike
-(22480, 4408, 1), -- HP Increase (1x)
-(22480, 4409, 1), -- MP Increase (1x)
-(22480, 4410, 11), -- Average P. Atk.
-(22480, 4411, 11), -- Average M. Atk.
-(22480, 4412, 11), -- Average P. Def.
-(22480, 4413, 11), -- Average M. Def.
-(22480, 4414, 2), -- Standard Type
-(22480, 4415, 1), -- Bare Hands
-(22480, 4416, 9), -- Demons
-(22480, 5719, 1), -- Kanabion Susceptibility
+(22480, 4032, 7), -- NPC Strike
+(22480, 4408, 1), -- HP Modifiers
+(22480, 4409, 1), -- MP Modifiers
+(22480, 4410, 11), -- P. Atk. Modifiers
+(22480, 4411, 11), -- M. Atk. Modifiers
+(22480, 4412, 11), -- P. Def. Modifiers
+(22480, 4413, 11), -- M. Def. Modifiers
+(22480, 4414, 2), -- Armor Type
+(22480, 4415, 1), -- Weapon Type
+(22480, 4416, 9), -- Races
+(22480, 5719, 1), -- Kamabion Susceptibility
 -- Ruptured Kanabion
-(22481, 4032, 7), -- Power Strike
-(22481, 4340, 1), -- Ultimate Buff
-(22481, 4408, 1), -- HP Increase (1x)
-(22481, 4409, 1), -- MP Increase (1x)
-(22481, 4410, 11), -- Average P. Atk.
-(22481, 4411, 11), -- Average M. Atk.
-(22481, 4412, 11), -- Average P. Def.
-(22481, 4413, 11), -- Average M. Def.
-(22481, 4414, 2), -- Standard Type
-(22481, 4415, 1), -- Bare Hands
-(22481, 4416, 9), -- Demons
-(22481, 5719, 1), -- Kanabion Susceptibility
+(22481, 4032, 7), -- NPC Strike
+(22481, 4340, 1), -- Ultimate Buff, 2nd
+(22481, 4408, 1), -- HP Modifiers
+(22481, 4409, 1), -- MP Modifiers
+(22481, 4410, 11), -- P. Atk. Modifiers
+(22481, 4411, 11), -- M. Atk. Modifiers
+(22481, 4412, 11), -- P. Def. Modifiers
+(22481, 4413, 11), -- M. Def. Modifiers
+(22481, 4414, 2), -- Armor Type
+(22481, 4415, 1), -- Weapon Type
+(22481, 4416, 9), -- Races
+(22481, 5719, 1), -- Kamabion Susceptibility
 -- Sword Kanabion
-(22482, 4032, 8), -- Power Strike
-(22482, 4408, 1), -- HP Increase (1x)
-(22482, 4409, 1), -- MP Increase (1x)
-(22482, 4410, 11), -- Average P. Atk.
-(22482, 4411, 11), -- Average M. Atk.
-(22482, 4412, 11), -- Average P. Def.
-(22482, 4413, 11), -- Average M. Def.
-(22482, 4414, 2), -- Standard Type
-(22482, 4415, 5), -- Blunt Weapons
-(22482, 4416, 9), -- Demons
-(22482, 5719, 1), -- Kanabion Susceptibility
+(22482, 4032, 8), -- NPC Strike
+(22482, 4408, 1), -- HP Modifiers
+(22482, 4409, 1), -- MP Modifiers
+(22482, 4410, 11), -- P. Atk. Modifiers
+(22482, 4411, 11), -- M. Atk. Modifiers
+(22482, 4412, 11), -- P. Def. Modifiers
+(22482, 4413, 11), -- M. Def. Modifiers
+(22482, 4414, 2), -- Armor Type
+(22482, 4415, 5), -- Weapon Type
+(22482, 4416, 9), -- Races
+(22482, 5719, 1), -- Kamabion Susceptibility
 -- Sword Kanabion
-(22483, 4032, 8), -- Power Strike
-(22483, 4408, 1), -- HP Increase (1x)
-(22483, 4409, 1), -- MP Increase (1x)
-(22483, 4410, 11), -- Average P. Atk.
-(22483, 4411, 11), -- Average M. Atk.
-(22483, 4412, 11), -- Average P. Def.
-(22483, 4413, 11), -- Average M. Def.
-(22483, 4414, 2), -- Standard Type
-(22483, 4415, 7), -- Daggers
-(22483, 4416, 9), -- Demons
-(22483, 5719, 1), -- Kanabion Susceptibility
+(22483, 4032, 8), -- NPC Strike
+(22483, 4408, 1), -- HP Modifiers
+(22483, 4409, 1), -- MP Modifiers
+(22483, 4410, 11), -- P. Atk. Modifiers
+(22483, 4411, 11), -- M. Atk. Modifiers
+(22483, 4412, 11), -- P. Def. Modifiers
+(22483, 4413, 11), -- M. Def. Modifiers
+(22483, 4414, 2), -- Armor Type
+(22483, 4415, 7), -- Weapon Type
+(22483, 4416, 9), -- Races
+(22483, 5719, 1), -- Kamabion Susceptibility
 -- Sword Kanabion
-(22484, 4032, 8), -- Power Strike
+(22484, 4032, 8), -- NPC Strike
 (22484, 4045, 1), -- Resist Full Magic Attack
-(22484, 4340, 1), -- Ultimate Buff
-(22484, 4408, 1), -- HP Increase (1x)
-(22484, 4409, 1), -- MP Increase (1x)
-(22484, 4410, 11), -- Average P. Atk.
-(22484, 4411, 11), -- Average M. Atk.
-(22484, 4412, 11), -- Average P. Def.
-(22484, 4413, 11), -- Average M. Def.
-(22484, 4414, 2), -- Standard Type
-(22484, 4415, 7), -- Daggers
-(22484, 4416, 9), -- Demons
+(22484, 4340, 1), -- Ultimate Buff, 2nd
+(22484, 4408, 1), -- HP Modifiers
+(22484, 4409, 1), -- MP Modifiers
+(22484, 4410, 11), -- P. Atk. Modifiers
+(22484, 4411, 11), -- M. Atk. Modifiers
+(22484, 4412, 11), -- P. Def. Modifiers
+(22484, 4413, 11), -- M. Def. Modifiers
+(22484, 4414, 2), -- Armor Type
+(22484, 4415, 7), -- Weapon Type
+(22484, 4416, 9), -- Races
 (22484, 5479, 1), -- Boss Petrification Resistance
-(22484, 5719, 1), -- Kanabion Susceptibility
+(22484, 5719, 1), -- Kamabion Susceptibility
 -- Lost Watcher
-(22485, 4032, 2), -- Power Strike
+(22485, 4032, 2), -- NPC Strike
 (22485, 4047, 2), -- Hold
-(22485, 4408, 1), -- HP Increase (1x)
-(22485, 4409, 1), -- MP Increase (1x)
-(22485, 4410, 3), -- Extremely Weak P. Atk.
-(22485, 4411, 3), -- Extremely Weak M. Atk.
-(22485, 4412, 11), -- Average P. Def.
-(22485, 4413, 11), -- Average M. Def.
-(22485, 4414, 2), -- Standard Type
-(22485, 4415, 3), -- One-handed Sword
-(22485, 4416, 6), -- Humanoids
+(22485, 4408, 1), -- HP Modifiers
+(22485, 4409, 1), -- MP Modifiers
+(22485, 4410, 3), -- P. Atk. Modifiers
+(22485, 4411, 3), -- M. Atk. Modifiers
+(22485, 4412, 11), -- P. Def. Modifiers
+(22485, 4413, 11), -- M. Def. Modifiers
+(22485, 4414, 2), -- Armor Type
+(22485, 4415, 3), -- Weapon Type
+(22485, 4416, 6), -- Races
 -- Lost Watcher
-(22486, 4032, 2), -- Power Strike
+(22486, 4032, 2), -- NPC Strike
 (22486, 4047, 2), -- Hold
-(22486, 4408, 1), -- HP Increase (1x)
-(22486, 4409, 1), -- MP Increase (1x)
-(22486, 4410, 3), -- Extremely Weak P. Atk.
-(22486, 4411, 3), -- Extremely Weak M. Atk.
-(22486, 4412, 11), -- Average P. Def.
-(22486, 4413, 11), -- Average M. Def.
-(22486, 4414, 2), -- Standard Type
-(22486, 4415, 3), -- One-handed Sword
-(22486, 4416, 6), -- Humanoids
+(22486, 4408, 1), -- HP Modifiers
+(22486, 4409, 1), -- MP Modifiers
+(22486, 4410, 3), -- P. Atk. Modifiers
+(22486, 4411, 3), -- M. Atk. Modifiers
+(22486, 4412, 11), -- P. Def. Modifiers
+(22486, 4413, 11), -- M. Def. Modifiers
+(22486, 4414, 2), -- Armor Type
+(22486, 4415, 3), -- Weapon Type
+(22486, 4416, 6), -- Races
 -- Lost Beholder
-(22487, 4032, 2), -- Power Strike
-(22487, 4098, 3), -- Silence
-(22487, 4408, 1), -- HP Increase (1x)
-(22487, 4409, 1), -- MP Increase (1x)
-(22487, 4410, 11), -- Average P. Atk.
-(22487, 4411, 11), -- Average M. Atk.
-(22487, 4412, 7), -- Weak P. Def.
-(22487, 4413, 8), -- Weak M. Def.
-(22487, 4414, 2), -- Standard Type
-(22487, 4415, 3), -- One-handed Sword
-(22487, 4416, 6), -- Humanoids
-(22487, 4613, 2), -- Clan Heal
+(22487, 4032, 2), -- NPC Strike
+(22487, 4098, 3), -- Magic Skill Block
+(22487, 4408, 1), -- HP Modifiers
+(22487, 4409, 1), -- MP Modifiers
+(22487, 4410, 11), -- P. Atk. Modifiers
+(22487, 4411, 11), -- M. Atk. Modifiers
+(22487, 4412, 7), -- P. Def. Modifiers
+(22487, 4413, 8), -- M. Def. Modifiers
+(22487, 4414, 2), -- Armor Type
+(22487, 4415, 3), -- Weapon Type
+(22487, 4416, 6), -- Races
+(22487, 4613, 2), -- NPC Clan Heal
 -- Lost Watcher
-(22488, 4032, 3), -- Power Strike
+(22488, 4032, 3), -- NPC Strike
 (22488, 4047, 3), -- Hold
-(22488, 4408, 1), -- HP Increase (1x)
-(22488, 4409, 1), -- MP Increase (1x)
-(22488, 4410, 3), -- Extremely Weak P. Atk.
-(22488, 4411, 3), -- Extremely Weak M. Atk.
-(22488, 4412, 11), -- Average P. Def.
-(22488, 4413, 11), -- Average M. Def.
-(22488, 4414, 3), -- Light Armor Type
-(22488, 4415, 3), -- One-handed Sword
-(22488, 4416, 6), -- Humanoids
+(22488, 4408, 1), -- HP Modifiers
+(22488, 4409, 1), -- MP Modifiers
+(22488, 4410, 3), -- P. Atk. Modifiers
+(22488, 4411, 3), -- M. Atk. Modifiers
+(22488, 4412, 11), -- P. Def. Modifiers
+(22488, 4413, 11), -- M. Def. Modifiers
+(22488, 4414, 3), -- Armor Type
+(22488, 4415, 3), -- Weapon Type
+(22488, 4416, 6), -- Races
 -- Lost Watcher
-(22489, 4032, 3), -- Power Strike
+(22489, 4032, 3), -- NPC Strike
 (22489, 4047, 3), -- Hold
-(22489, 4408, 1), -- HP Increase (1x)
-(22489, 4409, 1), -- MP Increase (1x)
-(22489, 4410, 3), -- Extremely Weak P. Atk.
-(22489, 4411, 3), -- Extremely Weak M. Atk.
-(22489, 4412, 11), -- Average P. Def.
-(22489, 4413, 11), -- Average M. Def.
-(22489, 4414, 3), -- Light Armor Type
-(22489, 4415, 3), -- One-handed Sword
-(22489, 4416, 6), -- Humanoids
+(22489, 4408, 1), -- HP Modifiers
+(22489, 4409, 1), -- MP Modifiers
+(22489, 4410, 3), -- P. Atk. Modifiers
+(22489, 4411, 3), -- M. Atk. Modifiers
+(22489, 4412, 11), -- P. Def. Modifiers
+(22489, 4413, 11), -- M. Def. Modifiers
+(22489, 4414, 3), -- Armor Type
+(22489, 4415, 3), -- Weapon Type
+(22489, 4416, 6), -- Races
 -- Lost Beholder
-(22490, 4032, 3), -- Power Strike
-(22490, 4098, 4), -- Silence
-(22490, 4408, 1), -- HP Increase (1x)
-(22490, 4409, 1), -- MP Increase (1x)
-(22490, 4410, 11), -- Average P. Atk.
-(22490, 4411, 11), -- Average M. Atk.
-(22490, 4412, 7), -- Weak P. Def.
-(22490, 4413, 8), -- Weak M. Def.
-(22490, 4414, 3), -- Light Armor Type
-(22490, 4415, 3), -- One-handed Sword
-(22490, 4416, 6), -- Humanoids
-(22490, 4613, 3), -- Clan Heal
+(22490, 4032, 3), -- NPC Strike
+(22490, 4098, 4), -- Magic Skill Block
+(22490, 4408, 1), -- HP Modifiers
+(22490, 4409, 1), -- MP Modifiers
+(22490, 4410, 11), -- P. Atk. Modifiers
+(22490, 4411, 11), -- M. Atk. Modifiers
+(22490, 4412, 7), -- P. Def. Modifiers
+(22490, 4413, 8), -- M. Def. Modifiers
+(22490, 4414, 3), -- Armor Type
+(22490, 4415, 3), -- Weapon Type
+(22490, 4416, 6), -- Races
+(22490, 4613, 3), -- NPC Clan Heal
 -- Lost Watcher
-(22491, 4032, 4), -- Power Strike
+(22491, 4032, 4), -- NPC Strike
 (22491, 4047, 4), -- Hold
-(22491, 4408, 1), -- HP Increase (1x)
-(22491, 4409, 1), -- MP Increase (1x)
-(22491, 4410, 3), -- Extremely Weak P. Atk.
-(22491, 4411, 3), -- Extremely Weak M. Atk.
-(22491, 4412, 11), -- Average P. Def.
-(22491, 4413, 11), -- Average M. Def.
-(22491, 4414, 1), -- Heavy Armor Type
-(22491, 4415, 3), -- One-handed Sword
-(22491, 4416, 2), -- Magic Creatures
+(22491, 4408, 1), -- HP Modifiers
+(22491, 4409, 1), -- MP Modifiers
+(22491, 4410, 3), -- P. Atk. Modifiers
+(22491, 4411, 3), -- M. Atk. Modifiers
+(22491, 4412, 11), -- P. Def. Modifiers
+(22491, 4413, 11), -- M. Def. Modifiers
+(22491, 4414, 1), -- Armor Type
+(22491, 4415, 3), -- Weapon Type
+(22491, 4416, 2), -- Races
 -- Lost Watcher
-(22492, 4032, 4), -- Power Strike
+(22492, 4032, 4), -- NPC Strike
 (22492, 4047, 4), -- Hold
-(22492, 4408, 1), -- HP Increase (1x)
-(22492, 4409, 1), -- MP Increase (1x)
-(22492, 4410, 3), -- Extremely Weak P. Atk.
-(22492, 4411, 3), -- Extremely Weak M. Atk.
-(22492, 4412, 11), -- Average P. Def.
-(22492, 4413, 11), -- Average M. Def.
-(22492, 4414, 1), -- Heavy Armor Type
-(22492, 4415, 3), -- One-handed Sword
-(22492, 4416, 2), -- Magic Creatures
+(22492, 4408, 1), -- HP Modifiers
+(22492, 4409, 1), -- MP Modifiers
+(22492, 4410, 3), -- P. Atk. Modifiers
+(22492, 4411, 3), -- M. Atk. Modifiers
+(22492, 4412, 11), -- P. Def. Modifiers
+(22492, 4413, 11), -- M. Def. Modifiers
+(22492, 4414, 1), -- Armor Type
+(22492, 4415, 3), -- Weapon Type
+(22492, 4416, 2), -- Races
 -- Lost Beholder
-(22493, 4032, 4), -- Power Strike
-(22493, 4098, 5), -- Silence
-(22493, 4408, 1), -- HP Increase (1x)
-(22493, 4409, 1), -- MP Increase (1x)
-(22493, 4410, 11), -- Average P. Atk.
-(22493, 4411, 11), -- Average M. Atk.
-(22493, 4412, 7), -- Weak P. Def.
-(22493, 4413, 8), -- Weak M. Def.
-(22493, 4414, 1), -- Heavy Armor Type
-(22493, 4415, 5), -- Blunt Weapons
-(22493, 4416, 2), -- Magic Creatures
-(22493, 4613, 4), -- Clan Heal
+(22493, 4032, 4), -- NPC Strike
+(22493, 4098, 5), -- Magic Skill Block
+(22493, 4408, 1), -- HP Modifiers
+(22493, 4409, 1), -- MP Modifiers
+(22493, 4410, 11), -- P. Atk. Modifiers
+(22493, 4411, 11), -- M. Atk. Modifiers
+(22493, 4412, 7), -- P. Def. Modifiers
+(22493, 4413, 8), -- M. Def. Modifiers
+(22493, 4414, 1), -- Armor Type
+(22493, 4415, 5), -- Weapon Type
+(22493, 4416, 2), -- Races
+(22493, 4613, 4), -- NPC Clan Heal
 -- Lost Watcher
-(22494, 4032, 5), -- Power Strike
+(22494, 4032, 5), -- NPC Strike
 (22494, 4047, 5), -- Hold
-(22494, 4408, 1), -- HP Increase (1x)
-(22494, 4409, 1), -- MP Increase (1x)
-(22494, 4410, 3), -- Extremely Weak P. Atk.
-(22494, 4411, 3), -- Extremely Weak M. Atk.
-(22494, 4412, 11), -- Average P. Def.
-(22494, 4413, 11), -- Average M. Def.
-(22494, 4414, 2), -- Standard Type
-(22494, 4415, 3), -- One-handed Sword
-(22494, 4416, 1), -- Undead
+(22494, 4408, 1), -- HP Modifiers
+(22494, 4409, 1), -- MP Modifiers
+(22494, 4410, 3), -- P. Atk. Modifiers
+(22494, 4411, 3), -- M. Atk. Modifiers
+(22494, 4412, 11), -- P. Def. Modifiers
+(22494, 4413, 11), -- M. Def. Modifiers
+(22494, 4414, 2), -- Armor Type
+(22494, 4415, 3), -- Weapon Type
+(22494, 4416, 1), -- Races
 -- Lost Watcher
-(22495, 4032, 5), -- Power Strike
+(22495, 4032, 5), -- NPC Strike
 (22495, 4047, 5), -- Hold
-(22495, 4408, 1), -- HP Increase (1x)
-(22495, 4409, 1), -- MP Increase (1x)
-(22495, 4410, 3), -- Extremely Weak P. Atk.
-(22495, 4411, 3), -- Extremely Weak M. Atk.
-(22495, 4412, 11), -- Average P. Def.
-(22495, 4413, 11), -- Average M. Def.
-(22495, 4414, 2), -- Standard Type
-(22495, 4415, 3), -- One-handed Sword
-(22495, 4416, 1), -- Undead
+(22495, 4408, 1), -- HP Modifiers
+(22495, 4409, 1), -- MP Modifiers
+(22495, 4410, 3), -- P. Atk. Modifiers
+(22495, 4411, 3), -- M. Atk. Modifiers
+(22495, 4412, 11), -- P. Def. Modifiers
+(22495, 4413, 11), -- M. Def. Modifiers
+(22495, 4414, 2), -- Armor Type
+(22495, 4415, 3), -- Weapon Type
+(22495, 4416, 1), -- Races
 -- Lost Beholder
-(22496, 4032, 5), -- Power Strike
-(22496, 4098, 6), -- Silence
-(22496, 4408, 1), -- HP Increase (1x)
-(22496, 4409, 1), -- MP Increase (1x)
-(22496, 4410, 11), -- Average P. Atk.
-(22496, 4411, 11), -- Average M. Atk.
-(22496, 4412, 7), -- Weak P. Def.
-(22496, 4413, 8), -- Weak M. Def.
-(22496, 4414, 3), -- Light Armor Type
-(22496, 4415, 3), -- One-handed Sword
-(22496, 4416, 1), -- Undead
-(22496, 4613, 5), -- Clan Heal
+(22496, 4032, 5), -- NPC Strike
+(22496, 4098, 6), -- Magic Skill Block
+(22496, 4408, 1), -- HP Modifiers
+(22496, 4409, 1), -- MP Modifiers
+(22496, 4410, 11), -- P. Atk. Modifiers
+(22496, 4411, 11), -- M. Atk. Modifiers
+(22496, 4412, 7), -- P. Def. Modifiers
+(22496, 4413, 8), -- M. Def. Modifiers
+(22496, 4414, 3), -- Armor Type
+(22496, 4415, 3), -- Weapon Type
+(22496, 4416, 1), -- Races
+(22496, 4613, 5), -- NPC Clan Heal
 -- Lost Watcher
-(22497, 4032, 6), -- Power Strike
+(22497, 4032, 6), -- NPC Strike
 (22497, 4047, 6), -- Hold
-(22497, 4408, 1), -- HP Increase (1x)
-(22497, 4409, 1), -- MP Increase (1x)
-(22497, 4410, 3), -- Extremely Weak P. Atk.
-(22497, 4411, 3), -- Extremely Weak M. Atk.
-(22497, 4412, 11), -- Average P. Def.
-(22497, 4413, 11), -- Average M. Def.
-(22497, 4414, 2), -- Standard Type
-(22497, 4415, 4), -- One-handed Sword
-(22497, 4416, 3), -- Beasts
+(22497, 4408, 1), -- HP Modifiers
+(22497, 4409, 1), -- MP Modifiers
+(22497, 4410, 3), -- P. Atk. Modifiers
+(22497, 4411, 3), -- M. Atk. Modifiers
+(22497, 4412, 11), -- P. Def. Modifiers
+(22497, 4413, 11), -- M. Def. Modifiers
+(22497, 4414, 2), -- Armor Type
+(22497, 4415, 4), -- Weapon Type
+(22497, 4416, 3), -- Races
 -- Lost Watcher
-(22498, 4032, 6), -- Power Strike
+(22498, 4032, 6), -- NPC Strike
 (22498, 4047, 6), -- Hold
-(22498, 4408, 1), -- HP Increase (1x)
-(22498, 4409, 1), -- MP Increase (1x)
-(22498, 4410, 3), -- Extremely Weak P. Atk.
-(22498, 4411, 3), -- Extremely Weak M. Atk.
-(22498, 4412, 11), -- Average P. Def.
-(22498, 4413, 11), -- Average M. Def.
-(22498, 4414, 2), -- Standard Type
-(22498, 4415, 4), -- One-handed Sword
-(22498, 4416, 3), -- Beasts
+(22498, 4408, 1), -- HP Modifiers
+(22498, 4409, 1), -- MP Modifiers
+(22498, 4410, 3), -- P. Atk. Modifiers
+(22498, 4411, 3), -- M. Atk. Modifiers
+(22498, 4412, 11), -- P. Def. Modifiers
+(22498, 4413, 11), -- M. Def. Modifiers
+(22498, 4414, 2), -- Armor Type
+(22498, 4415, 4), -- Weapon Type
+(22498, 4416, 3), -- Races
 -- Lost Beholder
-(22499, 4032, 6), -- Power Strike
-(22499, 4098, 7), -- Silence
-(22499, 4408, 1), -- HP Increase (1x)
-(22499, 4409, 1), -- MP Increase (1x)
-(22499, 4410, 11), -- Average P. Atk.
-(22499, 4411, 11), -- Average M. Atk.
-(22499, 4412, 7), -- Weak P. Def.
-(22499, 4413, 8), -- Weak M. Def.
-(22499, 4414, 2), -- Standard Type
-(22499, 4415, 6), -- Blunt Weapons
-(22499, 4416, 3), -- Beasts
-(22499, 4613, 6), -- Clan Heal
+(22499, 4032, 6), -- NPC Strike
+(22499, 4098, 7), -- Magic Skill Block
+(22499, 4408, 1), -- HP Modifiers
+(22499, 4409, 1), -- MP Modifiers
+(22499, 4410, 11), -- P. Atk. Modifiers
+(22499, 4411, 11), -- M. Atk. Modifiers
+(22499, 4412, 7), -- P. Def. Modifiers
+(22499, 4413, 8), -- M. Def. Modifiers
+(22499, 4414, 2), -- Armor Type
+(22499, 4415, 6), -- Weapon Type
+(22499, 4416, 3), -- Races
+(22499, 4613, 6), -- NPC Clan Heal
 -- Lost Watcher
-(22500, 4032, 8), -- Power Strike
+(22500, 4032, 8), -- NPC Strike
 (22500, 4047, 8), -- Hold
-(22500, 4408, 1), -- HP Increase (1x)
-(22500, 4409, 1), -- MP Increase (1x)
-(22500, 4410, 7), -- Weak P. Atk.
-(22500, 4411, 7), -- Weak M. Atk.
-(22500, 4412, 11), -- Average P. Def.
-(22500, 4413, 11), -- Average M. Def.
-(22500, 4414, 3), -- Light Armor Type
-(22500, 4415, 3), -- One-handed Sword
-(22500, 4416, 8), -- Angels
+(22500, 4408, 1), -- HP Modifiers
+(22500, 4409, 1), -- MP Modifiers
+(22500, 4410, 7), -- P. Atk. Modifiers
+(22500, 4411, 7), -- M. Atk. Modifiers
+(22500, 4412, 11), -- P. Def. Modifiers
+(22500, 4413, 11), -- M. Def. Modifiers
+(22500, 4414, 3), -- Armor Type
+(22500, 4415, 3), -- Weapon Type
+(22500, 4416, 8), -- Races
 (22500, 5464, 1), -- Wind Attacks
 -- Lost Watcher
-(22501, 4032, 8), -- Power Strike
+(22501, 4032, 8), -- NPC Strike
 (22501, 4047, 8), -- Hold
-(22501, 4408, 1), -- HP Increase (1x)
-(22501, 4409, 1), -- MP Increase (1x)
-(22501, 4410, 7), -- Weak P. Atk.
-(22501, 4411, 7), -- Weak M. Atk.
-(22501, 4412, 11), -- Average P. Def.
-(22501, 4413, 11), -- Average M. Def.
-(22501, 4414, 3), -- Light Armor Type
-(22501, 4415, 3), -- One-handed Sword
-(22501, 4416, 8), -- Angels
+(22501, 4408, 1), -- HP Modifiers
+(22501, 4409, 1), -- MP Modifiers
+(22501, 4410, 7), -- P. Atk. Modifiers
+(22501, 4411, 7), -- M. Atk. Modifiers
+(22501, 4412, 11), -- P. Def. Modifiers
+(22501, 4413, 11), -- M. Def. Modifiers
+(22501, 4414, 3), -- Armor Type
+(22501, 4415, 3), -- Weapon Type
+(22501, 4416, 8), -- Races
 (22501, 5464, 1), -- Wind Attacks
 -- Lost Beholder
-(22502, 4032, 8), -- Power Strike
-(22502, 4098, 9), -- Silence
-(22502, 4408, 1), -- HP Increase (1x)
-(22502, 4409, 1), -- MP Increase (1x)
-(22502, 4410, 11), -- Average P. Atk.
-(22502, 4411, 11), -- Average M. Atk.
-(22502, 4412, 7), -- Weak P. Def.
-(22502, 4413, 8), -- Weak M. Def.
-(22502, 4414, 3), -- Light Armor Type
-(22502, 4415, 4), -- One-handed Sword
-(22502, 4416, 8), -- Angels
-(22502, 4613, 8), -- Clan Heal
+(22502, 4032, 8), -- NPC Strike
+(22502, 4098, 9), -- Magic Skill Block
+(22502, 4408, 1), -- HP Modifiers
+(22502, 4409, 1), -- MP Modifiers
+(22502, 4410, 11), -- P. Atk. Modifiers
+(22502, 4411, 11), -- M. Atk. Modifiers
+(22502, 4412, 7), -- P. Def. Modifiers
+(22502, 4413, 8), -- M. Def. Modifiers
+(22502, 4414, 3), -- Armor Type
+(22502, 4415, 4), -- Weapon Type
+(22502, 4416, 8), -- Races
+(22502, 4613, 8), -- NPC Clan Heal
 (22502, 5465, 1), -- Earth Attacks
 -- Lost Watcher
-(22503, 4032, 9), -- Power Strike
+(22503, 4032, 9), -- NPC Strike
 (22503, 4047, 9), -- Hold
-(22503, 4408, 1), -- HP Increase (1x)
-(22503, 4409, 1), -- MP Increase (1x)
-(22503, 4410, 7), -- Weak P. Atk.
-(22503, 4411, 7), -- Weak M. Atk.
-(22503, 4412, 11), -- Average P. Def.
-(22503, 4413, 11), -- Average M. Def.
-(22503, 4414, 1), -- Heavy Armor Type
-(22503, 4415, 19), -- Dual-Sword Weapons
-(22503, 4416, 9), -- Demons
+(22503, 4408, 1), -- HP Modifiers
+(22503, 4409, 1), -- MP Modifiers
+(22503, 4410, 7), -- P. Atk. Modifiers
+(22503, 4411, 7), -- M. Atk. Modifiers
+(22503, 4412, 11), -- P. Def. Modifiers
+(22503, 4413, 11), -- M. Def. Modifiers
+(22503, 4414, 1), -- Armor Type
+(22503, 4415, 19), -- Weapon Type
+(22503, 4416, 9), -- Races
 (22503, 5467, 1), -- Dark Attacks
 -- Lost Watcher
-(22504, 4032, 9), -- Power Strike
+(22504, 4032, 9), -- NPC Strike
 (22504, 4047, 9), -- Hold
-(22504, 4408, 1), -- HP Increase (1x)
-(22504, 4409, 1), -- MP Increase (1x)
-(22504, 4410, 7), -- Weak P. Atk.
-(22504, 4411, 7), -- Weak M. Atk.
-(22504, 4412, 11), -- Average P. Def.
-(22504, 4413, 11), -- Average M. Def.
-(22504, 4414, 1), -- Heavy Armor Type
-(22504, 4415, 19), -- Dual-Sword Weapons
-(22504, 4416, 9), -- Demons
+(22504, 4408, 1), -- HP Modifiers
+(22504, 4409, 1), -- MP Modifiers
+(22504, 4410, 7), -- P. Atk. Modifiers
+(22504, 4411, 7), -- M. Atk. Modifiers
+(22504, 4412, 11), -- P. Def. Modifiers
+(22504, 4413, 11), -- M. Def. Modifiers
+(22504, 4414, 1), -- Armor Type
+(22504, 4415, 19), -- Weapon Type
+(22504, 4416, 9), -- Races
 (22504, 5467, 1), -- Dark Attacks
 -- Lost Beholder
-(22505, 4032, 9), -- Power Strike
-(22505, 4098, 10), -- Silence
-(22505, 4408, 1), -- HP Increase (1x)
-(22505, 4409, 1), -- MP Increase (1x)
-(22505, 4410, 11), -- Average P. Atk.
-(22505, 4411, 11), -- Average M. Atk.
-(22505, 4412, 7), -- Weak P. Def.
-(22505, 4413, 8), -- Weak M. Def.
-(22505, 4414, 2), -- Standard Type
-(22505, 4415, 1), -- Bare Hands
-(22505, 4416, 2), -- Magic Creatures
-(22505, 4613, 9), -- Clan Heal
+(22505, 4032, 9), -- NPC Strike
+(22505, 4098, 10), -- Magic Skill Block
+(22505, 4408, 1), -- HP Modifiers
+(22505, 4409, 1), -- MP Modifiers
+(22505, 4410, 11), -- P. Atk. Modifiers
+(22505, 4411, 11), -- M. Atk. Modifiers
+(22505, 4412, 7), -- P. Def. Modifiers
+(22505, 4413, 8), -- M. Def. Modifiers
+(22505, 4414, 2), -- Armor Type
+(22505, 4415, 1), -- Weapon Type
+(22505, 4416, 2), -- Races
+(22505, 4613, 9), -- NPC Clan Heal
 (22505, 5464, 1), -- Wind Attacks
 -- Boom - Child
-(22506, 4408, 1), -- HP Increase (1x)
-(22506, 4409, 1), -- MP Increase (1x)
-(22506, 4410, 11), -- Average P. Atk.
-(22506, 4411, 11), -- Average M. Atk.
-(22506, 4412, 11), -- Average P. Def.
-(22506, 4413, 11), -- Average M. Def.
-(22506, 4414, 2), -- Standard Type
-(22506, 4415, 3), -- One-handed Sword
-(22506, 4416, 1), -- Undead
+(22506, 4408, 1), -- HP Modifiers
+(22506, 4409, 1), -- MP Modifiers
+(22506, 4410, 11), -- P. Atk. Modifiers
+(22506, 4411, 11), -- M. Atk. Modifiers
+(22506, 4412, 11), -- P. Def. Modifiers
+(22506, 4413, 11), -- M. Def. Modifiers
+(22506, 4414, 2), -- Armor Type
+(22506, 4415, 3), -- Weapon Type
+(22506, 4416, 1), -- Races
 (22506, 5814, 1), -- Self-Destruction
 -- Boom - Child
-(22507, 4408, 1), -- HP Increase (1x)
-(22507, 4409, 1), -- MP Increase (1x)
-(22507, 4410, 11), -- Average P. Atk.
-(22507, 4411, 11), -- Average M. Atk.
-(22507, 4412, 11), -- Average P. Def.
-(22507, 4413, 11), -- Average M. Def.
-(22507, 4414, 2), -- Standard Type
-(22507, 4415, 3), -- One-handed Sword
-(22507, 4416, 1), -- Undead
+(22507, 4408, 1), -- HP Modifiers
+(22507, 4409, 1), -- MP Modifiers
+(22507, 4410, 11), -- P. Atk. Modifiers
+(22507, 4411, 11), -- M. Atk. Modifiers
+(22507, 4412, 11), -- P. Def. Modifiers
+(22507, 4413, 11), -- M. Def. Modifiers
+(22507, 4414, 2), -- Armor Type
+(22507, 4415, 3), -- Weapon Type
+(22507, 4416, 1), -- Races
 (22507, 5814, 1), -- Self-Destruction
 -- Boom - Child
-(22508, 4408, 1), -- HP Increase (1x)
-(22508, 4409, 1), -- MP Increase (1x)
-(22508, 4410, 11), -- Average P. Atk.
-(22508, 4411, 11), -- Average M. Atk.
-(22508, 4412, 11), -- Average P. Def.
-(22508, 4413, 11), -- Average M. Def.
-(22508, 4414, 2), -- Standard Type
-(22508, 4415, 3), -- One-handed Sword
-(22508, 4416, 1), -- Undead
+(22508, 4408, 1), -- HP Modifiers
+(22508, 4409, 1), -- MP Modifiers
+(22508, 4410, 11), -- P. Atk. Modifiers
+(22508, 4411, 11), -- M. Atk. Modifiers
+(22508, 4412, 11), -- P. Def. Modifiers
+(22508, 4413, 11), -- M. Def. Modifiers
+(22508, 4414, 2), -- Armor Type
+(22508, 4415, 3), -- Weapon Type
+(22508, 4416, 1), -- Races
 (22508, 5814, 1), -- Self-Destruction
 -- Fanatic of Infinity
-(22509, 4408, 16), -- HP Increase (8x)
-(22509, 4409, 1), -- MP Increase (1x)
-(22509, 4410, 7), -- Weak P. Atk.
-(22509, 4411, 8), -- Weak M. Atk.
-(22509, 4412, 17), -- Very Strong P. Def.
-(22509, 4413, 14), -- Strong M. Def.
-(22509, 4414, 2), -- Standard Type
-(22509, 4415, 3), -- One-handed Sword
-(22509, 4416, 6), -- Humanoids
+(22509, 4408, 16), -- HP Modifiers
+(22509, 4409, 1), -- MP Modifiers
+(22509, 4410, 7), -- P. Atk. Modifiers
+(22509, 4411, 8), -- M. Atk. Modifiers
+(22509, 4412, 17), -- P. Def. Modifiers
+(22509, 4413, 14), -- M. Def. Modifiers
+(22509, 4414, 2), -- Armor Type
+(22509, 4415, 3), -- Weapon Type
+(22509, 4416, 6), -- Races
 (22509, 5467, 1), -- Dark Attacks
 (22509, 5884, 1), -- Weakened Sweep
 (22509, 5886, 1), -- Ground Shaker
 (22509, 5889, 1), -- Tainted Shackle
 -- Rotten Messenger
-(22510, 4408, 16), -- HP Increase (8x)
-(22510, 4409, 1), -- MP Increase (1x)
-(22510, 4410, 7), -- Weak P. Atk.
-(22510, 4411, 8), -- Weak M. Atk.
-(22510, 4412, 16), -- Very Strong P. Def.
-(22510, 4413, 15), -- Strong M. Def.
-(22510, 4414, 2), -- Standard Type
-(22510, 4415, 3), -- One-handed Sword
-(22510, 4416, 1), -- Undead
+(22510, 4408, 16), -- HP Modifiers
+(22510, 4409, 1), -- MP Modifiers
+(22510, 4410, 7), -- P. Atk. Modifiers
+(22510, 4411, 8), -- M. Atk. Modifiers
+(22510, 4412, 16), -- P. Def. Modifiers
+(22510, 4413, 15), -- M. Def. Modifiers
+(22510, 4414, 2), -- Armor Type
+(22510, 4415, 3), -- Weapon Type
+(22510, 4416, 1), -- Races
 (22510, 5467, 1), -- Dark Attacks
 (22510, 5878, 1), -- Cruel Puncture
 (22510, 5879, 1), -- Cruel Expunge
 (22510, 5894, 1), -- Mark of Despair
 -- Zealot of Infinity
-(22511, 4408, 16), -- HP Increase (8x)
-(22511, 4409, 1), -- MP Increase (1x)
-(22511, 4410, 7), -- Weak P. Atk.
-(22511, 4411, 8), -- Weak M. Atk.
-(22511, 4412, 17), -- Very Strong P. Def.
-(22511, 4413, 16), -- Very Strong M. Def.
-(22511, 4414, 2), -- Standard Type
-(22511, 4415, 3), -- One-handed Sword
-(22511, 4416, 6), -- Humanoids
+(22511, 4408, 16), -- HP Modifiers
+(22511, 4409, 1), -- MP Modifiers
+(22511, 4410, 7), -- P. Atk. Modifiers
+(22511, 4411, 8), -- M. Atk. Modifiers
+(22511, 4412, 17), -- P. Def. Modifiers
+(22511, 4413, 16), -- M. Def. Modifiers
+(22511, 4414, 2), -- Armor Type
+(22511, 4415, 3), -- Weapon Type
+(22511, 4416, 6), -- Races
 (22511, 5467, 1), -- Dark Attacks
-(22511, 5897, 1), -- Spike of Anchor
+(22511, 5897, 1), -- Spike of Anger
 (22511, 5904, 1), -- Mist of Souleater
 -- Body Severer
-(22512, 4408, 16), -- HP Increase (8x)
-(22512, 4409, 1), -- MP Increase (1x)
-(22512, 4410, 8), -- Weak P. Atk.
-(22512, 4411, 8), -- Weak M. Atk.
-(22512, 4412, 17), -- Very Strong P. Def.
-(22512, 4413, 15), -- Strong M. Def.
-(22512, 4414, 2), -- Standard Type
-(22512, 4415, 3), -- One-handed Sword
-(22512, 4416, 1), -- Undead
+(22512, 4408, 16), -- HP Modifiers
+(22512, 4409, 1), -- MP Modifiers
+(22512, 4410, 8), -- P. Atk. Modifiers
+(22512, 4411, 8), -- M. Atk. Modifiers
+(22512, 4412, 17), -- P. Def. Modifiers
+(22512, 4413, 15), -- M. Def. Modifiers
+(22512, 4414, 2), -- Armor Type
+(22512, 4415, 3), -- Weapon Type
+(22512, 4416, 1), -- Races
 (22512, 5467, 1), -- Dark Attacks
 (22512, 5884, 1), -- Weakened Sweep
 (22512, 5895, 1), -- Mark of Cowardice
-(22512, 5898, 1), -- Blast of Anchor
+(22512, 5898, 1), -- Blast of Anger
 -- Body Harvester
-(22513, 4408, 14), -- HP Increase (6x)
-(22513, 4409, 1), -- MP Increase (1x)
-(22513, 4410, 11), -- Average P. Atk.
-(22513, 4411, 11), -- Average M. Atk.
-(22513, 4412, 14), -- Strong P. Def.
-(22513, 4413, 14), -- Strong M. Def.
-(22513, 4414, 2), -- Standard Type
-(22513, 4415, 3), -- One-handed Sword
-(22513, 4416, 1), -- Undead
+(22513, 4408, 14), -- HP Modifiers
+(22513, 4409, 1), -- MP Modifiers
+(22513, 4410, 11), -- P. Atk. Modifiers
+(22513, 4411, 11), -- M. Atk. Modifiers
+(22513, 4412, 14), -- P. Def. Modifiers
+(22513, 4413, 14), -- M. Def. Modifiers
+(22513, 4414, 2), -- Armor Type
+(22513, 4415, 3), -- Weapon Type
+(22513, 4416, 1), -- Races
 (22513, 5465, 1), -- Earth Attacks
 (22513, 5882, 1), -- Weakened Pommel
 (22513, 5883, 1), -- Meggling Injury
 (22513, 5889, 1), -- Tainted Shackle
 -- Soul Exploiter
-(22514, 4408, 16), -- HP Increase (8x)
-(22514, 4409, 1), -- MP Increase (1x)
-(22514, 4410, 7), -- Weak P. Atk.
-(22514, 4411, 8), -- Weak M. Atk.
-(22514, 4412, 17), -- Very Strong P. Def.
-(22514, 4413, 16), -- Very Strong M. Def.
-(22514, 4414, 2), -- Standard Type
-(22514, 4415, 3), -- One-handed Sword
-(22514, 4416, 1), -- Undead
+(22514, 4408, 16), -- HP Modifiers
+(22514, 4409, 1), -- MP Modifiers
+(22514, 4410, 7), -- P. Atk. Modifiers
+(22514, 4411, 8), -- M. Atk. Modifiers
+(22514, 4412, 17), -- P. Def. Modifiers
+(22514, 4413, 16), -- M. Def. Modifiers
+(22514, 4414, 2), -- Armor Type
+(22514, 4415, 3), -- Weapon Type
+(22514, 4416, 1), -- Races
 (22514, 5467, 1), -- Dark Attacks
 (22514, 5892, 1), -- Cunning Coercion
 (22514, 5903, 1), -- Burst of Misplace
 (22514, 5905, 1), -- Confusing Nuph
 -- Soul Devourer
-(22515, 4408, 16), -- HP Increase (8x)
-(22515, 4409, 1), -- MP Increase (1x)
-(22515, 4410, 7), -- Weak P. Atk.
-(22515, 4411, 8), -- Weak M. Atk.
-(22515, 4412, 16), -- Very Strong P. Def.
-(22515, 4413, 15), -- Strong M. Def.
-(22515, 4414, 2), -- Standard Type
-(22515, 4415, 3), -- One-handed Sword
-(22515, 4416, 1), -- Undead
+(22515, 4408, 16), -- HP Modifiers
+(22515, 4409, 1), -- MP Modifiers
+(22515, 4410, 7), -- P. Atk. Modifiers
+(22515, 4411, 8), -- M. Atk. Modifiers
+(22515, 4412, 16), -- P. Def. Modifiers
+(22515, 4413, 15), -- M. Def. Modifiers
+(22515, 4414, 2), -- Armor Type
+(22515, 4415, 3), -- Weapon Type
+(22515, 4416, 1), -- Races
 (22515, 5465, 1), -- Earth Attacks
 (22515, 5888, 1), -- Earth Shaker
 (22515, 5899, 1), -- Burst of Pain
 (22515, 5918, 8), -- Physical Root Weakness
 (22515, 5937, 1), -- Self Stun
 -- Butcher of Infinity
-(22516, 4408, 12), -- HP Increase (4x)
-(22516, 4409, 1), -- MP Increase (1x)
-(22516, 4410, 11), -- Average P. Atk.
-(22516, 4411, 9), -- Slightly Weak M. Atk.
-(22516, 4412, 11), -- Average P. Def.
-(22516, 4413, 11), -- Average M. Def.
-(22516, 4414, 2), -- Standard Type
-(22516, 4415, 3), -- One-handed Sword
-(22516, 4416, 6), -- Humanoids
+(22516, 4408, 12), -- HP Modifiers
+(22516, 4409, 1), -- MP Modifiers
+(22516, 4410, 11), -- P. Atk. Modifiers
+(22516, 4411, 9), -- M. Atk. Modifiers
+(22516, 4412, 11), -- P. Def. Modifiers
+(22516, 4413, 11), -- M. Def. Modifiers
+(22516, 4414, 2), -- Armor Type
+(22516, 4415, 3), -- Weapon Type
+(22516, 4416, 6), -- Races
 (22516, 5467, 1), -- Dark Attacks
 (22516, 5884, 1), -- Weakened Sweep
 (22516, 5886, 1), -- Ground Shaker
@@ -55268,30 +55268,30 @@ INSERT INTO `npcskills` VALUES
 (22516, 5909, 1), -- Stronghold Attack
 (22516, 5915, 1), -- Mummifying Aura
 -- Disciple of Infinity
-(22517, 4408, 12), -- HP Increase (4x)
-(22517, 4409, 1), -- MP Increase (1x)
-(22517, 4410, 8), -- Weak P. Atk.
-(22517, 4411, 14), -- Strong M. Atk.
-(22517, 4412, 9), -- Slightly Weak P. Def.
-(22517, 4413, 11), -- Average M. Def.
-(22517, 4414, 2), -- Standard Type
-(22517, 4415, 3), -- One-handed Sword
-(22517, 4416, 6), -- Humanoids
+(22517, 4408, 12), -- HP Modifiers
+(22517, 4409, 1), -- MP Modifiers
+(22517, 4410, 8), -- P. Atk. Modifiers
+(22517, 4411, 14), -- M. Atk. Modifiers
+(22517, 4412, 9), -- P. Def. Modifiers
+(22517, 4413, 11), -- M. Def. Modifiers
+(22517, 4414, 2), -- Armor Type
+(22517, 4415, 3), -- Weapon Type
+(22517, 4416, 6), -- Races
 (22517, 5467, 1), -- Dark Attacks
-(22517, 5897, 1), -- Spike of Anchor
+(22517, 5897, 1), -- Spike of Anger
 (22517, 5904, 1), -- Mist of Souleater
 (22517, 5910, 1), -- Stronghold Attack
 (22517, 5916, 1), -- Cruising Aura
 -- Rotten Messenger
-(22518, 4408, 12), -- HP Increase (4x)
-(22518, 4409, 1), -- MP Increase (1x)
-(22518, 4410, 11), -- Average P. Atk.
-(22518, 4411, 11), -- Average M. Atk.
-(22518, 4412, 9), -- Slightly Weak P. Def.
-(22518, 4413, 8), -- Weak M. Def.
-(22518, 4414, 2), -- Standard Type
-(22518, 4415, 3), -- One-handed Sword
-(22518, 4416, 1), -- Undead
+(22518, 4408, 12), -- HP Modifiers
+(22518, 4409, 1), -- MP Modifiers
+(22518, 4410, 11), -- P. Atk. Modifiers
+(22518, 4411, 11), -- M. Atk. Modifiers
+(22518, 4412, 9), -- P. Def. Modifiers
+(22518, 4413, 8), -- M. Def. Modifiers
+(22518, 4414, 2), -- Armor Type
+(22518, 4415, 3), -- Weapon Type
+(22518, 4416, 1), -- Races
 (22518, 5467, 1), -- Dark Attacks
 (22518, 5878, 1), -- Cruel Puncture
 (22518, 5879, 1), -- Cruel Expunge
@@ -55299,15 +55299,15 @@ INSERT INTO `npcskills` VALUES
 (22518, 5909, 1), -- Stronghold Attack
 (22518, 5917, 1), -- Shrouding Aura
 -- Body Harvester
-(22519, 4408, 12), -- HP Increase (4x)
-(22519, 4409, 1), -- MP Increase (1x)
-(22519, 4410, 11), -- Average P. Atk.
-(22519, 4411, 11), -- Average M. Atk.
-(22519, 4412, 11), -- Average P. Def.
-(22519, 4413, 11), -- Average M. Def.
-(22519, 4414, 2), -- Standard Type
-(22519, 4415, 3), -- One-handed Sword
-(22519, 4416, 1), -- Undead
+(22519, 4408, 12), -- HP Modifiers
+(22519, 4409, 1), -- MP Modifiers
+(22519, 4410, 11), -- P. Atk. Modifiers
+(22519, 4411, 11), -- M. Atk. Modifiers
+(22519, 4412, 11), -- P. Def. Modifiers
+(22519, 4413, 11), -- M. Def. Modifiers
+(22519, 4414, 2), -- Armor Type
+(22519, 4415, 3), -- Weapon Type
+(22519, 4416, 1), -- Races
 (22519, 5465, 1), -- Earth Attacks
 (22519, 5882, 1), -- Weakened Pommel
 (22519, 5883, 1), -- Meggling Injury
@@ -55315,31 +55315,31 @@ INSERT INTO `npcskills` VALUES
 (22519, 5909, 1), -- Stronghold Attack
 (22519, 5911, 1), -- Pestilence Cleanse
 -- Body Severer
-(22520, 4408, 12), -- HP Increase (4x)
-(22520, 4409, 1), -- MP Increase (1x)
-(22520, 4410, 11), -- Average P. Atk.
-(22520, 4411, 11), -- Average M. Atk.
-(22520, 4412, 11), -- Average P. Def.
-(22520, 4413, 11), -- Average M. Def.
-(22520, 4414, 2), -- Standard Type
-(22520, 4415, 3), -- One-handed Sword
-(22520, 4416, 1), -- Undead
+(22520, 4408, 12), -- HP Modifiers
+(22520, 4409, 1), -- MP Modifiers
+(22520, 4410, 11), -- P. Atk. Modifiers
+(22520, 4411, 11), -- M. Atk. Modifiers
+(22520, 4412, 11), -- P. Def. Modifiers
+(22520, 4413, 11), -- M. Def. Modifiers
+(22520, 4414, 2), -- Armor Type
+(22520, 4415, 3), -- Weapon Type
+(22520, 4416, 1), -- Races
 (22520, 5467, 1), -- Dark Attacks
 (22520, 5884, 1), -- Weakened Sweep
 (22520, 5895, 1), -- Mark of Cowardice
-(22520, 5898, 1), -- Blast of Anchor
+(22520, 5898, 1), -- Blast of Anger
 (22520, 5909, 1), -- Stronghold Attack
-(22520, 5913, 1), -- Putrefaction Cleanse
+(22520, 5913, 1), -- Putrefection Cleanse
 -- Soul Exploiter
-(22521, 4408, 12), -- HP Increase (4x)
-(22521, 4409, 1), -- MP Increase (1x)
-(22521, 4410, 8), -- Weak P. Atk.
-(22521, 4411, 14), -- Strong M. Atk.
-(22521, 4412, 7), -- Weak P. Def.
-(22521, 4413, 11), -- Average M. Def.
-(22521, 4414, 2), -- Standard Type
-(22521, 4415, 3), -- One-handed Sword
-(22521, 4416, 1), -- Undead
+(22521, 4408, 12), -- HP Modifiers
+(22521, 4409, 1), -- MP Modifiers
+(22521, 4410, 8), -- P. Atk. Modifiers
+(22521, 4411, 14), -- M. Atk. Modifiers
+(22521, 4412, 7), -- P. Def. Modifiers
+(22521, 4413, 11), -- M. Def. Modifiers
+(22521, 4414, 2), -- Armor Type
+(22521, 4415, 3), -- Weapon Type
+(22521, 4416, 1), -- Races
 (22521, 5467, 1), -- Dark Attacks
 (22521, 5892, 1), -- Cunning Coercion
 (22521, 5903, 1), -- Burst of Misplace
@@ -55347,15 +55347,15 @@ INSERT INTO `npcskills` VALUES
 (22521, 5910, 1), -- Stronghold Attack
 (22521, 5917, 1), -- Shrouding Aura
 -- Soul Devourer
-(22522, 4408, 12), -- HP Increase (4x)
-(22522, 4409, 1), -- MP Increase (1x)
-(22522, 4410, 9), -- Slightly Weak P. Atk.
-(22522, 4411, 9), -- Slightly Weak M. Atk.
-(22522, 4412, 11), -- Average P. Def.
-(22522, 4413, 11), -- Average M. Def.
-(22522, 4414, 2), -- Standard Type
-(22522, 4415, 3), -- One-handed Sword
-(22522, 4416, 1), -- Undead
+(22522, 4408, 12), -- HP Modifiers
+(22522, 4409, 1), -- MP Modifiers
+(22522, 4410, 9), -- P. Atk. Modifiers
+(22522, 4411, 9), -- M. Atk. Modifiers
+(22522, 4412, 11), -- P. Def. Modifiers
+(22522, 4413, 11), -- M. Def. Modifiers
+(22522, 4414, 2), -- Armor Type
+(22522, 4415, 3), -- Weapon Type
+(22522, 4416, 1), -- Races
 (22522, 4438, 5), -- Greater Resist Sleep
 (22522, 5465, 1), -- Earth Attacks
 (22522, 5888, 1), -- Earth Shaker
@@ -55364,30 +55364,30 @@ INSERT INTO `npcskills` VALUES
 (22522, 5911, 1), -- Pestilence Cleanse
 (22522, 5918, 8), -- Physical Root Weakness
 -- Soul Devourer
-(22523, 4408, 10), -- HP Increase (2x)
-(22523, 4409, 1), -- MP Increase (1x)
-(22523, 4410, 9), -- Slightly Weak P. Atk.
-(22523, 4411, 9), -- Slightly Weak M. Atk.
-(22523, 4412, 11), -- Average P. Def.
-(22523, 4413, 11), -- Average M. Def.
-(22523, 4414, 2), -- Standard Type
-(22523, 4415, 3), -- One-handed Sword
-(22523, 4416, 1), -- Undead
+(22523, 4408, 10), -- HP Modifiers
+(22523, 4409, 1), -- MP Modifiers
+(22523, 4410, 9), -- P. Atk. Modifiers
+(22523, 4411, 9), -- M. Atk. Modifiers
+(22523, 4412, 11), -- P. Def. Modifiers
+(22523, 4413, 11), -- M. Def. Modifiers
+(22523, 4414, 2), -- Armor Type
+(22523, 4415, 3), -- Weapon Type
+(22523, 4416, 1), -- Races
 (22523, 5465, 1), -- Earth Attacks
 (22523, 5888, 1), -- Earth Shaker
 (22523, 5899, 1), -- Burst of Pain
 (22523, 5911, 1), -- Pestilence Cleanse
 (22523, 5918, 8), -- Physical Root Weakness
 -- Emissary of Death
-(22524, 4408, 12), -- HP Increase (4x)
-(22524, 4409, 1), -- MP Increase (1x)
-(22524, 4410, 14), -- Strong P. Atk.
-(22524, 4411, 11), -- Average M. Atk.
-(22524, 4412, 11), -- Average P. Def.
-(22524, 4413, 11), -- Average M. Def.
-(22524, 4414, 2), -- Standard Type
-(22524, 4415, 3), -- One-handed Sword
-(22524, 4416, 1), -- Undead
+(22524, 4408, 12), -- HP Modifiers
+(22524, 4409, 1), -- MP Modifiers
+(22524, 4410, 14), -- P. Atk. Modifiers
+(22524, 4411, 11), -- M. Atk. Modifiers
+(22524, 4412, 11), -- P. Def. Modifiers
+(22524, 4413, 11), -- M. Def. Modifiers
+(22524, 4414, 2), -- Armor Type
+(22524, 4415, 3), -- Weapon Type
+(22524, 4416, 1), -- Races
 (22524, 5465, 1), -- Earth Attacks
 (22524, 5880, 1), -- Vicious Mutilation
 (22524, 5894, 1), -- Mark of Despair
@@ -55395,15 +55395,15 @@ INSERT INTO `npcskills` VALUES
 (22524, 5909, 1), -- Stronghold Attack
 (22524, 5916, 1), -- Cruising Aura
 -- Emissary of Death
-(22525, 4408, 12), -- HP Increase (4x)
-(22525, 4409, 1), -- MP Increase (1x)
-(22525, 4410, 14), -- Strong P. Atk.
-(22525, 4411, 11), -- Average M. Atk.
-(22525, 4412, 11), -- Average P. Def.
-(22525, 4413, 11), -- Average M. Def.
-(22525, 4414, 2), -- Standard Type
-(22525, 4415, 3), -- One-handed Sword
-(22525, 4416, 1), -- Undead
+(22525, 4408, 12), -- HP Modifiers
+(22525, 4409, 1), -- MP Modifiers
+(22525, 4410, 14), -- P. Atk. Modifiers
+(22525, 4411, 11), -- M. Atk. Modifiers
+(22525, 4412, 11), -- P. Def. Modifiers
+(22525, 4413, 11), -- M. Def. Modifiers
+(22525, 4414, 2), -- Armor Type
+(22525, 4415, 3), -- Weapon Type
+(22525, 4416, 1), -- Races
 (22525, 5465, 1), -- Earth Attacks
 (22525, 5880, 1), -- Vicious Mutilation
 (22525, 5894, 1), -- Mark of Despair
@@ -55411,15 +55411,15 @@ INSERT INTO `npcskills` VALUES
 (22525, 5909, 1), -- Stronghold Attack
 (22525, 5916, 1), -- Cruising Aura
 -- Emissary of Death
-(22526, 4408, 12), -- HP Increase (4x)
-(22526, 4409, 1), -- MP Increase (1x)
-(22526, 4410, 14), -- Strong P. Atk.
-(22526, 4411, 11), -- Average M. Atk.
-(22526, 4412, 11), -- Average P. Def.
-(22526, 4413, 11), -- Average M. Def.
-(22526, 4414, 2), -- Standard Type
-(22526, 4415, 19), -- Dual-Sword Weapons
-(22526, 4416, 1), -- Undead
+(22526, 4408, 12), -- HP Modifiers
+(22526, 4409, 1), -- MP Modifiers
+(22526, 4410, 14), -- P. Atk. Modifiers
+(22526, 4411, 11), -- M. Atk. Modifiers
+(22526, 4412, 11), -- P. Def. Modifiers
+(22526, 4413, 11), -- M. Def. Modifiers
+(22526, 4414, 2), -- Armor Type
+(22526, 4415, 19), -- Weapon Type
+(22526, 4416, 1), -- Races
 (22526, 5467, 1), -- Dark Attacks
 (22526, 5881, 1), -- Vicious Mutilation
 (22526, 5888, 1), -- Earth Shaker
@@ -55427,15 +55427,15 @@ INSERT INTO `npcskills` VALUES
 (22526, 5909, 1), -- Stronghold Attack
 (22526, 5986, 1), -- Vampiric Aura
 -- Emissary of Death
-(22527, 4408, 12), -- HP Increase (4x)
-(22527, 4409, 1), -- MP Increase (1x)
-(22527, 4410, 14), -- Strong P. Atk.
-(22527, 4411, 11), -- Average M. Atk.
-(22527, 4412, 11), -- Average P. Def.
-(22527, 4413, 11), -- Average M. Def.
-(22527, 4414, 2), -- Standard Type
-(22527, 4415, 19), -- Dual-Sword Weapons
-(22527, 4416, 1), -- Undead
+(22527, 4408, 12), -- HP Modifiers
+(22527, 4409, 1), -- MP Modifiers
+(22527, 4410, 14), -- P. Atk. Modifiers
+(22527, 4411, 11), -- M. Atk. Modifiers
+(22527, 4412, 11), -- P. Def. Modifiers
+(22527, 4413, 11), -- M. Def. Modifiers
+(22527, 4414, 2), -- Armor Type
+(22527, 4415, 19), -- Weapon Type
+(22527, 4416, 1), -- Races
 (22527, 5467, 1), -- Dark Attacks
 (22527, 5881, 1), -- Vicious Mutilation
 (22527, 5888, 1), -- Earth Shaker
@@ -55443,15 +55443,15 @@ INSERT INTO `npcskills` VALUES
 (22527, 5909, 1), -- Stronghold Attack
 (22527, 5986, 1), -- Vampiric Aura
 -- Cursed Prefect
-(22528, 4408, 12), -- HP Increase (4x)
-(22528, 4409, 1), -- MP Increase (1x)
-(22528, 4410, 11), -- Average P. Atk.
-(22528, 4411, 11), -- Average M. Atk.
-(22528, 4412, 13), -- Slightly Strong P. Def.
-(22528, 4413, 14), -- Strong M. Def.
-(22528, 4414, 2), -- Standard Type
-(22528, 4415, 11), -- Spears
-(22528, 4416, 1), -- Undead
+(22528, 4408, 12), -- HP Modifiers
+(22528, 4409, 1), -- MP Modifiers
+(22528, 4410, 11), -- P. Atk. Modifiers
+(22528, 4411, 11), -- M. Atk. Modifiers
+(22528, 4412, 13), -- P. Def. Modifiers
+(22528, 4413, 14), -- M. Def. Modifiers
+(22528, 4414, 2), -- Armor Type
+(22528, 4415, 11), -- Weapon Type
+(22528, 4416, 1), -- Races
 (22528, 5465, 1), -- Earth Attacks
 (22528, 5884, 1), -- Weakened Sweep
 (22528, 5887, 1), -- Howl from Beyond
@@ -55460,15 +55460,15 @@ INSERT INTO `npcskills` VALUES
 (22528, 5909, 1), -- Stronghold Attack
 (22528, 5915, 1), -- Mummifying Aura
 -- Cursed Prefect
-(22529, 4408, 12), -- HP Increase (4x)
-(22529, 4409, 1), -- MP Increase (1x)
-(22529, 4410, 11), -- Average P. Atk.
-(22529, 4411, 11), -- Average M. Atk.
-(22529, 4412, 13), -- Slightly Strong P. Def.
-(22529, 4413, 14), -- Strong M. Def.
-(22529, 4414, 2), -- Standard Type
-(22529, 4415, 11), -- Spears
-(22529, 4416, 1), -- Undead
+(22529, 4408, 12), -- HP Modifiers
+(22529, 4409, 1), -- MP Modifiers
+(22529, 4410, 11), -- P. Atk. Modifiers
+(22529, 4411, 11), -- M. Atk. Modifiers
+(22529, 4412, 13), -- P. Def. Modifiers
+(22529, 4413, 14), -- M. Def. Modifiers
+(22529, 4414, 2), -- Armor Type
+(22529, 4415, 11), -- Weapon Type
+(22529, 4416, 1), -- Races
 (22529, 5465, 1), -- Earth Attacks
 (22529, 5884, 1), -- Weakened Sweep
 (22529, 5887, 1), -- Howl from Beyond
@@ -55477,15 +55477,15 @@ INSERT INTO `npcskills` VALUES
 (22529, 5909, 1), -- Stronghold Attack
 (22529, 5915, 1), -- Mummifying Aura
 -- Cursed Prefect
-(22530, 4408, 12), -- HP Increase (4x)
-(22530, 4409, 1), -- MP Increase (1x)
-(22530, 4410, 11), -- Average P. Atk.
-(22530, 4411, 11), -- Average M. Atk.
-(22530, 4412, 13), -- Slightly Strong P. Def.
-(22530, 4413, 14), -- Strong M. Def.
-(22530, 4414, 2), -- Standard Type
-(22530, 4415, 13), -- Two-handed Sword
-(22530, 4416, 1), -- Undead
+(22530, 4408, 12), -- HP Modifiers
+(22530, 4409, 1), -- MP Modifiers
+(22530, 4410, 11), -- P. Atk. Modifiers
+(22530, 4411, 11), -- M. Atk. Modifiers
+(22530, 4412, 13), -- P. Def. Modifiers
+(22530, 4413, 14), -- M. Def. Modifiers
+(22530, 4414, 2), -- Armor Type
+(22530, 4415, 13), -- Weapon Type
+(22530, 4416, 1), -- Races
 (22530, 5467, 1), -- Dark Attacks
 (22530, 5885, 1), -- Weakened Sweep
 (22530, 5890, 1), -- Tainted Mass Shackle
@@ -55494,15 +55494,15 @@ INSERT INTO `npcskills` VALUES
 (22530, 5909, 1), -- Stronghold Attack
 (22530, 5985, 1), -- Decaying Aura
 -- Cursed Prefect
-(22531, 4408, 12), -- HP Increase (4x)
-(22531, 4409, 1), -- MP Increase (1x)
-(22531, 4410, 11), -- Average P. Atk.
-(22531, 4411, 11), -- Average M. Atk.
-(22531, 4412, 13), -- Slightly Strong P. Def.
-(22531, 4413, 14), -- Strong M. Def.
-(22531, 4414, 2), -- Standard Type
-(22531, 4415, 13), -- Two-handed Sword
-(22531, 4416, 1), -- Undead
+(22531, 4408, 12), -- HP Modifiers
+(22531, 4409, 1), -- MP Modifiers
+(22531, 4410, 11), -- P. Atk. Modifiers
+(22531, 4411, 11), -- M. Atk. Modifiers
+(22531, 4412, 13), -- P. Def. Modifiers
+(22531, 4413, 14), -- M. Def. Modifiers
+(22531, 4414, 2), -- Armor Type
+(22531, 4415, 13), -- Weapon Type
+(22531, 4416, 1), -- Races
 (22531, 5467, 1), -- Dark Attacks
 (22531, 5885, 1), -- Weakened Sweep
 (22531, 5890, 1), -- Tainted Mass Shackle
@@ -55511,47 +55511,47 @@ INSERT INTO `npcskills` VALUES
 (22531, 5909, 1), -- Stronghold Attack
 (22531, 5985, 1), -- Decaying Aura
 -- Law Scholar of Conclusions
-(22532, 4408, 12), -- HP Increase (4x)
-(22532, 4409, 1), -- MP Increase (1x)
-(22532, 4410, 9), -- Slightly Weak P. Atk.
-(22532, 4411, 14), -- Strong M. Atk.
-(22532, 4412, 8), -- Weak P. Def.
-(22532, 4413, 11), -- Average M. Def.
-(22532, 4414, 2), -- Standard Type
-(22532, 4415, 3), -- One-handed Sword
-(22532, 4416, 1), -- Undead
+(22532, 4408, 12), -- HP Modifiers
+(22532, 4409, 1), -- MP Modifiers
+(22532, 4410, 9), -- P. Atk. Modifiers
+(22532, 4411, 14), -- M. Atk. Modifiers
+(22532, 4412, 8), -- P. Def. Modifiers
+(22532, 4413, 11), -- M. Def. Modifiers
+(22532, 4414, 2), -- Armor Type
+(22532, 4415, 3), -- Weapon Type
+(22532, 4416, 1), -- Races
 (22532, 5467, 1), -- Dark Attacks
-(22532, 5898, 1), -- Blast of Anchor
+(22532, 5898, 1), -- Blast of Anger
 (22532, 5904, 1), -- Mist of Souleater
 (22532, 5907, 1), -- Ritual of Entombment
 (22532, 5910, 1), -- Stronghold Attack
 (22532, 5916, 1), -- Cruising Aura
 -- Law Scholar of Conclusions
-(22533, 4408, 12), -- HP Increase (4x)
-(22533, 4409, 1), -- MP Increase (1x)
-(22533, 4410, 9), -- Slightly Weak P. Atk.
-(22533, 4411, 14), -- Strong M. Atk.
-(22533, 4412, 8), -- Weak P. Def.
-(22533, 4413, 11), -- Average M. Def.
-(22533, 4414, 2), -- Standard Type
-(22533, 4415, 3), -- One-handed Sword
-(22533, 4416, 1), -- Undead
+(22533, 4408, 12), -- HP Modifiers
+(22533, 4409, 1), -- MP Modifiers
+(22533, 4410, 9), -- P. Atk. Modifiers
+(22533, 4411, 14), -- M. Atk. Modifiers
+(22533, 4412, 8), -- P. Def. Modifiers
+(22533, 4413, 11), -- M. Def. Modifiers
+(22533, 4414, 2), -- Armor Type
+(22533, 4415, 3), -- Weapon Type
+(22533, 4416, 1), -- Races
 (22533, 5467, 1), -- Dark Attacks
-(22533, 5898, 1), -- Blast of Anchor
+(22533, 5898, 1), -- Blast of Anger
 (22533, 5904, 1), -- Mist of Souleater
 (22533, 5907, 1), -- Ritual of Entombment
 (22533, 5910, 1), -- Stronghold Attack
 (22533, 5916, 1), -- Cruising Aura
 -- Law Scholar of Conclusions
-(22534, 4408, 12), -- HP Increase (4x)
-(22534, 4409, 1), -- MP Increase (1x)
-(22534, 4410, 9), -- Slightly Weak P. Atk.
-(22534, 4411, 14), -- Strong M. Atk.
-(22534, 4412, 8), -- Weak P. Def.
-(22534, 4413, 11), -- Average M. Def.
-(22534, 4414, 2), -- Standard Type
-(22534, 4415, 3), -- One-handed Sword
-(22534, 4416, 1), -- Undead
+(22534, 4408, 12), -- HP Modifiers
+(22534, 4409, 1), -- MP Modifiers
+(22534, 4410, 9), -- P. Atk. Modifiers
+(22534, 4411, 14), -- M. Atk. Modifiers
+(22534, 4412, 8), -- P. Def. Modifiers
+(22534, 4413, 11), -- M. Def. Modifiers
+(22534, 4414, 2), -- Armor Type
+(22534, 4415, 3), -- Weapon Type
+(22534, 4416, 1), -- Races
 (22534, 5465, 1), -- Earth Attacks
 (22534, 5896, 1), -- Soulless
 (22534, 5901, 1), -- Mist of Oblivion
@@ -55559,15 +55559,15 @@ INSERT INTO `npcskills` VALUES
 (22534, 5910, 1), -- Stronghold Attack
 (22534, 5917, 1), -- Shrouding Aura
 -- Law Scholar of Conclusions
-(22535, 4408, 12), -- HP Increase (4x)
-(22535, 4409, 1), -- MP Increase (1x)
-(22535, 4410, 9), -- Slightly Weak P. Atk.
-(22535, 4411, 14), -- Strong M. Atk.
-(22535, 4412, 8), -- Weak P. Def.
-(22535, 4413, 11), -- Average M. Def.
-(22535, 4414, 2), -- Standard Type
-(22535, 4415, 3), -- One-handed Sword
-(22535, 4416, 1), -- Undead
+(22535, 4408, 12), -- HP Modifiers
+(22535, 4409, 1), -- MP Modifiers
+(22535, 4410, 9), -- P. Atk. Modifiers
+(22535, 4411, 14), -- M. Atk. Modifiers
+(22535, 4412, 8), -- P. Def. Modifiers
+(22535, 4413, 11), -- M. Def. Modifiers
+(22535, 4414, 2), -- Armor Type
+(22535, 4415, 3), -- Weapon Type
+(22535, 4416, 1), -- Races
 (22535, 5465, 1), -- Earth Attacks
 (22535, 5896, 1), -- Soulless
 (22535, 5901, 1), -- Mist of Oblivion
@@ -55575,2857 +55575,2857 @@ INSERT INTO `npcskills` VALUES
 (22535, 5910, 1), -- Stronghold Attack
 (22535, 5917, 1), -- Shrouding Aura
 -- Royal Guard Captain
-(22536, 4072, 10), -- Stun
-(22536, 4408, 10), -- HP Increase (2x)
-(22536, 4409, 1), -- MP Increase (1x)
-(22536, 4410, 14), -- Strong P. Atk.
-(22536, 4411, 9), -- Slightly Weak M. Atk.
-(22536, 4412, 14), -- Strong P. Def.
-(22536, 4413, 9), -- Slightly Weak M. Def.
-(22536, 4414, 2), -- Standard Type
-(22536, 4415, 11), -- Spears
-(22536, 4416, 10), -- Dragons
-(22536, 5274, 5), -- Power Shot
+(22536, 4072, 10), -- Shock
+(22536, 4408, 10), -- HP Modifiers
+(22536, 4409, 1), -- MP Modifiers
+(22536, 4410, 14), -- P. Atk. Modifiers
+(22536, 4411, 9), -- M. Atk. Modifiers
+(22536, 4412, 14), -- P. Def. Modifiers
+(22536, 4413, 9), -- M. Def. Modifiers
+(22536, 4414, 2), -- Armor Type
+(22536, 4415, 11), -- Weapon Type
+(22536, 4416, 10), -- Races
+(22536, 5274, 5), -- NPC(party) - Physical Single Long Range Attack
 (22536, 5462, 1), -- Fire Attacks
 (22536, 5826, 1), -- Fire Breath
 -- Dragon Steed Troop Grand Magician
-(22537, 4408, 9), -- HP Increase (1/2x)
-(22537, 4409, 1), -- MP Increase (1x)
-(22537, 4410, 11), -- Average P. Atk.
-(22537, 4411, 12), -- Slightly Strong M. Atk.
-(22537, 4412, 11), -- Average P. Def.
-(22537, 4413, 11), -- Average M. Def.
-(22537, 4414, 2), -- Standard Type
-(22537, 4415, 3), -- One-handed Sword
-(22537, 4416, 10), -- Dragons
-(22537, 5328, 5), -- Unholy Strike
+(22537, 4408, 9), -- HP Modifiers
+(22537, 4409, 1), -- MP Modifiers
+(22537, 4410, 11), -- P. Atk. Modifiers
+(22537, 4411, 12), -- M. Atk. Modifiers
+(22537, 4412, 11), -- P. Def. Modifiers
+(22537, 4413, 11), -- M. Def. Modifiers
+(22537, 4414, 2), -- Armor Type
+(22537, 4415, 3), -- Weapon Type
+(22537, 4416, 10), -- Races
+(22537, 5328, 5), -- NPC(party) -Magic Single Long Range DD - Dark
 (22537, 5462, 1), -- Fire Attacks
 (22537, 5826, 1), -- Fire Breath
 (22537, 5829, 1), -- Fire Flare
 -- Dragon Steed Troop Commander
-(22538, 4408, 9), -- HP Increase (1/2x)
-(22538, 4409, 1), -- MP Increase (1x)
-(22538, 4410, 11), -- Average P. Atk.
-(22538, 4411, 11), -- Average M. Atk.
-(22538, 4412, 11), -- Average P. Def.
-(22538, 4413, 11), -- Average M. Def.
-(22538, 4414, 2), -- Standard Type
-(22538, 4415, 11), -- Spears
-(22538, 4416, 10), -- Dragons
+(22538, 4408, 9), -- HP Modifiers
+(22538, 4409, 1), -- MP Modifiers
+(22538, 4410, 11), -- P. Atk. Modifiers
+(22538, 4411, 11), -- M. Atk. Modifiers
+(22538, 4412, 11), -- P. Def. Modifiers
+(22538, 4413, 11), -- M. Def. Modifiers
+(22538, 4414, 2), -- Armor Type
+(22538, 4415, 11), -- Weapon Type
+(22538, 4416, 10), -- Races
 (22538, 5462, 1), -- Fire Attacks
 (22538, 5827, 5), -- Fireball
 (22538, 5830, 1), -- Polearm Thrust
 (22538, 5831, 1), -- Polearm Swing
 -- Dragon Steed Troops No 1 Battalion Commander
-(22539, 4408, 9), -- HP Increase (1/2x)
-(22539, 4409, 1), -- MP Increase (1x)
-(22539, 4410, 11), -- Average P. Atk.
-(22539, 4411, 11), -- Average M. Atk.
-(22539, 4412, 11), -- Average P. Def.
-(22539, 4413, 11), -- Average M. Def.
-(22539, 4414, 2), -- Standard Type
-(22539, 4415, 11), -- Spears
-(22539, 4416, 10), -- Dragons
+(22539, 4408, 9), -- HP Modifiers
+(22539, 4409, 1), -- MP Modifiers
+(22539, 4410, 11), -- P. Atk. Modifiers
+(22539, 4411, 11), -- M. Atk. Modifiers
+(22539, 4412, 11), -- P. Def. Modifiers
+(22539, 4413, 11), -- M. Def. Modifiers
+(22539, 4414, 2), -- Armor Type
+(22539, 4415, 11), -- Weapon Type
+(22539, 4416, 10), -- Races
 (22539, 5462, 1), -- Fire Attacks
 (22539, 5827, 4), -- Fireball
 (22539, 5830, 1), -- Polearm Thrust
 (22539, 5831, 1), -- Polearm Swing
 -- White Dragon Leader
-(22540, 4408, 9), -- HP Increase (1/2x)
-(22540, 4409, 1), -- MP Increase (1x)
-(22540, 4410, 11), -- Average P. Atk.
-(22540, 4411, 11), -- Average M. Atk.
-(22540, 4412, 14), -- Strong P. Def.
-(22540, 4413, 15), -- Strong M. Def.
-(22540, 4414, 2), -- Standard Type
-(22540, 4415, 3), -- One-handed Sword
-(22540, 4416, 10), -- Dragons
-(22540, 5274, 5), -- Power Shot
+(22540, 4408, 9), -- HP Modifiers
+(22540, 4409, 1), -- MP Modifiers
+(22540, 4410, 11), -- P. Atk. Modifiers
+(22540, 4411, 11), -- M. Atk. Modifiers
+(22540, 4412, 14), -- P. Def. Modifiers
+(22540, 4413, 15), -- M. Def. Modifiers
+(22540, 4414, 2), -- Armor Type
+(22540, 4415, 3), -- Weapon Type
+(22540, 4416, 10), -- Races
+(22540, 5274, 5), -- NPC(party) - Physical Single Long Range Attack
 (22540, 5462, 1), -- Fire Attacks
 (22540, 5827, 4), -- Fireball
 (22540, 5832, 1), -- Hate Aura
 -- Dragon Steed Troop Infantry
-(22541, 4408, 9), -- HP Increase (1/2x)
-(22541, 4409, 1), -- MP Increase (1x)
-(22541, 4410, 11), -- Average P. Atk.
-(22541, 4411, 11), -- Average M. Atk.
-(22541, 4412, 14), -- Strong P. Def.
-(22541, 4413, 15), -- Strong M. Def.
-(22541, 4414, 2), -- Standard Type
-(22541, 4415, 3), -- One-handed Sword
-(22541, 4416, 10), -- Dragons
-(22541, 5274, 5), -- Power Shot
+(22541, 4408, 9), -- HP Modifiers
+(22541, 4409, 1), -- MP Modifiers
+(22541, 4410, 11), -- P. Atk. Modifiers
+(22541, 4411, 11), -- M. Atk. Modifiers
+(22541, 4412, 14), -- P. Def. Modifiers
+(22541, 4413, 15), -- M. Def. Modifiers
+(22541, 4414, 2), -- Armor Type
+(22541, 4415, 3), -- Weapon Type
+(22541, 4416, 10), -- Races
+(22541, 5274, 5), -- NPC(party) - Physical Single Long Range Attack
 (22541, 5462, 1), -- Fire Attacks
 (22541, 5827, 3), -- Fireball
 (22541, 5832, 1), -- Hate Aura
 -- Dragon Steed Troop Magic Leader
-(22542, 4408, 1), -- HP Increase (1x)
-(22542, 4409, 1), -- MP Increase (1x)
-(22542, 4410, 11), -- Average P. Atk.
-(22542, 4411, 13), -- Slightly Strong M. Atk.
-(22542, 4412, 11), -- Average P. Def.
-(22542, 4413, 11), -- Average M. Def.
-(22542, 4414, 2), -- Standard Type
-(22542, 4415, 3), -- One-handed Sword
-(22542, 4416, 10), -- Dragons
-(22542, 5312, 5), -- Blaze
+(22542, 4408, 1), -- HP Modifiers
+(22542, 4409, 1), -- MP Modifiers
+(22542, 4410, 11), -- P. Atk. Modifiers
+(22542, 4411, 13), -- M. Atk. Modifiers
+(22542, 4412, 11), -- P. Def. Modifiers
+(22542, 4413, 11), -- M. Def. Modifiers
+(22542, 4414, 2), -- Armor Type
+(22542, 4415, 3), -- Weapon Type
+(22542, 4416, 10), -- Races
+(22542, 5312, 5), -- NPC(party) -Magic Single Long Range DD - Fire
 (22542, 5462, 1), -- Fire Attacks
 (22542, 5827, 4), -- Fireball
 (22542, 5829, 5), -- Fire Flare
 (22542, 5833, 1), -- Shield
 -- Dragon Steed Troop Magician
-(22543, 4408, 9), -- HP Increase (1/2x)
-(22543, 4409, 1), -- MP Increase (1x)
-(22543, 4410, 11), -- Average P. Atk.
-(22543, 4411, 11), -- Average M. Atk.
-(22543, 4412, 11), -- Average P. Def.
-(22543, 4413, 11), -- Average M. Def.
-(22543, 4414, 2), -- Standard Type
-(22543, 4415, 3), -- One-handed Sword
-(22543, 4416, 10), -- Dragons
-(22543, 5312, 5), -- Blaze
+(22543, 4408, 9), -- HP Modifiers
+(22543, 4409, 1), -- MP Modifiers
+(22543, 4410, 11), -- P. Atk. Modifiers
+(22543, 4411, 11), -- M. Atk. Modifiers
+(22543, 4412, 11), -- P. Def. Modifiers
+(22543, 4413, 11), -- M. Def. Modifiers
+(22543, 4414, 2), -- Armor Type
+(22543, 4415, 3), -- Weapon Type
+(22543, 4416, 10), -- Races
+(22543, 5312, 5), -- NPC(party) -Magic Single Long Range DD - Fire
 (22543, 5462, 1), -- Fire Attacks
 (22543, 5827, 4), -- Fireball
 (22543, 5829, 4), -- Fire Flare
 (22543, 5833, 1), -- Shield
 -- Dragon Steed Troop Magic Soldier
-(22544, 4408, 9), -- HP Increase (1/2x)
-(22544, 4409, 1), -- MP Increase (1x)
-(22544, 4410, 11), -- Average P. Atk.
-(22544, 4411, 11), -- Average M. Atk.
-(22544, 4412, 11), -- Average P. Def.
-(22544, 4413, 11), -- Average M. Def.
-(22544, 4414, 2), -- Standard Type
-(22544, 4415, 3), -- One-handed Sword
-(22544, 4416, 10), -- Dragons
-(22544, 5312, 5), -- Blaze
+(22544, 4408, 9), -- HP Modifiers
+(22544, 4409, 1), -- MP Modifiers
+(22544, 4410, 11), -- P. Atk. Modifiers
+(22544, 4411, 11), -- M. Atk. Modifiers
+(22544, 4412, 11), -- P. Def. Modifiers
+(22544, 4413, 11), -- M. Def. Modifiers
+(22544, 4414, 2), -- Armor Type
+(22544, 4415, 3), -- Weapon Type
+(22544, 4416, 10), -- Races
+(22544, 5312, 5), -- NPC(party) -Magic Single Long Range DD - Fire
 (22544, 5462, 1), -- Fire Attacks
 (22544, 5827, 3), -- Fireball
 (22544, 5829, 4), -- Fire Flare
 (22544, 5834, 1), -- Magic Barrier
 -- Wife of the Dragon of Darkness
 (22545, 4045, 1), -- Resist Full Magic Attack
-(22545, 4408, 1), -- HP Increase (1x)
-(22545, 4409, 1), -- MP Increase (1x)
-(22545, 4410, 11), -- Average P. Atk.
-(22545, 4411, 11), -- Average M. Atk.
-(22545, 4412, 16), -- Very Strong P. Def.
-(22545, 4413, 11), -- Average M. Def.
-(22545, 4414, 2), -- Standard Type
-(22545, 4415, 3), -- One-handed Sword
-(22545, 4416, 10), -- Dragons
-(22545, 5328, 5), -- Unholy Strike
+(22545, 4408, 1), -- HP Modifiers
+(22545, 4409, 1), -- MP Modifiers
+(22545, 4410, 11), -- P. Atk. Modifiers
+(22545, 4411, 11), -- M. Atk. Modifiers
+(22545, 4412, 16), -- P. Def. Modifiers
+(22545, 4413, 11), -- M. Def. Modifiers
+(22545, 4414, 2), -- Armor Type
+(22545, 4415, 3), -- Weapon Type
+(22545, 4416, 10), -- Races
+(22545, 5328, 5), -- NPC(party) -Magic Single Long Range DD - Dark
 (22545, 5467, 1), -- Dark Attacks
 (22545, 5827, 5), -- Fireball
 (22545, 5828, 1), -- Unholy Flare
 -- Warrior of Light
-(22546, 4211, 9), -- Might
-(22546, 4408, 9), -- HP Increase (1/2x)
-(22546, 4409, 1), -- MP Increase (1x)
-(22546, 4410, 15), -- Strong P. Atk.
-(22546, 4411, 11), -- Average M. Atk.
-(22546, 4412, 6), -- Very Weak P. Def.
-(22546, 4413, 6), -- Very Weak M. Def.
-(22546, 4414, 2), -- Standard Type
-(22546, 4415, 1), -- Bare Hands
-(22546, 4416, 10), -- Dragons
-(22546, 5274, 5), -- Power Shot
+(22546, 4211, 9), -- BOSS Might
+(22546, 4408, 9), -- HP Modifiers
+(22546, 4409, 1), -- MP Modifiers
+(22546, 4410, 15), -- P. Atk. Modifiers
+(22546, 4411, 11), -- M. Atk. Modifiers
+(22546, 4412, 6), -- P. Def. Modifiers
+(22546, 4413, 6), -- M. Def. Modifiers
+(22546, 4414, 2), -- Armor Type
+(22546, 4415, 1), -- Weapon Type
+(22546, 4416, 10), -- Races
+(22546, 5274, 5), -- NPC(party) - Physical Single Long Range Attack
 (22546, 5462, 1), -- Fire Attacks
 -- Dragon Steed Troop Healer
-(22547, 4408, 9), -- HP Increase (1/2x)
-(22547, 4409, 1), -- MP Increase (1x)
-(22547, 4410, 11), -- Average P. Atk.
-(22547, 4411, 11), -- Average M. Atk.
-(22547, 4412, 11), -- Average P. Def.
-(22547, 4413, 11), -- Average M. Def.
-(22547, 4414, 2), -- Standard Type
-(22547, 4415, 3), -- One-handed Sword
-(22547, 4416, 10), -- Dragons
-(22547, 4608, 2), -- Berserker Spirit
+(22547, 4408, 9), -- HP Modifiers
+(22547, 4409, 1), -- MP Modifiers
+(22547, 4410, 11), -- P. Atk. Modifiers
+(22547, 4411, 11), -- M. Atk. Modifiers
+(22547, 4412, 11), -- P. Def. Modifiers
+(22547, 4413, 11), -- M. Def. Modifiers
+(22547, 4414, 2), -- Armor Type
+(22547, 4415, 3), -- Weapon Type
+(22547, 4416, 10), -- Races
+(22547, 4608, 2), -- NPC Clan Buff - Berserk
 (22547, 5462, 1), -- Fire Attacks
 (22547, 5835, 1), -- Major Heal
 (22547, 5836, 1), -- Greater Heal
 -- Dragon Steed Troop Javelin Thrower
-(22548, 4408, 9), -- HP Increase (1/2x)
-(22548, 4409, 1), -- MP Increase (1x)
-(22548, 4410, 11), -- Average P. Atk.
-(22548, 4411, 11), -- Average M. Atk.
-(22548, 4412, 9), -- Slightly Weak P. Def.
-(22548, 4413, 9), -- Slightly Weak M. Def.
-(22548, 4414, 2), -- Standard Type
-(22548, 4415, 9), -- Bows
-(22548, 4416, 10), -- Dragons
+(22548, 4408, 9), -- HP Modifiers
+(22548, 4409, 1), -- MP Modifiers
+(22548, 4410, 11), -- P. Atk. Modifiers
+(22548, 4411, 11), -- M. Atk. Modifiers
+(22548, 4412, 9), -- P. Def. Modifiers
+(22548, 4413, 9), -- M. Def. Modifiers
+(22548, 4414, 2), -- Armor Type
+(22548, 4415, 9), -- Weapon Type
+(22548, 4416, 10), -- Races
 (22548, 5462, 1), -- Fire Attacks
 (22548, 5837, 1), -- Double Throwing Javelin
 (22548, 5838, 1), -- Throwing Javelin
 -- Dragon Steed Troop Javelin Thrower
-(22549, 4408, 9), -- HP Increase (1/2x)
-(22549, 4409, 1), -- MP Increase (1x)
-(22549, 4410, 11), -- Average P. Atk.
-(22549, 4411, 11), -- Average M. Atk.
-(22549, 4412, 9), -- Slightly Weak P. Def.
-(22549, 4413, 9), -- Slightly Weak M. Def.
-(22549, 4414, 2), -- Standard Type
-(22549, 4415, 9), -- Bows
-(22549, 4416, 10), -- Dragons
+(22549, 4408, 9), -- HP Modifiers
+(22549, 4409, 1), -- MP Modifiers
+(22549, 4410, 11), -- P. Atk. Modifiers
+(22549, 4411, 11), -- M. Atk. Modifiers
+(22549, 4412, 9), -- P. Def. Modifiers
+(22549, 4413, 9), -- M. Def. Modifiers
+(22549, 4414, 2), -- Armor Type
+(22549, 4415, 9), -- Weapon Type
+(22549, 4416, 10), -- Races
 (22549, 4441, 5), -- Greater Resist Mental Derangement
 (22549, 5462, 1), -- Fire Attacks
 (22549, 5837, 1), -- Double Throwing Javelin
 (22549, 5838, 1), -- Throwing Javelin
 -- Savage Warrior
-(22550, 4408, 9), -- HP Increase (1/2x)
-(22550, 4409, 1), -- MP Increase (1x)
-(22550, 4410, 11), -- Average P. Atk.
-(22550, 4411, 11), -- Average M. Atk.
-(22550, 4412, 11), -- Average P. Def.
-(22550, 4413, 11), -- Average M. Def.
-(22550, 4414, 2), -- Standard Type
-(22550, 4415, 5), -- Blunt Weapons
-(22550, 4416, 6), -- Humanoids
+(22550, 4408, 9), -- HP Modifiers
+(22550, 4409, 1), -- MP Modifiers
+(22550, 4410, 11), -- P. Atk. Modifiers
+(22550, 4411, 11), -- M. Atk. Modifiers
+(22550, 4412, 11), -- P. Def. Modifiers
+(22550, 4413, 11), -- M. Def. Modifiers
+(22550, 4414, 2), -- Armor Type
+(22550, 4415, 5), -- Weapon Type
+(22550, 4416, 6), -- Races
 (22550, 5202, 9), -- Stun
-(22550, 5274, 5), -- Power Shot
+(22550, 5274, 5), -- NPC(party) - Physical Single Long Range Attack
 (22550, 5309, 5), -- Bleed
 (22550, 5467, 1), -- Dark Attacks
 -- Priest of Darkness
-(22551, 4408, 9), -- HP Increase (1/2x)
-(22551, 4409, 1), -- MP Increase (1x)
-(22551, 4410, 11), -- Average P. Atk.
-(22551, 4411, 11), -- Average M. Atk.
-(22551, 4412, 11), -- Average P. Def.
-(22551, 4413, 11), -- Average M. Def.
-(22551, 4414, 2), -- Standard Type
-(22551, 4415, 3), -- One-handed Sword
-(22551, 4416, 6), -- Humanoids
-(22551, 5328, 5), -- Unholy Strike
+(22551, 4408, 9), -- HP Modifiers
+(22551, 4409, 1), -- MP Modifiers
+(22551, 4410, 11), -- P. Atk. Modifiers
+(22551, 4411, 11), -- M. Atk. Modifiers
+(22551, 4412, 11), -- P. Def. Modifiers
+(22551, 4413, 11), -- M. Def. Modifiers
+(22551, 4414, 2), -- Armor Type
+(22551, 4415, 3), -- Weapon Type
+(22551, 4416, 6), -- Races
+(22551, 5328, 5), -- NPC(party) -Magic Single Long Range DD - Dark
 (22551, 5467, 1), -- Dark Attacks
 (22551, 5828, 1), -- Unholy Flare
 -- Mutated Drake
-(22552, 4408, 9), -- HP Increase (1/2x)
-(22552, 4409, 1), -- MP Increase (1x)
-(22552, 4410, 11), -- Average P. Atk.
-(22552, 4411, 11), -- Average M. Atk.
-(22552, 4412, 11), -- Average P. Def.
-(22552, 4413, 11), -- Average M. Def.
-(22552, 4414, 2), -- Standard Type
-(22552, 4415, 3), -- One-handed Sword
-(22552, 4416, 10), -- Dragons
-(22552, 5274, 5), -- Power Shot
+(22552, 4408, 9), -- HP Modifiers
+(22552, 4409, 1), -- MP Modifiers
+(22552, 4410, 11), -- P. Atk. Modifiers
+(22552, 4411, 11), -- M. Atk. Modifiers
+(22552, 4412, 11), -- P. Def. Modifiers
+(22552, 4413, 11), -- M. Def. Modifiers
+(22552, 4414, 2), -- Armor Type
+(22552, 4415, 3), -- Weapon Type
+(22552, 4416, 10), -- Races
+(22552, 5274, 5), -- NPC(party) - Physical Single Long Range Attack
 (22552, 5462, 1), -- Fire Attacks
 -- Large Crystal Core
-(22553, 4408, 1), -- HP Increase (1x)
-(22553, 4409, 1), -- MP Increase (1x)
-(22553, 4410, 11), -- Average P. Atk.
-(22553, 4411, 11), -- Average M. Atk.
-(22553, 4412, 11), -- Average P. Def.
-(22553, 4413, 11), -- Average M. Def.
-(22553, 4414, 2), -- Standard Type
-(22553, 4415, 3), -- One-handed Sword
-(22553, 4416, 2), -- Magic Creatures
+(22553, 4408, 1), -- HP Modifiers
+(22553, 4409, 1), -- MP Modifiers
+(22553, 4410, 11), -- P. Atk. Modifiers
+(22553, 4411, 11), -- M. Atk. Modifiers
+(22553, 4412, 11), -- P. Def. Modifiers
+(22553, 4413, 11), -- M. Def. Modifiers
+(22553, 4414, 2), -- Armor Type
+(22553, 4415, 3), -- Weapon Type
+(22553, 4416, 2), -- Races
 -- Small Crystal Core
-(22554, 4408, 1), -- HP Increase (1x)
-(22554, 4409, 1), -- MP Increase (1x)
-(22554, 4410, 11), -- Average P. Atk.
-(22554, 4411, 11), -- Average M. Atk.
-(22554, 4412, 11), -- Average P. Def.
-(22554, 4413, 11), -- Average M. Def.
-(22554, 4414, 2), -- Standard Type
-(22554, 4415, 3), -- One-handed Sword
-(22554, 4416, 2), -- Magic Creatures
+(22554, 4408, 1), -- HP Modifiers
+(22554, 4409, 1), -- MP Modifiers
+(22554, 4410, 11), -- P. Atk. Modifiers
+(22554, 4411, 11), -- M. Atk. Modifiers
+(22554, 4412, 11), -- P. Def. Modifiers
+(22554, 4413, 11), -- M. Def. Modifiers
+(22554, 4414, 2), -- Armor Type
+(22554, 4415, 3), -- Weapon Type
+(22554, 4416, 2), -- Races
 -- Small Crystal Core
-(22555, 4408, 1), -- HP Increase (1x)
-(22555, 4409, 1), -- MP Increase (1x)
-(22555, 4410, 11), -- Average P. Atk.
-(22555, 4411, 11), -- Average M. Atk.
-(22555, 4412, 11), -- Average P. Def.
-(22555, 4413, 11), -- Average M. Def.
-(22555, 4414, 2), -- Standard Type
-(22555, 4415, 3), -- One-handed Sword
-(22555, 4416, 2), -- Magic Creatures
+(22555, 4408, 1), -- HP Modifiers
+(22555, 4409, 1), -- MP Modifiers
+(22555, 4410, 11), -- P. Atk. Modifiers
+(22555, 4411, 11), -- M. Atk. Modifiers
+(22555, 4412, 11), -- P. Def. Modifiers
+(22555, 4413, 11), -- M. Def. Modifiers
+(22555, 4414, 2), -- Armor Type
+(22555, 4415, 3), -- Weapon Type
+(22555, 4416, 2), -- Races
 -- Small Crystal Core
-(22556, 4408, 1), -- HP Increase (1x)
-(22556, 4409, 1), -- MP Increase (1x)
-(22556, 4410, 11), -- Average P. Atk.
-(22556, 4411, 11), -- Average M. Atk.
-(22556, 4412, 11), -- Average P. Def.
-(22556, 4413, 11), -- Average M. Def.
-(22556, 4414, 2), -- Standard Type
-(22556, 4415, 3), -- One-handed Sword
-(22556, 4416, 2), -- Magic Creatures
+(22556, 4408, 1), -- HP Modifiers
+(22556, 4409, 1), -- MP Modifiers
+(22556, 4410, 11), -- P. Atk. Modifiers
+(22556, 4411, 11), -- M. Atk. Modifiers
+(22556, 4412, 11), -- P. Def. Modifiers
+(22556, 4413, 11), -- M. Def. Modifiers
+(22556, 4414, 2), -- Armor Type
+(22556, 4415, 3), -- Weapon Type
+(22556, 4416, 2), -- Races
 -- Defense Mechanism
 (22557, 4045, 1), -- Resist Full Magic Attack
-(22557, 4408, 1), -- HP Increase (1x)
-(22557, 4409, 1), -- MP Increase (1x)
-(22557, 4410, 11), -- Average P. Atk.
-(22557, 4411, 11), -- Average M. Atk.
-(22557, 4412, 11), -- Average P. Def.
-(22557, 4413, 11), -- Average M. Def.
-(22557, 4414, 2), -- Standard Type
-(22557, 4415, 3), -- One-handed Sword
-(22557, 4416, 2), -- Magic Creatures
+(22557, 4408, 1), -- HP Modifiers
+(22557, 4409, 1), -- MP Modifiers
+(22557, 4410, 11), -- P. Atk. Modifiers
+(22557, 4411, 11), -- M. Atk. Modifiers
+(22557, 4412, 11), -- P. Def. Modifiers
+(22557, 4413, 11), -- M. Def. Modifiers
+(22557, 4414, 2), -- Armor Type
+(22557, 4415, 3), -- Weapon Type
+(22557, 4416, 2), -- Races
 (22557, 5961, 1), -- Barrier Thunder Storm
 -- Defense Battery
 (22558, 4045, 1), -- Resist Full Magic Attack
-(22558, 4408, 1), -- HP Increase (1x)
-(22558, 4409, 1), -- MP Increase (1x)
-(22558, 4410, 11), -- Average P. Atk.
-(22558, 4411, 11), -- Average M. Atk.
-(22558, 4412, 11), -- Average P. Def.
-(22558, 4413, 11), -- Average M. Def.
-(22558, 4414, 2), -- Standard Type
-(22558, 4415, 3), -- One-handed Sword
-(22558, 4416, 2), -- Magic Creatures
+(22558, 4408, 1), -- HP Modifiers
+(22558, 4409, 1), -- MP Modifiers
+(22558, 4410, 11), -- P. Atk. Modifiers
+(22558, 4411, 11), -- M. Atk. Modifiers
+(22558, 4412, 11), -- P. Def. Modifiers
+(22558, 4413, 11), -- M. Def. Modifiers
+(22558, 4414, 2), -- Armor Type
+(22558, 4415, 3), -- Weapon Type
+(22558, 4416, 2), -- Races
 (22558, 5962, 1), -- Air Defense Cannon
 -- Soldiers of Bravery
-(22569, 4408, 1), -- HP Increase (1x)
-(22569, 4409, 1), -- MP Increase (1x)
-(22569, 4410, 12), -- Slightly Strong P. Atk.
-(22569, 4411, 11), -- Average M. Atk.
-(22569, 4412, 11), -- Average P. Def.
-(22569, 4413, 11), -- Average M. Def.
-(22569, 4414, 2), -- Standard Type
-(22569, 4415, 11), -- Spears
-(22569, 4416, 10), -- Dragons
+(22569, 4408, 1), -- HP Modifiers
+(22569, 4409, 1), -- MP Modifiers
+(22569, 4410, 12), -- P. Atk. Modifiers
+(22569, 4411, 11), -- M. Atk. Modifiers
+(22569, 4412, 11), -- P. Def. Modifiers
+(22569, 4413, 11), -- M. Def. Modifiers
+(22569, 4414, 2), -- Armor Type
+(22569, 4415, 11), -- Weapon Type
+(22569, 4416, 10), -- Races
 (22569, 5203, 10), -- Fear
 (22569, 5309, 5), -- Bleed
 (22569, 5462, 1), -- Fire Attacks
 (22569, 5826, 1), -- Fire Breath
 -- Royal Guard Captain
-(22570, 4072, 10), -- Stun
-(22570, 4408, 10), -- HP Increase (2x)
-(22570, 4409, 1), -- MP Increase (1x)
-(22570, 4410, 13), -- Slightly Strong P. Atk.
-(22570, 4411, 11), -- Average M. Atk.
-(22570, 4412, 11), -- Average P. Def.
-(22570, 4413, 11), -- Average M. Def.
-(22570, 4414, 2), -- Standard Type
-(22570, 4415, 3), -- One-handed Sword
-(22570, 4416, 10), -- Dragons
-(22570, 5274, 5), -- Power Shot
+(22570, 4072, 10), -- Shock
+(22570, 4408, 10), -- HP Modifiers
+(22570, 4409, 1), -- MP Modifiers
+(22570, 4410, 13), -- P. Atk. Modifiers
+(22570, 4411, 11), -- M. Atk. Modifiers
+(22570, 4412, 11), -- P. Def. Modifiers
+(22570, 4413, 11), -- M. Def. Modifiers
+(22570, 4414, 2), -- Armor Type
+(22570, 4415, 3), -- Weapon Type
+(22570, 4416, 10), -- Races
+(22570, 5274, 5), -- NPC(party) - Physical Single Long Range Attack
 (22570, 5462, 1), -- Fire Attacks
 (22570, 5826, 1), -- Fire Breath
 -- Dragon Steed Troop Grand Magician
-(22571, 4408, 10), -- HP Increase (2x)
-(22571, 4409, 1), -- MP Increase (1x)
-(22571, 4410, 11), -- Average P. Atk.
-(22571, 4411, 13), -- Slightly Strong M. Atk.
-(22571, 4412, 11), -- Average P. Def.
-(22571, 4413, 11), -- Average M. Def.
-(22571, 4414, 2), -- Standard Type
-(22571, 4415, 3), -- One-handed Sword
-(22571, 4416, 10), -- Dragons
-(22571, 5328, 5), -- Unholy Strike
+(22571, 4408, 10), -- HP Modifiers
+(22571, 4409, 1), -- MP Modifiers
+(22571, 4410, 11), -- P. Atk. Modifiers
+(22571, 4411, 13), -- M. Atk. Modifiers
+(22571, 4412, 11), -- P. Def. Modifiers
+(22571, 4413, 11), -- M. Def. Modifiers
+(22571, 4414, 2), -- Armor Type
+(22571, 4415, 3), -- Weapon Type
+(22571, 4416, 10), -- Races
+(22571, 5328, 5), -- NPC(party) -Magic Single Long Range DD - Dark
 (22571, 5462, 1), -- Fire Attacks
 (22571, 5826, 1), -- Fire Breath
 (22571, 5829, 6), -- Fire Flare
 -- Dragon Steed Troop Commander
-(22572, 4408, 10), -- HP Increase (2x)
-(22572, 4409, 1), -- MP Increase (1x)
-(22572, 4410, 13), -- Slightly Strong P. Atk.
-(22572, 4411, 11), -- Average M. Atk.
-(22572, 4412, 11), -- Average P. Def.
-(22572, 4413, 11), -- Average M. Def.
-(22572, 4414, 2), -- Standard Type
-(22572, 4415, 11), -- Spears
-(22572, 4416, 10), -- Dragons
+(22572, 4408, 10), -- HP Modifiers
+(22572, 4409, 1), -- MP Modifiers
+(22572, 4410, 13), -- P. Atk. Modifiers
+(22572, 4411, 11), -- M. Atk. Modifiers
+(22572, 4412, 11), -- P. Def. Modifiers
+(22572, 4413, 11), -- M. Def. Modifiers
+(22572, 4414, 2), -- Armor Type
+(22572, 4415, 11), -- Weapon Type
+(22572, 4416, 10), -- Races
 (22572, 5462, 1), -- Fire Attacks
 (22572, 5826, 1), -- Fire Breath
 (22572, 5830, 1), -- Polearm Thrust
 (22572, 5831, 1), -- Polearm Swing
 -- Dragon Steed Troops No 1 Battalion Commander
-(22573, 4408, 9), -- HP Increase (1/2x)
-(22573, 4409, 1), -- MP Increase (1x)
-(22573, 4410, 11), -- Average P. Atk.
-(22573, 4411, 11), -- Average M. Atk.
-(22573, 4412, 11), -- Average P. Def.
-(22573, 4413, 11), -- Average M. Def.
-(22573, 4414, 2), -- Standard Type
-(22573, 4415, 11), -- Spears
-(22573, 4416, 10), -- Dragons
+(22573, 4408, 9), -- HP Modifiers
+(22573, 4409, 1), -- MP Modifiers
+(22573, 4410, 11), -- P. Atk. Modifiers
+(22573, 4411, 11), -- M. Atk. Modifiers
+(22573, 4412, 11), -- P. Def. Modifiers
+(22573, 4413, 11), -- M. Def. Modifiers
+(22573, 4414, 2), -- Armor Type
+(22573, 4415, 11), -- Weapon Type
+(22573, 4416, 10), -- Races
 (22573, 5462, 1), -- Fire Attacks
 (22573, 5826, 1), -- Fire Breath
 (22573, 5830, 1), -- Polearm Thrust
 (22573, 5831, 1), -- Polearm Swing
 -- White Dragon Leader
-(22574, 4408, 9), -- HP Increase (1/2x)
-(22574, 4409, 1), -- MP Increase (1x)
-(22574, 4410, 11), -- Average P. Atk.
-(22574, 4411, 11), -- Average M. Atk.
-(22574, 4412, 14), -- Strong P. Def.
-(22574, 4413, 15), -- Strong M. Def.
-(22574, 4414, 2), -- Standard Type
-(22574, 4415, 3), -- One-handed Sword
-(22574, 4416, 10), -- Dragons
-(22574, 5274, 5), -- Power Shot
+(22574, 4408, 9), -- HP Modifiers
+(22574, 4409, 1), -- MP Modifiers
+(22574, 4410, 11), -- P. Atk. Modifiers
+(22574, 4411, 11), -- M. Atk. Modifiers
+(22574, 4412, 14), -- P. Def. Modifiers
+(22574, 4413, 15), -- M. Def. Modifiers
+(22574, 4414, 2), -- Armor Type
+(22574, 4415, 3), -- Weapon Type
+(22574, 4416, 10), -- Races
+(22574, 5274, 5), -- NPC(party) - Physical Single Long Range Attack
 (22574, 5462, 1), -- Fire Attacks
 (22574, 5826, 1), -- Fire Breath
 (22574, 5832, 1), -- Hate Aura
 -- Dragon Steed Troop Infantry
-(22575, 4408, 9), -- HP Increase (1/2x)
-(22575, 4409, 1), -- MP Increase (1x)
-(22575, 4410, 11), -- Average P. Atk.
-(22575, 4411, 11), -- Average M. Atk.
-(22575, 4412, 14), -- Strong P. Def.
-(22575, 4413, 15), -- Strong M. Def.
-(22575, 4414, 2), -- Standard Type
-(22575, 4415, 3), -- One-handed Sword
-(22575, 4416, 10), -- Dragons
-(22575, 5274, 5), -- Power Shot
+(22575, 4408, 9), -- HP Modifiers
+(22575, 4409, 1), -- MP Modifiers
+(22575, 4410, 11), -- P. Atk. Modifiers
+(22575, 4411, 11), -- M. Atk. Modifiers
+(22575, 4412, 14), -- P. Def. Modifiers
+(22575, 4413, 15), -- M. Def. Modifiers
+(22575, 4414, 2), -- Armor Type
+(22575, 4415, 3), -- Weapon Type
+(22575, 4416, 10), -- Races
+(22575, 5274, 5), -- NPC(party) - Physical Single Long Range Attack
 (22575, 5462, 1), -- Fire Attacks
 (22575, 5826, 1), -- Fire Breath
 (22575, 5832, 1), -- Hate Aura
 -- Dragon Steed Troop Magic Leader
-(22576, 4408, 9), -- HP Increase (1/2x)
-(22576, 4409, 1), -- MP Increase (1x)
-(22576, 4410, 11), -- Average P. Atk.
-(22576, 4411, 13), -- Slightly Strong M. Atk.
-(22576, 4412, 11), -- Average P. Def.
-(22576, 4413, 11), -- Average M. Def.
-(22576, 4414, 2), -- Standard Type
-(22576, 4415, 3), -- One-handed Sword
-(22576, 4416, 10), -- Dragons
-(22576, 5312, 5), -- Blaze
+(22576, 4408, 9), -- HP Modifiers
+(22576, 4409, 1), -- MP Modifiers
+(22576, 4410, 11), -- P. Atk. Modifiers
+(22576, 4411, 13), -- M. Atk. Modifiers
+(22576, 4412, 11), -- P. Def. Modifiers
+(22576, 4413, 11), -- M. Def. Modifiers
+(22576, 4414, 2), -- Armor Type
+(22576, 4415, 3), -- Weapon Type
+(22576, 4416, 10), -- Races
+(22576, 5312, 5), -- NPC(party) -Magic Single Long Range DD - Fire
 (22576, 5462, 1), -- Fire Attacks
 (22576, 5826, 1), -- Fire Breath
 (22576, 5829, 5), -- Fire Flare
 (22576, 5833, 1), -- Shield
 -- Dragon Steed Troop Magician
-(22577, 4408, 9), -- HP Increase (1/2x)
-(22577, 4409, 1), -- MP Increase (1x)
-(22577, 4410, 11), -- Average P. Atk.
-(22577, 4411, 11), -- Average M. Atk.
-(22577, 4412, 11), -- Average P. Def.
-(22577, 4413, 11), -- Average M. Def.
-(22577, 4414, 2), -- Standard Type
-(22577, 4415, 3), -- One-handed Sword
-(22577, 4416, 10), -- Dragons
-(22577, 5312, 5), -- Blaze
+(22577, 4408, 9), -- HP Modifiers
+(22577, 4409, 1), -- MP Modifiers
+(22577, 4410, 11), -- P. Atk. Modifiers
+(22577, 4411, 11), -- M. Atk. Modifiers
+(22577, 4412, 11), -- P. Def. Modifiers
+(22577, 4413, 11), -- M. Def. Modifiers
+(22577, 4414, 2), -- Armor Type
+(22577, 4415, 3), -- Weapon Type
+(22577, 4416, 10), -- Races
+(22577, 5312, 5), -- NPC(party) -Magic Single Long Range DD - Fire
 (22577, 5462, 1), -- Fire Attacks
 (22577, 5826, 1), -- Fire Breath
 (22577, 5829, 4), -- Fire Flare
 (22577, 5833, 1), -- Shield
 -- Dragon Steed Troop Magic Soldier
-(22578, 4408, 9), -- HP Increase (1/2x)
-(22578, 4409, 1), -- MP Increase (1x)
-(22578, 4410, 11), -- Average P. Atk.
-(22578, 4411, 11), -- Average M. Atk.
-(22578, 4412, 11), -- Average P. Def.
-(22578, 4413, 11), -- Average M. Def.
-(22578, 4414, 2), -- Standard Type
-(22578, 4415, 3), -- One-handed Sword
-(22578, 4416, 10), -- Dragons
-(22578, 5312, 5), -- Blaze
+(22578, 4408, 9), -- HP Modifiers
+(22578, 4409, 1), -- MP Modifiers
+(22578, 4410, 11), -- P. Atk. Modifiers
+(22578, 4411, 11), -- M. Atk. Modifiers
+(22578, 4412, 11), -- P. Def. Modifiers
+(22578, 4413, 11), -- M. Def. Modifiers
+(22578, 4414, 2), -- Armor Type
+(22578, 4415, 3), -- Weapon Type
+(22578, 4416, 10), -- Races
+(22578, 5312, 5), -- NPC(party) -Magic Single Long Range DD - Fire
 (22578, 5462, 1), -- Fire Attacks
 (22578, 5826, 1), -- Fire Breath
 (22578, 5829, 4), -- Fire Flare
 (22578, 5834, 1), -- Magic Barrier
 -- Warrior of Light
-(22579, 4211, 9), -- Might
-(22579, 4408, 9), -- HP Increase (1/2x)
-(22579, 4409, 1), -- MP Increase (1x)
-(22579, 4410, 11), -- Average P. Atk.
-(22579, 4411, 11), -- Average M. Atk.
-(22579, 4412, 11), -- Average P. Def.
-(22579, 4413, 11), -- Average M. Def.
-(22579, 4414, 2), -- Standard Type
-(22579, 4415, 1), -- Bare Hands
-(22579, 4416, 10), -- Dragons
-(22579, 5274, 5), -- Power Shot
+(22579, 4211, 9), -- BOSS Might
+(22579, 4408, 9), -- HP Modifiers
+(22579, 4409, 1), -- MP Modifiers
+(22579, 4410, 11), -- P. Atk. Modifiers
+(22579, 4411, 11), -- M. Atk. Modifiers
+(22579, 4412, 11), -- P. Def. Modifiers
+(22579, 4413, 11), -- M. Def. Modifiers
+(22579, 4414, 2), -- Armor Type
+(22579, 4415, 1), -- Weapon Type
+(22579, 4416, 10), -- Races
+(22579, 5274, 5), -- NPC(party) - Physical Single Long Range Attack
 (22579, 5462, 1), -- Fire Attacks
 -- Dragon Steed Troop Healer
-(22580, 4408, 9), -- HP Increase (1/2x)
-(22580, 4409, 1), -- MP Increase (1x)
-(22580, 4410, 11), -- Average P. Atk.
-(22580, 4411, 11), -- Average M. Atk.
-(22580, 4412, 11), -- Average P. Def.
-(22580, 4413, 11), -- Average M. Def.
-(22580, 4414, 2), -- Standard Type
-(22580, 4415, 3), -- One-handed Sword
-(22580, 4416, 10), -- Dragons
-(22580, 4608, 2), -- Berserker Spirit
+(22580, 4408, 9), -- HP Modifiers
+(22580, 4409, 1), -- MP Modifiers
+(22580, 4410, 11), -- P. Atk. Modifiers
+(22580, 4411, 11), -- M. Atk. Modifiers
+(22580, 4412, 11), -- P. Def. Modifiers
+(22580, 4413, 11), -- M. Def. Modifiers
+(22580, 4414, 2), -- Armor Type
+(22580, 4415, 3), -- Weapon Type
+(22580, 4416, 10), -- Races
+(22580, 4608, 2), -- NPC Clan Buff - Berserk
 (22580, 5462, 1), -- Fire Attacks
 (22580, 5835, 1), -- Major Heal
 (22580, 5836, 1), -- Greater Heal
 -- Dragon Steed Troop Javelin Thrower
-(22581, 4408, 9), -- HP Increase (1/2x)
-(22581, 4409, 1), -- MP Increase (1x)
-(22581, 4410, 11), -- Average P. Atk.
-(22581, 4411, 11), -- Average M. Atk.
-(22581, 4412, 11), -- Average P. Def.
-(22581, 4413, 11), -- Average M. Def.
-(22581, 4414, 2), -- Standard Type
-(22581, 4415, 9), -- Bows
-(22581, 4416, 10), -- Dragons
+(22581, 4408, 9), -- HP Modifiers
+(22581, 4409, 1), -- MP Modifiers
+(22581, 4410, 11), -- P. Atk. Modifiers
+(22581, 4411, 11), -- M. Atk. Modifiers
+(22581, 4412, 11), -- P. Def. Modifiers
+(22581, 4413, 11), -- M. Def. Modifiers
+(22581, 4414, 2), -- Armor Type
+(22581, 4415, 9), -- Weapon Type
+(22581, 4416, 10), -- Races
 (22581, 5462, 1), -- Fire Attacks
 (22581, 5837, 1), -- Double Throwing Javelin
 (22581, 5838, 1), -- Throwing Javelin
 -- Dragon Steed Troop Javelin Thrower
-(22582, 4408, 9), -- HP Increase (1/2x)
-(22582, 4409, 1), -- MP Increase (1x)
-(22582, 4410, 11), -- Average P. Atk.
-(22582, 4411, 11), -- Average M. Atk.
-(22582, 4412, 11), -- Average P. Def.
-(22582, 4413, 11), -- Average M. Def.
-(22582, 4414, 2), -- Standard Type
-(22582, 4415, 9), -- Bows
-(22582, 4416, 10), -- Dragons
+(22582, 4408, 9), -- HP Modifiers
+(22582, 4409, 1), -- MP Modifiers
+(22582, 4410, 11), -- P. Atk. Modifiers
+(22582, 4411, 11), -- M. Atk. Modifiers
+(22582, 4412, 11), -- P. Def. Modifiers
+(22582, 4413, 11), -- M. Def. Modifiers
+(22582, 4414, 2), -- Armor Type
+(22582, 4415, 9), -- Weapon Type
+(22582, 4416, 10), -- Races
 (22582, 4441, 5), -- Greater Resist Mental Derangement
 (22582, 5462, 1), -- Fire Attacks
 (22582, 5837, 1), -- Double Throwing Javelin
 (22582, 5838, 1), -- Throwing Javelin
 -- Dragon Steed Troop Magic Leader
-(22583, 4408, 9), -- HP Increase (1/2x)
-(22583, 4409, 1), -- MP Increase (1x)
-(22583, 4410, 11), -- Average P. Atk.
-(22583, 4411, 11), -- Average M. Atk.
-(22583, 4412, 11), -- Average P. Def.
-(22583, 4413, 11), -- Average M. Def.
-(22583, 4414, 2), -- Standard Type
-(22583, 4415, 3), -- One-handed Sword
-(22583, 4416, 10), -- Dragons
+(22583, 4408, 9), -- HP Modifiers
+(22583, 4409, 1), -- MP Modifiers
+(22583, 4410, 11), -- P. Atk. Modifiers
+(22583, 4411, 11), -- M. Atk. Modifiers
+(22583, 4412, 11), -- P. Def. Modifiers
+(22583, 4413, 11), -- M. Def. Modifiers
+(22583, 4414, 2), -- Armor Type
+(22583, 4415, 3), -- Weapon Type
+(22583, 4416, 10), -- Races
 (22583, 4441, 5), -- Greater Resist Mental Derangement
-(22583, 5312, 5), -- Blaze
+(22583, 5312, 5), -- NPC(party) -Magic Single Long Range DD - Fire
 (22583, 5462, 1), -- Fire Attacks
 (22583, 5827, 4), -- Fireball
 (22583, 5829, 5), -- Fire Flare
 (22583, 5833, 1), -- Shield
 -- Dragon Steed Troop Magician
-(22584, 4408, 9), -- HP Increase (1/2x)
-(22584, 4409, 1), -- MP Increase (1x)
-(22584, 4410, 11), -- Average P. Atk.
-(22584, 4411, 11), -- Average M. Atk.
-(22584, 4412, 11), -- Average P. Def.
-(22584, 4413, 11), -- Average M. Def.
-(22584, 4414, 2), -- Standard Type
-(22584, 4415, 3), -- One-handed Sword
-(22584, 4416, 10), -- Dragons
+(22584, 4408, 9), -- HP Modifiers
+(22584, 4409, 1), -- MP Modifiers
+(22584, 4410, 11), -- P. Atk. Modifiers
+(22584, 4411, 11), -- M. Atk. Modifiers
+(22584, 4412, 11), -- P. Def. Modifiers
+(22584, 4413, 11), -- M. Def. Modifiers
+(22584, 4414, 2), -- Armor Type
+(22584, 4415, 3), -- Weapon Type
+(22584, 4416, 10), -- Races
 (22584, 4441, 5), -- Greater Resist Mental Derangement
-(22584, 5312, 5), -- Blaze
+(22584, 5312, 5), -- NPC(party) -Magic Single Long Range DD - Fire
 (22584, 5462, 1), -- Fire Attacks
 (22584, 5827, 4), -- Fireball
 (22584, 5829, 4), -- Fire Flare
 (22584, 5833, 1), -- Shield
 -- Dragon Steed Troop Magic Soldier
-(22585, 4408, 9), -- HP Increase (1/2x)
-(22585, 4409, 1), -- MP Increase (1x)
-(22585, 4410, 11), -- Average P. Atk.
-(22585, 4411, 11), -- Average M. Atk.
-(22585, 4412, 11), -- Average P. Def.
-(22585, 4413, 11), -- Average M. Def.
-(22585, 4414, 2), -- Standard Type
-(22585, 4415, 3), -- One-handed Sword
-(22585, 4416, 10), -- Dragons
+(22585, 4408, 9), -- HP Modifiers
+(22585, 4409, 1), -- MP Modifiers
+(22585, 4410, 11), -- P. Atk. Modifiers
+(22585, 4411, 11), -- M. Atk. Modifiers
+(22585, 4412, 11), -- P. Def. Modifiers
+(22585, 4413, 11), -- M. Def. Modifiers
+(22585, 4414, 2), -- Armor Type
+(22585, 4415, 3), -- Weapon Type
+(22585, 4416, 10), -- Races
 (22585, 4441, 5), -- Greater Resist Mental Derangement
-(22585, 5312, 5), -- Blaze
+(22585, 5312, 5), -- NPC(party) -Magic Single Long Range DD - Fire
 (22585, 5462, 1), -- Fire Attacks
 (22585, 5827, 3), -- Fireball
 (22585, 5829, 4), -- Fire Flare
 (22585, 5834, 1), -- Magic Barrier
 -- Dragon Steed Troop Commander
-(22586, 4071, 5), -- Resist Bow/Crossbow Weapons
-(22586, 4408, 10), -- HP Increase (2x)
-(22586, 4409, 1), -- MP Increase (1x)
-(22586, 4410, 13), -- Slightly Strong P. Atk.
-(22586, 4411, 11), -- Average M. Atk.
-(22586, 4412, 11), -- Average P. Def.
-(22586, 4413, 15), -- Strong M. Def.
-(22586, 4414, 2), -- Standard Type
-(22586, 4415, 11), -- Spears
-(22586, 4416, 10), -- Dragons
+(22586, 4071, 5), -- Resist Archery
+(22586, 4408, 10), -- HP Modifiers
+(22586, 4409, 1), -- MP Modifiers
+(22586, 4410, 13), -- P. Atk. Modifiers
+(22586, 4411, 11), -- M. Atk. Modifiers
+(22586, 4412, 11), -- P. Def. Modifiers
+(22586, 4413, 15), -- M. Def. Modifiers
+(22586, 4414, 2), -- Armor Type
+(22586, 4415, 11), -- Weapon Type
+(22586, 4416, 10), -- Races
 (22586, 5462, 1), -- Fire Attacks
 (22586, 5827, 5), -- Fireball
 (22586, 5830, 1), -- Polearm Thrust
 (22586, 5831, 1), -- Polearm Swing
 -- null
-(22587, 4071, 5), -- Resist Bow/Crossbow Weapons
-(22587, 4408, 9), -- HP Increase (1/2x)
-(22587, 4409, 1), -- MP Increase (1x)
-(22587, 4410, 11), -- Average P. Atk.
-(22587, 4411, 11), -- Average M. Atk.
-(22587, 4412, 11), -- Average P. Def.
-(22587, 4413, 15), -- Strong M. Def.
-(22587, 4414, 2), -- Standard Type
-(22587, 4415, 11), -- Spears
-(22587, 4416, 10), -- Dragons
+(22587, 4071, 5), -- Resist Archery
+(22587, 4408, 9), -- HP Modifiers
+(22587, 4409, 1), -- MP Modifiers
+(22587, 4410, 11), -- P. Atk. Modifiers
+(22587, 4411, 11), -- M. Atk. Modifiers
+(22587, 4412, 11), -- P. Def. Modifiers
+(22587, 4413, 15), -- M. Def. Modifiers
+(22587, 4414, 2), -- Armor Type
+(22587, 4415, 11), -- Weapon Type
+(22587, 4416, 10), -- Races
 (22587, 5462, 1), -- Fire Attacks
 (22587, 5827, 4), -- Fireball
 (22587, 5830, 1), -- Polearm Thrust
 (22587, 5831, 1), -- Polearm Swing
 -- White Dragon Leader
-(22588, 4071, 5), -- Resist Bow/Crossbow Weapons
-(22588, 4408, 9), -- HP Increase (1/2x)
-(22588, 4409, 1), -- MP Increase (1x)
-(22588, 4410, 11), -- Average P. Atk.
-(22588, 4411, 11), -- Average M. Atk.
-(22588, 4412, 11), -- Average P. Def.
-(22588, 4413, 15), -- Strong M. Def.
-(22588, 4414, 2), -- Standard Type
-(22588, 4415, 3), -- One-handed Sword
-(22588, 4416, 10), -- Dragons
+(22588, 4071, 5), -- Resist Archery
+(22588, 4408, 9), -- HP Modifiers
+(22588, 4409, 1), -- MP Modifiers
+(22588, 4410, 11), -- P. Atk. Modifiers
+(22588, 4411, 11), -- M. Atk. Modifiers
+(22588, 4412, 11), -- P. Def. Modifiers
+(22588, 4413, 15), -- M. Def. Modifiers
+(22588, 4414, 2), -- Armor Type
+(22588, 4415, 3), -- Weapon Type
+(22588, 4416, 10), -- Races
 (22588, 4441, 5), -- Greater Resist Mental Derangement
-(22588, 5274, 5), -- Power Shot
+(22588, 5274, 5), -- NPC(party) - Physical Single Long Range Attack
 (22588, 5462, 1), -- Fire Attacks
 (22588, 5827, 4), -- Fireball
 (22588, 5832, 1), -- Hate Aura
 -- Dragon Steed Troop Infantry
-(22589, 4071, 5), -- Resist Bow/Crossbow Weapons
-(22589, 4408, 9), -- HP Increase (1/2x)
-(22589, 4409, 1), -- MP Increase (1x)
-(22589, 4410, 11), -- Average P. Atk.
-(22589, 4411, 11), -- Average M. Atk.
-(22589, 4412, 11), -- Average P. Def.
-(22589, 4413, 15), -- Strong M. Def.
-(22589, 4414, 2), -- Standard Type
-(22589, 4415, 3), -- One-handed Sword
-(22589, 4416, 10), -- Dragons
+(22589, 4071, 5), -- Resist Archery
+(22589, 4408, 9), -- HP Modifiers
+(22589, 4409, 1), -- MP Modifiers
+(22589, 4410, 11), -- P. Atk. Modifiers
+(22589, 4411, 11), -- M. Atk. Modifiers
+(22589, 4412, 11), -- P. Def. Modifiers
+(22589, 4413, 15), -- M. Def. Modifiers
+(22589, 4414, 2), -- Armor Type
+(22589, 4415, 3), -- Weapon Type
+(22589, 4416, 10), -- Races
 (22589, 4441, 5), -- Greater Resist Mental Derangement
-(22589, 5274, 5), -- Power Shot
+(22589, 5274, 5), -- NPC(party) - Physical Single Long Range Attack
 (22589, 5462, 1), -- Fire Attacks
 (22589, 5827, 3), -- Fireball
 (22589, 5832, 1), -- Hate Aura
 -- 
-(22590, 4408, 9), -- HP Increase (1/2x)
-(22590, 4409, 1), -- MP Increase (1x)
-(22590, 4410, 11), -- Average P. Atk.
-(22590, 4411, 11), -- Average M. Atk.
-(22590, 4412, 11), -- Average P. Def.
-(22590, 4413, 11), -- Average M. Def.
-(22590, 4414, 2), -- Standard Type
-(22590, 4415, 3), -- One-handed Sword
-(22590, 4416, 2), -- Magic Creatures
+(22590, 4408, 9), -- HP Modifiers
+(22590, 4409, 1), -- MP Modifiers
+(22590, 4410, 11), -- P. Atk. Modifiers
+(22590, 4411, 11), -- M. Atk. Modifiers
+(22590, 4412, 11), -- P. Def. Modifiers
+(22590, 4413, 11), -- M. Def. Modifiers
+(22590, 4414, 2), -- Armor Type
+(22590, 4415, 3), -- Weapon Type
+(22590, 4416, 2), -- Races
 (22590, 5462, 1), -- Fire Attacks
 -- Dragon Steed Troop Magic Leader
-(22591, 4408, 9), -- HP Increase (1/2x)
-(22591, 4409, 1), -- MP Increase (1x)
-(22591, 4410, 11), -- Average P. Atk.
-(22591, 4411, 13), -- Slightly Strong M. Atk.
-(22591, 4412, 11), -- Average P. Def.
-(22591, 4413, 11), -- Average M. Def.
-(22591, 4414, 2), -- Standard Type
-(22591, 4415, 3), -- One-handed Sword
-(22591, 4416, 10), -- Dragons
-(22591, 5312, 5), -- Blaze
+(22591, 4408, 9), -- HP Modifiers
+(22591, 4409, 1), -- MP Modifiers
+(22591, 4410, 11), -- P. Atk. Modifiers
+(22591, 4411, 13), -- M. Atk. Modifiers
+(22591, 4412, 11), -- P. Def. Modifiers
+(22591, 4413, 11), -- M. Def. Modifiers
+(22591, 4414, 2), -- Armor Type
+(22591, 4415, 3), -- Weapon Type
+(22591, 4416, 10), -- Races
+(22591, 5312, 5), -- NPC(party) -Magic Single Long Range DD - Fire
 (22591, 5462, 1), -- Fire Attacks
 (22591, 5827, 4), -- Fireball
 (22591, 5829, 5), -- Fire Flare
 (22591, 5833, 1), -- Shield
 -- Dragon Steed Troop Magician
-(22592, 4408, 9), -- HP Increase (1/2x)
-(22592, 4409, 1), -- MP Increase (1x)
-(22592, 4410, 11), -- Average P. Atk.
-(22592, 4411, 11), -- Average M. Atk.
-(22592, 4412, 11), -- Average P. Def.
-(22592, 4413, 11), -- Average M. Def.
-(22592, 4414, 2), -- Standard Type
-(22592, 4415, 3), -- One-handed Sword
-(22592, 4416, 10), -- Dragons
-(22592, 5312, 5), -- Blaze
+(22592, 4408, 9), -- HP Modifiers
+(22592, 4409, 1), -- MP Modifiers
+(22592, 4410, 11), -- P. Atk. Modifiers
+(22592, 4411, 11), -- M. Atk. Modifiers
+(22592, 4412, 11), -- P. Def. Modifiers
+(22592, 4413, 11), -- M. Def. Modifiers
+(22592, 4414, 2), -- Armor Type
+(22592, 4415, 3), -- Weapon Type
+(22592, 4416, 10), -- Races
+(22592, 5312, 5), -- NPC(party) -Magic Single Long Range DD - Fire
 (22592, 5462, 1), -- Fire Attacks
 (22592, 5827, 4), -- Fireball
 (22592, 5829, 4), -- Fire Flare
 (22592, 5833, 1), -- Shield
 -- Dragon Steed Troop Magic Soldier
-(22593, 4408, 9), -- HP Increase (1/2x)
-(22593, 4409, 1), -- MP Increase (1x)
-(22593, 4410, 11), -- Average P. Atk.
-(22593, 4411, 11), -- Average M. Atk.
-(22593, 4412, 11), -- Average P. Def.
-(22593, 4413, 11), -- Average M. Def.
-(22593, 4414, 2), -- Standard Type
-(22593, 4415, 3), -- One-handed Sword
-(22593, 4416, 10), -- Dragons
-(22593, 5312, 5), -- Blaze
+(22593, 4408, 9), -- HP Modifiers
+(22593, 4409, 1), -- MP Modifiers
+(22593, 4410, 11), -- P. Atk. Modifiers
+(22593, 4411, 11), -- M. Atk. Modifiers
+(22593, 4412, 11), -- P. Def. Modifiers
+(22593, 4413, 11), -- M. Def. Modifiers
+(22593, 4414, 2), -- Armor Type
+(22593, 4415, 3), -- Weapon Type
+(22593, 4416, 10), -- Races
+(22593, 5312, 5), -- NPC(party) -Magic Single Long Range DD - Fire
 (22593, 5462, 1), -- Fire Attacks
 (22593, 5827, 3), -- Fireball
 (22593, 5829, 4), -- Fire Flare
 (22593, 5834, 1), -- Magic Barrier
 -- Dragon Steed Troop Commander
-(22594, 4071, 5), -- Resist Bow/Crossbow Weapons
-(22594, 4408, 10), -- HP Increase (2x)
-(22594, 4409, 1), -- MP Increase (1x)
-(22594, 4410, 13), -- Slightly Strong P. Atk.
-(22594, 4411, 11), -- Average M. Atk.
-(22594, 4412, 11), -- Average P. Def.
-(22594, 4413, 15), -- Strong M. Def.
-(22594, 4414, 2), -- Standard Type
-(22594, 4415, 11), -- Spears
-(22594, 4416, 10), -- Dragons
+(22594, 4071, 5), -- Resist Archery
+(22594, 4408, 10), -- HP Modifiers
+(22594, 4409, 1), -- MP Modifiers
+(22594, 4410, 13), -- P. Atk. Modifiers
+(22594, 4411, 11), -- M. Atk. Modifiers
+(22594, 4412, 11), -- P. Def. Modifiers
+(22594, 4413, 15), -- M. Def. Modifiers
+(22594, 4414, 2), -- Armor Type
+(22594, 4415, 11), -- Weapon Type
+(22594, 4416, 10), -- Races
 (22594, 4441, 5), -- Greater Resist Mental Derangement
 (22594, 5462, 1), -- Fire Attacks
 (22594, 5827, 5), -- Fireball
 (22594, 5830, 1), -- Polearm Thrust
 (22594, 5831, 1), -- Polearm Swing
 -- Dragon Steed Troops No 1 Battalion Commander
-(22595, 4071, 5), -- Resist Bow/Crossbow Weapons
-(22595, 4408, 10), -- HP Increase (2x)
-(22595, 4409, 1), -- MP Increase (1x)
-(22595, 4410, 11), -- Average P. Atk.
-(22595, 4411, 11), -- Average M. Atk.
-(22595, 4412, 11), -- Average P. Def.
-(22595, 4413, 15), -- Strong M. Def.
-(22595, 4414, 2), -- Standard Type
-(22595, 4415, 11), -- Spears
-(22595, 4416, 10), -- Dragons
+(22595, 4071, 5), -- Resist Archery
+(22595, 4408, 10), -- HP Modifiers
+(22595, 4409, 1), -- MP Modifiers
+(22595, 4410, 11), -- P. Atk. Modifiers
+(22595, 4411, 11), -- M. Atk. Modifiers
+(22595, 4412, 11), -- P. Def. Modifiers
+(22595, 4413, 15), -- M. Def. Modifiers
+(22595, 4414, 2), -- Armor Type
+(22595, 4415, 11), -- Weapon Type
+(22595, 4416, 10), -- Races
 (22595, 4441, 5), -- Greater Resist Mental Derangement
 (22595, 5462, 1), -- Fire Attacks
 (22595, 5827, 4), -- Fireball
 (22595, 5830, 1), -- Polearm Thrust
 (22595, 5831, 1), -- Polearm Swing
 -- White Dragon Leader
-(22596, 4071, 5), -- Resist Bow/Crossbow Weapons
-(22596, 4408, 9), -- HP Increase (1/2x)
-(22596, 4409, 1), -- MP Increase (1x)
-(22596, 4410, 11), -- Average P. Atk.
-(22596, 4411, 11), -- Average M. Atk.
-(22596, 4412, 14), -- Strong P. Def.
-(22596, 4413, 15), -- Strong M. Def.
-(22596, 4414, 2), -- Standard Type
-(22596, 4415, 3), -- One-handed Sword
-(22596, 4416, 10), -- Dragons
+(22596, 4071, 5), -- Resist Archery
+(22596, 4408, 9), -- HP Modifiers
+(22596, 4409, 1), -- MP Modifiers
+(22596, 4410, 11), -- P. Atk. Modifiers
+(22596, 4411, 11), -- M. Atk. Modifiers
+(22596, 4412, 14), -- P. Def. Modifiers
+(22596, 4413, 15), -- M. Def. Modifiers
+(22596, 4414, 2), -- Armor Type
+(22596, 4415, 3), -- Weapon Type
+(22596, 4416, 10), -- Races
 (22596, 4441, 5), -- Greater Resist Mental Derangement
-(22596, 5274, 5), -- Power Shot
+(22596, 5274, 5), -- NPC(party) - Physical Single Long Range Attack
 (22596, 5462, 1), -- Fire Attacks
 (22596, 5827, 4), -- Fireball
 (22596, 5832, 1), -- Hate Aura
 -- Dragon Steed Troop Infantry
-(22597, 4071, 5), -- Resist Bow/Crossbow Weapons
-(22597, 4408, 9), -- HP Increase (1/2x)
-(22597, 4409, 1), -- MP Increase (1x)
-(22597, 4410, 11), -- Average P. Atk.
-(22597, 4411, 11), -- Average M. Atk.
-(22597, 4412, 14), -- Strong P. Def.
-(22597, 4413, 15), -- Strong M. Def.
-(22597, 4414, 2), -- Standard Type
-(22597, 4415, 3), -- One-handed Sword
-(22597, 4416, 10), -- Dragons
+(22597, 4071, 5), -- Resist Archery
+(22597, 4408, 9), -- HP Modifiers
+(22597, 4409, 1), -- MP Modifiers
+(22597, 4410, 11), -- P. Atk. Modifiers
+(22597, 4411, 11), -- M. Atk. Modifiers
+(22597, 4412, 14), -- P. Def. Modifiers
+(22597, 4413, 15), -- M. Def. Modifiers
+(22597, 4414, 2), -- Armor Type
+(22597, 4415, 3), -- Weapon Type
+(22597, 4416, 10), -- Races
 (22597, 4441, 5), -- Greater Resist Mental Derangement
-(22597, 5274, 5), -- Power Shot
+(22597, 5274, 5), -- NPC(party) - Physical Single Long Range Attack
 (22597, 5462, 1), -- Fire Attacks
 (22597, 5827, 3), -- Fireball
 (22597, 5832, 1), -- Hate Aura
 -- Mutant Bird
-(22602, 4408, 1), -- HP Increase (1x)
-(22602, 4409, 1), -- MP Increase (1x)
-(22602, 4410, 11), -- Average P. Atk.
-(22602, 4411, 11), -- Average M. Atk.
-(22602, 4412, 11), -- Average P. Def.
-(22602, 4413, 11), -- Average M. Def.
-(22602, 4414, 2), -- Standard Type
-(22602, 4415, 3), -- One-handed Sword
-(22602, 4416, 3), -- Beasts
+(22602, 4408, 1), -- HP Modifiers
+(22602, 4409, 1), -- MP Modifiers
+(22602, 4410, 11), -- P. Atk. Modifiers
+(22602, 4411, 11), -- M. Atk. Modifiers
+(22602, 4412, 11), -- P. Def. Modifiers
+(22602, 4413, 11), -- M. Def. Modifiers
+(22602, 4414, 2), -- Armor Type
+(22602, 4415, 3), -- Weapon Type
+(22602, 4416, 3), -- Races
 (22602, 5462, 1), -- Fire Attacks
 (22602, 5806, 1), -- High Wave Beam
 (22602, 5807, 1), -- Self-destruction
 -- Mutant Bird
-(22603, 4408, 1), -- HP Increase (1x)
-(22603, 4409, 1), -- MP Increase (1x)
-(22603, 4410, 11), -- Average P. Atk.
-(22603, 4411, 11), -- Average M. Atk.
-(22603, 4412, 11), -- Average P. Def.
-(22603, 4413, 11), -- Average M. Def.
-(22603, 4414, 2), -- Standard Type
-(22603, 4415, 3), -- One-handed Sword
-(22603, 4416, 3), -- Beasts
+(22603, 4408, 1), -- HP Modifiers
+(22603, 4409, 1), -- MP Modifiers
+(22603, 4410, 11), -- P. Atk. Modifiers
+(22603, 4411, 11), -- M. Atk. Modifiers
+(22603, 4412, 11), -- P. Def. Modifiers
+(22603, 4413, 11), -- M. Def. Modifiers
+(22603, 4414, 2), -- Armor Type
+(22603, 4415, 3), -- Weapon Type
+(22603, 4416, 3), -- Races
 (22603, 5462, 1), -- Fire Attacks
 (22603, 5806, 1), -- High Wave Beam
 (22603, 5807, 1), -- Self-destruction
 -- Dra Hawk
-(22604, 4408, 1), -- HP Increase (1x)
-(22604, 4409, 1), -- MP Increase (1x)
-(22604, 4410, 11), -- Average P. Atk.
-(22604, 4411, 11), -- Average M. Atk.
-(22604, 4412, 11), -- Average P. Def.
-(22604, 4413, 11), -- Average M. Def.
-(22604, 4414, 2), -- Standard Type
-(22604, 4415, 3), -- One-handed Sword
-(22604, 4416, 3), -- Beasts
+(22604, 4408, 1), -- HP Modifiers
+(22604, 4409, 1), -- MP Modifiers
+(22604, 4410, 11), -- P. Atk. Modifiers
+(22604, 4411, 11), -- M. Atk. Modifiers
+(22604, 4412, 11), -- P. Def. Modifiers
+(22604, 4413, 11), -- M. Def. Modifiers
+(22604, 4414, 2), -- Armor Type
+(22604, 4415, 3), -- Weapon Type
+(22604, 4416, 3), -- Races
 (22604, 5462, 1), -- Fire Attacks
 (22604, 5809, 1), -- Dark Blood
 (22604, 5810, 1), -- Decrease Spd.
 -- Dra Hawk
-(22605, 4408, 1), -- HP Increase (1x)
-(22605, 4409, 1), -- MP Increase (1x)
-(22605, 4410, 11), -- Average P. Atk.
-(22605, 4411, 11), -- Average M. Atk.
-(22605, 4412, 11), -- Average P. Def.
-(22605, 4413, 11), -- Average M. Def.
-(22605, 4414, 2), -- Standard Type
-(22605, 4415, 3), -- One-handed Sword
-(22605, 4416, 3), -- Beasts
+(22605, 4408, 1), -- HP Modifiers
+(22605, 4409, 1), -- MP Modifiers
+(22605, 4410, 11), -- P. Atk. Modifiers
+(22605, 4411, 11), -- M. Atk. Modifiers
+(22605, 4412, 11), -- P. Def. Modifiers
+(22605, 4413, 11), -- M. Def. Modifiers
+(22605, 4414, 2), -- Armor Type
+(22605, 4415, 3), -- Weapon Type
+(22605, 4416, 3), -- Races
 (22605, 5462, 1), -- Fire Attacks
 (22605, 5809, 1), -- Dark Blood
 (22605, 5810, 1), -- Decrease Spd.
 -- Floating Skull
-(22606, 4408, 1), -- HP Increase (1x)
-(22606, 4409, 1), -- MP Increase (1x)
-(22606, 4410, 11), -- Average P. Atk.
-(22606, 4411, 11), -- Average M. Atk.
-(22606, 4412, 11), -- Average P. Def.
-(22606, 4413, 11), -- Average M. Def.
-(22606, 4414, 2), -- Standard Type
-(22606, 4415, 3), -- One-handed Sword
-(22606, 4416, 1), -- Undead
+(22606, 4408, 1), -- HP Modifiers
+(22606, 4409, 1), -- MP Modifiers
+(22606, 4410, 11), -- P. Atk. Modifiers
+(22606, 4411, 11), -- M. Atk. Modifiers
+(22606, 4412, 11), -- P. Def. Modifiers
+(22606, 4413, 11), -- M. Def. Modifiers
+(22606, 4414, 2), -- Armor Type
+(22606, 4415, 3), -- Weapon Type
+(22606, 4416, 1), -- Races
 (22606, 5467, 1), -- Dark Attacks
 (22606, 5803, 1), -- Green Chili
 (22606, 5804, 1), -- Fireball
 -- Floating Skull
-(22607, 4408, 1), -- HP Increase (1x)
-(22607, 4409, 1), -- MP Increase (1x)
-(22607, 4410, 11), -- Average P. Atk.
-(22607, 4411, 11), -- Average M. Atk.
-(22607, 4412, 11), -- Average P. Def.
-(22607, 4413, 11), -- Average M. Def.
-(22607, 4414, 2), -- Standard Type
-(22607, 4415, 3), -- One-handed Sword
-(22607, 4416, 1), -- Undead
+(22607, 4408, 1), -- HP Modifiers
+(22607, 4409, 1), -- MP Modifiers
+(22607, 4410, 11), -- P. Atk. Modifiers
+(22607, 4411, 11), -- M. Atk. Modifiers
+(22607, 4412, 11), -- P. Def. Modifiers
+(22607, 4413, 11), -- M. Def. Modifiers
+(22607, 4414, 2), -- Armor Type
+(22607, 4415, 3), -- Weapon Type
+(22607, 4416, 1), -- Races
 (22607, 5467, 1), -- Dark Attacks
 (22607, 5803, 1), -- Green Chili
 (22607, 5804, 1), -- Fireball
 -- Floating Zombie
-(22608, 4408, 1), -- HP Increase (1x)
-(22608, 4409, 1), -- MP Increase (1x)
-(22608, 4410, 11), -- Average P. Atk.
-(22608, 4411, 11), -- Average M. Atk.
-(22608, 4412, 11), -- Average P. Def.
-(22608, 4413, 11), -- Average M. Def.
-(22608, 4414, 2), -- Standard Type
-(22608, 4415, 3), -- One-handed Sword
-(22608, 4416, 1), -- Undead
+(22608, 4408, 1), -- HP Modifiers
+(22608, 4409, 1), -- MP Modifiers
+(22608, 4410, 11), -- P. Atk. Modifiers
+(22608, 4411, 11), -- M. Atk. Modifiers
+(22608, 4412, 11), -- P. Def. Modifiers
+(22608, 4413, 11), -- M. Def. Modifiers
+(22608, 4414, 2), -- Armor Type
+(22608, 4415, 3), -- Weapon Type
+(22608, 4416, 1), -- Races
 (22608, 5467, 1), -- Dark Attacks
-(22608, 5793, 1), -- Presentation - Summon Boomeye
+(22608, 5793, 1), -- Presentation - Summon Boomi
 (22608, 5813, 1), -- Sand Ball
 -- Floating Zombie
-(22609, 4408, 1), -- HP Increase (1x)
-(22609, 4409, 1), -- MP Increase (1x)
-(22609, 4410, 11), -- Average P. Atk.
-(22609, 4411, 11), -- Average M. Atk.
-(22609, 4412, 11), -- Average P. Def.
-(22609, 4413, 11), -- Average M. Def.
-(22609, 4414, 2), -- Standard Type
-(22609, 4415, 3), -- One-handed Sword
-(22609, 4416, 1), -- Undead
+(22609, 4408, 1), -- HP Modifiers
+(22609, 4409, 1), -- MP Modifiers
+(22609, 4410, 11), -- P. Atk. Modifiers
+(22609, 4411, 11), -- M. Atk. Modifiers
+(22609, 4412, 11), -- P. Def. Modifiers
+(22609, 4413, 11), -- M. Def. Modifiers
+(22609, 4414, 2), -- Armor Type
+(22609, 4415, 3), -- Weapon Type
+(22609, 4416, 1), -- Races
 (22609, 5467, 1), -- Dark Attacks
-(22609, 5793, 1), -- Presentation - Summon Boomeye
+(22609, 5793, 1), -- Presentation - Summon Boomi
 (22609, 5813, 1), -- Sand Ball
 -- Mutated Drake Wing
-(22610, 4408, 1), -- HP Increase (1x)
-(22610, 4409, 1), -- MP Increase (1x)
-(22610, 4410, 11), -- Average P. Atk.
-(22610, 4411, 11), -- Average M. Atk.
-(22610, 4412, 11), -- Average P. Def.
-(22610, 4413, 11), -- Average M. Def.
-(22610, 4414, 2), -- Standard Type
-(22610, 4415, 3), -- One-handed Sword
-(22610, 4416, 10), -- Dragons
+(22610, 4408, 1), -- HP Modifiers
+(22610, 4409, 1), -- MP Modifiers
+(22610, 4410, 11), -- P. Atk. Modifiers
+(22610, 4411, 11), -- M. Atk. Modifiers
+(22610, 4412, 11), -- P. Def. Modifiers
+(22610, 4413, 11), -- M. Def. Modifiers
+(22610, 4414, 2), -- Armor Type
+(22610, 4415, 3), -- Weapon Type
+(22610, 4416, 10), -- Races
 (22610, 5465, 1), -- Earth Attacks
 (22610, 5804, 1), -- Fireball
 (22610, 5805, 1), -- Air Assault
 -- Mutated Drake Wing
-(22611, 4408, 1), -- HP Increase (1x)
-(22611, 4409, 1), -- MP Increase (1x)
-(22611, 4410, 11), -- Average P. Atk.
-(22611, 4411, 11), -- Average M. Atk.
-(22611, 4412, 11), -- Average P. Def.
-(22611, 4413, 11), -- Average M. Def.
-(22611, 4414, 2), -- Standard Type
-(22611, 4415, 3), -- One-handed Sword
-(22611, 4416, 10), -- Dragons
+(22611, 4408, 1), -- HP Modifiers
+(22611, 4409, 1), -- MP Modifiers
+(22611, 4410, 11), -- P. Atk. Modifiers
+(22611, 4411, 11), -- M. Atk. Modifiers
+(22611, 4412, 11), -- P. Def. Modifiers
+(22611, 4413, 11), -- M. Def. Modifiers
+(22611, 4414, 2), -- Armor Type
+(22611, 4415, 3), -- Weapon Type
+(22611, 4416, 10), -- Races
 (22611, 5465, 1), -- Earth Attacks
 (22611, 5804, 1), -- Fireball
 (22611, 5805, 1), -- Air Assault
 -- Drak
-(22612, 4408, 1), -- HP Increase (1x)
-(22612, 4409, 1), -- MP Increase (1x)
-(22612, 4410, 11), -- Average P. Atk.
-(22612, 4411, 11), -- Average M. Atk.
-(22612, 4412, 11), -- Average P. Def.
-(22612, 4413, 11), -- Average M. Def.
-(22612, 4414, 2), -- Standard Type
-(22612, 4415, 3), -- One-handed Sword
-(22612, 4416, 10), -- Dragons
+(22612, 4408, 1), -- HP Modifiers
+(22612, 4409, 1), -- MP Modifiers
+(22612, 4410, 11), -- P. Atk. Modifiers
+(22612, 4411, 11), -- M. Atk. Modifiers
+(22612, 4412, 11), -- P. Def. Modifiers
+(22612, 4413, 11), -- M. Def. Modifiers
+(22612, 4414, 2), -- Armor Type
+(22612, 4415, 3), -- Weapon Type
+(22612, 4416, 10), -- Races
 (22612, 5465, 1), -- Earth Attacks
 (22612, 5811, 1), -- Sonic Bomb
 (22612, 5812, 1), -- Fire Breath
 -- Drak
-(22613, 4408, 1), -- HP Increase (1x)
-(22613, 4409, 1), -- MP Increase (1x)
-(22613, 4410, 11), -- Average P. Atk.
-(22613, 4411, 11), -- Average M. Atk.
-(22613, 4412, 11), -- Average P. Def.
-(22613, 4413, 11), -- Average M. Def.
-(22613, 4414, 2), -- Standard Type
-(22613, 4415, 3), -- One-handed Sword
-(22613, 4416, 10), -- Dragons
+(22613, 4408, 1), -- HP Modifiers
+(22613, 4409, 1), -- MP Modifiers
+(22613, 4410, 11), -- P. Atk. Modifiers
+(22613, 4411, 11), -- M. Atk. Modifiers
+(22613, 4412, 11), -- P. Def. Modifiers
+(22613, 4413, 11), -- M. Def. Modifiers
+(22613, 4414, 2), -- Armor Type
+(22613, 4415, 3), -- Weapon Type
+(22613, 4416, 10), -- Races
 (22613, 5465, 1), -- Earth Attacks
 (22613, 5811, 1), -- Sonic Bomb
 (22613, 5812, 1), -- Fire Breath
 -- Vulture Rider
-(22614, 4065, 8), -- Heal
-(22614, 4408, 1), -- HP Increase (1x)
-(22614, 4409, 1), -- MP Increase (1x)
-(22614, 4410, 11), -- Average P. Atk.
-(22614, 4411, 11), -- Average M. Atk.
-(22614, 4412, 11), -- Average P. Def.
-(22614, 4413, 11), -- Average M. Def.
-(22614, 4414, 2), -- Standard Type
-(22614, 4415, 3), -- One-handed Sword
-(22614, 4416, 3), -- Beasts
+(22614, 4065, 8), -- NPC Heal
+(22614, 4408, 1), -- HP Modifiers
+(22614, 4409, 1), -- MP Modifiers
+(22614, 4410, 11), -- P. Atk. Modifiers
+(22614, 4411, 11), -- M. Atk. Modifiers
+(22614, 4412, 11), -- P. Def. Modifiers
+(22614, 4413, 11), -- M. Def. Modifiers
+(22614, 4414, 2), -- Armor Type
+(22614, 4415, 3), -- Weapon Type
+(22614, 4416, 3), -- Races
 (22614, 5462, 1), -- Fire Attacks
 (22614, 5804, 1), -- Fireball
 (22614, 5808, 1), -- Burst Flame
 -- Vulture Rider
-(22615, 4065, 8), -- Heal
-(22615, 4408, 1), -- HP Increase (1x)
-(22615, 4409, 1), -- MP Increase (1x)
-(22615, 4410, 11), -- Average P. Atk.
-(22615, 4411, 11), -- Average M. Atk.
-(22615, 4412, 11), -- Average P. Def.
-(22615, 4413, 11), -- Average M. Def.
-(22615, 4414, 2), -- Standard Type
-(22615, 4415, 3), -- One-handed Sword
-(22615, 4416, 3), -- Beasts
+(22615, 4065, 8), -- NPC Heal
+(22615, 4408, 1), -- HP Modifiers
+(22615, 4409, 1), -- MP Modifiers
+(22615, 4410, 11), -- P. Atk. Modifiers
+(22615, 4411, 11), -- M. Atk. Modifiers
+(22615, 4412, 11), -- P. Def. Modifiers
+(22615, 4413, 11), -- M. Def. Modifiers
+(22615, 4414, 2), -- Armor Type
+(22615, 4415, 3), -- Weapon Type
+(22615, 4416, 3), -- Races
 (22615, 5462, 1), -- Fire Attacks
 (22615, 5804, 1), -- Fireball
 (22615, 5808, 1), -- Burst Flame
 -- Seed of Pain
-(22616, 4408, 16), -- HP Increase (8x)
-(22616, 4409, 1), -- MP Increase (1x)
-(22616, 4410, 8), -- Weak P. Atk.
-(22616, 4411, 11), -- Average M. Atk.
-(22616, 4412, 17), -- Very Strong P. Def.
-(22616, 4413, 16), -- Very Strong M. Def.
-(22616, 4414, 2), -- Standard Type
-(22616, 4415, 3), -- One-handed Sword
-(22616, 4416, 1), -- Undead
+(22616, 4408, 16), -- HP Modifiers
+(22616, 4409, 1), -- MP Modifiers
+(22616, 4410, 8), -- P. Atk. Modifiers
+(22616, 4411, 11), -- M. Atk. Modifiers
+(22616, 4412, 17), -- P. Def. Modifiers
+(22616, 4413, 16), -- M. Def. Modifiers
+(22616, 4414, 2), -- Armor Type
+(22616, 4415, 3), -- Weapon Type
+(22616, 4416, 1), -- Races
 (22616, 5467, 1), -- Dark Attacks
 (22616, 5882, 1), -- Weakened Pommel
 (22616, 5890, 1), -- Tainted Mass Shackle
 (22616, 5905, 1), -- Confusing Nuph
 -- Spiked Stakato
-(22617, 4032, 9), -- Power Strike
-(22617, 4116, 2), -- Resist M. Atk.
-(22617, 4408, 14), -- HP Increase (6x)
-(22617, 4409, 1), -- MP Increase (1x)
-(22617, 4410, 14), -- Strong P. Atk.
-(22617, 4411, 11), -- Average M. Atk.
-(22617, 4412, 14), -- Strong P. Def.
-(22617, 4413, 11), -- Average M. Def.
-(22617, 4414, 1), -- Heavy Armor Type
-(22617, 4415, 3), -- One-handed Sword
-(22617, 4416, 6), -- Humanoids
-(22617, 4417, 29), -- Humanoids
-(22617, 4789, 2), -- High Level
+(22617, 4032, 9), -- NPC Strike
+(22617, 4116, 2), -- Resist M.Atk
+(22617, 4408, 14), -- HP Modifiers
+(22617, 4409, 1), -- MP Modifiers
+(22617, 4410, 14), -- P. Atk. Modifiers
+(22617, 4411, 11), -- M. Atk. Modifiers
+(22617, 4412, 14), -- P. Def. Modifiers
+(22617, 4413, 11), -- M. Def. Modifiers
+(22617, 4414, 1), -- Armor Type
+(22617, 4415, 3), -- Weapon Type
+(22617, 4416, 6), -- Races
+(22617, 4417, 29), -- Race Types
+(22617, 4789, 2), -- NPC High Level
 (22617, 5465, 1), -- Earth Attacks
 (22617, 5620, 3), -- Short-Range Physical Attack Weakness
 -- Spiked Stakato Worker
-(22618, 4067, 9), -- Blow
-(22618, 4116, 2), -- Resist M. Atk.
-(22618, 4408, 14), -- HP Increase (6x)
-(22618, 4409, 1), -- MP Increase (1x)
-(22618, 4410, 14), -- Strong P. Atk.
-(22618, 4411, 11), -- Average M. Atk.
-(22618, 4412, 14), -- Strong P. Def.
-(22618, 4413, 11), -- Average M. Def.
-(22618, 4414, 1), -- Heavy Armor Type
-(22618, 4415, 3), -- One-handed Sword
-(22618, 4416, 6), -- Humanoids
-(22618, 4417, 29), -- Humanoids
-(22618, 4789, 3), -- High Level
+(22618, 4067, 9), -- NPC Mortal Blow
+(22618, 4116, 2), -- Resist M.Atk
+(22618, 4408, 14), -- HP Modifiers
+(22618, 4409, 1), -- MP Modifiers
+(22618, 4410, 14), -- P. Atk. Modifiers
+(22618, 4411, 11), -- M. Atk. Modifiers
+(22618, 4412, 14), -- P. Def. Modifiers
+(22618, 4413, 11), -- M. Def. Modifiers
+(22618, 4414, 1), -- Armor Type
+(22618, 4415, 3), -- Weapon Type
+(22618, 4416, 6), -- Races
+(22618, 4417, 29), -- Race Types
+(22618, 4789, 3), -- NPC High Level
 (22618, 5465, 1), -- Earth Attacks
 (22618, 5620, 3), -- Short-Range Physical Attack Weakness
 -- Spiked Stakato Guard
-(22619, 4067, 9), -- Blow
-(22619, 4116, 2), -- Resist M. Atk.
-(22619, 4408, 14), -- HP Increase (6x)
-(22619, 4409, 1), -- MP Increase (1x)
-(22619, 4410, 14), -- Strong P. Atk.
-(22619, 4411, 11), -- Average M. Atk.
-(22619, 4412, 14), -- Strong P. Def.
-(22619, 4413, 11), -- Average M. Def.
-(22619, 4414, 1), -- Heavy Armor Type
-(22619, 4415, 3), -- One-handed Sword
-(22619, 4416, 6), -- Humanoids
-(22619, 4417, 29), -- Humanoids
-(22619, 4789, 3), -- High Level
+(22619, 4067, 9), -- NPC Mortal Blow
+(22619, 4116, 2), -- Resist M.Atk
+(22619, 4408, 14), -- HP Modifiers
+(22619, 4409, 1), -- MP Modifiers
+(22619, 4410, 14), -- P. Atk. Modifiers
+(22619, 4411, 11), -- M. Atk. Modifiers
+(22619, 4412, 14), -- P. Def. Modifiers
+(22619, 4413, 11), -- M. Def. Modifiers
+(22619, 4414, 1), -- Armor Type
+(22619, 4415, 3), -- Weapon Type
+(22619, 4416, 6), -- Races
+(22619, 4417, 29), -- Race Types
+(22619, 4789, 3), -- NPC High Level
 (22619, 5465, 1), -- Earth Attacks
 (22619, 5620, 3), -- Short-Range Physical Attack Weakness
 -- Female Spiked Stakato
-(22620, 4029, 3), -- Shield
+(22620, 4029, 3), -- NPC Shield
 (22620, 4036, 9), -- Poison
-(22620, 4116, 2), -- Resist M. Atk.
-(22620, 4408, 14), -- HP Increase (6x)
-(22620, 4409, 1), -- MP Increase (1x)
-(22620, 4410, 14), -- Strong P. Atk.
-(22620, 4411, 11), -- Average M. Atk.
-(22620, 4412, 14), -- Strong P. Def.
-(22620, 4413, 11), -- Average M. Def.
-(22620, 4414, 1), -- Heavy Armor Type
-(22620, 4415, 3), -- One-handed Sword
-(22620, 4416, 6), -- Humanoids
-(22620, 4417, 29), -- Humanoids
+(22620, 4116, 2), -- Resist M.Atk
+(22620, 4408, 14), -- HP Modifiers
+(22620, 4409, 1), -- MP Modifiers
+(22620, 4410, 14), -- P. Atk. Modifiers
+(22620, 4411, 11), -- M. Atk. Modifiers
+(22620, 4412, 14), -- P. Def. Modifiers
+(22620, 4413, 11), -- M. Def. Modifiers
+(22620, 4414, 1), -- Armor Type
+(22620, 4415, 3), -- Weapon Type
+(22620, 4416, 6), -- Races
+(22620, 4417, 29), -- Race Types
 (22620, 4435, 5), -- Greater Resist Stun
 (22620, 4438, 5), -- Greater Resist Sleep
 (22620, 4439, 5), -- Greater Resist Hold
-(22620, 4789, 3), -- High Level
+(22620, 4789, 3), -- NPC High Level
 (22620, 5465, 1), -- Earth Attacks
 (22620, 5620, 3), -- Short-Range Physical Attack Weakness
 (22620, 6168, 9), -- Shock
 -- Male Spiked Stakato
-(22621, 4032, 9), -- Power Strike
-(22621, 4116, 2), -- Resist M. Atk.
-(22621, 4408, 14), -- HP Increase (6x)
-(22621, 4409, 1), -- MP Increase (1x)
-(22621, 4410, 14), -- Strong P. Atk.
-(22621, 4411, 11), -- Average M. Atk.
-(22621, 4412, 14), -- Strong P. Def.
-(22621, 4413, 11), -- Average M. Def.
-(22621, 4414, 3), -- Light Armor Type
-(22621, 4415, 3), -- One-handed Sword
-(22621, 4416, 6), -- Humanoids
-(22621, 4417, 29), -- Humanoids
+(22621, 4032, 9), -- NPC Strike
+(22621, 4116, 2), -- Resist M.Atk
+(22621, 4408, 14), -- HP Modifiers
+(22621, 4409, 1), -- MP Modifiers
+(22621, 4410, 14), -- P. Atk. Modifiers
+(22621, 4411, 11), -- M. Atk. Modifiers
+(22621, 4412, 14), -- P. Def. Modifiers
+(22621, 4413, 11), -- M. Def. Modifiers
+(22621, 4414, 3), -- Armor Type
+(22621, 4415, 3), -- Weapon Type
+(22621, 4416, 6), -- Races
+(22621, 4417, 29), -- Race Types
 (22621, 4435, 5), -- Greater Resist Stun
 (22621, 4438, 5), -- Greater Resist Sleep
 (22621, 4439, 5), -- Greater Resist Hold
-(22621, 4789, 3), -- High Level
+(22621, 4789, 3), -- NPC High Level
 (22621, 5465, 1), -- Earth Attacks
 (22621, 5620, 3), -- Short-Range Physical Attack Weakness
 (22621, 6167, 9), -- Shock
 -- Male Spiked Stakato
-(22622, 4030, 3), -- Might
-(22622, 4116, 2), -- Resist M. Atk.
-(22622, 4232, 9), -- Whirlwind
-(22622, 4408, 14), -- HP Increase (6x)
-(22622, 4409, 1), -- MP Increase (1x)
-(22622, 4410, 16), -- Very Strong P. Atk.
-(22622, 4411, 11), -- Average M. Atk.
-(22622, 4412, 14), -- Strong P. Def.
-(22622, 4413, 11), -- Average M. Def.
-(22622, 4414, 3), -- Light Armor Type
-(22622, 4415, 3), -- One-handed Sword
-(22622, 4416, 6), -- Humanoids
-(22622, 4417, 29), -- Humanoids
+(22622, 4030, 3), -- NPC Clan Might
+(22622, 4116, 2), -- Resist M.Atk
+(22622, 4232, 9), -- NPC AE Strike
+(22622, 4408, 14), -- HP Modifiers
+(22622, 4409, 1), -- MP Modifiers
+(22622, 4410, 16), -- P. Atk. Modifiers
+(22622, 4411, 11), -- M. Atk. Modifiers
+(22622, 4412, 14), -- P. Def. Modifiers
+(22622, 4413, 11), -- M. Def. Modifiers
+(22622, 4414, 3), -- Armor Type
+(22622, 4415, 3), -- Weapon Type
+(22622, 4416, 6), -- Races
+(22622, 4417, 29), -- Race Types
 (22622, 4435, 5), -- Greater Resist Stun
 (22622, 4438, 5), -- Greater Resist Sleep
 (22622, 4439, 5), -- Greater Resist Hold
-(22622, 4571, 7), -- Blazing Circle
-(22622, 4789, 3), -- High Level
+(22622, 4571, 7), -- NPC Blazing Circle
+(22622, 4789, 3), -- NPC High Level
 (22622, 5465, 1), -- Earth Attacks
 (22622, 5620, 3), -- Short-Range Physical Attack Weakness
 -- Spiked Stakato Sorcerer
-(22623, 4116, 2), -- Resist M. Atk.
-(22623, 4257, 9), -- Hydro Blast
-(22623, 4408, 14), -- HP Increase (6x)
-(22623, 4409, 1), -- MP Increase (1x)
-(22623, 4410, 11), -- Average P. Atk.
-(22623, 4411, 14), -- Strong M. Atk.
-(22623, 4412, 11), -- Average P. Def.
-(22623, 4413, 14), -- Strong M. Def.
-(22623, 4414, 3), -- Light Armor Type
-(22623, 4415, 3), -- One-handed Sword
-(22623, 4416, 6), -- Humanoids
-(22623, 4417, 29), -- Humanoids
-(22623, 4563, 9), -- Solar Flare
-(22623, 4789, 4), -- High Level
+(22623, 4116, 2), -- Resist M.Atk
+(22623, 4257, 9), -- NPC Hydroblast - Magic
+(22623, 4408, 14), -- HP Modifiers
+(22623, 4409, 1), -- MP Modifiers
+(22623, 4410, 11), -- P. Atk. Modifiers
+(22623, 4411, 14), -- M. Atk. Modifiers
+(22623, 4412, 11), -- P. Def. Modifiers
+(22623, 4413, 14), -- M. Def. Modifiers
+(22623, 4414, 3), -- Armor Type
+(22623, 4415, 3), -- Weapon Type
+(22623, 4416, 6), -- Races
+(22623, 4417, 29), -- Race Types
+(22623, 4563, 9), -- NPC Solar Flare - Magic
+(22623, 4789, 4), -- NPC High Level
 (22623, 5465, 1), -- Earth Attacks
 (22623, 5620, 3), -- Short-Range Physical Attack Weakness
 -- Cannibalistic Stakato Follower
-(22624, 4116, 2), -- Resist M. Atk.
-(22624, 4232, 8), -- Whirlwind
-(22624, 4408, 14), -- HP Increase (6x)
-(22624, 4409, 1), -- MP Increase (1x)
-(22624, 4410, 14), -- Strong P. Atk.
-(22624, 4411, 11), -- Average M. Atk.
-(22624, 4412, 14), -- Strong P. Def.
-(22624, 4413, 11), -- Average M. Def.
-(22624, 4414, 1), -- Heavy Armor Type
-(22624, 4415, 3), -- One-handed Sword
-(22624, 4416, 6), -- Humanoids
-(22624, 4417, 29), -- Humanoids
+(22624, 4116, 2), -- Resist M.Atk
+(22624, 4232, 8), -- NPC AE Strike
+(22624, 4408, 14), -- HP Modifiers
+(22624, 4409, 1), -- MP Modifiers
+(22624, 4410, 14), -- P. Atk. Modifiers
+(22624, 4411, 11), -- M. Atk. Modifiers
+(22624, 4412, 14), -- P. Def. Modifiers
+(22624, 4413, 11), -- M. Def. Modifiers
+(22624, 4414, 1), -- Armor Type
+(22624, 4415, 3), -- Weapon Type
+(22624, 4416, 6), -- Races
+(22624, 4417, 29), -- Race Types
 (22624, 4435, 5), -- Greater Resist Stun
 (22624, 4438, 5), -- Greater Resist Sleep
 (22624, 4439, 5), -- Greater Resist Hold
-(22624, 4789, 3), -- High Level
+(22624, 4789, 3), -- NPC High Level
 (22624, 5465, 1), -- Earth Attacks
 (22624, 5620, 3), -- Short-Range Physical Attack Weakness
 (22624, 6167, 9), -- Shock
 -- Cannibalistic Stakato Leader
-(22625, 4028, 3), -- Might
-(22625, 4116, 2), -- Resist M. Atk.
-(22625, 4408, 16), -- HP Increase (8x)
-(22625, 4409, 1), -- MP Increase (1x)
-(22625, 4410, 16), -- Very Strong P. Atk.
-(22625, 4411, 11), -- Average M. Atk.
-(22625, 4412, 18), -- Extremely Strong P. Def.
-(22625, 4413, 19), -- Extremely Strong M. Def.
-(22625, 4414, 1), -- Heavy Armor Type
-(22625, 4415, 3), -- One-handed Sword
-(22625, 4416, 6), -- Humanoids
-(22625, 4417, 29), -- Humanoids
+(22625, 4028, 3), -- NPC Might
+(22625, 4116, 2), -- Resist M.Atk
+(22625, 4408, 16), -- HP Modifiers
+(22625, 4409, 1), -- MP Modifiers
+(22625, 4410, 16), -- P. Atk. Modifiers
+(22625, 4411, 11), -- M. Atk. Modifiers
+(22625, 4412, 18), -- P. Def. Modifiers
+(22625, 4413, 19), -- M. Def. Modifiers
+(22625, 4414, 1), -- Armor Type
+(22625, 4415, 3), -- Weapon Type
+(22625, 4416, 6), -- Races
+(22625, 4417, 29), -- Race Types
 (22625, 4435, 5), -- Greater Resist Stun
 (22625, 4438, 5), -- Greater Resist Sleep
 (22625, 4439, 5), -- Greater Resist Hold
-(22625, 4484, 1), -- Follower Devouring
-(22625, 4485, 1), -- Follower Devouring
-(22625, 4789, 4), -- High Level
+(22625, 4484, 1), -- Eating Follower Heal
+(22625, 4485, 1), -- Eating Follower
+(22625, 4789, 4), -- NPC High Level
 (22625, 5465, 1), -- Earth Attacks
 (22625, 5620, 3), -- Short-Range Physical Attack Weakness
 (22625, 6168, 9), -- Shock
 -- Cannibalistic Stakato Leader
-(22626, 4029, 3), -- Shield
-(22626, 4116, 2), -- Resist M. Atk.
-(22626, 4408, 16), -- HP Increase (8x)
-(22626, 4409, 1), -- MP Increase (1x)
-(22626, 4410, 18), -- Extremely Strong P. Atk.
-(22626, 4411, 11), -- Average M. Atk.
-(22626, 4412, 18), -- Extremely Strong P. Def.
-(22626, 4413, 19), -- Extremely Strong M. Def.
-(22626, 4414, 1), -- Heavy Armor Type
-(22626, 4415, 3), -- One-handed Sword
-(22626, 4416, 6), -- Humanoids
-(22626, 4417, 29), -- Humanoids
+(22626, 4029, 3), -- NPC Shield
+(22626, 4116, 2), -- Resist M.Atk
+(22626, 4408, 16), -- HP Modifiers
+(22626, 4409, 1), -- MP Modifiers
+(22626, 4410, 18), -- P. Atk. Modifiers
+(22626, 4411, 11), -- M. Atk. Modifiers
+(22626, 4412, 18), -- P. Def. Modifiers
+(22626, 4413, 19), -- M. Def. Modifiers
+(22626, 4414, 1), -- Armor Type
+(22626, 4415, 3), -- Weapon Type
+(22626, 4416, 6), -- Races
+(22626, 4417, 29), -- Race Types
 (22626, 4435, 5), -- Greater Resist Stun
 (22626, 4438, 5), -- Greater Resist Sleep
 (22626, 4439, 5), -- Greater Resist Hold
-(22626, 4571, 8), -- Blazing Circle
-(22626, 4789, 4), -- High Level
+(22626, 4571, 8), -- NPC Blazing Circle
+(22626, 4789, 4), -- NPC High Level
 (22626, 5465, 1), -- Earth Attacks
 (22626, 5620, 3), -- Short-Range Physical Attack Weakness
 (22626, 6167, 9), -- Shock
 -- Spiked Stakato Soldier
-(22627, 4032, 9), -- Power Strike
-(22627, 4116, 2), -- Resist M. Atk.
-(22627, 4408, 14), -- HP Increase (6x)
-(22627, 4409, 1), -- MP Increase (1x)
-(22627, 4410, 14), -- Strong P. Atk.
-(22627, 4411, 11), -- Average M. Atk.
-(22627, 4412, 14), -- Strong P. Def.
-(22627, 4413, 11), -- Average M. Def.
-(22627, 4414, 1), -- Heavy Armor Type
-(22627, 4415, 3), -- One-handed Sword
-(22627, 4416, 6), -- Humanoids
-(22627, 4417, 29), -- Humanoids
-(22627, 4789, 4), -- High Level
+(22627, 4032, 9), -- NPC Strike
+(22627, 4116, 2), -- Resist M.Atk
+(22627, 4408, 14), -- HP Modifiers
+(22627, 4409, 1), -- MP Modifiers
+(22627, 4410, 14), -- P. Atk. Modifiers
+(22627, 4411, 11), -- M. Atk. Modifiers
+(22627, 4412, 14), -- P. Def. Modifiers
+(22627, 4413, 11), -- M. Def. Modifiers
+(22627, 4414, 1), -- Armor Type
+(22627, 4415, 3), -- Weapon Type
+(22627, 4416, 6), -- Races
+(22627, 4417, 29), -- Race Types
+(22627, 4789, 4), -- NPC High Level
 (22627, 5465, 1), -- Earth Attacks
 (22627, 5620, 3), -- Short-Range Physical Attack Weakness
 -- Spiked Stakato Drone
-(22628, 4116, 2), -- Resist M. Atk.
-(22628, 4232, 9), -- Whirlwind
-(22628, 4408, 14), -- HP Increase (6x)
-(22628, 4409, 1), -- MP Increase (1x)
-(22628, 4410, 14), -- Strong P. Atk.
-(22628, 4411, 11); -- Average M. Atk.
+(22628, 4116, 2), -- Resist M.Atk
+(22628, 4232, 9), -- NPC AE Strike
+(22628, 4408, 14), -- HP Modifiers
+(22628, 4409, 1), -- MP Modifiers
+(22628, 4410, 14), -- P. Atk. Modifiers
+(22628, 4411, 11); -- M. Atk. Modifiers
 
 INSERT INTO `npcskills` VALUES
-(22628, 4412, 14), -- Strong P. Def.
-(22628, 4413, 11), -- Average M. Def.
-(22628, 4414, 1), -- Heavy Armor Type
-(22628, 4415, 3), -- One-handed Sword
-(22628, 4416, 6), -- Humanoids
-(22628, 4417, 29), -- Humanoids
-(22628, 4789, 5), -- High Level
+(22628, 4412, 14), -- P. Def. Modifiers
+(22628, 4413, 11), -- M. Def. Modifiers
+(22628, 4414, 1), -- Armor Type
+(22628, 4415, 3), -- Weapon Type
+(22628, 4416, 6), -- Races
+(22628, 4417, 29), -- Race Types
+(22628, 4789, 5), -- NPC High Level
 (22628, 5465, 1), -- Earth Attacks
 (22628, 5620, 3), -- Short-Range Physical Attack Weakness
 -- Spiked Stakato Captain
-(22629, 4032, 9), -- Power Strike
-(22629, 4116, 2), -- Resist M. Atk.
-(22629, 4408, 14), -- HP Increase (6x)
-(22629, 4409, 1), -- MP Increase (1x)
-(22629, 4410, 14), -- Strong P. Atk.
-(22629, 4411, 11), -- Average M. Atk.
-(22629, 4412, 14), -- Strong P. Def.
-(22629, 4413, 11), -- Average M. Def.
-(22629, 4414, 1), -- Heavy Armor Type
-(22629, 4415, 7), -- Daggers
-(22629, 4416, 6), -- Humanoids
-(22629, 4417, 29), -- Humanoids
-(22629, 4789, 5), -- High Level
+(22629, 4032, 9), -- NPC Strike
+(22629, 4116, 2), -- Resist M.Atk
+(22629, 4408, 14), -- HP Modifiers
+(22629, 4409, 1), -- MP Modifiers
+(22629, 4410, 14), -- P. Atk. Modifiers
+(22629, 4411, 11), -- M. Atk. Modifiers
+(22629, 4412, 14), -- P. Def. Modifiers
+(22629, 4413, 11), -- M. Def. Modifiers
+(22629, 4414, 1), -- Armor Type
+(22629, 4415, 7), -- Weapon Type
+(22629, 4416, 6), -- Races
+(22629, 4417, 29), -- Race Types
+(22629, 4789, 5), -- NPC High Level
 (22629, 5465, 1), -- Earth Attacks
 (22629, 5620, 3), -- Short-Range Physical Attack Weakness
 -- Spiked Stakato Nurse
-(22630, 4078, 9), -- Flame Strike
-(22630, 4116, 2), -- Resist M. Atk.
-(22630, 4408, 14), -- HP Increase (6x)
-(22630, 4409, 1), -- MP Increase (1x)
-(22630, 4410, 11), -- Average P. Atk.
-(22630, 4411, 14), -- Strong M. Atk.
-(22630, 4412, 11), -- Average P. Def.
-(22630, 4413, 14), -- Strong M. Def.
-(22630, 4414, 1), -- Heavy Armor Type
-(22630, 4415, 3), -- One-handed Sword
-(22630, 4416, 6), -- Humanoids
-(22630, 4417, 29), -- Humanoids
+(22630, 4078, 9), -- NPC Flamestrike
+(22630, 4116, 2), -- Resist M.Atk
+(22630, 4408, 14), -- HP Modifiers
+(22630, 4409, 1), -- MP Modifiers
+(22630, 4410, 11), -- P. Atk. Modifiers
+(22630, 4411, 14), -- M. Atk. Modifiers
+(22630, 4412, 11), -- P. Def. Modifiers
+(22630, 4413, 14), -- M. Def. Modifiers
+(22630, 4414, 1), -- Armor Type
+(22630, 4415, 3), -- Weapon Type
+(22630, 4416, 6), -- Races
+(22630, 4417, 29), -- Race Types
 (22630, 4435, 5), -- Greater Resist Stun
 (22630, 4438, 5), -- Greater Resist Sleep
 (22630, 4439, 5), -- Greater Resist Hold
-(22630, 4571, 9), -- Blazing Circle
-(22630, 4789, 6), -- High Level
+(22630, 4571, 9), -- NPC Blazing Circle
+(22630, 4789, 6), -- NPC High Level
 (22630, 5465, 1), -- Earth Attacks
 (22630, 5620, 3), -- Short-Range Physical Attack Weakness
 -- Spiked Stakato Nurse
-(22631, 4078, 9), -- Flame Strike
-(22631, 4100, 9), -- Prominence
-(22631, 4116, 2), -- Resist M. Atk.
-(22631, 4408, 14), -- HP Increase (6x)
-(22631, 4409, 1), -- MP Increase (1x)
-(22631, 4410, 11), -- Average P. Atk.
-(22631, 4411, 16), -- Very Strong M. Atk.
-(22631, 4412, 11), -- Average P. Def.
-(22631, 4413, 14), -- Strong M. Def.
-(22631, 4414, 1), -- Heavy Armor Type
-(22631, 4415, 3), -- One-handed Sword
-(22631, 4416, 6), -- Humanoids
-(22631, 4417, 29), -- Humanoids
+(22631, 4078, 9), -- NPC Flamestrike
+(22631, 4100, 9), -- NPC Prominence
+(22631, 4116, 2), -- Resist M.Atk
+(22631, 4408, 14), -- HP Modifiers
+(22631, 4409, 1), -- MP Modifiers
+(22631, 4410, 11), -- P. Atk. Modifiers
+(22631, 4411, 16), -- M. Atk. Modifiers
+(22631, 4412, 11), -- P. Def. Modifiers
+(22631, 4413, 14), -- M. Def. Modifiers
+(22631, 4414, 1), -- Armor Type
+(22631, 4415, 3), -- Weapon Type
+(22631, 4416, 6), -- Races
+(22631, 4417, 29), -- Race Types
 (22631, 4435, 5), -- Greater Resist Stun
 (22631, 4438, 5), -- Greater Resist Sleep
 (22631, 4439, 5), -- Greater Resist Hold
-(22631, 4486, 9), -- Decrease P. Def.
-(22631, 4789, 6), -- High Level
+(22631, 4486, 9), -- Decrease P. Def
+(22631, 4789, 6), -- NPC High Level
 (22631, 5465, 1), -- Earth Attacks
 (22631, 5620, 3), -- Short-Range Physical Attack Weakness
 -- Spiked Stakato Baby
-(22632, 4116, 2), -- Resist M. Atk.
-(22632, 4244, 9), -- Wild Sweep
-(22632, 4408, 14), -- HP Increase (6x)
-(22632, 4409, 1), -- MP Increase (1x)
-(22632, 4410, 14), -- Strong P. Atk.
-(22632, 4411, 11), -- Average M. Atk.
-(22632, 4412, 14), -- Strong P. Def.
-(22632, 4413, 11), -- Average M. Def.
-(22632, 4414, 1), -- Heavy Armor Type
-(22632, 4415, 3), -- One-handed Sword
-(22632, 4416, 6), -- Humanoids
-(22632, 4417, 29), -- Humanoids
+(22632, 4116, 2), -- Resist M.Atk
+(22632, 4244, 9), -- NPC Wild Sweep
+(22632, 4408, 14), -- HP Modifiers
+(22632, 4409, 1), -- MP Modifiers
+(22632, 4410, 14), -- P. Atk. Modifiers
+(22632, 4411, 11), -- M. Atk. Modifiers
+(22632, 4412, 14), -- P. Def. Modifiers
+(22632, 4413, 11), -- M. Def. Modifiers
+(22632, 4414, 1), -- Armor Type
+(22632, 4415, 3), -- Weapon Type
+(22632, 4416, 6), -- Races
+(22632, 4417, 29), -- Race Types
 (22632, 4435, 5), -- Greater Resist Stun
 (22632, 4438, 5), -- Greater Resist Sleep
 (22632, 4439, 5), -- Greater Resist Hold
-(22632, 4585, 3), -- Berserker Spirit
-(22632, 4789, 6), -- High Level
+(22632, 4585, 3), -- NPC Clan Buff - Berserk Might
+(22632, 4789, 6), -- NPC High Level
 (22632, 5465, 1), -- Earth Attacks
 (22632, 5620, 3), -- Short-Range Physical Attack Weakness
 -- Spiked Stakato Shaman
 (22633, 4036, 9), -- Poison
-(22633, 4116, 2), -- Resist M. Atk.
-(22633, 4158, 9), -- Prominence
-(22633, 4408, 14), -- HP Increase (6x)
-(22633, 4409, 1), -- MP Increase (1x)
-(22633, 4410, 11), -- Average P. Atk.
-(22633, 4411, 14), -- Strong M. Atk.
-(22633, 4412, 11), -- Average P. Def.
-(22633, 4413, 14), -- Strong M. Def.
-(22633, 4414, 3), -- Light Armor Type
-(22633, 4415, 3), -- One-handed Sword
-(22633, 4416, 6), -- Humanoids
-(22633, 4417, 29), -- Humanoids
-(22633, 4563, 9), -- Solar Flare
-(22633, 4789, 6), -- High Level
+(22633, 4116, 2), -- Resist M.Atk
+(22633, 4158, 9), -- NPC Prominence - Magic
+(22633, 4408, 14), -- HP Modifiers
+(22633, 4409, 1), -- MP Modifiers
+(22633, 4410, 11), -- P. Atk. Modifiers
+(22633, 4411, 14), -- M. Atk. Modifiers
+(22633, 4412, 11), -- P. Def. Modifiers
+(22633, 4413, 14), -- M. Def. Modifiers
+(22633, 4414, 3), -- Armor Type
+(22633, 4415, 3), -- Weapon Type
+(22633, 4416, 6), -- Races
+(22633, 4417, 29), -- Race Types
+(22633, 4563, 9), -- NPC Solar Flare - Magic
+(22633, 4789, 6), -- NPC High Level
 (22633, 5465, 1), -- Earth Attacks
 (22633, 5620, 3), -- Short-Range Physical Attack Weakness
 -- Scarlet Stakato Worker
-(22634, 4274, 1), -- Blunt Weapon Weak Point
-(22634, 4408, 13), -- HP Increase (5x)
-(22634, 4409, 1), -- MP Increase (1x)
-(22634, 4410, 12), -- Slightly Strong P. Atk.
-(22634, 4411, 12), -- Slightly Strong M. Atk.
-(22634, 4412, 10), -- Slightly Weak P. Def.
-(22634, 4413, 10), -- Slightly Weak M. Def.
-(22634, 4414, 2), -- Standard Type
-(22634, 4415, 3), -- One-handed Sword
-(22634, 4416, 6), -- Humanoids
-(22634, 4560, 9), -- Fire Burn
-(22634, 4789, 5), -- High Level
+(22634, 4274, 1), -- Blunt Attack Weak Point
+(22634, 4408, 13), -- HP Modifiers
+(22634, 4409, 1), -- MP Modifiers
+(22634, 4410, 12), -- P. Atk. Modifiers
+(22634, 4411, 12), -- M. Atk. Modifiers
+(22634, 4412, 10), -- P. Def. Modifiers
+(22634, 4413, 10), -- M. Def. Modifiers
+(22634, 4414, 2), -- Armor Type
+(22634, 4415, 3), -- Weapon Type
+(22634, 4416, 6), -- Races
+(22634, 4560, 9), -- NPC Fire Burn
+(22634, 4789, 5), -- NPC High Level
 -- Scarlet Stakato Soldier
-(22635, 4274, 1), -- Blunt Weapon Weak Point
-(22635, 4408, 13), -- HP Increase (5x)
-(22635, 4409, 1), -- MP Increase (1x)
-(22635, 4410, 12), -- Slightly Strong P. Atk.
-(22635, 4411, 12), -- Slightly Strong M. Atk.
-(22635, 4412, 10), -- Slightly Weak P. Def.
-(22635, 4413, 10), -- Slightly Weak M. Def.
-(22635, 4414, 1), -- Heavy Armor Type
-(22635, 4415, 3), -- One-handed Sword
-(22635, 4416, 6), -- Humanoids
+(22635, 4274, 1), -- Blunt Attack Weak Point
+(22635, 4408, 13), -- HP Modifiers
+(22635, 4409, 1), -- MP Modifiers
+(22635, 4410, 12), -- P. Atk. Modifiers
+(22635, 4411, 12), -- M. Atk. Modifiers
+(22635, 4412, 10), -- P. Def. Modifiers
+(22635, 4413, 10), -- M. Def. Modifiers
+(22635, 4414, 1), -- Armor Type
+(22635, 4415, 3), -- Weapon Type
+(22635, 4416, 6), -- Races
 (22635, 4580, 9), -- Decrease P. Atk.
-(22635, 4789, 5), -- High Level
+(22635, 4789, 5), -- NPC High Level
 -- Scarlet Stakato Noble
-(22636, 4244, 9), -- Wild Sweep
-(22636, 4408, 13), -- HP Increase (5x)
-(22636, 4409, 1), -- MP Increase (1x)
-(22636, 4410, 12), -- Slightly Strong P. Atk.
-(22636, 4411, 12), -- Slightly Strong M. Atk.
-(22636, 4412, 17), -- Very Strong P. Def.
-(22636, 4413, 10), -- Slightly Weak M. Def.
-(22636, 4414, 2), -- Standard Type
-(22636, 4415, 3), -- One-handed Sword
-(22636, 4416, 6), -- Humanoids
-(22636, 4789, 6), -- High Level
+(22636, 4244, 9), -- NPC Wild Sweep
+(22636, 4408, 13), -- HP Modifiers
+(22636, 4409, 1), -- MP Modifiers
+(22636, 4410, 12), -- P. Atk. Modifiers
+(22636, 4411, 12), -- M. Atk. Modifiers
+(22636, 4412, 17), -- P. Def. Modifiers
+(22636, 4413, 10), -- M. Def. Modifiers
+(22636, 4414, 2), -- Armor Type
+(22636, 4415, 3), -- Weapon Type
+(22636, 4416, 6), -- Races
+(22636, 4789, 6), -- NPC High Level
 -- Tepra Scorpion
-(22637, 4274, 1), -- Blunt Weapon Weak Point
-(22637, 4408, 13), -- HP Increase (5x)
-(22637, 4409, 1), -- MP Increase (1x)
-(22637, 4410, 12), -- Slightly Strong P. Atk.
-(22637, 4411, 12), -- Slightly Strong M. Atk.
-(22637, 4412, 10), -- Slightly Weak P. Def.
-(22637, 4413, 10), -- Slightly Weak M. Def.
-(22637, 4414, 2), -- Standard Type
-(22637, 4415, 7), -- Daggers
-(22637, 4416, 12), -- Bugs
+(22637, 4274, 1), -- Blunt Attack Weak Point
+(22637, 4408, 13), -- HP Modifiers
+(22637, 4409, 1), -- MP Modifiers
+(22637, 4410, 12), -- P. Atk. Modifiers
+(22637, 4411, 12), -- M. Atk. Modifiers
+(22637, 4412, 10), -- P. Def. Modifiers
+(22637, 4413, 10), -- M. Def. Modifiers
+(22637, 4414, 2), -- Armor Type
+(22637, 4415, 7), -- Weapon Type
+(22637, 4416, 12), -- Races
 (22637, 4437, 4), -- Greater Resist Bleeding
-(22637, 4560, 9), -- Fire Burn
-(22637, 4789, 6), -- High Level
+(22637, 4560, 9), -- NPC Fire Burn
+(22637, 4789, 6), -- NPC High Level
 -- Tepra Scarab
-(22638, 4274, 1), -- Blunt Weapon Weak Point
-(22638, 4408, 13), -- HP Increase (5x)
-(22638, 4409, 1), -- MP Increase (1x)
-(22638, 4410, 12), -- Slightly Strong P. Atk.
-(22638, 4411, 12), -- Slightly Strong M. Atk.
-(22638, 4412, 10), -- Slightly Weak P. Def.
-(22638, 4413, 10), -- Slightly Weak M. Def.
-(22638, 4414, 2), -- Standard Type
-(22638, 4415, 5), -- Blunt Weapons
-(22638, 4416, 12), -- Bugs
+(22638, 4274, 1), -- Blunt Attack Weak Point
+(22638, 4408, 13), -- HP Modifiers
+(22638, 4409, 1), -- MP Modifiers
+(22638, 4410, 12), -- P. Atk. Modifiers
+(22638, 4411, 12), -- M. Atk. Modifiers
+(22638, 4412, 10), -- P. Def. Modifiers
+(22638, 4413, 10), -- M. Def. Modifiers
+(22638, 4414, 2), -- Armor Type
+(22638, 4415, 5), -- Weapon Type
+(22638, 4416, 12), -- Races
 (22638, 4437, 4), -- Greater Resist Bleeding
-(22638, 4560, 9), -- Fire Burn
-(22638, 4789, 6), -- High Level
+(22638, 4560, 9), -- NPC Fire Burn
+(22638, 4789, 6), -- NPC High Level
 -- Assassin Beetle
-(22639, 4244, 9), -- Wild Sweep
-(22639, 4274, 1), -- Blunt Weapon Weak Point
-(22639, 4408, 13), -- HP Increase (5x)
-(22639, 4409, 1), -- MP Increase (1x)
-(22639, 4410, 12), -- Slightly Strong P. Atk.
-(22639, 4411, 12), -- Slightly Strong M. Atk.
-(22639, 4412, 13), -- Slightly Strong P. Def.
-(22639, 4413, 10), -- Slightly Weak M. Def.
-(22639, 4414, 2), -- Standard Type
-(22639, 4415, 3), -- One-handed Sword
-(22639, 4416, 12), -- Bugs
+(22639, 4244, 9), -- NPC Wild Sweep
+(22639, 4274, 1), -- Blunt Attack Weak Point
+(22639, 4408, 13), -- HP Modifiers
+(22639, 4409, 1), -- MP Modifiers
+(22639, 4410, 12), -- P. Atk. Modifiers
+(22639, 4411, 12), -- M. Atk. Modifiers
+(22639, 4412, 13), -- P. Def. Modifiers
+(22639, 4413, 10), -- M. Def. Modifiers
+(22639, 4414, 2), -- Armor Type
+(22639, 4415, 3), -- Weapon Type
+(22639, 4416, 12), -- Races
 (22639, 4437, 4), -- Greater Resist Bleeding
-(22639, 4789, 6), -- High Level
+(22639, 4789, 6), -- NPC High Level
 -- Mercenary of Destruction
-(22640, 4244, 9), -- Wild Sweep
-(22640, 4274, 1), -- Blunt Weapon Weak Point
-(22640, 4287, 5), -- Resist Hold Attacks
-(22640, 4408, 13), -- HP Increase (5x)
-(22640, 4409, 1), -- MP Increase (1x)
-(22640, 4410, 12), -- Slightly Strong P. Atk.
-(22640, 4411, 12), -- Slightly Strong M. Atk.
-(22640, 4412, 10), -- Slightly Weak P. Def.
-(22640, 4413, 18), -- Extremely Strong M. Def.
-(22640, 4414, 2), -- Standard Type
-(22640, 4415, 13), -- Two-handed Sword
-(22640, 4416, 1), -- Undead
-(22640, 4789, 6), -- High Level
+(22640, 4244, 9), -- NPC Wild Sweep
+(22640, 4274, 1), -- Blunt Attack Weak Point
+(22640, 4287, 5), -- Resist Hold
+(22640, 4408, 13), -- HP Modifiers
+(22640, 4409, 1), -- MP Modifiers
+(22640, 4410, 12), -- P. Atk. Modifiers
+(22640, 4411, 12), -- M. Atk. Modifiers
+(22640, 4412, 10), -- P. Def. Modifiers
+(22640, 4413, 18), -- M. Def. Modifiers
+(22640, 4414, 2), -- Armor Type
+(22640, 4415, 13), -- Weapon Type
+(22640, 4416, 1), -- Races
+(22640, 4789, 6), -- NPC High Level
 -- Knight of Destruction
-(22641, 4274, 1), -- Blunt Weapon Weak Point
-(22641, 4408, 13), -- HP Increase (5x)
-(22641, 4409, 1), -- MP Increase (1x)
-(22641, 4410, 12), -- Slightly Strong P. Atk.
-(22641, 4411, 12), -- Slightly Strong M. Atk.
-(22641, 4412, 17), -- Very Strong P. Def.
-(22641, 4413, 10), -- Slightly Weak M. Def.
-(22641, 4414, 2), -- Standard Type
-(22641, 4415, 3), -- One-handed Sword
-(22641, 4416, 1), -- Undead
-(22641, 4560, 9), -- Fire Burn
-(22641, 4789, 6), -- High Level
+(22641, 4274, 1), -- Blunt Attack Weak Point
+(22641, 4408, 13), -- HP Modifiers
+(22641, 4409, 1), -- MP Modifiers
+(22641, 4410, 12), -- P. Atk. Modifiers
+(22641, 4411, 12), -- M. Atk. Modifiers
+(22641, 4412, 17), -- P. Def. Modifiers
+(22641, 4413, 10), -- M. Def. Modifiers
+(22641, 4414, 2), -- Armor Type
+(22641, 4415, 3), -- Weapon Type
+(22641, 4416, 1), -- Races
+(22641, 4560, 9), -- NPC Fire Burn
+(22641, 4789, 6), -- NPC High Level
 -- Lavastone Golem
 (22642, 4047, 9), -- Hold
-(22642, 4274, 1), -- Blunt Weapon Weak Point
-(22642, 4408, 13), -- HP Increase (5x)
-(22642, 4409, 1), -- MP Increase (1x)
-(22642, 4410, 12), -- Slightly Strong P. Atk.
-(22642, 4411, 12), -- Slightly Strong M. Atk.
-(22642, 4412, 11), -- Average P. Def.
-(22642, 4413, 15), -- Strong M. Def.
-(22642, 4414, 1), -- Heavy Armor Type
-(22642, 4415, 5), -- Blunt Weapons
-(22642, 4416, 2), -- Magic Creatures
+(22642, 4274, 1), -- Blunt Attack Weak Point
+(22642, 4408, 13), -- HP Modifiers
+(22642, 4409, 1), -- MP Modifiers
+(22642, 4410, 12), -- P. Atk. Modifiers
+(22642, 4411, 12), -- M. Atk. Modifiers
+(22642, 4412, 11), -- P. Def. Modifiers
+(22642, 4413, 15), -- M. Def. Modifiers
+(22642, 4414, 1), -- Armor Type
+(22642, 4415, 5), -- Weapon Type
+(22642, 4416, 2), -- Races
 (22642, 4591, 9), -- Decrease Speed
-(22642, 4789, 7), -- High Level
+(22642, 4789, 7), -- NPC High Level
 -- Magma Golem
 (22643, 4047, 9), -- Hold
-(22643, 4157, 9), -- Blaze
-(22643, 4274, 1), -- Blunt Weapon Weak Point
-(22643, 4408, 13), -- HP Increase (5x)
-(22643, 4409, 1), -- MP Increase (1x)
-(22643, 4410, 12), -- Slightly Strong P. Atk.
-(22643, 4411, 12), -- Slightly Strong M. Atk.
-(22643, 4412, 11), -- Average P. Def.
-(22643, 4413, 15), -- Strong M. Def.
-(22643, 4414, 1), -- Heavy Armor Type
-(22643, 4415, 5), -- Blunt Weapons
-(22643, 4416, 2), -- Magic Creatures
-(22643, 4789, 7), -- High Level
+(22643, 4157, 9), -- NPC Blaze - Magic
+(22643, 4274, 1), -- Blunt Attack Weak Point
+(22643, 4408, 13), -- HP Modifiers
+(22643, 4409, 1), -- MP Modifiers
+(22643, 4410, 12), -- P. Atk. Modifiers
+(22643, 4411, 12), -- M. Atk. Modifiers
+(22643, 4412, 11), -- P. Def. Modifiers
+(22643, 4413, 15), -- M. Def. Modifiers
+(22643, 4414, 1), -- Armor Type
+(22643, 4415, 5), -- Weapon Type
+(22643, 4416, 2), -- Races
+(22643, 4789, 7), -- NPC High Level
 -- Arimanes of Destruction
-(22644, 4408, 13), -- HP Increase (5x)
-(22644, 4409, 1), -- MP Increase (1x)
-(22644, 4410, 12), -- Slightly Strong P. Atk.
-(22644, 4411, 12), -- Slightly Strong M. Atk.
-(22644, 4412, 10), -- Slightly Weak P. Def.
-(22644, 4413, 10), -- Slightly Weak M. Def.
-(22644, 4414, 2), -- Standard Type
-(22644, 4415, 11), -- Spears
-(22644, 4416, 9), -- Demons
+(22644, 4408, 13), -- HP Modifiers
+(22644, 4409, 1), -- MP Modifiers
+(22644, 4410, 12), -- P. Atk. Modifiers
+(22644, 4411, 12), -- M. Atk. Modifiers
+(22644, 4412, 10), -- P. Def. Modifiers
+(22644, 4413, 10), -- M. Def. Modifiers
+(22644, 4414, 2), -- Armor Type
+(22644, 4415, 11), -- Weapon Type
+(22644, 4416, 9), -- Races
 (22644, 4589, 9), -- Decrease Speed
-(22644, 4789, 7), -- High Level
+(22644, 4789, 7), -- NPC High Level
 (22644, 5467, 1), -- Dark Attacks
 -- Balor of Destruction
-(22645, 4389, 4), -- Resist Mental Attacks
-(22645, 4408, 14), -- HP Increase (6x)
-(22645, 4409, 1), -- MP Increase (1x)
-(22645, 4410, 12), -- Slightly Strong P. Atk.
-(22645, 4411, 12), -- Slightly Strong M. Atk.
-(22645, 4412, 10), -- Slightly Weak P. Def.
-(22645, 4413, 10), -- Slightly Weak M. Def.
-(22645, 4414, 2), -- Standard Type
-(22645, 4415, 3), -- One-handed Sword
-(22645, 4416, 9), -- Demons
+(22645, 4389, 4), -- Resist Mental Derangement
+(22645, 4408, 14), -- HP Modifiers
+(22645, 4409, 1), -- MP Modifiers
+(22645, 4410, 12), -- P. Atk. Modifiers
+(22645, 4411, 12), -- M. Atk. Modifiers
+(22645, 4412, 10), -- P. Def. Modifiers
+(22645, 4413, 10), -- M. Def. Modifiers
+(22645, 4414, 2), -- Armor Type
+(22645, 4415, 3), -- Weapon Type
+(22645, 4416, 9), -- Races
 (22645, 4438, 2), -- Greater Resist Sleep
 (22645, 4599, 9), -- Decrease Speed
-(22645, 4789, 7), -- High Level
+(22645, 4789, 7), -- NPC High Level
 (22645, 5467, 1), -- Dark Attacks
 -- Ashuras of Destruction
-(22646, 4244, 9), -- Wild Sweep
-(22646, 4408, 14), -- HP Increase (6x)
-(22646, 4409, 1), -- MP Increase (1x)
-(22646, 4410, 12), -- Slightly Strong P. Atk.
-(22646, 4411, 12), -- Slightly Strong M. Atk.
-(22646, 4412, 17), -- Very Strong P. Def.
-(22646, 4413, 10), -- Slightly Weak M. Def.
-(22646, 4414, 2), -- Standard Type
-(22646, 4415, 3), -- One-handed Sword
-(22646, 4416, 9), -- Demons
-(22646, 4789, 8), -- High Level
+(22646, 4244, 9), -- NPC Wild Sweep
+(22646, 4408, 14), -- HP Modifiers
+(22646, 4409, 1), -- MP Modifiers
+(22646, 4410, 12), -- P. Atk. Modifiers
+(22646, 4411, 12), -- M. Atk. Modifiers
+(22646, 4412, 17), -- P. Def. Modifiers
+(22646, 4413, 10), -- M. Def. Modifiers
+(22646, 4414, 2), -- Armor Type
+(22646, 4415, 3), -- Weapon Type
+(22646, 4416, 9), -- Races
+(22646, 4789, 8), -- NPC High Level
 (22646, 5467, 1), -- Dark Attacks
 -- Lavasillisk
-(22647, 4408, 14), -- HP Increase (6x)
-(22647, 4409, 1), -- MP Increase (1x)
-(22647, 4410, 12), -- Slightly Strong P. Atk.
-(22647, 4411, 12), -- Slightly Strong M. Atk.
-(22647, 4412, 10), -- Slightly Weak P. Def.
-(22647, 4413, 10), -- Slightly Weak M. Def.
-(22647, 4414, 2), -- Standard Type
-(22647, 4415, 3), -- One-handed Sword
-(22647, 4416, 3), -- Beasts
-(22647, 4560, 9), -- Fire Burn
-(22647, 4789, 8), -- High Level
+(22647, 4408, 14), -- HP Modifiers
+(22647, 4409, 1), -- MP Modifiers
+(22647, 4410, 12), -- P. Atk. Modifiers
+(22647, 4411, 12), -- M. Atk. Modifiers
+(22647, 4412, 10), -- P. Def. Modifiers
+(22647, 4413, 10), -- M. Def. Modifiers
+(22647, 4414, 2), -- Armor Type
+(22647, 4415, 3), -- Weapon Type
+(22647, 4416, 3), -- Races
+(22647, 4560, 9), -- NPC Fire Burn
+(22647, 4789, 8), -- NPC High Level
 -- Blazing Ifrit
-(22648, 4408, 14), -- HP Increase (6x)
-(22648, 4409, 1), -- MP Increase (1x)
-(22648, 4410, 12), -- Slightly Strong P. Atk.
-(22648, 4411, 12), -- Slightly Strong M. Atk.
-(22648, 4412, 17), -- Very Strong P. Def.
-(22648, 4413, 10), -- Slightly Weak M. Def.
-(22648, 4414, 3), -- Light Armor Type
-(22648, 4415, 3), -- One-handed Sword
-(22648, 4416, 7), -- Spirits
+(22648, 4408, 14), -- HP Modifiers
+(22648, 4409, 1), -- MP Modifiers
+(22648, 4410, 12), -- P. Atk. Modifiers
+(22648, 4411, 12), -- M. Atk. Modifiers
+(22648, 4412, 17), -- P. Def. Modifiers
+(22648, 4413, 10), -- M. Def. Modifiers
+(22648, 4414, 3), -- Armor Type
+(22648, 4415, 3), -- Weapon Type
+(22648, 4416, 7), -- Races
 (22648, 4605, 9), -- Surrender To Fire
-(22648, 4789, 8), -- High Level
+(22648, 4789, 8), -- NPC High Level
 -- Magma Drake
-(22649, 4408, 14), -- HP Increase (6x)
-(22649, 4409, 1), -- MP Increase (1x)
-(22649, 4410, 12), -- Slightly Strong P. Atk.
-(22649, 4411, 12), -- Slightly Strong M. Atk.
-(22649, 4412, 14), -- Strong P. Def.
-(22649, 4413, 10), -- Slightly Weak M. Def.
-(22649, 4414, 2), -- Standard Type
-(22649, 4415, 3), -- One-handed Sword
-(22649, 4416, 10), -- Dragons
-(22649, 4560, 9), -- Fire Burn
-(22649, 4789, 9), -- High Level
+(22649, 4408, 14), -- HP Modifiers
+(22649, 4409, 1), -- MP Modifiers
+(22649, 4410, 12), -- P. Atk. Modifiers
+(22649, 4411, 12), -- M. Atk. Modifiers
+(22649, 4412, 14), -- P. Def. Modifiers
+(22649, 4413, 10), -- M. Def. Modifiers
+(22649, 4414, 2), -- Armor Type
+(22649, 4415, 3), -- Weapon Type
+(22649, 4416, 10), -- Races
+(22649, 4560, 9), -- NPC Fire Burn
+(22649, 4789, 9), -- NPC High Level
 -- Mucrokian Fanatic
-(22650, 4071, 5), -- Resist Bow/Crossbow Weapons
-(22650, 4085, 1), -- Critical Damage
+(22650, 4071, 5), -- Resist Archery
+(22650, 4085, 1), -- Critical Power
 (22650, 4086, 1), -- Critical Chance
-(22650, 4408, 10), -- HP Increase (2x)
-(22650, 4409, 1), -- MP Increase (1x)
-(22650, 4410, 11), -- Average P. Atk.
-(22650, 4411, 11), -- Average M. Atk.
-(22650, 4412, 14), -- Strong P. Def.
-(22650, 4413, 11), -- Average M. Def.
-(22650, 4414, 2), -- Standard Type
-(22650, 4415, 3), -- One-handed Sword
-(22650, 4416, 6), -- Humanoids
-(22650, 4670, 9), -- Stuns
+(22650, 4408, 10), -- HP Modifiers
+(22650, 4409, 1), -- MP Modifiers
+(22650, 4410, 11), -- P. Atk. Modifiers
+(22650, 4411, 11), -- M. Atk. Modifiers
+(22650, 4412, 14), -- P. Def. Modifiers
+(22650, 4413, 11), -- M. Def. Modifiers
+(22650, 4414, 2), -- Armor Type
+(22650, 4415, 3), -- Weapon Type
+(22650, 4416, 6), -- Races
+(22650, 4670, 9), -- Short Stun
 (22650, 5601, 10), -- Short-Range Physical Attack Resistance
 (22650, 5909, 1), -- Stronghold Attack
 -- Mucrokian Ascetic
-(22651, 4071, 5), -- Resist Bow/Crossbow Weapons
-(22651, 4085, 1), -- Critical Damage
+(22651, 4071, 5), -- Resist Archery
+(22651, 4085, 1), -- Critical Power
 (22651, 4086, 1), -- Critical Chance
-(22651, 4408, 10), -- HP Increase (2x)
-(22651, 4409, 1), -- MP Increase (1x)
-(22651, 4410, 11), -- Average P. Atk.
-(22651, 4411, 11), -- Average M. Atk.
-(22651, 4412, 14), -- Strong P. Def.
-(22651, 4413, 11), -- Average M. Def.
-(22651, 4414, 2), -- Standard Type
-(22651, 4415, 3), -- One-handed Sword
-(22651, 4416, 6), -- Humanoids
+(22651, 4408, 10), -- HP Modifiers
+(22651, 4409, 1), -- MP Modifiers
+(22651, 4410, 11), -- P. Atk. Modifiers
+(22651, 4411, 11), -- M. Atk. Modifiers
+(22651, 4412, 14), -- P. Def. Modifiers
+(22651, 4413, 11), -- M. Def. Modifiers
+(22651, 4414, 2), -- Armor Type
+(22651, 4415, 3), -- Weapon Type
+(22651, 4416, 6), -- Races
 (22651, 4582, 9), -- Poison
 (22651, 5601, 10), -- Short-Range Physical Attack Resistance
 (22651, 5909, 1), -- Stronghold Attack
 -- Mucrokian Savior
-(22652, 4071, 5), -- Resist Bow/Crossbow Weapons
-(22652, 4085, 1), -- Critical Damage
+(22652, 4071, 5), -- Resist Archery
+(22652, 4085, 1), -- Critical Power
 (22652, 4086, 1), -- Critical Chance
-(22652, 4408, 10), -- HP Increase (2x)
-(22652, 4409, 1), -- MP Increase (1x)
-(22652, 4410, 11), -- Average P. Atk.
-(22652, 4411, 11), -- Average M. Atk.
-(22652, 4412, 14), -- Strong P. Def.
-(22652, 4413, 11), -- Average M. Def.
-(22652, 4414, 2), -- Standard Type
-(22652, 4415, 3), -- One-handed Sword
-(22652, 4416, 6), -- Humanoids
-(22652, 4670, 9), -- Stuns
+(22652, 4408, 10), -- HP Modifiers
+(22652, 4409, 1), -- MP Modifiers
+(22652, 4410, 11), -- P. Atk. Modifiers
+(22652, 4411, 11), -- M. Atk. Modifiers
+(22652, 4412, 14), -- P. Def. Modifiers
+(22652, 4413, 11), -- M. Def. Modifiers
+(22652, 4414, 2), -- Armor Type
+(22652, 4415, 3), -- Weapon Type
+(22652, 4416, 6), -- Races
+(22652, 4670, 9), -- Short Stun
 (22652, 5601, 10), -- Short-Range Physical Attack Resistance
 (22652, 5909, 1), -- Stronghold Attack
 -- Mucrokian Preacher
-(22653, 4071, 5), -- Resist Bow/Crossbow Weapons
-(22653, 4085, 1), -- Critical Damage
+(22653, 4071, 5), -- Resist Archery
+(22653, 4085, 1), -- Critical Power
 (22653, 4086, 1), -- Critical Chance
-(22653, 4408, 10), -- HP Increase (2x)
-(22653, 4409, 1), -- MP Increase (1x)
-(22653, 4410, 11), -- Average P. Atk.
-(22653, 4411, 11), -- Average M. Atk.
-(22653, 4412, 14), -- Strong P. Def.
-(22653, 4413, 11), -- Average M. Def.
-(22653, 4414, 2), -- Standard Type
-(22653, 4415, 3), -- One-handed Sword
-(22653, 4416, 6), -- Humanoids
+(22653, 4408, 10), -- HP Modifiers
+(22653, 4409, 1), -- MP Modifiers
+(22653, 4410, 11), -- P. Atk. Modifiers
+(22653, 4411, 11), -- M. Atk. Modifiers
+(22653, 4412, 14), -- P. Def. Modifiers
+(22653, 4413, 11), -- M. Def. Modifiers
+(22653, 4414, 2), -- Armor Type
+(22653, 4415, 3), -- Weapon Type
+(22653, 4416, 6), -- Races
 (22653, 4582, 9), -- Poison
 (22653, 5601, 10), -- Short-Range Physical Attack Resistance
 (22653, 5909, 1), -- Stronghold Attack
 -- Contaminated Mucrokian
-(22654, 4067, 9), -- Blow
-(22654, 4071, 5), -- Resist Bow/Crossbow Weapons
-(22654, 4408, 1), -- HP Increase (1x)
-(22654, 4409, 1), -- MP Increase (1x)
-(22654, 4410, 6), -- Very Weak P. Atk.
-(22654, 4411, 11), -- Average M. Atk.
-(22654, 4412, 9), -- Slightly Weak P. Def.
-(22654, 4413, 9), -- Slightly Weak M. Def.
-(22654, 4414, 1), -- Heavy Armor Type
-(22654, 4415, 3), -- One-handed Sword
-(22654, 4416, 6), -- Humanoids
+(22654, 4067, 9), -- NPC Mortal Blow
+(22654, 4071, 5), -- Resist Archery
+(22654, 4408, 1), -- HP Modifiers
+(22654, 4409, 1), -- MP Modifiers
+(22654, 4410, 6), -- P. Atk. Modifiers
+(22654, 4411, 11), -- M. Atk. Modifiers
+(22654, 4412, 9), -- P. Def. Modifiers
+(22654, 4413, 9), -- M. Def. Modifiers
+(22654, 4414, 1), -- Armor Type
+(22654, 4415, 3), -- Weapon Type
+(22654, 4416, 6), -- Races
 (22654, 5909, 1), -- Stronghold Attack
 -- Awakened Mucrokian
-(22655, 4071, 5), -- Resist Bow/Crossbow Weapons
-(22655, 4072, 9), -- Stun
-(22655, 4085, 1), -- Critical Damage
+(22655, 4071, 5), -- Resist Archery
+(22655, 4072, 9), -- Shock
+(22655, 4085, 1), -- Critical Power
 (22655, 4086, 1), -- Critical Chance
-(22655, 4408, 12), -- HP Increase (4x)
-(22655, 4409, 1), -- MP Increase (1x)
-(22655, 4410, 11), -- Average P. Atk.
-(22655, 4411, 11), -- Average M. Atk.
-(22655, 4412, 13), -- Slightly Strong P. Def.
-(22655, 4413, 11), -- Average M. Def.
-(22655, 4414, 2), -- Standard Type
-(22655, 4415, 3), -- One-handed Sword
-(22655, 4416, 6), -- Humanoids
+(22655, 4408, 12), -- HP Modifiers
+(22655, 4409, 1), -- MP Modifiers
+(22655, 4410, 11), -- P. Atk. Modifiers
+(22655, 4411, 11), -- M. Atk. Modifiers
+(22655, 4412, 13), -- P. Def. Modifiers
+(22655, 4413, 11), -- M. Def. Modifiers
+(22655, 4414, 2), -- Armor Type
+(22655, 4415, 3), -- Weapon Type
+(22655, 4416, 6), -- Races
 (22655, 5909, 1), -- Stronghold Attack
 -- Suppressor
-(22656, 4071, 5), -- Resist Bow/Crossbow Weapons
-(22656, 4085, 1), -- Critical Damage
+(22656, 4071, 5), -- Resist Archery
+(22656, 4085, 1), -- Critical Power
 (22656, 4086, 1), -- Critical Chance
-(22656, 4408, 10), -- HP Increase (2x)
-(22656, 4409, 1), -- MP Increase (1x)
-(22656, 4410, 11), -- Average P. Atk.
-(22656, 4411, 11), -- Average M. Atk.
-(22656, 4412, 11), -- Average P. Def.
-(22656, 4413, 11), -- Average M. Def.
-(22656, 4414, 2), -- Standard Type
-(22656, 4415, 3), -- One-handed Sword
-(22656, 4416, 2), -- Magic Creatures
-(22656, 4670, 9), -- Stuns
+(22656, 4408, 10), -- HP Modifiers
+(22656, 4409, 1), -- MP Modifiers
+(22656, 4410, 11), -- P. Atk. Modifiers
+(22656, 4411, 11), -- M. Atk. Modifiers
+(22656, 4412, 11), -- P. Def. Modifiers
+(22656, 4413, 11), -- M. Def. Modifiers
+(22656, 4414, 2), -- Armor Type
+(22656, 4415, 3), -- Weapon Type
+(22656, 4416, 2), -- Races
+(22656, 4670, 9), -- Short Stun
 (22656, 5909, 1), -- Stronghold Attack
 -- Executioner
-(22657, 4071, 5), -- Resist Bow/Crossbow Weapons
-(22657, 4085, 1), -- Critical Damage
+(22657, 4071, 5), -- Resist Archery
+(22657, 4085, 1), -- Critical Power
 (22657, 4086, 1), -- Critical Chance
-(22657, 4408, 10), -- HP Increase (2x)
-(22657, 4409, 1), -- MP Increase (1x)
-(22657, 4410, 11), -- Average P. Atk.
-(22657, 4411, 11), -- Average M. Atk.
-(22657, 4412, 11), -- Average P. Def.
-(22657, 4413, 11), -- Average M. Def.
-(22657, 4414, 2), -- Standard Type
-(22657, 4415, 3), -- One-handed Sword
-(22657, 4416, 2), -- Magic Creatures
-(22657, 4670, 9), -- Stuns
+(22657, 4408, 10), -- HP Modifiers
+(22657, 4409, 1), -- MP Modifiers
+(22657, 4410, 11), -- P. Atk. Modifiers
+(22657, 4411, 11), -- M. Atk. Modifiers
+(22657, 4412, 11), -- P. Def. Modifiers
+(22657, 4413, 11), -- M. Def. Modifiers
+(22657, 4414, 2), -- Armor Type
+(22657, 4415, 3), -- Weapon Type
+(22657, 4416, 2), -- Races
+(22657, 4670, 9), -- Short Stun
 (22657, 5909, 1), -- Stronghold Attack
 -- Sentinel Waterspirit
-(22658, 4085, 1), -- Critical Damage
+(22658, 4085, 1), -- Critical Power
 (22658, 4086, 1), -- Critical Chance
-(22658, 4408, 10), -- HP Increase (2x)
-(22658, 4409, 1), -- MP Increase (1x)
-(22658, 4410, 11), -- Average P. Atk.
-(22658, 4411, 11), -- Average M. Atk.
-(22658, 4412, 11), -- Average P. Def.
-(22658, 4413, 11), -- Average M. Def.
-(22658, 4414, 3), -- Light Armor Type
-(22658, 4415, 5), -- Blunt Weapons
-(22658, 4416, 9), -- Demons
+(22658, 4408, 10), -- HP Modifiers
+(22658, 4409, 1), -- MP Modifiers
+(22658, 4410, 11), -- P. Atk. Modifiers
+(22658, 4411, 11), -- M. Atk. Modifiers
+(22658, 4412, 11), -- P. Def. Modifiers
+(22658, 4413, 11), -- M. Def. Modifiers
+(22658, 4414, 3), -- Armor Type
+(22658, 4415, 5), -- Weapon Type
+(22658, 4416, 9), -- Races
 (22658, 4582, 9), -- Poison
 (22658, 5601, 10), -- Short-Range Physical Attack Resistance
 (22658, 5910, 1), -- Stronghold Attack
 -- Guardian Waterspirit
-(22659, 4085, 1), -- Critical Damage
+(22659, 4085, 1), -- Critical Power
 (22659, 4086, 1), -- Critical Chance
-(22659, 4408, 10), -- HP Increase (2x)
-(22659, 4409, 1), -- MP Increase (1x)
-(22659, 4410, 11), -- Average P. Atk.
-(22659, 4411, 11), -- Average M. Atk.
-(22659, 4412, 11), -- Average P. Def.
-(22659, 4413, 11), -- Average M. Def.
-(22659, 4414, 2), -- Standard Type
-(22659, 4415, 3), -- One-handed Sword
-(22659, 4416, 7), -- Spirits
+(22659, 4408, 10), -- HP Modifiers
+(22659, 4409, 1), -- MP Modifiers
+(22659, 4410, 11), -- P. Atk. Modifiers
+(22659, 4411, 11), -- M. Atk. Modifiers
+(22659, 4412, 11), -- P. Def. Modifiers
+(22659, 4413, 11), -- M. Def. Modifiers
+(22659, 4414, 2), -- Armor Type
+(22659, 4415, 3), -- Weapon Type
+(22659, 4416, 7), -- Races
 (22659, 4582, 9), -- Poison
 (22659, 5601, 10), -- Short-Range Physical Attack Resistance
 (22659, 5910, 1), -- Stronghold Attack
 -- Lesser Giant
-(22660, 4116, 9), -- Resist M. Atk.
-(22660, 4408, 10), -- HP Increase (2x)
-(22660, 4409, 1), -- MP Increase (1x)
-(22660, 4410, 12), -- Slightly Strong P. Atk.
-(22660, 4411, 11), -- Average M. Atk.
-(22660, 4412, 11), -- Average P. Def.
-(22660, 4413, 11), -- Average M. Def.
-(22660, 4414, 1), -- Heavy Armor Type
-(22660, 4415, 3), -- One-handed Sword
-(22660, 4416, 11), -- Giants
+(22660, 4116, 9), -- Resist M.Atk
+(22660, 4408, 10), -- HP Modifiers
+(22660, 4409, 1), -- MP Modifiers
+(22660, 4410, 12), -- P. Atk. Modifiers
+(22660, 4411, 11), -- M. Atk. Modifiers
+(22660, 4412, 11), -- P. Def. Modifiers
+(22660, 4413, 11), -- M. Def. Modifiers
+(22660, 4414, 1), -- Armor Type
+(22660, 4415, 3), -- Weapon Type
+(22660, 4416, 11), -- Races
 (22660, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 (22660, 5463, 1), -- Water Attacks
 -- Lesser Giant Soldier
-(22661, 4073, 9), -- Stun
-(22661, 4116, 9), -- Resist M. Atk.
-(22661, 4408, 10), -- HP Increase (2x)
-(22661, 4409, 1), -- MP Increase (1x)
-(22661, 4410, 13), -- Slightly Strong P. Atk.
-(22661, 4411, 13), -- Slightly Strong M. Atk.
-(22661, 4412, 11), -- Average P. Def.
-(22661, 4413, 9), -- Slightly Weak M. Def.
-(22661, 4414, 1), -- Heavy Armor Type
-(22661, 4415, 3), -- One-handed Sword
-(22661, 4416, 11), -- Giants
+(22661, 4073, 9), -- Shock
+(22661, 4116, 9), -- Resist M.Atk
+(22661, 4408, 10), -- HP Modifiers
+(22661, 4409, 1), -- MP Modifiers
+(22661, 4410, 13), -- P. Atk. Modifiers
+(22661, 4411, 13), -- M. Atk. Modifiers
+(22661, 4412, 11), -- P. Def. Modifiers
+(22661, 4413, 9), -- M. Def. Modifiers
+(22661, 4414, 1), -- Armor Type
+(22661, 4415, 3), -- Weapon Type
+(22661, 4416, 11), -- Races
 (22661, 4439, 4), -- Greater Resist Hold
 (22661, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 (22661, 5463, 1), -- Water Attacks
 -- Lesser Giant Shooter
-(22662, 4116, 9), -- Resist M. Atk.
-(22662, 4408, 10), -- HP Increase (2x)
-(22662, 4409, 1), -- MP Increase (1x)
-(22662, 4410, 11), -- Average P. Atk.
-(22662, 4411, 12), -- Slightly Strong M. Atk.
-(22662, 4412, 11), -- Average P. Def.
-(22662, 4413, 11), -- Average M. Def.
-(22662, 4414, 1), -- Heavy Armor Type
-(22662, 4415, 9), -- Bows
-(22662, 4416, 11), -- Giants
+(22662, 4116, 9), -- Resist M.Atk
+(22662, 4408, 10), -- HP Modifiers
+(22662, 4409, 1), -- MP Modifiers
+(22662, 4410, 11), -- P. Atk. Modifiers
+(22662, 4411, 12), -- M. Atk. Modifiers
+(22662, 4412, 11), -- P. Def. Modifiers
+(22662, 4413, 11), -- M. Def. Modifiers
+(22662, 4414, 1), -- Armor Type
+(22662, 4415, 9), -- Weapon Type
+(22662, 4416, 11), -- Races
 (22662, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 (22662, 5463, 1), -- Water Attacks
 -- Lesser Giant Scout
 (22663, 4086, 1), -- Critical Chance
-(22663, 4116, 9), -- Resist M. Atk.
-(22663, 4408, 10), -- HP Increase (2x)
-(22663, 4409, 1), -- MP Increase (1x)
-(22663, 4410, 11), -- Average P. Atk.
-(22663, 4411, 12), -- Slightly Strong M. Atk.
-(22663, 4412, 11), -- Average P. Def.
-(22663, 4413, 11), -- Average M. Def.
-(22663, 4414, 1), -- Heavy Armor Type
-(22663, 4415, 9), -- Bows
-(22663, 4416, 11), -- Giants
+(22663, 4116, 9), -- Resist M.Atk
+(22663, 4408, 10), -- HP Modifiers
+(22663, 4409, 1), -- MP Modifiers
+(22663, 4410, 11), -- P. Atk. Modifiers
+(22663, 4411, 12), -- M. Atk. Modifiers
+(22663, 4412, 11), -- P. Def. Modifiers
+(22663, 4413, 11), -- M. Def. Modifiers
+(22663, 4414, 1), -- Armor Type
+(22663, 4415, 9), -- Weapon Type
+(22663, 4416, 11), -- Races
 (22663, 4438, 4), -- Greater Resist Sleep
 (22663, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 (22663, 5463, 1), -- Water Attacks
 (22663, 6143, 1), -- Ancient Beam
 -- Lesser Giant Mage
-(22664, 4065, 9), -- Heal
-(22664, 4116, 9), -- Resist M. Atk.
-(22664, 4160, 9), -- Aura Burn
-(22664, 4408, 10), -- HP Increase (2x)
-(22664, 4409, 1), -- MP Increase (1x)
-(22664, 4410, 11), -- Average P. Atk.
-(22664, 4411, 13), -- Slightly Strong M. Atk.
-(22664, 4412, 10), -- Slightly Weak P. Def.
-(22664, 4413, 13), -- Slightly Strong M. Def.
-(22664, 4414, 1), -- Heavy Armor Type
-(22664, 4415, 5), -- Blunt Weapons
-(22664, 4416, 11), -- Giants
+(22664, 4065, 9), -- NPC Heal
+(22664, 4116, 9), -- Resist M.Atk
+(22664, 4160, 9), -- NPC Aura Burn - Magic
+(22664, 4408, 10), -- HP Modifiers
+(22664, 4409, 1), -- MP Modifiers
+(22664, 4410, 11), -- P. Atk. Modifiers
+(22664, 4411, 13), -- M. Atk. Modifiers
+(22664, 4412, 10), -- P. Def. Modifiers
+(22664, 4413, 13), -- M. Def. Modifiers
+(22664, 4414, 1), -- Armor Type
+(22664, 4415, 5), -- Weapon Type
+(22664, 4416, 11), -- Races
 (22664, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 (22664, 5463, 1), -- Water Attacks
 (22664, 6144, 1), -- Ancient Beam
 -- Lesser Giant Elder
 (22665, 4036, 9), -- Poison
 (22665, 4046, 9), -- Sleep
-(22665, 4066, 9), -- Twister
-(22665, 4094, 9), -- Cancellation
-(22665, 4116, 9), -- Resist M. Atk.
-(22665, 4273, 5), -- Resist Daggers/Rapier Weapon
-(22665, 4408, 10), -- HP Increase (2x)
-(22665, 4409, 1), -- MP Increase (1x)
-(22665, 4410, 12), -- Slightly Strong P. Atk.
-(22665, 4411, 13), -- Slightly Strong M. Atk.
-(22665, 4412, 10), -- Slightly Weak P. Def.
-(22665, 4413, 13), -- Slightly Strong M. Def.
-(22665, 4414, 1), -- Heavy Armor Type
-(22665, 4415, 5), -- Blunt Weapons
-(22665, 4416, 11), -- Giants
+(22665, 4066, 9), -- NPC Twister
+(22665, 4094, 9), -- NPC Cancel Magic
+(22665, 4116, 9), -- Resist M.Atk
+(22665, 4273, 5), -- Resist Dagger
+(22665, 4408, 10), -- HP Modifiers
+(22665, 4409, 1), -- MP Modifiers
+(22665, 4410, 12), -- P. Atk. Modifiers
+(22665, 4411, 13), -- M. Atk. Modifiers
+(22665, 4412, 10), -- P. Def. Modifiers
+(22665, 4413, 13), -- M. Def. Modifiers
+(22665, 4414, 1), -- Armor Type
+(22665, 4415, 5), -- Weapon Type
+(22665, 4416, 11), -- Races
 (22665, 4438, 4), -- Greater Resist Sleep
 (22665, 4439, 4), -- Greater Resist Hold
 (22665, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 (22665, 5463, 1), -- Water Attacks
 -- Barif
-(22666, 4066, 9), -- Twister
-(22666, 4116, 9), -- Resist M. Atk.
-(22666, 4408, 10), -- HP Increase (2x)
-(22666, 4409, 1), -- MP Increase (1x)
-(22666, 4410, 10), -- Slightly Weak P. Atk.
-(22666, 4411, 10), -- Slightly Weak M. Atk.
-(22666, 4412, 12), -- Slightly Strong P. Def.
-(22666, 4413, 12), -- Slightly Strong M. Def.
-(22666, 4414, 1), -- Heavy Armor Type
-(22666, 4415, 5), -- Blunt Weapons
-(22666, 4416, 11), -- Giants
+(22666, 4066, 9), -- NPC Twister
+(22666, 4116, 9), -- Resist M.Atk
+(22666, 4408, 10), -- HP Modifiers
+(22666, 4409, 1), -- MP Modifiers
+(22666, 4410, 10), -- P. Atk. Modifiers
+(22666, 4411, 10), -- M. Atk. Modifiers
+(22666, 4412, 12), -- P. Def. Modifiers
+(22666, 4413, 12), -- M. Def. Modifiers
+(22666, 4414, 1), -- Armor Type
+(22666, 4415, 5), -- Weapon Type
+(22666, 4416, 11), -- Races
 (22666, 5463, 1), -- Water Attacks
 -- Barif's Pet
-(22667, 4032, 9), -- Power Strike
-(22667, 4116, 9), -- Resist M. Atk.
-(22667, 4408, 10), -- HP Increase (2x)
-(22667, 4409, 1), -- MP Increase (1x)
-(22667, 4410, 12), -- Slightly Strong P. Atk.
-(22667, 4411, 12), -- Slightly Strong M. Atk.
-(22667, 4412, 10), -- Slightly Weak P. Def.
-(22667, 4413, 10), -- Slightly Weak M. Def.
-(22667, 4414, 1), -- Heavy Armor Type
-(22667, 4415, 3), -- One-handed Sword
-(22667, 4416, 2), -- Magic Creatures
+(22667, 4032, 9), -- NPC Strike
+(22667, 4116, 9), -- Resist M.Atk
+(22667, 4408, 10), -- HP Modifiers
+(22667, 4409, 1), -- MP Modifiers
+(22667, 4410, 12), -- P. Atk. Modifiers
+(22667, 4411, 12), -- M. Atk. Modifiers
+(22667, 4412, 10), -- P. Def. Modifiers
+(22667, 4413, 10), -- M. Def. Modifiers
+(22667, 4414, 1), -- Armor Type
+(22667, 4415, 3), -- Weapon Type
+(22667, 4416, 2), -- Races
 (22667, 5463, 1), -- Water Attacks
 -- Gamlin
-(22668, 4116, 9), -- Resist M. Atk.
-(22668, 4408, 10), -- HP Increase (2x)
-(22668, 4409, 1), -- MP Increase (1x)
-(22668, 4410, 10), -- Slightly Weak P. Atk.
-(22668, 4411, 10), -- Slightly Weak M. Atk.
-(22668, 4412, 12), -- Slightly Strong P. Def.
-(22668, 4413, 12), -- Slightly Strong M. Def.
-(22668, 4414, 2), -- Standard Type
-(22668, 4415, 3), -- One-handed Sword
-(22668, 4416, 2), -- Magic Creatures
+(22668, 4116, 9), -- Resist M.Atk
+(22668, 4408, 10), -- HP Modifiers
+(22668, 4409, 1), -- MP Modifiers
+(22668, 4410, 10), -- P. Atk. Modifiers
+(22668, 4411, 10), -- M. Atk. Modifiers
+(22668, 4412, 12), -- P. Def. Modifiers
+(22668, 4413, 12), -- M. Def. Modifiers
+(22668, 4414, 2), -- Armor Type
+(22668, 4415, 3), -- Weapon Type
+(22668, 4416, 2), -- Races
 (22668, 5463, 1), -- Water Attacks
 -- Leogul
-(22669, 4037, 3), -- Weakness
-(22669, 4116, 9), -- Resist M. Atk.
-(22669, 4408, 10), -- HP Increase (2x)
-(22669, 4409, 1), -- MP Increase (1x)
-(22669, 4410, 10), -- Slightly Weak P. Atk.
-(22669, 4411, 10), -- Slightly Weak M. Atk.
-(22669, 4412, 12), -- Slightly Strong P. Def.
-(22669, 4413, 12), -- Slightly Strong M. Def.
-(22669, 4414, 1), -- Heavy Armor Type
-(22669, 4415, 3), -- One-handed Sword
-(22669, 4416, 2), -- Magic Creatures
+(22669, 4037, 3), -- Decrease P.Atk
+(22669, 4116, 9), -- Resist M.Atk
+(22669, 4408, 10), -- HP Modifiers
+(22669, 4409, 1), -- MP Modifiers
+(22669, 4410, 10), -- P. Atk. Modifiers
+(22669, 4411, 10), -- M. Atk. Modifiers
+(22669, 4412, 12), -- P. Def. Modifiers
+(22669, 4413, 12), -- M. Def. Modifiers
+(22669, 4414, 1), -- Armor Type
+(22669, 4415, 3), -- Weapon Type
+(22669, 4416, 2), -- Races
 (22669, 5463, 1), -- Water Attacks
 -- Cursed Lord
-(22670, 4072, 9), -- Stun
-(22670, 4085, 1), -- Critical Damage
+(22670, 4072, 9), -- Shock
+(22670, 4085, 1), -- Critical Power
 (22670, 4086, 1), -- Critical Chance
-(22670, 4116, 9), -- Resist M. Atk.
-(22670, 4408, 10), -- HP Increase (2x)
-(22670, 4409, 1), -- MP Increase (1x)
-(22670, 4410, 12), -- Slightly Strong P. Atk.
-(22670, 4411, 12), -- Slightly Strong M. Atk.
-(22670, 4412, 10), -- Slightly Weak P. Def.
-(22670, 4413, 14), -- Strong M. Def.
-(22670, 4414, 2), -- Standard Type
-(22670, 4415, 3), -- One-handed Sword
-(22670, 4416, 4), -- Animals
+(22670, 4116, 9), -- Resist M.Atk
+(22670, 4408, 10), -- HP Modifiers
+(22670, 4409, 1), -- MP Modifiers
+(22670, 4410, 12), -- P. Atk. Modifiers
+(22670, 4411, 12), -- M. Atk. Modifiers
+(22670, 4412, 10), -- P. Def. Modifiers
+(22670, 4413, 14), -- M. Def. Modifiers
+(22670, 4414, 2), -- Armor Type
+(22670, 4415, 3), -- Weapon Type
+(22670, 4416, 4), -- Races
 (22670, 4458, 3), -- Spear Weapon Weak Point
 (22670, 5463, 1), -- Water Attacks
 -- Cursed Guardian!
-(22671, 4039, 9), -- Mana Drain
-(22671, 4097, 9), -- Chant of Life
-(22671, 4116, 9), -- Resist M. Atk.
-(22671, 4408, 10), -- HP Increase (2x)
-(22671, 4409, 1), -- MP Increase (1x)
-(22671, 4410, 12), -- Slightly Strong P. Atk.
-(22671, 4411, 12), -- Slightly Strong M. Atk.
-(22671, 4412, 10), -- Slightly Weak P. Def.
-(22671, 4413, 10), -- Slightly Weak M. Def.
-(22671, 4414, 3), -- Light Armor Type
-(22671, 4415, 5), -- Blunt Weapons
-(22671, 4416, 3), -- Beasts
+(22671, 4039, 9), -- NPC MP Drain
+(22671, 4097, 9), -- NPC Chant of Life
+(22671, 4116, 9), -- Resist M.Atk
+(22671, 4408, 10), -- HP Modifiers
+(22671, 4409, 1), -- MP Modifiers
+(22671, 4410, 12), -- P. Atk. Modifiers
+(22671, 4411, 12), -- M. Atk. Modifiers
+(22671, 4412, 10), -- P. Def. Modifiers
+(22671, 4413, 10), -- M. Def. Modifiers
+(22671, 4414, 3), -- Armor Type
+(22671, 4415, 5), -- Weapon Type
+(22671, 4416, 3), -- Races
 (22671, 4458, 3), -- Spear Weapon Weak Point
 (22671, 5463, 1), -- Water Attacks
 -- Cursed Seer
-(22672, 4065, 9), -- Heal
-(22672, 4098, 9), -- Silence
-(22672, 4116, 9), -- Resist M. Atk.
-(22672, 4408, 10), -- HP Increase (2x)
-(22672, 4409, 1), -- MP Increase (1x)
-(22672, 4410, 10), -- Slightly Weak P. Atk.
-(22672, 4411, 10), -- Slightly Weak M. Atk.
-(22672, 4412, 12), -- Slightly Strong P. Def.
-(22672, 4413, 12), -- Slightly Strong M. Def.
-(22672, 4414, 1), -- Heavy Armor Type
-(22672, 4415, 1), -- Bare Hands
-(22672, 4416, 2), -- Magic Creatures
+(22672, 4065, 9), -- NPC Heal
+(22672, 4098, 9), -- Magic Skill Block
+(22672, 4116, 9), -- Resist M.Atk
+(22672, 4408, 10), -- HP Modifiers
+(22672, 4409, 1), -- MP Modifiers
+(22672, 4410, 10), -- P. Atk. Modifiers
+(22672, 4411, 10), -- M. Atk. Modifiers
+(22672, 4412, 12), -- P. Def. Modifiers
+(22672, 4413, 12), -- M. Def. Modifiers
+(22672, 4414, 1), -- Armor Type
+(22672, 4415, 1), -- Weapon Type
+(22672, 4416, 2), -- Races
 (22672, 4458, 3), -- Spear Weapon Weak Point
 (22672, 5463, 1), -- Water Attacks
 -- Hirokai
 (22673, 4088, 9), -- Bleed
-(22673, 4116, 9), -- Resist M. Atk.
-(22673, 4408, 10), -- HP Increase (2x)
-(22673, 4409, 1), -- MP Increase (1x)
-(22673, 4410, 12), -- Slightly Strong P. Atk.
-(22673, 4411, 12), -- Slightly Strong M. Atk.
-(22673, 4412, 10), -- Slightly Weak P. Def.
-(22673, 4413, 10), -- Slightly Weak M. Def.
-(22673, 4414, 3), -- Light Armor Type
-(22673, 4415, 1), -- Bare Hands
-(22673, 4416, 4), -- Animals
+(22673, 4116, 9), -- Resist M.Atk
+(22673, 4408, 10), -- HP Modifiers
+(22673, 4409, 1), -- MP Modifiers
+(22673, 4410, 12), -- P. Atk. Modifiers
+(22673, 4411, 12), -- M. Atk. Modifiers
+(22673, 4412, 10), -- P. Def. Modifiers
+(22673, 4413, 10), -- M. Def. Modifiers
+(22673, 4414, 3), -- Armor Type
+(22673, 4415, 1), -- Weapon Type
+(22673, 4416, 4), -- Races
 (22673, 4458, 3), -- Spear Weapon Weak Point
 (22673, 5463, 1), -- Water Attacks
 -- Imagro
-(22674, 4001, 9), -- Windstrike
-(22674, 4116, 9), -- Resist M. Atk.
-(22674, 4408, 10), -- HP Increase (2x)
-(22674, 4409, 1), -- MP Increase (1x)
-(22674, 4410, 12), -- Slightly Strong P. Atk.
-(22674, 4411, 12), -- Slightly Strong M. Atk.
-(22674, 4412, 10), -- Slightly Weak P. Def.
-(22674, 4413, 10), -- Slightly Weak M. Def.
-(22674, 4414, 1), -- Heavy Armor Type
-(22674, 4415, 1), -- Bare Hands
-(22674, 4416, 2), -- Magic Creatures
+(22674, 4001, 9), -- NPC Wind Strike
+(22674, 4116, 9), -- Resist M.Atk
+(22674, 4408, 10), -- HP Modifiers
+(22674, 4409, 1), -- MP Modifiers
+(22674, 4410, 12), -- P. Atk. Modifiers
+(22674, 4411, 12), -- M. Atk. Modifiers
+(22674, 4412, 10), -- P. Def. Modifiers
+(22674, 4413, 10), -- M. Def. Modifiers
+(22674, 4414, 1), -- Armor Type
+(22674, 4415, 1), -- Weapon Type
+(22674, 4416, 2), -- Races
 (22674, 4458, 3), -- Spear Weapon Weak Point
 (22674, 5463, 1), -- Water Attacks
 -- Palit
-(22675, 4034, 9), -- Ice Bolt
-(22675, 4116, 9), -- Resist M. Atk.
-(22675, 4408, 10), -- HP Increase (2x)
-(22675, 4409, 1), -- MP Increase (1x)
-(22675, 4410, 12), -- Slightly Strong P. Atk.
-(22675, 4411, 12), -- Slightly Strong M. Atk.
-(22675, 4412, 13), -- Slightly Strong P. Def.
-(22675, 4413, 11), -- Average M. Def.
-(22675, 4414, 2), -- Standard Type
-(22675, 4415, 3), -- One-handed Sword
-(22675, 4416, 2), -- Magic Creatures
+(22675, 4034, 9), -- Decrease Speed
+(22675, 4116, 9), -- Resist M.Atk
+(22675, 4408, 10), -- HP Modifiers
+(22675, 4409, 1), -- MP Modifiers
+(22675, 4410, 12), -- P. Atk. Modifiers
+(22675, 4411, 12), -- M. Atk. Modifiers
+(22675, 4412, 13), -- P. Def. Modifiers
+(22675, 4413, 11), -- M. Def. Modifiers
+(22675, 4414, 2), -- Armor Type
+(22675, 4415, 3), -- Weapon Type
+(22675, 4416, 2), -- Races
 (22675, 4458, 3), -- Spear Weapon Weak Point
 (22675, 5463, 1), -- Water Attacks
 -- Hamlet
-(22676, 4116, 9), -- Resist M. Atk.
-(22676, 4408, 10), -- HP Increase (2x)
-(22676, 4409, 1), -- MP Increase (1x)
-(22676, 4410, 12), -- Slightly Strong P. Atk.
-(22676, 4411, 12), -- Slightly Strong M. Atk.
-(22676, 4412, 10), -- Slightly Weak P. Def.
-(22676, 4413, 10), -- Slightly Weak M. Def.
-(22676, 4414, 2), -- Standard Type
-(22676, 4415, 3), -- One-handed Sword
-(22676, 4416, 2), -- Magic Creatures
+(22676, 4116, 9), -- Resist M.Atk
+(22676, 4408, 10), -- HP Modifiers
+(22676, 4409, 1), -- MP Modifiers
+(22676, 4410, 12), -- P. Atk. Modifiers
+(22676, 4411, 12), -- M. Atk. Modifiers
+(22676, 4412, 10), -- P. Def. Modifiers
+(22676, 4413, 10), -- M. Def. Modifiers
+(22676, 4414, 2), -- Armor Type
+(22676, 4415, 3), -- Weapon Type
+(22676, 4416, 2), -- Races
 (22676, 4458, 3), -- Spear Weapon Weak Point
 (22676, 5463, 1), -- Water Attacks
 -- Klennot
-(22677, 4073, 9), -- Stun
-(22677, 4116, 9), -- Resist M. Atk.
-(22677, 4408, 10), -- HP Increase (2x)
-(22677, 4409, 1), -- MP Increase (1x)
-(22677, 4410, 12), -- Slightly Strong P. Atk.
-(22677, 4411, 12), -- Slightly Strong M. Atk.
-(22677, 4412, 10), -- Slightly Weak P. Def.
-(22677, 4413, 10), -- Slightly Weak M. Def.
-(22677, 4414, 2), -- Standard Type
-(22677, 4415, 5), -- Blunt Weapons
-(22677, 4416, 11), -- Giants
+(22677, 4073, 9), -- Shock
+(22677, 4116, 9), -- Resist M.Atk
+(22677, 4408, 10), -- HP Modifiers
+(22677, 4409, 1), -- MP Modifiers
+(22677, 4410, 12), -- P. Atk. Modifiers
+(22677, 4411, 12), -- M. Atk. Modifiers
+(22677, 4412, 10), -- P. Def. Modifiers
+(22677, 4413, 10), -- M. Def. Modifiers
+(22677, 4414, 2), -- Armor Type
+(22677, 4415, 5), -- Weapon Type
+(22677, 4416, 11), -- Races
 (22677, 4458, 3), -- Spear Weapon Weak Point
 (22677, 5463, 1), -- Water Attacks
 -- Grave Robber Summoner
-(22678, 4116, 9), -- Resist M. Atk.
-(22678, 4254, 9), -- Prominence
-(22678, 4379, 4), -- Resist Spear Weapons
-(22678, 4408, 1), -- HP Increase (1x)
-(22678, 4409, 1), -- MP Increase (1x)
-(22678, 4410, 11), -- Average P. Atk.
-(22678, 4411, 9), -- Slightly Weak M. Atk.
-(22678, 4412, 11), -- Average P. Def.
-(22678, 4413, 14), -- Strong M. Def.
-(22678, 4414, 2), -- Standard Type
-(22678, 4415, 3), -- One-handed Sword
-(22678, 4416, 6), -- Humanoids
+(22678, 4116, 9), -- Resist M.Atk
+(22678, 4254, 9), -- NPC Prominence - Slow
+(22678, 4379, 4), -- Resist Pole Arm
+(22678, 4408, 1), -- HP Modifiers
+(22678, 4409, 1), -- MP Modifiers
+(22678, 4410, 11), -- P. Atk. Modifiers
+(22678, 4411, 9), -- M. Atk. Modifiers
+(22678, 4412, 11), -- P. Def. Modifiers
+(22678, 4413, 14), -- M. Def. Modifiers
+(22678, 4414, 2), -- Armor Type
+(22678, 4415, 3), -- Weapon Type
+(22678, 4416, 6), -- Races
 (22678, 5465, 1), -- Earth Attacks
 (22678, 5601, 11), -- Short-Range Physical Attack Resistance
 (22678, 5699, 7), -- Decrease P. Def
-(22678, 6145, 1), -- Earth Wyrm's Evil Aura
+(22678, 6145, 1), -- Earthworm's Evil Aura
 (22678, 6146, 1), -- Forfeiture of Will
 -- Grave Robber Magician
-(22679, 4116, 9), -- Resist M. Atk.
-(22679, 4254, 9), -- Prominence
-(22679, 4379, 4), -- Resist Spear Weapons
-(22679, 4408, 1), -- HP Increase (1x)
-(22679, 4409, 1), -- MP Increase (1x)
-(22679, 4410, 11), -- Average P. Atk.
-(22679, 4411, 9), -- Slightly Weak M. Atk.
-(22679, 4412, 11), -- Average P. Def.
-(22679, 4413, 14), -- Strong M. Def.
-(22679, 4414, 2), -- Standard Type
-(22679, 4415, 3), -- One-handed Sword
-(22679, 4416, 6), -- Humanoids
+(22679, 4116, 9), -- Resist M.Atk
+(22679, 4254, 9), -- NPC Prominence - Slow
+(22679, 4379, 4), -- Resist Pole Arm
+(22679, 4408, 1), -- HP Modifiers
+(22679, 4409, 1), -- MP Modifiers
+(22679, 4410, 11), -- P. Atk. Modifiers
+(22679, 4411, 9), -- M. Atk. Modifiers
+(22679, 4412, 11), -- P. Def. Modifiers
+(22679, 4413, 14), -- M. Def. Modifiers
+(22679, 4414, 2), -- Armor Type
+(22679, 4415, 3), -- Weapon Type
+(22679, 4416, 6), -- Races
 (22679, 5465, 1), -- Earth Attacks
 (22679, 5601, 11), -- Short-Range Physical Attack Resistance
 (22679, 5699, 7), -- Decrease P. Def
-(22679, 6145, 1), -- Earth Wyrm's Evil Aura
+(22679, 6145, 1), -- Earthworm's Evil Aura
 (22679, 6146, 1), -- Forfeiture of Will
 -- Grave Robber Worker
-(22680, 4379, 4), -- Resist Spear Weapons
-(22680, 4408, 1), -- HP Increase (1x)
-(22680, 4409, 1), -- MP Increase (1x)
-(22680, 4410, 13), -- Slightly Strong P. Atk.
-(22680, 4411, 11), -- Average M. Atk.
-(22680, 4412, 9), -- Slightly Weak P. Def.
-(22680, 4413, 14), -- Strong M. Def.
-(22680, 4414, 1), -- Heavy Armor Type
-(22680, 4415, 3), -- One-handed Sword
-(22680, 4416, 6), -- Humanoids
-(22680, 5082, 1), -- Whirlwind
+(22680, 4379, 4), -- Resist Pole Arm
+(22680, 4408, 1), -- HP Modifiers
+(22680, 4409, 1), -- MP Modifiers
+(22680, 4410, 13), -- P. Atk. Modifiers
+(22680, 4411, 11), -- M. Atk. Modifiers
+(22680, 4412, 9), -- P. Def. Modifiers
+(22680, 4413, 14), -- M. Def. Modifiers
+(22680, 4414, 1), -- Armor Type
+(22680, 4415, 3), -- Weapon Type
+(22680, 4416, 6), -- Races
+(22680, 5082, 1), -- NPC Spinning, Slashing Trick
 (22680, 5465, 1), -- Earth Attacks
 (22680, 5601, 11), -- Short-Range Physical Attack Resistance
-(22680, 6145, 1), -- Earth Wyrm's Evil Aura
+(22680, 6145, 1), -- Earthworm's Evil Aura
 -- Grave Robber Warrior
-(22681, 4379, 4), -- Resist Spear Weapons
-(22681, 4408, 1), -- HP Increase (1x)
-(22681, 4409, 1), -- MP Increase (1x)
-(22681, 4410, 13), -- Slightly Strong P. Atk.
-(22681, 4411, 11), -- Average M. Atk.
-(22681, 4412, 9), -- Slightly Weak P. Def.
-(22681, 4413, 14), -- Strong M. Def.
-(22681, 4414, 1), -- Heavy Armor Type
-(22681, 4415, 3), -- One-handed Sword
-(22681, 4416, 6), -- Humanoids
-(22681, 5082, 1), -- Whirlwind
+(22681, 4379, 4), -- Resist Pole Arm
+(22681, 4408, 1), -- HP Modifiers
+(22681, 4409, 1), -- MP Modifiers
+(22681, 4410, 13), -- P. Atk. Modifiers
+(22681, 4411, 11), -- M. Atk. Modifiers
+(22681, 4412, 9), -- P. Def. Modifiers
+(22681, 4413, 14), -- M. Def. Modifiers
+(22681, 4414, 1), -- Armor Type
+(22681, 4415, 3), -- Weapon Type
+(22681, 4416, 6), -- Races
+(22681, 5082, 1), -- NPC Spinning, Slashing Trick
 (22681, 5465, 1), -- Earth Attacks
 (22681, 5601, 11), -- Short-Range Physical Attack Resistance
-(22681, 6145, 1), -- Earth Wyrm's Evil Aura
+(22681, 6145, 1), -- Earthworm's Evil Aura
 (22681, 6168, 9), -- Shock
 -- Grave Robber Warrior of Light
-(22682, 4048, 2), -- Dash
-(22682, 4379, 4), -- Resist Spear Weapons
-(22682, 4408, 1), -- HP Increase (1x)
-(22682, 4409, 1), -- MP Increase (1x)
-(22682, 4410, 14), -- Strong P. Atk.
-(22682, 4411, 11), -- Average M. Atk.
-(22682, 4412, 8), -- Weak P. Def.
-(22682, 4413, 14), -- Strong M. Def.
-(22682, 4414, 1), -- Heavy Armor Type
-(22682, 4415, 3), -- One-handed Sword
-(22682, 4416, 6), -- Humanoids
+(22682, 4048, 2), -- NPC Dash
+(22682, 4379, 4), -- Resist Pole Arm
+(22682, 4408, 1), -- HP Modifiers
+(22682, 4409, 1), -- MP Modifiers
+(22682, 4410, 14), -- P. Atk. Modifiers
+(22682, 4411, 11), -- M. Atk. Modifiers
+(22682, 4412, 8), -- P. Def. Modifiers
+(22682, 4413, 14), -- M. Def. Modifiers
+(22682, 4414, 1), -- Armor Type
+(22682, 4415, 3), -- Weapon Type
+(22682, 4416, 6), -- Races
 (22682, 4643, 9), -- Decrease Speed
 (22682, 5465, 1), -- Earth Attacks
 (22682, 5601, 11), -- Short-Range Physical Attack Resistance
-(22682, 6145, 1), -- Earth Wyrm's Evil Aura
+(22682, 6145, 1), -- Earthworm's Evil Aura
 -- Servitor of Darkness
-(22683, 4116, 9), -- Resist M. Atk.
-(22683, 4379, 4), -- Resist Spear Weapons
-(22683, 4408, 1), -- HP Increase (1x)
-(22683, 4409, 1), -- MP Increase (1x)
-(22683, 4410, 14), -- Strong P. Atk.
-(22683, 4411, 11), -- Average M. Atk.
-(22683, 4412, 7), -- Weak P. Def.
-(22683, 4413, 14), -- Strong M. Def.
-(22683, 4414, 2), -- Standard Type
-(22683, 4415, 3), -- One-handed Sword
-(22683, 4416, 9), -- Demons
+(22683, 4116, 9), -- Resist M.Atk
+(22683, 4379, 4), -- Resist Pole Arm
+(22683, 4408, 1), -- HP Modifiers
+(22683, 4409, 1), -- MP Modifiers
+(22683, 4410, 14), -- P. Atk. Modifiers
+(22683, 4411, 11), -- M. Atk. Modifiers
+(22683, 4412, 7), -- P. Def. Modifiers
+(22683, 4413, 14), -- M. Def. Modifiers
+(22683, 4414, 2), -- Armor Type
+(22683, 4415, 3), -- Weapon Type
+(22683, 4416, 9), -- Races
 (22683, 4643, 9), -- Decrease Speed
 (22683, 5467, 1), -- Dark Attacks
 (22683, 5601, 11), -- Short-Range Physical Attack Resistance
 -- Servitor of Darkness
-(22684, 4116, 9), -- Resist M. Atk.
-(22684, 4379, 4), -- Resist Spear Weapons
-(22684, 4408, 1), -- HP Increase (1x)
-(22684, 4409, 1), -- MP Increase (1x)
-(22684, 4410, 14), -- Strong P. Atk.
-(22684, 4411, 11), -- Average M. Atk.
-(22684, 4412, 7), -- Weak P. Def.
-(22684, 4413, 14), -- Strong M. Def.
-(22684, 4414, 2), -- Standard Type
-(22684, 4415, 3), -- One-handed Sword
-(22684, 4416, 9), -- Demons
-(22684, 4573, 9), -- Sonic Blaster
+(22684, 4116, 9), -- Resist M.Atk
+(22684, 4379, 4), -- Resist Pole Arm
+(22684, 4408, 1), -- HP Modifiers
+(22684, 4409, 1), -- MP Modifiers
+(22684, 4410, 14), -- P. Atk. Modifiers
+(22684, 4411, 11), -- M. Atk. Modifiers
+(22684, 4412, 7), -- P. Def. Modifiers
+(22684, 4413, 14), -- M. Def. Modifiers
+(22684, 4414, 2), -- Armor Type
+(22684, 4415, 3), -- Weapon Type
+(22684, 4416, 9), -- Races
+(22684, 4573, 9), -- NPC Sonic Blaster
 (22684, 5467, 1), -- Dark Attacks
 (22684, 5601, 11), -- Short-Range Physical Attack Resistance
 -- Servitor of Darkness
-(22685, 4116, 9), -- Resist M. Atk.
-(22685, 4379, 4), -- Resist Spear Weapons
-(22685, 4408, 1), -- HP Increase (1x)
-(22685, 4409, 1), -- MP Increase (1x)
-(22685, 4410, 14), -- Strong P. Atk.
-(22685, 4411, 11), -- Average M. Atk.
-(22685, 4412, 7), -- Weak P. Def.
-(22685, 4413, 14), -- Strong M. Def.
-(22685, 4414, 2), -- Standard Type
-(22685, 4415, 3), -- One-handed Sword
-(22685, 4416, 9), -- Demons
-(22685, 4573, 9), -- Sonic Blaster
+(22685, 4116, 9), -- Resist M.Atk
+(22685, 4379, 4), -- Resist Pole Arm
+(22685, 4408, 1), -- HP Modifiers
+(22685, 4409, 1), -- MP Modifiers
+(22685, 4410, 14), -- P. Atk. Modifiers
+(22685, 4411, 11), -- M. Atk. Modifiers
+(22685, 4412, 7), -- P. Def. Modifiers
+(22685, 4413, 14), -- M. Def. Modifiers
+(22685, 4414, 2), -- Armor Type
+(22685, 4415, 3), -- Weapon Type
+(22685, 4416, 9), -- Races
+(22685, 4573, 9), -- NPC Sonic Blaster
 (22685, 5467, 1), -- Dark Attacks
 (22685, 5601, 11), -- Short-Range Physical Attack Resistance
 -- Servitor of Darkness
-(22686, 4116, 9), -- Resist M. Atk.
-(22686, 4379, 4), -- Resist Spear Weapons
-(22686, 4408, 1), -- HP Increase (1x)
-(22686, 4409, 1), -- MP Increase (1x)
-(22686, 4410, 14), -- Strong P. Atk.
-(22686, 4411, 11), -- Average M. Atk.
-(22686, 4412, 7), -- Weak P. Def.
-(22686, 4413, 14), -- Strong M. Def.
-(22686, 4414, 2), -- Standard Type
-(22686, 4415, 11), -- Spears
-(22686, 4416, 9), -- Demons
-(22686, 4573, 9), -- Sonic Blaster
+(22686, 4116, 9), -- Resist M.Atk
+(22686, 4379, 4), -- Resist Pole Arm
+(22686, 4408, 1), -- HP Modifiers
+(22686, 4409, 1), -- MP Modifiers
+(22686, 4410, 14), -- P. Atk. Modifiers
+(22686, 4411, 11), -- M. Atk. Modifiers
+(22686, 4412, 7), -- P. Def. Modifiers
+(22686, 4413, 14), -- M. Def. Modifiers
+(22686, 4414, 2), -- Armor Type
+(22686, 4415, 11), -- Weapon Type
+(22686, 4416, 9), -- Races
+(22686, 4573, 9), -- NPC Sonic Blaster
 (22686, 5467, 1), -- Dark Attacks
 (22686, 5601, 11), -- Short-Range Physical Attack Resistance
 -- Phantoms of the Mine
-(22687, 4032, 9), -- Power Strike
-(22687, 4034, 9), -- Ice Bolt
-(22687, 4116, 9), -- Resist M. Atk.
-(22687, 4379, 4), -- Resist Spear Weapons
-(22687, 4408, 1), -- HP Increase (1x)
-(22687, 4409, 1), -- MP Increase (1x)
-(22687, 4410, 13), -- Slightly Strong P. Atk.
-(22687, 4411, 11), -- Average M. Atk.
-(22687, 4412, 14), -- Strong P. Def.
-(22687, 4413, 14), -- Strong M. Def.
-(22687, 4414, 2), -- Standard Type
-(22687, 4415, 5), -- Blunt Weapons
-(22687, 4416, 9), -- Demons
+(22687, 4032, 9), -- NPC Strike
+(22687, 4034, 9), -- Decrease Speed
+(22687, 4116, 9), -- Resist M.Atk
+(22687, 4379, 4), -- Resist Pole Arm
+(22687, 4408, 1), -- HP Modifiers
+(22687, 4409, 1), -- MP Modifiers
+(22687, 4410, 13), -- P. Atk. Modifiers
+(22687, 4411, 11), -- M. Atk. Modifiers
+(22687, 4412, 14), -- P. Def. Modifiers
+(22687, 4413, 14), -- M. Def. Modifiers
+(22687, 4414, 2), -- Armor Type
+(22687, 4415, 5), -- Weapon Type
+(22687, 4416, 9), -- Races
 (22687, 5467, 1), -- Dark Attacks
 (22687, 5601, 11), -- Short-Range Physical Attack Resistance
 -- Evil Spirits of the Mine
-(22688, 4116, 9), -- Resist M. Atk.
-(22688, 4379, 4), -- Resist Spear Weapons
-(22688, 4408, 1), -- HP Increase (1x)
-(22688, 4409, 1), -- MP Increase (1x)
-(22688, 4410, 13), -- Slightly Strong P. Atk.
-(22688, 4411, 11), -- Average M. Atk.
-(22688, 4412, 14), -- Strong P. Def.
-(22688, 4413, 14), -- Strong M. Def.
-(22688, 4414, 2), -- Standard Type
-(22688, 4415, 1), -- Bare Hands
-(22688, 4416, 9), -- Demons
+(22688, 4116, 9), -- Resist M.Atk
+(22688, 4379, 4), -- Resist Pole Arm
+(22688, 4408, 1), -- HP Modifiers
+(22688, 4409, 1), -- MP Modifiers
+(22688, 4410, 13), -- P. Atk. Modifiers
+(22688, 4411, 11), -- M. Atk. Modifiers
+(22688, 4412, 14), -- P. Def. Modifiers
+(22688, 4413, 14), -- M. Def. Modifiers
+(22688, 4414, 2), -- Armor Type
+(22688, 4415, 1), -- Weapon Type
+(22688, 4416, 9), -- Races
 (22688, 4582, 9), -- Poison
-(22688, 5080, 1), -- Haste Might
+(22688, 5080, 1), -- NPC Mighty Haste
 (22688, 5467, 1), -- Dark Attacks
 (22688, 5601, 11), -- Short-Range Physical Attack Resistance
 -- Mine Bug
-(22689, 4116, 9), -- Resist M. Atk.
-(22689, 4379, 4), -- Resist Spear Weapons
-(22689, 4408, 8), -- HP Increase (1/4x)
-(22689, 4409, 1), -- MP Increase (1x)
-(22689, 4410, 14), -- Strong P. Atk.
-(22689, 4411, 11), -- Average M. Atk.
-(22689, 4412, 13), -- Slightly Strong P. Def.
-(22689, 4413, 14), -- Strong M. Def.
-(22689, 4414, 2), -- Standard Type
-(22689, 4415, 3), -- One-handed Sword
-(22689, 4416, 12), -- Bugs
+(22689, 4116, 9), -- Resist M.Atk
+(22689, 4379, 4), -- Resist Pole Arm
+(22689, 4408, 8), -- HP Modifiers
+(22689, 4409, 1), -- MP Modifiers
+(22689, 4410, 14), -- P. Atk. Modifiers
+(22689, 4411, 11), -- M. Atk. Modifiers
+(22689, 4412, 13), -- P. Def. Modifiers
+(22689, 4413, 14), -- M. Def. Modifiers
+(22689, 4414, 2), -- Armor Type
+(22689, 4415, 3), -- Weapon Type
+(22689, 4416, 12), -- Races
 (22689, 5465, 1), -- Earth Attacks
 (22689, 5601, 11), -- Short-Range Physical Attack Resistance
-(22689, 6145, 1), -- Earth Wyrm's Evil Aura
+(22689, 6145, 1), -- Earthworm's Evil Aura
 -- Earth Wyrm's Descendant
 (22690, 4035, 9), -- Poison
-(22690, 4379, 4), -- Resist Spear Weapons
-(22690, 4408, 1), -- HP Increase (1x)
-(22690, 4409, 1), -- MP Increase (1x)
-(22690, 4410, 13), -- Slightly Strong P. Atk.
-(22690, 4411, 11), -- Average M. Atk.
-(22690, 4412, 11), -- Average P. Def.
-(22690, 4413, 14), -- Strong M. Def.
-(22690, 4414, 2), -- Standard Type
-(22690, 4415, 3), -- One-handed Sword
-(22690, 4416, 12), -- Bugs
+(22690, 4379, 4), -- Resist Pole Arm
+(22690, 4408, 1), -- HP Modifiers
+(22690, 4409, 1), -- MP Modifiers
+(22690, 4410, 13), -- P. Atk. Modifiers
+(22690, 4411, 11), -- M. Atk. Modifiers
+(22690, 4412, 11), -- P. Def. Modifiers
+(22690, 4413, 14), -- M. Def. Modifiers
+(22690, 4414, 2), -- Armor Type
+(22690, 4415, 3), -- Weapon Type
+(22690, 4416, 12), -- Races
 (22690, 4582, 9), -- Poison
 (22690, 5465, 1), -- Earth Attacks
 (22690, 5601, 11), -- Short-Range Physical Attack Resistance
 -- Ragna Orc
-(22691, 4032, 9), -- Power Strike
-(22691, 4116, 9), -- Resist M. Atk.
-(22691, 4408, 1), -- HP Increase (1x)
-(22691, 4409, 1), -- MP Increase (1x)
-(22691, 4410, 13), -- Slightly Strong P. Atk.
-(22691, 4411, 11), -- Average M. Atk.
-(22691, 4412, 9), -- Slightly Weak P. Def.
-(22691, 4413, 16), -- Very Strong M. Def.
-(22691, 4414, 1), -- Heavy Armor Type
-(22691, 4415, 3), -- One-handed Sword
-(22691, 4416, 6), -- Humanoids
+(22691, 4032, 9), -- NPC Strike
+(22691, 4116, 9), -- Resist M.Atk
+(22691, 4408, 1), -- HP Modifiers
+(22691, 4409, 1), -- MP Modifiers
+(22691, 4410, 13), -- P. Atk. Modifiers
+(22691, 4411, 11), -- M. Atk. Modifiers
+(22691, 4412, 9), -- P. Def. Modifiers
+(22691, 4413, 16), -- M. Def. Modifiers
+(22691, 4414, 1), -- Armor Type
+(22691, 4415, 3), -- Weapon Type
+(22691, 4416, 6), -- Races
 (22691, 4444, 3), -- Higher Resist Bow/Crossbow Weapons
 (22691, 5467, 1), -- Dark Attacks
 (22691, 5620, 5), -- Short-Range Physical Attack Weakness
 -- Ragna Orc Warrior
-(22692, 4028, 2), -- Might
-(22692, 4032, 9), -- Power Strike
-(22692, 4116, 9), -- Resist M. Atk.
-(22692, 4408, 1), -- HP Increase (1x)
-(22692, 4409, 1), -- MP Increase (1x)
-(22692, 4410, 13), -- Slightly Strong P. Atk.
-(22692, 4411, 11), -- Average M. Atk.
-(22692, 4412, 9), -- Slightly Weak P. Def.
-(22692, 4413, 16), -- Very Strong M. Def.
-(22692, 4414, 1), -- Heavy Armor Type
-(22692, 4415, 3), -- One-handed Sword
-(22692, 4416, 6), -- Humanoids
+(22692, 4028, 2), -- NPC Might
+(22692, 4032, 9), -- NPC Strike
+(22692, 4116, 9), -- Resist M.Atk
+(22692, 4408, 1), -- HP Modifiers
+(22692, 4409, 1), -- MP Modifiers
+(22692, 4410, 13), -- P. Atk. Modifiers
+(22692, 4411, 11), -- M. Atk. Modifiers
+(22692, 4412, 9), -- P. Def. Modifiers
+(22692, 4413, 16), -- M. Def. Modifiers
+(22692, 4414, 1), -- Armor Type
+(22692, 4415, 3), -- Weapon Type
+(22692, 4416, 6), -- Races
 (22692, 4444, 3), -- Higher Resist Bow/Crossbow Weapons
 (22692, 5467, 1), -- Dark Attacks
 (22692, 5620, 5), -- Short-Range Physical Attack Weakness
 -- Ragna Orc Hero
-(22693, 4029, 2), -- Shield
-(22693, 4032, 9), -- Power Strike
-(22693, 4116, 9), -- Resist M. Atk.
-(22693, 4408, 1), -- HP Increase (1x)
-(22693, 4409, 1), -- MP Increase (1x)
-(22693, 4410, 13), -- Slightly Strong P. Atk.
-(22693, 4411, 11), -- Average M. Atk.
-(22693, 4412, 9), -- Slightly Weak P. Def.
-(22693, 4413, 16), -- Very Strong M. Def.
-(22693, 4414, 1), -- Heavy Armor Type
-(22693, 4415, 5), -- Blunt Weapons
-(22693, 4416, 6), -- Humanoids
+(22693, 4029, 2), -- NPC Shield
+(22693, 4032, 9), -- NPC Strike
+(22693, 4116, 9), -- Resist M.Atk
+(22693, 4408, 1), -- HP Modifiers
+(22693, 4409, 1), -- MP Modifiers
+(22693, 4410, 13), -- P. Atk. Modifiers
+(22693, 4411, 11), -- M. Atk. Modifiers
+(22693, 4412, 9), -- P. Def. Modifiers
+(22693, 4413, 16), -- M. Def. Modifiers
+(22693, 4414, 1), -- Armor Type
+(22693, 4415, 5), -- Weapon Type
+(22693, 4416, 6), -- Races
 (22693, 4444, 3), -- Higher Resist Bow/Crossbow Weapons
 (22693, 5467, 1), -- Dark Attacks
 (22693, 5620, 5), -- Short-Range Physical Attack Weakness
 (22693, 6168, 9), -- Shock
 -- Ragna Orc Commander
-(22694, 4032, 9), -- Power Strike
+(22694, 4032, 9), -- NPC Strike
 (22694, 4046, 9), -- Sleep
-(22694, 4116, 9), -- Resist M. Atk.
-(22694, 4408, 1), -- HP Increase (1x)
-(22694, 4409, 1), -- MP Increase (1x)
-(22694, 4410, 13), -- Slightly Strong P. Atk.
-(22694, 4411, 11), -- Average M. Atk.
-(22694, 4412, 9), -- Slightly Weak P. Def.
-(22694, 4413, 16), -- Very Strong M. Def.
-(22694, 4414, 2), -- Standard Type
-(22694, 4415, 5), -- Blunt Weapons
-(22694, 4416, 6), -- Humanoids
+(22694, 4116, 9), -- Resist M.Atk
+(22694, 4408, 1), -- HP Modifiers
+(22694, 4409, 1), -- MP Modifiers
+(22694, 4410, 13), -- P. Atk. Modifiers
+(22694, 4411, 11), -- M. Atk. Modifiers
+(22694, 4412, 9), -- P. Def. Modifiers
+(22694, 4413, 16), -- M. Def. Modifiers
+(22694, 4414, 2), -- Armor Type
+(22694, 4415, 5), -- Weapon Type
+(22694, 4416, 6), -- Races
 (22694, 4444, 3), -- Higher Resist Bow/Crossbow Weapons
 (22694, 4596, 9), -- Bleed
 (22694, 5467, 1), -- Dark Attacks
 (22694, 5620, 5), -- Short-Range Physical Attack Weakness
 -- Ragna Orc Healer
-(22695, 4065, 9), -- Heal
-(22695, 4116, 9), -- Resist M. Atk.
-(22695, 4408, 1), -- HP Increase (1x)
-(22695, 4409, 1), -- MP Increase (1x)
-(22695, 4410, 13), -- Slightly Strong P. Atk.
-(22695, 4411, 11), -- Average M. Atk.
-(22695, 4412, 9), -- Slightly Weak P. Def.
-(22695, 4413, 16), -- Very Strong M. Def.
-(22695, 4414, 2), -- Standard Type
-(22695, 4415, 5), -- Blunt Weapons
-(22695, 4416, 6), -- Humanoids
+(22695, 4065, 9), -- NPC Heal
+(22695, 4116, 9), -- Resist M.Atk
+(22695, 4408, 1), -- HP Modifiers
+(22695, 4409, 1), -- MP Modifiers
+(22695, 4410, 13), -- P. Atk. Modifiers
+(22695, 4411, 11), -- M. Atk. Modifiers
+(22695, 4412, 9), -- P. Def. Modifiers
+(22695, 4413, 16), -- M. Def. Modifiers
+(22695, 4414, 2), -- Armor Type
+(22695, 4415, 5), -- Weapon Type
+(22695, 4416, 6), -- Races
 (22695, 4444, 3), -- Higher Resist Bow/Crossbow Weapons
-(22695, 4613, 9), -- Clan Heal
+(22695, 4613, 9), -- NPC Clan Heal
 (22695, 5467, 1), -- Dark Attacks
 (22695, 5620, 5), -- Short-Range Physical Attack Weakness
 -- Ragna Orc Shaman
-(22696, 4116, 9), -- Resist M. Atk.
-(22696, 4158, 9), -- Prominence
-(22696, 4160, 9), -- Aura Burn
-(22696, 4408, 1), -- HP Increase (1x)
-(22696, 4409, 1), -- MP Increase (1x)
-(22696, 4410, 11), -- Average P. Atk.
-(22696, 4411, 13), -- Slightly Strong M. Atk.
-(22696, 4412, 9), -- Slightly Weak P. Def.
-(22696, 4413, 16), -- Very Strong M. Def.
-(22696, 4414, 2), -- Standard Type
-(22696, 4415, 5), -- Blunt Weapons
-(22696, 4416, 6), -- Humanoids
+(22696, 4116, 9), -- Resist M.Atk
+(22696, 4158, 9), -- NPC Prominence - Magic
+(22696, 4160, 9), -- NPC Aura Burn - Magic
+(22696, 4408, 1), -- HP Modifiers
+(22696, 4409, 1), -- MP Modifiers
+(22696, 4410, 11), -- P. Atk. Modifiers
+(22696, 4411, 13), -- M. Atk. Modifiers
+(22696, 4412, 9), -- P. Def. Modifiers
+(22696, 4413, 16), -- M. Def. Modifiers
+(22696, 4414, 2), -- Armor Type
+(22696, 4415, 5), -- Weapon Type
+(22696, 4416, 6), -- Races
 (22696, 4444, 3), -- Higher Resist Bow/Crossbow Weapons
-(22696, 4613, 9), -- Clan Heal
+(22696, 4613, 9), -- NPC Clan Heal
 (22696, 5467, 1), -- Dark Attacks
 (22696, 5620, 5), -- Short-Range Physical Attack Weakness
 -- Ragna Orc Priest
 (22697, 4046, 9), -- Sleep
-(22697, 4116, 9), -- Resist M. Atk.
-(22697, 4158, 9), -- Prominence
-(22697, 4160, 9), -- Aura Burn
-(22697, 4408, 1), -- HP Increase (1x)
-(22697, 4409, 1), -- MP Increase (1x)
-(22697, 4410, 11), -- Average P. Atk.
-(22697, 4411, 13), -- Slightly Strong M. Atk.
-(22697, 4412, 9), -- Slightly Weak P. Def.
-(22697, 4413, 16), -- Very Strong M. Def.
-(22697, 4414, 2), -- Standard Type
-(22697, 4415, 5), -- Blunt Weapons
-(22697, 4416, 6), -- Humanoids
+(22697, 4116, 9), -- Resist M.Atk
+(22697, 4158, 9), -- NPC Prominence - Magic
+(22697, 4160, 9), -- NPC Aura Burn - Magic
+(22697, 4408, 1), -- HP Modifiers
+(22697, 4409, 1), -- MP Modifiers
+(22697, 4410, 11), -- P. Atk. Modifiers
+(22697, 4411, 13), -- M. Atk. Modifiers
+(22697, 4412, 9), -- P. Def. Modifiers
+(22697, 4413, 16), -- M. Def. Modifiers
+(22697, 4414, 2), -- Armor Type
+(22697, 4415, 5), -- Weapon Type
+(22697, 4416, 6), -- Races
 (22697, 4444, 3), -- Higher Resist Bow/Crossbow Weapons
 (22697, 5467, 1), -- Dark Attacks
 (22697, 5620, 5), -- Short-Range Physical Attack Weakness
 -- Ragna Orc Archer
-(22698, 4040, 9), -- Power Shot
-(22698, 4116, 9), -- Resist M. Atk.
-(22698, 4408, 1), -- HP Increase (1x)
-(22698, 4409, 1), -- MP Increase (1x)
-(22698, 4410, 13), -- Slightly Strong P. Atk.
-(22698, 4411, 11), -- Average M. Atk.
-(22698, 4412, 9), -- Slightly Weak P. Def.
-(22698, 4413, 16), -- Very Strong M. Def.
-(22698, 4414, 3), -- Light Armor Type
-(22698, 4415, 9), -- Bows
-(22698, 4416, 6), -- Humanoids
+(22698, 4040, 9), -- NPC Bow Attack
+(22698, 4116, 9), -- Resist M.Atk
+(22698, 4408, 1), -- HP Modifiers
+(22698, 4409, 1), -- MP Modifiers
+(22698, 4410, 13), -- P. Atk. Modifiers
+(22698, 4411, 11), -- M. Atk. Modifiers
+(22698, 4412, 9), -- P. Def. Modifiers
+(22698, 4413, 16), -- M. Def. Modifiers
+(22698, 4414, 3), -- Armor Type
+(22698, 4415, 9), -- Weapon Type
+(22698, 4416, 6), -- Races
 (22698, 4444, 3), -- Higher Resist Bow/Crossbow Weapons
 (22698, 5467, 1), -- Dark Attacks
 (22698, 5620, 5), -- Short-Range Physical Attack Weakness
 -- Ragna Orc Sniper
-(22699, 4040, 9), -- Power Shot
-(22699, 4116, 9), -- Resist M. Atk.
-(22699, 4408, 1), -- HP Increase (1x)
-(22699, 4409, 1), -- MP Increase (1x)
-(22699, 4410, 13), -- Slightly Strong P. Atk.
-(22699, 4411, 11), -- Average M. Atk.
-(22699, 4412, 9), -- Slightly Weak P. Def.
-(22699, 4413, 16), -- Very Strong M. Def.
-(22699, 4415, 9), -- Bows
-(22699, 4416, 6), -- Humanoids
+(22699, 4040, 9), -- NPC Bow Attack
+(22699, 4116, 9), -- Resist M.Atk
+(22699, 4408, 1), -- HP Modifiers
+(22699, 4409, 1), -- MP Modifiers
+(22699, 4410, 13), -- P. Atk. Modifiers
+(22699, 4411, 11), -- M. Atk. Modifiers
+(22699, 4412, 9), -- P. Def. Modifiers
+(22699, 4413, 16), -- M. Def. Modifiers
+(22699, 4415, 9), -- Weapon Type
+(22699, 4416, 6), -- Races
 (22699, 4444, 3), -- Higher Resist Bow/Crossbow Weapons
 (22699, 5467, 1), -- Dark Attacks
 (22699, 5620, 5), -- Short-Range Physical Attack Weakness
 -- Varangka's Dre Vanul
-(22701, 4032, 9), -- Power Strike
-(22701, 4116, 9), -- Resist M. Atk.
-(22701, 4408, 1), -- HP Increase (1x)
-(22701, 4409, 1), -- MP Increase (1x)
-(22701, 4410, 13), -- Slightly Strong P. Atk.
-(22701, 4411, 11), -- Average M. Atk.
-(22701, 4412, 11), -- Average P. Def.
-(22701, 4413, 16), -- Very Strong M. Def.
-(22701, 4414, 2), -- Standard Type
-(22701, 4415, 3), -- One-handed Sword
-(22701, 4416, 9), -- Demons
+(22701, 4032, 9), -- NPC Strike
+(22701, 4116, 9), -- Resist M.Atk
+(22701, 4408, 1), -- HP Modifiers
+(22701, 4409, 1), -- MP Modifiers
+(22701, 4410, 13), -- P. Atk. Modifiers
+(22701, 4411, 11), -- M. Atk. Modifiers
+(22701, 4412, 11), -- P. Def. Modifiers
+(22701, 4413, 16), -- M. Def. Modifiers
+(22701, 4414, 2), -- Armor Type
+(22701, 4415, 3), -- Weapon Type
+(22701, 4416, 9), -- Races
 (22701, 4444, 3), -- Higher Resist Bow/Crossbow Weapons
 (22701, 5467, 1), -- Dark Attacks
 (22701, 5620, 5), -- Short-Range Physical Attack Weakness
 (22701, 6168, 9), -- Shock
 -- Varangka's Destroyer
 (22702, 4046, 9), -- Sleep
-(22702, 4116, 9), -- Resist M. Atk.
-(22702, 4158, 9), -- Prominence
-(22702, 4160, 9), -- Aura Burn
-(22702, 4408, 1), -- HP Increase (1x)
-(22702, 4409, 1), -- MP Increase (1x)
-(22702, 4410, 11), -- Average P. Atk.
-(22702, 4411, 13), -- Slightly Strong M. Atk.
-(22702, 4412, 11), -- Average P. Def.
-(22702, 4413, 16), -- Very Strong M. Def.
-(22702, 4414, 2), -- Standard Type
-(22702, 4415, 3), -- One-handed Sword
-(22702, 4416, 9), -- Demons
+(22702, 4116, 9), -- Resist M.Atk
+(22702, 4158, 9), -- NPC Prominence - Magic
+(22702, 4160, 9), -- NPC Aura Burn - Magic
+(22702, 4408, 1), -- HP Modifiers
+(22702, 4409, 1), -- MP Modifiers
+(22702, 4410, 11), -- P. Atk. Modifiers
+(22702, 4411, 13), -- M. Atk. Modifiers
+(22702, 4412, 11), -- P. Def. Modifiers
+(22702, 4413, 16), -- M. Def. Modifiers
+(22702, 4414, 2), -- Armor Type
+(22702, 4415, 3), -- Weapon Type
+(22702, 4416, 9), -- Races
 (22702, 4444, 3), -- Higher Resist Bow/Crossbow Weapons
 (22702, 5467, 1), -- Dark Attacks
 (22702, 5620, 5), -- Short-Range Physical Attack Weakness
 -- Contaminated Morek Warrior
-(22703, 4116, 9), -- Resist M. Atk.
-(22703, 4160, 10), -- Aura Burn
-(22703, 4408, 12), -- HP Increase (4x)
-(22703, 4409, 1), -- MP Increase (1x)
-(22703, 4410, 15), -- Strong P. Atk.
-(22703, 4411, 14), -- Strong M. Atk.
-(22703, 4412, 11), -- Average P. Def.
-(22703, 4413, 16), -- Very Strong M. Def.
-(22703, 4414, 2), -- Standard Type
-(22703, 4415, 3), -- One-handed Sword
-(22703, 4416, 6), -- Humanoids
+(22703, 4116, 9), -- Resist M.Atk
+(22703, 4160, 10), -- NPC Aura Burn - Magic
+(22703, 4408, 12), -- HP Modifiers
+(22703, 4409, 1), -- MP Modifiers
+(22703, 4410, 15), -- P. Atk. Modifiers
+(22703, 4411, 14), -- M. Atk. Modifiers
+(22703, 4412, 11), -- P. Def. Modifiers
+(22703, 4413, 16), -- M. Def. Modifiers
+(22703, 4414, 2), -- Armor Type
+(22703, 4415, 3), -- Weapon Type
+(22703, 4416, 6), -- Races
 (22703, 4444, 4), -- Higher Resist Bow/Crossbow Weapons
 (22703, 4458, 4), -- Spear Weapon Weak Point
 (22703, 5465, 1), -- Earth Attacks
 (22703, 5620, 9), -- Short-Range Physical Attack Weakness
 -- Contaminated Batur Warrior
-(22704, 4116, 9), -- Resist M. Atk.
-(22704, 4160, 10), -- Aura Burn
-(22704, 4408, 13), -- HP Increase (5x)
-(22704, 4409, 1), -- MP Increase (1x)
-(22704, 4410, 16), -- Very Strong P. Atk.
-(22704, 4411, 15), -- Strong M. Atk.
-(22704, 4412, 15), -- Strong P. Def.
-(22704, 4413, 16), -- Very Strong M. Def.
-(22704, 4414, 2), -- Standard Type
-(22704, 4415, 3), -- One-handed Sword
-(22704, 4416, 6), -- Humanoids
+(22704, 4116, 9), -- Resist M.Atk
+(22704, 4160, 10), -- NPC Aura Burn - Magic
+(22704, 4408, 13), -- HP Modifiers
+(22704, 4409, 1), -- MP Modifiers
+(22704, 4410, 16), -- P. Atk. Modifiers
+(22704, 4411, 15), -- M. Atk. Modifiers
+(22704, 4412, 15), -- P. Def. Modifiers
+(22704, 4413, 16), -- M. Def. Modifiers
+(22704, 4414, 2), -- Armor Type
+(22704, 4415, 3), -- Weapon Type
+(22704, 4416, 6), -- Races
 (22704, 4425, 4), -- Resist Blunt Weapons
 (22704, 4426, 4), -- Resist Dual-Sword Weapons
 (22704, 4427, 4), -- Resist Swords
-(22704, 4442, 4), -- Greater Resist fist Weapons
+(22704, 4442, 4), -- Greater Resist Hand-to-hand Weapons
 (22704, 4444, 4), -- Higher Resist Bow/Crossbow Weapons
-(22704, 4448, 4), -- Higher resist Daggers/Rapier Weapon
+(22704, 4448, 4), -- Greater Resist Daggers
 (22704, 4449, 4), -- Greater Resist Two-handed Weapons
 (22704, 4458, 4), -- Spear Weapon Weak Point
 (22704, 5465, 1), -- Earth Attacks
 (22704, 5620, 9), -- Short-Range Physical Attack Weakness
 -- Contaminated Batur Commander
-(22705, 4116, 9), -- Resist M. Atk.
-(22705, 4408, 13), -- HP Increase (5x)
-(22705, 4409, 1), -- MP Increase (1x)
-(22705, 4410, 17), -- Very Strong P. Atk.
-(22705, 4411, 16), -- Very Strong M. Atk.
-(22705, 4412, 15), -- Strong P. Def.
-(22705, 4413, 16), -- Very Strong M. Def.
-(22705, 4414, 2), -- Standard Type
-(22705, 4415, 3), -- One-handed Sword
-(22705, 4416, 6), -- Humanoids
+(22705, 4116, 9), -- Resist M.Atk
+(22705, 4408, 13), -- HP Modifiers
+(22705, 4409, 1), -- MP Modifiers
+(22705, 4410, 17), -- P. Atk. Modifiers
+(22705, 4411, 16), -- M. Atk. Modifiers
+(22705, 4412, 15), -- P. Def. Modifiers
+(22705, 4413, 16), -- M. Def. Modifiers
+(22705, 4414, 2), -- Armor Type
+(22705, 4415, 3), -- Weapon Type
+(22705, 4416, 6), -- Races
 (22705, 4425, 4), -- Resist Blunt Weapons
 (22705, 4426, 4), -- Resist Dual-Sword Weapons
 (22705, 4427, 4), -- Resist Swords
-(22705, 4442, 4), -- Greater Resist fist Weapons
+(22705, 4442, 4), -- Greater Resist Hand-to-hand Weapons
 (22705, 4444, 4), -- Higher Resist Bow/Crossbow Weapons
-(22705, 4448, 4), -- Higher resist Daggers/Rapier Weapon
+(22705, 4448, 4), -- Greater Resist Daggers
 (22705, 4449, 4), -- Greater Resist Two-handed Weapons
 (22705, 4458, 4), -- Spear Weapon Weak Point
-(22705, 4561, 10), -- Fire Burn
+(22705, 4561, 10), -- NPC Fire Burn - Magic
 (22705, 5465, 1), -- Earth Attacks
 (22705, 5620, 9), -- Short-Range Physical Attack Weakness
 -- Turka Follower's Ghost
-(22706, 4116, 9), -- Resist M. Atk.
-(22706, 4408, 14), -- HP Increase (6x)
-(22706, 4409, 1), -- MP Increase (1x)
-(22706, 4410, 18), -- Extremely Strong P. Atk.
-(22706, 4411, 17), -- Very Strong M. Atk.
-(22706, 4412, 15), -- Strong P. Def.
-(22706, 4413, 16), -- Very Strong M. Def.
-(22706, 4414, 1), -- Heavy Armor Type
-(22706, 4415, 3), -- One-handed Sword
-(22706, 4416, 1), -- Undead
+(22706, 4116, 9), -- Resist M.Atk
+(22706, 4408, 14), -- HP Modifiers
+(22706, 4409, 1), -- MP Modifiers
+(22706, 4410, 18), -- P. Atk. Modifiers
+(22706, 4411, 17), -- M. Atk. Modifiers
+(22706, 4412, 15), -- P. Def. Modifiers
+(22706, 4413, 16), -- M. Def. Modifiers
+(22706, 4414, 1), -- Armor Type
+(22706, 4415, 3), -- Weapon Type
+(22706, 4416, 1), -- Races
 (22706, 4425, 4), -- Resist Blunt Weapons
 (22706, 4426, 4), -- Resist Dual-Sword Weapons
 (22706, 4427, 4), -- Resist Swords
-(22706, 4442, 4), -- Greater Resist fist Weapons
+(22706, 4442, 4), -- Greater Resist Hand-to-hand Weapons
 (22706, 4444, 4), -- Higher Resist Bow/Crossbow Weapons
-(22706, 4448, 4), -- Higher resist Daggers/Rapier Weapon
+(22706, 4448, 4), -- Greater Resist Daggers
 (22706, 4449, 4), -- Greater Resist Two-handed Weapons
 (22706, 4458, 4), -- Spear Weapon Weak Point
-(22706, 4560, 10), -- Fire Burn
+(22706, 4560, 10), -- NPC Fire Burn
 (22706, 5467, 1), -- Dark Attacks
 (22706, 5620, 9), -- Short-Range Physical Attack Weakness
 -- Turka Commander's Ghost
-(22707, 4116, 9), -- Resist M. Atk.
-(22707, 4158, 10), -- Prominence
-(22707, 4408, 16), -- HP Increase (8x)
-(22707, 4409, 1), -- MP Increase (1x)
-(22707, 4410, 18), -- Extremely Strong P. Atk.
-(22707, 4411, 17), -- Very Strong M. Atk.
-(22707, 4412, 19), -- Extremely Strong P. Def.
-(22707, 4413, 16), -- Very Strong M. Def.
-(22707, 4414, 1), -- Heavy Armor Type
-(22707, 4415, 6), -- Blunt Weapons
-(22707, 4416, 1), -- Undead
+(22707, 4116, 9), -- Resist M.Atk
+(22707, 4158, 10), -- NPC Prominence - Magic
+(22707, 4408, 16), -- HP Modifiers
+(22707, 4409, 1), -- MP Modifiers
+(22707, 4410, 18), -- P. Atk. Modifiers
+(22707, 4411, 17), -- M. Atk. Modifiers
+(22707, 4412, 19), -- P. Def. Modifiers
+(22707, 4413, 16), -- M. Def. Modifiers
+(22707, 4414, 1), -- Armor Type
+(22707, 4415, 6), -- Weapon Type
+(22707, 4416, 1), -- Races
 (22707, 4425, 4), -- Resist Blunt Weapons
 (22707, 4426, 4), -- Resist Dual-Sword Weapons
 (22707, 4427, 4), -- Resist Swords
-(22707, 4442, 4), -- Greater Resist fist Weapons
+(22707, 4442, 4), -- Greater Resist Hand-to-hand Weapons
 (22707, 4444, 4), -- Higher Resist Bow/Crossbow Weapons
-(22707, 4448, 4), -- Higher resist Daggers/Rapier Weapon
+(22707, 4448, 4), -- Greater Resist Daggers
 (22707, 4449, 4), -- Greater Resist Two-handed Weapons
 (22707, 5467, 1), -- Dark Attacks
 (22707, 5620, 9), -- Short-Range Physical Attack Weakness
 -- Invader Warrior of Nightmare
-(22708, 4408, 13), -- HP Increase (5x)
-(22708, 4409, 1), -- MP Increase (1x)
-(22708, 4410, 11), -- Average P. Atk.
-(22708, 4411, 11), -- Average M. Atk.
-(22708, 4414, 3), -- Light Armor Type
-(22708, 4415, 3), -- One-handed Sword
-(22708, 4416, 1), -- Undead
-(22708, 5334, 4), -- Power Strike
+(22708, 4408, 13), -- HP Modifiers
+(22708, 4409, 1), -- MP Modifiers
+(22708, 4410, 11), -- P. Atk. Modifiers
+(22708, 4411, 11), -- M. Atk. Modifiers
+(22708, 4414, 3), -- Armor Type
+(22708, 4415, 3), -- Weapon Type
+(22708, 4416, 1), -- Races
+(22708, 5334, 4), -- NPC(party) - Physical Single Close Range Attack
 (22708, 5467, 1), -- Dark Attacks
 -- Invader Healer of Nightmare
-(22709, 4408, 13), -- HP Increase (5x)
-(22709, 4409, 1), -- MP Increase (1x)
-(22709, 4410, 11), -- Average P. Atk.
-(22709, 4411, 11), -- Average M. Atk.
-(22709, 4412, 11), -- Average P. Def.
-(22709, 4413, 11), -- Average M. Def.
-(22709, 4414, 3), -- Light Armor Type
-(22709, 4415, 17), -- fist weapons
-(22709, 4416, 1), -- Undead
-(22709, 4613, 10), -- Clan Heal
+(22709, 4408, 13), -- HP Modifiers
+(22709, 4409, 1), -- MP Modifiers
+(22709, 4410, 11), -- P. Atk. Modifiers
+(22709, 4411, 11), -- M. Atk. Modifiers
+(22709, 4412, 11), -- P. Def. Modifiers
+(22709, 4413, 11), -- M. Def. Modifiers
+(22709, 4414, 3), -- Armor Type
+(22709, 4415, 17), -- Weapon Type
+(22709, 4416, 1), -- Races
+(22709, 4613, 10), -- NPC Clan Heal
 (22709, 5467, 1), -- Dark Attacks
 -- Invader Guide of Nightmare
 (22710, 4046, 10), -- Sleep
-(22710, 4408, 11), -- HP Increase (3x)
-(22710, 4409, 1), -- MP Increase (1x)
-(22710, 4410, 11), -- Average P. Atk.
-(22710, 4411, 11), -- Average M. Atk.
-(22710, 4412, 11), -- Average P. Def.
-(22710, 4413, 11), -- Average M. Def.
-(22710, 4414, 3), -- Light Armor Type
-(22710, 4415, 17), -- fist weapons
-(22710, 4416, 1), -- Undead
-(22710, 5374, 4), -- Flame Strike
-(22710, 5375, 4), -- Blazing Circle
+(22710, 4408, 11), -- HP Modifiers
+(22710, 4409, 1), -- MP Modifiers
+(22710, 4410, 11), -- P. Atk. Modifiers
+(22710, 4411, 11), -- M. Atk. Modifiers
+(22710, 4412, 11), -- P. Def. Modifiers
+(22710, 4413, 11), -- M. Def. Modifiers
+(22710, 4414, 3), -- Armor Type
+(22710, 4415, 17), -- Weapon Type
+(22710, 4416, 1), -- Races
+(22710, 5374, 4), -- NPC(party) -Magic Range Long Range DD - Fire
+(22710, 5375, 4), -- NPC(party) -Magic Range Close Range DD - Fire
 (22710, 5467, 1), -- Dark Attacks
 -- Invader Destroyer of Nightmare
-(22711, 4408, 12), -- HP Increase (4x)
-(22711, 4409, 1), -- MP Increase (1x)
-(22711, 4410, 18), -- Extremely Strong P. Atk.
-(22711, 4411, 11), -- Average M. Atk.
-(22711, 4412, 11), -- Average P. Def.
-(22711, 4413, 11), -- Average M. Def.
-(22711, 4414, 3), -- Light Armor Type
-(22711, 4415, 1), -- Bare Hands
-(22711, 4416, 1), -- Undead
-(22711, 5334, 4), -- Power Strike
+(22711, 4408, 12), -- HP Modifiers
+(22711, 4409, 1), -- MP Modifiers
+(22711, 4410, 18), -- P. Atk. Modifiers
+(22711, 4411, 11), -- M. Atk. Modifiers
+(22711, 4412, 11), -- P. Def. Modifiers
+(22711, 4413, 11), -- M. Def. Modifiers
+(22711, 4414, 3), -- Armor Type
+(22711, 4415, 1), -- Weapon Type
+(22711, 4416, 1), -- Races
+(22711, 5334, 4), -- NPC(party) - Physical Single Close Range Attack
 (22711, 5467, 1), -- Dark Attacks
 -- Invader Assassin of Nightmare
-(22712, 4408, 11), -- HP Increase (3x)
-(22712, 4409, 1), -- MP Increase (1x)
-(22712, 4410, 14), -- Strong P. Atk.
-(22712, 4411, 11), -- Average M. Atk.
-(22712, 4412, 11), -- Average P. Def.
-(22712, 4413, 11), -- Average M. Def.
-(22712, 4414, 3), -- Light Armor Type
-(22712, 4415, 19), -- Dual-Sword Weapons
-(22712, 4416, 9), -- Demons
+(22712, 4408, 11), -- HP Modifiers
+(22712, 4409, 1), -- MP Modifiers
+(22712, 4410, 14), -- P. Atk. Modifiers
+(22712, 4411, 11), -- M. Atk. Modifiers
+(22712, 4412, 11), -- P. Def. Modifiers
+(22712, 4413, 11), -- M. Def. Modifiers
+(22712, 4414, 3), -- Armor Type
+(22712, 4415, 19), -- Weapon Type
+(22712, 4416, 9), -- Races
 (22712, 4579, 9), -- Bleed
 (22712, 5467, 1), -- Dark Attacks
 -- Invader Shaman of Nightmare
-(22713, 4408, 12), -- HP Increase (4x)
-(22713, 4409, 1), -- MP Increase (1x)
-(22713, 4410, 11), -- Average P. Atk.
-(22713, 4411, 11), -- Average M. Atk.
-(22713, 4412, 11), -- Average P. Def.
-(22713, 4413, 11), -- Average M. Def.
-(22713, 4414, 2), -- Standard Type
-(22713, 4415, 3), -- One-handed Sword
-(22713, 4416, 1), -- Undead
-(22713, 4608, 2), -- Berserker Spirit
-(22713, 5374, 4), -- Flame Strike
-(22713, 5375, 4), -- Blazing Circle
+(22713, 4408, 12), -- HP Modifiers
+(22713, 4409, 1), -- MP Modifiers
+(22713, 4410, 11), -- P. Atk. Modifiers
+(22713, 4411, 11), -- M. Atk. Modifiers
+(22713, 4412, 11), -- P. Def. Modifiers
+(22713, 4413, 11), -- M. Def. Modifiers
+(22713, 4414, 2), -- Armor Type
+(22713, 4415, 3), -- Weapon Type
+(22713, 4416, 1), -- Races
+(22713, 4608, 2), -- NPC Clan Buff - Berserk
+(22713, 5374, 4), -- NPC(party) -Magic Range Long Range DD - Fire
+(22713, 5375, 4), -- NPC(party) -Magic Range Close Range DD - Fire
 (22713, 5467, 1), -- Dark Attacks
 -- Invader Archer of Nightmare
-(22714, 4408, 11), -- HP Increase (3x)
-(22714, 4409, 1), -- MP Increase (1x)
-(22714, 4410, 11), -- Average P. Atk.
-(22714, 4411, 11), -- Average M. Atk.
-(22714, 4412, 11), -- Average P. Def.
-(22714, 4413, 11), -- Average M. Def.
-(22714, 4414, 2), -- Standard Type
-(22714, 4415, 9), -- Bows
-(22714, 4416, 1), -- Undead
-(22714, 5335, 4), -- Power Shot
+(22714, 4408, 11), -- HP Modifiers
+(22714, 4409, 1), -- MP Modifiers
+(22714, 4410, 11), -- P. Atk. Modifiers
+(22714, 4411, 11), -- M. Atk. Modifiers
+(22714, 4412, 11), -- P. Def. Modifiers
+(22714, 4413, 11), -- M. Def. Modifiers
+(22714, 4414, 2), -- Armor Type
+(22714, 4415, 9), -- Weapon Type
+(22714, 4416, 1), -- Races
+(22714, 5335, 4), -- NPC(party) - Physical Single Long Range Attack
 (22714, 5467, 1), -- Dark Attacks
 -- Invader Soldier of Nightmare
-(22715, 4408, 13), -- HP Increase (5x)
-(22715, 4409, 1), -- MP Increase (1x)
-(22715, 4410, 11), -- Average P. Atk.
-(22715, 4411, 11), -- Average M. Atk.
-(22715, 4412, 11), -- Average P. Def.
-(22715, 4413, 11), -- Average M. Def.
-(22715, 4414, 2), -- Standard Type
-(22715, 4415, 5), -- Blunt Weapons
-(22715, 4416, 1), -- Undead
-(22715, 5334, 4), -- Power Strike
+(22715, 4408, 13), -- HP Modifiers
+(22715, 4409, 1), -- MP Modifiers
+(22715, 4410, 11), -- P. Atk. Modifiers
+(22715, 4411, 11), -- M. Atk. Modifiers
+(22715, 4412, 11), -- P. Def. Modifiers
+(22715, 4413, 11), -- M. Def. Modifiers
+(22715, 4414, 2), -- Armor Type
+(22715, 4415, 5), -- Weapon Type
+(22715, 4416, 1), -- Races
+(22715, 5334, 4), -- NPC(party) - Physical Single Close Range Attack
 (22715, 5467, 1), -- Dark Attacks
 -- Invader Soldier of Nightmare
-(22716, 4408, 1), -- HP Increase (1x)
-(22716, 4409, 1), -- MP Increase (1x)
-(22716, 4410, 11), -- Average P. Atk.
-(22716, 4411, 11), -- Average M. Atk.
-(22716, 4412, 11), -- Average P. Def.
-(22716, 4413, 11), -- Average M. Def.
-(22716, 4414, 2), -- Standard Type
-(22716, 4415, 5), -- Blunt Weapons
-(22716, 4416, 1), -- Undead
-(22716, 5334, 4), -- Power Strike
+(22716, 4408, 1), -- HP Modifiers
+(22716, 4409, 1), -- MP Modifiers
+(22716, 4410, 11), -- P. Atk. Modifiers
+(22716, 4411, 11), -- M. Atk. Modifiers
+(22716, 4412, 11), -- P. Def. Modifiers
+(22716, 4413, 11), -- M. Def. Modifiers
+(22716, 4414, 2), -- Armor Type
+(22716, 4415, 5), -- Weapon Type
+(22716, 4416, 1), -- Races
+(22716, 5334, 4), -- NPC(party) - Physical Single Close Range Attack
 (22716, 5467, 1), -- Dark Attacks
 -- Invader Disciple of Nightmare
-(22717, 4408, 16), -- HP Increase (8x)
-(22717, 4409, 1), -- MP Increase (1x)
-(22717, 4410, 11), -- Average P. Atk.
-(22717, 4411, 11), -- Average M. Atk.
-(22717, 4412, 11), -- Average P. Def.
-(22717, 4413, 11), -- Average M. Def.
-(22717, 4414, 2), -- Standard Type
-(22717, 4415, 3), -- One-handed Sword
-(22717, 4416, 1), -- Undead
-(22717, 5334, 4), -- Power Strike
+(22717, 4408, 16), -- HP Modifiers
+(22717, 4409, 1), -- MP Modifiers
+(22717, 4410, 11), -- P. Atk. Modifiers
+(22717, 4411, 11), -- M. Atk. Modifiers
+(22717, 4412, 11), -- P. Def. Modifiers
+(22717, 4413, 11), -- M. Def. Modifiers
+(22717, 4414, 2), -- Armor Type
+(22717, 4415, 3), -- Weapon Type
+(22717, 4416, 1), -- Races
+(22717, 5334, 4), -- NPC(party) - Physical Single Close Range Attack
 (22717, 5467, 1), -- Dark Attacks
 -- Invader Elite Soldier of Nightmare
-(22718, 4408, 16), -- HP Increase (8x)
-(22718, 4409, 1), -- MP Increase (1x)
-(22718, 4410, 18), -- Extremely Strong P. Atk.
-(22718, 4411, 11), -- Average M. Atk.
-(22718, 4412, 14), -- Strong P. Def.
-(22718, 4413, 13), -- Slightly Strong M. Def.
-(22718, 4414, 1), -- Heavy Armor Type
-(22718, 4415, 3), -- One-handed Sword
-(22718, 4416, 1), -- Undead
-(22718, 5334, 4), -- Power Strike
+(22718, 4408, 16), -- HP Modifiers
+(22718, 4409, 1), -- MP Modifiers
+(22718, 4410, 18), -- P. Atk. Modifiers
+(22718, 4411, 11), -- M. Atk. Modifiers
+(22718, 4412, 14), -- P. Def. Modifiers
+(22718, 4413, 13), -- M. Def. Modifiers
+(22718, 4414, 1), -- Armor Type
+(22718, 4415, 3), -- Weapon Type
+(22718, 4416, 1), -- Races
+(22718, 5334, 4), -- NPC(party) - Physical Single Close Range Attack
 (22718, 5467, 1), -- Dark Attacks
 -- Nihil Invader Warrior
-(22719, 4408, 1), -- HP Increase (1x)
-(22719, 4409, 1), -- MP Increase (1x)
-(22719, 4410, 11), -- Average P. Atk.
-(22719, 4411, 11), -- Average M. Atk.
-(22719, 4412, 14), -- Strong P. Def.
-(22719, 4413, 15), -- Strong M. Def.
-(22719, 4414, 2), -- Standard Type
-(22719, 4415, 13), -- Two-handed Sword
-(22719, 4416, 9), -- Demons
-(22719, 5334, 4), -- Power Strike
+(22719, 4408, 1), -- HP Modifiers
+(22719, 4409, 1), -- MP Modifiers
+(22719, 4410, 11), -- P. Atk. Modifiers
+(22719, 4411, 11), -- M. Atk. Modifiers
+(22719, 4412, 14), -- P. Def. Modifiers
+(22719, 4413, 15), -- M. Def. Modifiers
+(22719, 4414, 2), -- Armor Type
+(22719, 4415, 13), -- Weapon Type
+(22719, 4416, 9), -- Races
+(22719, 5334, 4), -- NPC(party) - Physical Single Close Range Attack
 (22719, 5467, 1), -- Dark Attacks
 -- Nihil Invader Healer
-(22720, 4408, 1), -- HP Increase (1x)
-(22720, 4409, 1), -- MP Increase (1x)
-(22720, 4410, 11), -- Average P. Atk.
-(22720, 4411, 11), -- Average M. Atk.
-(22720, 4412, 11), -- Average P. Def.
-(22720, 4413, 11), -- Average M. Def.
-(22720, 4414, 2), -- Standard Type
-(22720, 4415, 3), -- One-handed Sword
-(22720, 4416, 9), -- Demons
-(22720, 4613, 10), -- Clan Heal
+(22720, 4408, 1), -- HP Modifiers
+(22720, 4409, 1), -- MP Modifiers
+(22720, 4410, 11), -- P. Atk. Modifiers
+(22720, 4411, 11), -- M. Atk. Modifiers
+(22720, 4412, 11), -- P. Def. Modifiers
+(22720, 4413, 11), -- M. Def. Modifiers
+(22720, 4414, 2), -- Armor Type
+(22720, 4415, 3), -- Weapon Type
+(22720, 4416, 9), -- Races
+(22720, 4613, 10), -- NPC Clan Heal
 (22720, 5467, 1), -- Dark Attacks
 -- Nihil Invader Guide
 (22721, 4046, 10), -- Sleep
-(22721, 4408, 1), -- HP Increase (1x)
-(22721, 4409, 1), -- MP Increase (1x)
-(22721, 4410, 11), -- Average P. Atk.
-(22721, 4411, 11), -- Average M. Atk.
-(22721, 4412, 11), -- Average P. Def.
-(22721, 4413, 11), -- Average M. Def.
-(22721, 4414, 2), -- Standard Type
-(22721, 4415, 3), -- One-handed Sword
-(22721, 4416, 9), -- Demons
-(22721, 5374, 4), -- Flame Strike
-(22721, 5375, 4), -- Blazing Circle
+(22721, 4408, 1), -- HP Modifiers
+(22721, 4409, 1), -- MP Modifiers
+(22721, 4410, 11), -- P. Atk. Modifiers
+(22721, 4411, 11), -- M. Atk. Modifiers
+(22721, 4412, 11), -- P. Def. Modifiers
+(22721, 4413, 11), -- M. Def. Modifiers
+(22721, 4414, 2), -- Armor Type
+(22721, 4415, 3), -- Weapon Type
+(22721, 4416, 9), -- Races
+(22721, 5374, 4), -- NPC(party) -Magic Range Long Range DD - Fire
+(22721, 5375, 4), -- NPC(party) -Magic Range Close Range DD - Fire
 (22721, 5467, 1), -- Dark Attacks
 -- Nihil Invader Destroyer
-(22722, 4408, 1), -- HP Increase (1x)
-(22722, 4409, 1), -- MP Increase (1x)
-(22722, 4411, 11), -- Average M. Atk.
-(22722, 4412, 11), -- Average P. Def.
-(22722, 4413, 11), -- Average M. Def.
-(22722, 4414, 2), -- Standard Type
-(22722, 4415, 19), -- Dual-Sword Weapons
-(22722, 4416, 1), -- Undead
-(22722, 5334, 4), -- Power Strike
+(22722, 4408, 1), -- HP Modifiers
+(22722, 4409, 1), -- MP Modifiers
+(22722, 4411, 11), -- M. Atk. Modifiers
+(22722, 4412, 11), -- P. Def. Modifiers
+(22722, 4413, 11), -- M. Def. Modifiers
+(22722, 4414, 2), -- Armor Type
+(22722, 4415, 19), -- Weapon Type
+(22722, 4416, 1), -- Races
+(22722, 5334, 4), -- NPC(party) - Physical Single Close Range Attack
 (22722, 5467, 1), -- Dark Attacks
 -- Nihil Invader Assassin
-(22723, 4408, 1), -- HP Increase (1x)
-(22723, 4409, 1), -- MP Increase (1x)
-(22723, 4410, 13), -- Slightly Strong P. Atk.
-(22723, 4411, 11), -- Average M. Atk.
-(22723, 4412, 11), -- Average P. Def.
-(22723, 4413, 11), -- Average M. Def.
-(22723, 4414, 3), -- Light Armor Type
-(22723, 4415, 3), -- One-handed Sword
-(22723, 4416, 1), -- Undead
+(22723, 4408, 1), -- HP Modifiers
+(22723, 4409, 1), -- MP Modifiers
+(22723, 4410, 13), -- P. Atk. Modifiers
+(22723, 4411, 11), -- M. Atk. Modifiers
+(22723, 4412, 11), -- P. Def. Modifiers
+(22723, 4413, 11), -- M. Def. Modifiers
+(22723, 4414, 3), -- Armor Type
+(22723, 4415, 3), -- Weapon Type
+(22723, 4416, 1), -- Races
 (22723, 4579, 9), -- Bleed
 (22723, 5467, 1), -- Dark Attacks
 -- Nihil Invader Shaman
-(22724, 4408, 1), -- HP Increase (1x)
-(22724, 4409, 1), -- MP Increase (1x)
-(22724, 4410, 11), -- Average P. Atk.
-(22724, 4411, 11), -- Average M. Atk.
-(22724, 4412, 11), -- Average P. Def.
-(22724, 4413, 11), -- Average M. Def.
-(22724, 4414, 2), -- Standard Type
-(22724, 4415, 3), -- One-handed Sword
-(22724, 4416, 9), -- Demons
-(22724, 4608, 2), -- Berserker Spirit
-(22724, 5374, 4), -- Flame Strike
-(22724, 5375, 4), -- Blazing Circle
+(22724, 4408, 1), -- HP Modifiers
+(22724, 4409, 1), -- MP Modifiers
+(22724, 4410, 11), -- P. Atk. Modifiers
+(22724, 4411, 11), -- M. Atk. Modifiers
+(22724, 4412, 11), -- P. Def. Modifiers
+(22724, 4413, 11), -- M. Def. Modifiers
+(22724, 4414, 2), -- Armor Type
+(22724, 4415, 3), -- Weapon Type
+(22724, 4416, 9), -- Races
+(22724, 4608, 2), -- NPC Clan Buff - Berserk
+(22724, 5374, 4), -- NPC(party) -Magic Range Long Range DD - Fire
+(22724, 5375, 4), -- NPC(party) -Magic Range Close Range DD - Fire
 (22724, 5467, 1), -- Dark Attacks
 -- Nihil Invader Archer
-(22725, 4408, 1), -- HP Increase (1x)
-(22725, 4409, 1), -- MP Increase (1x)
-(22725, 4410, 11), -- Average P. Atk.
-(22725, 4411, 11), -- Average M. Atk.
-(22725, 4412, 11), -- Average P. Def.
-(22725, 4413, 11), -- Average M. Def.
-(22725, 4414, 2), -- Standard Type
-(22725, 4415, 9), -- Bows
-(22725, 4416, 1), -- Undead
-(22725, 5335, 4), -- Power Shot
+(22725, 4408, 1), -- HP Modifiers
+(22725, 4409, 1), -- MP Modifiers
+(22725, 4410, 11), -- P. Atk. Modifiers
+(22725, 4411, 11), -- M. Atk. Modifiers
+(22725, 4412, 11), -- P. Def. Modifiers
+(22725, 4413, 11), -- M. Def. Modifiers
+(22725, 4414, 2), -- Armor Type
+(22725, 4415, 9), -- Weapon Type
+(22725, 4416, 1), -- Races
+(22725, 5335, 4), -- NPC(party) - Physical Single Long Range Attack
 (22725, 5467, 1), -- Dark Attacks
 -- Nihil Invader Soldier
-(22726, 4408, 1), -- HP Increase (1x)
-(22726, 4409, 1), -- MP Increase (1x)
-(22726, 4410, 11), -- Average P. Atk.
-(22726, 4411, 11), -- Average M. Atk.
-(22726, 4412, 11), -- Average P. Def.
-(22726, 4413, 11), -- Average M. Def.
-(22726, 4414, 2), -- Standard Type
-(22726, 4415, 3), -- One-handed Sword
-(22726, 4416, 1), -- Undead
-(22726, 5334, 4), -- Power Strike
+(22726, 4408, 1), -- HP Modifiers
+(22726, 4409, 1), -- MP Modifiers
+(22726, 4410, 11), -- P. Atk. Modifiers
+(22726, 4411, 11), -- M. Atk. Modifiers
+(22726, 4412, 11), -- P. Def. Modifiers
+(22726, 4413, 11), -- M. Def. Modifiers
+(22726, 4414, 2), -- Armor Type
+(22726, 4415, 3), -- Weapon Type
+(22726, 4416, 1), -- Races
+(22726, 5334, 4), -- NPC(party) - Physical Single Close Range Attack
 (22726, 5467, 1), -- Dark Attacks
 -- Nihil Invader Soldier
-(22727, 4408, 8), -- HP Increase (1/4x)
-(22727, 4409, 1), -- MP Increase (1x)
-(22727, 4410, 11), -- Average P. Atk.
-(22727, 4411, 11), -- Average M. Atk.
-(22727, 4412, 11), -- Average P. Def.
-(22727, 4413, 11), -- Average M. Def.
-(22727, 4414, 2), -- Standard Type
-(22727, 4415, 3), -- One-handed Sword
-(22727, 4416, 1), -- Undead
-(22727, 5334, 4), -- Power Strike
+(22727, 4408, 8), -- HP Modifiers
+(22727, 4409, 1), -- MP Modifiers
+(22727, 4410, 11), -- P. Atk. Modifiers
+(22727, 4411, 11), -- M. Atk. Modifiers
+(22727, 4412, 11), -- P. Def. Modifiers
+(22727, 4413, 11), -- M. Def. Modifiers
+(22727, 4414, 2), -- Armor Type
+(22727, 4415, 3), -- Weapon Type
+(22727, 4416, 1), -- Races
+(22727, 5334, 4), -- NPC(party) - Physical Single Close Range Attack
 (22727, 5467, 1), -- Dark Attacks
 -- Nihil Invader Disciple
-(22728, 4408, 1), -- HP Increase (1x)
-(22728, 4409, 1), -- MP Increase (1x)
-(22728, 4410, 11), -- Average P. Atk.
-(22728, 4411, 11), -- Average M. Atk.
-(22728, 4412, 11), -- Average P. Def.
-(22728, 4413, 11), -- Average M. Def.
-(22728, 4414, 2), -- Standard Type
-(22728, 4415, 3), -- One-handed Sword
-(22728, 4416, 9), -- Demons
-(22728, 5334, 4), -- Power Strike
+(22728, 4408, 1), -- HP Modifiers
+(22728, 4409, 1), -- MP Modifiers
+(22728, 4410, 11), -- P. Atk. Modifiers
+(22728, 4411, 11), -- M. Atk. Modifiers
+(22728, 4412, 11), -- P. Def. Modifiers
+(22728, 4413, 11), -- M. Def. Modifiers
+(22728, 4414, 2), -- Armor Type
+(22728, 4415, 3), -- Weapon Type
+(22728, 4416, 9), -- Races
+(22728, 5334, 4), -- NPC(party) - Physical Single Close Range Attack
 (22728, 5467, 1), -- Dark Attacks
 -- Nihil Invader Elite Soldier
-(22729, 4408, 10), -- HP Increase (2x)
-(22729, 4409, 1), -- MP Increase (1x)
-(22729, 4411, 11), -- Average M. Atk.
-(22729, 4412, 14), -- Strong P. Def.
-(22729, 4413, 13), -- Slightly Strong M. Def.
-(22729, 4414, 2), -- Standard Type
-(22729, 4415, 13), -- Two-handed Sword
-(22729, 4416, 9), -- Demons
-(22729, 5334, 4), -- Power Strike
+(22729, 4408, 10), -- HP Modifiers
+(22729, 4409, 1), -- MP Modifiers
+(22729, 4411, 11), -- M. Atk. Modifiers
+(22729, 4412, 14), -- P. Def. Modifiers
+(22729, 4413, 13), -- M. Def. Modifiers
+(22729, 4414, 2), -- Armor Type
+(22729, 4415, 13), -- Weapon Type
+(22729, 4416, 9), -- Races
+(22729, 5334, 4), -- NPC(party) - Physical Single Close Range Attack
 (22729, 5467, 1), -- Dark Attacks
 -- Mutant Warrior
-(22730, 4408, 1), -- HP Increase (1x)
-(22730, 4409, 1), -- MP Increase (1x)
-(22730, 4410, 11), -- Average P. Atk.
-(22730, 4411, 11), -- Average M. Atk.
-(22730, 4412, 16), -- Very Strong P. Def.
-(22730, 4413, 15), -- Strong M. Def.
-(22730, 4414, 2), -- Standard Type
-(22730, 4415, 13), -- Two-handed Sword
-(22730, 4416, 9), -- Demons
+(22730, 4408, 1), -- HP Modifiers
+(22730, 4409, 1), -- MP Modifiers
+(22730, 4410, 11), -- P. Atk. Modifiers
+(22730, 4411, 11), -- M. Atk. Modifiers
+(22730, 4412, 16), -- P. Def. Modifiers
+(22730, 4413, 15), -- M. Def. Modifiers
+(22730, 4414, 2), -- Armor Type
+(22730, 4415, 13), -- Weapon Type
+(22730, 4416, 9), -- Races
 (22730, 4441, 5), -- Greater Resist Mental Derangement
-(22730, 5334, 5), -- Power Strike
+(22730, 5334, 5), -- NPC(party) - Physical Single Close Range Attack
 (22730, 5467, 1), -- Dark Attacks
 -- Mutant Healer
-(22731, 4408, 1), -- HP Increase (1x)
-(22731, 4409, 1), -- MP Increase (1x)
-(22731, 4410, 11), -- Average P. Atk.
-(22731, 4411, 11), -- Average M. Atk.
-(22731, 4412, 11), -- Average P. Def.
-(22731, 4413, 11), -- Average M. Def.
-(22731, 4414, 2), -- Standard Type
-(22731, 4415, 3), -- One-handed Sword
-(22731, 4416, 9), -- Demons
-(22731, 4613, 10), -- Clan Heal
+(22731, 4408, 1), -- HP Modifiers
+(22731, 4409, 1), -- MP Modifiers
+(22731, 4410, 11), -- P. Atk. Modifiers
+(22731, 4411, 11), -- M. Atk. Modifiers
+(22731, 4412, 11), -- P. Def. Modifiers
+(22731, 4413, 11), -- M. Def. Modifiers
+(22731, 4414, 2), -- Armor Type
+(22731, 4415, 3), -- Weapon Type
+(22731, 4416, 9), -- Races
+(22731, 4613, 10), -- NPC Clan Heal
 (22731, 5467, 1), -- Dark Attacks
 -- Mutant Guide
 (22732, 4046, 10), -- Sleep
-(22732, 4408, 1), -- HP Increase (1x)
-(22732, 4409, 1), -- MP Increase (1x)
-(22732, 4410, 11), -- Average P. Atk.
-(22732, 4411, 11), -- Average M. Atk.
-(22732, 4412, 11), -- Average P. Def.
-(22732, 4413, 11), -- Average M. Def.
-(22732, 4414, 2), -- Standard Type
-(22732, 4415, 3), -- One-handed Sword
-(22732, 4416, 9), -- Demons
-(22732, 5374, 4), -- Flame Strike
-(22732, 5375, 4), -- Blazing Circle
+(22732, 4408, 1), -- HP Modifiers
+(22732, 4409, 1), -- MP Modifiers
+(22732, 4410, 11), -- P. Atk. Modifiers
+(22732, 4411, 11), -- M. Atk. Modifiers
+(22732, 4412, 11), -- P. Def. Modifiers
+(22732, 4413, 11), -- M. Def. Modifiers
+(22732, 4414, 2), -- Armor Type
+(22732, 4415, 3), -- Weapon Type
+(22732, 4416, 9), -- Races
+(22732, 5374, 4), -- NPC(party) -Magic Range Long Range DD - Fire
+(22732, 5375, 4), -- NPC(party) -Magic Range Close Range DD - Fire
 (22732, 5467, 1), -- Dark Attacks
 -- Mutant Destroyer
-(22733, 4408, 1), -- HP Increase (1x)
-(22733, 4409, 1), -- MP Increase (1x)
-(22733, 4410, 18), -- Extremely Strong P. Atk.
-(22733, 4411, 11), -- Average M. Atk.
-(22733, 4412, 11), -- Average P. Def.
-(22733, 4413, 11), -- Average M. Def.
-(22733, 4414, 2), -- Standard Type
-(22733, 4415, 19), -- Dual-Sword Weapons
-(22733, 4416, 1), -- Undead
-(22733, 5334, 5), -- Power Strike
+(22733, 4408, 1), -- HP Modifiers
+(22733, 4409, 1), -- MP Modifiers
+(22733, 4410, 18), -- P. Atk. Modifiers
+(22733, 4411, 11), -- M. Atk. Modifiers
+(22733, 4412, 11), -- P. Def. Modifiers
+(22733, 4413, 11), -- M. Def. Modifiers
+(22733, 4414, 2), -- Armor Type
+(22733, 4415, 19), -- Weapon Type
+(22733, 4416, 1), -- Races
+(22733, 5334, 5), -- NPC(party) - Physical Single Close Range Attack
 (22733, 5467, 1), -- Dark Attacks
 -- Mutant Assassin
-(22734, 4408, 1), -- HP Increase (1x)
-(22734, 4409, 1), -- MP Increase (1x)
-(22734, 4410, 14), -- Strong P. Atk.
-(22734, 4411, 11), -- Average M. Atk.
-(22734, 4412, 11), -- Average P. Def.
-(22734, 4413, 11), -- Average M. Def.
-(22734, 4414, 3), -- Light Armor Type
-(22734, 4415, 3), -- One-handed Sword
-(22734, 4416, 1), -- Undead
+(22734, 4408, 1), -- HP Modifiers
+(22734, 4409, 1), -- MP Modifiers
+(22734, 4410, 14), -- P. Atk. Modifiers
+(22734, 4411, 11), -- M. Atk. Modifiers
+(22734, 4412, 11), -- P. Def. Modifiers
+(22734, 4413, 11), -- M. Def. Modifiers
+(22734, 4414, 3), -- Armor Type
+(22734, 4415, 3), -- Weapon Type
+(22734, 4416, 1), -- Races
 (22734, 4579, 9), -- Bleed
 (22734, 5467, 1), -- Dark Attacks
 -- Mutant Shaman
-(22735, 4408, 1), -- HP Increase (1x)
-(22735, 4409, 1), -- MP Increase (1x)
-(22735, 4410, 11), -- Average P. Atk.
-(22735, 4411, 11), -- Average M. Atk.
-(22735, 4412, 11), -- Average P. Def.
-(22735, 4413, 11), -- Average M. Def.
-(22735, 4414, 2), -- Standard Type
-(22735, 4415, 3), -- One-handed Sword
-(22735, 4416, 9), -- Demons
-(22735, 4608, 2), -- Berserker Spirit
-(22735, 5374, 4), -- Flame Strike
-(22735, 5375, 4), -- Blazing Circle
+(22735, 4408, 1), -- HP Modifiers
+(22735, 4409, 1), -- MP Modifiers
+(22735, 4410, 11), -- P. Atk. Modifiers
+(22735, 4411, 11), -- M. Atk. Modifiers
+(22735, 4412, 11), -- P. Def. Modifiers
+(22735, 4413, 11), -- M. Def. Modifiers
+(22735, 4414, 2), -- Armor Type
+(22735, 4415, 3), -- Weapon Type
+(22735, 4416, 9), -- Races
+(22735, 4608, 2), -- NPC Clan Buff - Berserk
+(22735, 5374, 4), -- NPC(party) -Magic Range Long Range DD - Fire
+(22735, 5375, 4), -- NPC(party) -Magic Range Close Range DD - Fire
 (22735, 5467, 1), -- Dark Attacks
 -- Mutant Overlord
-(22736, 4408, 1), -- HP Increase (1x)
-(22736, 4409, 1), -- MP Increase (1x)
-(22736, 4410, 11), -- Average P. Atk.
-(22736, 4411, 11), -- Average M. Atk.
-(22736, 4412, 11), -- Average P. Def.
-(22736, 4413, 11), -- Average M. Def.
-(22736, 4414, 2), -- Standard Type
-(22736, 4415, 9), -- Bows
-(22736, 4416, 1), -- Undead
-(22736, 5335, 4), -- Power Shot
+(22736, 4408, 1), -- HP Modifiers
+(22736, 4409, 1), -- MP Modifiers
+(22736, 4410, 11), -- P. Atk. Modifiers
+(22736, 4411, 11), -- M. Atk. Modifiers
+(22736, 4412, 11), -- P. Def. Modifiers
+(22736, 4413, 11), -- M. Def. Modifiers
+(22736, 4414, 2), -- Armor Type
+(22736, 4415, 9), -- Weapon Type
+(22736, 4416, 1), -- Races
+(22736, 5335, 4), -- NPC(party) - Physical Single Long Range Attack
 (22736, 5467, 1), -- Dark Attacks
 -- Mutant Soldier
-(22737, 4408, 1), -- HP Increase (1x)
-(22737, 4409, 1), -- MP Increase (1x)
-(22737, 4410, 11), -- Average P. Atk.
-(22737, 4411, 11), -- Average M. Atk.
-(22737, 4412, 11), -- Average P. Def.
-(22737, 4413, 11), -- Average M. Def.
-(22737, 4414, 2), -- Standard Type
-(22737, 4415, 3), -- One-handed Sword
-(22737, 4416, 1), -- Undead
-(22737, 5334, 5), -- Power Strike
+(22737, 4408, 1), -- HP Modifiers
+(22737, 4409, 1), -- MP Modifiers
+(22737, 4410, 11), -- P. Atk. Modifiers
+(22737, 4411, 11), -- M. Atk. Modifiers
+(22737, 4412, 11), -- P. Def. Modifiers
+(22737, 4413, 11), -- M. Def. Modifiers
+(22737, 4414, 2), -- Armor Type
+(22737, 4415, 3), -- Weapon Type
+(22737, 4416, 1), -- Races
+(22737, 5334, 5), -- NPC(party) - Physical Single Close Range Attack
 (22737, 5467, 1), -- Dark Attacks
 -- Mutant Soldier
-(22738, 4408, 8), -- HP Increase (1/4x)
-(22738, 4409, 1), -- MP Increase (1x)
-(22738, 4410, 11), -- Average P. Atk.
-(22738, 4411, 11), -- Average M. Atk.
-(22738, 4412, 11), -- Average P. Def.
-(22738, 4413, 11), -- Average M. Def.
-(22738, 4414, 2), -- Standard Type
-(22738, 4415, 3), -- One-handed Sword
-(22738, 4416, 1), -- Undead
-(22738, 5334, 5), -- Power Strike
+(22738, 4408, 8), -- HP Modifiers
+(22738, 4409, 1), -- MP Modifiers
+(22738, 4410, 11), -- P. Atk. Modifiers
+(22738, 4411, 11), -- M. Atk. Modifiers
+(22738, 4412, 11), -- P. Def. Modifiers
+(22738, 4413, 11), -- M. Def. Modifiers
+(22738, 4414, 2), -- Armor Type
+(22738, 4415, 3), -- Weapon Type
+(22738, 4416, 1), -- Races
+(22738, 5334, 5), -- NPC(party) - Physical Single Close Range Attack
 (22738, 5467, 1), -- Dark Attacks
 -- Mutant Disciple
-(22739, 4408, 10), -- HP Increase (2x)
-(22739, 4409, 1), -- MP Increase (1x)
-(22739, 4410, 11), -- Average P. Atk.
-(22739, 4411, 11), -- Average M. Atk.
-(22739, 4412, 11), -- Average P. Def.
-(22739, 4413, 11), -- Average M. Def.
-(22739, 4414, 2), -- Standard Type
-(22739, 4415, 19), -- Dual-Sword Weapons
-(22739, 4416, 9), -- Demons
-(22739, 5334, 5), -- Power Strike
+(22739, 4408, 10), -- HP Modifiers
+(22739, 4409, 1), -- MP Modifiers
+(22739, 4410, 11), -- P. Atk. Modifiers
+(22739, 4411, 11), -- M. Atk. Modifiers
+(22739, 4412, 11), -- P. Def. Modifiers
+(22739, 4413, 11), -- M. Def. Modifiers
+(22739, 4414, 2), -- Armor Type
+(22739, 4415, 19), -- Weapon Type
+(22739, 4416, 9), -- Races
+(22739, 5334, 5), -- NPC(party) - Physical Single Close Range Attack
 (22739, 5467, 1), -- Dark Attacks
 -- Mutant Elite Soldier
-(22740, 4408, 10), -- HP Increase (2x)
-(22740, 4409, 1), -- MP Increase (1x)
-(22740, 4410, 18), -- Extremely Strong P. Atk.
-(22740, 4411, 11), -- Average M. Atk.
-(22740, 4412, 14), -- Strong P. Def.
-(22740, 4413, 13), -- Slightly Strong M. Def.
-(22740, 4414, 2), -- Standard Type
-(22740, 4415, 3), -- One-handed Sword
-(22740, 4416, 9), -- Demons
-(22740, 5334, 5), -- Power Strike
+(22740, 4408, 10), -- HP Modifiers
+(22740, 4409, 1), -- MP Modifiers
+(22740, 4410, 18), -- P. Atk. Modifiers
+(22740, 4411, 11), -- M. Atk. Modifiers
+(22740, 4412, 14), -- P. Def. Modifiers
+(22740, 4413, 13), -- M. Def. Modifiers
+(22740, 4414, 2), -- Armor Type
+(22740, 4415, 3), -- Weapon Type
+(22740, 4416, 9), -- Races
+(22740, 5334, 5), -- NPC(party) - Physical Single Close Range Attack
 (22740, 5467, 1), -- Dark Attacks
 -- Grave Robber Warrior
-(22741, 4408, 1), -- HP Increase (1x)
-(22741, 4409, 1), -- MP Increase (1x)
-(22741, 4410, 13), -- Slightly Strong P. Atk.
-(22741, 4411, 11), -- Average M. Atk.
-(22741, 4412, 9), -- Slightly Weak P. Def.
-(22741, 4413, 11), -- Average M. Def.
-(22741, 4414, 3), -- Light Armor Type
-(22741, 4415, 7), -- Daggers
-(22741, 4416, 6), -- Humanoids
+(22741, 4408, 1), -- HP Modifiers
+(22741, 4409, 1), -- MP Modifiers
+(22741, 4410, 13), -- P. Atk. Modifiers
+(22741, 4411, 11), -- M. Atk. Modifiers
+(22741, 4412, 9), -- P. Def. Modifiers
+(22741, 4413, 11), -- M. Def. Modifiers
+(22741, 4414, 3), -- Armor Type
+(22741, 4415, 7), -- Weapon Type
+(22741, 4416, 6), -- Races
 (22741, 5465, 1), -- Earth Attacks
 -- Ornithomimus
-(22742, 4071, 5), -- Resist Bow/Crossbow Weapons
+(22742, 4071, 5), -- Resist Archery
 (22742, 4084, 9), -- Resist Physical Attack
-(22742, 4285, 5), -- Resist Sleep Attacks
-(22742, 4408, 8), -- HP Increase (1/4x)
-(22742, 4409, 1), -- MP Increase (1x)
-(22742, 4410, 16), -- Very Strong P. Atk.
-(22742, 4411, 11), -- Average M. Atk.
-(22742, 4412, 14), -- Strong P. Def.
-(22742, 4413, 7), -- Weak M. Def.
-(22742, 4414, 3), -- Light Armor Type
-(22742, 4415, 5), -- Blunt Weapons
-(22742, 4416, 3), -- Beasts
-(22742, 4417, 4), -- Beasts
+(22742, 4285, 5), -- Resist Sleep
+(22742, 4408, 8), -- HP Modifiers
+(22742, 4409, 1), -- MP Modifiers
+(22742, 4410, 16), -- P. Atk. Modifiers
+(22742, 4411, 11), -- M. Atk. Modifiers
+(22742, 4412, 14), -- P. Def. Modifiers
+(22742, 4413, 7), -- M. Def. Modifiers
+(22742, 4414, 3), -- Armor Type
+(22742, 4415, 5), -- Weapon Type
+(22742, 4416, 3), -- Races
+(22742, 4417, 4), -- Race Types
 (22742, 4439, 2), -- Greater Resist Hold
 (22742, 4445, 1), -- Greater Resist Spear Weapons
-(22742, 5080, 1), -- Haste Might
+(22742, 5080, 1), -- NPC Mighty Haste
 (22742, 5083, 1), -- Stun
-(22742, 5084, 1), -- Blinding Blow
+(22742, 5084, 1), -- NPC Blinding Blow
 -- Deinonychus
-(22743, 4071, 5), -- Resist Bow/Crossbow Weapons
+(22743, 4071, 5), -- Resist Archery
 (22743, 4084, 9), -- Resist Physical Attack
-(22743, 4285, 5), -- Resist Sleep Attacks
-(22743, 4408, 8), -- HP Increase (1/4x)
-(22743, 4409, 1), -- MP Increase (1x)
-(22743, 4410, 14), -- Strong P. Atk.
-(22743, 4411, 11), -- Average M. Atk.
-(22743, 4412, 14), -- Strong P. Def.
-(22743, 4413, 7), -- Weak M. Def.
-(22743, 4414, 3), -- Light Armor Type
-(22743, 4415, 5), -- Blunt Weapons
-(22743, 4416, 3), -- Beasts
-(22743, 4417, 4), -- Beasts
+(22743, 4285, 5), -- Resist Sleep
+(22743, 4408, 8), -- HP Modifiers
+(22743, 4409, 1), -- MP Modifiers
+(22743, 4410, 14), -- P. Atk. Modifiers
+(22743, 4411, 11), -- M. Atk. Modifiers
+(22743, 4412, 14), -- P. Def. Modifiers
+(22743, 4413, 7), -- M. Def. Modifiers
+(22743, 4414, 3), -- Armor Type
+(22743, 4415, 5), -- Weapon Type
+(22743, 4416, 3), -- Races
+(22743, 4417, 4), -- Race Types
 (22743, 4439, 2), -- Greater Resist Hold
 (22743, 4445, 1), -- Greater Resist Spear Weapons
-(22743, 5079, 1), -- Haste Focus
-(22743, 5082, 1), -- Whirlwind
-(22743, 5084, 1), -- Blinding Blow
+(22743, 5079, 1), -- NPC Focused Haste
+(22743, 5082, 1), -- NPC Spinning, Slashing Trick
+(22743, 5084, 1), -- NPC Blinding Blow
 -- Ornithomimus
-(22744, 4071, 5), -- Resist Bow/Crossbow Weapons
+(22744, 4071, 5), -- Resist Archery
 (22744, 4084, 9), -- Resist Physical Attack
-(22744, 4285, 5), -- Resist Sleep Attacks
-(22744, 4408, 8), -- HP Increase (1/4x)
-(22744, 4409, 1), -- MP Increase (1x)
-(22744, 4410, 16), -- Very Strong P. Atk.
-(22744, 4411, 11), -- Average M. Atk.
-(22744, 4412, 14), -- Strong P. Def.
-(22744, 4413, 7), -- Weak M. Def.
-(22744, 4414, 2), -- Standard Type
-(22744, 4415, 5), -- Blunt Weapons
-(22744, 4416, 3), -- Beasts
-(22744, 4417, 4), -- Beasts
+(22744, 4285, 5), -- Resist Sleep
+(22744, 4408, 8), -- HP Modifiers
+(22744, 4409, 1), -- MP Modifiers
+(22744, 4410, 16), -- P. Atk. Modifiers
+(22744, 4411, 11), -- M. Atk. Modifiers
+(22744, 4412, 14), -- P. Def. Modifiers
+(22744, 4413, 7), -- M. Def. Modifiers
+(22744, 4414, 2), -- Armor Type
+(22744, 4415, 5), -- Weapon Type
+(22744, 4416, 3), -- Races
+(22744, 4417, 4), -- Race Types
 (22744, 4439, 2), -- Greater Resist Hold
 (22744, 4445, 1), -- Greater Resist Spear Weapons
-(22744, 5084, 1), -- Blinding Blow
+(22744, 5084, 1), -- NPC Blinding Blow
 -- Deinonychus
-(22745, 4032, 10), -- Power Strike
-(22745, 4071, 3), -- Resist Bow/Crossbow Weapons
+(22745, 4032, 10), -- NPC Strike
+(22745, 4071, 3), -- Resist Archery
 (22745, 4084, 9), -- Resist Physical Attack
-(22745, 4285, 5), -- Resist Sleep Attacks
-(22745, 4287, 5), -- Resist Hold Attacks
-(22745, 4408, 8), -- HP Increase (1/4x)
-(22745, 4409, 1), -- MP Increase (1x)
-(22745, 4410, 14), -- Strong P. Atk.
-(22745, 4411, 11), -- Average M. Atk.
-(22745, 4412, 14), -- Strong P. Def.
-(22745, 4413, 7), -- Weak M. Def.
-(22745, 4414, 2), -- Standard Type
-(22745, 4415, 5), -- Blunt Weapons
-(22745, 4416, 3), -- Beasts
-(22745, 4417, 4), -- Beasts
+(22745, 4285, 5), -- Resist Sleep
+(22745, 4287, 5), -- Resist Hold
+(22745, 4408, 8), -- HP Modifiers
+(22745, 4409, 1), -- MP Modifiers
+(22745, 4410, 14), -- P. Atk. Modifiers
+(22745, 4411, 11), -- M. Atk. Modifiers
+(22745, 4412, 14), -- P. Def. Modifiers
+(22745, 4413, 7), -- M. Def. Modifiers
+(22745, 4414, 2), -- Armor Type
+(22745, 4415, 5), -- Weapon Type
+(22745, 4416, 3), -- Races
+(22745, 4417, 4), -- Race Types
 (22745, 4445, 1), -- Greater Resist Spear Weapons
 -- Bgurent
-(22746, 4388, 4), -- Resist Paralysis Attacks
-(22746, 4408, 10), -- HP Increase (2x)
-(22746, 4409, 1), -- MP Increase (1x)
-(22746, 4410, 17), -- Very Strong P. Atk.
-(22746, 4411, 16), -- Very Strong M. Atk.
-(22746, 4412, 15), -- Strong P. Def.
-(22746, 4413, 4), -- Extremely Weak M. Def.
-(22746, 4414, 2), -- Standard Type
-(22746, 4415, 3), -- One-handed Sword
-(22746, 4416, 3), -- Beasts
+(22746, 4388, 4), -- Resist Paralysis
+(22746, 4408, 10), -- HP Modifiers
+(22746, 4409, 1), -- MP Modifiers
+(22746, 4410, 17), -- P. Atk. Modifiers
+(22746, 4411, 16), -- M. Atk. Modifiers
+(22746, 4412, 15), -- P. Def. Modifiers
+(22746, 4413, 4), -- M. Def. Modifiers
+(22746, 4414, 2), -- Armor Type
+(22746, 4415, 3), -- Weapon Type
+(22746, 4416, 3), -- Races
 (22746, 4438, 4), -- Greater Resist Sleep
 (22746, 4439, 4), -- Greater Resist Hold
 (22746, 4441, 5), -- Greater Resist Mental Derangement
@@ -58436,16 +58436,16 @@ INSERT INTO `npcskills` VALUES
 (22746, 6383, 1), -- Bistakon Deadly Roar
 (22746, 6384, 1), -- Bistakon Deadly Blow
 -- Brakian
-(22747, 4388, 4), -- Resist Paralysis Attacks
-(22747, 4408, 10), -- HP Increase (2x)
-(22747, 4409, 1), -- MP Increase (1x)
-(22747, 4410, 17), -- Very Strong P. Atk.
-(22747, 4411, 16), -- Very Strong M. Atk.
-(22747, 4412, 15), -- Strong P. Def.
-(22747, 4413, 4), -- Extremely Weak M. Def.
-(22747, 4414, 2), -- Standard Type
-(22747, 4415, 3), -- One-handed Sword
-(22747, 4416, 3), -- Beasts
+(22747, 4388, 4), -- Resist Paralysis
+(22747, 4408, 10), -- HP Modifiers
+(22747, 4409, 1), -- MP Modifiers
+(22747, 4410, 17), -- P. Atk. Modifiers
+(22747, 4411, 16), -- M. Atk. Modifiers
+(22747, 4412, 15), -- P. Def. Modifiers
+(22747, 4413, 4), -- M. Def. Modifiers
+(22747, 4414, 2), -- Armor Type
+(22747, 4415, 3), -- Weapon Type
+(22747, 4416, 3), -- Races
 (22747, 4438, 4), -- Greater Resist Sleep
 (22747, 4439, 4), -- Greater Resist Hold
 (22747, 4441, 5), -- Greater Resist Mental Derangement
@@ -58456,16 +58456,16 @@ INSERT INTO `npcskills` VALUES
 (22747, 6384, 2), -- Bistakon Deadly Blow
 (22747, 6385, 1), -- Bistakon Critical Claw
 -- Groikan
-(22748, 4388, 4), -- Resist Paralysis Attacks
-(22748, 4408, 10), -- HP Increase (2x)
-(22748, 4409, 1), -- MP Increase (1x)
-(22748, 4410, 16), -- Very Strong P. Atk.
-(22748, 4411, 17), -- Very Strong M. Atk.
-(22748, 4412, 16), -- Very Strong P. Def.
-(22748, 4413, 4), -- Extremely Weak M. Def.
-(22748, 4414, 2), -- Standard Type
-(22748, 4415, 3), -- One-handed Sword
-(22748, 4416, 3), -- Beasts
+(22748, 4388, 4), -- Resist Paralysis
+(22748, 4408, 10), -- HP Modifiers
+(22748, 4409, 1), -- MP Modifiers
+(22748, 4410, 16), -- P. Atk. Modifiers
+(22748, 4411, 17), -- M. Atk. Modifiers
+(22748, 4412, 16), -- P. Def. Modifiers
+(22748, 4413, 4), -- M. Def. Modifiers
+(22748, 4414, 2), -- Armor Type
+(22748, 4415, 3), -- Weapon Type
+(22748, 4416, 3), -- Races
 (22748, 4438, 4), -- Greater Resist Sleep
 (22748, 4439, 4), -- Greater Resist Hold
 (22748, 4441, 5), -- Greater Resist Mental Derangement
@@ -58476,16 +58476,16 @@ INSERT INTO `npcskills` VALUES
 (22748, 6386, 1), -- Bistakon Earth Rise
 (22748, 6387, 1), -- Bistakon Earthquake
 -- Treykan
-(22749, 4388, 4), -- Resist Paralysis Attacks
-(22749, 4408, 10), -- HP Increase (2x)
-(22749, 4409, 1), -- MP Increase (1x)
-(22749, 4410, 17), -- Very Strong P. Atk.
-(22749, 4411, 17), -- Very Strong M. Atk.
-(22749, 4412, 15), -- Strong P. Def.
-(22749, 4413, 4), -- Extremely Weak M. Def.
-(22749, 4414, 2), -- Standard Type
-(22749, 4415, 3), -- One-handed Sword
-(22749, 4416, 3), -- Beasts
+(22749, 4388, 4), -- Resist Paralysis
+(22749, 4408, 10), -- HP Modifiers
+(22749, 4409, 1), -- MP Modifiers
+(22749, 4410, 17), -- P. Atk. Modifiers
+(22749, 4411, 17), -- M. Atk. Modifiers
+(22749, 4412, 15), -- P. Def. Modifiers
+(22749, 4413, 4), -- M. Def. Modifiers
+(22749, 4414, 2), -- Armor Type
+(22749, 4415, 3), -- Weapon Type
+(22749, 4416, 3), -- Races
 (22749, 4438, 4), -- Greater Resist Sleep
 (22749, 4439, 4), -- Greater Resist Hold
 (22749, 4441, 5), -- Greater Resist Mental Derangement
@@ -58497,16 +58497,16 @@ INSERT INTO `npcskills` VALUES
 (22749, 6385, 1), -- Bistakon Critical Claw
 (22749, 6388, 1), -- Bistakon Jump Blow
 -- Elite Bgurent
-(22750, 4388, 4), -- Resist Paralysis Attacks
-(22750, 4408, 10), -- HP Increase (2x)
-(22750, 4409, 1), -- MP Increase (1x)
-(22750, 4410, 16), -- Very Strong P. Atk.
-(22750, 4411, 17), -- Very Strong M. Atk.
-(22750, 4412, 15), -- Strong P. Def.
-(22750, 4413, 5), -- Very Weak M. Def.
-(22750, 4414, 2), -- Standard Type
-(22750, 4415, 3), -- One-handed Sword
-(22750, 4416, 3), -- Beasts
+(22750, 4388, 4), -- Resist Paralysis
+(22750, 4408, 10), -- HP Modifiers
+(22750, 4409, 1), -- MP Modifiers
+(22750, 4410, 16), -- P. Atk. Modifiers
+(22750, 4411, 17), -- M. Atk. Modifiers
+(22750, 4412, 15), -- P. Def. Modifiers
+(22750, 4413, 5), -- M. Def. Modifiers
+(22750, 4414, 2), -- Armor Type
+(22750, 4415, 3), -- Weapon Type
+(22750, 4416, 3), -- Races
 (22750, 4438, 4), -- Greater Resist Sleep
 (22750, 4439, 4), -- Greater Resist Hold
 (22750, 4441, 5), -- Greater Resist Mental Derangement
@@ -58518,16 +58518,16 @@ INSERT INTO `npcskills` VALUES
 (22750, 6383, 1), -- Bistakon Deadly Roar
 (22750, 6384, 1), -- Bistakon Deadly Blow
 -- Elite Brakian
-(22751, 4388, 4), -- Resist Paralysis Attacks
-(22751, 4408, 10), -- HP Increase (2x)
-(22751, 4409, 1), -- MP Increase (1x)
-(22751, 4410, 16), -- Very Strong P. Atk.
-(22751, 4411, 17), -- Very Strong M. Atk.
-(22751, 4412, 15), -- Strong P. Def.
-(22751, 4413, 5), -- Very Weak M. Def.
-(22751, 4414, 2), -- Standard Type
-(22751, 4415, 3), -- One-handed Sword
-(22751, 4416, 3), -- Beasts
+(22751, 4388, 4), -- Resist Paralysis
+(22751, 4408, 10), -- HP Modifiers
+(22751, 4409, 1), -- MP Modifiers
+(22751, 4410, 16), -- P. Atk. Modifiers
+(22751, 4411, 17), -- M. Atk. Modifiers
+(22751, 4412, 15), -- P. Def. Modifiers
+(22751, 4413, 5), -- M. Def. Modifiers
+(22751, 4414, 2), -- Armor Type
+(22751, 4415, 3), -- Weapon Type
+(22751, 4416, 3), -- Races
 (22751, 4438, 4), -- Greater Resist Sleep
 (22751, 4439, 4), -- Greater Resist Hold
 (22751, 4441, 5), -- Greater Resist Mental Derangement
@@ -58539,16 +58539,16 @@ INSERT INTO `npcskills` VALUES
 (22751, 6384, 2), -- Bistakon Deadly Blow
 (22751, 6385, 1), -- Bistakon Critical Claw
 -- Elite Groikan
-(22752, 4388, 4), -- Resist Paralysis Attacks
-(22752, 4408, 10), -- HP Increase (2x)
-(22752, 4409, 1), -- MP Increase (1x)
-(22752, 4410, 17), -- Very Strong P. Atk.
-(22752, 4411, 16), -- Very Strong M. Atk.
-(22752, 4412, 14), -- Strong P. Def.
-(22752, 4413, 5), -- Very Weak M. Def.
-(22752, 4414, 2), -- Standard Type
-(22752, 4415, 3), -- One-handed Sword
-(22752, 4416, 3), -- Beasts
+(22752, 4388, 4), -- Resist Paralysis
+(22752, 4408, 10), -- HP Modifiers
+(22752, 4409, 1), -- MP Modifiers
+(22752, 4410, 17), -- P. Atk. Modifiers
+(22752, 4411, 16), -- M. Atk. Modifiers
+(22752, 4412, 14), -- P. Def. Modifiers
+(22752, 4413, 5), -- M. Def. Modifiers
+(22752, 4414, 2), -- Armor Type
+(22752, 4415, 3), -- Weapon Type
+(22752, 4416, 3), -- Races
 (22752, 4438, 4), -- Greater Resist Sleep
 (22752, 4439, 4), -- Greater Resist Hold
 (22752, 4441, 5), -- Greater Resist Mental Derangement
@@ -58560,16 +58560,16 @@ INSERT INTO `npcskills` VALUES
 (22752, 6386, 1), -- Bistakon Earth Rise
 (22752, 6387, 1), -- Bistakon Earthquake
 -- Elite Treykan
-(22753, 4388, 4), -- Resist Paralysis Attacks
-(22753, 4408, 10), -- HP Increase (2x)
-(22753, 4409, 1), -- MP Increase (1x)
-(22753, 4410, 16), -- Very Strong P. Atk.
-(22753, 4411, 17), -- Very Strong M. Atk.
-(22753, 4412, 15), -- Strong P. Def.
-(22753, 4413, 5), -- Very Weak M. Def.
-(22753, 4414, 2), -- Standard Type
-(22753, 4415, 3), -- One-handed Sword
-(22753, 4416, 3), -- Beasts
+(22753, 4388, 4), -- Resist Paralysis
+(22753, 4408, 10), -- HP Modifiers
+(22753, 4409, 1), -- MP Modifiers
+(22753, 4410, 16), -- P. Atk. Modifiers
+(22753, 4411, 17), -- M. Atk. Modifiers
+(22753, 4412, 15), -- P. Def. Modifiers
+(22753, 4413, 5), -- M. Def. Modifiers
+(22753, 4414, 2), -- Armor Type
+(22753, 4415, 3), -- Weapon Type
+(22753, 4416, 3), -- Races
 (22753, 4438, 4), -- Greater Resist Sleep
 (22753, 4439, 4), -- Greater Resist Hold
 (22753, 4441, 5), -- Greater Resist Mental Derangement
@@ -58581,16 +58581,16 @@ INSERT INTO `npcskills` VALUES
 (22753, 6385, 1), -- Bistakon Critical Claw
 (22753, 6388, 1), -- Bistakon Jump Blow
 -- Turtlelian
-(22754, 4388, 4), -- Resist Paralysis Attacks
-(22754, 4408, 10), -- HP Increase (2x)
-(22754, 4409, 1), -- MP Increase (1x)
-(22754, 4410, 17), -- Very Strong P. Atk.
-(22754, 4411, 16), -- Very Strong M. Atk.
-(22754, 4412, 15), -- Strong P. Def.
-(22754, 4413, 4), -- Extremely Weak M. Def.
-(22754, 4414, 2), -- Standard Type
-(22754, 4415, 3), -- One-handed Sword
-(22754, 4416, 3), -- Beasts
+(22754, 4388, 4), -- Resist Paralysis
+(22754, 4408, 10), -- HP Modifiers
+(22754, 4409, 1), -- MP Modifiers
+(22754, 4410, 17), -- P. Atk. Modifiers
+(22754, 4411, 16), -- M. Atk. Modifiers
+(22754, 4412, 15), -- P. Def. Modifiers
+(22754, 4413, 4), -- M. Def. Modifiers
+(22754, 4414, 2), -- Armor Type
+(22754, 4415, 3), -- Weapon Type
+(22754, 4416, 3), -- Races
 (22754, 4438, 4), -- Greater Resist Sleep
 (22754, 4439, 4), -- Greater Resist Hold
 (22754, 4441, 5), -- Greater Resist Mental Derangement
@@ -58602,16 +58602,16 @@ INSERT INTO `npcskills` VALUES
 (22754, 6411, 1), -- Reptilikon Summon
 (22754, 6412, 1), -- Reptilikon Critical Blow
 -- Krajian
-(22755, 4388, 4), -- Resist Paralysis Attacks
-(22755, 4408, 10), -- HP Increase (2x)
-(22755, 4409, 1), -- MP Increase (1x)
-(22755, 4410, 17), -- Very Strong P. Atk.
-(22755, 4411, 16), -- Very Strong M. Atk.
-(22755, 4412, 15), -- Strong P. Def.
-(22755, 4413, 4), -- Extremely Weak M. Def.
-(22755, 4414, 2), -- Standard Type
-(22755, 4415, 3), -- One-handed Sword
-(22755, 4416, 3), -- Beasts
+(22755, 4388, 4), -- Resist Paralysis
+(22755, 4408, 10), -- HP Modifiers
+(22755, 4409, 1), -- MP Modifiers
+(22755, 4410, 17), -- P. Atk. Modifiers
+(22755, 4411, 16), -- M. Atk. Modifiers
+(22755, 4412, 15), -- P. Def. Modifiers
+(22755, 4413, 4), -- M. Def. Modifiers
+(22755, 4414, 2), -- Armor Type
+(22755, 4415, 3), -- Weapon Type
+(22755, 4416, 3), -- Races
 (22755, 4438, 4), -- Greater Resist Sleep
 (22755, 4439, 4), -- Greater Resist Hold
 (22755, 4441, 5), -- Greater Resist Mental Derangement
@@ -58622,16 +58622,16 @@ INSERT INTO `npcskills` VALUES
 (22755, 6414, 1), -- Reptilikon Charge
 (22755, 6415, 1), -- Reptilikon Scratch
 -- Tardyon
-(22756, 4388, 4), -- Resist Paralysis Attacks
-(22756, 4408, 10), -- HP Increase (2x)
-(22756, 4409, 1), -- MP Increase (1x)
-(22756, 4410, 16), -- Very Strong P. Atk.
-(22756, 4411, 17), -- Very Strong M. Atk.
-(22756, 4412, 16), -- Very Strong P. Def.
-(22756, 4413, 4), -- Extremely Weak M. Def.
-(22756, 4414, 2), -- Standard Type
-(22756, 4415, 3), -- One-handed Sword
-(22756, 4416, 3), -- Beasts
+(22756, 4388, 4), -- Resist Paralysis
+(22756, 4408, 10), -- HP Modifiers
+(22756, 4409, 1), -- MP Modifiers
+(22756, 4410, 16), -- P. Atk. Modifiers
+(22756, 4411, 17), -- M. Atk. Modifiers
+(22756, 4412, 16), -- P. Def. Modifiers
+(22756, 4413, 4), -- M. Def. Modifiers
+(22756, 4414, 2), -- Armor Type
+(22756, 4415, 3), -- Weapon Type
+(22756, 4416, 3), -- Races
 (22756, 4438, 4), -- Greater Resist Sleep
 (22756, 4439, 4), -- Greater Resist Hold
 (22756, 4441, 5), -- Greater Resist Mental Derangement
@@ -58642,16 +58642,16 @@ INSERT INTO `npcskills` VALUES
 (22756, 6417, 1), -- Reptilikon Poison Shot
 (22756, 6418, 1), -- Reptilikon Fury Poison Bomb
 -- Elite Turtlelian
-(22757, 4388, 4), -- Resist Paralysis Attacks
-(22757, 4408, 10), -- HP Increase (2x)
-(22757, 4409, 1), -- MP Increase (1x)
-(22757, 4410, 16), -- Very Strong P. Atk.
-(22757, 4411, 17), -- Very Strong M. Atk.
-(22757, 4412, 15), -- Strong P. Def.
-(22757, 4413, 5), -- Very Weak M. Def.
-(22757, 4414, 2), -- Standard Type
-(22757, 4415, 3), -- One-handed Sword
-(22757, 4416, 3), -- Beasts
+(22757, 4388, 4), -- Resist Paralysis
+(22757, 4408, 10), -- HP Modifiers
+(22757, 4409, 1), -- MP Modifiers
+(22757, 4410, 16), -- P. Atk. Modifiers
+(22757, 4411, 17), -- M. Atk. Modifiers
+(22757, 4412, 15), -- P. Def. Modifiers
+(22757, 4413, 5), -- M. Def. Modifiers
+(22757, 4414, 2), -- Armor Type
+(22757, 4415, 3), -- Weapon Type
+(22757, 4416, 3), -- Races
 (22757, 4438, 4), -- Greater Resist Sleep
 (22757, 4439, 4), -- Greater Resist Hold
 (22757, 4441, 5), -- Greater Resist Mental Derangement
@@ -58664,16 +58664,16 @@ INSERT INTO `npcskills` VALUES
 (22757, 6411, 1), -- Reptilikon Summon
 (22757, 6412, 1), -- Reptilikon Critical Blow
 -- Elite Krajian
-(22758, 4388, 4), -- Resist Paralysis Attacks
-(22758, 4408, 10), -- HP Increase (2x)
-(22758, 4409, 1), -- MP Increase (1x)
-(22758, 4410, 17), -- Very Strong P. Atk.
-(22758, 4411, 16), -- Very Strong M. Atk.
-(22758, 4412, 14), -- Strong P. Def.
-(22758, 4413, 5), -- Very Weak M. Def.
-(22758, 4414, 2), -- Standard Type
-(22758, 4415, 3), -- One-handed Sword
-(22758, 4416, 3), -- Beasts
+(22758, 4388, 4), -- Resist Paralysis
+(22758, 4408, 10), -- HP Modifiers
+(22758, 4409, 1), -- MP Modifiers
+(22758, 4410, 17), -- P. Atk. Modifiers
+(22758, 4411, 16), -- M. Atk. Modifiers
+(22758, 4412, 14), -- P. Def. Modifiers
+(22758, 4413, 5), -- M. Def. Modifiers
+(22758, 4414, 2), -- Armor Type
+(22758, 4415, 3), -- Weapon Type
+(22758, 4416, 3), -- Races
 (22758, 4438, 4), -- Greater Resist Sleep
 (22758, 4439, 4), -- Greater Resist Hold
 (22758, 4441, 5), -- Greater Resist Mental Derangement
@@ -58685,16 +58685,16 @@ INSERT INTO `npcskills` VALUES
 (22758, 6414, 1), -- Reptilikon Charge
 (22758, 6415, 1), -- Reptilikon Scratch
 -- Elite Tardyon
-(22759, 4388, 4), -- Resist Paralysis Attacks
-(22759, 4408, 10), -- HP Increase (2x)
-(22759, 4409, 1), -- MP Increase (1x)
-(22759, 4410, 16), -- Very Strong P. Atk.
-(22759, 4411, 17), -- Very Strong M. Atk.
-(22759, 4412, 15), -- Strong P. Def.
-(22759, 4413, 5), -- Very Weak M. Def.
-(22759, 4414, 2), -- Standard Type
-(22759, 4415, 3), -- One-handed Sword
-(22759, 4416, 3), -- Beasts
+(22759, 4388, 4), -- Resist Paralysis
+(22759, 4408, 10), -- HP Modifiers
+(22759, 4409, 1), -- MP Modifiers
+(22759, 4410, 16), -- P. Atk. Modifiers
+(22759, 4411, 17), -- M. Atk. Modifiers
+(22759, 4412, 15), -- P. Def. Modifiers
+(22759, 4413, 5), -- M. Def. Modifiers
+(22759, 4414, 2), -- Armor Type
+(22759, 4415, 3), -- Weapon Type
+(22759, 4416, 3), -- Races
 (22759, 4438, 4), -- Greater Resist Sleep
 (22759, 4439, 4), -- Greater Resist Hold
 (22759, 4441, 5), -- Greater Resist Mental Derangement
@@ -58706,16 +58706,16 @@ INSERT INTO `npcskills` VALUES
 (22759, 6417, 1), -- Reptilikon Poison Shot
 (22759, 6418, 1), -- Reptilikon Fury Poison Bomb
 -- Kanibi
-(22760, 4388, 4), -- Resist Paralysis Attacks
-(22760, 4408, 10), -- HP Increase (2x)
-(22760, 4409, 1), -- MP Increase (1x)
-(22760, 4410, 17), -- Very Strong P. Atk.
-(22760, 4411, 16), -- Very Strong M. Atk.
-(22760, 4412, 15), -- Strong P. Def.
-(22760, 4413, 4), -- Extremely Weak M. Def.
-(22760, 4414, 2), -- Standard Type
-(22760, 4415, 3), -- One-handed Sword
-(22760, 4416, 3), -- Beasts
+(22760, 4388, 4), -- Resist Paralysis
+(22760, 4408, 10), -- HP Modifiers
+(22760, 4409, 1), -- MP Modifiers
+(22760, 4410, 17), -- P. Atk. Modifiers
+(22760, 4411, 16), -- M. Atk. Modifiers
+(22760, 4412, 15), -- P. Def. Modifiers
+(22760, 4413, 4), -- M. Def. Modifiers
+(22760, 4414, 2), -- Armor Type
+(22760, 4415, 3), -- Weapon Type
+(22760, 4416, 3), -- Races
 (22760, 4438, 4), -- Greater Resist Sleep
 (22760, 4439, 4), -- Greater Resist Hold
 (22760, 4441, 5), -- Greater Resist Mental Derangement
@@ -58727,16 +58727,16 @@ INSERT INTO `npcskills` VALUES
 (22760, 6394, 1), -- Cokrakon Sonic Bomb
 (22760, 6395, 1), -- Cokrakon Dreadful Clow
 -- Kiriona
-(22761, 4388, 4), -- Resist Paralysis Attacks
-(22761, 4408, 10), -- HP Increase (2x)
-(22761, 4409, 1), -- MP Increase (1x)
-(22761, 4410, 17), -- Very Strong P. Atk.
-(22761, 4411, 16), -- Very Strong M. Atk.
-(22761, 4412, 15), -- Strong P. Def.
-(22761, 4413, 4), -- Extremely Weak M. Def.
-(22761, 4414, 2), -- Standard Type
-(22761, 4415, 3), -- One-handed Sword
-(22761, 4416, 3), -- Beasts
+(22761, 4388, 4), -- Resist Paralysis
+(22761, 4408, 10), -- HP Modifiers
+(22761, 4409, 1), -- MP Modifiers
+(22761, 4410, 17), -- P. Atk. Modifiers
+(22761, 4411, 16), -- M. Atk. Modifiers
+(22761, 4412, 15), -- P. Def. Modifiers
+(22761, 4413, 4), -- M. Def. Modifiers
+(22761, 4414, 2), -- Armor Type
+(22761, 4415, 3), -- Weapon Type
+(22761, 4416, 3), -- Races
 (22761, 4438, 4), -- Greater Resist Sleep
 (22761, 4439, 4), -- Greater Resist Hold
 (22761, 4441, 5), -- Greater Resist Mental Derangement
@@ -58747,16 +58747,16 @@ INSERT INTO `npcskills` VALUES
 (22761, 6397, 1), -- Cokrakon Staggering Blow
 (22761, 6398, 1), -- Cokrakon Sonic Shout
 -- Kaiona
-(22762, 4388, 4), -- Resist Paralysis Attacks
-(22762, 4408, 10), -- HP Increase (2x)
-(22762, 4409, 1), -- MP Increase (1x)
-(22762, 4410, 16), -- Very Strong P. Atk.
-(22762, 4411, 17), -- Very Strong M. Atk.
-(22762, 4412, 16), -- Very Strong P. Def.
-(22762, 4413, 4), -- Extremely Weak M. Def.
-(22762, 4414, 2), -- Standard Type
-(22762, 4415, 3), -- One-handed Sword
-(22762, 4416, 3), -- Beasts
+(22762, 4388, 4), -- Resist Paralysis
+(22762, 4408, 10), -- HP Modifiers
+(22762, 4409, 1), -- MP Modifiers
+(22762, 4410, 16), -- P. Atk. Modifiers
+(22762, 4411, 17), -- M. Atk. Modifiers
+(22762, 4412, 16), -- P. Def. Modifiers
+(22762, 4413, 4), -- M. Def. Modifiers
+(22762, 4414, 2), -- Armor Type
+(22762, 4415, 3), -- Weapon Type
+(22762, 4416, 3), -- Races
 (22762, 4438, 4), -- Greater Resist Sleep
 (22762, 4439, 4), -- Greater Resist Hold
 (22762, 4441, 5), -- Greater Resist Mental Derangement
@@ -58767,16 +58767,16 @@ INSERT INTO `npcskills` VALUES
 (22762, 6400, 1), -- Cokrakon Dwindling Velocity
 (22762, 6401, 1), -- Cokrakon Wheeling Clow
 -- Elite Kanibi
-(22763, 4388, 4), -- Resist Paralysis Attacks
-(22763, 4408, 10), -- HP Increase (2x)
-(22763, 4409, 1), -- MP Increase (1x)
-(22763, 4410, 16), -- Very Strong P. Atk.
-(22763, 4411, 17), -- Very Strong M. Atk.
-(22763, 4412, 15), -- Strong P. Def.
-(22763, 4413, 5), -- Very Weak M. Def.
-(22763, 4414, 2), -- Standard Type
-(22763, 4415, 3), -- One-handed Sword
-(22763, 4416, 3), -- Beasts
+(22763, 4388, 4), -- Resist Paralysis
+(22763, 4408, 10), -- HP Modifiers
+(22763, 4409, 1), -- MP Modifiers
+(22763, 4410, 16), -- P. Atk. Modifiers
+(22763, 4411, 17), -- M. Atk. Modifiers
+(22763, 4412, 15), -- P. Def. Modifiers
+(22763, 4413, 5), -- M. Def. Modifiers
+(22763, 4414, 2), -- Armor Type
+(22763, 4415, 3), -- Weapon Type
+(22763, 4416, 3), -- Races
 (22763, 4438, 4), -- Greater Resist Sleep
 (22763, 4439, 4), -- Greater Resist Hold
 (22763, 4441, 5), -- Greater Resist Mental Derangement
@@ -58789,16 +58789,16 @@ INSERT INTO `npcskills` VALUES
 (22763, 6394, 1), -- Cokrakon Sonic Bomb
 (22763, 6395, 1), -- Cokrakon Dreadful Clow
 -- Elite Kiriona
-(22764, 4388, 4), -- Resist Paralysis Attacks
-(22764, 4408, 10), -- HP Increase (2x)
-(22764, 4409, 1), -- MP Increase (1x)
-(22764, 4410, 17), -- Very Strong P. Atk.
-(22764, 4411, 16), -- Very Strong M. Atk.
-(22764, 4412, 14), -- Strong P. Def.
-(22764, 4413, 5), -- Very Weak M. Def.
-(22764, 4414, 2), -- Standard Type
-(22764, 4415, 3), -- One-handed Sword
-(22764, 4416, 3), -- Beasts
+(22764, 4388, 4), -- Resist Paralysis
+(22764, 4408, 10), -- HP Modifiers
+(22764, 4409, 1), -- MP Modifiers
+(22764, 4410, 17), -- P. Atk. Modifiers
+(22764, 4411, 16), -- M. Atk. Modifiers
+(22764, 4412, 14), -- P. Def. Modifiers
+(22764, 4413, 5), -- M. Def. Modifiers
+(22764, 4414, 2), -- Armor Type
+(22764, 4415, 3), -- Weapon Type
+(22764, 4416, 3), -- Races
 (22764, 4438, 4), -- Greater Resist Sleep
 (22764, 4439, 4), -- Greater Resist Hold
 (22764, 4441, 5), -- Greater Resist Mental Derangement
@@ -58810,16 +58810,16 @@ INSERT INTO `npcskills` VALUES
 (22764, 6397, 1), -- Cokrakon Staggering Blow
 (22764, 6398, 1), -- Cokrakon Sonic Shout
 -- Elite Kaiona
-(22765, 4388, 4), -- Resist Paralysis Attacks
-(22765, 4408, 10), -- HP Increase (2x)
-(22765, 4409, 1), -- MP Increase (1x)
-(22765, 4410, 16), -- Very Strong P. Atk.
-(22765, 4411, 17), -- Very Strong M. Atk.
-(22765, 4412, 15), -- Strong P. Def.
-(22765, 4413, 5), -- Very Weak M. Def.
-(22765, 4414, 2), -- Standard Type
-(22765, 4415, 3), -- One-handed Sword
-(22765, 4416, 3), -- Beasts
+(22765, 4388, 4), -- Resist Paralysis
+(22765, 4408, 10), -- HP Modifiers
+(22765, 4409, 1), -- MP Modifiers
+(22765, 4410, 16), -- P. Atk. Modifiers
+(22765, 4411, 17), -- M. Atk. Modifiers
+(22765, 4412, 15), -- P. Def. Modifiers
+(22765, 4413, 5), -- M. Def. Modifiers
+(22765, 4414, 2), -- Armor Type
+(22765, 4415, 3), -- Weapon Type
+(22765, 4416, 3), -- Races
 (22765, 4438, 4), -- Greater Resist Sleep
 (22765, 4439, 4), -- Greater Resist Hold
 (22765, 4441, 5), -- Greater Resist Mental Derangement
@@ -58831,119 +58831,119 @@ INSERT INTO `npcskills` VALUES
 (22765, 6400, 1), -- Cokrakon Dwindling Velocity
 (22765, 6401, 1), -- Cokrakon Wheeling Clow
 -- Mithril Millipede
-(22766, 4408, 1), -- HP Increase (1x)
-(22766, 4409, 1), -- MP Increase (1x)
-(22766, 4410, 7), -- Weak P. Atk.
-(22766, 4411, 6), -- Very Weak M. Atk.
-(22766, 4412, 11), -- Average P. Def.
-(22766, 4413, 11), -- Average M. Def.
-(22766, 4414, 2), -- Standard Type
-(22766, 4415, 3), -- One-handed Sword
-(22766, 4416, 12), -- Bugs
+(22766, 4408, 1), -- HP Modifiers
+(22766, 4409, 1), -- MP Modifiers
+(22766, 4410, 7), -- P. Atk. Modifiers
+(22766, 4411, 6), -- M. Atk. Modifiers
+(22766, 4412, 11), -- P. Def. Modifiers
+(22766, 4413, 11), -- M. Def. Modifiers
+(22766, 4414, 2), -- Armor Type
+(22766, 4415, 3), -- Weapon Type
+(22766, 4416, 12), -- Races
 -- Archery Knight
-(22767, 4408, 11), -- HP Increase (3x)
-(22767, 4409, 1), -- MP Increase (1x)
-(22767, 4410, 11), -- Average P. Atk.
-(22767, 4411, 11), -- Average M. Atk.
-(22767, 4412, 11), -- Average P. Def.
-(22767, 4413, 11), -- Average M. Def.
-(22767, 4414, 2), -- Standard Type
-(22767, 4415, 3), -- One-handed Sword
-(22767, 4416, 6), -- Humanoids
+(22767, 4408, 11), -- HP Modifiers
+(22767, 4409, 1), -- MP Modifiers
+(22767, 4410, 11), -- P. Atk. Modifiers
+(22767, 4411, 11), -- M. Atk. Modifiers
+(22767, 4412, 11), -- P. Def. Modifiers
+(22767, 4413, 11), -- M. Def. Modifiers
+(22767, 4414, 2), -- Armor Type
+(22767, 4415, 3), -- Weapon Type
+(22767, 4416, 6), -- Races
 (22767, 6290, 1), -- Power Strike
 (22767, 6292, 1), -- Rush
 -- Tanta Lizardman Scout
-(22768, 4116, 9), -- Resist M. Atk.
-(22768, 4273, 4), -- Resist Daggers/Rapier Weapon
-(22768, 4276, 4); -- Weak Point against Bow/Crossbow Weapons
+(22768, 4116, 9), -- Resist M.Atk
+(22768, 4273, 4), -- Resist Dagger
+(22768, 4276, 4); -- Archery Attack Weak Point
 
 INSERT INTO `npcskills` VALUES
-(22768, 4408, 1), -- HP Increase (1x)
-(22768, 4409, 1), -- MP Increase (1x)
-(22768, 4410, 11), -- Average P. Atk.
-(22768, 4411, 11), -- Average M. Atk.
-(22768, 4412, 8), -- Weak P. Def.
-(22768, 4413, 16), -- Very Strong M. Def.
-(22768, 4414, 3), -- Light Armor Type
-(22768, 4415, 11), -- Spears
-(22768, 4416, 6), -- Humanoids
-(22768, 4424, 4), -- Resist fist Weapons
+(22768, 4408, 1), -- HP Modifiers
+(22768, 4409, 1), -- MP Modifiers
+(22768, 4410, 11), -- P. Atk. Modifiers
+(22768, 4411, 11), -- M. Atk. Modifiers
+(22768, 4412, 8), -- P. Def. Modifiers
+(22768, 4413, 16), -- M. Def. Modifiers
+(22768, 4414, 3), -- Armor Type
+(22768, 4415, 11), -- Weapon Type
+(22768, 4416, 6), -- Races
+(22768, 4424, 4), -- Resist Hand-to-hand Weapons
 (22768, 4427, 4), -- Resist Swords
 (22768, 4449, 4), -- Greater Resist Two-handed Weapons
 (22768, 5465, 1), -- Earth Attacks
 (22768, 5601, 9), -- Short-Range Physical Attack Resistance
 (22768, 6419, 1), -- Light of Scout
 -- Tanta Lizardman Warrior
-(22769, 4116, 9), -- Resist M. Atk.
-(22769, 4273, 4), -- Resist Daggers/Rapier Weapon
-(22769, 4276, 4), -- Weak Point against Bow/Crossbow Weapons
-(22769, 4408, 1), -- HP Increase (1x)
-(22769, 4409, 1), -- MP Increase (1x)
-(22769, 4410, 14), -- Strong P. Atk.
-(22769, 4411, 13), -- Slightly Strong M. Atk.
-(22769, 4412, 13), -- Slightly Strong P. Def.
-(22769, 4413, 17), -- Very Strong M. Def.
-(22769, 4414, 3), -- Light Armor Type
-(22769, 4415, 7), -- Daggers
-(22769, 4416, 6), -- Humanoids
-(22769, 4424, 4), -- Resist fist Weapons
+(22769, 4116, 9), -- Resist M.Atk
+(22769, 4273, 4), -- Resist Dagger
+(22769, 4276, 4), -- Archery Attack Weak Point
+(22769, 4408, 1), -- HP Modifiers
+(22769, 4409, 1), -- MP Modifiers
+(22769, 4410, 14), -- P. Atk. Modifiers
+(22769, 4411, 13), -- M. Atk. Modifiers
+(22769, 4412, 13), -- P. Def. Modifiers
+(22769, 4413, 17), -- M. Def. Modifiers
+(22769, 4414, 3), -- Armor Type
+(22769, 4415, 7), -- Weapon Type
+(22769, 4416, 6), -- Races
+(22769, 4424, 4), -- Resist Hand-to-hand Weapons
 (22769, 4427, 4), -- Resist Swords
 (22769, 4449, 4), -- Greater Resist Two-handed Weapons
 (22769, 5465, 1), -- Earth Attacks
 (22769, 5601, 9), -- Short-Range Physical Attack Resistance
 (22769, 6420, 1), -- Lizard Strike
 -- Tanta Lizardman Soldier
-(22770, 4116, 9), -- Resist M. Atk.
-(22770, 4273, 4), -- Resist Daggers/Rapier Weapon
-(22770, 4276, 4), -- Weak Point against Bow/Crossbow Weapons
-(22770, 4408, 10), -- HP Increase (2x)
-(22770, 4409, 1), -- MP Increase (1x)
-(22770, 4410, 14), -- Strong P. Atk.
-(22770, 4411, 13), -- Slightly Strong M. Atk.
-(22770, 4412, 11), -- Average P. Def.
-(22770, 4413, 18), -- Extremely Strong M. Def.
-(22770, 4414, 3), -- Light Armor Type
-(22770, 4415, 3), -- One-handed Sword
-(22770, 4416, 6), -- Humanoids
-(22770, 4424, 4), -- Resist fist Weapons
+(22770, 4116, 9), -- Resist M.Atk
+(22770, 4273, 4), -- Resist Dagger
+(22770, 4276, 4), -- Archery Attack Weak Point
+(22770, 4408, 10), -- HP Modifiers
+(22770, 4409, 1), -- MP Modifiers
+(22770, 4410, 14), -- P. Atk. Modifiers
+(22770, 4411, 13), -- M. Atk. Modifiers
+(22770, 4412, 11), -- P. Def. Modifiers
+(22770, 4413, 18), -- M. Def. Modifiers
+(22770, 4414, 3), -- Armor Type
+(22770, 4415, 3), -- Weapon Type
+(22770, 4416, 6), -- Races
+(22770, 4424, 4), -- Resist Hand-to-hand Weapons
 (22770, 4427, 4), -- Resist Swords
 (22770, 4449, 4), -- Greater Resist Two-handed Weapons
 (22770, 5465, 1), -- Earth Attacks
 (22770, 5601, 9), -- Short-Range Physical Attack Resistance
 (22770, 6421, 1), -- Rage of Soldier
 -- Tanta Lizardman Berserker
-(22771, 4116, 9), -- Resist M. Atk.
-(22771, 4273, 4), -- Resist Daggers/Rapier Weapon
-(22771, 4276, 4), -- Weak Point against Bow/Crossbow Weapons
-(22771, 4408, 10), -- HP Increase (2x)
-(22771, 4409, 1), -- MP Increase (1x)
-(22771, 4410, 15), -- Strong P. Atk.
-(22771, 4411, 14), -- Strong M. Atk.
-(22771, 4412, 11), -- Average P. Def.
-(22771, 4413, 18), -- Extremely Strong M. Def.
-(22771, 4414, 2), -- Standard Type
-(22771, 4415, 3), -- One-handed Sword
-(22771, 4416, 6), -- Humanoids
-(22771, 4424, 4), -- Resist fist Weapons
+(22771, 4116, 9), -- Resist M.Atk
+(22771, 4273, 4), -- Resist Dagger
+(22771, 4276, 4), -- Archery Attack Weak Point
+(22771, 4408, 10), -- HP Modifiers
+(22771, 4409, 1), -- MP Modifiers
+(22771, 4410, 15), -- P. Atk. Modifiers
+(22771, 4411, 14), -- M. Atk. Modifiers
+(22771, 4412, 11), -- P. Def. Modifiers
+(22771, 4413, 18), -- M. Def. Modifiers
+(22771, 4414, 2), -- Armor Type
+(22771, 4415, 3), -- Weapon Type
+(22771, 4416, 6), -- Races
+(22771, 4424, 4), -- Resist Hand-to-hand Weapons
 (22771, 4427, 4), -- Resist Swords
 (22771, 4449, 4), -- Greater Resist Two-handed Weapons
 (22771, 5465, 1), -- Earth Attacks
 (22771, 5601, 9), -- Short-Range Physical Attack Resistance
 (22771, 6422, 1), -- Resistance Explosion
 -- Tanta Lizardman Archer
-(22772, 4116, 9), -- Resist M. Atk.
-(22772, 4273, 4), -- Resist Daggers/Rapier Weapon
-(22772, 4276, 4), -- Weak Point against Bow/Crossbow Weapons
-(22772, 4408, 1), -- HP Increase (1x)
-(22772, 4409, 1), -- MP Increase (1x)
-(22772, 4410, 14), -- Strong P. Atk.
-(22772, 4411, 13), -- Slightly Strong M. Atk.
-(22772, 4412, 15), -- Strong P. Def.
-(22772, 4413, 17), -- Very Strong M. Def.
-(22772, 4414, 2), -- Standard Type
-(22772, 4415, 9), -- Bows
-(22772, 4416, 6), -- Humanoids
-(22772, 4424, 4), -- Resist fist Weapons
+(22772, 4116, 9), -- Resist M.Atk
+(22772, 4273, 4), -- Resist Dagger
+(22772, 4276, 4), -- Archery Attack Weak Point
+(22772, 4408, 1), -- HP Modifiers
+(22772, 4409, 1), -- MP Modifiers
+(22772, 4410, 14), -- P. Atk. Modifiers
+(22772, 4411, 13), -- M. Atk. Modifiers
+(22772, 4412, 15), -- P. Def. Modifiers
+(22772, 4413, 17), -- M. Def. Modifiers
+(22772, 4414, 2), -- Armor Type
+(22772, 4415, 9), -- Weapon Type
+(22772, 4416, 6), -- Races
+(22772, 4424, 4), -- Resist Hand-to-hand Weapons
 (22772, 4427, 4), -- Resist Swords
 (22772, 4449, 4), -- Greater Resist Two-handed Weapons
 (22772, 5465, 1), -- Earth Attacks
@@ -58951,38 +58951,38 @@ INSERT INTO `npcskills` VALUES
 (22772, 6423, 1), -- Shock
 (22772, 6424, 1), -- Double Shot
 -- Tanta Lizardman Magician
-(22773, 4116, 9), -- Resist M. Atk.
-(22773, 4273, 4), -- Resist Daggers/Rapier Weapon
-(22773, 4276, 4), -- Weak Point against Bow/Crossbow Weapons
-(22773, 4408, 1), -- HP Increase (1x)
-(22773, 4409, 1), -- MP Increase (1x)
-(22773, 4410, 15), -- Strong P. Atk.
-(22773, 4411, 16), -- Very Strong M. Atk.
-(22773, 4412, 13), -- Slightly Strong P. Def.
-(22773, 4413, 17), -- Very Strong M. Def.
-(22773, 4414, 3), -- Light Armor Type
-(22773, 4415, 5), -- Blunt Weapons
-(22773, 4416, 6), -- Humanoids
-(22773, 4424, 4), -- Resist fist Weapons
+(22773, 4116, 9), -- Resist M.Atk
+(22773, 4273, 4), -- Resist Dagger
+(22773, 4276, 4), -- Archery Attack Weak Point
+(22773, 4408, 1), -- HP Modifiers
+(22773, 4409, 1), -- MP Modifiers
+(22773, 4410, 15), -- P. Atk. Modifiers
+(22773, 4411, 16), -- M. Atk. Modifiers
+(22773, 4412, 13), -- P. Def. Modifiers
+(22773, 4413, 17), -- M. Def. Modifiers
+(22773, 4414, 3), -- Armor Type
+(22773, 4415, 5), -- Weapon Type
+(22773, 4416, 6), -- Races
+(22773, 4424, 4), -- Resist Hand-to-hand Weapons
 (22773, 4427, 4), -- Resist Swords
 (22773, 4449, 4), -- Greater Resist Two-handed Weapons
 (22773, 5465, 1), -- Earth Attacks
 (22773, 5601, 9), -- Short-Range Physical Attack Resistance
 (22773, 6676, 1), -- Magician's Perversity
 -- Tanta Lizardman Summoner
-(22774, 4116, 9), -- Resist M. Atk.
-(22774, 4273, 4), -- Resist Daggers/Rapier Weapon
-(22774, 4276, 4), -- Weak Point against Bow/Crossbow Weapons
-(22774, 4408, 10), -- HP Increase (2x)
-(22774, 4409, 1), -- MP Increase (1x)
-(22774, 4410, 13), -- Slightly Strong P. Atk.
-(22774, 4411, 13), -- Slightly Strong M. Atk.
-(22774, 4412, 10), -- Slightly Weak P. Def.
-(22774, 4413, 18), -- Extremely Strong M. Def.
-(22774, 4414, 2), -- Standard Type
-(22774, 4415, 3), -- One-handed Sword
-(22774, 4416, 6), -- Humanoids
-(22774, 4424, 4), -- Resist fist Weapons
+(22774, 4116, 9), -- Resist M.Atk
+(22774, 4273, 4), -- Resist Dagger
+(22774, 4276, 4), -- Archery Attack Weak Point
+(22774, 4408, 10), -- HP Modifiers
+(22774, 4409, 1), -- MP Modifiers
+(22774, 4410, 13), -- P. Atk. Modifiers
+(22774, 4411, 13), -- M. Atk. Modifiers
+(22774, 4412, 10), -- P. Def. Modifiers
+(22774, 4413, 18), -- M. Def. Modifiers
+(22774, 4414, 2), -- Armor Type
+(22774, 4415, 3), -- Weapon Type
+(22774, 4416, 6), -- Races
+(22774, 4424, 4), -- Resist Hand-to-hand Weapons
 (22774, 4427, 4), -- Resist Swords
 (22774, 4449, 4), -- Greater Resist Two-handed Weapons
 (22774, 5465, 1), -- Earth Attacks
@@ -58990,17 +58990,17 @@ INSERT INTO `npcskills` VALUES
 (22774, 6425, 1), -- Demotivation Hex
 (22774, 6679, 1), -- Summoner's Strike
 -- Sel Mahum Drill Sergeant
-(22775, 4071, 5), -- Resist Bow/Crossbow Weapons
-(22775, 4116, 9), -- Resist M. Atk.
-(22775, 4408, 10), -- HP Increase (2x)
-(22775, 4409, 1), -- MP Increase (1x)
-(22775, 4410, 8), -- Weak P. Atk.
-(22775, 4411, 14), -- Strong M. Atk.
-(22775, 4412, 7), -- Weak P. Def.
-(22775, 4413, 17), -- Very Strong M. Def.
-(22775, 4414, 2), -- Standard Type
-(22775, 4415, 3), -- One-handed Sword
-(22775, 4416, 6), -- Humanoids
+(22775, 4071, 5), -- Resist Archery
+(22775, 4116, 9), -- Resist M.Atk
+(22775, 4408, 10), -- HP Modifiers
+(22775, 4409, 1), -- MP Modifiers
+(22775, 4410, 8), -- P. Atk. Modifiers
+(22775, 4411, 14), -- M. Atk. Modifiers
+(22775, 4412, 7), -- P. Def. Modifiers
+(22775, 4413, 17), -- M. Def. Modifiers
+(22775, 4414, 2), -- Armor Type
+(22775, 4415, 3), -- Weapon Type
+(22775, 4416, 6), -- Races
 (22775, 4458, 1), -- Spear Weapon Weak Point
 (22775, 5462, 1), -- Fire Attacks
 (22775, 5620, 9), -- Short-Range Physical Attack Weakness
@@ -59008,17 +59008,17 @@ INSERT INTO `npcskills` VALUES
 (22775, 6335, 1), -- Electric Rain 1
 (22775, 6337, 1), -- Red Slash 1
 -- Sel Mahum Training Officer
-(22776, 4071, 5), -- Resist Bow/Crossbow Weapons
-(22776, 4116, 9), -- Resist M. Atk.
-(22776, 4408, 11), -- HP Increase (3x)
-(22776, 4409, 1), -- MP Increase (1x)
-(22776, 4410, 8), -- Weak P. Atk.
-(22776, 4411, 14), -- Strong M. Atk.
-(22776, 4412, 7), -- Weak P. Def.
-(22776, 4413, 17), -- Very Strong M. Def.
-(22776, 4414, 2), -- Standard Type
-(22776, 4415, 3), -- One-handed Sword
-(22776, 4416, 6), -- Humanoids
+(22776, 4071, 5), -- Resist Archery
+(22776, 4116, 9), -- Resist M.Atk
+(22776, 4408, 11), -- HP Modifiers
+(22776, 4409, 1), -- MP Modifiers
+(22776, 4410, 8), -- P. Atk. Modifiers
+(22776, 4411, 14), -- M. Atk. Modifiers
+(22776, 4412, 7), -- P. Def. Modifiers
+(22776, 4413, 17), -- M. Def. Modifiers
+(22776, 4414, 2), -- Armor Type
+(22776, 4415, 3), -- Weapon Type
+(22776, 4416, 6), -- Races
 (22776, 4458, 1), -- Spear Weapon Weak Point
 (22776, 5462, 1), -- Fire Attacks
 (22776, 5620, 9), -- Short-Range Physical Attack Weakness
@@ -59026,17 +59026,17 @@ INSERT INTO `npcskills` VALUES
 (22776, 6336, 1), -- Electric Rain 2
 (22776, 6338, 1), -- Red Slash 2
 -- Sel Mahum Drill Sergeant
-(22777, 4071, 5), -- Resist Bow/Crossbow Weapons
-(22777, 4116, 9), -- Resist M. Atk.
-(22777, 4408, 10), -- HP Increase (2x)
-(22777, 4409, 1), -- MP Increase (1x)
-(22777, 4410, 8), -- Weak P. Atk.
-(22777, 4411, 14), -- Strong M. Atk.
-(22777, 4412, 7), -- Weak P. Def.
-(22777, 4413, 17), -- Very Strong M. Def.
-(22777, 4414, 2), -- Standard Type
-(22777, 4415, 3), -- One-handed Sword
-(22777, 4416, 6), -- Humanoids
+(22777, 4071, 5), -- Resist Archery
+(22777, 4116, 9), -- Resist M.Atk
+(22777, 4408, 10), -- HP Modifiers
+(22777, 4409, 1), -- MP Modifiers
+(22777, 4410, 8), -- P. Atk. Modifiers
+(22777, 4411, 14), -- M. Atk. Modifiers
+(22777, 4412, 7), -- P. Def. Modifiers
+(22777, 4413, 17), -- M. Def. Modifiers
+(22777, 4414, 2), -- Armor Type
+(22777, 4415, 3), -- Weapon Type
+(22777, 4416, 6), -- Races
 (22777, 4458, 1), -- Spear Weapon Weak Point
 (22777, 5462, 1), -- Fire Attacks
 (22777, 5620, 9), -- Short-Range Physical Attack Weakness
@@ -59044,34 +59044,34 @@ INSERT INTO `npcskills` VALUES
 (22777, 6339, 1), -- Sacred Hammer Attack
 (22777, 6340, 1), -- Shock
 -- Sel Mahum Drill Sergeant
-(22778, 4071, 5), -- Resist Bow/Crossbow Weapons
-(22778, 4116, 9), -- Resist M. Atk.
-(22778, 4408, 10), -- HP Increase (2x)
-(22778, 4409, 1), -- MP Increase (1x)
-(22778, 4410, 8), -- Weak P. Atk.
-(22778, 4411, 14), -- Strong M. Atk.
-(22778, 4412, 7), -- Weak P. Def.
-(22778, 4413, 17), -- Very Strong M. Def.
-(22778, 4414, 2), -- Standard Type
-(22778, 4415, 1), -- Bare Hands
-(22778, 4416, 6), -- Humanoids
+(22778, 4071, 5), -- Resist Archery
+(22778, 4116, 9), -- Resist M.Atk
+(22778, 4408, 10), -- HP Modifiers
+(22778, 4409, 1), -- MP Modifiers
+(22778, 4410, 8), -- P. Atk. Modifiers
+(22778, 4411, 14), -- M. Atk. Modifiers
+(22778, 4412, 7), -- P. Def. Modifiers
+(22778, 4413, 17), -- M. Def. Modifiers
+(22778, 4414, 2), -- Armor Type
+(22778, 4415, 1), -- Weapon Type
+(22778, 4416, 6), -- Races
 (22778, 4458, 1), -- Spear Weapon Weak Point
 (22778, 5462, 1), -- Fire Attacks
 (22778, 5620, 9), -- Short-Range Physical Attack Weakness
 (22778, 5663, 5), -- Resistance to Ancient Sword
 (22778, 6334, 1), -- Shock
 -- Sel Mahum Escort Guard
-(22779, 4071, 5), -- Resist Bow/Crossbow Weapons
-(22779, 4116, 9), -- Resist M. Atk.
-(22779, 4408, 10), -- HP Increase (2x)
-(22779, 4409, 1), -- MP Increase (1x)
-(22779, 4410, 8), -- Weak P. Atk.
-(22779, 4411, 13), -- Slightly Strong M. Atk.
-(22779, 4412, 7), -- Weak P. Def.
-(22779, 4413, 16), -- Very Strong M. Def.
-(22779, 4414, 2), -- Standard Type
-(22779, 4415, 3), -- One-handed Sword
-(22779, 4416, 6), -- Humanoids
+(22779, 4071, 5), -- Resist Archery
+(22779, 4116, 9), -- Resist M.Atk
+(22779, 4408, 10), -- HP Modifiers
+(22779, 4409, 1), -- MP Modifiers
+(22779, 4410, 8), -- P. Atk. Modifiers
+(22779, 4411, 13), -- M. Atk. Modifiers
+(22779, 4412, 7), -- P. Def. Modifiers
+(22779, 4413, 16), -- M. Def. Modifiers
+(22779, 4414, 2), -- Armor Type
+(22779, 4415, 3), -- Weapon Type
+(22779, 4416, 6), -- Races
 (22779, 4458, 1), -- Spear Weapon Weak Point
 (22779, 5462, 1), -- Fire Attacks
 (22779, 5620, 9), -- Short-Range Physical Attack Weakness
@@ -59079,17 +59079,17 @@ INSERT INTO `npcskills` VALUES
 (22779, 6339, 1), -- Sacred Hammer Attack
 (22779, 6340, 1), -- Shock
 -- Sel Mahum Recruit
-(22780, 4071, 5), -- Resist Bow/Crossbow Weapons
-(22780, 4116, 9), -- Resist M. Atk.
-(22780, 4408, 1), -- HP Increase (1x)
-(22780, 4409, 1), -- MP Increase (1x)
-(22780, 4410, 7), -- Weak P. Atk.
-(22780, 4411, 14), -- Strong M. Atk.
-(22780, 4412, 6), -- Very Weak P. Def.
-(22780, 4413, 17), -- Very Strong M. Def.
-(22780, 4414, 2), -- Standard Type
-(22780, 4415, 3), -- One-handed Sword
-(22780, 4416, 6), -- Humanoids
+(22780, 4071, 5), -- Resist Archery
+(22780, 4116, 9), -- Resist M.Atk
+(22780, 4408, 1), -- HP Modifiers
+(22780, 4409, 1), -- MP Modifiers
+(22780, 4410, 7), -- P. Atk. Modifiers
+(22780, 4411, 14), -- M. Atk. Modifiers
+(22780, 4412, 6), -- P. Def. Modifiers
+(22780, 4413, 17), -- M. Def. Modifiers
+(22780, 4414, 2), -- Armor Type
+(22780, 4415, 3), -- Weapon Type
+(22780, 4416, 6), -- Races
 (22780, 4458, 1), -- Spear Weapon Weak Point
 (22780, 5462, 1), -- Fire Attacks
 (22780, 5620, 9), -- Short-Range Physical Attack Weakness
@@ -59097,17 +59097,17 @@ INSERT INTO `npcskills` VALUES
 (22780, 6335, 1), -- Electric Rain 1
 (22780, 6337, 1), -- Red Slash 1
 -- Sel Mahum Soldier
-(22781, 4071, 5), -- Resist Bow/Crossbow Weapons
-(22781, 4116, 9), -- Resist M. Atk.
-(22781, 4408, 1), -- HP Increase (1x)
-(22781, 4409, 1), -- MP Increase (1x)
-(22781, 4410, 8), -- Weak P. Atk.
-(22781, 4411, 11), -- Average M. Atk.
-(22781, 4412, 7), -- Weak P. Def.
-(22781, 4413, 16), -- Very Strong M. Def.
-(22781, 4414, 2), -- Standard Type
-(22781, 4415, 3), -- One-handed Sword
-(22781, 4416, 6), -- Humanoids
+(22781, 4071, 5), -- Resist Archery
+(22781, 4116, 9), -- Resist M.Atk
+(22781, 4408, 1), -- HP Modifiers
+(22781, 4409, 1), -- MP Modifiers
+(22781, 4410, 8), -- P. Atk. Modifiers
+(22781, 4411, 11), -- M. Atk. Modifiers
+(22781, 4412, 7), -- P. Def. Modifiers
+(22781, 4413, 16), -- M. Def. Modifiers
+(22781, 4414, 2), -- Armor Type
+(22781, 4415, 3), -- Weapon Type
+(22781, 4416, 6), -- Races
 (22781, 4458, 1), -- Spear Weapon Weak Point
 (22781, 5462, 1), -- Fire Attacks
 (22781, 5620, 9), -- Short-Range Physical Attack Weakness
@@ -59115,17 +59115,17 @@ INSERT INTO `npcskills` VALUES
 (22781, 6336, 1), -- Electric Rain 2
 (22781, 6338, 1), -- Red Slash 2
 -- Sel Mahum Recruit
-(22782, 4071, 5), -- Resist Bow/Crossbow Weapons
-(22782, 4116, 9), -- Resist M. Atk.
-(22782, 4408, 1), -- HP Increase (1x)
-(22782, 4409, 1), -- MP Increase (1x)
-(22782, 4410, 7), -- Weak P. Atk.
-(22782, 4411, 14), -- Strong M. Atk.
-(22782, 4412, 6), -- Very Weak P. Def.
-(22782, 4413, 17), -- Very Strong M. Def.
-(22782, 4414, 2), -- Standard Type
-(22782, 4415, 3), -- One-handed Sword
-(22782, 4416, 6), -- Humanoids
+(22782, 4071, 5), -- Resist Archery
+(22782, 4116, 9), -- Resist M.Atk
+(22782, 4408, 1), -- HP Modifiers
+(22782, 4409, 1), -- MP Modifiers
+(22782, 4410, 7), -- P. Atk. Modifiers
+(22782, 4411, 14), -- M. Atk. Modifiers
+(22782, 4412, 6), -- P. Def. Modifiers
+(22782, 4413, 17), -- M. Def. Modifiers
+(22782, 4414, 2), -- Armor Type
+(22782, 4415, 3), -- Weapon Type
+(22782, 4416, 6), -- Races
 (22782, 4458, 1), -- Spear Weapon Weak Point
 (22782, 5462, 1), -- Fire Attacks
 (22782, 5620, 9), -- Short-Range Physical Attack Weakness
@@ -59133,17 +59133,17 @@ INSERT INTO `npcskills` VALUES
 (22782, 6339, 1), -- Sacred Hammer Attack
 (22782, 6340, 1), -- Shock
 -- Sel Mahum Soldier
-(22783, 4071, 5), -- Resist Bow/Crossbow Weapons
-(22783, 4116, 9), -- Resist M. Atk.
-(22783, 4408, 1), -- HP Increase (1x)
-(22783, 4409, 1), -- MP Increase (1x)
-(22783, 4410, 6), -- Very Weak P. Atk.
-(22783, 4411, 13), -- Slightly Strong M. Atk.
-(22783, 4412, 7), -- Weak P. Def.
-(22783, 4413, 16), -- Very Strong M. Def.
-(22783, 4414, 2), -- Standard Type
-(22783, 4415, 3), -- One-handed Sword
-(22783, 4416, 6), -- Humanoids
+(22783, 4071, 5), -- Resist Archery
+(22783, 4116, 9), -- Resist M.Atk
+(22783, 4408, 1), -- HP Modifiers
+(22783, 4409, 1), -- MP Modifiers
+(22783, 4410, 6), -- P. Atk. Modifiers
+(22783, 4411, 13), -- M. Atk. Modifiers
+(22783, 4412, 7), -- P. Def. Modifiers
+(22783, 4413, 16), -- M. Def. Modifiers
+(22783, 4414, 2), -- Armor Type
+(22783, 4415, 3), -- Weapon Type
+(22783, 4416, 6), -- Races
 (22783, 4458, 1), -- Spear Weapon Weak Point
 (22783, 5462, 1), -- Fire Attacks
 (22783, 5620, 9), -- Short-Range Physical Attack Weakness
@@ -59151,51 +59151,51 @@ INSERT INTO `npcskills` VALUES
 (22783, 6339, 1), -- Sacred Hammer Attack
 (22783, 6340, 1), -- Shock
 -- Sel Mahum Recruit
-(22784, 4071, 5), -- Resist Bow/Crossbow Weapons
-(22784, 4116, 9), -- Resist M. Atk.
-(22784, 4408, 1), -- HP Increase (1x)
-(22784, 4409, 1), -- MP Increase (1x)
-(22784, 4410, 7), -- Weak P. Atk.
-(22784, 4411, 14), -- Strong M. Atk.
-(22784, 4412, 6), -- Very Weak P. Def.
-(22784, 4413, 17), -- Very Strong M. Def.
-(22784, 4414, 2), -- Standard Type
-(22784, 4415, 1), -- Bare Hands
-(22784, 4416, 6), -- Humanoids
+(22784, 4071, 5), -- Resist Archery
+(22784, 4116, 9), -- Resist M.Atk
+(22784, 4408, 1), -- HP Modifiers
+(22784, 4409, 1), -- MP Modifiers
+(22784, 4410, 7), -- P. Atk. Modifiers
+(22784, 4411, 14), -- M. Atk. Modifiers
+(22784, 4412, 6), -- P. Def. Modifiers
+(22784, 4413, 17), -- M. Def. Modifiers
+(22784, 4414, 2), -- Armor Type
+(22784, 4415, 1), -- Weapon Type
+(22784, 4416, 6), -- Races
 (22784, 4458, 1), -- Spear Weapon Weak Point
 (22784, 5462, 1), -- Fire Attacks
 (22784, 5620, 9), -- Short-Range Physical Attack Weakness
 (22784, 5663, 5), -- Resistance to Ancient Sword
 (22784, 6333, 1), -- Electric Bolt 1
 -- Sel Mahum Soldier
-(22785, 4071, 5), -- Resist Bow/Crossbow Weapons
-(22785, 4116, 9), -- Resist M. Atk.
-(22785, 4408, 1), -- HP Increase (1x)
-(22785, 4409, 1), -- MP Increase (1x)
-(22785, 4410, 6), -- Very Weak P. Atk.
-(22785, 4411, 11), -- Average M. Atk.
-(22785, 4412, 4), -- Extremely Weak P. Def.
-(22785, 4413, 15), -- Strong M. Def.
-(22785, 4414, 2), -- Standard Type
-(22785, 4415, 1), -- Bare Hands
-(22785, 4416, 6), -- Humanoids
+(22785, 4071, 5), -- Resist Archery
+(22785, 4116, 9), -- Resist M.Atk
+(22785, 4408, 1), -- HP Modifiers
+(22785, 4409, 1), -- MP Modifiers
+(22785, 4410, 6), -- P. Atk. Modifiers
+(22785, 4411, 11), -- M. Atk. Modifiers
+(22785, 4412, 4), -- P. Def. Modifiers
+(22785, 4413, 15), -- M. Def. Modifiers
+(22785, 4414, 2), -- Armor Type
+(22785, 4415, 1), -- Weapon Type
+(22785, 4416, 6), -- Races
 (22785, 4458, 1), -- Spear Weapon Weak Point
 (22785, 5462, 1), -- Fire Attacks
 (22785, 5620, 9), -- Short-Range Physical Attack Weakness
 (22785, 5663, 5), -- Resistance to Ancient Sword
 (22785, 6334, 1), -- Shock
 -- Sel Mahum Squad Leader
-(22786, 4071, 5), -- Resist Bow/Crossbow Weapons
-(22786, 4116, 9), -- Resist M. Atk.
-(22786, 4408, 10), -- HP Increase (2x)
-(22786, 4409, 1), -- MP Increase (1x)
-(22786, 4410, 7), -- Weak P. Atk.
-(22786, 4411, 11), -- Average M. Atk.
-(22786, 4412, 5), -- Very Weak P. Def.
-(22786, 4413, 15), -- Strong M. Def.
-(22786, 4414, 2), -- Standard Type
-(22786, 4415, 3), -- One-handed Sword
-(22786, 4416, 6), -- Humanoids
+(22786, 4071, 5), -- Resist Archery
+(22786, 4116, 9), -- Resist M.Atk
+(22786, 4408, 10), -- HP Modifiers
+(22786, 4409, 1), -- MP Modifiers
+(22786, 4410, 7), -- P. Atk. Modifiers
+(22786, 4411, 11), -- M. Atk. Modifiers
+(22786, 4412, 5), -- P. Def. Modifiers
+(22786, 4413, 15), -- M. Def. Modifiers
+(22786, 4414, 2), -- Armor Type
+(22786, 4415, 3), -- Weapon Type
+(22786, 4416, 6), -- Races
 (22786, 4458, 1), -- Spear Weapon Weak Point
 (22786, 5462, 1), -- Fire Attacks
 (22786, 5620, 9), -- Short-Range Physical Attack Weakness
@@ -59203,17 +59203,17 @@ INSERT INTO `npcskills` VALUES
 (22786, 6335, 1), -- Electric Rain 1
 (22786, 6337, 1), -- Red Slash 1
 -- Sel Mahum Squad Leader
-(22787, 4071, 5), -- Resist Bow/Crossbow Weapons
-(22787, 4116, 9), -- Resist M. Atk.
-(22787, 4408, 10), -- HP Increase (2x)
-(22787, 4409, 1), -- MP Increase (1x)
-(22787, 4410, 7), -- Weak P. Atk.
-(22787, 4411, 11), -- Average M. Atk.
-(22787, 4412, 5), -- Very Weak P. Def.
-(22787, 4413, 15), -- Strong M. Def.
-(22787, 4414, 2), -- Standard Type
-(22787, 4415, 3), -- One-handed Sword
-(22787, 4416, 6), -- Humanoids
+(22787, 4071, 5), -- Resist Archery
+(22787, 4116, 9), -- Resist M.Atk
+(22787, 4408, 10), -- HP Modifiers
+(22787, 4409, 1), -- MP Modifiers
+(22787, 4410, 7), -- P. Atk. Modifiers
+(22787, 4411, 11), -- M. Atk. Modifiers
+(22787, 4412, 5), -- P. Def. Modifiers
+(22787, 4413, 15), -- M. Def. Modifiers
+(22787, 4414, 2), -- Armor Type
+(22787, 4415, 3), -- Weapon Type
+(22787, 4416, 6), -- Races
 (22787, 4458, 1), -- Spear Weapon Weak Point
 (22787, 5462, 1), -- Fire Attacks
 (22787, 5620, 9), -- Short-Range Physical Attack Weakness
@@ -59221,81 +59221,81 @@ INSERT INTO `npcskills` VALUES
 (22787, 6339, 1), -- Sacred Hammer Attack
 (22787, 6340, 1), -- Shock
 -- Sel Mahum Squad Leader
-(22788, 4071, 5), -- Resist Bow/Crossbow Weapons
-(22788, 4116, 9), -- Resist M. Atk.
-(22788, 4408, 10), -- HP Increase (2x)
-(22788, 4409, 1), -- MP Increase (1x)
-(22788, 4410, 7), -- Weak P. Atk.
-(22788, 4411, 11), -- Average M. Atk.
-(22788, 4412, 5), -- Very Weak P. Def.
-(22788, 4413, 15), -- Strong M. Def.
-(22788, 4414, 2), -- Standard Type
-(22788, 4415, 1), -- Bare Hands
-(22788, 4416, 6), -- Humanoids
+(22788, 4071, 5), -- Resist Archery
+(22788, 4116, 9), -- Resist M.Atk
+(22788, 4408, 10), -- HP Modifiers
+(22788, 4409, 1), -- MP Modifiers
+(22788, 4410, 7), -- P. Atk. Modifiers
+(22788, 4411, 11), -- M. Atk. Modifiers
+(22788, 4412, 5), -- P. Def. Modifiers
+(22788, 4413, 15), -- M. Def. Modifiers
+(22788, 4414, 2), -- Armor Type
+(22788, 4415, 1), -- Weapon Type
+(22788, 4416, 6), -- Races
 (22788, 4458, 1), -- Spear Weapon Weak Point
 (22788, 5462, 1), -- Fire Attacks
 (22788, 5620, 9), -- Short-Range Physical Attack Weakness
 (22788, 5663, 5), -- Resistance to Ancient Sword
 (22788, 6333, 1), -- Electric Bolt 1
 -- Guide Solina
-(22789, 4276, 5), -- Weak Point against Bow/Crossbow Weapons
-(22789, 4408, 10), -- HP Increase (2x)
-(22789, 4409, 1), -- MP Increase (1x)
-(22789, 4410, 12), -- Slightly Strong P. Atk.
-(22789, 4411, 13), -- Slightly Strong M. Atk.
-(22789, 4412, 7), -- Weak P. Def.
-(22789, 4413, 8), -- Weak M. Def.
-(22789, 4414, 2), -- Standard Type
-(22789, 4415, 5), -- Blunt Weapons
-(22789, 4416, 8), -- Angels
+(22789, 4276, 5), -- Archery Attack Weak Point
+(22789, 4408, 10), -- HP Modifiers
+(22789, 4409, 1), -- MP Modifiers
+(22789, 4410, 12), -- P. Atk. Modifiers
+(22789, 4411, 13), -- M. Atk. Modifiers
+(22789, 4412, 7), -- P. Def. Modifiers
+(22789, 4413, 8), -- M. Def. Modifiers
+(22789, 4414, 2), -- Armor Type
+(22789, 4415, 5), -- Weapon Type
+(22789, 4416, 8), -- Races
 (22789, 4445, 3), -- Greater Resist Spear Weapons
 (22789, 5466, 1), -- Holy Attacks
 (22789, 5620, 4), -- Short-Range Physical Attack Weakness
 (22789, 6303, 1), -- Trial of the Coup
 (22789, 6304, 1), -- Shock
 -- Seeker Solina
-(22790, 4276, 5), -- Weak Point against Bow/Crossbow Weapons
-(22790, 4408, 10), -- HP Increase (2x)
-(22790, 4409, 1), -- MP Increase (1x)
-(22790, 4410, 13), -- Slightly Strong P. Atk.
-(22790, 4411, 14), -- Strong M. Atk.
-(22790, 4412, 8), -- Weak P. Def.
-(22790, 4413, 9), -- Slightly Weak M. Def.
-(22790, 4414, 2), -- Standard Type
-(22790, 4415, 3), -- One-handed Sword
-(22790, 4416, 8), -- Angels
+(22790, 4276, 5), -- Archery Attack Weak Point
+(22790, 4408, 10), -- HP Modifiers
+(22790, 4409, 1), -- MP Modifiers
+(22790, 4410, 13), -- P. Atk. Modifiers
+(22790, 4411, 14), -- M. Atk. Modifiers
+(22790, 4412, 8), -- P. Def. Modifiers
+(22790, 4413, 9), -- M. Def. Modifiers
+(22790, 4414, 2), -- Armor Type
+(22790, 4415, 3), -- Weapon Type
+(22790, 4416, 8), -- Races
 (22790, 4445, 3), -- Greater Resist Spear Weapons
 (22790, 5466, 1), -- Holy Attacks
 (22790, 5620, 4), -- Short-Range Physical Attack Weakness
 (22790, 6305, 1), -- Sacred Gnosis
 (22790, 6306, 1), -- Solina Strike
 -- Savior Solina
-(22791, 4276, 5), -- Weak Point against Bow/Crossbow Weapons
-(22791, 4408, 10), -- HP Increase (2x)
-(22791, 4409, 1), -- MP Increase (1x)
-(22791, 4410, 13), -- Slightly Strong P. Atk.
-(22791, 4411, 14), -- Strong M. Atk.
-(22791, 4412, 8), -- Weak P. Def.
-(22791, 4413, 9), -- Slightly Weak M. Def.
-(22791, 4414, 3), -- Light Armor Type
-(22791, 4415, 3), -- One-handed Sword
-(22791, 4416, 8), -- Angels
+(22791, 4276, 5), -- Archery Attack Weak Point
+(22791, 4408, 10), -- HP Modifiers
+(22791, 4409, 1), -- MP Modifiers
+(22791, 4410, 13), -- P. Atk. Modifiers
+(22791, 4411, 14), -- M. Atk. Modifiers
+(22791, 4412, 8), -- P. Def. Modifiers
+(22791, 4413, 9), -- M. Def. Modifiers
+(22791, 4414, 3), -- Armor Type
+(22791, 4415, 3), -- Weapon Type
+(22791, 4416, 8), -- Races
 (22791, 4445, 3), -- Greater Resist Spear Weapons
 (22791, 5466, 1), -- Holy Attacks
 (22791, 5620, 4), -- Short-Range Physical Attack Weakness
 (22791, 6307, 1), -- Opus of the Hand
 (22791, 6308, 1), -- Opus of the Wave
 -- Disciple Solina
-(22792, 4276, 5), -- Weak Point against Bow/Crossbow Weapons
-(22792, 4408, 10), -- HP Increase (2x)
-(22792, 4409, 1), -- MP Increase (1x)
-(22792, 4410, 13), -- Slightly Strong P. Atk.
-(22792, 4411, 13), -- Slightly Strong M. Atk.
-(22792, 4412, 9), -- Slightly Weak P. Def.
-(22792, 4413, 10), -- Slightly Weak M. Def.
-(22792, 4414, 2), -- Standard Type
-(22792, 4415, 5), -- Blunt Weapons
-(22792, 4416, 14), -- Humans
+(22792, 4276, 5), -- Archery Attack Weak Point
+(22792, 4408, 10), -- HP Modifiers
+(22792, 4409, 1), -- MP Modifiers
+(22792, 4410, 13), -- P. Atk. Modifiers
+(22792, 4411, 13), -- M. Atk. Modifiers
+(22792, 4412, 9), -- P. Def. Modifiers
+(22792, 4413, 10), -- M. Def. Modifiers
+(22792, 4414, 2), -- Armor Type
+(22792, 4415, 5), -- Weapon Type
+(22792, 4416, 14), -- Races
 (22792, 4445, 3), -- Greater Resist Spear Weapons
 (22792, 5466, 1), -- Holy Attacks
 (22792, 5620, 4), -- Short-Range Physical Attack Weakness
@@ -59303,31 +59303,31 @@ INSERT INTO `npcskills` VALUES
 (22792, 6677, 1), -- Hold
 (22792, 6678, 1), -- Hold Cancel
 -- Ascetic Solina
-(22793, 4276, 5), -- Weak Point against Bow/Crossbow Weapons
-(22793, 4408, 10), -- HP Increase (2x)
-(22793, 4409, 1), -- MP Increase (1x)
-(22793, 4410, 14), -- Strong P. Atk.
-(22793, 4411, 13), -- Slightly Strong M. Atk.
-(22793, 4412, 9), -- Slightly Weak P. Def.
-(22793, 4413, 10), -- Slightly Weak M. Def.
-(22793, 4414, 2), -- Standard Type
-(22793, 4415, 5), -- Blunt Weapons
-(22793, 4416, 8), -- Angels
+(22793, 4276, 5), -- Archery Attack Weak Point
+(22793, 4408, 10), -- HP Modifiers
+(22793, 4409, 1), -- MP Modifiers
+(22793, 4410, 14), -- P. Atk. Modifiers
+(22793, 4411, 13), -- M. Atk. Modifiers
+(22793, 4412, 9), -- P. Def. Modifiers
+(22793, 4413, 10), -- M. Def. Modifiers
+(22793, 4414, 2), -- Armor Type
+(22793, 4415, 5), -- Weapon Type
+(22793, 4416, 8), -- Races
 (22793, 4445, 3), -- Greater Resist Spear Weapons
 (22793, 5466, 1), -- Holy Attacks
 (22793, 5620, 4), -- Short-Range Physical Attack Weakness
 (22793, 6310, 1), -- Loss of Quest
 -- Divinity Judge
-(22794, 4276, 5), -- Weak Point against Bow/Crossbow Weapons
-(22794, 4408, 1), -- HP Increase (1x)
-(22794, 4409, 1), -- MP Increase (1x)
-(22794, 4410, 15), -- Strong P. Atk.
-(22794, 4411, 14), -- Strong M. Atk.
-(22794, 4412, 14), -- Strong P. Def.
-(22794, 4413, 13), -- Slightly Strong M. Def.
-(22794, 4414, 3), -- Light Armor Type
-(22794, 4415, 3), -- One-handed Sword
-(22794, 4416, 8), -- Angels
+(22794, 4276, 5), -- Archery Attack Weak Point
+(22794, 4408, 1), -- HP Modifiers
+(22794, 4409, 1), -- MP Modifiers
+(22794, 4410, 15), -- P. Atk. Modifiers
+(22794, 4411, 14), -- M. Atk. Modifiers
+(22794, 4412, 14), -- P. Def. Modifiers
+(22794, 4413, 13), -- M. Def. Modifiers
+(22794, 4414, 3), -- Armor Type
+(22794, 4415, 3), -- Weapon Type
+(22794, 4416, 8), -- Races
 (22794, 4441, 5), -- Greater Resist Mental Derangement
 (22794, 4458, 2), -- Spear Weapon Weak Point
 (22794, 5466, 1), -- Holy Attacks
@@ -59335,101 +59335,101 @@ INSERT INTO `npcskills` VALUES
 (22794, 6314, 1), -- Sacred Judgement
 (22794, 6315, 1), -- Sacred Strike
 -- Divinity Manager
-(22795, 4276, 5), -- Weak Point against Bow/Crossbow Weapons
-(22795, 4408, 1), -- HP Increase (1x)
-(22795, 4409, 1), -- MP Increase (1x)
-(22795, 4410, 14), -- Strong P. Atk.
-(22795, 4411, 15), -- Strong M. Atk.
-(22795, 4412, 13), -- Slightly Strong P. Def.
-(22795, 4413, 14), -- Strong M. Def.
-(22795, 4414, 2), -- Standard Type
-(22795, 4415, 11), -- Spears
-(22795, 4416, 8), -- Angels
+(22795, 4276, 5), -- Archery Attack Weak Point
+(22795, 4408, 1), -- HP Modifiers
+(22795, 4409, 1), -- MP Modifiers
+(22795, 4410, 14), -- P. Atk. Modifiers
+(22795, 4411, 15), -- M. Atk. Modifiers
+(22795, 4412, 13), -- P. Def. Modifiers
+(22795, 4413, 14), -- M. Def. Modifiers
+(22795, 4414, 2), -- Armor Type
+(22795, 4415, 11), -- Weapon Type
+(22795, 4416, 8), -- Races
 (22795, 4441, 5), -- Greater Resist Mental Derangement
 (22795, 4458, 2), -- Spear Weapon Weak Point
 (22795, 5466, 1), -- Holy Attacks
 (22795, 6309, 1), -- Pain of the Ascetic
 (22795, 6316, 1), -- Accomplish of Authority
 -- Divinity Supervisor
-(22796, 4276, 5), -- Weak Point against Bow/Crossbow Weapons
-(22796, 4408, 1), -- HP Increase (1x)
-(22796, 4409, 1), -- MP Increase (1x)
-(22796, 4410, 15), -- Strong P. Atk.
-(22796, 4411, 15), -- Strong M. Atk.
-(22796, 4412, 13), -- Slightly Strong P. Def.
-(22796, 4413, 14), -- Strong M. Def.
-(22796, 4414, 2), -- Standard Type
-(22796, 4415, 11), -- Spears
-(22796, 4416, 8), -- Angels
+(22796, 4276, 5), -- Archery Attack Weak Point
+(22796, 4408, 1), -- HP Modifiers
+(22796, 4409, 1), -- MP Modifiers
+(22796, 4410, 15), -- P. Atk. Modifiers
+(22796, 4411, 15), -- M. Atk. Modifiers
+(22796, 4412, 13), -- P. Def. Modifiers
+(22796, 4413, 14), -- M. Def. Modifiers
+(22796, 4414, 2), -- Armor Type
+(22796, 4415, 11), -- Weapon Type
+(22796, 4416, 8), -- Races
 (22796, 4441, 5), -- Greater Resist Mental Derangement
 (22796, 4458, 2), -- Spear Weapon Weak Point
 (22796, 5466, 1), -- Holy Attacks
 (22796, 6317, 1), -- Sacred Tacit
 -- Divinity Worshipper
-(22797, 4276, 5), -- Weak Point against Bow/Crossbow Weapons
-(22797, 4408, 1), -- HP Increase (1x)
-(22797, 4409, 1), -- MP Increase (1x)
-(22797, 4410, 14), -- Strong P. Atk.
-(22797, 4411, 14), -- Strong M. Atk.
-(22797, 4412, 13), -- Slightly Strong P. Def.
-(22797, 4413, 13), -- Slightly Strong M. Def.
-(22797, 4414, 3), -- Light Armor Type
-(22797, 4415, 3), -- One-handed Sword
-(22797, 4416, 8), -- Angels
+(22797, 4276, 5), -- Archery Attack Weak Point
+(22797, 4408, 1), -- HP Modifiers
+(22797, 4409, 1), -- MP Modifiers
+(22797, 4410, 14), -- P. Atk. Modifiers
+(22797, 4411, 14), -- M. Atk. Modifiers
+(22797, 4412, 13), -- P. Def. Modifiers
+(22797, 4413, 13), -- M. Def. Modifiers
+(22797, 4414, 3), -- Armor Type
+(22797, 4415, 3), -- Weapon Type
+(22797, 4416, 8), -- Races
 (22797, 4441, 5), -- Greater Resist Mental Derangement
 (22797, 4458, 2), -- Spear Weapon Weak Point
 (22797, 5466, 1), -- Holy Attacks
 (22797, 5620, 9), -- Short-Range Physical Attack Weakness
 (22797, 6327, 1), -- Sacred Worship
 -- Divinity Protector
-(22798, 4276, 4), -- Weak Point against Bow/Crossbow Weapons
-(22798, 4285, 4), -- Resist Sleep Attacks
-(22798, 4287, 4), -- Resist Hold Attacks
-(22798, 4408, 10), -- HP Increase (2x)
-(22798, 4409, 1), -- MP Increase (1x)
-(22798, 4410, 17), -- Very Strong P. Atk.
-(22798, 4411, 16), -- Very Strong M. Atk.
-(22798, 4412, 6), -- Very Weak P. Def.
-(22798, 4413, 13), -- Slightly Strong M. Def.
-(22798, 4414, 2), -- Standard Type
-(22798, 4415, 5), -- Blunt Weapons
-(22798, 4416, 8), -- Angels
+(22798, 4276, 4), -- Archery Attack Weak Point
+(22798, 4285, 4), -- Resist Sleep
+(22798, 4287, 4), -- Resist Hold
+(22798, 4408, 10), -- HP Modifiers
+(22798, 4409, 1), -- MP Modifiers
+(22798, 4410, 17), -- P. Atk. Modifiers
+(22798, 4411, 16), -- M. Atk. Modifiers
+(22798, 4412, 6), -- P. Def. Modifiers
+(22798, 4413, 13), -- M. Def. Modifiers
+(22798, 4414, 2), -- Armor Type
+(22798, 4415, 5), -- Weapon Type
+(22798, 4416, 8), -- Races
 (22798, 4441, 5), -- Greater Resist Mental Derangement
 (22798, 5466, 1), -- Holy Attacks
 (22798, 6316, 1), -- Accomplish of Authority
 (22798, 6318, 1), -- Divine Shield Protection
 (22798, 6319, 1), -- Sacred Magic Protection
-(22798, 6502, 17), -- Holy Shot
-(22798, 6686, 1), -- Holy Protector Cancel
+(22798, 6502, 17), -- NPC holy shot
+(22798, 6686, 1), -- Sacred Protector Cancel
 -- Divinity Fighter
-(22799, 4276, 4), -- Weak Point against Bow/Crossbow Weapons
-(22799, 4285, 4), -- Resist Sleep Attacks
-(22799, 4287, 4), -- Resist Hold Attacks
-(22799, 4408, 10), -- HP Increase (2x)
-(22799, 4409, 1), -- MP Increase (1x)
-(22799, 4410, 16), -- Very Strong P. Atk.
-(22799, 4411, 15), -- Strong M. Atk.
-(22799, 4412, 12), -- Slightly Strong P. Def.
-(22799, 4413, 11), -- Average M. Def.
-(22799, 4414, 2), -- Standard Type
-(22799, 4415, 3), -- One-handed Sword
-(22799, 4416, 8), -- Angels
+(22799, 4276, 4), -- Archery Attack Weak Point
+(22799, 4285, 4), -- Resist Sleep
+(22799, 4287, 4), -- Resist Hold
+(22799, 4408, 10), -- HP Modifiers
+(22799, 4409, 1), -- MP Modifiers
+(22799, 4410, 16), -- P. Atk. Modifiers
+(22799, 4411, 15), -- M. Atk. Modifiers
+(22799, 4412, 12), -- P. Def. Modifiers
+(22799, 4413, 11), -- M. Def. Modifiers
+(22799, 4414, 2), -- Armor Type
+(22799, 4415, 3), -- Weapon Type
+(22799, 4416, 8), -- Races
 (22799, 4441, 5), -- Greater Resist Mental Derangement
 (22799, 5466, 1), -- Holy Attacks
 (22799, 6328, 1), -- Fighter Judgement
 (22799, 6329, 1), -- Fighter Strike
 -- Divinity Magus
-(22800, 4285, 4), -- Resist Sleep Attacks
-(22800, 4287, 4), -- Resist Hold Attacks
-(22800, 4408, 10), -- HP Increase (2x)
-(22800, 4409, 1), -- MP Increase (1x)
-(22800, 4410, 16), -- Very Strong P. Atk.
-(22800, 4411, 17), -- Very Strong M. Atk.
-(22800, 4412, 16), -- Very Strong P. Def.
-(22800, 4413, 3), -- Extremely Weak M. Def.
-(22800, 4414, 2), -- Standard Type
-(22800, 4415, 3), -- One-handed Sword
-(22800, 4416, 8), -- Angels
+(22800, 4285, 4), -- Resist Sleep
+(22800, 4287, 4), -- Resist Hold
+(22800, 4408, 10), -- HP Modifiers
+(22800, 4409, 1), -- MP Modifiers
+(22800, 4410, 16), -- P. Atk. Modifiers
+(22800, 4411, 17), -- M. Atk. Modifiers
+(22800, 4412, 16), -- P. Def. Modifiers
+(22800, 4413, 3), -- M. Def. Modifiers
+(22800, 4414, 2), -- Armor Type
+(22800, 4415, 3), -- Weapon Type
+(22800, 4416, 8), -- Races
 (22800, 4441, 5), -- Greater Resist Mental Derangement
 (22800, 5466, 1), -- Holy Attacks
 (22800, 5601, 3), -- Short-Range Physical Attack Resistance
@@ -59437,7438 +59437,7697 @@ INSERT INTO `npcskills` VALUES
 (22800, 6321, 1), -- Divine Flash
 (22800, 6322, 1), -- Divine Impact
 -- Cruel Pincer Golem
-(22801, 4276, 2), -- Weak Point against Bow/Crossbow Weapons
-(22801, 4408, 1), -- HP Increase (1x)
-(22801, 4409, 1), -- MP Increase (1x)
-(22801, 4410, 15), -- Strong P. Atk.
-(22801, 4411, 14), -- Strong M. Atk.
-(22801, 4412, 11), -- Average P. Def.
-(22801, 4413, 8), -- Weak M. Def.
-(22801, 4414, 2), -- Standard Type
-(22801, 4415, 3), -- One-handed Sword
-(22801, 4416, 2), -- Magic Creatures
-(22801, 6598, 9), -- Earth Attack
+(22801, 4276, 2), -- Archery Attack Weak Point
+(22801, 4408, 1), -- HP Modifiers
+(22801, 4409, 1), -- MP Modifiers
+(22801, 4410, 15), -- P. Atk. Modifiers
+(22801, 4411, 14), -- M. Atk. Modifiers
+(22801, 4412, 11), -- P. Def. Modifiers
+(22801, 4413, 8), -- M. Def. Modifiers
+(22801, 4414, 2), -- Armor Type
+(22801, 4415, 3), -- Weapon Type
+(22801, 4416, 2), -- Races
+(22801, 6598, 9), -- NPC earth attack
 -- Cruel Pincer Golem
-(22802, 4276, 4), -- Weak Point against Bow/Crossbow Weapons
-(22802, 4408, 1), -- HP Increase (1x)
-(22802, 4409, 1), -- MP Increase (1x)
-(22802, 4410, 11), -- Average P. Atk.
-(22802, 4411, 11), -- Average M. Atk.
-(22802, 4412, 6), -- Very Weak P. Def.
-(22802, 4413, 18), -- Extremely Strong M. Def.
-(22802, 4414, 2), -- Standard Type
-(22802, 4415, 3), -- One-handed Sword
-(22802, 4416, 2), -- Magic Creatures
+(22802, 4276, 4), -- Archery Attack Weak Point
+(22802, 4408, 1), -- HP Modifiers
+(22802, 4409, 1), -- MP Modifiers
+(22802, 4410, 11), -- P. Atk. Modifiers
+(22802, 4411, 11), -- M. Atk. Modifiers
+(22802, 4412, 6), -- P. Def. Modifiers
+(22802, 4413, 18), -- M. Def. Modifiers
+(22802, 4414, 2), -- Armor Type
+(22802, 4415, 3), -- Weapon Type
+(22802, 4416, 2), -- Races
 (22802, 5620, 9), -- Short-Range Physical Attack Weakness
-(22802, 6598, 9), -- Earth Attack
+(22802, 6598, 9), -- NPC earth attack
 -- Cruel Pincer Golem
-(22803, 4408, 1), -- HP Increase (1x)
-(22803, 4409, 1), -- MP Increase (1x)
-(22803, 4410, 11), -- Average P. Atk.
-(22803, 4411, 11), -- Average M. Atk.
-(22803, 4412, 18), -- Extremely Strong P. Def.
-(22803, 4413, 4), -- Extremely Weak M. Def.
-(22803, 4414, 2), -- Standard Type
-(22803, 4415, 3), -- One-handed Sword
-(22803, 4416, 2), -- Magic Creatures
-(22803, 6598, 9), -- Earth Attack
+(22803, 4408, 1), -- HP Modifiers
+(22803, 4409, 1), -- MP Modifiers
+(22803, 4410, 11), -- P. Atk. Modifiers
+(22803, 4411, 11), -- M. Atk. Modifiers
+(22803, 4412, 18), -- P. Def. Modifiers
+(22803, 4413, 4), -- M. Def. Modifiers
+(22803, 4414, 2), -- Armor Type
+(22803, 4415, 3), -- Weapon Type
+(22803, 4416, 2), -- Races
+(22803, 6598, 9), -- NPC earth attack
 -- Horrifying Jackhammer Golem
-(22804, 4276, 2), -- Weak Point against Bow/Crossbow Weapons
-(22804, 4408, 1), -- HP Increase (1x)
-(22804, 4409, 1), -- MP Increase (1x)
-(22804, 4410, 15), -- Strong P. Atk.
-(22804, 4411, 14), -- Strong M. Atk.
-(22804, 4412, 11), -- Average P. Def.
-(22804, 4413, 8), -- Weak M. Def.
-(22804, 4414, 2), -- Standard Type
-(22804, 4415, 3), -- One-handed Sword
-(22804, 4416, 2), -- Magic Creatures
-(22804, 6599, 9), -- Earth Attack
+(22804, 4276, 2), -- Archery Attack Weak Point
+(22804, 4408, 1), -- HP Modifiers
+(22804, 4409, 1), -- MP Modifiers
+(22804, 4410, 15), -- P. Atk. Modifiers
+(22804, 4411, 14), -- M. Atk. Modifiers
+(22804, 4412, 11), -- P. Def. Modifiers
+(22804, 4413, 8), -- M. Def. Modifiers
+(22804, 4414, 2), -- Armor Type
+(22804, 4415, 3), -- Weapon Type
+(22804, 4416, 2), -- Races
+(22804, 6599, 9), -- NPC earth attack
 -- Horrifying Jackhammer Golem
-(22805, 4276, 4), -- Weak Point against Bow/Crossbow Weapons
-(22805, 4408, 1), -- HP Increase (1x)
-(22805, 4409, 1), -- MP Increase (1x)
-(22805, 4410, 11), -- Average P. Atk.
-(22805, 4411, 11), -- Average M. Atk.
-(22805, 4412, 6), -- Very Weak P. Def.
-(22805, 4413, 18), -- Extremely Strong M. Def.
-(22805, 4414, 2), -- Standard Type
-(22805, 4415, 3), -- One-handed Sword
-(22805, 4416, 2), -- Magic Creatures
+(22805, 4276, 4), -- Archery Attack Weak Point
+(22805, 4408, 1), -- HP Modifiers
+(22805, 4409, 1), -- MP Modifiers
+(22805, 4410, 11), -- P. Atk. Modifiers
+(22805, 4411, 11), -- M. Atk. Modifiers
+(22805, 4412, 6), -- P. Def. Modifiers
+(22805, 4413, 18), -- M. Def. Modifiers
+(22805, 4414, 2), -- Armor Type
+(22805, 4415, 3), -- Weapon Type
+(22805, 4416, 2), -- Races
 (22805, 5620, 9), -- Short-Range Physical Attack Weakness
-(22805, 6599, 9), -- Earth Attack
+(22805, 6599, 9), -- NPC earth attack
 -- Horrifying Jackhammer Golem
-(22806, 4408, 1), -- HP Increase (1x)
-(22806, 4409, 1), -- MP Increase (1x)
-(22806, 4410, 11), -- Average P. Atk.
-(22806, 4411, 11), -- Average M. Atk.
-(22806, 4412, 18), -- Extremely Strong P. Def.
-(22806, 4413, 4), -- Extremely Weak M. Def.
-(22806, 4414, 2), -- Standard Type
-(22806, 4415, 3), -- One-handed Sword
-(22806, 4416, 2), -- Magic Creatures
-(22806, 6599, 9), -- Earth Attack
+(22806, 4408, 1), -- HP Modifiers
+(22806, 4409, 1), -- MP Modifiers
+(22806, 4410, 11), -- P. Atk. Modifiers
+(22806, 4411, 11), -- M. Atk. Modifiers
+(22806, 4412, 18), -- P. Def. Modifiers
+(22806, 4413, 4), -- M. Def. Modifiers
+(22806, 4414, 2), -- Armor Type
+(22806, 4415, 3), -- Weapon Type
+(22806, 4416, 2), -- Races
+(22806, 6599, 9), -- NPC earth attack
 -- Scout-type Golem No. 28
-(22807, 4156, 7), -- Beam Cannon
-(22807, 4276, 4), -- Weak Point against Bow/Crossbow Weapons
-(22807, 4408, 1), -- HP Increase (1x)
-(22807, 4409, 1), -- MP Increase (1x)
-(22807, 4410, 13), -- Slightly Strong P. Atk.
-(22807, 4411, 15), -- Strong M. Atk.
-(22807, 4412, 11), -- Average P. Def.
-(22807, 4413, 9), -- Slightly Weak M. Def.
-(22807, 4414, 2), -- Standard Type
-(22807, 4415, 3), -- One-handed Sword
-(22807, 4416, 2), -- Magic Creatures
-(22807, 6610, 9), -- Earth Magic
+(22807, 4156, 7), -- NPC Curve Beam Cannon - Magic
+(22807, 4276, 4), -- Archery Attack Weak Point
+(22807, 4408, 1), -- HP Modifiers
+(22807, 4409, 1), -- MP Modifiers
+(22807, 4410, 13), -- P. Atk. Modifiers
+(22807, 4411, 15), -- M. Atk. Modifiers
+(22807, 4412, 11), -- P. Def. Modifiers
+(22807, 4413, 9), -- M. Def. Modifiers
+(22807, 4414, 2), -- Armor Type
+(22807, 4415, 3), -- Weapon Type
+(22807, 4416, 2), -- Races
+(22807, 6610, 9), -- NPC earth magic
 -- Scout-type Golem No. 2
-(22808, 4156, 7), -- Beam Cannon
-(22808, 4276, 4), -- Weak Point against Bow/Crossbow Weapons
-(22808, 4408, 1), -- HP Increase (1x)
-(22808, 4409, 1), -- MP Increase (1x)
-(22808, 4410, 8), -- Weak P. Atk.
-(22808, 4411, 7), -- Weak M. Atk.
-(22808, 4412, 11), -- Average P. Def.
-(22808, 4413, 9), -- Slightly Weak M. Def.
-(22808, 4414, 2), -- Standard Type
-(22808, 4415, 3), -- One-handed Sword
-(22808, 4416, 2), -- Magic Creatures
-(22808, 6597, 9), -- Earth Attack
+(22808, 4156, 7), -- NPC Curve Beam Cannon - Magic
+(22808, 4276, 4), -- Archery Attack Weak Point
+(22808, 4408, 1), -- HP Modifiers
+(22808, 4409, 1), -- MP Modifiers
+(22808, 4410, 8), -- P. Atk. Modifiers
+(22808, 4411, 7), -- M. Atk. Modifiers
+(22808, 4412, 11), -- P. Def. Modifiers
+(22808, 4413, 9), -- M. Def. Modifiers
+(22808, 4414, 2), -- Armor Type
+(22808, 4415, 3), -- Weapon Type
+(22808, 4416, 2), -- Races
+(22808, 6597, 9), -- NPC earth attack
 -- Guard Golem
-(22809, 4156, 7), -- Beam Cannon
-(22809, 4276, 4), -- Weak Point against Bow/Crossbow Weapons
-(22809, 4408, 10), -- HP Increase (2x)
-(22809, 4409, 1), -- MP Increase (1x)
-(22809, 4410, 15), -- Strong P. Atk.
-(22809, 4411, 16), -- Very Strong M. Atk.
-(22809, 4412, 13), -- Slightly Strong P. Def.
-(22809, 4413, 14), -- Strong M. Def.
-(22809, 4414, 2), -- Standard Type
-(22809, 4415, 3), -- One-handed Sword
-(22809, 4416, 2), -- Magic Creatures
-(22809, 6599, 9), -- Earth Attack
+(22809, 4156, 7), -- NPC Curve Beam Cannon - Magic
+(22809, 4276, 4), -- Archery Attack Weak Point
+(22809, 4408, 10), -- HP Modifiers
+(22809, 4409, 1), -- MP Modifiers
+(22809, 4410, 15), -- P. Atk. Modifiers
+(22809, 4411, 16), -- M. Atk. Modifiers
+(22809, 4412, 13), -- P. Def. Modifiers
+(22809, 4413, 14), -- M. Def. Modifiers
+(22809, 4414, 2), -- Armor Type
+(22809, 4415, 3), -- Weapon Type
+(22809, 4416, 2), -- Races
+(22809, 6599, 9), -- NPC earth attack
 -- Micro Scout Golem
-(22810, 4156, 7), -- Beam Cannon
-(22810, 4276, 4), -- Weak Point against Bow/Crossbow Weapons
-(22810, 4408, 10), -- HP Increase (2x)
-(22810, 4409, 1), -- MP Increase (1x)
-(22810, 4410, 14), -- Strong P. Atk.
-(22810, 4411, 15), -- Strong M. Atk.
-(22810, 4412, 9), -- Slightly Weak P. Def.
-(22810, 4413, 8), -- Weak M. Def.
-(22810, 4414, 2), -- Standard Type
-(22810, 4415, 3), -- One-handed Sword
-(22810, 4416, 2), -- Magic Creatures
-(22810, 6599, 9), -- Earth Attack
+(22810, 4156, 7), -- NPC Curve Beam Cannon - Magic
+(22810, 4276, 4), -- Archery Attack Weak Point
+(22810, 4408, 10), -- HP Modifiers
+(22810, 4409, 1), -- MP Modifiers
+(22810, 4410, 14), -- P. Atk. Modifiers
+(22810, 4411, 15), -- M. Atk. Modifiers
+(22810, 4412, 9), -- P. Def. Modifiers
+(22810, 4413, 8), -- M. Def. Modifiers
+(22810, 4414, 2), -- Armor Type
+(22810, 4415, 3), -- Weapon Type
+(22810, 4416, 2), -- Races
+(22810, 6599, 9), -- NPC earth attack
 -- Great Chaos Golem
-(22811, 4276, 4), -- Weak Point against Bow/Crossbow Weapons
-(22811, 4408, 11), -- HP Increase (3x)
-(22811, 4409, 1), -- MP Increase (1x)
-(22811, 4410, 16), -- Very Strong P. Atk.
-(22811, 4411, 17), -- Very Strong M. Atk.
-(22811, 4412, 13), -- Slightly Strong P. Def.
-(22811, 4413, 14), -- Strong M. Def.
-(22811, 4414, 2), -- Standard Type
-(22811, 4415, 3), -- One-handed Sword
-(22811, 4416, 2), -- Magic Creatures
+(22811, 4276, 4), -- Archery Attack Weak Point
+(22811, 4408, 11), -- HP Modifiers
+(22811, 4409, 1), -- MP Modifiers
+(22811, 4410, 16), -- P. Atk. Modifiers
+(22811, 4411, 17), -- M. Atk. Modifiers
+(22811, 4412, 13), -- P. Def. Modifiers
+(22811, 4413, 14), -- M. Def. Modifiers
+(22811, 4414, 2), -- Armor Type
+(22811, 4415, 3), -- Weapon Type
+(22811, 4416, 2), -- Races
 (22811, 6262, 1), -- EMP Power
 -- Boom Golem
-(22812, 4276, 4), -- Weak Point against Bow/Crossbow Weapons
-(22812, 4408, 10), -- HP Increase (2x)
-(22812, 4409, 1), -- MP Increase (1x)
-(22812, 4410, 14), -- Strong P. Atk.
-(22812, 4411, 16), -- Very Strong M. Atk.
-(22812, 4412, 8), -- Weak P. Def.
-(22812, 4413, 7), -- Weak M. Def.
-(22812, 4414, 2), -- Standard Type
-(22812, 4415, 3), -- One-handed Sword
-(22812, 4416, 2), -- Magic Creatures
+(22812, 4276, 4), -- Archery Attack Weak Point
+(22812, 4408, 10), -- HP Modifiers
+(22812, 4409, 1), -- MP Modifiers
+(22812, 4410, 14), -- P. Atk. Modifiers
+(22812, 4411, 16), -- M. Atk. Modifiers
+(22812, 4412, 8), -- P. Def. Modifiers
+(22812, 4413, 7), -- M. Def. Modifiers
+(22812, 4414, 2), -- Armor Type
+(22812, 4415, 3), -- Weapon Type
+(22812, 4416, 2), -- Races
 (22812, 6264, 1), -- Golem Boom
 -- Demon's Banquet
-(22813, 4416, 1), -- Undead
+(22813, 4408, 1), -- HP Modifiers
+(22813, 4409, 1), -- MP Modifiers
+(22813, 4410, 11), -- P. Atk. Modifiers
+(22813, 4411, 11), -- M. Atk. Modifiers
+(22813, 4412, 11), -- P. Def. Modifiers
+(22813, 4414, 2), -- Armor Type
+(22813, 4415, 7), -- Weapon Type
+(22813, 4416, 1), -- Races
 (22813, 5467, 1), -- Dark Attacks
 -- Demon's Banquet
-(22814, 4416, 1), -- Undead
+(22814, 4408, 1), -- HP Modifiers
+(22814, 4409, 1), -- MP Modifiers
+(22814, 4410, 11), -- P. Atk. Modifiers
+(22814, 4411, 11), -- M. Atk. Modifiers
+(22814, 4412, 11), -- P. Def. Modifiers
+(22814, 4414, 2), -- Armor Type
+(22814, 4415, 7), -- Weapon Type
+(22814, 4416, 1), -- Races
 (22814, 5467, 1), -- Dark Attacks
 -- Drakos
-(22815, 4410, 15), -- Strong P. Atk.
-(22815, 4412, 13), -- Slightly Strong P. Def.
-(22815, 4413, 9), -- Slightly Weak M. Def.
-(22815, 4416, 1), -- Undead
+(22815, 4408, 10), -- HP Modifiers
+(22815, 4409, 1), -- MP Modifiers
+(22815, 4410, 15), -- P. Atk. Modifiers
+(22815, 4411, 11), -- M. Atk. Modifiers
+(22815, 4412, 13), -- P. Def. Modifiers
+(22815, 4413, 9), -- M. Def. Modifiers
+(22815, 4414, 2), -- Armor Type
+(22815, 4415, 19), -- Weapon Type
+(22815, 4416, 1), -- Races
 (22815, 5467, 1), -- Dark Attacks
 (22815, 6845, 1), -- Power Strike
 -- Maluk Maiden of the Valley
-(22816, 4413, 9), -- Slightly Weak M. Def.
-(22816, 4416, 9), -- Demons
+(22816, 4408, 1), -- HP Modifiers
+(22816, 4409, 1), -- MP Modifiers
+(22816, 4410, 11), -- P. Atk. Modifiers
+(22816, 4411, 11), -- M. Atk. Modifiers
+(22816, 4412, 11), -- P. Def. Modifiers
+(22816, 4413, 9), -- M. Def. Modifiers
+(22816, 4414, 2), -- Armor Type
+(22816, 4415, 3), -- Weapon Type
+(22816, 4416, 9), -- Races
 (22816, 5467, 1), -- Dark Attacks
 (22816, 6846, 1), -- Vampiric Claw
 -- Maluk Summoner of the Valley
-(22817, 4413, 9), -- Slightly Weak M. Def.
-(22817, 4416, 1), -- Undead
+(22817, 4408, 1), -- HP Modifiers
+(22817, 4409, 1), -- MP Modifiers
+(22817, 4410, 11), -- P. Atk. Modifiers
+(22817, 4411, 11), -- M. Atk. Modifiers
+(22817, 4412, 11), -- P. Def. Modifiers
+(22817, 4413, 9), -- M. Def. Modifiers
+(22817, 4414, 2), -- Armor Type
+(22817, 4415, 3), -- Weapon Type
+(22817, 4416, 1), -- Races
 (22817, 5467, 1), -- Dark Attacks
 (22817, 6849, 1), -- Summoner Strike
 -- Exploding Orc Ghost
-(22818, 4276, 4), -- Weak Point against Bow/Crossbow Weapons
-(22818, 4413, 8), -- Weak M. Def.
-(22818, 4414, 1), -- Heavy Armor Type
-(22818, 4416, 1), -- Undead
+(22818, 4276, 4), -- Archery Attack Weak Point
+(22818, 4408, 1), -- HP Modifiers
+(22818, 4409, 1), -- MP Modifiers
+(22818, 4410, 11), -- P. Atk. Modifiers
+(22818, 4411, 11), -- M. Atk. Modifiers
+(22818, 4412, 11), -- P. Def. Modifiers
+(22818, 4413, 8), -- M. Def. Modifiers
+(22818, 4414, 1), -- Armor Type
+(22818, 4415, 5), -- Weapon Type
+(22818, 4416, 1), -- Races
 (22818, 5467, 1), -- Dark Attacks
 (22818, 6850, 1), -- Self-destruction
 -- Wrathful Orc Ghost
-(22819, 4276, 4), -- Weak Point against Bow/Crossbow Weapons
-(22819, 4413, 8), -- Weak M. Def.
-(22819, 4414, 1), -- Heavy Armor Type
-(22819, 4416, 1), -- Undead
+(22819, 4276, 4), -- Archery Attack Weak Point
+(22819, 4408, 1), -- HP Modifiers
+(22819, 4409, 1), -- MP Modifiers
+(22819, 4410, 11), -- P. Atk. Modifiers
+(22819, 4411, 11), -- M. Atk. Modifiers
+(22819, 4412, 11), -- P. Def. Modifiers
+(22819, 4413, 8), -- M. Def. Modifiers
+(22819, 4414, 1), -- Armor Type
+(22819, 4415, 3), -- Weapon Type
+(22819, 4416, 1), -- Races
 (22819, 5467, 1), -- Dark Attacks
 (22819, 6851, 1), -- Power Strike
 (22819, 6852, 1), -- Magic Strike
 -- Mesmer Drake
-(22820, 4411, 13), -- Slightly Strong M. Atk.
-(22820, 4416, 10), -- Dragons
+(22820, 4408, 1), -- HP Modifiers
+(22820, 4409, 1), -- MP Modifiers
+(22820, 4410, 11), -- P. Atk. Modifiers
+(22820, 4411, 13), -- M. Atk. Modifiers
+(22820, 4412, 11), -- P. Def. Modifiers
+(22820, 4413, 11), -- M. Def. Modifiers
+(22820, 4414, 2), -- Armor Type
+(22820, 4415, 3), -- Weapon Type
+(22820, 4416, 10), -- Races
 (22820, 5467, 1), -- Dark Attacks
 (22820, 6853, 1), -- Sleep
 (22820, 6854, 1), -- Hold
 -- Immortal Necromancer
-(22821, 4411, 13), -- Slightly Strong M. Atk.
-(22821, 4416, 1), -- Undead
+(22821, 4408, 1), -- HP Modifiers
+(22821, 4409, 1), -- MP Modifiers
+(22821, 4410, 11), -- P. Atk. Modifiers
+(22821, 4411, 13), -- M. Atk. Modifiers
+(22821, 4412, 11), -- P. Def. Modifiers
+(22821, 4413, 11), -- M. Def. Modifiers
+(22821, 4414, 2), -- Armor Type
+(22821, 4415, 3), -- Weapon Type
+(22821, 4416, 1), -- Races
 (22821, 5467, 1), -- Dark Attacks
 (22821, 6855, 1), -- Magic Strike
 -- Drakos Warrior
-(22822, 4410, 15), -- Strong P. Atk.
-(22822, 4412, 17), -- Very Strong P. Def.
-(22822, 4413, 8), -- Weak M. Def.
-(22822, 4416, 10), -- Dragons
+(22822, 4408, 1), -- HP Modifiers
+(22822, 4409, 1), -- MP Modifiers
+(22822, 4410, 15), -- P. Atk. Modifiers
+(22822, 4411, 11), -- M. Atk. Modifiers
+(22822, 4412, 17), -- P. Def. Modifiers
+(22822, 4413, 7), -- M. Def. Modifiers
+(22822, 4414, 2), -- Armor Type
+(22822, 4415, 1), -- Weapon Type
+(22822, 4416, 10), -- Races
 (22822, 5462, 1), -- Fire Attacks
 (22822, 6857, 1), -- Power Strike
-(22822, 6858, 1), -- Summon
 -- Drakos Assassin
-(22823, 4410, 15), -- Strong P. Atk.
-(22823, 4412, 15), -- Strong P. Def.
-(22823, 4413, 5), -- Very Weak M. Def.
-(22823, 4416, 1), -- Undead
+(22823, 4408, 1), -- HP Modifiers
+(22823, 4409, 1), -- MP Modifiers
+(22823, 4410, 15), -- P. Atk. Modifiers
+(22823, 4411, 11), -- M. Atk. Modifiers
+(22823, 4412, 15), -- P. Def. Modifiers
+(22823, 4413, 5), -- M. Def. Modifiers
+(22823, 4414, 2), -- Armor Type
+(22823, 4415, 3), -- Weapon Type
+(22823, 4416, 1), -- Races
 (22823, 5462, 1), -- Fire Attacks
 (22823, 6859, 1), -- Power Strike
 -- Drakos Guardian
-(22824, 4285, 4), -- Resist Sleep Attacks
-(22824, 4287, 4), -- Resist Hold Attacks
-(22824, 4410, 16), -- Very Strong P. Atk.
-(22824, 4411, 15), -- Strong M. Atk.
-(22824, 4412, 16), -- Very Strong P. Def.
-(22824, 4413, 9), -- Slightly Weak M. Def.
-(22824, 4416, 10), -- Dragons
+(22824, 4285, 4), -- Resist Sleep
+(22824, 4287, 4), -- Resist Hold
+(22824, 4408, 1), -- HP Modifiers
+(22824, 4409, 1), -- MP Modifiers
+(22824, 4410, 16), -- P. Atk. Modifiers
+(22824, 4411, 15), -- M. Atk. Modifiers
+(22824, 4412, 16), -- P. Def. Modifiers
+(22824, 4413, 6), -- M. Def. Modifiers
+(22824, 4414, 2), -- Armor Type
+(22824, 4415, 1), -- Weapon Type
+(22824, 4416, 10), -- Races
 (22824, 4441, 5), -- Greater Resist Mental Derangement
 (22824, 5462, 1), -- Fire Attacks
 (22824, 6860, 1), -- Power Strike
 (22824, 6861, 1), -- Enhance
 -- Giant Noxious Scorpion
-(22825, 4274, 4), -- Blunt Weapon Weak Point
-(22825, 4285, 4), -- Resist Sleep Attacks
-(22825, 4287, 4), -- Resist Hold Attacks
-(22825, 4410, 15), -- Strong P. Atk.
-(22825, 4411, 14), -- Strong M. Atk.
-(22825, 4412, 16), -- Very Strong P. Def.
-(22825, 4413, 13), -- Slightly Strong M. Def.
-(22825, 4416, 12), -- Bugs
+(22825, 4274, 4), -- Blunt Attack Weak Point
+(22825, 4285, 4), -- Resist Sleep
+(22825, 4287, 4), -- Resist Hold
+(22825, 4408, 1), -- HP Modifiers
+(22825, 4409, 1), -- MP Modifiers
+(22825, 4410, 15), -- P. Atk. Modifiers
+(22825, 4411, 14), -- M. Atk. Modifiers
+(22825, 4412, 15), -- P. Def. Modifiers
+(22825, 4413, 5), -- M. Def. Modifiers
+(22825, 4414, 2), -- Armor Type
+(22825, 4415, 7), -- Weapon Type
+(22825, 4416, 12), -- Races
 (22825, 4441, 5), -- Greater Resist Mental Derangement
 (22825, 5467, 1), -- Dark Attacks
 (22825, 6862, 1), -- Poison
 (22825, 6863, 1), -- Poison
-(22825, 6864, 1), -- Summon
 -- Noxious Scorpion
-(22826, 4274, 4), -- Blunt Weapon Weak Point
-(22826, 4410, 13), -- Slightly Strong P. Atk.
-(22826, 4411, 14), -- Strong M. Atk.
-(22826, 4412, 15), -- Strong P. Def.
-(22826, 4413, 5), -- Very Weak M. Def.
-(22826, 4416, 12), -- Bugs
+(22826, 4274, 4), -- Blunt Attack Weak Point
+(22826, 4408, 1), -- HP Modifiers
+(22826, 4409, 1), -- MP Modifiers
+(22826, 4410, 13), -- P. Atk. Modifiers
+(22826, 4411, 14), -- M. Atk. Modifiers
+(22826, 4412, 14), -- P. Def. Modifiers
+(22826, 4413, 4), -- M. Def. Modifiers
+(22826, 4414, 2), -- Armor Type
+(22826, 4415, 7), -- Weapon Type
+(22826, 4416, 12), -- Races
 (22826, 5467, 1), -- Dark Attacks
 (22826, 6865, 1), -- Poison
 -- Batwing Drake
-(22827, 4285, 4), -- Resist Sleep Attacks
-(22827, 4287, 4), -- Resist Hold Attacks
-(22827, 4410, 16), -- Very Strong P. Atk.
-(22827, 4411, 14), -- Strong M. Atk.
-(22827, 4412, 17), -- Very Strong P. Def.
-(22827, 4413, 13), -- Slightly Strong M. Def.
-(22827, 4416, 10), -- Dragons
+(22827, 4285, 4), -- Resist Sleep
+(22827, 4287, 4), -- Resist Hold
+(22827, 4408, 1), -- HP Modifiers
+(22827, 4409, 1), -- MP Modifiers
+(22827, 4410, 16), -- P. Atk. Modifiers
+(22827, 4411, 14), -- M. Atk. Modifiers
+(22827, 4412, 16), -- P. Def. Modifiers
+(22827, 4413, 5), -- M. Def. Modifiers
+(22827, 4414, 2), -- Armor Type
+(22827, 4415, 3), -- Weapon Type
+(22827, 4416, 10), -- Races
 (22827, 4441, 5), -- Greater Resist Mental Derangement
 (22827, 5464, 1), -- Wind Attacks
 (22827, 6866, 1), -- Vampiric Claw
 (22827, 6867, 1), -- Magic Strike
-(22827, 6868, 1), -- Summon
 (22827, 6869, 1), -- Detonate
 -- Parasitic Leech
-(22828, 4274, 4), -- Blunt Weapon Weak Point
-(22828, 4410, 13), -- Slightly Strong P. Atk.
-(22828, 4411, 15), -- Strong M. Atk.
-(22828, 4412, 15), -- Strong P. Def.
-(22828, 4413, 5), -- Very Weak M. Def.
-(22828, 4416, 12), -- Bugs
+(22828, 4274, 4), -- Blunt Attack Weak Point
+(22828, 4408, 1), -- HP Modifiers
+(22828, 4409, 1), -- MP Modifiers
+(22828, 4410, 13), -- P. Atk. Modifiers
+(22828, 4411, 15), -- M. Atk. Modifiers
+(22828, 4412, 14), -- P. Def. Modifiers
+(22828, 4413, 4), -- M. Def. Modifiers
+(22828, 4414, 2), -- Armor Type
+(22828, 4415, 3), -- Weapon Type
+(22828, 4416, 12), -- Races
 (22828, 5463, 1), -- Water Attacks
 (22828, 6870, 1), -- Vampiric Claw
 (22828, 6871, 1), -- Range Magic Attack
 (22828, 6872, 1), -- Self-destruction
 -- Emerald Drake
-(22829, 4285, 4), -- Resist Sleep Attacks
-(22829, 4287, 4), -- Resist Hold Attacks
-(22829, 4410, 15), -- Strong P. Atk.
-(22829, 4411, 15), -- Strong M. Atk.
-(22829, 4412, 15), -- Strong P. Def.
-(22829, 4413, 13), -- Slightly Strong M. Def.
-(22829, 4416, 10), -- Dragons
+(22829, 4285, 4), -- Resist Sleep
+(22829, 4287, 4), -- Resist Hold
+(22829, 4408, 1), -- HP Modifiers
+(22829, 4409, 1), -- MP Modifiers
+(22829, 4410, 15), -- P. Atk. Modifiers
+(22829, 4411, 15), -- M. Atk. Modifiers
+(22829, 4412, 14), -- P. Def. Modifiers
+(22829, 4413, 5), -- M. Def. Modifiers
+(22829, 4414, 2), -- Armor Type
+(22829, 4415, 3), -- Weapon Type
+(22829, 4416, 10), -- Races
 (22829, 4441, 5), -- Greater Resist Mental Derangement
 (22829, 5465, 1), -- Earth Attacks
 (22829, 6873, 1), -- Hex
 (22829, 6874, 1), -- Range Magic Attack
 (22829, 6875, 1), -- Poison
 -- Gem Dragon
-(22830, 4285, 4), -- Resist Sleep Attacks
-(22830, 4287, 4), -- Resist Hold Attacks
-(22830, 4410, 13), -- Slightly Strong P. Atk.
-(22830, 4411, 14), -- Strong M. Atk.
-(22830, 4412, 15), -- Strong P. Def.
-(22830, 4413, 13), -- Slightly Strong M. Def.
-(22830, 4416, 10), -- Dragons
+(22830, 4276, 2), -- Archery Attack Weak Point
+(22830, 4285, 4), -- Resist Sleep
+(22830, 4287, 4), -- Resist Hold
+(22830, 4408, 1), -- HP Modifiers
+(22830, 4409, 1), -- MP Modifiers
+(22830, 4410, 13), -- P. Atk. Modifiers
+(22830, 4411, 14), -- M. Atk. Modifiers
+(22830, 4412, 14), -- P. Def. Modifiers
+(22830, 4413, 4), -- M. Def. Modifiers
+(22830, 4414, 2), -- Armor Type
+(22830, 4415, 3), -- Weapon Type
+(22830, 4416, 10), -- Races
 (22830, 4441, 5), -- Greater Resist Mental Derangement
 (22830, 5463, 1), -- Water Attacks
 (22830, 6876, 1), -- Power Strike
 (22830, 6877, 1), -- Power Strike
 (22830, 6878, 1), -- Paralysis
 -- Dragon Tracker of the Valley
-(22831, 4285, 4), -- Resist Sleep Attacks
-(22831, 4287, 4), -- Resist Hold Attacks
-(22831, 4410, 16), -- Very Strong P. Atk.
-(22831, 4412, 16), -- Very Strong P. Def.
-(22831, 4413, 8), -- Weak M. Def.
-(22831, 4416, 10), -- Dragons
+(22831, 4285, 4), -- Resist Sleep
+(22831, 4287, 4), -- Resist Hold
+(22831, 4408, 1), -- HP Modifiers
+(22831, 4409, 1), -- MP Modifiers
+(22831, 4410, 16), -- P. Atk. Modifiers
+(22831, 4411, 11), -- M. Atk. Modifiers
+(22831, 4412, 16), -- P. Def. Modifiers
+(22831, 4413, 8), -- M. Def. Modifiers
+(22831, 4414, 2), -- Armor Type
+(22831, 4415, 3), -- Weapon Type
+(22831, 4416, 10), -- Races
 (22831, 4441, 5), -- Greater Resist Mental Derangement
 (22831, 5463, 1), -- Water Attacks
 (22831, 6876, 1), -- Power Strike
 (22831, 6877, 1), -- Power Strike
 (22831, 6878, 1), -- Paralysis
 -- Dragon Scout of the Valley
-(22832, 4285, 4), -- Resist Sleep Attacks
-(22832, 4287, 4), -- Resist Hold Attacks
-(22832, 4410, 15), -- Strong P. Atk.
-(22832, 4412, 15), -- Strong P. Def.
-(22832, 4413, 7), -- Weak M. Def.
-(22832, 4416, 10), -- Dragons
+(22832, 4285, 4), -- Resist Sleep
+(22832, 4287, 4), -- Resist Hold
+(22832, 4408, 1), -- HP Modifiers
+(22832, 4409, 1), -- MP Modifiers
+(22832, 4410, 15), -- P. Atk. Modifiers
+(22832, 4411, 11), -- M. Atk. Modifiers
+(22832, 4412, 15), -- P. Def. Modifiers
+(22832, 4413, 7), -- M. Def. Modifiers
+(22832, 4414, 2), -- Armor Type
+(22832, 4415, 3), -- Weapon Type
+(22832, 4416, 10), -- Races
 (22832, 4441, 5), -- Greater Resist Mental Derangement
 (22832, 5463, 1), -- Water Attacks
 (22832, 6876, 1), -- Power Strike
 (22832, 6877, 1), -- Power Strike
 (22832, 6878, 1), -- Paralysis
 -- Sand Drake Tracker
-(22833, 4285, 4), -- Resist Sleep Attacks
-(22833, 4287, 4), -- Resist Hold Attacks
-(22833, 4411, 15), -- Strong M. Atk.
-(22833, 4412, 15), -- Strong P. Def.
-(22833, 4413, 7), -- Weak M. Def.
-(22833, 4416, 10), -- Dragons
+(22833, 4285, 4), -- Resist Sleep
+(22833, 4287, 4), -- Resist Hold
+(22833, 4408, 1), -- HP Modifiers
+(22833, 4409, 1), -- MP Modifiers
+(22833, 4410, 11), -- P. Atk. Modifiers
+(22833, 4411, 15), -- M. Atk. Modifiers
+(22833, 4412, 15), -- P. Def. Modifiers
+(22833, 4413, 7), -- M. Def. Modifiers
+(22833, 4414, 2), -- Armor Type
+(22833, 4415, 3), -- Weapon Type
+(22833, 4416, 10), -- Races
 (22833, 4441, 5), -- Greater Resist Mental Derangement
 (22833, 5464, 1), -- Wind Attacks
 (22833, 6879, 1), -- Vampiric Claw
 (22833, 6880, 1), -- Silence
 -- Dust Dragon Tracker
-(22834, 4410, 17), -- Very Strong P. Atk.
-(22834, 4411, 15), -- Strong M. Atk.
-(22834, 4412, 17), -- Very Strong P. Def.
-(22834, 4413, 9), -- Slightly Weak M. Def.
-(22834, 4416, 10), -- Dragons
+(22834, 4408, 1), -- HP Modifiers
+(22834, 4409, 1), -- MP Modifiers
+(22834, 4410, 17), -- P. Atk. Modifiers
+(22834, 4411, 15), -- M. Atk. Modifiers
+(22834, 4412, 17), -- P. Def. Modifiers
+(22834, 4413, 9), -- M. Def. Modifiers
+(22834, 4414, 2), -- Armor Type
+(22834, 4415, 3), -- Weapon Type
+(22834, 4416, 10), -- Races
 (22834, 5464, 1), -- Wind Attacks
 (22834, 6881, 1), -- Critical Strike
 (22834, 6882, 1), -- Petrify
 -- Magma Drake Mother
-(22835, 4412, 17), -- Very Strong P. Def.
-(22835, 4413, 5), -- Very Weak M. Def.
-(22835, 4416, 10), -- Dragons
+(22835, 4045, 1), -- Resist Full Magic Attack
+(22835, 4408, 1), -- HP Modifiers
+(22835, 4409, 1), -- MP Modifiers
+(22835, 4410, 11), -- P. Atk. Modifiers
+(22835, 4411, 11), -- M. Atk. Modifiers
+(22835, 4412, 17), -- P. Def. Modifiers
+(22835, 4413, 5), -- M. Def. Modifiers
+(22835, 4414, 2), -- Armor Type
+(22835, 4415, 3), -- Weapon Type
+(22835, 4416, 10), -- Races
 (22835, 5462, 1), -- Fire Attacks
 -- Magma Drake Hatchling
-(22836, 4412, 6), -- Very Weak P. Def.
-(22836, 4413, 5), -- Very Weak M. Def.
-(22836, 4416, 10), -- Dragons
+(22836, 4045, 1), -- Resist Full Magic Attack
+(22836, 4408, 1), -- HP Modifiers
+(22836, 4409, 1), -- MP Modifiers
+(22836, 4410, 11), -- P. Atk. Modifiers
+(22836, 4411, 11), -- M. Atk. Modifiers
+(22836, 4412, 6), -- P. Def. Modifiers
+(22836, 4413, 5), -- M. Def. Modifiers
+(22836, 4414, 2), -- Armor Type
+(22836, 4415, 3), -- Weapon Type
+(22836, 4416, 10), -- Races
 (22836, 5462, 1), -- Fire Attacks
 -- Gem Dragon Hatchling
-(22837, 4412, 6), -- Very Weak P. Def.
-(22837, 4413, 5), -- Very Weak M. Def.
-(22837, 4416, 10), -- Dragons
+(22837, 4045, 1), -- Resist Full Magic Attack
+(22837, 4408, 1), -- HP Modifiers
+(22837, 4409, 1), -- MP Modifiers
+(22837, 4410, 11), -- P. Atk. Modifiers
+(22837, 4411, 11), -- M. Atk. Modifiers
+(22837, 4412, 6), -- P. Def. Modifiers
+(22837, 4413, 5), -- M. Def. Modifiers
+(22837, 4414, 2), -- Armor Type
+(22837, 4415, 3), -- Weapon Type
+(22837, 4416, 10), -- Races
 (22837, 5463, 1), -- Water Attacks
 -- Maluk Leader
-(22838, 4411, 13), -- Slightly Strong M. Atk.
-(22838, 4412, 16), -- Very Strong P. Def.
-(22838, 4413, 8), -- Weak M. Def.
-(22838, 4416, 9), -- Demons
+(22838, 4408, 1), -- HP Modifiers
+(22838, 4409, 1), -- MP Modifiers
+(22838, 4410, 11), -- P. Atk. Modifiers
+(22838, 4411, 13), -- M. Atk. Modifiers
+(22838, 4412, 16), -- P. Def. Modifiers
+(22838, 4413, 8), -- M. Def. Modifiers
+(22838, 4414, 2), -- Armor Type
+(22838, 4415, 3), -- Weapon Type
+(22838, 4416, 9), -- Races
 (22838, 5467, 1), -- Dark Attacks
 (22838, 6748, 1), -- Stun Attack
 (22838, 6750, 1), -- Power Strike
 -- Maluk Warlord
-(22839, 4410, 12), -- Slightly Strong P. Atk.
-(22839, 4411, 13), -- Slightly Strong M. Atk.
-(22839, 4412, 14), -- Strong P. Def.
-(22839, 4413, 4), -- Extremely Weak M. Def.
-(22839, 4416, 9), -- Demons
+(22839, 4408, 1), -- HP Modifiers
+(22839, 4409, 1), -- MP Modifiers
+(22839, 4410, 12), -- P. Atk. Modifiers
+(22839, 4411, 13), -- M. Atk. Modifiers
+(22839, 4412, 14), -- P. Def. Modifiers
+(22839, 4413, 4), -- M. Def. Modifiers
+(22839, 4414, 2), -- Armor Type
+(22839, 4415, 13), -- Weapon Type
+(22839, 4416, 9), -- Races
 (22839, 5467, 1), -- Dark Attacks
 (22839, 6752, 1), -- Revival
-(22839, 6755, 1), -- Devil Strike
+(22839, 6755, 1), -- Death Strike
 -- Maluk Hunter
-(22840, 4276, 2), -- Weak Point against Bow/Crossbow Weapons
-(22840, 4410, 13), -- Slightly Strong P. Atk.
-(22840, 4411, 14), -- Strong M. Atk.
-(22840, 4412, 12), -- Slightly Strong P. Def.
-(22840, 4413, 4), -- Extremely Weak M. Def.
-(22840, 4416, 9), -- Demons
+(22840, 4276, 2), -- Archery Attack Weak Point
+(22840, 4408, 1), -- HP Modifiers
+(22840, 4409, 1), -- MP Modifiers
+(22840, 4410, 13), -- P. Atk. Modifiers
+(22840, 4411, 14), -- M. Atk. Modifiers
+(22840, 4412, 12), -- P. Def. Modifiers
+(22840, 4413, 4), -- M. Def. Modifiers
+(22840, 4414, 2), -- Armor Type
+(22840, 4415, 3), -- Weapon Type
+(22840, 4416, 9), -- Races
 (22840, 5467, 1), -- Dark Attacks
 (22840, 6753, 1), -- Death Blow
 (22840, 6754, 1), -- Bleed
 -- Maluk Princess
-(22841, 4410, 13), -- Slightly Strong P. Atk.
-(22841, 4411, 16), -- Very Strong M. Atk.
-(22841, 4413, 6), -- Very Weak M. Def.
-(22841, 4416, 9), -- Demons
+(22841, 4408, 1), -- HP Modifiers
+(22841, 4409, 1), -- MP Modifiers
+(22841, 4410, 13), -- P. Atk. Modifiers
+(22841, 4411, 16), -- M. Atk. Modifiers
+(22841, 4412, 11), -- P. Def. Modifiers
+(22841, 4413, 6), -- M. Def. Modifiers
+(22841, 4414, 2), -- Armor Type
+(22841, 4415, 3), -- Weapon Type
+(22841, 4416, 9), -- Races
 (22841, 5467, 1), -- Dark Attacks
-(22841, 6749, 1), -- Devil Strike
+(22841, 6749, 1), -- Death Strike
 (22841, 6756, 1), -- Death Talon
 -- Maluk Banshee
-(22842, 4032, 1), -- Power Strike
-(22842, 4410, 13), -- Slightly Strong P. Atk.
-(22842, 4411, 16), -- Very Strong M. Atk.
-(22842, 4413, 6), -- Very Weak M. Def.
-(22842, 4416, 1), -- Undead
+(22842, 4032, 1), -- NPC Strike
+(22842, 4408, 1), -- HP Modifiers
+(22842, 4409, 1), -- MP Modifiers
+(22842, 4410, 13), -- P. Atk. Modifiers
+(22842, 4411, 16), -- M. Atk. Modifiers
+(22842, 4412, 11), -- P. Def. Modifiers
+(22842, 4413, 6), -- M. Def. Modifiers
+(22842, 4414, 2), -- Armor Type
+(22842, 4415, 3), -- Weapon Type
+(22842, 4416, 1), -- Races
 (22842, 5467, 1), -- Dark Attacks
 (22842, 6757, 1), -- Slow
 (22842, 6758, 1), -- Rage
 -- Maluk Sniper 
-(22843, 4276, 2), -- Weak Point against Bow/Crossbow Weapons
-(22843, 4411, 14), -- Strong M. Atk.
-(22843, 4412, 12), -- Slightly Strong P. Def.
-(22843, 4413, 4), -- Extremely Weak M. Def.
-(22843, 4416, 1), -- Undead
+(22843, 4276, 2), -- Archery Attack Weak Point
+(22843, 4408, 1), -- HP Modifiers
+(22843, 4409, 1), -- MP Modifiers
+(22843, 4410, 11), -- P. Atk. Modifiers
+(22843, 4411, 14), -- M. Atk. Modifiers
+(22843, 4412, 12), -- P. Def. Modifiers
+(22843, 4413, 4), -- M. Def. Modifiers
+(22843, 4414, 2), -- Armor Type
+(22843, 4415, 9), -- Weapon Type
+(22843, 4416, 1), -- Races
 (22843, 5467, 1), -- Dark Attacks
 (22843, 6759, 1), -- Death Shot
 -- Dragon Knight
-(22844, 4410, 13), -- Slightly Strong P. Atk.
-(22844, 4411, 16), -- Very Strong M. Atk.
-(22844, 4412, 15), -- Strong P. Def.
-(22844, 4413, 4), -- Extremely Weak M. Def.
-(22844, 4416, 10), -- Dragons
+(22844, 4408, 1), -- HP Modifiers
+(22844, 4409, 1), -- MP Modifiers
+(22844, 4410, 13), -- P. Atk. Modifiers
+(22844, 4411, 16), -- M. Atk. Modifiers
+(22844, 4412, 15), -- P. Def. Modifiers
+(22844, 4413, 4), -- M. Def. Modifiers
+(22844, 4414, 2), -- Armor Type
+(22844, 4415, 3), -- Weapon Type
+(22844, 4416, 10), -- Races
 (22844, 5465, 1), -- Earth Attacks
 (22844, 6761, 1), -- Dragon Blow Strike
 (22844, 6763, 1), -- Dragon Earth Strike
 -- Dragon Knight
-(22845, 4410, 13), -- Slightly Strong P. Atk.
-(22845, 4411, 16), -- Very Strong M. Atk.
-(22845, 4412, 15), -- Strong P. Def.
-(22845, 4413, 4), -- Extremely Weak M. Def.
-(22845, 4416, 10), -- Dragons
+(22845, 4408, 1), -- HP Modifiers
+(22845, 4409, 1), -- MP Modifiers
+(22845, 4410, 13), -- P. Atk. Modifiers
+(22845, 4411, 16), -- M. Atk. Modifiers
+(22845, 4412, 15), -- P. Def. Modifiers
+(22845, 4413, 4), -- M. Def. Modifiers
+(22845, 4414, 2), -- Armor Type
+(22845, 4415, 3), -- Weapon Type
+(22845, 4416, 10), -- Races
 (22845, 5465, 1), -- Earth Attacks
 (22845, 6761, 1), -- Dragon Blow Strike
 (22845, 6763, 1), -- Dragon Earth Strike
 -- Elite Dragon Knight
-(22846, 4410, 13), -- Slightly Strong P. Atk.
-(22846, 4411, 16), -- Very Strong M. Atk.
-(22846, 4412, 15), -- Strong P. Def.
-(22846, 4413, 4), -- Extremely Weak M. Def.
-(22846, 4416, 10), -- Dragons
+(22846, 4408, 1), -- HP Modifiers
+(22846, 4409, 1), -- MP Modifiers
+(22846, 4410, 13), -- P. Atk. Modifiers
+(22846, 4411, 16), -- M. Atk. Modifiers
+(22846, 4412, 15), -- P. Def. Modifiers
+(22846, 4413, 4), -- M. Def. Modifiers
+(22846, 4414, 2), -- Armor Type
+(22846, 4415, 3), -- Weapon Type
+(22846, 4416, 10), -- Races
 (22846, 5465, 1), -- Earth Attacks
 (22846, 6761, 1), -- Dragon Blow Strike
 (22846, 6763, 1), -- Dragon Earth Strike
 -- Dragon Knight Warrior 
-(22847, 4412, 9), -- Slightly Weak P. Def.
-(22847, 4413, 4), -- Extremely Weak M. Def.
-(22847, 4416, 10), -- Dragons
+(22847, 4408, 1), -- HP Modifiers
+(22847, 4409, 1), -- MP Modifiers
+(22847, 4410, 11), -- P. Atk. Modifiers
+(22847, 4411, 11), -- M. Atk. Modifiers
+(22847, 4412, 9), -- P. Def. Modifiers
+(22847, 4413, 4), -- M. Def. Modifiers
+(22847, 4414, 2), -- Armor Type
+(22847, 4415, 11), -- Weapon Type
+(22847, 4416, 10), -- Races
 (22847, 5465, 1), -- Earth Attacks
 (22847, 6760, 1), -- Dragon Strike
 (22847, 6762, 1), -- Rage
 -- Drake Leader
-(22848, 4032, 1), -- Power Strike
-(22848, 4410, 13), -- Slightly Strong P. Atk.
-(22848, 4412, 15), -- Strong P. Def.
-(22848, 4413, 4), -- Extremely Weak M. Def.
-(22848, 4416, 10), -- Dragons
+(22848, 4032, 1), -- NPC Strike
+(22848, 4408, 1), -- HP Modifiers
+(22848, 4409, 1), -- MP Modifiers
+(22848, 4410, 13), -- P. Atk. Modifiers
+(22848, 4411, 11), -- M. Atk. Modifiers
+(22848, 4412, 15), -- P. Def. Modifiers
+(22848, 4413, 4), -- M. Def. Modifiers
+(22848, 4414, 2), -- Armor Type
+(22848, 4415, 3), -- Weapon Type
+(22848, 4416, 10), -- Races
 (22848, 5465, 1), -- Earth Attacks
 (22848, 6758, 1), -- Rage
 (22848, 6763, 1), -- Dragon Earth Strike
 (22848, 6818, 1), -- Powerful Rage
 (22848, 6820, 1), -- P. Def. Enhance
 -- Drake Warrior
-(22849, 4410, 15), -- Strong P. Atk.
-(22849, 4412, 16), -- Very Strong P. Def.
-(22849, 4413, 4), -- Extremely Weak M. Def.
-(22849, 4416, 10), -- Dragons
+(22849, 4408, 1), -- HP Modifiers
+(22849, 4409, 1), -- MP Modifiers
+(22849, 4410, 15), -- P. Atk. Modifiers
+(22849, 4411, 11), -- M. Atk. Modifiers
+(22849, 4412, 16), -- P. Def. Modifiers
+(22849, 4413, 4), -- M. Def. Modifiers
+(22849, 4414, 2), -- Armor Type
+(22849, 4415, 3), -- Weapon Type
+(22849, 4416, 10), -- Races
 (22849, 5465, 1), -- Earth Attacks
 (22849, 5620, 2), -- Short-Range Physical Attack Weakness
 (22849, 6760, 1), -- Dragon Strike
 -- Drake Scout
-(22850, 4410, 14), -- Strong P. Atk.
-(22850, 4412, 14), -- Strong P. Def.
-(22850, 4413, 4), -- Extremely Weak M. Def.
-(22850, 4416, 10), -- Dragons
+(22850, 4408, 1), -- HP Modifiers
+(22850, 4409, 1), -- MP Modifiers
+(22850, 4410, 14), -- P. Atk. Modifiers
+(22850, 4411, 11), -- M. Atk. Modifiers
+(22850, 4412, 14), -- P. Def. Modifiers
+(22850, 4413, 4), -- M. Def. Modifiers
+(22850, 4414, 2), -- Armor Type
+(22850, 4415, 9), -- Weapon Type
+(22850, 4416, 10), -- Races
 (22850, 5465, 1), -- Earth Attacks
 (22850, 6761, 1), -- Dragon Blow Strike
 (22850, 6764, 1), -- Dragon Earth Shot
 -- Drake Mage
-(22851, 4276, 2), -- Weak Point against Bow/Crossbow Weapons
-(22851, 4410, 12), -- Slightly Strong P. Atk.
-(22851, 4412, 13), -- Slightly Strong P. Def.
-(22851, 4413, 6), -- Very Weak M. Def.
-(22851, 4416, 10), -- Dragons
+(22851, 4276, 2), -- Archery Attack Weak Point
+(22851, 4408, 1), -- HP Modifiers
+(22851, 4409, 1), -- MP Modifiers
+(22851, 4410, 12), -- P. Atk. Modifiers
+(22851, 4411, 11), -- M. Atk. Modifiers
+(22851, 4412, 13), -- P. Def. Modifiers
+(22851, 4413, 6), -- M. Def. Modifiers
+(22851, 4414, 2), -- Armor Type
+(22851, 4415, 3), -- Weapon Type
+(22851, 4416, 10), -- Races
 (22851, 5465, 1), -- Earth Attacks
 (22851, 6765, 1), -- Complete Recovery
 (22851, 6766, 1), -- Earth Tremor
 -- Dragon Guard
-(22852, 4410, 16), -- Very Strong P. Atk.
-(22852, 4411, 15), -- Strong M. Atk.
-(22852, 4412, 16), -- Very Strong P. Def.
-(22852, 4413, 5), -- Very Weak M. Def.
-(22852, 4416, 10), -- Dragons
+(22852, 4408, 1), -- HP Modifiers
+(22852, 4409, 1), -- MP Modifiers
+(22852, 4410, 16), -- P. Atk. Modifiers
+(22852, 4411, 15), -- M. Atk. Modifiers
+(22852, 4412, 16), -- P. Def. Modifiers
+(22852, 4413, 5), -- M. Def. Modifiers
+(22852, 4414, 2), -- Armor Type
+(22852, 4415, 11), -- Weapon Type
+(22852, 4416, 10), -- Races
 (22852, 5465, 1), -- Earth Attacks
 (22852, 6768, 1), -- Stun Attack
 -- Dragon Mage
-(22853, 4410, 15), -- Strong P. Atk.
-(22853, 4411, 13), -- Slightly Strong M. Atk.
-(22853, 4413, 8), -- Weak M. Def.
-(22853, 4416, 10), -- Dragons
+(22853, 4408, 1), -- HP Modifiers
+(22853, 4409, 1), -- MP Modifiers
+(22853, 4410, 15), -- P. Atk. Modifiers
+(22853, 4411, 13), -- M. Atk. Modifiers
+(22853, 4412, 11), -- P. Def. Modifiers
+(22853, 4413, 8), -- M. Def. Modifiers
+(22853, 4414, 11), -- null
+(22853, 4415, 3), -- Weapon Type
+(22853, 4416, 10), -- Races
 (22853, 5465, 1), -- Earth Attacks
 (22853, 6769, 1), -- Petrify
 (22853, 6770, 1), -- Heal
 -- Bloody Karik
-(22854, 4410, 19), -- Extremely Strong P. Atk.
-(22854, 4411, 19), -- Extremely Strong M. Atk.
-(22854, 4412, 19), -- Extremely Strong P. Def.
-(22854, 4413, 5), -- Very Weak M. Def.
-(22854, 4416, 9), -- Demons
+(22854, 4045, 1), -- Resist Full Magic Attack
+(22854, 4408, 1), -- HP Modifiers
+(22854, 4409, 1), -- MP Modifiers
+(22854, 4410, 19), -- P. Atk. Modifiers
+(22854, 4411, 19), -- M. Atk. Modifiers
+(22854, 4412, 19), -- P. Def. Modifiers
+(22854, 4413, 5), -- M. Def. Modifiers
+(22854, 4414, 2), -- Armor Type
+(22854, 4415, 1), -- Weapon Type
+(22854, 4416, 9), -- Races
 (22854, 5467, 1), -- Dark Attacks
-(22854, 6771, 1), -- Devil Strike
+(22854, 5598, 12), -- Flash Resistance
+(22854, 6771, 1), -- Death Strike
 (22854, 6772, 1), -- Power Strike
 (22854, 6773, 1), -- Rage
 -- Bloody Berserker
-(22855, 4410, 19), -- Extremely Strong P. Atk.
-(22855, 4411, 19), -- Extremely Strong M. Atk.
-(22855, 4412, 19), -- Extremely Strong P. Def.
-(22855, 4413, 5), -- Very Weak M. Def.
-(22855, 4416, 9), -- Demons
+(22855, 4045, 1), -- Resist Full Magic Attack
+(22855, 4408, 1), -- HP Modifiers
+(22855, 4409, 1), -- MP Modifiers
+(22855, 4410, 19), -- P. Atk. Modifiers
+(22855, 4411, 19), -- M. Atk. Modifiers
+(22855, 4412, 19), -- P. Def. Modifiers
+(22855, 4413, 5), -- M. Def. Modifiers
+(22855, 4414, 2), -- Armor Type
+(22855, 4415, 3), -- Weapon Type
+(22855, 4416, 9), -- Races
 (22855, 5467, 1), -- Dark Attacks
+(22855, 5598, 12), -- Flash Resistance
 (22855, 6774, 1), -- Stun Attack
 (22855, 6775, 1), -- Soul Breath
 -- Bloody Karinness
-(22856, 4410, 19), -- Extremely Strong P. Atk.
-(22856, 4411, 19), -- Extremely Strong M. Atk.
-(22856, 4412, 19), -- Extremely Strong P. Def.
-(22856, 4413, 5), -- Very Weak M. Def.
-(22856, 4416, 9), -- Demons
+(22856, 4045, 1), -- Resist Full Magic Attack
+(22856, 4408, 1), -- HP Modifiers
+(22856, 4409, 1), -- MP Modifiers
+(22856, 4410, 19), -- P. Atk. Modifiers
+(22856, 4411, 19), -- M. Atk. Modifiers
+(22856, 4412, 19), -- P. Def. Modifiers
+(22856, 4413, 5), -- M. Def. Modifiers
+(22856, 4414, 2), -- Armor Type
+(22856, 4415, 19), -- Weapon Type
+(22856, 4416, 9), -- Races
 (22856, 5467, 1), -- Dark Attacks
+(22856, 5598, 12), -- Flash Resistance
 (22856, 6776, 1), -- Paralysis
 (22856, 6777, 1), -- Bleeding Gash
-(22856, 6778, 1), -- Devil Strike
+(22856, 6778, 1), -- Death Strike
 -- Knoriks
-(22857, 4410, 17), -- Very Strong P. Atk.
-(22857, 4411, 13), -- Slightly Strong M. Atk.
-(22857, 4412, 15), -- Strong P. Def.
-(22857, 4413, 5), -- Very Weak M. Def.
-(22857, 4416, 6), -- Humanoids
+(22857, 4045, 1), -- Resist Full Magic Attack
+(22857, 4408, 1), -- HP Modifiers
+(22857, 4409, 1), -- MP Modifiers
+(22857, 4410, 17), -- P. Atk. Modifiers
+(22857, 4411, 13), -- M. Atk. Modifiers
+(22857, 4412, 15), -- P. Def. Modifiers
+(22857, 4413, 5), -- M. Def. Modifiers
+(22857, 4414, 2), -- Armor Type
+(22857, 4415, 3), -- Weapon Type
+(22857, 4416, 6), -- Races
 (22857, 5467, 1), -- Dark Attacks
+(22857, 5598, 12), -- Flash Resistance
 (22857, 6743, 1), -- Dark Wind
 -- Necromancer of the Valley
-(22858, 4411, 12), -- Slightly Strong M. Atk.
-(22858, 4416, 1), -- Undead
+(22858, 4408, 1), -- HP Modifiers
+(22858, 4409, 1), -- MP Modifiers
+(22858, 4410, 11), -- P. Atk. Modifiers
+(22858, 4411, 12), -- M. Atk. Modifiers
+(22858, 4413, 11), -- M. Def. Modifiers
+(22858, 4414, 2), -- Armor Type
+(22858, 4415, 3), -- Weapon Type
+(22858, 4416, 1), -- Races
 (22858, 5467, 1), -- Dark Attacks
 (22858, 6855, 1), -- Magic Strike
 -- Howl
-(22859, 4410, 13), -- Slightly Strong P. Atk.
-(22859, 4412, 13), -- Slightly Strong P. Def.
-(22859, 4413, 13), -- Slightly Strong M. Def.
-(22859, 4416, 3), -- Beasts
+(22859, 4408, 1), -- HP Modifiers
+(22859, 4409, 1), -- MP Modifiers
+(22859, 4410, 13), -- P. Atk. Modifiers
+(22859, 4411, 11), -- M. Atk. Modifiers
+(22859, 4412, 13), -- P. Def. Modifiers
+(22859, 4413, 13), -- M. Def. Modifiers
+(22859, 4414, 2), -- Armor Type
+(22859, 4415, 3), -- Weapon Type
+(22859, 4416, 3), -- Races
 (22859, 5462, 1), -- Fire Attacks
 (22859, 6876, 1), -- Power Strike
 (22859, 6878, 1), -- Paralysis
 -- Hungry Parasitic Leech
-(22860, 4274, 4), -- Blunt Weapon Weak Point
-(22860, 4410, 13), -- Slightly Strong P. Atk.
-(22860, 4412, 15), -- Strong P. Def.
-(22860, 4413, 5), -- Very Weak M. Def.
-(22860, 4416, 12), -- Bugs
+(22860, 4274, 4), -- Blunt Attack Weak Point
+(22860, 4276, 2), -- Archery Attack Weak Point
+(22860, 4408, 1), -- HP Modifiers
+(22860, 4409, 1), -- MP Modifiers
+(22860, 4410, 13), -- P. Atk. Modifiers
+(22860, 4411, 11), -- M. Atk. Modifiers
+(22860, 4412, 15), -- P. Def. Modifiers
+(22860, 4413, 4), -- M. Def. Modifiers
+(22860, 4414, 2), -- Armor Type
+(22860, 4415, 3), -- Weapon Type
+(22860, 4416, 12), -- Races
 (22860, 5463, 1), -- Water Attacks
 (22860, 6870, 1), -- Vampiric Claw
 (22860, 6871, 1), -- Range Magic Attack
 -- Hard Noxious Scorpion
-(22861, 4274, 4), -- Blunt Weapon Weak Point
-(22861, 4285, 4), -- Resist Sleep Attacks
-(22861, 4287, 4), -- Resist Hold Attacks
-(22861, 4410, 15), -- Strong P. Atk.
-(22861, 4412, 15), -- Strong P. Def.
-(22861, 4413, 13), -- Slightly Strong M. Def.
-(22861, 4416, 12), -- Bugs
+(22861, 4274, 4), -- Blunt Attack Weak Point
+(22861, 4285, 4), -- Resist Sleep
+(22861, 4287, 4), -- Resist Hold
+(22861, 4408, 1), -- HP Modifiers
+(22861, 4409, 1), -- MP Modifiers
+(22861, 4410, 15), -- P. Atk. Modifiers
+(22861, 4411, 11), -- M. Atk. Modifiers
+(22861, 4412, 15), -- P. Def. Modifiers
+(22861, 4413, 5), -- M. Def. Modifiers
+(22861, 4414, 2), -- Armor Type
+(22861, 4415, 3), -- Weapon Type
+(22861, 4416, 12), -- Races
 (22861, 4441, 5), -- Greater Resist Mental Derangement
 (22861, 5467, 1), -- Dark Attacks
 (22861, 6862, 1), -- Poison
 (22861, 6863, 1), -- Poison
-(22861, 6864, 1), -- Summon
 -- Drakos Hunter
-(22862, 4410, 14), -- Strong P. Atk.
-(22862, 4412, 15), -- Strong P. Def.
-(22862, 4413, 8), -- Weak M. Def.
-(22862, 4416, 10), -- Dragons
+(22862, 4408, 1), -- HP Modifiers
+(22862, 4409, 1), -- MP Modifiers
+(22862, 4410, 14), -- P. Atk. Modifiers
+(22862, 4411, 11), -- M. Atk. Modifiers
+(22862, 4412, 15), -- P. Def. Modifiers
+(22862, 4413, 4), -- M. Def. Modifiers
+(22862, 4414, 2), -- Armor Type
+(22862, 4415, 1), -- Weapon Type
+(22862, 4416, 10), -- Races
 (22862, 5462, 1), -- Fire Attacks
 (22862, 6857, 1), -- Power Strike
-(22862, 6858, 1), -- Summon
 -- Greyclaw Kutus
 (25001, 4045, 1), -- Resist Full Magic Attack
 (25001, 4197, 2), -- Hold
-(25001, 4408, 1), -- HP Increase (1x)
-(25001, 4409, 1), -- MP Increase (1x)
-(25001, 4410, 11), -- Average P. Atk.
-(25001, 4411, 11), -- Average M. Atk.
-(25001, 4412, 11), -- Average P. Def.
-(25001, 4413, 11), -- Average M. Def.
-(25001, 4414, 2), -- Standard Type
-(25001, 4415, 3), -- One-handed Sword
-(25001, 4416, 6), -- Humanoids
+(25001, 4408, 1), -- HP Modifiers
+(25001, 4409, 1), -- MP Modifiers
+(25001, 4410, 11), -- P. Atk. Modifiers
+(25001, 4411, 11), -- M. Atk. Modifiers
+(25001, 4412, 11), -- P. Def. Modifiers
+(25001, 4413, 11), -- M. Def. Modifiers
+(25001, 4414, 2), -- Armor Type
+(25001, 4415, 3), -- Weapon Type
+(25001, 4416, 6), -- Races
 (25001, 4494, 1), -- Raid Boss
 (25001, 4790, 1), -- Raid Boss - Level 23
 -- Guard of Kutus
 (25002, 4045, 1), -- Resist Full Magic Attack
-(25002, 4191, 2), -- Wind Strike
+(25002, 4191, 2), -- BOSS Wind Strike
 (25002, 4198, 2), -- Poison
-(25002, 4408, 1), -- HP Increase (1x)
-(25002, 4409, 1), -- MP Increase (1x)
-(25002, 4410, 11), -- Average P. Atk.
-(25002, 4411, 11), -- Average M. Atk.
-(25002, 4412, 11), -- Average P. Def.
-(25002, 4413, 11), -- Average M. Def.
-(25002, 4414, 3), -- Light Armor Type
-(25002, 4415, 3), -- One-handed Sword
-(25002, 4416, 6), -- Humanoids
+(25002, 4408, 1), -- HP Modifiers
+(25002, 4409, 1), -- MP Modifiers
+(25002, 4410, 11), -- P. Atk. Modifiers
+(25002, 4411, 11), -- M. Atk. Modifiers
+(25002, 4412, 11), -- P. Def. Modifiers
+(25002, 4413, 11), -- M. Def. Modifiers
+(25002, 4414, 3), -- Armor Type
+(25002, 4415, 3), -- Weapon Type
+(25002, 4416, 6), -- Races
 -- Pawn of Kutus
 (25003, 4045, 1), -- Resist Full Magic Attack
-(25003, 4408, 1), -- HP Increase (1x)
-(25003, 4409, 1), -- MP Increase (1x)
-(25003, 4410, 11), -- Average P. Atk.
-(25003, 4411, 11), -- Average M. Atk.
-(25003, 4412, 11), -- Average P. Def.
-(25003, 4413, 11), -- Average M. Def.
-(25003, 4414, 3), -- Light Armor Type
-(25003, 4415, 3), -- One-handed Sword
-(25003, 4416, 6), -- Humanoids
+(25003, 4408, 1), -- HP Modifiers
+(25003, 4409, 1), -- MP Modifiers
+(25003, 4410, 11), -- P. Atk. Modifiers
+(25003, 4411, 11), -- M. Atk. Modifiers
+(25003, 4412, 11), -- P. Def. Modifiers
+(25003, 4413, 11), -- M. Def. Modifiers
+(25003, 4414, 3), -- Armor Type
+(25003, 4415, 3), -- Weapon Type
+(25003, 4416, 6), -- Races
 (25003, 4727, 2), -- Stun
 -- Turek Mercenary Captain
 (25004, 4045, 1), -- Resist Full Magic Attack
-(25004, 4408, 1), -- HP Increase (1x)
-(25004, 4409, 1), -- MP Increase (1x)
-(25004, 4410, 11), -- Average P. Atk.
-(25004, 4411, 11), -- Average M. Atk.
-(25004, 4412, 11), -- Average P. Def.
-(25004, 4413, 11), -- Average M. Def.
-(25004, 4414, 2), -- Standard Type
-(25004, 4415, 3), -- One-handed Sword
-(25004, 4416, 6), -- Humanoids
+(25004, 4408, 1), -- HP Modifiers
+(25004, 4409, 1), -- MP Modifiers
+(25004, 4410, 11), -- P. Atk. Modifiers
+(25004, 4411, 11), -- M. Atk. Modifiers
+(25004, 4412, 11), -- P. Def. Modifiers
+(25004, 4413, 11), -- M. Def. Modifiers
+(25004, 4414, 2), -- Armor Type
+(25004, 4415, 3), -- Weapon Type
+(25004, 4416, 6), -- Races
 (25004, 4494, 1), -- Raid Boss
-(25004, 4739, 3), -- Power Strike
+(25004, 4739, 3), -- BOSS Strike
 (25004, 4791, 1), -- Raid Boss - Level 30
 -- Turek Mercenary Archer
 (25005, 4045, 1), -- Resist Full Magic Attack
-(25005, 4408, 1), -- HP Increase (1x)
-(25005, 4409, 1), -- MP Increase (1x)
-(25005, 4410, 11), -- Average P. Atk.
-(25005, 4411, 11), -- Average M. Atk.
-(25005, 4412, 11), -- Average P. Def.
-(25005, 4413, 11), -- Average M. Def.
-(25005, 4414, 3), -- Light Armor Type
-(25005, 4415, 9), -- Bows
-(25005, 4416, 6), -- Humanoids
-(25005, 4754, 2), -- Power Shot
+(25005, 4408, 1), -- HP Modifiers
+(25005, 4409, 1), -- MP Modifiers
+(25005, 4410, 11), -- P. Atk. Modifiers
+(25005, 4411, 11), -- M. Atk. Modifiers
+(25005, 4412, 11), -- P. Def. Modifiers
+(25005, 4413, 11), -- M. Def. Modifiers
+(25005, 4414, 3), -- Armor Type
+(25005, 4415, 9), -- Weapon Type
+(25005, 4416, 6), -- Races
+(25005, 4754, 2), -- BOSS Power Shot
 -- Turek Mercenary Warrior
 (25006, 4045, 1), -- Resist Full Magic Attack
-(25006, 4408, 1), -- HP Increase (1x)
-(25006, 4409, 1), -- MP Increase (1x)
-(25006, 4410, 11), -- Average P. Atk.
-(25006, 4411, 11), -- Average M. Atk.
-(25006, 4412, 11), -- Average P. Def.
-(25006, 4413, 11), -- Average M. Def.
-(25006, 4414, 2), -- Standard Type
-(25006, 4415, 3), -- One-handed Sword
-(25006, 4416, 6), -- Humanoids
+(25006, 4408, 1), -- HP Modifiers
+(25006, 4409, 1), -- MP Modifiers
+(25006, 4410, 11), -- P. Atk. Modifiers
+(25006, 4411, 11), -- M. Atk. Modifiers
+(25006, 4412, 11), -- P. Def. Modifiers
+(25006, 4413, 11), -- M. Def. Modifiers
+(25006, 4414, 2), -- Armor Type
+(25006, 4415, 3), -- Weapon Type
+(25006, 4416, 6), -- Races
 -- Retreat Spider Cletu
 (25007, 4045, 1), -- Resist Full Magic Attack
-(25007, 4178, 4), -- Flame Strike
-(25007, 4408, 1), -- HP Increase (1x)
-(25007, 4409, 1), -- MP Increase (1x)
-(25007, 4410, 11), -- Average P. Atk.
-(25007, 4411, 11), -- Average M. Atk.
-(25007, 4412, 11), -- Average P. Def.
-(25007, 4413, 11), -- Average M. Def.
-(25007, 4414, 2), -- Standard Type
-(25007, 4415, 3), -- One-handed Sword
-(25007, 4416, 12), -- Bugs
+(25007, 4178, 4), -- BOSS Flame Strike
+(25007, 4408, 1), -- HP Modifiers
+(25007, 4409, 1), -- MP Modifiers
+(25007, 4410, 11), -- P. Atk. Modifiers
+(25007, 4411, 11), -- M. Atk. Modifiers
+(25007, 4412, 11), -- P. Def. Modifiers
+(25007, 4413, 11), -- M. Def. Modifiers
+(25007, 4414, 2), -- Armor Type
+(25007, 4415, 3), -- Weapon Type
+(25007, 4416, 12), -- Races
 (25007, 4494, 1), -- Raid Boss
 (25007, 4792, 1), -- Raid Boss - Level 42
 -- Cletu's Retainer
 (25008, 4045, 1), -- Resist Full Magic Attack
-(25008, 4214, 3), -- Reflect Damage
-(25008, 4408, 1), -- HP Increase (1x)
-(25008, 4409, 1), -- MP Increase (1x)
-(25008, 4410, 11), -- Average P. Atk.
-(25008, 4411, 11), -- Average M. Atk.
-(25008, 4412, 11), -- Average P. Def.
-(25008, 4413, 11), -- Average M. Def.
-(25008, 4414, 3), -- Light Armor Type
-(25008, 4415, 3), -- One-handed Sword
-(25008, 4416, 12), -- Bugs
-(25008, 4780, 3), -- Heal
+(25008, 4214, 3), -- BOSS Reflect Damage
+(25008, 4408, 1), -- HP Modifiers
+(25008, 4409, 1), -- MP Modifiers
+(25008, 4410, 11), -- P. Atk. Modifiers
+(25008, 4411, 11), -- M. Atk. Modifiers
+(25008, 4412, 11), -- P. Def. Modifiers
+(25008, 4413, 11), -- M. Def. Modifiers
+(25008, 4414, 3), -- Armor Type
+(25008, 4415, 3), -- Weapon Type
+(25008, 4416, 12), -- Races
+(25008, 4780, 3), -- BOSS Heal
 -- Cletu's Pawn
 (25009, 4045, 1), -- Resist Full Magic Attack
-(25009, 4408, 1), -- HP Increase (1x)
-(25009, 4409, 1), -- MP Increase (1x)
-(25009, 4410, 11), -- Average P. Atk.
-(25009, 4411, 11), -- Average M. Atk.
-(25009, 4412, 11), -- Average P. Def.
-(25009, 4413, 11), -- Average M. Def.
-(25009, 4414, 2), -- Standard Type
-(25009, 4415, 3), -- One-handed Sword
-(25009, 4416, 12), -- Bugs
+(25009, 4408, 1), -- HP Modifiers
+(25009, 4409, 1), -- MP Modifiers
+(25009, 4410, 11), -- P. Atk. Modifiers
+(25009, 4411, 11), -- M. Atk. Modifiers
+(25009, 4412, 11), -- P. Def. Modifiers
+(25009, 4413, 11), -- M. Def. Modifiers
+(25009, 4414, 2), -- Armor Type
+(25009, 4415, 3), -- Weapon Type
+(25009, 4416, 12), -- Races
 -- Furious Thieles
 (25010, 4045, 1), -- Resist Full Magic Attack
-(25010, 4408, 1), -- HP Increase (1x)
-(25010, 4409, 1), -- MP Increase (1x)
-(25010, 4410, 11), -- Average P. Atk.
-(25010, 4411, 11), -- Average M. Atk.
-(25010, 4412, 11), -- Average P. Def.
-(25010, 4413, 11), -- Average M. Def.
-(25010, 4414, 2), -- Standard Type
-(25010, 4415, 3), -- One-handed Sword
-(25010, 4416, 7), -- Spirits
+(25010, 4408, 1), -- HP Modifiers
+(25010, 4409, 1), -- MP Modifiers
+(25010, 4410, 11), -- P. Atk. Modifiers
+(25010, 4411, 11), -- M. Atk. Modifiers
+(25010, 4412, 11), -- P. Def. Modifiers
+(25010, 4413, 11), -- M. Def. Modifiers
+(25010, 4414, 2), -- Armor Type
+(25010, 4415, 3), -- Weapon Type
+(25010, 4416, 7), -- Races
 (25010, 4494, 1), -- Raid Boss
-(25010, 4740, 5), -- Power Strike
+(25010, 4740, 5), -- BOSS Strike
 (25010, 4793, 1), -- Raid Boss - Level 55
 -- Guard of Thieles
 (25011, 4045, 1), -- Resist Full Magic Attack
-(25011, 4408, 1), -- HP Increase (1x)
-(25011, 4409, 1), -- MP Increase (1x)
-(25011, 4410, 11), -- Average P. Atk.
-(25011, 4411, 11), -- Average M. Atk.
-(25011, 4412, 11), -- Average P. Def.
-(25011, 4413, 11), -- Average M. Def.
-(25011, 4414, 3), -- Light Armor Type
-(25011, 4415, 9), -- Bows
-(25011, 4416, 6), -- Humanoids
+(25011, 4408, 1), -- HP Modifiers
+(25011, 4409, 1), -- MP Modifiers
+(25011, 4410, 11), -- P. Atk. Modifiers
+(25011, 4411, 11), -- M. Atk. Modifiers
+(25011, 4412, 11), -- P. Def. Modifiers
+(25011, 4413, 11), -- M. Def. Modifiers
+(25011, 4414, 3), -- Armor Type
+(25011, 4415, 9), -- Weapon Type
+(25011, 4416, 6), -- Races
 (25011, 4760, 5), -- Stun
 -- Follower of Thieles
 (25012, 4045, 1), -- Resist Full Magic Attack
-(25012, 4408, 1), -- HP Increase (1x)
-(25012, 4409, 1), -- MP Increase (1x)
-(25012, 4410, 11), -- Average P. Atk.
-(25012, 4411, 11), -- Average M. Atk.
-(25012, 4412, 11), -- Average P. Def.
-(25012, 4413, 11), -- Average M. Def.
-(25012, 4414, 3), -- Light Armor Type
-(25012, 4415, 3), -- One-handed Sword
-(25012, 4416, 13), -- Fairies
+(25012, 4408, 1), -- HP Modifiers
+(25012, 4409, 1), -- MP Modifiers
+(25012, 4410, 11), -- P. Atk. Modifiers
+(25012, 4411, 11), -- M. Atk. Modifiers
+(25012, 4412, 11), -- P. Def. Modifiers
+(25012, 4413, 11), -- M. Def. Modifiers
+(25012, 4414, 3), -- Armor Type
+(25012, 4415, 3), -- Weapon Type
+(25012, 4416, 13), -- Races
 -- Ghost of Peasant Leader
 (25013, 4045, 1), -- Resist Full Magic Attack
 (25013, 4188, 5), -- Bleed
 (25013, 4190, 5), -- Decrease MP
-(25013, 4192, 5), -- Vampiric Touch
-(25013, 4408, 1), -- HP Increase (1x)
-(25013, 4409, 1), -- MP Increase (1x)
-(25013, 4410, 11), -- Average P. Atk.
-(25013, 4411, 11), -- Average M. Atk.
-(25013, 4412, 11), -- Average P. Def.
-(25013, 4413, 11), -- Average M. Def.
-(25013, 4414, 2), -- Standard Type
-(25013, 4415, 3), -- One-handed Sword
-(25013, 4416, 1), -- Undead
+(25013, 4192, 5), -- BOSS HP Drain
+(25013, 4408, 1), -- HP Modifiers
+(25013, 4409, 1), -- MP Modifiers
+(25013, 4410, 11), -- P. Atk. Modifiers
+(25013, 4411, 11), -- M. Atk. Modifiers
+(25013, 4412, 11), -- P. Def. Modifiers
+(25013, 4413, 11), -- M. Def. Modifiers
+(25013, 4414, 2), -- Armor Type
+(25013, 4415, 3), -- Weapon Type
+(25013, 4416, 1), -- Races
 (25013, 4494, 1), -- Raid Boss
 (25013, 4794, 1), -- Raid Boss - Level 50
 -- Ghost of Peasant
 (25014, 4045, 1), -- Resist Full Magic Attack
-(25014, 4408, 1), -- HP Increase (1x)
-(25014, 4409, 1), -- MP Increase (1x)
-(25014, 4410, 11), -- Average P. Atk.
-(25014, 4411, 11), -- Average M. Atk.
-(25014, 4412, 11), -- Average P. Def.
-(25014, 4413, 11), -- Average M. Def.
-(25014, 4414, 3), -- Light Armor Type
-(25014, 4415, 3), -- One-handed Sword
-(25014, 4416, 1), -- Undead
-(25014, 4720, 4), -- Power Strike
+(25014, 4408, 1), -- HP Modifiers
+(25014, 4409, 1), -- MP Modifiers
+(25014, 4410, 11), -- P. Atk. Modifiers
+(25014, 4411, 11), -- M. Atk. Modifiers
+(25014, 4412, 11), -- P. Def. Modifiers
+(25014, 4413, 11), -- M. Def. Modifiers
+(25014, 4414, 3), -- Armor Type
+(25014, 4415, 3), -- Weapon Type
+(25014, 4416, 1), -- Races
+(25014, 4720, 4), -- BOSS Strike
 -- Ghost of Peasant
 (25015, 4045, 1), -- Resist Full Magic Attack
-(25015, 4408, 1), -- HP Increase (1x)
-(25015, 4409, 1), -- MP Increase (1x)
-(25015, 4410, 11), -- Average P. Atk.
-(25015, 4411, 11), -- Average M. Atk.
-(25015, 4412, 11), -- Average P. Def.
-(25015, 4413, 11), -- Average M. Def.
-(25015, 4414, 3), -- Light Armor Type
-(25015, 4415, 9), -- Bows
-(25015, 4416, 1), -- Undead
+(25015, 4408, 1), -- HP Modifiers
+(25015, 4409, 1), -- MP Modifiers
+(25015, 4410, 11), -- P. Atk. Modifiers
+(25015, 4411, 11), -- M. Atk. Modifiers
+(25015, 4412, 11), -- P. Def. Modifiers
+(25015, 4413, 11), -- M. Def. Modifiers
+(25015, 4414, 3), -- Armor Type
+(25015, 4415, 9), -- Weapon Type
+(25015, 4416, 1), -- Races
 -- The 3rd Underwater Guardian
 (25016, 4045, 1), -- Resist Full Magic Attack
-(25016, 4178, 6), -- Flame Strike
-(25016, 4408, 1), -- HP Increase (1x)
-(25016, 4409, 1), -- MP Increase (1x)
-(25016, 4410, 11), -- Average P. Atk.
-(25016, 4411, 11), -- Average M. Atk.
-(25016, 4412, 11), -- Average P. Def.
-(25016, 4413, 11), -- Average M. Def.
-(25016, 4414, 3), -- Light Armor Type
-(25016, 4415, 3), -- One-handed Sword
-(25016, 4416, 2), -- Magic Creatures
+(25016, 4178, 6), -- BOSS Flame Strike
+(25016, 4408, 1), -- HP Modifiers
+(25016, 4409, 1), -- MP Modifiers
+(25016, 4410, 11), -- P. Atk. Modifiers
+(25016, 4411, 11), -- M. Atk. Modifiers
+(25016, 4412, 11), -- P. Def. Modifiers
+(25016, 4413, 11), -- M. Def. Modifiers
+(25016, 4414, 3), -- Armor Type
+(25016, 4415, 3), -- Weapon Type
+(25016, 4416, 2), -- Races
 (25016, 4494, 1), -- Raid Boss
 (25016, 4795, 1), -- Raid Boss - Level 60
 -- Escort of the 3rd Guardian
 (25017, 4045, 1), -- Resist Full Magic Attack
-(25017, 4213, 5), -- Haste
-(25017, 4408, 1), -- HP Increase (1x)
-(25017, 4409, 1), -- MP Increase (1x)
-(25017, 4410, 11), -- Average P. Atk.
-(25017, 4411, 11), -- Average M. Atk.
-(25017, 4412, 11), -- Average P. Def.
-(25017, 4413, 11), -- Average M. Def.
-(25017, 4414, 3), -- Light Armor Type
-(25017, 4415, 3), -- One-handed Sword
-(25017, 4416, 2), -- Magic Creatures
-(25017, 4784, 5), -- Chant of Life
+(25017, 4213, 5), -- BOSS Haste
+(25017, 4408, 1), -- HP Modifiers
+(25017, 4409, 1), -- MP Modifiers
+(25017, 4410, 11), -- P. Atk. Modifiers
+(25017, 4411, 11), -- M. Atk. Modifiers
+(25017, 4412, 11), -- P. Def. Modifiers
+(25017, 4413, 11), -- M. Def. Modifiers
+(25017, 4414, 3), -- Armor Type
+(25017, 4415, 3), -- Weapon Type
+(25017, 4416, 2), -- Races
+(25017, 4784, 5), -- BOSS Chant of Life
 -- Support of the 3rd Guardian
 (25018, 4045, 1), -- Resist Full Magic Attack
-(25018, 4408, 1), -- HP Increase (1x)
-(25018, 4409, 1), -- MP Increase (1x)
-(25018, 4410, 11), -- Average P. Atk.
-(25018, 4411, 11), -- Average M. Atk.
-(25018, 4412, 11), -- Average P. Def.
-(25018, 4413, 11), -- Average M. Def.
-(25018, 4414, 3), -- Light Armor Type
-(25018, 4415, 3), -- One-handed Sword
-(25018, 4416, 2), -- Magic Creatures
+(25018, 4408, 1), -- HP Modifiers
+(25018, 4409, 1), -- MP Modifiers
+(25018, 4410, 11), -- P. Atk. Modifiers
+(25018, 4411, 11), -- M. Atk. Modifiers
+(25018, 4412, 11), -- P. Def. Modifiers
+(25018, 4413, 11), -- M. Def. Modifiers
+(25018, 4414, 3), -- Armor Type
+(25018, 4415, 3), -- Weapon Type
+(25018, 4416, 2), -- Races
 -- Pan Dryad
 (25019, 4045, 1), -- Resist Full Magic Attack
 (25019, 4172, 2), -- Stun
-(25019, 4175, 2), -- Haste
-(25019, 4177, 2), -- Cancel
-(25019, 4408, 1), -- HP Increase (1x)
-(25019, 4409, 1), -- MP Increase (1x)
-(25019, 4410, 11), -- Average P. Atk.
-(25019, 4411, 11), -- Average M. Atk.
-(25019, 4412, 11), -- Average P. Def.
-(25019, 4413, 11), -- Average M. Def.
-(25019, 4414, 2), -- Standard Type
-(25019, 4415, 3), -- One-handed Sword
-(25019, 4416, 13), -- Fairies
+(25019, 4175, 2), -- BOSS Haste
+(25019, 4177, 2), -- BOSS Cancel Magic
+(25019, 4408, 1), -- HP Modifiers
+(25019, 4409, 1), -- MP Modifiers
+(25019, 4410, 11), -- P. Atk. Modifiers
+(25019, 4411, 11), -- M. Atk. Modifiers
+(25019, 4412, 11), -- P. Def. Modifiers
+(25019, 4413, 11), -- M. Def. Modifiers
+(25019, 4414, 2), -- Armor Type
+(25019, 4415, 3), -- Weapon Type
+(25019, 4416, 13), -- Races
 (25019, 4494, 1), -- Raid Boss
-(25019, 4732, 2), -- Mortal Blow
+(25019, 4732, 2), -- BOSS Mortal Blow
 (25019, 4796, 1), -- Raid Boss - Level 25
 -- Breka Warlock Pastu
 (25020, 4045, 1), -- Resist Full Magic Attack
-(25020, 4178, 3), -- Flame Strike
-(25020, 4408, 1), -- HP Increase (1x)
-(25020, 4409, 1), -- MP Increase (1x)
-(25020, 4410, 11), -- Average P. Atk.
-(25020, 4411, 11), -- Average M. Atk.
-(25020, 4412, 11), -- Average P. Def.
-(25020, 4413, 11), -- Average M. Def.
-(25020, 4414, 3), -- Light Armor Type
-(25020, 4415, 3), -- One-handed Sword
-(25020, 4416, 6), -- Humanoids
+(25020, 4178, 3), -- BOSS Flame Strike
+(25020, 4408, 1), -- HP Modifiers
+(25020, 4409, 1), -- MP Modifiers
+(25020, 4410, 11), -- P. Atk. Modifiers
+(25020, 4411, 11), -- M. Atk. Modifiers
+(25020, 4412, 11), -- P. Def. Modifiers
+(25020, 4413, 11), -- M. Def. Modifiers
+(25020, 4414, 3), -- Armor Type
+(25020, 4415, 3), -- Weapon Type
+(25020, 4416, 6), -- Races
 (25020, 4494, 1), -- Raid Boss
 (25020, 4797, 1), -- Raid Boss - Level 34
 -- Pastu's Silhouette
 (25021, 4045, 1), -- Resist Full Magic Attack
-(25021, 4211, 3), -- Might
-(25021, 4408, 1), -- HP Increase (1x)
-(25021, 4409, 1), -- MP Increase (1x)
-(25021, 4410, 11), -- Average P. Atk.
-(25021, 4411, 11), -- Average M. Atk.
-(25021, 4412, 11), -- Average P. Def.
-(25021, 4413, 11), -- Average M. Def.
-(25021, 4414, 3), -- Light Armor Type
-(25021, 4415, 3), -- One-handed Sword
-(25021, 4416, 9), -- Demons
-(25021, 4786, 3), -- Chant of Life
+(25021, 4211, 3), -- BOSS Might
+(25021, 4408, 1), -- HP Modifiers
+(25021, 4409, 1), -- MP Modifiers
+(25021, 4410, 11), -- P. Atk. Modifiers
+(25021, 4411, 11), -- M. Atk. Modifiers
+(25021, 4412, 11), -- P. Def. Modifiers
+(25021, 4413, 11), -- M. Def. Modifiers
+(25021, 4414, 3), -- Armor Type
+(25021, 4415, 3), -- Weapon Type
+(25021, 4416, 9), -- Races
+(25021, 4786, 3), -- BOSS Chant of Life
 -- Pastu's Shadow
 (25022, 4045, 1), -- Resist Full Magic Attack
-(25022, 4408, 1), -- HP Increase (1x)
-(25022, 4409, 1), -- MP Increase (1x)
-(25022, 4410, 11), -- Average P. Atk.
-(25022, 4411, 11), -- Average M. Atk.
-(25022, 4412, 11), -- Average P. Def.
-(25022, 4413, 11), -- Average M. Def.
-(25022, 4414, 3), -- Light Armor Type
-(25022, 4415, 3), -- One-handed Sword
-(25022, 4416, 9), -- Demons
+(25022, 4408, 1), -- HP Modifiers
+(25022, 4409, 1), -- MP Modifiers
+(25022, 4410, 11), -- P. Atk. Modifiers
+(25022, 4411, 11), -- M. Atk. Modifiers
+(25022, 4412, 11), -- P. Def. Modifiers
+(25022, 4413, 11), -- M. Def. Modifiers
+(25022, 4414, 3), -- Armor Type
+(25022, 4415, 3), -- Weapon Type
+(25022, 4416, 9), -- Races
 -- Stakato Queen Zyrnna
 (25023, 4045, 1), -- Resist Full Magic Attack
 (25023, 4183, 3), -- Decrease P. Atk.
 (25023, 4188, 3), -- Bleed
-(25023, 4194, 3), -- Aura Burn
-(25023, 4408, 1), -- HP Increase (1x)
-(25023, 4409, 1), -- MP Increase (1x)
-(25023, 4410, 11), -- Average P. Atk.
-(25023, 4411, 11), -- Average M. Atk.
-(25023, 4412, 11), -- Average P. Def.
-(25023, 4413, 11), -- Average M. Def.
-(25023, 4414, 2), -- Standard Type
-(25023, 4415, 3), -- One-handed Sword
-(25023, 4416, 6), -- Humanoids
+(25023, 4194, 3), -- BOSS Aura Burn
+(25023, 4408, 1), -- HP Modifiers
+(25023, 4409, 1), -- MP Modifiers
+(25023, 4410, 11), -- P. Atk. Modifiers
+(25023, 4411, 11), -- M. Atk. Modifiers
+(25023, 4412, 11), -- P. Def. Modifiers
+(25023, 4413, 11), -- M. Def. Modifiers
+(25023, 4414, 2), -- Armor Type
+(25023, 4415, 3), -- Weapon Type
+(25023, 4416, 6), -- Races
 (25023, 4494, 1), -- Raid Boss
 (25023, 4798, 1), -- Raid Boss - Level 34
 -- Jeruna's Guard Captain
 (25024, 4045, 1), -- Resist Full Magic Attack
-(25024, 4408, 1), -- HP Increase (1x)
-(25024, 4409, 1), -- MP Increase (1x)
-(25024, 4410, 11), -- Average P. Atk.
-(25024, 4411, 11), -- Average M. Atk.
-(25024, 4412, 11), -- Average P. Def.
-(25024, 4413, 11), -- Average M. Def.
-(25024, 4414, 2), -- Standard Type
-(25024, 4415, 7), -- Daggers
-(25024, 4416, 6), -- Humanoids
-(25024, 4730, 3), -- Mortal Blow
+(25024, 4408, 1), -- HP Modifiers
+(25024, 4409, 1), -- MP Modifiers
+(25024, 4410, 11), -- P. Atk. Modifiers
+(25024, 4411, 11), -- M. Atk. Modifiers
+(25024, 4412, 11), -- P. Def. Modifiers
+(25024, 4413, 11), -- M. Def. Modifiers
+(25024, 4414, 2), -- Armor Type
+(25024, 4415, 7), -- Weapon Type
+(25024, 4416, 6), -- Races
+(25024, 4730, 3), -- BOSS Mortal Blow
 -- Jeruna's Guard
 (25025, 4045, 1), -- Resist Full Magic Attack
-(25025, 4408, 1), -- HP Increase (1x)
-(25025, 4409, 1), -- MP Increase (1x)
-(25025, 4410, 11), -- Average P. Atk.
-(25025, 4411, 11), -- Average M. Atk.
-(25025, 4412, 11), -- Average P. Def.
-(25025, 4413, 11), -- Average M. Def.
-(25025, 4414, 2), -- Standard Type
-(25025, 4415, 3), -- One-handed Sword
-(25025, 4416, 6), -- Humanoids
+(25025, 4408, 1), -- HP Modifiers
+(25025, 4409, 1), -- MP Modifiers
+(25025, 4410, 11), -- P. Atk. Modifiers
+(25025, 4411, 11), -- M. Atk. Modifiers
+(25025, 4412, 11), -- P. Def. Modifiers
+(25025, 4413, 11), -- M. Def. Modifiers
+(25025, 4414, 2), -- Armor Type
+(25025, 4415, 3), -- Weapon Type
+(25025, 4416, 6), -- Races
 -- Ketra Commander Atis
 (25026, 4045, 1), -- Resist Full Magic Attack
-(25026, 4408, 1), -- HP Increase (1x)
-(25026, 4409, 1), -- MP Increase (1x)
-(25026, 4410, 11), -- Average P. Atk.
-(25026, 4411, 11), -- Average M. Atk.
-(25026, 4412, 11), -- Average P. Def.
-(25026, 4413, 11), -- Average M. Def.
-(25026, 4414, 2), -- Standard Type
-(25026, 4415, 5), -- Blunt Weapons
-(25026, 4416, 6), -- Humanoids
+(25026, 4408, 1), -- HP Modifiers
+(25026, 4409, 1), -- MP Modifiers
+(25026, 4410, 11), -- P. Atk. Modifiers
+(25026, 4411, 11), -- M. Atk. Modifiers
+(25026, 4412, 11), -- P. Def. Modifiers
+(25026, 4413, 11), -- M. Def. Modifiers
+(25026, 4414, 2), -- Armor Type
+(25026, 4415, 5), -- Weapon Type
+(25026, 4416, 6), -- Races
 (25026, 4494, 1), -- Raid Boss
 (25026, 4746, 4), -- Stun
 (25026, 4799, 1), -- Raid Boss - Level 49
 -- Ketra Marksman
 (25027, 4045, 1), -- Resist Full Magic Attack
-(25027, 4408, 1), -- HP Increase (1x)
-(25027, 4409, 1), -- MP Increase (1x)
-(25027, 4410, 11), -- Average P. Atk.
-(25027, 4411, 11), -- Average M. Atk.
-(25027, 4412, 11), -- Average P. Def.
-(25027, 4413, 11), -- Average M. Def.
-(25027, 4414, 3), -- Light Armor Type
-(25027, 4415, 9), -- Bows
-(25027, 4416, 6), -- Humanoids
+(25027, 4408, 1), -- HP Modifiers
+(25027, 4409, 1), -- MP Modifiers
+(25027, 4410, 11), -- P. Atk. Modifiers
+(25027, 4411, 11), -- M. Atk. Modifiers
+(25027, 4412, 11), -- P. Def. Modifiers
+(25027, 4413, 11), -- M. Def. Modifiers
+(25027, 4414, 3), -- Armor Type
+(25027, 4415, 9), -- Weapon Type
+(25027, 4416, 6), -- Races
 (25027, 4761, 4), -- Stun
 -- Ketra Raider
 (25028, 4045, 1), -- Resist Full Magic Attack
-(25028, 4408, 1), -- HP Increase (1x)
-(25028, 4409, 1), -- MP Increase (1x)
-(25028, 4410, 11), -- Average P. Atk.
-(25028, 4411, 11), -- Average M. Atk.
-(25028, 4412, 11), -- Average P. Def.
-(25028, 4413, 11), -- Average M. Def.
-(25028, 4414, 2), -- Standard Type
-(25028, 4415, 3), -- One-handed Sword
-(25028, 4416, 6), -- Humanoids
+(25028, 4408, 1), -- HP Modifiers
+(25028, 4409, 1), -- MP Modifiers
+(25028, 4410, 11), -- P. Atk. Modifiers
+(25028, 4411, 11), -- M. Atk. Modifiers
+(25028, 4412, 11), -- P. Def. Modifiers
+(25028, 4413, 11), -- M. Def. Modifiers
+(25028, 4414, 2), -- Armor Type
+(25028, 4415, 3), -- Weapon Type
+(25028, 4416, 6), -- Races
 -- Atraiban
 (25029, 4045, 1), -- Resist Full Magic Attack
-(25029, 4178, 5), -- Flame Strike
-(25029, 4408, 1), -- HP Increase (1x)
-(25029, 4409, 1), -- MP Increase (1x)
-(25029, 4410, 11), -- Average P. Atk.
-(25029, 4411, 11), -- Average M. Atk.
-(25029, 4412, 11), -- Average P. Def.
-(25029, 4413, 11), -- Average M. Def.
-(25029, 4414, 2), -- Standard Type
-(25029, 4415, 3), -- One-handed Sword
-(25029, 4416, 2), -- Magic Creatures
+(25029, 4178, 5), -- BOSS Flame Strike
+(25029, 4408, 1), -- HP Modifiers
+(25029, 4409, 1), -- MP Modifiers
+(25029, 4410, 11), -- P. Atk. Modifiers
+(25029, 4411, 11), -- M. Atk. Modifiers
+(25029, 4412, 11), -- P. Def. Modifiers
+(25029, 4413, 11), -- M. Def. Modifiers
+(25029, 4414, 2), -- Armor Type
+(25029, 4415, 3), -- Weapon Type
+(25029, 4416, 2), -- Races
 (25029, 4494, 1), -- Raid Boss
 (25029, 4800, 1), -- Raid Boss - Level 53
 -- Atraiban's Top Disciple
 (25030, 4045, 1), -- Resist Full Magic Attack
-(25030, 4212, 5), -- Shield
-(25030, 4408, 1), -- HP Increase (1x)
-(25030, 4409, 1), -- MP Increase (1x)
-(25030, 4410, 11), -- Average P. Atk.
-(25030, 4411, 11), -- Average M. Atk.
-(25030, 4412, 11), -- Average P. Def.
-(25030, 4413, 11), -- Average M. Def.
-(25030, 4414, 3), -- Light Armor Type
-(25030, 4415, 3), -- One-handed Sword
-(25030, 4416, 2), -- Magic Creatures
-(25030, 4784, 5), -- Chant of Life
+(25030, 4212, 5), -- BOSS Shield
+(25030, 4408, 1), -- HP Modifiers
+(25030, 4409, 1), -- MP Modifiers
+(25030, 4410, 11), -- P. Atk. Modifiers
+(25030, 4411, 11), -- M. Atk. Modifiers
+(25030, 4412, 11), -- P. Def. Modifiers
+(25030, 4413, 11), -- M. Def. Modifiers
+(25030, 4414, 3), -- Armor Type
+(25030, 4415, 3), -- Weapon Type
+(25030, 4416, 2), -- Races
+(25030, 4784, 5), -- BOSS Chant of Life
 -- Atraiban's Disciple
 (25031, 4045, 1), -- Resist Full Magic Attack
-(25031, 4408, 1), -- HP Increase (1x)
-(25031, 4409, 1), -- MP Increase (1x)
-(25031, 4410, 11), -- Average P. Atk.
-(25031, 4411, 11), -- Average M. Atk.
-(25031, 4412, 11), -- Average P. Def.
-(25031, 4413, 11), -- Average M. Def.
-(25031, 4414, 2), -- Standard Type
-(25031, 4415, 3), -- One-handed Sword
-(25031, 4416, 2), -- Magic Creatures
+(25031, 4408, 1), -- HP Modifiers
+(25031, 4409, 1), -- MP Modifiers
+(25031, 4410, 11), -- P. Atk. Modifiers
+(25031, 4411, 11), -- M. Atk. Modifiers
+(25031, 4412, 11), -- P. Def. Modifiers
+(25031, 4413, 11), -- M. Def. Modifiers
+(25031, 4414, 2), -- Armor Type
+(25031, 4415, 3), -- Weapon Type
+(25031, 4416, 2), -- Races
 -- Eva's Guardian Millenu
 (25032, 4045, 1), -- Resist Full Magic Attack
 (25032, 4197, 5), -- Hold
-(25032, 4408, 1), -- HP Increase (1x)
-(25032, 4409, 1), -- MP Increase (1x)
-(25032, 4410, 11), -- Average P. Atk.
-(25032, 4411, 11), -- Average M. Atk.
-(25032, 4412, 11), -- Average P. Def.
-(25032, 4413, 11), -- Average M. Def.
-(25032, 4414, 2), -- Standard Type
-(25032, 4415, 3), -- One-handed Sword
-(25032, 4416, 9), -- Demons
+(25032, 4408, 1), -- HP Modifiers
+(25032, 4409, 1), -- MP Modifiers
+(25032, 4410, 11), -- P. Atk. Modifiers
+(25032, 4411, 11), -- M. Atk. Modifiers
+(25032, 4412, 11), -- P. Def. Modifiers
+(25032, 4413, 11), -- M. Def. Modifiers
+(25032, 4414, 2), -- Armor Type
+(25032, 4415, 3), -- Weapon Type
+(25032, 4416, 9), -- Races
 (25032, 4494, 1), -- Raid Boss
 (25032, 4801, 1), -- Raid Boss - Level 58
 -- Millenu Guard Shaman
 (25033, 4045, 1), -- Resist Full Magic Attack
-(25033, 4193, 5), -- Life Drain
+(25033, 4193, 5), -- BOSS Life Drain
 (25033, 4199, 5), -- Decrease P. Atk.
-(25033, 4408, 1), -- HP Increase (1x)
-(25033, 4409, 1), -- MP Increase (1x)
-(25033, 4410, 11), -- Average P. Atk.
-(25033, 4411, 11), -- Average M. Atk.
-(25033, 4412, 11), -- Average P. Def.
-(25033, 4413, 11), -- Average M. Def.
-(25033, 4414, 3), -- Light Armor Type
-(25033, 4415, 3), -- One-handed Sword
-(25033, 4416, 6), -- Humanoids
+(25033, 4408, 1), -- HP Modifiers
+(25033, 4409, 1), -- MP Modifiers
+(25033, 4410, 11), -- P. Atk. Modifiers
+(25033, 4411, 11), -- M. Atk. Modifiers
+(25033, 4412, 11), -- P. Def. Modifiers
+(25033, 4413, 11), -- M. Def. Modifiers
+(25033, 4414, 3), -- Armor Type
+(25033, 4415, 3), -- Weapon Type
+(25033, 4416, 6), -- Races
 -- Millenu Guard Warrior
 (25034, 4045, 1), -- Resist Full Magic Attack
-(25034, 4170, 5), -- Mortal Blow
-(25034, 4408, 1), -- HP Increase (1x)
-(25034, 4409, 1), -- MP Increase (1x)
-(25034, 4410, 11), -- Average P. Atk.
-(25034, 4411, 11), -- Average M. Atk.
-(25034, 4412, 11), -- Average P. Def.
-(25034, 4413, 11), -- Average M. Def.
-(25034, 4414, 2), -- Standard Type
-(25034, 4415, 7), -- Daggers
-(25034, 4416, 1), -- Undead
+(25034, 4170, 5), -- BOSS Mortal Blow
+(25034, 4408, 1), -- HP Modifiers
+(25034, 4409, 1), -- MP Modifiers
+(25034, 4410, 11), -- P. Atk. Modifiers
+(25034, 4411, 11), -- M. Atk. Modifiers
+(25034, 4412, 11), -- P. Def. Modifiers
+(25034, 4413, 11), -- M. Def. Modifiers
+(25034, 4414, 2), -- Armor Type
+(25034, 4415, 7), -- Weapon Type
+(25034, 4416, 1), -- Races
 -- Shilen's Messenger Cabrio
 (25035, 4045, 1), -- Resist Full Magic Attack
 (25035, 4180, 7), -- Stun
-(25035, 4408, 1), -- HP Increase (1x)
-(25035, 4409, 1), -- MP Increase (1x)
-(25035, 4410, 11), -- Average P. Atk.
-(25035, 4411, 11), -- Average M. Atk.
-(25035, 4412, 11), -- Average P. Def.
-(25035, 4413, 11), -- Average M. Def.
-(25035, 4414, 2), -- Standard Type
-(25035, 4415, 5), -- Blunt Weapons
-(25035, 4416, 9), -- Demons
+(25035, 4408, 1), -- HP Modifiers
+(25035, 4409, 1), -- MP Modifiers
+(25035, 4410, 11), -- P. Atk. Modifiers
+(25035, 4411, 11), -- M. Atk. Modifiers
+(25035, 4412, 11), -- P. Def. Modifiers
+(25035, 4413, 11), -- M. Def. Modifiers
+(25035, 4414, 2), -- Armor Type
+(25035, 4415, 5), -- Weapon Type
+(25035, 4416, 9), -- Races
 (25035, 4494, 1), -- Raid Boss
 (25035, 4802, 1), -- Raid Boss - Level 70
 -- Cabrio Captor
 (25036, 4045, 1), -- Resist Full Magic Attack
 (25036, 4208, 6), -- Stun
-(25036, 4408, 1), -- HP Increase (1x)
-(25036, 4409, 1), -- MP Increase (1x)
-(25036, 4410, 11), -- Average P. Atk.
-(25036, 4411, 11), -- Average M. Atk.
-(25036, 4412, 11), -- Average P. Def.
-(25036, 4413, 11), -- Average M. Def.
-(25036, 4414, 3), -- Light Armor Type
-(25036, 4415, 9), -- Bows
-(25036, 4416, 1), -- Undead
+(25036, 4408, 1), -- HP Modifiers
+(25036, 4409, 1), -- MP Modifiers
+(25036, 4410, 11), -- P. Atk. Modifiers
+(25036, 4411, 11), -- M. Atk. Modifiers
+(25036, 4412, 11), -- P. Def. Modifiers
+(25036, 4413, 11), -- M. Def. Modifiers
+(25036, 4414, 3), -- Armor Type
+(25036, 4415, 9), -- Weapon Type
+(25036, 4416, 1), -- Races
 -- Cabrio Blader
 (25037, 4045, 1), -- Resist Full Magic Attack
-(25037, 4408, 1), -- HP Increase (1x)
-(25037, 4409, 1), -- MP Increase (1x)
-(25037, 4410, 11), -- Average P. Atk.
-(25037, 4411, 11), -- Average M. Atk.
-(25037, 4412, 11), -- Average P. Def.
-(25037, 4413, 11), -- Average M. Def.
-(25037, 4414, 2), -- Standard Type
-(25037, 4415, 3), -- One-handed Sword
-(25037, 4416, 9), -- Demons
+(25037, 4408, 1), -- HP Modifiers
+(25037, 4409, 1), -- MP Modifiers
+(25037, 4410, 11), -- P. Atk. Modifiers
+(25037, 4411, 11), -- M. Atk. Modifiers
+(25037, 4412, 11), -- P. Def. Modifiers
+(25037, 4413, 11), -- M. Def. Modifiers
+(25037, 4414, 2), -- Armor Type
+(25037, 4415, 3), -- Weapon Type
+(25037, 4416, 9), -- Races
 -- Tirak
 (25038, 4045, 1), -- Resist Full Magic Attack
 (25038, 4182, 2), -- Poison
 (25038, 4186, 2), -- Hold
-(25038, 4192, 2), -- Vampiric Touch
-(25038, 4408, 1), -- HP Increase (1x)
-(25038, 4409, 1), -- MP Increase (1x)
-(25038, 4410, 11), -- Average P. Atk.
-(25038, 4411, 11), -- Average M. Atk.
-(25038, 4412, 11), -- Average P. Def.
-(25038, 4413, 11), -- Average M. Def.
-(25038, 4414, 2), -- Standard Type
-(25038, 4415, 1), -- Bare Hands
-(25038, 4416, 9), -- Demons
+(25038, 4192, 2), -- BOSS HP Drain
+(25038, 4408, 1), -- HP Modifiers
+(25038, 4409, 1), -- MP Modifiers
+(25038, 4410, 11), -- P. Atk. Modifiers
+(25038, 4411, 11), -- M. Atk. Modifiers
+(25038, 4412, 11), -- P. Def. Modifiers
+(25038, 4413, 11), -- M. Def. Modifiers
+(25038, 4414, 2), -- Armor Type
+(25038, 4415, 1), -- Weapon Type
+(25038, 4416, 9), -- Races
 (25038, 4494, 1), -- Raid Boss
 (25038, 4803, 1), -- Raid Boss - Level 28
 -- Tirak's Guard
 (25039, 4045, 1), -- Resist Full Magic Attack
-(25039, 4408, 1), -- HP Increase (1x)
-(25039, 4409, 1), -- MP Increase (1x)
-(25039, 4410, 11), -- Average P. Atk.
-(25039, 4411, 11), -- Average M. Atk.
-(25039, 4412, 11), -- Average P. Def.
-(25039, 4413, 11), -- Average M. Def.
-(25039, 4414, 2), -- Standard Type
-(25039, 4415, 3), -- One-handed Sword
-(25039, 4416, 1), -- Undead
-(25039, 4732, 2), -- Mortal Blow
+(25039, 4408, 1), -- HP Modifiers
+(25039, 4409, 1), -- MP Modifiers
+(25039, 4410, 11), -- P. Atk. Modifiers
+(25039, 4411, 11), -- M. Atk. Modifiers
+(25039, 4412, 11), -- P. Def. Modifiers
+(25039, 4413, 11), -- M. Def. Modifiers
+(25039, 4414, 2), -- Armor Type
+(25039, 4415, 3), -- Weapon Type
+(25039, 4416, 1), -- Races
+(25039, 4732, 2), -- BOSS Mortal Blow
 -- Tirak's Knight
 (25040, 4045, 1), -- Resist Full Magic Attack
-(25040, 4408, 1), -- HP Increase (1x)
-(25040, 4409, 1), -- MP Increase (1x)
-(25040, 4410, 11), -- Average P. Atk.
-(25040, 4411, 11), -- Average M. Atk.
-(25040, 4412, 11), -- Average P. Def.
-(25040, 4413, 11), -- Average M. Def.
-(25040, 4414, 3), -- Light Armor Type
-(25040, 4415, 3), -- One-handed Sword
-(25040, 4416, 1), -- Undead
+(25040, 4408, 1), -- HP Modifiers
+(25040, 4409, 1), -- MP Modifiers
+(25040, 4410, 11), -- P. Atk. Modifiers
+(25040, 4411, 11), -- M. Atk. Modifiers
+(25040, 4412, 11), -- P. Def. Modifiers
+(25040, 4413, 11), -- M. Def. Modifiers
+(25040, 4414, 3), -- Armor Type
+(25040, 4415, 3), -- Weapon Type
+(25040, 4416, 1), -- Races
 -- Remmel
 (25041, 4045, 1), -- Resist Full Magic Attack
-(25041, 4408, 1), -- HP Increase (1x)
-(25041, 4409, 1), -- MP Increase (1x)
-(25041, 4410, 11), -- Average P. Atk.
-(25041, 4411, 11), -- Average M. Atk.
-(25041, 4412, 11), -- Average P. Def.
-(25041, 4413, 11), -- Average M. Def.
-(25041, 4414, 2), -- Standard Type
-(25041, 4415, 7), -- Daggers
-(25041, 4416, 6), -- Humanoids
+(25041, 4408, 1), -- HP Modifiers
+(25041, 4409, 1), -- MP Modifiers
+(25041, 4410, 11), -- P. Atk. Modifiers
+(25041, 4411, 11), -- M. Atk. Modifiers
+(25041, 4412, 11), -- P. Def. Modifiers
+(25041, 4413, 11), -- M. Def. Modifiers
+(25041, 4414, 2), -- Armor Type
+(25041, 4415, 7), -- Weapon Type
+(25041, 4416, 6), -- Races
 (25041, 4494, 1), -- Raid Boss
-(25041, 4752, 3), -- Mortal Blow
+(25041, 4752, 3), -- BOSS Mortal Blow
 (25041, 4804, 1), -- Raid Boss - Level 35
 -- Remmel's Archer
 (25042, 4045, 1), -- Resist Full Magic Attack
-(25042, 4408, 1), -- HP Increase (1x)
-(25042, 4409, 1), -- MP Increase (1x)
-(25042, 4410, 11), -- Average P. Atk.
-(25042, 4411, 11), -- Average M. Atk.
-(25042, 4412, 11), -- Average P. Def.
-(25042, 4413, 11), -- Average M. Def.
-(25042, 4414, 3), -- Light Armor Type
-(25042, 4415, 9), -- Bows
-(25042, 4416, 6), -- Humanoids
-(25042, 4757, 3), -- Power Shot
+(25042, 4408, 1), -- HP Modifiers
+(25042, 4409, 1), -- MP Modifiers
+(25042, 4410, 11), -- P. Atk. Modifiers
+(25042, 4411, 11), -- M. Atk. Modifiers
+(25042, 4412, 11), -- P. Def. Modifiers
+(25042, 4413, 11), -- M. Def. Modifiers
+(25042, 4414, 3), -- Armor Type
+(25042, 4415, 9), -- Weapon Type
+(25042, 4416, 6), -- Races
+(25042, 4757, 3), -- BOSS Power Shot
 -- Remmel's Guard
 (25043, 4045, 1), -- Resist Full Magic Attack
-(25043, 4408, 1), -- HP Increase (1x)
-(25043, 4409, 1), -- MP Increase (1x)
-(25043, 4410, 11), -- Average P. Atk.
-(25043, 4411, 11), -- Average M. Atk.
-(25043, 4412, 11), -- Average P. Def.
-(25043, 4413, 11), -- Average M. Def.
-(25043, 4414, 2), -- Standard Type
-(25043, 4415, 3), -- One-handed Sword
-(25043, 4416, 6), -- Humanoids
+(25043, 4408, 1), -- HP Modifiers
+(25043, 4409, 1), -- MP Modifiers
+(25043, 4410, 11), -- P. Atk. Modifiers
+(25043, 4411, 11), -- M. Atk. Modifiers
+(25043, 4412, 11), -- P. Def. Modifiers
+(25043, 4413, 11), -- M. Def. Modifiers
+(25043, 4414, 2), -- Armor Type
+(25043, 4415, 3), -- Weapon Type
+(25043, 4416, 6), -- Races
 -- Barion
 (25044, 4045, 1), -- Resist Full Magic Attack
-(25044, 4178, 4), -- Flame Strike
-(25044, 4408, 1), -- HP Increase (1x)
-(25044, 4409, 1), -- MP Increase (1x)
-(25044, 4410, 11), -- Average P. Atk.
-(25044, 4411, 11), -- Average M. Atk.
-(25044, 4412, 11), -- Average P. Def.
-(25044, 4413, 11), -- Average M. Def.
-(25044, 4414, 2), -- Standard Type
-(25044, 4415, 3), -- One-handed Sword
-(25044, 4416, 1), -- Undead
+(25044, 4178, 4), -- BOSS Flame Strike
+(25044, 4408, 1), -- HP Modifiers
+(25044, 4409, 1), -- MP Modifiers
+(25044, 4410, 11), -- P. Atk. Modifiers
+(25044, 4411, 11), -- M. Atk. Modifiers
+(25044, 4412, 11), -- P. Def. Modifiers
+(25044, 4413, 11), -- M. Def. Modifiers
+(25044, 4414, 2), -- Armor Type
+(25044, 4415, 3), -- Weapon Type
+(25044, 4416, 1), -- Races
 (25044, 4494, 1), -- Raid Boss
 (25044, 4805, 1), -- Raid Boss - Level 47
 -- Barion's Dark Mage
 (25045, 4045, 1), -- Resist Full Magic Attack
-(25045, 4213, 4), -- Haste
-(25045, 4408, 1), -- HP Increase (1x)
-(25045, 4409, 1), -- MP Increase (1x)
-(25045, 4410, 11), -- Average P. Atk.
-(25045, 4411, 11), -- Average M. Atk.
-(25045, 4412, 11), -- Average P. Def.
-(25045, 4413, 11), -- Average M. Def.
-(25045, 4414, 3), -- Light Armor Type
-(25045, 4415, 5), -- Blunt Weapons
-(25045, 4416, 6), -- Humanoids
-(25045, 4781, 4), -- Heal
+(25045, 4213, 4), -- BOSS Haste
+(25045, 4408, 1), -- HP Modifiers
+(25045, 4409, 1), -- MP Modifiers
+(25045, 4410, 11), -- P. Atk. Modifiers
+(25045, 4411, 11), -- M. Atk. Modifiers
+(25045, 4412, 11), -- P. Def. Modifiers
+(25045, 4413, 11), -- M. Def. Modifiers
+(25045, 4414, 3), -- Armor Type
+(25045, 4415, 5), -- Weapon Type
+(25045, 4416, 6), -- Races
+(25045, 4781, 4), -- BOSS Heal
 -- Barion's Grunt
 (25046, 4045, 1), -- Resist Full Magic Attack
-(25046, 4408, 1), -- HP Increase (1x)
-(25046, 4409, 1), -- MP Increase (1x)
-(25046, 4410, 11), -- Average P. Atk.
-(25046, 4411, 11), -- Average M. Atk.
-(25046, 4412, 11), -- Average P. Def.
-(25046, 4413, 11), -- Average M. Def.
-(25046, 4414, 3), -- Light Armor Type
-(25046, 4415, 3), -- One-handed Sword
-(25046, 4416, 1), -- Undead
+(25046, 4408, 1), -- HP Modifiers
+(25046, 4409, 1), -- MP Modifiers
+(25046, 4410, 11), -- P. Atk. Modifiers
+(25046, 4411, 11), -- M. Atk. Modifiers
+(25046, 4412, 11), -- P. Def. Modifiers
+(25046, 4413, 11), -- M. Def. Modifiers
+(25046, 4414, 3), -- Armor Type
+(25046, 4415, 3), -- Weapon Type
+(25046, 4416, 1), -- Races
 -- Karte
 (25047, 4045, 1), -- Resist Full Magic Attack
 (25047, 4188, 4), -- Bleed
 (25047, 4190, 4), -- Decrease MP
-(25047, 4192, 4), -- Vampiric Touch
-(25047, 4408, 1), -- HP Increase (1x)
-(25047, 4409, 1), -- MP Increase (1x)
-(25047, 4410, 11), -- Average P. Atk.
-(25047, 4411, 11), -- Average M. Atk.
-(25047, 4412, 11), -- Average P. Def.
-(25047, 4413, 11), -- Average M. Def.
-(25047, 4414, 2), -- Standard Type
-(25047, 4415, 3), -- One-handed Sword
-(25047, 4416, 1), -- Undead
+(25047, 4192, 4), -- BOSS HP Drain
+(25047, 4408, 1), -- HP Modifiers
+(25047, 4409, 1), -- MP Modifiers
+(25047, 4410, 11), -- P. Atk. Modifiers
+(25047, 4411, 11), -- M. Atk. Modifiers
+(25047, 4412, 11), -- P. Def. Modifiers
+(25047, 4413, 11), -- M. Def. Modifiers
+(25047, 4414, 2), -- Armor Type
+(25047, 4415, 3), -- Weapon Type
+(25047, 4416, 1), -- Races
 (25047, 4494, 1), -- Raid Boss
 (25047, 4806, 1), -- Raid Boss - Level 49
 -- Karte's Chief Knight
 (25048, 4045, 1), -- Resist Full Magic Attack
-(25048, 4408, 1), -- HP Increase (1x)
-(25048, 4409, 1), -- MP Increase (1x)
-(25048, 4410, 11), -- Average P. Atk.
-(25048, 4411, 11), -- Average M. Atk.
-(25048, 4412, 11), -- Average P. Def.
-(25048, 4413, 11), -- Average M. Def.
-(25048, 4414, 2), -- Standard Type
-(25048, 4415, 3), -- One-handed Sword
-(25048, 4416, 1), -- Undead
-(25048, 4722, 4), -- Power Strike
+(25048, 4408, 1), -- HP Modifiers
+(25048, 4409, 1), -- MP Modifiers
+(25048, 4410, 11), -- P. Atk. Modifiers
+(25048, 4411, 11), -- M. Atk. Modifiers
+(25048, 4412, 11), -- P. Def. Modifiers
+(25048, 4413, 11), -- M. Def. Modifiers
+(25048, 4414, 2), -- Armor Type
+(25048, 4415, 3), -- Weapon Type
+(25048, 4416, 1), -- Races
+(25048, 4722, 4), -- BOSS Strike
 -- Karte's Royal Guard
 (25049, 4045, 1), -- Resist Full Magic Attack
-(25049, 4408, 1), -- HP Increase (1x)
-(25049, 4409, 1), -- MP Increase (1x)
-(25049, 4410, 11), -- Average P. Atk.
-(25049, 4411, 11), -- Average M. Atk.
-(25049, 4412, 11), -- Average P. Def.
-(25049, 4413, 11), -- Average M. Def.
-(25049, 4414, 3), -- Light Armor Type
-(25049, 4415, 5), -- Blunt Weapons
-(25049, 4416, 1), -- Undead
+(25049, 4408, 1), -- HP Modifiers
+(25049, 4409, 1), -- MP Modifiers
+(25049, 4410, 11), -- P. Atk. Modifiers
+(25049, 4411, 11), -- M. Atk. Modifiers
+(25049, 4412, 11), -- P. Def. Modifiers
+(25049, 4413, 11), -- M. Def. Modifiers
+(25049, 4414, 3), -- Armor Type
+(25049, 4415, 5), -- Weapon Type
+(25049, 4416, 1), -- Races
 -- Verfa
 (25050, 4045, 1), -- Resist Full Magic Attack
 (25050, 4172, 5), -- Stun
-(25050, 4176, 5), -- Reflect Damage
-(25050, 4177, 5), -- Cancel
-(25050, 4408, 1), -- HP Increase (1x)
-(25050, 4409, 1), -- MP Increase (1x)
-(25050, 4410, 11), -- Average P. Atk.
-(25050, 4411, 11), -- Average M. Atk.
-(25050, 4412, 11), -- Average P. Def.
-(25050, 4413, 11), -- Average M. Def.
-(25050, 4414, 2), -- Standard Type
-(25050, 4415, 3), -- One-handed Sword
-(25050, 4416, 1), -- Undead
+(25050, 4176, 5), -- BOSS Reflect Damage
+(25050, 4177, 5), -- BOSS Cancel Magic
+(25050, 4408, 1), -- HP Modifiers
+(25050, 4409, 1), -- MP Modifiers
+(25050, 4410, 11), -- P. Atk. Modifiers
+(25050, 4411, 11), -- M. Atk. Modifiers
+(25050, 4412, 11), -- P. Def. Modifiers
+(25050, 4413, 11), -- M. Def. Modifiers
+(25050, 4414, 2), -- Armor Type
+(25050, 4415, 3), -- Weapon Type
+(25050, 4416, 1), -- Races
 (25050, 4494, 1), -- Raid Boss
 (25050, 4728, 5), -- Stun
 (25050, 4807, 1), -- Raid Boss - Level 51
 -- Rahha
 (25051, 4045, 1), -- Resist Full Magic Attack
-(25051, 4178, 6), -- Flame Strike
-(25051, 4408, 1), -- HP Increase (1x)
-(25051, 4409, 1), -- MP Increase (1x)
-(25051, 4410, 11), -- Average P. Atk.
-(25051, 4411, 11), -- Average M. Atk.
-(25051, 4412, 11), -- Average P. Def.
-(25051, 4413, 11), -- Average M. Def.
-(25051, 4414, 2), -- Standard Type
-(25051, 4415, 3), -- One-handed Sword
-(25051, 4416, 9), -- Demons
+(25051, 4178, 6), -- BOSS Flame Strike
+(25051, 4408, 1), -- HP Modifiers
+(25051, 4409, 1), -- MP Modifiers
+(25051, 4410, 11), -- P. Atk. Modifiers
+(25051, 4411, 11), -- M. Atk. Modifiers
+(25051, 4412, 11), -- P. Def. Modifiers
+(25051, 4413, 11), -- M. Def. Modifiers
+(25051, 4414, 2), -- Armor Type
+(25051, 4415, 3), -- Weapon Type
+(25051, 4416, 9), -- Races
 (25051, 4494, 1), -- Raid Boss
 (25051, 4808, 1), -- Raid Boss - Level 65
 -- Priestess of Rahha
 (25052, 4045, 1), -- Resist Full Magic Attack
-(25052, 4213, 6), -- Haste
-(25052, 4408, 1), -- HP Increase (1x)
-(25052, 4409, 1), -- MP Increase (1x)
-(25052, 4410, 11), -- Average P. Atk.
-(25052, 4411, 11), -- Average M. Atk.
-(25052, 4412, 11), -- Average P. Def.
-(25052, 4413, 11), -- Average M. Def.
-(25052, 4414, 3), -- Light Armor Type
-(25052, 4415, 3), -- One-handed Sword
-(25052, 4416, 3), -- Beasts
-(25052, 4785, 6), -- Chant of Life
+(25052, 4213, 6), -- BOSS Haste
+(25052, 4408, 1), -- HP Modifiers
+(25052, 4409, 1), -- MP Modifiers
+(25052, 4410, 11), -- P. Atk. Modifiers
+(25052, 4411, 11), -- M. Atk. Modifiers
+(25052, 4412, 11), -- P. Def. Modifiers
+(25052, 4413, 11), -- M. Def. Modifiers
+(25052, 4414, 3), -- Armor Type
+(25052, 4415, 3), -- Weapon Type
+(25052, 4416, 3), -- Races
+(25052, 4785, 6), -- BOSS Chant of Life
 -- Fanatics of Rahha
 (25053, 4045, 1), -- Resist Full Magic Attack
-(25053, 4408, 1), -- HP Increase (1x)
-(25053, 4409, 1), -- MP Increase (1x)
-(25053, 4410, 11), -- Average P. Atk.
-(25053, 4411, 11), -- Average M. Atk.
-(25053, 4412, 11), -- Average P. Def.
-(25053, 4413, 11), -- Average M. Def.
-(25053, 4414, 3), -- Light Armor Type
-(25053, 4415, 3), -- One-handed Sword
-(25053, 4416, 3), -- Beasts
+(25053, 4408, 1), -- HP Modifiers
+(25053, 4409, 1), -- MP Modifiers
+(25053, 4410, 11), -- P. Atk. Modifiers
+(25053, 4411, 11), -- M. Atk. Modifiers
+(25053, 4412, 11), -- P. Def. Modifiers
+(25053, 4413, 11), -- M. Def. Modifiers
+(25053, 4414, 3), -- Armor Type
+(25053, 4415, 3), -- Weapon Type
+(25053, 4416, 3), -- Races
 -- Kernon
 (25054, 4045, 1), -- Resist Full Magic Attack
 (25054, 4182, 8), -- Poison
 (25054, 4190, 8), -- Decrease MP
-(25054, 4195, 8), -- Twister
-(25054, 4408, 1), -- HP Increase (1x)
-(25054, 4409, 1), -- MP Increase (1x)
-(25054, 4410, 11), -- Average P. Atk.
-(25054, 4411, 11), -- Average M. Atk.
-(25054, 4412, 11), -- Average P. Def.
-(25054, 4413, 11), -- Average M. Def.
-(25054, 4414, 2), -- Standard Type
-(25054, 4415, 1), -- Bare Hands
-(25054, 4416, 9), -- Demons
+(25054, 4195, 8), -- BOSS Twister
+(25054, 4408, 1), -- HP Modifiers
+(25054, 4409, 1), -- MP Modifiers
+(25054, 4410, 11), -- P. Atk. Modifiers
+(25054, 4411, 11), -- M. Atk. Modifiers
+(25054, 4412, 11), -- P. Def. Modifiers
+(25054, 4413, 11), -- M. Def. Modifiers
+(25054, 4414, 2), -- Armor Type
+(25054, 4415, 1), -- Weapon Type
+(25054, 4416, 9), -- Races
 (25054, 4494, 1), -- Raid Boss
 (25054, 4809, 1), -- Raid Boss - Level 75
 -- Taliadon
 (25055, 4045, 1), -- Resist Full Magic Attack
-(25055, 4168, 7), -- Power Strike
-(25055, 4408, 1), -- HP Increase (1x)
-(25055, 4409, 1), -- MP Increase (1x)
-(25055, 4410, 11), -- Average P. Atk.
-(25055, 4411, 11), -- Average M. Atk.
-(25055, 4412, 11), -- Average P. Def.
-(25055, 4413, 11), -- Average M. Def.
-(25055, 4414, 2), -- Standard Type
-(25055, 4415, 3), -- One-handed Sword
-(25055, 4416, 1), -- Undead
+(25055, 4168, 7), -- BOSS Power Strike
+(25055, 4408, 1), -- HP Modifiers
+(25055, 4409, 1), -- MP Modifiers
+(25055, 4410, 11), -- P. Atk. Modifiers
+(25055, 4411, 11), -- M. Atk. Modifiers
+(25055, 4412, 11), -- P. Def. Modifiers
+(25055, 4413, 11), -- M. Def. Modifiers
+(25055, 4414, 2), -- Armor Type
+(25055, 4415, 3), -- Weapon Type
+(25055, 4416, 1), -- Races
 -- Vemsk
 (25056, 4045, 1), -- Resist Full Magic Attack
-(25056, 4408, 1), -- HP Increase (1x)
-(25056, 4409, 1), -- MP Increase (1x)
-(25056, 4410, 11), -- Average P. Atk.
-(25056, 4411, 11), -- Average M. Atk.
-(25056, 4412, 11), -- Average P. Def.
-(25056, 4413, 11), -- Average M. Def.
-(25056, 4414, 2), -- Standard Type
-(25056, 4415, 3), -- One-handed Sword
-(25056, 4416, 1), -- Undead
+(25056, 4408, 1), -- HP Modifiers
+(25056, 4409, 1), -- MP Modifiers
+(25056, 4410, 11), -- P. Atk. Modifiers
+(25056, 4411, 11), -- M. Atk. Modifiers
+(25056, 4412, 11), -- P. Def. Modifiers
+(25056, 4413, 11), -- M. Def. Modifiers
+(25056, 4414, 2), -- Armor Type
+(25056, 4415, 3), -- Weapon Type
+(25056, 4416, 1), -- Races
 -- Beacon of Blue Sky
 (25057, 4045, 1), -- Resist Full Magic Attack
-(25057, 4408, 1), -- HP Increase (1x)
-(25057, 4409, 1), -- MP Increase (1x)
-(25057, 4410, 11), -- Average P. Atk.
-(25057, 4411, 11), -- Average M. Atk.
-(25057, 4412, 11), -- Average P. Def.
-(25057, 4413, 11), -- Average M. Def.
-(25057, 4414, 2), -- Standard Type
-(25057, 4415, 3), -- One-handed Sword
-(25057, 4416, 3), -- Beasts
+(25057, 4408, 1), -- HP Modifiers
+(25057, 4409, 1), -- MP Modifiers
+(25057, 4410, 11), -- P. Atk. Modifiers
+(25057, 4411, 11), -- M. Atk. Modifiers
+(25057, 4412, 11), -- P. Def. Modifiers
+(25057, 4413, 11), -- M. Def. Modifiers
+(25057, 4414, 2), -- Armor Type
+(25057, 4415, 3), -- Weapon Type
+(25057, 4416, 3), -- Races
 (25057, 4494, 1), -- Raid Boss
-(25057, 4742, 4), -- Power Strike
+(25057, 4742, 4), -- BOSS Strike
 (25057, 4810, 1), -- Raid Boss - Level 45
 -- Beacon's Shooter
 (25058, 4045, 1), -- Resist Full Magic Attack
-(25058, 4408, 1), -- HP Increase (1x)
-(25058, 4409, 1), -- MP Increase (1x)
-(25058, 4410, 11), -- Average P. Atk.
-(25058, 4411, 11), -- Average M. Atk.
-(25058, 4412, 11), -- Average P. Def.
-(25058, 4413, 11), -- Average M. Def.
-(25058, 4414, 3), -- Light Armor Type
-(25058, 4415, 9), -- Bows
-(25058, 4416, 1), -- Undead
-(25058, 4757, 5), -- Power Shot
+(25058, 4408, 1); -- HP Modifiers
+
+INSERT INTO `npcskills` VALUES
+(25058, 4409, 1), -- MP Modifiers
+(25058, 4410, 11), -- P. Atk. Modifiers
+(25058, 4411, 11), -- M. Atk. Modifiers
+(25058, 4412, 11), -- P. Def. Modifiers
+(25058, 4413, 11), -- M. Def. Modifiers
+(25058, 4414, 3), -- Armor Type
+(25058, 4415, 9), -- Weapon Type
+(25058, 4416, 1), -- Races
+(25058, 4757, 5), -- BOSS Power Shot
 -- Beacon's Warrior
 (25059, 4045, 1), -- Resist Full Magic Attack
-(25059, 4408, 1), -- HP Increase (1x)
-(25059, 4409, 1), -- MP Increase (1x)
-(25059, 4410, 11), -- Average P. Atk.
-(25059, 4411, 11), -- Average M. Atk.
-(25059, 4412, 11), -- Average P. Def.
-(25059, 4413, 11), -- Average M. Def.
-(25059, 4414, 2), -- Standard Type
-(25059, 4415, 3), -- One-handed Sword
-(25059, 4416, 1), -- Undead
+(25059, 4408, 1), -- HP Modifiers
+(25059, 4409, 1), -- MP Modifiers
+(25059, 4410, 11), -- P. Atk. Modifiers
+(25059, 4411, 11), -- M. Atk. Modifiers
+(25059, 4412, 11), -- P. Def. Modifiers
+(25059, 4413, 11), -- M. Def. Modifiers
+(25059, 4414, 2), -- Armor Type
+(25059, 4415, 3), -- Weapon Type
+(25059, 4416, 1), -- Races
 -- Unrequited Kael
 (25060, 4045, 1), -- Resist Full Magic Attack
 (25060, 4197, 2), -- Hold
-(25060, 4408, 1), -- HP Increase (1x)
-(25060, 4409, 1), -- MP Increase (1x)
-(25060, 4410, 11), -- Average P. Atk.
-(25060, 4411, 11), -- Average M. Atk.
-(25060, 4412, 11), -- Average P. Def.
-(25060, 4413, 11), -- Average M. Def.
-(25060, 4414, 3), -- Light Armor Type
-(25060, 4415, 3), -- One-handed Sword
-(25060, 4416, 9), -- Demons
+(25060, 4408, 1), -- HP Modifiers
+(25060, 4409, 1), -- MP Modifiers
+(25060, 4410, 11), -- P. Atk. Modifiers
+(25060, 4411, 11), -- M. Atk. Modifiers
+(25060, 4412, 11), -- P. Def. Modifiers
+(25060, 4413, 11), -- M. Def. Modifiers
+(25060, 4414, 3), -- Armor Type
+(25060, 4415, 3), -- Weapon Type
+(25060, 4416, 9), -- Races
 (25060, 4494, 1), -- Raid Boss
 (25060, 4811, 1), -- Raid Boss - Level 24
 -- Kael's Bead
 (25061, 4045, 1), -- Resist Full Magic Attack
-(25061, 4194, 2), -- Aura Burn
+(25061, 4194, 2), -- BOSS Aura Burn
 (25061, 4199, 2), -- Decrease P. Atk.
-(25061, 4408, 1), -- HP Increase (1x)
-(25061, 4409, 1), -- MP Increase (1x)
-(25061, 4410, 11), -- Average P. Atk.
-(25061, 4411, 11), -- Average M. Atk.
-(25061, 4412, 11), -- Average P. Def.
-(25061, 4413, 11), -- Average M. Def.
-(25061, 4414, 3), -- Light Armor Type
-(25061, 4415, 3), -- One-handed Sword
-(25061, 4416, 2), -- Magic Creatures
+(25061, 4408, 1), -- HP Modifiers
+(25061, 4409, 1), -- MP Modifiers
+(25061, 4410, 11), -- P. Atk. Modifiers
+(25061, 4411, 11), -- M. Atk. Modifiers
+(25061, 4412, 11), -- P. Def. Modifiers
+(25061, 4413, 11), -- M. Def. Modifiers
+(25061, 4414, 3), -- Armor Type
+(25061, 4415, 3), -- Weapon Type
+(25061, 4416, 2), -- Races
 -- Kael's Escort
 (25062, 4045, 1), -- Resist Full Magic Attack
-(25062, 4408, 1), -- HP Increase (1x)
-(25062, 4409, 1), -- MP Increase (1x)
-(25062, 4410, 11), -- Average P. Atk.
-(25062, 4411, 11), -- Average M. Atk.
-(25062, 4412, 11), -- Average P. Def.
-(25062, 4413, 11), -- Average M. Def.
-(25062, 4414, 3), -- Light Armor Type
-(25062, 4415, 3), -- One-handed Sword
-(25062, 4416, 3), -- Beasts
+(25062, 4408, 1), -- HP Modifiers
+(25062, 4409, 1), -- MP Modifiers
+(25062, 4410, 11), -- P. Atk. Modifiers
+(25062, 4411, 11), -- M. Atk. Modifiers
+(25062, 4412, 11), -- P. Def. Modifiers
+(25062, 4413, 11), -- M. Def. Modifiers
+(25062, 4414, 3), -- Armor Type
+(25062, 4415, 3), -- Weapon Type
+(25062, 4416, 3), -- Races
 (25062, 4728, 2), -- Stun
 -- Chertuba of Great Soul
 (25063, 4045, 1), -- Resist Full Magic Attack
-(25063, 4173, 3), -- Might
-(25063, 4177, 3), -- Cancel
-(25063, 4408, 1), -- HP Increase (1x)
-(25063, 4409, 1), -- MP Increase (1x)
-(25063, 4410, 11), -- Average P. Atk.
-(25063, 4411, 11), -- Average M. Atk.
-(25063, 4412, 11), -- Average P. Def.
-(25063, 4413, 11), -- Average M. Def.
-(25063, 4414, 2), -- Standard Type
-(25063, 4415, 3), -- One-handed Sword
-(25063, 4416, 6), -- Humanoids
+(25063, 4173, 3), -- BOSS Might
+(25063, 4177, 3), -- BOSS Cancel Magic
+(25063, 4408, 1), -- HP Modifiers
+(25063, 4409, 1), -- MP Modifiers
+(25063, 4410, 11), -- P. Atk. Modifiers
+(25063, 4411, 11), -- M. Atk. Modifiers
+(25063, 4412, 11), -- P. Def. Modifiers
+(25063, 4413, 11), -- M. Def. Modifiers
+(25063, 4414, 2), -- Armor Type
+(25063, 4415, 3), -- Weapon Type
+(25063, 4416, 6), -- Races
 (25063, 4494, 1), -- Raid Boss
-(25063, 4722, 3), -- Power Strike
-(25063, 4737, 3), -- Whirlwind
+(25063, 4722, 3), -- BOSS Strike
+(25063, 4737, 3), -- BOSS Spinning Slash
 (25063, 4812, 1), -- Raid Boss - Level 35
 -- Wizard of Storm Teruk
 (25064, 4045, 1), -- Resist Full Magic Attack
 (25064, 4185, 4), -- Sleep
 (25064, 4188, 4), -- Bleed
-(25064, 4195, 4), -- Twister
-(25064, 4408, 1), -- HP Increase (1x)
-(25064, 4409, 1), -- MP Increase (1x)
-(25064, 4410, 11), -- Average P. Atk.
-(25064, 4411, 11), -- Average M. Atk.
-(25064, 4412, 11), -- Average P. Def.
-(25064, 4413, 11), -- Average M. Def.
-(25064, 4414, 3), -- Light Armor Type
-(25064, 4415, 5), -- Blunt Weapons
-(25064, 4416, 6), -- Humanoids
+(25064, 4195, 4), -- BOSS Twister
+(25064, 4408, 1), -- HP Modifiers
+(25064, 4409, 1), -- MP Modifiers
+(25064, 4410, 11), -- P. Atk. Modifiers
+(25064, 4411, 11), -- M. Atk. Modifiers
+(25064, 4412, 11), -- P. Def. Modifiers
+(25064, 4413, 11), -- M. Def. Modifiers
+(25064, 4414, 3), -- Armor Type
+(25064, 4415, 5), -- Weapon Type
+(25064, 4416, 6), -- Races
 (25064, 4494, 1), -- Raid Boss
 (25064, 4813, 1), -- Raid Boss - Level 40
 -- Teruk's Escort
 (25065, 4045, 1), -- Resist Full Magic Attack
-(25065, 4408, 1), -- HP Increase (1x)
-(25065, 4409, 1), -- MP Increase (1x)
-(25065, 4410, 11), -- Average P. Atk.
-(25065, 4411, 11), -- Average M. Atk.
-(25065, 4412, 11), -- Average P. Def.
-(25065, 4413, 11), -- Average M. Def.
-(25065, 4414, 2), -- Standard Type
-(25065, 4415, 3), -- One-handed Sword
-(25065, 4416, 6), -- Humanoids
-(25065, 4722, 3), -- Power Strike
+(25065, 4408, 1), -- HP Modifiers
+(25065, 4409, 1), -- MP Modifiers
+(25065, 4410, 11), -- P. Atk. Modifiers
+(25065, 4411, 11), -- M. Atk. Modifiers
+(25065, 4412, 11), -- P. Def. Modifiers
+(25065, 4413, 11), -- M. Def. Modifiers
+(25065, 4414, 2), -- Armor Type
+(25065, 4415, 3), -- Weapon Type
+(25065, 4416, 6), -- Races
+(25065, 4722, 3), -- BOSS Strike
 -- Teruk's Knight
 (25066, 4045, 1), -- Resist Full Magic Attack
-(25066, 4408, 1), -- HP Increase (1x)
-(25066, 4409, 1), -- MP Increase (1x)
-(25066, 4410, 11), -- Average P. Atk.
-(25066, 4411, 11), -- Average M. Atk.
-(25066, 4412, 11), -- Average P. Def.
-(25066, 4413, 11), -- Average M. Def.
-(25066, 4414, 2), -- Standard Type
-(25066, 4415, 3), -- One-handed Sword
-(25066, 4416, 6), -- Humanoids
+(25066, 4408, 1), -- HP Modifiers
+(25066, 4409, 1), -- MP Modifiers
+(25066, 4410, 11), -- P. Atk. Modifiers
+(25066, 4411, 11), -- M. Atk. Modifiers
+(25066, 4412, 11), -- P. Def. Modifiers
+(25066, 4413, 11), -- M. Def. Modifiers
+(25066, 4414, 2), -- Armor Type
+(25066, 4415, 3), -- Weapon Type
+(25066, 4416, 6), -- Races
 -- Captain of Red Flag Shaka
 (25067, 4045, 1), -- Resist Full Magic Attack
-(25067, 4408, 1), -- HP Increase (1x)
-(25067, 4409, 1), -- MP Increase (1x)
-(25067, 4410, 11), -- Average P. Atk.
-(25067, 4411, 11), -- Average M. Atk.
-(25067, 4412, 11), -- Average P. Def.
-(25067, 4413, 11), -- Average M. Def.
-(25067, 4414, 2), -- Standard Type
-(25067, 4415, 3), -- One-handed Sword
-(25067, 4416, 6), -- Humanoids
+(25067, 4408, 1), -- HP Modifiers
+(25067, 4409, 1), -- MP Modifiers
+(25067, 4410, 11), -- P. Atk. Modifiers
+(25067, 4411, 11), -- M. Atk. Modifiers
+(25067, 4412, 11), -- P. Def. Modifiers
+(25067, 4413, 11), -- M. Def. Modifiers
+(25067, 4414, 2), -- Armor Type
+(25067, 4415, 3), -- Weapon Type
+(25067, 4416, 6), -- Races
 (25067, 4494, 1), -- Raid Boss
-(25067, 4740, 5), -- Power Strike
+(25067, 4740, 5), -- BOSS Strike
 (25067, 4814, 1), -- Raid Boss - Level 52
 -- Shaka's Shooter
 (25068, 4045, 1), -- Resist Full Magic Attack
-(25068, 4408, 1), -- HP Increase (1x)
-(25068, 4409, 1), -- MP Increase (1x)
-(25068, 4410, 11), -- Average P. Atk.
-(25068, 4411, 11), -- Average M. Atk.
-(25068, 4412, 11), -- Average P. Def.
-(25068, 4413, 11), -- Average M. Def.
-(25068, 4414, 3), -- Light Armor Type
-(25068, 4415, 9), -- Bows
-(25068, 4416, 6), -- Humanoids
-(25068, 4755, 4), -- Power Shot
+(25068, 4408, 1), -- HP Modifiers
+(25068, 4409, 1), -- MP Modifiers
+(25068, 4410, 11), -- P. Atk. Modifiers
+(25068, 4411, 11), -- M. Atk. Modifiers
+(25068, 4412, 11), -- P. Def. Modifiers
+(25068, 4413, 11), -- M. Def. Modifiers
+(25068, 4414, 3), -- Armor Type
+(25068, 4415, 9), -- Weapon Type
+(25068, 4416, 6), -- Races
+(25068, 4755, 4), -- BOSS Power Shot
 -- Shaka's Follower
 (25069, 4045, 1), -- Resist Full Magic Attack
-(25069, 4408, 1), -- HP Increase (1x)
-(25069, 4409, 1), -- MP Increase (1x)
-(25069, 4410, 11), -- Average P. Atk.
-(25069, 4411, 11), -- Average M. Atk.
-(25069, 4412, 11), -- Average P. Def.
-(25069, 4413, 11), -- Average M. Def.
-(25069, 4414, 2), -- Standard Type
-(25069, 4415, 3), -- One-handed Sword
-(25069, 4416, 6), -- Humanoids
+(25069, 4408, 1), -- HP Modifiers
+(25069, 4409, 1), -- MP Modifiers
+(25069, 4410, 11), -- P. Atk. Modifiers
+(25069, 4411, 11), -- M. Atk. Modifiers
+(25069, 4412, 11), -- P. Def. Modifiers
+(25069, 4413, 11), -- M. Def. Modifiers
+(25069, 4414, 2), -- Armor Type
+(25069, 4415, 3), -- Weapon Type
+(25069, 4416, 6), -- Races
 -- Enchanted Forest Watcher Ruell
 (25070, 4045, 1), -- Resist Full Magic Attack
 (25070, 4197, 5), -- Hold
-(25070, 4408, 1), -- HP Increase (1x)
-(25070, 4409, 1), -- MP Increase (1x)
-(25070, 4410, 11), -- Average P. Atk.
-(25070, 4411, 11), -- Average M. Atk.
-(25070, 4412, 11), -- Average P. Def.
-(25070, 4413, 11), -- Average M. Def.
-(25070, 4414, 2), -- Standard Type
-(25070, 4415, 3), -- One-handed Sword
-(25070, 4416, 7), -- Spirits
+(25070, 4408, 1), -- HP Modifiers
+(25070, 4409, 1), -- MP Modifiers
+(25070, 4410, 11), -- P. Atk. Modifiers
+(25070, 4411, 11), -- M. Atk. Modifiers
+(25070, 4412, 11), -- P. Def. Modifiers
+(25070, 4413, 11), -- M. Def. Modifiers
+(25070, 4414, 2), -- Armor Type
+(25070, 4415, 3), -- Weapon Type
+(25070, 4416, 7), -- Races
 (25070, 4494, 1), -- Raid Boss
 (25070, 4815, 1), -- Raid Boss - Level 55
 -- Ruell's Wind
 (25071, 4045, 1), -- Resist Full Magic Attack
-(25071, 4191, 5), -- Wind Strike
+(25071, 4191, 5), -- BOSS Wind Strike
 (25071, 4200, 5), -- Decrease Atk. Spd.
-(25071, 4408, 1), -- HP Increase (1x)
-(25071, 4409, 1), -- MP Increase (1x)
-(25071, 4410, 11), -- Average P. Atk.
-(25071, 4411, 11), -- Average M. Atk.
-(25071, 4412, 11), -- Average P. Def.
-(25071, 4413, 11), -- Average M. Def.
-(25071, 4414, 3), -- Light Armor Type
-(25071, 4415, 3), -- One-handed Sword
-(25071, 4416, 7), -- Spirits
+(25071, 4408, 1), -- HP Modifiers
+(25071, 4409, 1), -- MP Modifiers
+(25071, 4410, 11), -- P. Atk. Modifiers
+(25071, 4411, 11), -- M. Atk. Modifiers
+(25071, 4412, 11), -- P. Def. Modifiers
+(25071, 4413, 11), -- M. Def. Modifiers
+(25071, 4414, 3), -- Armor Type
+(25071, 4415, 3), -- Weapon Type
+(25071, 4416, 7), -- Races
 -- Ruell's Unicorn
 (25072, 4045, 1), -- Resist Full Magic Attack
-(25072, 4408, 1), -- HP Increase (1x)
-(25072, 4409, 1), -- MP Increase (1x)
-(25072, 4410, 11), -- Average P. Atk.
-(25072, 4411, 11), -- Average M. Atk.
-(25072, 4412, 11), -- Average P. Def.
-(25072, 4413, 11), -- Average M. Def.
-(25072, 4414, 3), -- Light Armor Type
-(25072, 4415, 3), -- One-handed Sword
-(25072, 4416, 7), -- Spirits
+(25072, 4408, 1), -- HP Modifiers
+(25072, 4409, 1), -- MP Modifiers
+(25072, 4410, 11), -- P. Atk. Modifiers
+(25072, 4411, 11), -- M. Atk. Modifiers
+(25072, 4412, 11), -- P. Def. Modifiers
+(25072, 4413, 11), -- M. Def. Modifiers
+(25072, 4414, 3), -- Armor Type
+(25072, 4415, 3), -- Weapon Type
+(25072, 4416, 7), -- Races
 (25072, 4727, 5), -- Stun
 -- Bloody Priest Rudelto
 (25073, 4045, 1), -- Resist Full Magic Attack
-(25073, 4178, 6), -- Flame Strike
-(25073, 4408, 1), -- HP Increase (1x)
-(25073, 4409, 1), -- MP Increase (1x)
-(25073, 4410, 11), -- Average P. Atk.
-(25073, 4411, 11), -- Average M. Atk.
-(25073, 4412, 11), -- Average P. Def.
-(25073, 4413, 11), -- Average M. Def.
-(25073, 4414, 2), -- Standard Type
-(25073, 4415, 3), -- One-handed Sword
-(25073, 4416, 9), -- Demons
+(25073, 4178, 6), -- BOSS Flame Strike
+(25073, 4408, 1), -- HP Modifiers
+(25073, 4409, 1), -- MP Modifiers
+(25073, 4410, 11), -- P. Atk. Modifiers
+(25073, 4411, 11), -- M. Atk. Modifiers
+(25073, 4412, 11), -- P. Def. Modifiers
+(25073, 4413, 11), -- M. Def. Modifiers
+(25073, 4414, 2), -- Armor Type
+(25073, 4415, 3), -- Weapon Type
+(25073, 4416, 9), -- Races
 (25073, 4494, 1), -- Raid Boss
 (25073, 4816, 1), -- Raid Boss - Level 69
 -- Rudelto's Banshee
 (25074, 4045, 1), -- Resist Full Magic Attack
-(25074, 4209, 6), -- Heal
-(25074, 4213, 6), -- Haste
-(25074, 4408, 1), -- HP Increase (1x)
-(25074, 4409, 1), -- MP Increase (1x)
-(25074, 4410, 11), -- Average P. Atk.
-(25074, 4411, 11), -- Average M. Atk.
-(25074, 4412, 11), -- Average P. Def.
-(25074, 4413, 11), -- Average M. Def.
-(25074, 4414, 2), -- Standard Type
-(25074, 4415, 3), -- One-handed Sword
-(25074, 4416, 9), -- Demons
+(25074, 4209, 6), -- BOSS Heal
+(25074, 4213, 6), -- BOSS Haste
+(25074, 4408, 1), -- HP Modifiers
+(25074, 4409, 1), -- MP Modifiers
+(25074, 4410, 11), -- P. Atk. Modifiers
+(25074, 4411, 11), -- M. Atk. Modifiers
+(25074, 4412, 11), -- P. Def. Modifiers
+(25074, 4413, 11), -- M. Def. Modifiers
+(25074, 4414, 2), -- Armor Type
+(25074, 4415, 3), -- Weapon Type
+(25074, 4416, 9), -- Races
 -- Rudelto's Dre Vanul
 (25075, 4045, 1), -- Resist Full Magic Attack
-(25075, 4408, 1), -- HP Increase (1x)
-(25075, 4409, 1), -- MP Increase (1x)
-(25075, 4410, 11), -- Average P. Atk.
-(25075, 4411, 11), -- Average M. Atk.
-(25075, 4412, 11), -- Average P. Def.
-(25075, 4413, 11), -- Average M. Def.
-(25075, 4414, 2), -- Standard Type
-(25075, 4415, 3), -- One-handed Sword
-(25075, 4416, 9), -- Demons
+(25075, 4408, 1), -- HP Modifiers
+(25075, 4409, 1), -- MP Modifiers
+(25075, 4410, 11), -- P. Atk. Modifiers
+(25075, 4411, 11), -- M. Atk. Modifiers
+(25075, 4412, 11), -- P. Def. Modifiers
+(25075, 4413, 11), -- M. Def. Modifiers
+(25075, 4414, 2), -- Armor Type
+(25075, 4415, 3), -- Weapon Type
+(25075, 4416, 9), -- Races
 -- Princess Molrang
 (25076, 4045, 1), -- Resist Full Magic Attack
 (25076, 4182, 2), -- Poison
 (25076, 4187, 2), -- Decrease Speed
-(25076, 4194, 2), -- Aura Burn
-(25076, 4408, 1), -- HP Increase (1x)
-(25076, 4409, 1), -- MP Increase (1x)
-(25076, 4410, 11), -- Average P. Atk.
-(25076, 4411, 11), -- Average M. Atk.
-(25076, 4412, 11), -- Average P. Def.
-(25076, 4413, 11), -- Average M. Def.
-(25076, 4414, 2), -- Standard Type
-(25076, 4415, 5), -- Blunt Weapons
-(25076, 4416, 4), -- Animals
+(25076, 4194, 2), -- BOSS Aura Burn
+(25076, 4408, 1), -- HP Modifiers
+(25076, 4409, 1), -- MP Modifiers
+(25076, 4410, 11), -- P. Atk. Modifiers
+(25076, 4411, 11), -- M. Atk. Modifiers
+(25076, 4412, 11), -- P. Def. Modifiers
+(25076, 4413, 11), -- M. Def. Modifiers
+(25076, 4414, 2), -- Armor Type
+(25076, 4415, 5), -- Weapon Type
+(25076, 4416, 4), -- Races
 (25076, 4494, 1), -- Raid Boss
 (25076, 4817, 1), -- Raid Boss - Level 25
 -- Captain Dogun
 (25077, 4045, 1), -- Resist Full Magic Attack
-(25077, 4408, 1), -- HP Increase (1x)
-(25077, 4409, 1), -- MP Increase (1x)
-(25077, 4410, 11), -- Average P. Atk.
-(25077, 4411, 11), -- Average M. Atk.
-(25077, 4412, 11), -- Average P. Def.
-(25077, 4413, 11), -- Average M. Def.
-(25077, 4414, 2), -- Standard Type
-(25077, 4415, 3), -- One-handed Sword
-(25077, 4416, 4), -- Animals
-(25077, 4732, 2), -- Mortal Blow
+(25077, 4408, 1), -- HP Modifiers
+(25077, 4409, 1), -- MP Modifiers
+(25077, 4410, 11), -- P. Atk. Modifiers
+(25077, 4411, 11), -- M. Atk. Modifiers
+(25077, 4412, 11), -- P. Def. Modifiers
+(25077, 4413, 11), -- M. Def. Modifiers
+(25077, 4414, 2), -- Armor Type
+(25077, 4415, 3), -- Weapon Type
+(25077, 4416, 4), -- Races
+(25077, 4732, 2), -- BOSS Mortal Blow
 -- Princess' Guard
 (25078, 4045, 1), -- Resist Full Magic Attack
-(25078, 4408, 1), -- HP Increase (1x)
-(25078, 4409, 1), -- MP Increase (1x)
-(25078, 4410, 11), -- Average P. Atk.
-(25078, 4411, 11), -- Average M. Atk.
-(25078, 4412, 11), -- Average P. Def.
-(25078, 4413, 11), -- Average M. Def.
-(25078, 4414, 2), -- Standard Type
-(25078, 4415, 3), -- One-handed Sword
-(25078, 4416, 4), -- Animals
+(25078, 4408, 1), -- HP Modifiers
+(25078, 4409, 1), -- MP Modifiers
+(25078, 4410, 11), -- P. Atk. Modifiers
+(25078, 4411, 11), -- M. Atk. Modifiers
+(25078, 4412, 11), -- P. Def. Modifiers
+(25078, 4413, 11), -- M. Def. Modifiers
+(25078, 4414, 2), -- Armor Type
+(25078, 4415, 3), -- Weapon Type
+(25078, 4416, 4), -- Races
 -- Cat's Eye Bandit
 (25079, 4045, 1), -- Resist Full Magic Attack
-(25079, 4178, 3), -- Flame Strike
-(25079, 4408, 1), -- HP Increase (1x)
-(25079, 4409, 1), -- MP Increase (1x)
-(25079, 4410, 11), -- Average P. Atk.
-(25079, 4411, 11), -- Average M. Atk.
-(25079, 4412, 11), -- Average P. Def.
-(25079, 4413, 11), -- Average M. Def.
-(25079, 4414, 2), -- Standard Type
-(25079, 4415, 3), -- One-handed Sword
-(25079, 4416, 6), -- Humanoids
+(25079, 4178, 3), -- BOSS Flame Strike
+(25079, 4408, 1), -- HP Modifiers
+(25079, 4409, 1), -- MP Modifiers
+(25079, 4410, 11), -- P. Atk. Modifiers
+(25079, 4411, 11), -- M. Atk. Modifiers
+(25079, 4412, 11), -- P. Def. Modifiers
+(25079, 4413, 11), -- M. Def. Modifiers
+(25079, 4414, 2), -- Armor Type
+(25079, 4415, 3), -- Weapon Type
+(25079, 4416, 6), -- Races
 (25079, 4494, 1), -- Raid Boss
 (25079, 4818, 1), -- Raid Boss - Level 30
 -- Mercenary
 (25080, 4045, 1), -- Resist Full Magic Attack
-(25080, 4211, 2), -- Might
-(25080, 4408, 1); -- HP Increase (1x)
-
-INSERT INTO `npcskills` VALUES
-(25080, 4409, 1), -- MP Increase (1x)
-(25080, 4410, 11), -- Average P. Atk.
-(25080, 4411, 11), -- Average M. Atk.
-(25080, 4412, 11), -- Average P. Def.
-(25080, 4413, 11), -- Average M. Def.
-(25080, 4414, 3), -- Light Armor Type
-(25080, 4415, 5), -- Blunt Weapons
-(25080, 4416, 6), -- Humanoids
-(25080, 4785, 2), -- Chant of Life
+(25080, 4211, 2), -- BOSS Might
+(25080, 4408, 1), -- HP Modifiers
+(25080, 4409, 1), -- MP Modifiers
+(25080, 4410, 11), -- P. Atk. Modifiers
+(25080, 4411, 11), -- M. Atk. Modifiers
+(25080, 4412, 11), -- P. Def. Modifiers
+(25080, 4413, 11), -- M. Def. Modifiers
+(25080, 4414, 3), -- Armor Type
+(25080, 4415, 5), -- Weapon Type
+(25080, 4416, 6), -- Races
+(25080, 4785, 2), -- BOSS Chant of Life
 -- Cat's Eye Bandit
 (25081, 4045, 1), -- Resist Full Magic Attack
-(25081, 4408, 1), -- HP Increase (1x)
-(25081, 4409, 1), -- MP Increase (1x)
-(25081, 4410, 11), -- Average P. Atk.
-(25081, 4411, 11), -- Average M. Atk.
-(25081, 4412, 11), -- Average P. Def.
-(25081, 4413, 11), -- Average M. Def.
-(25081, 4414, 2), -- Standard Type
-(25081, 4415, 3), -- One-handed Sword
-(25081, 4416, 6), -- Humanoids
+(25081, 4408, 1), -- HP Modifiers
+(25081, 4409, 1), -- MP Modifiers
+(25081, 4410, 11), -- P. Atk. Modifiers
+(25081, 4411, 11), -- M. Atk. Modifiers
+(25081, 4412, 11), -- P. Def. Modifiers
+(25081, 4413, 11), -- M. Def. Modifiers
+(25081, 4414, 2), -- Armor Type
+(25081, 4415, 3), -- Weapon Type
+(25081, 4416, 6), -- Races
 -- Leader of Cat Gang
 (25082, 4045, 1), -- Resist Full Magic Attack
 (25082, 4197, 3), -- Hold
-(25082, 4408, 1), -- HP Increase (1x)
-(25082, 4409, 1), -- MP Increase (1x)
-(25082, 4410, 11), -- Average P. Atk.
-(25082, 4411, 11), -- Average M. Atk.
-(25082, 4412, 11), -- Average P. Def.
-(25082, 4413, 11), -- Average M. Def.
-(25082, 4414, 2), -- Standard Type
-(25082, 4415, 3), -- One-handed Sword
-(25082, 4416, 7), -- Spirits
+(25082, 4408, 1), -- HP Modifiers
+(25082, 4409, 1), -- MP Modifiers
+(25082, 4410, 11), -- P. Atk. Modifiers
+(25082, 4411, 11), -- M. Atk. Modifiers
+(25082, 4412, 11), -- P. Def. Modifiers
+(25082, 4413, 11), -- M. Def. Modifiers
+(25082, 4414, 2), -- Armor Type
+(25082, 4415, 3), -- Weapon Type
+(25082, 4416, 7), -- Races
 (25082, 4494, 1), -- Raid Boss
 (25082, 4819, 1), -- Raid Boss - Level 39
 -- Cat Gang
 (25083, 4045, 1), -- Resist Full Magic Attack
-(25083, 4196, 3), -- Decrease Speed
+(25083, 4196, 3), -- Decreases Speed
 (25083, 4200, 3), -- Decrease Atk. Spd.
-(25083, 4408, 1), -- HP Increase (1x)
-(25083, 4409, 1), -- MP Increase (1x)
-(25083, 4410, 11), -- Average P. Atk.
-(25083, 4411, 11), -- Average M. Atk.
-(25083, 4412, 11), -- Average P. Def.
-(25083, 4413, 11), -- Average M. Def.
-(25083, 4414, 2), -- Standard Type
-(25083, 4415, 3), -- One-handed Sword
-(25083, 4416, 7), -- Spirits
+(25083, 4408, 1), -- HP Modifiers
+(25083, 4409, 1), -- MP Modifiers
+(25083, 4410, 11), -- P. Atk. Modifiers
+(25083, 4411, 11), -- M. Atk. Modifiers
+(25083, 4412, 11), -- P. Def. Modifiers
+(25083, 4413, 11), -- M. Def. Modifiers
+(25083, 4414, 2), -- Armor Type
+(25083, 4415, 3), -- Weapon Type
+(25083, 4416, 7), -- Races
 -- Cat Gang
 (25084, 4045, 1), -- Resist Full Magic Attack
-(25084, 4408, 1), -- HP Increase (1x)
-(25084, 4409, 1), -- MP Increase (1x)
-(25084, 4410, 11), -- Average P. Atk.
-(25084, 4411, 11), -- Average M. Atk.
-(25084, 4412, 11), -- Average P. Def.
-(25084, 4413, 11), -- Average M. Def.
-(25084, 4414, 2), -- Standard Type
-(25084, 4415, 3), -- One-handed Sword
-(25084, 4416, 7), -- Spirits
+(25084, 4408, 1), -- HP Modifiers
+(25084, 4409, 1), -- MP Modifiers
+(25084, 4410, 11), -- P. Atk. Modifiers
+(25084, 4411, 11), -- M. Atk. Modifiers
+(25084, 4412, 11), -- P. Def. Modifiers
+(25084, 4413, 11), -- M. Def. Modifiers
+(25084, 4414, 2), -- Armor Type
+(25084, 4415, 3), -- Weapon Type
+(25084, 4416, 7), -- Races
 (25084, 4727, 3), -- Stun
 -- Timak Orc Chief Ranger
 (25085, 4045, 1), -- Resist Full Magic Attack
-(25085, 4408, 1), -- HP Increase (1x)
-(25085, 4409, 1), -- MP Increase (1x)
-(25085, 4410, 11), -- Average P. Atk.
-(25085, 4411, 11), -- Average M. Atk.
-(25085, 4412, 11), -- Average P. Def.
-(25085, 4413, 11), -- Average M. Def.
-(25085, 4414, 2), -- Standard Type
-(25085, 4415, 5), -- Blunt Weapons
-(25085, 4416, 6), -- Humanoids
+(25085, 4408, 1), -- HP Modifiers
+(25085, 4409, 1), -- MP Modifiers
+(25085, 4410, 11), -- P. Atk. Modifiers
+(25085, 4411, 11), -- M. Atk. Modifiers
+(25085, 4412, 11), -- P. Def. Modifiers
+(25085, 4413, 11), -- M. Def. Modifiers
+(25085, 4414, 2), -- Armor Type
+(25085, 4415, 5), -- Weapon Type
+(25085, 4416, 6), -- Races
 (25085, 4494, 1), -- Raid Boss
 (25085, 4745, 4), -- Stun
 (25085, 4820, 1), -- Raid Boss - Level 44
 -- Timak Orc Ranger
 (25086, 4045, 1), -- Resist Full Magic Attack
-(25086, 4408, 1), -- HP Increase (1x)
-(25086, 4409, 1), -- MP Increase (1x)
-(25086, 4410, 11), -- Average P. Atk.
-(25086, 4411, 11), -- Average M. Atk.
-(25086, 4412, 11), -- Average P. Def.
-(25086, 4413, 11), -- Average M. Def.
-(25086, 4414, 3), -- Light Armor Type
-(25086, 4415, 9), -- Bows
-(25086, 4416, 6), -- Humanoids
+(25086, 4408, 1), -- HP Modifiers
+(25086, 4409, 1), -- MP Modifiers
+(25086, 4410, 11), -- P. Atk. Modifiers
+(25086, 4411, 11), -- M. Atk. Modifiers
+(25086, 4412, 11), -- P. Def. Modifiers
+(25086, 4413, 11), -- M. Def. Modifiers
+(25086, 4414, 3), -- Armor Type
+(25086, 4415, 9), -- Weapon Type
+(25086, 4416, 6), -- Races
 (25086, 4760, 4), -- Stun
 -- Timak Orc Ranger
 (25087, 4045, 1), -- Resist Full Magic Attack
-(25087, 4408, 1), -- HP Increase (1x)
-(25087, 4409, 1), -- MP Increase (1x)
-(25087, 4410, 11), -- Average P. Atk.
-(25087, 4411, 11), -- Average M. Atk.
-(25087, 4412, 11), -- Average P. Def.
-(25087, 4413, 11), -- Average M. Def.
-(25087, 4414, 2), -- Standard Type
-(25087, 4415, 3), -- One-handed Sword
-(25087, 4416, 6), -- Humanoids
+(25087, 4408, 1), -- HP Modifiers
+(25087, 4409, 1), -- MP Modifiers
+(25087, 4410, 11), -- P. Atk. Modifiers
+(25087, 4411, 11), -- M. Atk. Modifiers
+(25087, 4412, 11), -- P. Def. Modifiers
+(25087, 4413, 11), -- M. Def. Modifiers
+(25087, 4414, 2), -- Armor Type
+(25087, 4415, 3), -- Weapon Type
+(25087, 4416, 6), -- Races
 -- Crazy Mechanic Golem
 (25088, 4045, 1), -- Resist Full Magic Attack
 (25088, 4172, 5), -- Stun
-(25088, 4176, 5), -- Reflect Damage
-(25088, 4177, 5), -- Cancel
-(25088, 4408, 1), -- HP Increase (1x)
-(25088, 4409, 1), -- MP Increase (1x)
-(25088, 4410, 11), -- Average P. Atk.
-(25088, 4411, 11), -- Average M. Atk.
-(25088, 4412, 11), -- Average P. Def.
-(25088, 4413, 11), -- Average M. Def.
-(25088, 4414, 2), -- Standard Type
-(25088, 4415, 3), -- One-handed Sword
-(25088, 4416, 2), -- Magic Creatures
+(25088, 4176, 5), -- BOSS Reflect Damage
+(25088, 4177, 5), -- BOSS Cancel Magic
+(25088, 4408, 1), -- HP Modifiers
+(25088, 4409, 1), -- MP Modifiers
+(25088, 4410, 11), -- P. Atk. Modifiers
+(25088, 4411, 11), -- M. Atk. Modifiers
+(25088, 4412, 11), -- P. Def. Modifiers
+(25088, 4413, 11), -- M. Def. Modifiers
+(25088, 4414, 2), -- Armor Type
+(25088, 4415, 3), -- Weapon Type
+(25088, 4416, 2), -- Races
 (25088, 4494, 1), -- Raid Boss
 (25088, 4724, 5), -- Stun
 (25088, 4821, 1), -- Raid Boss - Level 43
 -- Soulless Wild Boar
 (25089, 4045, 1), -- Resist Full Magic Attack
 (25089, 4197, 5), -- Hold
-(25089, 4408, 1), -- HP Increase (1x)
-(25089, 4409, 1), -- MP Increase (1x)
-(25089, 4410, 11), -- Average P. Atk.
-(25089, 4411, 11), -- Average M. Atk.
-(25089, 4412, 11), -- Average P. Def.
-(25089, 4413, 11), -- Average M. Def.
-(25089, 4414, 2), -- Standard Type
-(25089, 4415, 3), -- One-handed Sword
-(25089, 4416, 4), -- Animals
+(25089, 4408, 1), -- HP Modifiers
+(25089, 4409, 1), -- MP Modifiers
+(25089, 4410, 11), -- P. Atk. Modifiers
+(25089, 4411, 11), -- M. Atk. Modifiers
+(25089, 4412, 11), -- P. Def. Modifiers
+(25089, 4413, 11), -- M. Def. Modifiers
+(25089, 4414, 2), -- Armor Type
+(25089, 4415, 3), -- Weapon Type
+(25089, 4416, 4), -- Races
 (25089, 4494, 1), -- Raid Boss
 (25089, 4822, 1), -- Raid Boss - Level 59
 -- Soulless Wolf
 (25090, 4045, 1), -- Resist Full Magic Attack
-(25090, 4193, 5), -- Life Drain
+(25090, 4193, 5), -- BOSS Life Drain
 (25090, 4205, 5), -- Paralysis
-(25090, 4408, 1), -- HP Increase (1x)
-(25090, 4409, 1), -- MP Increase (1x)
-(25090, 4410, 11), -- Average P. Atk.
-(25090, 4411, 11), -- Average M. Atk.
-(25090, 4412, 11), -- Average P. Def.
-(25090, 4413, 11), -- Average M. Def.
-(25090, 4414, 3), -- Light Armor Type
-(25090, 4415, 3), -- One-handed Sword
-(25090, 4416, 4), -- Animals
+(25090, 4408, 1), -- HP Modifiers
+(25090, 4409, 1), -- MP Modifiers
+(25090, 4410, 11), -- P. Atk. Modifiers
+(25090, 4411, 11), -- M. Atk. Modifiers
+(25090, 4412, 11), -- P. Def. Modifiers
+(25090, 4413, 11), -- M. Def. Modifiers
+(25090, 4414, 3), -- Armor Type
+(25090, 4415, 3), -- Weapon Type
+(25090, 4416, 4), -- Races
 -- Soulless Bear
 (25091, 4045, 1), -- Resist Full Magic Attack
-(25091, 4408, 1), -- HP Increase (1x)
-(25091, 4409, 1), -- MP Increase (1x)
-(25091, 4410, 11), -- Average P. Atk.
-(25091, 4411, 11), -- Average M. Atk.
-(25091, 4412, 11), -- Average P. Def.
-(25091, 4413, 11), -- Average M. Def.
-(25091, 4414, 2), -- Standard Type
-(25091, 4415, 3), -- One-handed Sword
-(25091, 4416, 4), -- Animals
+(25091, 4408, 1), -- HP Modifiers
+(25091, 4409, 1), -- MP Modifiers
+(25091, 4410, 11), -- P. Atk. Modifiers
+(25091, 4411, 11), -- M. Atk. Modifiers
+(25091, 4412, 11), -- P. Def. Modifiers
+(25091, 4413, 11), -- M. Def. Modifiers
+(25091, 4414, 2), -- Armor Type
+(25091, 4415, 3), -- Weapon Type
+(25091, 4416, 4), -- Races
 (25091, 4726, 5), -- Stun
 -- Korim
 (25092, 4045, 1), -- Resist Full Magic Attack
 (25092, 4182, 7), -- Poison
 (25092, 4190, 7), -- Decrease MP
-(25092, 4195, 7), -- Twister
-(25092, 4408, 1), -- HP Increase (1x)
-(25092, 4409, 1), -- MP Increase (1x)
-(25092, 4410, 11), -- Average P. Atk.
-(25092, 4411, 11), -- Average M. Atk.
-(25092, 4412, 11), -- Average P. Def.
-(25092, 4413, 11), -- Average M. Def.
-(25092, 4414, 3), -- Light Armor Type
-(25092, 4415, 5), -- Blunt Weapons
-(25092, 4416, 6), -- Humanoids
+(25092, 4195, 7), -- BOSS Twister
+(25092, 4408, 1), -- HP Modifiers
+(25092, 4409, 1), -- MP Modifiers
+(25092, 4410, 11), -- P. Atk. Modifiers
+(25092, 4411, 11), -- M. Atk. Modifiers
+(25092, 4412, 11), -- P. Def. Modifiers
+(25092, 4413, 11), -- M. Def. Modifiers
+(25092, 4414, 3), -- Armor Type
+(25092, 4415, 5), -- Weapon Type
+(25092, 4416, 6), -- Races
 (25092, 4494, 1), -- Raid Boss
 (25092, 4823, 1), -- Raid Boss - Level 70
 -- Korim Chief Guard Kaywon
 (25093, 4045, 1), -- Resist Full Magic Attack
-(25093, 4408, 1), -- HP Increase (1x)
-(25093, 4409, 1), -- MP Increase (1x)
-(25093, 4410, 11), -- Average P. Atk.
-(25093, 4411, 11), -- Average M. Atk.
-(25093, 4412, 11), -- Average P. Def.
-(25093, 4413, 11), -- Average M. Def.
-(25093, 4414, 2), -- Standard Type
-(25093, 4415, 5), -- Blunt Weapons
-(25093, 4416, 6), -- Humanoids
-(25093, 4720, 6), -- Power Strike
+(25093, 4408, 1), -- HP Modifiers
+(25093, 4409, 1), -- MP Modifiers
+(25093, 4410, 11), -- P. Atk. Modifiers
+(25093, 4411, 11), -- M. Atk. Modifiers
+(25093, 4412, 11), -- P. Def. Modifiers
+(25093, 4413, 11), -- M. Def. Modifiers
+(25093, 4414, 2), -- Armor Type
+(25093, 4415, 5), -- Weapon Type
+(25093, 4416, 6), -- Races
+(25093, 4720, 6), -- BOSS Strike
 -- Korim Guards
 (25094, 4045, 1), -- Resist Full Magic Attack
-(25094, 4408, 1), -- HP Increase (1x)
-(25094, 4409, 1), -- MP Increase (1x)
-(25094, 4410, 11), -- Average P. Atk.
-(25094, 4411, 11), -- Average M. Atk.
-(25094, 4412, 11), -- Average P. Def.
-(25094, 4413, 11), -- Average M. Def.
-(25094, 4414, 2), -- Standard Type
-(25094, 4415, 3), -- One-handed Sword
-(25094, 4416, 6), -- Humanoids
+(25094, 4408, 1), -- HP Modifiers
+(25094, 4409, 1), -- MP Modifiers
+(25094, 4410, 11), -- P. Atk. Modifiers
+(25094, 4411, 11), -- M. Atk. Modifiers
+(25094, 4412, 11), -- P. Def. Modifiers
+(25094, 4413, 11), -- M. Def. Modifiers
+(25094, 4414, 2), -- Armor Type
+(25094, 4415, 3), -- Weapon Type
+(25094, 4416, 6), -- Races
 -- Elf Renoa
 (25095, 4045, 1), -- Resist Full Magic Attack
 (25095, 4197, 2), -- Hold
-(25095, 4408, 1), -- HP Increase (1x)
-(25095, 4409, 1), -- MP Increase (1x)
-(25095, 4410, 11), -- Average P. Atk.
-(25095, 4411, 11), -- Average M. Atk.
-(25095, 4412, 11), -- Average P. Def.
-(25095, 4413, 11), -- Average M. Def.
-(25095, 4414, 2), -- Standard Type
-(25095, 4415, 3), -- One-handed Sword
-(25095, 4416, 1), -- Undead
+(25095, 4408, 1), -- HP Modifiers
+(25095, 4409, 1), -- MP Modifiers
+(25095, 4410, 11), -- P. Atk. Modifiers
+(25095, 4411, 11), -- M. Atk. Modifiers
+(25095, 4412, 11), -- P. Def. Modifiers
+(25095, 4413, 11), -- M. Def. Modifiers
+(25095, 4414, 2), -- Armor Type
+(25095, 4415, 3), -- Weapon Type
+(25095, 4416, 1), -- Races
 (25095, 4494, 1), -- Raid Boss
 (25095, 4824, 1), -- Raid Boss - Level 29
 -- Renoa's Elpy
 (25096, 4045, 1), -- Resist Full Magic Attack
-(25096, 4193, 2), -- Life Drain
+(25096, 4193, 2), -- BOSS Life Drain
 (25096, 4199, 2), -- Decrease P. Atk.
-(25096, 4408, 1), -- HP Increase (1x)
-(25096, 4409, 1), -- MP Increase (1x)
-(25096, 4410, 11), -- Average P. Atk.
-(25096, 4411, 11), -- Average M. Atk.
-(25096, 4412, 11), -- Average P. Def.
-(25096, 4413, 11), -- Average M. Def.
-(25096, 4414, 3), -- Light Armor Type
-(25096, 4415, 3), -- One-handed Sword
-(25096, 4416, 4), -- Animals
+(25096, 4408, 1), -- HP Modifiers
+(25096, 4409, 1), -- MP Modifiers
+(25096, 4410, 11), -- P. Atk. Modifiers
+(25096, 4411, 11), -- M. Atk. Modifiers
+(25096, 4412, 11), -- P. Def. Modifiers
+(25096, 4413, 11), -- M. Def. Modifiers
+(25096, 4414, 3), -- Armor Type
+(25096, 4415, 3), -- Weapon Type
+(25096, 4416, 4), -- Races
 -- Renoa's Hog
 (25097, 4045, 1), -- Resist Full Magic Attack
-(25097, 4408, 1), -- HP Increase (1x)
-(25097, 4409, 1), -- MP Increase (1x)
-(25097, 4410, 11), -- Average P. Atk.
-(25097, 4411, 11), -- Average M. Atk.
-(25097, 4412, 11), -- Average P. Def.
-(25097, 4413, 11), -- Average M. Def.
-(25097, 4414, 2), -- Standard Type
-(25097, 4415, 3), -- One-handed Sword
-(25097, 4416, 4), -- Animals
+(25097, 4408, 1), -- HP Modifiers
+(25097, 4409, 1), -- MP Modifiers
+(25097, 4410, 11), -- P. Atk. Modifiers
+(25097, 4411, 11), -- M. Atk. Modifiers
+(25097, 4412, 11), -- P. Def. Modifiers
+(25097, 4413, 11), -- M. Def. Modifiers
+(25097, 4414, 2), -- Armor Type
+(25097, 4415, 3), -- Weapon Type
+(25097, 4416, 4), -- Races
 (25097, 4727, 2), -- Stun
 -- Sejarr's Servitor
 (25098, 4045, 1), -- Resist Full Magic Attack
-(25098, 4173, 3), -- Might
-(25098, 4177, 3), -- Cancel
-(25098, 4408, 1), -- HP Increase (1x)
-(25098, 4409, 1), -- MP Increase (1x)
-(25098, 4410, 11), -- Average P. Atk.
-(25098, 4411, 11), -- Average M. Atk.
-(25098, 4412, 11), -- Average P. Def.
-(25098, 4413, 11), -- Average M. Def.
-(25098, 4414, 2), -- Standard Type
-(25098, 4415, 3), -- One-handed Sword
-(25098, 4416, 4), -- Animals
+(25098, 4173, 3), -- BOSS Might
+(25098, 4177, 3), -- BOSS Cancel Magic
+(25098, 4408, 1), -- HP Modifiers
+(25098, 4409, 1), -- MP Modifiers
+(25098, 4410, 11), -- P. Atk. Modifiers
+(25098, 4411, 11), -- M. Atk. Modifiers
+(25098, 4412, 11), -- P. Def. Modifiers
+(25098, 4413, 11), -- M. Def. Modifiers
+(25098, 4414, 2), -- Armor Type
+(25098, 4415, 3), -- Weapon Type
+(25098, 4416, 4), -- Races
 (25098, 4494, 1), -- Raid Boss
-(25098, 4732, 3), -- Mortal Blow
-(25098, 4737, 3), -- Whirlwind
+(25098, 4732, 3), -- BOSS Mortal Blow
+(25098, 4737, 3), -- BOSS Spinning Slash
 (25098, 4825, 1), -- Raid Boss - Level 35
 -- Rotting Tree Repiro
 (25099, 4045, 1), -- Resist Full Magic Attack
-(25099, 4178, 4), -- Flame Strike
-(25099, 4408, 1), -- HP Increase (1x)
-(25099, 4409, 1), -- MP Increase (1x)
-(25099, 4410, 11), -- Average P. Atk.
-(25099, 4411, 11), -- Average M. Atk.
-(25099, 4412, 11), -- Average P. Def.
-(25099, 4413, 11), -- Average M. Def.
-(25099, 4414, 2), -- Standard Type
-(25099, 4415, 3), -- One-handed Sword
-(25099, 4416, 5), -- Plants
+(25099, 4178, 4), -- BOSS Flame Strike
+(25099, 4408, 1), -- HP Modifiers
+(25099, 4409, 1), -- MP Modifiers
+(25099, 4410, 11), -- P. Atk. Modifiers
+(25099, 4411, 11), -- M. Atk. Modifiers
+(25099, 4412, 11), -- P. Def. Modifiers
+(25099, 4413, 11), -- M. Def. Modifiers
+(25099, 4414, 2), -- Armor Type
+(25099, 4415, 3), -- Weapon Type
+(25099, 4416, 5), -- Races
 (25099, 4494, 1), -- Raid Boss
 (25099, 4826, 1), -- Raid Boss - Level 44
 -- Spirit of Sea of Spores
 (25100, 4045, 1), -- Resist Full Magic Attack
-(25100, 4213, 4), -- Haste
-(25100, 4408, 1), -- HP Increase (1x)
-(25100, 4409, 1), -- MP Increase (1x)
-(25100, 4410, 11), -- Average P. Atk.
-(25100, 4411, 11), -- Average M. Atk.
-(25100, 4412, 11), -- Average P. Def.
-(25100, 4413, 11), -- Average M. Def.
-(25100, 4414, 3), -- Light Armor Type
-(25100, 4415, 3), -- One-handed Sword
-(25100, 4416, 13), -- Fairies
-(25100, 4782, 4), -- Heal
+(25100, 4213, 4), -- BOSS Haste
+(25100, 4408, 1), -- HP Modifiers
+(25100, 4409, 1), -- MP Modifiers
+(25100, 4410, 11), -- P. Atk. Modifiers
+(25100, 4411, 11), -- M. Atk. Modifiers
+(25100, 4412, 11), -- P. Def. Modifiers
+(25100, 4413, 11), -- M. Def. Modifiers
+(25100, 4414, 3), -- Armor Type
+(25100, 4415, 3), -- Weapon Type
+(25100, 4416, 13), -- Races
+(25100, 4782, 4), -- BOSS Heal
 -- Fighter of Sea of Spores
 (25101, 4045, 1), -- Resist Full Magic Attack
-(25101, 4408, 1), -- HP Increase (1x)
-(25101, 4409, 1), -- MP Increase (1x)
-(25101, 4410, 11), -- Average P. Atk.
-(25101, 4411, 11), -- Average M. Atk.
-(25101, 4412, 11), -- Average P. Def.
-(25101, 4413, 11), -- Average M. Def.
-(25101, 4414, 2), -- Standard Type
-(25101, 4415, 3), -- One-handed Sword
-(25101, 4416, 11), -- Giants
+(25101, 4408, 1), -- HP Modifiers
+(25101, 4409, 1), -- MP Modifiers
+(25101, 4410, 11), -- P. Atk. Modifiers
+(25101, 4411, 11), -- M. Atk. Modifiers
+(25101, 4412, 11), -- P. Def. Modifiers
+(25101, 4413, 11), -- M. Def. Modifiers
+(25101, 4414, 2), -- Armor Type
+(25101, 4415, 3), -- Weapon Type
+(25101, 4416, 11), -- Races
 -- Shacram
 (25102, 4045, 1), -- Resist Full Magic Attack
 (25102, 4172, 5), -- Stun
-(25102, 4175, 5), -- Haste
-(25102, 4177, 5), -- Cancel
-(25102, 4408, 1), -- HP Increase (1x)
-(25102, 4409, 1), -- MP Increase (1x)
-(25102, 4410, 11), -- Average P. Atk.
-(25102, 4411, 11), -- Average M. Atk.
-(25102, 4412, 11), -- Average P. Def.
-(25102, 4413, 11), -- Average M. Def.
-(25102, 4414, 2), -- Standard Type
-(25102, 4415, 3), -- One-handed Sword
-(25102, 4416, 11), -- Giants
+(25102, 4175, 5), -- BOSS Haste
+(25102, 4177, 5), -- BOSS Cancel Magic
+(25102, 4408, 1), -- HP Modifiers
+(25102, 4409, 1), -- MP Modifiers
+(25102, 4410, 11), -- P. Atk. Modifiers
+(25102, 4411, 11), -- M. Atk. Modifiers
+(25102, 4412, 11), -- P. Def. Modifiers
+(25102, 4413, 11), -- M. Def. Modifiers
+(25102, 4414, 2), -- Armor Type
+(25102, 4415, 3), -- Weapon Type
+(25102, 4416, 11), -- Races
 (25102, 4494, 1), -- Raid Boss
-(25102, 4731, 5), -- Mortal Blow
+(25102, 4731, 5), -- BOSS Mortal Blow
 (25102, 4827, 1), -- Raid Boss - Level 45
 -- Sorcerer Isirr
 (25103, 4045, 1), -- Resist Full Magic Attack
 (25103, 4182, 5), -- Poison
 (25103, 4185, 5), -- Sleep
-(25103, 4191, 5), -- Wind Strike
-(25103, 4408, 1), -- HP Increase (1x)
-(25103, 4409, 1), -- MP Increase (1x)
-(25103, 4410, 11), -- Average P. Atk.
-(25103, 4411, 11), -- Average M. Atk.
-(25103, 4412, 11), -- Average P. Def.
-(25103, 4413, 11), -- Average M. Def.
-(25103, 4414, 3), -- Light Armor Type
-(25103, 4415, 5), -- Blunt Weapons
-(25103, 4416, 6), -- Humanoids
+(25103, 4191, 5), -- BOSS Wind Strike
+(25103, 4408, 1), -- HP Modifiers
+(25103, 4409, 1), -- MP Modifiers
+(25103, 4410, 11), -- P. Atk. Modifiers
+(25103, 4411, 11), -- M. Atk. Modifiers
+(25103, 4412, 11), -- P. Def. Modifiers
+(25103, 4413, 11), -- M. Def. Modifiers
+(25103, 4414, 3), -- Armor Type
+(25103, 4415, 5), -- Weapon Type
+(25103, 4416, 6), -- Races
 (25103, 4494, 1), -- Raid Boss
 (25103, 4828, 1), -- Raid Boss - Level 55
 -- Isirr's Guard
 (25104, 4045, 1), -- Resist Full Magic Attack
-(25104, 4408, 1), -- HP Increase (1x)
-(25104, 4409, 1), -- MP Increase (1x)
-(25104, 4410, 11), -- Average P. Atk.
-(25104, 4411, 11), -- Average M. Atk.
-(25104, 4412, 11), -- Average P. Def.
-(25104, 4413, 11), -- Average M. Def.
-(25104, 4414, 3), -- Light Armor Type
-(25104, 4415, 11), -- Spears
-(25104, 4416, 6), -- Humanoids
-(25104, 4722, 5), -- Power Strike
+(25104, 4408, 1), -- HP Modifiers
+(25104, 4409, 1), -- MP Modifiers
+(25104, 4410, 11), -- P. Atk. Modifiers
+(25104, 4411, 11), -- M. Atk. Modifiers
+(25104, 4412, 11), -- P. Def. Modifiers
+(25104, 4413, 11), -- M. Def. Modifiers
+(25104, 4414, 3), -- Armor Type
+(25104, 4415, 11), -- Weapon Type
+(25104, 4416, 6), -- Races
+(25104, 4722, 5), -- BOSS Strike
 -- Isirr's Guards
 (25105, 4045, 1), -- Resist Full Magic Attack
-(25105, 4408, 1), -- HP Increase (1x)
-(25105, 4409, 1), -- MP Increase (1x)
-(25105, 4410, 11), -- Average P. Atk.
-(25105, 4411, 11), -- Average M. Atk.
-(25105, 4412, 11), -- Average P. Def.
-(25105, 4413, 11), -- Average M. Def.
-(25105, 4414, 3), -- Light Armor Type
-(25105, 4415, 3), -- One-handed Sword
-(25105, 4416, 6), -- Humanoids
+(25105, 4408, 1), -- HP Modifiers
+(25105, 4409, 1), -- MP Modifiers
+(25105, 4410, 11), -- P. Atk. Modifiers
+(25105, 4411, 11), -- M. Atk. Modifiers
+(25105, 4412, 11), -- P. Def. Modifiers
+(25105, 4413, 11), -- M. Def. Modifiers
+(25105, 4414, 3), -- Armor Type
+(25105, 4415, 3), -- Weapon Type
+(25105, 4416, 6), -- Races
 -- Ghost of the Well Lidia
 (25106, 4045, 1), -- Resist Full Magic Attack
-(25106, 4408, 1), -- HP Increase (1x)
-(25106, 4409, 1), -- MP Increase (1x)
-(25106, 4410, 11), -- Average P. Atk.
-(25106, 4411, 11), -- Average M. Atk.
-(25106, 4412, 11), -- Average P. Def.
-(25106, 4413, 11), -- Average M. Def.
-(25106, 4414, 2), -- Standard Type
-(25106, 4415, 3), -- One-handed Sword
-(25106, 4416, 9), -- Demons
+(25106, 4408, 1), -- HP Modifiers
+(25106, 4409, 1), -- MP Modifiers
+(25106, 4410, 11), -- P. Atk. Modifiers
+(25106, 4411, 11), -- M. Atk. Modifiers
+(25106, 4412, 11), -- P. Def. Modifiers
+(25106, 4413, 11), -- M. Def. Modifiers
+(25106, 4414, 2), -- Armor Type
+(25106, 4415, 3), -- Weapon Type
+(25106, 4416, 9), -- Races
 (25106, 4494, 1), -- Raid Boss
-(25106, 4741, 6), -- Power Strike
+(25106, 4741, 6), -- BOSS Strike
 (25106, 4829, 1), -- Raid Boss - Level 60
 -- Lidia's Archer
 (25107, 4045, 1), -- Resist Full Magic Attack
-(25107, 4408, 1), -- HP Increase (1x)
-(25107, 4409, 1), -- MP Increase (1x)
-(25107, 4410, 11), -- Average P. Atk.
-(25107, 4411, 11), -- Average M. Atk.
-(25107, 4412, 11), -- Average P. Def.
-(25107, 4413, 11), -- Average M. Def.
-(25107, 4414, 3), -- Light Armor Type
-(25107, 4415, 9), -- Bows
-(25107, 4416, 1), -- Undead
+(25107, 4408, 1), -- HP Modifiers
+(25107, 4409, 1), -- MP Modifiers
+(25107, 4410, 11), -- P. Atk. Modifiers
+(25107, 4411, 11), -- M. Atk. Modifiers
+(25107, 4412, 11), -- P. Def. Modifiers
+(25107, 4413, 11), -- M. Def. Modifiers
+(25107, 4414, 3), -- Armor Type
+(25107, 4415, 9), -- Weapon Type
+(25107, 4416, 1), -- Races
 (25107, 4761, 5), -- Stun
 -- Lidia's Fighter
 (25108, 4045, 1), -- Resist Full Magic Attack
-(25108, 4408, 1), -- HP Increase (1x)
-(25108, 4409, 1), -- MP Increase (1x)
-(25108, 4410, 11), -- Average P. Atk.
-(25108, 4411, 11), -- Average M. Atk.
-(25108, 4412, 11), -- Average P. Def.
-(25108, 4413, 11), -- Average M. Def.
-(25108, 4414, 2), -- Standard Type
-(25108, 4415, 3), -- One-handed Sword
-(25108, 4416, 1), -- Undead
+(25108, 4408, 1), -- HP Modifiers
+(25108, 4409, 1), -- MP Modifiers
+(25108, 4410, 11), -- P. Atk. Modifiers
+(25108, 4411, 11), -- M. Atk. Modifiers
+(25108, 4412, 11), -- P. Def. Modifiers
+(25108, 4413, 11), -- M. Def. Modifiers
+(25108, 4414, 2), -- Armor Type
+(25108, 4415, 3), -- Weapon Type
+(25108, 4416, 1), -- Races
 -- Antharas Priest Cloe
 (25109, 4045, 1), -- Resist Full Magic Attack
 (25109, 4197, 7), -- Hold
-(25109, 4408, 1), -- HP Increase (1x)
-(25109, 4409, 1), -- MP Increase (1x)
-(25109, 4410, 11), -- Average P. Atk.
-(25109, 4411, 11), -- Average M. Atk.
-(25109, 4412, 11), -- Average P. Def.
-(25109, 4413, 11), -- Average M. Def.
-(25109, 4414, 3), -- Light Armor Type
-(25109, 4415, 3), -- One-handed Sword
-(25109, 4416, 9), -- Demons
+(25109, 4408, 1), -- HP Modifiers
+(25109, 4409, 1), -- MP Modifiers
+(25109, 4410, 11), -- P. Atk. Modifiers
+(25109, 4411, 11), -- M. Atk. Modifiers
+(25109, 4412, 11), -- P. Def. Modifiers
+(25109, 4413, 11), -- M. Def. Modifiers
+(25109, 4414, 3), -- Armor Type
+(25109, 4415, 3), -- Weapon Type
+(25109, 4416, 9), -- Races
 (25109, 4494, 1), -- Raid Boss
 (25109, 4830, 1), -- Raid Boss - Level 74
 -- Cloe's Servitor
 (25110, 4045, 1), -- Resist Full Magic Attack
-(25110, 4194, 7), -- Aura Burn
+(25110, 4194, 7), -- BOSS Aura Burn
 (25110, 4200, 7), -- Decrease Atk. Spd.
-(25110, 4408, 1), -- HP Increase (1x)
-(25110, 4409, 1), -- MP Increase (1x)
-(25110, 4410, 11), -- Average P. Atk.
-(25110, 4411, 11), -- Average M. Atk.
-(25110, 4412, 11), -- Average P. Def.
-(25110, 4413, 11), -- Average M. Def.
-(25110, 4414, 2), -- Standard Type
-(25110, 4415, 3), -- One-handed Sword
-(25110, 4416, 9), -- Demons
+(25110, 4408, 1), -- HP Modifiers
+(25110, 4409, 1), -- MP Modifiers
+(25110, 4410, 11), -- P. Atk. Modifiers
+(25110, 4411, 11), -- M. Atk. Modifiers
+(25110, 4412, 11), -- P. Def. Modifiers
+(25110, 4413, 11), -- M. Def. Modifiers
+(25110, 4414, 2), -- Armor Type
+(25110, 4415, 3), -- Weapon Type
+(25110, 4416, 9), -- Races
 -- Cloe's Servitor
 (25111, 4045, 1), -- Resist Full Magic Attack
-(25111, 4170, 7), -- Mortal Blow
-(25111, 4408, 1), -- HP Increase (1x)
-(25111, 4409, 1), -- MP Increase (1x)
-(25111, 4410, 11), -- Average P. Atk.
-(25111, 4411, 11), -- Average M. Atk.
-(25111, 4412, 11), -- Average P. Def.
-(25111, 4413, 11), -- Average M. Def.
-(25111, 4414, 2), -- Standard Type
-(25111, 4415, 3), -- One-handed Sword
-(25111, 4416, 9), -- Demons
+(25111, 4170, 7), -- BOSS Mortal Blow
+(25111, 4408, 1), -- HP Modifiers
+(25111, 4409, 1), -- MP Modifiers
+(25111, 4410, 11), -- P. Atk. Modifiers
+(25111, 4411, 11), -- M. Atk. Modifiers
+(25111, 4412, 11), -- P. Def. Modifiers
+(25111, 4413, 11), -- M. Def. Modifiers
+(25111, 4414, 2), -- Armor Type
+(25111, 4415, 3), -- Weapon Type
+(25111, 4416, 9), -- Races
 -- Beleth's Agent, Meana
 (25112, 4045, 1), -- Resist Full Magic Attack
 (25112, 4197, 3), -- Hold
-(25112, 4408, 1), -- HP Increase (1x)
-(25112, 4409, 1), -- MP Increase (1x)
-(25112, 4410, 11), -- Average P. Atk.
-(25112, 4411, 11), -- Average M. Atk.
-(25112, 4412, 11), -- Average P. Def.
-(25112, 4413, 11), -- Average M. Def.
-(25112, 4414, 3), -- Light Armor Type
-(25112, 4415, 3), -- One-handed Sword
-(25112, 4416, 3), -- Beasts
+(25112, 4408, 1), -- HP Modifiers
+(25112, 4409, 1), -- MP Modifiers
+(25112, 4410, 11), -- P. Atk. Modifiers
+(25112, 4411, 11), -- M. Atk. Modifiers
+(25112, 4412, 11), -- P. Def. Modifiers
+(25112, 4413, 11), -- M. Def. Modifiers
+(25112, 4414, 3), -- Armor Type
+(25112, 4415, 3), -- Weapon Type
+(25112, 4416, 3), -- Races
 (25112, 4494, 1), -- Raid Boss
 (25112, 4831, 1), -- Raid Boss - Level 30
 -- Meana's Maid
 (25113, 4045, 1), -- Resist Full Magic Attack
-(25113, 4192, 2), -- Vampiric Touch
+(25113, 4192, 2), -- BOSS HP Drain
 (25113, 4199, 2), -- Decrease P. Atk.
-(25113, 4408, 1), -- HP Increase (1x)
-(25113, 4409, 1), -- MP Increase (1x)
-(25113, 4410, 11), -- Average P. Atk.
-(25113, 4411, 11), -- Average M. Atk.
-(25113, 4412, 11), -- Average P. Def.
-(25113, 4413, 11), -- Average M. Def.
-(25113, 4414, 3), -- Light Armor Type
-(25113, 4415, 3), -- One-handed Sword
-(25113, 4416, 9), -- Demons
+(25113, 4408, 1), -- HP Modifiers
+(25113, 4409, 1), -- MP Modifiers
+(25113, 4410, 11), -- P. Atk. Modifiers
+(25113, 4411, 11), -- M. Atk. Modifiers
+(25113, 4412, 11), -- P. Def. Modifiers
+(25113, 4413, 11), -- M. Def. Modifiers
+(25113, 4414, 3), -- Armor Type
+(25113, 4415, 3), -- Weapon Type
+(25113, 4416, 9), -- Races
 -- Meana's Guard Doll
 (25114, 4045, 1), -- Resist Full Magic Attack
-(25114, 4408, 1), -- HP Increase (1x)
-(25114, 4409, 1), -- MP Increase (1x)
-(25114, 4410, 11), -- Average P. Atk.
-(25114, 4411, 11), -- Average M. Atk.
-(25114, 4412, 11), -- Average P. Def.
-(25114, 4413, 11), -- Average M. Def.
-(25114, 4414, 2), -- Standard Type
-(25114, 4415, 3), -- One-handed Sword
-(25114, 4416, 1), -- Undead
+(25114, 4408, 1), -- HP Modifiers
+(25114, 4409, 1), -- MP Modifiers
+(25114, 4410, 11), -- P. Atk. Modifiers
+(25114, 4411, 11), -- M. Atk. Modifiers
+(25114, 4412, 11), -- P. Def. Modifiers
+(25114, 4413, 11), -- M. Def. Modifiers
+(25114, 4414, 2), -- Armor Type
+(25114, 4415, 3), -- Weapon Type
+(25114, 4416, 1), -- Races
 (25114, 4726, 2), -- Stun
 -- Icarus Sample 1
 (25115, 4045, 1), -- Resist Full Magic Attack
-(25115, 4408, 1), -- HP Increase (1x)
-(25115, 4409, 1), -- MP Increase (1x)
-(25115, 4410, 11), -- Average P. Atk.
-(25115, 4411, 11), -- Average M. Atk.
-(25115, 4412, 11), -- Average P. Def.
-(25115, 4413, 11), -- Average M. Def.
-(25115, 4414, 2), -- Standard Type
-(25115, 4415, 3), -- One-handed Sword
-(25115, 4416, 2), -- Magic Creatures
+(25115, 4408, 1), -- HP Modifiers
+(25115, 4409, 1), -- MP Modifiers
+(25115, 4410, 11), -- P. Atk. Modifiers
+(25115, 4411, 11), -- M. Atk. Modifiers
+(25115, 4412, 11), -- P. Def. Modifiers
+(25115, 4413, 11), -- M. Def. Modifiers
+(25115, 4414, 2), -- Armor Type
+(25115, 4415, 3), -- Weapon Type
+(25115, 4416, 2), -- Races
 (25115, 4494, 1), -- Raid Boss
-(25115, 4740, 4), -- Power Strike
+(25115, 4740, 4), -- BOSS Strike
 (25115, 4832, 1), -- Raid Boss - Level 40
 -- Icarus Sample 2
 (25116, 4045, 1), -- Resist Full Magic Attack
-(25116, 4408, 1), -- HP Increase (1x)
-(25116, 4409, 1), -- MP Increase (1x)
-(25116, 4410, 11), -- Average P. Atk.
-(25116, 4411, 11), -- Average M. Atk.
-(25116, 4412, 11), -- Average P. Def.
-(25116, 4413, 11), -- Average M. Def.
-(25116, 4414, 3), -- Light Armor Type
-(25116, 4415, 9), -- Bows
-(25116, 4416, 1), -- Undead
-(25116, 4755, 3), -- Power Shot
+(25116, 4408, 1), -- HP Modifiers
+(25116, 4409, 1), -- MP Modifiers
+(25116, 4410, 11), -- P. Atk. Modifiers
+(25116, 4411, 11), -- M. Atk. Modifiers
+(25116, 4412, 11), -- P. Def. Modifiers
+(25116, 4413, 11), -- M. Def. Modifiers
+(25116, 4414, 3), -- Armor Type
+(25116, 4415, 9), -- Weapon Type
+(25116, 4416, 1), -- Races
+(25116, 4755, 3), -- BOSS Power Shot
 -- Icarus Sample 3
 (25117, 4045, 1), -- Resist Full Magic Attack
-(25117, 4408, 1), -- HP Increase (1x)
-(25117, 4409, 1), -- MP Increase (1x)
-(25117, 4410, 11), -- Average P. Atk.
-(25117, 4411, 11), -- Average M. Atk.
-(25117, 4412, 11), -- Average P. Def.
-(25117, 4413, 11), -- Average M. Def.
-(25117, 4414, 2), -- Standard Type
-(25117, 4415, 3), -- One-handed Sword
-(25117, 4416, 2), -- Magic Creatures
+(25117, 4408, 1), -- HP Modifiers
+(25117, 4409, 1), -- MP Modifiers
+(25117, 4410, 11), -- P. Atk. Modifiers
+(25117, 4411, 11), -- M. Atk. Modifiers
+(25117, 4412, 11), -- P. Def. Modifiers
+(25117, 4413, 11), -- M. Def. Modifiers
+(25117, 4414, 2), -- Armor Type
+(25117, 4415, 3), -- Weapon Type
+(25117, 4416, 2), -- Races
 -- Guillotine, Warden of the Execution Grounds
 (25118, 4045, 1), -- Resist Full Magic Attack
-(25118, 4175, 4), -- Haste
-(25118, 4177, 4), -- Cancel
-(25118, 4408, 1), -- HP Increase (1x)
-(25118, 4409, 1), -- MP Increase (1x)
-(25118, 4410, 11), -- Average P. Atk.
-(25118, 4411, 11), -- Average M. Atk.
-(25118, 4412, 11), -- Average P. Def.
-(25118, 4413, 11), -- Average M. Def.
-(25118, 4414, 3), -- Light Armor Type
-(25118, 4415, 3), -- One-handed Sword
-(25118, 4416, 1), -- Undead
+(25118, 4175, 4), -- BOSS Haste
+(25118, 4177, 4), -- BOSS Cancel Magic
+(25118, 4408, 1), -- HP Modifiers
+(25118, 4409, 1), -- MP Modifiers
+(25118, 4410, 11), -- P. Atk. Modifiers
+(25118, 4411, 11), -- M. Atk. Modifiers
+(25118, 4412, 11), -- P. Def. Modifiers
+(25118, 4413, 11), -- M. Def. Modifiers
+(25118, 4414, 3), -- Armor Type
+(25118, 4415, 3), -- Weapon Type
+(25118, 4416, 1), -- Races
 (25118, 4494, 1), -- Raid Boss
 (25118, 4726, 4), -- Stun
-(25118, 4736, 4), -- Whirlwind
+(25118, 4736, 4), -- BOSS Spinning Slash
 (25118, 4833, 1), -- Raid Boss - Level 35
 -- Messenger of Fairy Queen Berun
 (25119, 4045, 1), -- Resist Full Magic Attack
 (25119, 4197, 5), -- Hold
-(25119, 4408, 1), -- HP Increase (1x)
-(25119, 4409, 1), -- MP Increase (1x)
-(25119, 4410, 11), -- Average P. Atk.
-(25119, 4411, 11), -- Average M. Atk.
-(25119, 4412, 11), -- Average P. Def.
-(25119, 4413, 11), -- Average M. Def.
-(25119, 4414, 2), -- Standard Type
-(25119, 4415, 3), -- One-handed Sword
-(25119, 4416, 13), -- Fairies
+(25119, 4408, 1), -- HP Modifiers
+(25119, 4409, 1), -- MP Modifiers
+(25119, 4410, 11), -- P. Atk. Modifiers
+(25119, 4411, 11), -- M. Atk. Modifiers
+(25119, 4412, 11), -- P. Def. Modifiers
+(25119, 4413, 11), -- M. Def. Modifiers
+(25119, 4414, 2), -- Armor Type
+(25119, 4415, 3), -- Weapon Type
+(25119, 4416, 13), -- Races
 (25119, 4494, 1), -- Raid Boss
 (25119, 4834, 1), -- Raid Boss - Level 50
 -- Berun's Officer
 (25120, 4045, 1), -- Resist Full Magic Attack
-(25120, 4191, 4), -- Wind Strike
+(25120, 4191, 4), -- BOSS Wind Strike
 (25120, 4199, 4), -- Decrease P. Atk.
-(25120, 4408, 1), -- HP Increase (1x)
-(25120, 4409, 1), -- MP Increase (1x)
-(25120, 4410, 11), -- Average P. Atk.
-(25120, 4411, 11), -- Average M. Atk.
-(25120, 4412, 11), -- Average P. Def.
-(25120, 4413, 11), -- Average M. Def.
-(25120, 4414, 2), -- Standard Type
-(25120, 4415, 3), -- One-handed Sword
-(25120, 4416, 13), -- Fairies
+(25120, 4408, 1), -- HP Modifiers
+(25120, 4409, 1), -- MP Modifiers
+(25120, 4410, 11), -- P. Atk. Modifiers
+(25120, 4411, 11), -- M. Atk. Modifiers
+(25120, 4412, 11), -- P. Def. Modifiers
+(25120, 4413, 11), -- M. Def. Modifiers
+(25120, 4414, 2), -- Armor Type
+(25120, 4415, 3), -- Weapon Type
+(25120, 4416, 13), -- Races
 -- Berun's Prattler
 (25121, 4045, 1), -- Resist Full Magic Attack
-(25121, 4170, 4), -- Mortal Blow
-(25121, 4408, 1), -- HP Increase (1x)
-(25121, 4409, 1), -- MP Increase (1x)
-(25121, 4410, 11), -- Average P. Atk.
-(25121, 4411, 11), -- Average M. Atk.
-(25121, 4412, 11), -- Average P. Def.
-(25121, 4413, 11), -- Average M. Def.
-(25121, 4414, 3), -- Light Armor Type
-(25121, 4415, 3), -- One-handed Sword
-(25121, 4416, 13), -- Fairies
+(25121, 4170, 4), -- BOSS Mortal Blow
+(25121, 4408, 1), -- HP Modifiers
+(25121, 4409, 1), -- MP Modifiers
+(25121, 4410, 11), -- P. Atk. Modifiers
+(25121, 4411, 11), -- M. Atk. Modifiers
+(25121, 4412, 11), -- P. Def. Modifiers
+(25121, 4413, 11), -- M. Def. Modifiers
+(25121, 4414, 3), -- Armor Type
+(25121, 4415, 3), -- Weapon Type
+(25121, 4416, 13), -- Races
 -- Refugee Applicant Leo
 (25122, 4045, 1), -- Resist Full Magic Attack
 (25122, 4183, 5), -- Decrease P. Atk.
 (25122, 4190, 5), -- Decrease MP
-(25122, 4196, 5), -- Decrease Speed
-(25122, 4408, 1), -- HP Increase (1x)
-(25122, 4409, 1), -- MP Increase (1x)
-(25122, 4410, 11), -- Average P. Atk.
-(25122, 4411, 11), -- Average M. Atk.
-(25122, 4412, 11), -- Average P. Def.
-(25122, 4413, 11), -- Average M. Def.
-(25122, 4414, 3), -- Light Armor Type
-(25122, 4415, 5), -- Blunt Weapons
-(25122, 4416, 6), -- Humanoids
+(25122, 4196, 5), -- Decreases Speed
+(25122, 4408, 1), -- HP Modifiers
+(25122, 4409, 1), -- MP Modifiers
+(25122, 4410, 11), -- P. Atk. Modifiers
+(25122, 4411, 11), -- M. Atk. Modifiers
+(25122, 4412, 11), -- P. Def. Modifiers
+(25122, 4413, 11), -- M. Def. Modifiers
+(25122, 4414, 3), -- Armor Type
+(25122, 4415, 5), -- Weapon Type
+(25122, 4416, 6), -- Races
 (25122, 4494, 1), -- Raid Boss
 (25122, 4835, 1), -- Raid Boss - Level 56
 -- Leo's Servant
 (25123, 4045, 1), -- Resist Full Magic Attack
-(25123, 4408, 1), -- HP Increase (1x)
-(25123, 4409, 1), -- MP Increase (1x)
-(25123, 4410, 11), -- Average P. Atk.
-(25123, 4411, 11), -- Average M. Atk.
-(25123, 4412, 11), -- Average P. Def.
-(25123, 4413, 11), -- Average M. Def.
-(25123, 4414, 2), -- Standard Type
-(25123, 4415, 5), -- Blunt Weapons
-(25123, 4416, 11), -- Giants
+(25123, 4408, 1), -- HP Modifiers
+(25123, 4409, 1), -- MP Modifiers
+(25123, 4410, 11), -- P. Atk. Modifiers
+(25123, 4411, 11), -- M. Atk. Modifiers
+(25123, 4412, 11), -- P. Def. Modifiers
+(25123, 4413, 11), -- M. Def. Modifiers
+(25123, 4414, 2), -- Armor Type
+(25123, 4415, 5), -- Weapon Type
+(25123, 4416, 11), -- Races
 (25123, 4727, 5), -- Stun
 -- Leo's Steward
 (25124, 4045, 1), -- Resist Full Magic Attack
-(25124, 4408, 1), -- HP Increase (1x)
-(25124, 4409, 1), -- MP Increase (1x)
-(25124, 4410, 11), -- Average P. Atk.
-(25124, 4411, 11), -- Average M. Atk.
-(25124, 4412, 11), -- Average P. Def.
-(25124, 4413, 11), -- Average M. Def.
-(25124, 4414, 2), -- Standard Type
-(25124, 4415, 3), -- One-handed Sword
-(25124, 4416, 11), -- Giants
+(25124, 4408, 1), -- HP Modifiers
+(25124, 4409, 1), -- MP Modifiers
+(25124, 4410, 11), -- P. Atk. Modifiers
+(25124, 4411, 11), -- M. Atk. Modifiers
+(25124, 4412, 11), -- P. Def. Modifiers
+(25124, 4413, 11), -- M. Def. Modifiers
+(25124, 4414, 2), -- Armor Type
+(25124, 4415, 3), -- Weapon Type
+(25124, 4416, 11), -- Races
 -- Fierce Tiger King Angel
 (25125, 4045, 1), -- Resist Full Magic Attack
-(25125, 4170, 6), -- Mortal Blow
-(25125, 4171, 6), -- Whirlwind
-(25125, 4176, 6), -- Reflect Damage
-(25125, 4177, 6), -- Cancel
-(25125, 4408, 1), -- HP Increase (1x)
-(25125, 4409, 1), -- MP Increase (1x)
-(25125, 4410, 11), -- Average P. Atk.
-(25125, 4411, 11), -- Average M. Atk.
-(25125, 4412, 11), -- Average P. Def.
-(25125, 4413, 11), -- Average M. Def.
-(25125, 4414, 2), -- Standard Type
-(25125, 4415, 3), -- One-handed Sword
-(25125, 4416, 3), -- Beasts
+(25125, 4170, 6), -- BOSS Mortal Blow
+(25125, 4171, 6), -- BOSS Spinning Slash
+(25125, 4176, 6), -- BOSS Reflect Damage
+(25125, 4177, 6), -- BOSS Cancel Magic
+(25125, 4408, 1), -- HP Modifiers
+(25125, 4409, 1), -- MP Modifiers
+(25125, 4410, 11), -- P. Atk. Modifiers
+(25125, 4411, 11), -- M. Atk. Modifiers
+(25125, 4412, 11), -- P. Def. Modifiers
+(25125, 4413, 11), -- M. Def. Modifiers
+(25125, 4414, 2), -- Armor Type
+(25125, 4415, 3), -- Weapon Type
+(25125, 4416, 3), -- Races
 (25125, 4494, 1), -- Raid Boss
 (25125, 4836, 1), -- Raid Boss - Level 65
 -- Longhorn Golkonda
 (25126, 4045, 1), -- Resist Full Magic Attack
 (25126, 4169, 7), -- Stun
 (25126, 4172, 7), -- Stun
-(25126, 4173, 7), -- Might
-(25126, 4177, 7), -- Cancel
-(25126, 4408, 1), -- HP Increase (1x)
-(25126, 4409, 1), -- MP Increase (1x)
-(25126, 4410, 11), -- Average P. Atk.
-(25126, 4411, 11), -- Average M. Atk.
-(25126, 4412, 11), -- Average P. Def.
-(25126, 4413, 11), -- Average M. Def.
-(25126, 4414, 2), -- Standard Type
-(25126, 4415, 3), -- One-handed Sword
-(25126, 4416, 11), -- Giants
+(25126, 4173, 7), -- BOSS Might
+(25126, 4177, 7), -- BOSS Cancel Magic
+(25126, 4408, 1), -- HP Modifiers
+(25126, 4409, 1), -- MP Modifiers
+(25126, 4410, 11), -- P. Atk. Modifiers
+(25126, 4411, 11), -- M. Atk. Modifiers
+(25126, 4412, 11), -- P. Def. Modifiers
+(25126, 4413, 11), -- M. Def. Modifiers
+(25126, 4414, 2), -- Armor Type
+(25126, 4415, 3), -- Weapon Type
+(25126, 4416, 11), -- Races
 (25126, 4494, 1), -- Raid Boss
 (25126, 4837, 1), -- Raid Boss - Level 79
 -- Langk Matriarch Rashkos
 (25127, 4045, 1), -- Resist Full Magic Attack
 (25127, 4172, 3), -- Stun
-(25127, 4175, 3), -- Haste
-(25127, 4177, 3), -- Cancel
-(25127, 4408, 1), -- HP Increase (1x)
-(25127, 4409, 1), -- MP Increase (1x)
-(25127, 4410, 11), -- Average P. Atk.
-(25127, 4411, 11), -- Average M. Atk.
-(25127, 4412, 11), -- Average P. Def.
-(25127, 4413, 11), -- Average M. Def.
-(25127, 4414, 3), -- Light Armor Type
-(25127, 4415, 3), -- One-handed Sword
-(25127, 4416, 6), -- Humanoids
+(25127, 4175, 3), -- BOSS Haste
+(25127, 4177, 3), -- BOSS Cancel Magic
+(25127, 4408, 1), -- HP Modifiers
+(25127, 4409, 1), -- MP Modifiers
+(25127, 4410, 11), -- P. Atk. Modifiers
+(25127, 4411, 11), -- M. Atk. Modifiers
+(25127, 4412, 11), -- P. Def. Modifiers
+(25127, 4413, 11), -- M. Def. Modifiers
+(25127, 4414, 3), -- Armor Type
+(25127, 4415, 3), -- Weapon Type
+(25127, 4416, 6), -- Races
 (25127, 4494, 1), -- Raid Boss
-(25127, 4732, 3), -- Mortal Blow
+(25127, 4732, 3), -- BOSS Mortal Blow
 (25127, 4838, 1), -- Raid Boss - Level 24
 -- Vuku Grand Priest Gharmash
 (25128, 4045, 1), -- Resist Full Magic Attack
 (25128, 4197, 3), -- Hold
-(25128, 4408, 1), -- HP Increase (1x)
-(25128, 4409, 1), -- MP Increase (1x)
-(25128, 4410, 11), -- Average P. Atk.
-(25128, 4411, 11), -- Average M. Atk.
-(25128, 4412, 11), -- Average P. Def.
-(25128, 4413, 11), -- Average M. Def.
-(25128, 4414, 3), -- Light Armor Type
-(25128, 4415, 3), -- One-handed Sword
-(25128, 4416, 6), -- Humanoids
+(25128, 4408, 1), -- HP Modifiers
+(25128, 4409, 1), -- MP Modifiers
+(25128, 4410, 11), -- P. Atk. Modifiers
+(25128, 4411, 11), -- M. Atk. Modifiers
+(25128, 4412, 11), -- P. Def. Modifiers
+(25128, 4413, 11), -- M. Def. Modifiers
+(25128, 4414, 3), -- Armor Type
+(25128, 4415, 3), -- Weapon Type
+(25128, 4416, 6), -- Races
 (25128, 4494, 1), -- Raid Boss
 (25128, 4839, 1), -- Raid Boss - Level 33
 -- Vuku Shaman
 (25129, 4045, 1), -- Resist Full Magic Attack
-(25129, 4194, 3), -- Aura Burn
+(25129, 4194, 3), -- BOSS Aura Burn
 (25129, 4203, 3), -- Decrease Speed
-(25129, 4408, 1), -- HP Increase (1x)
-(25129, 4409, 1), -- MP Increase (1x)
-(25129, 4410, 11), -- Average P. Atk.
-(25129, 4411, 11), -- Average M. Atk.
-(25129, 4412, 11), -- Average P. Def.
-(25129, 4413, 11), -- Average M. Def.
-(25129, 4414, 3), -- Light Armor Type
-(25129, 4415, 3), -- One-handed Sword
-(25129, 4416, 6), -- Humanoids
+(25129, 4408, 1), -- HP Modifiers
+(25129, 4409, 1), -- MP Modifiers
+(25129, 4410, 11), -- P. Atk. Modifiers
+(25129, 4411, 11), -- M. Atk. Modifiers
+(25129, 4412, 11), -- P. Def. Modifiers
+(25129, 4413, 11), -- M. Def. Modifiers
+(25129, 4414, 3), -- Armor Type
+(25129, 4415, 3), -- Weapon Type
+(25129, 4416, 6), -- Races
 -- Gharmash's Pet Trimden
 (25130, 4045, 1), -- Resist Full Magic Attack
-(25130, 4408, 1), -- HP Increase (1x)
-(25130, 4409, 1), -- MP Increase (1x)
-(25130, 4410, 11), -- Average P. Atk.
-(25130, 4411, 11), -- Average M. Atk.
-(25130, 4412, 11), -- Average P. Def.
-(25130, 4413, 11), -- Average M. Def.
-(25130, 4414, 2), -- Standard Type
-(25130, 4415, 3), -- One-handed Sword
-(25130, 4416, 12), -- Bugs
-(25130, 4722, 3), -- Power Strike
+(25130, 4408, 1), -- HP Modifiers
+(25130, 4409, 1), -- MP Modifiers
+(25130, 4410, 11), -- P. Atk. Modifiers
+(25130, 4411, 11), -- M. Atk. Modifiers
+(25130, 4412, 11), -- P. Def. Modifiers
+(25130, 4413, 11), -- M. Def. Modifiers
+(25130, 4414, 2), -- Armor Type
+(25130, 4415, 3), -- Weapon Type
+(25130, 4416, 12), -- Races
+(25130, 4722, 3), -- BOSS Strike
 -- Carnage Lord Gato
 (25131, 4045, 1), -- Resist Full Magic Attack
-(25131, 4408, 1), -- HP Increase (1x)
-(25131, 4409, 1), -- MP Increase (1x)
-(25131, 4410, 11), -- Average P. Atk.
-(25131, 4411, 11), -- Average M. Atk.
-(25131, 4412, 11), -- Average P. Def.
-(25131, 4413, 11), -- Average M. Def.
-(25131, 4414, 2), -- Standard Type
-(25131, 4415, 3), -- One-handed Sword
-(25131, 4416, 6), -- Humanoids
+(25131, 4408, 1), -- HP Modifiers
+(25131, 4409, 1), -- MP Modifiers
+(25131, 4410, 11), -- P. Atk. Modifiers
+(25131, 4411, 11), -- M. Atk. Modifiers
+(25131, 4412, 11), -- P. Def. Modifiers
+(25131, 4413, 11), -- M. Def. Modifiers
+(25131, 4414, 2), -- Armor Type
+(25131, 4415, 3), -- Weapon Type
+(25131, 4416, 6), -- Races
 (25131, 4494, 1), -- Raid Boss
-(25131, 4741, 5), -- Power Strike
+(25131, 4741, 5), -- BOSS Strike
 (25131, 4840, 1), -- Raid Boss - Level 50
 -- Gato's Marksman
 (25132, 4045, 1), -- Resist Full Magic Attack
-(25132, 4408, 1), -- HP Increase (1x)
-(25132, 4409, 1), -- MP Increase (1x)
-(25132, 4410, 11), -- Average P. Atk.
-(25132, 4411, 11), -- Average M. Atk.
-(25132, 4412, 11), -- Average P. Def.
-(25132, 4413, 11), -- Average M. Def.
-(25132, 4414, 3), -- Light Armor Type
-(25132, 4415, 9), -- Bows
-(25132, 4416, 6), -- Humanoids
+(25132, 4408, 1), -- HP Modifiers
+(25132, 4409, 1), -- MP Modifiers
+(25132, 4410, 11), -- P. Atk. Modifiers
+(25132, 4411, 11), -- M. Atk. Modifiers
+(25132, 4412, 11), -- P. Def. Modifiers
+(25132, 4413, 11), -- M. Def. Modifiers
+(25132, 4414, 3), -- Armor Type
+(25132, 4415, 9), -- Weapon Type
+(25132, 4416, 6), -- Races
 (25132, 4761, 4), -- Stun
 -- Gato's Troop Leader
 (25133, 4045, 1), -- Resist Full Magic Attack
-(25133, 4408, 1), -- HP Increase (1x)
-(25133, 4409, 1), -- MP Increase (1x)
-(25133, 4410, 11), -- Average P. Atk.
-(25133, 4411, 11), -- Average M. Atk.
-(25133, 4412, 11), -- Average P. Def.
-(25133, 4413, 11), -- Average M. Def.
-(25133, 4414, 2), -- Standard Type
-(25133, 4415, 3), -- One-handed Sword
-(25133, 4416, 6), -- Humanoids
+(25133, 4408, 1), -- HP Modifiers
+(25133, 4409, 1), -- MP Modifiers
+(25133, 4410, 11), -- P. Atk. Modifiers
+(25133, 4411, 11), -- M. Atk. Modifiers
+(25133, 4412, 11), -- P. Def. Modifiers
+(25133, 4413, 11), -- M. Def. Modifiers
+(25133, 4414, 2), -- Armor Type
+(25133, 4415, 3), -- Weapon Type
+(25133, 4416, 6), -- Races
 -- Leto Chief Talkin
 (25134, 4045, 1), -- Resist Full Magic Attack
-(25134, 4178, 4), -- Flame Strike
-(25134, 4408, 1), -- HP Increase (1x)
-(25134, 4409, 1), -- MP Increase (1x)
-(25134, 4410, 11), -- Average P. Atk.
-(25134, 4411, 11), -- Average M. Atk.
-(25134, 4412, 11), -- Average P. Def.
-(25134, 4413, 11), -- Average M. Def.
-(25134, 4414, 3), -- Light Armor Type
-(25134, 4415, 3), -- One-handed Sword
-(25134, 4416, 6), -- Humanoids
+(25134, 4178, 4), -- BOSS Flame Strike
+(25134, 4408, 1), -- HP Modifiers
+(25134, 4409, 1), -- MP Modifiers
+(25134, 4410, 11), -- P. Atk. Modifiers
+(25134, 4411, 11), -- M. Atk. Modifiers
+(25134, 4412, 11), -- P. Def. Modifiers
+(25134, 4413, 11), -- M. Def. Modifiers
+(25134, 4414, 3), -- Armor Type
+(25134, 4415, 3), -- Weapon Type
+(25134, 4416, 6), -- Races
 (25134, 4494, 1), -- Raid Boss
 (25134, 4841, 1), -- Raid Boss - Level 40
 -- Talkin's Priest
 (25135, 4045, 1), -- Resist Full Magic Attack
-(25135, 4211, 4), -- Might
-(25135, 4408, 1), -- HP Increase (1x)
-(25135, 4409, 1), -- MP Increase (1x)
-(25135, 4410, 11), -- Average P. Atk.
-(25135, 4411, 11), -- Average M. Atk.
-(25135, 4412, 11), -- Average P. Def.
-(25135, 4413, 11), -- Average M. Def.
-(25135, 4414, 3), -- Light Armor Type
-(25135, 4415, 5), -- Blunt Weapons
-(25135, 4416, 6), -- Humanoids
-(25135, 4781, 4), -- Heal
+(25135, 4211, 4), -- BOSS Might
+(25135, 4408, 1), -- HP Modifiers
+(25135, 4409, 1), -- MP Modifiers
+(25135, 4410, 11), -- P. Atk. Modifiers
+(25135, 4411, 11), -- M. Atk. Modifiers
+(25135, 4412, 11), -- P. Def. Modifiers
+(25135, 4413, 11), -- M. Def. Modifiers
+(25135, 4414, 3), -- Armor Type
+(25135, 4415, 5), -- Weapon Type
+(25135, 4416, 6), -- Races
+(25135, 4781, 4), -- BOSS Heal
 -- Talkin's Bodyguard
 (25136, 4045, 1), -- Resist Full Magic Attack
-(25136, 4408, 1), -- HP Increase (1x)
-(25136, 4409, 1), -- MP Increase (1x)
-(25136, 4410, 11), -- Average P. Atk.
-(25136, 4411, 11), -- Average M. Atk.
-(25136, 4412, 11), -- Average P. Def.
-(25136, 4413, 11), -- Average M. Def.
-(25136, 4414, 2), -- Standard Type
-(25136, 4415, 3), -- One-handed Sword
-(25136, 4416, 6), -- Humanoids
+(25136, 4408, 1), -- HP Modifiers
+(25136, 4409, 1), -- MP Modifiers
+(25136, 4410, 11), -- P. Atk. Modifiers
+(25136, 4411, 11), -- M. Atk. Modifiers
+(25136, 4412, 11), -- P. Def. Modifiers
+(25136, 4413, 11), -- M. Def. Modifiers
+(25136, 4414, 2), -- Armor Type
+(25136, 4415, 3), -- Weapon Type
+(25136, 4416, 6), -- Races
 -- Beleth's Seer, Sephia
 (25137, 4045, 1), -- Resist Full Magic Attack
 (25137, 4197, 5), -- Hold
-(25137, 4408, 1), -- HP Increase (1x)
-(25137, 4409, 1), -- MP Increase (1x)
-(25137, 4410, 11), -- Average P. Atk.
-(25137, 4411, 11), -- Average M. Atk.
-(25137, 4412, 11), -- Average P. Def.
-(25137, 4413, 11), -- Average M. Def.
-(25137, 4414, 2), -- Standard Type
-(25137, 4415, 3), -- One-handed Sword
-(25137, 4416, 9), -- Demons
+(25137, 4408, 1), -- HP Modifiers
+(25137, 4409, 1), -- MP Modifiers
+(25137, 4410, 11), -- P. Atk. Modifiers
+(25137, 4411, 11), -- M. Atk. Modifiers
+(25137, 4412, 11), -- P. Def. Modifiers
+(25137, 4413, 11), -- M. Def. Modifiers
+(25137, 4414, 2), -- Armor Type
+(25137, 4415, 3), -- Weapon Type
+(25137, 4416, 9), -- Races
 (25137, 4494, 1), -- Raid Boss
 (25137, 4842, 1), -- Raid Boss - Level 55
 -- Soul Drinker
 (25138, 4045, 1), -- Resist Full Magic Attack
-(25138, 4191, 5), -- Wind Strike
+(25138, 4191, 5), -- BOSS Wind Strike
 (25138, 4205, 5), -- Paralysis
-(25138, 4408, 1), -- HP Increase (1x)
-(25138, 4409, 1), -- MP Increase (1x)
-(25138, 4410, 11), -- Average P. Atk.
-(25138, 4411, 11), -- Average M. Atk.
-(25138, 4412, 11), -- Average P. Def.
-(25138, 4413, 11), -- Average M. Def.
-(25138, 4414, 2), -- Standard Type
-(25138, 4415, 3), -- One-handed Sword
-(25138, 4416, 2), -- Magic Creatures
+(25138, 4408, 1), -- HP Modifiers
+(25138, 4409, 1), -- MP Modifiers
+(25138, 4410, 11), -- P. Atk. Modifiers
+(25138, 4411, 11), -- M. Atk. Modifiers
+(25138, 4412, 11), -- P. Def. Modifiers
+(25138, 4413, 11), -- M. Def. Modifiers
+(25138, 4414, 2), -- Armor Type
+(25138, 4415, 3), -- Weapon Type
+(25138, 4416, 2), -- Races
 -- Sephia's Salve
 (25139, 4045, 1), -- Resist Full Magic Attack
-(25139, 4408, 1), -- HP Increase (1x)
-(25139, 4409, 1), -- MP Increase (1x)
-(25139, 4410, 11), -- Average P. Atk.
-(25139, 4411, 11), -- Average M. Atk.
-(25139, 4412, 11), -- Average P. Def.
-(25139, 4413, 11), -- Average M. Def.
-(25139, 4414, 2), -- Standard Type
-(25139, 4415, 3), -- One-handed Sword
-(25139, 4416, 9), -- Demons
-(25139, 4731, 5), -- Mortal Blow
+(25139, 4408, 1), -- HP Modifiers
+(25139, 4409, 1), -- MP Modifiers
+(25139, 4410, 11), -- P. Atk. Modifiers
+(25139, 4411, 11), -- M. Atk. Modifiers
+(25139, 4412, 11), -- P. Def. Modifiers
+(25139, 4413, 11), -- M. Def. Modifiers
+(25139, 4414, 2), -- Armor Type
+(25139, 4415, 3), -- Weapon Type
+(25139, 4416, 9), -- Races
+(25139, 4731, 5), -- BOSS Mortal Blow
 -- Hekaton Prime
 (25140, 4045, 1), -- Resist Full Magic Attack
 (25140, 4184, 6), -- Decrease Atk. Spd.
 (25140, 4189, 6), -- Paralysis
-(25140, 4195, 6), -- Twister
-(25140, 4408, 1), -- HP Increase (1x)
-(25140, 4409, 1), -- MP Increase (1x)
-(25140, 4410, 11), -- Average P. Atk.
-(25140, 4411, 11), -- Average M. Atk.
-(25140, 4412, 11), -- Average P. Def.
-(25140, 4413, 11), -- Average M. Def.
-(25140, 4414, 2), -- Standard Type
-(25140, 4415, 5), -- Blunt Weapons
-(25140, 4416, 2), -- Magic Creatures
+(25140, 4195, 6), -- BOSS Twister
+(25140, 4408, 1), -- HP Modifiers
+(25140, 4409, 1), -- MP Modifiers
+(25140, 4410, 11), -- P. Atk. Modifiers
+(25140, 4411, 11), -- M. Atk. Modifiers
+(25140, 4412, 11), -- P. Def. Modifiers
+(25140, 4413, 11), -- M. Def. Modifiers
+(25140, 4414, 2), -- Armor Type
+(25140, 4415, 5), -- Weapon Type
+(25140, 4416, 2), -- Races
 (25140, 4494, 1), -- Raid Boss
 (25140, 4843, 1), -- Raid Boss - Level 65
 -- Hekaton Cottus
 (25141, 4045, 1), -- Resist Full Magic Attack
-(25141, 4408, 1), -- HP Increase (1x)
-(25141, 4409, 1), -- MP Increase (1x)
-(25141, 4410, 11), -- Average P. Atk.
-(25141, 4411, 11), -- Average M. Atk.
-(25141, 4412, 11), -- Average P. Def.
-(25141, 4413, 11), -- Average M. Def.
-(25141, 4414, 2), -- Standard Type
-(25141, 4415, 3), -- One-handed Sword
-(25141, 4416, 2), -- Magic Creatures
-(25141, 4720, 6), -- Power Strike
+(25141, 4408, 1), -- HP Modifiers
+(25141, 4409, 1), -- MP Modifiers
+(25141, 4410, 11), -- P. Atk. Modifiers
+(25141, 4411, 11), -- M. Atk. Modifiers
+(25141, 4412, 11), -- P. Def. Modifiers
+(25141, 4413, 11), -- M. Def. Modifiers
+(25141, 4414, 2), -- Armor Type
+(25141, 4415, 3), -- Weapon Type
+(25141, 4416, 2), -- Races
+(25141, 4720, 6), -- BOSS Strike
 -- Hekaton Chires
 (25142, 4045, 1), -- Resist Full Magic Attack
-(25142, 4408, 1), -- HP Increase (1x)
-(25142, 4409, 1), -- MP Increase (1x)
-(25142, 4410, 11), -- Average P. Atk.
-(25142, 4411, 11), -- Average M. Atk.
-(25142, 4412, 11), -- Average P. Def.
-(25142, 4413, 11), -- Average M. Def.
-(25142, 4414, 2), -- Standard Type
-(25142, 4415, 3), -- One-handed Sword
-(25142, 4416, 11), -- Giants
+(25142, 4408, 1), -- HP Modifiers
+(25142, 4409, 1), -- MP Modifiers
+(25142, 4410, 11), -- P. Atk. Modifiers
+(25142, 4411, 11), -- M. Atk. Modifiers
+(25142, 4412, 11), -- P. Def. Modifiers
+(25142, 4413, 11), -- M. Def. Modifiers
+(25142, 4414, 2), -- Armor Type
+(25142, 4415, 3), -- Weapon Type
+(25142, 4416, 11), -- Races
 -- Fire of Wrath Shuriel
 (25143, 4045, 1), -- Resist Full Magic Attack
-(25143, 4178, 8), -- Flame Strike
-(25143, 4408, 1), -- HP Increase (1x)
-(25143, 4409, 1), -- MP Increase (1x)
-(25143, 4410, 11), -- Average P. Atk.
-(25143, 4411, 11), -- Average M. Atk.
-(25143, 4412, 11), -- Average P. Def.
-(25143, 4413, 11), -- Average M. Def.
-(25143, 4414, 2), -- Standard Type
-(25143, 4415, 5), -- Blunt Weapons
-(25143, 4416, 8), -- Angels
+(25143, 4178, 8), -- BOSS Flame Strike
+(25143, 4408, 1), -- HP Modifiers
+(25143, 4409, 1), -- MP Modifiers
+(25143, 4410, 11), -- P. Atk. Modifiers
+(25143, 4411, 11), -- M. Atk. Modifiers
+(25143, 4412, 11), -- P. Def. Modifiers
+(25143, 4413, 11), -- M. Def. Modifiers
+(25143, 4414, 2), -- Armor Type
+(25143, 4415, 5), -- Weapon Type
+(25143, 4416, 8), -- Races
 (25143, 4494, 1), -- Raid Boss
 (25143, 4844, 1), -- Raid Boss - Level 78
 -- Shuriel's Oracle
 (25144, 4045, 1), -- Resist Full Magic Attack
-(25144, 4210, 7), -- Chant of Life
-(25144, 4214, 7), -- Reflect Damage
-(25144, 4408, 1), -- HP Increase (1x)
-(25144, 4409, 1), -- MP Increase (1x)
-(25144, 4410, 11), -- Average P. Atk.
-(25144, 4411, 11), -- Average M. Atk.
-(25144, 4412, 11), -- Average P. Def.
-(25144, 4413, 11), -- Average M. Def.
-(25144, 4414, 3), -- Light Armor Type
-(25144, 4415, 5), -- Blunt Weapons
-(25144, 4416, 6), -- Humanoids
+(25144, 4210, 7), -- Life Chant
+(25144, 4214, 7), -- BOSS Reflect Damage
+(25144, 4408, 1), -- HP Modifiers
+(25144, 4409, 1), -- MP Modifiers
+(25144, 4410, 11), -- P. Atk. Modifiers
+(25144, 4411, 11), -- M. Atk. Modifiers
+(25144, 4412, 11), -- P. Def. Modifiers
+(25144, 4413, 11), -- M. Def. Modifiers
+(25144, 4414, 3), -- Armor Type
+(25144, 4415, 5), -- Weapon Type
+(25144, 4416, 6), -- Races
 -- Shuriel's Paladin
 (25145, 4045, 1), -- Resist Full Magic Attack
-(25145, 4408, 1), -- HP Increase (1x)
-(25145, 4409, 1), -- MP Increase (1x)
-(25145, 4410, 11), -- Average P. Atk.
-(25145, 4411, 11), -- Average M. Atk.
-(25145, 4412, 11), -- Average P. Def.
-(25145, 4413, 11), -- Average M. Def.
-(25145, 4414, 2), -- Standard Type
-(25145, 4415, 3), -- One-handed Sword
-(25145, 4416, 8), -- Angels
+(25145, 4408, 1), -- HP Modifiers
+(25145, 4409, 1), -- MP Modifiers
+(25145, 4410, 11), -- P. Atk. Modifiers
+(25145, 4411, 11), -- M. Atk. Modifiers
+(25145, 4412, 11), -- P. Def. Modifiers
+(25145, 4413, 11), -- M. Def. Modifiers
+(25145, 4414, 2), -- Armor Type
+(25145, 4415, 3), -- Weapon Type
+(25145, 4416, 8), -- Races
 -- Serpent Demon Bifrons
 (25146, 4045, 1), -- Resist Full Magic Attack
-(25146, 4408, 1), -- HP Increase (1x)
-(25146, 4409, 1), -- MP Increase (1x)
-(25146, 4410, 11), -- Average P. Atk.
-(25146, 4411, 11), -- Average M. Atk.
-(25146, 4412, 11), -- Average P. Def.
-(25146, 4413, 11), -- Average M. Def.
-(25146, 4414, 2), -- Standard Type
-(25146, 4415, 3), -- One-handed Sword
-(25146, 4416, 3), -- Beasts
+(25146, 4408, 1), -- HP Modifiers
+(25146, 4409, 1), -- MP Modifiers
+(25146, 4410, 11), -- P. Atk. Modifiers
+(25146, 4411, 11), -- M. Atk. Modifiers
+(25146, 4412, 11), -- P. Def. Modifiers
+(25146, 4413, 11), -- M. Def. Modifiers
+(25146, 4414, 2), -- Armor Type
+(25146, 4415, 3), -- Weapon Type
+(25146, 4416, 3), -- Races
 (25146, 4494, 1), -- Raid Boss
-(25146, 4743, 5), -- Power Strike
+(25146, 4743, 5), -- BOSS Strike
 (25146, 4845, 1), -- Raid Boss - Level 21
 -- Assassin of Bifrons
 (25147, 4045, 1), -- Resist Full Magic Attack
-(25147, 4408, 1), -- HP Increase (1x)
-(25147, 4409, 1), -- MP Increase (1x)
-(25147, 4410, 11), -- Average P. Atk.
-(25147, 4411, 11), -- Average M. Atk.
-(25147, 4412, 11), -- Average P. Def.
-(25147, 4413, 11), -- Average M. Def.
-(25147, 4414, 3), -- Light Armor Type
-(25147, 4415, 9), -- Bows
-(25147, 4416, 6), -- Humanoids
-(25147, 4778, 2), -- Spear Attack
+(25147, 4408, 1), -- HP Modifiers
+(25147, 4409, 1), -- MP Modifiers
+(25147, 4410, 11), -- P. Atk. Modifiers
+(25147, 4411, 11), -- M. Atk. Modifiers
+(25147, 4412, 11), -- P. Def. Modifiers
+(25147, 4413, 11), -- M. Def. Modifiers
+(25147, 4414, 3), -- Armor Type
+(25147, 4415, 9), -- Weapon Type
+(25147, 4416, 6), -- Races
+(25147, 4778, 2), -- BOSS Spear Attack
 -- Butcher of Bifrons
 (25148, 4045, 1), -- Resist Full Magic Attack
-(25148, 4408, 1), -- HP Increase (1x)
-(25148, 4409, 1), -- MP Increase (1x)
-(25148, 4410, 11), -- Average P. Atk.
-(25148, 4411, 11), -- Average M. Atk.
-(25148, 4412, 11), -- Average P. Def.
-(25148, 4413, 11), -- Average M. Def.
-(25148, 4414, 2), -- Standard Type
-(25148, 4415, 3), -- One-handed Sword
-(25148, 4416, 6), -- Humanoids
+(25148, 4408, 1), -- HP Modifiers
+(25148, 4409, 1), -- MP Modifiers
+(25148, 4410, 11), -- P. Atk. Modifiers
+(25148, 4411, 11), -- M. Atk. Modifiers
+(25148, 4412, 11), -- P. Def. Modifiers
+(25148, 4413, 11), -- M. Def. Modifiers
+(25148, 4414, 2), -- Armor Type
+(25148, 4415, 3), -- Weapon Type
+(25148, 4416, 6), -- Races
 -- Zombie Lord Crowl
 (25149, 4045, 1), -- Resist Full Magic Attack
-(25149, 4408, 1), -- HP Increase (1x)
-(25149, 4409, 1), -- MP Increase (1x)
-(25149, 4410, 11), -- Average P. Atk.
-(25149, 4411, 11), -- Average M. Atk.
-(25149, 4412, 11), -- Average P. Def.
-(25149, 4413, 11), -- Average M. Def.
-(25149, 4414, 2), -- Standard Type
-(25149, 4415, 1), -- Bare Hands
-(25149, 4416, 1), -- Undead
+(25149, 4408, 1), -- HP Modifiers
+(25149, 4409, 1), -- MP Modifiers
+(25149, 4410, 11), -- P. Atk. Modifiers
+(25149, 4411, 11), -- M. Atk. Modifiers
+(25149, 4412, 11), -- P. Def. Modifiers
+(25149, 4413, 11), -- M. Def. Modifiers
+(25149, 4414, 2), -- Armor Type
+(25149, 4415, 1), -- Weapon Type
+(25149, 4416, 1), -- Races
 (25149, 4494, 1), -- Raid Boss
-(25149, 4741, 2), -- Power Strike
+(25149, 4741, 2), -- BOSS Strike
 (25149, 4846, 1), -- Raid Boss - Level 25
 -- Evil Spirit Archer
 (25150, 4045, 1), -- Resist Full Magic Attack
-(25150, 4408, 1), -- HP Increase (1x)
-(25150, 4409, 1), -- MP Increase (1x)
-(25150, 4410, 11), -- Average P. Atk.
-(25150, 4411, 11), -- Average M. Atk.
-(25150, 4412, 11), -- Average P. Def.
-(25150, 4413, 11), -- Average M. Def.
-(25150, 4414, 3), -- Light Armor Type
-(25150, 4415, 9), -- Bows
-(25150, 4416, 1), -- Undead
-(25150, 4756, 2), -- Power Shot
+(25150, 4408, 1), -- HP Modifiers
+(25150, 4409, 1), -- MP Modifiers
+(25150, 4410, 11), -- P. Atk. Modifiers
+(25150, 4411, 11), -- M. Atk. Modifiers
+(25150, 4412, 11), -- P. Def. Modifiers
+(25150, 4413, 11), -- M. Def. Modifiers
+(25150, 4414, 3), -- Armor Type
+(25150, 4415, 9), -- Weapon Type
+(25150, 4416, 1), -- Races
+(25150, 4756, 2), -- BOSS Power Shot
 -- Evil Spirit Warrior
 (25151, 4045, 1), -- Resist Full Magic Attack
-(25151, 4408, 1), -- HP Increase (1x)
-(25151, 4409, 1), -- MP Increase (1x)
-(25151, 4410, 11), -- Average P. Atk.
-(25151, 4411, 11), -- Average M. Atk.
-(25151, 4412, 11), -- Average P. Def.
-(25151, 4413, 11), -- Average M. Def.
-(25151, 4414, 3), -- Light Armor Type
-(25151, 4415, 3), -- One-handed Sword
-(25151, 4416, 1), -- Undead
+(25151, 4408, 1), -- HP Modifiers
+(25151, 4409, 1), -- MP Modifiers
+(25151, 4410, 11), -- P. Atk. Modifiers
+(25151, 4411, 11), -- M. Atk. Modifiers
+(25151, 4412, 11), -- P. Def. Modifiers
+(25151, 4413, 11), -- M. Def. Modifiers
+(25151, 4414, 3), -- Armor Type
+(25151, 4415, 3), -- Weapon Type
+(25151, 4416, 1), -- Races
 -- Flame Lord Shadar
 (25152, 4045, 1), -- Resist Full Magic Attack
 (25152, 4182, 3), -- Poison
 (25152, 4186, 3), -- Hold
-(25152, 4192, 3), -- Vampiric Touch
-(25152, 4408, 1), -- HP Increase (1x)
-(25152, 4409, 1), -- MP Increase (1x)
-(25152, 4410, 11), -- Average P. Atk.
-(25152, 4411, 11), -- Average M. Atk.
-(25152, 4412, 11), -- Average P. Def.
-(25152, 4413, 11), -- Average M. Def.
-(25152, 4414, 2), -- Standard Type
-(25152, 4415, 1), -- Bare Hands
-(25152, 4416, 9), -- Demons
+(25152, 4192, 3), -- BOSS HP Drain
+(25152, 4408, 1), -- HP Modifiers
+(25152, 4409, 1), -- MP Modifiers
+(25152, 4410, 11), -- P. Atk. Modifiers
+(25152, 4411, 11), -- M. Atk. Modifiers
+(25152, 4412, 11), -- P. Def. Modifiers
+(25152, 4413, 11), -- M. Def. Modifiers
+(25152, 4414, 2), -- Armor Type
+(25152, 4415, 1), -- Weapon Type
+(25152, 4416, 9), -- Races
 (25152, 4494, 1), -- Raid Boss
 (25152, 4847, 1), -- Raid Boss - Level 35
 -- Claws of Shadar
 (25153, 4045, 1), -- Resist Full Magic Attack
-(25153, 4408, 1), -- HP Increase (1x)
-(25153, 4409, 1), -- MP Increase (1x)
-(25153, 4410, 11), -- Average P. Atk.
-(25153, 4411, 11), -- Average M. Atk.
-(25153, 4412, 11), -- Average P. Def.
-(25153, 4413, 11), -- Average M. Def.
-(25153, 4414, 3), -- Light Armor Type
-(25153, 4415, 3), -- One-handed Sword
-(25153, 4416, 13), -- Fairies
-(25153, 4731, 3), -- Mortal Blow
+(25153, 4408, 1), -- HP Modifiers
+(25153, 4409, 1), -- MP Modifiers
+(25153, 4410, 11), -- P. Atk. Modifiers
+(25153, 4411, 11), -- M. Atk. Modifiers
+(25153, 4412, 11), -- P. Def. Modifiers
+(25153, 4413, 11), -- M. Def. Modifiers
+(25153, 4414, 3), -- Armor Type
+(25153, 4415, 3), -- Weapon Type
+(25153, 4416, 13), -- Races
+(25153, 4731, 3), -- BOSS Mortal Blow
 -- Whip of Shadar
 (25154, 4045, 1), -- Resist Full Magic Attack
-(25154, 4408, 1), -- HP Increase (1x)
-(25154, 4409, 1), -- MP Increase (1x)
-(25154, 4410, 11), -- Average P. Atk.
-(25154, 4411, 11), -- Average M. Atk.
-(25154, 4412, 11), -- Average P. Def.
-(25154, 4413, 11), -- Average M. Def.
-(25154, 4414, 3), -- Light Armor Type
-(25154, 4415, 3), -- One-handed Sword
-(25154, 4416, 9), -- Demons
+(25154, 4408, 1), -- HP Modifiers
+(25154, 4409, 1), -- MP Modifiers
+(25154, 4410, 11), -- P. Atk. Modifiers
+(25154, 4411, 11), -- M. Atk. Modifiers
+(25154, 4412, 11), -- P. Def. Modifiers
+(25154, 4413, 11), -- M. Def. Modifiers
+(25154, 4414, 3), -- Armor Type
+(25154, 4415, 3), -- Weapon Type
+(25154, 4416, 9), -- Races
 -- Shaman King Selu
 (25155, 4045, 1), -- Resist Full Magic Attack
 (25155, 4197, 4), -- Hold
-(25155, 4408, 1), -- HP Increase (1x)
-(25155, 4409, 1), -- MP Increase (1x)
-(25155, 4410, 11), -- Average P. Atk.
-(25155, 4411, 11), -- Average M. Atk.
-(25155, 4412, 11), -- Average P. Def.
-(25155, 4413, 11), -- Average M. Def.
-(25155, 4414, 2), -- Standard Type
-(25155, 4415, 3), -- One-handed Sword
-(25155, 4416, 6), -- Humanoids
+(25155, 4408, 1), -- HP Modifiers
+(25155, 4409, 1), -- MP Modifiers
+(25155, 4410, 11), -- P. Atk. Modifiers
+(25155, 4411, 11), -- M. Atk. Modifiers
+(25155, 4412, 11), -- P. Def. Modifiers
+(25155, 4413, 11), -- M. Def. Modifiers
+(25155, 4414, 2), -- Armor Type
+(25155, 4415, 3), -- Weapon Type
+(25155, 4416, 6), -- Races
 (25155, 4494, 1), -- Raid Boss
 (25155, 4848, 1), -- Raid Boss - Level 40
 -- Fanatic Shaman
 (25156, 4045, 1), -- Resist Full Magic Attack
-(25156, 4194, 3), -- Aura Burn
+(25156, 4194, 3), -- BOSS Aura Burn
 (25156, 4199, 3), -- Decrease P. Atk.
-(25156, 4408, 1), -- HP Increase (1x)
-(25156, 4409, 1), -- MP Increase (1x)
-(25156, 4410, 11), -- Average P. Atk.
-(25156, 4411, 11), -- Average M. Atk.
-(25156, 4412, 11), -- Average P. Def.
-(25156, 4413, 11), -- Average M. Def.
-(25156, 4414, 3), -- Light Armor Type
-(25156, 4415, 3), -- One-handed Sword
-(25156, 4416, 6), -- Humanoids
+(25156, 4408, 1), -- HP Modifiers
+(25156, 4409, 1), -- MP Modifiers
+(25156, 4410, 11), -- P. Atk. Modifiers
+(25156, 4411, 11), -- M. Atk. Modifiers
+(25156, 4412, 11), -- P. Def. Modifiers
+(25156, 4413, 11), -- M. Def. Modifiers
+(25156, 4414, 3), -- Armor Type
+(25156, 4415, 3), -- Weapon Type
+(25156, 4416, 6), -- Races
 -- Fanatic Soldier
 (25157, 4045, 1), -- Resist Full Magic Attack
-(25157, 4408, 1), -- HP Increase (1x)
-(25157, 4409, 1), -- MP Increase (1x)
-(25157, 4410, 11), -- Average P. Atk.
-(25157, 4411, 11), -- Average M. Atk.
-(25157, 4412, 11), -- Average P. Def.
-(25157, 4413, 11), -- Average M. Def.
-(25157, 4414, 2), -- Standard Type
-(25157, 4415, 5), -- Blunt Weapons
-(25157, 4416, 6), -- Humanoids
-(25157, 4719, 3), -- Power Strike
+(25157, 4408, 1), -- HP Modifiers
+(25157, 4409, 1), -- MP Modifiers
+(25157, 4410, 11), -- P. Atk. Modifiers
+(25157, 4411, 11), -- M. Atk. Modifiers
+(25157, 4412, 11), -- P. Def. Modifiers
+(25157, 4413, 11), -- M. Def. Modifiers
+(25157, 4414, 2), -- Armor Type
+(25157, 4415, 5), -- Weapon Type
+(25157, 4416, 6), -- Races
+(25157, 4719, 3), -- BOSS Strike
 -- King Tarlk
 (25158, 4045, 1), -- Resist Full Magic Attack
-(25158, 4174, 5), -- Shield
-(25158, 4177, 5), -- Cancel
-(25158, 4408, 1), -- HP Increase (1x)
-(25158, 4409, 1), -- MP Increase (1x)
-(25158, 4410, 11), -- Average P. Atk.
-(25158, 4411, 11), -- Average M. Atk.
-(25158, 4412, 11), -- Average P. Def.
-(25158, 4413, 11), -- Average M. Def.
-(25158, 4414, 2), -- Standard Type
-(25158, 4415, 3), -- One-handed Sword
-(25158, 4416, 11), -- Giants
+(25158, 4174, 5), -- BOSS Shield
+(25158, 4177, 5), -- BOSS Cancel Magic
+(25158, 4408, 1), -- HP Modifiers
+(25158, 4409, 1), -- MP Modifiers
+(25158, 4410, 11), -- P. Atk. Modifiers
+(25158, 4411, 11), -- M. Atk. Modifiers
+(25158, 4412, 11), -- P. Def. Modifiers
+(25158, 4413, 11), -- M. Def. Modifiers
+(25158, 4414, 2), -- Armor Type
+(25158, 4415, 3), -- Weapon Type
+(25158, 4416, 11), -- Races
 (25158, 4494, 1), -- Raid Boss
-(25158, 4720, 5), -- Power Strike
-(25158, 4735, 5), -- Whirlwind
+(25158, 4720, 5), -- BOSS Strike
+(25158, 4735, 5), -- BOSS Spinning Slash
 (25158, 4849, 1), -- Raid Boss - Level 48
 -- Paniel the Unicorn
 (25159, 4045, 1), -- Resist Full Magic Attack
-(25159, 4178, 5), -- Flame Strike
-(25159, 4408, 1), -- HP Increase (1x)
-(25159, 4409, 1), -- MP Increase (1x)
-(25159, 4410, 11), -- Average P. Atk.
-(25159, 4411, 11), -- Average M. Atk.
-(25159, 4412, 11), -- Average P. Def.
-(25159, 4413, 11), -- Average M. Def.
-(25159, 4414, 3), -- Light Armor Type
-(25159, 4415, 3), -- One-handed Sword
-(25159, 4416, 7), -- Spirits
+(25159, 4178, 5), -- BOSS Flame Strike
+(25159, 4408, 1), -- HP Modifiers
+(25159, 4409, 1), -- MP Modifiers
+(25159, 4410, 11), -- P. Atk. Modifiers
+(25159, 4411, 11), -- M. Atk. Modifiers
+(25159, 4412, 11), -- P. Def. Modifiers
+(25159, 4413, 11), -- M. Def. Modifiers
+(25159, 4414, 3), -- Armor Type
+(25159, 4415, 3), -- Weapon Type
+(25159, 4416, 7), -- Races
 (25159, 4494, 1), -- Raid Boss
 (25159, 4850, 1), -- Raid Boss - Level 54
 -- Rapini the Unicorn
 (25160, 4045, 1), -- Resist Full Magic Attack
-(25160, 4213, 5), -- Haste
-(25160, 4408, 1), -- HP Increase (1x)
-(25160, 4409, 1), -- MP Increase (1x)
-(25160, 4410, 11), -- Average P. Atk.
-(25160, 4411, 11), -- Average M. Atk.
-(25160, 4412, 11), -- Average P. Def.
-(25160, 4413, 11), -- Average M. Def.
-(25160, 4414, 3), -- Light Armor Type
-(25160, 4415, 3), -- One-handed Sword
-(25160, 4416, 7), -- Spirits
-(25160, 4781, 5), -- Heal
+(25160, 4213, 5), -- BOSS Haste
+(25160, 4408, 1), -- HP Modifiers
+(25160, 4409, 1), -- MP Modifiers
+(25160, 4410, 11), -- P. Atk. Modifiers
+(25160, 4411, 11), -- M. Atk. Modifiers
+(25160, 4412, 11), -- P. Def. Modifiers
+(25160, 4413, 11), -- M. Def. Modifiers
+(25160, 4414, 3), -- Armor Type
+(25160, 4415, 3), -- Weapon Type
+(25160, 4416, 7), -- Races
+(25160, 4781, 5), -- BOSS Heal
 -- Ririf the Unicorn
 (25161, 4045, 1), -- Resist Full Magic Attack
-(25161, 4408, 1), -- HP Increase (1x)
-(25161, 4409, 1), -- MP Increase (1x)
-(25161, 4410, 11), -- Average P. Atk.
-(25161, 4411, 11), -- Average M. Atk.
-(25161, 4412, 11), -- Average P. Def.
-(25161, 4413, 11), -- Average M. Def.
-(25161, 4414, 3), -- Light Armor Type
-(25161, 4415, 3), -- One-handed Sword
-(25161, 4416, 7), -- Spirits
+(25161, 4408, 1), -- HP Modifiers
+(25161, 4409, 1), -- MP Modifiers
+(25161, 4410, 11), -- P. Atk. Modifiers
+(25161, 4411, 11), -- M. Atk. Modifiers
+(25161, 4412, 11), -- P. Def. Modifiers
+(25161, 4413, 11), -- M. Def. Modifiers
+(25161, 4414, 3), -- Armor Type
+(25161, 4415, 3), -- Weapon Type
+(25161, 4416, 7), -- Races
 -- Giant Marpanak
 (25162, 4045, 1), -- Resist Full Magic Attack
-(25162, 4173, 6), -- Might
-(25162, 4177, 6), -- Cancel
-(25162, 4408, 1), -- HP Increase (1x)
-(25162, 4409, 1), -- MP Increase (1x)
-(25162, 4410, 11), -- Average P. Atk.
-(25162, 4411, 11), -- Average M. Atk.
-(25162, 4412, 11), -- Average P. Def.
-(25162, 4413, 11), -- Average M. Def.
-(25162, 4414, 2), -- Standard Type
-(25162, 4415, 3), -- One-handed Sword
-(25162, 4416, 11), -- Giants
+(25162, 4173, 6), -- BOSS Might
+(25162, 4177, 6), -- BOSS Cancel Magic
+(25162, 4408, 1), -- HP Modifiers
+(25162, 4409, 1), -- MP Modifiers
+(25162, 4410, 11), -- P. Atk. Modifiers
+(25162, 4411, 11), -- M. Atk. Modifiers
+(25162, 4412, 11), -- P. Def. Modifiers
+(25162, 4413, 11), -- M. Def. Modifiers
+(25162, 4414, 2), -- Armor Type
+(25162, 4415, 3), -- Weapon Type
+(25162, 4416, 11), -- Races
 (25162, 4494, 1), -- Raid Boss
-(25162, 4730, 6), -- Mortal Blow
-(25162, 4735, 6), -- Whirlwind
+(25162, 4730, 6), -- BOSS Mortal Blow
+(25162, 4735, 6), -- BOSS Spinning Slash
 (25162, 4851, 1), -- Raid Boss - Level 60
 -- Roaring Skylancer
 (25163, 4045, 1), -- Resist Full Magic Attack
-(25163, 4173, 7), -- Might
-(25163, 4177, 7), -- Cancel
-(25163, 4408, 1), -- HP Increase (1x)
-(25163, 4409, 1), -- MP Increase (1x)
-(25163, 4410, 11), -- Average P. Atk.
-(25163, 4411, 11), -- Average M. Atk.
-(25163, 4412, 11), -- Average P. Def.
-(25163, 4413, 11), -- Average M. Def.
-(25163, 4414, 2), -- Standard Type
-(25163, 4415, 3), -- One-handed Sword
-(25163, 4416, 10), -- Dragons
+(25163, 4173, 7), -- BOSS Might
+(25163, 4177, 7), -- BOSS Cancel Magic
+(25163, 4408, 1), -- HP Modifiers
+(25163, 4409, 1), -- MP Modifiers
+(25163, 4410, 11), -- P. Atk. Modifiers
+(25163, 4411, 11), -- M. Atk. Modifiers
+(25163, 4412, 11), -- P. Def. Modifiers
+(25163, 4413, 11), -- M. Def. Modifiers
+(25163, 4414, 2), -- Armor Type
+(25163, 4415, 3), -- Weapon Type
+(25163, 4416, 10), -- Races
 (25163, 4494, 1), -- Raid Boss
-(25163, 4730, 7), -- Mortal Blow
-(25163, 4735, 7), -- Whirlwind
+(25163, 4730, 7), -- BOSS Mortal Blow
+(25163, 4735, 7), -- BOSS Spinning Slash
 (25163, 4852, 1), -- Raid Boss - Level 70
 -- Ikuntai
 (25166, 4045, 1), -- Resist Full Magic Attack
-(25166, 4178, 2), -- Flame Strike
-(25166, 4408, 1), -- HP Increase (1x)
-(25166, 4409, 1), -- MP Increase (1x)
-(25166, 4410, 11), -- Average P. Atk.
-(25166, 4411, 11), -- Average M. Atk.
-(25166, 4412, 11), -- Average P. Def.
-(25166, 4413, 11), -- Average M. Def.
-(25166, 4414, 2), -- Standard Type
-(25166, 4415, 3), -- One-handed Sword
-(25166, 4416, 1), -- Undead
+(25166, 4178, 2), -- BOSS Flame Strike
+(25166, 4408, 1), -- HP Modifiers
+(25166, 4409, 1), -- MP Modifiers
+(25166, 4410, 11), -- P. Atk. Modifiers
+(25166, 4411, 11), -- M. Atk. Modifiers
+(25166, 4412, 11), -- P. Def. Modifiers
+(25166, 4413, 11), -- M. Def. Modifiers
+(25166, 4414, 2), -- Armor Type
+(25166, 4415, 3), -- Weapon Type
+(25166, 4416, 1), -- Races
 (25166, 4494, 1), -- Raid Boss
 (25166, 4853, 1), -- Raid Boss - Level 25
 -- Ikuntai's Servitor
 (25167, 4045, 1), -- Resist Full Magic Attack
-(25167, 4214, 2), -- Reflect Damage
-(25167, 4408, 1), -- HP Increase (1x)
-(25167, 4409, 1), -- MP Increase (1x)
-(25167, 4410, 11), -- Average P. Atk.
-(25167, 4411, 11), -- Average M. Atk.
-(25167, 4412, 11), -- Average P. Def.
-(25167, 4413, 11), -- Average M. Def.
-(25167, 4414, 2), -- Standard Type
-(25167, 4415, 3), -- One-handed Sword
-(25167, 4416, 9), -- Demons
-(25167, 4780, 2), -- Heal
+(25167, 4214, 2), -- BOSS Reflect Damage
+(25167, 4408, 1), -- HP Modifiers
+(25167, 4409, 1), -- MP Modifiers
+(25167, 4410, 11), -- P. Atk. Modifiers
+(25167, 4411, 11), -- M. Atk. Modifiers
+(25167, 4412, 11), -- P. Def. Modifiers
+(25167, 4413, 11), -- M. Def. Modifiers
+(25167, 4414, 2), -- Armor Type
+(25167, 4415, 3), -- Weapon Type
+(25167, 4416, 9), -- Races
+(25167, 4780, 2), -- BOSS Heal
 -- Pawn of Ikuntai
 (25168, 4045, 1), -- Resist Full Magic Attack
-(25168, 4408, 1), -- HP Increase (1x)
-(25168, 4409, 1), -- MP Increase (1x)
-(25168, 4410, 11), -- Average P. Atk.
-(25168, 4411, 11), -- Average M. Atk.
-(25168, 4412, 11), -- Average P. Def.
-(25168, 4413, 11), -- Average M. Def.
-(25168, 4414, 3), -- Light Armor Type
-(25168, 4415, 3), -- One-handed Sword
-(25168, 4416, 1), -- Undead
+(25168, 4408, 1), -- HP Modifiers
+(25168, 4409, 1), -- MP Modifiers
+(25168, 4410, 11), -- P. Atk. Modifiers
+(25168, 4411, 11), -- M. Atk. Modifiers
+(25168, 4412, 11), -- P. Def. Modifiers
+(25168, 4413, 11), -- M. Def. Modifiers
+(25168, 4414, 3), -- Armor Type
+(25168, 4415, 3), -- Weapon Type
+(25168, 4416, 1), -- Races
 -- Ragraman
 (25169, 4045, 1), -- Resist Full Magic Attack
 (25169, 4172, 3), -- Stun
-(25169, 4173, 3), -- Might
-(25169, 4177, 3), -- Cancel
-(25169, 4408, 1), -- HP Increase (1x)
-(25169, 4409, 1), -- MP Increase (1x)
-(25169, 4410, 11), -- Average P. Atk.
-(25169, 4411, 11), -- Average M. Atk.
-(25169, 4412, 11), -- Average P. Def.
-(25169, 4413, 11), -- Average M. Def.
-(25169, 4414, 2), -- Standard Type
-(25169, 4415, 3), -- One-handed Sword
-(25169, 4416, 6), -- Humanoids
+(25169, 4173, 3), -- BOSS Might
+(25169, 4177, 3), -- BOSS Cancel Magic
+(25169, 4408, 1), -- HP Modifiers
+(25169, 4409, 1), -- MP Modifiers
+(25169, 4410, 11), -- P. Atk. Modifiers
+(25169, 4411, 11), -- M. Atk. Modifiers
+(25169, 4412, 11), -- P. Def. Modifiers
+(25169, 4413, 11), -- M. Def. Modifiers
+(25169, 4414, 2), -- Armor Type
+(25169, 4415, 3), -- Weapon Type
+(25169, 4416, 6), -- Races
 (25169, 4494, 1), -- Raid Boss
-(25169, 4720, 3), -- Power Strike
+(25169, 4720, 3), -- BOSS Strike
 (25169, 4854, 1), -- Raid Boss - Level 30
 -- Lizardmen Leader Hellion
 (25170, 4045, 1), -- Resist Full Magic Attack
-(25170, 4408, 1), -- HP Increase (1x)
-(25170, 4409, 1), -- MP Increase (1x)
-(25170, 4410, 11), -- Average P. Atk.
-(25170, 4411, 11), -- Average M. Atk.
-(25170, 4412, 11), -- Average P. Def.
-(25170, 4413, 11), -- Average M. Def.
-(25170, 4414, 3), -- Light Armor Type
-(25170, 4415, 7), -- Daggers
-(25170, 4416, 6), -- Humanoids
+(25170, 4408, 1), -- HP Modifiers
+(25170, 4409, 1), -- MP Modifiers
+(25170, 4410, 11), -- P. Atk. Modifiers
+(25170, 4411, 11), -- M. Atk. Modifiers
+(25170, 4412, 11), -- P. Def. Modifiers
+(25170, 4413, 11), -- M. Def. Modifiers
+(25170, 4414, 3), -- Armor Type
+(25170, 4415, 7), -- Weapon Type
+(25170, 4416, 6), -- Races
 (25170, 4494, 1), -- Raid Boss
-(25170, 4752, 3), -- Mortal Blow
+(25170, 4752, 3), -- BOSS Mortal Blow
 (25170, 4855, 1), -- Raid Boss - Level 38
 -- Hellion's Archers
 (25171, 4045, 1), -- Resist Full Magic Attack
-(25171, 4408, 1), -- HP Increase (1x)
-(25171, 4409, 1), -- MP Increase (1x)
-(25171, 4410, 11), -- Average P. Atk.
-(25171, 4411, 11), -- Average M. Atk.
-(25171, 4412, 11), -- Average P. Def.
-(25171, 4413, 11), -- Average M. Def.
-(25171, 4414, 3), -- Light Armor Type
-(25171, 4415, 9), -- Bows
-(25171, 4416, 6), -- Humanoids
-(25171, 4757, 3), -- Power Shot
+(25171, 4408, 1), -- HP Modifiers
+(25171, 4409, 1), -- MP Modifiers
+(25171, 4410, 11), -- P. Atk. Modifiers
+(25171, 4411, 11), -- M. Atk. Modifiers
+(25171, 4412, 11), -- P. Def. Modifiers
+(25171, 4413, 11), -- M. Def. Modifiers
+(25171, 4414, 3), -- Armor Type
+(25171, 4415, 9), -- Weapon Type
+(25171, 4416, 6), -- Races
+(25171, 4757, 3), -- BOSS Power Shot
 -- Hellion's Guards
 (25172, 4045, 1), -- Resist Full Magic Attack
-(25172, 4408, 1), -- HP Increase (1x)
-(25172, 4409, 1), -- MP Increase (1x)
-(25172, 4410, 11), -- Average P. Atk.
-(25172, 4411, 11), -- Average M. Atk.
-(25172, 4412, 11), -- Average P. Def.
-(25172, 4413, 11), -- Average M. Def.
-(25172, 4414, 2), -- Standard Type
-(25172, 4415, 3), -- One-handed Sword
-(25172, 4416, 6), -- Humanoids
+(25172, 4408, 1), -- HP Modifiers
+(25172, 4409, 1), -- MP Modifiers
+(25172, 4410, 11), -- P. Atk. Modifiers
+(25172, 4411, 11), -- M. Atk. Modifiers
+(25172, 4412, 11), -- P. Def. Modifiers
+(25172, 4413, 11), -- M. Def. Modifiers
+(25172, 4414, 2), -- Armor Type
+(25172, 4415, 3), -- Weapon Type
+(25172, 4416, 6), -- Races
 -- Tiger King Karuta
 (25173, 4045, 1), -- Resist Full Magic Attack
-(25173, 4178, 4), -- Flame Strike
-(25173, 4408, 1), -- HP Increase (1x)
-(25173, 4409, 1), -- MP Increase (1x)
-(25173, 4410, 11), -- Average P. Atk.
-(25173, 4411, 11), -- Average M. Atk.
-(25173, 4412, 11), -- Average P. Def.
-(25173, 4413, 11), -- Average M. Def.
-(25173, 4414, 2), -- Standard Type
-(25173, 4415, 3), -- One-handed Sword
-(25173, 4416, 3), -- Beasts
+(25173, 4178, 4), -- BOSS Flame Strike
+(25173, 4408, 1), -- HP Modifiers
+(25173, 4409, 1), -- MP Modifiers
+(25173, 4410, 11), -- P. Atk. Modifiers
+(25173, 4411, 11), -- M. Atk. Modifiers
+(25173, 4412, 11), -- P. Def. Modifiers
+(25173, 4413, 11), -- M. Def. Modifiers
+(25173, 4414, 2), -- Armor Type
+(25173, 4415, 3), -- Weapon Type
+(25173, 4416, 3), -- Races
 (25173, 4494, 1), -- Raid Boss
 (25173, 4856, 1), -- Raid Boss - Level 45
 -- Karuta's Follower
 (25174, 4045, 1), -- Resist Full Magic Attack
-(25174, 4214, 4), -- Reflect Damage
-(25174, 4408, 1), -- HP Increase (1x)
-(25174, 4409, 1), -- MP Increase (1x)
-(25174, 4410, 11), -- Average P. Atk.
-(25174, 4411, 11), -- Average M. Atk.
-(25174, 4412, 11), -- Average P. Def.
-(25174, 4413, 11), -- Average M. Def.
-(25174, 4414, 2), -- Standard Type
-(25174, 4415, 3), -- One-handed Sword
-(25174, 4416, 6), -- Humanoids
-(25174, 4781, 4), -- Heal
+(25174, 4214, 4), -- BOSS Reflect Damage
+(25174, 4408, 1), -- HP Modifiers
+(25174, 4409, 1), -- MP Modifiers
+(25174, 4410, 11), -- P. Atk. Modifiers
+(25174, 4411, 11), -- M. Atk. Modifiers
+(25174, 4412, 11), -- P. Def. Modifiers
+(25174, 4413, 11), -- M. Def. Modifiers
+(25174, 4414, 2), -- Armor Type
+(25174, 4415, 3), -- Weapon Type
+(25174, 4416, 6), -- Races
+(25174, 4781, 4), -- BOSS Heal
 -- Karuta's Inferiors
 (25175, 4045, 1), -- Resist Full Magic Attack
-(25175, 4408, 1), -- HP Increase (1x)
-(25175, 4409, 1), -- MP Increase (1x)
-(25175, 4410, 11), -- Average P. Atk.
-(25175, 4411, 11), -- Average M. Atk.
-(25175, 4412, 11), -- Average P. Def.
-(25175, 4413, 11), -- Average M. Def.
-(25175, 4414, 2), -- Standard Type
-(25175, 4415, 3), -- One-handed Sword
-(25175, 4416, 4), -- Animals
+(25175, 4408, 1), -- HP Modifiers
+(25175, 4409, 1), -- MP Modifiers
+(25175, 4410, 11), -- P. Atk. Modifiers
+(25175, 4411, 11), -- M. Atk. Modifiers
+(25175, 4412, 11), -- P. Def. Modifiers
+(25175, 4413, 11), -- M. Def. Modifiers
+(25175, 4414, 2), -- Armor Type
+(25175, 4415, 3), -- Weapon Type
+(25175, 4416, 4), -- Races
 -- Black Lily
 (25176, 4045, 1), -- Resist Full Magic Attack
 (25176, 4184, 5), -- Decrease Atk. Spd.
 (25176, 4188, 5), -- Bleed
-(25176, 4192, 5), -- Vampiric Touch
-(25176, 4408, 1), -- HP Increase (1x)
-(25176, 4409, 1), -- MP Increase (1x)
-(25176, 4410, 11), -- Average P. Atk.
-(25176, 4411, 11), -- Average M. Atk.
-(25176, 4412, 11), -- Average P. Def.
-(25176, 4413, 11), -- Average M. Def.
-(25176, 4414, 2), -- Standard Type
-(25176, 4415, 1), -- Bare Hands
-(25176, 4416, 9), -- Demons
+(25176, 4192, 5), -- BOSS HP Drain
+(25176, 4408, 1), -- HP Modifiers
+(25176, 4409, 1), -- MP Modifiers
+(25176, 4410, 11), -- P. Atk. Modifiers
+(25176, 4411, 11), -- M. Atk. Modifiers
+(25176, 4412, 11), -- P. Def. Modifiers
+(25176, 4413, 11), -- M. Def. Modifiers
+(25176, 4414, 2), -- Armor Type
+(25176, 4415, 1), -- Weapon Type
+(25176, 4416, 9), -- Races
 (25176, 4494, 1), -- Raid Boss
 (25176, 4857, 1), -- Raid Boss - Level 55
 -- Guardian Knight of Black Lily
 (25177, 4045, 1), -- Resist Full Magic Attack
-(25177, 4408, 1), -- HP Increase (1x)
-(25177, 4409, 1), -- MP Increase (1x)
-(25177, 4410, 11), -- Average P. Atk.
-(25177, 4411, 11), -- Average M. Atk.
-(25177, 4412, 11), -- Average P. Def.
-(25177, 4413, 11), -- Average M. Def.
-(25177, 4414, 2), -- Standard Type
-(25177, 4415, 3), -- One-handed Sword
-(25177, 4416, 1), -- Undead
+(25177, 4408, 1), -- HP Modifiers
+(25177, 4409, 1), -- MP Modifiers
+(25177, 4410, 11), -- P. Atk. Modifiers
+(25177, 4411, 11), -- M. Atk. Modifiers
+(25177, 4412, 11), -- P. Def. Modifiers
+(25177, 4413, 11), -- M. Def. Modifiers
+(25177, 4414, 2), -- Armor Type
+(25177, 4415, 3), -- Weapon Type
+(25177, 4416, 1), -- Races
 (25177, 4727, 5), -- Stun
 -- Servitor of Black Lily
 (25178, 4045, 1), -- Resist Full Magic Attack
-(25178, 4408, 1), -- HP Increase (1x)
-(25178, 4409, 1), -- MP Increase (1x)
-(25178, 4410, 11), -- Average P. Atk.
-(25178, 4411, 11), -- Average M. Atk.
-(25178, 4412, 11), -- Average P. Def.
-(25178, 4413, 11), -- Average M. Def.
-(25178, 4414, 2), -- Standard Type
-(25178, 4415, 3), -- One-handed Sword
-(25178, 4416, 9), -- Demons
+(25178, 4408, 1), -- HP Modifiers
+(25178, 4409, 1), -- MP Modifiers
+(25178, 4410, 11), -- P. Atk. Modifiers
+(25178, 4411, 11), -- M. Atk. Modifiers
+(25178, 4412, 11), -- P. Def. Modifiers
+(25178, 4413, 11), -- M. Def. Modifiers
+(25178, 4414, 2), -- Armor Type
+(25178, 4415, 3), -- Weapon Type
+(25178, 4416, 9), -- Races
 -- Guardian of the Statue of Giant Karum
 (25179, 4045, 1), -- Resist Full Magic Attack
 (25179, 4197, 6), -- Hold
-(25179, 4408, 1), -- HP Increase (1x)
-(25179, 4409, 1), -- MP Increase (1x)
-(25179, 4410, 11), -- Average P. Atk.
-(25179, 4411, 11), -- Average M. Atk.
-(25179, 4412, 11), -- Average P. Def.
-(25179, 4413, 11), -- Average M. Def.
-(25179, 4414, 2), -- Standard Type
-(25179, 4415, 9), -- Bows
-(25179, 4416, 11), -- Giants
+(25179, 4408, 1), -- HP Modifiers
+(25179, 4409, 1), -- MP Modifiers
+(25179, 4410, 11), -- P. Atk. Modifiers
+(25179, 4411, 11), -- M. Atk. Modifiers
+(25179, 4412, 11), -- P. Def. Modifiers
+(25179, 4413, 11), -- M. Def. Modifiers
+(25179, 4414, 2), -- Armor Type
+(25179, 4415, 9), -- Weapon Type
+(25179, 4416, 11), -- Races
 (25179, 4494, 1), -- Raid Boss
 (25179, 4858, 1), -- Raid Boss - Level 60
 -- Karum's Guard
 (25180, 4045, 1), -- Resist Full Magic Attack
-(25180, 4193, 5), -- Life Drain
+(25180, 4193, 5), -- BOSS Life Drain
 (25180, 4198, 5), -- Poison
-(25180, 4408, 1), -- HP Increase (1x)
-(25180, 4409, 1), -- MP Increase (1x)
-(25180, 4410, 11), -- Average P. Atk.
-(25180, 4411, 11), -- Average M. Atk.
-(25180, 4412, 11), -- Average P. Def.
-(25180, 4413, 11), -- Average M. Def.
-(25180, 4414, 2), -- Standard Type
-(25180, 4415, 3), -- One-handed Sword
-(25180, 4416, 11), -- Giants
+(25180, 4408, 1), -- HP Modifiers
+(25180, 4409, 1), -- MP Modifiers
+(25180, 4410, 11), -- P. Atk. Modifiers
+(25180, 4411, 11), -- M. Atk. Modifiers
+(25180, 4412, 11), -- P. Def. Modifiers
+(25180, 4413, 11), -- M. Def. Modifiers
+(25180, 4414, 2), -- Armor Type
+(25180, 4415, 3), -- Weapon Type
+(25180, 4416, 11), -- Races
 -- Karum's Warrior
 (25181, 4045, 1), -- Resist Full Magic Attack
-(25181, 4408, 1), -- HP Increase (1x)
-(25181, 4409, 1), -- MP Increase (1x)
-(25181, 4410, 11), -- Average P. Atk.
-(25181, 4411, 11), -- Average M. Atk.
-(25181, 4412, 11), -- Average P. Def.
-(25181, 4413, 11), -- Average M. Def.
-(25181, 4414, 2), -- Standard Type
-(25181, 4415, 3), -- One-handed Sword
-(25181, 4416, 2), -- Magic Creatures
-(25181, 4721, 5), -- Power Strike
+(25181, 4408, 1), -- HP Modifiers
+(25181, 4409, 1), -- MP Modifiers
+(25181, 4410, 11), -- P. Atk. Modifiers
+(25181, 4411, 11), -- M. Atk. Modifiers
+(25181, 4412, 11), -- P. Def. Modifiers
+(25181, 4413, 11), -- M. Def. Modifiers
+(25181, 4414, 2), -- Armor Type
+(25181, 4415, 3), -- Weapon Type
+(25181, 4416, 2), -- Races
+(25181, 4721, 5), -- BOSS Strike
 -- Demon Kuri
 (25182, 4045, 1), -- Resist Full Magic Attack
-(25182, 4178, 5), -- Flame Strike
-(25182, 4408, 1), -- HP Increase (1x)
-(25182, 4409, 1), -- MP Increase (1x)
-(25182, 4410, 11), -- Average P. Atk.
-(25182, 4411, 11), -- Average M. Atk.
-(25182, 4412, 11), -- Average P. Def.
-(25182, 4413, 11), -- Average M. Def.
-(25182, 4414, 2), -- Standard Type
-(25182, 4415, 3), -- One-handed Sword
-(25182, 4416, 9), -- Demons
+(25182, 4178, 5), -- BOSS Flame Strike
+(25182, 4408, 1), -- HP Modifiers
+(25182, 4409, 1), -- MP Modifiers
+(25182, 4410, 11), -- P. Atk. Modifiers
+(25182, 4411, 11), -- M. Atk. Modifiers
+(25182, 4412, 11), -- P. Def. Modifiers
+(25182, 4413, 11), -- M. Def. Modifiers
+(25182, 4414, 2), -- Armor Type
+(25182, 4415, 3), -- Weapon Type
+(25182, 4416, 9), -- Races
 (25182, 4494, 1), -- Raid Boss
 (25182, 4859, 1), -- Raid Boss - Level 59
 -- Kuri's Wife
 (25183, 4045, 1), -- Resist Full Magic Attack
-(25183, 4213, 5), -- Haste
-(25183, 4408, 1), -- HP Increase (1x)
-(25183, 4409, 1), -- MP Increase (1x)
-(25183, 4410, 11), -- Average P. Atk.
-(25183, 4411, 11), -- Average M. Atk.
-(25183, 4412, 11), -- Average P. Def.
-(25183, 4413, 11), -- Average M. Def.
-(25183, 4414, 2), -- Standard Type
-(25183, 4415, 3), -- One-handed Sword
-(25183, 4416, 9), -- Demons
-(25183, 4786, 5), -- Chant of Life
+(25183, 4213, 5), -- BOSS Haste
+(25183, 4408, 1), -- HP Modifiers
+(25183, 4409, 1), -- MP Modifiers
+(25183, 4410, 11), -- P. Atk. Modifiers
+(25183, 4411, 11), -- M. Atk. Modifiers
+(25183, 4412, 11), -- P. Def. Modifiers
+(25183, 4413, 11), -- M. Def. Modifiers
+(25183, 4414, 2), -- Armor Type
+(25183, 4415, 3), -- Weapon Type
+(25183, 4416, 9), -- Races
+(25183, 4786, 5), -- BOSS Chant of Life
 -- Devil Blader of Chaos
 (25184, 4045, 1), -- Resist Full Magic Attack
-(25184, 4408, 1), -- HP Increase (1x)
-(25184, 4409, 1), -- MP Increase (1x)
-(25184, 4410, 11), -- Average P. Atk.
-(25184, 4411, 11), -- Average M. Atk.
-(25184, 4412, 11), -- Average P. Def.
-(25184, 4413, 11), -- Average M. Def.
-(25184, 4414, 2), -- Standard Type
-(25184, 4415, 3), -- One-handed Sword
-(25184, 4416, 1), -- Undead
+(25184, 4408, 1), -- HP Modifiers
+(25184, 4409, 1), -- MP Modifiers
+(25184, 4410, 11), -- P. Atk. Modifiers
+(25184, 4411, 11), -- M. Atk. Modifiers
+(25184, 4412, 11), -- P. Def. Modifiers
+(25184, 4413, 11), -- M. Def. Modifiers
+(25184, 4414, 2), -- Armor Type
+(25184, 4415, 3), -- Weapon Type
+(25184, 4416, 1), -- Races
 -- Tasaba Patriarch Hellena
 (25185, 4045, 1), -- Resist Full Magic Attack
-(25185, 4408, 1), -- HP Increase (1x)
-(25185, 4409, 1), -- MP Increase (1x)
-(25185, 4410, 11), -- Average P. Atk.
-(25185, 4411, 11), -- Average M. Atk.
-(25185, 4412, 11), -- Average P. Def.
-(25185, 4413, 11), -- Average M. Def.
-(25185, 4414, 3), -- Light Armor Type
-(25185, 4415, 7), -- Daggers
-(25185, 4416, 6), -- Humanoids
+(25185, 4408, 1), -- HP Modifiers
+(25185, 4409, 1), -- MP Modifiers
+(25185, 4410, 11), -- P. Atk. Modifiers
+(25185, 4411, 11), -- M. Atk. Modifiers
+(25185, 4412, 11), -- P. Def. Modifiers
+(25185, 4413, 11), -- M. Def. Modifiers
+(25185, 4414, 3), -- Armor Type
+(25185, 4415, 7), -- Weapon Type
+(25185, 4416, 6), -- Races
 (25185, 4494, 1), -- Raid Boss
-(25185, 4751, 3), -- Mortal Blow
+(25185, 4751, 3), -- BOSS Mortal Blow
 (25185, 4860, 1), -- Raid Boss - Level 35
 -- Hellena's Marksman
 (25186, 4045, 1), -- Resist Full Magic Attack
-(25186, 4408, 1), -- HP Increase (1x)
-(25186, 4409, 1), -- MP Increase (1x)
-(25186, 4410, 11), -- Average P. Atk.
-(25186, 4411, 11), -- Average M. Atk.
-(25186, 4412, 11), -- Average P. Def.
-(25186, 4413, 11), -- Average M. Def.
-(25186, 4414, 3), -- Light Armor Type
-(25186, 4415, 9), -- Bows
-(25186, 4416, 6), -- Humanoids
+(25186, 4408, 1), -- HP Modifiers
+(25186, 4409, 1), -- MP Modifiers
+(25186, 4410, 11), -- P. Atk. Modifiers
+(25186, 4411, 11), -- M. Atk. Modifiers
+(25186, 4412, 11), -- P. Def. Modifiers
+(25186, 4413, 11), -- M. Def. Modifiers
+(25186, 4414, 3), -- Armor Type
+(25186, 4415, 9), -- Weapon Type
+(25186, 4416, 6), -- Races
 (25186, 4761, 3), -- Stun
 -- Hellena's Soldier
 (25187, 4045, 1), -- Resist Full Magic Attack
-(25187, 4408, 1), -- HP Increase (1x)
-(25187, 4409, 1), -- MP Increase (1x)
-(25187, 4410, 11), -- Average P. Atk.
-(25187, 4411, 11), -- Average M. Atk.
-(25187, 4412, 11), -- Average P. Def.
-(25187, 4413, 11), -- Average M. Def.
-(25187, 4414, 2), -- Standard Type
-(25187, 4415, 3), -- One-handed Sword
-(25187, 4416, 6), -- Humanoids
+(25187, 4408, 1), -- HP Modifiers
+(25187, 4409, 1), -- MP Modifiers
+(25187, 4410, 11), -- P. Atk. Modifiers
+(25187, 4411, 11), -- M. Atk. Modifiers
+(25187, 4412, 11), -- P. Def. Modifiers
+(25187, 4413, 11), -- M. Def. Modifiers
+(25187, 4414, 2), -- Armor Type
+(25187, 4415, 3), -- Weapon Type
+(25187, 4416, 6), -- Races
 -- Apepi
 (25188, 4045, 1), -- Resist Full Magic Attack
 (25188, 4172, 3), -- Stun
-(25188, 4175, 3), -- Haste
-(25188, 4177, 3), -- Cancel
-(25188, 4408, 1), -- HP Increase (1x)
-(25188, 4409, 1), -- MP Increase (1x)
-(25188, 4410, 11), -- Average P. Atk.
-(25188, 4411, 11), -- Average M. Atk.
-(25188, 4412, 11), -- Average P. Def.
-(25188, 4413, 11), -- Average M. Def.
-(25188, 4414, 2), -- Standard Type
-(25188, 4415, 3), -- One-handed Sword
-(25188, 4416, 3), -- Beasts
+(25188, 4175, 3), -- BOSS Haste
+(25188, 4177, 3), -- BOSS Cancel Magic
+(25188, 4408, 1), -- HP Modifiers
+(25188, 4409, 1), -- MP Modifiers
+(25188, 4410, 11), -- P. Atk. Modifiers
+(25188, 4411, 11), -- M. Atk. Modifiers
+(25188, 4412, 11), -- P. Def. Modifiers
+(25188, 4413, 11), -- M. Def. Modifiers
+(25188, 4414, 2), -- Armor Type
+(25188, 4415, 3), -- Weapon Type
+(25188, 4416, 3), -- Races
 (25188, 4494, 1), -- Raid Boss
-(25188, 4732, 3), -- Mortal Blow
+(25188, 4732, 3), -- BOSS Mortal Blow
 (25188, 4861, 1), -- Raid Boss - Level 30
 -- Cronos' Servitor Mumu
 (25189, 4045, 1), -- Resist Full Magic Attack
 (25189, 4197, 3), -- Hold
-(25189, 4408, 1), -- HP Increase (1x)
-(25189, 4409, 1), -- MP Increase (1x)
-(25189, 4410, 11), -- Average P. Atk.
-(25189, 4411, 11), -- Average M. Atk.
-(25189, 4412, 11), -- Average P. Def.
-(25189, 4413, 11), -- Average M. Def.
-(25189, 4414, 2), -- Standard Type
-(25189, 4415, 3), -- One-handed Sword
-(25189, 4416, 7), -- Spirits
+(25189, 4408, 1), -- HP Modifiers
+(25189, 4409, 1), -- MP Modifiers
+(25189, 4410, 11), -- P. Atk. Modifiers
+(25189, 4411, 11), -- M. Atk. Modifiers
+(25189, 4412, 11), -- P. Def. Modifiers
+(25189, 4413, 11), -- M. Def. Modifiers
+(25189, 4414, 2), -- Armor Type
+(25189, 4415, 3), -- Weapon Type
+(25189, 4416, 7), -- Races
 (25189, 4494, 1), -- Raid Boss
 (25189, 4862, 1), -- Raid Boss - Level 34
 -- Mumu's Wizard
 (25190, 4045, 1), -- Resist Full Magic Attack
-(25190, 4194, 3), -- Aura Burn
+(25190, 4194, 3), -- BOSS Aura Burn
 (25190, 4202, 3), -- Hold
-(25190, 4408, 1), -- HP Increase (1x)
-(25190, 4409, 1), -- MP Increase (1x)
-(25190, 4410, 11), -- Average P. Atk.
-(25190, 4411, 11), -- Average M. Atk.
-(25190, 4412, 11), -- Average P. Def.
-(25190, 4413, 11), -- Average M. Def.
-(25190, 4414, 2), -- Standard Type
-(25190, 4415, 3), -- One-handed Sword
-(25190, 4416, 7), -- Spirits
+(25190, 4408, 1), -- HP Modifiers
+(25190, 4409, 1), -- MP Modifiers
+(25190, 4410, 11), -- P. Atk. Modifiers
+(25190, 4411, 11), -- M. Atk. Modifiers
+(25190, 4412, 11), -- P. Def. Modifiers
+(25190, 4413, 11), -- M. Def. Modifiers
+(25190, 4414, 2), -- Armor Type
+(25190, 4415, 3), -- Weapon Type
+(25190, 4416, 7), -- Races
 -- Mumu's Warrior
 (25191, 4045, 1), -- Resist Full Magic Attack
-(25191, 4408, 1), -- HP Increase (1x)
-(25191, 4409, 1), -- MP Increase (1x)
-(25191, 4410, 11), -- Average P. Atk.
-(25191, 4411, 11), -- Average M. Atk.
-(25191, 4412, 11), -- Average P. Def.
-(25191, 4413, 11), -- Average M. Def.
-(25191, 4414, 2), -- Standard Type
-(25191, 4415, 3), -- One-handed Sword
-(25191, 4416, 7), -- Spirits
-(25191, 4722, 3), -- Power Strike
+(25191, 4408, 1), -- HP Modifiers
+(25191, 4409, 1), -- MP Modifiers
+(25191, 4410, 11), -- P. Atk. Modifiers
+(25191, 4411, 11), -- M. Atk. Modifiers
+(25191, 4412, 11), -- P. Def. Modifiers
+(25191, 4413, 11), -- M. Def. Modifiers
+(25191, 4414, 2), -- Armor Type
+(25191, 4415, 3), -- Weapon Type
+(25191, 4416, 7), -- Races
+(25191, 4722, 3), -- BOSS Strike
 -- Earth Protector Panathen
 (25192, 4045, 1), -- Resist Full Magic Attack
 (25192, 4183, 4), -- Decrease P. Atk.
 (25192, 4189, 4), -- Paralysis
-(25192, 4191, 4), -- Wind Strike
-(25192, 4408, 1), -- HP Increase (1x)
-(25192, 4409, 1), -- MP Increase (1x)
-(25192, 4410, 11), -- Average P. Atk.
-(25192, 4411, 11), -- Average M. Atk.
-(25192, 4412, 11), -- Average P. Def.
-(25192, 4413, 11), -- Average M. Def.
-(25192, 4414, 2), -- Standard Type
-(25192, 4415, 5), -- Blunt Weapons
-(25192, 4416, 6), -- Humanoids
+(25192, 4191, 4), -- BOSS Wind Strike
+(25192, 4408, 1), -- HP Modifiers
+(25192, 4409, 1), -- MP Modifiers
+(25192, 4410, 11), -- P. Atk. Modifiers
+(25192, 4411, 11), -- M. Atk. Modifiers
+(25192, 4412, 11), -- P. Def. Modifiers
+(25192, 4413, 11), -- M. Def. Modifiers
+(25192, 4414, 2), -- Armor Type
+(25192, 4415, 5), -- Weapon Type
+(25192, 4416, 6), -- Races
 (25192, 4494, 1), -- Raid Boss
 (25192, 4863, 1), -- Raid Boss - Level 43
 -- Panathen's Knight
 (25193, 4045, 1), -- Resist Full Magic Attack
-(25193, 4408, 1), -- HP Increase (1x)
-(25193, 4409, 1), -- MP Increase (1x)
-(25193, 4410, 11), -- Average P. Atk.
-(25193, 4411, 11), -- Average M. Atk.
-(25193, 4412, 11), -- Average P. Def.
-(25193, 4413, 11), -- Average M. Def.
-(25193, 4414, 2), -- Standard Type
-(25193, 4415, 3), -- One-handed Sword
-(25193, 4416, 6), -- Humanoids
-(25193, 4721, 4), -- Power Strike
+(25193, 4408, 1), -- HP Modifiers
+(25193, 4409, 1), -- MP Modifiers
+(25193, 4410, 11), -- P. Atk. Modifiers
+(25193, 4411, 11), -- M. Atk. Modifiers
+(25193, 4412, 11), -- P. Def. Modifiers
+(25193, 4413, 11), -- M. Def. Modifiers
+(25193, 4414, 2), -- Armor Type
+(25193, 4415, 3), -- Weapon Type
+(25193, 4416, 6), -- Races
+(25193, 4721, 4), -- BOSS Strike
 -- Panathen's Protectors
 (25194, 4045, 1), -- Resist Full Magic Attack
-(25194, 4408, 1), -- HP Increase (1x)
-(25194, 4409, 1), -- MP Increase (1x)
-(25194, 4410, 11), -- Average P. Atk.
-(25194, 4411, 11), -- Average M. Atk.
-(25194, 4412, 11), -- Average P. Def.
-(25194, 4413, 11), -- Average M. Def.
-(25194, 4414, 3), -- Light Armor Type
-(25194, 4415, 9), -- Bows
-(25194, 4416, 6), -- Humanoids
+(25194, 4408, 1), -- HP Modifiers
+(25194, 4409, 1), -- MP Modifiers
+(25194, 4410, 11), -- P. Atk. Modifiers
+(25194, 4411, 11), -- M. Atk. Modifiers
+(25194, 4412, 11), -- P. Def. Modifiers
+(25194, 4413, 11), -- M. Def. Modifiers
+(25194, 4414, 3), -- Armor Type
+(25194, 4415, 9), -- Weapon Type
+(25194, 4416, 6), -- Races
 -- Fafurion's Herald Lokness
 (25198, 4045, 1), -- Resist Full Magic Attack
 (25198, 4169, 7), -- Stun
 (25198, 4172, 7), -- Stun
-(25198, 4176, 7), -- Reflect Damage
-(25198, 4177, 7), -- Cancel
-(25198, 4408, 1), -- HP Increase (1x)
-(25198, 4409, 1), -- MP Increase (1x)
-(25198, 4410, 11), -- Average P. Atk.
-(25198, 4411, 11), -- Average M. Atk.
-(25198, 4412, 11), -- Average P. Def.
-(25198, 4413, 11), -- Average M. Def.
-(25198, 4414, 2), -- Standard Type
-(25198, 4415, 3), -- One-handed Sword
-(25198, 4416, 10), -- Dragons
+(25198, 4176, 7), -- BOSS Reflect Damage
+(25198, 4177, 7), -- BOSS Cancel Magic
+(25198, 4408, 1), -- HP Modifiers
+(25198, 4409, 1), -- MP Modifiers
+(25198, 4410, 11), -- P. Atk. Modifiers
+(25198, 4411, 11), -- M. Atk. Modifiers
+(25198, 4412, 11), -- P. Def. Modifiers
+(25198, 4413, 11), -- M. Def. Modifiers
+(25198, 4414, 2), -- Armor Type
+(25198, 4415, 3), -- Weapon Type
+(25198, 4416, 10), -- Races
 (25198, 4494, 1), -- Raid Boss
 (25198, 4985, 1), -- Raid Boss - Level 70
 -- Water Dragon Priest Sheshark
 (25199, 4045, 1), -- Resist Full Magic Attack
 (25199, 4197, 7), -- Hold
-(25199, 4408, 1), -- HP Increase (1x)
-(25199, 4409, 1), -- MP Increase (1x)
-(25199, 4410, 11), -- Average P. Atk.
-(25199, 4411, 11), -- Average M. Atk.
-(25199, 4412, 11), -- Average P. Def.
-(25199, 4413, 11), -- Average M. Def.
-(25199, 4414, 2), -- Standard Type
-(25199, 4415, 3), -- One-handed Sword
-(25199, 4416, 6), -- Humanoids
+(25199, 4408, 1), -- HP Modifiers
+(25199, 4409, 1), -- MP Modifiers
+(25199, 4410, 11), -- P. Atk. Modifiers
+(25199, 4411, 11), -- M. Atk. Modifiers
+(25199, 4412, 11), -- P. Def. Modifiers
+(25199, 4413, 11), -- M. Def. Modifiers
+(25199, 4414, 2), -- Armor Type
+(25199, 4415, 3), -- Weapon Type
+(25199, 4416, 6), -- Races
 (25199, 4494, 1), -- Raid Boss
 (25199, 4986, 1), -- Raid Boss - Level 72
 -- Family of Sheshark
 (25200, 4045, 1), -- Resist Full Magic Attack
-(25200, 4195, 7), -- Twister
+(25200, 4195, 7), -- BOSS Twister
 (25200, 4200, 7), -- Decrease Atk. Spd.
-(25200, 4408, 1), -- HP Increase (1x)
-(25200, 4409, 1), -- MP Increase (1x)
-(25200, 4410, 11), -- Average P. Atk.
-(25200, 4411, 11), -- Average M. Atk.
-(25200, 4412, 11), -- Average P. Def.
-(25200, 4413, 11), -- Average M. Def.
-(25200, 4414, 2), -- Standard Type
-(25200, 4415, 3), -- One-handed Sword
-(25200, 4416, 3), -- Beasts
+(25200, 4408, 1), -- HP Modifiers
+(25200, 4409, 1), -- MP Modifiers
+(25200, 4410, 11), -- P. Atk. Modifiers
+(25200, 4411, 11), -- M. Atk. Modifiers
+(25200, 4412, 11), -- P. Def. Modifiers
+(25200, 4413, 11), -- M. Def. Modifiers
+(25200, 4414, 2), -- Armor Type
+(25200, 4415, 3), -- Weapon Type
+(25200, 4416, 3), -- Races
 -- Guard of Sheshark
 (25201, 4045, 1), -- Resist Full Magic Attack
-(25201, 4408, 1), -- HP Increase (1x)
-(25201, 4409, 1), -- MP Increase (1x)
-(25201, 4410, 11), -- Average P. Atk.
-(25201, 4411, 11), -- Average M. Atk.
-(25201, 4412, 11), -- Average P. Def.
-(25201, 4413, 11), -- Average M. Def.
-(25201, 4414, 2), -- Standard Type
-(25201, 4415, 3), -- One-handed Sword
-(25201, 4416, 6), -- Humanoids
+(25201, 4408, 1), -- HP Modifiers
+(25201, 4409, 1), -- MP Modifiers
+(25201, 4410, 11), -- P. Atk. Modifiers
+(25201, 4411, 11), -- M. Atk. Modifiers
+(25201, 4412, 11), -- P. Def. Modifiers
+(25201, 4413, 11), -- M. Def. Modifiers
+(25201, 4414, 2), -- Armor Type
+(25201, 4415, 3), -- Weapon Type
+(25201, 4416, 6), -- Races
 (25201, 4724, 7), -- Stun
 -- Krokian Padisha Sobekk
 (25202, 4045, 1), -- Resist Full Magic Attack
-(25202, 4178, 7), -- Flame Strike
-(25202, 4408, 1), -- HP Increase (1x)
-(25202, 4409, 1), -- MP Increase (1x)
-(25202, 4410, 11), -- Average P. Atk.
-(25202, 4411, 11), -- Average M. Atk.
-(25202, 4412, 11), -- Average P. Def.
-(25202, 4413, 11), -- Average M. Def.
-(25202, 4414, 2), -- Standard Type
-(25202, 4415, 3), -- One-handed Sword
-(25202, 4416, 6), -- Humanoids
+(25202, 4178, 7), -- BOSS Flame Strike
+(25202, 4408, 1), -- HP Modifiers
+(25202, 4409, 1), -- MP Modifiers
+(25202, 4410, 11), -- P. Atk. Modifiers
+(25202, 4411, 11), -- M. Atk. Modifiers
+(25202, 4412, 11), -- P. Def. Modifiers
+(25202, 4413, 11), -- M. Def. Modifiers
+(25202, 4414, 2), -- Armor Type
+(25202, 4415, 3), -- Weapon Type
+(25202, 4416, 6), -- Races
 (25202, 4494, 1), -- Raid Boss
 (25202, 4987, 1), -- Raid Boss - Level 74
 -- Parhit Padisha Sobekk
 (25203, 4045, 1), -- Resist Full Magic Attack
-(25203, 4210, 6), -- Chant of Life
-(25203, 4213, 6), -- Haste
-(25203, 4408, 1), -- HP Increase (1x)
-(25203, 4409, 1), -- MP Increase (1x)
-(25203, 4410, 11), -- Average P. Atk.
-(25203, 4411, 11), -- Average M. Atk.
-(25203, 4412, 11), -- Average P. Def.
-(25203, 4413, 11), -- Average M. Def.
-(25203, 4414, 2), -- Standard Type
-(25203, 4415, 3), -- One-handed Sword
-(25203, 4416, 6), -- Humanoids
+(25203, 4210, 6), -- Life Chant
+(25203, 4213, 6), -- BOSS Haste
+(25203, 4408, 1), -- HP Modifiers
+(25203, 4409, 1), -- MP Modifiers
+(25203, 4410, 11), -- P. Atk. Modifiers
+(25203, 4411, 11), -- M. Atk. Modifiers
+(25203, 4412, 11), -- P. Def. Modifiers
+(25203, 4413, 11), -- M. Def. Modifiers
+(25203, 4414, 2), -- Armor Type
+(25203, 4415, 3), -- Weapon Type
+(25203, 4416, 6), -- Races
 -- Krokian Padisha Sobekk
 (25204, 4045, 1), -- Resist Full Magic Attack
-(25204, 4408, 1), -- HP Increase (1x)
-(25204, 4409, 1), -- MP Increase (1x)
-(25204, 4410, 11), -- Average P. Atk.
-(25204, 4411, 11), -- Average M. Atk.
-(25204, 4412, 11), -- Average P. Def.
-(25204, 4413, 11), -- Average M. Def.
-(25204, 4414, 3), -- Light Armor Type
-(25204, 4415, 3), -- One-handed Sword
-(25204, 4416, 6), -- Humanoids
+(25204, 4408, 1), -- HP Modifiers
+(25204, 4409, 1), -- MP Modifiers
+(25204, 4410, 11), -- P. Atk. Modifiers
+(25204, 4411, 11), -- M. Atk. Modifiers
+(25204, 4412, 11), -- P. Def. Modifiers
+(25204, 4413, 11), -- M. Def. Modifiers
+(25204, 4414, 3), -- Armor Type
+(25204, 4415, 3), -- Weapon Type
+(25204, 4416, 6), -- Races
 -- Ocean Flame Ashakiel
 (25205, 4045, 1), -- Resist Full Magic Attack
 (25205, 4183, 8), -- Decrease P. Atk.
 (25205, 4189, 8), -- Paralysis
-(25205, 4193, 8), -- Life Drain
-(25205, 4408, 1), -- HP Increase (1x)
-(25205, 4409, 1), -- MP Increase (1x)
-(25205, 4410, 11), -- Average P. Atk.
-(25205, 4411, 11), -- Average M. Atk.
-(25205, 4412, 11), -- Average P. Def.
-(25205, 4413, 11), -- Average M. Def.
-(25205, 4414, 2), -- Standard Type
-(25205, 4415, 3), -- One-handed Sword
-(25205, 4416, 8), -- Angels
+(25205, 4193, 8), -- BOSS Life Drain
+(25205, 4408, 1), -- HP Modifiers
+(25205, 4409, 1), -- MP Modifiers
+(25205, 4410, 11), -- P. Atk. Modifiers
+(25205, 4411, 11), -- M. Atk. Modifiers
+(25205, 4412, 11), -- P. Def. Modifiers
+(25205, 4413, 11), -- M. Def. Modifiers
+(25205, 4414, 2), -- Armor Type
+(25205, 4415, 3), -- Weapon Type
+(25205, 4416, 8), -- Races
 (25205, 4494, 1), -- Raid Boss
 (25205, 4988, 1), -- Raid Boss - Level 76
 -- Ashakiel's Blade
 (25206, 4045, 1), -- Resist Full Magic Attack
-(25206, 4408, 1), -- HP Increase (1x)
-(25206, 4409, 1), -- MP Increase (1x)
-(25206, 4410, 11), -- Average P. Atk.
-(25206, 4411, 11), -- Average M. Atk.
-(25206, 4412, 11), -- Average P. Def.
-(25206, 4413, 11), -- Average M. Def.
-(25206, 4414, 2), -- Standard Type
-(25206, 4415, 4), -- One-handed Sword
-(25206, 4416, 8), -- Angels
-(25206, 4729, 8), -- Mortal Blow
+(25206, 4408, 1), -- HP Modifiers
+(25206, 4409, 1), -- MP Modifiers
+(25206, 4410, 11), -- P. Atk. Modifiers
+(25206, 4411, 11), -- M. Atk. Modifiers
+(25206, 4412, 11), -- P. Def. Modifiers
+(25206, 4413, 11), -- M. Def. Modifiers
+(25206, 4414, 2), -- Armor Type
+(25206, 4415, 4), -- Weapon Type
+(25206, 4416, 8), -- Races
+(25206, 4729, 8), -- BOSS Mortal Blow
 -- Ashakiel's Rod
 (25207, 4045, 1), -- Resist Full Magic Attack
-(25207, 4408, 1), -- HP Increase (1x)
-(25207, 4409, 1), -- MP Increase (1x)
-(25207, 4410, 11), -- Average P. Atk.
-(25207, 4411, 11), -- Average M. Atk.
-(25207, 4412, 11), -- Average P. Def.
-(25207, 4413, 11), -- Average M. Def.
-(25207, 4414, 3), -- Light Armor Type
-(25207, 4415, 3), -- One-handed Sword
-(25207, 4416, 8), -- Angels
+(25207, 4408, 1), -- HP Modifiers
+(25207, 4409, 1), -- MP Modifiers
+(25207, 4410, 11), -- P. Atk. Modifiers
+(25207, 4411, 11), -- M. Atk. Modifiers
+(25207, 4412, 11), -- P. Def. Modifiers
+(25207, 4413, 11), -- M. Def. Modifiers
+(25207, 4414, 3), -- Armor Type
+(25207, 4415, 3), -- Weapon Type
+(25207, 4416, 8), -- Races
 -- Water Couatl Ateka
 (25208, 4045, 1), -- Resist Full Magic Attack
 (25208, 4197, 4), -- Hold
-(25208, 4408, 1), -- HP Increase (1x)
-(25208, 4409, 1), -- MP Increase (1x)
-(25208, 4410, 11), -- Average P. Atk.
-(25208, 4411, 11), -- Average M. Atk.
-(25208, 4412, 11), -- Average P. Def.
-(25208, 4413, 11), -- Average M. Def.
-(25208, 4414, 2), -- Standard Type
-(25208, 4415, 3), -- One-handed Sword
-(25208, 4416, 3), -- Beasts
+(25208, 4408, 1), -- HP Modifiers
+(25208, 4409, 1), -- MP Modifiers
+(25208, 4410, 11), -- P. Atk. Modifiers
+(25208, 4411, 11), -- M. Atk. Modifiers
+(25208, 4412, 11), -- P. Def. Modifiers
+(25208, 4413, 11), -- M. Def. Modifiers
+(25208, 4414, 2), -- Armor Type
+(25208, 4415, 3), -- Weapon Type
+(25208, 4416, 3), -- Races
 (25208, 4494, 1), -- Raid Boss
 (25208, 4864, 1), -- Raid Boss - Level 40
 -- Ateka's Shaman
 (25209, 4045, 1), -- Resist Full Magic Attack
-(25209, 4193, 3), -- Life Drain
+(25209, 4193, 3), -- BOSS Life Drain
 (25209, 4204, 3), -- Bleed
-(25209, 4408, 1), -- HP Increase (1x)
-(25209, 4409, 1), -- MP Increase (1x)
-(25209, 4410, 11), -- Average P. Atk.
-(25209, 4411, 11), -- Average M. Atk.
-(25209, 4412, 11), -- Average P. Def.
-(25209, 4413, 11), -- Average M. Def.
-(25209, 4414, 2), -- Standard Type
-(25209, 4415, 3), -- One-handed Sword
-(25209, 4416, 3), -- Beasts
+(25209, 4408, 1), -- HP Modifiers
+(25209, 4409, 1), -- MP Modifiers
+(25209, 4410, 11), -- P. Atk. Modifiers
+(25209, 4411, 11), -- M. Atk. Modifiers
+(25209, 4412, 11), -- P. Def. Modifiers
+(25209, 4413, 11), -- M. Def. Modifiers
+(25209, 4414, 2), -- Armor Type
+(25209, 4415, 3), -- Weapon Type
+(25209, 4416, 3), -- Races
 -- Ateka's Grunt
 (25210, 4045, 1), -- Resist Full Magic Attack
-(25210, 4408, 1), -- HP Increase (1x)
-(25210, 4409, 1), -- MP Increase (1x)
-(25210, 4410, 11), -- Average P. Atk.
-(25210, 4411, 11), -- Average M. Atk.
-(25210, 4412, 11), -- Average P. Def.
-(25210, 4413, 11), -- Average M. Def.
-(25210, 4414, 2), -- Standard Type
-(25210, 4415, 3), -- One-handed Sword
-(25210, 4416, 3), -- Beasts
-(25210, 4721, 3), -- Power Strike
+(25210, 4408, 1), -- HP Modifiers
+(25210, 4409, 1), -- MP Modifiers
+(25210, 4410, 11), -- P. Atk. Modifiers
+(25210, 4411, 11), -- M. Atk. Modifiers
+(25210, 4412, 11), -- P. Def. Modifiers
+(25210, 4413, 11), -- M. Def. Modifiers
+(25210, 4414, 2), -- Armor Type
+(25210, 4415, 3), -- Weapon Type
+(25210, 4416, 3), -- Races
+(25210, 4721, 3), -- BOSS Strike
 -- Sebek
 (25211, 4045, 1), -- Resist Full Magic Attack
-(25211, 4408, 1), -- HP Increase (1x)
-(25211, 4409, 1), -- MP Increase (1x)
-(25211, 4410, 11), -- Average P. Atk.
-(25211, 4411, 11), -- Average M. Atk.
-(25211, 4412, 11), -- Average P. Def.
-(25211, 4413, 11), -- Average M. Def.
-(25211, 4414, 2), -- Standard Type
-(25211, 4415, 3), -- One-handed Sword
-(25211, 4416, 6), -- Humanoids
+(25211, 4408, 1), -- HP Modifiers
+(25211, 4409, 1), -- MP Modifiers
+(25211, 4410, 11), -- P. Atk. Modifiers
+(25211, 4411, 11), -- M. Atk. Modifiers
+(25211, 4412, 11), -- P. Def. Modifiers
+(25211, 4413, 11), -- M. Def. Modifiers
+(25211, 4414, 2), -- Armor Type
+(25211, 4415, 3), -- Weapon Type
+(25211, 4416, 6), -- Races
 (25211, 4494, 1), -- Raid Boss
-(25211, 4741, 3), -- Power Strike
+(25211, 4741, 3), -- BOSS Strike
 (25211, 4865, 1), -- Raid Boss - Level 36
 -- Sebek's Priest
 (25212, 4045, 1), -- Resist Full Magic Attack
-(25212, 4408, 1), -- HP Increase (1x)
-(25212, 4409, 1), -- MP Increase (1x)
-(25212, 4410, 11), -- Average P. Atk.
-(25212, 4411, 11), -- Average M. Atk.
-(25212, 4412, 11), -- Average P. Def.
-(25212, 4413, 11), -- Average M. Def.
-(25212, 4414, 3), -- Light Armor Type
-(25212, 4415, 9), -- Bows
-(25212, 4416, 6), -- Humanoids
-(25212, 4756, 5), -- Power Shot
+(25212, 4408, 1), -- HP Modifiers
+(25212, 4409, 1), -- MP Modifiers
+(25212, 4410, 11), -- P. Atk. Modifiers
+(25212, 4411, 11), -- M. Atk. Modifiers
+(25212, 4412, 11), -- P. Def. Modifiers
+(25212, 4413, 11), -- M. Def. Modifiers
+(25212, 4414, 3), -- Armor Type
+(25212, 4415, 9), -- Weapon Type
+(25212, 4416, 6), -- Races
+(25212, 4756, 5), -- BOSS Power Shot
 -- Sebek's Fanatic
 (25213, 4045, 1), -- Resist Full Magic Attack
-(25213, 4408, 1), -- HP Increase (1x)
-(25213, 4409, 1), -- MP Increase (1x)
-(25213, 4410, 11), -- Average P. Atk.
-(25213, 4411, 11), -- Average M. Atk.
-(25213, 4412, 11), -- Average P. Def.
-(25213, 4413, 11), -- Average M. Def.
-(25213, 4414, 2), -- Standard Type
-(25213, 4415, 9), -- Bows
-(25213, 4416, 6), -- Humanoids
+(25213, 4408, 1), -- HP Modifiers
+(25213, 4409, 1), -- MP Modifiers
+(25213, 4410, 11), -- P. Atk. Modifiers
+(25213, 4411, 11), -- M. Atk. Modifiers
+(25213, 4412, 11), -- P. Def. Modifiers
+(25213, 4413, 11), -- M. Def. Modifiers
+(25213, 4414, 2), -- Armor Type
+(25213, 4415, 9), -- Weapon Type
+(25213, 4416, 6), -- Races
 -- Fafurion's Page Sika
 (25214, 4045, 1), -- Resist Full Magic Attack
 (25214, 4197, 4), -- Hold
-(25214, 4408, 1), -- HP Increase (1x)
-(25214, 4409, 1), -- MP Increase (1x)
-(25214, 4410, 11), -- Average P. Atk.
-(25214, 4411, 11), -- Average M. Atk.
-(25214, 4412, 11), -- Average P. Def.
-(25214, 4413, 11), -- Average M. Def.
-(25214, 4414, 2), -- Standard Type
-(25214, 4415, 11), -- Spears
-(25214, 4416, 11), -- Giants
+(25214, 4408, 1), -- HP Modifiers
+(25214, 4409, 1), -- MP Modifiers
+(25214, 4410, 11), -- P. Atk. Modifiers
+(25214, 4411, 11), -- M. Atk. Modifiers
+(25214, 4412, 11), -- P. Def. Modifiers
+(25214, 4413, 11), -- M. Def. Modifiers
+(25214, 4414, 2), -- Armor Type
+(25214, 4415, 11), -- Weapon Type
+(25214, 4416, 11), -- Races
 (25214, 4494, 1), -- Raid Boss
 (25214, 4866, 1), -- Raid Boss - Level 40
 -- Sika's Wizard
 (25215, 4045, 1), -- Resist Full Magic Attack
-(25215, 4191, 3), -- Wind Strike
+(25215, 4191, 3), -- BOSS Wind Strike
 (25215, 4200, 3), -- Decrease Atk. Spd.
-(25215, 4408, 1), -- HP Increase (1x)
-(25215, 4409, 1), -- MP Increase (1x)
-(25215, 4410, 11), -- Average P. Atk.
-(25215, 4411, 11), -- Average M. Atk.
-(25215, 4412, 11), -- Average P. Def.
-(25215, 4413, 11), -- Average M. Def.
-(25215, 4414, 3), -- Light Armor Type
-(25215, 4415, 3), -- One-handed Sword
-(25215, 4416, 7), -- Spirits
+(25215, 4408, 1), -- HP Modifiers
+(25215, 4409, 1), -- MP Modifiers
+(25215, 4410, 11), -- P. Atk. Modifiers
+(25215, 4411, 11), -- M. Atk. Modifiers
+(25215, 4412, 11), -- P. Def. Modifiers
+(25215, 4413, 11), -- M. Def. Modifiers
+(25215, 4414, 3), -- Armor Type
+(25215, 4415, 3), -- Weapon Type
+(25215, 4416, 7), -- Races
 -- Sika's Fighter
 (25216, 4045, 1), -- Resist Full Magic Attack
-(25216, 4408, 1), -- HP Increase (1x)
-(25216, 4409, 1), -- MP Increase (1x)
-(25216, 4410, 11), -- Average P. Atk.
-(25216, 4411, 11), -- Average M. Atk.
-(25216, 4412, 11), -- Average P. Def.
-(25216, 4413, 11), -- Average M. Def.
-(25216, 4414, 3), -- Light Armor Type
-(25216, 4415, 3), -- One-handed Sword
-(25216, 4416, 7), -- Spirits
-(25216, 4732, 3), -- Mortal Blow
+(25216, 4408, 1), -- HP Modifiers
+(25216, 4409, 1), -- MP Modifiers
+(25216, 4410, 11), -- P. Atk. Modifiers
+(25216, 4411, 11), -- M. Atk. Modifiers
+(25216, 4412, 11), -- P. Def. Modifiers
+(25216, 4413, 11), -- M. Def. Modifiers
+(25216, 4414, 3), -- Armor Type
+(25216, 4415, 3), -- Weapon Type
+(25216, 4416, 7), -- Races
+(25216, 4732, 3), -- BOSS Mortal Blow
 -- Cursed Clara
 (25217, 4045, 1), -- Resist Full Magic Attack
-(25217, 4408, 1), -- HP Increase (1x)
-(25217, 4409, 1), -- MP Increase (1x)
-(25217, 4410, 11), -- Average P. Atk.
-(25217, 4411, 11), -- Average M. Atk.
-(25217, 4412, 11), -- Average P. Def.
-(25217, 4413, 11), -- Average M. Def.
-(25217, 4414, 3), -- Light Armor Type
-(25217, 4415, 7), -- Daggers
-(25217, 4416, 3), -- Beasts
+(25217, 4408, 1), -- HP Modifiers
+(25217, 4409, 1), -- MP Modifiers
+(25217, 4410, 11), -- P. Atk. Modifiers
+(25217, 4411, 11), -- M. Atk. Modifiers
+(25217, 4412, 11), -- P. Def. Modifiers
+(25217, 4413, 11), -- M. Def. Modifiers
+(25217, 4414, 3), -- Armor Type
+(25217, 4415, 7), -- Weapon Type
+(25217, 4416, 3), -- Races
 (25217, 4494, 1), -- Raid Boss
-(25217, 4752, 5), -- Mortal Blow
+(25217, 4752, 5), -- BOSS Mortal Blow
 (25217, 4867, 1), -- Raid Boss - Level 50
 -- Clara's Marksman
 (25218, 4045, 1), -- Resist Full Magic Attack
-(25218, 4408, 1), -- HP Increase (1x)
-(25218, 4409, 1), -- MP Increase (1x)
-(25218, 4410, 11), -- Average P. Atk.
-(25218, 4411, 11), -- Average M. Atk.
-(25218, 4412, 11), -- Average P. Def.
-(25218, 4413, 11), -- Average M. Def.
-(25218, 4414, 3), -- Light Armor Type
-(25218, 4415, 9), -- Bows
-(25218, 4416, 6), -- Humanoids
-(25218, 4777, 4), -- Spear Attack
+(25218, 4408, 1), -- HP Modifiers
+(25218, 4409, 1), -- MP Modifiers
+(25218, 4410, 11), -- P. Atk. Modifiers
+(25218, 4411, 11), -- M. Atk. Modifiers
+(25218, 4412, 11), -- P. Def. Modifiers
+(25218, 4413, 11), -- M. Def. Modifiers
+(25218, 4414, 3), -- Armor Type
+(25218, 4415, 9), -- Weapon Type
+(25218, 4416, 6), -- Races
+(25218, 4777, 4), -- BOSS Spear Attack
 -- Clara's Pawn
 (25219, 4045, 1), -- Resist Full Magic Attack
-(25219, 4408, 1), -- HP Increase (1x)
-(25219, 4409, 1), -- MP Increase (1x)
-(25219, 4410, 11), -- Average P. Atk.
-(25219, 4411, 11), -- Average M. Atk.
-(25219, 4412, 11), -- Average P. Def.
-(25219, 4413, 11), -- Average M. Def.
-(25219, 4414, 2), -- Standard Type
-(25219, 4415, 3), -- One-handed Sword
-(25219, 4416, 6), -- Humanoids
+(25219, 4408, 1), -- HP Modifiers
+(25219, 4409, 1), -- MP Modifiers
+(25219, 4410, 11), -- P. Atk. Modifiers
+(25219, 4411, 11), -- M. Atk. Modifiers
+(25219, 4412, 11), -- P. Def. Modifiers
+(25219, 4413, 11), -- M. Def. Modifiers
+(25219, 4414, 2), -- Armor Type
+(25219, 4415, 3), -- Weapon Type
+(25219, 4416, 6), -- Races
 -- Death Lord Hallate
 (25220, 4045, 1), -- Resist Full Magic Attack
 (25220, 4197, 7), -- Hold
-(25220, 4408, 1), -- HP Increase (1x)
-(25220, 4409, 1), -- MP Increase (1x)
-(25220, 4410, 11), -- Average P. Atk.
-(25220, 4411, 11), -- Average M. Atk.
-(25220, 4412, 11), -- Average P. Def.
-(25220, 4413, 11), -- Average M. Def.
-(25220, 4414, 2), -- Standard Type
-(25220, 4415, 3), -- One-handed Sword
-(25220, 4416, 1), -- Undead
+(25220, 4408, 1), -- HP Modifiers
+(25220, 4409, 1), -- MP Modifiers
+(25220, 4410, 11), -- P. Atk. Modifiers
+(25220, 4411, 11), -- M. Atk. Modifiers
+(25220, 4412, 11), -- P. Def. Modifiers
+(25220, 4413, 11), -- M. Def. Modifiers
+(25220, 4414, 2), -- Armor Type
+(25220, 4415, 3), -- Weapon Type
+(25220, 4416, 1), -- Races
 (25220, 4494, 1), -- Raid Boss
 (25220, 4868, 1), -- Raid Boss - Level 73
 -- Death Mage Krician
 (25221, 4045, 1), -- Resist Full Magic Attack
-(25221, 4194, 7), -- Aura Burn
+(25221, 4194, 7), -- BOSS Aura Burn
 (25221, 4204, 7), -- Bleed
-(25221, 4408, 1), -- HP Increase (1x)
-(25221, 4409, 1), -- MP Increase (1x)
-(25221, 4410, 11), -- Average P. Atk.
-(25221, 4411, 11), -- Average M. Atk.
-(25221, 4412, 11), -- Average P. Def.
-(25221, 4413, 11), -- Average M. Def.
-(25221, 4414, 2), -- Standard Type
-(25221, 4415, 3), -- One-handed Sword
-(25221, 4416, 1), -- Undead
+(25221, 4408, 1), -- HP Modifiers
+(25221, 4409, 1), -- MP Modifiers
+(25221, 4410, 11), -- P. Atk. Modifiers
+(25221, 4411, 11), -- M. Atk. Modifiers
+(25221, 4412, 11), -- P. Def. Modifiers
+(25221, 4413, 11), -- M. Def. Modifiers
+(25221, 4414, 2), -- Armor Type
+(25221, 4415, 3), -- Weapon Type
+(25221, 4416, 1), -- Races
 -- Death Fighter Harik
 (25222, 4045, 1), -- Resist Full Magic Attack
 (25222, 4169, 7), -- Stun
-(25222, 4408, 1), -- HP Increase (1x)
-(25222, 4409, 1), -- MP Increase (1x)
-(25222, 4410, 11), -- Average P. Atk.
-(25222, 4411, 11), -- Average M. Atk.
-(25222, 4412, 11), -- Average P. Def.
-(25222, 4413, 11), -- Average M. Def.
-(25222, 4414, 2), -- Standard Type
-(25222, 4415, 3), -- One-handed Sword
-(25222, 4416, 1), -- Undead
+(25222, 4408, 1), -- HP Modifiers
+(25222, 4409, 1), -- MP Modifiers
+(25222, 4410, 11), -- P. Atk. Modifiers
+(25222, 4411, 11), -- M. Atk. Modifiers
+(25222, 4412, 11), -- P. Def. Modifiers
+(25222, 4413, 11), -- M. Def. Modifiers
+(25222, 4414, 2), -- Armor Type
+(25222, 4415, 3), -- Weapon Type
+(25222, 4416, 1), -- Races
 -- Soul Collector Acheron
 (25223, 4045, 1), -- Resist Full Magic Attack
 (25223, 4197, 3), -- Hold
-(25223, 4408, 1), -- HP Increase (1x)
-(25223, 4409, 1), -- MP Increase (1x)
-(25223, 4410, 11), -- Average P. Atk.
-(25223, 4411, 11), -- Average M. Atk.
-(25223, 4412, 11), -- Average P. Def.
-(25223, 4413, 11), -- Average M. Def.
-(25223, 4414, 2), -- Standard Type
-(25223, 4415, 5), -- Blunt Weapons
-(25223, 4416, 9), -- Demons
+(25223, 4408, 1), -- HP Modifiers
+(25223, 4409, 1), -- MP Modifiers
+(25223, 4410, 11), -- P. Atk. Modifiers
+(25223, 4411, 11), -- M. Atk. Modifiers
+(25223, 4412, 11), -- P. Def. Modifiers
+(25223, 4413, 11), -- M. Def. Modifiers
+(25223, 4414, 2), -- Armor Type
+(25223, 4415, 5), -- Weapon Type
+(25223, 4416, 9), -- Races
 (25223, 4494, 1), -- Raid Boss
 (25223, 4869, 1), -- Raid Boss - Level 35
 -- Soul Slasher
 (25224, 4045, 1), -- Resist Full Magic Attack
-(25224, 4196, 3), -- Decrease Speed
+(25224, 4196, 3), -- Decreases Speed
 (25224, 4203, 3), -- Decrease Speed
-(25224, 4408, 1), -- HP Increase (1x)
-(25224, 4409, 1), -- MP Increase (1x)
-(25224, 4410, 11), -- Average P. Atk.
-(25224, 4411, 11), -- Average M. Atk.
-(25224, 4412, 11), -- Average P. Def.
-(25224, 4413, 11), -- Average M. Def.
-(25224, 4414, 3), -- Light Armor Type
-(25224, 4415, 5), -- Blunt Weapons
-(25224, 4416, 1), -- Undead
+(25224, 4408, 1), -- HP Modifiers
+(25224, 4409, 1), -- MP Modifiers
+(25224, 4410, 11), -- P. Atk. Modifiers
+(25224, 4411, 11), -- M. Atk. Modifiers
+(25224, 4412, 11), -- P. Def. Modifiers
+(25224, 4413, 11), -- M. Def. Modifiers
+(25224, 4414, 3), -- Armor Type
+(25224, 4415, 5), -- Weapon Type
+(25224, 4416, 1), -- Races
 -- Soul Strainer
 (25225, 4045, 1), -- Resist Full Magic Attack
-(25225, 4408, 1), -- HP Increase (1x)
-(25225, 4409, 1), -- MP Increase (1x)
-(25225, 4410, 11), -- Average P. Atk.
-(25225, 4411, 11), -- Average M. Atk.
-(25225, 4412, 11), -- Average P. Def.
-(25225, 4413, 11), -- Average M. Def.
-(25225, 4414, 3), -- Light Armor Type
-(25225, 4415, 5), -- Blunt Weapons
-(25225, 4416, 1), -- Undead
+(25225, 4408, 1), -- HP Modifiers
+(25225, 4409, 1), -- MP Modifiers
+(25225, 4410, 11), -- P. Atk. Modifiers
+(25225, 4411, 11), -- M. Atk. Modifiers
+(25225, 4412, 11), -- P. Def. Modifiers
+(25225, 4413, 11), -- M. Def. Modifiers
+(25225, 4414, 3), -- Armor Type
+(25225, 4415, 5), -- Weapon Type
+(25225, 4416, 1), -- Races
 (25225, 4727, 3), -- Stun
 -- Roaring Lord Kastor
 (25226, 4045, 1), -- Resist Full Magic Attack
-(25226, 4178, 6), -- Flame Strike
-(25226, 4408, 1), -- HP Increase (1x)
-(25226, 4409, 1), -- MP Increase (1x)
-(25226, 4410, 11), -- Average P. Atk.
-(25226, 4411, 11), -- Average M. Atk.
-(25226, 4412, 11), -- Average P. Def.
-(25226, 4413, 11), -- Average M. Def.
-(25226, 4414, 3), -- Light Armor Type
-(25226, 4415, 5), -- Blunt Weapons
-(25226, 4416, 6), -- Humanoids
+(25226, 4178, 6), -- BOSS Flame Strike
+(25226, 4408, 1), -- HP Modifiers
+(25226, 4409, 1), -- MP Modifiers
+(25226, 4410, 11), -- P. Atk. Modifiers
+(25226, 4411, 11), -- M. Atk. Modifiers
+(25226, 4412, 11), -- P. Def. Modifiers
+(25226, 4413, 11), -- M. Def. Modifiers
+(25226, 4414, 3), -- Armor Type
+(25226, 4415, 5), -- Weapon Type
+(25226, 4416, 6), -- Races
 (25226, 4494, 1), -- Raid Boss
 (25226, 4870, 1), -- Raid Boss - Level 62
 -- Kastor's Priest
 (25227, 4045, 1), -- Resist Full Magic Attack
-(25227, 4213, 6), -- Haste
-(25227, 4408, 1), -- HP Increase (1x)
-(25227, 4409, 1), -- MP Increase (1x)
-(25227, 4410, 11), -- Average P. Atk.
-(25227, 4411, 11), -- Average M. Atk.
-(25227, 4412, 11), -- Average P. Def.
-(25227, 4413, 11), -- Average M. Def.
-(25227, 4414, 3), -- Light Armor Type
-(25227, 4415, 5), -- Blunt Weapons
-(25227, 4416, 6), -- Humanoids
-(25227, 4779, 6), -- Heal
+(25227, 4213, 6), -- BOSS Haste
+(25227, 4408, 1), -- HP Modifiers
+(25227, 4409, 1), -- MP Modifiers
+(25227, 4410, 11), -- P. Atk. Modifiers
+(25227, 4411, 11), -- M. Atk. Modifiers
+(25227, 4412, 11), -- P. Def. Modifiers
+(25227, 4413, 11), -- M. Def. Modifiers
+(25227, 4414, 3), -- Armor Type
+(25227, 4415, 5), -- Weapon Type
+(25227, 4416, 6), -- Races
+(25227, 4779, 6), -- BOSS Heal
 -- Kastor's Prefect
 (25228, 4045, 1), -- Resist Full Magic Attack
-(25228, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25228, 4408, 1), -- HP Increase (1x)
-(25228, 4409, 1), -- MP Increase (1x)
-(25228, 4410, 11), -- Average P. Atk.
-(25228, 4411, 11), -- Average M. Atk.
-(25228, 4412, 11), -- Average P. Def.
-(25228, 4413, 11), -- Average M. Def.
-(25228, 4414, 2), -- Standard Type
-(25228, 4415, 3), -- One-handed Sword
-(25228, 4416, 6), -- Humanoids
+(25228, 4273, 3); -- Resist Dagger
+
+INSERT INTO `npcskills` VALUES
+(25228, 4408, 1), -- HP Modifiers
+(25228, 4409, 1), -- MP Modifiers
+(25228, 4410, 11), -- P. Atk. Modifiers
+(25228, 4411, 11), -- M. Atk. Modifiers
+(25228, 4412, 11), -- P. Def. Modifiers
+(25228, 4413, 11), -- M. Def. Modifiers
+(25228, 4414, 2), -- Armor Type
+(25228, 4415, 3), -- Weapon Type
+(25228, 4416, 6), -- Races
 -- Storm Winged Naga
 (25229, 4045, 1), -- Resist Full Magic Attack
-(25229, 4170, 8), -- Mortal Blow
+(25229, 4170, 8), -- BOSS Mortal Blow
 (25229, 4172, 8), -- Stun
-(25229, 4175, 8), -- Haste
-(25229, 4177, 8), -- Cancel
-(25229, 4408, 1), -- HP Increase (1x)
-(25229, 4409, 1), -- MP Increase (1x)
-(25229, 4410, 11), -- Average P. Atk.
-(25229, 4411, 11), -- Average M. Atk.
-(25229, 4412, 11), -- Average P. Def.
-(25229, 4413, 11), -- Average M. Def.
-(25229, 4414, 2), -- Standard Type
-(25229, 4415, 3), -- One-handed Sword
-(25229, 4416, 10), -- Dragons
+(25229, 4175, 8), -- BOSS Haste
+(25229, 4177, 8), -- BOSS Cancel Magic
+(25229, 4408, 1), -- HP Modifiers
+(25229, 4409, 1), -- MP Modifiers
+(25229, 4410, 11), -- P. Atk. Modifiers
+(25229, 4411, 11), -- M. Atk. Modifiers
+(25229, 4412, 11), -- P. Def. Modifiers
+(25229, 4413, 11), -- M. Def. Modifiers
+(25229, 4414, 2), -- Armor Type
+(25229, 4415, 3), -- Weapon Type
+(25229, 4416, 10), -- Races
 (25229, 4494, 1), -- Raid Boss
 (25229, 4871, 1), -- Raid Boss - Level 75
 -- Timak Priest Ragoth
 (25230, 4045, 1), -- Resist Full Magic Attack
 (25230, 4184, 5), -- Decrease Atk. Spd.
 (25230, 4187, 5), -- Decrease Speed
-(25230, 4195, 5), -- Twister
-(25230, 4408, 1), -- HP Increase (1x)
-(25230, 4409, 1), -- MP Increase (1x)
-(25230, 4410, 11), -- Average P. Atk.
-(25230, 4411, 11), -- Average M. Atk.
-(25230, 4412, 11), -- Average P. Def.
-(25230, 4413, 11), -- Average M. Def.
-(25230, 4414, 3), -- Light Armor Type
-(25230, 4415, 5), -- Blunt Weapons
-(25230, 4416, 6), -- Humanoids
+(25230, 4195, 5), -- BOSS Twister
+(25230, 4408, 1), -- HP Modifiers
+(25230, 4409, 1), -- MP Modifiers
+(25230, 4410, 11), -- P. Atk. Modifiers
+(25230, 4411, 11), -- M. Atk. Modifiers
+(25230, 4412, 11), -- P. Def. Modifiers
+(25230, 4413, 11), -- M. Def. Modifiers
+(25230, 4414, 3), -- Armor Type
+(25230, 4415, 5), -- Weapon Type
+(25230, 4416, 6), -- Races
 (25230, 4494, 1), -- Raid Boss
 (25230, 4872, 1), -- Raid Boss - Level 57
 -- Ragoth's Guard
 (25231, 4045, 1), -- Resist Full Magic Attack
-(25231, 4408, 1), -- HP Increase (1x)
-(25231, 4409, 1), -- MP Increase (1x)
-(25231, 4410, 11), -- Average P. Atk.
-(25231, 4411, 11), -- Average M. Atk.
-(25231, 4412, 11), -- Average P. Def.
-(25231, 4413, 11), -- Average M. Def.
-(25231, 4414, 2), -- Standard Type
-(25231, 4415, 3), -- One-handed Sword
-(25231, 4416, 6), -- Humanoids
-(25231, 4741, 5), -- Power Strike
+(25231, 4408, 1), -- HP Modifiers
+(25231, 4409, 1), -- MP Modifiers
+(25231, 4410, 11), -- P. Atk. Modifiers
+(25231, 4411, 11), -- M. Atk. Modifiers
+(25231, 4412, 11), -- P. Def. Modifiers
+(25231, 4413, 11), -- M. Def. Modifiers
+(25231, 4414, 2), -- Armor Type
+(25231, 4415, 3), -- Weapon Type
+(25231, 4416, 6), -- Races
+(25231, 4741, 5), -- BOSS Strike
 -- Ragoth's Herald
 (25232, 4045, 1), -- Resist Full Magic Attack
-(25232, 4408, 1), -- HP Increase (1x)
-(25232, 4409, 1), -- MP Increase (1x)
-(25232, 4410, 11), -- Average P. Atk.
-(25232, 4411, 11), -- Average M. Atk.
-(25232, 4412, 11), -- Average P. Def.
-(25232, 4413, 11), -- Average M. Def.
-(25232, 4414, 2), -- Standard Type
-(25232, 4415, 7), -- Daggers
-(25232, 4416, 6), -- Humanoids
+(25232, 4408, 1), -- HP Modifiers
+(25232, 4409, 1), -- MP Modifiers
+(25232, 4410, 11), -- P. Atk. Modifiers
+(25232, 4411, 11), -- M. Atk. Modifiers
+(25232, 4412, 11), -- P. Def. Modifiers
+(25232, 4413, 11), -- M. Def. Modifiers
+(25232, 4414, 2), -- Armor Type
+(25232, 4415, 7), -- Weapon Type
+(25232, 4416, 6), -- Races
 -- Spirit of Andras, the Betrayer
 (25233, 4045, 1), -- Resist Full Magic Attack
-(25233, 4173, 6), -- Might
-(25233, 4177, 6), -- Cancel
-(25233, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25233, 4274, 1), -- Blunt Weapon Weak Point
-(25233, 4408, 1), -- HP Increase (1x)
-(25233, 4409, 1), -- MP Increase (1x)
-(25233, 4410, 11), -- Average P. Atk.
-(25233, 4411, 11), -- Average M. Atk.
-(25233, 4412, 11), -- Average P. Def.
-(25233, 4413, 11), -- Average M. Def.
-(25233, 4414, 2), -- Standard Type
-(25233, 4415, 3), -- One-handed Sword
-(25233, 4416, 1), -- Undead
+(25233, 4173, 6), -- BOSS Might
+(25233, 4177, 6), -- BOSS Cancel Magic
+(25233, 4273, 3), -- Resist Dagger
+(25233, 4274, 1), -- Blunt Attack Weak Point
+(25233, 4408, 1), -- HP Modifiers
+(25233, 4409, 1), -- MP Modifiers
+(25233, 4410, 11), -- P. Atk. Modifiers
+(25233, 4411, 11), -- M. Atk. Modifiers
+(25233, 4412, 11), -- P. Def. Modifiers
+(25233, 4413, 11), -- M. Def. Modifiers
+(25233, 4414, 2), -- Armor Type
+(25233, 4415, 3), -- Weapon Type
+(25233, 4416, 1), -- Races
 (25233, 4494, 1), -- Raid Boss
-(25233, 4721, 6), -- Power Strike
-(25233, 4736, 6), -- Whirlwind
+(25233, 4721, 6), -- BOSS Strike
+(25233, 4736, 6), -- BOSS Spinning Slash
 (25233, 4873, 1), -- Raid Boss - Level 69
 -- Ancient Drake
 (25234, 4045, 1), -- Resist Full Magic Attack
 (25234, 4172, 6), -- Stun
-(25234, 4175, 6), -- Haste
-(25234, 4177, 6), -- Cancel
-(25234, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(25234, 4408, 1), -- HP Increase (1x)
-(25234, 4409, 1), -- MP Increase (1x)
-(25234, 4410, 11), -- Average P. Atk.
-(25234, 4411, 11), -- Average M. Atk.
-(25234, 4412, 11), -- Average P. Def.
-(25234, 4413, 11), -- Average M. Def.
-(25234, 4414, 2), -- Standard Type
-(25234, 4415, 3), -- One-handed Sword
-(25234, 4416, 10), -- Dragons
+(25234, 4175, 6), -- BOSS Haste
+(25234, 4177, 6), -- BOSS Cancel Magic
+(25234, 4276, 1), -- Archery Attack Weak Point
+(25234, 4408, 1), -- HP Modifiers
+(25234, 4409, 1), -- MP Modifiers
+(25234, 4410, 11), -- P. Atk. Modifiers
+(25234, 4411, 11), -- M. Atk. Modifiers
+(25234, 4412, 11), -- P. Def. Modifiers
+(25234, 4413, 11), -- M. Def. Modifiers
+(25234, 4414, 2), -- Armor Type
+(25234, 4415, 3), -- Weapon Type
+(25234, 4416, 10), -- Races
 (25234, 4494, 1), -- Raid Boss
-(25234, 4731, 6), -- Mortal Blow
+(25234, 4731, 6), -- BOSS Mortal Blow
 (25234, 4874, 1), -- Raid Boss - Level 60
 -- Vanor Chief Kandra
 (25235, 4045, 1), -- Resist Full Magic Attack
-(25235, 4178, 7), -- Flame Strike
-(25235, 4408, 1), -- HP Increase (1x)
-(25235, 4409, 1), -- MP Increase (1x)
-(25235, 4410, 11), -- Average P. Atk.
-(25235, 4411, 11), -- Average M. Atk.
-(25235, 4412, 11), -- Average P. Def.
-(25235, 4413, 11), -- Average M. Def.
-(25235, 4414, 2), -- Standard Type
-(25235, 4415, 3), -- One-handed Sword
-(25235, 4416, 6), -- Humanoids
+(25235, 4178, 7), -- BOSS Flame Strike
+(25235, 4408, 1), -- HP Modifiers
+(25235, 4409, 1), -- MP Modifiers
+(25235, 4410, 11), -- P. Atk. Modifiers
+(25235, 4411, 11), -- M. Atk. Modifiers
+(25235, 4412, 11), -- P. Def. Modifiers
+(25235, 4413, 11), -- M. Def. Modifiers
+(25235, 4414, 2), -- Armor Type
+(25235, 4415, 3), -- Weapon Type
+(25235, 4416, 6), -- Races
 (25235, 4494, 1), -- Raid Boss
 (25235, 4875, 1), -- Raid Boss - Level 72
 -- Kandra's Healer
 (25236, 4045, 1), -- Resist Full Magic Attack
-(25236, 4209, 7), -- Heal
-(25236, 4212, 7), -- Shield
-(25236, 4408, 1), -- HP Increase (1x)
-(25236, 4409, 1), -- MP Increase (1x)
-(25236, 4410, 11), -- Average P. Atk.
-(25236, 4411, 11), -- Average M. Atk.
-(25236, 4412, 11), -- Average P. Def.
-(25236, 4413, 11), -- Average M. Def.
-(25236, 4414, 3), -- Light Armor Type
-(25236, 4415, 5), -- Blunt Weapons
-(25236, 4416, 6), -- Humanoids
+(25236, 4209, 7), -- BOSS Heal
+(25236, 4212, 7), -- BOSS Shield
+(25236, 4408, 1), -- HP Modifiers
+(25236, 4409, 1), -- MP Modifiers
+(25236, 4410, 11), -- P. Atk. Modifiers
+(25236, 4411, 11), -- M. Atk. Modifiers
+(25236, 4412, 11), -- P. Def. Modifiers
+(25236, 4413, 11), -- M. Def. Modifiers
+(25236, 4414, 3), -- Armor Type
+(25236, 4415, 5), -- Weapon Type
+(25236, 4416, 6), -- Races
 -- Kandra's Guard
 (25237, 4045, 1), -- Resist Full Magic Attack
-(25237, 4408, 1), -- HP Increase (1x)
-(25237, 4409, 1), -- MP Increase (1x)
-(25237, 4410, 11), -- Average P. Atk.
-(25237, 4411, 11), -- Average M. Atk.
-(25237, 4412, 11), -- Average P. Def.
-(25237, 4413, 11), -- Average M. Def.
-(25237, 4414, 2), -- Standard Type
-(25237, 4415, 3), -- One-handed Sword
-(25237, 4416, 6), -- Humanoids
+(25237, 4408, 1), -- HP Modifiers
+(25237, 4409, 1), -- MP Modifiers
+(25237, 4410, 11), -- P. Atk. Modifiers
+(25237, 4411, 11), -- M. Atk. Modifiers
+(25237, 4412, 11), -- P. Def. Modifiers
+(25237, 4413, 11), -- M. Def. Modifiers
+(25237, 4414, 2), -- Armor Type
+(25237, 4415, 3), -- Weapon Type
+(25237, 4416, 6), -- Races
 -- Abyss Brukunt
 (25238, 4045, 1), -- Resist Full Magic Attack
-(25238, 4178, 5), -- Flame Strike
-(25238, 4408, 1), -- HP Increase (1x)
-(25238, 4409, 1), -- MP Increase (1x)
-(25238, 4410, 11), -- Average P. Atk.
-(25238, 4411, 11), -- Average M. Atk.
-(25238, 4412, 11), -- Average P. Def.
-(25238, 4413, 11), -- Average M. Def.
-(25238, 4414, 2), -- Standard Type
-(25238, 4415, 3), -- One-handed Sword
-(25238, 4416, 10), -- Dragons
+(25238, 4178, 5), -- BOSS Flame Strike
+(25238, 4408, 1), -- HP Modifiers
+(25238, 4409, 1), -- MP Modifiers
+(25238, 4410, 11), -- P. Atk. Modifiers
+(25238, 4411, 11), -- M. Atk. Modifiers
+(25238, 4412, 11), -- P. Def. Modifiers
+(25238, 4413, 11), -- M. Def. Modifiers
+(25238, 4414, 2), -- Armor Type
+(25238, 4415, 3), -- Weapon Type
+(25238, 4416, 10), -- Races
 (25238, 4494, 1), -- Raid Boss
 (25238, 4876, 1), -- Raid Boss - Level 59
 -- Monstrous Beast of Abyss Brukunt
 (25239, 4045, 1), -- Resist Full Magic Attack
-(25239, 4212, 5), -- Shield
-(25239, 4408, 1), -- HP Increase (1x)
-(25239, 4409, 1), -- MP Increase (1x)
-(25239, 4410, 11), -- Average P. Atk.
-(25239, 4411, 11), -- Average M. Atk.
-(25239, 4412, 11), -- Average P. Def.
-(25239, 4413, 11), -- Average M. Def.
-(25239, 4414, 3), -- Light Armor Type
-(25239, 4415, 5), -- Blunt Weapons
-(25239, 4416, 2), -- Magic Creatures
-(25239, 4786, 5), -- Chant of Life
+(25239, 4212, 5), -- BOSS Shield
+(25239, 4408, 1), -- HP Modifiers
+(25239, 4409, 1), -- MP Modifiers
+(25239, 4410, 11), -- P. Atk. Modifiers
+(25239, 4411, 11), -- M. Atk. Modifiers
+(25239, 4412, 11), -- P. Def. Modifiers
+(25239, 4413, 11), -- M. Def. Modifiers
+(25239, 4414, 3), -- Armor Type
+(25239, 4415, 5), -- Weapon Type
+(25239, 4416, 2), -- Races
+(25239, 4786, 5), -- BOSS Chant of Life
 -- Wild Beast of Abyss Brukunt
 (25240, 4045, 1), -- Resist Full Magic Attack
-(25240, 4408, 1), -- HP Increase (1x)
-(25240, 4409, 1), -- MP Increase (1x)
-(25240, 4410, 11), -- Average P. Atk.
-(25240, 4411, 11), -- Average M. Atk.
-(25240, 4412, 11), -- Average P. Def.
-(25240, 4413, 11), -- Average M. Def.
-(25240, 4414, 3), -- Light Armor Type
-(25240, 4415, 3), -- One-handed Sword
-(25240, 4416, 3), -- Beasts
+(25240, 4408, 1), -- HP Modifiers
+(25240, 4409, 1), -- MP Modifiers
+(25240, 4410, 11), -- P. Atk. Modifiers
+(25240, 4411, 11), -- M. Atk. Modifiers
+(25240, 4412, 11), -- P. Def. Modifiers
+(25240, 4413, 11), -- M. Def. Modifiers
+(25240, 4414, 3), -- Armor Type
+(25240, 4415, 3), -- Weapon Type
+(25240, 4416, 3), -- Races
 -- Harit Hero Tamash
 (25241, 4045, 1), -- Resist Full Magic Attack
-(25241, 4408, 1), -- HP Increase (1x)
-(25241, 4409, 1), -- MP Increase (1x)
-(25241, 4410, 11), -- Average P. Atk.
-(25241, 4411, 11), -- Average M. Atk.
-(25241, 4412, 11), -- Average P. Def.
-(25241, 4413, 11), -- Average M. Def.
-(25241, 4414, 2), -- Standard Type
-(25241, 4415, 5), -- Blunt Weapons
-(25241, 4416, 6), -- Humanoids
+(25241, 4408, 1), -- HP Modifiers
+(25241, 4409, 1), -- MP Modifiers
+(25241, 4410, 11), -- P. Atk. Modifiers
+(25241, 4411, 11), -- M. Atk. Modifiers
+(25241, 4412, 11), -- P. Def. Modifiers
+(25241, 4413, 11), -- M. Def. Modifiers
+(25241, 4414, 2), -- Armor Type
+(25241, 4415, 5), -- Weapon Type
+(25241, 4416, 6), -- Races
 (25241, 4494, 1), -- Raid Boss
 (25241, 4745, 5), -- Stun
 (25241, 4877, 1), -- Raid Boss - Level 55
 -- Tamash's Advisor
 (25242, 4045, 1), -- Resist Full Magic Attack
-(25242, 4192, 5), -- Vampiric Touch
+(25242, 4192, 5), -- BOSS HP Drain
 (25242, 4204, 5), -- Bleed
-(25242, 4408, 1), -- HP Increase (1x)
-(25242, 4409, 1), -- MP Increase (1x)
-(25242, 4410, 11), -- Average P. Atk.
-(25242, 4411, 11), -- Average M. Atk.
-(25242, 4412, 11), -- Average P. Def.
-(25242, 4413, 11), -- Average M. Def.
-(25242, 4414, 3), -- Light Armor Type
-(25242, 4415, 5), -- Blunt Weapons
-(25242, 4416, 6), -- Humanoids
+(25242, 4408, 1), -- HP Modifiers
+(25242, 4409, 1), -- MP Modifiers
+(25242, 4410, 11), -- P. Atk. Modifiers
+(25242, 4411, 11), -- M. Atk. Modifiers
+(25242, 4412, 11), -- P. Def. Modifiers
+(25242, 4413, 11), -- M. Def. Modifiers
+(25242, 4414, 3), -- Armor Type
+(25242, 4415, 5), -- Weapon Type
+(25242, 4416, 6), -- Races
 -- Tamash's Servant
 (25243, 4045, 1), -- Resist Full Magic Attack
-(25243, 4408, 1), -- HP Increase (1x)
-(25243, 4409, 1), -- MP Increase (1x)
-(25243, 4410, 11), -- Average P. Atk.
-(25243, 4411, 11), -- Average M. Atk.
-(25243, 4412, 11), -- Average P. Def.
-(25243, 4413, 11), -- Average M. Def.
-(25243, 4414, 2), -- Standard Type
-(25243, 4415, 7), -- Daggers
-(25243, 4416, 6), -- Humanoids
-(25243, 4730, 5), -- Mortal Blow
+(25243, 4408, 1), -- HP Modifiers
+(25243, 4409, 1), -- MP Modifiers
+(25243, 4410, 11), -- P. Atk. Modifiers
+(25243, 4411, 11), -- M. Atk. Modifiers
+(25243, 4412, 11), -- P. Def. Modifiers
+(25243, 4413, 11), -- M. Def. Modifiers
+(25243, 4414, 2), -- Armor Type
+(25243, 4415, 7), -- Weapon Type
+(25243, 4416, 6), -- Races
+(25243, 4730, 5), -- BOSS Mortal Blow
 -- Last Lesser Giant Olkuth
 (25244, 4045, 1), -- Resist Full Magic Attack
-(25244, 4174, 8), -- Shield
-(25244, 4177, 8), -- Cancel
-(25244, 4408, 1), -- HP Increase (1x)
-(25244, 4409, 1), -- MP Increase (1x)
-(25244, 4410, 11), -- Average P. Atk.
-(25244, 4411, 11), -- Average M. Atk.
-(25244, 4412, 11), -- Average P. Def.
-(25244, 4413, 11), -- Average M. Def.
-(25244, 4414, 2), -- Standard Type
-(25244, 4415, 5), -- Blunt Weapons
-(25244, 4416, 11), -- Giants
+(25244, 4174, 8), -- BOSS Shield
+(25244, 4177, 8), -- BOSS Cancel Magic
+(25244, 4408, 1), -- HP Modifiers
+(25244, 4409, 1), -- MP Modifiers
+(25244, 4410, 11), -- P. Atk. Modifiers
+(25244, 4411, 11), -- M. Atk. Modifiers
+(25244, 4412, 11), -- P. Def. Modifiers
+(25244, 4413, 11), -- M. Def. Modifiers
+(25244, 4414, 2), -- Armor Type
+(25244, 4415, 5), -- Weapon Type
+(25244, 4416, 11), -- Races
 (25244, 4494, 1), -- Raid Boss
 (25244, 4724, 8), -- Stun
-(25244, 4734, 8), -- Whirlwind
+(25244, 4734, 8), -- BOSS Spinning Slash
 (25244, 4878, 1), -- Raid Boss - Level 75
 -- Last Lesser Giant Glaki
 (25245, 4045, 1), -- Resist Full Magic Attack
 (25245, 4182, 8), -- Poison
 (25245, 4188, 8), -- Bleed
-(25245, 4194, 8), -- Aura Burn
-(25245, 4408, 1), -- HP Increase (1x)
-(25245, 4409, 1), -- MP Increase (1x)
-(25245, 4410, 11), -- Average P. Atk.
-(25245, 4411, 11), -- Average M. Atk.
-(25245, 4412, 11), -- Average P. Def.
-(25245, 4413, 11), -- Average M. Def.
-(25245, 4414, 2), -- Standard Type
-(25245, 4415, 5), -- Blunt Weapons
-(25245, 4416, 11), -- Giants
+(25245, 4194, 8), -- BOSS Aura Burn
+(25245, 4408, 1), -- HP Modifiers
+(25245, 4409, 1), -- MP Modifiers
+(25245, 4410, 11), -- P. Atk. Modifiers
+(25245, 4411, 11), -- M. Atk. Modifiers
+(25245, 4412, 11), -- P. Def. Modifiers
+(25245, 4413, 11), -- M. Def. Modifiers
+(25245, 4414, 2), -- Armor Type
+(25245, 4415, 5), -- Weapon Type
+(25245, 4416, 11), -- Races
 (25245, 4494, 1), -- Raid Boss
 (25245, 4879, 1), -- Raid Boss - Level 78
 -- Glaki's Henchman
 (25246, 4045, 1), -- Resist Full Magic Attack
-(25246, 4408, 1), -- HP Increase (1x)
-(25246, 4409, 1), -- MP Increase (1x)
-(25246, 4410, 11), -- Average P. Atk.
-(25246, 4411, 11), -- Average M. Atk.
-(25246, 4412, 11), -- Average P. Def.
-(25246, 4413, 11), -- Average M. Def.
-(25246, 4414, 2), -- Standard Type
-(25246, 4415, 5), -- Blunt Weapons
-(25246, 4416, 11), -- Giants
+(25246, 4408, 1), -- HP Modifiers
+(25246, 4409, 1), -- MP Modifiers
+(25246, 4410, 11), -- P. Atk. Modifiers
+(25246, 4411, 11), -- M. Atk. Modifiers
+(25246, 4412, 11), -- P. Def. Modifiers
+(25246, 4413, 11), -- M. Def. Modifiers
+(25246, 4414, 2), -- Armor Type
+(25246, 4415, 5), -- Weapon Type
+(25246, 4416, 11), -- Races
 (25246, 4725, 8), -- Stun
 -- Glaki's Servant
 (25247, 4045, 1), -- Resist Full Magic Attack
-(25247, 4408, 1), -- HP Increase (1x)
-(25247, 4409, 1), -- MP Increase (1x)
-(25247, 4410, 11), -- Average P. Atk.
-(25247, 4411, 11), -- Average M. Atk.
-(25247, 4412, 11), -- Average P. Def.
-(25247, 4413, 11), -- Average M. Def.
-(25247, 4414, 2), -- Standard Type
-(25247, 4415, 5), -- Blunt Weapons
-(25247, 4416, 11), -- Giants
+(25247, 4408, 1), -- HP Modifiers
+(25247, 4409, 1), -- MP Modifiers
+(25247, 4410, 11), -- P. Atk. Modifiers
+(25247, 4411, 11), -- M. Atk. Modifiers
+(25247, 4412, 11), -- P. Def. Modifiers
+(25247, 4413, 11), -- M. Def. Modifiers
+(25247, 4414, 2), -- Armor Type
+(25247, 4415, 5), -- Weapon Type
+(25247, 4416, 11), -- Races
 -- Doom Blade Thanatos
 (25248, 4045, 1), -- Resist Full Magic Attack
-(25248, 4175, 7), -- Haste
-(25248, 4177, 7), -- Cancel
-(25248, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25248, 4274, 1), -- Blunt Weapon Weak Point
-(25248, 4408, 1), -- HP Increase (1x)
-(25248, 4409, 1), -- MP Increase (1x)
-(25248, 4410, 11), -- Average P. Atk.
-(25248, 4411, 11), -- Average M. Atk.
-(25248, 4412, 11); -- Average P. Def.
-
-INSERT INTO `npcskills` VALUES
-(25248, 4413, 11), -- Average M. Def.
-(25248, 4414, 2), -- Standard Type
-(25248, 4415, 3), -- One-handed Sword
-(25248, 4416, 9), -- Demons
+(25248, 4175, 7), -- BOSS Haste
+(25248, 4177, 7), -- BOSS Cancel Magic
+(25248, 4273, 3), -- Resist Dagger
+(25248, 4274, 1), -- Blunt Attack Weak Point
+(25248, 4408, 1), -- HP Modifiers
+(25248, 4409, 1), -- MP Modifiers
+(25248, 4410, 11), -- P. Atk. Modifiers
+(25248, 4411, 11), -- M. Atk. Modifiers
+(25248, 4412, 11), -- P. Def. Modifiers
+(25248, 4413, 11), -- M. Def. Modifiers
+(25248, 4414, 2), -- Armor Type
+(25248, 4415, 3), -- Weapon Type
+(25248, 4416, 9), -- Races
 (25248, 4494, 1), -- Raid Boss
-(25248, 4720, 7), -- Power Strike
-(25248, 4735, 7), -- Whirlwind
+(25248, 4720, 7), -- BOSS Strike
+(25248, 4735, 7), -- BOSS Spinning Slash
 (25248, 4880, 1), -- Raid Boss - Level 72
 -- Menacing Palatanos
 (25249, 4045, 1), -- Resist Full Magic Attack
 (25249, 4197, 8), -- Hold
-(25249, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25249, 4274, 1), -- Blunt Weapon Weak Point
-(25249, 4408, 1), -- HP Increase (1x)
-(25249, 4409, 1), -- MP Increase (1x)
-(25249, 4410, 11), -- Average P. Atk.
-(25249, 4411, 11), -- Average M. Atk.
-(25249, 4412, 11), -- Average P. Def.
-(25249, 4413, 11), -- Average M. Def.
-(25249, 4414, 2), -- Standard Type
-(25249, 4415, 5), -- Blunt Weapons
-(25249, 4416, 5), -- Plants
+(25249, 4273, 3), -- Resist Dagger
+(25249, 4274, 1), -- Blunt Attack Weak Point
+(25249, 4408, 1), -- HP Modifiers
+(25249, 4409, 1), -- MP Modifiers
+(25249, 4410, 11), -- P. Atk. Modifiers
+(25249, 4411, 11), -- M. Atk. Modifiers
+(25249, 4412, 11), -- P. Def. Modifiers
+(25249, 4413, 11), -- M. Def. Modifiers
+(25249, 4414, 2), -- Armor Type
+(25249, 4415, 5), -- Weapon Type
+(25249, 4416, 5), -- Races
 (25249, 4494, 1), -- Raid Boss
 (25249, 4881, 1), -- Raid Boss - Level 75
 -- Man-Eating Plant of Palatanos
 (25250, 4045, 1), -- Resist Full Magic Attack
-(25250, 4191, 7), -- Wind Strike
+(25250, 4191, 7), -- BOSS Wind Strike
 (25250, 4198, 7), -- Poison
-(25250, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(25250, 4408, 1), -- HP Increase (1x)
-(25250, 4409, 1), -- MP Increase (1x)
-(25250, 4410, 11), -- Average P. Atk.
-(25250, 4411, 11), -- Average M. Atk.
-(25250, 4412, 11), -- Average P. Def.
-(25250, 4413, 11), -- Average M. Def.
-(25250, 4414, 3), -- Light Armor Type
-(25250, 4415, 5), -- Blunt Weapons
-(25250, 4416, 5), -- Plants
+(25250, 4276, 1), -- Archery Attack Weak Point
+(25250, 4408, 1), -- HP Modifiers
+(25250, 4409, 1), -- MP Modifiers
+(25250, 4410, 11), -- P. Atk. Modifiers
+(25250, 4411, 11), -- M. Atk. Modifiers
+(25250, 4412, 11), -- P. Def. Modifiers
+(25250, 4413, 11), -- M. Def. Modifiers
+(25250, 4414, 3), -- Armor Type
+(25250, 4415, 5), -- Weapon Type
+(25250, 4416, 5), -- Races
 -- Sapling of Palatanos
 (25251, 4045, 1), -- Resist Full Magic Attack
-(25251, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25251, 4274, 1), -- Blunt Weapon Weak Point
-(25251, 4408, 1), -- HP Increase (1x)
-(25251, 4409, 1), -- MP Increase (1x)
-(25251, 4410, 11), -- Average P. Atk.
-(25251, 4411, 11), -- Average M. Atk.
-(25251, 4412, 11), -- Average P. Def.
-(25251, 4413, 11), -- Average M. Def.
-(25251, 4414, 2), -- Standard Type
-(25251, 4415, 3), -- One-handed Sword
-(25251, 4416, 5), -- Plants
-(25251, 4739, 7), -- Power Strike
+(25251, 4273, 3), -- Resist Dagger
+(25251, 4274, 1), -- Blunt Attack Weak Point
+(25251, 4408, 1), -- HP Modifiers
+(25251, 4409, 1), -- MP Modifiers
+(25251, 4410, 11), -- P. Atk. Modifiers
+(25251, 4411, 11), -- M. Atk. Modifiers
+(25251, 4412, 11), -- P. Def. Modifiers
+(25251, 4413, 11), -- M. Def. Modifiers
+(25251, 4414, 2), -- Armor Type
+(25251, 4415, 3), -- Weapon Type
+(25251, 4416, 5), -- Races
+(25251, 4739, 7), -- BOSS Strike
 -- Palibati Queen Themis
 (25252, 4045, 1), -- Resist Full Magic Attack
 (25252, 4183, 7), -- Decrease P. Atk.
 (25252, 4189, 7), -- Paralysis
-(25252, 4191, 7), -- Wind Strike
-(25252, 4408, 1), -- HP Increase (1x)
-(25252, 4409, 1), -- MP Increase (1x)
-(25252, 4410, 11), -- Average P. Atk.
-(25252, 4411, 11), -- Average M. Atk.
-(25252, 4412, 11), -- Average P. Def.
-(25252, 4413, 11), -- Average M. Def.
-(25252, 4414, 3), -- Light Armor Type
-(25252, 4415, 7), -- Daggers
-(25252, 4416, 3), -- Beasts
+(25252, 4191, 7), -- BOSS Wind Strike
+(25252, 4408, 1), -- HP Modifiers
+(25252, 4409, 1), -- MP Modifiers
+(25252, 4410, 11), -- P. Atk. Modifiers
+(25252, 4411, 11), -- M. Atk. Modifiers
+(25252, 4412, 11), -- P. Def. Modifiers
+(25252, 4413, 11), -- M. Def. Modifiers
+(25252, 4414, 3), -- Armor Type
+(25252, 4415, 7), -- Weapon Type
+(25252, 4416, 3), -- Races
 (25252, 4494, 1), -- Raid Boss
 (25252, 4882, 1), -- Raid Boss - Level 70
 -- Handmaiden of Themis
 (25253, 4045, 1), -- Resist Full Magic Attack
-(25253, 4192, 6), -- Vampiric Touch
+(25253, 4192, 6), -- BOSS HP Drain
 (25253, 4202, 6), -- Hold
-(25253, 4408, 1), -- HP Increase (1x)
-(25253, 4409, 1), -- MP Increase (1x)
-(25253, 4410, 11), -- Average P. Atk.
-(25253, 4411, 11), -- Average M. Atk.
-(25253, 4412, 11), -- Average P. Def.
-(25253, 4413, 11), -- Average M. Def.
-(25253, 4414, 3), -- Light Armor Type
-(25253, 4415, 3), -- One-handed Sword
-(25253, 4416, 9), -- Demons
+(25253, 4408, 1), -- HP Modifiers
+(25253, 4409, 1), -- MP Modifiers
+(25253, 4410, 11), -- P. Atk. Modifiers
+(25253, 4411, 11), -- M. Atk. Modifiers
+(25253, 4412, 11), -- P. Def. Modifiers
+(25253, 4413, 11), -- M. Def. Modifiers
+(25253, 4414, 3), -- Armor Type
+(25253, 4415, 3), -- Weapon Type
+(25253, 4416, 9), -- Races
 -- Themis' Sentinel
 (25254, 4045, 1), -- Resist Full Magic Attack
-(25254, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25254, 4274, 1), -- Blunt Weapon Weak Point
-(25254, 4408, 1), -- HP Increase (1x)
-(25254, 4409, 1), -- MP Increase (1x)
-(25254, 4410, 11), -- Average P. Atk.
-(25254, 4411, 11), -- Average M. Atk.
-(25254, 4412, 11), -- Average P. Def.
-(25254, 4413, 11), -- Average M. Def.
-(25254, 4414, 2), -- Standard Type
-(25254, 4415, 3), -- One-handed Sword
-(25254, 4416, 1), -- Undead
-(25254, 4739, 6), -- Power Strike
+(25254, 4273, 3), -- Resist Dagger
+(25254, 4274, 1), -- Blunt Attack Weak Point
+(25254, 4408, 1), -- HP Modifiers
+(25254, 4409, 1), -- MP Modifiers
+(25254, 4410, 11), -- P. Atk. Modifiers
+(25254, 4411, 11), -- M. Atk. Modifiers
+(25254, 4412, 11), -- P. Def. Modifiers
+(25254, 4413, 11), -- M. Def. Modifiers
+(25254, 4414, 2), -- Armor Type
+(25254, 4415, 3), -- Weapon Type
+(25254, 4416, 1), -- Races
+(25254, 4739, 6), -- BOSS Strike
 -- Gargoyle Lord Tiphon
 (25255, 4045, 1), -- Resist Full Magic Attack
 (25255, 4172, 6), -- Stun
-(25255, 4175, 6), -- Haste
-(25255, 4177, 6), -- Cancel
-(25255, 4408, 1), -- HP Increase (1x)
-(25255, 4409, 1), -- MP Increase (1x)
-(25255, 4410, 11), -- Average P. Atk.
-(25255, 4411, 11), -- Average M. Atk.
-(25255, 4412, 11), -- Average P. Def.
-(25255, 4413, 11), -- Average M. Def.
-(25255, 4414, 2), -- Standard Type
-(25255, 4415, 3), -- One-handed Sword
-(25255, 4416, 2), -- Magic Creatures
+(25255, 4175, 6), -- BOSS Haste
+(25255, 4177, 6), -- BOSS Cancel Magic
+(25255, 4408, 1), -- HP Modifiers
+(25255, 4409, 1), -- MP Modifiers
+(25255, 4410, 11), -- P. Atk. Modifiers
+(25255, 4411, 11), -- M. Atk. Modifiers
+(25255, 4412, 11), -- P. Def. Modifiers
+(25255, 4413, 11), -- M. Def. Modifiers
+(25255, 4414, 2), -- Armor Type
+(25255, 4415, 3), -- Weapon Type
+(25255, 4416, 2), -- Races
 (25255, 4494, 1), -- Raid Boss
-(25255, 4730, 6), -- Mortal Blow
+(25255, 4730, 6), -- BOSS Mortal Blow
 (25255, 4883, 1), -- Raid Boss - Level 65
 -- Taik High Prefect Arak
 (25256, 4045, 1), -- Resist Full Magic Attack
-(25256, 4408, 1), -- HP Increase (1x)
-(25256, 4409, 1), -- MP Increase (1x)
-(25256, 4410, 11), -- Average P. Atk.
-(25256, 4411, 11), -- Average M. Atk.
-(25256, 4412, 11), -- Average P. Def.
-(25256, 4413, 11), -- Average M. Def.
-(25256, 4414, 2), -- Standard Type
-(25256, 4415, 3), -- One-handed Sword
-(25256, 4416, 6), -- Humanoids
+(25256, 4408, 1), -- HP Modifiers
+(25256, 4409, 1), -- MP Modifiers
+(25256, 4410, 11), -- P. Atk. Modifiers
+(25256, 4411, 11), -- M. Atk. Modifiers
+(25256, 4412, 11), -- P. Def. Modifiers
+(25256, 4413, 11), -- M. Def. Modifiers
+(25256, 4414, 2), -- Armor Type
+(25256, 4415, 3), -- Weapon Type
+(25256, 4416, 6), -- Races
 (25256, 4494, 1), -- Raid Boss
-(25256, 4741, 6), -- Power Strike
+(25256, 4741, 6), -- BOSS Strike
 (25256, 4884, 1), -- Raid Boss - Level 60
 -- Arak's Archer
 (25257, 4045, 1), -- Resist Full Magic Attack
-(25257, 4408, 1), -- HP Increase (1x)
-(25257, 4409, 1), -- MP Increase (1x)
-(25257, 4410, 11), -- Average P. Atk.
-(25257, 4411, 11), -- Average M. Atk.
-(25257, 4412, 11), -- Average P. Def.
-(25257, 4413, 11), -- Average M. Def.
-(25257, 4414, 3), -- Light Armor Type
-(25257, 4415, 9), -- Bows
-(25257, 4416, 6), -- Humanoids
+(25257, 4408, 1), -- HP Modifiers
+(25257, 4409, 1), -- MP Modifiers
+(25257, 4410, 11), -- P. Atk. Modifiers
+(25257, 4411, 11), -- M. Atk. Modifiers
+(25257, 4412, 11), -- P. Def. Modifiers
+(25257, 4413, 11), -- M. Def. Modifiers
+(25257, 4414, 3), -- Armor Type
+(25257, 4415, 9), -- Weapon Type
+(25257, 4416, 6), -- Races
 (25257, 4761, 6), -- Stun
 -- Arak's Footman
 (25258, 4045, 1), -- Resist Full Magic Attack
-(25258, 4408, 1), -- HP Increase (1x)
-(25258, 4409, 1), -- MP Increase (1x)
-(25258, 4410, 11), -- Average P. Atk.
-(25258, 4411, 11), -- Average M. Atk.
-(25258, 4412, 11), -- Average P. Def.
-(25258, 4413, 11), -- Average M. Def.
-(25258, 4414, 2), -- Standard Type
-(25258, 4415, 3), -- One-handed Sword
-(25258, 4416, 6), -- Humanoids
+(25258, 4408, 1), -- HP Modifiers
+(25258, 4409, 1), -- MP Modifiers
+(25258, 4410, 11), -- P. Atk. Modifiers
+(25258, 4411, 11), -- M. Atk. Modifiers
+(25258, 4412, 11), -- P. Def. Modifiers
+(25258, 4413, 11), -- M. Def. Modifiers
+(25258, 4414, 2), -- Armor Type
+(25258, 4415, 3), -- Weapon Type
+(25258, 4416, 6), -- Races
 -- Zaken's Butcher Krantz
 (25259, 4045, 1), -- Resist Full Magic Attack
-(25259, 4173, 5), -- Might
-(25259, 4177, 5), -- Cancel
-(25259, 4408, 1), -- HP Increase (1x)
-(25259, 4409, 1), -- MP Increase (1x)
-(25259, 4410, 11), -- Average P. Atk.
-(25259, 4411, 11), -- Average M. Atk.
-(25259, 4412, 11), -- Average P. Def.
-(25259, 4413, 11), -- Average M. Def.
-(25259, 4414, 2), -- Standard Type
-(25259, 4415, 6), -- Blunt Weapons
-(25259, 4416, 11), -- Giants
+(25259, 4173, 5), -- BOSS Might
+(25259, 4177, 5), -- BOSS Cancel Magic
+(25259, 4408, 1), -- HP Modifiers
+(25259, 4409, 1), -- MP Modifiers
+(25259, 4410, 11), -- P. Atk. Modifiers
+(25259, 4411, 11), -- M. Atk. Modifiers
+(25259, 4412, 11), -- P. Def. Modifiers
+(25259, 4413, 11), -- M. Def. Modifiers
+(25259, 4414, 2), -- Armor Type
+(25259, 4415, 6), -- Weapon Type
+(25259, 4416, 11), -- Races
 (25259, 4494, 1), -- Raid Boss
 (25259, 4725, 5), -- Stun
-(25259, 4735, 5), -- Whirlwind
+(25259, 4735, 5), -- BOSS Spinning Slash
 (25259, 4885, 1), -- Raid Boss - Level 55
 -- Iron Giant Totem
 (25260, 4045, 1), -- Resist Full Magic Attack
-(25260, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25260, 4274, 1), -- Blunt Weapon Weak Point
-(25260, 4408, 1), -- HP Increase (1x)
-(25260, 4409, 1), -- MP Increase (1x)
-(25260, 4410, 11), -- Average P. Atk.
-(25260, 4411, 11), -- Average M. Atk.
-(25260, 4412, 11), -- Average P. Def.
-(25260, 4413, 11), -- Average M. Def.
-(25260, 4414, 2), -- Standard Type
-(25260, 4415, 5), -- Blunt Weapons
-(25260, 4416, 2), -- Magic Creatures
+(25260, 4273, 3), -- Resist Dagger
+(25260, 4274, 1), -- Blunt Attack Weak Point
+(25260, 4408, 1), -- HP Modifiers
+(25260, 4409, 1), -- MP Modifiers
+(25260, 4410, 11), -- P. Atk. Modifiers
+(25260, 4411, 11), -- M. Atk. Modifiers
+(25260, 4412, 11), -- P. Def. Modifiers
+(25260, 4413, 11), -- M. Def. Modifiers
+(25260, 4414, 2), -- Armor Type
+(25260, 4415, 5), -- Weapon Type
+(25260, 4416, 2), -- Races
 (25260, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 (25260, 4494, 1), -- Raid Boss
 (25260, 4745, 4), -- Stun
 (25260, 4886, 1), -- Raid Boss - Level 45
 -- Totem Guard Archer
 (25261, 4045, 1), -- Resist Full Magic Attack
-(25261, 4408, 1), -- HP Increase (1x)
-(25261, 4409, 1), -- MP Increase (1x)
-(25261, 4410, 11), -- Average P. Atk.
-(25261, 4411, 11), -- Average M. Atk.
-(25261, 4412, 11), -- Average P. Def.
-(25261, 4413, 11), -- Average M. Def.
-(25261, 4414, 3), -- Light Armor Type
-(25261, 4415, 9), -- Bows
-(25261, 4416, 6), -- Humanoids
+(25261, 4408, 1), -- HP Modifiers
+(25261, 4409, 1), -- MP Modifiers
+(25261, 4410, 11), -- P. Atk. Modifiers
+(25261, 4411, 11), -- M. Atk. Modifiers
+(25261, 4412, 11), -- P. Def. Modifiers
+(25261, 4413, 11), -- M. Def. Modifiers
+(25261, 4414, 3), -- Armor Type
+(25261, 4415, 9), -- Weapon Type
+(25261, 4416, 6), -- Races
 (25261, 4760, 5), -- Stun
 -- Totem Guard
 (25262, 4045, 1), -- Resist Full Magic Attack
-(25262, 4408, 1), -- HP Increase (1x)
-(25262, 4409, 1), -- MP Increase (1x)
-(25262, 4410, 11), -- Average P. Atk.
-(25262, 4411, 11), -- Average M. Atk.
-(25262, 4412, 11), -- Average P. Def.
-(25262, 4413, 11), -- Average M. Def.
-(25262, 4414, 2), -- Standard Type
-(25262, 4415, 7), -- Daggers
-(25262, 4416, 6), -- Humanoids
+(25262, 4408, 1), -- HP Modifiers
+(25262, 4409, 1), -- MP Modifiers
+(25262, 4410, 11), -- P. Atk. Modifiers
+(25262, 4411, 11), -- M. Atk. Modifiers
+(25262, 4412, 11), -- P. Def. Modifiers
+(25262, 4413, 11), -- M. Def. Modifiers
+(25262, 4414, 2), -- Armor Type
+(25262, 4415, 7), -- Weapon Type
+(25262, 4416, 6), -- Races
 -- Kernon's Faithful Servant Kelone
 (25263, 4045, 1), -- Resist Full Magic Attack
 (25263, 4197, 6), -- Hold
-(25263, 4408, 1), -- HP Increase (1x)
-(25263, 4409, 1), -- MP Increase (1x)
-(25263, 4410, 11), -- Average P. Atk.
-(25263, 4411, 11), -- Average M. Atk.
-(25263, 4412, 11), -- Average P. Def.
-(25263, 4413, 11), -- Average M. Def.
-(25263, 4414, 3), -- Light Armor Type
-(25263, 4415, 5), -- Blunt Weapons
-(25263, 4416, 3), -- Beasts
+(25263, 4408, 1), -- HP Modifiers
+(25263, 4409, 1), -- MP Modifiers
+(25263, 4410, 11), -- P. Atk. Modifiers
+(25263, 4411, 11), -- M. Atk. Modifiers
+(25263, 4412, 11), -- P. Def. Modifiers
+(25263, 4413, 11), -- M. Def. Modifiers
+(25263, 4414, 3), -- Armor Type
+(25263, 4415, 5), -- Weapon Type
+(25263, 4416, 3), -- Races
 (25263, 4494, 1), -- Raid Boss
 (25263, 4887, 1), -- Raid Boss - Level 67
 -- Kelone's Assassin
 (25264, 4045, 1), -- Resist Full Magic Attack
-(25264, 4191, 6), -- Wind Strike
+(25264, 4191, 6), -- BOSS Wind Strike
 (25264, 4204, 6), -- Bleed
-(25264, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25264, 4274, 1), -- Blunt Weapon Weak Point
-(25264, 4408, 1), -- HP Increase (1x)
-(25264, 4409, 1), -- MP Increase (1x)
-(25264, 4410, 11), -- Average P. Atk.
-(25264, 4411, 11), -- Average M. Atk.
-(25264, 4412, 11), -- Average P. Def.
-(25264, 4413, 11), -- Average M. Def.
-(25264, 4414, 2), -- Standard Type
-(25264, 4415, 7), -- Daggers
-(25264, 4416, 1), -- Undead
+(25264, 4273, 3), -- Resist Dagger
+(25264, 4274, 1), -- Blunt Attack Weak Point
+(25264, 4408, 1), -- HP Modifiers
+(25264, 4409, 1), -- MP Modifiers
+(25264, 4410, 11), -- P. Atk. Modifiers
+(25264, 4411, 11), -- M. Atk. Modifiers
+(25264, 4412, 11), -- P. Def. Modifiers
+(25264, 4413, 11), -- M. Def. Modifiers
+(25264, 4414, 2), -- Armor Type
+(25264, 4415, 7), -- Weapon Type
+(25264, 4416, 1), -- Races
 -- Kelone's Secret Knight
 (25265, 4045, 1), -- Resist Full Magic Attack
-(25265, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(25265, 4408, 1), -- HP Increase (1x)
-(25265, 4409, 1), -- MP Increase (1x)
-(25265, 4410, 11), -- Average P. Atk.
-(25265, 4411, 11), -- Average M. Atk.
-(25265, 4412, 11), -- Average P. Def.
-(25265, 4413, 11), -- Average M. Def.
-(25265, 4414, 2), -- Standard Type
-(25265, 4415, 3), -- One-handed Sword
-(25265, 4416, 1), -- Undead
+(25265, 4276, 1), -- Archery Attack Weak Point
+(25265, 4408, 1), -- HP Modifiers
+(25265, 4409, 1), -- MP Modifiers
+(25265, 4410, 11), -- P. Atk. Modifiers
+(25265, 4411, 11), -- M. Atk. Modifiers
+(25265, 4412, 11), -- P. Def. Modifiers
+(25265, 4413, 11), -- M. Def. Modifiers
+(25265, 4414, 2), -- Armor Type
+(25265, 4415, 3), -- Weapon Type
+(25265, 4416, 1), -- Races
 (25265, 4725, 6), -- Stun
 -- Bloody Empress Decarbia
 (25266, 4045, 1), -- Resist Full Magic Attack
 (25266, 4185, 8), -- Sleep
 (25266, 4188, 8), -- Bleed
-(25266, 4192, 8), -- Vampiric Touch
-(25266, 4408, 1), -- HP Increase (1x)
-(25266, 4409, 1), -- MP Increase (1x)
-(25266, 4410, 11), -- Average P. Atk.
-(25266, 4411, 11), -- Average M. Atk.
-(25266, 4412, 11), -- Average P. Def.
-(25266, 4413, 11), -- Average M. Def.
-(25266, 4414, 3), -- Light Armor Type
-(25266, 4415, 1), -- Bare Hands
-(25266, 4416, 9), -- Demons
+(25266, 4192, 8), -- BOSS HP Drain
+(25266, 4408, 1), -- HP Modifiers
+(25266, 4409, 1), -- MP Modifiers
+(25266, 4410, 11), -- P. Atk. Modifiers
+(25266, 4411, 11), -- M. Atk. Modifiers
+(25266, 4412, 11), -- P. Def. Modifiers
+(25266, 4413, 11), -- M. Def. Modifiers
+(25266, 4414, 3), -- Armor Type
+(25266, 4415, 1), -- Weapon Type
+(25266, 4416, 9), -- Races
 (25266, 4494, 1), -- Raid Boss
 (25266, 4888, 1), -- Raid Boss - Level 75
 -- Decarbia's Royal Guard
 (25267, 4045, 1), -- Resist Full Magic Attack
-(25267, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25267, 4274, 1), -- Blunt Weapon Weak Point
-(25267, 4408, 1), -- HP Increase (1x)
-(25267, 4409, 1), -- MP Increase (1x)
-(25267, 4410, 11), -- Average P. Atk.
-(25267, 4411, 11), -- Average M. Atk.
-(25267, 4412, 11), -- Average P. Def.
-(25267, 4413, 11), -- Average M. Def.
-(25267, 4414, 2), -- Standard Type
-(25267, 4415, 3), -- One-handed Sword
-(25267, 4416, 1), -- Undead
+(25267, 4273, 3), -- Resist Dagger
+(25267, 4274, 1), -- Blunt Attack Weak Point
+(25267, 4408, 1), -- HP Modifiers
+(25267, 4409, 1), -- MP Modifiers
+(25267, 4410, 11), -- P. Atk. Modifiers
+(25267, 4411, 11), -- M. Atk. Modifiers
+(25267, 4412, 11), -- P. Def. Modifiers
+(25267, 4413, 11), -- M. Def. Modifiers
+(25267, 4414, 2), -- Armor Type
+(25267, 4415, 3), -- Weapon Type
+(25267, 4416, 1), -- Races
 -- Decarbia's Escort
 (25268, 4045, 1), -- Resist Full Magic Attack
-(25268, 4170, 7), -- Mortal Blow
-(25268, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25268, 4274, 1), -- Blunt Weapon Weak Point
-(25268, 4408, 1), -- HP Increase (1x)
-(25268, 4409, 1), -- MP Increase (1x)
-(25268, 4410, 11), -- Average P. Atk.
-(25268, 4411, 11), -- Average M. Atk.
-(25268, 4412, 11), -- Average P. Def.
-(25268, 4413, 11), -- Average M. Def.
-(25268, 4414, 2), -- Standard Type
-(25268, 4415, 7), -- Daggers
-(25268, 4416, 1), -- Undead
+(25268, 4170, 7), -- BOSS Mortal Blow
+(25268, 4273, 3), -- Resist Dagger
+(25268, 4274, 1), -- Blunt Attack Weak Point
+(25268, 4408, 1), -- HP Modifiers
+(25268, 4409, 1), -- MP Modifiers
+(25268, 4410, 11), -- P. Atk. Modifiers
+(25268, 4411, 11), -- M. Atk. Modifiers
+(25268, 4412, 11), -- P. Def. Modifiers
+(25268, 4413, 11), -- M. Def. Modifiers
+(25268, 4414, 2), -- Armor Type
+(25268, 4415, 7), -- Weapon Type
+(25268, 4416, 1), -- Races
 -- Beast Lord Behemoth
 (25269, 4045, 1), -- Resist Full Magic Attack
-(25269, 4408, 1), -- HP Increase (1x)
-(25269, 4409, 1), -- MP Increase (1x)
-(25269, 4410, 11), -- Average P. Atk.
-(25269, 4411, 11), -- Average M. Atk.
-(25269, 4412, 11), -- Average P. Def.
-(25269, 4413, 11), -- Average M. Def.
-(25269, 4414, 2), -- Standard Type
-(25269, 4415, 1), -- Bare Hands
-(25269, 4416, 11), -- Giants
+(25269, 4408, 1), -- HP Modifiers
+(25269, 4409, 1), -- MP Modifiers
+(25269, 4410, 11), -- P. Atk. Modifiers
+(25269, 4411, 11), -- M. Atk. Modifiers
+(25269, 4412, 11), -- P. Def. Modifiers
+(25269, 4413, 11), -- M. Def. Modifiers
+(25269, 4414, 2), -- Armor Type
+(25269, 4415, 1), -- Weapon Type
+(25269, 4416, 11), -- Races
 (25269, 4494, 1), -- Raid Boss
 (25269, 4744, 7), -- Stun
 (25269, 4889, 1), -- Raid Boss - Level 70
 -- Behemoth Javeliner
 (25270, 4045, 1), -- Resist Full Magic Attack
-(25270, 4408, 1), -- HP Increase (1x)
-(25270, 4409, 1), -- MP Increase (1x)
-(25270, 4410, 11), -- Average P. Atk.
-(25270, 4411, 11), -- Average M. Atk.
-(25270, 4412, 11), -- Average P. Def.
-(25270, 4413, 11), -- Average M. Def.
-(25270, 4414, 3), -- Light Armor Type
-(25270, 4415, 9), -- Bows
-(25270, 4416, 6), -- Humanoids
-(25270, 4774, 7), -- Spear Attack
+(25270, 4408, 1), -- HP Modifiers
+(25270, 4409, 1), -- MP Modifiers
+(25270, 4410, 11), -- P. Atk. Modifiers
+(25270, 4411, 11), -- M. Atk. Modifiers
+(25270, 4412, 11), -- P. Def. Modifiers
+(25270, 4413, 11), -- M. Def. Modifiers
+(25270, 4414, 3), -- Armor Type
+(25270, 4415, 9), -- Weapon Type
+(25270, 4416, 6), -- Races
+(25270, 4774, 7), -- BOSS Spear Attack
 -- Behemoth Flare
 (25271, 4045, 1), -- Resist Full Magic Attack
-(25271, 4408, 1), -- HP Increase (1x)
-(25271, 4409, 1), -- MP Increase (1x)
-(25271, 4410, 11), -- Average P. Atk.
-(25271, 4411, 11), -- Average M. Atk.
-(25271, 4412, 11), -- Average P. Def.
-(25271, 4413, 11), -- Average M. Def.
-(25271, 4414, 2), -- Standard Type
-(25271, 4415, 5), -- Blunt Weapons
-(25271, 4416, 2), -- Magic Creatures
+(25271, 4408, 1), -- HP Modifiers
+(25271, 4409, 1), -- MP Modifiers
+(25271, 4410, 11), -- P. Atk. Modifiers
+(25271, 4411, 11), -- M. Atk. Modifiers
+(25271, 4412, 11), -- P. Def. Modifiers
+(25271, 4413, 11), -- M. Def. Modifiers
+(25271, 4414, 2), -- Armor Type
+(25271, 4415, 5), -- Weapon Type
+(25271, 4416, 2), -- Races
 -- Partisan Leader Talakin
 (25272, 4045, 1), -- Resist Full Magic Attack
 (25272, 4172, 2), -- Stun
-(25272, 4174, 2), -- Shield
-(25272, 4177, 2), -- Cancel
-(25272, 4408, 1), -- HP Increase (1x)
-(25272, 4409, 1), -- MP Increase (1x)
-(25272, 4410, 11), -- Average P. Atk.
-(25272, 4411, 11), -- Average M. Atk.
-(25272, 4412, 11), -- Average P. Def.
-(25272, 4413, 11), -- Average M. Def.
-(25272, 4414, 2), -- Standard Type
-(25272, 4415, 5), -- Blunt Weapons
-(25272, 4416, 6), -- Humanoids
+(25272, 4174, 2), -- BOSS Shield
+(25272, 4177, 2), -- BOSS Cancel Magic
+(25272, 4408, 1), -- HP Modifiers
+(25272, 4409, 1), -- MP Modifiers
+(25272, 4410, 11), -- P. Atk. Modifiers
+(25272, 4411, 11), -- M. Atk. Modifiers
+(25272, 4412, 11), -- P. Def. Modifiers
+(25272, 4413, 11), -- M. Def. Modifiers
+(25272, 4414, 2), -- Armor Type
+(25272, 4415, 5), -- Weapon Type
+(25272, 4416, 6), -- Races
 (25272, 4494, 1), -- Raid Boss
-(25272, 4721, 2), -- Power Strike
+(25272, 4721, 2), -- BOSS Strike
 (25272, 4890, 1), -- Raid Boss - Level 28
 -- Carnamakos
 (25273, 4045, 1), -- Resist Full Magic Attack
 (25273, 4197, 5), -- Hold
-(25273, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25273, 4274, 1), -- Blunt Weapon Weak Point
-(25273, 4408, 1), -- HP Increase (1x)
-(25273, 4409, 1), -- MP Increase (1x)
-(25273, 4410, 11), -- Average P. Atk.
-(25273, 4411, 11), -- Average M. Atk.
-(25273, 4412, 11), -- Average P. Def.
-(25273, 4413, 11), -- Average M. Def.
-(25273, 4414, 2), -- Standard Type
-(25273, 4415, 5), -- Blunt Weapons
-(25273, 4416, 2), -- Magic Creatures
+(25273, 4273, 3), -- Resist Dagger
+(25273, 4274, 1), -- Blunt Attack Weak Point
+(25273, 4408, 1), -- HP Modifiers
+(25273, 4409, 1), -- MP Modifiers
+(25273, 4410, 11), -- P. Atk. Modifiers
+(25273, 4411, 11), -- M. Atk. Modifiers
+(25273, 4412, 11), -- P. Def. Modifiers
+(25273, 4413, 11), -- M. Def. Modifiers
+(25273, 4414, 2), -- Armor Type
+(25273, 4415, 5), -- Weapon Type
+(25273, 4416, 2), -- Races
 (25273, 4494, 1), -- Raid Boss
 (25273, 4891, 1), -- Raid Boss - Level 50
 -- Carnabarun
 (25274, 4045, 1), -- Resist Full Magic Attack
-(25274, 4191, 4), -- Wind Strike
+(25274, 4191, 4), -- BOSS Wind Strike
 (25274, 4198, 4), -- Poison
-(25274, 4408, 1), -- HP Increase (1x)
-(25274, 4409, 1), -- MP Increase (1x)
-(25274, 4410, 11), -- Average P. Atk.
-(25274, 4411, 11), -- Average M. Atk.
-(25274, 4412, 11), -- Average P. Def.
-(25274, 4413, 11), -- Average M. Def.
-(25274, 4414, 3), -- Light Armor Type
-(25274, 4415, 5), -- Blunt Weapons
-(25274, 4416, 2), -- Magic Creatures
+(25274, 4408, 1), -- HP Modifiers
+(25274, 4409, 1), -- MP Modifiers
+(25274, 4410, 11), -- P. Atk. Modifiers
+(25274, 4411, 11), -- M. Atk. Modifiers
+(25274, 4412, 11), -- P. Def. Modifiers
+(25274, 4413, 11), -- M. Def. Modifiers
+(25274, 4414, 3), -- Armor Type
+(25274, 4415, 5), -- Weapon Type
+(25274, 4416, 2), -- Races
 -- Carnassiud
 (25275, 4045, 1), -- Resist Full Magic Attack
-(25275, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(25275, 4408, 1), -- HP Increase (1x)
-(25275, 4409, 1), -- MP Increase (1x)
-(25275, 4410, 11), -- Average P. Atk.
-(25275, 4411, 11), -- Average M. Atk.
-(25275, 4412, 11), -- Average P. Def.
-(25275, 4413, 11), -- Average M. Def.
-(25275, 4414, 3), -- Light Armor Type
-(25275, 4415, 5), -- Blunt Weapons
-(25275, 4416, 2), -- Magic Creatures
-(25275, 4739, 4), -- Power Strike
+(25275, 4276, 1), -- Archery Attack Weak Point
+(25275, 4408, 1), -- HP Modifiers
+(25275, 4409, 1), -- MP Modifiers
+(25275, 4410, 11), -- P. Atk. Modifiers
+(25275, 4411, 11), -- M. Atk. Modifiers
+(25275, 4412, 11), -- P. Def. Modifiers
+(25275, 4413, 11), -- M. Def. Modifiers
+(25275, 4414, 3), -- Armor Type
+(25275, 4415, 5), -- Weapon Type
+(25275, 4416, 2), -- Races
+(25275, 4739, 4), -- BOSS Strike
 -- Death Lord Ipos
 (25276, 4045, 1), -- Resist Full Magic Attack
-(25276, 4168, 8), -- Power Strike
+(25276, 4168, 8), -- BOSS Power Strike
 (25276, 4172, 8), -- Stun
-(25276, 4176, 8), -- Reflect Damage
-(25276, 4177, 8), -- Cancel
-(25276, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25276, 4274, 1), -- Blunt Weapon Weak Point
-(25276, 4408, 1), -- HP Increase (1x)
-(25276, 4409, 1), -- MP Increase (1x)
-(25276, 4410, 11), -- Average P. Atk.
-(25276, 4411, 11), -- Average M. Atk.
-(25276, 4412, 11), -- Average P. Def.
-(25276, 4413, 11), -- Average M. Def.
-(25276, 4414, 2), -- Standard Type
-(25276, 4415, 3), -- One-handed Sword
-(25276, 4416, 1), -- Undead
+(25276, 4176, 8), -- BOSS Reflect Damage
+(25276, 4177, 8), -- BOSS Cancel Magic
+(25276, 4273, 3), -- Resist Dagger
+(25276, 4274, 1), -- Blunt Attack Weak Point
+(25276, 4408, 1), -- HP Modifiers
+(25276, 4409, 1), -- MP Modifiers
+(25276, 4410, 11), -- P. Atk. Modifiers
+(25276, 4411, 11), -- M. Atk. Modifiers
+(25276, 4412, 11), -- P. Def. Modifiers
+(25276, 4413, 11), -- M. Def. Modifiers
+(25276, 4414, 2), -- Armor Type
+(25276, 4415, 3), -- Weapon Type
+(25276, 4416, 1), -- Races
 (25276, 4494, 1), -- Raid Boss
 (25276, 4892, 1), -- Raid Boss - Level 75
 -- Lilith's Witch Marilion
 (25277, 4045, 1), -- Resist Full Magic Attack
-(25277, 4178, 5), -- Flame Strike
-(25277, 4408, 1), -- HP Increase (1x)
-(25277, 4409, 1), -- MP Increase (1x)
-(25277, 4410, 11), -- Average P. Atk.
-(25277, 4411, 11), -- Average M. Atk.
-(25277, 4412, 11), -- Average P. Def.
-(25277, 4413, 11), -- Average M. Def.
-(25277, 4414, 3), -- Light Armor Type
-(25277, 4415, 5), -- Blunt Weapons
-(25277, 4416, 9), -- Demons
+(25277, 4178, 5), -- BOSS Flame Strike
+(25277, 4408, 1), -- HP Modifiers
+(25277, 4409, 1), -- MP Modifiers
+(25277, 4410, 11), -- P. Atk. Modifiers
+(25277, 4411, 11), -- M. Atk. Modifiers
+(25277, 4412, 11), -- P. Def. Modifiers
+(25277, 4413, 11), -- M. Def. Modifiers
+(25277, 4414, 3), -- Armor Type
+(25277, 4415, 5), -- Weapon Type
+(25277, 4416, 9), -- Races
 (25277, 4494, 1), -- Raid Boss
 (25277, 4893, 1), -- Raid Boss - Level 50
 -- Dead Soul of Stigma
 (25278, 4045, 1), -- Resist Full Magic Attack
-(25278, 4211, 4), -- Might
-(25278, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(25278, 4408, 1), -- HP Increase (1x)
-(25278, 4409, 1), -- MP Increase (1x)
-(25278, 4410, 11), -- Average P. Atk.
-(25278, 4411, 11), -- Average M. Atk.
-(25278, 4412, 11), -- Average P. Def.
-(25278, 4413, 11), -- Average M. Def.
-(25278, 4414, 3), -- Light Armor Type
-(25278, 4415, 5), -- Blunt Weapons
-(25278, 4416, 2), -- Magic Creatures
-(25278, 4779, 4), -- Heal
+(25278, 4211, 4), -- BOSS Might
+(25278, 4276, 1), -- Archery Attack Weak Point
+(25278, 4408, 1), -- HP Modifiers
+(25278, 4409, 1), -- MP Modifiers
+(25278, 4410, 11), -- P. Atk. Modifiers
+(25278, 4411, 11), -- M. Atk. Modifiers
+(25278, 4412, 11), -- P. Def. Modifiers
+(25278, 4413, 11), -- M. Def. Modifiers
+(25278, 4414, 3), -- Armor Type
+(25278, 4415, 5), -- Weapon Type
+(25278, 4416, 2), -- Races
+(25278, 4779, 4), -- BOSS Heal
 -- Evil Spirit of Stigma
 (25279, 4045, 1), -- Resist Full Magic Attack
-(25279, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(25279, 4408, 1), -- HP Increase (1x)
-(25279, 4409, 1), -- MP Increase (1x)
-(25279, 4410, 11), -- Average P. Atk.
-(25279, 4411, 11), -- Average M. Atk.
-(25279, 4412, 11), -- Average P. Def.
-(25279, 4413, 11), -- Average M. Def.
-(25279, 4414, 3), -- Light Armor Type
-(25279, 4415, 5), -- Blunt Weapons
-(25279, 4416, 2), -- Magic Creatures
+(25279, 4276, 1), -- Archery Attack Weak Point
+(25279, 4408, 1), -- HP Modifiers
+(25279, 4409, 1), -- MP Modifiers
+(25279, 4410, 11), -- P. Atk. Modifiers
+(25279, 4411, 11), -- M. Atk. Modifiers
+(25279, 4412, 11), -- P. Def. Modifiers
+(25279, 4413, 11), -- M. Def. Modifiers
+(25279, 4414, 3), -- Armor Type
+(25279, 4415, 5), -- Weapon Type
+(25279, 4416, 2), -- Races
 -- Pagan Watcher Cerberon
 (25280, 4045, 1), -- Resist Full Magic Attack
-(25280, 4175, 5), -- Haste
-(25280, 4177, 5), -- Cancel
-(25280, 4408, 1), -- HP Increase (1x)
-(25280, 4409, 1), -- MP Increase (1x)
-(25280, 4410, 11), -- Average P. Atk.
-(25280, 4411, 11), -- Average M. Atk.
-(25280, 4412, 11), -- Average P. Def.
-(25280, 4413, 11), -- Average M. Def.
-(25280, 4414, 2), -- Standard Type
-(25280, 4415, 3), -- One-handed Sword
-(25280, 4416, 8), -- Angels
+(25280, 4175, 5), -- BOSS Haste
+(25280, 4177, 5), -- BOSS Cancel Magic
+(25280, 4408, 1), -- HP Modifiers
+(25280, 4409, 1), -- MP Modifiers
+(25280, 4410, 11), -- P. Atk. Modifiers
+(25280, 4411, 11), -- M. Atk. Modifiers
+(25280, 4412, 11), -- P. Def. Modifiers
+(25280, 4413, 11), -- M. Def. Modifiers
+(25280, 4414, 2), -- Armor Type
+(25280, 4415, 3), -- Weapon Type
+(25280, 4416, 8), -- Races
 (25280, 4494, 1), -- Raid Boss
-(25280, 4719, 5), -- Power Strike
-(25280, 4734, 5), -- Whirlwind
+(25280, 4719, 5), -- BOSS Strike
+(25280, 4734, 5), -- BOSS Spinning Slash
 (25280, 4894, 1), -- Raid Boss - Level 55
 -- Anakim's Nemesis Zakaron
 (25281, 4045, 1), -- Resist Full Magic Attack
-(25281, 4175, 7), -- Haste
-(25281, 4177, 7), -- Cancel
-(25281, 4408, 1), -- HP Increase (1x)
-(25281, 4409, 1), -- MP Increase (1x)
-(25281, 4410, 11), -- Average P. Atk.
-(25281, 4411, 11), -- Average M. Atk.
-(25281, 4412, 11), -- Average P. Def.
-(25281, 4413, 11), -- Average M. Def.
-(25281, 4414, 2), -- Standard Type
-(25281, 4415, 3), -- One-handed Sword
-(25281, 4416, 9), -- Demons
+(25281, 4175, 7), -- BOSS Haste
+(25281, 4177, 7), -- BOSS Cancel Magic
+(25281, 4408, 1), -- HP Modifiers
+(25281, 4409, 1), -- MP Modifiers
+(25281, 4410, 11), -- P. Atk. Modifiers
+(25281, 4411, 11), -- M. Atk. Modifiers
+(25281, 4412, 11), -- P. Def. Modifiers
+(25281, 4413, 11), -- M. Def. Modifiers
+(25281, 4414, 2), -- Armor Type
+(25281, 4415, 3), -- Weapon Type
+(25281, 4416, 9), -- Races
 (25281, 4494, 1), -- Raid Boss
 (25281, 4724, 7), -- Stun
-(25281, 4734, 7), -- Whirlwind
+(25281, 4734, 7), -- BOSS Spinning Slash
 (25281, 4895, 1), -- Raid Boss - Level 70
 -- Death Lord Shax
 (25282, 4045, 1), -- Resist Full Magic Attack
-(25282, 4170, 8), -- Mortal Blow
+(25282, 4170, 8), -- BOSS Mortal Blow
 (25282, 4172, 8), -- Stun
-(25282, 4174, 8), -- Shield
-(25282, 4177, 8), -- Cancel
-(25282, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25282, 4274, 1), -- Blunt Weapon Weak Point
-(25282, 4408, 1), -- HP Increase (1x)
-(25282, 4409, 1), -- MP Increase (1x)
-(25282, 4410, 11), -- Average P. Atk.
-(25282, 4411, 11), -- Average M. Atk.
-(25282, 4412, 11), -- Average P. Def.
-(25282, 4413, 11), -- Average M. Def.
-(25282, 4414, 2), -- Standard Type
-(25282, 4415, 3), -- One-handed Sword
-(25282, 4416, 1), -- Undead
+(25282, 4174, 8), -- BOSS Shield
+(25282, 4177, 8), -- BOSS Cancel Magic
+(25282, 4273, 3), -- Resist Dagger
+(25282, 4274, 1), -- Blunt Attack Weak Point
+(25282, 4408, 1), -- HP Modifiers
+(25282, 4409, 1), -- MP Modifiers
+(25282, 4410, 11), -- P. Atk. Modifiers
+(25282, 4411, 11), -- M. Atk. Modifiers
+(25282, 4412, 11), -- P. Def. Modifiers
+(25282, 4413, 11), -- M. Def. Modifiers
+(25282, 4414, 2), -- Armor Type
+(25282, 4415, 3), -- Weapon Type
+(25282, 4416, 1), -- Races
 (25282, 4494, 1), -- Raid Boss
 (25282, 4896, 1), -- Raid Boss - Level 75
 -- Lilith
 (25283, 4045, 1), -- Resist Full Magic Attack
 (25283, 4197, 9), -- Hold
-(25283, 4408, 1), -- HP Increase (1x)
-(25283, 4409, 1), -- MP Increase (1x)
-(25283, 4410, 11), -- Average P. Atk.
-(25283, 4411, 11), -- Average M. Atk.
-(25283, 4412, 11), -- Average P. Def.
-(25283, 4413, 11), -- Average M. Def.
-(25283, 4414, 2), -- Standard Type
-(25283, 4415, 3), -- One-handed Sword
-(25283, 4416, 9), -- Demons
+(25283, 4408, 1), -- HP Modifiers
+(25283, 4409, 1), -- MP Modifiers
+(25283, 4410, 11), -- P. Atk. Modifiers
+(25283, 4411, 11), -- M. Atk. Modifiers
+(25283, 4412, 11), -- P. Def. Modifiers
+(25283, 4413, 11), -- M. Def. Modifiers
+(25283, 4414, 2), -- Armor Type
+(25283, 4415, 3), -- Weapon Type
+(25283, 4416, 9), -- Races
 (25283, 4494, 1), -- Raid Boss
 (25283, 4897, 1), -- Raid Boss - Level 80
 -- Lilith's Agent
 (25284, 4045, 1), -- Resist Full Magic Attack
 (25284, 4198, 8), -- Poison
-(25284, 4316, 8), -- Drain Health
-(25284, 4408, 1), -- HP Increase (1x)
-(25284, 4409, 1), -- MP Increase (1x)
-(25284, 4410, 11), -- Average P. Atk.
-(25284, 4411, 11), -- Average M. Atk.
-(25284, 4412, 11), -- Average P. Def.
-(25284, 4413, 11), -- Average M. Def.
-(25284, 4414, 2), -- Standard Type
-(25284, 4415, 5), -- Blunt Weapons
-(25284, 4416, 9), -- Demons
+(25284, 4316, 8), -- Boss Lilim Drain
+(25284, 4408, 1), -- HP Modifiers
+(25284, 4409, 1), -- MP Modifiers
+(25284, 4410, 11), -- P. Atk. Modifiers
+(25284, 4411, 11), -- M. Atk. Modifiers
+(25284, 4412, 11), -- P. Def. Modifiers
+(25284, 4413, 11), -- M. Def. Modifiers
+(25284, 4414, 2), -- Armor Type
+(25284, 4415, 5), -- Weapon Type
+(25284, 4416, 9), -- Races
 -- Lilith's Escort
 (25285, 4045, 1), -- Resist Full Magic Attack
-(25285, 4179, 8), -- Power Strike
-(25285, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25285, 4408, 1), -- HP Increase (1x)
-(25285, 4409, 1), -- MP Increase (1x)
-(25285, 4410, 11), -- Average P. Atk.
-(25285, 4411, 11), -- Average M. Atk.
-(25285, 4412, 11), -- Average P. Def.
-(25285, 4413, 11), -- Average M. Def.
-(25285, 4414, 2), -- Standard Type
-(25285, 4415, 3), -- One-handed Sword
-(25285, 4416, 9), -- Demons
+(25285, 4179, 8), -- BOSS Power Strike
+(25285, 4273, 3), -- Resist Dagger
+(25285, 4408, 1), -- HP Modifiers
+(25285, 4409, 1), -- MP Modifiers
+(25285, 4410, 11), -- P. Atk. Modifiers
+(25285, 4411, 11), -- M. Atk. Modifiers
+(25285, 4412, 11), -- P. Def. Modifiers
+(25285, 4413, 11), -- M. Def. Modifiers
+(25285, 4414, 2), -- Armor Type
+(25285, 4415, 3), -- Weapon Type
+(25285, 4416, 9), -- Races
 -- Anakim
 (25286, 4045, 1), -- Resist Full Magic Attack
-(25286, 4314, 9), -- Divine Light Burst
-(25286, 4408, 1), -- HP Increase (1x)
-(25286, 4409, 1), -- MP Increase (1x)
-(25286, 4410, 11), -- Average P. Atk.
-(25286, 4411, 11), -- Average M. Atk.
-(25286, 4412, 11), -- Average P. Def.
-(25286, 4413, 11), -- Average M. Def.
-(25286, 4414, 2), -- Standard Type
-(25286, 4415, 3), -- One-handed Sword
-(25286, 4416, 8), -- Angels
+(25286, 4314, 9), -- BOSS Holy Light Burst
+(25286, 4408, 1), -- HP Modifiers
+(25286, 4409, 1), -- MP Modifiers
+(25286, 4410, 11), -- P. Atk. Modifiers
+(25286, 4411, 11), -- M. Atk. Modifiers
+(25286, 4412, 11), -- P. Def. Modifiers
+(25286, 4413, 11), -- M. Def. Modifiers
+(25286, 4414, 2), -- Armor Type
+(25286, 4415, 3), -- Weapon Type
+(25286, 4416, 8), -- Races
 (25286, 4494, 1), -- Raid Boss
 (25286, 4898, 1), -- Raid Boss - Level 80
 -- Anakim's Guardian
 (25287, 4045, 1), -- Resist Full Magic Attack
-(25287, 4209, 8), -- Heal
-(25287, 4212, 8), -- Shield
-(25287, 4408, 1), -- HP Increase (1x)
-(25287, 4409, 1), -- MP Increase (1x)
-(25287, 4410, 11), -- Average P. Atk.
-(25287, 4411, 11), -- Average M. Atk.
-(25287, 4412, 11), -- Average P. Def.
-(25287, 4413, 11), -- Average M. Def.
-(25287, 4414, 2), -- Standard Type
-(25287, 4415, 5), -- Blunt Weapons
-(25287, 4416, 8), -- Angels
+(25287, 4209, 8), -- BOSS Heal
+(25287, 4212, 8), -- BOSS Shield
+(25287, 4408, 1), -- HP Modifiers
+(25287, 4409, 1), -- MP Modifiers
+(25287, 4410, 11), -- P. Atk. Modifiers
+(25287, 4411, 11), -- M. Atk. Modifiers
+(25287, 4412, 11), -- P. Def. Modifiers
+(25287, 4413, 11), -- M. Def. Modifiers
+(25287, 4414, 2), -- Armor Type
+(25287, 4415, 5), -- Weapon Type
+(25287, 4416, 8), -- Races
 -- Anakim's Royal Guard
 (25288, 4045, 1), -- Resist Full Magic Attack
-(25288, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25288, 4408, 1), -- HP Increase (1x)
-(25288, 4409, 1), -- MP Increase (1x)
-(25288, 4410, 11), -- Average P. Atk.
-(25288, 4411, 11), -- Average M. Atk.
-(25288, 4412, 11), -- Average P. Def.
-(25288, 4413, 11), -- Average M. Def.
-(25288, 4414, 2), -- Standard Type
-(25288, 4415, 3), -- One-handed Sword
-(25288, 4416, 8), -- Angels
+(25288, 4273, 3), -- Resist Dagger
+(25288, 4408, 1), -- HP Modifiers
+(25288, 4409, 1), -- MP Modifiers
+(25288, 4410, 11), -- P. Atk. Modifiers
+(25288, 4411, 11), -- M. Atk. Modifiers
+(25288, 4412, 11), -- P. Def. Modifiers
+(25288, 4413, 11), -- M. Def. Modifiers
+(25288, 4414, 2), -- Armor Type
+(25288, 4415, 3), -- Weapon Type
+(25288, 4416, 8), -- Races
 -- Anakim's Executor
 (25289, 4045, 1), -- Resist Full Magic Attack
-(25289, 4408, 1), -- HP Increase (1x)
-(25289, 4409, 1), -- MP Increase (1x)
-(25289, 4410, 11), -- Average P. Atk.
-(25289, 4411, 11), -- Average M. Atk.
-(25289, 4412, 11), -- Average P. Def.
-(25289, 4413, 11), -- Average M. Def.
-(25289, 4414, 2), -- Standard Type
-(25289, 4415, 3), -- One-handed Sword
-(25289, 4416, 8), -- Angels
+(25289, 4408, 1), -- HP Modifiers
+(25289, 4409, 1), -- MP Modifiers
+(25289, 4410, 11), -- P. Atk. Modifiers
+(25289, 4411, 11), -- M. Atk. Modifiers
+(25289, 4412, 11), -- P. Def. Modifiers
+(25289, 4413, 11), -- M. Def. Modifiers
+(25289, 4414, 2), -- Armor Type
+(25289, 4415, 3), -- Weapon Type
+(25289, 4416, 8), -- Races
 -- Daimon the White-Eyed
 (25290, 4045, 1), -- Resist Full Magic Attack
 (25290, 4185, 8), -- Sleep
 (25290, 4190, 8), -- Decrease MP
-(25290, 4192, 8), -- Vampiric Touch
-(25290, 4408, 1), -- HP Increase (1x)
-(25290, 4409, 1), -- MP Increase (1x)
-(25290, 4410, 11), -- Average P. Atk.
-(25290, 4411, 11), -- Average M. Atk.
-(25290, 4412, 11), -- Average P. Def.
-(25290, 4413, 11), -- Average M. Def.
-(25290, 4414, 2), -- Standard Type
-(25290, 4415, 5), -- Blunt Weapons
-(25290, 4416, 2), -- Magic Creatures
+(25290, 4192, 8), -- BOSS HP Drain
+(25290, 4408, 1), -- HP Modifiers
+(25290, 4409, 1), -- MP Modifiers
+(25290, 4410, 11), -- P. Atk. Modifiers
+(25290, 4411, 11), -- M. Atk. Modifiers
+(25290, 4412, 11), -- P. Def. Modifiers
+(25290, 4413, 11), -- M. Def. Modifiers
+(25290, 4414, 2), -- Armor Type
+(25290, 4415, 5), -- Weapon Type
+(25290, 4416, 2), -- Races
 (25290, 4494, 1), -- Raid Boss
 (25290, 4900, 1), -- Raid Boss - Level 78
 -- Family of Daimon
 (25291, 4045, 1), -- Resist Full Magic Attack
-(25291, 4194, 8), -- Aura Burn
+(25291, 4194, 8), -- BOSS Aura Burn
 (25291, 4205, 8), -- Paralysis
-(25291, 4408, 1), -- HP Increase (1x)
-(25291, 4409, 1), -- MP Increase (1x)
-(25291, 4410, 11), -- Average P. Atk.
-(25291, 4411, 11), -- Average M. Atk.
-(25291, 4412, 11), -- Average P. Def.
-(25291, 4413, 11), -- Average M. Def.
-(25291, 4414, 3), -- Light Armor Type
-(25291, 4415, 5), -- Blunt Weapons
-(25291, 4416, 2), -- Magic Creatures
+(25291, 4408, 1), -- HP Modifiers
+(25291, 4409, 1), -- MP Modifiers
+(25291, 4410, 11), -- P. Atk. Modifiers
+(25291, 4411, 11), -- M. Atk. Modifiers
+(25291, 4412, 11), -- P. Def. Modifiers
+(25291, 4413, 11), -- M. Def. Modifiers
+(25291, 4414, 3), -- Armor Type
+(25291, 4415, 5), -- Weapon Type
+(25291, 4416, 2), -- Races
 -- Family of Daimon
 (25292, 4045, 1), -- Resist Full Magic Attack
-(25292, 4209, 8), -- Heal
-(25292, 4212, 8), -- Shield
-(25292, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(25292, 4408, 1), -- HP Increase (1x)
-(25292, 4409, 1), -- MP Increase (1x)
-(25292, 4410, 11), -- Average P. Atk.
-(25292, 4411, 11), -- Average M. Atk.
-(25292, 4412, 11), -- Average P. Def.
-(25292, 4413, 11), -- Average M. Def.
-(25292, 4414, 3), -- Light Armor Type
-(25292, 4415, 5), -- Blunt Weapons
-(25292, 4416, 2), -- Magic Creatures
+(25292, 4209, 8), -- BOSS Heal
+(25292, 4212, 8), -- BOSS Shield
+(25292, 4276, 1), -- Archery Attack Weak Point
+(25292, 4408, 1), -- HP Modifiers
+(25292, 4409, 1), -- MP Modifiers
+(25292, 4410, 11), -- P. Atk. Modifiers
+(25292, 4411, 11), -- M. Atk. Modifiers
+(25292, 4412, 11), -- P. Def. Modifiers
+(25292, 4413, 11), -- M. Def. Modifiers
+(25292, 4414, 3), -- Armor Type
+(25292, 4415, 5), -- Weapon Type
+(25292, 4416, 2), -- Races
 -- Hesti Guardian Deity of the Hot Springs
 (25293, 4045, 1), -- Resist Full Magic Attack
 (25293, 4185, 8), -- Sleep
 (25293, 4187, 8), -- Decrease Speed
-(25293, 4194, 8), -- Aura Burn
-(25293, 4408, 1), -- HP Increase (1x)
-(25293, 4409, 1), -- MP Increase (1x)
-(25293, 4410, 11), -- Average P. Atk.
-(25293, 4411, 11), -- Average M. Atk.
-(25293, 4412, 11), -- Average P. Def.
-(25293, 4413, 11), -- Average M. Def.
-(25293, 4414, 2), -- Standard Type
-(25293, 4415, 5), -- Blunt Weapons
-(25293, 4416, 13), -- Fairies
+(25293, 4194, 8), -- BOSS Aura Burn
+(25293, 4408, 1), -- HP Modifiers
+(25293, 4409, 1), -- MP Modifiers
+(25293, 4410, 11), -- P. Atk. Modifiers
+(25293, 4411, 11), -- M. Atk. Modifiers
+(25293, 4412, 11), -- P. Def. Modifiers
+(25293, 4413, 11), -- M. Def. Modifiers
+(25293, 4414, 2), -- Armor Type
+(25293, 4415, 5), -- Weapon Type
+(25293, 4416, 13), -- Races
 (25293, 4494, 1), -- Raid Boss
 (25293, 4901, 1), -- Raid Boss - Level 78
 -- Fighter of Hestia
 (25294, 4045, 1), -- Resist Full Magic Attack
-(25294, 4408, 1), -- HP Increase (1x)
-(25294, 4409, 1), -- MP Increase (1x)
-(25294, 4410, 11), -- Average P. Atk.
-(25294, 4411, 11), -- Average M. Atk.
-(25294, 4412, 11), -- Average P. Def.
-(25294, 4413, 11), -- Average M. Def.
-(25294, 4414, 3), -- Light Armor Type
-(25294, 4415, 1), -- Bare Hands
-(25294, 4416, 11), -- Giants
-(25294, 4740, 8), -- Power Strike
+(25294, 4408, 1), -- HP Modifiers
+(25294, 4409, 1), -- MP Modifiers
+(25294, 4410, 11), -- P. Atk. Modifiers
+(25294, 4411, 11), -- M. Atk. Modifiers
+(25294, 4412, 11), -- P. Def. Modifiers
+(25294, 4413, 11), -- M. Def. Modifiers
+(25294, 4414, 3), -- Armor Type
+(25294, 4415, 1), -- Weapon Type
+(25294, 4416, 11), -- Races
+(25294, 4740, 8), -- BOSS Strike
 -- Follower of Hestia
 (25295, 4045, 1), -- Resist Full Magic Attack
-(25295, 4408, 1), -- HP Increase (1x)
-(25295, 4409, 1), -- MP Increase (1x)
-(25295, 4410, 11), -- Average P. Atk.
-(25295, 4411, 11), -- Average M. Atk.
-(25295, 4412, 11), -- Average P. Def.
-(25295, 4413, 11), -- Average M. Def.
-(25295, 4414, 3), -- Light Armor Type
-(25295, 4415, 1), -- Bare Hands
-(25295, 4416, 11), -- Giants
+(25295, 4408, 1), -- HP Modifiers
+(25295, 4409, 1), -- MP Modifiers
+(25295, 4410, 11), -- P. Atk. Modifiers
+(25295, 4411, 11), -- M. Atk. Modifiers
+(25295, 4412, 11), -- P. Def. Modifiers
+(25295, 4413, 11), -- M. Def. Modifiers
+(25295, 4414, 3), -- Armor Type
+(25295, 4415, 1), -- Weapon Type
+(25295, 4416, 11), -- Races
 -- Icicle Emperor Bumbalump
 (25296, 4045, 1), -- Resist Full Magic Attack
 (25296, 4197, 7), -- Hold
-(25296, 4408, 1), -- HP Increase (1x)
-(25296, 4409, 1), -- MP Increase (1x)
-(25296, 4410, 11), -- Average P. Atk.
-(25296, 4411, 11), -- Average M. Atk.
-(25296, 4412, 11), -- Average P. Def.
-(25296, 4413, 11), -- Average M. Def.
-(25296, 4414, 3), -- Light Armor Type
-(25296, 4415, 1), -- Bare Hands
-(25296, 4416, 11), -- Giants
+(25296, 4408, 1), -- HP Modifiers
+(25296, 4409, 1), -- MP Modifiers
+(25296, 4410, 11), -- P. Atk. Modifiers
+(25296, 4411, 11), -- M. Atk. Modifiers
+(25296, 4412, 11), -- P. Def. Modifiers
+(25296, 4413, 11), -- M. Def. Modifiers
+(25296, 4414, 3), -- Armor Type
+(25296, 4415, 1), -- Weapon Type
+(25296, 4416, 11), -- Races
 (25296, 4494, 1), -- Raid Boss
 (25296, 4902, 1), -- Raid Boss - Level 74
 -- Icicle Giant
 (25297, 4045, 1), -- Resist Full Magic Attack
-(25297, 4196, 7), -- Decrease Speed
+(25297, 4196, 7), -- Decreases Speed
 (25297, 4201, 7), -- Sleep
-(25297, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25297, 4274, 1), -- Blunt Weapon Weak Point
-(25297, 4408, 1), -- HP Increase (1x)
-(25297, 4409, 1), -- MP Increase (1x)
-(25297, 4410, 11), -- Average P. Atk.
-(25297, 4411, 11), -- Average M. Atk.
-(25297, 4412, 11), -- Average P. Def.
-(25297, 4413, 11), -- Average M. Def.
-(25297, 4414, 3), -- Light Armor Type
-(25297, 4415, 1), -- Bare Hands
-(25297, 4416, 2), -- Magic Creatures
+(25297, 4273, 3), -- Resist Dagger
+(25297, 4274, 1), -- Blunt Attack Weak Point
+(25297, 4408, 1), -- HP Modifiers
+(25297, 4409, 1), -- MP Modifiers
+(25297, 4410, 11), -- P. Atk. Modifiers
+(25297, 4411, 11), -- M. Atk. Modifiers
+(25297, 4412, 11), -- P. Def. Modifiers
+(25297, 4413, 11), -- M. Def. Modifiers
+(25297, 4414, 3), -- Armor Type
+(25297, 4415, 1), -- Weapon Type
+(25297, 4416, 2), -- Races
 (25297, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Icicle Giant
 (25298, 4045, 1), -- Resist Full Magic Attack
 (25298, 4169, 7), -- Stun
-(25298, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25298, 4274, 1), -- Blunt Weapon Weak Point
-(25298, 4408, 1), -- HP Increase (1x)
-(25298, 4409, 1), -- MP Increase (1x)
-(25298, 4410, 11), -- Average P. Atk.
-(25298, 4411, 11), -- Average M. Atk.
-(25298, 4412, 11), -- Average P. Def.
-(25298, 4413, 11), -- Average M. Def.
-(25298, 4414, 3), -- Light Armor Type
-(25298, 4415, 1), -- Bare Hands
-(25298, 4416, 2), -- Magic Creatures
+(25298, 4273, 3), -- Resist Dagger
+(25298, 4274, 1), -- Blunt Attack Weak Point
+(25298, 4408, 1), -- HP Modifiers
+(25298, 4409, 1), -- MP Modifiers
+(25298, 4410, 11), -- P. Atk. Modifiers
+(25298, 4411, 11), -- M. Atk. Modifiers
+(25298, 4412, 11), -- P. Def. Modifiers
+(25298, 4413, 11), -- M. Def. Modifiers
+(25298, 4414, 3), -- Armor Type
+(25298, 4415, 1), -- Weapon Type
+(25298, 4416, 2), -- Races
 (25298, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Ketra's Hero Hekaton
 (25299, 4045, 1), -- Resist Full Magic Attack
-(25299, 4408, 1), -- HP Increase (1x)
-(25299, 4409, 1), -- MP Increase (1x)
-(25299, 4410, 11), -- Average P. Atk.
-(25299, 4411, 11), -- Average M. Atk.
-(25299, 4412, 11), -- Average P. Def.
-(25299, 4413, 11), -- Average M. Def.
-(25299, 4414, 2), -- Standard Type
-(25299, 4415, 6), -- Blunt Weapons
-(25299, 4416, 6), -- Humanoids
+(25299, 4408, 1), -- HP Modifiers
+(25299, 4409, 1), -- MP Modifiers
+(25299, 4410, 11), -- P. Atk. Modifiers
+(25299, 4411, 11), -- M. Atk. Modifiers
+(25299, 4412, 11), -- P. Def. Modifiers
+(25299, 4413, 11), -- M. Def. Modifiers
+(25299, 4414, 2), -- Armor Type
+(25299, 4415, 6), -- Weapon Type
+(25299, 4416, 6), -- Races
 (25299, 4494, 1), -- Raid Boss
 (25299, 4746, 9), -- Stun
 (25299, 4903, 1), -- Raid Boss - Level 80
 -- Scout of Hekaton
 (25300, 4045, 1), -- Resist Full Magic Attack
-(25300, 4408, 1), -- HP Increase (1x)
-(25300, 4409, 1), -- MP Increase (1x)
-(25300, 4410, 11), -- Average P. Atk.
-(25300, 4411, 11), -- Average M. Atk.
-(25300, 4412, 11), -- Average P. Def.
-(25300, 4413, 11), -- Average M. Def.
-(25300, 4414, 3), -- Light Armor Type
-(25300, 4415, 9), -- Bows
-(25300, 4416, 6), -- Humanoids
+(25300, 4408, 1), -- HP Modifiers
+(25300, 4409, 1), -- MP Modifiers
+(25300, 4410, 11), -- P. Atk. Modifiers
+(25300, 4411, 11), -- M. Atk. Modifiers
+(25300, 4412, 11), -- P. Def. Modifiers
+(25300, 4413, 11), -- M. Def. Modifiers
+(25300, 4414, 3), -- Armor Type
+(25300, 4415, 9), -- Weapon Type
+(25300, 4416, 6), -- Races
 -- Servant of Hekaton
 (25301, 4045, 1), -- Resist Full Magic Attack
-(25301, 4408, 1), -- HP Increase (1x)
-(25301, 4409, 1), -- MP Increase (1x)
-(25301, 4410, 11), -- Average P. Atk.
-(25301, 4411, 11), -- Average M. Atk.
-(25301, 4412, 11), -- Average P. Def.
-(25301, 4413, 11), -- Average M. Def.
-(25301, 4414, 3), -- Light Armor Type
-(25301, 4415, 7), -- Daggers
-(25301, 4416, 6), -- Humanoids
+(25301, 4408, 1), -- HP Modifiers
+(25301, 4409, 1), -- MP Modifiers
+(25301, 4410, 11), -- P. Atk. Modifiers
+(25301, 4411, 11), -- M. Atk. Modifiers
+(25301, 4412, 11), -- P. Def. Modifiers
+(25301, 4413, 11), -- M. Def. Modifiers
+(25301, 4414, 3), -- Armor Type
+(25301, 4415, 7), -- Weapon Type
+(25301, 4416, 6), -- Races
 -- Ketra's Commander Tayr
 (25302, 4045, 1), -- Resist Full Magic Attack
 (25302, 4197, 9), -- Hold
-(25302, 4408, 1), -- HP Increase (1x)
-(25302, 4409, 1), -- MP Increase (1x)
-(25302, 4410, 11), -- Average P. Atk.
-(25302, 4411, 11), -- Average M. Atk.
-(25302, 4412, 11), -- Average P. Def.
-(25302, 4413, 11), -- Average M. Def.
-(25302, 4414, 2), -- Standard Type
-(25302, 4415, 3), -- One-handed Sword
-(25302, 4416, 6), -- Humanoids
+(25302, 4408, 1), -- HP Modifiers
+(25302, 4409, 1), -- MP Modifiers
+(25302, 4410, 11), -- P. Atk. Modifiers
+(25302, 4411, 11), -- M. Atk. Modifiers
+(25302, 4412, 11), -- P. Def. Modifiers
+(25302, 4413, 11), -- M. Def. Modifiers
+(25302, 4414, 2), -- Armor Type
+(25302, 4415, 3), -- Weapon Type
+(25302, 4416, 6), -- Races
 (25302, 4494, 1), -- Raid Boss
 (25302, 4904, 1), -- Raid Boss - Level 80
 -- Tayr's Aide
 (25303, 4045, 1), -- Resist Full Magic Attack
-(25303, 4195, 9), -- Twister
+(25303, 4195, 9), -- BOSS Twister
 (25303, 4200, 9), -- Decrease Atk. Spd.
-(25303, 4408, 1), -- HP Increase (1x)
-(25303, 4409, 1), -- MP Increase (1x)
-(25303, 4410, 11), -- Average P. Atk.
-(25303, 4411, 11), -- Average M. Atk.
-(25303, 4412, 11), -- Average P. Def.
-(25303, 4413, 11), -- Average M. Def.
-(25303, 4414, 3), -- Light Armor Type
-(25303, 4415, 5), -- Blunt Weapons
-(25303, 4416, 6), -- Humanoids
+(25303, 4408, 1), -- HP Modifiers
+(25303, 4409, 1), -- MP Modifiers
+(25303, 4410, 11), -- P. Atk. Modifiers
+(25303, 4411, 11), -- M. Atk. Modifiers
+(25303, 4412, 11), -- P. Def. Modifiers
+(25303, 4413, 11), -- M. Def. Modifiers
+(25303, 4414, 3), -- Armor Type
+(25303, 4415, 5), -- Weapon Type
+(25303, 4416, 6), -- Races
 -- Tayr's Guard
 (25304, 4045, 1), -- Resist Full Magic Attack
-(25304, 4408, 1), -- HP Increase (1x)
-(25304, 4409, 1), -- MP Increase (1x)
-(25304, 4410, 11), -- Average P. Atk.
-(25304, 4411, 11), -- Average M. Atk.
-(25304, 4412, 11), -- Average P. Def.
-(25304, 4413, 11), -- Average M. Def.
-(25304, 4414, 3), -- Light Armor Type
-(25304, 4415, 3), -- One-handed Sword
-(25304, 4416, 6), -- Humanoids
-(25304, 4741, 9), -- Power Strike
+(25304, 4408, 1), -- HP Modifiers
+(25304, 4409, 1), -- MP Modifiers
+(25304, 4410, 11), -- P. Atk. Modifiers
+(25304, 4411, 11), -- M. Atk. Modifiers
+(25304, 4412, 11), -- P. Def. Modifiers
+(25304, 4413, 11), -- M. Def. Modifiers
+(25304, 4414, 3), -- Armor Type
+(25304, 4415, 3), -- Weapon Type
+(25304, 4416, 6), -- Races
+(25304, 4741, 9), -- BOSS Strike
 -- Ketra's Chief Brakki
 (25305, 4045, 1), -- Resist Full Magic Attack
-(25305, 4173, 10), -- Might
-(25305, 4177, 10), -- Cancel
-(25305, 4408, 1), -- HP Increase (1x)
-(25305, 4409, 1), -- MP Increase (1x)
-(25305, 4410, 11), -- Average P. Atk.
-(25305, 4411, 11), -- Average M. Atk.
-(25305, 4412, 11), -- Average P. Def.
-(25305, 4413, 11), -- Average M. Def.
-(25305, 4414, 2), -- Standard Type
-(25305, 4415, 1), -- Bare Hands
-(25305, 4416, 4), -- Animals
+(25305, 4173, 10), -- BOSS Might
+(25305, 4177, 10), -- BOSS Cancel Magic
+(25305, 4408, 1), -- HP Modifiers
+(25305, 4409, 1), -- MP Modifiers
+(25305, 4410, 11), -- P. Atk. Modifiers
+(25305, 4411, 11), -- M. Atk. Modifiers
+(25305, 4412, 11), -- P. Def. Modifiers
+(25305, 4413, 11), -- M. Def. Modifiers
+(25305, 4414, 2), -- Armor Type
+(25305, 4415, 1), -- Weapon Type
+(25305, 4416, 4), -- Races
 (25305, 4494, 1), -- Raid Boss
 (25305, 4726, 10), -- Stun
-(25305, 4736, 10), -- Whirlwind
+(25305, 4736, 10), -- BOSS Spinning Slash
 (25305, 4905, 1), -- Raid Boss - Level 80
 -- Soul of Fire Nastron
 (25306, 4045, 1), -- Resist Full Magic Attack
 (25306, 4188, 10), -- Bleed
 (25306, 4190, 10), -- Decrease MP
-(25306, 4194, 10), -- Aura Burn
-(25306, 4408, 1), -- HP Increase (1x)
-(25306, 4409, 1), -- MP Increase (1x)
-(25306, 4410, 11), -- Average P. Atk.
-(25306, 4411, 11), -- Average M. Atk.
-(25306, 4412, 11), -- Average P. Def.
-(25306, 4413, 11), -- Average M. Def.
-(25306, 4414, 2), -- Standard Type
-(25306, 4415, 1), -- Bare Hands
-(25306, 4416, 7), -- Spirits
+(25306, 4194, 10), -- BOSS Aura Burn
+(25306, 4408, 1), -- HP Modifiers
+(25306, 4409, 1), -- MP Modifiers
+(25306, 4410, 11), -- P. Atk. Modifiers
+(25306, 4411, 11), -- M. Atk. Modifiers
+(25306, 4412, 11), -- P. Def. Modifiers
+(25306, 4413, 11), -- M. Def. Modifiers
+(25306, 4414, 2), -- Armor Type
+(25306, 4415, 1), -- Weapon Type
+(25306, 4416, 7), -- Races
 (25306, 4494, 1), -- Raid Boss
 (25306, 4906, 1), -- Raid Boss - Level 80
 -- Family of Nastron
 (25307, 4045, 1), -- Resist Full Magic Attack
-(25307, 4408, 1), -- HP Increase (1x)
-(25307, 4409, 1), -- MP Increase (1x)
-(25307, 4410, 11), -- Average P. Atk.
-(25307, 4411, 11), -- Average M. Atk.
-(25307, 4412, 11), -- Average P. Def.
-(25307, 4413, 11), -- Average M. Def.
-(25307, 4414, 3), -- Light Armor Type
-(25307, 4415, 5), -- Blunt Weapons
-(25307, 4416, 2), -- Magic Creatures
-(25307, 4741, 10), -- Power Strike
+(25307, 4408, 1), -- HP Modifiers
+(25307, 4409, 1), -- MP Modifiers
+(25307, 4410, 11), -- P. Atk. Modifiers
+(25307, 4411, 11), -- M. Atk. Modifiers
+(25307, 4412, 11), -- P. Def. Modifiers
+(25307, 4413, 11), -- M. Def. Modifiers
+(25307, 4414, 3), -- Armor Type
+(25307, 4415, 5), -- Weapon Type
+(25307, 4416, 2), -- Races
+(25307, 4741, 10), -- BOSS Strike
 -- Family of Nastron
 (25308, 4045, 1), -- Resist Full Magic Attack
-(25308, 4408, 1), -- HP Increase (1x)
-(25308, 4409, 1), -- MP Increase (1x)
-(25308, 4410, 11), -- Average P. Atk.
-(25308, 4411, 11), -- Average M. Atk.
-(25308, 4412, 11), -- Average P. Def.
-(25308, 4413, 11), -- Average M. Def.
-(25308, 4414, 3), -- Light Armor Type
-(25308, 4415, 5), -- Blunt Weapons
-(25308, 4416, 2), -- Magic Creatures
+(25308, 4408, 1), -- HP Modifiers
+(25308, 4409, 1), -- MP Modifiers
+(25308, 4410, 11), -- P. Atk. Modifiers
+(25308, 4411, 11), -- M. Atk. Modifiers
+(25308, 4412, 11), -- P. Def. Modifiers
+(25308, 4413, 11), -- M. Def. Modifiers
+(25308, 4414, 3), -- Armor Type
+(25308, 4415, 5), -- Weapon Type
+(25308, 4416, 2), -- Races
 -- Varka's Hero Shadith
 (25309, 4045, 1), -- Resist Full Magic Attack
 (25309, 4184, 9), -- Decrease Atk. Spd.
 (25309, 4188, 9), -- Bleed
-(25309, 4195, 9), -- Twister
-(25309, 4408, 1), -- HP Increase (1x)
-(25309, 4409, 1), -- MP Increase (1x)
-(25309, 4410, 11), -- Average P. Atk.
-(25309, 4411, 11), -- Average M. Atk.
-(25309, 4412, 11), -- Average P. Def.
-(25309, 4413, 11), -- Average M. Def.
-(25309, 4414, 2), -- Standard Type
-(25309, 4415, 6), -- Blunt Weapons
-(25309, 4416, 6), -- Humanoids
+(25309, 4195, 9), -- BOSS Twister
+(25309, 4408, 1), -- HP Modifiers
+(25309, 4409, 1), -- MP Modifiers
+(25309, 4410, 11), -- P. Atk. Modifiers
+(25309, 4411, 11), -- M. Atk. Modifiers
+(25309, 4412, 11), -- P. Def. Modifiers
+(25309, 4413, 11), -- M. Def. Modifiers
+(25309, 4414, 2), -- Armor Type
+(25309, 4415, 6), -- Weapon Type
+(25309, 4416, 6), -- Races
 (25309, 4494, 1), -- Raid Boss
 (25309, 4907, 1), -- Raid Boss - Level 80
 -- Shadith's Royal Guard Captain
 (25310, 4045, 1), -- Resist Full Magic Attack
-(25310, 4408, 1), -- HP Increase (1x)
-(25310, 4409, 1), -- MP Increase (1x)
-(25310, 4410, 11), -- Average P. Atk.
-(25310, 4411, 11), -- Average M. Atk.
-(25310, 4412, 11), -- Average P. Def.
-(25310, 4413, 11), -- Average M. Def.
-(25310, 4414, 3), -- Light Armor Type
-(25310, 4415, 3), -- One-handed Sword
-(25310, 4416, 6), -- Humanoids
-(25310, 4741, 8), -- Power Strike
+(25310, 4408, 1), -- HP Modifiers
+(25310, 4409, 1), -- MP Modifiers
+(25310, 4410, 11), -- P. Atk. Modifiers
+(25310, 4411, 11), -- M. Atk. Modifiers
+(25310, 4412, 11), -- P. Def. Modifiers
+(25310, 4413, 11), -- M. Def. Modifiers
+(25310, 4414, 3), -- Armor Type
+(25310, 4415, 3), -- Weapon Type
+(25310, 4416, 6), -- Races
+(25310, 4741, 8), -- BOSS Strike
 -- Shadith's Sentinel
 (25311, 4045, 1), -- Resist Full Magic Attack
-(25311, 4408, 1), -- HP Increase (1x)
-(25311, 4409, 1), -- MP Increase (1x)
-(25311, 4410, 11), -- Average P. Atk.
-(25311, 4411, 11), -- Average M. Atk.
-(25311, 4412, 11), -- Average P. Def.
-(25311, 4413, 11), -- Average M. Def.
-(25311, 4414, 3), -- Light Armor Type
-(25311, 4415, 7), -- Daggers
-(25311, 4416, 6), -- Humanoids
+(25311, 4408, 1), -- HP Modifiers
+(25311, 4409, 1), -- MP Modifiers
+(25311, 4410, 11), -- P. Atk. Modifiers
+(25311, 4411, 11), -- M. Atk. Modifiers
+(25311, 4412, 11), -- P. Def. Modifiers
+(25311, 4413, 11), -- M. Def. Modifiers
+(25311, 4414, 3), -- Armor Type
+(25311, 4415, 7), -- Weapon Type
+(25311, 4416, 6), -- Races
 -- Varka's Commander Mos
 (25312, 4045, 1), -- Resist Full Magic Attack
-(25312, 4178, 9), -- Flame Strike
-(25312, 4408, 1), -- HP Increase (1x)
-(25312, 4409, 1), -- MP Increase (1x)
-(25312, 4410, 11), -- Average P. Atk.
-(25312, 4411, 11), -- Average M. Atk.
-(25312, 4412, 11), -- Average P. Def.
-(25312, 4413, 11), -- Average M. Def.
-(25312, 4414, 2), -- Standard Type
-(25312, 4415, 6), -- Blunt Weapons
-(25312, 4416, 6), -- Humanoids
+(25312, 4178, 9), -- BOSS Flame Strike
+(25312, 4408, 1), -- HP Modifiers
+(25312, 4409, 1), -- MP Modifiers
+(25312, 4410, 11), -- P. Atk. Modifiers
+(25312, 4411, 11), -- M. Atk. Modifiers
+(25312, 4412, 11), -- P. Def. Modifiers
+(25312, 4413, 11), -- M. Def. Modifiers
+(25312, 4414, 2), -- Armor Type
+(25312, 4415, 6), -- Weapon Type
+(25312, 4416, 6), -- Races
 (25312, 4494, 1), -- Raid Boss
 (25312, 4908, 1), -- Raid Boss - Level 80
 -- Mos' Aide
 (25313, 4045, 1), -- Resist Full Magic Attack
-(25313, 4212, 9), -- Shield
-(25313, 4408, 1), -- HP Increase (1x)
-(25313, 4409, 1), -- MP Increase (1x)
-(25313, 4410, 11), -- Average P. Atk.
-(25313, 4411, 11), -- Average M. Atk.
-(25313, 4412, 11), -- Average P. Def.
-(25313, 4413, 11), -- Average M. Def.
-(25313, 4414, 3), -- Light Armor Type
-(25313, 4415, 5), -- Blunt Weapons
-(25313, 4416, 6), -- Humanoids
-(25313, 4786, 9), -- Chant of Life
+(25313, 4212, 9), -- BOSS Shield
+(25313, 4408, 1), -- HP Modifiers
+(25313, 4409, 1), -- MP Modifiers
+(25313, 4410, 11), -- P. Atk. Modifiers
+(25313, 4411, 11), -- M. Atk. Modifiers
+(25313, 4412, 11), -- P. Def. Modifiers
+(25313, 4413, 11), -- M. Def. Modifiers
+(25313, 4414, 3), -- Armor Type
+(25313, 4415, 5), -- Weapon Type
+(25313, 4416, 6), -- Races
+(25313, 4786, 9), -- BOSS Chant of Life
 -- Mos' Guard
 (25314, 4045, 1), -- Resist Full Magic Attack
-(25314, 4408, 1), -- HP Increase (1x)
-(25314, 4409, 1), -- MP Increase (1x)
-(25314, 4410, 11), -- Average P. Atk.
-(25314, 4411, 11), -- Average M. Atk.
-(25314, 4412, 11), -- Average P. Def.
-(25314, 4413, 11), -- Average M. Def.
-(25314, 4414, 3), -- Light Armor Type
-(25314, 4415, 3), -- One-handed Sword
-(25314, 4416, 6), -- Humanoids
+(25314, 4408, 1), -- HP Modifiers
+(25314, 4409, 1), -- MP Modifiers
+(25314, 4410, 11), -- P. Atk. Modifiers
+(25314, 4411, 11), -- M. Atk. Modifiers
+(25314, 4412, 11), -- P. Def. Modifiers
+(25314, 4413, 11), -- M. Def. Modifiers
+(25314, 4414, 3), -- Armor Type
+(25314, 4415, 3), -- Weapon Type
+(25314, 4416, 6), -- Races
 -- Varka's Chief Horus
 (25315, 4045, 1), -- Resist Full Magic Attack
 (25315, 4172, 10), -- Stun
-(25315, 4175, 10), -- Haste
-(25315, 4177, 10), -- Cancel
-(25315, 4408, 1), -- HP Increase (1x)
-(25315, 4409, 1), -- MP Increase (1x)
-(25315, 4410, 11), -- Average P. Atk.
-(25315, 4411, 11), -- Average M. Atk.
-(25315, 4412, 11), -- Average P. Def.
-(25315, 4413, 11), -- Average M. Def.
-(25315, 4414, 2), -- Standard Type
-(25315, 4415, 6), -- Blunt Weapons
-(25315, 4416, 6), -- Humanoids
+(25315, 4175, 10), -- BOSS Haste
+(25315, 4177, 10), -- BOSS Cancel Magic
+(25315, 4408, 1), -- HP Modifiers
+(25315, 4409, 1), -- MP Modifiers
+(25315, 4410, 11), -- P. Atk. Modifiers
+(25315, 4411, 11), -- M. Atk. Modifiers
+(25315, 4412, 11), -- P. Def. Modifiers
+(25315, 4413, 11), -- M. Def. Modifiers
+(25315, 4414, 2), -- Armor Type
+(25315, 4415, 6), -- Weapon Type
+(25315, 4416, 6), -- Races
 (25315, 4494, 1), -- Raid Boss
-(25315, 4721, 10), -- Power Strike
+(25315, 4721, 10), -- BOSS Strike
 (25315, 4909, 1), -- Raid Boss - Level 80
 -- Soul of Water Ashutar
 (25316, 4045, 1), -- Resist Full Magic Attack
 (25316, 4187, 10), -- Decrease Speed
 (25316, 4190, 10), -- Decrease MP
-(25316, 4196, 10), -- Decrease Speed
-(25316, 4408, 1), -- HP Increase (1x)
-(25316, 4409, 1), -- MP Increase (1x)
-(25316, 4410, 11), -- Average P. Atk.
-(25316, 4411, 11), -- Average M. Atk.
-(25316, 4412, 11), -- Average P. Def.
-(25316, 4413, 11), -- Average M. Def.
-(25316, 4414, 2), -- Standard Type
-(25316, 4415, 1), -- Bare Hands
-(25316, 4416, 7), -- Spirits
+(25316, 4196, 10), -- Decreases Speed
+(25316, 4408, 1), -- HP Modifiers
+(25316, 4409, 1), -- MP Modifiers
+(25316, 4410, 11), -- P. Atk. Modifiers
+(25316, 4411, 11), -- M. Atk. Modifiers
+(25316, 4412, 11), -- P. Def. Modifiers
+(25316, 4413, 11), -- M. Def. Modifiers
+(25316, 4414, 2), -- Armor Type
+(25316, 4415, 1), -- Weapon Type
+(25316, 4416, 7), -- Races
 (25316, 4494, 1), -- Raid Boss
 (25316, 4910, 1), -- Raid Boss - Level 80
 -- Family of Ashutar
 (25317, 4045, 1), -- Resist Full Magic Attack
-(25317, 4408, 1), -- HP Increase (1x)
-(25317, 4409, 1), -- MP Increase (1x)
-(25317, 4410, 11), -- Average P. Atk.
-(25317, 4411, 11), -- Average M. Atk.
-(25317, 4412, 11), -- Average P. Def.
-(25317, 4413, 11), -- Average M. Def.
-(25317, 4414, 3), -- Light Armor Type
-(25317, 4415, 5), -- Blunt Weapons
-(25317, 4416, 2), -- Magic Creatures
+(25317, 4408, 1), -- HP Modifiers
+(25317, 4409, 1), -- MP Modifiers
+(25317, 4410, 11), -- P. Atk. Modifiers
+(25317, 4411, 11), -- M. Atk. Modifiers
+(25317, 4412, 11), -- P. Def. Modifiers
+(25317, 4413, 11), -- M. Def. Modifiers
+(25317, 4414, 3), -- Armor Type
+(25317, 4415, 5), -- Weapon Type
+(25317, 4416, 2), -- Races
 (25317, 4726, 10), -- Stun
 -- Family of Ashutar
 (25318, 4045, 1), -- Resist Full Magic Attack
-(25318, 4408, 1), -- HP Increase (1x)
-(25318, 4409, 1), -- MP Increase (1x)
-(25318, 4410, 11), -- Average P. Atk.
-(25318, 4411, 11), -- Average M. Atk.
-(25318, 4412, 11), -- Average P. Def.
-(25318, 4413, 11), -- Average M. Def.
-(25318, 4414, 3), -- Light Armor Type
-(25318, 4415, 5), -- Blunt Weapons
-(25318, 4416, 2), -- Magic Creatures
+(25318, 4408, 1), -- HP Modifiers
+(25318, 4409, 1), -- MP Modifiers
+(25318, 4410, 11), -- P. Atk. Modifiers
+(25318, 4411, 11), -- M. Atk. Modifiers
+(25318, 4412, 11), -- P. Def. Modifiers
+(25318, 4413, 11), -- M. Def. Modifiers
+(25318, 4414, 3), -- Armor Type
+(25318, 4415, 5), -- Weapon Type
+(25318, 4416, 2), -- Races
 -- Ember
 (25319, 4045, 1), -- Resist Full Magic Attack
 (25319, 4188, 10), -- Bleed
 (25319, 4189, 10), -- Paralysis
-(25319, 4191, 10), -- Wind Strike
-(25319, 4408, 1), -- HP Increase (1x)
-(25319, 4409, 1), -- MP Increase (1x)
-(25319, 4410, 11), -- Average P. Atk.
-(25319, 4411, 11), -- Average M. Atk.
-(25319, 4412, 11), -- Average P. Def.
-(25319, 4413, 11), -- Average M. Def.
-(25319, 4414, 2), -- Standard Type
-(25319, 4415, 3), -- One-handed Sword
-(25319, 4416, 10), -- Dragons
+(25319, 4191, 10), -- BOSS Wind Strike
+(25319, 4408, 1), -- HP Modifiers
+(25319, 4409, 1), -- MP Modifiers
+(25319, 4410, 11), -- P. Atk. Modifiers
+(25319, 4411, 11), -- M. Atk. Modifiers
+(25319, 4412, 11), -- P. Def. Modifiers
+(25319, 4413, 11), -- M. Def. Modifiers
+(25319, 4414, 2), -- Armor Type
+(25319, 4415, 3), -- Weapon Type
+(25319, 4416, 10), -- Races
 (25319, 4494, 1), -- Raid Boss
 (25319, 4911, 1), -- Raid Boss - Level 80
 -- Sentinel of Ember
 (25320, 4045, 1), -- Resist Full Magic Attack
-(25320, 4191, 9), -- Wind Strike
+(25320, 4191, 9), -- BOSS Wind Strike
 (25320, 4199, 9), -- Decrease P. Atk.
-(25320, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25320, 4274, 1), -- Blunt Weapon Weak Point
-(25320, 4408, 1), -- HP Increase (1x)
-(25320, 4409, 1), -- MP Increase (1x)
-(25320, 4410, 11), -- Average P. Atk.
-(25320, 4411, 11), -- Average M. Atk.
-(25320, 4412, 11), -- Average P. Def.
-(25320, 4413, 11), -- Average M. Def.
-(25320, 4414, 3), -- Light Armor Type
-(25320, 4415, 1), -- Bare Hands
-(25320, 4416, 2), -- Magic Creatures
+(25320, 4273, 3), -- Resist Dagger
+(25320, 4274, 1), -- Blunt Attack Weak Point
+(25320, 4408, 1), -- HP Modifiers
+(25320, 4409, 1), -- MP Modifiers
+(25320, 4410, 11), -- P. Atk. Modifiers
+(25320, 4411, 11), -- M. Atk. Modifiers
+(25320, 4412, 11), -- P. Def. Modifiers
+(25320, 4413, 11), -- M. Def. Modifiers
+(25320, 4414, 3), -- Armor Type
+(25320, 4415, 1), -- Weapon Type
+(25320, 4416, 2), -- Races
 (25320, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Messenger of Ember
 (25321, 4045, 1), -- Resist Full Magic Attack
-(25321, 4209, 9), -- Heal
-(25321, 4213, 9), -- Haste
-(25321, 4408, 1), -- HP Increase (1x)
-(25321, 4409, 1), -- MP Increase (1x)
-(25321, 4410, 11), -- Average P. Atk.
-(25321, 4411, 11), -- Average M. Atk.
-(25321, 4412, 11), -- Average P. Def.
-(25321, 4413, 11), -- Average M. Def.
-(25321, 4414, 3), -- Light Armor Type
-(25321, 4415, 1), -- Bare Hands
-(25321, 4416, 7), -- Spirits
+(25321, 4209, 9), -- BOSS Heal
+(25321, 4213, 9), -- BOSS Haste
+(25321, 4408, 1), -- HP Modifiers
+(25321, 4409, 1), -- MP Modifiers
+(25321, 4410, 11), -- P. Atk. Modifiers
+(25321, 4411, 11), -- M. Atk. Modifiers
+(25321, 4412, 11), -- P. Def. Modifiers
+(25321, 4413, 11), -- M. Def. Modifiers
+(25321, 4414, 3), -- Armor Type
+(25321, 4415, 1), -- Weapon Type
+(25321, 4416, 7), -- Races
 -- Demon's Agent Falston
 (25322, 4045, 1), -- Resist Full Magic Attack
 (25322, 4197, 6), -- Hold
-(25322, 4408, 1), -- HP Increase (1x)
-(25322, 4409, 1), -- MP Increase (1x)
-(25322, 4410, 11), -- Average P. Atk.
-(25322, 4411, 11), -- Average M. Atk.
-(25322, 4412, 11), -- Average P. Def.
-(25322, 4413, 11), -- Average M. Def.
-(25322, 4414, 2), -- Standard Type
-(25322, 4415, 4), -- One-handed Sword
-(25322, 4416, 9), -- Demons
+(25322, 4408, 1), -- HP Modifiers
+(25322, 4409, 1), -- MP Modifiers
+(25322, 4410, 11), -- P. Atk. Modifiers
+(25322, 4411, 11), -- M. Atk. Modifiers
+(25322, 4412, 11), -- P. Def. Modifiers
+(25322, 4413, 11), -- M. Def. Modifiers
+(25322, 4414, 2), -- Armor Type
+(25322, 4415, 4), -- Weapon Type
+(25322, 4416, 9), -- Races
 (25322, 4494, 1), -- Raid Boss
 (25322, 4912, 1), -- Raid Boss - Level 66
 -- Falston's Disciple
 (25323, 4045, 1), -- Resist Full Magic Attack
-(25323, 4192, 6), -- Vampiric Touch
+(25323, 4192, 6), -- BOSS HP Drain
 (25323, 4204, 6), -- Bleed
-(25323, 4408, 1), -- HP Increase (1x)
-(25323, 4409, 1), -- MP Increase (1x)
-(25323, 4410, 11), -- Average P. Atk.
-(25323, 4411, 11), -- Average M. Atk.
-(25323, 4412, 11), -- Average P. Def.
-(25323, 4413, 11), -- Average M. Def.
-(25323, 4414, 3), -- Light Armor Type
-(25323, 4415, 5), -- Blunt Weapons
-(25323, 4416, 9), -- Demons
+(25323, 4408, 1), -- HP Modifiers
+(25323, 4409, 1), -- MP Modifiers
+(25323, 4410, 11), -- P. Atk. Modifiers
+(25323, 4411, 11), -- M. Atk. Modifiers
+(25323, 4412, 11), -- P. Def. Modifiers
+(25323, 4413, 11), -- M. Def. Modifiers
+(25323, 4414, 3), -- Armor Type
+(25323, 4415, 5), -- Weapon Type
+(25323, 4416, 9), -- Races
 -- Servant of Falston
 (25324, 4045, 1), -- Resist Full Magic Attack
 (25324, 4169, 6), -- Stun
-(25324, 4408, 1), -- HP Increase (1x)
-(25324, 4409, 1), -- MP Increase (1x)
-(25324, 4410, 11), -- Average P. Atk.
-(25324, 4411, 11), -- Average M. Atk.
-(25324, 4412, 11), -- Average P. Def.
-(25324, 4413, 11), -- Average M. Def.
-(25324, 4414, 3), -- Light Armor Type
-(25324, 4415, 5), -- Blunt Weapons
-(25324, 4416, 6), -- Humanoids
+(25324, 4408, 1), -- HP Modifiers
+(25324, 4409, 1), -- MP Modifiers
+(25324, 4410, 11), -- P. Atk. Modifiers
+(25324, 4411, 11), -- M. Atk. Modifiers
+(25324, 4412, 11), -- P. Def. Modifiers
+(25324, 4413, 11), -- M. Def. Modifiers
+(25324, 4414, 3), -- Armor Type
+(25324, 4415, 5), -- Weapon Type
+(25324, 4416, 6), -- Races
 -- Flame of Splendor Barakiel
 (25325, 4045, 1), -- Resist Full Magic Attack
 (25325, 4188, 7), -- Bleed
 (25325, 4190, 7), -- Decrease MP
-(25325, 4192, 7), -- Vampiric Touch
-(25325, 4408, 1), -- HP Increase (1x)
-(25325, 4409, 1), -- MP Increase (1x)
-(25325, 4410, 11), -- Average P. Atk.
-(25325, 4411, 11), -- Average M. Atk.
-(25325, 4412, 11), -- Average P. Def.
-(25325, 4413, 11), -- Average M. Def.
-(25325, 4414, 2), -- Standard Type
-(25325, 4415, 4), -- One-handed Sword
-(25325, 4416, 8), -- Angels
+(25325, 4192, 7), -- BOSS HP Drain
+(25325, 4408, 1), -- HP Modifiers
+(25325, 4409, 1), -- MP Modifiers
+(25325, 4410, 11), -- P. Atk. Modifiers
+(25325, 4411, 11), -- M. Atk. Modifiers
+(25325, 4412, 11), -- P. Def. Modifiers
+(25325, 4413, 11), -- M. Def. Modifiers
+(25325, 4414, 2), -- Armor Type
+(25325, 4415, 4), -- Weapon Type
+(25325, 4416, 8), -- Races
 (25325, 4494, 1), -- Raid Boss
 (25325, 4913, 1), -- Raid Boss - Level 70
 -- Barakiel's Disciple
 (25326, 4045, 1), -- Resist Full Magic Attack
-(25326, 4408, 1), -- HP Increase (1x)
-(25326, 4409, 1), -- MP Increase (1x)
-(25326, 4410, 11), -- Average P. Atk.
-(25326, 4411, 11), -- Average M. Atk.
-(25326, 4412, 11), -- Average P. Def.
-(25326, 4413, 11), -- Average M. Def.
-(25326, 4414, 3), -- Light Armor Type
-(25326, 4415, 5), -- Blunt Weapons
-(25326, 4416, 8), -- Angels
+(25326, 4408, 1), -- HP Modifiers
+(25326, 4409, 1), -- MP Modifiers
+(25326, 4410, 11), -- P. Atk. Modifiers
+(25326, 4411, 11), -- M. Atk. Modifiers
+(25326, 4412, 11), -- P. Def. Modifiers
+(25326, 4413, 11), -- M. Def. Modifiers
+(25326, 4414, 3), -- Armor Type
+(25326, 4415, 5), -- Weapon Type
+(25326, 4416, 8), -- Races
 (25326, 4724, 6), -- Stun
 -- Barakiel's Acolyte
 (25327, 4045, 1), -- Resist Full Magic Attack
-(25327, 4408, 1), -- HP Increase (1x)
-(25327, 4409, 1), -- MP Increase (1x)
-(25327, 4410, 11), -- Average P. Atk.
-(25327, 4411, 11), -- Average M. Atk.
-(25327, 4412, 11), -- Average P. Def.
-(25327, 4413, 11), -- Average M. Def.
-(25327, 4414, 3), -- Light Armor Type
-(25327, 4415, 5), -- Blunt Weapons
-(25327, 4416, 8), -- Angels
+(25327, 4408, 1), -- HP Modifiers
+(25327, 4409, 1), -- MP Modifiers
+(25327, 4410, 11), -- P. Atk. Modifiers
+(25327, 4411, 11), -- M. Atk. Modifiers
+(25327, 4412, 11), -- P. Def. Modifiers
+(25327, 4413, 11), -- M. Def. Modifiers
+(25327, 4414, 3), -- Armor Type
+(25327, 4415, 5), -- Weapon Type
+(25327, 4416, 8), -- Races
 -- Eilhalder von Hellmann
 (25328, 4045, 1), -- Resist Full Magic Attack
 (25328, 4197, 7), -- Hold
-(25328, 4408, 1), -- HP Increase (1x)
-(25328, 4409, 1), -- MP Increase (1x)
-(25328, 4410, 11), -- Average P. Atk.
-(25328, 4411, 11), -- Average M. Atk.
-(25328, 4412, 11), -- Average P. Def.
-(25328, 4413, 11), -- Average M. Def.
-(25328, 4414, 2), -- Standard Type
-(25328, 4415, 1), -- Bare Hands
-(25328, 4416, 9), -- Demons
+(25328, 4408, 1), -- HP Modifiers
+(25328, 4409, 1), -- MP Modifiers
+(25328, 4410, 11), -- P. Atk. Modifiers
+(25328, 4411, 11), -- M. Atk. Modifiers
+(25328, 4412, 11), -- P. Def. Modifiers
+(25328, 4413, 11), -- M. Def. Modifiers
+(25328, 4414, 2), -- Armor Type
+(25328, 4415, 1), -- Weapon Type
+(25328, 4416, 9), -- Races
 (25328, 4494, 1), -- Raid Boss
 (25328, 4914, 1), -- Raid Boss - Level 71
 -- Violet
 (25329, 4045, 1), -- Resist Full Magic Attack
-(25329, 4193, 7), -- Life Drain
-(25329, 4206, 7), -- Aura Sink
-(25329, 4408, 1), -- HP Increase (1x)
-(25329, 4409, 1), -- MP Increase (1x)
-(25329, 4410, 11), -- Average P. Atk.
-(25329, 4411, 11), -- Average M. Atk.
-(25329, 4412, 11), -- Average P. Def.
-(25329, 4413, 11), -- Average M. Def.
-(25329, 4414, 3), -- Light Armor Type
-(25329, 4415, 7), -- Daggers
-(25329, 4416, 9), -- Demons
+(25329, 4193, 7), -- BOSS Life Drain
+(25329, 4206, 7), -- Decrease MP
+(25329, 4408, 1), -- HP Modifiers
+(25329, 4409, 1), -- MP Modifiers
+(25329, 4410, 11), -- P. Atk. Modifiers
+(25329, 4411, 11), -- M. Atk. Modifiers
+(25329, 4412, 11), -- P. Def. Modifiers
+(25329, 4413, 11), -- M. Def. Modifiers
+(25329, 4414, 3), -- Armor Type
+(25329, 4415, 7), -- Weapon Type
+(25329, 4416, 9), -- Races
 -- Kurstin
 (25330, 4045, 1), -- Resist Full Magic Attack
-(25330, 4193, 7), -- Life Drain
+(25330, 4193, 7), -- BOSS Life Drain
 (25330, 4199, 7), -- Decrease P. Atk.
-(25330, 4408, 1), -- HP Increase (1x)
-(25330, 4409, 1), -- MP Increase (1x)
-(25330, 4410, 11), -- Average P. Atk.
-(25330, 4411, 11), -- Average M. Atk.
-(25330, 4412, 11), -- Average P. Def.
-(25330, 4413, 11), -- Average M. Def.
-(25330, 4414, 3), -- Light Armor Type
-(25330, 4415, 7), -- Daggers
-(25330, 4416, 9), -- Demons
+(25330, 4408, 1), -- HP Modifiers
+(25330, 4409, 1), -- MP Modifiers
+(25330, 4410, 11), -- P. Atk. Modifiers
+(25330, 4411, 11), -- M. Atk. Modifiers
+(25330, 4412, 11), -- P. Def. Modifiers
+(25330, 4413, 11), -- M. Def. Modifiers
+(25330, 4414, 3), -- Armor Type
+(25330, 4415, 7), -- Weapon Type
+(25330, 4416, 9), -- Races
 -- Mina
 (25331, 4045, 1), -- Resist Full Magic Attack
-(25331, 4193, 7), -- Life Drain
+(25331, 4193, 7), -- BOSS Life Drain
 (25331, 4203, 7), -- Decrease Speed
-(25331, 4408, 1), -- HP Increase (1x)
-(25331, 4409, 1), -- MP Increase (1x)
-(25331, 4410, 11), -- Average P. Atk.
-(25331, 4411, 11), -- Average M. Atk.
-(25331, 4412, 11), -- Average P. Def.
-(25331, 4413, 11), -- Average M. Def.
-(25331, 4414, 3), -- Light Armor Type
-(25331, 4415, 7), -- Daggers
-(25331, 4416, 9), -- Demons
+(25331, 4408, 1), -- HP Modifiers
+(25331, 4409, 1), -- MP Modifiers
+(25331, 4410, 11), -- P. Atk. Modifiers
+(25331, 4411, 11), -- M. Atk. Modifiers
+(25331, 4412, 11), -- P. Def. Modifiers
+(25331, 4413, 11), -- M. Def. Modifiers
+(25331, 4414, 3), -- Armor Type
+(25331, 4415, 7), -- Weapon Type
+(25331, 4416, 9), -- Races
 -- Dorian
 (25332, 4045, 1), -- Resist Full Magic Attack
-(25332, 4181, 7), -- Mortal Blow
-(25332, 4408, 1), -- HP Increase (1x)
-(25332, 4409, 1), -- MP Increase (1x)
-(25332, 4410, 11), -- Average P. Atk.
-(25332, 4411, 11), -- Average M. Atk.
-(25332, 4412, 11), -- Average P. Def.
-(25332, 4413, 11), -- Average M. Def.
-(25332, 4414, 3), -- Light Armor Type
-(25332, 4415, 3), -- One-handed Sword
-(25332, 4416, 9), -- Demons
+(25332, 4181, 7), -- BOSS Mortal Blow
+(25332, 4408, 1), -- HP Modifiers
+(25332, 4409, 1), -- MP Modifiers
+(25332, 4410, 11), -- P. Atk. Modifiers
+(25332, 4411, 11), -- M. Atk. Modifiers
+(25332, 4412, 11), -- P. Def. Modifiers
+(25332, 4413, 11), -- M. Def. Modifiers
+(25332, 4414, 3), -- Armor Type
+(25332, 4415, 3), -- Weapon Type
+(25332, 4416, 9), -- Races
 -- Anakazel
 (25333, 4045, 1), -- Resist Full Magic Attack
 (25333, 4172, 2), -- Stun
-(25333, 4175, 2), -- Haste
-(25333, 4177, 2), -- Cancel
-(25333, 4408, 1), -- HP Increase (1x)
-(25333, 4409, 1), -- MP Increase (1x)
-(25333, 4410, 11), -- Average P. Atk.
-(25333, 4411, 11), -- Average M. Atk.
-(25333, 4412, 11), -- Average P. Def.
-(25333, 4413, 11), -- Average M. Def.
-(25333, 4414, 2), -- Standard Type
-(25333, 4415, 1), -- Bare Hands
-(25333, 4416, 9), -- Demons
+(25333, 4175, 2), -- BOSS Haste
+(25333, 4177, 2), -- BOSS Cancel Magic
+(25333, 4408, 1), -- HP Modifiers
+(25333, 4409, 1), -- MP Modifiers
+(25333, 4410, 11), -- P. Atk. Modifiers
+(25333, 4411, 11), -- M. Atk. Modifiers
+(25333, 4412, 11), -- P. Def. Modifiers
+(25333, 4413, 11), -- M. Def. Modifiers
+(25333, 4414, 2), -- Armor Type
+(25333, 4415, 1), -- Weapon Type
+(25333, 4416, 9), -- Races
 (25333, 4494, 1), -- Raid Boss
-(25333, 4723, 2), -- Power Strike
+(25333, 4723, 2), -- BOSS Strike
 (25333, 4915, 1), -- Raid Boss - Level 28
 -- Anakazel
 (25334, 4045, 1), -- Resist Full Magic Attack
 (25334, 4172, 3), -- Stun
-(25334, 4175, 3), -- Haste
-(25334, 4177, 3), -- Cancel
-(25334, 4408, 1), -- HP Increase (1x)
-(25334, 4409, 1), -- MP Increase (1x)
-(25334, 4410, 11), -- Average P. Atk.
-(25334, 4411, 11), -- Average M. Atk.
-(25334, 4412, 11), -- Average P. Def.
-(25334, 4413, 11), -- Average M. Def.
-(25334, 4414, 2), -- Standard Type
-(25334, 4415, 1), -- Bare Hands
-(25334, 4416, 9), -- Demons
+(25334, 4175, 3), -- BOSS Haste
+(25334, 4177, 3), -- BOSS Cancel Magic
+(25334, 4408, 1), -- HP Modifiers
+(25334, 4409, 1), -- MP Modifiers
+(25334, 4410, 11), -- P. Atk. Modifiers
+(25334, 4411, 11), -- M. Atk. Modifiers
+(25334, 4412, 11), -- P. Def. Modifiers
+(25334, 4413, 11), -- M. Def. Modifiers
+(25334, 4414, 2), -- Armor Type
+(25334, 4415, 1), -- Weapon Type
+(25334, 4416, 9), -- Races
 (25334, 4494, 1), -- Raid Boss
-(25334, 4723, 3), -- Power Strike
+(25334, 4723, 3), -- BOSS Strike
 (25334, 4916, 1), -- Raid Boss - Level 38
 -- Anakazel
 (25335, 4045, 1), -- Resist Full Magic Attack
 (25335, 4172, 4), -- Stun
-(25335, 4175, 4), -- Haste
-(25335, 4177, 4), -- Cancel
-(25335, 4408, 1), -- HP Increase (1x)
-(25335, 4409, 1), -- MP Increase (1x)
-(25335, 4410, 11), -- Average P. Atk.
-(25335, 4411, 11), -- Average M. Atk.
-(25335, 4412, 11), -- Average P. Def.
-(25335, 4413, 11), -- Average M. Def.
-(25335, 4414, 2), -- Standard Type
-(25335, 4415, 1), -- Bare Hands
-(25335, 4416, 9), -- Demons
+(25335, 4175, 4), -- BOSS Haste
+(25335, 4177, 4), -- BOSS Cancel Magic
+(25335, 4408, 1), -- HP Modifiers
+(25335, 4409, 1), -- MP Modifiers
+(25335, 4410, 11), -- P. Atk. Modifiers
+(25335, 4411, 11), -- M. Atk. Modifiers
+(25335, 4412, 11), -- P. Def. Modifiers
+(25335, 4413, 11), -- M. Def. Modifiers
+(25335, 4414, 2), -- Armor Type
+(25335, 4415, 1), -- Weapon Type
+(25335, 4416, 9), -- Races
 (25335, 4494, 1), -- Raid Boss
-(25335, 4723, 4), -- Power Strike
+(25335, 4723, 4), -- BOSS Strike
 (25335, 4917, 1), -- Raid Boss - Level 48
 -- Anakazel
 (25336, 4045, 1), -- Resist Full Magic Attack
 (25336, 4172, 5), -- Stun
-(25336, 4175, 5), -- Haste
-(25336, 4177, 5), -- Cancel
-(25336, 4408, 1), -- HP Increase (1x)
-(25336, 4409, 1), -- MP Increase (1x)
-(25336, 4410, 11), -- Average P. Atk.
-(25336, 4411, 11), -- Average M. Atk.
-(25336, 4412, 11), -- Average P. Def.
-(25336, 4413, 11), -- Average M. Def.
-(25336, 4414, 2), -- Standard Type
-(25336, 4415, 1), -- Bare Hands
-(25336, 4416, 9), -- Demons
+(25336, 4175, 5), -- BOSS Haste
+(25336, 4177, 5), -- BOSS Cancel Magic
+(25336, 4408, 1), -- HP Modifiers
+(25336, 4409, 1), -- MP Modifiers
+(25336, 4410, 11), -- P. Atk. Modifiers
+(25336, 4411, 11), -- M. Atk. Modifiers
+(25336, 4412, 11), -- P. Def. Modifiers
+(25336, 4413, 11), -- M. Def. Modifiers
+(25336, 4414, 2), -- Armor Type
+(25336, 4415, 1), -- Weapon Type
+(25336, 4416, 9), -- Races
 (25336, 4494, 1), -- Raid Boss
-(25336, 4723, 5), -- Power Strike
+(25336, 4723, 5), -- BOSS Strike
 (25336, 4918, 1), -- Raid Boss - Level 58
 -- Anakazel
 (25337, 4045, 1), -- Resist Full Magic Attack
 (25337, 4172, 6), -- Stun
-(25337, 4175, 6), -- Haste
-(25337, 4177, 6), -- Cancel
-(25337, 4408, 1), -- HP Increase (1x)
-(25337, 4409, 1), -- MP Increase (1x)
-(25337, 4410, 11), -- Average P. Atk.
-(25337, 4411, 11), -- Average M. Atk.
-(25337, 4412, 11), -- Average P. Def.
-(25337, 4413, 11), -- Average M. Def.
-(25337, 4414, 2), -- Standard Type
-(25337, 4415, 1), -- Bare Hands
-(25337, 4416, 9), -- Demons
+(25337, 4175, 6), -- BOSS Haste
+(25337, 4177, 6), -- BOSS Cancel Magic
+(25337, 4408, 1), -- HP Modifiers
+(25337, 4409, 1), -- MP Modifiers
+(25337, 4410, 11), -- P. Atk. Modifiers
+(25337, 4411, 11), -- M. Atk. Modifiers
+(25337, 4412, 11), -- P. Def. Modifiers
+(25337, 4413, 11), -- M. Def. Modifiers
+(25337, 4414, 2), -- Armor Type
+(25337, 4415, 1), -- Weapon Type
+(25337, 4416, 9), -- Races
 (25337, 4494, 1), -- Raid Boss
-(25337, 4723, 6), -- Power Strike
+(25337, 4723, 6), -- BOSS Strike
 (25337, 4919, 1), -- Raid Boss - Level 68
 -- Anakazel
 (25338, 4045, 1), -- Resist Full Magic Attack
 (25338, 4172, 8), -- Stun
-(25338, 4175, 8), -- Haste
-(25338, 4177, 8), -- Cancel
-(25338, 4408, 1), -- HP Increase (1x)
-(25338, 4409, 1), -- MP Increase (1x)
-(25338, 4410, 11), -- Average P. Atk.
-(25338, 4411, 11), -- Average M. Atk.
-(25338, 4412, 11), -- Average P. Def.
-(25338, 4413, 11), -- Average M. Def.
-(25338, 4414, 2), -- Standard Type
-(25338, 4415, 1), -- Bare Hands
-(25338, 4416, 9), -- Demons
+(25338, 4175, 8), -- BOSS Haste
+(25338, 4177, 8), -- BOSS Cancel Magic
+(25338, 4408, 1), -- HP Modifiers
+(25338, 4409, 1), -- MP Modifiers
+(25338, 4410, 11), -- P. Atk. Modifiers
+(25338, 4411, 11), -- M. Atk. Modifiers
+(25338, 4412, 11), -- P. Def. Modifiers
+(25338, 4413, 11), -- M. Def. Modifiers
+(25338, 4414, 2), -- Armor Type
+(25338, 4415, 1), -- Weapon Type
+(25338, 4416, 9), -- Races
 (25338, 4494, 1), -- Raid Boss
-(25338, 4723, 8), -- Power Strike
+(25338, 4723, 8), -- BOSS Strike
 (25338, 4920, 1), -- Raid Boss - Level 78
 -- Shadow of Halisha
 (25339, 4045, 1), -- Resist Full Magic Attack
-(25339, 4178, 9), -- Flame Strike
-(25339, 4408, 1), -- HP Increase (1x)
-(25339, 4409, 1), -- MP Increase (1x)
-(25339, 4410, 11), -- Average P. Atk.
-(25339, 4411, 11), -- Average M. Atk.
-(25339, 4412, 11), -- Average P. Def.
-(25339, 4413, 11), -- Average M. Def.
-(25339, 4414, 2), -- Standard Type
-(25339, 4415, 9), -- Bows
-(25339, 4416, 9), -- Demons
+(25339, 4178, 9), -- BOSS Flame Strike
+(25339, 4408, 1), -- HP Modifiers
+(25339, 4409, 1), -- MP Modifiers
+(25339, 4410, 11), -- P. Atk. Modifiers
+(25339, 4411, 11), -- M. Atk. Modifiers
+(25339, 4412, 11), -- P. Def. Modifiers
+(25339, 4413, 11), -- M. Def. Modifiers
+(25339, 4414, 2), -- Armor Type
+(25339, 4415, 9), -- Weapon Type
+(25339, 4416, 9), -- Races
 (25339, 4494, 1), -- Raid Boss
 (25339, 4921, 1), -- Raid Boss - Level 80
 -- Knight of Shadow
 (25340, 4045, 1), -- Resist Full Magic Attack
-(25340, 4212, 9), -- Shield
-(25340, 4408, 1), -- HP Increase (1x)
-(25340, 4409, 1), -- MP Increase (1x)
-(25340, 4410, 11), -- Average P. Atk.
-(25340, 4411, 11), -- Average M. Atk.
-(25340, 4412, 11), -- Average P. Def.
-(25340, 4413, 11), -- Average M. Def.
-(25340, 4414, 3), -- Light Armor Type
-(25340, 4415, 3), -- One-handed Sword
-(25340, 4416, 9), -- Demons
-(25340, 4788, 9), -- Chant of Life
+(25340, 4212, 9), -- BOSS Shield
+(25340, 4408, 1), -- HP Modifiers
+(25340, 4409, 1), -- MP Modifiers
+(25340, 4410, 11), -- P. Atk. Modifiers
+(25340, 4411, 11), -- M. Atk. Modifiers
+(25340, 4412, 11), -- P. Def. Modifiers
+(25340, 4413, 11), -- M. Def. Modifiers
+(25340, 4414, 3), -- Armor Type
+(25340, 4415, 3), -- Weapon Type
+(25340, 4416, 9), -- Races
+(25340, 4788, 9), -- BOSS Chant of Life
 -- Knight of Shadow
 (25341, 4045, 1), -- Resist Full Magic Attack
-(25341, 4408, 1), -- HP Increase (1x)
-(25341, 4409, 1), -- MP Increase (1x)
-(25341, 4410, 11), -- Average P. Atk.
-(25341, 4411, 11), -- Average M. Atk.
-(25341, 4412, 11), -- Average P. Def.
-(25341, 4413, 11), -- Average M. Def.
-(25341, 4414, 3), -- Light Armor Type
-(25341, 4415, 3), -- One-handed Sword
-(25341, 4416, 3), -- Beasts
+(25341, 4408, 1), -- HP Modifiers
+(25341, 4409, 1), -- MP Modifiers
+(25341, 4410, 11), -- P. Atk. Modifiers
+(25341, 4411, 11), -- M. Atk. Modifiers
+(25341, 4412, 11), -- P. Def. Modifiers
+(25341, 4413, 11), -- M. Def. Modifiers
+(25341, 4414, 3), -- Armor Type
+(25341, 4415, 3), -- Weapon Type
+(25341, 4416, 3), -- Races
 -- Shadow of Halisha
 (25342, 4045, 1), -- Resist Full Magic Attack
-(25342, 4408, 1), -- HP Increase (1x)
-(25342, 4409, 1), -- MP Increase (1x)
-(25342, 4410, 11), -- Average P. Atk.
-(25342, 4411, 11), -- Average M. Atk.
-(25342, 4412, 11), -- Average P. Def.
-(25342, 4413, 11), -- Average M. Def.
-(25342, 4414, 2), -- Standard Type
-(25342, 4415, 9), -- Bows
-(25342, 4416, 9), -- Demons
+(25342, 4408, 1), -- HP Modifiers
+(25342, 4409, 1), -- MP Modifiers
+(25342, 4410, 11), -- P. Atk. Modifiers
+(25342, 4411, 11), -- M. Atk. Modifiers
+(25342, 4412, 11), -- P. Def. Modifiers
+(25342, 4413, 11), -- M. Def. Modifiers
+(25342, 4414, 2), -- Armor Type
+(25342, 4415, 9), -- Weapon Type
+(25342, 4416, 9), -- Races
 (25342, 4494, 1), -- Raid Boss
 (25342, 4748, 9), -- Stun
 (25342, 4922, 1), -- Raid Boss - Level 80
 -- Knight of Shadow
 (25343, 4045, 1), -- Resist Full Magic Attack
-(25343, 4212, 9), -- Shield
-(25343, 4408, 1), -- HP Increase (1x)
-(25343, 4409, 1), -- MP Increase (1x)
-(25343, 4410, 11), -- Average P. Atk.
-(25343, 4411, 11), -- Average M. Atk.
-(25343, 4412, 11), -- Average P. Def.
-(25343, 4413, 11), -- Average M. Def.
-(25343, 4414, 3), -- Light Armor Type
-(25343, 4415, 3), -- One-handed Sword
-(25343, 4416, 9), -- Demons
-(25343, 4788, 9), -- Chant of Life
+(25343, 4212, 9), -- BOSS Shield
+(25343, 4408, 1), -- HP Modifiers
+(25343, 4409, 1), -- MP Modifiers
+(25343, 4410, 11), -- P. Atk. Modifiers
+(25343, 4411, 11), -- M. Atk. Modifiers
+(25343, 4412, 11), -- P. Def. Modifiers
+(25343, 4413, 11), -- M. Def. Modifiers
+(25343, 4414, 3), -- Armor Type
+(25343, 4415, 3), -- Weapon Type
+(25343, 4416, 9), -- Races
+(25343, 4788, 9), -- BOSS Chant of Life
 -- Knight of Shadow
 (25344, 4045, 1), -- Resist Full Magic Attack
-(25344, 4408, 1), -- HP Increase (1x)
-(25344, 4409, 1), -- MP Increase (1x)
-(25344, 4410, 11), -- Average P. Atk.
-(25344, 4411, 11), -- Average M. Atk.
-(25344, 4412, 11), -- Average P. Def.
-(25344, 4413, 11), -- Average M. Def.
-(25344, 4414, 3), -- Light Armor Type
-(25344, 4415, 9), -- Bows
-(25344, 4416, 9), -- Demons
+(25344, 4408, 1), -- HP Modifiers
+(25344, 4409, 1), -- MP Modifiers
+(25344, 4410, 11), -- P. Atk. Modifiers
+(25344, 4411, 11), -- M. Atk. Modifiers
+(25344, 4412, 11), -- P. Def. Modifiers
+(25344, 4413, 11), -- M. Def. Modifiers
+(25344, 4414, 3), -- Armor Type
+(25344, 4415, 9), -- Weapon Type
+(25344, 4416, 9), -- Races
 -- Knight of shadow
 (25345, 4045, 1), -- Resist Full Magic Attack
-(25345, 4191, 9), -- Wind Strike
+(25345, 4191, 9), -- BOSS Wind Strike
 (25345, 4203, 9), -- Decrease Speed
-(25345, 4408, 1), -- HP Increase (1x)
-(25345, 4409, 1), -- MP Increase (1x)
-(25345, 4410, 11), -- Average P. Atk.
-(25345, 4411, 11), -- Average M. Atk.
-(25345, 4412, 11), -- Average P. Def.
-(25345, 4413, 11), -- Average M. Def.
-(25345, 4414, 3), -- Light Armor Type
-(25345, 4415, 5), -- Blunt Weapons
-(25345, 4416, 9), -- Demons
+(25345, 4408, 1), -- HP Modifiers
+(25345, 4409, 1), -- MP Modifiers
+(25345, 4410, 11), -- P. Atk. Modifiers
+(25345, 4411, 11), -- M. Atk. Modifiers
+(25345, 4412, 11), -- P. Def. Modifiers
+(25345, 4413, 11), -- M. Def. Modifiers
+(25345, 4414, 3), -- Armor Type
+(25345, 4415, 5), -- Weapon Type
+(25345, 4416, 9), -- Races
 -- Shadow of Halisha
 (25346, 4045, 1), -- Resist Full Magic Attack
 (25346, 4197, 9), -- Hold
-(25346, 4408, 1), -- HP Increase (1x)
-(25346, 4409, 1), -- MP Increase (1x)
-(25346, 4410, 11), -- Average P. Atk.
-(25346, 4411, 11), -- Average M. Atk.
-(25346, 4412, 11), -- Average P. Def.
-(25346, 4413, 11), -- Average M. Def.
-(25346, 4414, 2), -- Standard Type
-(25346, 4415, 9), -- Bows
-(25346, 4416, 9), -- Demons
+(25346, 4408, 1), -- HP Modifiers
+(25346, 4409, 1), -- MP Modifiers
+(25346, 4410, 11), -- P. Atk. Modifiers
+(25346, 4411, 11), -- M. Atk. Modifiers
+(25346, 4412, 11), -- P. Def. Modifiers
+(25346, 4413, 11), -- M. Def. Modifiers
+(25346, 4414, 2), -- Armor Type
+(25346, 4415, 9), -- Weapon Type
+(25346, 4416, 9), -- Races
 (25346, 4494, 1), -- Raid Boss
 (25346, 4923, 1), -- Raid Boss - Level 80
 -- Knight of Shadow
 (25347, 4045, 1), -- Resist Full Magic Attack
-(25347, 4191, 9), -- Wind Strike
+(25347, 4191, 9), -- BOSS Wind Strike
 (25347, 4199, 9), -- Decrease P. Atk.
-(25347, 4408, 1), -- HP Increase (1x)
-(25347, 4409, 1), -- MP Increase (1x)
-(25347, 4410, 11), -- Average P. Atk.
-(25347, 4411, 11), -- Average M. Atk.
-(25347, 4412, 11), -- Average P. Def.
-(25347, 4413, 11), -- Average M. Def.
-(25347, 4414, 3), -- Light Armor Type
-(25347, 4415, 5), -- Blunt Weapons
-(25347, 4416, 9), -- Demons
+(25347, 4408, 1), -- HP Modifiers
+(25347, 4409, 1), -- MP Modifiers
+(25347, 4410, 11), -- P. Atk. Modifiers
+(25347, 4411, 11), -- M. Atk. Modifiers
+(25347, 4412, 11), -- P. Def. Modifiers
+(25347, 4413, 11), -- M. Def. Modifiers
+(25347, 4414, 3), -- Armor Type
+(25347, 4415, 5), -- Weapon Type
+(25347, 4416, 9), -- Races
 -- Knight of Shadow
 (25348, 4045, 1), -- Resist Full Magic Attack
-(25348, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25348, 4274, 1), -- Blunt Weapon Weak Point
-(25348, 4408, 1), -- HP Increase (1x)
-(25348, 4409, 1), -- MP Increase (1x)
-(25348, 4410, 11), -- Average P. Atk.
-(25348, 4411, 11), -- Average M. Atk.
-(25348, 4412, 11), -- Average P. Def.
-(25348, 4413, 11), -- Average M. Def.
-(25348, 4414, 3), -- Light Armor Type
-(25348, 4415, 3), -- One-handed Sword
-(25348, 4416, 1), -- Undead
-(25348, 4743, 9), -- Power Strike
+(25348, 4273, 3), -- Resist Dagger
+(25348, 4274, 1), -- Blunt Attack Weak Point
+(25348, 4408, 1), -- HP Modifiers
+(25348, 4409, 1), -- MP Modifiers
+(25348, 4410, 11), -- P. Atk. Modifiers
+(25348, 4411, 11), -- M. Atk. Modifiers
+(25348, 4412, 11), -- P. Def. Modifiers
+(25348, 4413, 11), -- M. Def. Modifiers
+(25348, 4414, 3), -- Armor Type
+(25348, 4415, 3), -- Weapon Type
+(25348, 4416, 1), -- Races
+(25348, 4743, 9), -- BOSS Strike
 -- Shadow of Halisha
 (25349, 4045, 1), -- Resist Full Magic Attack
 (25349, 4184, 9), -- Decrease Atk. Spd.
 (25349, 4187, 9), -- Decrease Speed
-(25349, 4195, 9), -- Twister
-(25349, 4408, 1), -- HP Increase (1x)
-(25349, 4409, 1), -- MP Increase (1x)
-(25349, 4410, 11), -- Average P. Atk.
-(25349, 4411, 11), -- Average M. Atk.
-(25349, 4412, 11), -- Average P. Def.
-(25349, 4413, 11), -- Average M. Def.
-(25349, 4414, 2), -- Standard Type
-(25349, 4415, 9), -- Bows
-(25349, 4416, 9), -- Demons
+(25349, 4195, 9), -- BOSS Twister
+(25349, 4408, 1), -- HP Modifiers
+(25349, 4409, 1), -- MP Modifiers
+(25349, 4410, 11), -- P. Atk. Modifiers
+(25349, 4411, 11), -- M. Atk. Modifiers
+(25349, 4412, 11), -- P. Def. Modifiers
+(25349, 4413, 11), -- M. Def. Modifiers
+(25349, 4414, 2), -- Armor Type
+(25349, 4415, 9), -- Weapon Type
+(25349, 4416, 9), -- Races
 (25349, 4494, 1), -- Raid Boss
 (25349, 4924, 1), -- Raid Boss - Level 80
 -- Knight of Shadow
 (25350, 4045, 1), -- Resist Full Magic Attack
-(25350, 4191, 9), -- Wind Strike
+(25350, 4191, 9), -- BOSS Wind Strike
 (25350, 4201, 9), -- Sleep
-(25350, 4408, 1), -- HP Increase (1x)
-(25350, 4409, 1), -- MP Increase (1x)
-(25350, 4410, 11), -- Average P. Atk.
-(25350, 4411, 11), -- Average M. Atk.
-(25350, 4412, 11), -- Average P. Def.
-(25350, 4413, 11), -- Average M. Def.
-(25350, 4414, 3), -- Light Armor Type
-(25350, 4415, 5), -- Blunt Weapons
-(25350, 4416, 9), -- Demons
+(25350, 4408, 1), -- HP Modifiers
+(25350, 4409, 1), -- MP Modifiers
+(25350, 4410, 11), -- P. Atk. Modifiers
+(25350, 4411, 11), -- M. Atk. Modifiers
+(25350, 4412, 11), -- P. Def. Modifiers
+(25350, 4413, 11), -- M. Def. Modifiers
+(25350, 4414, 3), -- Armor Type
+(25350, 4415, 5), -- Weapon Type
+(25350, 4416, 9), -- Races
 -- Knight of Shadow
 (25351, 4045, 1), -- Resist Full Magic Attack
-(25351, 4212, 9), -- Shield
-(25351, 4408, 1), -- HP Increase (1x)
-(25351, 4409, 1), -- MP Increase (1x)
-(25351, 4410, 11), -- Average P. Atk.
-(25351, 4411, 11), -- Average M. Atk.
-(25351, 4412, 11), -- Average P. Def.
-(25351, 4413, 11), -- Average M. Def.
-(25351, 4414, 3), -- Light Armor Type
-(25351, 4415, 3), -- One-handed Sword
-(25351, 4416, 9), -- Demons
-(25351, 4788, 9), -- Chant of Life
+(25351, 4212, 9), -- BOSS Shield
+(25351, 4408, 1), -- HP Modifiers
+(25351, 4409, 1), -- MP Modifiers
+(25351, 4410, 11), -- P. Atk. Modifiers
+(25351, 4411, 11), -- M. Atk. Modifiers
+(25351, 4412, 11), -- P. Def. Modifiers
+(25351, 4413, 11), -- M. Def. Modifiers
+(25351, 4414, 3), -- Armor Type
+(25351, 4415, 3), -- Weapon Type
+(25351, 4416, 9), -- Races
+(25351, 4788, 9), -- BOSS Chant of Life
 -- Giant Wasteland Basilisk
 (25352, 4045, 1), -- Resist Full Magic Attack
 (25352, 4197, 3), -- Hold
-(25352, 4408, 1), -- HP Increase (1x)
-(25352, 4409, 1), -- MP Increase (1x)
-(25352, 4410, 11), -- Average P. Atk.
-(25352, 4411, 11), -- Average M. Atk.
-(25352, 4412, 11), -- Average P. Def.
-(25352, 4413, 11), -- Average M. Def.
-(25352, 4414, 2), -- Standard Type
-(25352, 4415, 3), -- One-handed Sword
-(25352, 4416, 3), -- Beasts
+(25352, 4408, 1), -- HP Modifiers
+(25352, 4409, 1), -- MP Modifiers
+(25352, 4410, 11), -- P. Atk. Modifiers
+(25352, 4411, 11), -- M. Atk. Modifiers
+(25352, 4412, 11), -- P. Def. Modifiers
+(25352, 4413, 11), -- M. Def. Modifiers
+(25352, 4414, 2), -- Armor Type
+(25352, 4415, 3), -- Weapon Type
+(25352, 4416, 3), -- Races
 (25352, 4494, 1), -- Raid Boss
 (25352, 4925, 1), -- Raid Boss - Level 30
 -- Giant Wasteland Basilisk
 (25353, 4045, 1), -- Resist Full Magic Attack
-(25353, 4408, 1), -- HP Increase (1x)
-(25353, 4409, 1), -- MP Increase (1x)
-(25353, 4410, 11), -- Average P. Atk.
-(25353, 4411, 11), -- Average M. Atk.
-(25353, 4412, 11), -- Average P. Def.
-(25353, 4413, 11), -- Average M. Def.
-(25353, 4414, 3), -- Light Armor Type
-(25353, 4415, 3), -- One-handed Sword
-(25353, 4416, 3), -- Beasts
+(25353, 4408, 1), -- HP Modifiers
+(25353, 4409, 1), -- MP Modifiers
+(25353, 4410, 11), -- P. Atk. Modifiers
+(25353, 4411, 11), -- M. Atk. Modifiers
+(25353, 4412, 11), -- P. Def. Modifiers
+(25353, 4413, 11), -- M. Def. Modifiers
+(25353, 4414, 3), -- Armor Type
+(25353, 4415, 3), -- Weapon Type
+(25353, 4416, 3), -- Races
 (25353, 4728, 2), -- Stun
 -- Gargoyle Lord Sirocco
 (25354, 4045, 1), -- Resist Full Magic Attack
 (25354, 4184, 3), -- Decrease Atk. Spd.
 (25354, 4186, 3), -- Hold
-(25354, 4195, 3), -- Twister
-(25354, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25354, 4274, 1), -- Blunt Weapon Weak Point
-(25354, 4408, 1), -- HP Increase (1x)
-(25354, 4409, 1), -- MP Increase (1x)
-(25354, 4410, 11), -- Average P. Atk.
-(25354, 4411, 11), -- Average M. Atk.
-(25354, 4412, 11), -- Average P. Def.
-(25354, 4413, 11), -- Average M. Def.
-(25354, 4414, 2), -- Standard Type
-(25354, 4415, 1), -- Bare Hands
-(25354, 4416, 2), -- Magic Creatures
+(25354, 4195, 3), -- BOSS Twister
+(25354, 4273, 3), -- Resist Dagger
+(25354, 4274, 1), -- Blunt Attack Weak Point
+(25354, 4408, 1), -- HP Modifiers
+(25354, 4409, 1), -- MP Modifiers
+(25354, 4410, 11), -- P. Atk. Modifiers
+(25354, 4411, 11), -- M. Atk. Modifiers
+(25354, 4412, 11), -- P. Def. Modifiers
+(25354, 4413, 11), -- M. Def. Modifiers
+(25354, 4414, 2), -- Armor Type
+(25354, 4415, 1), -- Weapon Type
+(25354, 4416, 2), -- Races
 (25354, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 (25354, 4494, 1), -- Raid Boss
 (25354, 4926, 1), -- Raid Boss - Level 35
 -- Sirocco's Gargoyle
 (25355, 4045, 1), -- Resist Full Magic Attack
-(25355, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25355, 4274, 1), -- Blunt Weapon Weak Point
-(25355, 4408, 1), -- HP Increase (1x)
-(25355, 4409, 1), -- MP Increase (1x)
-(25355, 4410, 11), -- Average P. Atk.
-(25355, 4411, 11), -- Average M. Atk.
-(25355, 4412, 11), -- Average P. Def.
-(25355, 4413, 11), -- Average M. Def.
-(25355, 4414, 3), -- Light Armor Type
-(25355, 4415, 1), -- Bare Hands
-(25355, 4416, 2), -- Magic Creatures
+(25355, 4273, 3), -- Resist Dagger
+(25355, 4274, 1), -- Blunt Attack Weak Point
+(25355, 4408, 1), -- HP Modifiers
+(25355, 4409, 1), -- MP Modifiers
+(25355, 4410, 11), -- P. Atk. Modifiers
+(25355, 4411, 11), -- M. Atk. Modifiers
+(25355, 4412, 11), -- P. Def. Modifiers
+(25355, 4413, 11), -- M. Def. Modifiers
+(25355, 4414, 3), -- Armor Type
+(25355, 4415, 1), -- Weapon Type
+(25355, 4416, 2), -- Races
 (25355, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Sirocco's Guards
 (25356, 4045, 1), -- Resist Full Magic Attack
-(25356, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25356, 4274, 1), -- Blunt Weapon Weak Point
-(25356, 4408, 1), -- HP Increase (1x)
-(25356, 4409, 1), -- MP Increase (1x)
-(25356, 4410, 11), -- Average P. Atk.
-(25356, 4411, 11), -- Average M. Atk.
-(25356, 4412, 11), -- Average P. Def.
-(25356, 4413, 11), -- Average M. Def.
-(25356, 4414, 3), -- Light Armor Type
-(25356, 4415, 1), -- Bare Hands
-(25356, 4416, 2), -- Magic Creatures
+(25356, 4273, 3), -- Resist Dagger
+(25356, 4274, 1), -- Blunt Attack Weak Point
+(25356, 4408, 1), -- HP Modifiers
+(25356, 4409, 1), -- MP Modifiers
+(25356, 4410, 11), -- P. Atk. Modifiers
+(25356, 4411, 11), -- M. Atk. Modifiers
+(25356, 4412, 11), -- P. Def. Modifiers
+(25356, 4413, 11), -- M. Def. Modifiers
+(25356, 4414, 3), -- Armor Type
+(25356, 4415, 1), -- Weapon Type
+(25356, 4416, 2), -- Races
 (25356, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
-(25356, 4741, 3), -- Power Strike
+(25356, 4741, 3), -- BOSS Strike
 -- Sukar Wererat Chief
 (25357, 4045, 1), -- Resist Full Magic Attack
-(25357, 4178, 2), -- Flame Strike
-(25357, 4408, 1), -- HP Increase (1x)
-(25357, 4409, 1), -- MP Increase (1x)
-(25357, 4410, 11), -- Average P. Atk.
-(25357, 4411, 11), -- Average M. Atk.
-(25357, 4412, 11), -- Average P. Def.
-(25357, 4413, 11), -- Average M. Def.
-(25357, 4414, 2), -- Standard Type
-(25357, 4415, 7), -- Daggers
-(25357, 4416, 6), -- Humanoids
+(25357, 4178, 2), -- BOSS Flame Strike
+(25357, 4408, 1), -- HP Modifiers
+(25357, 4409, 1), -- MP Modifiers
+(25357, 4410, 11), -- P. Atk. Modifiers
+(25357, 4411, 11), -- M. Atk. Modifiers
+(25357, 4412, 11), -- P. Def. Modifiers
+(25357, 4413, 11), -- M. Def. Modifiers
+(25357, 4414, 2), -- Armor Type
+(25357, 4415, 7), -- Weapon Type
+(25357, 4416, 6), -- Races
 (25357, 4494, 1), -- Raid Boss
 (25357, 4927, 1), -- Raid Boss - Level 21
 -- Sukar Wererat Guard
 (25358, 4045, 1), -- Resist Full Magic Attack
-(25358, 4408, 1), -- HP Increase (1x)
-(25358, 4409, 1), -- MP Increase (1x)
-(25358, 4410, 11), -- Average P. Atk.
-(25358, 4411, 11), -- Average M. Atk.
-(25358, 4412, 11), -- Average P. Def.
-(25358, 4413, 11), -- Average M. Def.
-(25358, 4414, 3), -- Light Armor Type
-(25358, 4415, 7), -- Daggers
-(25358, 4416, 6), -- Humanoids
-(25358, 4733, 2), -- Mortal Blow
+(25358, 4408, 1), -- HP Modifiers
+(25358, 4409, 1), -- MP Modifiers
+(25358, 4410, 11), -- P. Atk. Modifiers
+(25358, 4411, 11), -- M. Atk. Modifiers
+(25358, 4412, 11), -- P. Def. Modifiers
+(25358, 4413, 11), -- M. Def. Modifiers
+(25358, 4414, 3), -- Armor Type
+(25358, 4415, 7), -- Weapon Type
+(25358, 4416, 6), -- Races
+(25358, 4733, 2), -- BOSS Mortal Blow
 -- Sukar Wererat Priest
 (25359, 4045, 1), -- Resist Full Magic Attack
-(25359, 4211, 2), -- Might
-(25359, 4408, 1), -- HP Increase (1x)
-(25359, 4409, 1), -- MP Increase (1x)
-(25359, 4410, 11), -- Average P. Atk.
-(25359, 4411, 11), -- Average M. Atk.
-(25359, 4412, 11), -- Average P. Def.
-(25359, 4413, 11), -- Average M. Def.
-(25359, 4414, 3), -- Light Armor Type
-(25359, 4415, 5), -- Blunt Weapons
-(25359, 4416, 6), -- Humanoids
-(25359, 4783, 2), -- Heal
+(25359, 4211, 2), -- BOSS Might
+(25359, 4408, 1), -- HP Modifiers
+(25359, 4409, 1), -- MP Modifiers
+(25359, 4410, 11), -- P. Atk. Modifiers
+(25359, 4411, 11), -- M. Atk. Modifiers
+(25359, 4412, 11), -- P. Def. Modifiers
+(25359, 4413, 11), -- M. Def. Modifiers
+(25359, 4414, 3), -- Armor Type
+(25359, 4415, 5), -- Weapon Type
+(25359, 4416, 6), -- Races
+(25359, 4783, 2), -- BOSS Heal
 -- Tiger Hornet
 (25360, 4045, 1), -- Resist Full Magic Attack
 (25360, 4197, 2), -- Hold
-(25360, 4408, 1), -- HP Increase (1x)
-(25360, 4409, 1), -- MP Increase (1x)
-(25360, 4410, 11), -- Average P. Atk.
-(25360, 4411, 11), -- Average M. Atk.
-(25360, 4412, 11), -- Average P. Def.
-(25360, 4413, 11), -- Average M. Def.
-(25360, 4414, 2), -- Standard Type
-(25360, 4415, 7), -- Daggers
-(25360, 4416, 12), -- Bugs
+(25360, 4408, 1), -- HP Modifiers
+(25360, 4409, 1), -- MP Modifiers
+(25360, 4410, 11), -- P. Atk. Modifiers
+(25360, 4411, 11), -- M. Atk. Modifiers
+(25360, 4412, 11), -- P. Def. Modifiers
+(25360, 4413, 11), -- M. Def. Modifiers
+(25360, 4414, 2), -- Armor Type
+(25360, 4415, 7), -- Weapon Type
+(25360, 4416, 12), -- Races
 (25360, 4494, 1), -- Raid Boss
 (25360, 4928, 1), -- Raid Boss - Level 26
 -- Yellow Hornet
 (25361, 4045, 1), -- Resist Full Magic Attack
-(25361, 4408, 1), -- HP Increase (1x)
-(25361, 4409, 1), -- MP Increase (1x)
-(25361, 4410, 11), -- Average P. Atk.
-(25361, 4411, 11), -- Average M. Atk.
-(25361, 4412, 11), -- Average P. Def.
-(25361, 4413, 11), -- Average M. Def.
-(25361, 4414, 3), -- Light Armor Type
-(25361, 4415, 7), -- Daggers
-(25361, 4416, 12), -- Bugs
-(25361, 4733, 2), -- Mortal Blow
+(25361, 4408, 1), -- HP Modifiers
+(25361, 4409, 1), -- MP Modifiers
+(25361, 4410, 11), -- P. Atk. Modifiers
+(25361, 4411, 11), -- M. Atk. Modifiers
+(25361, 4412, 11), -- P. Def. Modifiers
+(25361, 4413, 11), -- M. Def. Modifiers
+(25361, 4414, 3), -- Armor Type
+(25361, 4415, 7), -- Weapon Type
+(25361, 4416, 12), -- Races
+(25361, 4733, 2), -- BOSS Mortal Blow
 -- Tracker Leader Sharuk
 (25362, 4045, 1), -- Resist Full Magic Attack
-(25362, 4408, 1), -- HP Increase (1x)
-(25362, 4409, 1), -- MP Increase (1x)
-(25362, 4410, 11), -- Average P. Atk.
-(25362, 4411, 11), -- Average M. Atk.
-(25362, 4412, 11), -- Average P. Def.
-(25362, 4413, 11), -- Average M. Def.
-(25362, 4414, 2), -- Standard Type
-(25362, 4415, 3), -- One-handed Sword
-(25362, 4416, 6), -- Humanoids
+(25362, 4408, 1), -- HP Modifiers
+(25362, 4409, 1), -- MP Modifiers
+(25362, 4410, 11), -- P. Atk. Modifiers
+(25362, 4411, 11), -- M. Atk. Modifiers
+(25362, 4412, 11), -- P. Def. Modifiers
+(25362, 4413, 11), -- M. Def. Modifiers
+(25362, 4414, 2), -- Armor Type
+(25362, 4415, 3), -- Weapon Type
+(25362, 4416, 6), -- Races
 (25362, 4494, 1), -- Raid Boss
-(25362, 4743, 2), -- Power Strike
+(25362, 4743, 2), -- BOSS Strike
 (25362, 4929, 1), -- Raid Boss - Level 23
 -- Sharuk's Tracker
 (25363, 4045, 1), -- Resist Full Magic Attack
-(25363, 4408, 1), -- HP Increase (1x)
-(25363, 4409, 1), -- MP Increase (1x)
-(25363, 4410, 11), -- Average P. Atk.
-(25363, 4411, 11), -- Average M. Atk.
-(25363, 4412, 11), -- Average P. Def.
-(25363, 4413, 11), -- Average M. Def.
-(25363, 4414, 3), -- Light Armor Type
-(25363, 4415, 3), -- One-handed Sword
-(25363, 4416, 6), -- Humanoids
+(25363, 4408, 1), -- HP Modifiers
+(25363, 4409, 1), -- MP Modifiers
+(25363, 4410, 11), -- P. Atk. Modifiers
+(25363, 4411, 11), -- M. Atk. Modifiers
+(25363, 4412, 11), -- P. Def. Modifiers
+(25363, 4413, 11), -- M. Def. Modifiers
+(25363, 4414, 3), -- Armor Type
+(25363, 4415, 3), -- Weapon Type
+(25363, 4416, 6), -- Races
 -- Sharuk's Marksman
 (25364, 4045, 1), -- Resist Full Magic Attack
-(25364, 4408, 1), -- HP Increase (1x)
-(25364, 4409, 1), -- MP Increase (1x)
-(25364, 4410, 11), -- Average P. Atk.
-(25364, 4411, 11), -- Average M. Atk.
-(25364, 4412, 11), -- Average P. Def.
-(25364, 4413, 11), -- Average M. Def.
-(25364, 4414, 3), -- Light Armor Type
-(25364, 4415, 9), -- Bows
-(25364, 4416, 6), -- Humanoids
+(25364, 4408, 1), -- HP Modifiers
+(25364, 4409, 1), -- MP Modifiers
+(25364, 4410, 11), -- P. Atk. Modifiers
+(25364, 4411, 11), -- M. Atk. Modifiers
+(25364, 4412, 11), -- P. Def. Modifiers
+(25364, 4413, 11), -- M. Def. Modifiers
+(25364, 4414, 3), -- Armor Type
+(25364, 4415, 9), -- Weapon Type
+(25364, 4416, 6), -- Races
 -- Patriarch Kuroboros
 (25365, 4045, 1), -- Resist Full Magic Attack
-(25365, 4174, 2), -- Shield
-(25365, 4177, 2), -- Cancel
-(25365, 4408, 1), -- HP Increase (1x)
-(25365, 4409, 1), -- MP Increase (1x)
-(25365, 4410, 11), -- Average P. Atk.
-(25365, 4411, 11), -- Average M. Atk.
-(25365, 4412, 11), -- Average P. Def.
-(25365, 4413, 11), -- Average M. Def.
-(25365, 4414, 2), -- Standard Type
-(25365, 4415, 3), -- One-handed Sword
-(25365, 4416, 6), -- Humanoids
+(25365, 4174, 2), -- BOSS Shield
+(25365, 4177, 2), -- BOSS Cancel Magic
+(25365, 4408, 1), -- HP Modifiers
+(25365, 4409, 1), -- MP Modifiers
+(25365, 4410, 11), -- P. Atk. Modifiers
+(25365, 4411, 11), -- M. Atk. Modifiers
+(25365, 4412, 11), -- P. Def. Modifiers
+(25365, 4413, 11), -- M. Def. Modifiers
+(25365, 4414, 2), -- Armor Type
+(25365, 4415, 3), -- Weapon Type
+(25365, 4416, 6), -- Races
 (25365, 4494, 1), -- Raid Boss
-(25365, 4723, 2), -- Power Strike
-(25365, 4738, 2), -- Whirlwind
+(25365, 4723, 2), -- BOSS Strike
+(25365, 4738, 2), -- BOSS Spinning Slash
 (25365, 4930, 1), -- Raid Boss - Level 26
 -- Kuroboros' Priest
 (25366, 4045, 1), -- Resist Full Magic Attack
-(25366, 4178, 2), -- Flame Strike
-(25366, 4408, 1), -- HP Increase (1x)
-(25366, 4409, 1), -- MP Increase (1x)
-(25366, 4410, 11), -- Average P. Atk.
-(25366, 4411, 11), -- Average M. Atk.
-(25366, 4412, 11), -- Average P. Def.
-(25366, 4413, 11), -- Average M. Def.
-(25366, 4414, 2), -- Standard Type
-(25366, 4415, 3), -- One-handed Sword
-(25366, 4416, 6), -- Humanoids
+(25366, 4178, 2), -- BOSS Flame Strike
+(25366, 4408, 1), -- HP Modifiers
+(25366, 4409, 1), -- MP Modifiers
+(25366, 4410, 11), -- P. Atk. Modifiers
+(25366, 4411, 11), -- M. Atk. Modifiers
+(25366, 4412, 11), -- P. Def. Modifiers
+(25366, 4413, 11), -- M. Def. Modifiers
+(25366, 4414, 2), -- Armor Type
+(25366, 4415, 3), -- Weapon Type
+(25366, 4416, 6), -- Races
 (25366, 4494, 1), -- Raid Boss
 (25366, 4931, 1), -- Raid Boss - Level 23
 -- Kuroboros' Follower
 (25367, 4045, 1), -- Resist Full Magic Attack
-(25367, 4408, 1), -- HP Increase (1x)
-(25367, 4409, 1), -- MP Increase (1x)
-(25367, 4410, 11), -- Average P. Atk.
-(25367, 4411, 11), -- Average M. Atk.
-(25367, 4412, 11), -- Average P. Def.
-(25367, 4413, 11), -- Average M. Def.
-(25367, 4414, 3), -- Light Armor Type
-(25367, 4415, 3), -- One-handed Sword
-(25367, 4416, 6), -- Humanoids
-(25367, 4743, 2), -- Power Strike
+(25367, 4408, 1), -- HP Modifiers
+(25367, 4409, 1), -- MP Modifiers
+(25367, 4410, 11), -- P. Atk. Modifiers
+(25367, 4411, 11), -- M. Atk. Modifiers
+(25367, 4412, 11), -- P. Def. Modifiers
+(25367, 4413, 11), -- M. Def. Modifiers
+(25367, 4414, 3), -- Armor Type
+(25367, 4415, 3), -- Weapon Type
+(25367, 4416, 6), -- Races
+(25367, 4743, 2), -- BOSS Strike
 -- Kuroboros' Discipline
 (25368, 4045, 1), -- Resist Full Magic Attack
-(25368, 4212, 6), -- Shield
-(25368, 4408, 1), -- HP Increase (1x)
-(25368, 4409, 1), -- MP Increase (1x)
-(25368, 4410, 11), -- Average P. Atk.
-(25368, 4411, 11), -- Average M. Atk.
-(25368, 4412, 11), -- Average P. Def.
-(25368, 4413, 11), -- Average M. Def.
-(25368, 4414, 3), -- Light Armor Type
-(25368, 4415, 5), -- Blunt Weapons
-(25368, 4416, 6), -- Humanoids
-(25368, 4788, 6), -- Chant of Life
+(25368, 4212, 6), -- BOSS Shield
+(25368, 4408, 1), -- HP Modifiers
+(25368, 4409, 1), -- MP Modifiers
+(25368, 4410, 11), -- P. Atk. Modifiers
+(25368, 4411, 11), -- M. Atk. Modifiers
+(25368, 4412, 11), -- P. Def. Modifiers
+(25368, 4413, 11), -- M. Def. Modifiers
+(25368, 4414, 3), -- Armor Type
+(25368, 4415, 5), -- Weapon Type
+(25368, 4416, 6), -- Races
+(25368, 4788, 6), -- BOSS Chant of Life
 -- Soul Scavenger
 (25369, 4045, 1), -- Resist Full Magic Attack
 (25369, 4183, 2), -- Decrease P. Atk.
 (25369, 4185, 2), -- Sleep
-(25369, 4191, 2), -- Wind Strike
-(25369, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25369, 4274, 1), -- Blunt Weapon Weak Point
-(25369, 4408, 1), -- HP Increase (1x)
-(25369, 4409, 1), -- MP Increase (1x)
-(25369, 4410, 11), -- Average P. Atk.
-(25369, 4411, 11), -- Average M. Atk.
-(25369, 4412, 11), -- Average P. Def.
-(25369, 4413, 11), -- Average M. Def.
-(25369, 4414, 2), -- Standard Type
-(25369, 4415, 3), -- One-handed Sword
-(25369, 4416, 1), -- Undead
+(25369, 4191, 2), -- BOSS Wind Strike
+(25369, 4273, 3), -- Resist Dagger
+(25369, 4274, 1), -- Blunt Attack Weak Point
+(25369, 4408, 1), -- HP Modifiers
+(25369, 4409, 1), -- MP Modifiers
+(25369, 4410, 11), -- P. Atk. Modifiers
+(25369, 4411, 11), -- M. Atk. Modifiers
+(25369, 4412, 11), -- P. Def. Modifiers
+(25369, 4413, 11), -- M. Def. Modifiers
+(25369, 4414, 2), -- Armor Type
+(25369, 4415, 3), -- Weapon Type
+(25369, 4416, 1), -- Races
 (25369, 4494, 1), -- Raid Boss
 (25369, 4932, 1), -- Raid Boss - Level 25
 -- Corpse Scavenger
 (25370, 4045, 1), -- Resist Full Magic Attack
-(25370, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25370, 4274, 1), -- Blunt Weapon Weak Point
-(25370, 4408, 1), -- HP Increase (1x)
-(25370, 4409, 1), -- MP Increase (1x)
-(25370, 4410, 11), -- Average P. Atk.
-(25370, 4411, 11), -- Average M. Atk.
-(25370, 4412, 11), -- Average P. Def.
-(25370, 4413, 11), -- Average M. Def.
-(25370, 4414, 3), -- Light Armor Type
-(25370, 4415, 7), -- Daggers
-(25370, 4416, 1), -- Undead
-(25370, 4733, 2), -- Mortal Blow
+(25370, 4273, 3), -- Resist Dagger
+(25370, 4274, 1), -- Blunt Attack Weak Point
+(25370, 4408, 1), -- HP Modifiers
+(25370, 4409, 1), -- MP Modifiers
+(25370, 4410, 11), -- P. Atk. Modifiers
+(25370, 4411, 11), -- M. Atk. Modifiers
+(25370, 4412, 11), -- P. Def. Modifiers
+(25370, 4413, 11), -- M. Def. Modifiers
+(25370, 4414, 3), -- Armor Type
+(25370, 4415, 7), -- Weapon Type
+(25370, 4416, 1), -- Races
+(25370, 4733, 2), -- BOSS Mortal Blow
 -- Anima Scavenger
 (25371, 4045, 1), -- Resist Full Magic Attack
-(25371, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25371, 4274, 1), -- Blunt Weapon Weak Point
-(25371, 4408, 1), -- HP Increase (1x)
-(25371, 4409, 1), -- MP Increase (1x)
-(25371, 4410, 11), -- Average P. Atk.
-(25371, 4411, 11), -- Average M. Atk.
-(25371, 4412, 11), -- Average P. Def.
-(25371, 4413, 11), -- Average M. Def.
-(25371, 4414, 3), -- Light Armor Type
-(25371, 4415, 7), -- Daggers
-(25371, 4416, 1), -- Undead
+(25371, 4273, 3), -- Resist Dagger
+(25371, 4274, 1), -- Blunt Attack Weak Point
+(25371, 4408, 1), -- HP Modifiers
+(25371, 4409, 1), -- MP Modifiers
+(25371, 4410, 11), -- P. Atk. Modifiers
+(25371, 4411, 11), -- M. Atk. Modifiers
+(25371, 4412, 11), -- P. Def. Modifiers
+(25371, 4413, 11), -- M. Def. Modifiers
+(25371, 4414, 3), -- Armor Type
+(25371, 4415, 7), -- Weapon Type
+(25371, 4416, 1), -- Races
 -- Discarded Guardian
 (25372, 4045, 1), -- Resist Full Magic Attack
 (25372, 4172, 2), -- Stun
-(25372, 4173, 2), -- Might
-(25372, 4177, 2), -- Cancel
-(25372, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25372, 4274, 1), -- Blunt Weapon Weak Point
-(25372, 4408, 1), -- HP Increase (1x)
-(25372, 4409, 1), -- MP Increase (1x)
-(25372, 4410, 11), -- Average P. Atk.
-(25372, 4411, 11), -- Average M. Atk.
-(25372, 4412, 11), -- Average P. Def.
-(25372, 4413, 11), -- Average M. Def.
-(25372, 4414, 2), -- Standard Type
-(25372, 4415, 1), -- Bare Hands
-(25372, 4416, 2), -- Magic Creatures
+(25372, 4173, 2), -- BOSS Might
+(25372, 4177, 2), -- BOSS Cancel Magic
+(25372, 4273, 3), -- Resist Dagger
+(25372, 4274, 1), -- Blunt Attack Weak Point
+(25372, 4408, 1), -- HP Modifiers
+(25372, 4409, 1), -- MP Modifiers
+(25372, 4410, 11), -- P. Atk. Modifiers
+(25372, 4411, 11), -- M. Atk. Modifiers
+(25372, 4412, 11), -- P. Def. Modifiers
+(25372, 4413, 11), -- M. Def. Modifiers
+(25372, 4414, 2), -- Armor Type
+(25372, 4415, 1), -- Weapon Type
+(25372, 4416, 2), -- Races
 (25372, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 (25372, 4494, 1), -- Raid Boss
-(25372, 4733, 2), -- Mortal Blow
+(25372, 4733, 2), -- BOSS Mortal Blow
 (25372, 4933, 1), -- Raid Boss - Level 20
 -- Malex Herald of Dagoniel 
 (25373, 4045, 1), -- Resist Full Magic Attack
 (25373, 4197, 2), -- Hold
-(25373, 4408, 1), -- HP Increase (1x)
-(25373, 4409, 1), -- MP Increase (1x)
-(25373, 4410, 11), -- Average P. Atk.
-(25373, 4411, 11), -- Average M. Atk.
-(25373, 4412, 11), -- Average P. Def.
-(25373, 4413, 11), -- Average M. Def.
-(25373, 4414, 2), -- Standard Type
-(25373, 4415, 1), -- Bare Hands
-(25373, 4416, 9), -- Demons
+(25373, 4408, 1), -- HP Modifiers
+(25373, 4409, 1), -- MP Modifiers
+(25373, 4410, 11), -- P. Atk. Modifiers
+(25373, 4411, 11), -- M. Atk. Modifiers
+(25373, 4412, 11), -- P. Def. Modifiers
+(25373, 4413, 11), -- M. Def. Modifiers
+(25373, 4414, 2), -- Armor Type
+(25373, 4415, 1), -- Weapon Type
+(25373, 4416, 9), -- Races
 (25373, 4494, 1), -- Raid Boss
 (25373, 4934, 1), -- Raid Boss - Level 21
 -- Abyss Flyer
 (25374, 4045, 1), -- Resist Full Magic Attack
-(25374, 4408, 1), -- HP Increase (1x)
-(25374, 4409, 1), -- MP Increase (1x)
-(25374, 4410, 11), -- Average P. Atk.
-(25374, 4411, 11), -- Average M. Atk.
-(25374, 4412, 11), -- Average P. Def.
-(25374, 4413, 11), -- Average M. Def.
-(25374, 4414, 3), -- Light Armor Type
-(25374, 4415, 3), -- One-handed Sword
-(25374, 4416, 4), -- Animals
+(25374, 4408, 1), -- HP Modifiers
+(25374, 4409, 1), -- MP Modifiers
+(25374, 4410, 11), -- P. Atk. Modifiers
+(25374, 4411, 11), -- M. Atk. Modifiers
+(25374, 4412, 11), -- P. Def. Modifiers
+(25374, 4413, 11), -- M. Def. Modifiers
+(25374, 4414, 3), -- Armor Type
+(25374, 4415, 3), -- Weapon Type
+(25374, 4416, 4), -- Races
 (25374, 4728, 2), -- Stun
 -- Zombie Lord Ferkel
 (25375, 4045, 1), -- Resist Full Magic Attack
-(25375, 4178, 2), -- Flame Strike
-(25375, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25375, 4274, 1), -- Blunt Weapon Weak Point
-(25375, 4408, 1), -- HP Increase (1x)
-(25375, 4409, 1), -- MP Increase (1x)
-(25375, 4410, 11), -- Average P. Atk.
-(25375, 4411, 11), -- Average M. Atk.
-(25375, 4412, 11), -- Average P. Def.
-(25375, 4413, 11), -- Average M. Def.
-(25375, 4414, 2), -- Standard Type
-(25375, 4415, 1), -- Bare Hands
-(25375, 4416, 1), -- Undead
+(25375, 4178, 2), -- BOSS Flame Strike
+(25375, 4273, 3), -- Resist Dagger
+(25375, 4274, 1), -- Blunt Attack Weak Point
+(25375, 4408, 1), -- HP Modifiers
+(25375, 4409, 1), -- MP Modifiers
+(25375, 4410, 11), -- P. Atk. Modifiers
+(25375, 4411, 11), -- M. Atk. Modifiers
+(25375, 4412, 11), -- P. Def. Modifiers
+(25375, 4413, 11), -- M. Def. Modifiers
+(25375, 4414, 2), -- Armor Type
+(25375, 4415, 1), -- Weapon Type
+(25375, 4416, 1), -- Races
 (25375, 4494, 1), -- Raid Boss
 (25375, 4899, 1), -- Raid Boss - Level 20
 -- Ferkel's Warrior
 (25376, 4045, 1), -- Resist Full Magic Attack
-(25376, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25376, 4274, 1), -- Blunt Weapon Weak Point
-(25376, 4408, 1), -- HP Increase (1x)
-(25376, 4409, 1), -- MP Increase (1x)
-(25376, 4410, 11), -- Average P. Atk.
-(25376, 4411, 11), -- Average M. Atk.
-(25376, 4412, 11), -- Average P. Def.
-(25376, 4413, 11), -- Average M. Def.
-(25376, 4414, 3), -- Light Armor Type
-(25376, 4415, 1), -- Bare Hands
-(25376, 4416, 1), -- Undead
-(25376, 4743, 1), -- Power Strike
+(25376, 4273, 3), -- Resist Dagger
+(25376, 4274, 1), -- Blunt Attack Weak Point
+(25376, 4408, 1), -- HP Modifiers
+(25376, 4409, 1), -- MP Modifiers
+(25376, 4410, 11), -- P. Atk. Modifiers
+(25376, 4411, 11), -- M. Atk. Modifiers
+(25376, 4412, 11), -- P. Def. Modifiers
+(25376, 4413, 11), -- M. Def. Modifiers
+(25376, 4414, 3), -- Armor Type
+(25376, 4415, 1), -- Weapon Type
+(25376, 4416, 1), -- Races
+(25376, 4743, 1), -- BOSS Strike
 -- Ferkel's Priest
 (25377, 4045, 1), -- Resist Full Magic Attack
-(25377, 4213, 1), -- Haste
-(25377, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25377, 4274, 1), -- Blunt Weapon Weak Point
-(25377, 4408, 1), -- HP Increase (1x)
-(25377, 4409, 1), -- MP Increase (1x)
-(25377, 4410, 11), -- Average P. Atk.
-(25377, 4411, 11), -- Average M. Atk.
-(25377, 4412, 11), -- Average P. Def.
-(25377, 4413, 11), -- Average M. Def.
-(25377, 4414, 3), -- Light Armor Type
-(25377, 4415, 1), -- Bare Hands
-(25377, 4416, 1), -- Undead
-(25377, 4783, 1), -- Heal
+(25377, 4213, 1), -- BOSS Haste
+(25377, 4273, 3), -- Resist Dagger
+(25377, 4274, 1), -- Blunt Attack Weak Point
+(25377, 4408, 1), -- HP Modifiers
+(25377, 4409, 1), -- MP Modifiers
+(25377, 4410, 11), -- P. Atk. Modifiers
+(25377, 4411, 11), -- M. Atk. Modifiers
+(25377, 4412, 11), -- P. Def. Modifiers
+(25377, 4413, 11), -- M. Def. Modifiers
+(25377, 4414, 3), -- Armor Type
+(25377, 4415, 1), -- Weapon Type
+(25377, 4416, 1), -- Races
+(25377, 4783, 1), -- BOSS Heal
 -- Madness Beast
 (25378, 4045, 1), -- Resist Full Magic Attack
 (25378, 4197, 2), -- Hold
-(25378, 4408, 1), -- HP Increase (1x)
-(25378, 4409, 1), -- MP Increase (1x)
-(25378, 4410, 11), -- Average P. Atk.
-(25378, 4411, 11), -- Average M. Atk.
-(25378, 4412, 11), -- Average P. Def.
-(25378, 4413, 11), -- Average M. Def.
-(25378, 4414, 2), -- Standard Type
-(25378, 4415, 3), -- One-handed Sword
-(25378, 4416, 3), -- Beasts
+(25378, 4408, 1), -- HP Modifiers
+(25378, 4409, 1), -- MP Modifiers
+(25378, 4410, 11), -- P. Atk. Modifiers
+(25378, 4411, 11), -- M. Atk. Modifiers
+(25378, 4412, 11), -- P. Def. Modifiers
+(25378, 4413, 11), -- M. Def. Modifiers
+(25378, 4414, 2), -- Armor Type
+(25378, 4415, 3), -- Weapon Type
+(25378, 4416, 3), -- Races
 (25378, 4494, 1), -- Raid Boss
 (25378, 4935, 1), -- Raid Boss - Level 20
 -- Dementia Beast
 (25379, 4045, 1), -- Resist Full Magic Attack
-(25379, 4408, 1), -- HP Increase (1x)
-(25379, 4409, 1), -- MP Increase (1x)
-(25379, 4410, 11), -- Average P. Atk.
-(25379, 4411, 11), -- Average M. Atk.
-(25379, 4412, 11), -- Average P. Def.
-(25379, 4413, 11), -- Average M. Def.
-(25379, 4414, 3), -- Light Armor Type
-(25379, 4415, 3), -- One-handed Sword
-(25379, 4416, 3), -- Beasts
-(25379, 4743, 1), -- Power Strike
+(25379, 4408, 1), -- HP Modifiers
+(25379, 4409, 1), -- MP Modifiers
+(25379, 4410, 11), -- P. Atk. Modifiers
+(25379, 4411, 11), -- M. Atk. Modifiers
+(25379, 4412, 11), -- P. Def. Modifiers
+(25379, 4413, 11), -- M. Def. Modifiers
+(25379, 4414, 3), -- Armor Type
+(25379, 4415, 3), -- Weapon Type
+(25379, 4416, 3), -- Races
+(25379, 4743, 1), -- BOSS Strike
 -- Kaysha Herald of Icarus
 (25380, 4045, 1), -- Resist Full Magic Attack
 (25380, 4187, 2), -- Decrease Speed
 (25380, 4188, 2), -- Bleed
-(25380, 4192, 2), -- Vampiric Touch
-(25380, 4408, 1), -- HP Increase (1x)
-(25380, 4409, 1), -- MP Increase (1x)
-(25380, 4410, 11), -- Average P. Atk.
-(25380, 4411, 11), -- Average M. Atk.
-(25380, 4412, 11), -- Average P. Def.
-(25380, 4413, 11), -- Average M. Def.
-(25380, 4414, 2), -- Standard Type
-(25380, 4415, 1), -- Bare Hands
-(25380, 4416, 9), -- Demons
+(25380, 4192, 2), -- BOSS HP Drain
+(25380, 4408, 1), -- HP Modifiers
+(25380, 4409, 1), -- MP Modifiers
+(25380, 4410, 11), -- P. Atk. Modifiers
+(25380, 4411, 11), -- M. Atk. Modifiers
+(25380, 4412, 11), -- P. Def. Modifiers
+(25380, 4413, 11), -- M. Def. Modifiers
+(25380, 4414, 2), -- Armor Type
+(25380, 4415, 1), -- Weapon Type
+(25380, 4416, 9), -- Races
 (25380, 4494, 1), -- Raid Boss
 (25380, 4936, 1), -- Raid Boss - Level 21
 -- Nightmare Flyer
 (25381, 4045, 1), -- Resist Full Magic Attack
-(25381, 4408, 1), -- HP Increase (1x)
-(25381, 4409, 1), -- MP Increase (1x)
-(25381, 4410, 11), -- Average P. Atk.
-(25381, 4411, 11), -- Average M. Atk.
-(25381, 4412, 11), -- Average P. Def.
-(25381, 4413, 11), -- Average M. Def.
-(25381, 4414, 3), -- Light Armor Type
-(25381, 4415, 3), -- One-handed Sword
-(25381, 4416, 4), -- Animals
-(25381, 4743, 1), -- Power Strike
+(25381, 4408, 1), -- HP Modifiers
+(25381, 4409, 1), -- MP Modifiers
+(25381, 4410, 11), -- P. Atk. Modifiers
+(25381, 4411, 11), -- M. Atk. Modifiers
+(25381, 4412, 11), -- P. Def. Modifiers
+(25381, 4413, 11), -- M. Def. Modifiers
+(25381, 4414, 3), -- Armor Type
+(25381, 4415, 3), -- Weapon Type
+(25381, 4416, 4), -- Races
+(25381, 4743, 1), -- BOSS Strike
 -- Hostile Flyer
 (25382, 4045, 1), -- Resist Full Magic Attack
-(25382, 4408, 1), -- HP Increase (1x)
-(25382, 4409, 1), -- MP Increase (1x)
-(25382, 4410, 11), -- Average P. Atk.
-(25382, 4411, 11), -- Average M. Atk.
-(25382, 4412, 11), -- Average P. Def.
-(25382, 4413, 11), -- Average M. Def.
-(25382, 4414, 3), -- Light Armor Type
-(25382, 4415, 3), -- One-handed Sword
-(25382, 4416, 4), -- Animals
+(25382, 4408, 1), -- HP Modifiers
+(25382, 4409, 1), -- MP Modifiers
+(25382, 4410, 11), -- P. Atk. Modifiers
+(25382, 4411, 11), -- M. Atk. Modifiers
+(25382, 4412, 11), -- P. Def. Modifiers
+(25382, 4413, 11), -- M. Def. Modifiers
+(25382, 4414, 3); -- Armor Type
+
+INSERT INTO `npcskills` VALUES
+(25382, 4415, 3), -- Weapon Type
+(25382, 4416, 4), -- Races
 -- Revenant of Sir Calibus
 (25383, 4045, 1), -- Resist Full Magic Attack
 (25383, 4197, 3), -- Hold
-(25383, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25383, 4274, 1), -- Blunt Weapon Weak Point
-(25383, 4408, 1), -- HP Increase (1x)
-(25383, 4409, 1), -- MP Increase (1x)
-(25383, 4410, 11), -- Average P. Atk.
-(25383, 4411, 11), -- Average M. Atk.
-(25383, 4412, 11), -- Average P. Def.
-(25383, 4413, 11), -- Average M. Def.
-(25383, 4414, 2), -- Standard Type
-(25383, 4415, 3), -- One-handed Sword
-(25383, 4416, 1), -- Undead
+(25383, 4273, 3), -- Resist Dagger
+(25383, 4274, 1), -- Blunt Attack Weak Point
+(25383, 4408, 1), -- HP Modifiers
+(25383, 4409, 1), -- MP Modifiers
+(25383, 4410, 11), -- P. Atk. Modifiers
+(25383, 4411, 11), -- M. Atk. Modifiers
+(25383, 4412, 11), -- P. Def. Modifiers
+(25383, 4413, 11), -- M. Def. Modifiers
+(25383, 4414, 2), -- Armor Type
+(25383, 4415, 3), -- Weapon Type
+(25383, 4416, 1), -- Races
 (25383, 4494, 1), -- Raid Boss
 (25383, 4937, 1), -- Raid Boss - Level 34
 -- Servant of Calibus
 (25384, 4045, 1), -- Resist Full Magic Attack
-(25384, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25384, 4274, 1), -- Blunt Weapon Weak Point
-(25384, 4408, 1), -- HP Increase (1x)
-(25384, 4409, 1), -- MP Increase (1x)
-(25384, 4410, 11), -- Average P. Atk.
-(25384, 4411, 11), -- Average M. Atk.
-(25384, 4412, 11), -- Average P. Def.
-(25384, 4413, 11), -- Average M. Def.
-(25384, 4414, 3), -- Light Armor Type
-(25384, 4415, 7), -- Daggers
-(25384, 4416, 1), -- Undead
-(25384, 4733, 3), -- Mortal Blow
+(25384, 4273, 3), -- Resist Dagger
+(25384, 4274, 1), -- Blunt Attack Weak Point
+(25384, 4408, 1), -- HP Modifiers
+(25384, 4409, 1), -- MP Modifiers
+(25384, 4410, 11), -- P. Atk. Modifiers
+(25384, 4411, 11), -- M. Atk. Modifiers
+(25384, 4412, 11), -- P. Def. Modifiers
+(25384, 4413, 11), -- M. Def. Modifiers
+(25384, 4414, 3), -- Armor Type
+(25384, 4415, 7), -- Weapon Type
+(25384, 4416, 1), -- Races
+(25384, 4733, 3), -- BOSS Mortal Blow
 -- Evil Spirit Tempest
 (25385, 4045, 1), -- Resist Full Magic Attack
 (25385, 4188, 3), -- Bleed
 (25385, 4190, 3), -- Decrease MP
-(25385, 4192, 3), -- Vampiric Touch
-(25385, 4408, 1), -- HP Increase (1x)
-(25385, 4409, 1), -- MP Increase (1x)
-(25385, 4410, 11), -- Average P. Atk.
-(25385, 4411, 11), -- Average M. Atk.
-(25385, 4412, 11), -- Average P. Def.
-(25385, 4413, 11), -- Average M. Def.
-(25385, 4414, 2), -- Standard Type
-(25385, 4415, 1), -- Bare Hands
-(25385, 4416, 9), -- Demons
+(25385, 4192, 3), -- BOSS HP Drain
+(25385, 4408, 1), -- HP Modifiers
+(25385, 4409, 1), -- MP Modifiers
+(25385, 4410, 11), -- P. Atk. Modifiers
+(25385, 4411, 11), -- M. Atk. Modifiers
+(25385, 4412, 11), -- P. Def. Modifiers
+(25385, 4413, 11), -- M. Def. Modifiers
+(25385, 4414, 2), -- Armor Type
+(25385, 4415, 1), -- Weapon Type
+(25385, 4416, 9), -- Races
 (25385, 4494, 1), -- Raid Boss
 (25385, 4938, 1), -- Raid Boss - Level 36
 -- Ghost of the Execution Grounds
 (25386, 4045, 1), -- Resist Full Magic Attack
-(25386, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25386, 4274, 1), -- Blunt Weapon Weak Point
-(25386, 4408, 1), -- HP Increase (1x)
-(25386, 4409, 1), -- MP Increase (1x)
-(25386, 4410, 11), -- Average P. Atk.
-(25386, 4411, 11), -- Average M. Atk.
-(25386, 4412, 11), -- Average P. Def.
-(25386, 4413, 11), -- Average M. Def.
-(25386, 4414, 3), -- Light Armor Type
-(25386, 4415, 3), -- One-handed Sword
-(25386, 4416, 1), -- Undead
-(25386, 4743, 3), -- Power Strike
+(25386, 4273, 3), -- Resist Dagger
+(25386, 4274, 1), -- Blunt Attack Weak Point
+(25386, 4408, 1), -- HP Modifiers
+(25386, 4409, 1), -- MP Modifiers
+(25386, 4410, 11), -- P. Atk. Modifiers
+(25386, 4411, 11), -- M. Atk. Modifiers
+(25386, 4412, 11), -- P. Def. Modifiers
+(25386, 4413, 11), -- M. Def. Modifiers
+(25386, 4414, 3), -- Armor Type
+(25386, 4415, 3), -- Weapon Type
+(25386, 4416, 1), -- Races
+(25386, 4743, 3), -- BOSS Strike
 -- Malignant Spirit of the Execution Grounds
 (25387, 4045, 1), -- Resist Full Magic Attack
-(25387, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25387, 4274, 1), -- Blunt Weapon Weak Point
-(25387, 4408, 1), -- HP Increase (1x)
-(25387, 4409, 1), -- MP Increase (1x)
-(25387, 4410, 11), -- Average P. Atk.
-(25387, 4411, 11), -- Average M. Atk.
-(25387, 4412, 11), -- Average P. Def.
-(25387, 4413, 11), -- Average M. Def.
-(25387, 4414, 3), -- Light Armor Type
-(25387, 4415, 7), -- Daggers
-(25387, 4416, 1), -- Undead
+(25387, 4273, 3), -- Resist Dagger
+(25387, 4274, 1), -- Blunt Attack Weak Point
+(25387, 4408, 1), -- HP Modifiers
+(25387, 4409, 1), -- MP Modifiers
+(25387, 4410, 11), -- P. Atk. Modifiers
+(25387, 4411, 11), -- M. Atk. Modifiers
+(25387, 4412, 11), -- P. Def. Modifiers
+(25387, 4413, 11), -- M. Def. Modifiers
+(25387, 4414, 3), -- Armor Type
+(25387, 4415, 7), -- Weapon Type
+(25387, 4416, 1), -- Races
 -- Red Eye Captain Trakia
 (25388, 4045, 1), -- Resist Full Magic Attack
-(25388, 4408, 1), -- HP Increase (1x)
-(25388, 4409, 1), -- MP Increase (1x)
-(25388, 4410, 11), -- Average P. Atk.
-(25388, 4411, 11), -- Average M. Atk.
-(25388, 4412, 11), -- Average P. Def.
-(25388, 4413, 11), -- Average M. Def.
-(25388, 4414, 2), -- Standard Type
-(25388, 4415, 3), -- One-handed Sword
-(25388, 4416, 6), -- Humanoids
+(25388, 4408, 1), -- HP Modifiers
+(25388, 4409, 1), -- MP Modifiers
+(25388, 4410, 11), -- P. Atk. Modifiers
+(25388, 4411, 11), -- M. Atk. Modifiers
+(25388, 4412, 11), -- P. Def. Modifiers
+(25388, 4413, 11), -- M. Def. Modifiers
+(25388, 4414, 2), -- Armor Type
+(25388, 4415, 3), -- Weapon Type
+(25388, 4416, 6), -- Races
 (25388, 4494, 1), -- Raid Boss
-(25388, 4743, 3), -- Power Strike
+(25388, 4743, 3), -- BOSS Strike
 (25388, 4939, 1), -- Raid Boss - Level 35
 -- Red Eye Archer 
 (25389, 4045, 1), -- Resist Full Magic Attack
-(25389, 4408, 1), -- HP Increase (1x)
-(25389, 4409, 1), -- MP Increase (1x)
-(25389, 4410, 11), -- Average P. Atk.
-(25389, 4411, 11), -- Average M. Atk.
-(25389, 4412, 11), -- Average P. Def.
-(25389, 4413, 11), -- Average M. Def.
-(25389, 4414, 3), -- Light Armor Type
-(25389, 4415, 9), -- Bows
-(25389, 4416, 6), -- Humanoids
+(25389, 4408, 1), -- HP Modifiers
+(25389, 4409, 1), -- MP Modifiers
+(25389, 4410, 11), -- P. Atk. Modifiers
+(25389, 4411, 11), -- M. Atk. Modifiers
+(25389, 4412, 11), -- P. Def. Modifiers
+(25389, 4413, 11), -- M. Def. Modifiers
+(25389, 4414, 3), -- Armor Type
+(25389, 4415, 9), -- Weapon Type
+(25389, 4416, 6), -- Races
 -- Red Eye Guards
 (25390, 4045, 1), -- Resist Full Magic Attack
-(25390, 4408, 1), -- HP Increase (1x)
-(25390, 4409, 1), -- MP Increase (1x)
-(25390, 4410, 11), -- Average P. Atk.
-(25390, 4411, 11), -- Average M. Atk.
-(25390, 4412, 11), -- Average P. Def.
-(25390, 4413, 11), -- Average M. Def.
-(25390, 4414, 3), -- Light Armor Type
-(25390, 4415, 3), -- One-handed Sword
-(25390, 4416, 6), -- Humanoids
+(25390, 4408, 1), -- HP Modifiers
+(25390, 4409, 1), -- MP Modifiers
+(25390, 4410, 11), -- P. Atk. Modifiers
+(25390, 4411, 11), -- M. Atk. Modifiers
+(25390, 4412, 11), -- P. Def. Modifiers
+(25390, 4413, 11), -- M. Def. Modifiers
+(25390, 4414, 3), -- Armor Type
+(25390, 4415, 3), -- Weapon Type
+(25390, 4416, 6), -- Races
 -- Nurka's Messenger
 (25391, 4045, 1), -- Resist Full Magic Attack
-(25391, 4173, 3), -- Might
-(25391, 4177, 3), -- Cancel
-(25391, 4408, 1), -- HP Increase (1x)
-(25391, 4409, 1), -- MP Increase (1x)
-(25391, 4410, 11), -- Average P. Atk.
-(25391, 4411, 11), -- Average M. Atk.
-(25391, 4412, 11), -- Average P. Def.
-(25391, 4413, 11), -- Average M. Def.
-(25391, 4414, 2), -- Standard Type
-(25391, 4415, 3), -- One-handed Sword
-(25391, 4416, 6), -- Humanoids
+(25391, 4173, 3), -- BOSS Might
+(25391, 4177, 3), -- BOSS Cancel Magic
+(25391, 4408, 1), -- HP Modifiers
+(25391, 4409, 1), -- MP Modifiers
+(25391, 4410, 11), -- P. Atk. Modifiers
+(25391, 4411, 11), -- M. Atk. Modifiers
+(25391, 4412, 11), -- P. Def. Modifiers
+(25391, 4413, 11), -- M. Def. Modifiers
+(25391, 4414, 2), -- Armor Type
+(25391, 4415, 3), -- Weapon Type
+(25391, 4416, 6), -- Races
 (25391, 4494, 1), -- Raid Boss
-(25391, 4723, 3), -- Power Strike
-(25391, 4738, 3), -- Whirlwind
+(25391, 4723, 3), -- BOSS Strike
+(25391, 4738, 3), -- BOSS Spinning Slash
 (25391, 4940, 1), -- Raid Boss - Level 33
 -- Captain of Queen's Royal Guards
 (25392, 4045, 1), -- Resist Full Magic Attack
 (25392, 4197, 3), -- Hold
-(25392, 4408, 1), -- HP Increase (1x)
-(25392, 4409, 1), -- MP Increase (1x)
-(25392, 4410, 11), -- Average P. Atk.
-(25392, 4411, 11), -- Average M. Atk.
-(25392, 4412, 11), -- Average P. Def.
-(25392, 4413, 11), -- Average M. Def.
-(25392, 4414, 2), -- Standard Type
-(25392, 4415, 3), -- One-handed Sword
-(25392, 4416, 6), -- Humanoids
+(25392, 4408, 1), -- HP Modifiers
+(25392, 4409, 1), -- MP Modifiers
+(25392, 4410, 11), -- P. Atk. Modifiers
+(25392, 4411, 11), -- M. Atk. Modifiers
+(25392, 4412, 11), -- P. Def. Modifiers
+(25392, 4413, 11), -- M. Def. Modifiers
+(25392, 4414, 2), -- Armor Type
+(25392, 4415, 3), -- Weapon Type
+(25392, 4416, 6), -- Races
 (25392, 4494, 1), -- Raid Boss
 (25392, 4941, 1), -- Raid Boss - Level 32
 -- Marsh Stakato Noble
 (25393, 4045, 1), -- Resist Full Magic Attack
-(25393, 4408, 1), -- HP Increase (1x)
-(25393, 4409, 1), -- MP Increase (1x)
-(25393, 4410, 11), -- Average P. Atk.
-(25393, 4411, 11), -- Average M. Atk.
-(25393, 4412, 11), -- Average P. Def.
-(25393, 4413, 11), -- Average M. Def.
-(25393, 4414, 3), -- Light Armor Type
-(25393, 4415, 7), -- Daggers
-(25393, 4416, 6), -- Humanoids
-(25393, 4733, 3), -- Mortal Blow
+(25393, 4408, 1), -- HP Modifiers
+(25393, 4409, 1), -- MP Modifiers
+(25393, 4410, 11), -- P. Atk. Modifiers
+(25393, 4411, 11), -- M. Atk. Modifiers
+(25393, 4412, 11), -- P. Def. Modifiers
+(25393, 4413, 11), -- M. Def. Modifiers
+(25393, 4414, 3), -- Armor Type
+(25393, 4415, 7), -- Weapon Type
+(25393, 4416, 6), -- Races
+(25393, 4733, 3), -- BOSS Mortal Blow
 -- Premo Prime
 (25394, 4045, 1), -- Resist Full Magic Attack
-(25394, 4176, 3), -- Reflect Damage
-(25394, 4177, 3), -- Cancel
-(25394, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25394, 4274, 1), -- Blunt Weapon Weak Point
-(25394, 4408, 1), -- HP Increase (1x)
-(25394, 4409, 1), -- MP Increase (1x)
-(25394, 4410, 11), -- Average P. Atk.
-(25394, 4411, 11), -- Average M. Atk.
-(25394, 4412, 11), -- Average P. Def.
-(25394, 4413, 11), -- Average M. Def.
-(25394, 4414, 2), -- Standard Type
-(25394, 4415, 5), -- Blunt Weapons
-(25394, 4416, 11), -- Giants
+(25394, 4176, 3), -- BOSS Reflect Damage
+(25394, 4177, 3), -- BOSS Cancel Magic
+(25394, 4273, 3), -- Resist Dagger
+(25394, 4274, 1), -- Blunt Attack Weak Point
+(25394, 4408, 1), -- HP Modifiers
+(25394, 4409, 1), -- MP Modifiers
+(25394, 4410, 11), -- P. Atk. Modifiers
+(25394, 4411, 11), -- M. Atk. Modifiers
+(25394, 4412, 11), -- P. Def. Modifiers
+(25394, 4413, 11), -- M. Def. Modifiers
+(25394, 4414, 2), -- Armor Type
+(25394, 4415, 5), -- Weapon Type
+(25394, 4416, 11), -- Races
 (25394, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 (25394, 4494, 1), -- Raid Boss
 (25394, 4728, 3), -- Stun
-(25394, 4738, 3), -- Whirlwind
+(25394, 4738, 3), -- BOSS Spinning Slash
 (25394, 4942, 1), -- Raid Boss - Level 38
 -- Archon Susceptor
 (25395, 4045, 1), -- Resist Full Magic Attack
-(25395, 4178, 4), -- Flame Strike
-(25395, 4408, 1), -- HP Increase (1x)
-(25395, 4409, 1), -- MP Increase (1x)
-(25395, 4410, 11), -- Average P. Atk.
-(25395, 4411, 11), -- Average M. Atk.
-(25395, 4412, 11), -- Average P. Def.
-(25395, 4413, 11), -- Average M. Def.
-(25395, 4414, 2), -- Standard Type
-(25395, 4415, 5), -- Blunt Weapons
-(25395, 4416, 2), -- Magic Creatures
+(25395, 4178, 4), -- BOSS Flame Strike
+(25395, 4408, 1), -- HP Modifiers
+(25395, 4409, 1), -- MP Modifiers
+(25395, 4410, 11), -- P. Atk. Modifiers
+(25395, 4411, 11), -- M. Atk. Modifiers
+(25395, 4412, 11), -- P. Def. Modifiers
+(25395, 4413, 11), -- M. Def. Modifiers
+(25395, 4414, 2), -- Armor Type
+(25395, 4415, 5), -- Weapon Type
+(25395, 4416, 2), -- Races
 (25395, 4494, 1), -- Raid Boss
 (25395, 4943, 1), -- Raid Boss - Level 45
 -- Kusion Susceptor
 (25396, 4045, 1), -- Resist Full Magic Attack
-(25396, 4212, 4), -- Shield
-(25396, 4408, 1), -- HP Increase (1x)
-(25396, 4409, 1), -- MP Increase (1x)
-(25396, 4410, 11), -- Average P. Atk.
-(25396, 4411, 11), -- Average M. Atk.
-(25396, 4412, 11), -- Average P. Def.
-(25396, 4413, 11), -- Average M. Def.
-(25396, 4414, 3), -- Light Armor Type
-(25396, 4415, 5), -- Blunt Weapons
-(25396, 4416, 2), -- Magic Creatures
-(25396, 4788, 4), -- Chant of Life
+(25396, 4212, 4), -- BOSS Shield
+(25396, 4408, 1), -- HP Modifiers
+(25396, 4409, 1), -- MP Modifiers
+(25396, 4410, 11), -- P. Atk. Modifiers
+(25396, 4411, 11), -- M. Atk. Modifiers
+(25396, 4412, 11), -- P. Def. Modifiers
+(25396, 4413, 11), -- M. Def. Modifiers
+(25396, 4414, 3), -- Armor Type
+(25396, 4415, 5), -- Weapon Type
+(25396, 4416, 2), -- Races
+(25396, 4788, 4), -- BOSS Chant of Life
 -- Gustos Susceptor
 (25397, 4045, 1), -- Resist Full Magic Attack
-(25397, 4408, 1), -- HP Increase (1x)
-(25397, 4409, 1), -- MP Increase (1x)
-(25397, 4410, 11), -- Average P. Atk.
-(25397, 4411, 11), -- Average M. Atk.
-(25397, 4412, 11), -- Average P. Def.
-(25397, 4413, 11), -- Average M. Def.
-(25397, 4414, 3), -- Light Armor Type
-(25397, 4415, 5), -- Blunt Weapons
-(25397, 4416, 2), -- Magic Creatures
-(25397, 4743, 4), -- Power Strike
+(25397, 4408, 1), -- HP Modifiers
+(25397, 4409, 1), -- MP Modifiers
+(25397, 4410, 11), -- P. Atk. Modifiers
+(25397, 4411, 11), -- M. Atk. Modifiers
+(25397, 4412, 11), -- P. Def. Modifiers
+(25397, 4413, 11), -- M. Def. Modifiers
+(25397, 4414, 3), -- Armor Type
+(25397, 4415, 5), -- Weapon Type
+(25397, 4416, 2), -- Races
+(25397, 4743, 4), -- BOSS Strike
 -- Beleth's Eye
 (25398, 4045, 1), -- Resist Full Magic Attack
 (25398, 4182, 3), -- Poison
 (25398, 4190, 3), -- Decrease MP
-(25398, 4194, 3), -- Aura Burn
-(25398, 4408, 1), -- HP Increase (1x)
-(25398, 4409, 1), -- MP Increase (1x)
-(25398, 4410, 11), -- Average P. Atk.
-(25398, 4411, 11), -- Average M. Atk.
-(25398, 4412, 11), -- Average P. Def.
-(25398, 4413, 11), -- Average M. Def.
-(25398, 4414, 2), -- Standard Type
-(25398, 4415, 5), -- Blunt Weapons
-(25398, 4416, 2), -- Magic Creatures
+(25398, 4194, 3), -- BOSS Aura Burn
+(25398, 4408, 1), -- HP Modifiers
+(25398, 4409, 1), -- MP Modifiers
+(25398, 4410, 11), -- P. Atk. Modifiers
+(25398, 4411, 11), -- M. Atk. Modifiers
+(25398, 4412, 11), -- P. Def. Modifiers
+(25398, 4413, 11), -- M. Def. Modifiers
+(25398, 4414, 2), -- Armor Type
+(25398, 4415, 5), -- Weapon Type
+(25398, 4416, 2), -- Races
 (25398, 4494, 1), -- Raid Boss
 (25398, 4944, 1), -- Raid Boss - Level 35
 -- Apprentice of Watchman
 (25399, 4045, 1), -- Resist Full Magic Attack
-(25399, 4196, 3), -- Decrease Speed
+(25399, 4196, 3), -- Decreases Speed
 (25399, 4202, 3), -- Hold
-(25399, 4408, 1), -- HP Increase (1x)
-(25399, 4409, 1), -- MP Increase (1x)
-(25399, 4410, 11), -- Average P. Atk.
-(25399, 4411, 11), -- Average M. Atk.
-(25399, 4412, 11), -- Average P. Def.
-(25399, 4413, 11), -- Average M. Def.
-(25399, 4414, 3), -- Light Armor Type
-(25399, 4415, 5), -- Blunt Weapons
-(25399, 4416, 2), -- Magic Creatures
+(25399, 4408, 1), -- HP Modifiers
+(25399, 4409, 1), -- MP Modifiers
+(25399, 4410, 11), -- P. Atk. Modifiers
+(25399, 4411, 11), -- M. Atk. Modifiers
+(25399, 4412, 11), -- P. Def. Modifiers
+(25399, 4413, 11), -- M. Def. Modifiers
+(25399, 4414, 3), -- Armor Type
+(25399, 4415, 5), -- Weapon Type
+(25399, 4416, 2), -- Races
 -- Page of Watchman
 (25400, 4045, 1), -- Resist Full Magic Attack
-(25400, 4213, 3), -- Haste
-(25400, 4408, 1), -- HP Increase (1x)
-(25400, 4409, 1), -- MP Increase (1x)
-(25400, 4410, 11), -- Average P. Atk.
-(25400, 4411, 11), -- Average M. Atk.
-(25400, 4412, 11), -- Average P. Def.
-(25400, 4413, 11), -- Average M. Def.
-(25400, 4414, 3), -- Light Armor Type
-(25400, 4415, 5), -- Blunt Weapons
-(25400, 4416, 2), -- Magic Creatures
-(25400, 4783, 3), -- Heal
+(25400, 4213, 3), -- BOSS Haste
+(25400, 4408, 1), -- HP Modifiers
+(25400, 4409, 1), -- MP Modifiers
+(25400, 4410, 11), -- P. Atk. Modifiers
+(25400, 4411, 11), -- M. Atk. Modifiers
+(25400, 4412, 11), -- P. Def. Modifiers
+(25400, 4413, 11), -- M. Def. Modifiers
+(25400, 4414, 3), -- Armor Type
+(25400, 4415, 5), -- Weapon Type
+(25400, 4416, 2), -- Races
+(25400, 4783, 3), -- BOSS Heal
 -- Skyla
 (25401, 4045, 1), -- Resist Full Magic Attack
 (25401, 4197, 3), -- Hold
-(25401, 4408, 1), -- HP Increase (1x)
-(25401, 4409, 1), -- MP Increase (1x)
-(25401, 4410, 11), -- Average P. Atk.
-(25401, 4411, 11), -- Average M. Atk.
-(25401, 4412, 11), -- Average P. Def.
-(25401, 4413, 11), -- Average M. Def.
-(25401, 4414, 2), -- Standard Type
-(25401, 4415, 7), -- Daggers
-(25401, 4416, 6), -- Humanoids
+(25401, 4408, 1), -- HP Modifiers
+(25401, 4409, 1), -- MP Modifiers
+(25401, 4410, 11), -- P. Atk. Modifiers
+(25401, 4411, 11), -- M. Atk. Modifiers
+(25401, 4412, 11), -- P. Def. Modifiers
+(25401, 4413, 11), -- M. Def. Modifiers
+(25401, 4414, 2), -- Armor Type
+(25401, 4415, 7), -- Weapon Type
+(25401, 4416, 6), -- Races
 (25401, 4494, 1), -- Raid Boss
 (25401, 4945, 1), -- Raid Boss - Level 32
 -- Retainer of Skyla
 (25402, 4045, 1), -- Resist Full Magic Attack
-(25402, 4408, 1), -- HP Increase (1x)
-(25402, 4409, 1), -- MP Increase (1x)
-(25402, 4410, 11), -- Average P. Atk.
-(25402, 4411, 11), -- Average M. Atk.
-(25402, 4412, 11), -- Average P. Def.
-(25402, 4413, 11), -- Average M. Def.
-(25402, 4414, 3), -- Light Armor Type
-(25402, 4415, 7), -- Daggers
-(25402, 4416, 6), -- Humanoids
-(25402, 4733, 3), -- Mortal Blow
+(25402, 4408, 1), -- HP Modifiers
+(25402, 4409, 1), -- MP Modifiers
+(25402, 4410, 11), -- P. Atk. Modifiers
+(25402, 4411, 11), -- M. Atk. Modifiers
+(25402, 4412, 11), -- P. Def. Modifiers
+(25402, 4413, 11), -- M. Def. Modifiers
+(25402, 4414, 3), -- Armor Type
+(25402, 4415, 7), -- Weapon Type
+(25402, 4416, 6), -- Races
+(25402, 4733, 3), -- BOSS Mortal Blow
 -- Follower of Skyla
 (25403, 4045, 1), -- Resist Full Magic Attack
-(25403, 4196, 3), -- Decrease Speed
-(25403, 4204, 3); -- Bleed
-
-INSERT INTO `npcskills` VALUES
-(25403, 4408, 1), -- HP Increase (1x)
-(25403, 4409, 1), -- MP Increase (1x)
-(25403, 4410, 11), -- Average P. Atk.
-(25403, 4411, 11), -- Average M. Atk.
-(25403, 4412, 11), -- Average P. Def.
-(25403, 4413, 11), -- Average M. Def.
-(25403, 4414, 3), -- Light Armor Type
-(25403, 4415, 5), -- Blunt Weapons
-(25403, 4416, 6), -- Humanoids
+(25403, 4196, 3), -- Decreases Speed
+(25403, 4204, 3), -- Bleed
+(25403, 4408, 1), -- HP Modifiers
+(25403, 4409, 1), -- MP Modifiers
+(25403, 4410, 11), -- P. Atk. Modifiers
+(25403, 4411, 11), -- M. Atk. Modifiers
+(25403, 4412, 11), -- P. Def. Modifiers
+(25403, 4413, 11), -- M. Def. Modifiers
+(25403, 4414, 3), -- Armor Type
+(25403, 4415, 5), -- Weapon Type
+(25403, 4416, 6), -- Races
 -- Corsair Captain Kylon
 (25404, 4045, 1), -- Resist Full Magic Attack
 (25404, 4197, 3), -- Hold
-(25404, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25404, 4274, 1), -- Blunt Weapon Weak Point
-(25404, 4408, 1), -- HP Increase (1x)
-(25404, 4409, 1), -- MP Increase (1x)
-(25404, 4410, 11), -- Average P. Atk.
-(25404, 4411, 11), -- Average M. Atk.
-(25404, 4412, 11), -- Average P. Def.
-(25404, 4413, 11), -- Average M. Def.
-(25404, 4414, 2), -- Standard Type
-(25404, 4415, 7), -- Daggers
-(25404, 4416, 1), -- Undead
+(25404, 4273, 3), -- Resist Dagger
+(25404, 4274, 1), -- Blunt Attack Weak Point
+(25404, 4408, 1), -- HP Modifiers
+(25404, 4409, 1), -- MP Modifiers
+(25404, 4410, 11), -- P. Atk. Modifiers
+(25404, 4411, 11), -- M. Atk. Modifiers
+(25404, 4412, 11), -- P. Def. Modifiers
+(25404, 4413, 11), -- M. Def. Modifiers
+(25404, 4414, 2), -- Armor Type
+(25404, 4415, 7), -- Weapon Type
+(25404, 4416, 1), -- Races
 (25404, 4494, 1), -- Raid Boss
 (25404, 4946, 1), -- Raid Boss - Level 33
 -- Kylon's Pirate
 (25405, 4045, 1), -- Resist Full Magic Attack
-(25405, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25405, 4274, 1), -- Blunt Weapon Weak Point
-(25405, 4408, 1), -- HP Increase (1x)
-(25405, 4409, 1), -- MP Increase (1x)
-(25405, 4410, 11), -- Average P. Atk.
-(25405, 4411, 11), -- Average M. Atk.
-(25405, 4412, 11), -- Average P. Def.
-(25405, 4413, 11), -- Average M. Def.
-(25405, 4414, 3), -- Light Armor Type
-(25405, 4415, 7), -- Daggers
-(25405, 4416, 1), -- Undead
-(25405, 4733, 3), -- Mortal Blow
+(25405, 4273, 3), -- Resist Dagger
+(25405, 4274, 1), -- Blunt Attack Weak Point
+(25405, 4408, 1), -- HP Modifiers
+(25405, 4409, 1), -- MP Modifiers
+(25405, 4410, 11), -- P. Atk. Modifiers
+(25405, 4411, 11), -- M. Atk. Modifiers
+(25405, 4412, 11), -- P. Def. Modifiers
+(25405, 4413, 11), -- M. Def. Modifiers
+(25405, 4414, 3), -- Armor Type
+(25405, 4415, 7), -- Weapon Type
+(25405, 4416, 1), -- Races
+(25405, 4733, 3), -- BOSS Mortal Blow
 -- Kylon's Mate
 (25406, 4045, 1), -- Resist Full Magic Attack
-(25406, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25406, 4274, 1), -- Blunt Weapon Weak Point
-(25406, 4408, 1), -- HP Increase (1x)
-(25406, 4409, 1), -- MP Increase (1x)
-(25406, 4410, 11), -- Average P. Atk.
-(25406, 4411, 11), -- Average M. Atk.
-(25406, 4412, 11), -- Average P. Def.
-(25406, 4413, 11), -- Average M. Def.
-(25406, 4414, 3), -- Light Armor Type
-(25406, 4415, 3), -- One-handed Sword
-(25406, 4416, 1), -- Undead
+(25406, 4273, 3), -- Resist Dagger
+(25406, 4274, 1), -- Blunt Attack Weak Point
+(25406, 4408, 1), -- HP Modifiers
+(25406, 4409, 1), -- MP Modifiers
+(25406, 4410, 11), -- P. Atk. Modifiers
+(25406, 4411, 11), -- M. Atk. Modifiers
+(25406, 4412, 11), -- P. Def. Modifiers
+(25406, 4413, 11), -- M. Def. Modifiers
+(25406, 4414, 3), -- Armor Type
+(25406, 4415, 3), -- Weapon Type
+(25406, 4416, 1), -- Races
 (25406, 4728, 3), -- Stun
 -- Lord Ishka 
 (25407, 4045, 1), -- Resist Full Magic Attack
 (25407, 4197, 6), -- Hold
-(25407, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25407, 4274, 1), -- Blunt Weapon Weak Point
-(25407, 4408, 1), -- HP Increase (1x)
-(25407, 4409, 1), -- MP Increase (1x)
-(25407, 4410, 11), -- Average P. Atk.
-(25407, 4411, 11), -- Average M. Atk.
-(25407, 4412, 11), -- Average P. Def.
-(25407, 4413, 11), -- Average M. Def.
-(25407, 4414, 2), -- Standard Type
-(25407, 4415, 3), -- One-handed Sword
-(25407, 4416, 1), -- Undead
+(25407, 4273, 3), -- Resist Dagger
+(25407, 4274, 1), -- Blunt Attack Weak Point
+(25407, 4408, 1), -- HP Modifiers
+(25407, 4409, 1), -- MP Modifiers
+(25407, 4410, 11), -- P. Atk. Modifiers
+(25407, 4411, 11), -- M. Atk. Modifiers
+(25407, 4412, 11), -- P. Def. Modifiers
+(25407, 4413, 11), -- M. Def. Modifiers
+(25407, 4414, 2), -- Armor Type
+(25407, 4415, 3), -- Weapon Type
+(25407, 4416, 1), -- Races
 (25407, 4494, 1), -- Raid Boss
 (25407, 4947, 1), -- Raid Boss - Level 60
 -- Ishka's Elite Officer
 (25408, 4045, 1), -- Resist Full Magic Attack
-(25408, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25408, 4274, 1), -- Blunt Weapon Weak Point
-(25408, 4408, 1), -- HP Increase (1x)
-(25408, 4409, 1), -- MP Increase (1x)
-(25408, 4410, 11), -- Average P. Atk.
-(25408, 4411, 11), -- Average M. Atk.
-(25408, 4412, 11), -- Average P. Def.
-(25408, 4413, 11), -- Average M. Def.
-(25408, 4414, 3), -- Light Armor Type
-(25408, 4415, 7), -- Daggers
-(25408, 4416, 1), -- Undead
-(25408, 4733, 5), -- Mortal Blow
+(25408, 4273, 3), -- Resist Dagger
+(25408, 4274, 1), -- Blunt Attack Weak Point
+(25408, 4408, 1), -- HP Modifiers
+(25408, 4409, 1), -- MP Modifiers
+(25408, 4410, 11), -- P. Atk. Modifiers
+(25408, 4411, 11), -- M. Atk. Modifiers
+(25408, 4412, 11), -- P. Def. Modifiers
+(25408, 4413, 11), -- M. Def. Modifiers
+(25408, 4414, 3), -- Armor Type
+(25408, 4415, 7), -- Weapon Type
+(25408, 4416, 1), -- Races
+(25408, 4733, 5), -- BOSS Mortal Blow
 -- Ishka's Elite Soldier
 (25409, 4045, 1), -- Resist Full Magic Attack
-(25409, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25409, 4274, 1), -- Blunt Weapon Weak Point
-(25409, 4408, 1), -- HP Increase (1x)
-(25409, 4409, 1), -- MP Increase (1x)
-(25409, 4410, 11), -- Average P. Atk.
-(25409, 4411, 11), -- Average M. Atk.
-(25409, 4412, 11), -- Average P. Def.
-(25409, 4413, 11), -- Average M. Def.
-(25409, 4414, 3), -- Light Armor Type
-(25409, 4415, 3), -- One-handed Sword
-(25409, 4416, 1), -- Undead
-(25409, 4743, 5), -- Power Strike
+(25409, 4273, 3), -- Resist Dagger
+(25409, 4274, 1), -- Blunt Attack Weak Point
+(25409, 4408, 1), -- HP Modifiers
+(25409, 4409, 1), -- MP Modifiers
+(25409, 4410, 11), -- P. Atk. Modifiers
+(25409, 4411, 11), -- M. Atk. Modifiers
+(25409, 4412, 11), -- P. Def. Modifiers
+(25409, 4413, 11), -- M. Def. Modifiers
+(25409, 4414, 3), -- Armor Type
+(25409, 4415, 3), -- Weapon Type
+(25409, 4416, 1), -- Races
+(25409, 4743, 5), -- BOSS Strike
 -- Road Scavenger Leader
 (25410, 4045, 1), -- Resist Full Magic Attack
 (25410, 4197, 4), -- Hold
-(25410, 4408, 1), -- HP Increase (1x)
-(25410, 4409, 1), -- MP Increase (1x)
-(25410, 4410, 11), -- Average P. Atk.
-(25410, 4411, 11), -- Average M. Atk.
-(25410, 4412, 11), -- Average P. Def.
-(25410, 4413, 11), -- Average M. Def.
-(25410, 4414, 2), -- Standard Type
-(25410, 4415, 5), -- Blunt Weapons
-(25410, 4416, 6), -- Humanoids
+(25410, 4408, 1), -- HP Modifiers
+(25410, 4409, 1), -- MP Modifiers
+(25410, 4410, 11), -- P. Atk. Modifiers
+(25410, 4411, 11), -- M. Atk. Modifiers
+(25410, 4412, 11), -- P. Def. Modifiers
+(25410, 4413, 11), -- M. Def. Modifiers
+(25410, 4414, 2), -- Armor Type
+(25410, 4415, 5), -- Weapon Type
+(25410, 4416, 6), -- Races
 (25410, 4494, 1), -- Raid Boss
 (25410, 4948, 1), -- Raid Boss - Level 40
 -- Road Scavenger Henchman
 (25411, 4045, 1), -- Resist Full Magic Attack
-(25411, 4408, 1), -- HP Increase (1x)
-(25411, 4409, 1), -- MP Increase (1x)
-(25411, 4410, 11), -- Average P. Atk.
-(25411, 4411, 11), -- Average M. Atk.
-(25411, 4412, 11), -- Average P. Def.
-(25411, 4413, 11), -- Average M. Def.
-(25411, 4414, 3), -- Light Armor Type
-(25411, 4415, 5), -- Blunt Weapons
-(25411, 4416, 6), -- Humanoids
+(25411, 4408, 1), -- HP Modifiers
+(25411, 4409, 1), -- MP Modifiers
+(25411, 4410, 11), -- P. Atk. Modifiers
+(25411, 4411, 11), -- M. Atk. Modifiers
+(25411, 4412, 11), -- P. Def. Modifiers
+(25411, 4413, 11), -- M. Def. Modifiers
+(25411, 4414, 3), -- Armor Type
+(25411, 4415, 5), -- Weapon Type
+(25411, 4416, 6), -- Races
 (25411, 4726, 3), -- Stun
 -- Necrosentinel Royal Guard
 (25412, 4045, 1), -- Resist Full Magic Attack
-(25412, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25412, 4274, 1), -- Blunt Weapon Weak Point
-(25412, 4408, 1), -- HP Increase (1x)
-(25412, 4409, 1), -- MP Increase (1x)
-(25412, 4410, 11), -- Average P. Atk.
-(25412, 4411, 11), -- Average M. Atk.
-(25412, 4412, 11), -- Average P. Def.
-(25412, 4413, 11), -- Average M. Def.
-(25412, 4414, 2), -- Standard Type
-(25412, 4415, 7), -- Daggers
-(25412, 4416, 1), -- Undead
+(25412, 4273, 3), -- Resist Dagger
+(25412, 4274, 1), -- Blunt Attack Weak Point
+(25412, 4408, 1), -- HP Modifiers
+(25412, 4409, 1), -- MP Modifiers
+(25412, 4410, 11), -- P. Atk. Modifiers
+(25412, 4411, 11), -- M. Atk. Modifiers
+(25412, 4412, 11), -- P. Def. Modifiers
+(25412, 4413, 11), -- M. Def. Modifiers
+(25412, 4414, 2), -- Armor Type
+(25412, 4415, 7), -- Weapon Type
+(25412, 4416, 1), -- Races
 (25412, 4494, 1), -- Raid Boss
-(25412, 4753, 4), -- Mortal Blow
+(25412, 4753, 4), -- BOSS Mortal Blow
 (25412, 4949, 1), -- Raid Boss - Level 47
 -- Necrosentinel Archer
 (25413, 4045, 1), -- Resist Full Magic Attack
-(25413, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25413, 4274, 1), -- Blunt Weapon Weak Point
-(25413, 4408, 1), -- HP Increase (1x)
-(25413, 4409, 1), -- MP Increase (1x)
-(25413, 4410, 11), -- Average P. Atk.
-(25413, 4411, 11), -- Average M. Atk.
-(25413, 4412, 11), -- Average P. Def.
-(25413, 4413, 11), -- Average M. Def.
-(25413, 4414, 3), -- Light Armor Type
-(25413, 4415, 9), -- Bows
-(25413, 4416, 1), -- Undead
+(25413, 4273, 3), -- Resist Dagger
+(25413, 4274, 1), -- Blunt Attack Weak Point
+(25413, 4408, 1), -- HP Modifiers
+(25413, 4409, 1), -- MP Modifiers
+(25413, 4410, 11), -- P. Atk. Modifiers
+(25413, 4411, 11), -- M. Atk. Modifiers
+(25413, 4412, 11), -- P. Def. Modifiers
+(25413, 4413, 11), -- M. Def. Modifiers
+(25413, 4414, 3), -- Armor Type
+(25413, 4415, 9), -- Weapon Type
+(25413, 4416, 1), -- Races
 -- Necrosentinel Soldier
 (25414, 4045, 1), -- Resist Full Magic Attack
-(25414, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25414, 4274, 1), -- Blunt Weapon Weak Point
-(25414, 4408, 1), -- HP Increase (1x)
-(25414, 4409, 1), -- MP Increase (1x)
-(25414, 4410, 11), -- Average P. Atk.
-(25414, 4411, 11), -- Average M. Atk.
-(25414, 4412, 11), -- Average P. Def.
-(25414, 4413, 11), -- Average M. Def.
-(25414, 4414, 3), -- Light Armor Type
-(25414, 4415, 3), -- One-handed Sword
-(25414, 4416, 1), -- Undead
+(25414, 4273, 3), -- Resist Dagger
+(25414, 4274, 1), -- Blunt Attack Weak Point
+(25414, 4408, 1), -- HP Modifiers
+(25414, 4409, 1), -- MP Modifiers
+(25414, 4410, 11), -- P. Atk. Modifiers
+(25414, 4411, 11), -- M. Atk. Modifiers
+(25414, 4412, 11), -- P. Def. Modifiers
+(25414, 4413, 11), -- M. Def. Modifiers
+(25414, 4414, 3), -- Armor Type
+(25414, 4415, 3), -- Weapon Type
+(25414, 4416, 1), -- Races
 -- Nakondas
 (25415, 4045, 1), -- Resist Full Magic Attack
 (25415, 4185, 4), -- Sleep
 (25415, 4187, 4), -- Decrease Speed
-(25415, 4191, 4), -- Wind Strike
-(25415, 4408, 1), -- HP Increase (1x)
-(25415, 4409, 1), -- MP Increase (1x)
-(25415, 4410, 11), -- Average P. Atk.
-(25415, 4411, 11), -- Average M. Atk.
-(25415, 4412, 11), -- Average P. Def.
-(25415, 4413, 11), -- Average M. Def.
-(25415, 4414, 2), -- Standard Type
-(25415, 4415, 3), -- One-handed Sword
-(25415, 4416, 10), -- Dragons
+(25415, 4191, 4), -- BOSS Wind Strike
+(25415, 4408, 1), -- HP Modifiers
+(25415, 4409, 1), -- MP Modifiers
+(25415, 4410, 11), -- P. Atk. Modifiers
+(25415, 4411, 11), -- M. Atk. Modifiers
+(25415, 4412, 11), -- P. Def. Modifiers
+(25415, 4413, 11), -- M. Def. Modifiers
+(25415, 4414, 2), -- Armor Type
+(25415, 4415, 3), -- Weapon Type
+(25415, 4416, 10), -- Races
 (25415, 4494, 1), -- Raid Boss
 (25415, 4950, 1), -- Raid Boss - Level 40
 -- Nakondas' Slave 
 (25416, 4045, 1), -- Resist Full Magic Attack
-(25416, 4194, 3), -- Aura Burn
+(25416, 4194, 3), -- BOSS Aura Burn
 (25416, 4200, 3), -- Decrease Atk. Spd.
-(25416, 4408, 1), -- HP Increase (1x)
-(25416, 4409, 1), -- MP Increase (1x)
-(25416, 4410, 11), -- Average P. Atk.
-(25416, 4411, 11), -- Average M. Atk.
-(25416, 4412, 11), -- Average P. Def.
-(25416, 4413, 11), -- Average M. Def.
-(25416, 4414, 3), -- Light Armor Type
-(25416, 4415, 3), -- One-handed Sword
-(25416, 4416, 10), -- Dragons
+(25416, 4408, 1), -- HP Modifiers
+(25416, 4409, 1), -- MP Modifiers
+(25416, 4410, 11), -- P. Atk. Modifiers
+(25416, 4411, 11), -- M. Atk. Modifiers
+(25416, 4412, 11), -- P. Def. Modifiers
+(25416, 4413, 11), -- M. Def. Modifiers
+(25416, 4414, 3), -- Armor Type
+(25416, 4415, 3), -- Weapon Type
+(25416, 4416, 10), -- Races
 -- Nakondas' Chain 
 (25417, 4045, 1), -- Resist Full Magic Attack
-(25417, 4213, 3), -- Haste
-(25417, 4408, 1), -- HP Increase (1x)
-(25417, 4409, 1), -- MP Increase (1x)
-(25417, 4410, 11), -- Average P. Atk.
-(25417, 4411, 11), -- Average M. Atk.
-(25417, 4412, 11), -- Average P. Def.
-(25417, 4413, 11), -- Average M. Def.
-(25417, 4414, 3), -- Light Armor Type
-(25417, 4415, 1), -- Bare Hands
-(25417, 4416, 9), -- Demons
-(25417, 4783, 3), -- Heal
+(25417, 4213, 3), -- BOSS Haste
+(25417, 4408, 1), -- HP Modifiers
+(25417, 4409, 1), -- MP Modifiers
+(25417, 4410, 11), -- P. Atk. Modifiers
+(25417, 4411, 11), -- M. Atk. Modifiers
+(25417, 4412, 11), -- P. Def. Modifiers
+(25417, 4413, 11), -- M. Def. Modifiers
+(25417, 4414, 3), -- Armor Type
+(25417, 4415, 1), -- Weapon Type
+(25417, 4416, 9), -- Races
+(25417, 4783, 3), -- BOSS Heal
 -- Dread Avenger Kraven
 (25418, 4045, 1), -- Resist Full Magic Attack
 (25418, 4197, 4), -- Hold
-(25418, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25418, 4274, 1), -- Blunt Weapon Weak Point
-(25418, 4408, 1), -- HP Increase (1x)
-(25418, 4409, 1), -- MP Increase (1x)
-(25418, 4410, 11), -- Average P. Atk.
-(25418, 4411, 11), -- Average M. Atk.
-(25418, 4412, 11), -- Average P. Def.
-(25418, 4413, 11), -- Average M. Def.
-(25418, 4414, 2), -- Standard Type
-(25418, 4415, 3), -- One-handed Sword
-(25418, 4416, 1), -- Undead
+(25418, 4273, 3), -- Resist Dagger
+(25418, 4274, 1), -- Blunt Attack Weak Point
+(25418, 4408, 1), -- HP Modifiers
+(25418, 4409, 1), -- MP Modifiers
+(25418, 4410, 11), -- P. Atk. Modifiers
+(25418, 4411, 11), -- M. Atk. Modifiers
+(25418, 4412, 11), -- P. Def. Modifiers
+(25418, 4413, 11), -- M. Def. Modifiers
+(25418, 4414, 2), -- Armor Type
+(25418, 4415, 3), -- Weapon Type
+(25418, 4416, 1), -- Races
 (25418, 4494, 1), -- Raid Boss
 (25418, 4951, 1), -- Raid Boss - Level 44
 -- Dread Panther
 (25419, 4045, 1), -- Resist Full Magic Attack
-(25419, 4408, 1), -- HP Increase (1x)
-(25419, 4409, 1), -- MP Increase (1x)
-(25419, 4410, 11), -- Average P. Atk.
-(25419, 4411, 11), -- Average M. Atk.
-(25419, 4412, 11), -- Average P. Def.
-(25419, 4413, 11), -- Average M. Def.
-(25419, 4414, 3), -- Light Armor Type
-(25419, 4415, 3), -- One-handed Sword
-(25419, 4416, 3), -- Beasts
-(25419, 4743, 4), -- Power Strike
+(25419, 4408, 1), -- HP Modifiers
+(25419, 4409, 1), -- MP Modifiers
+(25419, 4410, 11), -- P. Atk. Modifiers
+(25419, 4411, 11), -- M. Atk. Modifiers
+(25419, 4412, 11), -- P. Def. Modifiers
+(25419, 4413, 11), -- M. Def. Modifiers
+(25419, 4414, 3), -- Armor Type
+(25419, 4415, 3), -- Weapon Type
+(25419, 4416, 3), -- Races
+(25419, 4743, 4), -- BOSS Strike
 -- Orfen's Handmaiden
 (25420, 4045, 1), -- Resist Full Magic Attack
 (25420, 4182, 4), -- Poison
 (25420, 4189, 4), -- Paralysis
-(25420, 4196, 4), -- Decrease Speed
-(25420, 4408, 1), -- HP Increase (1x)
-(25420, 4409, 1), -- MP Increase (1x)
-(25420, 4410, 11), -- Average P. Atk.
-(25420, 4411, 11), -- Average M. Atk.
-(25420, 4412, 11), -- Average P. Def.
-(25420, 4413, 11), -- Average M. Def.
-(25420, 4414, 2), -- Standard Type
-(25420, 4415, 7), -- Daggers
-(25420, 4416, 12), -- Bugs
+(25420, 4196, 4), -- Decreases Speed
+(25420, 4408, 1), -- HP Modifiers
+(25420, 4409, 1), -- MP Modifiers
+(25420, 4410, 11), -- P. Atk. Modifiers
+(25420, 4411, 11), -- M. Atk. Modifiers
+(25420, 4412, 11), -- P. Def. Modifiers
+(25420, 4413, 11), -- M. Def. Modifiers
+(25420, 4414, 2), -- Armor Type
+(25420, 4415, 7), -- Weapon Type
+(25420, 4416, 12), -- Races
 (25420, 4494, 1), -- Raid Boss
 (25420, 4952, 1), -- Raid Boss - Level 48
 -- Trisalim Escort
 (25421, 4045, 1), -- Resist Full Magic Attack
-(25421, 4196, 4), -- Decrease Speed
+(25421, 4196, 4), -- Decreases Speed
 (25421, 4204, 4), -- Bleed
-(25421, 4408, 1), -- HP Increase (1x)
-(25421, 4409, 1), -- MP Increase (1x)
-(25421, 4410, 11), -- Average P. Atk.
-(25421, 4411, 11), -- Average M. Atk.
-(25421, 4412, 11), -- Average P. Def.
-(25421, 4413, 11), -- Average M. Def.
-(25421, 4414, 3), -- Light Armor Type
-(25421, 4415, 3), -- One-handed Sword
-(25421, 4416, 12), -- Bugs
+(25421, 4408, 1), -- HP Modifiers
+(25421, 4409, 1), -- MP Modifiers
+(25421, 4410, 11), -- P. Atk. Modifiers
+(25421, 4411, 11), -- M. Atk. Modifiers
+(25421, 4412, 11), -- P. Def. Modifiers
+(25421, 4413, 11), -- M. Def. Modifiers
+(25421, 4414, 3), -- Armor Type
+(25421, 4415, 3), -- Weapon Type
+(25421, 4416, 12), -- Races
 -- Page of Rotting Tree
 (25422, 4045, 1), -- Resist Full Magic Attack
-(25422, 4212, 4), -- Shield
-(25422, 4408, 1), -- HP Increase (1x)
-(25422, 4409, 1), -- MP Increase (1x)
-(25422, 4410, 11), -- Average P. Atk.
-(25422, 4411, 11), -- Average M. Atk.
-(25422, 4412, 11), -- Average P. Def.
-(25422, 4413, 11), -- Average M. Def.
-(25422, 4414, 3), -- Light Armor Type
-(25422, 4415, 5), -- Blunt Weapons
-(25422, 4416, 5), -- Plants
-(25422, 4781, 4), -- Heal
+(25422, 4212, 4), -- BOSS Shield
+(25422, 4408, 1), -- HP Modifiers
+(25422, 4409, 1), -- MP Modifiers
+(25422, 4410, 11), -- P. Atk. Modifiers
+(25422, 4411, 11), -- M. Atk. Modifiers
+(25422, 4412, 11), -- P. Def. Modifiers
+(25422, 4413, 11), -- M. Def. Modifiers
+(25422, 4414, 3), -- Armor Type
+(25422, 4415, 5), -- Weapon Type
+(25422, 4416, 5), -- Races
+(25422, 4781, 4), -- BOSS Heal
 -- Fairy Queen Timiniel
 (25423, 4045, 1), -- Resist Full Magic Attack
 (25423, 4187, 6), -- Decrease Speed
 (25423, 4190, 6), -- Decrease MP
-(25423, 4194, 6), -- Aura Burn
-(25423, 4408, 1), -- HP Increase (1x)
-(25423, 4409, 1), -- MP Increase (1x)
-(25423, 4410, 11), -- Average P. Atk.
-(25423, 4411, 11), -- Average M. Atk.
-(25423, 4412, 11), -- Average P. Def.
-(25423, 4413, 11), -- Average M. Def.
-(25423, 4414, 2), -- Standard Type
-(25423, 4415, 3), -- One-handed Sword
-(25423, 4416, 13), -- Fairies
+(25423, 4194, 6), -- BOSS Aura Burn
+(25423, 4408, 1), -- HP Modifiers
+(25423, 4409, 1), -- MP Modifiers
+(25423, 4410, 11), -- P. Atk. Modifiers
+(25423, 4411, 11), -- M. Atk. Modifiers
+(25423, 4412, 11), -- P. Def. Modifiers
+(25423, 4413, 11), -- M. Def. Modifiers
+(25423, 4414, 2), -- Armor Type
+(25423, 4415, 3), -- Weapon Type
+(25423, 4416, 13), -- Races
 (25423, 4494, 1), -- Raid Boss
 (25423, 4953, 1), -- Raid Boss - Level 61
 -- Timiniel's Royal Guards
 (25424, 4045, 1), -- Resist Full Magic Attack
-(25424, 4408, 1), -- HP Increase (1x)
-(25424, 4409, 1), -- MP Increase (1x)
-(25424, 4410, 11), -- Average P. Atk.
-(25424, 4411, 11), -- Average M. Atk.
-(25424, 4412, 11), -- Average P. Def.
-(25424, 4413, 11), -- Average M. Def.
-(25424, 4414, 3), -- Light Armor Type
-(25424, 4415, 3), -- One-handed Sword
-(25424, 4416, 13), -- Fairies
+(25424, 4408, 1), -- HP Modifiers
+(25424, 4409, 1), -- MP Modifiers
+(25424, 4410, 11), -- P. Atk. Modifiers
+(25424, 4411, 11), -- M. Atk. Modifiers
+(25424, 4412, 11), -- P. Def. Modifiers
+(25424, 4413, 11), -- M. Def. Modifiers
+(25424, 4414, 3), -- Armor Type
+(25424, 4415, 3), -- Weapon Type
+(25424, 4416, 13), -- Races
 -- Timiniel's Royal Guard Captain
 (25425, 4045, 1), -- Resist Full Magic Attack
-(25425, 4408, 1), -- HP Increase (1x)
-(25425, 4409, 1), -- MP Increase (1x)
-(25425, 4410, 11), -- Average P. Atk.
-(25425, 4411, 11), -- Average M. Atk.
-(25425, 4412, 11), -- Average P. Def.
-(25425, 4413, 11), -- Average M. Def.
-(25425, 4414, 3), -- Light Armor Type
-(25425, 4415, 3), -- One-handed Sword
-(25425, 4416, 13), -- Fairies
-(25425, 4742, 6), -- Power Strike
+(25425, 4408, 1), -- HP Modifiers
+(25425, 4409, 1), -- MP Modifiers
+(25425, 4410, 11), -- P. Atk. Modifiers
+(25425, 4411, 11), -- M. Atk. Modifiers
+(25425, 4412, 11), -- P. Def. Modifiers
+(25425, 4413, 11), -- M. Def. Modifiers
+(25425, 4414, 3), -- Armor Type
+(25425, 4415, 3), -- Weapon Type
+(25425, 4416, 13), -- Races
+(25425, 4742, 6), -- BOSS Strike
 -- Betrayer of Urutu Freki
 (25426, 4045, 1), -- Resist Full Magic Attack
 (25426, 4197, 2), -- Hold
-(25426, 4408, 1), -- HP Increase (1x)
-(25426, 4409, 1), -- MP Increase (1x)
-(25426, 4410, 11), -- Average P. Atk.
-(25426, 4411, 11), -- Average M. Atk.
-(25426, 4412, 11), -- Average P. Def.
-(25426, 4413, 11), -- Average M. Def.
-(25426, 4414, 2), -- Standard Type
-(25426, 4415, 1), -- Bare Hands
-(25426, 4416, 6), -- Humanoids
+(25426, 4408, 1), -- HP Modifiers
+(25426, 4409, 1), -- MP Modifiers
+(25426, 4410, 11), -- P. Atk. Modifiers
+(25426, 4411, 11), -- M. Atk. Modifiers
+(25426, 4412, 11), -- P. Def. Modifiers
+(25426, 4413, 11), -- M. Def. Modifiers
+(25426, 4414, 2), -- Armor Type
+(25426, 4415, 1), -- Weapon Type
+(25426, 4416, 6), -- Races
 (25426, 4494, 1), -- Raid Boss
 (25426, 4954, 1), -- Raid Boss - Level 25
 -- Freki's Vampire Bat
 (25427, 4045, 1), -- Resist Full Magic Attack
-(25427, 4408, 1), -- HP Increase (1x)
-(25427, 4409, 1), -- MP Increase (1x)
-(25427, 4410, 11), -- Average P. Atk.
-(25427, 4411, 11), -- Average M. Atk.
-(25427, 4412, 11), -- Average P. Def.
-(25427, 4413, 11), -- Average M. Def.
-(25427, 4414, 3), -- Light Armor Type
-(25427, 4415, 3), -- One-handed Sword
-(25427, 4416, 4), -- Animals
-(25427, 4743, 2), -- Power Strike
+(25427, 4408, 1), -- HP Modifiers
+(25427, 4409, 1), -- MP Modifiers
+(25427, 4410, 11), -- P. Atk. Modifiers
+(25427, 4411, 11), -- M. Atk. Modifiers
+(25427, 4412, 11), -- P. Def. Modifiers
+(25427, 4413, 11), -- M. Def. Modifiers
+(25427, 4414, 3), -- Armor Type
+(25427, 4415, 3), -- Weapon Type
+(25427, 4416, 4), -- Races
+(25427, 4743, 2), -- BOSS Strike
 -- Freki's Wild Bear
 (25428, 4045, 1), -- Resist Full Magic Attack
-(25428, 4408, 1), -- HP Increase (1x)
-(25428, 4409, 1), -- MP Increase (1x)
-(25428, 4410, 11), -- Average P. Atk.
-(25428, 4411, 11), -- Average M. Atk.
-(25428, 4412, 11), -- Average P. Def.
-(25428, 4413, 11), -- Average M. Def.
-(25428, 4414, 3), -- Light Armor Type
-(25428, 4415, 1), -- Bare Hands
-(25428, 4416, 4), -- Animals
+(25428, 4408, 1), -- HP Modifiers
+(25428, 4409, 1), -- MP Modifiers
+(25428, 4410, 11), -- P. Atk. Modifiers
+(25428, 4411, 11), -- M. Atk. Modifiers
+(25428, 4412, 11), -- P. Def. Modifiers
+(25428, 4413, 11), -- M. Def. Modifiers
+(25428, 4414, 3), -- Armor Type
+(25428, 4415, 1), -- Weapon Type
+(25428, 4416, 4), -- Races
 (25428, 4728, 2), -- Stun
 -- Mammon Collector Talos
 (25429, 4045, 1), -- Resist Full Magic Attack
 (25429, 4197, 2), -- Hold
-(25429, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25429, 4274, 1), -- Blunt Weapon Weak Point
-(25429, 4408, 1), -- HP Increase (1x)
-(25429, 4409, 1), -- MP Increase (1x)
-(25429, 4410, 11), -- Average P. Atk.
-(25429, 4411, 11), -- Average M. Atk.
-(25429, 4412, 11), -- Average P. Def.
-(25429, 4413, 11), -- Average M. Def.
-(25429, 4414, 2), -- Standard Type
-(25429, 4415, 1), -- Bare Hands
-(25429, 4416, 9), -- Demons
+(25429, 4273, 3), -- Resist Dagger
+(25429, 4274, 1), -- Blunt Attack Weak Point
+(25429, 4408, 1), -- HP Modifiers
+(25429, 4409, 1), -- MP Modifiers
+(25429, 4410, 11), -- P. Atk. Modifiers
+(25429, 4411, 11), -- M. Atk. Modifiers
+(25429, 4412, 11), -- P. Def. Modifiers
+(25429, 4413, 11), -- M. Def. Modifiers
+(25429, 4414, 2), -- Armor Type
+(25429, 4415, 1), -- Weapon Type
+(25429, 4416, 9), -- Races
 (25429, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 (25429, 4494, 1), -- Raid Boss
 (25429, 4983, 1), -- Raid Boss - Level 25
 -- Talos' Cohort
 (25430, 4045, 1), -- Resist Full Magic Attack
-(25430, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25430, 4274, 1), -- Blunt Weapon Weak Point
-(25430, 4408, 1), -- HP Increase (1x)
-(25430, 4409, 1), -- MP Increase (1x)
-(25430, 4410, 11), -- Average P. Atk.
-(25430, 4411, 11), -- Average M. Atk.
-(25430, 4412, 11), -- Average P. Def.
-(25430, 4413, 11), -- Average M. Def.
-(25430, 4414, 3), -- Light Armor Type
-(25430, 4415, 1), -- Bare Hands
-(25430, 4416, 9), -- Demons
+(25430, 4273, 3), -- Resist Dagger
+(25430, 4274, 1), -- Blunt Attack Weak Point
+(25430, 4408, 1), -- HP Modifiers
+(25430, 4409, 1), -- MP Modifiers
+(25430, 4410, 11), -- P. Atk. Modifiers
+(25430, 4411, 11), -- M. Atk. Modifiers
+(25430, 4412, 11), -- P. Def. Modifiers
+(25430, 4413, 11), -- M. Def. Modifiers
+(25430, 4414, 3), -- Armor Type
+(25430, 4415, 1), -- Weapon Type
+(25430, 4416, 9), -- Races
 (25430, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
-(25430, 4743, 2), -- Power Strike
+(25430, 4743, 2), -- BOSS Strike
 -- Flamestone Golem
 (25431, 4045, 1), -- Resist Full Magic Attack
-(25431, 4178, 4), -- Flame Strike
-(25431, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25431, 4274, 1), -- Blunt Weapon Weak Point
-(25431, 4408, 1), -- HP Increase (1x)
-(25431, 4409, 1), -- MP Increase (1x)
-(25431, 4410, 11), -- Average P. Atk.
-(25431, 4411, 11), -- Average M. Atk.
-(25431, 4412, 11), -- Average P. Def.
-(25431, 4413, 11), -- Average M. Def.
-(25431, 4414, 2), -- Standard Type
-(25431, 4415, 5), -- Blunt Weapons
-(25431, 4416, 2), -- Magic Creatures
+(25431, 4178, 4), -- BOSS Flame Strike
+(25431, 4273, 3), -- Resist Dagger
+(25431, 4274, 1), -- Blunt Attack Weak Point
+(25431, 4408, 1), -- HP Modifiers
+(25431, 4409, 1), -- MP Modifiers
+(25431, 4410, 11), -- P. Atk. Modifiers
+(25431, 4411, 11), -- M. Atk. Modifiers
+(25431, 4412, 11), -- P. Def. Modifiers
+(25431, 4413, 11), -- M. Def. Modifiers
+(25431, 4414, 2), -- Armor Type
+(25431, 4415, 5), -- Weapon Type
+(25431, 4416, 2), -- Races
 (25431, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 (25431, 4494, 1), -- Raid Boss
 (25431, 4984, 1), -- Raid Boss - Level 44
 -- Elemental of Flame
 (25432, 4045, 1), -- Resist Full Magic Attack
-(25432, 4211, 4), -- Might
-(25432, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25432, 4274, 1), -- Blunt Weapon Weak Point
-(25432, 4408, 1), -- HP Increase (1x)
-(25432, 4409, 1), -- MP Increase (1x)
-(25432, 4410, 11), -- Average P. Atk.
-(25432, 4411, 11), -- Average M. Atk.
-(25432, 4412, 11), -- Average P. Def.
-(25432, 4413, 11), -- Average M. Def.
-(25432, 4414, 3), -- Light Armor Type
-(25432, 4415, 5), -- Blunt Weapons
-(25432, 4416, 2), -- Magic Creatures
+(25432, 4211, 4), -- BOSS Might
+(25432, 4273, 3), -- Resist Dagger
+(25432, 4274, 1), -- Blunt Attack Weak Point
+(25432, 4408, 1), -- HP Modifiers
+(25432, 4409, 1), -- MP Modifiers
+(25432, 4410, 11), -- P. Atk. Modifiers
+(25432, 4411, 11), -- M. Atk. Modifiers
+(25432, 4412, 11), -- P. Def. Modifiers
+(25432, 4413, 11), -- M. Def. Modifiers
+(25432, 4414, 3), -- Armor Type
+(25432, 4415, 5), -- Weapon Type
+(25432, 4416, 2), -- Races
 (25432, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
-(25432, 4783, 4), -- Heal
+(25432, 4783, 4), -- BOSS Heal
 -- Elemental of Spark
 (25433, 4045, 1), -- Resist Full Magic Attack
-(25433, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25433, 4274, 1), -- Blunt Weapon Weak Point
-(25433, 4408, 1), -- HP Increase (1x)
-(25433, 4409, 1), -- MP Increase (1x)
-(25433, 4410, 11), -- Average P. Atk.
-(25433, 4411, 11), -- Average M. Atk.
-(25433, 4412, 11), -- Average P. Def.
-(25433, 4413, 11), -- Average M. Def.
-(25433, 4414, 3), -- Light Armor Type
-(25433, 4415, 5), -- Blunt Weapons
-(25433, 4416, 2), -- Magic Creatures
+(25433, 4273, 3), -- Resist Dagger
+(25433, 4274, 1), -- Blunt Attack Weak Point
+(25433, 4408, 1), -- HP Modifiers
+(25433, 4409, 1), -- MP Modifiers
+(25433, 4410, 11), -- P. Atk. Modifiers
+(25433, 4411, 11), -- M. Atk. Modifiers
+(25433, 4412, 11), -- P. Def. Modifiers
+(25433, 4413, 11), -- M. Def. Modifiers
+(25433, 4414, 3), -- Armor Type
+(25433, 4415, 5), -- Weapon Type
+(25433, 4416, 2), -- Races
 (25433, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Bandit Leader Barda
 (25434, 4045, 1), -- Resist Full Magic Attack
 (25434, 4197, 5), -- Hold
-(25434, 4408, 1), -- HP Increase (1x)
-(25434, 4409, 1), -- MP Increase (1x)
-(25434, 4410, 11), -- Average P. Atk.
-(25434, 4411, 11), -- Average M. Atk.
-(25434, 4412, 11), -- Average P. Def.
-(25434, 4413, 11), -- Average M. Def.
-(25434, 4414, 2), -- Standard Type
-(25434, 4415, 3), -- One-handed Sword
-(25434, 4416, 6), -- Humanoids
+(25434, 4408, 1), -- HP Modifiers
+(25434, 4409, 1), -- MP Modifiers
+(25434, 4410, 11), -- P. Atk. Modifiers
+(25434, 4411, 11), -- M. Atk. Modifiers
+(25434, 4412, 11), -- P. Def. Modifiers
+(25434, 4413, 11), -- M. Def. Modifiers
+(25434, 4414, 2), -- Armor Type
+(25434, 4415, 3), -- Weapon Type
+(25434, 4416, 6), -- Races
 (25434, 4494, 1), -- Raid Boss
 (25434, 4955, 1), -- Raid Boss - Level 55
 -- Barda's Bandit
 (25435, 4045, 1), -- Resist Full Magic Attack
-(25435, 4408, 1), -- HP Increase (1x)
-(25435, 4409, 1), -- MP Increase (1x)
-(25435, 4410, 11), -- Average P. Atk.
-(25435, 4411, 11), -- Average M. Atk.
-(25435, 4412, 11), -- Average P. Def.
-(25435, 4413, 11), -- Average M. Def.
-(25435, 4414, 3), -- Light Armor Type
-(25435, 4415, 3), -- One-handed Sword
-(25435, 4416, 6), -- Humanoids
-(25435, 4743, 5), -- Power Strike
+(25435, 4408, 1), -- HP Modifiers
+(25435, 4409, 1), -- MP Modifiers
+(25435, 4410, 11), -- P. Atk. Modifiers
+(25435, 4411, 11), -- M. Atk. Modifiers
+(25435, 4412, 11), -- P. Def. Modifiers
+(25435, 4413, 11), -- M. Def. Modifiers
+(25435, 4414, 3), -- Armor Type
+(25435, 4415, 3), -- Weapon Type
+(25435, 4416, 6), -- Races
+(25435, 4743, 5), -- BOSS Strike
 -- Barda's Shaman
 (25436, 4045, 1), -- Resist Full Magic Attack
-(25436, 4195, 5), -- Twister
+(25436, 4195, 5), -- BOSS Twister
 (25436, 4199, 5), -- Decrease P. Atk.
-(25436, 4408, 1), -- HP Increase (1x)
-(25436, 4409, 1), -- MP Increase (1x)
-(25436, 4410, 11), -- Average P. Atk.
-(25436, 4411, 11), -- Average M. Atk.
-(25436, 4412, 11), -- Average P. Def.
-(25436, 4413, 11), -- Average M. Def.
-(25436, 4414, 3), -- Light Armor Type
-(25436, 4415, 5), -- Blunt Weapons
-(25436, 4416, 6), -- Humanoids
+(25436, 4408, 1), -- HP Modifiers
+(25436, 4409, 1), -- MP Modifiers
+(25436, 4410, 11), -- P. Atk. Modifiers
+(25436, 4411, 11), -- M. Atk. Modifiers
+(25436, 4412, 11), -- P. Def. Modifiers
+(25436, 4413, 11), -- M. Def. Modifiers
+(25436, 4414, 3), -- Armor Type
+(25436, 4415, 5), -- Weapon Type
+(25436, 4416, 6), -- Races
 -- Timak Orc Gosmos
 (25437, 4045, 1), -- Resist Full Magic Attack
-(25437, 4071, 5), -- Resist Bow/Crossbow Weapons
+(25437, 4071, 5), -- Resist Archery
 (25437, 4172, 4), -- Stun
-(25437, 4175, 4), -- Haste
-(25437, 4177, 4), -- Cancel
-(25437, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25437, 4408, 1), -- HP Increase (1x)
-(25437, 4409, 1), -- MP Increase (1x)
-(25437, 4410, 11), -- Average P. Atk.
-(25437, 4411, 11), -- Average M. Atk.
-(25437, 4412, 11), -- Average P. Def.
-(25437, 4413, 11), -- Average M. Def.
-(25437, 4414, 2), -- Standard Type
-(25437, 4415, 3), -- One-handed Sword
-(25437, 4416, 6), -- Humanoids
+(25437, 4175, 4), -- BOSS Haste
+(25437, 4177, 4), -- BOSS Cancel Magic
+(25437, 4273, 3), -- Resist Dagger
+(25437, 4408, 1), -- HP Modifiers
+(25437, 4409, 1), -- MP Modifiers
+(25437, 4410, 11), -- P. Atk. Modifiers
+(25437, 4411, 11), -- M. Atk. Modifiers
+(25437, 4412, 11), -- P. Def. Modifiers
+(25437, 4413, 11), -- M. Def. Modifiers
+(25437, 4414, 2), -- Armor Type
+(25437, 4415, 3), -- Weapon Type
+(25437, 4416, 6), -- Races
 (25437, 4494, 1), -- Raid Boss
-(25437, 4723, 4), -- Power Strike
+(25437, 4723, 4), -- BOSS Strike
 (25437, 4956, 1), -- Raid Boss - Level 45
 -- Thief Kelbar
 (25438, 4045, 1), -- Resist Full Magic Attack
-(25438, 4071, 5), -- Resist Bow/Crossbow Weapons
+(25438, 4071, 5), -- Resist Archery
 (25438, 4197, 4), -- Hold
-(25438, 4408, 1), -- HP Increase (1x)
-(25438, 4409, 1), -- MP Increase (1x)
-(25438, 4410, 11), -- Average P. Atk.
-(25438, 4411, 11), -- Average M. Atk.
-(25438, 4412, 11), -- Average P. Def.
-(25438, 4413, 11), -- Average M. Def.
-(25438, 4414, 2), -- Standard Type
-(25438, 4415, 7), -- Daggers
-(25438, 4416, 6), -- Humanoids
+(25438, 4408, 1), -- HP Modifiers
+(25438, 4409, 1), -- MP Modifiers
+(25438, 4410, 11), -- P. Atk. Modifiers
+(25438, 4411, 11), -- M. Atk. Modifiers
+(25438, 4412, 11), -- P. Def. Modifiers
+(25438, 4413, 11), -- M. Def. Modifiers
+(25438, 4414, 2), -- Armor Type
+(25438, 4415, 7), -- Weapon Type
+(25438, 4416, 6), -- Races
 (25438, 4494, 1), -- Raid Boss
 (25438, 4957, 1), -- Raid Boss - Level 44
 -- Kelbar's Inferior
 (25439, 4045, 1), -- Resist Full Magic Attack
-(25439, 4408, 1), -- HP Increase (1x)
-(25439, 4409, 1), -- MP Increase (1x)
-(25439, 4410, 11), -- Average P. Atk.
-(25439, 4411, 11), -- Average M. Atk.
-(25439, 4412, 11), -- Average P. Def.
-(25439, 4413, 11), -- Average M. Def.
-(25439, 4414, 3), -- Light Armor Type
-(25439, 4415, 3), -- One-handed Sword
-(25439, 4416, 6), -- Humanoids
-(25439, 4743, 4), -- Power Strike
+(25439, 4408, 1), -- HP Modifiers
+(25439, 4409, 1), -- MP Modifiers
+(25439, 4410, 11), -- P. Atk. Modifiers
+(25439, 4411, 11), -- M. Atk. Modifiers
+(25439, 4412, 11), -- P. Def. Modifiers
+(25439, 4413, 11), -- M. Def. Modifiers
+(25439, 4414, 3), -- Armor Type
+(25439, 4415, 3), -- Weapon Type
+(25439, 4416, 6), -- Races
+(25439, 4743, 4), -- BOSS Strike
 -- Kelbar's Wizard
 (25440, 4045, 1), -- Resist Full Magic Attack
-(25440, 4191, 4), -- Wind Strike
+(25440, 4191, 4), -- BOSS Wind Strike
 (25440, 4200, 4), -- Decrease Atk. Spd.
-(25440, 4408, 1), -- HP Increase (1x)
-(25440, 4409, 1), -- MP Increase (1x)
-(25440, 4410, 11), -- Average P. Atk.
-(25440, 4411, 11), -- Average M. Atk.
-(25440, 4412, 11), -- Average P. Def.
-(25440, 4413, 11), -- Average M. Def.
-(25440, 4414, 3), -- Light Armor Type
-(25440, 4415, 5), -- Blunt Weapons
-(25440, 4416, 6), -- Humanoids
+(25440, 4408, 1), -- HP Modifiers
+(25440, 4409, 1), -- MP Modifiers
+(25440, 4410, 11), -- P. Atk. Modifiers
+(25440, 4411, 11), -- M. Atk. Modifiers
+(25440, 4412, 11), -- P. Def. Modifiers
+(25440, 4413, 11), -- M. Def. Modifiers
+(25440, 4414, 3), -- Armor Type
+(25440, 4415, 5), -- Weapon Type
+(25440, 4416, 6), -- Races
 -- Evil Spirit Cyrion
 (25441, 4045, 1), -- Resist Full Magic Attack
 (25441, 4186, 4), -- Hold
 (25441, 4187, 4), -- Decrease Speed
-(25441, 4195, 4), -- Twister
-(25441, 4273, 5), -- Resist Daggers/Rapier Weapon
-(25441, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(25441, 4408, 1), -- HP Increase (1x)
-(25441, 4409, 1), -- MP Increase (1x)
-(25441, 4410, 11), -- Average P. Atk.
-(25441, 4411, 11), -- Average M. Atk.
-(25441, 4412, 11), -- Average P. Def.
-(25441, 4413, 11), -- Average M. Def.
-(25441, 4414, 2), -- Standard Type
-(25441, 4415, 3), -- One-handed Sword
-(25441, 4416, 10), -- Dragons
+(25441, 4195, 4), -- BOSS Twister
+(25441, 4273, 5), -- Resist Dagger
+(25441, 4276, 1), -- Archery Attack Weak Point
+(25441, 4408, 1), -- HP Modifiers
+(25441, 4409, 1), -- MP Modifiers
+(25441, 4410, 11), -- P. Atk. Modifiers
+(25441, 4411, 11), -- M. Atk. Modifiers
+(25441, 4412, 11), -- P. Def. Modifiers
+(25441, 4413, 11), -- M. Def. Modifiers
+(25441, 4414, 2), -- Armor Type
+(25441, 4415, 3), -- Weapon Type
+(25441, 4416, 10), -- Races
 (25441, 4494, 1), -- Raid Boss
 (25441, 4958, 1), -- Raid Boss - Level 45
 -- Evil Creature of Forest
 (25442, 4045, 1), -- Resist Full Magic Attack
-(25442, 4408, 1), -- HP Increase (1x)
-(25442, 4409, 1), -- MP Increase (1x)
-(25442, 4410, 11), -- Average P. Atk.
-(25442, 4411, 11), -- Average M. Atk.
-(25442, 4412, 11), -- Average P. Def.
-(25442, 4413, 11), -- Average M. Def.
-(25442, 4414, 3), -- Light Armor Type
-(25442, 4415, 1), -- Bare Hands
-(25442, 4416, 4), -- Animals
+(25442, 4408, 1), -- HP Modifiers
+(25442, 4409, 1), -- MP Modifiers
+(25442, 4410, 11), -- P. Atk. Modifiers
+(25442, 4411, 11), -- M. Atk. Modifiers
+(25442, 4412, 11), -- P. Def. Modifiers
+(25442, 4413, 11), -- M. Def. Modifiers
+(25442, 4414, 3), -- Armor Type
+(25442, 4415, 1), -- Weapon Type
+(25442, 4416, 4), -- Races
 -- Anger of Forest
 (25443, 4045, 1), -- Resist Full Magic Attack
-(25443, 4408, 1), -- HP Increase (1x)
-(25443, 4409, 1), -- MP Increase (1x)
-(25443, 4410, 11), -- Average P. Atk.
-(25443, 4411, 11), -- Average M. Atk.
-(25443, 4412, 11), -- Average P. Def.
-(25443, 4413, 11), -- Average M. Def.
-(25443, 4414, 3), -- Light Armor Type
-(25443, 4415, 5), -- Blunt Weapons
-(25443, 4416, 4), -- Animals
-(25443, 4743, 4), -- Power Strike
+(25443, 4408, 1), -- HP Modifiers
+(25443, 4409, 1), -- MP Modifiers
+(25443, 4410, 11), -- P. Atk. Modifiers
+(25443, 4411, 11), -- M. Atk. Modifiers
+(25443, 4412, 11), -- P. Def. Modifiers
+(25443, 4413, 11), -- M. Def. Modifiers
+(25443, 4414, 3), -- Armor Type
+(25443, 4415, 5), -- Weapon Type
+(25443, 4416, 4), -- Races
+(25443, 4743, 4), -- BOSS Strike
 -- Enmity Ghost Ramdal
 (25444, 4045, 1), -- Resist Full Magic Attack
-(25444, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25444, 4274, 1), -- Blunt Weapon Weak Point
-(25444, 4408, 1), -- HP Increase (1x)
-(25444, 4409, 1), -- MP Increase (1x)
-(25444, 4410, 11), -- Average P. Atk.
-(25444, 4411, 11), -- Average M. Atk.
-(25444, 4412, 11), -- Average P. Def.
-(25444, 4413, 11), -- Average M. Def.
-(25444, 4414, 2), -- Standard Type
-(25444, 4415, 3), -- One-handed Sword
-(25444, 4416, 1), -- Undead
+(25444, 4273, 3), -- Resist Dagger
+(25444, 4274, 1), -- Blunt Attack Weak Point
+(25444, 4408, 1), -- HP Modifiers
+(25444, 4409, 1), -- MP Modifiers
+(25444, 4410, 11), -- P. Atk. Modifiers
+(25444, 4411, 11), -- M. Atk. Modifiers
+(25444, 4412, 11), -- P. Def. Modifiers
+(25444, 4413, 11), -- M. Def. Modifiers
+(25444, 4414, 2), -- Armor Type
+(25444, 4415, 3), -- Weapon Type
+(25444, 4416, 1), -- Races
 (25444, 4494, 1), -- Raid Boss
-(25444, 4743, 6), -- Power Strike
+(25444, 4743, 6), -- BOSS Strike
 (25444, 4959, 1), -- Raid Boss - Level 65
 -- Enmity Ghosts
 (25445, 4045, 1), -- Resist Full Magic Attack
-(25445, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25445, 4274, 1), -- Blunt Weapon Weak Point
-(25445, 4408, 1), -- HP Increase (1x)
-(25445, 4409, 1), -- MP Increase (1x)
-(25445, 4410, 11), -- Average P. Atk.
-(25445, 4411, 11), -- Average M. Atk.
-(25445, 4412, 11), -- Average P. Def.
-(25445, 4413, 11), -- Average M. Def.
-(25445, 4414, 3), -- Light Armor Type
-(25445, 4415, 3), -- One-handed Sword
-(25445, 4416, 1), -- Undead
+(25445, 4273, 3), -- Resist Dagger
+(25445, 4274, 1), -- Blunt Attack Weak Point
+(25445, 4408, 1), -- HP Modifiers
+(25445, 4409, 1), -- MP Modifiers
+(25445, 4410, 11), -- P. Atk. Modifiers
+(25445, 4411, 11), -- M. Atk. Modifiers
+(25445, 4412, 11), -- P. Def. Modifiers
+(25445, 4413, 11), -- M. Def. Modifiers
+(25445, 4414, 3), -- Armor Type
+(25445, 4415, 3), -- Weapon Type
+(25445, 4416, 1), -- Races
 -- Shooter of Enmity
 (25446, 4045, 1), -- Resist Full Magic Attack
-(25446, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25446, 4274, 1), -- Blunt Weapon Weak Point
-(25446, 4408, 1), -- HP Increase (1x)
-(25446, 4409, 1), -- MP Increase (1x)
-(25446, 4410, 11), -- Average P. Atk.
-(25446, 4411, 11), -- Average M. Atk.
-(25446, 4412, 11), -- Average P. Def.
-(25446, 4413, 11), -- Average M. Def.
-(25446, 4414, 3), -- Light Armor Type
-(25446, 4415, 9), -- Bows
-(25446, 4416, 1), -- Undead
+(25446, 4273, 3), -- Resist Dagger
+(25446, 4274, 1), -- Blunt Attack Weak Point
+(25446, 4408, 1), -- HP Modifiers
+(25446, 4409, 1), -- MP Modifiers
+(25446, 4410, 11), -- P. Atk. Modifiers
+(25446, 4411, 11), -- M. Atk. Modifiers
+(25446, 4412, 11), -- P. Def. Modifiers
+(25446, 4413, 11), -- M. Def. Modifiers
+(25446, 4414, 3), -- Armor Type
+(25446, 4415, 9), -- Weapon Type
+(25446, 4416, 1), -- Races
 -- Immortal Savior Mardil
 (25447, 4045, 1), -- Resist Full Magic Attack
-(25447, 4178, 7), -- Flame Strike
-(25447, 4408, 1), -- HP Increase (1x)
-(25447, 4409, 1), -- MP Increase (1x)
-(25447, 4410, 11), -- Average P. Atk.
-(25447, 4411, 11), -- Average M. Atk.
-(25447, 4412, 11), -- Average P. Def.
-(25447, 4413, 11), -- Average M. Def.
-(25447, 4414, 2), -- Standard Type
-(25447, 4415, 5), -- Blunt Weapons
-(25447, 4416, 9), -- Demons
+(25447, 4178, 7), -- BOSS Flame Strike
+(25447, 4408, 1), -- HP Modifiers
+(25447, 4409, 1), -- MP Modifiers
+(25447, 4410, 11), -- P. Atk. Modifiers
+(25447, 4411, 11), -- M. Atk. Modifiers
+(25447, 4412, 11), -- P. Def. Modifiers
+(25447, 4413, 11), -- M. Def. Modifiers
+(25447, 4414, 2), -- Armor Type
+(25447, 4415, 5), -- Weapon Type
+(25447, 4416, 9), -- Races
 (25447, 4494, 1), -- Raid Boss
 (25447, 4960, 1), -- Raid Boss - Level 71
 -- Immortal Savior 
 (25448, 4045, 1), -- Resist Full Magic Attack
-(25448, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25448, 4274, 1), -- Blunt Weapon Weak Point
-(25448, 4408, 1), -- HP Increase (1x)
-(25448, 4409, 1), -- MP Increase (1x)
-(25448, 4410, 11), -- Average P. Atk.
-(25448, 4411, 11), -- Average M. Atk.
-(25448, 4412, 11), -- Average P. Def.
-(25448, 4413, 11), -- Average M. Def.
-(25448, 4414, 3), -- Light Armor Type
-(25448, 4415, 5), -- Blunt Weapons
-(25448, 4416, 1), -- Undead
+(25448, 4273, 3), -- Resist Dagger
+(25448, 4274, 1), -- Blunt Attack Weak Point
+(25448, 4408, 1), -- HP Modifiers
+(25448, 4409, 1), -- MP Modifiers
+(25448, 4410, 11), -- P. Atk. Modifiers
+(25448, 4411, 11), -- M. Atk. Modifiers
+(25448, 4412, 11), -- P. Def. Modifiers
+(25448, 4413, 11), -- M. Def. Modifiers
+(25448, 4414, 3), -- Armor Type
+(25448, 4415, 5), -- Weapon Type
+(25448, 4416, 1), -- Races
 -- Immortal Guide
 (25449, 4045, 1), -- Resist Full Magic Attack
-(25449, 4213, 7), -- Haste
-(25449, 4408, 1), -- HP Increase (1x)
-(25449, 4409, 1), -- MP Increase (1x)
-(25449, 4410, 11), -- Average P. Atk.
-(25449, 4411, 11), -- Average M. Atk.
-(25449, 4412, 11), -- Average P. Def.
-(25449, 4413, 11), -- Average M. Def.
-(25449, 4414, 3), -- Light Armor Type
-(25449, 4415, 5), -- Blunt Weapons
-(25449, 4416, 2), -- Magic Creatures
-(25449, 4783, 7), -- Heal
+(25449, 4213, 7), -- BOSS Haste
+(25449, 4408, 1), -- HP Modifiers
+(25449, 4409, 1), -- MP Modifiers
+(25449, 4410, 11), -- P. Atk. Modifiers
+(25449, 4411, 11), -- M. Atk. Modifiers
+(25449, 4412, 11), -- P. Def. Modifiers
+(25449, 4413, 11), -- M. Def. Modifiers
+(25449, 4414, 3), -- Armor Type
+(25449, 4415, 5), -- Weapon Type
+(25449, 4416, 2), -- Races
+(25449, 4783, 7), -- BOSS Heal
 -- Cherub Galaxia
 (25450, 4045, 1), -- Resist Full Magic Attack
 (25450, 4183, 8), -- Decrease P. Atk.
 (25450, 4190, 8), -- Decrease MP
-(25450, 4194, 8), -- Aura Burn
-(25450, 4408, 1), -- HP Increase (1x)
-(25450, 4409, 1), -- MP Increase (1x)
-(25450, 4410, 11), -- Average P. Atk.
-(25450, 4411, 11), -- Average M. Atk.
-(25450, 4412, 11), -- Average P. Def.
-(25450, 4413, 11), -- Average M. Def.
-(25450, 4414, 2), -- Standard Type
-(25450, 4415, 3), -- One-handed Sword
-(25450, 4416, 8), -- Angels
+(25450, 4194, 8), -- BOSS Aura Burn
+(25450, 4408, 1), -- HP Modifiers
+(25450, 4409, 1), -- MP Modifiers
+(25450, 4410, 11), -- P. Atk. Modifiers
+(25450, 4411, 11), -- M. Atk. Modifiers
+(25450, 4412, 11), -- P. Def. Modifiers
+(25450, 4413, 11), -- M. Def. Modifiers
+(25450, 4414, 2), -- Armor Type
+(25450, 4415, 3), -- Weapon Type
+(25450, 4416, 8), -- Races
 (25450, 4494, 1), -- Raid Boss
 (25450, 4961, 1), -- Raid Boss - Level 79
 -- Galaxia's Guards
 (25451, 4045, 1), -- Resist Full Magic Attack
-(25451, 4194, 8), -- Aura Burn
+(25451, 4194, 8), -- BOSS Aura Burn
 (25451, 4202, 8), -- Hold
-(25451, 4408, 1), -- HP Increase (1x)
-(25451, 4409, 1), -- MP Increase (1x)
-(25451, 4410, 11), -- Average P. Atk.
-(25451, 4411, 11), -- Average M. Atk.
-(25451, 4412, 11), -- Average P. Def.
-(25451, 4413, 11), -- Average M. Def.
-(25451, 4414, 3), -- Light Armor Type
-(25451, 4415, 3), -- One-handed Sword
-(25451, 4416, 8), -- Angels
+(25451, 4408, 1), -- HP Modifiers
+(25451, 4409, 1), -- MP Modifiers
+(25451, 4410, 11), -- P. Atk. Modifiers
+(25451, 4411, 11), -- M. Atk. Modifiers
+(25451, 4412, 11), -- P. Def. Modifiers
+(25451, 4413, 11), -- M. Def. Modifiers
+(25451, 4414, 3), -- Armor Type
+(25451, 4415, 3), -- Weapon Type
+(25451, 4416, 8), -- Races
 -- Messenger of Angel
 (25452, 4045, 1), -- Resist Full Magic Attack
-(25452, 4210, 8), -- Chant of Life
-(25452, 4212, 8), -- Shield
-(25452, 4408, 1), -- HP Increase (1x)
-(25452, 4409, 1), -- MP Increase (1x)
-(25452, 4410, 11), -- Average P. Atk.
-(25452, 4411, 11), -- Average M. Atk.
-(25452, 4412, 11), -- Average P. Def.
-(25452, 4413, 11), -- Average M. Def.
-(25452, 4414, 3), -- Light Armor Type
-(25452, 4415, 3), -- One-handed Sword
-(25452, 4416, 8), -- Angels
+(25452, 4210, 8), -- Life Chant
+(25452, 4212, 8), -- BOSS Shield
+(25452, 4408, 1), -- HP Modifiers
+(25452, 4409, 1), -- MP Modifiers
+(25452, 4410, 11), -- P. Atk. Modifiers
+(25452, 4411, 11), -- M. Atk. Modifiers
+(25452, 4412, 11), -- P. Def. Modifiers
+(25452, 4413, 11), -- M. Def. Modifiers
+(25452, 4414, 3), -- Armor Type
+(25452, 4415, 3), -- Weapon Type
+(25452, 4416, 8), -- Races
 -- Meanas Anor
 (25453, 4045, 1), -- Resist Full Magic Attack
 (25453, 4184, 7), -- Decrease Atk. Spd.
 (25453, 4188, 7), -- Bleed
-(25453, 4195, 7), -- Twister
-(25453, 4408, 1), -- HP Increase (1x)
-(25453, 4409, 1), -- MP Increase (1x)
-(25453, 4410, 11), -- Average P. Atk.
-(25453, 4411, 11), -- Average M. Atk.
-(25453, 4412, 11), -- Average P. Def.
-(25453, 4413, 11), -- Average M. Def.
-(25453, 4414, 2), -- Standard Type
-(25453, 4415, 3), -- One-handed Sword
-(25453, 4416, 10), -- Dragons
+(25453, 4195, 7), -- BOSS Twister
+(25453, 4408, 1), -- HP Modifiers
+(25453, 4409, 1), -- MP Modifiers
+(25453, 4410, 11), -- P. Atk. Modifiers
+(25453, 4411, 11), -- M. Atk. Modifiers
+(25453, 4412, 11), -- P. Def. Modifiers
+(25453, 4413, 11), -- M. Def. Modifiers
+(25453, 4414, 2), -- Armor Type
+(25453, 4415, 3), -- Weapon Type
+(25453, 4416, 10), -- Races
 (25453, 4494, 1), -- Raid Boss
 (25453, 4962, 1), -- Raid Boss - Level 70
 -- Wyvern of Marsh
 (25454, 4045, 1), -- Resist Full Magic Attack
-(25454, 4196, 6), -- Decrease Speed
+(25454, 4196, 6), -- Decreases Speed
 (25454, 4204, 6), -- Bleed
-(25454, 4408, 1), -- HP Increase (1x)
-(25454, 4409, 1), -- MP Increase (1x)
-(25454, 4410, 11), -- Average P. Atk.
-(25454, 4411, 11), -- Average M. Atk.
-(25454, 4412, 11), -- Average P. Def.
-(25454, 4413, 11), -- Average M. Def.
-(25454, 4414, 3), -- Light Armor Type
-(25454, 4415, 3), -- One-handed Sword
-(25454, 4416, 10), -- Dragons
+(25454, 4408, 1), -- HP Modifiers
+(25454, 4409, 1), -- MP Modifiers
+(25454, 4410, 11), -- P. Atk. Modifiers
+(25454, 4411, 11), -- M. Atk. Modifiers
+(25454, 4412, 11), -- P. Def. Modifiers
+(25454, 4413, 11), -- M. Def. Modifiers
+(25454, 4414, 3), -- Armor Type
+(25454, 4415, 3), -- Weapon Type
+(25454, 4416, 10), -- Races
 -- Succubus of Marsh
 (25455, 4045, 1), -- Resist Full Magic Attack
-(25455, 4211, 6), -- Might
-(25455, 4408, 1), -- HP Increase (1x)
-(25455, 4409, 1), -- MP Increase (1x)
-(25455, 4410, 11), -- Average P. Atk.
-(25455, 4411, 11), -- Average M. Atk.
-(25455, 4412, 11), -- Average P. Def.
-(25455, 4413, 11), -- Average M. Def.
-(25455, 4414, 3), -- Light Armor Type
-(25455, 4415, 1), -- Bare Hands
-(25455, 4416, 9), -- Demons
-(25455, 4780, 6), -- Heal
+(25455, 4211, 6), -- BOSS Might
+(25455, 4408, 1), -- HP Modifiers
+(25455, 4409, 1), -- MP Modifiers
+(25455, 4410, 11), -- P. Atk. Modifiers
+(25455, 4411, 11), -- M. Atk. Modifiers
+(25455, 4412, 11), -- P. Def. Modifiers
+(25455, 4413, 11), -- M. Def. Modifiers
+(25455, 4414, 3), -- Armor Type
+(25455, 4415, 1), -- Weapon Type
+(25455, 4416, 9), -- Races
+(25455, 4780, 6), -- BOSS Heal
 -- Mirror of Oblivion
 (25456, 4045, 1), -- Resist Full Magic Attack
 (25456, 4095, 1), -- Damage Shield
-(25456, 4178, 4), -- Flame Strike
-(25456, 4408, 1), -- HP Increase (1x)
-(25456, 4409, 1), -- MP Increase (1x)
-(25456, 4410, 11), -- Average P. Atk.
-(25456, 4411, 11), -- Average M. Atk.
-(25456, 4412, 11), -- Average P. Def.
-(25456, 4413, 11), -- Average M. Def.
-(25456, 4414, 2), -- Standard Type
-(25456, 4415, 5), -- Blunt Weapons
-(25456, 4416, 13), -- Fairies
+(25456, 4178, 4), -- BOSS Flame Strike
+(25456, 4408, 1), -- HP Modifiers
+(25456, 4409, 1), -- MP Modifiers
+(25456, 4410, 11), -- P. Atk. Modifiers
+(25456, 4411, 11), -- M. Atk. Modifiers
+(25456, 4412, 11), -- P. Def. Modifiers
+(25456, 4413, 11), -- M. Def. Modifiers
+(25456, 4414, 2), -- Armor Type
+(25456, 4415, 5), -- Weapon Type
+(25456, 4416, 13), -- Races
 (25456, 4494, 1), -- Raid Boss
 (25456, 4963, 1), -- Raid Boss - Level 49
 -- Shards of Oblivion
 (25457, 4045, 1), -- Resist Full Magic Attack
-(25457, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25457, 4274, 1), -- Blunt Weapon Weak Point
-(25457, 4408, 1), -- HP Increase (1x)
-(25457, 4409, 1), -- MP Increase (1x)
-(25457, 4410, 11), -- Average P. Atk.
-(25457, 4411, 11), -- Average M. Atk.
-(25457, 4412, 11), -- Average P. Def.
-(25457, 4413, 11), -- Average M. Def.
-(25457, 4414, 3), -- Light Armor Type
-(25457, 4415, 1), -- Bare Hands
-(25457, 4416, 1), -- Undead
+(25457, 4273, 3), -- Resist Dagger
+(25457, 4274, 1), -- Blunt Attack Weak Point
+(25457, 4408, 1), -- HP Modifiers
+(25457, 4409, 1), -- MP Modifiers
+(25457, 4410, 11), -- P. Atk. Modifiers
+(25457, 4411, 11), -- M. Atk. Modifiers
+(25457, 4412, 11), -- P. Def. Modifiers
+(25457, 4413, 11), -- M. Def. Modifiers
+(25457, 4414, 3), -- Armor Type
+(25457, 4415, 1), -- Weapon Type
+(25457, 4416, 1), -- Races
 -- Shadow of Oblivion
 (25458, 4045, 1), -- Resist Full Magic Attack
-(25458, 4213, 4), -- Haste
-(25458, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25458, 4274, 1), -- Blunt Weapon Weak Point
-(25458, 4408, 1), -- HP Increase (1x)
-(25458, 4409, 1), -- MP Increase (1x)
-(25458, 4410, 11), -- Average P. Atk.
-(25458, 4411, 11), -- Average M. Atk.
-(25458, 4412, 11), -- Average P. Def.
-(25458, 4413, 11), -- Average M. Def.
-(25458, 4414, 3), -- Light Armor Type
-(25458, 4415, 1), -- Bare Hands
-(25458, 4416, 1), -- Undead
-(25458, 4783, 4), -- Heal
+(25458, 4213, 4), -- BOSS Haste
+(25458, 4273, 3), -- Resist Dagger
+(25458, 4274, 1), -- Blunt Attack Weak Point
+(25458, 4408, 1), -- HP Modifiers
+(25458, 4409, 1), -- MP Modifiers
+(25458, 4410, 11), -- P. Atk. Modifiers
+(25458, 4411, 11), -- M. Atk. Modifiers
+(25458, 4412, 11), -- P. Def. Modifiers
+(25458, 4413, 11), -- M. Def. Modifiers
+(25458, 4414, 3), -- Armor Type
+(25458, 4415, 1), -- Weapon Type
+(25458, 4416, 1), -- Races
+(25458, 4783, 4), -- BOSS Heal
 -- Shards of Oblivion
 (25459, 4045, 1), -- Resist Full Magic Attack
-(25459, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25459, 4274, 1), -- Blunt Weapon Weak Point
-(25459, 4408, 1), -- HP Increase (1x)
-(25459, 4409, 1), -- MP Increase (1x)
-(25459, 4410, 11), -- Average P. Atk.
-(25459, 4411, 11), -- Average M. Atk.
-(25459, 4412, 11), -- Average P. Def.
-(25459, 4413, 11), -- Average M. Def.
-(25459, 4414, 3), -- Light Armor Type
-(25459, 4415, 1), -- Bare Hands
-(25459, 4416, 1), -- Undead
+(25459, 4273, 3), -- Resist Dagger
+(25459, 4274, 1), -- Blunt Attack Weak Point
+(25459, 4408, 1), -- HP Modifiers
+(25459, 4409, 1), -- MP Modifiers
+(25459, 4410, 11), -- P. Atk. Modifiers
+(25459, 4411, 11), -- M. Atk. Modifiers
+(25459, 4412, 11), -- P. Def. Modifiers
+(25459, 4413, 11), -- M. Def. Modifiers
+(25459, 4414, 3), -- Armor Type
+(25459, 4415, 1), -- Weapon Type
+(25459, 4416, 1), -- Races
 -- Deadman Ereve
 (25460, 4045, 1), -- Resist Full Magic Attack
 (25460, 4197, 5), -- Hold
-(25460, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25460, 4274, 1), -- Blunt Weapon Weak Point
-(25460, 4408, 1), -- HP Increase (1x)
-(25460, 4409, 1), -- MP Increase (1x)
-(25460, 4410, 11), -- Average P. Atk.
-(25460, 4411, 11), -- Average M. Atk.
-(25460, 4412, 11), -- Average P. Def.
-(25460, 4413, 11), -- Average M. Def.
-(25460, 4414, 2), -- Standard Type
-(25460, 4415, 5), -- Blunt Weapons
-(25460, 4416, 1), -- Undead
+(25460, 4273, 3), -- Resist Dagger
+(25460, 4274, 1), -- Blunt Attack Weak Point
+(25460, 4408, 1), -- HP Modifiers
+(25460, 4409, 1), -- MP Modifiers
+(25460, 4410, 11), -- P. Atk. Modifiers
+(25460, 4411, 11), -- M. Atk. Modifiers
+(25460, 4412, 11), -- P. Def. Modifiers
+(25460, 4413, 11), -- M. Def. Modifiers
+(25460, 4414, 2), -- Armor Type
+(25460, 4415, 5), -- Weapon Type
+(25460, 4416, 1), -- Races
 (25460, 4494, 1), -- Raid Boss
 (25460, 4964, 1), -- Raid Boss - Level 51
 -- Ereve's Knight
 (25461, 4045, 1), -- Resist Full Magic Attack
-(25461, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25461, 4274, 1), -- Blunt Weapon Weak Point
-(25461, 4408, 1), -- HP Increase (1x)
-(25461, 4409, 1), -- MP Increase (1x)
-(25461, 4410, 11), -- Average P. Atk.
-(25461, 4411, 11), -- Average M. Atk.
-(25461, 4412, 11), -- Average P. Def.
-(25461, 4413, 11), -- Average M. Def.
-(25461, 4414, 3), -- Light Armor Type
-(25461, 4415, 3), -- One-handed Sword
-(25461, 4416, 1), -- Undead
-(25461, 4743, 5), -- Power Strike
+(25461, 4273, 3), -- Resist Dagger
+(25461, 4274, 1), -- Blunt Attack Weak Point
+(25461, 4408, 1), -- HP Modifiers
+(25461, 4409, 1), -- MP Modifiers
+(25461, 4410, 11), -- P. Atk. Modifiers
+(25461, 4411, 11), -- M. Atk. Modifiers
+(25461, 4412, 11), -- P. Def. Modifiers
+(25461, 4413, 11), -- M. Def. Modifiers
+(25461, 4414, 3), -- Armor Type
+(25461, 4415, 3), -- Weapon Type
+(25461, 4416, 1), -- Races
+(25461, 4743, 5), -- BOSS Strike
 -- Ereve's Squire
 (25462, 4045, 1), -- Resist Full Magic Attack
-(25462, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25462, 4274, 1), -- Blunt Weapon Weak Point
-(25462, 4408, 1), -- HP Increase (1x)
-(25462, 4409, 1), -- MP Increase (1x)
-(25462, 4410, 11), -- Average P. Atk.
-(25462, 4411, 11), -- Average M. Atk.
-(25462, 4412, 11), -- Average P. Def.
-(25462, 4413, 11), -- Average M. Def.
-(25462, 4414, 3), -- Light Armor Type
-(25462, 4415, 3), -- One-handed Sword
-(25462, 4416, 1), -- Undead
+(25462, 4273, 3), -- Resist Dagger
+(25462, 4274, 1), -- Blunt Attack Weak Point
+(25462, 4408, 1), -- HP Modifiers
+(25462, 4409, 1), -- MP Modifiers
+(25462, 4410, 11), -- P. Atk. Modifiers
+(25462, 4411, 11), -- M. Atk. Modifiers
+(25462, 4412, 11), -- P. Def. Modifiers
+(25462, 4413, 11), -- M. Def. Modifiers
+(25462, 4414, 3), -- Armor Type
+(25462, 4415, 3), -- Weapon Type
+(25462, 4416, 1), -- Races
 (25462, 4728, 5), -- Stun
 -- Harit Guardian Garangky
 (25463, 4045, 1), -- Resist Full Magic Attack
-(25463, 4178, 5), -- Flame Strike
-(25463, 4408, 1), -- HP Increase (1x)
-(25463, 4409, 1), -- MP Increase (1x)
-(25463, 4410, 11), -- Average P. Atk.
-(25463, 4411, 11), -- Average M. Atk.
-(25463, 4412, 11), -- Average P. Def.
-(25463, 4413, 11), -- Average M. Def.
-(25463, 4414, 2), -- Standard Type
-(25463, 4415, 3), -- One-handed Sword
-(25463, 4416, 3), -- Beasts
+(25463, 4178, 5), -- BOSS Flame Strike
+(25463, 4408, 1), -- HP Modifiers
+(25463, 4409, 1), -- MP Modifiers
+(25463, 4410, 11), -- P. Atk. Modifiers
+(25463, 4411, 11), -- M. Atk. Modifiers
+(25463, 4412, 11), -- P. Def. Modifiers
+(25463, 4413, 11), -- M. Def. Modifiers
+(25463, 4414, 2), -- Armor Type
+(25463, 4415, 3), -- Weapon Type
+(25463, 4416, 3), -- Races
 (25463, 4494, 1), -- Raid Boss
 (25463, 4965, 1), -- Raid Boss - Level 56
 -- Garangky Guard Captain
 (25464, 4045, 1), -- Resist Full Magic Attack
-(25464, 4408, 1), -- HP Increase (1x)
-(25464, 4409, 1), -- MP Increase (1x)
-(25464, 4410, 11), -- Average P. Atk.
-(25464, 4411, 11), -- Average M. Atk.
-(25464, 4412, 11), -- Average P. Def.
-(25464, 4413, 11), -- Average M. Def.
-(25464, 4414, 3), -- Light Armor Type
-(25464, 4415, 5), -- Blunt Weapons
-(25464, 4416, 6), -- Humanoids
+(25464, 4408, 1), -- HP Modifiers
+(25464, 4409, 1), -- MP Modifiers
+(25464, 4410, 11), -- P. Atk. Modifiers
+(25464, 4411, 11), -- M. Atk. Modifiers
+(25464, 4412, 11), -- P. Def. Modifiers
+(25464, 4413, 11), -- M. Def. Modifiers
+(25464, 4414, 3), -- Armor Type
+(25464, 4415, 5), -- Weapon Type
+(25464, 4416, 6), -- Races
 (25464, 4728, 5), -- Stun
 -- Garangky Guard Shaman
 (25465, 4045, 1), -- Resist Full Magic Attack
-(25465, 4212, 5), -- Shield
-(25465, 4408, 1), -- HP Increase (1x)
-(25465, 4409, 1), -- MP Increase (1x)
-(25465, 4410, 11), -- Average P. Atk.
-(25465, 4411, 11), -- Average M. Atk.
-(25465, 4412, 11), -- Average P. Def.
-(25465, 4413, 11), -- Average M. Def.
-(25465, 4414, 3), -- Light Armor Type
-(25465, 4415, 5), -- Blunt Weapons
-(25465, 4416, 6), -- Humanoids
-(25465, 4783, 5), -- Heal
+(25465, 4212, 5), -- BOSS Shield
+(25465, 4408, 1), -- HP Modifiers
+(25465, 4409, 1), -- MP Modifiers
+(25465, 4410, 11), -- P. Atk. Modifiers
+(25465, 4411, 11), -- M. Atk. Modifiers
+(25465, 4412, 11), -- P. Def. Modifiers
+(25465, 4413, 11), -- M. Def. Modifiers
+(25465, 4414, 3), -- Armor Type
+(25465, 4415, 5), -- Weapon Type
+(25465, 4416, 6), -- Races
+(25465, 4783, 5), -- BOSS Heal
 -- Garangky Guard 
 (25466, 4045, 1), -- Resist Full Magic Attack
-(25466, 4408, 1), -- HP Increase (1x)
-(25466, 4409, 1), -- MP Increase (1x)
-(25466, 4410, 11), -- Average P. Atk.
-(25466, 4411, 11), -- Average M. Atk.
-(25466, 4412, 11), -- Average P. Def.
-(25466, 4413, 11), -- Average M. Def.
-(25466, 4414, 3), -- Light Armor Type
-(25466, 4415, 3), -- One-handed Sword
-(25466, 4416, 6), -- Humanoids
-(25466, 4743, 5), -- Power Strike
+(25466, 4408, 1), -- HP Modifiers
+(25466, 4409, 1), -- MP Modifiers
+(25466, 4410, 11), -- P. Atk. Modifiers
+(25466, 4411, 11), -- M. Atk. Modifiers
+(25466, 4412, 11), -- P. Def. Modifiers
+(25466, 4413, 11), -- M. Def. Modifiers
+(25466, 4414, 3), -- Armor Type
+(25466, 4415, 3), -- Weapon Type
+(25466, 4416, 6), -- Races
+(25466, 4743, 5), -- BOSS Strike
 -- Gorgolos
 (25467, 4045, 1), -- Resist Full Magic Attack
 (25467, 4185, 6), -- Sleep
 (25467, 4190, 6), -- Decrease MP
-(25467, 4196, 6), -- Decrease Speed
-(25467, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(25467, 4408, 1), -- HP Increase (1x)
-(25467, 4409, 1), -- MP Increase (1x)
-(25467, 4410, 11), -- Average P. Atk.
-(25467, 4411, 11), -- Average M. Atk.
-(25467, 4412, 11), -- Average P. Def.
-(25467, 4413, 11), -- Average M. Def.
-(25467, 4414, 2), -- Standard Type
-(25467, 4415, 5), -- Blunt Weapons
-(25467, 4416, 2), -- Magic Creatures
+(25467, 4196, 6), -- Decreases Speed
+(25467, 4276, 1), -- Archery Attack Weak Point
+(25467, 4408, 1), -- HP Modifiers
+(25467, 4409, 1), -- MP Modifiers
+(25467, 4410, 11), -- P. Atk. Modifiers
+(25467, 4411, 11), -- M. Atk. Modifiers
+(25467, 4412, 11), -- P. Def. Modifiers
+(25467, 4413, 11), -- M. Def. Modifiers
+(25467, 4414, 2), -- Armor Type
+(25467, 4415, 5), -- Weapon Type
+(25467, 4416, 2), -- Races
 (25467, 4494, 1), -- Raid Boss
 (25467, 4966, 1), -- Raid Boss - Level 64
 -- Cursed Life
 (25468, 4045, 1), -- Resist Full Magic Attack
-(25468, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(25468, 4408, 1), -- HP Increase (1x)
-(25468, 4409, 1), -- MP Increase (1x)
-(25468, 4410, 11), -- Average P. Atk.
-(25468, 4411, 11), -- Average M. Atk.
-(25468, 4412, 11), -- Average P. Def.
-(25468, 4413, 11), -- Average M. Def.
-(25468, 4414, 3), -- Light Armor Type
-(25468, 4415, 5), -- Blunt Weapons
-(25468, 4416, 2), -- Magic Creatures
+(25468, 4276, 1), -- Archery Attack Weak Point
+(25468, 4408, 1), -- HP Modifiers
+(25468, 4409, 1), -- MP Modifiers
+(25468, 4410, 11), -- P. Atk. Modifiers
+(25468, 4411, 11), -- M. Atk. Modifiers
+(25468, 4412, 11), -- P. Def. Modifiers
+(25468, 4413, 11), -- M. Def. Modifiers
+(25468, 4414, 3), -- Armor Type
+(25468, 4415, 5), -- Weapon Type
+(25468, 4416, 2), -- Races
 -- Cursed Soul
 (25469, 4045, 1), -- Resist Full Magic Attack
-(25469, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(25469, 4408, 1), -- HP Increase (1x)
-(25469, 4409, 1), -- MP Increase (1x)
-(25469, 4410, 11), -- Average P. Atk.
-(25469, 4411, 11), -- Average M. Atk.
-(25469, 4412, 11), -- Average P. Def.
-(25469, 4413, 11), -- Average M. Def.
-(25469, 4414, 3), -- Light Armor Type
-(25469, 4415, 5), -- Blunt Weapons
-(25469, 4416, 2), -- Magic Creatures
-(25469, 4743, 6), -- Power Strike
+(25469, 4276, 1), -- Archery Attack Weak Point
+(25469, 4408, 1), -- HP Modifiers
+(25469, 4409, 1), -- MP Modifiers
+(25469, 4410, 11), -- P. Atk. Modifiers
+(25469, 4411, 11), -- M. Atk. Modifiers
+(25469, 4412, 11), -- P. Def. Modifiers
+(25469, 4413, 11), -- M. Def. Modifiers
+(25469, 4414, 3), -- Armor Type
+(25469, 4415, 5), -- Weapon Type
+(25469, 4416, 2), -- Races
+(25469, 4743, 6), -- BOSS Strike
 -- Last Titan Utenus
 (25470, 4045, 1), -- Resist Full Magic Attack
 (25470, 4197, 6), -- Hold
-(25470, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25470, 4274, 1), -- Blunt Weapon Weak Point
-(25470, 4408, 1), -- HP Increase (1x)
-(25470, 4409, 1), -- MP Increase (1x)
-(25470, 4410, 11), -- Average P. Atk.
-(25470, 4411, 11), -- Average M. Atk.
-(25470, 4412, 11), -- Average P. Def.
-(25470, 4413, 11), -- Average M. Def.
-(25470, 4414, 2), -- Standard Type
-(25470, 4415, 5), -- Blunt Weapons
-(25470, 4416, 11), -- Giants
+(25470, 4273, 3), -- Resist Dagger
+(25470, 4274, 1), -- Blunt Attack Weak Point
+(25470, 4408, 1), -- HP Modifiers
+(25470, 4409, 1), -- MP Modifiers
+(25470, 4410, 11), -- P. Atk. Modifiers
+(25470, 4411, 11), -- M. Atk. Modifiers
+(25470, 4412, 11), -- P. Def. Modifiers
+(25470, 4413, 11), -- M. Def. Modifiers
+(25470, 4414, 2), -- Armor Type
+(25470, 4415, 5), -- Weapon Type
+(25470, 4416, 11), -- Races
 (25470, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 (25470, 4494, 1), -- Raid Boss
 (25470, 4967, 1), -- Raid Boss - Level 66
 -- Utenus' Wizard
 (25471, 4045, 1), -- Resist Full Magic Attack
-(25471, 4195, 6), -- Twister
+(25471, 4195, 6), -- BOSS Twister
 (25471, 4205, 6), -- Paralysis
-(25471, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25471, 4274, 1), -- Blunt Weapon Weak Point
-(25471, 4408, 1), -- HP Increase (1x)
-(25471, 4409, 1), -- MP Increase (1x)
-(25471, 4410, 11), -- Average P. Atk.
-(25471, 4411, 11), -- Average M. Atk.
-(25471, 4412, 11), -- Average P. Def.
-(25471, 4413, 11), -- Average M. Def.
-(25471, 4414, 3), -- Light Armor Type
-(25471, 4415, 5), -- Blunt Weapons
-(25471, 4416, 11), -- Giants
+(25471, 4273, 3), -- Resist Dagger
+(25471, 4274, 1), -- Blunt Attack Weak Point
+(25471, 4408, 1), -- HP Modifiers
+(25471, 4409, 1), -- MP Modifiers
+(25471, 4410, 11), -- P. Atk. Modifiers
+(25471, 4411, 11), -- M. Atk. Modifiers
+(25471, 4412, 11), -- P. Def. Modifiers
+(25471, 4413, 11), -- M. Def. Modifiers
+(25471, 4414, 3), -- Armor Type
+(25471, 4415, 5), -- Weapon Type
+(25471, 4416, 11), -- Races
 (25471, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Utenus' Guard
 (25472, 4045, 1), -- Resist Full Magic Attack
-(25472, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25472, 4274, 1), -- Blunt Weapon Weak Point
-(25472, 4408, 1), -- HP Increase (1x)
-(25472, 4409, 1), -- MP Increase (1x)
-(25472, 4410, 11), -- Average P. Atk.
-(25472, 4411, 11), -- Average M. Atk.
-(25472, 4412, 11), -- Average P. Def.
-(25472, 4413, 11), -- Average M. Def.
-(25472, 4414, 3), -- Light Armor Type
-(25472, 4415, 5), -- Blunt Weapons
-(25472, 4416, 2), -- Magic Creatures
+(25472, 4273, 3), -- Resist Dagger
+(25472, 4274, 1), -- Blunt Attack Weak Point
+(25472, 4408, 1), -- HP Modifiers
+(25472, 4409, 1), -- MP Modifiers
+(25472, 4410, 11), -- P. Atk. Modifiers
+(25472, 4411, 11), -- M. Atk. Modifiers
+(25472, 4412, 11), -- P. Def. Modifiers
+(25472, 4413, 11), -- M. Def. Modifiers
+(25472, 4414, 3), -- Armor Type
+(25472, 4415, 5), -- Weapon Type
+(25472, 4416, 2), -- Races
 (25472, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
-(25472, 4743, 6), -- Power Strike
+(25472, 4743, 6), -- BOSS Strike
 -- Grave Robber Kim
 (25473, 4045, 1), -- Resist Full Magic Attack
 (25473, 4197, 5), -- Hold
-(25473, 4408, 1), -- HP Increase (1x)
-(25473, 4409, 1), -- MP Increase (1x)
-(25473, 4410, 11), -- Average P. Atk.
-(25473, 4411, 11), -- Average M. Atk.
-(25473, 4412, 11), -- Average P. Def.
-(25473, 4413, 11), -- Average M. Def.
-(25473, 4414, 2), -- Standard Type
-(25473, 4415, 5), -- Blunt Weapons
-(25473, 4416, 6), -- Humanoids
+(25473, 4408, 1), -- HP Modifiers
+(25473, 4409, 1), -- MP Modifiers
+(25473, 4410, 11), -- P. Atk. Modifiers
+(25473, 4411, 11), -- M. Atk. Modifiers
+(25473, 4412, 11), -- P. Def. Modifiers
+(25473, 4413, 11), -- M. Def. Modifiers
+(25473, 4414, 2), -- Armor Type
+(25473, 4415, 5), -- Weapon Type
+(25473, 4416, 6), -- Races
 (25473, 4494, 1), -- Raid Boss
 (25473, 4968, 1), -- Raid Boss - Level 52
 -- Kim's Gang
 (25474, 4045, 1), -- Resist Full Magic Attack
-(25474, 4408, 1), -- HP Increase (1x)
-(25474, 4409, 1), -- MP Increase (1x)
-(25474, 4410, 11), -- Average P. Atk.
-(25474, 4411, 11), -- Average M. Atk.
-(25474, 4412, 11), -- Average P. Def.
-(25474, 4413, 11), -- Average M. Def.
-(25474, 4414, 3), -- Light Armor Type
-(25474, 4415, 5), -- Blunt Weapons
-(25474, 4416, 6), -- Humanoids
+(25474, 4408, 1), -- HP Modifiers
+(25474, 4409, 1), -- MP Modifiers
+(25474, 4410, 11), -- P. Atk. Modifiers
+(25474, 4411, 11), -- M. Atk. Modifiers
+(25474, 4412, 11), -- P. Def. Modifiers
+(25474, 4413, 11), -- M. Def. Modifiers
+(25474, 4414, 3), -- Armor Type
+(25474, 4415, 5), -- Weapon Type
+(25474, 4416, 6), -- Races
 (25474, 4728, 5), -- Stun
 -- Ghost Knight Kabed
 (25475, 4045, 1), -- Resist Full Magic Attack
-(25475, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25475, 4274, 1), -- Blunt Weapon Weak Point
-(25475, 4408, 1), -- HP Increase (1x)
-(25475, 4409, 1), -- MP Increase (1x)
-(25475, 4410, 11), -- Average P. Atk.
-(25475, 4411, 11), -- Average M. Atk.
-(25475, 4412, 11), -- Average P. Def.
-(25475, 4413, 11), -- Average M. Def.
-(25475, 4414, 3), -- Light Armor Type
-(25475, 4415, 3), -- One-handed Sword
-(25475, 4416, 1), -- Undead
+(25475, 4273, 3), -- Resist Dagger
+(25475, 4274, 1), -- Blunt Attack Weak Point
+(25475, 4408, 1), -- HP Modifiers
+(25475, 4409, 1), -- MP Modifiers
+(25475, 4410, 11), -- P. Atk. Modifiers
+(25475, 4411, 11), -- M. Atk. Modifiers
+(25475, 4412, 11), -- P. Def. Modifiers
+(25475, 4413, 11), -- M. Def. Modifiers
+(25475, 4414, 3), -- Armor Type
+(25475, 4415, 3), -- Weapon Type
+(25475, 4416, 1), -- Races
 (25475, 4494, 1), -- Raid Boss
-(25475, 4743, 5), -- Power Strike
+(25475, 4743, 5), -- BOSS Strike
 (25475, 4969, 1), -- Raid Boss - Level 55
 -- Kabed's Soldier
 (25476, 4045, 1), -- Resist Full Magic Attack
-(25476, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25476, 4274, 1), -- Blunt Weapon Weak Point
-(25476, 4408, 1), -- HP Increase (1x)
-(25476, 4409, 1), -- MP Increase (1x)
-(25476, 4410, 11), -- Average P. Atk.
-(25476, 4411, 11), -- Average M. Atk.
-(25476, 4412, 11), -- Average P. Def.
-(25476, 4413, 11), -- Average M. Def.
-(25476, 4414, 3), -- Light Armor Type
-(25476, 4415, 3), -- One-handed Sword
-(25476, 4416, 1), -- Undead
+(25476, 4273, 3), -- Resist Dagger
+(25476, 4274, 1), -- Blunt Attack Weak Point
+(25476, 4408, 1), -- HP Modifiers
+(25476, 4409, 1), -- MP Modifiers
+(25476, 4410, 11), -- P. Atk. Modifiers
+(25476, 4411, 11), -- M. Atk. Modifiers
+(25476, 4412, 11), -- P. Def. Modifiers
+(25476, 4413, 11), -- M. Def. Modifiers
+(25476, 4414, 3), -- Armor Type
+(25476, 4415, 3), -- Weapon Type
+(25476, 4416, 1), -- Races
 -- Kabed's Archer
 (25477, 4045, 1), -- Resist Full Magic Attack
-(25477, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25477, 4274, 1), -- Blunt Weapon Weak Point
-(25477, 4408, 1), -- HP Increase (1x)
-(25477, 4409, 1), -- MP Increase (1x)
-(25477, 4410, 11), -- Average P. Atk.
-(25477, 4411, 11), -- Average M. Atk.
-(25477, 4412, 11), -- Average P. Def.
-(25477, 4413, 11), -- Average M. Def.
-(25477, 4414, 3), -- Light Armor Type
-(25477, 4415, 9), -- Bows
-(25477, 4416, 1), -- Undead
+(25477, 4273, 3), -- Resist Dagger
+(25477, 4274, 1), -- Blunt Attack Weak Point
+(25477, 4408, 1), -- HP Modifiers
+(25477, 4409, 1), -- MP Modifiers
+(25477, 4410, 11), -- P. Atk. Modifiers
+(25477, 4411, 11), -- M. Atk. Modifiers
+(25477, 4412, 11), -- P. Def. Modifiers
+(25477, 4413, 11), -- M. Def. Modifiers
+(25477, 4414, 3), -- Armor Type
+(25477, 4415, 9), -- Weapon Type
+(25477, 4416, 1), -- Races
 -- Shilen's Priest Hisilrome
 (25478, 4045, 1), -- Resist Full Magic Attack
 (25478, 4182, 6), -- Poison
 (25478, 4189, 6), -- Paralysis
-(25478, 4195, 6), -- Twister
-(25478, 4408, 1), -- HP Increase (1x)
-(25478, 4409, 1), -- MP Increase (1x)
-(25478, 4410, 11), -- Average P. Atk.
-(25478, 4411, 11), -- Average M. Atk.
-(25478, 4412, 11), -- Average P. Def.
-(25478, 4413, 11), -- Average M. Def.
-(25478, 4414, 2), -- Standard Type
-(25478, 4415, 7), -- Daggers
-(25478, 4416, 3), -- Beasts
+(25478, 4195, 6), -- BOSS Twister
+(25478, 4408, 1), -- HP Modifiers
+(25478, 4409, 1), -- MP Modifiers
+(25478, 4410, 11), -- P. Atk. Modifiers
+(25478, 4411, 11), -- M. Atk. Modifiers
+(25478, 4412, 11), -- P. Def. Modifiers
+(25478, 4413, 11), -- M. Def. Modifiers
+(25478, 4414, 2), -- Armor Type
+(25478, 4415, 7), -- Weapon Type
+(25478, 4416, 3), -- Races
 (25478, 4494, 1), -- Raid Boss
 (25478, 4970, 1), -- Raid Boss - Level 65
 -- Hisilrome's Servitor
 (25479, 4045, 1), -- Resist Full Magic Attack
-(25479, 4192, 6), -- Vampiric Touch
+(25479, 4192, 6), -- BOSS HP Drain
 (25479, 4204, 6), -- Bleed
-(25479, 4408, 1), -- HP Increase (1x)
-(25479, 4409, 1), -- MP Increase (1x)
-(25479, 4410, 11), -- Average P. Atk.
-(25479, 4411, 11), -- Average M. Atk.
-(25479, 4412, 11), -- Average P. Def.
-(25479, 4413, 11), -- Average M. Def.
-(25479, 4414, 3), -- Light Armor Type
-(25479, 4415, 3), -- One-handed Sword
-(25479, 4416, 3), -- Beasts
+(25479, 4408, 1), -- HP Modifiers
+(25479, 4409, 1), -- MP Modifiers
+(25479, 4410, 11), -- P. Atk. Modifiers
+(25479, 4411, 11), -- M. Atk. Modifiers
+(25479, 4412, 11), -- P. Def. Modifiers
+(25479, 4413, 11), -- M. Def. Modifiers
+(25479, 4414, 3), -- Armor Type
+(25479, 4415, 3), -- Weapon Type
+(25479, 4416, 3), -- Races
 -- Hisilrome's Page
 (25480, 4045, 1), -- Resist Full Magic Attack
-(25480, 4211, 6), -- Might
-(25480, 4408, 1), -- HP Increase (1x)
-(25480, 4409, 1), -- MP Increase (1x)
-(25480, 4410, 11), -- Average P. Atk.
-(25480, 4411, 11), -- Average M. Atk.
-(25480, 4412, 11), -- Average P. Def.
-(25480, 4413, 11), -- Average M. Def.
-(25480, 4414, 3), -- Light Armor Type
-(25480, 4415, 5), -- Blunt Weapons
-(25480, 4416, 3), -- Beasts
-(25480, 4783, 6), -- Heal
+(25480, 4211, 6), -- BOSS Might
+(25480, 4408, 1), -- HP Modifiers
+(25480, 4409, 1), -- MP Modifiers
+(25480, 4410, 11), -- P. Atk. Modifiers
+(25480, 4411, 11), -- M. Atk. Modifiers
+(25480, 4412, 11), -- P. Def. Modifiers
+(25480, 4413, 11), -- M. Def. Modifiers
+(25480, 4414, 3), -- Armor Type
+(25480, 4415, 5), -- Weapon Type
+(25480, 4416, 3), -- Races
+(25480, 4783, 6), -- BOSS Heal
 -- Magus Kenishee
 (25481, 4045, 1), -- Resist Full Magic Attack
-(25481, 4178, 5), -- Flame Strike
-(25481, 4408, 1), -- HP Increase (1x)
-(25481, 4409, 1), -- MP Increase (1x)
-(25481, 4410, 11), -- Average P. Atk.
-(25481, 4411, 11), -- Average M. Atk.
-(25481, 4412, 11), -- Average P. Def.
-(25481, 4413, 11), -- Average M. Def.
-(25481, 4414, 2), -- Standard Type
-(25481, 4415, 5), -- Blunt Weapons
-(25481, 4416, 9), -- Demons
+(25481, 4178, 5), -- BOSS Flame Strike
+(25481, 4408, 1), -- HP Modifiers
+(25481, 4409, 1), -- MP Modifiers
+(25481, 4410, 11), -- P. Atk. Modifiers
+(25481, 4411, 11), -- M. Atk. Modifiers
+(25481, 4412, 11), -- P. Def. Modifiers
+(25481, 4413, 11), -- M. Def. Modifiers
+(25481, 4414, 2), -- Armor Type
+(25481, 4415, 5), -- Weapon Type
+(25481, 4416, 9), -- Races
 (25481, 4494, 1), -- Raid Boss
 (25481, 4971, 1), -- Raid Boss - Level 53
 -- Shadow of Kenishee
 (25482, 4045, 1), -- Resist Full Magic Attack
-(25482, 4408, 1), -- HP Increase (1x)
-(25482, 4409, 1), -- MP Increase (1x)
-(25482, 4410, 11), -- Average P. Atk.
-(25482, 4411, 11), -- Average M. Atk.
-(25482, 4412, 11), -- Average P. Def.
-(25482, 4413, 11), -- Average M. Def.
-(25482, 4414, 3), -- Light Armor Type
-(25482, 4415, 5), -- Blunt Weapons
-(25482, 4416, 9), -- Demons
-(25482, 4743, 5), -- Power Strike
+(25482, 4408, 1), -- HP Modifiers
+(25482, 4409, 1), -- MP Modifiers
+(25482, 4410, 11), -- P. Atk. Modifiers
+(25482, 4411, 11), -- M. Atk. Modifiers
+(25482, 4412, 11), -- P. Def. Modifiers
+(25482, 4413, 11), -- M. Def. Modifiers
+(25482, 4414, 3), -- Armor Type
+(25482, 4415, 5), -- Weapon Type
+(25482, 4416, 9), -- Races
+(25482, 4743, 5), -- BOSS Strike
 -- Phantom of Kenishee
 (25483, 4045, 1), -- Resist Full Magic Attack
-(25483, 4212, 6), -- Shield
-(25483, 4408, 1), -- HP Increase (1x)
-(25483, 4409, 1), -- MP Increase (1x)
-(25483, 4410, 11), -- Average P. Atk.
-(25483, 4411, 11), -- Average M. Atk.
-(25483, 4412, 11), -- Average P. Def.
-(25483, 4413, 11), -- Average M. Def.
-(25483, 4414, 3), -- Light Armor Type
-(25483, 4415, 5), -- Blunt Weapons
-(25483, 4416, 9), -- Demons
-(25483, 4788, 6), -- Chant of Life
+(25483, 4212, 6), -- BOSS Shield
+(25483, 4408, 1), -- HP Modifiers
+(25483, 4409, 1), -- MP Modifiers
+(25483, 4410, 11), -- P. Atk. Modifiers
+(25483, 4411, 11), -- M. Atk. Modifiers
+(25483, 4412, 11), -- P. Def. Modifiers
+(25483, 4413, 11), -- M. Def. Modifiers
+(25483, 4414, 3), -- Armor Type
+(25483, 4415, 5), -- Weapon Type
+(25483, 4416, 9), -- Races
+(25483, 4788, 6), -- BOSS Chant of Life
 -- Zaken's Chief Mate Tillion
 (25484, 4045, 1), -- Resist Full Magic Attack
 (25484, 4197, 5), -- Hold
-(25484, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25484, 4274, 1), -- Blunt Weapon Weak Point
-(25484, 4408, 1), -- HP Increase (1x)
-(25484, 4409, 1), -- MP Increase (1x)
-(25484, 4410, 11), -- Average P. Atk.
-(25484, 4411, 11), -- Average M. Atk.
-(25484, 4412, 11), -- Average P. Def.
-(25484, 4413, 11), -- Average M. Def.
-(25484, 4414, 2), -- Standard Type
-(25484, 4415, 5), -- Blunt Weapons
-(25484, 4416, 1), -- Undead
+(25484, 4273, 3), -- Resist Dagger
+(25484, 4274, 1), -- Blunt Attack Weak Point
+(25484, 4408, 1), -- HP Modifiers
+(25484, 4409, 1), -- MP Modifiers
+(25484, 4410, 11), -- P. Atk. Modifiers
+(25484, 4411, 11), -- M. Atk. Modifiers
+(25484, 4412, 11), -- P. Def. Modifiers
+(25484, 4413, 11), -- M. Def. Modifiers
+(25484, 4414, 2), -- Armor Type
+(25484, 4415, 5), -- Weapon Type
+(25484, 4416, 1), -- Races
 (25484, 4494, 1), -- Raid Boss
 (25484, 4972, 1), -- Raid Boss - Level 50
 -- Tillion's Inferior
 (25485, 4045, 1), -- Resist Full Magic Attack
-(25485, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25485, 4274, 1), -- Blunt Weapon Weak Point
-(25485, 4408, 1), -- HP Increase (1x)
-(25485, 4409, 1), -- MP Increase (1x)
-(25485, 4410, 11), -- Average P. Atk.
-(25485, 4411, 11), -- Average M. Atk.
-(25485, 4412, 11), -- Average P. Def.
-(25485, 4413, 11), -- Average M. Def.
-(25485, 4414, 3), -- Light Armor Type
-(25485, 4415, 3), -- One-handed Sword
-(25485, 4416, 1), -- Undead
-(25485, 4743, 4), -- Power Strike
+(25485, 4273, 3), -- Resist Dagger
+(25485, 4274, 1), -- Blunt Attack Weak Point
+(25485, 4408, 1), -- HP Modifiers
+(25485, 4409, 1), -- MP Modifiers
+(25485, 4410, 11), -- P. Atk. Modifiers
+(25485, 4411, 11), -- M. Atk. Modifiers
+(25485, 4412, 11), -- P. Def. Modifiers
+(25485, 4413, 11), -- M. Def. Modifiers
+(25485, 4414, 3), -- Armor Type
+(25485, 4415, 3), -- Weapon Type
+(25485, 4416, 1), -- Races
+(25485, 4743, 4), -- BOSS Strike
 -- Tillion's Bat
 (25486, 4045, 1), -- Resist Full Magic Attack
-(25486, 4408, 1), -- HP Increase (1x)
-(25486, 4409, 1), -- MP Increase (1x)
-(25486, 4410, 11), -- Average P. Atk.
-(25486, 4411, 11), -- Average M. Atk.
-(25486, 4412, 11), -- Average P. Def.
-(25486, 4413, 11), -- Average M. Def.
-(25486, 4414, 3), -- Light Armor Type
-(25486, 4415, 3), -- One-handed Sword
-(25486, 4416, 4), -- Animals
-(25486, 4743, 4), -- Power Strike
+(25486, 4408, 1), -- HP Modifiers
+(25486, 4409, 1), -- MP Modifiers
+(25486, 4410, 11), -- P. Atk. Modifiers
+(25486, 4411, 11), -- M. Atk. Modifiers
+(25486, 4412, 11), -- P. Def. Modifiers
+(25486, 4413, 11), -- M. Def. Modifiers
+(25486, 4414, 3), -- Armor Type
+(25486, 4415, 3), -- Weapon Type
+(25486, 4416, 4), -- Races
+(25486, 4743, 4), -- BOSS Strike
 -- Water Spirit Lian
 (25487, 4045, 1), -- Resist Full Magic Attack
 (25487, 4197, 4), -- Hold
-(25487, 4408, 1), -- HP Increase (1x)
-(25487, 4409, 1), -- MP Increase (1x)
-(25487, 4410, 11), -- Average P. Atk.
-(25487, 4411, 11), -- Average M. Atk.
-(25487, 4412, 11), -- Average P. Def.
-(25487, 4413, 11), -- Average M. Def.
-(25487, 4414, 2), -- Standard Type
-(25487, 4415, 3), -- One-handed Sword
-(25487, 4416, 13), -- Fairies
+(25487, 4408, 1), -- HP Modifiers
+(25487, 4409, 1), -- MP Modifiers
+(25487, 4410, 11), -- P. Atk. Modifiers
+(25487, 4411, 11), -- M. Atk. Modifiers
+(25487, 4412, 11), -- P. Def. Modifiers
+(25487, 4413, 11), -- M. Def. Modifiers
+(25487, 4414, 2), -- Armor Type
+(25487, 4415, 3), -- Weapon Type
+(25487, 4416, 13), -- Races
 (25487, 4494, 1), -- Raid Boss
 (25487, 4973, 1), -- Raid Boss - Level 40
 -- Spirit of Gildor
 (25488, 4045, 1), -- Resist Full Magic Attack
-(25488, 4196, 3), -- Decrease Speed
+(25488, 4196, 3), -- Decreases Speed
 (25488, 4200, 3), -- Decrease Atk. Spd.
-(25488, 4408, 1), -- HP Increase (1x)
-(25488, 4409, 1), -- MP Increase (1x)
-(25488, 4410, 11), -- Average P. Atk.
-(25488, 4411, 11), -- Average M. Atk.
-(25488, 4412, 11), -- Average P. Def.
-(25488, 4413, 11), -- Average M. Def.
-(25488, 4414, 3), -- Light Armor Type
-(25488, 4415, 3), -- One-handed Sword
-(25488, 4416, 13), -- Fairies
+(25488, 4408, 1), -- HP Modifiers
+(25488, 4409, 1), -- MP Modifiers
+(25488, 4410, 11), -- P. Atk. Modifiers
+(25488, 4411, 11), -- M. Atk. Modifiers
+(25488, 4412, 11), -- P. Def. Modifiers
+(25488, 4413, 11), -- M. Def. Modifiers
+(25488, 4414, 3), -- Armor Type
+(25488, 4415, 3), -- Weapon Type
+(25488, 4416, 13), -- Races
 -- Guardian of Gildor
 (25489, 4045, 1), -- Resist Full Magic Attack
-(25489, 4408, 1), -- HP Increase (1x)
-(25489, 4409, 1), -- MP Increase (1x)
-(25489, 4410, 11), -- Average P. Atk.
-(25489, 4411, 11), -- Average M. Atk.
-(25489, 4412, 11), -- Average P. Def.
-(25489, 4413, 11), -- Average M. Def.
-(25489, 4414, 3), -- Light Armor Type
-(25489, 4415, 3), -- One-handed Sword
-(25489, 4416, 13), -- Fairies
-(25489, 4743, 3), -- Power Strike
+(25489, 4408, 1), -- HP Modifiers
+(25489, 4409, 1), -- MP Modifiers
+(25489, 4410, 11), -- P. Atk. Modifiers
+(25489, 4411, 11), -- M. Atk. Modifiers
+(25489, 4412, 11), -- P. Def. Modifiers
+(25489, 4413, 11), -- M. Def. Modifiers
+(25489, 4414, 3), -- Armor Type
+(25489, 4415, 3), -- Weapon Type
+(25489, 4416, 13), -- Races
+(25489, 4743, 3), -- BOSS Strike
 -- Gwindorr
 (25490, 4045, 1), -- Resist Full Magic Attack
-(25490, 4408, 1), -- HP Increase (1x)
-(25490, 4409, 1), -- MP Increase (1x)
-(25490, 4410, 11), -- Average P. Atk.
-(25490, 4411, 11), -- Average M. Atk.
-(25490, 4412, 11), -- Average P. Def.
-(25490, 4413, 11), -- Average M. Def.
-(25490, 4414, 2), -- Standard Type
-(25490, 4415, 3), -- One-handed Sword
-(25490, 4416, 3), -- Beasts
+(25490, 4408, 1), -- HP Modifiers
+(25490, 4409, 1), -- MP Modifiers
+(25490, 4410, 11), -- P. Atk. Modifiers
+(25490, 4411, 11), -- M. Atk. Modifiers
+(25490, 4412, 11), -- P. Def. Modifiers
+(25490, 4413, 11), -- M. Def. Modifiers
+(25490, 4414, 2), -- Armor Type
+(25490, 4415, 3), -- Weapon Type
+(25490, 4416, 3), -- Races
 (25490, 4494, 1), -- Raid Boss
-(25490, 4743, 4), -- Power Strike
+(25490, 4743, 4), -- BOSS Strike
 (25490, 4974, 1), -- Raid Boss - Level 40
 -- Guard of Gwindorr
 (25491, 4045, 1), -- Resist Full Magic Attack
-(25491, 4408, 1), -- HP Increase (1x)
-(25491, 4409, 1), -- MP Increase (1x)
-(25491, 4410, 11), -- Average P. Atk.
-(25491, 4411, 11), -- Average M. Atk.
-(25491, 4412, 11), -- Average P. Def.
-(25491, 4413, 11), -- Average M. Def.
-(25491, 4414, 3), -- Light Armor Type
-(25491, 4415, 9), -- Bows
-(25491, 4416, 6), -- Humanoids
+(25491, 4408, 1), -- HP Modifiers
+(25491, 4409, 1), -- MP Modifiers
+(25491, 4410, 11), -- P. Atk. Modifiers
+(25491, 4411, 11), -- M. Atk. Modifiers
+(25491, 4412, 11), -- P. Def. Modifiers
+(25491, 4413, 11), -- M. Def. Modifiers
+(25491, 4414, 3), -- Armor Type
+(25491, 4415, 9), -- Weapon Type
+(25491, 4416, 6), -- Races
 -- Follower of Gwindorr
 (25492, 4045, 1), -- Resist Full Magic Attack
-(25492, 4408, 1), -- HP Increase (1x)
-(25492, 4409, 1), -- MP Increase (1x)
-(25492, 4410, 11), -- Average P. Atk.
-(25492, 4411, 11), -- Average M. Atk.
-(25492, 4412, 11), -- Average P. Def.
-(25492, 4413, 11), -- Average M. Def.
-(25492, 4414, 3), -- Light Armor Type
-(25492, 4415, 3), -- One-handed Sword
-(25492, 4416, 6), -- Humanoids
+(25492, 4408, 1), -- HP Modifiers
+(25492, 4409, 1), -- MP Modifiers
+(25492, 4410, 11), -- P. Atk. Modifiers
+(25492, 4411, 11), -- M. Atk. Modifiers
+(25492, 4412, 11), -- P. Def. Modifiers
+(25492, 4413, 11), -- M. Def. Modifiers
+(25492, 4414, 3), -- Armor Type
+(25492, 4415, 3), -- Weapon Type
+(25492, 4416, 6), -- Races
 -- Eva's Spirit Niniel
 (25493, 4045, 1), -- Resist Full Magic Attack
 (25493, 4185, 5), -- Sleep
 (25493, 4188, 5), -- Bleed
-(25493, 4191, 5), -- Wind Strike
-(25493, 4408, 1), -- HP Increase (1x)
-(25493, 4409, 1), -- MP Increase (1x)
-(25493, 4410, 11), -- Average P. Atk.
-(25493, 4411, 11), -- Average M. Atk.
-(25493, 4412, 11), -- Average P. Def.
-(25493, 4413, 11), -- Average M. Def.
-(25493, 4414, 2), -- Standard Type
-(25493, 4415, 1), -- Bare Hands
-(25493, 4416, 7), -- Spirits
+(25493, 4191, 5), -- BOSS Wind Strike
+(25493, 4408, 1), -- HP Modifiers
+(25493, 4409, 1), -- MP Modifiers
+(25493, 4410, 11), -- P. Atk. Modifiers
+(25493, 4411, 11), -- M. Atk. Modifiers
+(25493, 4412, 11), -- P. Def. Modifiers
+(25493, 4413, 11), -- M. Def. Modifiers
+(25493, 4414, 2), -- Armor Type
+(25493, 4415, 1), -- Weapon Type
+(25493, 4416, 7), -- Races
 (25493, 4494, 1), -- Raid Boss
 (25493, 4975, 1), -- Raid Boss - Level 55
 -- Spirit of Niniel
 (25494, 4045, 1), -- Resist Full Magic Attack
-(25494, 4408, 1), -- HP Increase (1x)
-(25494, 4409, 1), -- MP Increase (1x)
-(25494, 4410, 11), -- Average P. Atk.
-(25494, 4411, 11), -- Average M. Atk.
-(25494, 4412, 11), -- Average P. Def.
-(25494, 4413, 11), -- Average M. Def.
-(25494, 4414, 3), -- Light Armor Type
-(25494, 4415, 7), -- Daggers
-(25494, 4416, 13), -- Fairies
-(25494, 4733, 5), -- Mortal Blow
+(25494, 4408, 1), -- HP Modifiers
+(25494, 4409, 1), -- MP Modifiers
+(25494, 4410, 11), -- P. Atk. Modifiers
+(25494, 4411, 11), -- M. Atk. Modifiers
+(25494, 4412, 11), -- P. Def. Modifiers
+(25494, 4413, 11), -- M. Def. Modifiers
+(25494, 4414, 3), -- Armor Type
+(25494, 4415, 7), -- Weapon Type
+(25494, 4416, 13), -- Races
+(25494, 4733, 5), -- BOSS Mortal Blow
 -- Spirit of Niniel
 (25495, 4045, 1), -- Resist Full Magic Attack
-(25495, 4408, 1), -- HP Increase (1x)
-(25495, 4409, 1), -- MP Increase (1x)
-(25495, 4410, 11), -- Average P. Atk.
-(25495, 4411, 11), -- Average M. Atk.
-(25495, 4412, 11), -- Average P. Def.
-(25495, 4413, 11), -- Average M. Def.
-(25495, 4414, 3), -- Light Armor Type
-(25495, 4415, 5), -- Blunt Weapons
-(25495, 4416, 13), -- Fairies
+(25495, 4408, 1), -- HP Modifiers
+(25495, 4409, 1), -- MP Modifiers
+(25495, 4410, 11), -- P. Atk. Modifiers
+(25495, 4411, 11), -- M. Atk. Modifiers
+(25495, 4412, 11), -- P. Def. Modifiers
+(25495, 4413, 11), -- M. Def. Modifiers
+(25495, 4414, 3), -- Armor Type
+(25495, 4415, 5), -- Weapon Type
+(25495, 4416, 13), -- Races
 -- Fafurion's Envoy Pingolpin
 (25496, 4045, 1), -- Resist Full Magic Attack
-(25496, 4085, 1), -- Critical Damage
+(25496, 4085, 1), -- Critical Power
 (25496, 4086, 1), -- Critical Chance
 (25496, 4197, 5), -- Hold
-(25496, 4408, 1), -- HP Increase (1x)
-(25496, 4409, 1), -- MP Increase (1x)
-(25496, 4410, 11), -- Average P. Atk.
-(25496, 4411, 11), -- Average M. Atk.
-(25496, 4412, 11), -- Average P. Def.
-(25496, 4413, 11), -- Average M. Def.
-(25496, 4414, 2), -- Standard Type
-(25496, 4415, 7), -- Daggers
-(25496, 4416, 12), -- Bugs
+(25496, 4408, 1), -- HP Modifiers
+(25496, 4409, 1), -- MP Modifiers
+(25496, 4410, 11), -- P. Atk. Modifiers
+(25496, 4411, 11), -- M. Atk. Modifiers
+(25496, 4412, 11), -- P. Def. Modifiers
+(25496, 4413, 11), -- M. Def. Modifiers
+(25496, 4414, 2), -- Armor Type
+(25496, 4415, 7), -- Weapon Type
+(25496, 4416, 12), -- Races
 (25496, 4494, 1), -- Raid Boss
 (25496, 4976, 1), -- Raid Boss - Level 52
 -- Fafurion's Envoy   
 (25497, 4045, 1), -- Resist Full Magic Attack
-(25497, 4408, 1), -- HP Increase (1x)
-(25497, 4409, 1), -- MP Increase (1x)
-(25497, 4410, 11), -- Average P. Atk.
-(25497, 4411, 11), -- Average M. Atk.
-(25497, 4412, 11), -- Average P. Def.
-(25497, 4413, 11), -- Average M. Def.
-(25497, 4414, 3), -- Light Armor Type
-(25497, 4415, 3), -- One-handed Sword
-(25497, 4416, 6), -- Humanoids
-(25497, 4743, 5), -- Power Strike
+(25497, 4408, 1), -- HP Modifiers
+(25497, 4409, 1), -- MP Modifiers
+(25497, 4410, 11), -- P. Atk. Modifiers
+(25497, 4411, 11), -- M. Atk. Modifiers
+(25497, 4412, 11), -- P. Def. Modifiers
+(25497, 4413, 11), -- M. Def. Modifiers
+(25497, 4414, 3), -- Armor Type
+(25497, 4415, 3), -- Weapon Type
+(25497, 4416, 6), -- Races
+(25497, 4743, 5), -- BOSS Strike
 -- Fafurion's Henchman Istary
 (25498, 4045, 1), -- Resist Full Magic Attack
 (25498, 4182, 5), -- Poison
 (25498, 4183, 5), -- Decrease P. Atk.
-(25498, 4191, 5), -- Wind Strike
-(25498, 4408, 1), -- HP Increase (1x)
-(25498, 4409, 1), -- MP Increase (1x)
-(25498, 4410, 11), -- Average P. Atk.
-(25498, 4411, 11), -- Average M. Atk.
-(25498, 4412, 11), -- Average P. Def.
-(25498, 4413, 11), -- Average M. Def.
-(25498, 4414, 2), -- Standard Type
-(25498, 4415, 5), -- Blunt Weapons
-(25498, 4416, 6), -- Humanoids
+(25498, 4191, 5), -- BOSS Wind Strike
+(25498, 4408, 1), -- HP Modifiers
+(25498, 4409, 1), -- MP Modifiers
+(25498, 4410, 11), -- P. Atk. Modifiers
+(25498, 4411, 11), -- M. Atk. Modifiers
+(25498, 4412, 11), -- P. Def. Modifiers
+(25498, 4413, 11), -- M. Def. Modifiers
+(25498, 4414, 2), -- Armor Type
+(25498, 4415, 5), -- Weapon Type
+(25498, 4416, 6), -- Races
 (25498, 4494, 1), -- Raid Boss
 (25498, 4977, 1), -- Raid Boss - Level 45
 -- Alligator of Istary
 (25499, 4045, 1), -- Resist Full Magic Attack
-(25499, 4408, 1), -- HP Increase (1x)
-(25499, 4409, 1), -- MP Increase (1x)
-(25499, 4410, 11), -- Average P. Atk.
-(25499, 4411, 11), -- Average M. Atk.
-(25499, 4412, 11), -- Average P. Def.
-(25499, 4413, 11), -- Average M. Def.
-(25499, 4414, 3), -- Light Armor Type
-(25499, 4415, 3), -- One-handed Sword
-(25499, 4416, 4), -- Animals
+(25499, 4408, 1), -- HP Modifiers
+(25499, 4409, 1), -- MP Modifiers
+(25499, 4410, 11), -- P. Atk. Modifiers
+(25499, 4411, 11), -- M. Atk. Modifiers
+(25499, 4412, 11), -- P. Def. Modifiers
+(25499, 4413, 11), -- M. Def. Modifiers
+(25499, 4414, 3), -- Armor Type
+(25499, 4415, 3), -- Weapon Type
+(25499, 4416, 4), -- Races
 (25499, 4728, 4), -- Stun
 -- Alligator of Istary
 (25500, 4045, 1), -- Resist Full Magic Attack
-(25500, 4408, 1), -- HP Increase (1x)
-(25500, 4409, 1), -- MP Increase (1x)
-(25500, 4410, 11), -- Average P. Atk.
-(25500, 4411, 11), -- Average M. Atk.
-(25500, 4412, 11), -- Average P. Def.
-(25500, 4413, 11), -- Average M. Def.
-(25500, 4414, 3), -- Light Armor Type
-(25500, 4415, 3), -- One-handed Sword
-(25500, 4416, 4), -- Animals
+(25500, 4408, 1), -- HP Modifiers
+(25500, 4409, 1), -- MP Modifiers
+(25500, 4410, 11), -- P. Atk. Modifiers
+(25500, 4411, 11), -- M. Atk. Modifiers
+(25500, 4412, 11), -- P. Def. Modifiers
+(25500, 4413, 11), -- M. Def. Modifiers
+(25500, 4414, 3), -- Armor Type
+(25500, 4415, 3), -- Weapon Type
+(25500, 4416, 4), -- Races
 -- Boss Akata
 (25501, 4045, 1), -- Resist Full Magic Attack
-(25501, 4408, 1), -- HP Increase (1x)
-(25501, 4409, 1), -- MP Increase (1x)
-(25501, 4410, 11), -- Average P. Atk.
-(25501, 4411, 11), -- Average M. Atk.
-(25501, 4412, 11), -- Average P. Def.
-(25501, 4413, 11), -- Average M. Def.
-(25501, 4414, 2), -- Standard Type
-(25501, 4415, 3), -- One-handed Sword
-(25501, 4416, 6), -- Humanoids
+(25501, 4408, 1), -- HP Modifiers
+(25501, 4409, 1), -- MP Modifiers
+(25501, 4410, 11), -- P. Atk. Modifiers
+(25501, 4411, 11), -- M. Atk. Modifiers
+(25501, 4412, 11), -- P. Def. Modifiers
+(25501, 4413, 11), -- M. Def. Modifiers
+(25501, 4414, 2), -- Armor Type
+(25501, 4415, 3), -- Weapon Type
+(25501, 4416, 6), -- Races
 (25501, 4494, 1), -- Raid Boss
-(25501, 4722, 3), -- Power Strike
+(25501, 4722, 3), -- BOSS Strike
 (25501, 5025, 1), -- Raid Boss - Level 30
 -- Akata's Thug
 (25502, 4045, 1), -- Resist Full Magic Attack
-(25502, 4408, 1), -- HP Increase (1x)
-(25502, 4409, 1), -- MP Increase (1x)
-(25502, 4410, 11), -- Average P. Atk.
-(25502, 4411, 11), -- Average M. Atk.
-(25502, 4412, 11), -- Average P. Def.
-(25502, 4413, 11), -- Average M. Def.
-(25502, 4414, 3), -- Light Armor Type
-(25502, 4415, 9), -- Bows
-(25502, 4416, 1), -- Undead
-(25502, 4757, 3), -- Power Shot
+(25502, 4408, 1), -- HP Modifiers
+(25502, 4409, 1), -- MP Modifiers
+(25502, 4410, 11), -- P. Atk. Modifiers
+(25502, 4411, 11), -- M. Atk. Modifiers
+(25502, 4412, 11), -- P. Def. Modifiers
+(25502, 4413, 11), -- M. Def. Modifiers
+(25502, 4414, 3), -- Armor Type
+(25502, 4415, 9), -- Weapon Type
+(25502, 4416, 1), -- Races
+(25502, 4757, 3), -- BOSS Power Shot
 -- Akata's Lackey
 (25503, 4045, 1), -- Resist Full Magic Attack
-(25503, 4408, 1), -- HP Increase (1x)
-(25503, 4409, 1), -- MP Increase (1x)
-(25503, 4410, 11), -- Average P. Atk.
-(25503, 4411, 11), -- Average M. Atk.
-(25503, 4412, 11), -- Average P. Def.
-(25503, 4413, 11), -- Average M. Def.
-(25503, 4414, 3), -- Light Armor Type
-(25503, 4415, 3), -- One-handed Sword
-(25503, 4416, 6), -- Humanoids
+(25503, 4408, 1), -- HP Modifiers
+(25503, 4409, 1), -- MP Modifiers
+(25503, 4410, 11), -- P. Atk. Modifiers
+(25503, 4411, 11), -- M. Atk. Modifiers
+(25503, 4412, 11), -- P. Def. Modifiers
+(25503, 4413, 11), -- M. Def. Modifiers
+(25503, 4414, 3), -- Armor Type
+(25503, 4415, 3), -- Weapon Type
+(25503, 4416, 6), -- Races
 -- Nellis' Vengeful Spirit
 (25504, 4045, 1), -- Resist Full Magic Attack
 (25504, 4197, 3), -- Hold
-(25504, 4408, 1), -- HP Increase (1x)
-(25504, 4409, 1), -- MP Increase (1x)
-(25504, 4410, 11), -- Average P. Atk.
-(25504, 4411, 11), -- Average M. Atk.
-(25504, 4412, 11), -- Average P. Def.
-(25504, 4413, 11), -- Average M. Def.
-(25504, 4414, 2), -- Standard Type
-(25504, 4415, 3), -- One-handed Sword
-(25504, 4416, 1), -- Undead
+(25504, 4408, 1), -- HP Modifiers
+(25504, 4409, 1), -- MP Modifiers
+(25504, 4410, 11), -- P. Atk. Modifiers
+(25504, 4411, 11), -- M. Atk. Modifiers
+(25504, 4412, 11), -- P. Def. Modifiers
+(25504, 4413, 11), -- M. Def. Modifiers
+(25504, 4414, 2), -- Armor Type
+(25504, 4415, 3), -- Weapon Type
+(25504, 4416, 1), -- Races
 (25504, 4494, 1), -- Raid Boss
 (25504, 5026, 1), -- Raid Boss - Level 39
 -- Nellis' Follower
 (25505, 4045, 1), -- Resist Full Magic Attack
-(25505, 4408, 1), -- HP Increase (1x)
-(25505, 4409, 1), -- MP Increase (1x)
-(25505, 4410, 11), -- Average P. Atk.
-(25505, 4411, 11), -- Average M. Atk.
-(25505, 4412, 11), -- Average P. Def.
-(25505, 4413, 11), -- Average M. Def.
-(25505, 4414, 3), -- Light Armor Type
-(25505, 4415, 3), -- One-handed Sword
-(25505, 4416, 1), -- Undead
-(25505, 4723, 3), -- Power Strike
+(25505, 4408, 1), -- HP Modifiers
+(25505, 4409, 1), -- MP Modifiers
+(25505, 4410, 11), -- P. Atk. Modifiers
+(25505, 4411, 11), -- M. Atk. Modifiers
+(25505, 4412, 11), -- P. Def. Modifiers
+(25505, 4413, 11), -- M. Def. Modifiers
+(25505, 4414, 3), -- Armor Type
+(25505, 4415, 3), -- Weapon Type
+(25505, 4416, 1), -- Races
+(25505, 4723, 3), -- BOSS Strike
 -- Rayito the Looter
 (25506, 4045, 1), -- Resist Full Magic Attack
 (25506, 4197, 3), -- Hold
-(25506, 4408, 1), -- HP Increase (1x)
-(25506, 4409, 1), -- MP Increase (1x)
-(25506, 4410, 11), -- Average P. Atk.
-(25506, 4411, 11), -- Average M. Atk.
-(25506, 4412, 11), -- Average P. Def.
-(25506, 4413, 11), -- Average M. Def.
-(25506, 4414, 2), -- Standard Type
-(25506, 4415, 5), -- Blunt Weapons
-(25506, 4416, 6), -- Humanoids
+(25506, 4408, 1), -- HP Modifiers
+(25506, 4409, 1), -- MP Modifiers
+(25506, 4410, 11), -- P. Atk. Modifiers
+(25506, 4411, 11), -- M. Atk. Modifiers
+(25506, 4412, 11), -- P. Def. Modifiers
+(25506, 4413, 11), -- M. Def. Modifiers
+(25506, 4414, 2), -- Armor Type
+(25506, 4415, 5), -- Weapon Type
+(25506, 4416, 6), -- Races
 (25506, 4494, 1), -- Raid Boss
 (25506, 5027, 1), -- Raid Boss - Level 37
 -- Rayito's Henchman
 (25507, 4045, 1), -- Resist Full Magic Attack
-(25507, 4408, 1), -- HP Increase (1x)
-(25507, 4409, 1), -- MP Increase (1x)
-(25507, 4410, 11), -- Average P. Atk.
-(25507, 4411, 11), -- Average M. Atk.
-(25507, 4412, 11), -- Average P. Def.
-(25507, 4413, 11), -- Average M. Def.
-(25507, 4414, 3), -- Light Armor Type
-(25507, 4415, 5), -- Blunt Weapons
-(25507, 4416, 6), -- Humanoids
+(25507, 4408, 1), -- HP Modifiers
+(25507, 4409, 1), -- MP Modifiers
+(25507, 4410, 11), -- P. Atk. Modifiers
+(25507, 4411, 11), -- M. Atk. Modifiers
+(25507, 4412, 11), -- P. Def. Modifiers
+(25507, 4413, 11), -- M. Def. Modifiers
+(25507, 4414, 3), -- Armor Type
+(25507, 4415, 5), -- Weapon Type
+(25507, 4416, 6), -- Races
 (25507, 4728, 3), -- Stun
 -- Rayito's Henchman
 (25508, 4045, 1), -- Resist Full Magic Attack
-(25508, 4194, 3), -- Aura Burn
+(25508, 4194, 3), -- BOSS Aura Burn
 (25508, 4202, 3), -- Hold
-(25508, 4408, 1), -- HP Increase (1x)
-(25508, 4409, 1), -- MP Increase (1x)
-(25508, 4410, 11), -- Average P. Atk.
-(25508, 4411, 11), -- Average M. Atk.
-(25508, 4412, 11), -- Average P. Def.
-(25508, 4413, 11), -- Average M. Def.
-(25508, 4414, 3), -- Light Armor Type
-(25508, 4415, 5), -- Blunt Weapons
-(25508, 4416, 6), -- Humanoids
+(25508, 4408, 1), -- HP Modifiers
+(25508, 4409, 1), -- MP Modifiers
+(25508, 4410, 11), -- P. Atk. Modifiers
+(25508, 4411, 11), -- M. Atk. Modifiers
+(25508, 4412, 11), -- P. Def. Modifiers
+(25508, 4413, 11), -- M. Def. Modifiers
+(25508, 4414, 3), -- Armor Type
+(25508, 4415, 5), -- Weapon Type
+(25508, 4416, 6), -- Races
 -- Dark Shaman Varangka 
 (25509, 4045, 1), -- Resist Full Magic Attack
 (25509, 4182, 5), -- Poison
 (25509, 4186, 5), -- Hold
-(25509, 4195, 5), -- Twister
-(25509, 4408, 1), -- HP Increase (1x)
-(25509, 4409, 1), -- MP Increase (1x)
-(25509, 4410, 11), -- Average P. Atk.
-(25509, 4411, 11), -- Average M. Atk.
-(25509, 4412, 11), -- Average P. Def.
-(25509, 4413, 11), -- Average M. Def.
-(25509, 4414, 2), -- Standard Type
-(25509, 4415, 3), -- One-handed Sword
-(25509, 4416, 6), -- Humanoids
+(25509, 4195, 5), -- BOSS Twister
+(25509, 4408, 1), -- HP Modifiers
+(25509, 4409, 1), -- MP Modifiers
+(25509, 4410, 11), -- P. Atk. Modifiers
+(25509, 4411, 11), -- M. Atk. Modifiers
+(25509, 4412, 11), -- P. Def. Modifiers
+(25509, 4413, 11), -- M. Def. Modifiers
+(25509, 4414, 2), -- Armor Type
+(25509, 4415, 3), -- Weapon Type
+(25509, 4416, 6), -- Races
 (25509, 4494, 1), -- Raid Boss
 (25509, 5028, 1), -- Raid Boss - Level 53
 -- Varangka's Descendant
 (25510, 4045, 1), -- Resist Full Magic Attack
-(25510, 4408, 1), -- HP Increase (1x)
-(25510, 4409, 1), -- MP Increase (1x)
-(25510, 4410, 11), -- Average P. Atk.
-(25510, 4411, 11), -- Average M. Atk.
-(25510, 4412, 11), -- Average P. Def.
-(25510, 4413, 11), -- Average M. Def.
-(25510, 4414, 3), -- Light Armor Type
-(25510, 4415, 3), -- One-handed Sword
-(25510, 4416, 6), -- Humanoids
-(25510, 4731, 5), -- Mortal Blow
+(25510, 4408, 1), -- HP Modifiers
+(25510, 4409, 1), -- MP Modifiers
+(25510, 4410, 11), -- P. Atk. Modifiers
+(25510, 4411, 11), -- M. Atk. Modifiers
+(25510, 4412, 11), -- P. Def. Modifiers
+(25510, 4413, 11), -- M. Def. Modifiers
+(25510, 4414, 3), -- Armor Type
+(25510, 4415, 3), -- Weapon Type
+(25510, 4416, 6), -- Races
+(25510, 4731, 5), -- BOSS Mortal Blow
 -- Varangka's Page
 (25511, 4045, 1), -- Resist Full Magic Attack
-(25511, 4408, 1), -- HP Increase (1x)
-(25511, 4409, 1), -- MP Increase (1x)
-(25511, 4410, 11), -- Average P. Atk.
-(25511, 4411, 11), -- Average M. Atk.
-(25511, 4412, 11), -- Average P. Def.
-(25511, 4413, 11), -- Average M. Def.
-(25511, 4414, 3), -- Light Armor Type
-(25511, 4415, 3), -- One-handed Sword
-(25511, 4416, 6), -- Humanoids
+(25511, 4408, 1), -- HP Modifiers
+(25511, 4409, 1), -- MP Modifiers
+(25511, 4410, 11), -- P. Atk. Modifiers
+(25511, 4411, 11), -- M. Atk. Modifiers
+(25511, 4412, 11), -- P. Def. Modifiers
+(25511, 4413, 11), -- M. Def. Modifiers
+(25511, 4414, 3), -- Armor Type
+(25511, 4415, 3), -- Weapon Type
+(25511, 4416, 6), -- Races
 -- Gigantic Chaos Golem
 (25512, 4045, 1), -- Resist Full Magic Attack
-(25512, 4171, 5), -- Whirlwind
-(25512, 4173, 5), -- Might
-(25512, 4177, 5), -- Cancel
-(25512, 4273, 5), -- Resist Daggers/Rapier Weapon
-(25512, 4408, 1), -- HP Increase (1x)
-(25512, 4409, 1), -- MP Increase (1x)
-(25512, 4410, 11), -- Average P. Atk.
-(25512, 4411, 11), -- Average M. Atk.
-(25512, 4412, 11), -- Average P. Def.
-(25512, 4413, 11), -- Average M. Def.
-(25512, 4414, 2), -- Standard Type
-(25512, 4415, 4), -- One-handed Sword
-(25512, 4416, 2), -- Magic Creatures
+(25512, 4171, 5), -- BOSS Spinning Slash
+(25512, 4173, 5), -- BOSS Might
+(25512, 4177, 5), -- BOSS Cancel Magic
+(25512, 4273, 5), -- Resist Dagger
+(25512, 4408, 1), -- HP Modifiers
+(25512, 4409, 1), -- MP Modifiers
+(25512, 4410, 11), -- P. Atk. Modifiers
+(25512, 4411, 11), -- M. Atk. Modifiers
+(25512, 4412, 11), -- P. Def. Modifiers
+(25512, 4413, 11), -- M. Def. Modifiers
+(25512, 4414, 2), -- Armor Type
+(25512, 4415, 4), -- Weapon Type
+(25512, 4416, 2), -- Races
 (25512, 4437, 5), -- Greater Resist Bleeding
 (25512, 4494, 1), -- Raid Boss
 (25512, 4726, 5), -- Stun
@@ -66876,181 +67135,181 @@ INSERT INTO `npcskills` VALUES
 -- Queen Shyeed
 (25514, 4045, 1), -- Resist Full Magic Attack
 (25514, 4197, 8), -- Hold
-(25514, 4408, 1), -- HP Increase (1x)
-(25514, 4409, 1), -- MP Increase (1x)
-(25514, 4410, 11), -- Average P. Atk.
-(25514, 4411, 11), -- Average M. Atk.
-(25514, 4412, 11), -- Average P. Def.
-(25514, 4413, 11), -- Average M. Def.
-(25514, 4414, 2), -- Standard Type
-(25514, 4415, 3), -- One-handed Sword
-(25514, 4416, 6), -- Humanoids
+(25514, 4408, 1), -- HP Modifiers
+(25514, 4409, 1), -- MP Modifiers
+(25514, 4410, 11), -- P. Atk. Modifiers
+(25514, 4411, 11), -- M. Atk. Modifiers
+(25514, 4412, 11), -- P. Def. Modifiers
+(25514, 4413, 11), -- M. Def. Modifiers
+(25514, 4414, 2), -- Armor Type
+(25514, 4415, 3), -- Weapon Type
+(25514, 4416, 6), -- Races
 (25514, 4494, 1), -- Raid Boss
 (25514, 5031, 1), -- Raid Boss - Level 80
 -- Spiked Stakato  
 (25515, 4045, 1), -- Resist Full Magic Attack
-(25515, 4195, 8), -- Twister
+(25515, 4195, 8), -- BOSS Twister
 (25515, 4198, 8), -- Poison
-(25515, 4408, 1), -- HP Increase (1x)
-(25515, 4409, 1), -- MP Increase (1x)
-(25515, 4410, 11), -- Average P. Atk.
-(25515, 4411, 11), -- Average M. Atk.
-(25515, 4412, 11), -- Average P. Def.
-(25515, 4413, 11), -- Average M. Def.
-(25515, 4414, 3), -- Light Armor Type
-(25515, 4415, 3), -- One-handed Sword
-(25515, 4416, 6), -- Humanoids
+(25515, 4408, 1), -- HP Modifiers
+(25515, 4409, 1), -- MP Modifiers
+(25515, 4410, 11), -- P. Atk. Modifiers
+(25515, 4411, 11), -- M. Atk. Modifiers
+(25515, 4412, 11), -- P. Def. Modifiers
+(25515, 4413, 11), -- M. Def. Modifiers
+(25515, 4414, 3), -- Armor Type
+(25515, 4415, 3), -- Weapon Type
+(25515, 4416, 6), -- Races
 -- Spiked Stakato  
 (25516, 4045, 1), -- Resist Full Magic Attack
-(25516, 4408, 1), -- HP Increase (1x)
-(25516, 4409, 1), -- MP Increase (1x)
-(25516, 4410, 11), -- Average P. Atk.
-(25516, 4411, 11), -- Average M. Atk.
-(25516, 4412, 11), -- Average P. Def.
-(25516, 4413, 11), -- Average M. Def.
-(25516, 4414, 3), -- Light Armor Type
-(25516, 4415, 3), -- One-handed Sword
-(25516, 4416, 6), -- Humanoids
+(25516, 4408, 1), -- HP Modifiers
+(25516, 4409, 1), -- MP Modifiers
+(25516, 4410, 11), -- P. Atk. Modifiers
+(25516, 4411, 11), -- M. Atk. Modifiers
+(25516, 4412, 11), -- P. Def. Modifiers
+(25516, 4413, 11), -- M. Def. Modifiers
+(25516, 4414, 3), -- Armor Type
+(25516, 4415, 3), -- Weapon Type
+(25516, 4416, 6), -- Races
 (25516, 4726, 8), -- Stun
 -- Plague Golem
 (25523, 4045, 1), -- Resist Full Magic Attack
 (25523, 4172, 7), -- Stun
-(25523, 4173, 7), -- Might
-(25523, 4177, 7), -- Cancel
-(25523, 4408, 1), -- HP Increase (1x)
-(25523, 4409, 1), -- MP Increase (1x)
-(25523, 4410, 11), -- Average P. Atk.
-(25523, 4411, 11), -- Average M. Atk.
-(25523, 4412, 11), -- Average P. Def.
-(25523, 4413, 11), -- Average M. Def.
-(25523, 4414, 2), -- Standard Type
-(25523, 4415, 1), -- Bare Hands
-(25523, 4416, 2), -- Magic Creatures
+(25523, 4173, 7), -- BOSS Might
+(25523, 4177, 7), -- BOSS Cancel Magic
+(25523, 4408, 1), -- HP Modifiers
+(25523, 4409, 1), -- MP Modifiers
+(25523, 4410, 11), -- P. Atk. Modifiers
+(25523, 4411, 11), -- M. Atk. Modifiers
+(25523, 4412, 11), -- P. Def. Modifiers
+(25523, 4413, 11), -- M. Def. Modifiers
+(25523, 4414, 2), -- Armor Type
+(25523, 4415, 1), -- Weapon Type
+(25523, 4416, 2), -- Races
 (25523, 4494, 1), -- Raid Boss
-(25523, 4730, 7), -- Mortal Blow
+(25523, 4730, 7), -- BOSS Mortal Blow
 (25523, 5034, 1), -- Raid Boss - Level 73
 -- Flamestone Giant
 (25524, 4045, 1), -- Resist Full Magic Attack
-(25524, 4178, 8), -- Flame Strike
-(25524, 4408, 1), -- HP Increase (1x)
-(25524, 4409, 1), -- MP Increase (1x)
-(25524, 4410, 11), -- Average P. Atk.
-(25524, 4411, 11), -- Average M. Atk.
-(25524, 4412, 11), -- Average P. Def.
-(25524, 4413, 11), -- Average M. Def.
-(25524, 4414, 2), -- Standard Type
-(25524, 4415, 5), -- Blunt Weapons
-(25524, 4416, 2), -- Magic Creatures
+(25524, 4178, 8), -- BOSS Flame Strike
+(25524, 4408, 1), -- HP Modifiers
+(25524, 4409, 1), -- MP Modifiers
+(25524, 4410, 11), -- P. Atk. Modifiers
+(25524, 4411, 11), -- M. Atk. Modifiers
+(25524, 4412, 11), -- P. Def. Modifiers
+(25524, 4413, 11), -- M. Def. Modifiers
+(25524, 4414, 2), -- Armor Type
+(25524, 4415, 5), -- Weapon Type
+(25524, 4416, 2), -- Races
 (25524, 4494, 1), -- Raid Boss
 (25524, 5035, 1), -- Raid Boss - Level 76
 -- Flame Spirit
 (25525, 4045, 1), -- Resist Full Magic Attack
-(25525, 4211, 8), -- Might
-(25525, 4408, 1), -- HP Increase (1x)
-(25525, 4409, 1), -- MP Increase (1x)
-(25525, 4410, 11), -- Average P. Atk.
-(25525, 4411, 11), -- Average M. Atk.
-(25525, 4412, 11), -- Average P. Def.
-(25525, 4413, 11), -- Average M. Def.
-(25525, 4414, 3), -- Light Armor Type
-(25525, 4415, 3), -- One-handed Sword
-(25525, 4416, 2), -- Magic Creatures
-(25525, 4780, 8), -- Heal
+(25525, 4211, 8), -- BOSS Might
+(25525, 4408, 1), -- HP Modifiers
+(25525, 4409, 1), -- MP Modifiers
+(25525, 4410, 11), -- P. Atk. Modifiers
+(25525, 4411, 11), -- M. Atk. Modifiers
+(25525, 4412, 11), -- P. Def. Modifiers
+(25525, 4413, 11), -- M. Def. Modifiers
+(25525, 4414, 3), -- Armor Type
+(25525, 4415, 3), -- Weapon Type
+(25525, 4416, 2), -- Races
+(25525, 4780, 8), -- BOSS Heal
 -- Charged Spirit
 (25526, 4045, 1), -- Resist Full Magic Attack
-(25526, 4408, 1), -- HP Increase (1x)
-(25526, 4409, 1), -- MP Increase (1x)
-(25526, 4410, 11), -- Average P. Atk.
-(25526, 4411, 11), -- Average M. Atk.
-(25526, 4412, 11), -- Average P. Def.
-(25526, 4413, 11), -- Average M. Def.
-(25526, 4414, 3), -- Light Armor Type
-(25526, 4415, 5), -- Blunt Weapons
-(25526, 4416, 2), -- Magic Creatures
+(25526, 4408, 1), -- HP Modifiers
+(25526, 4409, 1), -- MP Modifiers
+(25526, 4410, 11), -- P. Atk. Modifiers
+(25526, 4411, 11), -- M. Atk. Modifiers
+(25526, 4412, 11), -- P. Def. Modifiers
+(25526, 4413, 11), -- M. Def. Modifiers
+(25526, 4414, 3), -- Armor Type
+(25526, 4415, 5), -- Weapon Type
+(25526, 4416, 2), -- Races
 -- Uruka
 (25527, 4045, 1), -- Resist Full Magic Attack
 (25527, 4172, 10), -- Stun
-(25527, 4173, 10), -- Might
-(25527, 4177, 10), -- Cancel
-(25527, 4408, 1), -- HP Increase (1x)
-(25527, 4409, 1), -- MP Increase (1x)
-(25527, 4410, 11), -- Average P. Atk.
-(25527, 4411, 11), -- Average M. Atk.
-(25527, 4412, 11), -- Average P. Def.
-(25527, 4413, 11), -- Average M. Def.
-(25527, 4414, 2), -- Standard Type
-(25527, 4415, 5), -- Blunt Weapons
-(25527, 4416, 6), -- Humanoids
+(25527, 4173, 10), -- BOSS Might
+(25527, 4177, 10), -- BOSS Cancel Magic
+(25527, 4408, 1), -- HP Modifiers
+(25527, 4409, 1), -- MP Modifiers
+(25527, 4410, 11), -- P. Atk. Modifiers
+(25527, 4411, 11), -- M. Atk. Modifiers
+(25527, 4412, 11), -- P. Def. Modifiers
+(25527, 4413, 11), -- M. Def. Modifiers
+(25527, 4414, 2), -- Armor Type
+(25527, 4415, 5), -- Weapon Type
+(25527, 4416, 6), -- Races
 (25527, 4494, 1), -- Raid Boss
-(25527, 4721, 10), -- Power Strike
+(25527, 4721, 10), -- BOSS Strike
 (25527, 5179, 1), -- Raid Boss - Level 80
 -- Tiberias
-(25528, 4032, 2), -- Power Strike
+(25528, 4032, 2), -- NPC Strike
 (25528, 4045, 1), -- Resist Full Magic Attack
-(25528, 4408, 1), -- HP Increase (1x)
-(25528, 4409, 1), -- MP Increase (1x)
-(25528, 4410, 11), -- Average P. Atk.
-(25528, 4411, 11), -- Average M. Atk.
-(25528, 4412, 11), -- Average P. Def.
-(25528, 4413, 11), -- Average M. Def.
-(25528, 4414, 2), -- Standard Type
-(25528, 4415, 1), -- Bare Hands
-(25528, 4416, 25), -- Kamael
+(25528, 4408, 1), -- HP Modifiers
+(25528, 4409, 1), -- MP Modifiers
+(25528, 4410, 11), -- P. Atk. Modifiers
+(25528, 4411, 11), -- M. Atk. Modifiers
+(25528, 4412, 11), -- P. Def. Modifiers
+(25528, 4413, 11), -- M. Def. Modifiers
+(25528, 4414, 2), -- Armor Type
+(25528, 4415, 1), -- Weapon Type
+(25528, 4416, 25), -- Races
 (25528, 4494, 1), -- Raid Boss
-(25528, 5265, 2), -- Soul Emission
+(25528, 5265, 2), -- NPC - Soul Emission
 (25528, 5469, 1), -- Raid Boss - Level 22
 (25528, 5479, 1), -- Boss Petrification Resistance
 -- Garden Guard
 (25529, 4045, 1), -- Resist Full Magic Attack
-(25529, 4065, 2), -- Heal
-(25529, 4408, 1), -- HP Increase (1x)
-(25529, 4409, 1), -- MP Increase (1x)
-(25529, 4410, 11), -- Average P. Atk.
-(25529, 4411, 11), -- Average M. Atk.
-(25529, 4412, 11), -- Average P. Def.
-(25529, 4413, 11), -- Average M. Def.
-(25529, 4414, 2), -- Standard Type
-(25529, 4415, 3), -- One-handed Sword
-(25529, 4416, 6), -- Humanoids
+(25529, 4065, 2), -- NPC Heal
+(25529, 4408, 1), -- HP Modifiers
+(25529, 4409, 1), -- MP Modifiers
+(25529, 4410, 11), -- P. Atk. Modifiers
+(25529, 4411, 11), -- M. Atk. Modifiers
+(25529, 4412, 11), -- P. Def. Modifiers
+(25529, 4413, 11), -- M. Def. Modifiers
+(25529, 4414, 2), -- Armor Type
+(25529, 4415, 3), -- Weapon Type
+(25529, 4416, 6), -- Races
 -- Garden Guard
 (25530, 4045, 1), -- Resist Full Magic Attack
-(25530, 4408, 1), -- HP Increase (1x)
-(25530, 4409, 1), -- MP Increase (1x)
-(25530, 4410, 11), -- Average P. Atk.
-(25530, 4411, 11), -- Average M. Atk.
-(25530, 4412, 11), -- Average P. Def.
-(25530, 4413, 11), -- Average M. Def.
-(25530, 4414, 2), -- Standard Type
-(25530, 4415, 3), -- One-handed Sword
-(25530, 4416, 6), -- Humanoids
+(25530, 4408, 1), -- HP Modifiers
+(25530, 4409, 1), -- MP Modifiers
+(25530, 4410, 11), -- P. Atk. Modifiers
+(25530, 4411, 11), -- M. Atk. Modifiers
+(25530, 4412, 11), -- P. Def. Modifiers
+(25530, 4413, 11), -- M. Def. Modifiers
+(25530, 4414, 2), -- Armor Type
+(25530, 4415, 3), -- Weapon Type
+(25530, 4416, 6), -- Races
 -- Darnel
 (25531, 4045, 1), -- Resist Full Magic Attack
 (25531, 4182, 9), -- Poison
 (25531, 4189, 9), -- Paralysis
-(25531, 4408, 1), -- HP Increase (1x)
-(25531, 4409, 1), -- MP Increase (1x)
-(25531, 4410, 11), -- Average P. Atk.
-(25531, 4411, 11), -- Average M. Atk.
-(25531, 4412, 11), -- Average P. Def.
-(25531, 4413, 11), -- Average M. Def.
-(25531, 4414, 2), -- Standard Type
-(25531, 4415, 1), -- Bare Hands
-(25531, 4416, 9), -- Demons
+(25531, 4408, 1), -- HP Modifiers
+(25531, 4409, 1), -- MP Modifiers
+(25531, 4410, 11), -- P. Atk. Modifiers
+(25531, 4411, 11), -- M. Atk. Modifiers
+(25531, 4412, 11), -- P. Def. Modifiers
+(25531, 4413, 11), -- M. Def. Modifiers
+(25531, 4414, 2), -- Armor Type
+(25531, 4415, 1), -- Weapon Type
+(25531, 4416, 9), -- Races
 (25531, 4494, 1), -- Raid Boss
 (25531, 5467, 1), -- Dark Attacks
 (25531, 5470, 1), -- Raid Boss - Level 81
 (25531, 5479, 1), -- Boss Petrification Resistance
 -- Kechi
 (25532, 4045, 1), -- Resist Full Magic Attack
-(25532, 4408, 1), -- HP Increase (1x)
-(25532, 4409, 1), -- MP Increase (1x)
-(25532, 4410, 11), -- Average P. Atk.
-(25532, 4411, 11), -- Average M. Atk.
-(25532, 4412, 11), -- Average P. Def.
-(25532, 4413, 11), -- Average M. Def.
-(25532, 4414, 2), -- Standard Type
-(25532, 4415, 1), -- Bare Hands
-(25532, 4416, 9), -- Demons
+(25532, 4408, 1), -- HP Modifiers
+(25532, 4409, 1), -- MP Modifiers
+(25532, 4410, 11), -- P. Atk. Modifiers
+(25532, 4411, 11), -- M. Atk. Modifiers
+(25532, 4412, 11), -- P. Def. Modifiers
+(25532, 4413, 11), -- M. Def. Modifiers
+(25532, 4414, 2), -- Armor Type
+(25532, 4415, 1), -- Weapon Type
+(25532, 4416, 9), -- Races
 (25532, 4494, 1), -- Raid Boss
 (25532, 5418, 1), -- Invincible
 (25532, 5462, 1), -- Fire Attacks
@@ -67059,30 +67318,30 @@ INSERT INTO `npcskills` VALUES
 -- Kechi's Henchman
 (25533, 4045, 1), -- Resist Full Magic Attack
 (25533, 4084, 2), -- Resist Physical Attack
-(25533, 4099, 2), -- Berserker Spirit
-(25533, 4408, 1), -- HP Increase (1x)
-(25533, 4409, 1), -- MP Increase (1x)
-(25533, 4410, 11), -- Average P. Atk.
-(25533, 4411, 11), -- Average M. Atk.
-(25533, 4412, 11), -- Average P. Def.
-(25533, 4413, 11), -- Average M. Def.
-(25533, 4414, 2), -- Standard Type
-(25533, 4415, 1), -- Bare Hands
-(25533, 4416, 9), -- Demons
+(25533, 4099, 2), -- NPC Berserk
+(25533, 4408, 1), -- HP Modifiers
+(25533, 4409, 1), -- MP Modifiers
+(25533, 4410, 11), -- P. Atk. Modifiers
+(25533, 4411, 11), -- M. Atk. Modifiers
+(25533, 4412, 11), -- P. Def. Modifiers
+(25533, 4413, 11), -- M. Def. Modifiers
+(25533, 4414, 2), -- Armor Type
+(25533, 4415, 1), -- Weapon Type
+(25533, 4416, 9), -- Races
 (25533, 5462, 1), -- Fire Attacks
 (25533, 5479, 1), -- Boss Petrification Resistance
 -- Tears
 (25534, 2369, 1), -- Water Dragon Scale
 (25534, 4045, 1), -- Resist Full Magic Attack
-(25534, 4408, 1), -- HP Increase (1x)
-(25534, 4409, 1), -- MP Increase (1x)
-(25534, 4410, 11), -- Average P. Atk.
-(25534, 4411, 11), -- Average M. Atk.
-(25534, 4412, 11), -- Average P. Def.
-(25534, 4413, 11), -- Average M. Def.
-(25534, 4414, 2), -- Standard Type
-(25534, 4415, 1), -- Bare Hands
-(25534, 4416, 7), -- Spirits
+(25534, 4408, 1), -- HP Modifiers
+(25534, 4409, 1), -- MP Modifiers
+(25534, 4410, 11), -- P. Atk. Modifiers
+(25534, 4411, 11), -- M. Atk. Modifiers
+(25534, 4412, 11), -- P. Def. Modifiers
+(25534, 4413, 11), -- M. Def. Modifiers
+(25534, 4414, 2), -- Armor Type
+(25534, 4415, 1), -- Weapon Type
+(25534, 4416, 7), -- Races
 (25534, 4494, 1), -- Raid Boss
 (25534, 5238, 1), -- Freezing
 (25534, 5420, 1), -- Invincible
@@ -67091,166 +67350,168 @@ INSERT INTO `npcskills` VALUES
 (25534, 5479, 1), -- Boss Petrification Resistance
 -- Tears
 (25535, 4045, 1), -- Resist Full Magic Attack
-(25535, 4408, 1), -- HP Increase (1x)
-(25535, 4409, 1), -- MP Increase (1x)
-(25535, 4410, 11), -- Average P. Atk.
-(25535, 4411, 11), -- Average M. Atk.
-(25535, 4412, 11), -- Average P. Def.
-(25535, 4413, 11), -- Average M. Def.
-(25535, 4414, 2), -- Standard Type
-(25535, 4415, 1), -- Bare Hands
-(25535, 4416, 7), -- Spirits
+(25535, 4408, 1), -- HP Modifiers
+(25535, 4409, 1), -- MP Modifiers
+(25535, 4410, 11), -- P. Atk. Modifiers
+(25535, 4411, 11), -- M. Atk. Modifiers
+(25535, 4412, 11), -- P. Def. Modifiers
+(25535, 4413, 11), -- M. Def. Modifiers
+(25535, 4414, 2), -- Armor Type
+(25535, 4415, 1), -- Weapon Type
+(25535, 4416, 7), -- Races
 (25535, 5463, 1), -- Water Attacks
 (25535, 5479, 1), -- Boss Petrification Resistance
 -- Hannibal
 (25536, 4045, 1), -- Resist Full Magic Attack
 (25536, 4183, 9), -- Decrease P. Atk.
 (25536, 4185, 9), -- Sleep
-(25536, 4191, 9), -- Wind Strike
-(25536, 4408, 1), -- HP Increase (1x)
-(25536, 4409, 1), -- MP Increase (1x)
-(25536, 4410, 11), -- Average P. Atk.
-(25536, 4411, 11), -- Average M. Atk.
-(25536, 4412, 11), -- Average P. Def.
-(25536, 4413, 11), -- Average M. Def.
-(25536, 4414, 2), -- Standard Type
-(25536, 4415, 1), -- Bare Hands
-(25536, 4416, 9), -- Demons
+(25536, 4191, 9), -- BOSS Wind Strike
+(25536, 4408, 1), -- HP Modifiers
+(25536, 4409, 1), -- MP Modifiers
+(25536, 4410, 11), -- P. Atk. Modifiers
+(25536, 4411, 11), -- M. Atk. Modifiers
+(25536, 4412, 11), -- P. Def. Modifiers
+(25536, 4413, 11), -- M. Def. Modifiers
+(25536, 4414, 2), -- Armor Type
+(25536, 4415, 1), -- Weapon Type
+(25536, 4416, 9), -- Races
 (25536, 4494, 1), -- Raid Boss
 (25536, 5467, 1), -- Dark Attacks
 (25536, 5473, 1), -- Raid Boss - Level 81
 -- Enmity
 (25537, 4045, 1), -- Resist Full Magic Attack
-(25537, 4408, 1), -- HP Increase (1x)
-(25537, 4409, 1), -- MP Increase (1x)
-(25537, 4410, 11), -- Average P. Atk.
-(25537, 4411, 11), -- Average M. Atk.
-(25537, 4412, 11), -- Average P. Def.
-(25537, 4413, 11), -- Average M. Def.
-(25537, 4414, 2), -- Standard Type
-(25537, 4415, 1), -- Bare Hands
-(25537, 4416, 9), -- Demons
+(25537, 4408, 1), -- HP Modifiers
+(25537, 4409, 1), -- MP Modifiers
+(25537, 4410, 11), -- P. Atk. Modifiers
+(25537, 4411, 11), -- M. Atk. Modifiers
+(25537, 4412, 11), -- P. Def. Modifiers
+(25537, 4413, 11), -- M. Def. Modifiers
+(25537, 4414, 2), -- Armor Type
+(25537, 4415, 1), -- Weapon Type
+(25537, 4416, 9), -- Races
 (25537, 5467, 1), -- Dark Attacks
 -- Vengeance
 (25538, 4045, 1), -- Resist Full Magic Attack
 (25538, 4199, 9), -- Decrease P. Atk.
-(25538, 4408, 1), -- HP Increase (1x)
-(25538, 4409, 1), -- MP Increase (1x)
-(25538, 4410, 11), -- Average P. Atk.
-(25538, 4411, 11), -- Average M. Atk.
-(25538, 4412, 11), -- Average P. Def.
-(25538, 4413, 11), -- Average M. Def.
-(25538, 4414, 2), -- Standard Type
-(25538, 4415, 3), -- One-handed Sword
-(25538, 4416, 9), -- Demons
-(25538, 4780, 8), -- Heal
+(25538, 4408, 1), -- HP Modifiers
+(25538, 4409, 1), -- MP Modifiers
+(25538, 4410, 11), -- P. Atk. Modifiers
+(25538, 4411, 11), -- M. Atk. Modifiers
+(25538, 4412, 11), -- P. Def. Modifiers
+(25538, 4413, 11), -- M. Def. Modifiers
+(25538, 4414, 2), -- Armor Type
+(25538, 4415, 3), -- Weapon Type
+(25538, 4416, 9), -- Races
+(25538, 4780, 8), -- BOSS Heal
 (25538, 5467, 1), -- Dark Attacks
 -- Typhoon
 (25539, 4045, 1), -- Resist Full Magic Attack
-(25539, 4408, 1), -- HP Increase (1x)
-(25539, 4409, 1), -- MP Increase (1x)
-(25539, 4410, 11), -- Average P. Atk.
-(25539, 4411, 11), -- Average M. Atk.
-(25539, 4412, 11), -- Average P. Def.
-(25539, 4413, 11), -- Average M. Def.
-(25539, 4414, 2), -- Standard Type
-(25539, 4415, 1), -- Bare Hands
-(25539, 4416, 7), -- Spirits
+(25539, 4408, 1), -- HP Modifiers
+(25539, 4409, 1), -- MP Modifiers
+(25539, 4410, 11), -- P. Atk. Modifiers
+(25539, 4411, 11), -- M. Atk. Modifiers
+(25539, 4412, 11), -- P. Def. Modifiers
+(25539, 4413, 11), -- M. Def. Modifiers
+(25539, 4414, 2), -- Armor Type
+(25539, 4415, 1), -- Weapon Type
+(25539, 4416, 7), -- Races
 (25539, 4494, 1), -- Raid Boss
-(25539, 5380, 4), -- Hurricane
-(25539, 5382, 4), -- Tempest
+(25539, 5380, 4), -- NPC(party) -Magic Single Long Range DD - Wind
+(25539, 5382, 4), -- NPC(party) -Magic Range Close Range DD - Wind
 (25539, 5464, 1), -- Wind Attacks
 (25539, 5474, 1), -- Raid Boss - Level 81
 -- Demon Prince
 (25540, 4045, 1), -- Resist Full Magic Attack
-(25540, 4408, 1), -- HP Increase (1x)
-(25540, 4409, 1), -- MP Increase (1x)
-(25540, 4410, 11), -- Average P. Atk.
-(25540, 4411, 11), -- Average M. Atk.
-(25540, 4412, 11), -- Average P. Def.
-(25540, 4413, 11), -- Average M. Def.
-(25540, 4414, 2), -- Standard Type
-(25540, 4415, 1), -- Bare Hands
-(25540, 4416, 9), -- Demons
+(25540, 4408, 1), -- HP Modifiers
+(25540, 4409, 1), -- MP Modifiers
+(25540, 4410, 11), -- P. Atk. Modifiers
+(25540, 4411, 11), -- M. Atk. Modifiers
+(25540, 4412, 11), -- P. Def. Modifiers
+(25540, 4413, 11), -- M. Def. Modifiers
+(25540, 4414, 2), -- Armor Type
+(25540, 4415, 1), -- Weapon Type
+(25540, 4416, 9), -- Races
 (25540, 4494, 1), -- Raid Boss
-(25540, 5044, 2), -- Ultimate Defense
+(25540, 5044, 2), -- NPC Ultimate Defense
 (25540, 5247, 9), -- Seed of Darkness
-(25540, 5249, 9), -- Dark Circle
+(25540, 5249, 9), -- Boss Dark Circle
 (25540, 5467, 1), -- Dark Attacks
 (25540, 5475, 1), -- Raid Boss - Level 83
 (25540, 5479, 1), -- Boss Petrification Resistance
 -- Fiend
 (25541, 4045, 1), -- Resist Full Magic Attack
-(25541, 4408, 1), -- HP Increase (1x)
-(25541, 4409, 1), -- MP Increase (1x)
-(25541, 4410, 11), -- Average P. Atk.
-(25541, 4411, 11), -- Average M. Atk.
-(25541, 4412, 11), -- Average P. Def.
-(25541, 4413, 11), -- Average M. Def.
-(25541, 4414, 2), -- Standard Type
-(25541, 4415, 1), -- Bare Hands
-(25541, 4416, 1), -- Undead
+(25541, 4408, 1), -- HP Modifiers
+(25541, 4409, 1), -- MP Modifiers
+(25541, 4410, 11), -- P. Atk. Modifiers
+(25541, 4411, 11), -- M. Atk. Modifiers
+(25541, 4412, 11), -- P. Def. Modifiers
+(25541, 4413, 11), -- M. Def. Modifiers
+(25541, 4414, 2), -- Armor Type
+(25541, 4415, 1), -- Weapon Type
+(25541, 4416, 1), -- Races
 (25541, 5467, 1), -- Dark Attacks
 (25541, 5479, 1), -- Boss Petrification Resistance
 -- Ranku
 (25542, 4045, 1), -- Resist Full Magic Attack
-(25542, 4408, 1), -- HP Increase (1x)
-(25542, 4409, 1), -- MP Increase (1x)
-(25542, 4410, 11), -- Average P. Atk.
-(25542, 4411, 11), -- Average M. Atk.
-(25542, 4412, 11), -- Average P. Def.
-(25542, 4413, 11), -- Average M. Def.
-(25542, 4414, 2), -- Standard Type
-(25542, 4415, 1), -- Bare Hands
-(25542, 4416, 9), -- Demons
+(25542, 4408, 1), -- HP Modifiers
+(25542, 4409, 1), -- MP Modifiers
+(25542, 4410, 11), -- P. Atk. Modifiers
+(25542, 4411, 11), -- M. Atk. Modifiers
+(25542, 4412, 11), -- P. Def. Modifiers
+(25542, 4413, 11), -- M. Def. Modifiers
+(25542, 4414, 2), -- Armor Type
+(25542, 4415, 1), -- Weapon Type
+(25542, 4416, 9), -- Races
 (25542, 4494, 1), -- Raid Boss
-(25542, 5246, 9), -- Dark Explosion
+(25542, 5246, 9), -- Boss Dark Explosion
 (25542, 5250, 1), -- Stun
 (25542, 5467, 1), -- Dark Attacks
 (25542, 5476, 1), -- Raid Boss - Level 83
 (25542, 5479, 1), -- Boss Petrification Resistance
 -- Eidolon
 (25543, 4045, 1), -- Resist Full Magic Attack
-(25543, 4408, 1), -- HP Increase (1x)
-(25543, 4409, 1), -- MP Increase (1x)
-(25543, 4410, 11), -- Average P. Atk.
-(25543, 4411, 11), -- Average M. Atk.
-(25543, 4412, 11), -- Average P. Def.
-(25543, 4413, 11), -- Average M. Def.
-(25543, 4414, 2), -- Standard Type
-(25543, 4415, 1), -- Bare Hands
-(25543, 4416, 9), -- Demons
+(25543, 4408, 1), -- HP Modifiers
+(25543, 4409, 1), -- MP Modifiers
+(25543, 4410, 11), -- P. Atk. Modifiers
+(25543, 4411, 11), -- M. Atk. Modifiers
+(25543, 4412, 11), -- P. Def. Modifiers
+(25543, 4413, 11), -- M. Def. Modifiers
+(25543, 4414, 2), -- Armor Type
+(25543, 4415, 1), -- Weapon Type
+(25543, 4416, 9), -- Races
 (25543, 5266, 9), -- Magical Backfire
-(25543, 5297, 9), -- Power Strike
+(25543, 5297, 9), -- NPC(party) - Physical Single Close Range Attack - Dark
 (25543, 5467, 1), -- Dark Attacks
 -- Tully
 (25544, 4045, 1), -- Resist Full Magic Attack
-(25544, 4168, 10), -- Power Strike
+(25544, 4168, 10), -- BOSS Power Strike
 (25544, 4187, 10), -- Decrease Speed
-(25544, 4408, 1), -- HP Increase (1x)
-(25544, 4409, 1), -- MP Increase (1x)
-(25544, 4410, 11), -- Average P. Atk.
-(25544, 4411, 11), -- Average M. Atk.
-(25544, 4412, 11), -- Average P. Def.
-(25544, 4413, 11), -- Average M. Def.
-(25544, 4414, 2), -- Standard Type
-(25544, 4415, 1), -- Bare Hands
-(25544, 4416, 6), -- Humanoids
+(25544, 4408, 1), -- HP Modifiers
+(25544, 4409, 1), -- MP Modifiers
+(25544, 4410, 11), -- P. Atk. Modifiers
+(25544, 4411, 11), -- M. Atk. Modifiers
+(25544, 4412, 11), -- P. Def. Modifiers
+(25544, 4413, 11), -- M. Def. Modifiers
+(25544, 4414, 2); -- Armor Type
+
+INSERT INTO `npcskills` VALUES
+(25544, 4415, 1), -- Weapon Type
+(25544, 4416, 6), -- Races
 (25544, 4494, 1), -- Raid Boss
 (25544, 5467, 1), -- Dark Attacks
-(25544, 5477, 1), -- Raid Boss - Level 83
+(25544, 5477, 1), -- Raid Boss - Level 86
 (25544, 5479, 1), -- Boss Petrification Resistance
 -- Tully's Banshee
 (25545, 4045, 1), -- Resist Full Magic Attack
-(25545, 4408, 1), -- HP Increase (1x)
-(25545, 4409, 1), -- MP Increase (1x)
-(25545, 4410, 11), -- Average P. Atk.
-(25545, 4411, 11), -- Average M. Atk.
-(25545, 4412, 11), -- Average P. Def.
-(25545, 4413, 11), -- Average M. Def.
-(25545, 4414, 1), -- Heavy Armor Type
-(25545, 4415, 5), -- Blunt Weapons
-(25545, 4416, 2), -- Magic Creatures
+(25545, 4408, 1), -- HP Modifiers
+(25545, 4409, 1), -- MP Modifiers
+(25545, 4410, 11), -- P. Atk. Modifiers
+(25545, 4411, 11), -- M. Atk. Modifiers
+(25545, 4412, 11), -- P. Def. Modifiers
+(25545, 4413, 11), -- M. Def. Modifiers
+(25545, 4414, 1), -- Armor Type
+(25545, 4415, 5), -- Weapon Type
+(25545, 4416, 2), -- Races
 (25545, 5230, 1), -- Stun
 (25545, 5231, 1), -- Stun
 (25545, 5232, 1), -- Stun
@@ -67260,782 +67521,780 @@ INSERT INTO `npcskills` VALUES
 (25545, 5479, 1), -- Boss Petrification Resistance
 -- Rhianna the Traitor
 (25546, 4045, 1), -- Resist Full Magic Attack
-(25546, 4178, 7), -- Flame Strike
-(25546, 4408, 1), -- HP Increase (1x)
-(25546, 4409, 1), -- MP Increase (1x)
-(25546, 4410, 11), -- Average P. Atk.
-(25546, 4411, 11), -- Average M. Atk.
-(25546, 4412, 11), -- Average P. Def.
-(25546, 4413, 11), -- Average M. Def.
-(25546, 4414, 2), -- Standard Type
-(25546, 4415, 3), -- One-handed Sword
-(25546, 4416, 9), -- Demons
+(25546, 4178, 7), -- BOSS Flame Strike
+(25546, 4408, 1), -- HP Modifiers
+(25546, 4409, 1), -- MP Modifiers
+(25546, 4410, 11), -- P. Atk. Modifiers
+(25546, 4411, 11), -- M. Atk. Modifiers
+(25546, 4412, 11), -- P. Def. Modifiers
+(25546, 4413, 11), -- M. Def. Modifiers
+(25546, 4414, 2), -- Armor Type
+(25546, 4415, 3), -- Weapon Type
+(25546, 4416, 9), -- Races
 -- Rhianna's Escort
 (25547, 4045, 1), -- Resist Full Magic Attack
-(25547, 4408, 1), -- HP Increase (1x)
-(25547, 4409, 1), -- MP Increase (1x)
-(25547, 4410, 11), -- Average P. Atk.
-(25547, 4411, 11), -- Average M. Atk.
-(25547, 4412, 11), -- Average P. Def.
-(25547, 4413, 11), -- Average M. Def.
-(25547, 4414, 2), -- Standard Type
-(25547, 4415, 1), -- Bare Hands
-(25547, 4416, 1), -- Undead
+(25547, 4408, 1), -- HP Modifiers
+(25547, 4409, 1), -- MP Modifiers
+(25547, 4410, 11), -- P. Atk. Modifiers
+(25547, 4411, 11), -- M. Atk. Modifiers
+(25547, 4412, 11), -- P. Def. Modifiers
+(25547, 4413, 11), -- M. Def. Modifiers
+(25547, 4414, 2), -- Armor Type
+(25547, 4415, 1), -- Weapon Type
+(25547, 4416, 1), -- Races
 -- Rhianna's Healer
 (25548, 4045, 1), -- Resist Full Magic Attack
-(25548, 4213, 7), -- Haste
-(25548, 4408, 1), -- HP Increase (1x)
-(25548, 4409, 1), -- MP Increase (1x)
-(25548, 4410, 11), -- Average P. Atk.
-(25548, 4411, 11), -- Average M. Atk.
-(25548, 4412, 11), -- Average P. Def.
-(25548, 4413, 11), -- Average M. Def.
-(25548, 4414, 3), -- Light Armor Type
-(25548, 4415, 1), -- Bare Hands
-(25548, 4416, 2), -- Magic Creatures
-(25548, 4781, 7), -- Heal
+(25548, 4213, 7), -- BOSS Haste
+(25548, 4408, 1), -- HP Modifiers
+(25548, 4409, 1), -- MP Modifiers
+(25548, 4410, 11), -- P. Atk. Modifiers
+(25548, 4411, 11), -- M. Atk. Modifiers
+(25548, 4412, 11), -- P. Def. Modifiers
+(25548, 4413, 11), -- M. Def. Modifiers
+(25548, 4414, 3), -- Armor Type
+(25548, 4415, 1), -- Weapon Type
+(25548, 4416, 2), -- Races
+(25548, 4781, 7), -- BOSS Heal
 -- Tesla the Deceiver
 (25549, 4045, 1), -- Resist Full Magic Attack
 (25549, 4197, 7), -- Hold
-(25549, 4408, 1), -- HP Increase (1x)
-(25549, 4409, 1), -- MP Increase (1x)
-(25549, 4410, 11), -- Average P. Atk.
-(25549, 4411, 11), -- Average M. Atk.
-(25549, 4412, 11), -- Average P. Def.
-(25549, 4413, 11), -- Average M. Def.
-(25549, 4414, 2), -- Standard Type
-(25549, 4415, 3), -- One-handed Sword
-(25549, 4416, 6), -- Humanoids
+(25549, 4408, 1), -- HP Modifiers
+(25549, 4409, 1), -- MP Modifiers
+(25549, 4410, 11), -- P. Atk. Modifiers
+(25549, 4411, 11), -- M. Atk. Modifiers
+(25549, 4412, 11), -- P. Def. Modifiers
+(25549, 4413, 11), -- M. Def. Modifiers
+(25549, 4414, 2), -- Armor Type
+(25549, 4415, 3), -- Weapon Type
+(25549, 4416, 6), -- Races
 -- Tesla's Apprentice
 (25550, 4045, 1), -- Resist Full Magic Attack
-(25550, 4195, 7), -- Twister
+(25550, 4195, 7), -- BOSS Twister
 (25550, 4200, 7), -- Decrease Atk. Spd.
-(25550, 4408, 1), -- HP Increase (1x)
-(25550, 4409, 1), -- MP Increase (1x)
-(25550, 4410, 11), -- Average P. Atk.
-(25550, 4411, 11), -- Average M. Atk.
-(25550, 4412, 11), -- Average P. Def.
-(25550, 4413, 11), -- Average M. Def.
-(25550, 4414, 3), -- Light Armor Type
-(25550, 4415, 1), -- Bare Hands
-(25550, 4416, 6), -- Humanoids
+(25550, 4408, 1), -- HP Modifiers
+(25550, 4409, 1), -- MP Modifiers
+(25550, 4410, 11), -- P. Atk. Modifiers
+(25550, 4411, 11), -- M. Atk. Modifiers
+(25550, 4412, 11), -- P. Def. Modifiers
+(25550, 4413, 11), -- M. Def. Modifiers
+(25550, 4414, 3), -- Armor Type
+(25550, 4415, 1), -- Weapon Type
+(25550, 4416, 6), -- Races
 -- Tesla's Herald
 (25551, 4045, 1), -- Resist Full Magic Attack
-(25551, 4408, 1), -- HP Increase (1x)
-(25551, 4409, 1), -- MP Increase (1x)
-(25551, 4410, 11), -- Average P. Atk.
-(25551, 4411, 11), -- Average M. Atk.
-(25551, 4412, 11), -- Average P. Def.
-(25551, 4413, 11), -- Average M. Def.
-(25551, 4414, 2), -- Standard Type
-(25551, 4415, 1), -- Bare Hands
-(25551, 4416, 6), -- Humanoids
+(25551, 4408, 1), -- HP Modifiers
+(25551, 4409, 1), -- MP Modifiers
+(25551, 4410, 11), -- P. Atk. Modifiers
+(25551, 4411, 11), -- M. Atk. Modifiers
+(25551, 4412, 11), -- P. Def. Modifiers
+(25551, 4413, 11), -- M. Def. Modifiers
+(25551, 4414, 2), -- Armor Type
+(25551, 4415, 1), -- Weapon Type
+(25551, 4416, 6), -- Races
 (25551, 4725, 7), -- Stun
 -- Soul Hunter Chakundel
 (25552, 4045, 1), -- Resist Full Magic Attack
 (25552, 4172, 7), -- Stun
-(25552, 4173, 7), -- Might
-(25552, 4177, 7), -- Cancel
-(25552, 4408, 4), -- HP High
-(25552, 4409, 1), -- MP Increase (1x)
-(25552, 4410, 11), -- Average P. Atk.
-(25552, 4411, 11), -- Average M. Atk.
-(25552, 4412, 11), -- Average P. Def.
-(25552, 4413, 11), -- Average M. Def.
-(25552, 4414, 2), -- Standard Type
-(25552, 4415, 3), -- One-handed Sword
-(25552, 4416, 9), -- Demons
-(25552, 4730, 7), -- Mortal Blow
+(25552, 4173, 7), -- BOSS Might
+(25552, 4177, 7), -- BOSS Cancel Magic
+(25552, 4408, 4), -- HP Modifiers
+(25552, 4409, 1), -- MP Modifiers
+(25552, 4410, 11), -- P. Atk. Modifiers
+(25552, 4411, 11), -- M. Atk. Modifiers
+(25552, 4412, 11), -- P. Def. Modifiers
+(25552, 4413, 11), -- M. Def. Modifiers
+(25552, 4414, 2), -- Armor Type
+(25552, 4415, 3), -- Weapon Type
+(25552, 4416, 9), -- Races
+(25552, 4730, 7), -- BOSS Mortal Blow
 (25552, 5465, 1), -- Earth Attacks
 -- Durango the Crusher
 (25553, 4045, 1), -- Resist Full Magic Attack
-(25553, 4170, 7), -- Mortal Blow
+(25553, 4170, 7), -- BOSS Mortal Blow
 (25553, 4172, 7), -- Stun
-(25553, 4175, 7), -- Haste
-(25553, 4177, 7), -- Cancel
-(25553, 4408, 4), -- HP High
-(25553, 4409, 1), -- MP Increase (1x)
-(25553, 4410, 11), -- Average P. Atk.
-(25553, 4411, 11), -- Average M. Atk.
-(25553, 4412, 11), -- Average P. Def.
-(25553, 4413, 11), -- Average M. Def.
-(25553, 4414, 2), -- Standard Type
-(25553, 4415, 3), -- One-handed Sword
-(25553, 4416, 2), -- Magic Creatures
+(25553, 4175, 7), -- BOSS Haste
+(25553, 4177, 7), -- BOSS Cancel Magic
+(25553, 4408, 4), -- HP Modifiers
+(25553, 4409, 1), -- MP Modifiers
+(25553, 4410, 11), -- P. Atk. Modifiers
+(25553, 4411, 11), -- M. Atk. Modifiers
+(25553, 4412, 11), -- P. Def. Modifiers
+(25553, 4413, 11), -- M. Def. Modifiers
+(25553, 4414, 2), -- Armor Type
+(25553, 4415, 3), -- Weapon Type
+(25553, 4416, 2), -- Races
 (25553, 5465, 1), -- Earth Attacks
 -- Brutus the Obstinate
 (25554, 4045, 1), -- Resist Full Magic Attack
 (25554, 4182, 7), -- Poison
 (25554, 4190, 7), -- Decrease MP
-(25554, 4195, 7), -- Twister
-(25554, 4408, 1), -- HP Increase (1x)
-(25554, 4409, 1), -- MP Increase (1x)
-(25554, 4410, 11), -- Average P. Atk.
-(25554, 4411, 11), -- Average M. Atk.
-(25554, 4412, 11), -- Average P. Def.
-(25554, 4413, 11), -- Average M. Def.
-(25554, 4414, 2), -- Standard Type
-(25554, 4415, 3), -- One-handed Sword
-(25554, 4416, 9), -- Demons
+(25554, 4195, 7), -- BOSS Twister
+(25554, 4408, 1), -- HP Modifiers
+(25554, 4409, 1), -- MP Modifiers
+(25554, 4410, 11), -- P. Atk. Modifiers
+(25554, 4411, 11), -- M. Atk. Modifiers
+(25554, 4412, 11), -- P. Def. Modifiers
+(25554, 4413, 11), -- M. Def. Modifiers
+(25554, 4414, 2), -- Armor Type
+(25554, 4415, 3), -- Weapon Type
+(25554, 4416, 9), -- Races
 (25554, 5465, 1), -- Earth Attacks
 -- Brutus' Right Hand
 (25555, 4045, 1), -- Resist Full Magic Attack
-(25555, 4408, 1), -- HP Increase (1x)
-(25555, 4409, 1), -- MP Increase (1x)
-(25555, 4410, 11), -- Average P. Atk.
-(25555, 4411, 11), -- Average M. Atk.
-(25555, 4412, 11), -- Average P. Def.
-(25555, 4413, 11), -- Average M. Def.
-(25555, 4414, 2), -- Standard Type
-(25555, 4415, 1), -- Bare Hands
-(25555, 4416, 1), -- Undead
-(25555, 4721, 7), -- Power Strike
+(25555, 4408, 1), -- HP Modifiers
+(25555, 4409, 1), -- MP Modifiers
+(25555, 4410, 11), -- P. Atk. Modifiers
+(25555, 4411, 11), -- M. Atk. Modifiers
+(25555, 4412, 11), -- P. Def. Modifiers
+(25555, 4413, 11), -- M. Def. Modifiers
+(25555, 4414, 2), -- Armor Type
+(25555, 4415, 1), -- Weapon Type
+(25555, 4416, 1), -- Races
+(25555, 4721, 7), -- BOSS Strike
 (25555, 5465, 1), -- Earth Attacks
 -- Brutus' Left Hand
 (25556, 4045, 1), -- Resist Full Magic Attack
-(25556, 4408, 1), -- HP Increase (1x)
-(25556, 4409, 1), -- MP Increase (1x)
-(25556, 4410, 11), -- Average P. Atk.
-(25556, 4411, 11), -- Average M. Atk.
-(25556, 4412, 11), -- Average P. Def.
-(25556, 4413, 11), -- Average M. Def.
-(25556, 4414, 2), -- Standard Type
-(25556, 4415, 3), -- One-handed Sword
-(25556, 4416, 1), -- Undead
+(25556, 4408, 1), -- HP Modifiers
+(25556, 4409, 1), -- MP Modifiers
+(25556, 4410, 11), -- P. Atk. Modifiers
+(25556, 4411, 11), -- M. Atk. Modifiers
+(25556, 4412, 11), -- P. Def. Modifiers
+(25556, 4413, 11), -- M. Def. Modifiers
+(25556, 4414, 2), -- Armor Type
+(25556, 4415, 3), -- Weapon Type
+(25556, 4416, 1), -- Races
 (25556, 5465, 1), -- Earth Attacks
 -- Ranger Karankawa
 (25557, 4045, 1), -- Resist Full Magic Attack
 (25557, 4197, 7), -- Hold
-(25557, 4408, 1), -- HP Increase (1x)
-(25557, 4409, 1), -- MP Increase (1x)
-(25557, 4410, 11), -- Average P. Atk.
-(25557, 4411, 11), -- Average M. Atk.
-(25557, 4412, 11), -- Average P. Def.
-(25557, 4413, 11), -- Average M. Def.
-(25557, 4414, 2), -- Standard Type
-(25557, 4415, 3), -- One-handed Sword
-(25557, 4416, 5), -- Plants
+(25557, 4408, 1), -- HP Modifiers
+(25557, 4409, 1), -- MP Modifiers
+(25557, 4410, 11), -- P. Atk. Modifiers
+(25557, 4411, 11), -- M. Atk. Modifiers
+(25557, 4412, 11), -- P. Def. Modifiers
+(25557, 4413, 11), -- M. Def. Modifiers
+(25557, 4414, 2), -- Armor Type
+(25557, 4415, 3), -- Weapon Type
+(25557, 4416, 5), -- Races
 (25557, 5465, 1), -- Earth Attacks
 -- Karankawa's Root
 (25558, 4045, 1), -- Resist Full Magic Attack
-(25558, 4191, 7), -- Wind Strike
+(25558, 4191, 7), -- BOSS Wind Strike
 (25558, 4198, 7), -- Poison
-(25558, 4408, 1), -- HP Increase (1x)
-(25558, 4409, 1), -- MP Increase (1x)
-(25558, 4410, 11), -- Average P. Atk.
-(25558, 4411, 11), -- Average M. Atk.
-(25558, 4412, 11), -- Average P. Def.
-(25558, 4413, 11), -- Average M. Def.
-(25558, 4414, 3), -- Light Armor Type
-(25558, 4415, 1), -- Bare Hands
-(25558, 4416, 5), -- Plants
+(25558, 4408, 1), -- HP Modifiers
+(25558, 4409, 1), -- MP Modifiers
+(25558, 4410, 11), -- P. Atk. Modifiers
+(25558, 4411, 11), -- M. Atk. Modifiers
+(25558, 4412, 11), -- P. Def. Modifiers
+(25558, 4413, 11), -- M. Def. Modifiers
+(25558, 4414, 3), -- Armor Type
+(25558, 4415, 1), -- Weapon Type
+(25558, 4416, 5), -- Races
 (25558, 5465, 1), -- Earth Attacks
 -- Karankawa's Blossom
 (25559, 4045, 1), -- Resist Full Magic Attack
-(25559, 4408, 1), -- HP Increase (1x)
-(25559, 4409, 1), -- MP Increase (1x)
-(25559, 4410, 11), -- Average P. Atk.
-(25559, 4411, 11), -- Average M. Atk.
-(25559, 4412, 11), -- Average P. Def.
-(25559, 4413, 11), -- Average M. Def.
-(25559, 4414, 2), -- Standard Type
-(25559, 4415, 1), -- Bare Hands
-(25559, 4416, 5), -- Plants
-(25559, 4740, 7), -- Power Strike
+(25559, 4408, 1), -- HP Modifiers
+(25559, 4409, 1), -- MP Modifiers
+(25559, 4410, 11), -- P. Atk. Modifiers
+(25559, 4411, 11), -- M. Atk. Modifiers
+(25559, 4412, 11), -- P. Def. Modifiers
+(25559, 4413, 11), -- M. Def. Modifiers
+(25559, 4414, 2), -- Armor Type
+(25559, 4415, 1), -- Weapon Type
+(25559, 4416, 5), -- Races
+(25559, 4740, 7), -- BOSS Strike
 (25559, 5465, 1), -- Earth Attacks
 -- Sargon the Mad
 (25560, 4045, 1), -- Resist Full Magic Attack
-(25560, 4178, 7), -- Flame Strike
-(25560, 4408, 1), -- HP Increase (1x)
-(25560, 4409, 1), -- MP Increase (1x)
-(25560, 4410, 11), -- Average P. Atk.
-(25560, 4411, 11), -- Average M. Atk.
-(25560, 4412, 11), -- Average P. Def.
-(25560, 4413, 11), -- Average M. Def.
-(25560, 4414, 2), -- Standard Type
-(25560, 4415, 3), -- One-handed Sword
-(25560, 4416, 6), -- Humanoids
+(25560, 4178, 7), -- BOSS Flame Strike
+(25560, 4408, 1), -- HP Modifiers
+(25560, 4409, 1), -- MP Modifiers
+(25560, 4410, 11), -- P. Atk. Modifiers
+(25560, 4411, 11), -- M. Atk. Modifiers
+(25560, 4412, 11), -- P. Def. Modifiers
+(25560, 4413, 11), -- M. Def. Modifiers
+(25560, 4414, 2), -- Armor Type
+(25560, 4415, 3), -- Weapon Type
+(25560, 4416, 6), -- Races
 (25560, 5465, 1), -- Earth Attacks
 -- Sargon's Attendant
 (25561, 4045, 1), -- Resist Full Magic Attack
-(25561, 4211, 7), -- Might
-(25561, 4408, 1), -- HP Increase (1x)
-(25561, 4409, 1), -- MP Increase (1x)
-(25561, 4410, 11), -- Average P. Atk.
-(25561, 4411, 11), -- Average M. Atk.
-(25561, 4412, 11), -- Average P. Def.
-(25561, 4413, 11), -- Average M. Def.
-(25561, 4414, 2), -- Standard Type
-(25561, 4415, 1), -- Bare Hands
-(25561, 4416, 6), -- Humanoids
-(25561, 4780, 7), -- Heal
+(25561, 4211, 7), -- BOSS Might
+(25561, 4408, 1), -- HP Modifiers
+(25561, 4409, 1), -- MP Modifiers
+(25561, 4410, 11), -- P. Atk. Modifiers
+(25561, 4411, 11), -- M. Atk. Modifiers
+(25561, 4412, 11), -- P. Def. Modifiers
+(25561, 4413, 11), -- M. Def. Modifiers
+(25561, 4414, 2), -- Armor Type
+(25561, 4415, 1), -- Weapon Type
+(25561, 4416, 6), -- Races
+(25561, 4780, 7), -- BOSS Heal
 (25561, 5465, 1), -- Earth Attacks
 -- Sargon's Squire
 (25562, 4045, 1), -- Resist Full Magic Attack
-(25562, 4408, 1), -- HP Increase (1x)
-(25562, 4409, 1), -- MP Increase (1x)
-(25562, 4410, 11), -- Average P. Atk.
-(25562, 4411, 11), -- Average M. Atk.
-(25562, 4412, 11), -- Average P. Def.
-(25562, 4413, 11), -- Average M. Def.
-(25562, 4414, 3), -- Light Armor Type
-(25562, 4415, 1), -- Bare Hands
-(25562, 4416, 6), -- Humanoids
+(25562, 4408, 1), -- HP Modifiers
+(25562, 4409, 1), -- MP Modifiers
+(25562, 4410, 11), -- P. Atk. Modifiers
+(25562, 4411, 11), -- M. Atk. Modifiers
+(25562, 4412, 11), -- P. Def. Modifiers
+(25562, 4413, 11), -- M. Def. Modifiers
+(25562, 4414, 3), -- Armor Type
+(25562, 4415, 1), -- Weapon Type
+(25562, 4416, 6), -- Races
 (25562, 5465, 1), -- Earth Attacks
 -- Beautiful Atrielle
 (25563, 4045, 1), -- Resist Full Magic Attack
 (25563, 4182, 7), -- Poison
 (25563, 4188, 7), -- Bleed
-(25563, 4194, 7), -- Aura Burn
-(25563, 4408, 1), -- HP Increase (1x)
-(25563, 4409, 1), -- MP Increase (1x)
-(25563, 4410, 11), -- Average P. Atk.
-(25563, 4411, 11), -- Average M. Atk.
-(25563, 4412, 11), -- Average P. Def.
-(25563, 4413, 11), -- Average M. Def.
-(25563, 4414, 2), -- Standard Type
-(25563, 4415, 3), -- One-handed Sword
-(25563, 4416, 9), -- Demons
+(25563, 4194, 7), -- BOSS Aura Burn
+(25563, 4408, 1), -- HP Modifiers
+(25563, 4409, 1), -- MP Modifiers
+(25563, 4410, 11), -- P. Atk. Modifiers
+(25563, 4411, 11), -- M. Atk. Modifiers
+(25563, 4412, 11), -- P. Def. Modifiers
+(25563, 4413, 11), -- M. Def. Modifiers
+(25563, 4414, 2), -- Armor Type
+(25563, 4415, 3), -- Weapon Type
+(25563, 4416, 9), -- Races
 (25563, 5467, 1), -- Dark Attacks
 -- Atrielle's Follower
 (25564, 4045, 1), -- Resist Full Magic Attack
-(25564, 4408, 1), -- HP Increase (1x)
-(25564, 4409, 1), -- MP Increase (1x)
-(25564, 4410, 11), -- Average P. Atk.
-(25564, 4411, 11), -- Average M. Atk.
-(25564, 4412, 11), -- Average P. Def.
-(25564, 4413, 11), -- Average M. Def.
-(25564, 4414, 2), -- Standard Type
-(25564, 4415, 1), -- Bare Hands
-(25564, 4416, 9), -- Demons
+(25564, 4408, 1), -- HP Modifiers
+(25564, 4409, 1), -- MP Modifiers
+(25564, 4410, 11), -- P. Atk. Modifiers
+(25564, 4411, 11), -- M. Atk. Modifiers
+(25564, 4412, 11), -- P. Def. Modifiers
+(25564, 4413, 11), -- M. Def. Modifiers
+(25564, 4414, 2), -- Armor Type
+(25564, 4415, 1), -- Weapon Type
+(25564, 4416, 9), -- Races
 (25564, 4725, 7), -- Stun
 (25564, 5467, 1), -- Dark Attacks
 -- Atrielle's Minion
 (25565, 4045, 1), -- Resist Full Magic Attack
-(25565, 4408, 1), -- HP Increase (1x)
-(25565, 4409, 1), -- MP Increase (1x)
-(25565, 4410, 11), -- Average P. Atk.
-(25565, 4411, 11), -- Average M. Atk.
-(25565, 4412, 11), -- Average P. Def.
-(25565, 4413, 11), -- Average M. Def.
-(25565, 4414, 3); -- Light Armor Type
-
-INSERT INTO `npcskills` VALUES
-(25565, 4415, 1), -- Bare Hands
-(25565, 4416, 9), -- Demons
+(25565, 4408, 1), -- HP Modifiers
+(25565, 4409, 1), -- MP Modifiers
+(25565, 4410, 11), -- P. Atk. Modifiers
+(25565, 4411, 11), -- M. Atk. Modifiers
+(25565, 4412, 11), -- P. Def. Modifiers
+(25565, 4413, 11), -- M. Def. Modifiers
+(25565, 4414, 3), -- Armor Type
+(25565, 4415, 1), -- Weapon Type
+(25565, 4416, 9), -- Races
 (25565, 5467, 1), -- Dark Attacks
 -- Nagen the Tomboy
 (25566, 4045, 1), -- Resist Full Magic Attack
 (25566, 4183, 7), -- Decrease P. Atk.
 (25566, 4190, 7), -- Decrease MP
-(25566, 4194, 7), -- Aura Burn
-(25566, 4408, 1), -- HP Increase (1x)
-(25566, 4409, 1), -- MP Increase (1x)
-(25566, 4410, 11), -- Average P. Atk.
-(25566, 4411, 11), -- Average M. Atk.
-(25566, 4412, 11), -- Average P. Def.
-(25566, 4413, 11), -- Average M. Def.
-(25566, 4414, 2), -- Standard Type
-(25566, 4415, 3), -- One-handed Sword
-(25566, 4416, 13), -- Fairies
+(25566, 4194, 7), -- BOSS Aura Burn
+(25566, 4408, 1), -- HP Modifiers
+(25566, 4409, 1), -- MP Modifiers
+(25566, 4410, 11), -- P. Atk. Modifiers
+(25566, 4411, 11), -- M. Atk. Modifiers
+(25566, 4412, 11), -- P. Def. Modifiers
+(25566, 4413, 11), -- M. Def. Modifiers
+(25566, 4414, 2), -- Armor Type
+(25566, 4415, 3), -- Weapon Type
+(25566, 4416, 13), -- Races
 (25566, 5464, 1), -- Wind Attacks
 -- Nagen's Cohort
 (25567, 4045, 1), -- Resist Full Magic Attack
-(25567, 4194, 7), -- Aura Burn
+(25567, 4194, 7), -- BOSS Aura Burn
 (25567, 4202, 7), -- Hold
-(25567, 4408, 1), -- HP Increase (1x)
-(25567, 4409, 1), -- MP Increase (1x)
-(25567, 4410, 11), -- Average P. Atk.
-(25567, 4411, 11), -- Average M. Atk.
-(25567, 4412, 11), -- Average P. Def.
-(25567, 4413, 11), -- Average M. Def.
-(25567, 4414, 2), -- Standard Type
-(25567, 4415, 1), -- Bare Hands
-(25567, 4416, 13), -- Fairies
+(25567, 4408, 1), -- HP Modifiers
+(25567, 4409, 1), -- MP Modifiers
+(25567, 4410, 11), -- P. Atk. Modifiers
+(25567, 4411, 11), -- M. Atk. Modifiers
+(25567, 4412, 11), -- P. Def. Modifiers
+(25567, 4413, 11), -- M. Def. Modifiers
+(25567, 4414, 2), -- Armor Type
+(25567, 4415, 1), -- Weapon Type
+(25567, 4416, 13), -- Races
 (25567, 5464, 1), -- Wind Attacks
 -- Nagen's Friend
 (25568, 4045, 1), -- Resist Full Magic Attack
-(25568, 4212, 7), -- Shield
-(25568, 4408, 1), -- HP Increase (1x)
-(25568, 4409, 1), -- MP Increase (1x)
-(25568, 4410, 11), -- Average P. Atk.
-(25568, 4411, 11), -- Average M. Atk.
-(25568, 4412, 11), -- Average P. Def.
-(25568, 4413, 11), -- Average M. Def.
-(25568, 4414, 2), -- Standard Type
-(25568, 4415, 1), -- Bare Hands
-(25568, 4416, 13), -- Fairies
-(25568, 4785, 7), -- Chant of Life
+(25568, 4212, 7), -- BOSS Shield
+(25568, 4408, 1), -- HP Modifiers
+(25568, 4409, 1), -- MP Modifiers
+(25568, 4410, 11), -- P. Atk. Modifiers
+(25568, 4411, 11), -- M. Atk. Modifiers
+(25568, 4412, 11), -- P. Def. Modifiers
+(25568, 4413, 11), -- M. Def. Modifiers
+(25568, 4414, 2), -- Armor Type
+(25568, 4415, 1), -- Weapon Type
+(25568, 4416, 13), -- Races
+(25568, 4785, 7), -- BOSS Chant of Life
 (25568, 5464, 1), -- Wind Attacks
 -- Jax the Destroyer
 (25569, 4045, 1), -- Resist Full Magic Attack
-(25569, 4408, 1), -- HP Increase (1x)
-(25569, 4409, 1), -- MP Increase (1x)
-(25569, 4410, 11), -- Average P. Atk.
-(25569, 4411, 11), -- Average M. Atk.
-(25569, 4412, 11), -- Average P. Def.
-(25569, 4413, 11), -- Average M. Def.
-(25569, 4414, 2), -- Standard Type
-(25569, 4415, 3), -- One-handed Sword
-(25569, 4416, 6), -- Humanoids
+(25569, 4408, 1), -- HP Modifiers
+(25569, 4409, 1), -- MP Modifiers
+(25569, 4410, 11), -- P. Atk. Modifiers
+(25569, 4411, 11), -- M. Atk. Modifiers
+(25569, 4412, 11), -- P. Def. Modifiers
+(25569, 4413, 11), -- M. Def. Modifiers
+(25569, 4414, 2), -- Armor Type
+(25569, 4415, 3), -- Weapon Type
+(25569, 4416, 6), -- Races
 (25569, 4745, 8), -- Stun
 (25569, 5465, 1), -- Earth Attacks
 -- Jax's Vanguard
 (25570, 4045, 1), -- Resist Full Magic Attack
-(25570, 4408, 1), -- HP Increase (1x)
-(25570, 4409, 1), -- MP Increase (1x)
-(25570, 4410, 11), -- Average P. Atk.
-(25570, 4411, 11), -- Average M. Atk.
-(25570, 4412, 11), -- Average P. Def.
-(25570, 4413, 11), -- Average M. Def.
-(25570, 4414, 3), -- Light Armor Type
-(25570, 4415, 9), -- Bows
-(25570, 4416, 6), -- Humanoids
+(25570, 4408, 1), -- HP Modifiers
+(25570, 4409, 1), -- MP Modifiers
+(25570, 4410, 11), -- P. Atk. Modifiers
+(25570, 4411, 11), -- M. Atk. Modifiers
+(25570, 4412, 11), -- P. Def. Modifiers
+(25570, 4413, 11), -- M. Def. Modifiers
+(25570, 4414, 3), -- Armor Type
+(25570, 4415, 9), -- Weapon Type
+(25570, 4416, 6), -- Races
 (25570, 5465, 1), -- Earth Attacks
 -- Jax's Raider
 (25571, 4045, 1), -- Resist Full Magic Attack
-(25571, 4408, 1), -- HP Increase (1x)
-(25571, 4409, 1), -- MP Increase (1x)
-(25571, 4410, 11), -- Average P. Atk.
-(25571, 4411, 11), -- Average M. Atk.
-(25571, 4412, 11), -- Average P. Def.
-(25571, 4413, 11), -- Average M. Def.
-(25571, 4414, 2), -- Standard Type
-(25571, 4415, 1), -- Bare Hands
-(25571, 4416, 6), -- Humanoids
+(25571, 4408, 1), -- HP Modifiers
+(25571, 4409, 1), -- MP Modifiers
+(25571, 4410, 11), -- P. Atk. Modifiers
+(25571, 4411, 11), -- M. Atk. Modifiers
+(25571, 4412, 11), -- P. Def. Modifiers
+(25571, 4413, 11), -- M. Def. Modifiers
+(25571, 4414, 2), -- Armor Type
+(25571, 4415, 1), -- Weapon Type
+(25571, 4416, 6), -- Races
 (25571, 5465, 1), -- Earth Attacks
 -- Hager the Outlaw
 (25572, 4045, 1), -- Resist Full Magic Attack
-(25572, 4178, 6), -- Flame Strike
-(25572, 4408, 1), -- HP Increase (1x)
-(25572, 4409, 1), -- MP Increase (1x)
-(25572, 4410, 11), -- Average P. Atk.
-(25572, 4411, 11), -- Average M. Atk.
-(25572, 4412, 11), -- Average P. Def.
-(25572, 4413, 11), -- Average M. Def.
-(25572, 4414, 2), -- Standard Type
-(25572, 4415, 3), -- One-handed Sword
-(25572, 4416, 6), -- Humanoids
+(25572, 4178, 6), -- BOSS Flame Strike
+(25572, 4408, 1), -- HP Modifiers
+(25572, 4409, 1), -- MP Modifiers
+(25572, 4410, 11), -- P. Atk. Modifiers
+(25572, 4411, 11), -- M. Atk. Modifiers
+(25572, 4412, 11), -- P. Def. Modifiers
+(25572, 4413, 11), -- M. Def. Modifiers
+(25572, 4414, 2), -- Armor Type
+(25572, 4415, 3), -- Weapon Type
+(25572, 4416, 6), -- Races
 -- Hager's Henchman
 (25573, 4045, 1), -- Resist Full Magic Attack
-(25573, 4213, 6), -- Haste
-(25573, 4408, 1), -- HP Increase (1x)
-(25573, 4409, 1), -- MP Increase (1x)
-(25573, 4410, 11), -- Average P. Atk.
-(25573, 4411, 11), -- Average M. Atk.
-(25573, 4412, 11), -- Average P. Def.
-(25573, 4413, 11), -- Average M. Def.
-(25573, 4414, 2), -- Standard Type
-(25573, 4415, 3), -- One-handed Sword
-(25573, 4416, 6), -- Humanoids
-(25573, 4780, 6), -- Heal
+(25573, 4213, 6), -- BOSS Haste
+(25573, 4408, 1), -- HP Modifiers
+(25573, 4409, 1), -- MP Modifiers
+(25573, 4410, 11), -- P. Atk. Modifiers
+(25573, 4411, 11), -- M. Atk. Modifiers
+(25573, 4412, 11), -- P. Def. Modifiers
+(25573, 4413, 11), -- M. Def. Modifiers
+(25573, 4414, 2), -- Armor Type
+(25573, 4415, 3), -- Weapon Type
+(25573, 4416, 6), -- Races
+(25573, 4780, 6), -- BOSS Heal
 -- Hager's Bodyguard
 (25574, 4045, 1), -- Resist Full Magic Attack
-(25574, 4408, 1), -- HP Increase (1x)
-(25574, 4409, 1), -- MP Increase (1x)
-(25574, 4410, 11), -- Average P. Atk.
-(25574, 4411, 11), -- Average M. Atk.
-(25574, 4412, 11), -- Average P. Def.
-(25574, 4413, 11), -- Average M. Def.
-(25574, 4414, 3), -- Light Armor Type
-(25574, 4415, 3), -- One-handed Sword
-(25574, 4416, 6), -- Humanoids
+(25574, 4408, 1), -- HP Modifiers
+(25574, 4409, 1), -- MP Modifiers
+(25574, 4410, 11), -- P. Atk. Modifiers
+(25574, 4411, 11), -- M. Atk. Modifiers
+(25574, 4412, 11), -- P. Def. Modifiers
+(25574, 4413, 11), -- M. Def. Modifiers
+(25574, 4414, 3), -- Armor Type
+(25574, 4415, 3), -- Weapon Type
+(25574, 4416, 6), -- Races
 -- All-Seeing Rango
 (25575, 4045, 1), -- Resist Full Magic Attack
 (25575, 4187, 6), -- Decrease Speed
 (25575, 4190, 6), -- Decrease MP
-(25575, 4194, 6), -- Aura Burn
-(25575, 4408, 1), -- HP Increase (1x)
-(25575, 4409, 1), -- MP Increase (1x)
-(25575, 4410, 11), -- Average P. Atk.
-(25575, 4411, 11), -- Average M. Atk.
-(25575, 4412, 11), -- Average P. Def.
-(25575, 4413, 11), -- Average M. Def.
-(25575, 4414, 2), -- Standard Type
-(25575, 4415, 3), -- One-handed Sword
-(25575, 4416, 2), -- Magic Creatures
+(25575, 4194, 6), -- BOSS Aura Burn
+(25575, 4408, 1), -- HP Modifiers
+(25575, 4409, 1), -- MP Modifiers
+(25575, 4410, 11), -- P. Atk. Modifiers
+(25575, 4411, 11), -- M. Atk. Modifiers
+(25575, 4412, 11), -- P. Def. Modifiers
+(25575, 4413, 11), -- M. Def. Modifiers
+(25575, 4414, 2), -- Armor Type
+(25575, 4415, 3), -- Weapon Type
+(25575, 4416, 2), -- Races
 -- Rango's Iris
 (25576, 4045, 1), -- Resist Full Magic Attack
-(25576, 4408, 1), -- HP Increase (1x)
-(25576, 4409, 1), -- MP Increase (1x)
-(25576, 4410, 11), -- Average P. Atk.
-(25576, 4411, 11), -- Average M. Atk.
-(25576, 4412, 11), -- Average P. Def.
-(25576, 4413, 11), -- Average M. Def.
-(25576, 4414, 3), -- Light Armor Type
-(25576, 4415, 1), -- Bare Hands
-(25576, 4416, 2), -- Magic Creatures
+(25576, 4408, 1), -- HP Modifiers
+(25576, 4409, 1), -- MP Modifiers
+(25576, 4410, 11), -- P. Atk. Modifiers
+(25576, 4411, 11), -- M. Atk. Modifiers
+(25576, 4412, 11), -- P. Def. Modifiers
+(25576, 4413, 11), -- M. Def. Modifiers
+(25576, 4414, 3), -- Armor Type
+(25576, 4415, 1), -- Weapon Type
+(25576, 4416, 2), -- Races
 -- Rango's Lens
 (25577, 4045, 1), -- Resist Full Magic Attack
-(25577, 4408, 1), -- HP Increase (1x)
-(25577, 4409, 1), -- MP Increase (1x)
-(25577, 4410, 11), -- Average P. Atk.
-(25577, 4411, 11), -- Average M. Atk.
-(25577, 4412, 11), -- Average P. Def.
-(25577, 4413, 11), -- Average M. Def.
-(25577, 4414, 2), -- Standard Type
-(25577, 4415, 3), -- One-handed Sword
-(25577, 4416, 2), -- Magic Creatures
-(25577, 4741, 6), -- Power Strike
+(25577, 4408, 1), -- HP Modifiers
+(25577, 4409, 1), -- MP Modifiers
+(25577, 4410, 11), -- P. Atk. Modifiers
+(25577, 4411, 11), -- M. Atk. Modifiers
+(25577, 4412, 11), -- P. Def. Modifiers
+(25577, 4413, 11), -- M. Def. Modifiers
+(25577, 4414, 2), -- Armor Type
+(25577, 4415, 3), -- Weapon Type
+(25577, 4416, 2), -- Races
+(25577, 4741, 6), -- BOSS Strike
 -- Jakard
 (25578, 4045, 1), -- Resist Full Magic Attack
-(25578, 4176, 6), -- Reflect Damage
-(25578, 4177, 6), -- Cancel
-(25578, 4408, 4), -- HP High
-(25578, 4409, 1), -- MP Increase (1x)
-(25578, 4410, 11), -- Average P. Atk.
-(25578, 4411, 11), -- Average M. Atk.
-(25578, 4412, 11), -- Average P. Def.
-(25578, 4413, 11), -- Average M. Def.
-(25578, 4414, 2), -- Standard Type
-(25578, 4415, 3), -- One-handed Sword
-(25578, 4416, 2), -- Magic Creatures
-(25578, 4730, 6), -- Mortal Blow
-(25578, 4735, 6), -- Whirlwind
+(25578, 4176, 6), -- BOSS Reflect Damage
+(25578, 4177, 6), -- BOSS Cancel Magic
+(25578, 4408, 4), -- HP Modifiers
+(25578, 4409, 1), -- MP Modifiers
+(25578, 4410, 11), -- P. Atk. Modifiers
+(25578, 4411, 11), -- M. Atk. Modifiers
+(25578, 4412, 11), -- P. Def. Modifiers
+(25578, 4413, 11), -- M. Def. Modifiers
+(25578, 4414, 2), -- Armor Type
+(25578, 4415, 3), -- Weapon Type
+(25578, 4416, 2), -- Races
+(25578, 4730, 6), -- BOSS Mortal Blow
+(25578, 4735, 6), -- BOSS Spinning Slash
 -- Helsing
 (25579, 4045, 1), -- Resist Full Magic Attack
 (25579, 4185, 6), -- Sleep
 (25579, 4190, 6), -- Decrease MP
-(25579, 4196, 6), -- Decrease Speed
-(25579, 4408, 1), -- HP Increase (1x)
-(25579, 4409, 1), -- MP Increase (1x)
-(25579, 4410, 11), -- Average P. Atk.
-(25579, 4411, 11), -- Average M. Atk.
-(25579, 4412, 11), -- Average P. Def.
-(25579, 4413, 11), -- Average M. Def.
-(25579, 4414, 2), -- Standard Type
-(25579, 4415, 3), -- One-handed Sword
-(25579, 4416, 9), -- Demons
+(25579, 4196, 6), -- Decreases Speed
+(25579, 4408, 1), -- HP Modifiers
+(25579, 4409, 1), -- MP Modifiers
+(25579, 4410, 11), -- P. Atk. Modifiers
+(25579, 4411, 11), -- M. Atk. Modifiers
+(25579, 4412, 11), -- P. Def. Modifiers
+(25579, 4413, 11), -- M. Def. Modifiers
+(25579, 4414, 2), -- Armor Type
+(25579, 4415, 3), -- Weapon Type
+(25579, 4416, 9), -- Races
 -- Helsing's Guard
 (25580, 4045, 1), -- Resist Full Magic Attack
-(25580, 4408, 1), -- HP Increase (1x)
-(25580, 4409, 1), -- MP Increase (1x)
-(25580, 4410, 11), -- Average P. Atk.
-(25580, 4411, 11), -- Average M. Atk.
-(25580, 4412, 11), -- Average P. Def.
-(25580, 4413, 11), -- Average M. Def.
-(25580, 4414, 2), -- Standard Type
-(25580, 4415, 1), -- Bare Hands
-(25580, 4416, 1), -- Undead
+(25580, 4408, 1), -- HP Modifiers
+(25580, 4409, 1), -- MP Modifiers
+(25580, 4410, 11), -- P. Atk. Modifiers
+(25580, 4411, 11), -- M. Atk. Modifiers
+(25580, 4412, 11), -- P. Def. Modifiers
+(25580, 4413, 11), -- M. Def. Modifiers
+(25580, 4414, 2), -- Armor Type
+(25580, 4415, 1), -- Weapon Type
+(25580, 4416, 1), -- Races
 -- Helsing's Assassin
 (25581, 4045, 1), -- Resist Full Magic Attack
-(25581, 4408, 1), -- HP Increase (1x)
-(25581, 4409, 1), -- MP Increase (1x)
-(25581, 4410, 11), -- Average P. Atk.
-(25581, 4411, 11), -- Average M. Atk.
-(25581, 4412, 11), -- Average P. Def.
-(25581, 4413, 11), -- Average M. Def.
-(25581, 4414, 2), -- Standard Type
-(25581, 4415, 1), -- Bare Hands
-(25581, 4416, 1), -- Undead
-(25581, 4741, 6), -- Power Strike
+(25581, 4408, 1), -- HP Modifiers
+(25581, 4409, 1), -- MP Modifiers
+(25581, 4410, 11), -- P. Atk. Modifiers
+(25581, 4411, 11), -- M. Atk. Modifiers
+(25581, 4412, 11), -- P. Def. Modifiers
+(25581, 4413, 11), -- M. Def. Modifiers
+(25581, 4414, 2), -- Armor Type
+(25581, 4415, 1), -- Weapon Type
+(25581, 4416, 1), -- Races
+(25581, 4741, 6), -- BOSS Strike
 -- Gillien
 (25582, 4045, 1), -- Resist Full Magic Attack
-(25582, 4178, 6), -- Flame Strike
-(25582, 4408, 1), -- HP Increase (1x)
-(25582, 4409, 1), -- MP Increase (1x)
-(25582, 4410, 11), -- Average P. Atk.
-(25582, 4411, 11), -- Average M. Atk.
-(25582, 4412, 11), -- Average P. Def.
-(25582, 4413, 11), -- Average M. Def.
-(25582, 4414, 2), -- Standard Type
-(25582, 4415, 3), -- One-handed Sword
-(25582, 4416, 9), -- Demons
+(25582, 4178, 6), -- BOSS Flame Strike
+(25582, 4408, 1), -- HP Modifiers
+(25582, 4409, 1), -- MP Modifiers
+(25582, 4410, 11), -- P. Atk. Modifiers
+(25582, 4411, 11), -- M. Atk. Modifiers
+(25582, 4412, 11), -- P. Def. Modifiers
+(25582, 4413, 11), -- M. Def. Modifiers
+(25582, 4414, 2), -- Armor Type
+(25582, 4415, 3), -- Weapon Type
+(25582, 4416, 9), -- Races
 -- Gillien's Daughter
 (25583, 4045, 1), -- Resist Full Magic Attack
-(25583, 4213, 6), -- Haste
-(25583, 4408, 1), -- HP Increase (1x)
-(25583, 4409, 1), -- MP Increase (1x)
-(25583, 4410, 11), -- Average P. Atk.
-(25583, 4411, 11), -- Average M. Atk.
-(25583, 4412, 11), -- Average P. Def.
-(25583, 4413, 11), -- Average M. Def.
-(25583, 4414, 2), -- Standard Type
-(25583, 4415, 1), -- Bare Hands
-(25583, 4416, 9), -- Demons
-(25583, 4785, 6), -- Chant of Life
+(25583, 4213, 6), -- BOSS Haste
+(25583, 4408, 1), -- HP Modifiers
+(25583, 4409, 1), -- MP Modifiers
+(25583, 4410, 11), -- P. Atk. Modifiers
+(25583, 4411, 11), -- M. Atk. Modifiers
+(25583, 4412, 11), -- P. Def. Modifiers
+(25583, 4413, 11), -- M. Def. Modifiers
+(25583, 4414, 2), -- Armor Type
+(25583, 4415, 1), -- Weapon Type
+(25583, 4416, 9), -- Races
+(25583, 4785, 6), -- BOSS Chant of Life
 -- Gillien's Attendant
 (25584, 4045, 1), -- Resist Full Magic Attack
-(25584, 4408, 1), -- HP Increase (1x)
-(25584, 4409, 1), -- MP Increase (1x)
-(25584, 4410, 11), -- Average P. Atk.
-(25584, 4411, 11), -- Average M. Atk.
-(25584, 4412, 11), -- Average P. Def.
-(25584, 4413, 11), -- Average M. Def.
-(25584, 4414, 2), -- Standard Type
-(25584, 4415, 1), -- Bare Hands
-(25584, 4416, 6), -- Humanoids
+(25584, 4408, 1), -- HP Modifiers
+(25584, 4409, 1), -- MP Modifiers
+(25584, 4410, 11), -- P. Atk. Modifiers
+(25584, 4411, 11), -- M. Atk. Modifiers
+(25584, 4412, 11), -- P. Def. Modifiers
+(25584, 4413, 11), -- M. Def. Modifiers
+(25584, 4414, 2), -- Armor Type
+(25584, 4415, 1), -- Weapon Type
+(25584, 4416, 6), -- Races
 -- Medici
 (25585, 4045, 1), -- Resist Full Magic Attack
 (25585, 4197, 6), -- Hold
-(25585, 4408, 1), -- HP Increase (1x)
-(25585, 4409, 1), -- MP Increase (1x)
-(25585, 4410, 11), -- Average P. Atk.
-(25585, 4411, 11), -- Average M. Atk.
-(25585, 4412, 11), -- Average P. Def.
-(25585, 4413, 11), -- Average M. Def.
-(25585, 4414, 2), -- Standard Type
-(25585, 4415, 3), -- One-handed Sword
-(25585, 4416, 3), -- Beasts
+(25585, 4408, 1), -- HP Modifiers
+(25585, 4409, 1), -- MP Modifiers
+(25585, 4410, 11), -- P. Atk. Modifiers
+(25585, 4411, 11), -- M. Atk. Modifiers
+(25585, 4412, 11), -- P. Def. Modifiers
+(25585, 4413, 11), -- M. Def. Modifiers
+(25585, 4414, 2), -- Armor Type
+(25585, 4415, 3), -- Weapon Type
+(25585, 4416, 3), -- Races
 -- Medici's Sister
 (25586, 4045, 1), -- Resist Full Magic Attack
-(25586, 4192, 6), -- Vampiric Touch
+(25586, 4192, 6), -- BOSS HP Drain
 (25586, 4204, 6), -- Bleed
-(25586, 4408, 1), -- HP Increase (1x)
-(25586, 4409, 1), -- MP Increase (1x)
-(25586, 4410, 11), -- Average P. Atk.
-(25586, 4411, 11), -- Average M. Atk.
-(25586, 4412, 11), -- Average P. Def.
-(25586, 4413, 11), -- Average M. Def.
-(25586, 4414, 3), -- Light Armor Type
-(25586, 4415, 1), -- Bare Hands
-(25586, 4416, 9), -- Demons
+(25586, 4408, 1), -- HP Modifiers
+(25586, 4409, 1), -- MP Modifiers
+(25586, 4410, 11), -- P. Atk. Modifiers
+(25586, 4411, 11), -- M. Atk. Modifiers
+(25586, 4412, 11), -- P. Def. Modifiers
+(25586, 4413, 11), -- M. Def. Modifiers
+(25586, 4414, 3), -- Armor Type
+(25586, 4415, 1), -- Weapon Type
+(25586, 4416, 9), -- Races
 -- Medici's Brother
 (25587, 4045, 1), -- Resist Full Magic Attack
-(25587, 4408, 1), -- HP Increase (1x)
-(25587, 4409, 1), -- MP Increase (1x)
-(25587, 4410, 11), -- Average P. Atk.
-(25587, 4411, 11), -- Average M. Atk.
-(25587, 4412, 11), -- Average P. Def.
-(25587, 4413, 11), -- Average M. Def.
-(25587, 4414, 2), -- Standard Type
-(25587, 4415, 1), -- Bare Hands
-(25587, 4416, 1), -- Undead
+(25587, 4408, 1), -- HP Modifiers
+(25587, 4409, 1), -- MP Modifiers
+(25587, 4410, 11), -- P. Atk. Modifiers
+(25587, 4411, 11), -- M. Atk. Modifiers
+(25587, 4412, 11), -- P. Def. Modifiers
+(25587, 4413, 11), -- M. Def. Modifiers
+(25587, 4414, 2), -- Armor Type
+(25587, 4415, 1), -- Weapon Type
+(25587, 4416, 1), -- Races
 (25587, 4725, 6), -- Stun
 -- Immortal Muus
 (25588, 4045, 1), -- Resist Full Magic Attack
 (25588, 4172, 6), -- Stun
-(25588, 4175, 6), -- Haste
-(25588, 4177, 6), -- Cancel
-(25588, 4408, 4), -- HP High
-(25588, 4409, 1), -- MP Increase (1x)
-(25588, 4410, 11), -- Average P. Atk.
-(25588, 4411, 11), -- Average M. Atk.
-(25588, 4412, 11), -- Average P. Def.
-(25588, 4413, 11), -- Average M. Def.
-(25588, 4414, 2), -- Standard Type
-(25588, 4415, 3), -- One-handed Sword
-(25588, 4416, 1), -- Undead
-(25588, 4731, 6), -- Mortal Blow
+(25588, 4175, 6), -- BOSS Haste
+(25588, 4177, 6), -- BOSS Cancel Magic
+(25588, 4408, 4), -- HP Modifiers
+(25588, 4409, 1), -- MP Modifiers
+(25588, 4410, 11), -- P. Atk. Modifiers
+(25588, 4411, 11), -- M. Atk. Modifiers
+(25588, 4412, 11), -- P. Def. Modifiers
+(25588, 4413, 11), -- M. Def. Modifiers
+(25588, 4414, 2), -- Armor Type
+(25588, 4415, 3), -- Weapon Type
+(25588, 4416, 1), -- Races
+(25588, 4731, 6), -- BOSS Mortal Blow
 -- Brand the Exile
 (25589, 4045, 1), -- Resist Full Magic Attack
 (25589, 4188, 6), -- Bleed
 (25589, 4190, 6), -- Decrease MP
-(25589, 4192, 6), -- Vampiric Touch
-(25589, 4408, 1), -- HP Increase (1x)
-(25589, 4409, 1), -- MP Increase (1x)
-(25589, 4410, 11), -- Average P. Atk.
-(25589, 4411, 11), -- Average M. Atk.
-(25589, 4412, 11), -- Average P. Def.
-(25589, 4413, 11), -- Average M. Def.
-(25589, 4414, 2), -- Standard Type
-(25589, 4415, 3), -- One-handed Sword
-(25589, 4416, 6), -- Humanoids
+(25589, 4192, 6), -- BOSS HP Drain
+(25589, 4408, 1), -- HP Modifiers
+(25589, 4409, 1), -- MP Modifiers
+(25589, 4410, 11), -- P. Atk. Modifiers
+(25589, 4411, 11), -- M. Atk. Modifiers
+(25589, 4412, 11), -- P. Def. Modifiers
+(25589, 4413, 11), -- M. Def. Modifiers
+(25589, 4414, 2), -- Armor Type
+(25589, 4415, 3), -- Weapon Type
+(25589, 4416, 6), -- Races
 -- Brand's Chamberlain
 (25590, 4045, 1), -- Resist Full Magic Attack
-(25590, 4408, 1), -- HP Increase (1x)
-(25590, 4409, 1), -- MP Increase (1x)
-(25590, 4410, 11), -- Average P. Atk.
-(25590, 4411, 11), -- Average M. Atk.
-(25590, 4412, 11), -- Average P. Def.
-(25590, 4413, 11), -- Average M. Def.
-(25590, 4414, 2), -- Standard Type
-(25590, 4415, 1), -- Bare Hands
-(25590, 4416, 6), -- Humanoids
+(25590, 4408, 1), -- HP Modifiers
+(25590, 4409, 1), -- MP Modifiers
+(25590, 4410, 11), -- P. Atk. Modifiers
+(25590, 4411, 11), -- M. Atk. Modifiers
+(25590, 4412, 11), -- P. Def. Modifiers
+(25590, 4413, 11), -- M. Def. Modifiers
+(25590, 4414, 2), -- Armor Type
+(25590, 4415, 1), -- Weapon Type
+(25590, 4416, 6), -- Races
 (25590, 4725, 6), -- Stun
 -- Brand's Servant
 (25591, 4045, 1), -- Resist Full Magic Attack
-(25591, 4408, 1), -- HP Increase (1x)
-(25591, 4409, 1), -- MP Increase (1x)
-(25591, 4410, 11), -- Average P. Atk.
-(25591, 4411, 11), -- Average M. Atk.
-(25591, 4412, 11), -- Average P. Def.
-(25591, 4413, 11), -- Average M. Def.
-(25591, 4414, 3), -- Light Armor Type
-(25591, 4415, 1), -- Bare Hands
-(25591, 4416, 6), -- Humanoids
+(25591, 4408, 1), -- HP Modifiers
+(25591, 4409, 1), -- MP Modifiers
+(25591, 4410, 11), -- P. Atk. Modifiers
+(25591, 4411, 11), -- M. Atk. Modifiers
+(25591, 4412, 11), -- P. Def. Modifiers
+(25591, 4413, 11), -- M. Def. Modifiers
+(25591, 4414, 3), -- Armor Type
+(25591, 4415, 1), -- Weapon Type
+(25591, 4416, 6), -- Races
 -- Commander Koenig
 (25592, 4045, 1), -- Resist Full Magic Attack
-(25592, 4173, 6), -- Might
-(25592, 4177, 6), -- Cancel
-(25592, 4408, 4), -- HP High
-(25592, 4409, 1), -- MP Increase (1x)
-(25592, 4410, 11), -- Average P. Atk.
-(25592, 4411, 11), -- Average M. Atk.
-(25592, 4412, 11), -- Average P. Def.
-(25592, 4413, 11), -- Average M. Def.
-(25592, 4414, 2), -- Standard Type
-(25592, 4415, 3), -- One-handed Sword
-(25592, 4416, 4), -- Animals
-(25592, 4721, 6), -- Power Strike
-(25592, 4736, 6), -- Whirlwind
+(25592, 4173, 6), -- BOSS Might
+(25592, 4177, 6), -- BOSS Cancel Magic
+(25592, 4408, 4), -- HP Modifiers
+(25592, 4409, 1), -- MP Modifiers
+(25592, 4410, 11), -- P. Atk. Modifiers
+(25592, 4411, 11), -- M. Atk. Modifiers
+(25592, 4412, 11), -- P. Def. Modifiers
+(25592, 4413, 11), -- M. Def. Modifiers
+(25592, 4414, 2), -- Armor Type
+(25592, 4415, 3), -- Weapon Type
+(25592, 4416, 4), -- Races
+(25592, 4721, 6), -- BOSS Strike
+(25592, 4736, 6), -- BOSS Spinning Slash
 -- Gerg the Hunter
 (25593, 4045, 1), -- Resist Full Magic Attack
-(25593, 4408, 1), -- HP Increase (1x)
-(25593, 4409, 1), -- MP Increase (1x)
-(25593, 4410, 11), -- Average P. Atk.
-(25593, 4411, 11), -- Average M. Atk.
-(25593, 4412, 11), -- Average P. Def.
-(25593, 4413, 11), -- Average M. Def.
-(25593, 4414, 2), -- Standard Type
-(25593, 4415, 3), -- One-handed Sword
-(25593, 4416, 11), -- Giants
+(25593, 4408, 1), -- HP Modifiers
+(25593, 4409, 1), -- MP Modifiers
+(25593, 4410, 11), -- P. Atk. Modifiers
+(25593, 4411, 11), -- M. Atk. Modifiers
+(25593, 4412, 11), -- P. Def. Modifiers
+(25593, 4413, 11), -- M. Def. Modifiers
+(25593, 4414, 2), -- Armor Type
+(25593, 4415, 3), -- Weapon Type
+(25593, 4416, 11), -- Races
 (25593, 4745, 7), -- Stun
 -- Gerg's Follower
 (25594, 4045, 1), -- Resist Full Magic Attack
-(25594, 4408, 1), -- HP Increase (1x)
-(25594, 4409, 1), -- MP Increase (1x)
-(25594, 4410, 11), -- Average P. Atk.
-(25594, 4411, 11), -- Average M. Atk.
-(25594, 4412, 11), -- Average P. Def.
-(25594, 4413, 11), -- Average M. Def.
-(25594, 4414, 3), -- Light Armor Type
-(25594, 4415, 9), -- Bows
-(25594, 4416, 6), -- Humanoids
+(25594, 4408, 1), -- HP Modifiers
+(25594, 4409, 1), -- MP Modifiers
+(25594, 4410, 11), -- P. Atk. Modifiers
+(25594, 4411, 11), -- M. Atk. Modifiers
+(25594, 4412, 11), -- P. Def. Modifiers
+(25594, 4413, 11), -- M. Def. Modifiers
+(25594, 4414, 3), -- Armor Type
+(25594, 4415, 9), -- Weapon Type
+(25594, 4416, 6), -- Races
 (25594, 4760, 7), -- Stun
 -- Gerg's Henchman
 (25595, 4045, 1), -- Resist Full Magic Attack
-(25595, 4408, 1), -- HP Increase (1x)
-(25595, 4409, 1), -- MP Increase (1x)
-(25595, 4410, 11), -- Average P. Atk.
-(25595, 4411, 11), -- Average M. Atk.
-(25595, 4412, 11), -- Average P. Def.
-(25595, 4413, 11), -- Average M. Def.
-(25595, 4414, 2), -- Standard Type
-(25595, 4415, 1), -- Bare Hands
-(25595, 4416, 6), -- Humanoids
+(25595, 4408, 1), -- HP Modifiers
+(25595, 4409, 1), -- MP Modifiers
+(25595, 4410, 11), -- P. Atk. Modifiers
+(25595, 4411, 11), -- M. Atk. Modifiers
+(25595, 4412, 11), -- P. Def. Modifiers
+(25595, 4413, 11), -- M. Def. Modifiers
+(25595, 4414, 2), -- Armor Type
+(25595, 4415, 1), -- Weapon Type
+(25595, 4416, 6), -- Races
 -- Ocular Servitor
 (25596, 4047, 11), -- Hold
 (25596, 4095, 1), -- Damage Shield
-(25596, 4277, 4), -- Resist Poison Attacks
-(25596, 4285, 4), -- Resist Sleep Attacks
-(25596, 4287, 4), -- Resist Hold Attacks
-(25596, 4388, 4), -- Resist Paralysis Attacks
-(25596, 4408, 1), -- HP Increase (1x)
-(25596, 4409, 1), -- MP Increase (1x)
-(25596, 4410, 11), -- Average P. Atk.
-(25596, 4411, 11), -- Average M. Atk.
-(25596, 4412, 11), -- Average P. Def.
-(25596, 4413, 11), -- Average M. Def.
-(25596, 4414, 2), -- Standard Type
-(25596, 4415, 3), -- One-handed Sword
-(25596, 4416, 2), -- Magic Creatures
-(25596, 5315, 3), -- Blazing Circle
+(25596, 4277, 4), -- Resist Poison
+(25596, 4285, 4), -- Resist Sleep
+(25596, 4287, 4), -- Resist Hold
+(25596, 4388, 4), -- Resist Paralysis
+(25596, 4408, 1), -- HP Modifiers
+(25596, 4409, 1), -- MP Modifiers
+(25596, 4410, 11), -- P. Atk. Modifiers
+(25596, 4411, 11), -- M. Atk. Modifiers
+(25596, 4412, 11), -- P. Def. Modifiers
+(25596, 4413, 11), -- M. Def. Modifiers
+(25596, 4414, 2), -- Armor Type
+(25596, 4415, 3), -- Weapon Type
+(25596, 4416, 2), -- Races
+(25596, 5315, 3), -- NPC(party) -Magic Range Close Range DD - Fire(Self-Destruction)
 (25596, 5467, 1), -- Dark Attacks
 -- Heurel
 (25597, 4084, 10), -- Resist Physical Attack
 (25597, 4093, 1), -- Evasion
-(25597, 4152, 11), -- Drain Health
-(25597, 4408, 1), -- HP Increase (1x)
-(25597, 4409, 1), -- MP Increase (1x)
-(25597, 4410, 11), -- Average P. Atk.
-(25597, 4411, 11), -- Average M. Atk.
-(25597, 4412, 11), -- Average P. Def.
-(25597, 4413, 11), -- Average M. Def.
-(25597, 4414, 3), -- Light Armor Type
-(25597, 4415, 1), -- Bare Hands
-(25597, 4416, 9), -- Demons
+(25597, 4152, 11), -- NPC HP Drain - Magic
+(25597, 4408, 1), -- HP Modifiers
+(25597, 4409, 1), -- MP Modifiers
+(25597, 4410, 11), -- P. Atk. Modifiers
+(25597, 4411, 11), -- M. Atk. Modifiers
+(25597, 4412, 11), -- P. Def. Modifiers
+(25597, 4413, 11), -- M. Def. Modifiers
+(25597, 4414, 3), -- Armor Type
+(25597, 4415, 1), -- Weapon Type
+(25597, 4416, 9), -- Races
 (25597, 5467, 1), -- Dark Attacks
-(25597, 5555, 11), -- Weakened Silence Resistance
+(25597, 5555, 11), -- NPC Silence Resistance weakened
 -- Gegei
 (25598, 4084, 10), -- Resist Physical Attack
 (25598, 4093, 1), -- Evasion
 (25598, 4153, 11), -- Decrease Speed
-(25598, 4408, 1), -- HP Increase (1x)
-(25598, 4409, 1), -- MP Increase (1x)
-(25598, 4410, 11), -- Average P. Atk.
-(25598, 4411, 11), -- Average M. Atk.
-(25598, 4412, 11), -- Average P. Def.
-(25598, 4413, 11), -- Average M. Def.
-(25598, 4414, 2), -- Standard Type
-(25598, 4415, 5), -- Blunt Weapons
-(25598, 4416, 11), -- Giants
+(25598, 4408, 1), -- HP Modifiers
+(25598, 4409, 1), -- MP Modifiers
+(25598, 4410, 11), -- P. Atk. Modifiers
+(25598, 4411, 11), -- M. Atk. Modifiers
+(25598, 4412, 11), -- P. Def. Modifiers
+(25598, 4413, 11), -- M. Def. Modifiers
+(25598, 4414, 2), -- Armor Type
+(25598, 4415, 5), -- Weapon Type
+(25598, 4416, 11), -- Races
 (25598, 5463, 1), -- Water Attacks
-(25598, 5555, 11), -- Weakened Silence Resistance
+(25598, 5555, 11), -- NPC Silence Resistance weakened
 -- Iglas
 (25599, 4084, 10), -- Resist Physical Attack
 (25599, 4093, 1), -- Evasion
-(25599, 4157, 11), -- Blaze
-(25599, 4408, 1), -- HP Increase (1x)
-(25599, 4409, 1), -- MP Increase (1x)
-(25599, 4410, 11), -- Average P. Atk.
-(25599, 4411, 11), -- Average M. Atk.
-(25599, 4412, 11), -- Average P. Def.
-(25599, 4413, 11), -- Average M. Def.
-(25599, 4414, 1), -- Heavy Armor Type
-(25599, 4415, 5), -- Blunt Weapons
-(25599, 4416, 2), -- Magic Creatures
+(25599, 4157, 11), -- NPC Blaze - Magic
+(25599, 4408, 1), -- HP Modifiers
+(25599, 4409, 1), -- MP Modifiers
+(25599, 4410, 11), -- P. Atk. Modifiers
+(25599, 4411, 11), -- M. Atk. Modifiers
+(25599, 4412, 11), -- P. Def. Modifiers
+(25599, 4413, 11), -- M. Def. Modifiers
+(25599, 4414, 1), -- Armor Type
+(25599, 4415, 5), -- Weapon Type
+(25599, 4416, 2), -- Races
 (25599, 5462, 1), -- Fire Attacks
-(25599, 5555, 11), -- Weakened Silence Resistance
+(25599, 5555, 11), -- NPC Silence Resistance weakened
 -- Temenir
 (25600, 4045, 1), -- Resist Full Magic Attack
 (25600, 4086, 1), -- Critical Chance
 (25600, 4093, 1), -- Evasion
-(25600, 4408, 1), -- HP Increase (1x)
-(25600, 4409, 1), -- MP Increase (1x)
-(25600, 4410, 11), -- Average P. Atk.
-(25600, 4411, 11), -- Average M. Atk.
-(25600, 4412, 11), -- Average P. Def.
-(25600, 4413, 11), -- Average M. Def.
-(25600, 4414, 1), -- Heavy Armor Type
-(25600, 4415, 11), -- Spears
-(25600, 4416, 9), -- Demons
-(25600, 5297, 5), -- Power Strike
-(25600, 5299, 5), -- Whirlwind
-(25600, 5331, 5), -- Drain Health
+(25600, 4408, 1), -- HP Modifiers
+(25600, 4409, 1), -- MP Modifiers
+(25600, 4410, 11), -- P. Atk. Modifiers
+(25600, 4411, 11), -- M. Atk. Modifiers
+(25600, 4412, 11), -- P. Def. Modifiers
+(25600, 4413, 11), -- M. Def. Modifiers
+(25600, 4414, 1), -- Armor Type
+(25600, 4415, 11), -- Weapon Type
+(25600, 4416, 9), -- Races
+(25600, 5297, 5), -- NPC(party) - Physical Single Close Range Attack - Dark
+(25600, 5299, 5), -- NPC(party) - Physical Range Close Range Attack - Dark
+(25600, 5331, 5), -- NPC HP Drain
 (25600, 5467, 1), -- Dark Attacks
 (25600, 5479, 1), -- Boss Petrification Resistance
 -- Draksius
 (25601, 4045, 1), -- Resist Full Magic Attack
-(25601, 4379, 1), -- Resist Spear Weapons
-(25601, 4408, 1), -- HP Increase (1x)
-(25601, 4409, 1), -- MP Increase (1x)
-(25601, 4410, 11), -- Average P. Atk.
-(25601, 4411, 11), -- Average M. Atk.
-(25601, 4412, 11), -- Average P. Def.
-(25601, 4413, 11), -- Average M. Def.
-(25601, 4414, 2), -- Standard Type
-(25601, 4415, 11), -- Spears
-(25601, 4416, 9), -- Demons
+(25601, 4379, 1), -- Resist Pole Arm
+(25601, 4408, 1), -- HP Modifiers
+(25601, 4409, 1), -- MP Modifiers
+(25601, 4410, 11), -- P. Atk. Modifiers
+(25601, 4411, 11), -- M. Atk. Modifiers
+(25601, 4412, 11), -- P. Def. Modifiers
+(25601, 4413, 11), -- M. Def. Modifiers
+(25601, 4414, 2), -- Armor Type
+(25601, 4415, 11), -- Weapon Type
+(25601, 4416, 9), -- Races
 (25601, 4435, 1), -- Greater Resist Stun
 (25601, 4441, 1), -- Greater Resist Mental Derangement
-(25601, 4663, 1), -- Aggression
-(25601, 5277, 5), -- Power Strike
-(25601, 5279, 5), -- Whirlwind
+(25601, 4663, 1), -- NPC Hate
+(25601, 5277, 5), -- NPC(party) - Physical Single Close Range Attack - Fire
+(25601, 5279, 5), -- NPC(party) - Physical Range Close Range Attack - Fire
 (25601, 5462, 1), -- Fire Attacks
 (25601, 5479, 1), -- Boss Petrification Resistance
-(25601, 5550, 11), -- Trigger Stun
+(25601, 5550, 11), -- NPC Trigger Stun
 -- Kiretcenah
 (25602, 4045, 1), -- Resist Full Magic Attack
-(25602, 4408, 1), -- HP Increase (1x)
-(25602, 4409, 1), -- MP Increase (1x)
-(25602, 4410, 11), -- Average P. Atk.
-(25602, 4411, 11), -- Average M. Atk.
-(25602, 4412, 11), -- Average P. Def.
-(25602, 4413, 11), -- Average M. Def.
-(25602, 4414, 2), -- Standard Type
-(25602, 4415, 3), -- One-handed Sword
-(25602, 4416, 1), -- Undead
-(25602, 4642, 3), -- Fast Spell Casting
-(25602, 5316, 5), -- Hydro Blast
-(25602, 5318, 5), -- Frost Wall
+(25602, 4408, 1), -- HP Modifiers
+(25602, 4409, 1), -- MP Modifiers
+(25602, 4410, 11), -- P. Atk. Modifiers
+(25602, 4411, 11), -- M. Atk. Modifiers
+(25602, 4412, 11), -- P. Def. Modifiers
+(25602, 4413, 11), -- M. Def. Modifiers
+(25602, 4414, 2), -- Armor Type
+(25602, 4415, 3), -- Weapon Type
+(25602, 4416, 1), -- Races
+(25602, 4642, 3), -- NPC Fast Spell Casting
+(25602, 5316, 5), -- NPC(party) -Magic Single Long Range DD - Water
+(25602, 5318, 5), -- NPC(party) -Magic Range Close Range DD - Water
 (25602, 5463, 1), -- Water Attacks
 (25602, 5479, 1), -- Boss Petrification Resistance
-(25602, 5552, 11), -- Heal Up
+(25602, 5552, 11), -- NPC Hill Up
 -- Darion
 (25603, 4045, 1), -- Resist Full Magic Attack
-(25603, 4246, 1), -- Resist Bow Magic
-(25603, 4273, 5), -- Resist Daggers/Rapier Weapon
-(25603, 4274, 4), -- Blunt Weapon Weak Point
-(25603, 4408, 1), -- HP Increase (1x)
-(25603, 4409, 1), -- MP Increase (1x)
-(25603, 4410, 11), -- Average P. Atk.
-(25603, 4411, 11), -- Average M. Atk.
-(25603, 4412, 11), -- Average P. Def.
-(25603, 4413, 11), -- Average M. Def.
-(25603, 4414, 1), -- Heavy Armor Type
-(25603, 4416, 9), -- Demons
-(25603, 4457, 4), -- fist Weapon Weak Point
+(25603, 4246, 1), -- Strong in 'nan' activity magic DOT
+(25603, 4273, 5), -- Resist Dagger
+(25603, 4274, 4), -- Blunt Attack Weak Point
+(25603, 4408, 1), -- HP Modifiers
+(25603, 4409, 1), -- MP Modifiers
+(25603, 4410, 11), -- P. Atk. Modifiers
+(25603, 4411, 11), -- M. Atk. Modifiers
+(25603, 4412, 11), -- P. Def. Modifiers
+(25603, 4413, 11), -- M. Def. Modifiers
+(25603, 4414, 1), -- Armor Type
+(25603, 4416, 9), -- Races
+(25603, 4457, 4), -- Hand-to-hand Weapon Weak Point
 (25603, 4494, 1), -- Raid Boss
 (25603, 5467, 1), -- Dark Attacks
 (25603, 5479, 1), -- Boss Petrification Resistance
@@ -68046,91 +68305,91 @@ INSERT INTO `npcskills` VALUES
 (25603, 5504, 1), -- Shield Defense
 (25603, 5614, 1), -- Raid Boss - Level 87
 -- Mutated Elpy
-(25604, 4408, 1), -- HP Increase (1x)
-(25604, 4409, 1), -- MP Increase (1x)
-(25604, 4410, 11), -- Average P. Atk.
-(25604, 4411, 11), -- Average M. Atk.
-(25604, 4412, 11), -- Average P. Def.
-(25604, 4413, 11), -- Average M. Def.
-(25604, 4414, 2), -- Standard Type
-(25604, 4415, 3), -- One-handed Sword
-(25604, 4416, 4), -- Animals
+(25604, 4408, 1), -- HP Modifiers
+(25604, 4409, 1), -- MP Modifiers
+(25604, 4410, 11), -- P. Atk. Modifiers
+(25604, 4411, 11), -- M. Atk. Modifiers
+(25604, 4412, 11), -- P. Def. Modifiers
+(25604, 4413, 11), -- M. Def. Modifiers
+(25604, 4414, 2), -- Armor Type
+(25604, 4415, 3), -- Weapon Type
+(25604, 4416, 4), -- Races
 -- Naia Spore
-(25605, 4032, 10), -- Power Strike
-(25605, 4408, 1), -- HP Increase (1x)
-(25605, 4409, 1), -- MP Increase (1x)
-(25605, 4410, 11), -- Average P. Atk.
-(25605, 4411, 11), -- Average M. Atk.
-(25605, 4412, 11), -- Average P. Def.
-(25605, 4413, 11), -- Average M. Def.
-(25605, 4414, 2), -- Standard Type
-(25605, 4415, 1), -- Bare Hands
-(25605, 4416, 7), -- Spirits
+(25605, 4032, 10), -- NPC Strike
+(25605, 4408, 1), -- HP Modifiers
+(25605, 4409, 1), -- MP Modifiers
+(25605, 4410, 11), -- P. Atk. Modifiers
+(25605, 4411, 11), -- M. Atk. Modifiers
+(25605, 4412, 11), -- P. Def. Modifiers
+(25605, 4413, 11), -- M. Def. Modifiers
+(25605, 4414, 2), -- Armor Type
+(25605, 4415, 1), -- Weapon Type
+(25605, 4416, 7), -- Races
 (25605, 4438, 5), -- Greater Resist Sleep
 (25605, 4439, 5), -- Greater Resist Hold
 (25605, 4440, 5), -- Greater Resist Paralysis
 (25605, 5462, 1), -- Fire Attacks
 (25605, 5765, 1), -- Naia Sprout
 -- Naia Spore
-(25606, 4032, 10), -- Power Strike
-(25606, 4408, 1), -- HP Increase (1x)
-(25606, 4409, 1), -- MP Increase (1x)
-(25606, 4410, 11), -- Average P. Atk.
-(25606, 4411, 11), -- Average M. Atk.
-(25606, 4412, 11), -- Average P. Def.
-(25606, 4413, 11), -- Average M. Def.
-(25606, 4414, 3), -- Light Armor Type
-(25606, 4415, 3), -- One-handed Sword
-(25606, 4416, 7), -- Spirits
+(25606, 4032, 10), -- NPC Strike
+(25606, 4408, 1), -- HP Modifiers
+(25606, 4409, 1), -- MP Modifiers
+(25606, 4410, 11), -- P. Atk. Modifiers
+(25606, 4411, 11), -- M. Atk. Modifiers
+(25606, 4412, 11), -- P. Def. Modifiers
+(25606, 4413, 11), -- M. Def. Modifiers
+(25606, 4414, 3), -- Armor Type
+(25606, 4415, 3), -- Weapon Type
+(25606, 4416, 7), -- Races
 (25606, 4438, 5), -- Greater Resist Sleep
 (25606, 4439, 5), -- Greater Resist Hold
 (25606, 4440, 5), -- Greater Resist Paralysis
 (25606, 5463, 1), -- Water Attacks
 (25606, 5766, 1), -- Naia Sprout
 -- Naia Spore
-(25607, 4032, 10), -- Power Strike
-(25607, 4408, 1), -- HP Increase (1x)
-(25607, 4409, 1), -- MP Increase (1x)
-(25607, 4410, 11), -- Average P. Atk.
-(25607, 4411, 11), -- Average M. Atk.
-(25607, 4412, 11), -- Average P. Def.
-(25607, 4413, 11), -- Average M. Def.
-(25607, 4414, 3), -- Light Armor Type
-(25607, 4415, 5), -- Blunt Weapons
-(25607, 4416, 7), -- Spirits
+(25607, 4032, 10), -- NPC Strike
+(25607, 4408, 1), -- HP Modifiers
+(25607, 4409, 1), -- MP Modifiers
+(25607, 4410, 11), -- P. Atk. Modifiers
+(25607, 4411, 11), -- M. Atk. Modifiers
+(25607, 4412, 11), -- P. Def. Modifiers
+(25607, 4413, 11), -- M. Def. Modifiers
+(25607, 4414, 3), -- Armor Type
+(25607, 4415, 5), -- Weapon Type
+(25607, 4416, 7), -- Races
 (25607, 4438, 5), -- Greater Resist Sleep
 (25607, 4439, 5), -- Greater Resist Hold
 (25607, 4440, 5), -- Greater Resist Paralysis
 (25607, 5464, 1), -- Wind Attacks
 (25607, 5767, 1), -- Naia Sprout
 -- Naia Spore
-(25608, 4032, 10), -- Power Strike
-(25608, 4408, 1), -- HP Increase (1x)
-(25608, 4409, 1), -- MP Increase (1x)
-(25608, 4410, 11), -- Average P. Atk.
-(25608, 4411, 11), -- Average M. Atk.
-(25608, 4412, 11), -- Average P. Def.
-(25608, 4413, 11), -- Average M. Def.
-(25608, 4414, 1), -- Heavy Armor Type
-(25608, 4415, 5), -- Blunt Weapons
-(25608, 4416, 7), -- Spirits
+(25608, 4032, 10), -- NPC Strike
+(25608, 4408, 1), -- HP Modifiers
+(25608, 4409, 1), -- MP Modifiers
+(25608, 4410, 11), -- P. Atk. Modifiers
+(25608, 4411, 11), -- M. Atk. Modifiers
+(25608, 4412, 11), -- P. Def. Modifiers
+(25608, 4413, 11), -- M. Def. Modifiers
+(25608, 4414, 1), -- Armor Type
+(25608, 4415, 5), -- Weapon Type
+(25608, 4416, 7), -- Races
 (25608, 4438, 5), -- Greater Resist Sleep
 (25608, 4439, 5), -- Greater Resist Hold
 (25608, 4440, 5), -- Greater Resist Paralysis
 (25608, 5465, 1), -- Earth Attacks
 (25608, 5768, 1), -- Naia Sprout
 -- Epidos
-(25609, 4071, 5), -- Resist Bow/Crossbow Weapons
-(25609, 4116, 10), -- Resist M. Atk.
-(25609, 4408, 1), -- HP Increase (1x)
-(25609, 4409, 1), -- MP Increase (1x)
-(25609, 4410, 11), -- Average P. Atk.
-(25609, 4411, 11), -- Average M. Atk.
-(25609, 4412, 11), -- Average P. Def.
-(25609, 4413, 11), -- Average M. Def.
-(25609, 4414, 2), -- Standard Type
-(25609, 4415, 3), -- One-handed Sword
-(25609, 4416, 7), -- Spirits
+(25609, 4071, 5), -- Resist Archery
+(25609, 4116, 10), -- Resist M.Atk
+(25609, 4408, 1), -- HP Modifiers
+(25609, 4409, 1), -- MP Modifiers
+(25609, 4410, 11), -- P. Atk. Modifiers
+(25609, 4411, 11), -- M. Atk. Modifiers
+(25609, 4412, 11), -- P. Def. Modifiers
+(25609, 4413, 11), -- M. Def. Modifiers
+(25609, 4414, 2), -- Armor Type
+(25609, 4415, 3), -- Weapon Type
+(25609, 4416, 7), -- Races
 (25609, 4494, 1), -- Raid Boss
 (25609, 5462, 1), -- Fire Attacks
 (25609, 5505, 1), -- Fire Blossom
@@ -68140,17 +68399,17 @@ INSERT INTO `npcskills` VALUES
 (25609, 5615, 1), -- Raid Boss - Level 87
 (25609, 5620, 9), -- Short-Range Physical Attack Weakness
 -- Epidos
-(25610, 4071, 5), -- Resist Bow/Crossbow Weapons
-(25610, 4116, 10), -- Resist M. Atk.
-(25610, 4408, 1), -- HP Increase (1x)
-(25610, 4409, 1), -- MP Increase (1x)
-(25610, 4410, 11), -- Average P. Atk.
-(25610, 4411, 11), -- Average M. Atk.
-(25610, 4412, 11), -- Average P. Def.
-(25610, 4413, 11), -- Average M. Def.
-(25610, 4414, 2), -- Standard Type
-(25610, 4415, 3), -- One-handed Sword
-(25610, 4416, 7), -- Spirits
+(25610, 4071, 5), -- Resist Archery
+(25610, 4116, 10), -- Resist M.Atk
+(25610, 4408, 1), -- HP Modifiers
+(25610, 4409, 1), -- MP Modifiers
+(25610, 4410, 11), -- P. Atk. Modifiers
+(25610, 4411, 11), -- M. Atk. Modifiers
+(25610, 4412, 11), -- P. Def. Modifiers
+(25610, 4413, 11), -- M. Def. Modifiers
+(25610, 4414, 2), -- Armor Type
+(25610, 4415, 3), -- Weapon Type
+(25610, 4416, 7), -- Races
 (25610, 4494, 1), -- Raid Boss
 (25610, 5463, 1), -- Water Attacks
 (25610, 5506, 1), -- Water Blossom
@@ -68160,17 +68419,17 @@ INSERT INTO `npcskills` VALUES
 (25610, 5616, 1), -- Raid Boss - Level 87
 (25610, 5620, 9), -- Short-Range Physical Attack Weakness
 -- Epidos
-(25611, 4071, 5), -- Resist Bow/Crossbow Weapons
-(25611, 4116, 10), -- Resist M. Atk.
-(25611, 4408, 1), -- HP Increase (1x)
-(25611, 4409, 1), -- MP Increase (1x)
-(25611, 4410, 11), -- Average P. Atk.
-(25611, 4411, 11), -- Average M. Atk.
-(25611, 4412, 11), -- Average P. Def.
-(25611, 4413, 11), -- Average M. Def.
-(25611, 4414, 2), -- Standard Type
-(25611, 4415, 3), -- One-handed Sword
-(25611, 4416, 7), -- Spirits
+(25611, 4071, 5), -- Resist Archery
+(25611, 4116, 10), -- Resist M.Atk
+(25611, 4408, 1), -- HP Modifiers
+(25611, 4409, 1), -- MP Modifiers
+(25611, 4410, 11), -- P. Atk. Modifiers
+(25611, 4411, 11), -- M. Atk. Modifiers
+(25611, 4412, 11), -- P. Def. Modifiers
+(25611, 4413, 11), -- M. Def. Modifiers
+(25611, 4414, 2), -- Armor Type
+(25611, 4415, 3), -- Weapon Type
+(25611, 4416, 7), -- Races
 (25611, 4494, 1), -- Raid Boss
 (25611, 5464, 1), -- Wind Attacks
 (25611, 5507, 1), -- Wind Blossom
@@ -68180,17 +68439,17 @@ INSERT INTO `npcskills` VALUES
 (25611, 5617, 1), -- Raid Boss - Level 87
 (25611, 5620, 9), -- Short-Range Physical Attack Weakness
 -- Epidos
-(25612, 4071, 5), -- Resist Bow/Crossbow Weapons
-(25612, 4116, 10), -- Resist M. Atk.
-(25612, 4408, 1), -- HP Increase (1x)
-(25612, 4409, 1), -- MP Increase (1x)
-(25612, 4410, 11), -- Average P. Atk.
-(25612, 4411, 11), -- Average M. Atk.
-(25612, 4412, 11), -- Average P. Def.
-(25612, 4413, 11), -- Average M. Def.
-(25612, 4414, 2), -- Standard Type
-(25612, 4415, 3), -- One-handed Sword
-(25612, 4416, 7), -- Spirits
+(25612, 4071, 5), -- Resist Archery
+(25612, 4116, 10), -- Resist M.Atk
+(25612, 4408, 1), -- HP Modifiers
+(25612, 4409, 1), -- MP Modifiers
+(25612, 4410, 11), -- P. Atk. Modifiers
+(25612, 4411, 11), -- M. Atk. Modifiers
+(25612, 4412, 11), -- P. Def. Modifiers
+(25612, 4413, 11), -- M. Def. Modifiers
+(25612, 4414, 2), -- Armor Type
+(25612, 4415, 3), -- Weapon Type
+(25612, 4416, 7), -- Races
 (25612, 4494, 1), -- Raid Boss
 (25612, 5465, 1), -- Earth Attacks
 (25612, 5508, 1), -- Earth Blossom
@@ -68200,163 +68459,163 @@ INSERT INTO `npcskills` VALUES
 (25612, 5618, 1), -- Raid Boss - Level 87
 (25612, 5620, 9), -- Short-Range Physical Attack Weakness
 -- Naia Spore
-(25613, 4077, 10), -- Aura Burn
-(25613, 4408, 9), -- HP Increase (1/2x)
-(25613, 4409, 1), -- MP Increase (1x)
-(25613, 4410, 11), -- Average P. Atk.
-(25613, 4411, 11), -- Average M. Atk.
-(25613, 4412, 11), -- Average P. Def.
-(25613, 4413, 11), -- Average M. Def.
-(25613, 4414, 3), -- Light Armor Type
-(25613, 4415, 3), -- One-handed Sword
-(25613, 4416, 7), -- Spirits
+(25613, 4077, 10), -- NPC Aura Burn
+(25613, 4408, 9), -- HP Modifiers
+(25613, 4409, 1), -- MP Modifiers
+(25613, 4410, 11), -- P. Atk. Modifiers
+(25613, 4411, 11), -- M. Atk. Modifiers
+(25613, 4412, 11), -- P. Def. Modifiers
+(25613, 4413, 11), -- M. Def. Modifiers
+(25613, 4414, 3), -- Armor Type
+(25613, 4415, 3), -- Weapon Type
+(25613, 4416, 7), -- Races
 (25613, 4438, 5), -- Greater Resist Sleep
 (25613, 4439, 5), -- Greater Resist Hold
 (25613, 4440, 5), -- Greater Resist Paralysis
 -- Floating Ghost
 (25614, 4288, 1), -- Greater Resist Hold
-(25614, 4408, 1), -- HP Increase (1x)
-(25614, 4409, 1), -- MP Increase (1x)
-(25614, 4410, 11), -- Average P. Atk.
-(25614, 4411, 11), -- Average M. Atk.
-(25614, 4412, 11), -- Average P. Def.
-(25614, 4413, 11), -- Average M. Def.
-(25614, 4414, 3), -- Light Armor Type
-(25614, 4415, 3), -- One-handed Sword
-(25614, 4416, 1), -- Undead
+(25614, 4408, 1), -- HP Modifiers
+(25614, 4409, 1), -- MP Modifiers
+(25614, 4410, 11), -- P. Atk. Modifiers
+(25614, 4411, 11), -- M. Atk. Modifiers
+(25614, 4412, 11), -- P. Def. Modifiers
+(25614, 4413, 11), -- M. Def. Modifiers
+(25614, 4414, 3), -- Armor Type
+(25614, 4415, 3), -- Weapon Type
+(25614, 4416, 1), -- Races
 (25614, 5479, 1), -- Boss Petrification Resistance
 (25614, 5593, 1), -- Vampiric Mana Burn
 -- Floating Ghost
 (25615, 4288, 1), -- Greater Resist Hold
-(25615, 4408, 1), -- HP Increase (1x)
-(25615, 4409, 1), -- MP Increase (1x)
-(25615, 4410, 11), -- Average P. Atk.
-(25615, 4411, 11), -- Average M. Atk.
-(25615, 4412, 11), -- Average P. Def.
-(25615, 4413, 11), -- Average M. Def.
-(25615, 4414, 3), -- Light Armor Type
-(25615, 4415, 3), -- One-handed Sword
-(25615, 4416, 1), -- Undead
+(25615, 4408, 1), -- HP Modifiers
+(25615, 4409, 1), -- MP Modifiers
+(25615, 4410, 11), -- P. Atk. Modifiers
+(25615, 4411, 11), -- M. Atk. Modifiers
+(25615, 4412, 11), -- P. Def. Modifiers
+(25615, 4413, 11), -- M. Def. Modifiers
+(25615, 4414, 3), -- Armor Type
+(25615, 4415, 3), -- Weapon Type
+(25615, 4416, 1), -- Races
 (25615, 5479, 1), -- Boss Petrification Resistance
 (25615, 5593, 1), -- Vampiric Mana Burn
 -- Lost Warden
 (25616, 4045, 1), -- Resist Full Magic Attack
-(25616, 4173, 2), -- Might
-(25616, 4177, 2), -- Cancel
-(25616, 4408, 1), -- HP Increase (1x)
-(25616, 4409, 1), -- MP Increase (1x)
-(25616, 4410, 11), -- Average P. Atk.
-(25616, 4411, 11), -- Average M. Atk.
-(25616, 4412, 11), -- Average P. Def.
-(25616, 4413, 11), -- Average M. Def.
-(25616, 4414, 2), -- Standard Type
-(25616, 4415, 5), -- Blunt Weapons
-(25616, 4416, 6), -- Humanoids
-(25616, 4723, 2), -- Power Strike
-(25616, 4738, 2), -- Whirlwind
+(25616, 4173, 2), -- BOSS Might
+(25616, 4177, 2), -- BOSS Cancel Magic
+(25616, 4408, 1), -- HP Modifiers
+(25616, 4409, 1), -- MP Modifiers
+(25616, 4410, 11), -- P. Atk. Modifiers
+(25616, 4411, 11), -- M. Atk. Modifiers
+(25616, 4412, 11), -- P. Def. Modifiers
+(25616, 4413, 11), -- M. Def. Modifiers
+(25616, 4414, 2), -- Armor Type
+(25616, 4415, 5), -- Weapon Type
+(25616, 4416, 6), -- Races
+(25616, 4723, 2), -- BOSS Strike
+(25616, 4738, 2), -- BOSS Spinning Slash
 -- Lost Warden
 (25617, 4045, 1), -- Resist Full Magic Attack
-(25617, 4173, 3), -- Might
-(25617, 4177, 3), -- Cancel
-(25617, 4408, 1), -- HP Increase (1x)
-(25617, 4409, 1), -- MP Increase (1x)
-(25617, 4410, 11), -- Average P. Atk.
-(25617, 4411, 11), -- Average M. Atk.
-(25617, 4412, 11), -- Average P. Def.
-(25617, 4413, 11), -- Average M. Def.
-(25617, 4414, 3), -- Light Armor Type
-(25617, 4415, 7), -- Daggers
-(25617, 4416, 6), -- Humanoids
-(25617, 4723, 3), -- Power Strike
-(25617, 4738, 3), -- Whirlwind
+(25617, 4173, 3), -- BOSS Might
+(25617, 4177, 3), -- BOSS Cancel Magic
+(25617, 4408, 1), -- HP Modifiers
+(25617, 4409, 1), -- MP Modifiers
+(25617, 4410, 11), -- P. Atk. Modifiers
+(25617, 4411, 11), -- M. Atk. Modifiers
+(25617, 4412, 11), -- P. Def. Modifiers
+(25617, 4413, 11), -- M. Def. Modifiers
+(25617, 4414, 3), -- Armor Type
+(25617, 4415, 7), -- Weapon Type
+(25617, 4416, 6), -- Races
+(25617, 4723, 3), -- BOSS Strike
+(25617, 4738, 3), -- BOSS Spinning Slash
 -- Lost Warden
 (25618, 4045, 1), -- Resist Full Magic Attack
-(25618, 4173, 4), -- Might
-(25618, 4177, 4), -- Cancel
-(25618, 4408, 1), -- HP Increase (1x)
-(25618, 4409, 1), -- MP Increase (1x)
-(25618, 4410, 11), -- Average P. Atk.
-(25618, 4411, 11), -- Average M. Atk.
-(25618, 4412, 11), -- Average P. Def.
-(25618, 4413, 11), -- Average M. Def.
-(25618, 4414, 1), -- Heavy Armor Type
-(25618, 4415, 1), -- Bare Hands
-(25618, 4416, 2), -- Magic Creatures
-(25618, 4723, 4), -- Power Strike
-(25618, 4738, 4), -- Whirlwind
+(25618, 4173, 4), -- BOSS Might
+(25618, 4177, 4), -- BOSS Cancel Magic
+(25618, 4408, 1), -- HP Modifiers
+(25618, 4409, 1), -- MP Modifiers
+(25618, 4410, 11), -- P. Atk. Modifiers
+(25618, 4411, 11), -- M. Atk. Modifiers
+(25618, 4412, 11), -- P. Def. Modifiers
+(25618, 4413, 11), -- M. Def. Modifiers
+(25618, 4414, 1), -- Armor Type
+(25618, 4415, 1), -- Weapon Type
+(25618, 4416, 2), -- Races
+(25618, 4723, 4), -- BOSS Strike
+(25618, 4738, 4), -- BOSS Spinning Slash
 -- Lost Warden
 (25619, 4045, 1), -- Resist Full Magic Attack
-(25619, 4173, 5), -- Might
-(25619, 4177, 5), -- Cancel
-(25619, 4408, 1), -- HP Increase (1x)
-(25619, 4409, 1), -- MP Increase (1x)
-(25619, 4410, 11), -- Average P. Atk.
-(25619, 4411, 11), -- Average M. Atk.
-(25619, 4412, 11), -- Average P. Def.
-(25619, 4413, 11), -- Average M. Def.
-(25619, 4414, 2), -- Standard Type
-(25619, 4415, 3), -- One-handed Sword
-(25619, 4416, 1), -- Undead
-(25619, 4723, 5), -- Power Strike
-(25619, 4738, 5), -- Whirlwind
+(25619, 4173, 5), -- BOSS Might
+(25619, 4177, 5), -- BOSS Cancel Magic
+(25619, 4408, 1), -- HP Modifiers
+(25619, 4409, 1), -- MP Modifiers
+(25619, 4410, 11), -- P. Atk. Modifiers
+(25619, 4411, 11), -- M. Atk. Modifiers
+(25619, 4412, 11), -- P. Def. Modifiers
+(25619, 4413, 11), -- M. Def. Modifiers
+(25619, 4414, 2), -- Armor Type
+(25619, 4415, 3), -- Weapon Type
+(25619, 4416, 1), -- Races
+(25619, 4723, 5), -- BOSS Strike
+(25619, 4738, 5), -- BOSS Spinning Slash
 -- Lost Warden
 (25620, 4045, 1), -- Resist Full Magic Attack
-(25620, 4173, 6), -- Might
-(25620, 4177, 6), -- Cancel
-(25620, 4408, 1), -- HP Increase (1x)
-(25620, 4409, 1), -- MP Increase (1x)
-(25620, 4410, 11), -- Average P. Atk.
-(25620, 4411, 11), -- Average M. Atk.
-(25620, 4412, 11), -- Average P. Def.
-(25620, 4413, 11), -- Average M. Def.
-(25620, 4414, 2), -- Standard Type
-(25620, 4415, 5), -- Blunt Weapons
-(25620, 4416, 3), -- Beasts
-(25620, 4723, 6), -- Power Strike
-(25620, 4738, 6), -- Whirlwind
+(25620, 4173, 6), -- BOSS Might
+(25620, 4177, 6), -- BOSS Cancel Magic
+(25620, 4408, 1), -- HP Modifiers
+(25620, 4409, 1), -- MP Modifiers
+(25620, 4410, 11), -- P. Atk. Modifiers
+(25620, 4411, 11), -- M. Atk. Modifiers
+(25620, 4412, 11), -- P. Def. Modifiers
+(25620, 4413, 11), -- M. Def. Modifiers
+(25620, 4414, 2), -- Armor Type
+(25620, 4415, 5), -- Weapon Type
+(25620, 4416, 3), -- Races
+(25620, 4723, 6), -- BOSS Strike
+(25620, 4738, 6), -- BOSS Spinning Slash
 -- Lost Warden
 (25621, 4045, 1), -- Resist Full Magic Attack
-(25621, 4173, 7), -- Might
-(25621, 4177, 7), -- Cancel
-(25621, 4408, 1), -- HP Increase (1x)
-(25621, 4409, 1), -- MP Increase (1x)
-(25621, 4410, 11), -- Average P. Atk.
-(25621, 4411, 11), -- Average M. Atk.
-(25621, 4412, 11), -- Average P. Def.
-(25621, 4413, 11), -- Average M. Def.
-(25621, 4414, 2), -- Standard Type
-(25621, 4415, 11), -- Spears
-(25621, 4416, 8), -- Angels
-(25621, 4723, 7), -- Power Strike
-(25621, 4738, 7), -- Whirlwind
+(25621, 4173, 7), -- BOSS Might
+(25621, 4177, 7), -- BOSS Cancel Magic
+(25621, 4408, 1), -- HP Modifiers
+(25621, 4409, 1), -- MP Modifiers
+(25621, 4410, 11), -- P. Atk. Modifiers
+(25621, 4411, 11), -- M. Atk. Modifiers
+(25621, 4412, 11), -- P. Def. Modifiers
+(25621, 4413, 11), -- M. Def. Modifiers
+(25621, 4414, 2), -- Armor Type
+(25621, 4415, 11), -- Weapon Type
+(25621, 4416, 8), -- Races
+(25621, 4723, 7), -- BOSS Strike
+(25621, 4738, 7), -- BOSS Spinning Slash
 (25621, 5462, 1), -- Fire Attacks
 -- Lost Warden
 (25622, 4045, 1), -- Resist Full Magic Attack
-(25622, 4173, 8), -- Might
-(25622, 4177, 8), -- Cancel
-(25622, 4408, 1), -- HP Increase (1x)
-(25622, 4409, 1), -- MP Increase (1x)
-(25622, 4410, 11), -- Average P. Atk.
-(25622, 4411, 11), -- Average M. Atk.
-(25622, 4412, 11), -- Average P. Def.
-(25622, 4413, 11), -- Average M. Def.
-(25622, 4414, 1), -- Heavy Armor Type
-(25622, 4415, 3), -- One-handed Sword
-(25622, 4416, 1), -- Undead
-(25622, 4723, 8), -- Power Strike
-(25622, 4738, 8), -- Whirlwind
+(25622, 4173, 8), -- BOSS Might
+(25622, 4177, 8), -- BOSS Cancel Magic
+(25622, 4408, 1), -- HP Modifiers
+(25622, 4409, 1), -- MP Modifiers
+(25622, 4410, 11), -- P. Atk. Modifiers
+(25622, 4411, 11), -- M. Atk. Modifiers
+(25622, 4412, 11), -- P. Def. Modifiers
+(25622, 4413, 11), -- M. Def. Modifiers
+(25622, 4414, 1), -- Armor Type
+(25622, 4415, 3), -- Weapon Type
+(25622, 4416, 1), -- Races
+(25622, 4723, 8), -- BOSS Strike
+(25622, 4738, 8), -- BOSS Spinning Slash
 (25622, 5467, 1), -- Dark Attacks
 -- Valdstone
 (25623, 4045, 1), -- Resist Full Magic Attack
-(25623, 4408, 1), -- HP Increase (1x)
-(25623, 4409, 1), -- MP Increase (1x)
-(25623, 4410, 11), -- Average P. Atk.
-(25623, 4411, 11), -- Average M. Atk.
-(25623, 4412, 11), -- Average P. Def.
-(25623, 4413, 11), -- Average M. Def.
-(25623, 4414, 2), -- Standard Type
-(25623, 4415, 3), -- One-handed Sword
-(25623, 4416, 3), -- Beasts
+(25623, 4408, 1), -- HP Modifiers
+(25623, 4409, 1), -- MP Modifiers
+(25623, 4410, 11), -- P. Atk. Modifiers
+(25623, 4411, 11), -- M. Atk. Modifiers
+(25623, 4412, 11), -- P. Def. Modifiers
+(25623, 4413, 11), -- M. Def. Modifiers
+(25623, 4414, 2), -- Armor Type
+(25623, 4415, 3), -- Weapon Type
+(25623, 4416, 3), -- Races
 (25623, 4494, 1), -- Raid Boss
 (25623, 5225, 1), -- Invincible
 (25623, 5462, 1), -- Fire Attacks
@@ -68365,15 +68624,15 @@ INSERT INTO `npcskills` VALUES
 (25623, 6084, 1), -- Raid Boss - Level 80
 -- Rok
 (25624, 4045, 1), -- Resist Full Magic Attack
-(25624, 4408, 1), -- HP Increase (1x)
-(25624, 4409, 1), -- MP Increase (1x)
-(25624, 4410, 11), -- Average P. Atk.
-(25624, 4411, 11), -- Average M. Atk.
-(25624, 4412, 11), -- Average P. Def.
-(25624, 4413, 11), -- Average M. Def.
-(25624, 4414, 2), -- Standard Type
-(25624, 4415, 3), -- One-handed Sword
-(25624, 4416, 3), -- Beasts
+(25624, 4408, 1), -- HP Modifiers
+(25624, 4409, 1), -- MP Modifiers
+(25624, 4410, 11), -- P. Atk. Modifiers
+(25624, 4411, 11), -- M. Atk. Modifiers
+(25624, 4412, 11), -- P. Def. Modifiers
+(25624, 4413, 11), -- M. Def. Modifiers
+(25624, 4414, 2), -- Armor Type
+(25624, 4415, 3), -- Weapon Type
+(25624, 4416, 3), -- Races
 (25624, 4494, 1), -- Raid Boss
 (25624, 5462, 1), -- Fire Attacks
 (25624, 5794, 1), -- Decrease Spd.
@@ -68382,30 +68641,30 @@ INSERT INTO `npcskills` VALUES
 (25624, 6085, 1), -- Raid Boss - Level 80
 -- Enira
 (25625, 4045, 1), -- Resist Full Magic Attack
-(25625, 4408, 1), -- HP Increase (1x)
-(25625, 4409, 1), -- MP Increase (1x)
-(25625, 4410, 11), -- Average P. Atk.
-(25625, 4411, 11), -- Average M. Atk.
-(25625, 4412, 11), -- Average P. Def.
-(25625, 4413, 11), -- Average M. Def.
-(25625, 4414, 2), -- Standard Type
-(25625, 4415, 3), -- One-handed Sword
-(25625, 4416, 1), -- Undead
+(25625, 4408, 1), -- HP Modifiers
+(25625, 4409, 1), -- MP Modifiers
+(25625, 4410, 11), -- P. Atk. Modifiers
+(25625, 4411, 11), -- M. Atk. Modifiers
+(25625, 4412, 11), -- P. Def. Modifiers
+(25625, 4413, 11), -- M. Def. Modifiers
+(25625, 4414, 2), -- Armor Type
+(25625, 4415, 3), -- Weapon Type
+(25625, 4416, 1), -- Races
 (25625, 4494, 1), -- Raid Boss
 (25625, 5467, 1), -- Dark Attacks
 (25625, 5799, 1), -- Bleed
 (25625, 6086, 1), -- Raid Boss - Level 80
 -- Dius
 (25626, 4045, 1), -- Resist Full Magic Attack
-(25626, 4408, 1), -- HP Increase (1x)
-(25626, 4409, 1), -- MP Increase (1x)
-(25626, 4410, 11), -- Average P. Atk.
-(25626, 4411, 11), -- Average M. Atk.
-(25626, 4412, 11), -- Average P. Def.
-(25626, 4413, 11), -- Average M. Def.
-(25626, 4414, 2), -- Standard Type
-(25626, 4415, 3), -- One-handed Sword
-(25626, 4416, 10), -- Dragons
+(25626, 4408, 1), -- HP Modifiers
+(25626, 4409, 1), -- MP Modifiers
+(25626, 4410, 11), -- P. Atk. Modifiers
+(25626, 4411, 11), -- M. Atk. Modifiers
+(25626, 4412, 11), -- P. Def. Modifiers
+(25626, 4413, 11), -- M. Def. Modifiers
+(25626, 4414, 2), -- Armor Type
+(25626, 4415, 3), -- Weapon Type
+(25626, 4416, 10), -- Races
 (25626, 4494, 1), -- Raid Boss
 (25626, 5465, 1), -- Earth Attacks
 (25626, 5801, 1), -- Drake Breath
@@ -68413,131 +68672,131 @@ INSERT INTO `npcskills` VALUES
 (25626, 6087, 1), -- Raid Boss - Level 80
 -- Mutant Bird
 (25627, 4045, 1), -- Resist Full Magic Attack
-(25627, 4408, 1), -- HP Increase (1x)
-(25627, 4409, 1), -- MP Increase (1x)
-(25627, 4410, 11), -- Average P. Atk.
-(25627, 4411, 11), -- Average M. Atk.
-(25627, 4412, 11), -- Average P. Def.
-(25627, 4413, 11), -- Average M. Def.
-(25627, 4414, 2), -- Standard Type
-(25627, 4415, 3), -- One-handed Sword
-(25627, 4416, 3), -- Beasts
+(25627, 4408, 1), -- HP Modifiers
+(25627, 4409, 1), -- MP Modifiers
+(25627, 4410, 11), -- P. Atk. Modifiers
+(25627, 4411, 11), -- M. Atk. Modifiers
+(25627, 4412, 11), -- P. Def. Modifiers
+(25627, 4413, 11), -- M. Def. Modifiers
+(25627, 4414, 2), -- Armor Type
+(25627, 4415, 3), -- Weapon Type
+(25627, 4416, 3), -- Races
 (25627, 5462, 1), -- Fire Attacks
 (25627, 5806, 1), -- High Wave Beam
 (25627, 5807, 1), -- Self-destruction
 -- Dra Hawk
 (25628, 4045, 1), -- Resist Full Magic Attack
-(25628, 4408, 1), -- HP Increase (1x)
-(25628, 4409, 1), -- MP Increase (1x)
-(25628, 4410, 11), -- Average P. Atk.
-(25628, 4411, 11), -- Average M. Atk.
-(25628, 4412, 11), -- Average P. Def.
-(25628, 4413, 11), -- Average M. Def.
-(25628, 4414, 2), -- Standard Type
-(25628, 4415, 3), -- One-handed Sword
-(25628, 4416, 3), -- Beasts
+(25628, 4408, 1), -- HP Modifiers
+(25628, 4409, 1), -- MP Modifiers
+(25628, 4410, 11), -- P. Atk. Modifiers
+(25628, 4411, 11), -- M. Atk. Modifiers
+(25628, 4412, 11), -- P. Def. Modifiers
+(25628, 4413, 11), -- M. Def. Modifiers
+(25628, 4414, 2), -- Armor Type
+(25628, 4415, 3), -- Weapon Type
+(25628, 4416, 3), -- Races
 (25628, 5462, 1), -- Fire Attacks
 (25628, 5809, 1), -- Dark Blood
 (25628, 5810, 1), -- Decrease Spd.
 -- Floating Skull
 (25629, 4045, 1), -- Resist Full Magic Attack
-(25629, 4408, 1), -- HP Increase (1x)
-(25629, 4409, 1), -- MP Increase (1x)
-(25629, 4410, 11), -- Average P. Atk.
-(25629, 4411, 11), -- Average M. Atk.
-(25629, 4412, 11), -- Average P. Def.
-(25629, 4413, 11), -- Average M. Def.
-(25629, 4414, 2), -- Standard Type
-(25629, 4415, 3), -- One-handed Sword
-(25629, 4416, 1), -- Undead
+(25629, 4408, 1), -- HP Modifiers
+(25629, 4409, 1), -- MP Modifiers
+(25629, 4410, 11), -- P. Atk. Modifiers
+(25629, 4411, 11), -- M. Atk. Modifiers
+(25629, 4412, 11), -- P. Def. Modifiers
+(25629, 4413, 11), -- M. Def. Modifiers
+(25629, 4414, 2), -- Armor Type
+(25629, 4415, 3), -- Weapon Type
+(25629, 4416, 1), -- Races
 (25629, 5467, 1), -- Dark Attacks
 (25629, 5803, 1), -- Green Chili
 (25629, 5804, 1), -- Fireball
 -- Floating Zombie
 (25630, 4045, 1), -- Resist Full Magic Attack
-(25630, 4408, 1), -- HP Increase (1x)
-(25630, 4409, 1), -- MP Increase (1x)
-(25630, 4410, 11), -- Average P. Atk.
-(25630, 4411, 11), -- Average M. Atk.
-(25630, 4412, 11), -- Average P. Def.
-(25630, 4413, 11), -- Average M. Def.
-(25630, 4414, 2), -- Standard Type
-(25630, 4415, 3), -- One-handed Sword
-(25630, 4416, 1), -- Undead
+(25630, 4408, 1), -- HP Modifiers
+(25630, 4409, 1), -- MP Modifiers
+(25630, 4410, 11), -- P. Atk. Modifiers
+(25630, 4411, 11), -- M. Atk. Modifiers
+(25630, 4412, 11), -- P. Def. Modifiers
+(25630, 4413, 11), -- M. Def. Modifiers
+(25630, 4414, 2), -- Armor Type
+(25630, 4415, 3), -- Weapon Type
+(25630, 4416, 1), -- Races
 (25630, 5467, 1), -- Dark Attacks
-(25630, 5793, 1), -- Presentation - Summon Boomeye
+(25630, 5793, 1), -- Presentation - Summon Boomi
 (25630, 5813, 1), -- Sand Ball
 -- Drake Wing
 (25631, 4045, 1), -- Resist Full Magic Attack
-(25631, 4408, 1), -- HP Increase (1x)
-(25631, 4409, 1), -- MP Increase (1x)
-(25631, 4410, 11), -- Average P. Atk.
-(25631, 4411, 11), -- Average M. Atk.
-(25631, 4412, 11), -- Average P. Def.
-(25631, 4413, 11), -- Average M. Def.
-(25631, 4414, 2), -- Standard Type
-(25631, 4415, 3), -- One-handed Sword
-(25631, 4416, 10), -- Dragons
+(25631, 4408, 1), -- HP Modifiers
+(25631, 4409, 1), -- MP Modifiers
+(25631, 4410, 11), -- P. Atk. Modifiers
+(25631, 4411, 11), -- M. Atk. Modifiers
+(25631, 4412, 11), -- P. Def. Modifiers
+(25631, 4413, 11), -- M. Def. Modifiers
+(25631, 4414, 2), -- Armor Type
+(25631, 4415, 3), -- Weapon Type
+(25631, 4416, 10), -- Races
 (25631, 5465, 1), -- Earth Attacks
 (25631, 5804, 1), -- Fireball
 (25631, 5805, 1), -- Air Assault
 -- Drak
 (25632, 4045, 1), -- Resist Full Magic Attack
-(25632, 4408, 1), -- HP Increase (1x)
-(25632, 4409, 1), -- MP Increase (1x)
-(25632, 4410, 11), -- Average P. Atk.
-(25632, 4411, 11), -- Average M. Atk.
-(25632, 4412, 11), -- Average P. Def.
-(25632, 4413, 11), -- Average M. Def.
-(25632, 4414, 2), -- Standard Type
-(25632, 4415, 3), -- One-handed Sword
-(25632, 4416, 10), -- Dragons
+(25632, 4408, 1), -- HP Modifiers
+(25632, 4409, 1), -- MP Modifiers
+(25632, 4410, 11), -- P. Atk. Modifiers
+(25632, 4411, 11), -- M. Atk. Modifiers
+(25632, 4412, 11), -- P. Def. Modifiers
+(25632, 4413, 11), -- M. Def. Modifiers
+(25632, 4414, 2), -- Armor Type
+(25632, 4415, 3), -- Weapon Type
+(25632, 4416, 10), -- Races
 (25632, 5465, 1), -- Earth Attacks
 (25632, 5811, 1), -- Sonic Bomb
 (25632, 5812, 1), -- Fire Breath
 -- Elite Rider
 (25633, 4045, 1), -- Resist Full Magic Attack
-(25633, 4065, 9), -- Heal
-(25633, 4408, 1), -- HP Increase (1x)
-(25633, 4409, 1), -- MP Increase (1x)
-(25633, 4410, 11), -- Average P. Atk.
-(25633, 4411, 11), -- Average M. Atk.
-(25633, 4412, 11), -- Average P. Def.
-(25633, 4413, 11), -- Average M. Def.
-(25633, 4414, 2), -- Standard Type
-(25633, 4415, 3), -- One-handed Sword
-(25633, 4416, 3), -- Beasts
+(25633, 4065, 9), -- NPC Heal
+(25633, 4408, 1), -- HP Modifiers
+(25633, 4409, 1), -- MP Modifiers
+(25633, 4410, 11), -- P. Atk. Modifiers
+(25633, 4411, 11), -- M. Atk. Modifiers
+(25633, 4412, 11), -- P. Def. Modifiers
+(25633, 4413, 11), -- M. Def. Modifiers
+(25633, 4414, 2), -- Armor Type
+(25633, 4415, 3), -- Weapon Type
+(25633, 4416, 3), -- Races
 (25633, 5462, 1), -- Fire Attacks
 (25633, 5804, 1), -- Fireball
 (25633, 5808, 1), -- Burst Flame
 -- Cohemenes
 (25634, 4045, 1), -- Resist Full Magic Attack
-(25634, 4408, 1), -- HP Increase (1x)
-(25634, 4409, 1), -- MP Increase (1x)
-(25634, 4410, 11), -- Average P. Atk.
-(25634, 4411, 11), -- Average M. Atk.
-(25634, 4412, 11), -- Average P. Def.
-(25634, 4413, 11), -- Average M. Def.
-(25634, 4414, 2), -- Standard Type
-(25634, 4415, 3), -- One-handed Sword
-(25634, 4416, 1), -- Undead
+(25634, 4408, 1), -- HP Modifiers
+(25634, 4409, 1), -- MP Modifiers
+(25634, 4410, 11), -- P. Atk. Modifiers
+(25634, 4411, 11), -- M. Atk. Modifiers
+(25634, 4412, 11), -- P. Def. Modifiers
+(25634, 4413, 11), -- M. Def. Modifiers
+(25634, 4414, 2), -- Armor Type
+(25634, 4415, 3), -- Weapon Type
+(25634, 4416, 1), -- Races
 (25634, 5467, 1), -- Dark Attacks
-(25634, 5898, 2), -- Blast of Anchor
+(25634, 5898, 2), -- Blast of Anger
 (25634, 5904, 2), -- Mist of Souleater
 (25634, 5907, 2), -- Ritual of Entombment
 (25634, 5908, 2), -- Ritual of Entombment
 (25634, 5917, 1), -- Shrouding Aura
 -- Argekunte
 (25635, 4045, 1), -- Resist Full Magic Attack
-(25635, 4408, 1), -- HP Increase (1x)
-(25635, 4409, 1), -- MP Increase (1x)
-(25635, 4410, 11), -- Average P. Atk.
-(25635, 4411, 11), -- Average M. Atk.
-(25635, 4412, 11), -- Average P. Def.
-(25635, 4413, 11), -- Average M. Def.
-(25635, 4414, 2), -- Standard Type
-(25635, 4415, 19), -- Dual-Sword Weapons
-(25635, 4416, 1), -- Undead
+(25635, 4408, 1), -- HP Modifiers
+(25635, 4409, 1), -- MP Modifiers
+(25635, 4410, 11), -- P. Atk. Modifiers
+(25635, 4411, 11), -- M. Atk. Modifiers
+(25635, 4412, 11), -- P. Def. Modifiers
+(25635, 4413, 11), -- M. Def. Modifiers
+(25635, 4414, 2), -- Armor Type
+(25635, 4415, 19), -- Weapon Type
+(25635, 4416, 1), -- Races
 (25635, 5465, 1), -- Earth Attacks
 (25635, 5881, 2), -- Vicious Mutilation
 (25635, 5888, 2), -- Earth Shaker
@@ -68546,46 +68805,46 @@ INSERT INTO `npcskills` VALUES
 (25635, 5916, 1), -- Cruising Aura
 -- Ravenous Soul Devourer
 (25636, 4045, 1), -- Resist Full Magic Attack
-(25636, 4408, 1), -- HP Increase (1x)
-(25636, 4409, 1), -- MP Increase (1x)
-(25636, 4410, 11), -- Average P. Atk.
-(25636, 4411, 11), -- Average M. Atk.
-(25636, 4412, 11), -- Average P. Def.
-(25636, 4413, 11), -- Average M. Def.
-(25636, 4414, 2), -- Standard Type
-(25636, 4415, 3), -- One-handed Sword
-(25636, 4416, 1), -- Undead
+(25636, 4408, 1), -- HP Modifiers
+(25636, 4409, 1), -- MP Modifiers
+(25636, 4410, 11), -- P. Atk. Modifiers
+(25636, 4411, 11), -- M. Atk. Modifiers
+(25636, 4412, 11), -- P. Def. Modifiers
+(25636, 4413, 11), -- M. Def. Modifiers
+(25636, 4414, 2), -- Armor Type
+(25636, 4415, 3), -- Weapon Type
+(25636, 4416, 1), -- Races
 (25636, 5465, 1), -- Earth Attacks
 (25636, 5888, 2), -- Earth Shaker
 (25636, 5911, 1), -- Pestilence Cleanse
 (25636, 5918, 8), -- Physical Root Weakness
 -- Karpencharr
 (25637, 4045, 1), -- Resist Full Magic Attack
-(25637, 4408, 1), -- HP Increase (1x)
-(25637, 4409, 1), -- MP Increase (1x)
-(25637, 4410, 11), -- Average P. Atk.
-(25637, 4411, 11), -- Average M. Atk.
-(25637, 4412, 11), -- Average P. Def.
-(25637, 4413, 11), -- Average M. Def.
-(25637, 4414, 2), -- Standard Type
-(25637, 4415, 3), -- One-handed Sword
-(25637, 4416, 1), -- Undead
+(25637, 4408, 1), -- HP Modifiers
+(25637, 4409, 1), -- MP Modifiers
+(25637, 4410, 11), -- P. Atk. Modifiers
+(25637, 4411, 11), -- M. Atk. Modifiers
+(25637, 4412, 11), -- P. Def. Modifiers
+(25637, 4413, 11), -- M. Def. Modifiers
+(25637, 4414, 2), -- Armor Type
+(25637, 4415, 3), -- Weapon Type
+(25637, 4416, 1), -- Races
 (25637, 5467, 1), -- Dark Attacks
-(25637, 5898, 2), -- Blast of Anchor
+(25637, 5898, 2), -- Blast of Anger
 (25637, 5904, 2), -- Mist of Souleater
 (25637, 5907, 2), -- Ritual of Entombment
 (25637, 5916, 1), -- Cruising Aura
 -- Romerohiv
 (25638, 4045, 1), -- Resist Full Magic Attack
-(25638, 4408, 1), -- HP Increase (1x)
-(25638, 4409, 1), -- MP Increase (1x)
-(25638, 4410, 11), -- Average P. Atk.
-(25638, 4411, 11), -- Average M. Atk.
-(25638, 4412, 11), -- Average P. Def.
-(25638, 4413, 11), -- Average M. Def.
-(25638, 4414, 2), -- Standard Type
-(25638, 4415, 3), -- One-handed Sword
-(25638, 4416, 1), -- Undead
+(25638, 4408, 1), -- HP Modifiers
+(25638, 4409, 1), -- MP Modifiers
+(25638, 4410, 11), -- P. Atk. Modifiers
+(25638, 4411, 11), -- M. Atk. Modifiers
+(25638, 4412, 11), -- P. Def. Modifiers
+(25638, 4413, 11), -- M. Def. Modifiers
+(25638, 4414, 2), -- Armor Type
+(25638, 4415, 3), -- Weapon Type
+(25638, 4416, 1), -- Races
 (25638, 5465, 1), -- Earth Attacks
 (25638, 5896, 2), -- Soulless
 (25638, 5901, 2), -- Mist of Oblivion
@@ -68593,15 +68852,15 @@ INSERT INTO `npcskills` VALUES
 (25638, 5917, 1), -- Shrouding Aura
 -- Hitchkarshiek
 (25639, 4045, 1), -- Resist Full Magic Attack
-(25639, 4408, 1), -- HP Increase (1x)
-(25639, 4409, 1), -- MP Increase (1x)
-(25639, 4410, 11), -- Average P. Atk.
-(25639, 4411, 11), -- Average M. Atk.
-(25639, 4412, 11), -- Average P. Def.
-(25639, 4413, 11), -- Average M. Def.
-(25639, 4414, 2), -- Standard Type
-(25639, 4415, 19), -- Dual-Sword Weapons
-(25639, 4416, 1), -- Undead
+(25639, 4408, 1), -- HP Modifiers
+(25639, 4409, 1), -- MP Modifiers
+(25639, 4410, 11), -- P. Atk. Modifiers
+(25639, 4411, 11), -- M. Atk. Modifiers
+(25639, 4412, 11), -- P. Def. Modifiers
+(25639, 4413, 11), -- M. Def. Modifiers
+(25639, 4414, 2), -- Armor Type
+(25639, 4415, 19), -- Weapon Type
+(25639, 4416, 1), -- Races
 (25639, 5467, 1), -- Dark Attacks
 (25639, 5881, 2), -- Vicious Mutilation
 (25639, 5888, 2), -- Earth Shaker
@@ -68609,31 +68868,31 @@ INSERT INTO `npcskills` VALUES
 (25639, 5986, 1), -- Vampiric Aura
 -- Freedkyilla
 (25640, 4045, 1), -- Resist Full Magic Attack
-(25640, 4408, 1), -- HP Increase (1x)
-(25640, 4409, 1), -- MP Increase (1x)
-(25640, 4410, 11), -- Average P. Atk.
-(25640, 4411, 11), -- Average M. Atk.
-(25640, 4412, 11), -- Average P. Def.
-(25640, 4413, 11), -- Average M. Def.
-(25640, 4414, 2), -- Standard Type
-(25640, 4415, 3), -- One-handed Sword
-(25640, 4416, 1), -- Undead
+(25640, 4408, 1), -- HP Modifiers
+(25640, 4409, 1), -- MP Modifiers
+(25640, 4410, 11), -- P. Atk. Modifiers
+(25640, 4411, 11), -- M. Atk. Modifiers
+(25640, 4412, 11), -- P. Def. Modifiers
+(25640, 4413, 11), -- M. Def. Modifiers
+(25640, 4414, 2), -- Armor Type
+(25640, 4415, 3), -- Weapon Type
+(25640, 4416, 1), -- Races
 (25640, 5465, 1), -- Earth Attacks
 (25640, 5880, 2), -- Vicious Mutilation
 (25640, 5894, 1), -- Mark of Despair
 (25640, 5899, 2), -- Burst of Pain
-(25640, 5913, 1), -- Putrefaction Cleanse
+(25640, 5913, 1), -- Putrefection Cleanse
 -- Yehan Cravenizad
 (25641, 4045, 1), -- Resist Full Magic Attack
-(25641, 4408, 1), -- HP Increase (1x)
-(25641, 4409, 1), -- MP Increase (1x)
-(25641, 4410, 11), -- Average P. Atk.
-(25641, 4411, 11), -- Average M. Atk.
-(25641, 4412, 11), -- Average P. Def.
-(25641, 4413, 11), -- Average M. Def.
-(25641, 4414, 2), -- Standard Type
-(25641, 4415, 11), -- Spears
-(25641, 4416, 1), -- Undead
+(25641, 4408, 1), -- HP Modifiers
+(25641, 4409, 1), -- MP Modifiers
+(25641, 4410, 11), -- P. Atk. Modifiers
+(25641, 4411, 11), -- M. Atk. Modifiers
+(25641, 4412, 11), -- P. Def. Modifiers
+(25641, 4413, 11), -- M. Def. Modifiers
+(25641, 4414, 2), -- Armor Type
+(25641, 4415, 11), -- Weapon Type
+(25641, 4416, 1), -- Races
 (25641, 5465, 1), -- Earth Attacks
 (25641, 5884, 2), -- Weakened Sweep
 (25641, 5887, 1), -- Howl from Beyond
@@ -68642,15 +68901,15 @@ INSERT INTO `npcskills` VALUES
 (25641, 5915, 1), -- Mummifying Aura
 -- Yehan Jaxsibhan
 (25642, 4045, 1), -- Resist Full Magic Attack
-(25642, 4408, 1), -- HP Increase (1x)
-(25642, 4409, 1), -- MP Increase (1x)
-(25642, 4410, 11), -- Average P. Atk.
-(25642, 4411, 11), -- Average M. Atk.
-(25642, 4412, 11), -- Average P. Def.
-(25642, 4413, 11), -- Average M. Def.
-(25642, 4414, 2), -- Standard Type
-(25642, 4415, 13), -- Two-handed Sword
-(25642, 4416, 1), -- Undead
+(25642, 4408, 1), -- HP Modifiers
+(25642, 4409, 1), -- MP Modifiers
+(25642, 4410, 11), -- P. Atk. Modifiers
+(25642, 4411, 11), -- M. Atk. Modifiers
+(25642, 4412, 11), -- P. Def. Modifiers
+(25642, 4413, 11), -- M. Def. Modifiers
+(25642, 4414, 2), -- Armor Type
+(25642, 4415, 13), -- Weapon Type
+(25642, 4416, 1), -- Races
 (25642, 5467, 1), -- Dark Attacks
 (25642, 5855, 2), -- Weakened Sweep
 (25642, 5890, 3), -- Tainted Mass Shackle
@@ -68659,15 +68918,15 @@ INSERT INTO `npcskills` VALUES
 (25642, 5985, 1), -- Decaying Aura
 -- Awakened Ancient Sentry
 (25643, 4045, 1), -- Resist Full Magic Attack
-(25643, 4408, 1), -- HP Increase (1x)
-(25643, 4409, 1), -- MP Increase (1x)
-(25643, 4410, 11), -- Average P. Atk.
-(25643, 4411, 11), -- Average M. Atk.
-(25643, 4412, 11), -- Average P. Def.
-(25643, 4413, 11), -- Average M. Def.
-(25643, 4414, 2), -- Standard Type
-(25643, 4415, 3), -- One-handed Sword
-(25643, 4416, 1), -- Undead
+(25643, 4408, 1), -- HP Modifiers
+(25643, 4409, 1), -- MP Modifiers
+(25643, 4410, 11), -- P. Atk. Modifiers
+(25643, 4411, 11), -- M. Atk. Modifiers
+(25643, 4412, 11), -- P. Def. Modifiers
+(25643, 4413, 11), -- M. Def. Modifiers
+(25643, 4414, 2), -- Armor Type
+(25643, 4415, 3), -- Weapon Type
+(25643, 4416, 1), -- Races
 (25643, 4494, 1), -- Raid Boss
 (25643, 5467, 1), -- Dark Attacks
 (25643, 5878, 1), -- Cruel Puncture
@@ -68677,33 +68936,33 @@ INSERT INTO `npcskills` VALUES
 (25643, 6074, 1), -- Raid Boss - Level 81
 -- Awakened Ancient Severer
 (25644, 4045, 1), -- Resist Full Magic Attack
-(25644, 4408, 1), -- HP Increase (1x)
-(25644, 4409, 1), -- MP Increase (1x)
-(25644, 4410, 11), -- Average P. Atk.
-(25644, 4411, 11), -- Average M. Atk.
-(25644, 4412, 11), -- Average P. Def.
-(25644, 4413, 11), -- Average M. Def.
-(25644, 4414, 2), -- Standard Type
-(25644, 4415, 3), -- One-handed Sword
-(25644, 4416, 1), -- Undead
+(25644, 4408, 1), -- HP Modifiers
+(25644, 4409, 1), -- MP Modifiers
+(25644, 4410, 11), -- P. Atk. Modifiers
+(25644, 4411, 11), -- M. Atk. Modifiers
+(25644, 4412, 11), -- P. Def. Modifiers
+(25644, 4413, 11), -- M. Def. Modifiers
+(25644, 4414, 2), -- Armor Type
+(25644, 4415, 3), -- Weapon Type
+(25644, 4416, 1), -- Races
 (25644, 4494, 1), -- Raid Boss
 (25644, 5467, 1), -- Dark Attacks
 (25644, 5884, 2), -- Weakened Sweep
 (25644, 5895, 1), -- Mark of Cowardice
-(25644, 5898, 2), -- Blast of Anchor
-(25644, 5913, 1), -- Putrefaction Cleanse
+(25644, 5898, 2), -- Blast of Anger
+(25644, 5913, 1), -- Putrefection Cleanse
 (25644, 6075, 1), -- Raid Boss - Level 81
 -- Awakened Ancient Soul Extractor
 (25645, 4045, 1), -- Resist Full Magic Attack
-(25645, 4408, 1), -- HP Increase (1x)
-(25645, 4409, 1), -- MP Increase (1x)
-(25645, 4410, 11), -- Average P. Atk.
-(25645, 4411, 11), -- Average M. Atk.
-(25645, 4412, 11), -- Average P. Def.
-(25645, 4413, 11), -- Average M. Def.
-(25645, 4414, 2), -- Standard Type
-(25645, 4415, 3), -- One-handed Sword
-(25645, 4416, 1), -- Undead
+(25645, 4408, 1), -- HP Modifiers
+(25645, 4409, 1), -- MP Modifiers
+(25645, 4410, 11), -- P. Atk. Modifiers
+(25645, 4411, 11), -- M. Atk. Modifiers
+(25645, 4412, 11), -- P. Def. Modifiers
+(25645, 4413, 11), -- M. Def. Modifiers
+(25645, 4414, 2), -- Armor Type
+(25645, 4415, 3), -- Weapon Type
+(25645, 4416, 1), -- Races
 (25645, 4494, 1), -- Raid Boss
 (25645, 5467, 1), -- Dark Attacks
 (25645, 5892, 2), -- Cunning Coercion
@@ -68713,15 +68972,15 @@ INSERT INTO `npcskills` VALUES
 (25645, 6076, 1), -- Raid Boss - Level 81
 -- Awakened Ancient Soul Devourer
 (25646, 4045, 1), -- Resist Full Magic Attack
-(25646, 4408, 1), -- HP Increase (1x)
-(25646, 4409, 1), -- MP Increase (1x)
-(25646, 4410, 11), -- Average P. Atk.
-(25646, 4411, 11), -- Average M. Atk.
-(25646, 4412, 11), -- Average P. Def.
-(25646, 4413, 11), -- Average M. Def.
-(25646, 4414, 2), -- Standard Type
-(25646, 4415, 3), -- One-handed Sword
-(25646, 4416, 1), -- Undead
+(25646, 4408, 1), -- HP Modifiers
+(25646, 4409, 1), -- MP Modifiers
+(25646, 4410, 11), -- P. Atk. Modifiers
+(25646, 4411, 11), -- M. Atk. Modifiers
+(25646, 4412, 11), -- P. Def. Modifiers
+(25646, 4413, 11), -- M. Def. Modifiers
+(25646, 4414, 2), -- Armor Type
+(25646, 4415, 3), -- Weapon Type
+(25646, 4416, 1), -- Races
 (25646, 4494, 1), -- Raid Boss
 (25646, 5465, 1), -- Earth Attacks
 (25646, 5888, 2), -- Earth Shaker
@@ -68731,15 +68990,15 @@ INSERT INTO `npcskills` VALUES
 (25646, 6077, 1), -- Raid Boss - Level 81
 -- Awakened Ancient Fighter
 (25647, 4045, 1), -- Resist Full Magic Attack
-(25647, 4408, 1), -- HP Increase (1x)
-(25647, 4409, 1), -- MP Increase (1x)
-(25647, 4410, 11), -- Average P. Atk.
-(25647, 4411, 11), -- Average M. Atk.
-(25647, 4412, 11), -- Average P. Def.
-(25647, 4413, 11), -- Average M. Def.
-(25647, 4414, 2), -- Standard Type
-(25647, 4415, 11), -- Spears
-(25647, 4416, 1), -- Undead
+(25647, 4408, 1), -- HP Modifiers
+(25647, 4409, 1), -- MP Modifiers
+(25647, 4410, 11), -- P. Atk. Modifiers
+(25647, 4411, 11), -- M. Atk. Modifiers
+(25647, 4412, 11), -- P. Def. Modifiers
+(25647, 4413, 11), -- M. Def. Modifiers
+(25647, 4414, 2), -- Armor Type
+(25647, 4415, 11), -- Weapon Type
+(25647, 4416, 1), -- Races
 (25647, 4494, 1), -- Raid Boss
 (25647, 5465, 1), -- Earth Attacks
 (25647, 5884, 2), -- Weakened Sweep
@@ -68750,15 +69009,15 @@ INSERT INTO `npcskills` VALUES
 (25647, 6078, 1), -- Raid Boss - Level 81
 -- Awakened Ancient Fighter
 (25648, 4045, 1), -- Resist Full Magic Attack
-(25648, 4408, 1), -- HP Increase (1x)
-(25648, 4409, 1), -- MP Increase (1x)
-(25648, 4410, 11), -- Average P. Atk.
-(25648, 4411, 11), -- Average M. Atk.
-(25648, 4412, 11), -- Average P. Def.
-(25648, 4413, 11), -- Average M. Def.
-(25648, 4414, 2), -- Standard Type
-(25648, 4415, 13), -- Two-handed Sword
-(25648, 4416, 1), -- Undead
+(25648, 4408, 1), -- HP Modifiers
+(25648, 4409, 1), -- MP Modifiers
+(25648, 4410, 11), -- P. Atk. Modifiers
+(25648, 4411, 11), -- M. Atk. Modifiers
+(25648, 4412, 11), -- P. Def. Modifiers
+(25648, 4413, 11), -- M. Def. Modifiers
+(25648, 4414, 2), -- Armor Type
+(25648, 4415, 13), -- Weapon Type
+(25648, 4416, 1), -- Races
 (25648, 4494, 1), -- Raid Boss
 (25648, 5467, 1), -- Dark Attacks
 (25648, 5855, 2), -- Weakened Sweep
@@ -68769,15 +69028,15 @@ INSERT INTO `npcskills` VALUES
 (25648, 6079, 1), -- Raid Boss - Level 81
 -- Awakened Ancient Executor
 (25649, 4045, 1), -- Resist Full Magic Attack
-(25649, 4408, 1), -- HP Increase (1x)
-(25649, 4409, 1), -- MP Increase (1x)
-(25649, 4410, 11), -- Average P. Atk.
-(25649, 4411, 11), -- Average M. Atk.
-(25649, 4412, 11), -- Average P. Def.
-(25649, 4413, 11), -- Average M. Def.
-(25649, 4414, 2), -- Standard Type
-(25649, 4415, 19), -- Dual-Sword Weapons
-(25649, 4416, 1), -- Undead
+(25649, 4408, 1), -- HP Modifiers
+(25649, 4409, 1), -- MP Modifiers
+(25649, 4410, 11), -- P. Atk. Modifiers
+(25649, 4411, 11), -- M. Atk. Modifiers
+(25649, 4412, 11), -- P. Def. Modifiers
+(25649, 4413, 11), -- M. Def. Modifiers
+(25649, 4414, 2), -- Armor Type
+(25649, 4415, 19), -- Weapon Type
+(25649, 4416, 1), -- Races
 (25649, 4494, 1), -- Raid Boss
 (25649, 5467, 1), -- Dark Attacks
 (25649, 5880, 2), -- Vicious Mutilation
@@ -68787,51 +69046,51 @@ INSERT INTO `npcskills` VALUES
 (25649, 6080, 1), -- Raid Boss - Level 81
 -- Awakened Ancient Executor
 (25650, 4045, 1), -- Resist Full Magic Attack
-(25650, 4408, 1), -- HP Increase (1x)
-(25650, 4409, 1), -- MP Increase (1x)
-(25650, 4410, 11), -- Average P. Atk.
-(25650, 4411, 11), -- Average M. Atk.
-(25650, 4412, 11), -- Average P. Def.
-(25650, 4413, 11), -- Average M. Def.
-(25650, 4414, 2), -- Standard Type
-(25650, 4415, 3), -- One-handed Sword
-(25650, 4416, 1), -- Undead
+(25650, 4408, 1), -- HP Modifiers
+(25650, 4409, 1), -- MP Modifiers
+(25650, 4410, 11), -- P. Atk. Modifiers
+(25650, 4411, 11), -- M. Atk. Modifiers
+(25650, 4412, 11), -- P. Def. Modifiers
+(25650, 4413, 11), -- M. Def. Modifiers
+(25650, 4414, 2), -- Armor Type
+(25650, 4415, 3), -- Weapon Type
+(25650, 4416, 1), -- Races
 (25650, 4494, 1), -- Raid Boss
 (25650, 5465, 1), -- Earth Attacks
 (25650, 5881, 2), -- Vicious Mutilation
 (25650, 5888, 2), -- Earth Shaker
 (25650, 5894, 1), -- Mark of Despair
-(25650, 5913, 1), -- Putrefaction Cleanse
+(25650, 5913, 1), -- Putrefection Cleanse
 (25650, 6081, 1), -- Raid Boss - Level 81
 -- Awakened Ancient Prophet
 (25651, 4045, 1), -- Resist Full Magic Attack
-(25651, 4408, 1), -- HP Increase (1x)
-(25651, 4409, 1), -- MP Increase (1x)
-(25651, 4410, 11), -- Average P. Atk.
-(25651, 4411, 11), -- Average M. Atk.
-(25651, 4412, 11), -- Average P. Def.
-(25651, 4413, 11), -- Average M. Def.
-(25651, 4414, 2), -- Standard Type
-(25651, 4415, 3), -- One-handed Sword
-(25651, 4416, 1), -- Undead
+(25651, 4408, 1), -- HP Modifiers
+(25651, 4409, 1), -- MP Modifiers
+(25651, 4410, 11), -- P. Atk. Modifiers
+(25651, 4411, 11), -- M. Atk. Modifiers
+(25651, 4412, 11), -- P. Def. Modifiers
+(25651, 4413, 11), -- M. Def. Modifiers
+(25651, 4414, 2), -- Armor Type
+(25651, 4415, 3), -- Weapon Type
+(25651, 4416, 1), -- Races
 (25651, 4494, 1), -- Raid Boss
 (25651, 5467, 1), -- Dark Attacks
-(25651, 5898, 2), -- Blast of Anchor
+(25651, 5898, 2), -- Blast of Anger
 (25651, 5904, 2), -- Mist of Souleater
 (25651, 5907, 2), -- Ritual of Entombment
 (25651, 5916, 1), -- Cruising Aura
 (25651, 6082, 1), -- Raid Boss - Level 81
 -- Awakened Ancient Prophet
 (25652, 4045, 1), -- Resist Full Magic Attack
-(25652, 4408, 1), -- HP Increase (1x)
-(25652, 4409, 1), -- MP Increase (1x)
-(25652, 4410, 11), -- Average P. Atk.
-(25652, 4411, 11), -- Average M. Atk.
-(25652, 4412, 11), -- Average P. Def.
-(25652, 4413, 11), -- Average M. Def.
-(25652, 4414, 2), -- Standard Type
-(25652, 4415, 3), -- One-handed Sword
-(25652, 4416, 1), -- Undead
+(25652, 4408, 1), -- HP Modifiers
+(25652, 4409, 1), -- MP Modifiers
+(25652, 4410, 11), -- P. Atk. Modifiers
+(25652, 4411, 11), -- M. Atk. Modifiers
+(25652, 4412, 11), -- P. Def. Modifiers
+(25652, 4413, 11), -- M. Def. Modifiers
+(25652, 4414, 2), -- Armor Type
+(25652, 4415, 3), -- Weapon Type
+(25652, 4416, 1), -- Races
 (25652, 4494, 1), -- Raid Boss
 (25652, 5465, 1), -- Earth Attacks
 (25652, 5896, 2), -- Soulless
@@ -68840,195 +69099,195 @@ INSERT INTO `npcskills` VALUES
 (25652, 5917, 1), -- Shrouding Aura
 (25652, 6083, 1), -- Raid Boss - Level 81
 -- Kanadis Herald
-(25653, 4030, 3), -- Might
+(25653, 4030, 3), -- NPC Clan Might
 (25653, 4045, 1), -- Resist Full Magic Attack
 (25653, 4172, 8), -- Stun
-(25653, 4408, 9), -- HP Increase (1/2x)
-(25653, 4409, 1), -- MP Increase (1x)
-(25653, 4410, 11), -- Average P. Atk.
-(25653, 4411, 11), -- Average M. Atk.
-(25653, 4412, 8), -- Weak P. Def.
-(25653, 4413, 8), -- Weak M. Def.
-(25653, 4414, 2), -- Standard Type
-(25653, 4415, 11), -- Spears
-(25653, 4416, 8), -- Angels
+(25653, 4408, 9), -- HP Modifiers
+(25653, 4409, 1), -- MP Modifiers
+(25653, 4410, 11), -- P. Atk. Modifiers
+(25653, 4411, 11), -- M. Atk. Modifiers
+(25653, 4412, 8), -- P. Def. Modifiers
+(25653, 4413, 8), -- M. Def. Modifiers
+(25653, 4414, 2), -- Armor Type
+(25653, 4415, 11), -- Weapon Type
+(25653, 4416, 8), -- Races
 (25653, 4458, 2), -- Spear Weapon Weak Point
-(25653, 4736, 8), -- Whirlwind
+(25653, 4736, 8), -- BOSS Spinning Slash
 (25653, 5466, 1), -- Holy Attacks
 -- Kanadis Herald
-(25654, 4031, 3), -- Might
+(25654, 4031, 3), -- NPC Clan Aegis
 (25654, 4045, 1), -- Resist Full Magic Attack
-(25654, 4408, 9), -- HP Increase (1/2x)
-(25654, 4409, 1), -- MP Increase (1x)
-(25654, 4410, 11), -- Average P. Atk.
-(25654, 4411, 11), -- Average M. Atk.
-(25654, 4412, 8), -- Weak P. Def.
-(25654, 4413, 8), -- Weak M. Def.
-(25654, 4414, 2), -- Standard Type
-(25654, 4415, 3), -- One-handed Sword
-(25654, 4416, 8), -- Angels
-(25654, 4461, 2), -- Weak Point against Daggers/Rapier Weapon
-(25654, 4766, 8), -- Power Shot
+(25654, 4408, 9), -- HP Modifiers
+(25654, 4409, 1), -- MP Modifiers
+(25654, 4410, 11), -- P. Atk. Modifiers
+(25654, 4411, 11), -- M. Atk. Modifiers
+(25654, 4412, 8), -- P. Def. Modifiers
+(25654, 4413, 8), -- M. Def. Modifiers
+(25654, 4414, 2), -- Armor Type
+(25654, 4415, 3), -- Weapon Type
+(25654, 4416, 8), -- Races
+(25654, 4461, 2), -- Dagger Weak Point
+(25654, 4766, 8), -- BOSS Power Shot
 (25654, 4771, 8), -- Stun
 (25654, 5466, 1), -- Holy Attacks
 -- Kanadis Herald
 (25655, 4045, 1), -- Resist Full Magic Attack
-(25655, 4089, 1), -- Spirit Bear
-(25655, 4408, 9), -- HP Increase (1/2x)
-(25655, 4409, 1), -- MP Increase (1x)
-(25655, 4410, 11), -- Average P. Atk.
-(25655, 4411, 11), -- Average M. Atk.
-(25655, 4412, 8), -- Weak P. Def.
-(25655, 4413, 8), -- Weak M. Def.
-(25655, 4414, 3), -- Light Armor Type
-(25655, 4415, 1), -- Bare Hands
-(25655, 4416, 8), -- Angels
+(25655, 4089, 1), -- NPC Bear Spirit Totem
+(25655, 4408, 9), -- HP Modifiers
+(25655, 4409, 1), -- MP Modifiers
+(25655, 4410, 11), -- P. Atk. Modifiers
+(25655, 4411, 11), -- M. Atk. Modifiers
+(25655, 4412, 8), -- P. Def. Modifiers
+(25655, 4413, 8), -- M. Def. Modifiers
+(25655, 4414, 3), -- Armor Type
+(25655, 4415, 1), -- Weapon Type
+(25655, 4416, 8), -- Races
 (25655, 4460, 2), -- Sword Weak Point
-(25655, 4721, 8), -- Power Strike
+(25655, 4721, 8), -- BOSS Strike
 (25655, 4746, 8), -- Stun
 (25655, 5466, 1), -- Holy Attacks
 -- Kanadis Fanatic
 (25656, 4045, 1), -- Resist Full Magic Attack
-(25656, 4408, 13), -- HP Increase (5x)
-(25656, 4409, 1), -- MP Increase (1x)
-(25656, 4410, 11), -- Average P. Atk.
-(25656, 4411, 11), -- Average M. Atk.
-(25656, 4412, 11), -- Average P. Def.
-(25656, 4413, 11), -- Average M. Def.
-(25656, 4414, 2), -- Standard Type
-(25656, 4415, 11), -- Spears
-(25656, 4416, 8), -- Angels
+(25656, 4408, 13), -- HP Modifiers
+(25656, 4409, 1), -- MP Modifiers
+(25656, 4410, 11), -- P. Atk. Modifiers
+(25656, 4411, 11), -- M. Atk. Modifiers
+(25656, 4412, 11), -- P. Def. Modifiers
+(25656, 4413, 11), -- M. Def. Modifiers
+(25656, 4414, 2), -- Armor Type
+(25656, 4415, 11), -- Weapon Type
+(25656, 4416, 8), -- Races
 (25656, 4456, 1), -- Mental Attack Weak Point
 (25656, 4458, 2), -- Spear Weapon Weak Point
 (25656, 5466, 1), -- Holy Attacks
 -- Kanadis Fanatic
 (25657, 4045, 1), -- Resist Full Magic Attack
-(25657, 4066, 8), -- Twister
-(25657, 4077, 8), -- Aura Burn
-(25657, 4408, 13), -- HP Increase (5x)
-(25657, 4409, 1), -- MP Increase (1x)
-(25657, 4410, 11), -- Average P. Atk.
-(25657, 4411, 11), -- Average M. Atk.
-(25657, 4412, 11), -- Average P. Def.
-(25657, 4413, 11), -- Average M. Def.
-(25657, 4414, 3), -- Light Armor Type
-(25657, 4415, 5), -- Blunt Weapons
-(25657, 4416, 8), -- Angels
-(25657, 4461, 2), -- Weak Point against Daggers/Rapier Weapon
+(25657, 4066, 8), -- NPC Twister
+(25657, 4077, 8), -- NPC Aura Burn
+(25657, 4408, 13), -- HP Modifiers
+(25657, 4409, 1), -- MP Modifiers
+(25657, 4410, 11), -- P. Atk. Modifiers
+(25657, 4411, 11), -- M. Atk. Modifiers
+(25657, 4412, 11), -- P. Def. Modifiers
+(25657, 4413, 11), -- M. Def. Modifiers
+(25657, 4414, 3), -- Armor Type
+(25657, 4415, 5), -- Weapon Type
+(25657, 4416, 8), -- Races
+(25657, 4461, 2), -- Dagger Weak Point
 (25657, 5466, 1), -- Holy Attacks
 -- Kanadis Fanatic
 (25658, 4045, 1), -- Resist Full Magic Attack
-(25658, 4408, 13), -- HP Increase (5x)
-(25658, 4409, 1), -- MP Increase (1x)
-(25658, 4410, 11), -- Average P. Atk.
-(25658, 4411, 11), -- Average M. Atk.
-(25658, 4412, 11), -- Average P. Def.
-(25658, 4413, 11), -- Average M. Def.
-(25658, 4414, 2), -- Standard Type
-(25658, 4415, 1), -- Bare Hands
-(25658, 4416, 8), -- Angels
+(25658, 4408, 13), -- HP Modifiers
+(25658, 4409, 1), -- MP Modifiers
+(25658, 4410, 11), -- P. Atk. Modifiers
+(25658, 4411, 11), -- M. Atk. Modifiers
+(25658, 4412, 11), -- P. Def. Modifiers
+(25658, 4413, 11), -- M. Def. Modifiers
+(25658, 4414, 2), -- Armor Type
+(25658, 4415, 1), -- Weapon Type
+(25658, 4416, 8), -- Races
 (25658, 4460, 2), -- Sword Weak Point
 (25658, 5466, 1), -- Holy Attacks
 -- Kanadis Guide
-(25659, 4030, 3), -- Might
+(25659, 4030, 3), -- NPC Clan Might
 (25659, 4045, 1), -- Resist Full Magic Attack
 (25659, 4172, 7), -- Stun
-(25659, 4408, 9), -- HP Increase (1/2x)
-(25659, 4409, 1), -- MP Increase (1x)
-(25659, 4410, 11), -- Average P. Atk.
-(25659, 4411, 11), -- Average M. Atk.
-(25659, 4412, 8), -- Weak P. Def.
-(25659, 4413, 8), -- Weak M. Def.
-(25659, 4414, 2), -- Standard Type
-(25659, 4415, 11), -- Spears
-(25659, 4416, 8), -- Angels
+(25659, 4408, 9), -- HP Modifiers
+(25659, 4409, 1), -- MP Modifiers
+(25659, 4410, 11), -- P. Atk. Modifiers
+(25659, 4411, 11), -- M. Atk. Modifiers
+(25659, 4412, 8), -- P. Def. Modifiers
+(25659, 4413, 8), -- M. Def. Modifiers
+(25659, 4414, 2), -- Armor Type
+(25659, 4415, 11), -- Weapon Type
+(25659, 4416, 8), -- Races
 (25659, 4458, 2), -- Spear Weapon Weak Point
-(25659, 4736, 7), -- Whirlwind
+(25659, 4736, 7), -- BOSS Spinning Slash
 (25659, 5466, 1), -- Holy Attacks
 -- Kanadis Guide
-(25660, 4031, 3), -- Might
+(25660, 4031, 3), -- NPC Clan Aegis
 (25660, 4045, 1), -- Resist Full Magic Attack
-(25660, 4408, 9), -- HP Increase (1/2x)
-(25660, 4409, 1), -- MP Increase (1x)
-(25660, 4410, 11), -- Average P. Atk.
-(25660, 4411, 11), -- Average M. Atk.
-(25660, 4412, 8), -- Weak P. Def.
-(25660, 4413, 8), -- Weak M. Def.
-(25660, 4414, 2), -- Standard Type
-(25660, 4415, 3), -- One-handed Sword
-(25660, 4416, 8), -- Angels
-(25660, 4461, 2), -- Weak Point against Daggers/Rapier Weapon
-(25660, 4766, 7), -- Power Shot
+(25660, 4408, 9), -- HP Modifiers
+(25660, 4409, 1), -- MP Modifiers
+(25660, 4410, 11), -- P. Atk. Modifiers
+(25660, 4411, 11), -- M. Atk. Modifiers
+(25660, 4412, 8), -- P. Def. Modifiers
+(25660, 4413, 8), -- M. Def. Modifiers
+(25660, 4414, 2), -- Armor Type
+(25660, 4415, 3), -- Weapon Type
+(25660, 4416, 8), -- Races
+(25660, 4461, 2), -- Dagger Weak Point
+(25660, 4766, 7), -- BOSS Power Shot
 (25660, 4771, 7), -- Stun
 (25660, 5466, 1), -- Holy Attacks
 -- Kanadis Guide
 (25661, 4045, 1), -- Resist Full Magic Attack
-(25661, 4089, 1), -- Spirit Bear
-(25661, 4408, 9), -- HP Increase (1/2x)
-(25661, 4409, 1), -- MP Increase (1x)
-(25661, 4410, 11), -- Average P. Atk.
-(25661, 4411, 11), -- Average M. Atk.
-(25661, 4412, 8), -- Weak P. Def.
-(25661, 4413, 8), -- Weak M. Def.
-(25661, 4414, 3), -- Light Armor Type
-(25661, 4415, 1), -- Bare Hands
-(25661, 4416, 8), -- Angels
+(25661, 4089, 1), -- NPC Bear Spirit Totem
+(25661, 4408, 9), -- HP Modifiers
+(25661, 4409, 1), -- MP Modifiers
+(25661, 4410, 11), -- P. Atk. Modifiers
+(25661, 4411, 11), -- M. Atk. Modifiers
+(25661, 4412, 8), -- P. Def. Modifiers
+(25661, 4413, 8), -- M. Def. Modifiers
+(25661, 4414, 3), -- Armor Type
+(25661, 4415, 1), -- Weapon Type
+(25661, 4416, 8), -- Races
 (25661, 4460, 2), -- Sword Weak Point
-(25661, 4721, 7), -- Power Strike
+(25661, 4721, 7), -- BOSS Strike
 (25661, 4746, 7), -- Stun
 (25661, 5466, 1), -- Holy Attacks
 -- Kanadis Follower
 (25662, 4045, 1), -- Resist Full Magic Attack
-(25662, 4408, 13), -- HP Increase (5x)
-(25662, 4409, 1), -- MP Increase (1x)
-(25662, 4410, 11), -- Average P. Atk.
-(25662, 4411, 11), -- Average M. Atk.
-(25662, 4412, 11), -- Average P. Def.
-(25662, 4413, 11), -- Average M. Def.
-(25662, 4414, 2), -- Standard Type
-(25662, 4415, 11), -- Spears
-(25662, 4416, 8), -- Angels
+(25662, 4408, 13), -- HP Modifiers
+(25662, 4409, 1), -- MP Modifiers
+(25662, 4410, 11), -- P. Atk. Modifiers
+(25662, 4411, 11), -- M. Atk. Modifiers
+(25662, 4412, 11), -- P. Def. Modifiers
+(25662, 4413, 11), -- M. Def. Modifiers
+(25662, 4414, 2), -- Armor Type
+(25662, 4415, 11), -- Weapon Type
+(25662, 4416, 8), -- Races
 (25662, 4456, 1), -- Mental Attack Weak Point
 (25662, 4458, 2), -- Spear Weapon Weak Point
 -- Kanadis Follower
 (25663, 4045, 1), -- Resist Full Magic Attack
-(25663, 4066, 7), -- Twister
-(25663, 4077, 8), -- Aura Burn
-(25663, 4408, 13), -- HP Increase (5x)
-(25663, 4409, 1), -- MP Increase (1x)
-(25663, 4410, 11), -- Average P. Atk.
-(25663, 4411, 11), -- Average M. Atk.
-(25663, 4412, 11), -- Average P. Def.
-(25663, 4413, 11), -- Average M. Def.
-(25663, 4414, 3), -- Light Armor Type
-(25663, 4415, 5), -- Blunt Weapons
-(25663, 4416, 8), -- Angels
-(25663, 4461, 2), -- Weak Point against Daggers/Rapier Weapon
+(25663, 4066, 7), -- NPC Twister
+(25663, 4077, 8), -- NPC Aura Burn
+(25663, 4408, 13), -- HP Modifiers
+(25663, 4409, 1), -- MP Modifiers
+(25663, 4410, 11), -- P. Atk. Modifiers
+(25663, 4411, 11), -- M. Atk. Modifiers
+(25663, 4412, 11), -- P. Def. Modifiers
+(25663, 4413, 11), -- M. Def. Modifiers
+(25663, 4414, 3), -- Armor Type
+(25663, 4415, 5), -- Weapon Type
+(25663, 4416, 8), -- Races
+(25663, 4461, 2), -- Dagger Weak Point
 (25663, 5466, 1), -- Holy Attacks
 -- Kanadis Follower
 (25664, 4045, 1), -- Resist Full Magic Attack
-(25664, 4408, 13), -- HP Increase (5x)
-(25664, 4409, 1), -- MP Increase (1x)
-(25664, 4410, 11), -- Average P. Atk.
-(25664, 4411, 11), -- Average M. Atk.
-(25664, 4412, 11), -- Average P. Def.
-(25664, 4413, 11), -- Average M. Def.
-(25664, 4414, 2), -- Standard Type
-(25664, 4415, 1), -- Bare Hands
-(25664, 4416, 8), -- Angels
+(25664, 4408, 13), -- HP Modifiers
+(25664, 4409, 1), -- MP Modifiers
+(25664, 4410, 11), -- P. Atk. Modifiers
+(25664, 4411, 11), -- M. Atk. Modifiers
+(25664, 4412, 11), -- P. Def. Modifiers
+(25664, 4413, 11), -- M. Def. Modifiers
+(25664, 4414, 2), -- Armor Type
+(25664, 4415, 1), -- Weapon Type
+(25664, 4416, 8), -- Races
 (25664, 4460, 2), -- Sword Weak Point
 (25664, 5466, 1), -- Holy Attacks
 -- Yehan Klodekus
 (25665, 4045, 1), -- Resist Full Magic Attack
-(25665, 4408, 1), -- HP Increase (1x)
-(25665, 4409, 1), -- MP Increase (1x)
-(25665, 4410, 11), -- Average P. Atk.
-(25665, 4411, 11), -- Average M. Atk.
-(25665, 4412, 11), -- Average P. Def.
-(25665, 4413, 11), -- Average M. Def.
-(25665, 4414, 2), -- Standard Type
-(25665, 4415, 11), -- Spears
-(25665, 4416, 1), -- Undead
+(25665, 4408, 1), -- HP Modifiers
+(25665, 4409, 1), -- MP Modifiers
+(25665, 4410, 11), -- P. Atk. Modifiers
+(25665, 4411, 11), -- M. Atk. Modifiers
+(25665, 4412, 11), -- P. Def. Modifiers
+(25665, 4413, 11), -- M. Def. Modifiers
+(25665, 4414, 2), -- Armor Type
+(25665, 4415, 11), -- Weapon Type
+(25665, 4416, 1), -- Races
 (25665, 4494, 1), -- Raid Boss
 (25665, 5465, 1), -- Earth Attacks
 (25665, 5933, 1), -- Dark Blade
@@ -69037,15 +69296,15 @@ INSERT INTO `npcskills` VALUES
 (25665, 6062, 1), -- Raid Boss - Level 81
 -- Yehan Klanikus
 (25666, 4045, 1), -- Resist Full Magic Attack
-(25666, 4408, 1), -- HP Increase (1x)
-(25666, 4409, 1), -- MP Increase (1x)
-(25666, 4410, 11), -- Average P. Atk.
-(25666, 4411, 11), -- Average M. Atk.
-(25666, 4412, 11), -- Average P. Def.
-(25666, 4413, 11), -- Average M. Def.
-(25666, 4414, 2), -- Standard Type
-(25666, 4415, 13), -- Two-handed Sword
-(25666, 4416, 1), -- Undead
+(25666, 4408, 1), -- HP Modifiers
+(25666, 4409, 1), -- MP Modifiers
+(25666, 4410, 11), -- P. Atk. Modifiers
+(25666, 4411, 11), -- M. Atk. Modifiers
+(25666, 4412, 11), -- P. Def. Modifiers
+(25666, 4413, 11), -- M. Def. Modifiers
+(25666, 4414, 2), -- Armor Type
+(25666, 4415, 13), -- Weapon Type
+(25666, 4416, 1), -- Races
 (25666, 4494, 1), -- Raid Boss
 (25666, 5467, 1), -- Dark Attacks
 (25666, 5932, 1), -- Dark Blade
@@ -69054,546 +69313,548 @@ INSERT INTO `npcskills` VALUES
 (25666, 6063, 1), -- Raid Boss - Level 81
 -- Cannibalistic Stakato Chief
 (25667, 4045, 1), -- Resist Full Magic Attack
-(25667, 4161, 1), -- Summon
-(25667, 4232, 7), -- Whirlwind
-(25667, 4408, 1), -- HP Increase (1x)
-(25667, 4409, 1), -- MP Increase (1x)
-(25667, 4410, 11), -- Average P. Atk.
-(25667, 4411, 11), -- Average M. Atk.
-(25667, 4412, 11), -- Average P. Def.
-(25667, 4413, 11), -- Average M. Def.
-(25667, 4414, 2), -- Standard Type
-(25667, 4415, 3), -- One-handed Sword
-(25667, 4416, 6), -- Humanoids
+(25667, 4161, 1), -- Summon PC
+(25667, 4232, 7), -- NPC AE Strike
+(25667, 4408, 1), -- HP Modifiers
+(25667, 4409, 1), -- MP Modifiers
+(25667, 4410, 11), -- P. Atk. Modifiers
+(25667, 4411, 11), -- M. Atk. Modifiers
+(25667, 4412, 11), -- P. Def. Modifiers
+(25667, 4413, 11), -- M. Def. Modifiers
+(25667, 4414, 2), -- Armor Type
+(25667, 4415, 3), -- Weapon Type
+(25667, 4416, 6), -- Races
 (25667, 4494, 1), -- Raid Boss
-(25667, 5218, 1), -- Teleport
+(25667, 5218, 1), -- Production: Event Teleport
 (25667, 5307, 4), -- Stun
-(25667, 5350, 1), -- Power Strike
-(25667, 5352, 1), -- Whirlwind
+(25667, 5350, 1), -- NPC(party) - Physical Single Close Range Attack - Earth
+(25667, 5352, 1), -- NPC(party) - Physical Range Close Range Attack - Earth
 (25667, 5465, 1), -- Earth Attacks
 (25667, 6223, 1), -- Raid Boss - Level 84
-(25667, 6237, 1), -- Speed Decrease
-(25667, 6238, 1), -- Speed Decrease
+(25667, 6237, 1), -- Moving Speed Decrease
+(25667, 6238, 1), -- Moving Speed Decrease
 -- Cannibalistic Stakato Chief
 (25668, 4045, 1), -- Resist Full Magic Attack
-(25668, 4161, 1), -- Summon
-(25668, 4232, 7), -- Whirlwind
-(25668, 4408, 1), -- HP Increase (1x)
-(25668, 4409, 1), -- MP Increase (1x)
-(25668, 4410, 11), -- Average P. Atk.
-(25668, 4411, 11), -- Average M. Atk.
-(25668, 4412, 11), -- Average P. Def.
-(25668, 4413, 11), -- Average M. Def.
-(25668, 4414, 2), -- Standard Type
-(25668, 4415, 3), -- One-handed Sword
-(25668, 4416, 6), -- Humanoids
+(25668, 4161, 1), -- Summon PC
+(25668, 4232, 7), -- NPC AE Strike
+(25668, 4408, 1), -- HP Modifiers
+(25668, 4409, 1), -- MP Modifiers
+(25668, 4410, 11), -- P. Atk. Modifiers
+(25668, 4411, 11), -- M. Atk. Modifiers
+(25668, 4412, 11), -- P. Def. Modifiers
+(25668, 4413, 11), -- M. Def. Modifiers
+(25668, 4414, 2), -- Armor Type
+(25668, 4415, 3), -- Weapon Type
+(25668, 4416, 6), -- Races
 (25668, 4494, 1), -- Raid Boss
-(25668, 5218, 1), -- Teleport
+(25668, 5218, 1), -- Production: Event Teleport
 (25668, 5307, 4), -- Stun
-(25668, 5350, 1), -- Power Strike
-(25668, 5352, 1), -- Whirlwind
+(25668, 5350, 1), -- NPC(party) - Physical Single Close Range Attack - Earth
+(25668, 5352, 1), -- NPC(party) - Physical Range Close Range Attack - Earth
 (25668, 5465, 1), -- Earth Attacks
 (25668, 6224, 1), -- Raid Boss - Level 84
-(25668, 6237, 1), -- Speed Decrease
-(25668, 6238, 1), -- Speed Decrease
+(25668, 6237, 1), -- Moving Speed Decrease
+(25668, 6238, 1), -- Moving Speed Decrease
 -- Cannibalistic Stakato Chief
 (25669, 4045, 1), -- Resist Full Magic Attack
-(25669, 4161, 1), -- Summon
-(25669, 4232, 7), -- Whirlwind
-(25669, 4408, 1), -- HP Increase (1x)
-(25669, 4409, 1), -- MP Increase (1x)
-(25669, 4410, 11), -- Average P. Atk.
-(25669, 4411, 11), -- Average M. Atk.
-(25669, 4412, 11), -- Average P. Def.
-(25669, 4413, 11), -- Average M. Def.
-(25669, 4414, 2), -- Standard Type
-(25669, 4415, 3), -- One-handed Sword
-(25669, 4416, 6), -- Humanoids
+(25669, 4161, 1), -- Summon PC
+(25669, 4232, 7), -- NPC AE Strike
+(25669, 4408, 1), -- HP Modifiers
+(25669, 4409, 1), -- MP Modifiers
+(25669, 4410, 11), -- P. Atk. Modifiers
+(25669, 4411, 11), -- M. Atk. Modifiers
+(25669, 4412, 11), -- P. Def. Modifiers
+(25669, 4413, 11), -- M. Def. Modifiers
+(25669, 4414, 2), -- Armor Type
+(25669, 4415, 3), -- Weapon Type
+(25669, 4416, 6), -- Races
 (25669, 4494, 1), -- Raid Boss
-(25669, 5218, 1), -- Teleport
+(25669, 5218, 1), -- Production: Event Teleport
 (25669, 5307, 4), -- Stun
-(25669, 5350, 1), -- Power Strike
-(25669, 5352, 1), -- Whirlwind
+(25669, 5350, 1), -- NPC(party) - Physical Single Close Range Attack - Earth
+(25669, 5352, 1), -- NPC(party) - Physical Range Close Range Attack - Earth
 (25669, 5465, 1), -- Earth Attacks
 (25669, 6225, 1), -- Raid Boss - Level 84
-(25669, 6237, 1), -- Speed Decrease
-(25669, 6238, 1), -- Speed Decrease
+(25669, 6237, 1), -- Moving Speed Decrease
+(25669, 6238, 1), -- Moving Speed Decrease
 -- Cannibalistic Stakato Chief
 (25670, 4045, 1), -- Resist Full Magic Attack
-(25670, 4161, 1), -- Summon
-(25670, 4232, 7), -- Whirlwind
-(25670, 4408, 1), -- HP Increase (1x)
-(25670, 4409, 1), -- MP Increase (1x)
-(25670, 4410, 11), -- Average P. Atk.
-(25670, 4411, 11), -- Average M. Atk.
-(25670, 4412, 11), -- Average P. Def.
-(25670, 4413, 11), -- Average M. Def.
-(25670, 4414, 2), -- Standard Type
-(25670, 4415, 3), -- One-handed Sword
-(25670, 4416, 6), -- Humanoids
+(25670, 4161, 1), -- Summon PC
+(25670, 4232, 7), -- NPC AE Strike
+(25670, 4408, 1), -- HP Modifiers
+(25670, 4409, 1), -- MP Modifiers
+(25670, 4410, 11), -- P. Atk. Modifiers
+(25670, 4411, 11), -- M. Atk. Modifiers
+(25670, 4412, 11), -- P. Def. Modifiers
+(25670, 4413, 11), -- M. Def. Modifiers
+(25670, 4414, 2), -- Armor Type
+(25670, 4415, 3), -- Weapon Type
+(25670, 4416, 6), -- Races
 (25670, 4494, 1), -- Raid Boss
-(25670, 5218, 1), -- Teleport
+(25670, 5218, 1), -- Production: Event Teleport
 (25670, 5307, 4), -- Stun
-(25670, 5350, 1), -- Power Strike
-(25670, 5352, 1), -- Whirlwind
+(25670, 5350, 1), -- NPC(party) - Physical Single Close Range Attack - Earth
+(25670, 5352, 1), -- NPC(party) - Physical Range Close Range Attack - Earth
 (25670, 5465, 1), -- Earth Attacks
 (25670, 6226, 1), -- Raid Boss - Level 84
-(25670, 6237, 1), -- Speed Decrease
-(25670, 6238, 1), -- Speed Decrease
+(25670, 6237, 1), -- Moving Speed Decrease
+(25670, 6238, 1), -- Moving Speed Decrease
 -- Queen Shyeed
 (25671, 4045, 1), -- Resist Full Magic Attack
 (25671, 4197, 9), -- Hold
-(25671, 4408, 1), -- HP Increase (1x)
-(25671, 4409, 1), -- MP Increase (1x)
-(25671, 4410, 11), -- Average P. Atk.
-(25671, 4411, 11), -- Average M. Atk.
-(25671, 4412, 11), -- Average P. Def.
-(25671, 4413, 11), -- Average M. Def.
-(25671, 4414, 1), -- Heavy Armor Type
-(25671, 4415, 3), -- One-handed Sword
-(25671, 4416, 6), -- Humanoids
+(25671, 4408, 1), -- HP Modifiers
+(25671, 4409, 1), -- MP Modifiers
+(25671, 4410, 11), -- P. Atk. Modifiers
+(25671, 4411, 11), -- M. Atk. Modifiers
+(25671, 4412, 11), -- P. Def. Modifiers
+(25671, 4413, 11), -- M. Def. Modifiers
+(25671, 4414, 1), -- Armor Type
+(25671, 4415, 3), -- Weapon Type
+(25671, 4416, 6), -- Races
 (25671, 4494, 1), -- Raid Boss
 (25671, 5465, 1), -- Earth Attacks
 (25671, 6227, 1), -- Raid Boss - Level 84
 -- Spiked Stakato
 (25672, 4045, 1), -- Resist Full Magic Attack
-(25672, 4195, 9), -- Twister
+(25672, 4195, 9), -- BOSS Twister
 (25672, 4198, 9), -- Poison
-(25672, 4408, 1), -- HP Increase (1x)
-(25672, 4409, 1), -- MP Increase (1x)
-(25672, 4410, 11), -- Average P. Atk.
-(25672, 4411, 11), -- Average M. Atk.
-(25672, 4412, 11), -- Average P. Def.
-(25672, 4413, 11), -- Average M. Def.
-(25672, 4414, 2), -- Standard Type
-(25672, 4415, 3), -- One-handed Sword
-(25672, 4416, 6), -- Humanoids
+(25672, 4408, 1), -- HP Modifiers
+(25672, 4409, 1), -- MP Modifiers
+(25672, 4410, 11), -- P. Atk. Modifiers
+(25672, 4411, 11), -- M. Atk. Modifiers
+(25672, 4412, 11), -- P. Def. Modifiers
+(25672, 4413, 11), -- M. Def. Modifiers
+(25672, 4414, 2), -- Armor Type
+(25672, 4415, 3), -- Weapon Type
+(25672, 4416, 6), -- Races
 (25672, 5465, 1), -- Earth Attacks
 -- Spiked Stakato
 (25673, 4045, 1), -- Resist Full Magic Attack
-(25673, 4408, 1), -- HP Increase (1x)
-(25673, 4409, 1), -- MP Increase (1x)
-(25673, 4410, 11), -- Average P. Atk.
-(25673, 4411, 11), -- Average M. Atk.
-(25673, 4412, 11), -- Average P. Def.
-(25673, 4413, 11), -- Average M. Def.
-(25673, 4414, 2), -- Standard Type
-(25673, 4415, 3), -- One-handed Sword
-(25673, 4416, 6), -- Humanoids
+(25673, 4408, 1), -- HP Modifiers
+(25673, 4409, 1), -- MP Modifiers
+(25673, 4410, 11), -- P. Atk. Modifiers
+(25673, 4411, 11), -- M. Atk. Modifiers
+(25673, 4412, 11), -- P. Def. Modifiers
+(25673, 4413, 11), -- M. Def. Modifiers
+(25673, 4414, 2), -- Armor Type
+(25673, 4415, 3), -- Weapon Type
+(25673, 4416, 6), -- Races
 (25673, 4726, 9), -- Stun
 (25673, 5465, 1), -- Earth Attacks
 -- Gwindorr
 (25674, 4045, 1), -- Resist Full Magic Attack
-(25674, 4408, 1), -- HP Increase (1x)
-(25674, 4409, 1), -- MP Increase (1x)
-(25674, 4410, 11), -- Average P. Atk.
-(25674, 4411, 11), -- Average M. Atk.
-(25674, 4412, 11), -- Average P. Def.
-(25674, 4413, 11), -- Average M. Def.
-(25674, 4414, 2), -- Standard Type
-(25674, 4415, 3), -- One-handed Sword
-(25674, 4416, 3), -- Beasts
+(25674, 4408, 1), -- HP Modifiers
+(25674, 4409, 1), -- MP Modifiers
+(25674, 4410, 11), -- P. Atk. Modifiers
+(25674, 4411, 11), -- M. Atk. Modifiers
+(25674, 4412, 11), -- P. Def. Modifiers
+(25674, 4413, 11), -- M. Def. Modifiers
+(25674, 4414, 2), -- Armor Type
+(25674, 4415, 3), -- Weapon Type
+(25674, 4416, 3), -- Races
 (25674, 4494, 1), -- Raid Boss
-(25674, 4743, 9), -- Power Strike
+(25674, 4743, 9), -- BOSS Strike
 (25674, 5464, 1), -- Wind Attacks
 (25674, 6228, 1), -- Raid Boss - Level 83
 -- Guard of Gwindorr
 (25675, 4045, 1), -- Resist Full Magic Attack
-(25675, 4408, 1), -- HP Increase (1x)
-(25675, 4409, 1), -- MP Increase (1x)
-(25675, 4410, 11), -- Average P. Atk.
-(25675, 4411, 11), -- Average M. Atk.
-(25675, 4412, 11), -- Average P. Def.
-(25675, 4413, 11), -- Average M. Def.
-(25675, 4414, 3), -- Light Armor Type
-(25675, 4415, 9), -- Bows
-(25675, 4416, 6), -- Humanoids
+(25675, 4408, 1), -- HP Modifiers
+(25675, 4409, 1), -- MP Modifiers
+(25675, 4410, 11), -- P. Atk. Modifiers
+(25675, 4411, 11), -- M. Atk. Modifiers
+(25675, 4412, 11), -- P. Def. Modifiers
+(25675, 4413, 11), -- M. Def. Modifiers
+(25675, 4414, 3), -- Armor Type
+(25675, 4415, 9), -- Weapon Type
+(25675, 4416, 6), -- Races
 (25675, 5464, 1), -- Wind Attacks
 -- Follower of Gwindorr
 (25676, 4045, 1), -- Resist Full Magic Attack
-(25676, 4408, 1), -- HP Increase (1x)
-(25676, 4409, 1), -- MP Increase (1x)
-(25676, 4410, 11), -- Average P. Atk.
-(25676, 4411, 11), -- Average M. Atk.
-(25676, 4412, 11), -- Average P. Def.
-(25676, 4413, 11), -- Average M. Def.
-(25676, 4414, 3), -- Light Armor Type
-(25676, 4415, 3), -- One-handed Sword
-(25676, 4416, 6), -- Humanoids
+(25676, 4408, 1), -- HP Modifiers
+(25676, 4409, 1), -- MP Modifiers
+(25676, 4410, 11), -- P. Atk. Modifiers
+(25676, 4411, 11), -- M. Atk. Modifiers
+(25676, 4412, 11), -- P. Def. Modifiers
+(25676, 4413, 11), -- M. Def. Modifiers
+(25676, 4414, 3), -- Armor Type
+(25676, 4415, 3), -- Weapon Type
+(25676, 4416, 6), -- Races
 (25676, 5464, 1), -- Wind Attacks
 -- Water Spirit Lian
 (25677, 4045, 1), -- Resist Full Magic Attack
 (25677, 4197, 9), -- Hold
-(25677, 4408, 1), -- HP Increase (1x)
-(25677, 4409, 1), -- MP Increase (1x)
-(25677, 4410, 11), -- Average P. Atk.
-(25677, 4411, 11), -- Average M. Atk.
-(25677, 4412, 11), -- Average P. Def.
-(25677, 4413, 11), -- Average M. Def.
-(25677, 4414, 2), -- Standard Type
-(25677, 4415, 3), -- One-handed Sword
-(25677, 4416, 13), -- Fairies
+(25677, 4408, 1), -- HP Modifiers
+(25677, 4409, 1), -- MP Modifiers
+(25677, 4410, 11), -- P. Atk. Modifiers
+(25677, 4411, 11), -- M. Atk. Modifiers
+(25677, 4412, 11), -- P. Def. Modifiers
+(25677, 4413, 11), -- M. Def. Modifiers
+(25677, 4414, 2), -- Armor Type
+(25677, 4415, 3), -- Weapon Type
+(25677, 4416, 13), -- Races
 (25677, 4494, 1), -- Raid Boss
 (25677, 5463, 1), -- Water Attacks
 (25677, 6229, 1), -- Raid Boss - Level 84
 -- Spirit of Gildor
 (25678, 4045, 1), -- Resist Full Magic Attack
-(25678, 4196, 9), -- Decrease Speed
+(25678, 4196, 9), -- Decreases Speed
 (25678, 4200, 9), -- Decrease Atk. Spd.
-(25678, 4408, 1), -- HP Increase (1x)
-(25678, 4409, 1), -- MP Increase (1x)
-(25678, 4410, 11), -- Average P. Atk.
-(25678, 4411, 11), -- Average M. Atk.
-(25678, 4412, 11), -- Average P. Def.
-(25678, 4413, 11), -- Average M. Def.
-(25678, 4414, 3), -- Light Armor Type
-(25678, 4415, 3), -- One-handed Sword
-(25678, 4416, 13), -- Fairies
+(25678, 4408, 1), -- HP Modifiers
+(25678, 4409, 1), -- MP Modifiers
+(25678, 4410, 11), -- P. Atk. Modifiers
+(25678, 4411, 11), -- M. Atk. Modifiers
+(25678, 4412, 11), -- P. Def. Modifiers
+(25678, 4413, 11), -- M. Def. Modifiers
+(25678, 4414, 3), -- Armor Type
+(25678, 4415, 3), -- Weapon Type
+(25678, 4416, 13), -- Races
 (25678, 5463, 1), -- Water Attacks
 -- Guardian of Gildor
 (25679, 4045, 1), -- Resist Full Magic Attack
-(25679, 4408, 1), -- HP Increase (1x)
-(25679, 4409, 1), -- MP Increase (1x)
-(25679, 4410, 11), -- Average P. Atk.
-(25679, 4411, 11), -- Average M. Atk.
-(25679, 4412, 11), -- Average P. Def.
-(25679, 4413, 11), -- Average M. Def.
-(25679, 4414, 3), -- Light Armor Type
-(25679, 4415, 3), -- One-handed Sword
-(25679, 4416, 13), -- Fairies
-(25679, 4743, 9), -- Power Strike
+(25679, 4408, 1), -- HP Modifiers
+(25679, 4409, 1), -- MP Modifiers
+(25679, 4410, 11), -- P. Atk. Modifiers
+(25679, 4411, 11), -- M. Atk. Modifiers
+(25679, 4412, 11), -- P. Def. Modifiers
+(25679, 4413, 11), -- M. Def. Modifiers
+(25679, 4414, 3), -- Armor Type
+(25679, 4415, 3), -- Weapon Type
+(25679, 4416, 13), -- Races
+(25679, 4743, 9), -- BOSS Strike
 (25679, 5463, 1), -- Water Attacks
 -- Giant Marpanak
 (25680, 4045, 1), -- Resist Full Magic Attack
-(25680, 4173, 8), -- Might
-(25680, 4177, 8), -- Cancel
-(25680, 4408, 1), -- HP Increase (1x)
-(25680, 4409, 1), -- MP Increase (1x)
-(25680, 4410, 11), -- Average P. Atk.
-(25680, 4411, 11), -- Average M. Atk.
-(25680, 4412, 11), -- Average P. Def.
-(25680, 4413, 11), -- Average M. Def.
-(25680, 4414, 1), -- Heavy Armor Type
-(25680, 4415, 3), -- One-handed Sword
-(25680, 4416, 11), -- Giants
+(25680, 4173, 8), -- BOSS Might
+(25680, 4177, 8), -- BOSS Cancel Magic
+(25680, 4408, 1), -- HP Modifiers
+(25680, 4409, 1), -- MP Modifiers
+(25680, 4410, 11), -- P. Atk. Modifiers
+(25680, 4411, 11), -- M. Atk. Modifiers
+(25680, 4412, 11), -- P. Def. Modifiers
+(25680, 4413, 11), -- M. Def. Modifiers
+(25680, 4414, 1), -- Armor Type
+(25680, 4415, 3), -- Weapon Type
+(25680, 4416, 11), -- Races
 (25680, 4494, 1), -- Raid Boss
-(25680, 4730, 8), -- Mortal Blow
-(25680, 4735, 8), -- Whirlwind
+(25680, 4730, 8), -- BOSS Mortal Blow
+(25680, 4735, 8), -- BOSS Spinning Slash
 (25680, 5463, 1), -- Water Attacks
 (25680, 6230, 1), -- Raid Boss - Level 82
 -- Gorgolos
 (25681, 4045, 1), -- Resist Full Magic Attack
 (25681, 4185, 8), -- Sleep
 (25681, 4190, 8), -- Decrease MP
-(25681, 4196, 8), -- Decrease Speed
-(25681, 4276, 3), -- Weak Point against Bow/Crossbow Weapons
-(25681, 4408, 1), -- HP Increase (1x)
-(25681, 4409, 1), -- MP Increase (1x)
-(25681, 4410, 11), -- Average P. Atk.
-(25681, 4411, 11), -- Average M. Atk.
-(25681, 4412, 11), -- Average P. Def.
-(25681, 4413, 11), -- Average M. Def.
-(25681, 4414, 2), -- Standard Type
-(25681, 4415, 3), -- One-handed Sword
-(25681, 4416, 2), -- Magic Creatures
+(25681, 4196, 8), -- Decreases Speed
+(25681, 4276, 3), -- Archery Attack Weak Point
+(25681, 4408, 1), -- HP Modifiers
+(25681, 4409, 1), -- MP Modifiers
+(25681, 4410, 11), -- P. Atk. Modifiers
+(25681, 4411, 11), -- M. Atk. Modifiers
+(25681, 4412, 11), -- P. Def. Modifiers
+(25681, 4413, 11), -- M. Def. Modifiers
+(25681, 4414, 2), -- Armor Type
+(25681, 4415, 3), -- Weapon Type
+(25681, 4416, 2), -- Races
 (25681, 4494, 1), -- Raid Boss
 (25681, 5463, 1), -- Water Attacks
 (25681, 6231, 1), -- Raid Boss - Level 82
 -- Cursed Life
 (25682, 4045, 1), -- Resist Full Magic Attack
-(25682, 4276, 3), -- Weak Point against Bow/Crossbow Weapons
-(25682, 4408, 1), -- HP Increase (1x)
-(25682, 4409, 1), -- MP Increase (1x)
-(25682, 4410, 11), -- Average P. Atk.
-(25682, 4411, 11), -- Average M. Atk.
-(25682, 4412, 11), -- Average P. Def.
-(25682, 4413, 11), -- Average M. Def.
-(25682, 4414, 1), -- Heavy Armor Type
-(25682, 4415, 1), -- Bare Hands
-(25682, 4416, 2), -- Magic Creatures
+(25682, 4276, 3), -- Archery Attack Weak Point
+(25682, 4408, 1), -- HP Modifiers
+(25682, 4409, 1), -- MP Modifiers
+(25682, 4410, 11), -- P. Atk. Modifiers
+(25682, 4411, 11), -- M. Atk. Modifiers
+(25682, 4412, 11), -- P. Def. Modifiers
+(25682, 4413, 11), -- M. Def. Modifiers
+(25682, 4414, 1), -- Armor Type
+(25682, 4415, 1), -- Weapon Type
+(25682, 4416, 2), -- Races
 (25682, 5463, 1), -- Water Attacks
 -- Cursed Soul
 (25683, 4045, 1), -- Resist Full Magic Attack
-(25683, 4276, 3), -- Weak Point against Bow/Crossbow Weapons
-(25683, 4408, 1), -- HP Increase (1x)
-(25683, 4409, 1), -- MP Increase (1x)
-(25683, 4410, 11), -- Average P. Atk.
-(25683, 4411, 11), -- Average M. Atk.
-(25683, 4412, 11), -- Average P. Def.
-(25683, 4413, 11), -- Average M. Def.
-(25683, 4414, 1), -- Heavy Armor Type
-(25683, 4415, 1), -- Bare Hands
-(25683, 4416, 2), -- Magic Creatures
-(25683, 4743, 8), -- Power Strike
+(25683, 4276, 3), -- Archery Attack Weak Point
+(25683, 4408, 1), -- HP Modifiers
+(25683, 4409, 1), -- MP Modifiers
+(25683, 4410, 11), -- P. Atk. Modifiers
+(25683, 4411, 11), -- M. Atk. Modifiers
+(25683, 4412, 11), -- P. Def. Modifiers
+(25683, 4413, 11), -- M. Def. Modifiers
+(25683, 4414, 1), -- Armor Type
+(25683, 4415, 1), -- Weapon Type
+(25683, 4416, 2), -- Races
+(25683, 4743, 8), -- BOSS Strike
 (25683, 5463, 1), -- Water Attacks
 -- Last Titan Utenus
 (25684, 4045, 1), -- Resist Full Magic Attack
 (25684, 4197, 8), -- Hold
-(25684, 4273, 4), -- Resist Daggers/Rapier Weapon
-(25684, 4274, 4), -- Blunt Weapon Weak Point
-(25684, 4408, 1), -- HP Increase (1x)
-(25684, 4409, 1), -- MP Increase (1x)
-(25684, 4410, 11), -- Average P. Atk.
-(25684, 4411, 11), -- Average M. Atk.
-(25684, 4412, 11), -- Average P. Def.
-(25684, 4413, 11), -- Average M. Def.
-(25684, 4414, 1), -- Heavy Armor Type
-(25684, 4415, 5), -- Blunt Weapons
-(25684, 4416, 11), -- Giants
+(25684, 4273, 4), -- Resist Dagger
+(25684, 4274, 4), -- Blunt Attack Weak Point
+(25684, 4408, 1), -- HP Modifiers
+(25684, 4409, 1), -- MP Modifiers
+(25684, 4410, 11), -- P. Atk. Modifiers
+(25684, 4411, 11), -- M. Atk. Modifiers
+(25684, 4412, 11), -- P. Def. Modifiers
+(25684, 4413, 11), -- M. Def. Modifiers
+(25684, 4414, 1), -- Armor Type
+(25684, 4415, 5), -- Weapon Type
+(25684, 4416, 11), -- Races
 (25684, 4444, 3), -- Higher Resist Bow/Crossbow Weapons
 (25684, 4494, 1), -- Raid Boss
 (25684, 5463, 1), -- Water Attacks
 (25684, 6232, 1), -- Raid Boss - Level 83
 -- Utenus' Wizard
 (25685, 4045, 1), -- Resist Full Magic Attack
-(25685, 4195, 8), -- Twister
+(25685, 4195, 8), -- BOSS Twister
 (25685, 4205, 8), -- Paralysis
-(25685, 4273, 4), -- Resist Daggers/Rapier Weapon
-(25685, 4274, 4), -- Blunt Weapon Weak Point
-(25685, 4408, 1), -- HP Increase (1x)
-(25685, 4409, 1), -- MP Increase (1x)
-(25685, 4410, 11), -- Average P. Atk.
-(25685, 4411, 11), -- Average M. Atk.
-(25685, 4412, 11), -- Average P. Def.
-(25685, 4413, 11), -- Average M. Def.
-(25685, 4414, 1), -- Heavy Armor Type
-(25685, 4415, 3), -- One-handed Sword
-(25685, 4416, 11), -- Giants
+(25685, 4273, 4), -- Resist Dagger
+(25685, 4274, 4), -- Blunt Attack Weak Point
+(25685, 4408, 1), -- HP Modifiers
+(25685, 4409, 1), -- MP Modifiers
+(25685, 4410, 11), -- P. Atk. Modifiers
+(25685, 4411, 11), -- M. Atk. Modifiers
+(25685, 4412, 11), -- P. Def. Modifiers
+(25685, 4413, 11), -- M. Def. Modifiers
+(25685, 4414, 1), -- Armor Type
+(25685, 4415, 3), -- Weapon Type
+(25685, 4416, 11), -- Races
 (25685, 4444, 3), -- Higher Resist Bow/Crossbow Weapons
 (25685, 5463, 1), -- Water Attacks
 -- Utenus' Guard
 (25686, 4045, 1), -- Resist Full Magic Attack
-(25686, 4273, 4), -- Resist Daggers/Rapier Weapon
-(25686, 4274, 4), -- Blunt Weapon Weak Point
-(25686, 4408, 1), -- HP Increase (1x)
-(25686, 4409, 1), -- MP Increase (1x)
-(25686, 4410, 11), -- Average P. Atk.
-(25686, 4411, 11), -- Average M. Atk.
-(25686, 4412, 11), -- Average P. Def.
-(25686, 4413, 11), -- Average M. Def.
-(25686, 4414, 1), -- Heavy Armor Type
-(25686, 4415, 3), -- One-handed Sword
-(25686, 4416, 2), -- Magic Creatures
+(25686, 4273, 4), -- Resist Dagger
+(25686, 4274, 4), -- Blunt Attack Weak Point
+(25686, 4408, 1), -- HP Modifiers
+(25686, 4409, 1), -- MP Modifiers
+(25686, 4410, 11), -- P. Atk. Modifiers
+(25686, 4411, 11), -- M. Atk. Modifiers
+(25686, 4412, 11), -- P. Def. Modifiers
+(25686, 4413, 11), -- M. Def. Modifiers
+(25686, 4414, 1), -- Armor Type
+(25686, 4415, 3), -- Weapon Type
+(25686, 4416, 2), -- Races
 (25686, 4444, 3), -- Higher Resist Bow/Crossbow Weapons
-(25686, 4743, 8), -- Power Strike
+(25686, 4743, 8), -- BOSS Strike
 (25686, 5463, 1), -- Water Attacks
 -- Hekaton Prime
 (25687, 4045, 1), -- Resist Full Magic Attack
 (25687, 4184, 8), -- Decrease Atk. Spd.
-(25687, 4189, 8), -- Paralysis
-(25687, 4195, 8), -- Twister
-(25687, 4408, 1), -- HP Increase (1x)
-(25687, 4409, 1), -- MP Increase (1x)
-(25687, 4410, 11), -- Average P. Atk.
-(25687, 4411, 11), -- Average M. Atk.
-(25687, 4412, 11), -- Average P. Def.
-(25687, 4413, 11), -- Average M. Def.
-(25687, 4414, 2), -- Standard Type
-(25687, 4415, 5), -- Blunt Weapons
-(25687, 4416, 2), -- Magic Creatures
+(25687, 4189, 8); -- Paralysis
+
+INSERT INTO `npcskills` VALUES
+(25687, 4195, 8), -- BOSS Twister
+(25687, 4408, 1), -- HP Modifiers
+(25687, 4409, 1), -- MP Modifiers
+(25687, 4410, 11), -- P. Atk. Modifiers
+(25687, 4411, 11), -- M. Atk. Modifiers
+(25687, 4412, 11), -- P. Def. Modifiers
+(25687, 4413, 11), -- M. Def. Modifiers
+(25687, 4414, 2), -- Armor Type
+(25687, 4415, 5), -- Weapon Type
+(25687, 4416, 2), -- Races
 (25687, 4494, 1), -- Raid Boss
 (25687, 5463, 1), -- Water Attacks
 (25687, 6233, 1), -- Raid Boss - Level 83
 -- Hekaton Cottus
 (25688, 4045, 1), -- Resist Full Magic Attack
-(25688, 4408, 1), -- HP Increase (1x)
-(25688, 4409, 1), -- MP Increase (1x)
-(25688, 4410, 11), -- Average P. Atk.
-(25688, 4411, 11), -- Average M. Atk.
-(25688, 4412, 11), -- Average P. Def.
-(25688, 4413, 11), -- Average M. Def.
-(25688, 4414, 2), -- Standard Type
-(25688, 4415, 3), -- One-handed Sword
-(25688, 4416, 2), -- Magic Creatures
-(25688, 4720, 8), -- Power Strike
+(25688, 4408, 1), -- HP Modifiers
+(25688, 4409, 1), -- MP Modifiers
+(25688, 4410, 11), -- P. Atk. Modifiers
+(25688, 4411, 11), -- M. Atk. Modifiers
+(25688, 4412, 11), -- P. Def. Modifiers
+(25688, 4413, 11), -- M. Def. Modifiers
+(25688, 4414, 2), -- Armor Type
+(25688, 4415, 3), -- Weapon Type
+(25688, 4416, 2), -- Races
+(25688, 4720, 8), -- BOSS Strike
 (25688, 5463, 1), -- Water Attacks
 -- Hekaton Chires
 (25689, 4045, 1), -- Resist Full Magic Attack
-(25689, 4408, 1), -- HP Increase (1x)
-(25689, 4409, 1), -- MP Increase (1x)
-(25689, 4410, 11), -- Average P. Atk.
-(25689, 4411, 11), -- Average M. Atk.
-(25689, 4412, 11), -- Average P. Def.
-(25689, 4413, 11), -- Average M. Def.
-(25689, 4414, 1), -- Heavy Armor Type
-(25689, 4415, 3), -- One-handed Sword
-(25689, 4416, 11), -- Giants
+(25689, 4408, 1), -- HP Modifiers
+(25689, 4409, 1), -- MP Modifiers
+(25689, 4410, 11), -- P. Atk. Modifiers
+(25689, 4411, 11), -- M. Atk. Modifiers
+(25689, 4412, 11), -- P. Def. Modifiers
+(25689, 4413, 11), -- M. Def. Modifiers
+(25689, 4414, 1), -- Armor Type
+(25689, 4415, 3), -- Weapon Type
+(25689, 4416, 11), -- Races
 (25689, 5463, 1), -- Water Attacks
 -- Aenkinel
 (25690, 4045, 1), -- Resist Full Magic Attack
-(25690, 4173, 9), -- Might
-(25690, 4408, 1), -- HP Increase (1x)
-(25690, 4409, 1), -- MP Increase (1x)
-(25690, 4410, 11), -- Average P. Atk.
-(25690, 4411, 11), -- Average M. Atk.
-(25690, 4412, 11), -- Average P. Def.
-(25690, 4413, 11), -- Average M. Def.
-(25690, 4414, 2), -- Standard Type
-(25690, 4415, 1), -- Bare Hands
-(25690, 4416, 9), -- Demons
+(25690, 4173, 9), -- BOSS Might
+(25690, 4408, 1), -- HP Modifiers
+(25690, 4409, 1), -- MP Modifiers
+(25690, 4410, 11), -- P. Atk. Modifiers
+(25690, 4411, 11), -- M. Atk. Modifiers
+(25690, 4412, 11), -- P. Def. Modifiers
+(25690, 4413, 11), -- M. Def. Modifiers
+(25690, 4414, 2), -- Armor Type
+(25690, 4415, 1), -- Weapon Type
+(25690, 4416, 9), -- Races
 (25690, 4494, 1), -- Raid Boss
 (25690, 4584, 10), -- Reducing P. Def Stun
-(25690, 5334, 5), -- Power Strike
-(25690, 5336, 5), -- Whirlwind
+(25690, 5334, 5), -- NPC(party) - Physical Single Close Range Attack
+(25690, 5336, 5), -- NPC(party) - Physical Range Close Range Attack
 (25690, 5467, 1), -- Dark Attacks
 (25690, 6217, 1), -- Raid Boss - Level 81
 -- Aenkinel
 (25691, 4045, 1), -- Resist Full Magic Attack
-(25691, 4173, 9), -- Might
-(25691, 4408, 1), -- HP Increase (1x)
-(25691, 4409, 1), -- MP Increase (1x)
-(25691, 4410, 11), -- Average P. Atk.
-(25691, 4411, 11), -- Average M. Atk.
-(25691, 4412, 11), -- Average P. Def.
-(25691, 4413, 11), -- Average M. Def.
-(25691, 4414, 2), -- Standard Type
-(25691, 4415, 3), -- One-handed Sword
-(25691, 4416, 9), -- Demons
+(25691, 4173, 9), -- BOSS Might
+(25691, 4408, 1), -- HP Modifiers
+(25691, 4409, 1), -- MP Modifiers
+(25691, 4410, 11), -- P. Atk. Modifiers
+(25691, 4411, 11), -- M. Atk. Modifiers
+(25691, 4412, 11), -- P. Def. Modifiers
+(25691, 4413, 11), -- M. Def. Modifiers
+(25691, 4414, 2), -- Armor Type
+(25691, 4415, 3), -- Weapon Type
+(25691, 4416, 9), -- Races
 (25691, 4494, 1), -- Raid Boss
 (25691, 4584, 10), -- Reducing P. Def Stun
-(25691, 5334, 5), -- Power Strike
-(25691, 5336, 5), -- Whirlwind
+(25691, 5334, 5), -- NPC(party) - Physical Single Close Range Attack
+(25691, 5336, 5), -- NPC(party) - Physical Range Close Range Attack
 (25691, 5467, 1), -- Dark Attacks
 (25691, 6218, 1), -- Raid Boss - Level 81
 -- Aenkinel
 (25692, 4045, 1), -- Resist Full Magic Attack
-(25692, 4173, 9), -- Might
-(25692, 4408, 1), -- HP Increase (1x)
-(25692, 4409, 1), -- MP Increase (1x)
-(25692, 4410, 11), -- Average P. Atk.
-(25692, 4411, 11), -- Average M. Atk.
-(25692, 4412, 11), -- Average P. Def.
-(25692, 4413, 11), -- Average M. Def.
-(25692, 4414, 2), -- Standard Type
-(25692, 4415, 3), -- One-handed Sword
-(25692, 4416, 9), -- Demons
+(25692, 4173, 9), -- BOSS Might
+(25692, 4408, 1), -- HP Modifiers
+(25692, 4409, 1), -- MP Modifiers
+(25692, 4410, 11), -- P. Atk. Modifiers
+(25692, 4411, 11), -- M. Atk. Modifiers
+(25692, 4412, 11), -- P. Def. Modifiers
+(25692, 4413, 11), -- M. Def. Modifiers
+(25692, 4414, 2), -- Armor Type
+(25692, 4415, 3), -- Weapon Type
+(25692, 4416, 9), -- Races
 (25692, 4494, 1), -- Raid Boss
 (25692, 4584, 10), -- Reducing P. Def Stun
-(25692, 5334, 5), -- Power Strike
-(25692, 5336, 5), -- Whirlwind
+(25692, 5334, 5), -- NPC(party) - Physical Single Close Range Attack
+(25692, 5336, 5), -- NPC(party) - Physical Range Close Range Attack
 (25692, 5467, 1), -- Dark Attacks
 (25692, 6219, 1), -- Raid Boss - Level 81
 -- Aenkinel
 (25693, 4045, 1), -- Resist Full Magic Attack
-(25693, 4173, 9), -- Might
-(25693, 4408, 1), -- HP Increase (1x)
-(25693, 4409, 1), -- MP Increase (1x)
-(25693, 4410, 11), -- Average P. Atk.
-(25693, 4411, 11), -- Average M. Atk.
-(25693, 4412, 11), -- Average P. Def.
-(25693, 4413, 11), -- Average M. Def.
-(25693, 4414, 2), -- Standard Type
-(25693, 4415, 3), -- One-handed Sword
-(25693, 4416, 9), -- Demons
+(25693, 4173, 9), -- BOSS Might
+(25693, 4408, 1), -- HP Modifiers
+(25693, 4409, 1), -- MP Modifiers
+(25693, 4410, 11), -- P. Atk. Modifiers
+(25693, 4411, 11), -- M. Atk. Modifiers
+(25693, 4412, 11), -- P. Def. Modifiers
+(25693, 4413, 11), -- M. Def. Modifiers
+(25693, 4414, 2), -- Armor Type
+(25693, 4415, 3), -- Weapon Type
+(25693, 4416, 9), -- Races
 (25693, 4494, 1), -- Raid Boss
 (25693, 4584, 10), -- Reducing P. Def Stun
-(25693, 5334, 5), -- Power Strike
-(25693, 5336, 5), -- Whirlwind
+(25693, 5334, 5), -- NPC(party) - Physical Single Close Range Attack
+(25693, 5336, 5), -- NPC(party) - Physical Range Close Range Attack
 (25693, 5467, 1), -- Dark Attacks
 (25693, 6220, 1), -- Raid Boss - Level 81
 -- Aenkinel
 (25694, 4045, 1), -- Resist Full Magic Attack
-(25694, 4173, 9), -- Might
-(25694, 4408, 1), -- HP Increase (1x)
-(25694, 4409, 1), -- MP Increase (1x)
-(25694, 4410, 11), -- Average P. Atk.
-(25694, 4411, 11), -- Average M. Atk.
-(25694, 4412, 11), -- Average P. Def.
-(25694, 4413, 11), -- Average M. Def.
-(25694, 4414, 2), -- Standard Type
-(25694, 4415, 19), -- Dual-Sword Weapons
-(25694, 4416, 9), -- Demons
+(25694, 4173, 9), -- BOSS Might
+(25694, 4408, 1), -- HP Modifiers
+(25694, 4409, 1), -- MP Modifiers
+(25694, 4410, 11), -- P. Atk. Modifiers
+(25694, 4411, 11), -- M. Atk. Modifiers
+(25694, 4412, 11), -- P. Def. Modifiers
+(25694, 4413, 11), -- M. Def. Modifiers
+(25694, 4414, 2), -- Armor Type
+(25694, 4415, 19), -- Weapon Type
+(25694, 4416, 9), -- Races
 (25694, 4494, 1), -- Raid Boss
 (25694, 4584, 10), -- Reducing P. Def Stun
-(25694, 5334, 5), -- Power Strike
-(25694, 5336, 5), -- Whirlwind
+(25694, 5334, 5), -- NPC(party) - Physical Single Close Range Attack
+(25694, 5336, 5), -- NPC(party) - Physical Range Close Range Attack
 (25694, 5467, 1), -- Dark Attacks
 (25694, 6221, 1), -- Raid Boss - Level 82
 -- Aenkinel
 (25695, 4045, 1), -- Resist Full Magic Attack
-(25695, 4173, 9), -- Might
-(25695, 4408, 1), -- HP Increase (1x)
-(25695, 4409, 1), -- MP Increase (1x)
-(25695, 4410, 11), -- Average P. Atk.
-(25695, 4411, 11), -- Average M. Atk.
-(25695, 4412, 11), -- Average P. Def.
-(25695, 4413, 11), -- Average M. Def.
-(25695, 4414, 2), -- Standard Type
-(25695, 4415, 1), -- Bare Hands
-(25695, 4416, 9), -- Demons
+(25695, 4173, 9), -- BOSS Might
+(25695, 4408, 1), -- HP Modifiers
+(25695, 4409, 1), -- MP Modifiers
+(25695, 4410, 11), -- P. Atk. Modifiers
+(25695, 4411, 11), -- M. Atk. Modifiers
+(25695, 4412, 11), -- P. Def. Modifiers
+(25695, 4413, 11), -- M. Def. Modifiers
+(25695, 4414, 2), -- Armor Type
+(25695, 4415, 1), -- Weapon Type
+(25695, 4416, 9), -- Races
 (25695, 4494, 1), -- Raid Boss
 (25695, 4584, 10), -- Reducing P. Def Stun
-(25695, 5334, 5), -- Power Strike
-(25695, 5336, 5), -- Whirlwind
+(25695, 5334, 5), -- NPC(party) - Physical Single Close Range Attack
+(25695, 5336, 5), -- NPC(party) - Physical Range Close Range Attack
 (25695, 5467, 1), -- Dark Attacks
 (25695, 6222, 1), -- Raid Boss - Level 84
 -- Taklacan
 (25696, 4045, 1), -- Resist Full Magic Attack
-(25696, 4408, 1), -- HP Increase (1x)
-(25696, 4409, 1), -- MP Increase (1x)
-(25696, 4410, 11), -- Average P. Atk.
-(25696, 4411, 11), -- Average M. Atk.
-(25696, 4412, 11), -- Average P. Def.
-(25696, 4413, 11), -- Average M. Def.
-(25696, 4414, 2), -- Standard Type
-(25696, 4415, 13), -- Two-handed Sword
-(25696, 4416, 3), -- Beasts
+(25696, 4408, 1), -- HP Modifiers
+(25696, 4409, 1), -- MP Modifiers
+(25696, 4410, 11), -- P. Atk. Modifiers
+(25696, 4411, 11), -- M. Atk. Modifiers
+(25696, 4412, 11), -- P. Def. Modifiers
+(25696, 4413, 11), -- M. Def. Modifiers
+(25696, 4414, 2), -- Armor Type
+(25696, 4415, 13), -- Weapon Type
+(25696, 4416, 3), -- Races
 (25696, 4494, 1), -- Raid Boss
 (25696, 5465, 1), -- Earth Attacks
-(25696, 5622, 3), -- Quadruple Skill Attack
+(25696, 5622, 3), -- Double Skill Attack
 (25696, 6378, 1), -- Earth Shift
 (25696, 6379, 1), -- Blood Spurt
 (25696, 6380, 1), -- Bistakon Roar
 (25696, 6381, 2), -- Bistakon Soul Beam
 (25696, 6650, 1), -- Tacrakahn's Alienation
-(25696, 6652, 1), -- Raid Boss - Level 89
+(25696, 6652, 1), -- Level 85 Raid Boss
 -- Torumba
 (25697, 4045, 1), -- Resist Full Magic Attack
-(25697, 4408, 1), -- HP Increase (1x)
-(25697, 4409, 1), -- MP Increase (1x)
-(25697, 4410, 11), -- Average P. Atk.
-(25697, 4411, 11), -- Average M. Atk.
-(25697, 4412, 11), -- Average P. Def.
-(25697, 4413, 11), -- Average M. Def.
-(25697, 4414, 2), -- Standard Type
-(25697, 4415, 13), -- Two-handed Sword
-(25697, 4416, 3), -- Beasts
+(25697, 4408, 1), -- HP Modifiers
+(25697, 4409, 1), -- MP Modifiers
+(25697, 4410, 11), -- P. Atk. Modifiers
+(25697, 4411, 11), -- M. Atk. Modifiers
+(25697, 4412, 11), -- P. Def. Modifiers
+(25697, 4413, 11), -- M. Def. Modifiers
+(25697, 4414, 2), -- Armor Type
+(25697, 4415, 13), -- Weapon Type
+(25697, 4416, 3), -- Races
 (25697, 4494, 1), -- Raid Boss
 (25697, 5465, 1), -- Earth Attacks
 (25697, 6403, 1), -- Torumba Numbing Poison
 (25697, 6404, 1), -- Torumba Poison Swing
 (25697, 6405, 1), -- Torumba Roar
-(25697, 6653, 1), -- Raid Boss - Level 89
+(25697, 6653, 1), -- Level 85 Raid Boss
 -- Dopagen
 (25698, 4045, 1), -- Resist Full Magic Attack
-(25698, 4408, 1), -- HP Increase (1x)
-(25698, 4409, 1), -- MP Increase (1x)
-(25698, 4410, 11), -- Average P. Atk.
-(25698, 4411, 11), -- Average M. Atk.
-(25698, 4412, 11), -- Average P. Def.
-(25698, 4413, 11), -- Average M. Def.
-(25698, 4414, 2), -- Standard Type
-(25698, 4415, 13), -- Two-handed Sword
-(25698, 4416, 3), -- Beasts
+(25698, 4408, 1), -- HP Modifiers
+(25698, 4409, 1), -- MP Modifiers
+(25698, 4410, 11), -- P. Atk. Modifiers
+(25698, 4411, 11), -- M. Atk. Modifiers
+(25698, 4412, 11), -- P. Def. Modifiers
+(25698, 4413, 11), -- M. Def. Modifiers
+(25698, 4414, 2), -- Armor Type
+(25698, 4415, 13), -- Weapon Type
+(25698, 4416, 3), -- Races
 (25698, 4494, 1), -- Raid Boss
 (25698, 5465, 1), -- Earth Attacks
-(25698, 5622, 2), -- Triple Skill Attack
+(25698, 5622, 2), -- Double Skill Attack
 (25698, 6376, 1), -- Sonic Strike
 (25698, 6390, 1), -- Cokrakon Sonic Explosion
 (25698, 6391, 1), -- Cokrakon Sonic Slash
 (25698, 6392, 1), -- Cokrakon Sonic Shot
-(25698, 6654, 1), -- Raid Boss - Level 89
+(25698, 6654, 1), -- Level 85 Raid Boss
 -- Glakias
 (25699, 4045, 1), -- Resist Full Magic Attack
-(25699, 4408, 1), -- HP Increase (1x)
-(25699, 4409, 1), -- MP Increase (1x)
-(25699, 4410, 15), -- Strong P. Atk.
-(25699, 4411, 11), -- Average M. Atk.
-(25699, 4412, 11), -- Average P. Def.
-(25699, 4413, 11), -- Average M. Def.
-(25699, 4414, 2), -- Standard Type
-(25699, 4415, 3), -- One-handed Sword
-(25699, 4416, 6), -- Humanoids
+(25699, 4408, 1), -- HP Modifiers
+(25699, 4409, 1), -- MP Modifiers
+(25699, 4410, 15), -- P. Atk. Modifiers
+(25699, 4411, 11), -- M. Atk. Modifiers
+(25699, 4412, 11), -- P. Def. Modifiers
+(25699, 4413, 11), -- M. Def. Modifiers
+(25699, 4414, 2), -- Armor Type
+(25699, 4415, 3), -- Weapon Type
+(25699, 4416, 6), -- Races
 (25699, 4494, 1), -- Raid Boss
 (25699, 5463, 1), -- Water Attacks
 (25699, 6293, 1), -- Power Strike
@@ -69604,15 +69865,15 @@ INSERT INTO `npcskills` VALUES
 (25699, 6661, 1), -- Level 85 Raid Boss
 -- Glakias
 (25700, 4045, 1), -- Resist Full Magic Attack
-(25700, 4408, 1), -- HP Increase (1x)
-(25700, 4409, 1), -- MP Increase (1x)
-(25700, 4410, 16), -- Very Strong P. Atk.
-(25700, 4411, 11), -- Average M. Atk.
-(25700, 4412, 11), -- Average P. Def.
-(25700, 4413, 11), -- Average M. Def.
-(25700, 4414, 2), -- Standard Type
-(25700, 4415, 3), -- One-handed Sword
-(25700, 4416, 6), -- Humanoids
+(25700, 4408, 1), -- HP Modifiers
+(25700, 4409, 1), -- MP Modifiers
+(25700, 4410, 16), -- P. Atk. Modifiers
+(25700, 4411, 11), -- M. Atk. Modifiers
+(25700, 4412, 11), -- P. Def. Modifiers
+(25700, 4413, 11), -- M. Def. Modifiers
+(25700, 4414, 2), -- Armor Type
+(25700, 4415, 3), -- Weapon Type
+(25700, 4416, 6), -- Races
 (25700, 4494, 1), -- Raid Boss
 (25700, 5463, 1), -- Water Attacks
 (25700, 6293, 1), -- Power Strike
@@ -69623,15 +69884,15 @@ INSERT INTO `npcskills` VALUES
 (25700, 6661, 1), -- Level 85 Raid Boss
 -- Anais
 (25701, 4045, 1), -- Resist Full Magic Attack
-(25701, 4408, 1), -- HP Increase (1x)
-(25701, 4409, 1), -- MP Increase (1x)
-(25701, 4410, 11), -- Average P. Atk.
-(25701, 4411, 11), -- Average M. Atk.
-(25701, 4412, 11), -- Average P. Def.
-(25701, 4413, 11), -- Average M. Def.
-(25701, 4414, 2), -- Standard Type
-(25701, 4415, 5), -- Blunt Weapons
-(25701, 4416, 8), -- Angels
+(25701, 4408, 1), -- HP Modifiers
+(25701, 4409, 1), -- MP Modifiers
+(25701, 4410, 11), -- P. Atk. Modifiers
+(25701, 4411, 11), -- M. Atk. Modifiers
+(25701, 4412, 11), -- P. Def. Modifiers
+(25701, 4413, 11), -- M. Def. Modifiers
+(25701, 4414, 2), -- Armor Type
+(25701, 4415, 5), -- Weapon Type
+(25701, 4416, 8), -- Races
 (25701, 4494, 1), -- Raid Boss
 (25701, 5466, 1), -- Holy Attacks
 (25701, 6323, 1), -- Divine Bolt
@@ -69640,190 +69901,188 @@ INSERT INTO `npcskills` VALUES
 (25701, 6664, 1), -- Level 84 Raid Boss
 -- Guard of the Grail
 (25702, 4045, 1), -- Resist Full Magic Attack
-(25702, 4408, 1), -- HP Increase (1x)
-(25702, 4409, 1), -- MP Increase (1x)
-(25702, 4410, 11), -- Average P. Atk.
-(25702, 4411, 11), -- Average M. Atk.
-(25702, 4412, 11), -- Average P. Def.
-(25702, 4413, 11), -- Average M. Def.
-(25702, 4414, 2), -- Standard Type
-(25702, 4415, 5), -- Blunt Weapons
-(25702, 4416, 2), -- Magic Creatures
+(25702, 4408, 1), -- HP Modifiers
+(25702, 4409, 1), -- MP Modifiers
+(25702, 4410, 11), -- P. Atk. Modifiers
+(25702, 4411, 11), -- M. Atk. Modifiers
+(25702, 4412, 11), -- P. Def. Modifiers
+(25702, 4413, 11), -- M. Def. Modifiers
+(25702, 4414, 2), -- Armor Type
+(25702, 4415, 5), -- Weapon Type
+(25702, 4416, 2), -- Races
 (25702, 5466, 1), -- Holy Attacks
 (25702, 6326, 1), -- Martyr's Happiness
 -- Gigantic Golem
 (25703, 4045, 1), -- Resist Full Magic Attack
-(25703, 4408, 1), -- HP Increase (1x)
-(25703, 4409, 1), -- MP Increase (1x)
-(25703, 4410, 11), -- Average P. Atk.
-(25703, 4411, 11), -- Average M. Atk.
-(25703, 4412, 11), -- Average P. Def.
-(25703, 4413, 11), -- Average M. Def.
-(25703, 4414, 1), -- Heavy Armor Type
-(25703, 4415, 5); -- Blunt Weapons
-
-INSERT INTO `npcskills` VALUES
-(25703, 4416, 2), -- Magic Creatures
+(25703, 4408, 1), -- HP Modifiers
+(25703, 4409, 1), -- MP Modifiers
+(25703, 4410, 11), -- P. Atk. Modifiers
+(25703, 4411, 11), -- M. Atk. Modifiers
+(25703, 4412, 11), -- P. Def. Modifiers
+(25703, 4413, 11), -- M. Def. Modifiers
+(25703, 4414, 1), -- Armor Type
+(25703, 4415, 5), -- Weapon Type
+(25703, 4416, 2), -- Races
 (25703, 4494, 1), -- Raid Boss
 (25703, 5465, 1), -- Earth Attacks
 (25703, 6263, 1), -- EMP Shock
-(25703, 6608, 10), -- Earth Shot
+(25703, 6608, 10), -- NPC earth shot
 (25703, 6663, 1), -- Level 76 Raid Boss
 -- Gigantic Golem Subordinate
 (25704, 4045, 1), -- Resist Full Magic Attack
-(25704, 4408, 1), -- HP Increase (1x)
-(25704, 4409, 1), -- MP Increase (1x)
-(25704, 4410, 11), -- Average P. Atk.
-(25704, 4411, 11), -- Average M. Atk.
-(25704, 4412, 11), -- Average P. Def.
-(25704, 4413, 11), -- Average M. Def.
-(25704, 4414, 1), -- Heavy Armor Type
-(25704, 4415, 3), -- One-handed Sword
-(25704, 4416, 2), -- Magic Creatures
+(25704, 4408, 1), -- HP Modifiers
+(25704, 4409, 1), -- MP Modifiers
+(25704, 4410, 11), -- P. Atk. Modifiers
+(25704, 4411, 11), -- M. Atk. Modifiers
+(25704, 4412, 11), -- P. Def. Modifiers
+(25704, 4413, 11), -- M. Def. Modifiers
+(25704, 4414, 1), -- Armor Type
+(25704, 4415, 3), -- Weapon Type
+(25704, 4416, 2), -- Races
 (25704, 5465, 1), -- Earth Attacks
-(25704, 6602, 10), -- Earth Attack
+(25704, 6602, 10), -- NPC earth attack
 -- Gigantic Boom Golem
 (25705, 4045, 1), -- Resist Full Magic Attack
-(25705, 4408, 1), -- HP Increase (1x)
-(25705, 4409, 1), -- MP Increase (1x)
-(25705, 4410, 11), -- Average P. Atk.
-(25705, 4411, 11), -- Average M. Atk.
-(25705, 4412, 11), -- Average P. Def.
-(25705, 4413, 11), -- Average M. Def.
-(25705, 4414, 2), -- Standard Type
-(25705, 4415, 3), -- One-handed Sword
-(25705, 4416, 2), -- Magic Creatures
+(25705, 4408, 1), -- HP Modifiers
+(25705, 4409, 1), -- MP Modifiers
+(25705, 4410, 11), -- P. Atk. Modifiers
+(25705, 4411, 11), -- M. Atk. Modifiers
+(25705, 4412, 11), -- P. Def. Modifiers
+(25705, 4413, 11), -- M. Def. Modifiers
+(25705, 4414, 2), -- Armor Type
+(25705, 4415, 3), -- Weapon Type
+(25705, 4416, 2), -- Races
 (25705, 6264, 1), -- Golem Boom
 (25705, 6265, 1), -- Smoke
 -- Lost Watcher
 (25706, 4047, 9), -- Hold
-(25706, 4408, 1), -- HP Increase (1x)
-(25706, 4409, 1), -- MP Increase (1x)
-(25706, 4410, 11), -- Average P. Atk.
-(25706, 4411, 11), -- Average M. Atk.
-(25706, 4412, 11), -- Average P. Def.
-(25706, 4413, 11), -- Average M. Def.
-(25706, 4414, 2), -- Standard Type
-(25706, 4415, 3), -- One-handed Sword
-(25706, 4416, 6), -- Humanoids
+(25706, 4408, 1), -- HP Modifiers
+(25706, 4409, 1), -- MP Modifiers
+(25706, 4410, 11), -- P. Atk. Modifiers
+(25706, 4411, 11), -- M. Atk. Modifiers
+(25706, 4412, 11), -- P. Def. Modifiers
+(25706, 4413, 11), -- M. Def. Modifiers
+(25706, 4414, 2), -- Armor Type
+(25706, 4415, 3), -- Weapon Type
+(25706, 4416, 6), -- Races
 (25706, 5467, 1), -- Dark Attacks
-(25706, 6693, 9), -- Power Strike
+(25706, 6693, 9), -- NPC Strike
 -- Lost Watcher
 (25707, 4047, 9), -- Hold
-(25707, 4408, 1), -- HP Increase (1x)
-(25707, 4409, 1), -- MP Increase (1x)
-(25707, 4410, 11), -- Average P. Atk.
-(25707, 4411, 11), -- Average M. Atk.
-(25707, 4412, 11), -- Average P. Def.
-(25707, 4413, 11), -- Average M. Def.
-(25707, 4414, 2), -- Standard Type
-(25707, 4415, 3), -- One-handed Sword
-(25707, 4416, 6), -- Humanoids
+(25707, 4408, 1), -- HP Modifiers
+(25707, 4409, 1), -- MP Modifiers
+(25707, 4410, 11), -- P. Atk. Modifiers
+(25707, 4411, 11), -- M. Atk. Modifiers
+(25707, 4412, 11), -- P. Def. Modifiers
+(25707, 4413, 11), -- M. Def. Modifiers
+(25707, 4414, 2), -- Armor Type
+(25707, 4415, 3), -- Weapon Type
+(25707, 4416, 6), -- Races
 (25707, 5467, 1), -- Dark Attacks
-(25707, 6693, 9), -- Power Strike
+(25707, 6693, 9), -- NPC Strike
 -- Lost Beholder
-(25708, 4098, 10), -- Silence
-(25708, 4408, 1), -- HP Increase (1x)
-(25708, 4409, 1), -- MP Increase (1x)
-(25708, 4410, 11), -- Average P. Atk.
-(25708, 4411, 11), -- Average M. Atk.
-(25708, 4412, 11), -- Average P. Def.
-(25708, 4413, 11), -- Average M. Def.
-(25708, 4414, 2), -- Standard Type
-(25708, 4415, 3), -- One-handed Sword
-(25708, 4416, 1), -- Undead
-(25708, 4613, 9), -- Clan Heal
+(25708, 4098, 10), -- Magic Skill Block
+(25708, 4408, 1), -- HP Modifiers
+(25708, 4409, 1), -- MP Modifiers
+(25708, 4410, 11), -- P. Atk. Modifiers
+(25708, 4411, 11), -- M. Atk. Modifiers
+(25708, 4412, 11), -- P. Def. Modifiers
+(25708, 4413, 11), -- M. Def. Modifiers
+(25708, 4414, 2), -- Armor Type
+(25708, 4415, 3), -- Weapon Type
+(25708, 4416, 1), -- Races
+(25708, 4613, 9), -- NPC Clan Heal
 (25708, 5467, 1), -- Dark Attacks
-(25708, 6693, 9), -- Power Strike
+(25708, 6693, 9), -- NPC Strike
 -- Lost Warden
 (25709, 4045, 1), -- Resist Full Magic Attack
-(25709, 4173, 8), -- Might
-(25709, 4177, 8), -- Cancel
-(25709, 4408, 1), -- HP Increase (1x)
-(25709, 4409, 1), -- MP Increase (1x)
-(25709, 4410, 11), -- Average P. Atk.
-(25709, 4411, 11), -- Average M. Atk.
-(25709, 4412, 11), -- Average P. Def.
-(25709, 4413, 11), -- Average M. Def.
-(25709, 4414, 2), -- Standard Type
-(25709, 4415, 3), -- One-handed Sword
-(25709, 4416, 1), -- Undead
+(25709, 4173, 8), -- BOSS Might
+(25709, 4177, 8), -- BOSS Cancel Magic
+(25709, 4408, 1), -- HP Modifiers
+(25709, 4409, 1), -- MP Modifiers
+(25709, 4410, 11), -- P. Atk. Modifiers
+(25709, 4411, 11), -- M. Atk. Modifiers
+(25709, 4412, 11), -- P. Def. Modifiers
+(25709, 4413, 11), -- M. Def. Modifiers
+(25709, 4414, 2), -- Armor Type
+(25709, 4415, 3), -- Weapon Type
+(25709, 4416, 1), -- Races
 (25709, 5467, 1), -- Dark Attacks
-(25709, 6694, 8), -- Power Strike
-(25709, 6695, 8), -- Whirlwind
+(25709, 6694, 8), -- BOSS Strike
+(25709, 6695, 8), -- BOSS Spinning Slasher
 -- Lost Captain
 (25710, 4045, 1), -- Resist Full Magic Attack
-(25710, 4178, 8), -- Flame Strike
-(25710, 4408, 11), -- HP Increase (3x)
-(25710, 4409, 1), -- MP Increase (1x)
-(25710, 4410, 11), -- Average P. Atk.
-(25710, 4411, 11), -- Average M. Atk.
-(25710, 4412, 11), -- Average P. Def.
-(25710, 4413, 11), -- Average M. Def.
-(25710, 4414, 2), -- Standard Type
-(25710, 4415, 3), -- One-handed Sword
-(25710, 4416, 1), -- Undead
+(25710, 4178, 8), -- BOSS Flame Strike
+(25710, 4408, 11), -- HP Modifiers
+(25710, 4409, 1), -- MP Modifiers
+(25710, 4410, 11), -- P. Atk. Modifiers
+(25710, 4411, 11), -- M. Atk. Modifiers
+(25710, 4412, 11), -- P. Def. Modifiers
+(25710, 4413, 11), -- M. Def. Modifiers
+(25710, 4414, 2), -- Armor Type
+(25710, 4415, 3), -- Weapon Type
+(25710, 4416, 1), -- Races
 (25710, 5467, 1), -- Dark Attacks
 (25710, 5699, 7), -- Decrease P. Def
 (25710, 5700, 7), -- Magic Resistance Decrease
 (25710, 5701, 7), -- Decrease P. Atk
 -- Lost Guard
 (25711, 4045, 1), -- Resist Full Magic Attack
-(25711, 4408, 11), -- HP Increase (3x)
-(25711, 4409, 1), -- MP Increase (1x)
-(25711, 4410, 11), -- Average P. Atk.
-(25711, 4411, 11), -- Average M. Atk.
-(25711, 4412, 11), -- Average P. Def.
-(25711, 4413, 11), -- Average M. Def.
-(25711, 4414, 2), -- Standard Type
-(25711, 4415, 3), -- One-handed Sword
-(25711, 4416, 1), -- Undead
+(25711, 4408, 11), -- HP Modifiers
+(25711, 4409, 1), -- MP Modifiers
+(25711, 4410, 11), -- P. Atk. Modifiers
+(25711, 4411, 11), -- M. Atk. Modifiers
+(25711, 4412, 11), -- P. Def. Modifiers
+(25711, 4413, 11), -- M. Def. Modifiers
+(25711, 4414, 2), -- Armor Type
+(25711, 4415, 3), -- Weapon Type
+(25711, 4416, 1), -- Races
 (25711, 5467, 1), -- Dark Attacks
 -- Lost Assistant Guard
-(25712, 4214, 8), -- Reflect Damage
-(25712, 4408, 11), -- HP Increase (3x)
-(25712, 4409, 1), -- MP Increase (1x)
-(25712, 4410, 11), -- Average P. Atk.
-(25712, 4411, 11), -- Average M. Atk.
-(25712, 4412, 11), -- Average P. Def.
-(25712, 4413, 11), -- Average M. Def.
-(25712, 4414, 2), -- Standard Type
-(25712, 4415, 3), -- One-handed Sword
-(25712, 4416, 6), -- Humanoids
+(25712, 4214, 8), -- BOSS Reflect Damage
+(25712, 4408, 11), -- HP Modifiers
+(25712, 4409, 1), -- MP Modifiers
+(25712, 4410, 11), -- P. Atk. Modifiers
+(25712, 4411, 11), -- M. Atk. Modifiers
+(25712, 4412, 11), -- P. Def. Modifiers
+(25712, 4413, 11), -- M. Def. Modifiers
+(25712, 4414, 2), -- Armor Type
+(25712, 4415, 3), -- Weapon Type
+(25712, 4416, 6), -- Races
 (25712, 4438, 4), -- Greater Resist Sleep
 (25712, 4439, 4), -- Greater Resist Hold
 (25712, 4440, 4), -- Greater Resist Paralysis
 (25712, 4441, 4), -- Greater Resist Mental Derangement
-(25712, 4780, 8), -- Heal
+(25712, 4780, 8), -- BOSS Heal
 (25712, 5467, 1), -- Dark Attacks
 -- Darnel
 (25713, 4045, 1), -- Resist Full Magic Attack
 (25713, 4182, 9), -- Poison
 (25713, 4189, 9), -- Paralysis
-(25713, 4408, 1), -- HP Increase (1x)
-(25713, 4409, 1), -- MP Increase (1x)
-(25713, 4410, 11), -- Average P. Atk.
-(25713, 4411, 11), -- Average M. Atk.
-(25713, 4412, 11), -- Average P. Def.
-(25713, 4413, 11), -- Average M. Def.
-(25713, 4414, 2), -- Standard Type
-(25713, 4415, 5), -- Blunt Weapons
-(25713, 4416, 9), -- Demons
+(25713, 4408, 1), -- HP Modifiers
+(25713, 4409, 1), -- MP Modifiers
+(25713, 4410, 11), -- P. Atk. Modifiers
+(25713, 4411, 11), -- M. Atk. Modifiers
+(25713, 4412, 11), -- P. Def. Modifiers
+(25713, 4413, 11), -- M. Def. Modifiers
+(25713, 4414, 2), -- Armor Type
+(25713, 4415, 5), -- Weapon Type
+(25713, 4416, 9), -- Races
 (25713, 4494, 1), -- Raid Boss
 (25713, 5467, 1), -- Dark Attacks
 (25713, 5479, 1), -- Boss Petrification Resistance
 (25713, 6658, 1), -- Level 84 Raid Boss
 -- Kechi
 (25714, 4045, 1), -- Resist Full Magic Attack
-(25714, 4408, 1), -- HP Increase (1x)
-(25714, 4409, 1), -- MP Increase (1x)
-(25714, 4410, 11), -- Average P. Atk.
-(25714, 4411, 11), -- Average M. Atk.
-(25714, 4412, 11), -- Average P. Def.
-(25714, 4413, 11), -- Average M. Def.
-(25714, 4414, 1), -- Heavy Armor Type
-(25714, 4415, 19), -- Dual-Sword Weapons
-(25714, 4416, 9), -- Demons
+(25714, 4408, 1), -- HP Modifiers
+(25714, 4409, 1), -- MP Modifiers
+(25714, 4410, 11), -- P. Atk. Modifiers
+(25714, 4411, 11), -- M. Atk. Modifiers
+(25714, 4412, 11), -- P. Def. Modifiers
+(25714, 4413, 11), -- M. Def. Modifiers
+(25714, 4414, 1), -- Armor Type
+(25714, 4415, 19), -- Weapon Type
+(25714, 4416, 9), -- Races
 (25714, 4494, 1), -- Raid Boss
 (25714, 5418, 1), -- Invincible
 (25714, 5462, 1), -- Fire Attacks
@@ -69832,30 +70091,30 @@ INSERT INTO `npcskills` VALUES
 -- Kechi's Subordinate
 (25715, 4045, 1), -- Resist Full Magic Attack
 (25715, 4084, 2), -- Resist Physical Attack
-(25715, 4099, 2), -- Berserker Spirit
-(25715, 4408, 1), -- HP Increase (1x)
-(25715, 4409, 1), -- MP Increase (1x)
-(25715, 4410, 11), -- Average P. Atk.
-(25715, 4411, 11), -- Average M. Atk.
-(25715, 4412, 11), -- Average P. Def.
-(25715, 4413, 11), -- Average M. Def.
-(25715, 4414, 3), -- Light Armor Type
-(25715, 4415, 7), -- Daggers
-(25715, 4416, 9), -- Demons
+(25715, 4099, 2), -- NPC Berserk
+(25715, 4408, 1), -- HP Modifiers
+(25715, 4409, 1), -- MP Modifiers
+(25715, 4410, 11), -- P. Atk. Modifiers
+(25715, 4411, 11), -- M. Atk. Modifiers
+(25715, 4412, 11), -- P. Def. Modifiers
+(25715, 4413, 11), -- M. Def. Modifiers
+(25715, 4414, 3), -- Armor Type
+(25715, 4415, 7), -- Weapon Type
+(25715, 4416, 9), -- Races
 (25715, 5462, 1), -- Fire Attacks
 (25715, 5479, 1), -- Boss Petrification Resistance
 -- Tears
 (25716, 2369, 1), -- Water Dragon Scale
 (25716, 4045, 1), -- Resist Full Magic Attack
-(25716, 4408, 1), -- HP Increase (1x)
-(25716, 4409, 1), -- MP Increase (1x)
-(25716, 4410, 11), -- Average P. Atk.
-(25716, 4411, 11), -- Average M. Atk.
-(25716, 4412, 11), -- Average P. Def.
-(25716, 4413, 11), -- Average M. Def.
-(25716, 4414, 2), -- Standard Type
-(25716, 4415, 1), -- Bare Hands
-(25716, 4416, 7), -- Spirits
+(25716, 4408, 1), -- HP Modifiers
+(25716, 4409, 1), -- MP Modifiers
+(25716, 4410, 11), -- P. Atk. Modifiers
+(25716, 4411, 11), -- M. Atk. Modifiers
+(25716, 4412, 11), -- P. Def. Modifiers
+(25716, 4413, 11), -- M. Def. Modifiers
+(25716, 4414, 2), -- Armor Type
+(25716, 4415, 1), -- Weapon Type
+(25716, 4416, 7), -- Races
 (25716, 4494, 1), -- Raid Boss
 (25716, 5238, 1), -- Freezing
 (25716, 5420, 1), -- Invincible
@@ -69864,80 +70123,159 @@ INSERT INTO `npcskills` VALUES
 (25716, 6660, 1), -- Level 84 Raid Boss
 -- Tears
 (25717, 4045, 1), -- Resist Full Magic Attack
-(25717, 4408, 1), -- HP Increase (1x)
-(25717, 4409, 1), -- MP Increase (1x)
-(25717, 4410, 11), -- Average P. Atk.
-(25717, 4411, 11), -- Average M. Atk.
-(25717, 4412, 11), -- Average P. Def.
-(25717, 4413, 11), -- Average M. Def.
-(25717, 4414, 2), -- Standard Type
-(25717, 4415, 1), -- Bare Hands
-(25717, 4416, 7), -- Spirits
+(25717, 4408, 1), -- HP Modifiers
+(25717, 4409, 1), -- MP Modifiers
+(25717, 4410, 11), -- P. Atk. Modifiers
+(25717, 4411, 11), -- M. Atk. Modifiers
+(25717, 4412, 11), -- P. Def. Modifiers
+(25717, 4413, 11), -- M. Def. Modifiers
+(25717, 4414, 2), -- Armor Type
+(25717, 4415, 1), -- Weapon Type
+(25717, 4416, 7), -- Races
 (25717, 5463, 1), -- Water Attacks
 (25717, 5479, 1), -- Boss Petrification Resistance
 -- Emerald Horn
-(25718, 4416, 10), -- Dragons
+(25718, 4045, 1), -- Resist Full Magic Attack
+(25718, 4408, 1), -- HP Modifiers
+(25718, 4409, 1), -- MP Modifiers
+(25718, 4410, 11), -- P. Atk. Modifiers
+(25718, 4411, 11), -- M. Atk. Modifiers
+(25718, 4412, 11), -- P. Def. Modifiers
+(25718, 4413, 11), -- M. Def. Modifiers
+(25718, 4414, 2), -- Armor Type
+(25718, 4415, 3), -- Weapon Type
+(25718, 4416, 10), -- Races
 (25718, 4494, 1), -- Raid Boss
 (25718, 5465, 1), -- Earth Attacks
+(25718, 5598, 12), -- Flash Resistance
 (25718, 6821, 1), -- P. Def. Decrease
 (25718, 6822, 1), -- P. Def. Decrease
 (25718, 6824, 1), -- Piercing Storm
 (25718, 6825, 1), -- Bleed
 (25718, 6898, 1), -- 84 level Raid Boss
 -- Dust Rider
-(25719, 4416, 10), -- Dragons
+(25719, 4045, 1), -- Resist Full Magic Attack
+(25719, 4408, 1), -- HP Modifiers
+(25719, 4409, 1), -- MP Modifiers
+(25719, 4410, 11), -- P. Atk. Modifiers
+(25719, 4411, 11), -- M. Atk. Modifiers
+(25719, 4412, 11), -- P. Def. Modifiers
+(25719, 4413, 11), -- M. Def. Modifiers
+(25719, 4414, 2), -- Armor Type
+(25719, 4415, 3), -- Weapon Type
+(25719, 4416, 10), -- Races
 (25719, 4494, 1), -- Raid Boss
 (25719, 5464, 1), -- Wind Attacks
+(25719, 5598, 12), -- Flash Resistance
 (25719, 6826, 1), -- Critical Strike
 (25719, 6827, 1), -- Petrify
 (25719, 6828, 1), -- Dust Storm
 (25719, 6899, 1), -- 84 level Raid Boss
 -- Bleeding Fly
-(25720, 4416, 10), -- Dragons
+(25720, 4045, 1), -- Resist Full Magic Attack
+(25720, 4408, 1), -- HP Modifiers
+(25720, 4409, 1), -- MP Modifiers
+(25720, 4410, 11), -- P. Atk. Modifiers
+(25720, 4411, 11), -- M. Atk. Modifiers
+(25720, 4412, 11), -- P. Def. Modifiers
+(25720, 4413, 11), -- M. Def. Modifiers
+(25720, 4414, 2), -- Armor Type
+(25720, 4415, 3), -- Weapon Type
+(25720, 4416, 10), -- Races
 (25720, 4494, 1), -- Raid Boss
 (25720, 5464, 1), -- Wind Attacks
+(25720, 5598, 12), -- Flash Resistance
 (25720, 6829, 1), -- Vampiric Attack
 (25720, 6830, 1), -- Bleed
 (25720, 6831, 1), -- Blood Burst
 (25720, 6900, 1), -- 84 level Raid Boss
-(25720, 6915, 1), -- Acumen
+(25720, 6915, 1), -- npc Acumen
 -- Blackdagger Wing
-(25721, 4416, 10), -- Dragons
+(25721, 4045, 1), -- Resist Full Magic Attack
+(25721, 4408, 1), -- HP Modifiers
+(25721, 4409, 1), -- MP Modifiers
+(25721, 4410, 11), -- P. Atk. Modifiers
+(25721, 4411, 11), -- M. Atk. Modifiers
+(25721, 4412, 11), -- P. Def. Modifiers
+(25721, 4413, 11), -- M. Def. Modifiers
+(25721, 4414, 2), -- Armor Type
+(25721, 4415, 3), -- Weapon Type
+(25721, 4416, 10), -- Races
 (25721, 4494, 1), -- Raid Boss
 (25721, 5467, 1), -- Dark Attacks
+(25721, 5598, 12), -- Flash Resistance
 (25721, 6833, 1), -- Power Strike
 (25721, 6834, 1), -- Range Magic Attack
 (25721, 6901, 1), -- 84 level Raid Boss
 -- Shadow Summoner
-(25722, 4416, 10), -- Dragons
+(25722, 4045, 1), -- Resist Full Magic Attack
+(25722, 4408, 1), -- HP Modifiers
+(25722, 4409, 1), -- MP Modifiers
+(25722, 4410, 11), -- P. Atk. Modifiers
+(25722, 4411, 11), -- M. Atk. Modifiers
+(25722, 4412, 11), -- P. Def. Modifiers
+(25722, 4413, 11), -- M. Def. Modifiers
+(25722, 4414, 2), -- Armor Type
+(25722, 4415, 3), -- Weapon Type
+(25722, 4416, 10), -- Races
 (25722, 4494, 1), -- Raid Boss
 (25722, 5467, 1), -- Dark Attacks
+(25722, 5598, 12), -- Flash Resistance
 (25722, 6835, 1), -- Summon Skeleton
 (25722, 6836, 1), -- Silence
 (25722, 6837, 1), -- Range Magic Attack
 (25722, 6838, 1), -- Self-destruction
 (25722, 6902, 1), -- 84 level Raid Boss
 -- Spike Slasher
-(25723, 4416, 10), -- Dragons
+(25723, 4045, 1), -- Resist Full Magic Attack
+(25723, 4408, 1), -- HP Modifiers
+(25723, 4409, 1), -- MP Modifiers
+(25723, 4410, 11), -- P. Atk. Modifiers
+(25723, 4411, 11), -- M. Atk. Modifiers
+(25723, 4412, 11), -- P. Def. Modifiers
+(25723, 4413, 11), -- M. Def. Modifiers
+(25723, 4414, 2), -- Armor Type
+(25723, 4415, 3), -- Weapon Type
+(25723, 4416, 10), -- Races
 (25723, 4494, 1), -- Raid Boss
 (25723, 5463, 1), -- Water Attacks
+(25723, 5598, 12), -- Flash Resistance
 (25723, 6839, 1), -- Power Attack
 (25723, 6840, 1), -- Paralysis
 (25723, 6841, 1), -- Summon Subordinate
 (25723, 6903, 1), -- 84 level Raid Boss
 -- Muscle Bomber
-(25724, 4416, 10), -- Dragons
+(25724, 4045, 1), -- Resist Full Magic Attack
+(25724, 4408, 1), -- HP Modifiers
+(25724, 4409, 1), -- MP Modifiers
+(25724, 4410, 11), -- P. Atk. Modifiers
+(25724, 4411, 11), -- M. Atk. Modifiers
+(25724, 4412, 11), -- P. Def. Modifiers
+(25724, 4413, 11), -- M. Def. Modifiers
+(25724, 4414, 2), -- Armor Type
+(25724, 4415, 3), -- Weapon Type
+(25724, 4416, 10), -- Races
 (25724, 4494, 1), -- Raid Boss
 (25724, 5462, 1), -- Fire Attacks
+(25724, 5598, 12), -- Flash Resistance
 (25724, 6842, 1), -- Enhance
 (25724, 6844, 1), -- Power Strike
 (25724, 6904, 1), -- 84 level Raid Boss
 -- Drake Lord
-(25725, 4416, 6), -- Humanoids
+(25725, 4045, 1), -- Resist Full Magic Attack
+(25725, 4408, 1), -- HP Modifiers
+(25725, 4409, 1), -- MP Modifiers
+(25725, 4410, 15), -- P. Atk. Modifiers
+(25725, 4411, 11), -- M. Atk. Modifiers
+(25725, 4412, 11), -- P. Def. Modifiers
+(25725, 4413, 11), -- M. Def. Modifiers
+(25725, 4414, 2), -- Armor Type
+(25725, 4415, 3), -- Weapon Type
+(25725, 4416, 6), -- Races
 (25725, 4494, 1), -- Raid Boss
 (25725, 5467, 1), -- Dark Attacks
+(25725, 5598, 12), -- Flash Resistance
 (25725, 6732, 1), -- Mirage
-(25725, 6733, 1), -- Antharas's Stigma
 (25725, 6886, 1), -- Complete Recovery
 (25725, 6887, 1), -- Fatal Strike
 (25725, 6888, 1), -- Fatal Shot
@@ -69945,22 +70283,38 @@ INSERT INTO `npcskills` VALUES
 (25725, 6892, 1), -- Power Shot
 (25725, 6905, 1), -- 85 level Raid Boss
 -- Behemoth Leader
-(25726, 4410, 15), -- Strong P. Atk.
-(25726, 4416, 10), -- Dragons
+(25726, 4045, 1), -- Resist Full Magic Attack
+(25726, 4408, 1), -- HP Modifiers
+(25726, 4409, 1), -- MP Modifiers
+(25726, 4410, 15), -- P. Atk. Modifiers
+(25726, 4411, 11), -- M. Atk. Modifiers
+(25726, 4412, 11), -- P. Def. Modifiers
+(25726, 4413, 11), -- M. Def. Modifiers
+(25726, 4414, 2), -- Armor Type
+(25726, 4415, 3), -- Weapon Type
+(25726, 4416, 10), -- Races
 (25726, 4494, 1), -- Raid Boss
 (25726, 5465, 1), -- Earth Attacks
-(25726, 6739, 1), -- Presentation - Behemoth Leader Casting Preparation
-(25726, 6740, 1), -- Presentation - Behemoth Leader Casting
-(25726, 6741, 1), -- Presentation - Behemoth Leader Casting Failure
+(25726, 5598, 12), -- Flash Resistance
 (25726, 6886, 1), -- Complete Recovery
 (25726, 6887, 1), -- Fatal Strike
 (25726, 6888, 1), -- Fatal Shot
 (25726, 6893, 1), -- Power Attack
 (25726, 6894, 1), -- Power Shot
 -- Dragon Beast
-(25727, 4416, 9), -- Demons
+(25727, 4045, 1), -- Resist Full Magic Attack
+(25727, 4408, 1), -- HP Modifiers
+(25727, 4409, 1), -- MP Modifiers
+(25727, 4410, 15), -- P. Atk. Modifiers
+(25727, 4411, 11), -- M. Atk. Modifiers
+(25727, 4412, 11), -- P. Def. Modifiers
+(25727, 4413, 11), -- M. Def. Modifiers
+(25727, 4414, 2), -- Armor Type
+(25727, 4415, 3), -- Weapon Type
+(25727, 4416, 9), -- Races
 (25727, 4494, 1), -- Raid Boss
 (25727, 5465, 1), -- Earth Attacks
+(25727, 5598, 12), -- Flash Resistance
 (25727, 6736, 1), -- Fierce Attack
 (25727, 6737, 1), -- Heal
 (25727, 6886, 1), -- Complete Recovery
@@ -69970,4310 +70324,4310 @@ INSERT INTO `npcskills` VALUES
 (25727, 6896, 1), -- Power Shot
 (25727, 6907, 1), -- 85 level Raid Boss
 -- Death Knight
-(25728, 4416, 1), -- Undead
+(25728, 4416, 1), -- Races
 (25728, 5467, 1), -- Dark Attacks
 (25728, 6738, 1), -- Hold
 -- Death Knight
-(25729, 4416, 1), -- Undead
+(25729, 4416, 1), -- Races
 (25729, 5467, 1), -- Dark Attacks
 (25729, 6889, 1), -- Range Attack
 (25729, 6890, 1), -- Bleed
 -- Demon's Banquet
-(25730, 4416, 1), -- Undead
+(25730, 4416, 1), -- Races
 (25730, 5467, 1), -- Dark Attacks
 -- Demon's Banquet
-(25731, 4416, 1), -- Undead
+(25731, 4416, 1), -- Races
 (25731, 5467, 1), -- Dark Attacks
 -- Dragon Beast
-(25732, 4416, 9), -- Demons
+(25732, 4416, 9), -- Races
 (25732, 4494, 1), -- Raid Boss
 (25732, 5465, 1), -- Earth Attacks
 (25732, 6895, 1), -- Power Attack
 (25732, 6907, 1), -- 85 level Raid Boss
 -- Gem Dragon
-(25733, 4285, 4), -- Resist Sleep Attacks
-(25733, 4287, 4), -- Resist Hold Attacks
+(25733, 4285, 4), -- Resist Sleep
+(25733, 4287, 4), -- Resist Hold
 (25733, 4441, 5), -- Greater Resist Mental Derangement
 (25733, 5463, 1), -- Water Attacks
 -- Parasitic Leech
-(25734, 4274, 4), -- Blunt Weapon Weak Point
+(25734, 4274, 4), -- Blunt Attack Weak Point
 (25734, 5463, 1), -- Water Attacks
 -- Fairy Warrior
-(25735, 4416, 6), -- Humanoids
+(25735, 4416, 6), -- Races
 (25735, 4494, 1), -- Raid Boss
 (25735, 4790, 1), -- Raid Boss - Level 23
 -- Fairy Slasher
-(25736, 4414, 3), -- Light Armor Type
-(25736, 4416, 6), -- Humanoids
+(25736, 4414, 3), -- Armor Type
+(25736, 4416, 6), -- Races
 -- Fairy Attacker
-(25737, 4414, 3), -- Light Armor Type
-(25737, 4416, 6), -- Humanoids
+(25737, 4414, 3), -- Armor Type
+(25737, 4416, 6), -- Races
 -- Satyr Wizard
-(25738, 4416, 6), -- Humanoids
+(25738, 4416, 6), -- Races
 (25738, 4494, 1), -- Raid Boss
 (25738, 4929, 1), -- Raid Boss - Level 23
 -- Satyr Summoner
-(25739, 4414, 3), -- Light Armor Type
-(25739, 4416, 6), -- Humanoids
+(25739, 4414, 3), -- Armor Type
+(25739, 4416, 6), -- Races
 -- Satyr Witch
-(25740, 4414, 3), -- Light Armor Type
-(25740, 4416, 6), -- Humanoids
+(25740, 4414, 3), -- Armor Type
+(25740, 4416, 6), -- Races
 -- Trichin Defender
-(25741, 4416, 6), -- Humanoids
+(25741, 4416, 6), -- Races
 (25741, 4494, 1), -- Raid Boss
 (25741, 4927, 1), -- Raid Boss - Level 21
 -- Centaur Archer
-(25742, 4414, 3), -- Light Armor Type
-(25742, 4416, 6), -- Humanoids
+(25742, 4414, 3), -- Armor Type
+(25742, 4416, 6), -- Races
 -- Beorning Berserker
-(25743, 4414, 3), -- Light Armor Type
-(25743, 4416, 6), -- Humanoids
+(25743, 4414, 3), -- Armor Type
+(25743, 4416, 6), -- Races
 -- Double Nightmare
-(25744, 4275, 2), -- Holy Attack Weak Point
+(25744, 4275, 2), -- Sacred Attack Weak Point
 (25744, 4278, 1), -- Dark Attack
-(25744, 4416, 1), -- Undead
+(25744, 4416, 1), -- Races
 (25744, 4494, 1), -- Raid Boss
 (25744, 4853, 1), -- Raid Boss - Level 25
 -- Kimerian
 (25745, 4278, 1), -- Dark Attack
 (25745, 4333, 5), -- Resist Dark Attack
-(25745, 4416, 9), -- Demons
-(25745, 4780, 1), -- Heal
+(25745, 4416, 9), -- Races
+(25745, 4780, 1), -- BOSS Heal
 -- Kimerian Ghost
-(25746, 4275, 2), -- Holy Attack Weak Point
+(25746, 4275, 2), -- Sacred Attack Weak Point
 (25746, 4278, 1), -- Dark Attack
-(25746, 4414, 3), -- Light Armor Type
-(25746, 4416, 1), -- Undead
+(25746, 4414, 3), -- Armor Type
+(25746, 4416, 1), -- Races
 -- Kimerian
-(25747, 4275, 2), -- Holy Attack Weak Point
+(25747, 4275, 2), -- Sacred Attack Weak Point
 (25747, 4278, 1), -- Dark Attack
-(25747, 4416, 1), -- Undead
+(25747, 4416, 1), -- Races
 (25747, 4494, 1), -- Raid Boss
 (25747, 4846, 1), -- Raid Boss - Level 25
 -- Fairy Warrior
-(25748, 4275, 2), -- Holy Attack Weak Point
+(25748, 4275, 2), -- Sacred Attack Weak Point
 (25748, 4278, 1), -- Dark Attack
-(25748, 4414, 3), -- Light Armor Type
-(25748, 4416, 1), -- Undead
+(25748, 4414, 3), -- Armor Type
+(25748, 4416, 1), -- Races
 -- Fairy Slasher
-(25749, 4275, 2), -- Holy Attack Weak Point
+(25749, 4275, 2), -- Sacred Attack Weak Point
 (25749, 4278, 1), -- Dark Attack
-(25749, 4414, 3), -- Light Armor Type
-(25749, 4416, 1), -- Undead
+(25749, 4414, 3), -- Armor Type
+(25749, 4416, 1), -- Races
 -- Fairy Attacker
-(25750, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25750, 4274, 1), -- Blunt Weapon Weak Point
-(25750, 4275, 2), -- Holy Attack Weak Point
+(25750, 4273, 3), -- Resist Dagger
+(25750, 4274, 1), -- Blunt Attack Weak Point
+(25750, 4275, 2), -- Sacred Attack Weak Point
 (25750, 4278, 1), -- Dark Attack
-(25750, 4416, 1), -- Undead
+(25750, 4416, 1), -- Races
 (25750, 4494, 1), -- Raid Boss
 (25750, 4899, 1), -- Raid Boss - Level 20
 -- Satyr Wizard
-(25751, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25751, 4274, 1), -- Blunt Weapon Weak Point
-(25751, 4275, 2), -- Holy Attack Weak Point
+(25751, 4273, 3), -- Resist Dagger
+(25751, 4274, 1), -- Blunt Attack Weak Point
+(25751, 4275, 2), -- Sacred Attack Weak Point
 (25751, 4278, 1), -- Dark Attack
-(25751, 4414, 3), -- Light Armor Type
-(25751, 4416, 1), -- Undead
+(25751, 4414, 3), -- Armor Type
+(25751, 4416, 1), -- Races
 -- Satyr Summoner
-(25752, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25752, 4274, 1), -- Blunt Weapon Weak Point
-(25752, 4275, 2), -- Holy Attack Weak Point
+(25752, 4273, 3), -- Resist Dagger
+(25752, 4274, 1), -- Blunt Attack Weak Point
+(25752, 4275, 2), -- Sacred Attack Weak Point
 (25752, 4278, 1), -- Dark Attack
-(25752, 4414, 3), -- Light Armor Type
-(25752, 4416, 1), -- Undead
+(25752, 4414, 3), -- Armor Type
+(25752, 4416, 1), -- Races
 -- Satyr Witch
-(25753, 4275, 2), -- Holy Attack Weak Point
+(25753, 4275, 2), -- Sacred Attack Weak Point
 (25753, 4278, 1), -- Dark Attack
-(25753, 4414, 3), -- Light Armor Type
-(25753, 4416, 1), -- Undead
+(25753, 4414, 3), -- Armor Type
+(25753, 4416, 1), -- Races
 (25753, 4494, 1), -- Raid Boss
 (25753, 4833, 1), -- Raid Boss - Level 35
 -- Trichin Defender
 (25754, 4278, 1), -- Dark Attack
 (25754, 4333, 5), -- Resist Dark Attack
-(25754, 4416, 9), -- Demons
+(25754, 4416, 9), -- Races
 (25754, 4494, 1), -- Raid Boss
 (25754, 4847, 1), -- Raid Boss - Level 35
 -- Centaur Archer
-(25755, 4414, 3), -- Light Armor Type
-(25755, 4416, 13), -- Fairies
+(25755, 4414, 3), -- Armor Type
+(25755, 4416, 13), -- Races
 -- Beorning Berserker
 (25756, 4278, 1), -- Dark Attack
 (25756, 4333, 5), -- Resist Dark Attack
-(25756, 4414, 3), -- Light Armor Type
-(25756, 4416, 9), -- Demons
+(25756, 4414, 3), -- Armor Type
+(25756, 4416, 9), -- Races
 -- Double Nightmare
-(25757, 4275, 2), -- Holy Attack Weak Point
+(25757, 4275, 2), -- Sacred Attack Weak Point
 (25757, 4278, 1), -- Dark Attack
-(25757, 4416, 9), -- Demons
+(25757, 4416, 9), -- Races
 (25757, 4494, 1), -- Raid Boss
 (25757, 4869, 1), -- Raid Boss - Level 35
 -- Kimerian
-(25758, 4275, 2), -- Holy Attack Weak Point
+(25758, 4275, 2), -- Sacred Attack Weak Point
 (25758, 4278, 1), -- Dark Attack
-(25758, 4414, 3), -- Light Armor Type
-(25758, 4416, 1), -- Undead
+(25758, 4414, 3), -- Armor Type
+(25758, 4416, 1), -- Races
 -- Kimerian Ghost
-(25759, 4275, 2), -- Holy Attack Weak Point
+(25759, 4275, 2), -- Sacred Attack Weak Point
 (25759, 4278, 1), -- Dark Attack
-(25759, 4414, 3), -- Light Armor Type
-(25759, 4416, 1), -- Undead
+(25759, 4414, 3), -- Armor Type
+(25759, 4416, 1), -- Races
 -- Turanclass
-(25760, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25760, 4274, 1), -- Blunt Weapon Weak Point
-(25760, 4275, 2), -- Holy Attack Weak Point
+(25760, 4273, 3), -- Resist Dagger
+(25760, 4274, 1), -- Blunt Attack Weak Point
+(25760, 4275, 2), -- Sacred Attack Weak Point
 (25760, 4278, 1), -- Dark Attack
-(25760, 4416, 1), -- Undead
+(25760, 4416, 1), -- Races
 (25760, 4494, 1), -- Raid Boss
 (25760, 4947, 1), -- Raid Boss - Level 60
 -- Georgios
-(25761, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25761, 4274, 1), -- Blunt Weapon Weak Point
-(25761, 4275, 2), -- Holy Attack Weak Point
+(25761, 4273, 3), -- Resist Dagger
+(25761, 4274, 1), -- Blunt Attack Weak Point
+(25761, 4275, 2), -- Sacred Attack Weak Point
 (25761, 4278, 1), -- Dark Attack
-(25761, 4414, 3), -- Light Armor Type
-(25761, 4416, 1), -- Undead
+(25761, 4414, 3), -- Armor Type
+(25761, 4416, 1), -- Races
 -- Angelos
-(25762, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25762, 4274, 1), -- Blunt Weapon Weak Point
-(25762, 4275, 2), -- Holy Attack Weak Point
+(25762, 4273, 3), -- Resist Dagger
+(25762, 4274, 1), -- Blunt Attack Weak Point
+(25762, 4275, 2), -- Sacred Attack Weak Point
 (25762, 4278, 1), -- Dark Attack
-(25762, 4414, 3), -- Light Armor Type
-(25762, 4416, 1), -- Undead
+(25762, 4414, 3), -- Armor Type
+(25762, 4416, 1), -- Races
 -- Theofanis
 (25763, 4278, 1), -- Dark Attack
 (25763, 4333, 5), -- Resist Dark Attack
-(25763, 4416, 9), -- Demons
+(25763, 4416, 9), -- Races
 (25763, 4494, 1), -- Raid Boss
 (25763, 4859, 1), -- Raid Boss - Level 59
 -- Steregos
 (25764, 4278, 1), -- Dark Attack
 (25764, 4333, 5), -- Resist Dark Attack
-(25764, 4416, 9), -- Demons
+(25764, 4416, 9), -- Races
 -- Beast
-(25765, 4275, 2), -- Holy Attack Weak Point
+(25765, 4275, 2), -- Sacred Attack Weak Point
 (25765, 4278, 1), -- Dark Attack
-(25765, 4416, 1), -- Undead
+(25765, 4416, 1), -- Races
 -- Talicrome
-(25766, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(25766, 4416, 10), -- Dragons
+(25766, 4276, 1), -- Archery Attack Weak Point
+(25766, 4416, 10), -- Races
 (25766, 4494, 1), -- Raid Boss
 (25766, 4874, 1), -- Raid Boss - Level 60
 -- Meikaliya
-(25767, 4416, 6), -- Humanoids
+(25767, 4416, 6), -- Races
 (25767, 4494, 1), -- Raid Boss
 (25767, 4840, 1), -- Raid Boss - Level 50
 -- Evangelos
-(25768, 4414, 3), -- Light Armor Type
-(25768, 4416, 6), -- Humanoids
+(25768, 4414, 3), -- Armor Type
+(25768, 4416, 6), -- Races
 -- Sotiris
-(25769, 4416, 6), -- Humanoids
+(25769, 4416, 6), -- Races
 -- Lazaros
-(25770, 4416, 6), -- Humanoids
+(25770, 4416, 6), -- Races
 (25770, 4494, 1), -- Raid Boss
 (25770, 4799, 1), -- Raid Boss - Level 49
 -- Noctum
-(25771, 4414, 3), -- Light Armor Type
-(25771, 4416, 6), -- Humanoids
+(25771, 4414, 3), -- Armor Type
+(25771, 4416, 6), -- Races
 -- Harnak Ghost
-(25772, 4416, 6), -- Humanoids
+(25772, 4416, 6), -- Races
 -- Demonic Noctum
-(25773, 4416, 3), -- Beasts
+(25773, 4416, 3), -- Races
 (25773, 4494, 1), -- Raid Boss
 (25773, 4810, 1), -- Raid Boss - Level 45
 -- Harnak's Evil Spirit
-(25774, 4275, 2), -- Holy Attack Weak Point
+(25774, 4275, 2), -- Sacred Attack Weak Point
 (25774, 4278, 1), -- Dark Attack
-(25774, 4414, 3), -- Light Armor Type
-(25774, 4416, 1), -- Undead
+(25774, 4414, 3), -- Armor Type
+(25774, 4416, 1), -- Races
 -- Apherus
-(25775, 4275, 2), -- Holy Attack Weak Point
+(25775, 4275, 2), -- Sacred Attack Weak Point
 (25775, 4278, 1), -- Dark Attack
-(25775, 4416, 1), -- Undead
+(25775, 4416, 1), -- Races
 -- Court Guard
-(25776, 4416, 6), -- Humanoids
+(25776, 4416, 6), -- Races
 (25776, 4494, 1), -- Raid Boss
 (25776, 4863, 1), -- Raid Boss - Level 43
 -- Chasseur
-(25777, 4416, 6), -- Humanoids
+(25777, 4416, 6), -- Races
 -- Sentry
-(25778, 4414, 3), -- Light Armor Type
-(25778, 4416, 6), -- Humanoids
+(25778, 4414, 3), -- Armor Type
+(25778, 4416, 6), -- Races
 -- Spezion
-(25779, 4416, 6), -- Humanoids
+(25779, 4416, 6), -- Races
 (25779, 4494, 1), -- Raid Boss
 (25779, 4954, 1), -- Raid Boss - Level 25
 -- Spezion's Subordinate
-(25780, 4414, 3), -- Light Armor Type
-(25780, 4416, 4), -- Animals
+(25780, 4414, 3), -- Armor Type
+(25780, 4416, 4), -- Races
 -- Spezion's Subordinate
-(25781, 4414, 3), -- Light Armor Type
-(25781, 4416, 4), -- Animals
+(25781, 4414, 3), -- Armor Type
+(25781, 4416, 4), -- Races
 -- Spezion's Subordinate
 (25782, 4278, 1), -- Dark Attack
 (25782, 4333, 3), -- Resist Dark Attack
-(25782, 4416, 1), -- Undead
+(25782, 4416, 1), -- Races
 (25782, 4494, 1), -- Raid Boss
 (25782, 5026, 1), -- Raid Boss - Level 39
 -- Eyesaroch
 (25783, 4278, 1), -- Dark Attack
 (25783, 4333, 3), -- Resist Dark Attack
-(25783, 4414, 3), -- Light Armor Type
-(25783, 4416, 1), -- Undead
+(25783, 4414, 3), -- Armor Type
+(25783, 4416, 1), -- Races
 -- Overseer
-(25784, 4416, 6), -- Humanoids
+(25784, 4416, 6), -- Races
 (25784, 4494, 1), -- Raid Boss
 (25784, 5027, 1), -- Raid Boss - Level 37
 -- Teredor
-(25785, 4414, 3), -- Light Armor Type
-(25785, 4416, 6), -- Humanoids
+(25785, 4414, 3), -- Armor Type
+(25785, 4416, 6), -- Races
 -- Lachikios
-(25786, 4414, 3), -- Light Armor Type
-(25786, 4416, 6), -- Humanoids
+(25786, 4414, 3), -- Armor Type
+(25786, 4416, 6), -- Races
 -- Lachikios
-(25787, 4416, 6), -- Humanoids
+(25787, 4416, 6), -- Races
 (25787, 4494, 1), -- Raid Boss
 (25787, 4903, 1), -- Raid Boss - Level 80
 -- Lachikios
-(25788, 4414, 3), -- Light Armor Type
-(25788, 4416, 6), -- Humanoids
+(25788, 4414, 3), -- Armor Type
+(25788, 4416, 6), -- Races
 -- Lachikios
-(25789, 4414, 3), -- Light Armor Type
-(25789, 4416, 6), -- Humanoids
+(25789, 4414, 3), -- Armor Type
+(25789, 4416, 6), -- Races
 -- Royal Guard Member
-(25790, 4416, 6), -- Humanoids
+(25790, 4416, 6), -- Races
 (25790, 4494, 1), -- Raid Boss
 (25790, 4907, 1), -- Raid Boss - Level 80
 -- Royal Guard Member
-(25791, 4414, 3), -- Light Armor Type
-(25791, 4416, 6), -- Humanoids
+(25791, 4414, 3), -- Armor Type
+(25791, 4416, 6), -- Races
 -- Rachicues
-(25792, 4414, 3), -- Light Armor Type
-(25792, 4416, 6), -- Humanoids
+(25792, 4414, 3), -- Armor Type
+(25792, 4416, 6), -- Races
 -- Rachicues
-(25793, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25793, 4274, 1), -- Blunt Weapon Weak Point
-(25793, 4275, 2), -- Holy Attack Weak Point
+(25793, 4273, 3), -- Resist Dagger
+(25793, 4274, 1), -- Blunt Attack Weak Point
+(25793, 4275, 2), -- Sacred Attack Weak Point
 (25793, 4278, 1), -- Dark Attack
-(25793, 4416, 9), -- Demons
+(25793, 4416, 9), -- Races
 (25793, 4494, 1), -- Raid Boss
 (25793, 4880, 1), -- Raid Boss - Level 72
 -- Rachicues
 (25794, 4278, 1), -- Dark Attack
 (25794, 4333, 5), -- Resist Dark Attack
-(25794, 4416, 9), -- Demons
+(25794, 4416, 9), -- Races
 (25794, 4494, 1), -- Raid Boss
 (25794, 4809, 1), -- Raid Boss - Level 75
 -- Rachicues
-(25795, 4275, 2), -- Holy Attack Weak Point
+(25795, 4275, 2), -- Sacred Attack Weak Point
 (25795, 4278, 1), -- Dark Attack
-(25795, 4416, 1), -- Undead
+(25795, 4416, 1), -- Races
 -- Veridan
-(25796, 4275, 2), -- Holy Attack Weak Point
+(25796, 4275, 2), -- Sacred Attack Weak Point
 (25796, 4278, 1), -- Dark Attack
-(25796, 4416, 1), -- Undead
+(25796, 4416, 1), -- Races
 -- Kechi
-(25797, 4416, 10), -- Dragons
+(25797, 4416, 10), -- Races
 (25797, 4494, 1), -- Raid Boss
 (25797, 4962, 1), -- Raid Boss - Level 70
 -- Kechi's Subordinate
-(25798, 4414, 3), -- Light Armor Type
-(25798, 4416, 10), -- Dragons
+(25798, 4414, 3), -- Armor Type
+(25798, 4416, 10), -- Races
 -- Michaela
 (25799, 4278, 1), -- Dark Attack
 (25799, 4333, 5), -- Resist Dark Attack
-(25799, 4414, 3), -- Light Armor Type
-(25799, 4416, 9), -- Demons
+(25799, 4414, 3), -- Armor Type
+(25799, 4416, 9), -- Races
 -- Michaela
-(25800, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25800, 4274, 1), -- Blunt Weapon Weak Point
-(25800, 4416, 9), -- Demons
+(25800, 4273, 3), -- Resist Dagger
+(25800, 4274, 1), -- Blunt Attack Weak Point
+(25800, 4416, 9), -- Races
 (25800, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 (25800, 4494, 1), -- Raid Boss
 (25800, 4983, 1), -- Raid Boss - Level 25
 -- Teredor
-(25801, 4273, 3), -- Resist Daggers/Rapier Weapon
-(25801, 4274, 1), -- Blunt Weapon Weak Point
-(25801, 4414, 3), -- Light Armor Type
-(25801, 4416, 9), -- Demons
+(25801, 4273, 3), -- Resist Dagger
+(25801, 4274, 1), -- Blunt Attack Weak Point
+(25801, 4414, 3), -- Armor Type
+(25801, 4416, 9), -- Races
 (25801, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Orc Sniper
-(27001, 4408, 1), -- HP Increase (1x)
-(27001, 4409, 1), -- MP Increase (1x)
-(27001, 4410, 11), -- Average P. Atk.
-(27001, 4411, 11), -- Average M. Atk.
-(27001, 4412, 11), -- Average P. Def.
-(27001, 4413, 11), -- Average M. Def.
-(27001, 4414, 2), -- Standard Type
-(27001, 4415, 9), -- Bows
-(27001, 4416, 6), -- Humanoids
+(27001, 4408, 1), -- HP Modifiers
+(27001, 4409, 1), -- MP Modifiers
+(27001, 4410, 11), -- P. Atk. Modifiers
+(27001, 4411, 11), -- M. Atk. Modifiers
+(27001, 4412, 11), -- P. Def. Modifiers
+(27001, 4413, 11), -- M. Def. Modifiers
+(27001, 4414, 2), -- Armor Type
+(27001, 4415, 9), -- Weapon Type
+(27001, 4416, 6), -- Races
 -- Orc Fighter
-(27002, 4408, 1), -- HP Increase (1x)
-(27002, 4409, 1), -- MP Increase (1x)
-(27002, 4410, 11), -- Average P. Atk.
-(27002, 4411, 11), -- Average M. Atk.
-(27002, 4412, 11), -- Average P. Def.
-(27002, 4413, 11), -- Average M. Def.
-(27002, 4414, 2), -- Standard Type
-(27002, 4415, 3), -- One-handed Sword
-(27002, 4416, 6), -- Humanoids
+(27002, 4408, 1), -- HP Modifiers
+(27002, 4409, 1), -- MP Modifiers
+(27002, 4410, 11), -- P. Atk. Modifiers
+(27002, 4411, 11), -- M. Atk. Modifiers
+(27002, 4412, 11), -- P. Def. Modifiers
+(27002, 4413, 11), -- M. Def. Modifiers
+(27002, 4414, 2), -- Armor Type
+(27002, 4415, 3), -- Weapon Type
+(27002, 4416, 6), -- Races
 -- Spirit Of Mirrors
-(27003, 4408, 1), -- HP Increase (1x)
-(27003, 4409, 1), -- MP Increase (1x)
-(27003, 4410, 11), -- Average P. Atk.
-(27003, 4411, 11), -- Average M. Atk.
-(27003, 4412, 11), -- Average P. Def.
-(27003, 4413, 11), -- Average M. Def.
-(27003, 4414, 2), -- Standard Type
-(27003, 4415, 3), -- One-handed Sword
-(27003, 4416, 4), -- Animals
+(27003, 4408, 1), -- HP Modifiers
+(27003, 4409, 1), -- MP Modifiers
+(27003, 4410, 11), -- P. Atk. Modifiers
+(27003, 4411, 11), -- M. Atk. Modifiers
+(27003, 4412, 11), -- P. Def. Modifiers
+(27003, 4413, 11), -- M. Def. Modifiers
+(27003, 4414, 2), -- Armor Type
+(27003, 4415, 3), -- Weapon Type
+(27003, 4416, 4), -- Races
 -- Spirit Of Mirrors
-(27004, 4408, 1), -- HP Increase (1x)
-(27004, 4409, 1), -- MP Increase (1x)
-(27004, 4410, 11), -- Average P. Atk.
-(27004, 4411, 11), -- Average M. Atk.
-(27004, 4412, 11), -- Average P. Def.
-(27004, 4413, 11), -- Average M. Def.
-(27004, 4414, 2), -- Standard Type
-(27004, 4415, 3), -- One-handed Sword
-(27004, 4416, 6), -- Humanoids
+(27004, 4408, 1), -- HP Modifiers
+(27004, 4409, 1), -- MP Modifiers
+(27004, 4410, 11), -- P. Atk. Modifiers
+(27004, 4411, 11), -- M. Atk. Modifiers
+(27004, 4412, 11), -- P. Def. Modifiers
+(27004, 4413, 11), -- M. Def. Modifiers
+(27004, 4414, 2), -- Armor Type
+(27004, 4415, 3), -- Weapon Type
+(27004, 4416, 6), -- Races
 -- Spirit Of Mirrors
-(27005, 4408, 1), -- HP Increase (1x)
-(27005, 4409, 1), -- MP Increase (1x)
-(27005, 4410, 11), -- Average P. Atk.
-(27005, 4411, 11), -- Average M. Atk.
-(27005, 4412, 11), -- Average P. Def.
-(27005, 4413, 11), -- Average M. Def.
-(27005, 4414, 2), -- Standard Type
-(27005, 4415, 3), -- One-handed Sword
-(27005, 4416, 6), -- Humanoids
+(27005, 4408, 1), -- HP Modifiers
+(27005, 4409, 1), -- MP Modifiers
+(27005, 4410, 11), -- P. Atk. Modifiers
+(27005, 4411, 11), -- M. Atk. Modifiers
+(27005, 4412, 11), -- P. Def. Modifiers
+(27005, 4413, 11), -- M. Def. Modifiers
+(27005, 4414, 2), -- Armor Type
+(27005, 4415, 3), -- Weapon Type
+(27005, 4416, 6), -- Races
 -- Bhato Bloodspear
-(27006, 4408, 1), -- HP Increase (1x)
-(27006, 4409, 1), -- MP Increase (1x)
-(27006, 4410, 11), -- Average P. Atk.
-(27006, 4411, 11), -- Average M. Atk.
-(27006, 4412, 11), -- Average P. Def.
-(27006, 4413, 11), -- Average M. Def.
-(27006, 4414, 2), -- Standard Type
-(27006, 4415, 3), -- One-handed Sword
-(27006, 4416, 6), -- Humanoids
+(27006, 4408, 1), -- HP Modifiers
+(27006, 4409, 1), -- MP Modifiers
+(27006, 4410, 11), -- P. Atk. Modifiers
+(27006, 4411, 11), -- M. Atk. Modifiers
+(27006, 4412, 11), -- P. Def. Modifiers
+(27006, 4413, 11), -- M. Def. Modifiers
+(27006, 4414, 2), -- Armor Type
+(27006, 4415, 3), -- Weapon Type
+(27006, 4416, 6), -- Races
 -- Tanuki Skullcrusher
-(27007, 4408, 1), -- HP Increase (1x)
-(27007, 4409, 1), -- MP Increase (1x)
-(27007, 4410, 11), -- Average P. Atk.
-(27007, 4411, 11), -- Average M. Atk.
-(27007, 4412, 11), -- Average P. Def.
-(27007, 4413, 11), -- Average M. Def.
-(27007, 4414, 2), -- Standard Type
-(27007, 4415, 3), -- One-handed Sword
-(27007, 4416, 6), -- Humanoids
+(27007, 4408, 1), -- HP Modifiers
+(27007, 4409, 1), -- MP Modifiers
+(27007, 4410, 11), -- P. Atk. Modifiers
+(27007, 4411, 11), -- M. Atk. Modifiers
+(27007, 4412, 11), -- P. Def. Modifiers
+(27007, 4413, 11), -- M. Def. Modifiers
+(27007, 4414, 2), -- Armor Type
+(27007, 4415, 3), -- Weapon Type
+(27007, 4416, 6), -- Races
 -- Kraacul Blackskull
-(27008, 4408, 1), -- HP Increase (1x)
-(27008, 4409, 1), -- MP Increase (1x)
-(27008, 4410, 11), -- Average P. Atk.
-(27008, 4411, 11), -- Average M. Atk.
-(27008, 4412, 11), -- Average P. Def.
-(27008, 4413, 11), -- Average M. Def.
-(27008, 4414, 2), -- Standard Type
-(27008, 4415, 3), -- One-handed Sword
-(27008, 4416, 6), -- Humanoids
+(27008, 4408, 1), -- HP Modifiers
+(27008, 4409, 1), -- MP Modifiers
+(27008, 4410, 11), -- P. Atk. Modifiers
+(27008, 4411, 11), -- M. Atk. Modifiers
+(27008, 4412, 11), -- P. Def. Modifiers
+(27008, 4413, 11), -- M. Def. Modifiers
+(27008, 4414, 2), -- Armor Type
+(27008, 4415, 3), -- Weapon Type
+(27008, 4416, 6), -- Races
 -- Taarq Blackskull
-(27009, 4408, 1), -- HP Increase (1x)
-(27009, 4409, 1), -- MP Increase (1x)
-(27009, 4410, 11), -- Average P. Atk.
-(27009, 4411, 11), -- Average M. Atk.
-(27009, 4412, 11), -- Average P. Def.
-(27009, 4413, 11), -- Average M. Def.
-(27009, 4414, 2), -- Standard Type
-(27009, 4415, 3), -- One-handed Sword
-(27009, 4416, 6), -- Humanoids
+(27009, 4408, 1), -- HP Modifiers
+(27009, 4409, 1), -- MP Modifiers
+(27009, 4410, 11), -- P. Atk. Modifiers
+(27009, 4411, 11), -- M. Atk. Modifiers
+(27009, 4412, 11), -- P. Def. Modifiers
+(27009, 4413, 11), -- M. Def. Modifiers
+(27009, 4414, 2), -- Armor Type
+(27009, 4415, 3), -- Weapon Type
+(27009, 4416, 6), -- Races
 -- Nerkas
-(27016, 4408, 1), -- HP Increase (1x)
-(27016, 4409, 1), -- MP Increase (1x)
-(27016, 4410, 11), -- Average P. Atk.
-(27016, 4411, 11), -- Average M. Atk.
-(27016, 4412, 11), -- Average P. Def.
-(27016, 4413, 11), -- Average M. Def.
-(27016, 4414, 2), -- Standard Type
-(27016, 4415, 3), -- One-handed Sword
-(27016, 4416, 9), -- Demons
+(27016, 4408, 1), -- HP Modifiers
+(27016, 4409, 1), -- MP Modifiers
+(27016, 4410, 11), -- P. Atk. Modifiers
+(27016, 4411, 11), -- M. Atk. Modifiers
+(27016, 4412, 11), -- P. Def. Modifiers
+(27016, 4413, 11), -- M. Def. Modifiers
+(27016, 4414, 2), -- Armor Type
+(27016, 4415, 3), -- Weapon Type
+(27016, 4416, 9), -- Races
 -- Plague Zombie
-(27017, 4071, 5), -- Resist Bow/Crossbow Weapons
-(27017, 4248, 1), -- Energy Drain
-(27017, 4284, 5), -- Resist Bleed Attacks
-(27017, 4408, 1), -- HP Increase (1x)
-(27017, 4409, 1), -- MP Increase (1x)
-(27017, 4410, 11), -- Average P. Atk.
-(27017, 4411, 11), -- Average M. Atk.
-(27017, 4412, 18), -- Extremely Strong P. Def.
-(27017, 4413, 18), -- Extremely Strong M. Def.
-(27017, 4414, 2), -- Standard Type
-(27017, 4415, 3), -- One-handed Sword
-(27017, 4416, 1), -- Undead
+(27017, 4071, 5), -- Resist Archery
+(27017, 4248, 1), -- NPC HP Drain - Slow
+(27017, 4284, 5), -- Resist Bleeding
+(27017, 4408, 1), -- HP Modifiers
+(27017, 4409, 1), -- MP Modifiers
+(27017, 4410, 11), -- P. Atk. Modifiers
+(27017, 4411, 11), -- M. Atk. Modifiers
+(27017, 4412, 18), -- P. Def. Modifiers
+(27017, 4413, 18), -- M. Def. Modifiers
+(27017, 4414, 2), -- Armor Type
+(27017, 4415, 3), -- Weapon Type
+(27017, 4416, 1), -- Races
 -- Orc Warrior
-(27018, 4408, 1), -- HP Increase (1x)
-(27018, 4409, 1), -- MP Increase (1x)
-(27018, 4410, 11), -- Average P. Atk.
-(27018, 4411, 11), -- Average M. Atk.
-(27018, 4412, 11), -- Average P. Def.
-(27018, 4413, 11), -- Average M. Def.
-(27018, 4414, 2), -- Standard Type
-(27018, 4415, 3), -- One-handed Sword
-(27018, 4416, 6), -- Humanoids
+(27018, 4408, 1), -- HP Modifiers
+(27018, 4409, 1), -- MP Modifiers
+(27018, 4410, 11), -- P. Atk. Modifiers
+(27018, 4411, 11), -- M. Atk. Modifiers
+(27018, 4412, 11), -- P. Def. Modifiers
+(27018, 4413, 11), -- M. Def. Modifiers
+(27018, 4414, 2), -- Armor Type
+(27018, 4415, 3), -- Weapon Type
+(27018, 4416, 6), -- Races
 -- Orc Warrior Leader
-(27019, 4408, 1), -- HP Increase (1x)
-(27019, 4409, 1), -- MP Increase (1x)
-(27019, 4410, 11), -- Average P. Atk.
-(27019, 4411, 11), -- Average M. Atk.
-(27019, 4412, 11), -- Average P. Def.
-(27019, 4413, 11), -- Average M. Def.
-(27019, 4414, 2), -- Standard Type
-(27019, 4415, 3), -- One-handed Sword
-(27019, 4416, 6), -- Humanoids
+(27019, 4408, 1), -- HP Modifiers
+(27019, 4409, 1), -- MP Modifiers
+(27019, 4410, 11), -- P. Atk. Modifiers
+(27019, 4411, 11), -- M. Atk. Modifiers
+(27019, 4412, 11), -- P. Def. Modifiers
+(27019, 4413, 11), -- M. Def. Modifiers
+(27019, 4414, 2), -- Armor Type
+(27019, 4415, 3), -- Weapon Type
+(27019, 4416, 6), -- Races
 -- Varool Foulclaw
-(27020, 4408, 1), -- HP Increase (1x)
-(27020, 4409, 1), -- MP Increase (1x)
-(27020, 4410, 11), -- Average P. Atk.
-(27020, 4411, 11), -- Average M. Atk.
-(27020, 4412, 11), -- Average P. Def.
-(27020, 4413, 11), -- Average M. Def.
-(27020, 4414, 2), -- Standard Type
-(27020, 4415, 3), -- One-handed Sword
-(27020, 4416, 6), -- Humanoids
+(27020, 4408, 1), -- HP Modifiers
+(27020, 4409, 1), -- MP Modifiers
+(27020, 4410, 11), -- P. Atk. Modifiers
+(27020, 4411, 11), -- M. Atk. Modifiers
+(27020, 4412, 11), -- P. Def. Modifiers
+(27020, 4413, 11), -- M. Def. Modifiers
+(27020, 4414, 2), -- Armor Type
+(27020, 4415, 3), -- Weapon Type
+(27020, 4416, 6), -- Races
 -- Kirunak
-(27021, 4408, 1), -- HP Increase (1x)
-(27021, 4409, 1), -- MP Increase (1x)
-(27021, 4410, 11), -- Average P. Atk.
-(27021, 4411, 11), -- Average M. Atk.
-(27021, 4412, 11), -- Average P. Def.
-(27021, 4413, 11), -- Average M. Def.
-(27021, 4414, 2), -- Standard Type
-(27021, 4415, 3), -- One-handed Sword
-(27021, 4416, 9), -- Demons
+(27021, 4408, 1), -- HP Modifiers
+(27021, 4409, 1), -- MP Modifiers
+(27021, 4410, 11), -- P. Atk. Modifiers
+(27021, 4411, 11), -- M. Atk. Modifiers
+(27021, 4412, 11), -- P. Def. Modifiers
+(27021, 4413, 11), -- M. Def. Modifiers
+(27021, 4414, 2), -- Armor Type
+(27021, 4415, 3), -- Weapon Type
+(27021, 4416, 9), -- Races
 -- Merkenis
-(27022, 4408, 1), -- HP Increase (1x)
-(27022, 4409, 1), -- MP Increase (1x)
-(27022, 4410, 11), -- Average P. Atk.
-(27022, 4411, 11), -- Average M. Atk.
-(27022, 4412, 11), -- Average P. Def.
-(27022, 4413, 11), -- Average M. Def.
-(27022, 4414, 2), -- Standard Type
-(27022, 4415, 3), -- One-handed Sword
-(27022, 4416, 9), -- Demons
+(27022, 4408, 1), -- HP Modifiers
+(27022, 4409, 1), -- MP Modifiers
+(27022, 4410, 11), -- P. Atk. Modifiers
+(27022, 4411, 11), -- M. Atk. Modifiers
+(27022, 4412, 11), -- P. Def. Modifiers
+(27022, 4413, 11), -- M. Def. Modifiers
+(27022, 4414, 2), -- Armor Type
+(27022, 4415, 3), -- Weapon Type
+(27022, 4416, 9), -- Races
 -- Undead Priest
-(27024, 4071, 5), -- Resist Bow/Crossbow Weapons
-(27024, 4248, 1), -- Energy Drain
-(27024, 4284, 5), -- Resist Bleed Attacks
-(27024, 4408, 1), -- HP Increase (1x)
-(27024, 4409, 1), -- MP Increase (1x)
-(27024, 4410, 11), -- Average P. Atk.
-(27024, 4411, 11), -- Average M. Atk.
-(27024, 4412, 18), -- Extremely Strong P. Def.
-(27024, 4413, 18), -- Extremely Strong M. Def.
-(27024, 4414, 2), -- Standard Type
-(27024, 4415, 3), -- One-handed Sword
-(27024, 4416, 1), -- Undead
+(27024, 4071, 5), -- Resist Archery
+(27024, 4248, 1), -- NPC HP Drain - Slow
+(27024, 4284, 5), -- Resist Bleeding
+(27024, 4408, 1), -- HP Modifiers
+(27024, 4409, 1), -- MP Modifiers
+(27024, 4410, 11), -- P. Atk. Modifiers
+(27024, 4411, 11), -- M. Atk. Modifiers
+(27024, 4412, 18), -- P. Def. Modifiers
+(27024, 4413, 18), -- M. Def. Modifiers
+(27024, 4414, 2), -- Armor Type
+(27024, 4415, 3), -- Weapon Type
+(27024, 4416, 1), -- Races
 -- Phantom Salamander
-(27029, 4408, 1), -- HP Increase (1x)
-(27029, 4409, 1), -- MP Increase (1x)
-(27029, 4410, 11), -- Average P. Atk.
-(27029, 4411, 11), -- Average M. Atk.
-(27029, 4412, 11), -- Average P. Def.
-(27029, 4413, 11), -- Average M. Def.
-(27029, 4414, 2), -- Standard Type
-(27029, 4415, 3), -- One-handed Sword
-(27029, 4416, 7), -- Spirits
+(27029, 4408, 1), -- HP Modifiers
+(27029, 4409, 1), -- MP Modifiers
+(27029, 4410, 11), -- P. Atk. Modifiers
+(27029, 4411, 11), -- M. Atk. Modifiers
+(27029, 4412, 11), -- P. Def. Modifiers
+(27029, 4413, 11), -- M. Def. Modifiers
+(27029, 4414, 2), -- Armor Type
+(27029, 4415, 3), -- Weapon Type
+(27029, 4416, 7), -- Races
 -- Water Seer
-(27030, 4408, 1), -- HP Increase (1x)
-(27030, 4409, 1), -- MP Increase (1x)
-(27030, 4410, 11), -- Average P. Atk.
-(27030, 4411, 11), -- Average M. Atk.
-(27030, 4412, 11), -- Average P. Def.
-(27030, 4413, 11), -- Average M. Def.
-(27030, 4414, 2), -- Standard Type
-(27030, 4415, 3), -- One-handed Sword
-(27030, 4416, 2), -- Magic Creatures
+(27030, 4408, 1), -- HP Modifiers
+(27030, 4409, 1), -- MP Modifiers
+(27030, 4410, 11), -- P. Atk. Modifiers
+(27030, 4411, 11), -- M. Atk. Modifiers
+(27030, 4412, 11), -- P. Def. Modifiers
+(27030, 4413, 11), -- M. Def. Modifiers
+(27030, 4414, 2), -- Armor Type
+(27030, 4415, 3), -- Weapon Type
+(27030, 4416, 2), -- Races
 -- Ol Mahum Sentry
-(27031, 4408, 1), -- HP Increase (1x)
-(27031, 4409, 1), -- MP Increase (1x)
-(27031, 4410, 11), -- Average P. Atk.
-(27031, 4411, 11), -- Average M. Atk.
-(27031, 4412, 11), -- Average P. Def.
-(27031, 4413, 11), -- Average M. Def.
-(27031, 4414, 2), -- Standard Type
-(27031, 4415, 3), -- One-handed Sword
-(27031, 4416, 6), -- Humanoids
+(27031, 4408, 1), -- HP Modifiers
+(27031, 4409, 1), -- MP Modifiers
+(27031, 4410, 11), -- P. Atk. Modifiers
+(27031, 4411, 11), -- M. Atk. Modifiers
+(27031, 4412, 11), -- P. Def. Modifiers
+(27031, 4413, 11), -- M. Def. Modifiers
+(27031, 4414, 2), -- Armor Type
+(27031, 4415, 3), -- Weapon Type
+(27031, 4416, 6), -- Races
 -- Lizardman Warrior
-(27032, 4408, 1), -- HP Increase (1x)
-(27032, 4409, 1), -- MP Increase (1x)
-(27032, 4410, 11), -- Average P. Atk.
-(27032, 4411, 11), -- Average M. Atk.
-(27032, 4412, 11), -- Average P. Def.
-(27032, 4413, 11), -- Average M. Def.
-(27032, 4414, 2), -- Standard Type
-(27032, 4415, 11), -- Spears
-(27032, 4416, 6), -- Humanoids
+(27032, 4408, 1), -- HP Modifiers
+(27032, 4409, 1), -- MP Modifiers
+(27032, 4410, 11), -- P. Atk. Modifiers
+(27032, 4411, 11), -- M. Atk. Modifiers
+(27032, 4412, 11), -- P. Def. Modifiers
+(27032, 4413, 11), -- M. Def. Modifiers
+(27032, 4414, 2), -- Armor Type
+(27032, 4415, 11), -- Weapon Type
+(27032, 4416, 6), -- Races
 -- Lizardman Scout
-(27033, 4408, 1), -- HP Increase (1x)
-(27033, 4409, 1), -- MP Increase (1x)
-(27033, 4410, 11), -- Average P. Atk.
-(27033, 4411, 11), -- Average M. Atk.
-(27033, 4412, 11), -- Average P. Def.
-(27033, 4413, 11), -- Average M. Def.
-(27033, 4414, 2), -- Standard Type
-(27033, 4415, 3), -- One-handed Sword
-(27033, 4416, 6), -- Humanoids
+(27033, 4408, 1), -- HP Modifiers
+(27033, 4409, 1), -- MP Modifiers
+(27033, 4410, 11), -- P. Atk. Modifiers
+(27033, 4411, 11), -- M. Atk. Modifiers
+(27033, 4412, 11), -- P. Def. Modifiers
+(27033, 4413, 11), -- M. Def. Modifiers
+(27033, 4414, 2), -- Armor Type
+(27033, 4415, 3), -- Weapon Type
+(27033, 4416, 6), -- Races
 -- Lizardman Soldier
-(27034, 4408, 1), -- HP Increase (1x)
-(27034, 4409, 1), -- MP Increase (1x)
-(27034, 4410, 11), -- Average P. Atk.
-(27034, 4411, 11), -- Average M. Atk.
-(27034, 4412, 11), -- Average P. Def.
-(27034, 4413, 11), -- Average M. Def.
-(27034, 4414, 2), -- Standard Type
-(27034, 4415, 11), -- Spears
-(27034, 4416, 6), -- Humanoids
+(27034, 4408, 1), -- HP Modifiers
+(27034, 4409, 1), -- MP Modifiers
+(27034, 4410, 11), -- P. Atk. Modifiers
+(27034, 4411, 11), -- M. Atk. Modifiers
+(27034, 4412, 11), -- P. Def. Modifiers
+(27034, 4413, 11), -- M. Def. Modifiers
+(27034, 4414, 2), -- Armor Type
+(27034, 4415, 11), -- Weapon Type
+(27034, 4416, 6), -- Races
 -- Tamil
-(27035, 4408, 1), -- HP Increase (1x)
-(27035, 4409, 1), -- MP Increase (1x)
-(27035, 4410, 11), -- Average P. Atk.
-(27035, 4411, 11), -- Average M. Atk.
-(27035, 4412, 11), -- Average P. Def.
-(27035, 4413, 11), -- Average M. Def.
-(27035, 4414, 2), -- Standard Type
-(27035, 4415, 5), -- Blunt Weapons
-(27035, 4416, 11), -- Giants
+(27035, 4408, 1), -- HP Modifiers
+(27035, 4409, 1), -- MP Modifiers
+(27035, 4410, 11), -- P. Atk. Modifiers
+(27035, 4411, 11), -- M. Atk. Modifiers
+(27035, 4412, 11), -- P. Def. Modifiers
+(27035, 4413, 11), -- M. Def. Modifiers
+(27035, 4414, 2), -- Armor Type
+(27035, 4415, 5), -- Weapon Type
+(27035, 4416, 11), -- Races
 -- Calpico
-(27036, 4408, 1), -- HP Increase (1x)
-(27036, 4409, 1), -- MP Increase (1x)
-(27036, 4410, 11), -- Average P. Atk.
-(27036, 4411, 11), -- Average M. Atk.
-(27036, 4412, 11), -- Average P. Def.
-(27036, 4413, 11), -- Average M. Def.
-(27036, 4414, 2), -- Standard Type
-(27036, 4415, 3), -- One-handed Sword
-(27036, 4416, 6), -- Humanoids
+(27036, 4408, 1), -- HP Modifiers
+(27036, 4409, 1), -- MP Modifiers
+(27036, 4410, 11), -- P. Atk. Modifiers
+(27036, 4411, 11), -- M. Atk. Modifiers
+(27036, 4412, 11), -- P. Def. Modifiers
+(27036, 4413, 11), -- M. Def. Modifiers
+(27036, 4414, 2), -- Armor Type
+(27036, 4415, 3), -- Weapon Type
+(27036, 4416, 6), -- Races
 -- Calpico's Goons
-(27037, 4408, 1), -- HP Increase (1x)
-(27037, 4409, 1), -- MP Increase (1x)
-(27037, 4410, 11), -- Average P. Atk.
-(27037, 4411, 11), -- Average M. Atk.
-(27037, 4412, 11), -- Average P. Def.
-(27037, 4413, 11), -- Average M. Def.
-(27037, 4414, 2), -- Standard Type
-(27037, 4415, 3), -- One-handed Sword
-(27037, 4416, 6), -- Humanoids
+(27037, 4408, 1), -- HP Modifiers
+(27037, 4409, 1), -- MP Modifiers
+(27037, 4410, 11), -- P. Atk. Modifiers
+(27037, 4411, 11), -- M. Atk. Modifiers
+(27037, 4412, 11), -- P. Def. Modifiers
+(27037, 4413, 11), -- M. Def. Modifiers
+(27037, 4414, 2), -- Armor Type
+(27037, 4415, 3), -- Weapon Type
+(27037, 4416, 6), -- Races
 -- Cat's Eye Bandit
-(27038, 4408, 1), -- HP Increase (1x)
-(27038, 4409, 1), -- MP Increase (1x)
-(27038, 4410, 11), -- Average P. Atk.
-(27038, 4411, 11), -- Average M. Atk.
-(27038, 4412, 11), -- Average P. Def.
-(27038, 4413, 11), -- Average M. Def.
-(27038, 4414, 2), -- Standard Type
-(27038, 4415, 7), -- Daggers
-(27038, 4416, 6), -- Humanoids
+(27038, 4408, 1), -- HP Modifiers
+(27038, 4409, 1), -- MP Modifiers
+(27038, 4410, 11), -- P. Atk. Modifiers
+(27038, 4411, 11), -- M. Atk. Modifiers
+(27038, 4412, 11), -- P. Def. Modifiers
+(27038, 4413, 11), -- M. Def. Modifiers
+(27038, 4414, 2), -- Armor Type
+(27038, 4415, 7), -- Weapon Type
+(27038, 4416, 6), -- Races
 -- Varangka's Messenger
-(27041, 4408, 1), -- HP Increase (1x)
-(27041, 4409, 1), -- MP Increase (1x)
-(27041, 4410, 11), -- Average P. Atk.
-(27041, 4411, 11), -- Average M. Atk.
-(27041, 4412, 11), -- Average P. Def.
-(27041, 4413, 11), -- Average M. Def.
-(27041, 4414, 2), -- Standard Type
-(27041, 4415, 3), -- One-handed Sword
-(27041, 4416, 6), -- Humanoids
+(27041, 4408, 1), -- HP Modifiers
+(27041, 4409, 1), -- MP Modifiers
+(27041, 4410, 11), -- P. Atk. Modifiers
+(27041, 4411, 11), -- M. Atk. Modifiers
+(27041, 4412, 11), -- P. Def. Modifiers
+(27041, 4413, 11), -- M. Def. Modifiers
+(27041, 4414, 2), -- Armor Type
+(27041, 4415, 3), -- Weapon Type
+(27041, 4416, 6), -- Races
 -- Orc Escort
-(27042, 4408, 1), -- HP Increase (1x)
-(27042, 4409, 1), -- MP Increase (1x)
-(27042, 4410, 11), -- Average P. Atk.
-(27042, 4411, 11), -- Average M. Atk.
-(27042, 4412, 11), -- Average P. Def.
-(27042, 4413, 11), -- Average M. Def.
-(27042, 4414, 2), -- Standard Type
-(27042, 4415, 3), -- One-handed Sword
-(27042, 4416, 6), -- Humanoids
+(27042, 4408, 1), -- HP Modifiers
+(27042, 4409, 1), -- MP Modifiers
+(27042, 4410, 11), -- P. Atk. Modifiers
+(27042, 4411, 11), -- M. Atk. Modifiers
+(27042, 4412, 11), -- P. Def. Modifiers
+(27042, 4413, 11), -- M. Def. Modifiers
+(27042, 4414, 2), -- Armor Type
+(27042, 4415, 3), -- Weapon Type
+(27042, 4416, 6), -- Races
 -- Varangka's Tracker
-(27043, 4408, 1), -- HP Increase (1x)
-(27043, 4409, 1), -- MP Increase (1x)
-(27043, 4410, 11), -- Average P. Atk.
-(27043, 4411, 11), -- Average M. Atk.
-(27043, 4412, 11), -- Average P. Def.
-(27043, 4413, 11), -- Average M. Def.
-(27043, 4414, 2), -- Standard Type
-(27043, 4415, 3), -- One-handed Sword
-(27043, 4416, 4), -- Animals
+(27043, 4408, 1), -- HP Modifiers
+(27043, 4409, 1), -- MP Modifiers
+(27043, 4410, 11), -- P. Atk. Modifiers
+(27043, 4411, 11), -- M. Atk. Modifiers
+(27043, 4412, 11), -- P. Def. Modifiers
+(27043, 4413, 11), -- M. Def. Modifiers
+(27043, 4414, 2), -- Armor Type
+(27043, 4415, 3), -- Weapon Type
+(27043, 4416, 4), -- Races
 -- Kasha Bear Totem Spirit
-(27044, 4408, 1), -- HP Increase (1x)
-(27044, 4409, 1), -- MP Increase (1x)
-(27044, 4410, 11), -- Average P. Atk.
-(27044, 4411, 11), -- Average M. Atk.
-(27044, 4412, 11), -- Average P. Def.
-(27044, 4413, 11), -- Average M. Def.
-(27044, 4414, 2), -- Standard Type
-(27044, 4415, 3), -- One-handed Sword
-(27044, 4416, 7), -- Spirits
+(27044, 4408, 1), -- HP Modifiers
+(27044, 4409, 1), -- MP Modifiers
+(27044, 4410, 11), -- P. Atk. Modifiers
+(27044, 4411, 11), -- M. Atk. Modifiers
+(27044, 4412, 11), -- P. Def. Modifiers
+(27044, 4413, 11), -- M. Def. Modifiers
+(27044, 4414, 2), -- Armor Type
+(27044, 4415, 3), -- Weapon Type
+(27044, 4416, 7), -- Races
 -- Kuruka Ratman Leader
-(27045, 4408, 1), -- HP Increase (1x)
-(27045, 4409, 1), -- MP Increase (1x)
-(27045, 4410, 11), -- Average P. Atk.
-(27045, 4411, 11), -- Average M. Atk.
-(27045, 4412, 11), -- Average P. Def.
-(27045, 4413, 11), -- Average M. Def.
-(27045, 4414, 2), -- Standard Type
-(27045, 4415, 3), -- One-handed Sword
-(27045, 4416, 6), -- Humanoids
+(27045, 4408, 1), -- HP Modifiers
+(27045, 4409, 1), -- MP Modifiers
+(27045, 4410, 11), -- P. Atk. Modifiers
+(27045, 4411, 11), -- M. Atk. Modifiers
+(27045, 4412, 11), -- P. Def. Modifiers
+(27045, 4413, 11), -- M. Def. Modifiers
+(27045, 4414, 2), -- Armor Type
+(27045, 4415, 3), -- Weapon Type
+(27045, 4416, 6), -- Races
 -- Sumi
-(27046, 4408, 1), -- HP Increase (1x)
-(27046, 4409, 1), -- MP Increase (1x)
-(27046, 4410, 11), -- Average P. Atk.
-(27046, 4411, 11), -- Average M. Atk.
-(27046, 4412, 11), -- Average P. Def.
-(27046, 4413, 11), -- Average M. Def.
-(27046, 4414, 2), -- Standard Type
-(27046, 4415, 3), -- One-handed Sword
-(27046, 4416, 6), -- Humanoids
+(27046, 4408, 1), -- HP Modifiers
+(27046, 4409, 1), -- MP Modifiers
+(27046, 4410, 11), -- P. Atk. Modifiers
+(27046, 4411, 11), -- M. Atk. Modifiers
+(27046, 4412, 11), -- P. Def. Modifiers
+(27046, 4413, 11), -- M. Def. Modifiers
+(27046, 4414, 2), -- Armor Type
+(27046, 4415, 3), -- Weapon Type
+(27046, 4416, 6), -- Races
 -- Wanuk
-(27047, 4408, 1), -- HP Increase (1x)
-(27047, 4409, 1), -- MP Increase (1x)
-(27047, 4410, 11), -- Average P. Atk.
-(27047, 4411, 11), -- Average M. Atk.
-(27047, 4412, 11), -- Average P. Def.
-(27047, 4413, 11), -- Average M. Def.
-(27047, 4414, 2), -- Standard Type
-(27047, 4415, 3), -- One-handed Sword
-(27047, 4416, 6), -- Humanoids
+(27047, 4408, 1), -- HP Modifiers
+(27047, 4409, 1), -- MP Modifiers
+(27047, 4410, 11), -- P. Atk. Modifiers
+(27047, 4411, 11), -- M. Atk. Modifiers
+(27047, 4412, 11), -- P. Def. Modifiers
+(27047, 4413, 11), -- M. Def. Modifiers
+(27047, 4414, 2), -- Armor Type
+(27047, 4415, 3), -- Weapon Type
+(27047, 4416, 6), -- Races
 -- Chewba
-(27048, 4408, 1), -- HP Increase (1x)
-(27048, 4409, 1), -- MP Increase (1x)
-(27048, 4410, 11), -- Average P. Atk.
-(27048, 4411, 11), -- Average M. Atk.
-(27048, 4412, 11), -- Average P. Def.
-(27048, 4413, 11), -- Average M. Def.
-(27048, 4414, 2), -- Standard Type
-(27048, 4415, 3), -- One-handed Sword
-(27048, 4416, 6), -- Humanoids
+(27048, 4408, 1), -- HP Modifiers
+(27048, 4409, 1), -- MP Modifiers
+(27048, 4410, 11), -- P. Atk. Modifiers
+(27048, 4411, 11), -- M. Atk. Modifiers
+(27048, 4412, 11), -- P. Def. Modifiers
+(27048, 4413, 11), -- M. Def. Modifiers
+(27048, 4414, 2), -- Armor Type
+(27048, 4415, 3), -- Weapon Type
+(27048, 4416, 6), -- Races
 -- Heitafu
-(27049, 4408, 1), -- HP Increase (1x)
-(27049, 4409, 1), -- MP Increase (1x)
-(27049, 4410, 11), -- Average P. Atk.
-(27049, 4411, 11), -- Average M. Atk.
-(27049, 4412, 11), -- Average P. Def.
-(27049, 4413, 11), -- Average M. Def.
-(27049, 4414, 2), -- Standard Type
-(27049, 4415, 3), -- One-handed Sword
-(27049, 4416, 6), -- Humanoids
+(27049, 4408, 1), -- HP Modifiers
+(27049, 4409, 1), -- MP Modifiers
+(27049, 4410, 11), -- P. Atk. Modifiers
+(27049, 4411, 11), -- M. Atk. Modifiers
+(27049, 4412, 11), -- P. Def. Modifiers
+(27049, 4413, 11), -- M. Def. Modifiers
+(27049, 4414, 2), -- Armor Type
+(27049, 4415, 3), -- Weapon Type
+(27049, 4416, 6), -- Races
 -- Picubo
-(27050, 4408, 1), -- HP Increase (1x)
-(27050, 4409, 1), -- MP Increase (1x)
-(27050, 4410, 11), -- Average P. Atk.
-(27050, 4411, 11), -- Average M. Atk.
-(27050, 4412, 11), -- Average P. Def.
-(27050, 4413, 11), -- Average M. Def.
-(27050, 4414, 2), -- Standard Type
-(27050, 4415, 3), -- One-handed Sword
-(27050, 4416, 6), -- Humanoids
+(27050, 4408, 1), -- HP Modifiers
+(27050, 4409, 1), -- MP Modifiers
+(27050, 4410, 11), -- P. Atk. Modifiers
+(27050, 4411, 11), -- M. Atk. Modifiers
+(27050, 4412, 11), -- P. Def. Modifiers
+(27050, 4413, 11), -- M. Def. Modifiers
+(27050, 4414, 2), -- Armor Type
+(27050, 4415, 3), -- Weapon Type
+(27050, 4416, 6), -- Races
 -- Bumbum
-(27051, 4408, 1), -- HP Increase (1x)
-(27051, 4409, 1), -- MP Increase (1x)
-(27051, 4410, 11), -- Average P. Atk.
-(27051, 4411, 11), -- Average M. Atk.
-(27051, 4412, 11), -- Average P. Def.
-(27051, 4413, 11), -- Average M. Def.
-(27051, 4414, 2), -- Standard Type
-(27051, 4415, 3), -- One-handed Sword
-(27051, 4416, 6), -- Humanoids
+(27051, 4408, 1), -- HP Modifiers
+(27051, 4409, 1), -- MP Modifiers
+(27051, 4410, 11), -- P. Atk. Modifiers
+(27051, 4411, 11), -- M. Atk. Modifiers
+(27051, 4412, 11), -- P. Def. Modifiers
+(27051, 4413, 11), -- M. Def. Modifiers
+(27051, 4414, 2), -- Armor Type
+(27051, 4415, 3), -- Weapon Type
+(27051, 4416, 6), -- Races
 -- Minsku
-(27052, 4408, 1), -- HP Increase (1x)
-(27052, 4409, 1), -- MP Increase (1x)
-(27052, 4410, 11), -- Average P. Atk.
-(27052, 4411, 11), -- Average M. Atk.
-(27052, 4412, 11), -- Average P. Def.
-(27052, 4413, 11), -- Average M. Def.
-(27052, 4414, 2), -- Standard Type
-(27052, 4415, 3), -- One-handed Sword
-(27052, 4416, 6), -- Humanoids
+(27052, 4408, 1), -- HP Modifiers
+(27052, 4409, 1), -- MP Modifiers
+(27052, 4410, 11), -- P. Atk. Modifiers
+(27052, 4411, 11), -- M. Atk. Modifiers
+(27052, 4412, 11), -- P. Def. Modifiers
+(27052, 4413, 11), -- M. Def. Modifiers
+(27052, 4414, 2), -- Armor Type
+(27052, 4415, 3), -- Weapon Type
+(27052, 4416, 6), -- Races
 -- Chuchu
-(27053, 4408, 1), -- HP Increase (1x)
-(27053, 4409, 1), -- MP Increase (1x)
-(27053, 4410, 11), -- Average P. Atk.
-(27053, 4411, 11), -- Average M. Atk.
-(27053, 4412, 11), -- Average P. Def.
-(27053, 4413, 11), -- Average M. Def.
-(27053, 4414, 2), -- Standard Type
-(27053, 4415, 3), -- One-handed Sword
-(27053, 4416, 6), -- Humanoids
+(27053, 4408, 1), -- HP Modifiers
+(27053, 4409, 1), -- MP Modifiers
+(27053, 4410, 11), -- P. Atk. Modifiers
+(27053, 4411, 11), -- M. Atk. Modifiers
+(27053, 4412, 11), -- P. Def. Modifiers
+(27053, 4413, 11), -- M. Def. Modifiers
+(27053, 4414, 2), -- Armor Type
+(27053, 4415, 3), -- Weapon Type
+(27053, 4416, 6), -- Races
 -- Umbar Orc
-(27054, 4408, 1), -- HP Increase (1x)
-(27054, 4409, 1), -- MP Increase (1x)
-(27054, 4410, 11), -- Average P. Atk.
-(27054, 4411, 11), -- Average M. Atk.
-(27054, 4412, 11), -- Average P. Def.
-(27054, 4413, 11), -- Average M. Def.
-(27054, 4414, 2), -- Standard Type
-(27054, 4415, 3), -- One-handed Sword
-(27054, 4416, 6), -- Humanoids
+(27054, 4408, 1), -- HP Modifiers
+(27054, 4409, 1), -- MP Modifiers
+(27054, 4410, 11), -- P. Atk. Modifiers
+(27054, 4411, 11), -- M. Atk. Modifiers
+(27054, 4412, 11), -- P. Def. Modifiers
+(27054, 4413, 11), -- M. Def. Modifiers
+(27054, 4414, 2), -- Armor Type
+(27054, 4415, 3), -- Weapon Type
+(27054, 4416, 6), -- Races
 -- Zakan
-(27055, 4408, 1), -- HP Increase (1x)
-(27055, 4409, 1), -- MP Increase (1x)
-(27055, 4410, 11), -- Average P. Atk.
-(27055, 4411, 11), -- Average M. Atk.
-(27055, 4412, 11), -- Average P. Def.
-(27055, 4413, 11), -- Average M. Def.
-(27055, 4414, 2), -- Standard Type
-(27055, 4415, 3), -- One-handed Sword
-(27055, 4416, 6), -- Humanoids
+(27055, 4408, 1), -- HP Modifiers
+(27055, 4409, 1), -- MP Modifiers
+(27055, 4410, 11), -- P. Atk. Modifiers
+(27055, 4411, 11), -- M. Atk. Modifiers
+(27055, 4412, 11), -- P. Def. Modifiers
+(27055, 4413, 11), -- M. Def. Modifiers
+(27055, 4414, 2), -- Armor Type
+(27055, 4415, 3), -- Weapon Type
+(27055, 4416, 6), -- Races
 -- Durka Spirit
-(27056, 4408, 1), -- HP Increase (1x)
-(27056, 4409, 1), -- MP Increase (1x)
-(27056, 4410, 11), -- Average P. Atk.
-(27056, 4411, 11), -- Average M. Atk.
-(27056, 4412, 11), -- Average P. Def.
-(27056, 4413, 11), -- Average M. Def.
-(27056, 4414, 2), -- Standard Type
-(27056, 4415, 3), -- One-handed Sword
-(27056, 4416, 2), -- Magic Creatures
+(27056, 4408, 1), -- HP Modifiers
+(27056, 4409, 1), -- MP Modifiers
+(27056, 4410, 11), -- P. Atk. Modifiers
+(27056, 4411, 11), -- M. Atk. Modifiers
+(27056, 4412, 11), -- P. Def. Modifiers
+(27056, 4413, 11), -- M. Def. Modifiers
+(27056, 4414, 2), -- Armor Type
+(27056, 4415, 3), -- Weapon Type
+(27056, 4416, 2), -- Races
 -- Honey Bear
-(27058, 4408, 1), -- HP Increase (1x)
-(27058, 4409, 1), -- MP Increase (1x)
-(27058, 4410, 11), -- Average P. Atk.
-(27058, 4411, 11), -- Average M. Atk.
-(27058, 4412, 11), -- Average P. Def.
-(27058, 4413, 11), -- Average M. Def.
-(27058, 4414, 2), -- Standard Type
-(27058, 4415, 3), -- One-handed Sword
-(27058, 4416, 4), -- Animals
+(27058, 4408, 1), -- HP Modifiers
+(27058, 4409, 1), -- MP Modifiers
+(27058, 4410, 11), -- P. Atk. Modifiers
+(27058, 4411, 11), -- M. Atk. Modifiers
+(27058, 4412, 11), -- P. Def. Modifiers
+(27058, 4413, 11), -- M. Def. Modifiers
+(27058, 4414, 2), -- Armor Type
+(27058, 4415, 3), -- Weapon Type
+(27058, 4416, 4), -- Races
 -- Uoph
-(27059, 4408, 1), -- HP Increase (1x)
-(27059, 4409, 1), -- MP Increase (1x)
-(27059, 4410, 11), -- Average P. Atk.
-(27059, 4411, 11), -- Average M. Atk.
-(27059, 4412, 11), -- Average P. Def.
-(27059, 4413, 11), -- Average M. Def.
-(27059, 4414, 2), -- Standard Type
-(27059, 4415, 3), -- One-handed Sword
-(27059, 4416, 6), -- Humanoids
+(27059, 4408, 1), -- HP Modifiers
+(27059, 4409, 1), -- MP Modifiers
+(27059, 4410, 11), -- P. Atk. Modifiers
+(27059, 4411, 11), -- M. Atk. Modifiers
+(27059, 4412, 11), -- P. Def. Modifiers
+(27059, 4413, 11), -- M. Def. Modifiers
+(27059, 4414, 2), -- Armor Type
+(27059, 4415, 3), -- Weapon Type
+(27059, 4416, 6), -- Races
 -- Kracha
-(27060, 4408, 1), -- HP Increase (1x)
-(27060, 4409, 1), -- MP Increase (1x)
-(27060, 4410, 11), -- Average P. Atk.
-(27060, 4411, 11), -- Average M. Atk.
-(27060, 4412, 11), -- Average P. Def.
-(27060, 4413, 11), -- Average M. Def.
-(27060, 4414, 2), -- Standard Type
-(27060, 4415, 9), -- Bows
-(27060, 4416, 6), -- Humanoids
+(27060, 4408, 1), -- HP Modifiers
+(27060, 4409, 1), -- MP Modifiers
+(27060, 4410, 11), -- P. Atk. Modifiers
+(27060, 4411, 11), -- M. Atk. Modifiers
+(27060, 4412, 11), -- P. Def. Modifiers
+(27060, 4413, 11), -- M. Def. Modifiers
+(27060, 4414, 2), -- Armor Type
+(27060, 4415, 9), -- Weapon Type
+(27060, 4416, 6), -- Races
 -- Batoh
-(27061, 4408, 1), -- HP Increase (1x)
-(27061, 4409, 1), -- MP Increase (1x)
-(27061, 4410, 11), -- Average P. Atk.
-(27061, 4411, 11), -- Average M. Atk.
-(27061, 4412, 11), -- Average P. Def.
-(27061, 4413, 11), -- Average M. Def.
-(27061, 4414, 2), -- Standard Type
-(27061, 4415, 5), -- Blunt Weapons
-(27061, 4416, 6), -- Humanoids
+(27061, 4408, 1), -- HP Modifiers
+(27061, 4409, 1), -- MP Modifiers
+(27061, 4410, 11), -- P. Atk. Modifiers
+(27061, 4411, 11), -- M. Atk. Modifiers
+(27061, 4412, 11), -- P. Def. Modifiers
+(27061, 4413, 11), -- M. Def. Modifiers
+(27061, 4414, 2), -- Armor Type
+(27061, 4415, 5), -- Weapon Type
+(27061, 4416, 6), -- Races
 -- Tanukia
-(27062, 4408, 1), -- HP Increase (1x)
-(27062, 4409, 1), -- MP Increase (1x)
-(27062, 4410, 11), -- Average P. Atk.
-(27062, 4411, 11), -- Average M. Atk.
-(27062, 4412, 11), -- Average P. Def.
-(27062, 4413, 11), -- Average M. Def.
-(27062, 4414, 2), -- Standard Type
-(27062, 4415, 3), -- One-handed Sword
-(27062, 4416, 6), -- Humanoids
+(27062, 4408, 1), -- HP Modifiers
+(27062, 4409, 1), -- MP Modifiers
+(27062, 4410, 11), -- P. Atk. Modifiers
+(27062, 4411, 11), -- M. Atk. Modifiers
+(27062, 4412, 11), -- P. Def. Modifiers
+(27062, 4413, 11), -- M. Def. Modifiers
+(27062, 4414, 2), -- Armor Type
+(27062, 4415, 3), -- Weapon Type
+(27062, 4416, 6), -- Races
 -- Tanukia's Warhound
-(27063, 4408, 1), -- HP Increase (1x)
-(27063, 4409, 1), -- MP Increase (1x)
-(27063, 4410, 11), -- Average P. Atk.
-(27063, 4411, 11), -- Average M. Atk.
-(27063, 4412, 11), -- Average P. Def.
-(27063, 4413, 11), -- Average M. Def.
-(27063, 4414, 2), -- Standard Type
-(27063, 4415, 3), -- One-handed Sword
-(27063, 4416, 4), -- Animals
+(27063, 4408, 1), -- HP Modifiers
+(27063, 4409, 1), -- MP Modifiers
+(27063, 4410, 11), -- P. Atk. Modifiers
+(27063, 4411, 11), -- M. Atk. Modifiers
+(27063, 4412, 11), -- P. Def. Modifiers
+(27063, 4413, 11), -- M. Def. Modifiers
+(27063, 4414, 2), -- Armor Type
+(27063, 4415, 3), -- Weapon Type
+(27063, 4416, 4), -- Races
 -- Turel
-(27064, 4408, 1), -- HP Increase (1x)
-(27064, 4409, 1), -- MP Increase (1x)
-(27064, 4410, 11), -- Average P. Atk.
-(27064, 4411, 11), -- Average M. Atk.
-(27064, 4412, 11), -- Average P. Def.
-(27064, 4413, 11), -- Average M. Def.
-(27064, 4414, 2), -- Standard Type
-(27064, 4415, 3), -- One-handed Sword
-(27064, 4416, 6), -- Humanoids
+(27064, 4408, 1), -- HP Modifiers
+(27064, 4409, 1), -- MP Modifiers
+(27064, 4410, 11), -- P. Atk. Modifiers
+(27064, 4411, 11), -- M. Atk. Modifiers
+(27064, 4412, 11), -- P. Def. Modifiers
+(27064, 4413, 11), -- M. Def. Modifiers
+(27064, 4414, 2), -- Armor Type
+(27064, 4415, 3), -- Weapon Type
+(27064, 4416, 6), -- Races
 -- Roko
-(27065, 4408, 1), -- HP Increase (1x)
-(27065, 4409, 1), -- MP Increase (1x)
-(27065, 4410, 11), -- Average P. Atk.
-(27065, 4411, 11), -- Average M. Atk.
-(27065, 4412, 11), -- Average P. Def.
-(27065, 4413, 11), -- Average M. Def.
-(27065, 4414, 2), -- Standard Type
-(27065, 4415, 9), -- Bows
-(27065, 4416, 6), -- Humanoids
+(27065, 4408, 1), -- HP Modifiers
+(27065, 4409, 1), -- MP Modifiers
+(27065, 4410, 11), -- P. Atk. Modifiers
+(27065, 4411, 11), -- M. Atk. Modifiers
+(27065, 4412, 11), -- P. Def. Modifiers
+(27065, 4413, 11), -- M. Def. Modifiers
+(27065, 4414, 2), -- Armor Type
+(27065, 4415, 9), -- Weapon Type
+(27065, 4416, 6), -- Races
 -- Roko's Warhound
-(27066, 4408, 1), -- HP Increase (1x)
-(27066, 4409, 1), -- MP Increase (1x)
-(27066, 4410, 11), -- Average P. Atk.
-(27066, 4411, 11), -- Average M. Atk.
-(27066, 4412, 11), -- Average P. Def.
-(27066, 4413, 11), -- Average M. Def.
-(27066, 4414, 2), -- Standard Type
-(27066, 4415, 3), -- One-handed Sword
-(27066, 4416, 4), -- Animals
+(27066, 4408, 1), -- HP Modifiers
+(27066, 4409, 1), -- MP Modifiers
+(27066, 4410, 11), -- P. Atk. Modifiers
+(27066, 4411, 11), -- M. Atk. Modifiers
+(27066, 4412, 11), -- P. Def. Modifiers
+(27066, 4413, 11), -- M. Def. Modifiers
+(27066, 4414, 2), -- Armor Type
+(27066, 4415, 3), -- Weapon Type
+(27066, 4416, 4), -- Races
 -- Kamut
-(27067, 4408, 1), -- HP Increase (1x)
-(27067, 4409, 1), -- MP Increase (1x)
-(27067, 4410, 11), -- Average P. Atk.
-(27067, 4411, 11), -- Average M. Atk.
-(27067, 4412, 11), -- Average P. Def.
-(27067, 4413, 11), -- Average M. Def.
-(27067, 4414, 2), -- Standard Type
-(27067, 4415, 5), -- Blunt Weapons
-(27067, 4416, 6), -- Humanoids
+(27067, 4408, 1), -- HP Modifiers
+(27067, 4409, 1), -- MP Modifiers
+(27067, 4410, 11), -- P. Atk. Modifiers
+(27067, 4411, 11), -- M. Atk. Modifiers
+(27067, 4412, 11), -- P. Def. Modifiers
+(27067, 4413, 11), -- M. Def. Modifiers
+(27067, 4414, 2), -- Armor Type
+(27067, 4415, 5), -- Weapon Type
+(27067, 4416, 6), -- Races
 -- Murtika
-(27068, 4408, 1), -- HP Increase (1x)
-(27068, 4409, 1), -- MP Increase (1x)
-(27068, 4410, 11), -- Average P. Atk.
-(27068, 4411, 11), -- Average M. Atk.
-(27068, 4412, 11), -- Average P. Def.
-(27068, 4413, 11), -- Average M. Def.
-(27068, 4414, 2), -- Standard Type
-(27068, 4415, 9), -- Bows
-(27068, 4416, 6), -- Humanoids
+(27068, 4408, 1), -- HP Modifiers
+(27068, 4409, 1), -- MP Modifiers
+(27068, 4410, 11), -- P. Atk. Modifiers
+(27068, 4411, 11), -- M. Atk. Modifiers
+(27068, 4412, 11), -- P. Def. Modifiers
+(27068, 4413, 11), -- M. Def. Modifiers
+(27068, 4414, 2), -- Armor Type
+(27068, 4415, 9), -- Weapon Type
+(27068, 4416, 6), -- Races
 -- Murtika's Warhound
-(27069, 4408, 1), -- HP Increase (1x)
-(27069, 4409, 1), -- MP Increase (1x)
-(27069, 4410, 11), -- Average P. Atk.
-(27069, 4411, 11), -- Average M. Atk.
-(27069, 4412, 11), -- Average P. Def.
-(27069, 4413, 11), -- Average M. Def.
-(27069, 4414, 2), -- Standard Type
-(27069, 4415, 3), -- One-handed Sword
-(27069, 4416, 4), -- Animals
+(27069, 4408, 1), -- HP Modifiers
+(27069, 4409, 1), -- MP Modifiers
+(27069, 4410, 11), -- P. Atk. Modifiers
+(27069, 4411, 11), -- M. Atk. Modifiers
+(27069, 4412, 11), -- P. Def. Modifiers
+(27069, 4413, 11), -- M. Def. Modifiers
+(27069, 4414, 2), -- Armor Type
+(27069, 4415, 3), -- Weapon Type
+(27069, 4416, 4), -- Races
 -- Tumran Orc Brigand
-(27070, 4408, 1), -- HP Increase (1x)
-(27070, 4409, 1), -- MP Increase (1x)
-(27070, 4410, 11), -- Average P. Atk.
-(27070, 4411, 11), -- Average M. Atk.
-(27070, 4412, 11), -- Average P. Def.
-(27070, 4413, 11), -- Average M. Def.
-(27070, 4414, 2), -- Standard Type
-(27070, 4415, 3), -- One-handed Sword
-(27070, 4416, 6), -- Humanoids
+(27070, 4408, 1), -- HP Modifiers
+(27070, 4409, 1), -- MP Modifiers
+(27070, 4410, 11), -- P. Atk. Modifiers
+(27070, 4411, 11), -- M. Atk. Modifiers
+(27070, 4412, 11), -- P. Def. Modifiers
+(27070, 4413, 11), -- M. Def. Modifiers
+(27070, 4414, 2), -- Armor Type
+(27070, 4415, 3), -- Weapon Type
+(27070, 4416, 6), -- Races
 -- Unicorn Of Eva
-(27077, 4408, 1), -- HP Increase (1x)
-(27077, 4409, 1), -- MP Increase (1x)
-(27077, 4410, 11), -- Average P. Atk.
-(27077, 4411, 11), -- Average M. Atk.
-(27077, 4412, 11), -- Average P. Def.
-(27077, 4413, 11), -- Average M. Def.
-(27077, 4414, 2), -- Standard Type
-(27077, 4415, 3), -- One-handed Sword
-(27077, 4416, 7), -- Spirits
+(27077, 4408, 1), -- HP Modifiers
+(27077, 4409, 1), -- MP Modifiers
+(27077, 4410, 11), -- P. Atk. Modifiers
+(27077, 4411, 11), -- M. Atk. Modifiers
+(27077, 4412, 11), -- P. Def. Modifiers
+(27077, 4413, 11), -- M. Def. Modifiers
+(27077, 4414, 2), -- Armor Type
+(27077, 4415, 3), -- Weapon Type
+(27077, 4416, 7), -- Races
 -- Trimden Lord 
-(27078, 4408, 1), -- HP Increase (1x)
-(27078, 4409, 1), -- MP Increase (1x)
-(27078, 4410, 11), -- Average P. Atk.
-(27078, 4411, 11), -- Average M. Atk.
-(27078, 4412, 11), -- Average P. Def.
-(27078, 4413, 11), -- Average M. Def.
-(27078, 4414, 2), -- Standard Type
-(27078, 4415, 3), -- One-handed Sword
-(27078, 4416, 12), -- Bugs
+(27078, 4408, 1), -- HP Modifiers
+(27078, 4409, 1), -- MP Modifiers
+(27078, 4410, 11), -- P. Atk. Modifiers
+(27078, 4411, 11), -- M. Atk. Modifiers
+(27078, 4412, 11), -- P. Def. Modifiers
+(27078, 4413, 11), -- M. Def. Modifiers
+(27078, 4414, 2), -- Armor Type
+(27078, 4415, 3), -- Weapon Type
+(27078, 4416, 12), -- Races
 -- Black Willow Lurker
-(27079, 4408, 1), -- HP Increase (1x)
-(27079, 4409, 1), -- MP Increase (1x)
-(27079, 4410, 11), -- Average P. Atk.
-(27079, 4411, 11), -- Average M. Atk.
-(27079, 4412, 11), -- Average P. Def.
-(27079, 4413, 11), -- Average M. Def.
-(27079, 4414, 2), -- Standard Type
-(27079, 4415, 3), -- One-handed Sword
-(27079, 4416, 5), -- Plants
+(27079, 4408, 1), -- HP Modifiers
+(27079, 4409, 1), -- MP Modifiers
+(27079, 4410, 11), -- P. Atk. Modifiers
+(27079, 4411, 11), -- M. Atk. Modifiers
+(27079, 4412, 11), -- P. Def. Modifiers
+(27079, 4413, 11), -- M. Def. Modifiers
+(27079, 4414, 2), -- Armor Type
+(27079, 4415, 3), -- Weapon Type
+(27079, 4416, 5), -- Races
 -- Pashika Son Of Voltar
-(27080, 4408, 1), -- HP Increase (1x)
-(27080, 4409, 1), -- MP Increase (1x)
-(27080, 4410, 11), -- Average P. Atk.
-(27080, 4411, 11), -- Average M. Atk.
-(27080, 4412, 11), -- Average P. Def.
-(27080, 4413, 11), -- Average M. Def.
-(27080, 4414, 2), -- Standard Type
-(27080, 4415, 3), -- One-handed Sword
-(27080, 4416, 6), -- Humanoids
+(27080, 4408, 1), -- HP Modifiers
+(27080, 4409, 1), -- MP Modifiers
+(27080, 4410, 11), -- P. Atk. Modifiers
+(27080, 4411, 11), -- M. Atk. Modifiers
+(27080, 4412, 11), -- P. Def. Modifiers
+(27080, 4413, 11), -- M. Def. Modifiers
+(27080, 4414, 2), -- Armor Type
+(27080, 4415, 3), -- Weapon Type
+(27080, 4416, 6), -- Races
 -- Vultus Son Of Voltar
-(27081, 4408, 1), -- HP Increase (1x)
-(27081, 4409, 1), -- MP Increase (1x)
-(27081, 4410, 11), -- Average P. Atk.
-(27081, 4411, 11), -- Average M. Atk.
-(27081, 4412, 11), -- Average P. Def.
-(27081, 4413, 11), -- Average M. Def.
-(27081, 4414, 2), -- Standard Type
-(27081, 4415, 3), -- One-handed Sword
-(27081, 4416, 6), -- Humanoids
+(27081, 4408, 1), -- HP Modifiers
+(27081, 4409, 1), -- MP Modifiers
+(27081, 4410, 11), -- P. Atk. Modifiers
+(27081, 4411, 11), -- M. Atk. Modifiers
+(27081, 4412, 11), -- P. Def. Modifiers
+(27081, 4413, 11), -- M. Def. Modifiers
+(27081, 4414, 2), -- Armor Type
+(27081, 4415, 3), -- Weapon Type
+(27081, 4416, 6), -- Races
 -- Enku Orc Overlord
-(27082, 4408, 1), -- HP Increase (1x)
-(27082, 4409, 1), -- MP Increase (1x)
-(27082, 4410, 11), -- Average P. Atk.
-(27082, 4411, 11), -- Average M. Atk.
-(27082, 4412, 11), -- Average P. Def.
-(27082, 4413, 11), -- Average M. Def.
-(27082, 4414, 2), -- Standard Type
-(27082, 4415, 3), -- One-handed Sword
-(27082, 4416, 6), -- Humanoids
+(27082, 4408, 1), -- HP Modifiers
+(27082, 4409, 1), -- MP Modifiers
+(27082, 4410, 11), -- P. Atk. Modifiers
+(27082, 4411, 11), -- M. Atk. Modifiers
+(27082, 4412, 11), -- P. Def. Modifiers
+(27082, 4413, 11), -- M. Def. Modifiers
+(27082, 4414, 2), -- Armor Type
+(27082, 4415, 3), -- Weapon Type
+(27082, 4416, 6), -- Races
 -- Makum Bugbear Thug
-(27083, 4408, 1), -- HP Increase (1x)
-(27083, 4409, 1), -- MP Increase (1x)
-(27083, 4410, 11), -- Average P. Atk.
-(27083, 4411, 11), -- Average M. Atk.
-(27083, 4412, 11), -- Average P. Def.
-(27083, 4413, 11), -- Average M. Def.
-(27083, 4414, 2), -- Standard Type
-(27083, 4415, 3), -- One-handed Sword
-(27083, 4416, 11), -- Giants
+(27083, 4408, 1), -- HP Modifiers
+(27083, 4409, 1), -- MP Modifiers
+(27083, 4410, 11), -- P. Atk. Modifiers
+(27083, 4411, 11), -- M. Atk. Modifiers
+(27083, 4412, 11), -- P. Def. Modifiers
+(27083, 4413, 11), -- M. Def. Modifiers
+(27083, 4414, 2), -- Armor Type
+(27083, 4415, 3), -- Weapon Type
+(27083, 4416, 11), -- Races
 -- Revenant of Tantos Chief
-(27086, 4408, 1), -- HP Increase (1x)
-(27086, 4409, 1), -- MP Increase (1x)
-(27086, 4410, 11), -- Average P. Atk.
-(27086, 4411, 11), -- Average M. Atk.
-(27086, 4412, 11), -- Average P. Def.
-(27086, 4413, 11), -- Average M. Def.
-(27086, 4414, 2), -- Standard Type
-(27086, 4415, 3), -- One-handed Sword
-(27086, 4416, 6), -- Humanoids
+(27086, 4408, 1), -- HP Modifiers
+(27086, 4409, 1), -- MP Modifiers
+(27086, 4410, 11), -- P. Atk. Modifiers
+(27086, 4411, 11), -- M. Atk. Modifiers
+(27086, 4412, 11), -- P. Def. Modifiers
+(27086, 4413, 11), -- M. Def. Modifiers
+(27086, 4414, 2), -- Armor Type
+(27086, 4415, 3), -- Weapon Type
+(27086, 4416, 6), -- Races
 -- Harpy Matriarch
-(27088, 4408, 1), -- HP Increase (1x)
-(27088, 4409, 1), -- MP Increase (1x)
-(27088, 4410, 11), -- Average P. Atk.
-(27088, 4411, 11), -- Average M. Atk.
-(27088, 4412, 11), -- Average P. Def.
-(27088, 4413, 11), -- Average M. Def.
-(27088, 4414, 2), -- Standard Type
-(27088, 4415, 3), -- One-handed Sword
-(27088, 4416, 3), -- Beasts
+(27088, 4408, 1), -- HP Modifiers
+(27088, 4409, 1), -- MP Modifiers
+(27088, 4410, 11), -- P. Atk. Modifiers
+(27088, 4411, 11), -- M. Atk. Modifiers
+(27088, 4412, 11), -- P. Def. Modifiers
+(27088, 4413, 11), -- M. Def. Modifiers
+(27088, 4414, 2), -- Armor Type
+(27088, 4415, 3), -- Weapon Type
+(27088, 4416, 3), -- Races
 -- Road Collector
-(27089, 4408, 1), -- HP Increase (1x)
-(27089, 4409, 1), -- MP Increase (1x)
-(27089, 4410, 11), -- Average P. Atk.
-(27089, 4411, 11), -- Average M. Atk.
-(27089, 4412, 11), -- Average P. Def.
-(27089, 4413, 11), -- Average M. Def.
-(27089, 4414, 2), -- Standard Type
-(27089, 4415, 3), -- One-handed Sword
-(27089, 4416, 6), -- Humanoids
+(27089, 4408, 1), -- HP Modifiers
+(27089, 4409, 1), -- MP Modifiers
+(27089, 4410, 11), -- P. Atk. Modifiers
+(27089, 4411, 11), -- M. Atk. Modifiers
+(27089, 4412, 11), -- P. Def. Modifiers
+(27089, 4413, 11), -- M. Def. Modifiers
+(27089, 4414, 2), -- Armor Type
+(27089, 4415, 3), -- Weapon Type
+(27089, 4416, 6), -- Races
 -- Serpent Demon Kadesh
-(27090, 4408, 1), -- HP Increase (1x)
-(27090, 4409, 1), -- MP Increase (1x)
-(27090, 4410, 11), -- Average P. Atk.
-(27090, 4411, 11), -- Average M. Atk.
-(27090, 4412, 11), -- Average P. Def.
-(27090, 4413, 11), -- Average M. Def.
-(27090, 4414, 2), -- Standard Type
-(27090, 4415, 3), -- One-handed Sword
-(27090, 4416, 3), -- Beasts
+(27090, 4408, 1), -- HP Modifiers
+(27090, 4409, 1), -- MP Modifiers
+(27090, 4410, 11), -- P. Atk. Modifiers
+(27090, 4411, 11), -- M. Atk. Modifiers
+(27090, 4412, 11), -- P. Def. Modifiers
+(27090, 4413, 11), -- M. Def. Modifiers
+(27090, 4414, 2), -- Armor Type
+(27090, 4415, 3), -- Weapon Type
+(27090, 4416, 3), -- Races
 -- Neer Bodyguard
-(27092, 4408, 1), -- HP Increase (1x)
-(27092, 4409, 1), -- MP Increase (1x)
-(27092, 4410, 11), -- Average P. Atk.
-(27092, 4411, 11), -- Average M. Atk.
-(27092, 4412, 11), -- Average P. Def.
-(27092, 4413, 11), -- Average M. Def.
-(27092, 4414, 2), -- Standard Type
-(27092, 4415, 3), -- One-handed Sword
-(27092, 4416, 1), -- Undead
+(27092, 4408, 1), -- HP Modifiers
+(27092, 4409, 1), -- MP Modifiers
+(27092, 4410, 11), -- P. Atk. Modifiers
+(27092, 4411, 11), -- M. Atk. Modifiers
+(27092, 4412, 11), -- P. Def. Modifiers
+(27092, 4413, 11), -- M. Def. Modifiers
+(27092, 4414, 2), -- Armor Type
+(27092, 4415, 3), -- Weapon Type
+(27092, 4416, 1), -- Races
 -- Delu Chief Kalkis
-(27093, 4408, 1), -- HP Increase (1x)
-(27093, 4409, 1), -- MP Increase (1x)
-(27093, 4410, 11), -- Average P. Atk.
-(27093, 4411, 11), -- Average M. Atk.
-(27093, 4412, 11), -- Average P. Def.
-(27093, 4413, 11), -- Average M. Def.
-(27093, 4414, 2), -- Standard Type
-(27093, 4415, 3), -- One-handed Sword
-(27093, 4416, 6), -- Humanoids
+(27093, 4408, 1), -- HP Modifiers
+(27093, 4409, 1), -- MP Modifiers
+(27093, 4410, 11), -- P. Atk. Modifiers
+(27093, 4411, 11), -- M. Atk. Modifiers
+(27093, 4412, 11), -- P. Def. Modifiers
+(27093, 4413, 11), -- M. Def. Modifiers
+(27093, 4414, 2), -- Armor Type
+(27093, 4415, 3), -- Weapon Type
+(27093, 4416, 6), -- Races
 -- Delu Lizardman Assassin
-(27094, 4408, 1), -- HP Increase (1x)
-(27094, 4409, 1), -- MP Increase (1x)
-(27094, 4410, 11), -- Average P. Atk.
-(27094, 4411, 11), -- Average M. Atk.
-(27094, 4412, 11), -- Average P. Def.
-(27094, 4413, 11), -- Average M. Def.
-(27094, 4414, 2), -- Standard Type
-(27094, 4415, 3), -- One-handed Sword
-(27094, 4416, 6), -- Humanoids
+(27094, 4408, 1), -- HP Modifiers
+(27094, 4409, 1), -- MP Modifiers
+(27094, 4410, 11), -- P. Atk. Modifiers
+(27094, 4411, 11), -- M. Atk. Modifiers
+(27094, 4412, 11), -- P. Def. Modifiers
+(27094, 4413, 11), -- M. Def. Modifiers
+(27094, 4414, 2), -- Armor Type
+(27094, 4415, 3), -- Weapon Type
+(27094, 4416, 6), -- Races
 -- Singing Flower of Phantasm
-(27095, 4408, 1), -- HP Increase (1x)
-(27095, 4409, 1), -- MP Increase (1x)
-(27095, 4410, 11), -- Average P. Atk.
-(27095, 4411, 11), -- Average M. Atk.
-(27095, 4412, 11), -- Average P. Def.
-(27095, 4413, 11), -- Average M. Def.
-(27095, 4414, 2), -- Standard Type
-(27095, 4415, 3), -- One-handed Sword
-(27095, 4416, 5), -- Plants
+(27095, 4408, 1), -- HP Modifiers
+(27095, 4409, 1), -- MP Modifiers
+(27095, 4410, 11), -- P. Atk. Modifiers
+(27095, 4411, 11), -- M. Atk. Modifiers
+(27095, 4412, 11), -- P. Def. Modifiers
+(27095, 4413, 11), -- M. Def. Modifiers
+(27095, 4414, 2), -- Armor Type
+(27095, 4415, 3), -- Weapon Type
+(27095, 4416, 5), -- Races
 -- Singing Flower of Nightmare
-(27096, 4408, 1), -- HP Increase (1x)
-(27096, 4409, 1), -- MP Increase (1x)
-(27096, 4410, 11), -- Average P. Atk.
-(27096, 4411, 11), -- Average M. Atk.
-(27096, 4412, 11), -- Average P. Def.
-(27096, 4413, 11), -- Average M. Def.
-(27096, 4414, 2), -- Standard Type
-(27096, 4415, 3), -- One-handed Sword
-(27096, 4416, 5), -- Plants
+(27096, 4408, 1), -- HP Modifiers
+(27096, 4409, 1), -- MP Modifiers
+(27096, 4410, 11), -- P. Atk. Modifiers
+(27096, 4411, 11), -- M. Atk. Modifiers
+(27096, 4412, 11), -- P. Def. Modifiers
+(27096, 4413, 11), -- M. Def. Modifiers
+(27096, 4414, 2), -- Armor Type
+(27096, 4415, 3), -- Weapon Type
+(27096, 4416, 5), -- Races
 -- Singing Flower of Darkness
-(27097, 4408, 1), -- HP Increase (1x)
-(27097, 4409, 1), -- MP Increase (1x)
-(27097, 4410, 11), -- Average P. Atk.
-(27097, 4411, 11), -- Average M. Atk.
-(27097, 4412, 11), -- Average P. Def.
-(27097, 4413, 11), -- Average M. Def.
-(27097, 4414, 2), -- Standard Type
-(27097, 4415, 3), -- One-handed Sword
-(27097, 4416, 5), -- Plants
+(27097, 4408, 1), -- HP Modifiers
+(27097, 4409, 1), -- MP Modifiers
+(27097, 4410, 11), -- P. Atk. Modifiers
+(27097, 4411, 11), -- M. Atk. Modifiers
+(27097, 4412, 11), -- P. Def. Modifiers
+(27097, 4413, 11), -- M. Def. Modifiers
+(27097, 4414, 2), -- Armor Type
+(27097, 4415, 3), -- Weapon Type
+(27097, 4416, 5), -- Races
 -- Ghost Fire
-(27098, 4408, 1), -- HP Increase (1x)
-(27098, 4409, 1), -- MP Increase (1x)
-(27098, 4410, 11), -- Average P. Atk.
-(27098, 4411, 11), -- Average M. Atk.
-(27098, 4412, 11), -- Average P. Def.
-(27098, 4413, 11), -- Average M. Def.
-(27098, 4414, 2), -- Standard Type
-(27098, 4415, 3), -- One-handed Sword
-(27098, 4416, 2), -- Magic Creatures
+(27098, 4408, 1), -- HP Modifiers
+(27098, 4409, 1), -- MP Modifiers
+(27098, 4410, 11), -- P. Atk. Modifiers
+(27098, 4411, 11), -- M. Atk. Modifiers
+(27098, 4412, 11), -- P. Def. Modifiers
+(27098, 4413, 11), -- M. Def. Modifiers
+(27098, 4414, 2), -- Armor Type
+(27098, 4415, 3), -- Weapon Type
+(27098, 4416, 2), -- Races
 -- Nameless Revenant
-(27099, 4071, 5), -- Resist Bow/Crossbow Weapons
-(27099, 4248, 3), -- Energy Drain
-(27099, 4284, 5), -- Resist Bleed Attacks
-(27099, 4408, 1), -- HP Increase (1x)
-(27099, 4409, 1), -- MP Increase (1x)
-(27099, 4410, 11), -- Average P. Atk.
-(27099, 4411, 11), -- Average M. Atk.
-(27099, 4412, 18), -- Extremely Strong P. Def.
-(27099, 4413, 18), -- Extremely Strong M. Def.
-(27099, 4414, 2), -- Standard Type
-(27099, 4415, 3), -- One-handed Sword
-(27099, 4416, 1), -- Undead
+(27099, 4071, 5), -- Resist Archery
+(27099, 4248, 3), -- NPC HP Drain - Slow
+(27099, 4284, 5), -- Resist Bleeding
+(27099, 4408, 1), -- HP Modifiers
+(27099, 4409, 1), -- MP Modifiers
+(27099, 4410, 11), -- P. Atk. Modifiers
+(27099, 4411, 11), -- M. Atk. Modifiers
+(27099, 4412, 18), -- P. Def. Modifiers
+(27099, 4413, 18), -- M. Def. Modifiers
+(27099, 4414, 2), -- Armor Type
+(27099, 4415, 3), -- Weapon Type
+(27099, 4416, 1), -- Races
 -- Skeletal Mercenary
-(27100, 4408, 1), -- HP Increase (1x)
-(27100, 4409, 1), -- MP Increase (1x)
-(27100, 4410, 11), -- Average P. Atk.
-(27100, 4411, 11), -- Average M. Atk.
-(27100, 4412, 11), -- Average P. Def.
-(27100, 4413, 11), -- Average M. Def.
-(27100, 4414, 2), -- Standard Type
-(27100, 4415, 3), -- One-handed Sword
-(27100, 4416, 1), -- Undead
+(27100, 4408, 1), -- HP Modifiers
+(27100, 4409, 1), -- MP Modifiers
+(27100, 4410, 11), -- P. Atk. Modifiers
+(27100, 4411, 11), -- M. Atk. Modifiers
+(27100, 4412, 11), -- P. Def. Modifiers
+(27100, 4413, 11), -- M. Def. Modifiers
+(27100, 4414, 2), -- Armor Type
+(27100, 4415, 3), -- Weapon Type
+(27100, 4416, 1), -- Races
 -- Drevanul Prince Zeruel
-(27101, 4408, 1), -- HP Increase (1x)
-(27101, 4409, 1), -- MP Increase (1x)
-(27101, 4410, 11), -- Average P. Atk.
-(27101, 4411, 11), -- Average M. Atk.
-(27101, 4412, 11), -- Average P. Def.
-(27101, 4413, 11), -- Average M. Def.
-(27101, 4414, 2), -- Standard Type
-(27101, 4415, 3), -- One-handed Sword
-(27101, 4416, 9), -- Demons
+(27101, 4408, 1), -- HP Modifiers
+(27101, 4409, 1), -- MP Modifiers
+(27101, 4410, 11), -- P. Atk. Modifiers
+(27101, 4411, 11), -- M. Atk. Modifiers
+(27101, 4412, 11), -- P. Def. Modifiers
+(27101, 4413, 11), -- M. Def. Modifiers
+(27101, 4414, 2), -- Armor Type
+(27101, 4415, 3), -- Weapon Type
+(27101, 4416, 9), -- Races
 -- Pako the Cat
-(27102, 4408, 1), -- HP Increase (1x)
-(27102, 4409, 1), -- MP Increase (1x)
-(27102, 4410, 11), -- Average P. Atk.
-(27102, 4411, 11), -- Average M. Atk.
-(27102, 4412, 11), -- Average P. Def.
-(27102, 4413, 11), -- Average M. Def.
-(27102, 4414, 2), -- Standard Type
-(27102, 4415, 3), -- One-handed Sword
-(27102, 4416, 7), -- Spirits
+(27102, 4408, 1), -- HP Modifiers
+(27102, 4409, 1), -- MP Modifiers
+(27102, 4410, 11), -- P. Atk. Modifiers
+(27102, 4411, 11), -- M. Atk. Modifiers
+(27102, 4412, 11), -- P. Def. Modifiers
+(27102, 4413, 11), -- M. Def. Modifiers
+(27102, 4414, 2), -- Armor Type
+(27102, 4415, 3), -- Weapon Type
+(27102, 4416, 7), -- Races
 -- Racer the Unicorn
-(27103, 4408, 1), -- HP Increase (1x)
-(27103, 4409, 1), -- MP Increase (1x)
-(27103, 4410, 11), -- Average P. Atk.
-(27103, 4411, 11), -- Average M. Atk.
-(27103, 4412, 11), -- Average P. Def.
-(27103, 4413, 11), -- Average M. Def.
-(27103, 4414, 2), -- Standard Type
-(27103, 4415, 3), -- One-handed Sword
-(27103, 4416, 7), -- Spirits
+(27103, 4408, 1), -- HP Modifiers
+(27103, 4409, 1), -- MP Modifiers
+(27103, 4410, 11), -- P. Atk. Modifiers
+(27103, 4411, 11), -- M. Atk. Modifiers
+(27103, 4412, 11), -- P. Def. Modifiers
+(27103, 4413, 11), -- M. Def. Modifiers
+(27103, 4414, 2), -- Armor Type
+(27103, 4415, 3), -- Weapon Type
+(27103, 4416, 7), -- Races
 -- Shadow Turen
-(27104, 4408, 1), -- HP Increase (1x)
-(27104, 4409, 1), -- MP Increase (1x)
-(27104, 4410, 11), -- Average P. Atk.
-(27104, 4411, 11), -- Average M. Atk.
-(27104, 4412, 11), -- Average P. Def.
-(27104, 4413, 11), -- Average M. Def.
-(27104, 4414, 2), -- Standard Type
-(27104, 4415, 3), -- One-handed Sword
-(27104, 4416, 9), -- Demons
+(27104, 4408, 1), -- HP Modifiers
+(27104, 4409, 1), -- MP Modifiers
+(27104, 4410, 11), -- P. Atk. Modifiers
+(27104, 4411, 11), -- M. Atk. Modifiers
+(27104, 4412, 11), -- P. Def. Modifiers
+(27104, 4413, 11), -- M. Def. Modifiers
+(27104, 4414, 2), -- Armor Type
+(27104, 4415, 3), -- Weapon Type
+(27104, 4416, 9), -- Races
 -- Mimi the Cat
-(27105, 4408, 1), -- HP Increase (1x)
-(27105, 4409, 1), -- MP Increase (1x)
-(27105, 4410, 11), -- Average P. Atk.
-(27105, 4411, 11), -- Average M. Atk.
-(27105, 4412, 11), -- Average P. Def.
-(27105, 4413, 11), -- Average M. Def.
-(27105, 4414, 2), -- Standard Type
-(27105, 4415, 3), -- One-handed Sword
-(27105, 4416, 7), -- Spirits
+(27105, 4408, 1), -- HP Modifiers
+(27105, 4409, 1), -- MP Modifiers
+(27105, 4410, 11), -- P. Atk. Modifiers
+(27105, 4411, 11), -- M. Atk. Modifiers
+(27105, 4412, 11), -- P. Def. Modifiers
+(27105, 4413, 11), -- M. Def. Modifiers
+(27105, 4414, 2), -- Armor Type
+(27105, 4415, 3), -- Weapon Type
+(27105, 4416, 7), -- Races
 -- Unicorn Phantasm
-(27106, 4408, 1), -- HP Increase (1x)
-(27106, 4409, 1), -- MP Increase (1x)
-(27106, 4410, 11), -- Average P. Atk.
-(27106, 4411, 11), -- Average M. Atk.
-(27106, 4412, 11), -- Average P. Def.
-(27106, 4413, 11), -- Average M. Def.
-(27106, 4414, 2), -- Standard Type
-(27106, 4415, 3), -- One-handed Sword
-(27106, 4416, 7), -- Spirits
+(27106, 4408, 1), -- HP Modifiers
+(27106, 4409, 1), -- MP Modifiers
+(27106, 4410, 11), -- P. Atk. Modifiers
+(27106, 4411, 11), -- M. Atk. Modifiers
+(27106, 4412, 11), -- P. Def. Modifiers
+(27106, 4413, 11), -- M. Def. Modifiers
+(27106, 4414, 2), -- Armor Type
+(27106, 4415, 3), -- Weapon Type
+(27106, 4416, 7), -- Races
 -- Silhouette Tilfo
-(27107, 4408, 1), -- HP Increase (1x)
-(27107, 4409, 1), -- MP Increase (1x)
-(27107, 4410, 11), -- Average P. Atk.
-(27107, 4411, 11), -- Average M. Atk.
-(27107, 4412, 11), -- Average P. Def.
-(27107, 4413, 11), -- Average M. Def.
-(27107, 4414, 2), -- Standard Type
-(27107, 4415, 3), -- One-handed Sword
-(27107, 4416, 9), -- Demons
+(27107, 4408, 1), -- HP Modifiers
+(27107, 4409, 1), -- MP Modifiers
+(27107, 4410, 11), -- P. Atk. Modifiers
+(27107, 4411, 11), -- M. Atk. Modifiers
+(27107, 4412, 11), -- P. Def. Modifiers
+(27107, 4413, 11), -- M. Def. Modifiers
+(27107, 4414, 2), -- Armor Type
+(27107, 4415, 3), -- Weapon Type
+(27107, 4416, 9), -- Races
 -- Stenoa Gorgon Queen
-(27108, 4408, 1), -- HP Increase (1x)
-(27108, 4409, 1), -- MP Increase (1x)
-(27108, 4410, 11), -- Average P. Atk.
-(27108, 4411, 11), -- Average M. Atk.
-(27108, 4412, 11), -- Average P. Def.
-(27108, 4413, 11), -- Average M. Def.
-(27108, 4414, 2), -- Standard Type
-(27108, 4415, 3), -- One-handed Sword
-(27108, 4416, 3), -- Beasts
+(27108, 4408, 1), -- HP Modifiers
+(27108, 4409, 1), -- MP Modifiers
+(27108, 4410, 11), -- P. Atk. Modifiers
+(27108, 4411, 11), -- M. Atk. Modifiers
+(27108, 4412, 11), -- P. Def. Modifiers
+(27108, 4413, 11), -- M. Def. Modifiers
+(27108, 4414, 2), -- Armor Type
+(27108, 4415, 3), -- Weapon Type
+(27108, 4416, 3), -- Races
 -- Handmaiden of Stenoa
-(27109, 4408, 1), -- HP Increase (1x)
-(27109, 4409, 1), -- MP Increase (1x)
-(27109, 4410, 11), -- Average P. Atk.
-(27109, 4411, 11), -- Average M. Atk.
-(27109, 4412, 11), -- Average P. Def.
-(27109, 4413, 11), -- Average M. Def.
-(27109, 4414, 2), -- Standard Type
-(27109, 4415, 3), -- One-handed Sword
-(27109, 4416, 3), -- Beasts
+(27109, 4408, 1), -- HP Modifiers
+(27109, 4409, 1), -- MP Modifiers
+(27109, 4410, 11), -- P. Atk. Modifiers
+(27109, 4411, 11), -- M. Atk. Modifiers
+(27109, 4412, 11), -- P. Def. Modifiers
+(27109, 4413, 11), -- M. Def. Modifiers
+(27109, 4414, 2), -- Armor Type
+(27109, 4415, 3), -- Weapon Type
+(27109, 4416, 3), -- Races
 -- Shyslassys
-(27110, 4408, 1), -- HP Increase (1x)
-(27110, 4409, 1), -- MP Increase (1x)
-(27110, 4410, 11), -- Average P. Atk.
-(27110, 4411, 11), -- Average M. Atk.
-(27110, 4412, 11), -- Average P. Def.
-(27110, 4413, 11), -- Average M. Def.
-(27110, 4414, 2), -- Standard Type
-(27110, 4415, 3), -- One-handed Sword
-(27110, 4416, 3), -- Beasts
+(27110, 4408, 1), -- HP Modifiers
+(27110, 4409, 1), -- MP Modifiers
+(27110, 4410, 11), -- P. Atk. Modifiers
+(27110, 4411, 11), -- M. Atk. Modifiers
+(27110, 4412, 11), -- P. Def. Modifiers
+(27110, 4413, 11), -- M. Def. Modifiers
+(27110, 4414, 2), -- Armor Type
+(27110, 4415, 3), -- Weapon Type
+(27110, 4416, 3), -- Races
 -- Cave Basilisk
-(27111, 4408, 1), -- HP Increase (1x)
-(27111, 4409, 1), -- MP Increase (1x)
-(27111, 4410, 11), -- Average P. Atk.
-(27111, 4411, 11), -- Average M. Atk.
-(27111, 4412, 11), -- Average P. Def.
-(27111, 4413, 11), -- Average M. Def.
-(27111, 4414, 2), -- Standard Type
-(27111, 4415, 3), -- One-handed Sword
-(27111, 4416, 3), -- Beasts
+(27111, 4408, 1), -- HP Modifiers
+(27111, 4409, 1), -- MP Modifiers
+(27111, 4410, 11), -- P. Atk. Modifiers
+(27111, 4411, 11), -- M. Atk. Modifiers
+(27111, 4412, 11), -- P. Def. Modifiers
+(27111, 4413, 11), -- M. Def. Modifiers
+(27111, 4414, 2), -- Armor Type
+(27111, 4415, 3), -- Weapon Type
+(27111, 4416, 3), -- Races
 -- Gorr
-(27112, 4408, 1), -- HP Increase (1x)
-(27112, 4409, 1), -- MP Increase (1x)
-(27112, 4410, 11), -- Average P. Atk.
-(27112, 4411, 11), -- Average M. Atk.
-(27112, 4412, 11), -- Average P. Def.
-(27112, 4413, 11), -- Average M. Def.
-(27112, 4414, 2), -- Standard Type
-(27112, 4415, 3), -- One-handed Sword
-(27112, 4416, 3), -- Beasts
+(27112, 4408, 1), -- HP Modifiers
+(27112, 4409, 1), -- MP Modifiers
+(27112, 4410, 11), -- P. Atk. Modifiers
+(27112, 4411, 11), -- M. Atk. Modifiers
+(27112, 4412, 11), -- P. Def. Modifiers
+(27112, 4413, 11), -- M. Def. Modifiers
+(27112, 4414, 2), -- Armor Type
+(27112, 4415, 3), -- Weapon Type
+(27112, 4416, 3), -- Races
 -- Baraham
-(27113, 4408, 1), -- HP Increase (1x)
-(27113, 4409, 1), -- MP Increase (1x)
-(27113, 4410, 11), -- Average P. Atk.
-(27113, 4411, 11), -- Average M. Atk.
-(27113, 4412, 11), -- Average P. Def.
-(27113, 4413, 11), -- Average M. Def.
-(27113, 4414, 2), -- Standard Type
-(27113, 4415, 3), -- One-handed Sword
-(27113, 4416, 3), -- Beasts
+(27113, 4408, 1), -- HP Modifiers
+(27113, 4409, 1), -- MP Modifiers
+(27113, 4410, 11), -- P. Atk. Modifiers
+(27113, 4411, 11), -- M. Atk. Modifiers
+(27113, 4412, 11), -- P. Def. Modifiers
+(27113, 4413, 11), -- M. Def. Modifiers
+(27113, 4414, 2), -- Armor Type
+(27113, 4415, 3), -- Weapon Type
+(27113, 4416, 3), -- Races
 -- Succubus Queen
-(27114, 4408, 1), -- HP Increase (1x)
-(27114, 4409, 1), -- MP Increase (1x)
-(27114, 4410, 11), -- Average P. Atk.
-(27114, 4411, 11), -- Average M. Atk.
-(27114, 4412, 11), -- Average P. Def.
-(27114, 4413, 11), -- Average M. Def.
-(27114, 4414, 2), -- Standard Type
-(27114, 4415, 3), -- One-handed Sword
-(27114, 4416, 9), -- Demons
+(27114, 4408, 1), -- HP Modifiers
+(27114, 4409, 1), -- MP Modifiers
+(27114, 4410, 11), -- P. Atk. Modifiers
+(27114, 4411, 11), -- M. Atk. Modifiers
+(27114, 4412, 11), -- P. Def. Modifiers
+(27114, 4413, 11), -- M. Def. Modifiers
+(27114, 4414, 2), -- Armor Type
+(27114, 4415, 3), -- Weapon Type
+(27114, 4416, 9), -- Races
 -- Claw Of Succubus
-(27115, 4408, 1), -- HP Increase (1x)
-(27115, 4409, 1), -- MP Increase (1x)
-(27115, 4410, 11), -- Average P. Atk.
-(27115, 4411, 11), -- Average M. Atk.
-(27115, 4412, 11), -- Average P. Def.
-(27115, 4413, 11), -- Average M. Def.
-(27115, 4414, 2), -- Standard Type
-(27115, 4415, 3), -- One-handed Sword
-(27115, 4416, 9), -- Demons
+(27115, 4408, 1), -- HP Modifiers
+(27115, 4409, 1), -- MP Modifiers
+(27115, 4410, 11), -- P. Atk. Modifiers
+(27115, 4411, 11), -- M. Atk. Modifiers
+(27115, 4412, 11), -- P. Def. Modifiers
+(27115, 4413, 11), -- M. Def. Modifiers
+(27115, 4414, 2), -- Armor Type
+(27115, 4415, 3), -- Weapon Type
+(27115, 4416, 9), -- Races
 -- Lava Salamander
-(27116, 4408, 1), -- HP Increase (1x)
-(27116, 4409, 1), -- MP Increase (1x)
-(27116, 4410, 11), -- Average P. Atk.
-(27116, 4411, 11), -- Average M. Atk.
-(27116, 4412, 11), -- Average P. Def.
-(27116, 4413, 11), -- Average M. Def.
-(27116, 4414, 2), -- Standard Type
-(27116, 4415, 3), -- One-handed Sword
-(27116, 4416, 7), -- Spirits
+(27116, 4408, 1), -- HP Modifiers
+(27116, 4409, 1), -- MP Modifiers
+(27116, 4410, 11), -- P. Atk. Modifiers
+(27116, 4411, 11), -- M. Atk. Modifiers
+(27116, 4412, 11), -- P. Def. Modifiers
+(27116, 4413, 11), -- M. Def. Modifiers
+(27116, 4414, 2), -- Armor Type
+(27116, 4415, 3), -- Weapon Type
+(27116, 4416, 7), -- Races
 -- Nahir
-(27117, 4408, 1), -- HP Increase (1x)
-(27117, 4409, 1), -- MP Increase (1x)
-(27117, 4410, 11), -- Average P. Atk.
-(27117, 4411, 11), -- Average M. Atk.
-(27117, 4412, 11), -- Average P. Def.
-(27117, 4413, 11), -- Average M. Def.
-(27117, 4414, 2), -- Standard Type
-(27117, 4415, 3), -- One-handed Sword
-(27117, 4416, 9), -- Demons
+(27117, 4408, 1), -- HP Modifiers
+(27117, 4409, 1), -- MP Modifiers
+(27117, 4410, 11), -- P. Atk. Modifiers
+(27117, 4411, 11), -- M. Atk. Modifiers
+(27117, 4412, 11), -- P. Def. Modifiers
+(27117, 4413, 11), -- M. Def. Modifiers
+(27117, 4414, 2), -- Armor Type
+(27117, 4415, 3), -- Weapon Type
+(27117, 4416, 9), -- Races
 -- Black Willow
 (27118, 4047, 3), -- Hold
-(27118, 4408, 1), -- HP Increase (1x)
-(27118, 4409, 1), -- MP Increase (1x)
-(27118, 4410, 11), -- Average P. Atk.
-(27118, 4411, 11), -- Average M. Atk.
-(27118, 4412, 11), -- Average P. Def.
-(27118, 4413, 11), -- Average M. Def.
-(27118, 4414, 2), -- Standard Type
-(27118, 4415, 3), -- One-handed Sword
-(27118, 4416, 5), -- Plants
+(27118, 4408, 1), -- HP Modifiers
+(27118, 4409, 1), -- MP Modifiers
+(27118, 4410, 11), -- P. Atk. Modifiers
+(27118, 4411, 11), -- M. Atk. Modifiers
+(27118, 4412, 11), -- P. Def. Modifiers
+(27118, 4413, 11), -- M. Def. Modifiers
+(27118, 4414, 2), -- Armor Type
+(27118, 4415, 3), -- Weapon Type
+(27118, 4416, 5), -- Races
 -- Spirit of Sir Herod
-(27119, 4037, 2), -- Weakness
-(27119, 4408, 1), -- HP Increase (1x)
-(27119, 4409, 1), -- MP Increase (1x)
-(27119, 4410, 11), -- Average P. Atk.
-(27119, 4411, 11), -- Average M. Atk.
-(27119, 4412, 11), -- Average P. Def.
-(27119, 4413, 11), -- Average M. Def.
-(27119, 4414, 2), -- Standard Type
-(27119, 4415, 3), -- One-handed Sword
-(27119, 4416, 1), -- Undead
+(27119, 4037, 2), -- Decrease P.Atk
+(27119, 4408, 1), -- HP Modifiers
+(27119, 4409, 1), -- MP Modifiers
+(27119, 4410, 11), -- P. Atk. Modifiers
+(27119, 4411, 11), -- M. Atk. Modifiers
+(27119, 4412, 11), -- P. Def. Modifiers
+(27119, 4413, 11), -- M. Def. Modifiers
+(27119, 4414, 2), -- Armor Type
+(27119, 4415, 3), -- Weapon Type
+(27119, 4416, 1), -- Races
 -- Luell Of Zephyr Winds
-(27120, 4037, 2), -- Weakness
-(27120, 4408, 1), -- HP Increase (1x)
-(27120, 4409, 1), -- MP Increase (1x)
-(27120, 4410, 11), -- Average P. Atk.
-(27120, 4411, 11), -- Average M. Atk.
-(27120, 4412, 11), -- Average P. Def.
-(27120, 4413, 11), -- Average M. Def.
-(27120, 4414, 2), -- Standard Type
-(27120, 4415, 3), -- One-handed Sword
-(27120, 4416, 7), -- Spirits
+(27120, 4037, 2), -- Decrease P.Atk
+(27120, 4408, 1), -- HP Modifiers
+(27120, 4409, 1), -- MP Modifiers
+(27120, 4410, 11), -- P. Atk. Modifiers
+(27120, 4411, 11), -- M. Atk. Modifiers
+(27120, 4412, 11), -- P. Def. Modifiers
+(27120, 4413, 11), -- M. Def. Modifiers
+(27120, 4414, 2), -- Armor Type
+(27120, 4415, 3), -- Weapon Type
+(27120, 4416, 7), -- Races
 -- Actea Of Verdant Wilds
-(27121, 4408, 1), -- HP Increase (1x)
-(27121, 4409, 1), -- MP Increase (1x)
-(27121, 4410, 11), -- Average P. Atk.
-(27121, 4411, 11), -- Average M. Atk.
-(27121, 4412, 11), -- Average P. Def.
-(27121, 4413, 11), -- Average M. Def.
-(27121, 4414, 2), -- Standard Type
-(27121, 4415, 3), -- One-handed Sword
-(27121, 4416, 13), -- Fairies
+(27121, 4408, 1), -- HP Modifiers
+(27121, 4409, 1), -- MP Modifiers
+(27121, 4410, 11), -- P. Atk. Modifiers
+(27121, 4411, 11), -- M. Atk. Modifiers
+(27121, 4412, 11), -- P. Def. Modifiers
+(27121, 4413, 11), -- M. Def. Modifiers
+(27121, 4414, 2), -- Armor Type
+(27121, 4415, 3), -- Weapon Type
+(27121, 4416, 13), -- Races
 -- Leto Lizardman Agent
-(27122, 4408, 1), -- HP Increase (1x)
-(27122, 4409, 1), -- MP Increase (1x)
-(27122, 4410, 11), -- Average P. Atk.
-(27122, 4411, 11), -- Average M. Atk.
-(27122, 4412, 11), -- Average P. Def.
-(27122, 4413, 11), -- Average M. Def.
-(27122, 4414, 2), -- Standard Type
-(27122, 4415, 3), -- One-handed Sword
-(27122, 4416, 6), -- Humanoids
+(27122, 4408, 1), -- HP Modifiers
+(27122, 4409, 1), -- MP Modifiers
+(27122, 4410, 11), -- P. Atk. Modifiers
+(27122, 4411, 11), -- M. Atk. Modifiers
+(27122, 4412, 11), -- P. Def. Modifiers
+(27122, 4413, 11), -- M. Def. Modifiers
+(27122, 4414, 2), -- Armor Type
+(27122, 4415, 3), -- Weapon Type
+(27122, 4416, 6), -- Races
 -- Leto Lizardman Leader
-(27123, 4408, 1), -- HP Increase (1x)
-(27123, 4409, 1), -- MP Increase (1x)
-(27123, 4410, 11), -- Average P. Atk.
-(27123, 4411, 11), -- Average M. Atk.
-(27123, 4412, 11), -- Average P. Def.
-(27123, 4413, 11), -- Average M. Def.
-(27123, 4414, 2), -- Standard Type
-(27123, 4415, 3), -- One-handed Sword
-(27123, 4416, 6), -- Humanoids
+(27123, 4408, 1), -- HP Modifiers
+(27123, 4409, 1), -- MP Modifiers
+(27123, 4410, 11), -- P. Atk. Modifiers
+(27123, 4411, 11), -- M. Atk. Modifiers
+(27123, 4412, 11), -- P. Def. Modifiers
+(27123, 4413, 11), -- M. Def. Modifiers
+(27123, 4414, 2), -- Armor Type
+(27123, 4415, 3), -- Weapon Type
+(27123, 4416, 6), -- Races
 -- Leto Lizardman Assassin
-(27124, 4408, 1), -- HP Increase (1x)
-(27124, 4409, 1), -- MP Increase (1x)
-(27124, 4410, 11), -- Average P. Atk.
-(27124, 4411, 11), -- Average M. Atk.
-(27124, 4412, 11), -- Average P. Def.
-(27124, 4413, 11), -- Average M. Def.
-(27124, 4414, 2), -- Standard Type
-(27124, 4415, 3), -- One-handed Sword
-(27124, 4416, 6), -- Humanoids
+(27124, 4408, 1), -- HP Modifiers
+(27124, 4409, 1), -- MP Modifiers
+(27124, 4410, 11), -- P. Atk. Modifiers
+(27124, 4411, 11), -- M. Atk. Modifiers
+(27124, 4412, 11), -- P. Def. Modifiers
+(27124, 4413, 11), -- M. Def. Modifiers
+(27124, 4414, 2), -- Armor Type
+(27124, 4415, 3), -- Weapon Type
+(27124, 4416, 6), -- Races
 -- Leto Lizardman Sniper
-(27125, 4408, 1), -- HP Increase (1x)
-(27125, 4409, 1), -- MP Increase (1x)
-(27125, 4410, 11), -- Average P. Atk.
-(27125, 4411, 11), -- Average M. Atk.
-(27125, 4412, 11), -- Average P. Def.
-(27125, 4413, 11), -- Average M. Def.
-(27125, 4414, 2), -- Standard Type
-(27125, 4415, 9), -- Bows
-(27125, 4416, 6), -- Humanoids
+(27125, 4408, 1), -- HP Modifiers
+(27125, 4409, 1), -- MP Modifiers
+(27125, 4410, 11), -- P. Atk. Modifiers
+(27125, 4411, 11), -- M. Atk. Modifiers
+(27125, 4412, 11), -- P. Def. Modifiers
+(27125, 4413, 11), -- M. Def. Modifiers
+(27125, 4414, 2), -- Armor Type
+(27125, 4415, 9), -- Weapon Type
+(27125, 4416, 6), -- Races
 -- Leto Lizardman Wizard
-(27126, 4002, 3), -- HP Drain
-(27126, 4408, 1), -- HP Increase (1x)
-(27126, 4409, 1), -- MP Increase (1x)
-(27126, 4410, 11), -- Average P. Atk.
-(27126, 4411, 11), -- Average M. Atk.
-(27126, 4412, 11), -- Average P. Def.
-(27126, 4413, 11), -- Average M. Def.
-(27126, 4414, 2), -- Standard Type
-(27126, 4415, 3), -- One-handed Sword
-(27126, 4416, 6), -- Humanoids
+(27126, 4002, 3), -- NPC HP Drain
+(27126, 4408, 1), -- HP Modifiers
+(27126, 4409, 1), -- MP Modifiers
+(27126, 4410, 11), -- P. Atk. Modifiers
+(27126, 4411, 11), -- M. Atk. Modifiers
+(27126, 4412, 11), -- P. Def. Modifiers
+(27126, 4413, 11), -- M. Def. Modifiers
+(27126, 4414, 2), -- Armor Type
+(27126, 4415, 3), -- Weapon Type
+(27126, 4416, 6), -- Races
 -- Leto Lizardman Lord
-(27127, 4408, 1), -- HP Increase (1x)
-(27127, 4409, 1), -- MP Increase (1x)
-(27127, 4410, 11), -- Average P. Atk.
-(27127, 4411, 11), -- Average M. Atk.
-(27127, 4412, 11), -- Average P. Def.
-(27127, 4413, 11), -- Average M. Def.
-(27127, 4414, 2), -- Standard Type
-(27127, 4415, 3), -- One-handed Sword
-(27127, 4416, 6), -- Humanoids
+(27127, 4408, 1), -- HP Modifiers
+(27127, 4409, 1), -- MP Modifiers
+(27127, 4410, 11), -- P. Atk. Modifiers
+(27127, 4411, 11), -- M. Atk. Modifiers
+(27127, 4412, 11), -- P. Def. Modifiers
+(27127, 4413, 11), -- M. Def. Modifiers
+(27127, 4414, 2), -- Armor Type
+(27127, 4415, 3), -- Weapon Type
+(27127, 4416, 6), -- Races
 -- Aruraune
-(27128, 4408, 1), -- HP Increase (1x)
-(27128, 4409, 1), -- MP Increase (1x)
-(27128, 4410, 11), -- Average P. Atk.
-(27128, 4411, 11), -- Average M. Atk.
-(27128, 4412, 11), -- Average P. Def.
-(27128, 4413, 11), -- Average M. Def.
-(27128, 4414, 2), -- Standard Type
-(27128, 4415, 3), -- One-handed Sword
-(27128, 4416, 5), -- Plants
+(27128, 4408, 1), -- HP Modifiers
+(27128, 4409, 1), -- MP Modifiers
+(27128, 4410, 11), -- P. Atk. Modifiers
+(27128, 4411, 11), -- M. Atk. Modifiers
+(27128, 4412, 11), -- P. Def. Modifiers
+(27128, 4413, 11), -- M. Def. Modifiers
+(27128, 4414, 2), -- Armor Type
+(27128, 4415, 3), -- Weapon Type
+(27128, 4416, 5), -- Races
 -- Ol Mahum Inspector
-(27129, 4408, 1), -- HP Increase (1x)
-(27129, 4409, 1), -- MP Increase (1x)
-(27129, 4410, 11), -- Average P. Atk.
-(27129, 4411, 11), -- Average M. Atk.
-(27129, 4412, 11), -- Average P. Def.
-(27129, 4413, 11), -- Average M. Def.
-(27129, 4414, 2), -- Standard Type
-(27129, 4415, 3), -- One-handed Sword
-(27129, 4416, 6), -- Humanoids
+(27129, 4408, 1), -- HP Modifiers
+(27129, 4409, 1), -- MP Modifiers
+(27129, 4410, 11), -- P. Atk. Modifiers
+(27129, 4411, 11), -- M. Atk. Modifiers
+(27129, 4412, 11), -- P. Def. Modifiers
+(27129, 4413, 11), -- M. Def. Modifiers
+(27129, 4414, 2), -- Armor Type
+(27129, 4415, 3), -- Weapon Type
+(27129, 4416, 6), -- Races
 -- Ol Mahum Betrayer
-(27130, 4408, 1), -- HP Increase (1x)
-(27130, 4409, 1), -- MP Increase (1x)
-(27130, 4410, 11), -- Average P. Atk.
-(27130, 4411, 11), -- Average M. Atk.
-(27130, 4412, 11), -- Average P. Def.
-(27130, 4413, 11), -- Average M. Def.
-(27130, 4414, 2), -- Standard Type
-(27130, 4415, 3), -- One-handed Sword
-(27130, 4416, 6), -- Humanoids
+(27130, 4408, 1), -- HP Modifiers
+(27130, 4409, 1), -- MP Modifiers
+(27130, 4410, 11), -- P. Atk. Modifiers
+(27130, 4411, 11), -- M. Atk. Modifiers
+(27130, 4412, 11), -- P. Def. Modifiers
+(27130, 4413, 11), -- M. Def. Modifiers
+(27130, 4414, 2), -- Armor Type
+(27130, 4415, 3), -- Weapon Type
+(27130, 4416, 6), -- Races
 -- Crimson Werewolf
-(27131, 4408, 1), -- HP Increase (1x)
-(27131, 4409, 1), -- MP Increase (1x)
-(27131, 4410, 11), -- Average P. Atk.
-(27131, 4411, 11), -- Average M. Atk.
-(27131, 4412, 11), -- Average P. Def.
-(27131, 4413, 11), -- Average M. Def.
-(27131, 4414, 2), -- Standard Type
-(27131, 4415, 3), -- One-handed Sword
-(27131, 4416, 6), -- Humanoids
+(27131, 4408, 1), -- HP Modifiers
+(27131, 4409, 1), -- MP Modifiers
+(27131, 4410, 11), -- P. Atk. Modifiers
+(27131, 4411, 11), -- M. Atk. Modifiers
+(27131, 4412, 11), -- P. Def. Modifiers
+(27131, 4413, 11), -- M. Def. Modifiers
+(27131, 4414, 2), -- Armor Type
+(27131, 4415, 3), -- Weapon Type
+(27131, 4416, 6), -- Races
 -- Krudel Lizardman
-(27132, 4408, 1), -- HP Increase (1x)
-(27132, 4409, 1), -- MP Increase (1x)
-(27132, 4410, 11), -- Average P. Atk.
-(27132, 4411, 11), -- Average M. Atk.
-(27132, 4412, 11), -- Average P. Def.
-(27132, 4413, 11), -- Average M. Def.
-(27132, 4414, 2), -- Standard Type
-(27132, 4415, 11), -- Spears
-(27132, 4416, 6), -- Humanoids
+(27132, 4408, 1), -- HP Modifiers
+(27132, 4409, 1), -- MP Modifiers
+(27132, 4410, 11), -- P. Atk. Modifiers
+(27132, 4411, 11), -- M. Atk. Modifiers
+(27132, 4412, 11), -- P. Def. Modifiers
+(27132, 4413, 11), -- M. Def. Modifiers
+(27132, 4414, 2), -- Armor Type
+(27132, 4415, 11), -- Weapon Type
+(27132, 4416, 6), -- Races
 -- Evil Eye Lord
-(27133, 4408, 1), -- HP Increase (1x)
-(27133, 4409, 1), -- MP Increase (1x)
-(27133, 4410, 11), -- Average P. Atk.
-(27133, 4411, 11), -- Average M. Atk.
-(27133, 4412, 11), -- Average P. Def.
-(27133, 4413, 11), -- Average M. Def.
-(27133, 4414, 2), -- Standard Type
-(27133, 4415, 3), -- One-handed Sword
-(27133, 4416, 2), -- Magic Creatures
+(27133, 4408, 1), -- HP Modifiers
+(27133, 4409, 1), -- MP Modifiers
+(27133, 4410, 11), -- P. Atk. Modifiers
+(27133, 4411, 11), -- M. Atk. Modifiers
+(27133, 4412, 11), -- P. Def. Modifiers
+(27133, 4413, 11), -- M. Def. Modifiers
+(27133, 4414, 2), -- Armor Type
+(27133, 4415, 3), -- Weapon Type
+(27133, 4416, 2), -- Races
 -- Tatoma
-(27134, 4408, 1), -- HP Increase (1x)
-(27134, 4409, 1), -- MP Increase (1x)
-(27134, 4410, 11), -- Average P. Atk.
-(27134, 4411, 11), -- Average M. Atk.
-(27134, 4412, 11), -- Average P. Def.
-(27134, 4413, 11), -- Average M. Def.
-(27134, 4414, 2), -- Standard Type
-(27134, 4415, 3), -- One-handed Sword
-(27134, 4416, 11), -- Giants
+(27134, 4408, 1), -- HP Modifiers
+(27134, 4409, 1), -- MP Modifiers
+(27134, 4410, 11), -- P. Atk. Modifiers
+(27134, 4411, 11), -- M. Atk. Modifiers
+(27134, 4412, 11), -- P. Def. Modifiers
+(27134, 4413, 11), -- M. Def. Modifiers
+(27134, 4414, 2), -- Armor Type
+(27134, 4415, 3), -- Weapon Type
+(27134, 4416, 11), -- Races
 -- Grima
-(27135, 4408, 1), -- HP Increase (1x)
-(27135, 4409, 1), -- MP Increase (1x)
-(27135, 4410, 11), -- Average P. Atk.
-(27135, 4411, 11), -- Average M. Atk.
-(27135, 4412, 11), -- Average P. Def.
-(27135, 4413, 11), -- Average M. Def.
-(27135, 4414, 2), -- Standard Type
-(27135, 4415, 3), -- One-handed Sword
-(27135, 4416, 12), -- Bugs
+(27135, 4408, 1), -- HP Modifiers
+(27135, 4409, 1), -- MP Modifiers
+(27135, 4410, 11), -- P. Atk. Modifiers
+(27135, 4411, 11), -- M. Atk. Modifiers
+(27135, 4412, 11), -- P. Def. Modifiers
+(27135, 4413, 11), -- M. Def. Modifiers
+(27135, 4414, 2), -- Armor Type
+(27135, 4415, 3), -- Weapon Type
+(27135, 4416, 12), -- Races
 -- Succubus Of Seduction
-(27136, 4408, 1), -- HP Increase (1x)
-(27136, 4409, 1), -- MP Increase (1x)
-(27136, 4410, 11), -- Average P. Atk.
-(27136, 4411, 11), -- Average M. Atk.
-(27136, 4412, 11), -- Average P. Def.
-(27136, 4413, 11), -- Average M. Def.
-(27136, 4414, 2), -- Standard Type
-(27136, 4415, 3), -- One-handed Sword
-(27136, 4416, 9), -- Demons
+(27136, 4408, 1), -- HP Modifiers
+(27136, 4409, 1), -- MP Modifiers
+(27136, 4410, 11), -- P. Atk. Modifiers
+(27136, 4411, 11), -- M. Atk. Modifiers
+(27136, 4412, 11), -- P. Def. Modifiers
+(27136, 4413, 11), -- M. Def. Modifiers
+(27136, 4414, 2), -- Armor Type
+(27136, 4415, 3), -- Weapon Type
+(27136, 4416, 9), -- Races
 -- Demon King
-(27137, 4408, 1), -- HP Increase (1x)
-(27137, 4409, 1), -- MP Increase (1x)
-(27137, 4410, 11), -- Average P. Atk.
-(27137, 4411, 11), -- Average M. Atk.
-(27137, 4412, 11), -- Average P. Def.
-(27137, 4413, 11), -- Average M. Def.
-(27137, 4414, 2), -- Standard Type
-(27137, 4415, 3), -- One-handed Sword
-(27137, 4416, 9), -- Demons
+(27137, 4408, 1), -- HP Modifiers
+(27137, 4409, 1), -- MP Modifiers
+(27137, 4410, 11), -- P. Atk. Modifiers
+(27137, 4411, 11), -- M. Atk. Modifiers
+(27137, 4412, 11), -- P. Def. Modifiers
+(27137, 4413, 11), -- M. Def. Modifiers
+(27137, 4414, 2), -- Armor Type
+(27137, 4415, 3), -- Weapon Type
+(27137, 4416, 9), -- Races
 -- Great Demon King
-(27138, 4408, 1), -- HP Increase (1x)
-(27138, 4409, 1), -- MP Increase (1x)
-(27138, 4410, 11), -- Average P. Atk.
-(27138, 4411, 11), -- Average M. Atk.
-(27138, 4412, 11), -- Average P. Def.
-(27138, 4413, 11), -- Average M. Def.
-(27138, 4414, 2), -- Standard Type
-(27138, 4415, 3), -- One-handed Sword
-(27138, 4416, 1), -- Undead
+(27138, 4408, 1), -- HP Modifiers
+(27138, 4409, 1), -- MP Modifiers
+(27138, 4410, 11), -- P. Atk. Modifiers
+(27138, 4411, 11), -- M. Atk. Modifiers
+(27138, 4412, 11), -- P. Def. Modifiers
+(27138, 4413, 11), -- M. Def. Modifiers
+(27138, 4414, 2), -- Armor Type
+(27138, 4415, 3), -- Weapon Type
+(27138, 4416, 1), -- Races
 -- Secret Keeper Tree
-(27139, 4277, 5), -- Resist Poison Attacks
-(27139, 4408, 1), -- HP Increase (1x)
-(27139, 4409, 1), -- MP Increase (1x)
-(27139, 4410, 11), -- Average P. Atk.
-(27139, 4411, 11), -- Average M. Atk.
-(27139, 4412, 11), -- Average P. Def.
-(27139, 4413, 11), -- Average M. Def.
-(27139, 4414, 2), -- Standard Type
-(27139, 4415, 3), -- One-handed Sword
-(27139, 4416, 7), -- Spirits
+(27139, 4277, 5), -- Resist Poison
+(27139, 4408, 1), -- HP Modifiers
+(27139, 4409, 1), -- MP Modifiers
+(27139, 4410, 11), -- P. Atk. Modifiers
+(27139, 4411, 11), -- M. Atk. Modifiers
+(27139, 4412, 11), -- P. Def. Modifiers
+(27139, 4413, 11), -- M. Def. Modifiers
+(27139, 4414, 2), -- Armor Type
+(27139, 4415, 3), -- Weapon Type
+(27139, 4416, 7), -- Races
 -- Breka Overlord Haka
-(27140, 4032, 3), -- Power Strike
-(27140, 4408, 1), -- HP Increase (1x)
-(27140, 4409, 1), -- MP Increase (1x)
-(27140, 4410, 11), -- Average P. Atk.
-(27140, 4411, 11), -- Average M. Atk.
-(27140, 4412, 11), -- Average P. Def.
-(27140, 4413, 11), -- Average M. Def.
-(27140, 4414, 2), -- Standard Type
-(27140, 4415, 3), -- One-handed Sword
-(27140, 4416, 6), -- Humanoids
+(27140, 4032, 3), -- NPC Strike
+(27140, 4408, 1), -- HP Modifiers
+(27140, 4409, 1), -- MP Modifiers
+(27140, 4410, 11), -- P. Atk. Modifiers
+(27140, 4411, 11), -- M. Atk. Modifiers
+(27140, 4412, 11), -- P. Def. Modifiers
+(27140, 4413, 11), -- M. Def. Modifiers
+(27140, 4414, 2), -- Armor Type
+(27140, 4415, 3), -- Weapon Type
+(27140, 4416, 6), -- Races
 -- Breka Overlord Jaka
-(27141, 4032, 3), -- Power Strike
-(27141, 4408, 1), -- HP Increase (1x)
-(27141, 4409, 1), -- MP Increase (1x)
-(27141, 4410, 11), -- Average P. Atk.
-(27141, 4411, 11), -- Average M. Atk.
-(27141, 4412, 11), -- Average P. Def.
-(27141, 4413, 11), -- Average M. Def.
-(27141, 4414, 2), -- Standard Type
-(27141, 4415, 3), -- One-handed Sword
-(27141, 4416, 6), -- Humanoids
+(27141, 4032, 3), -- NPC Strike
+(27141, 4408, 1), -- HP Modifiers
+(27141, 4409, 1), -- MP Modifiers
+(27141, 4410, 11), -- P. Atk. Modifiers
+(27141, 4411, 11), -- M. Atk. Modifiers
+(27141, 4412, 11), -- P. Def. Modifiers
+(27141, 4413, 11), -- M. Def. Modifiers
+(27141, 4414, 2), -- Armor Type
+(27141, 4415, 3), -- Weapon Type
+(27141, 4416, 6), -- Races
 -- Breka Overlord Marka
-(27142, 4032, 3), -- Power Strike
-(27142, 4408, 1), -- HP Increase (1x)
-(27142, 4409, 1), -- MP Increase (1x)
-(27142, 4410, 11), -- Average P. Atk.
-(27142, 4411, 11), -- Average M. Atk.
-(27142, 4412, 11), -- Average P. Def.
-(27142, 4413, 11), -- Average M. Def.
-(27142, 4414, 2), -- Standard Type
-(27142, 4415, 3), -- One-handed Sword
-(27142, 4416, 6), -- Humanoids
+(27142, 4032, 3), -- NPC Strike
+(27142, 4408, 1), -- HP Modifiers
+(27142, 4409, 1), -- MP Modifiers
+(27142, 4410, 11), -- P. Atk. Modifiers
+(27142, 4411, 11), -- M. Atk. Modifiers
+(27142, 4412, 11), -- P. Def. Modifiers
+(27142, 4413, 11), -- M. Def. Modifiers
+(27142, 4414, 2), -- Armor Type
+(27142, 4415, 3), -- Weapon Type
+(27142, 4416, 6), -- Races
 -- Windsus Aleph
-(27143, 4408, 1), -- HP Increase (1x)
-(27143, 4409, 1), -- MP Increase (1x)
-(27143, 4410, 11), -- Average P. Atk.
-(27143, 4411, 11), -- Average M. Atk.
-(27143, 4412, 11), -- Average P. Def.
-(27143, 4413, 11), -- Average M. Def.
-(27143, 4414, 2), -- Standard Type
-(27143, 4415, 3), -- One-handed Sword
-(27143, 4416, 4), -- Animals
+(27143, 4408, 1), -- HP Modifiers
+(27143, 4409, 1), -- MP Modifiers
+(27143, 4410, 11), -- P. Atk. Modifiers
+(27143, 4411, 11), -- M. Atk. Modifiers
+(27143, 4412, 11), -- P. Def. Modifiers
+(27143, 4413, 11), -- M. Def. Modifiers
+(27143, 4414, 2), -- Armor Type
+(27143, 4415, 3), -- Weapon Type
+(27143, 4416, 4), -- Races
 -- Tarlk Raider Athu
-(27144, 4408, 1), -- HP Increase (1x)
-(27144, 4409, 1), -- MP Increase (1x)
-(27144, 4410, 11), -- Average P. Atk.
-(27144, 4411, 11), -- Average M. Atk.
-(27144, 4412, 11), -- Average P. Def.
-(27144, 4413, 11), -- Average M. Def.
-(27144, 4414, 2), -- Standard Type
-(27144, 4415, 3), -- One-handed Sword
-(27144, 4416, 11), -- Giants
+(27144, 4408, 1), -- HP Modifiers
+(27144, 4409, 1), -- MP Modifiers
+(27144, 4410, 11), -- P. Atk. Modifiers
+(27144, 4411, 11), -- M. Atk. Modifiers
+(27144, 4412, 11), -- P. Def. Modifiers
+(27144, 4413, 11), -- M. Def. Modifiers
+(27144, 4414, 2), -- Armor Type
+(27144, 4415, 3), -- Weapon Type
+(27144, 4416, 11), -- Races
 -- Tarlk Raider Lanka
-(27145, 4408, 1), -- HP Increase (1x)
-(27145, 4409, 1), -- MP Increase (1x)
-(27145, 4410, 11), -- Average P. Atk.
-(27145, 4411, 11), -- Average M. Atk.
-(27145, 4412, 11), -- Average P. Def.
-(27145, 4413, 11), -- Average M. Def.
-(27145, 4414, 2), -- Standard Type
-(27145, 4415, 3), -- One-handed Sword
-(27145, 4416, 11), -- Giants
+(27145, 4408, 1), -- HP Modifiers
+(27145, 4409, 1), -- MP Modifiers
+(27145, 4410, 11), -- P. Atk. Modifiers
+(27145, 4411, 11), -- M. Atk. Modifiers
+(27145, 4412, 11); -- P. Def. Modifiers
+
+INSERT INTO `npcskills` VALUES
+(27145, 4413, 11), -- M. Def. Modifiers
+(27145, 4414, 2), -- Armor Type
+(27145, 4415, 3), -- Weapon Type
+(27145, 4416, 11), -- Races
 -- Tarlk Raider Triska
-(27146, 4408, 1), -- HP Increase (1x)
-(27146, 4409, 1), -- MP Increase (1x)
-(27146, 4410, 11), -- Average P. Atk.
-(27146, 4411, 11), -- Average M. Atk.
-(27146, 4412, 11), -- Average P. Def.
-(27146, 4413, 11), -- Average M. Def.
-(27146, 4414, 2), -- Standard Type
-(27146, 4415, 3), -- One-handed Sword
-(27146, 4416, 11), -- Giants
+(27146, 4408, 1), -- HP Modifiers
+(27146, 4409, 1), -- MP Modifiers
+(27146, 4410, 11), -- P. Atk. Modifiers
+(27146, 4411, 11), -- M. Atk. Modifiers
+(27146, 4412, 11), -- P. Def. Modifiers
+(27146, 4413, 11), -- M. Def. Modifiers
+(27146, 4414, 2), -- Armor Type
+(27146, 4415, 3), -- Weapon Type
+(27146, 4416, 11), -- Races
 -- Tarlk Raider Motura
-(27147, 4408, 1), -- HP Increase (1x)
-(27147, 4409, 1), -- MP Increase (1x)
-(27147, 4410, 11), -- Average P. Atk.
-(27147, 4411, 11), -- Average M. Atk.
-(27147, 4412, 11), -- Average P. Def.
-(27147, 4413, 11), -- Average M. Def.
-(27147, 4414, 2), -- Standard Type
-(27147, 4415, 3), -- One-handed Sword
-(27147, 4416, 11), -- Giants
+(27147, 4408, 1), -- HP Modifiers
+(27147, 4409, 1), -- MP Modifiers
+(27147, 4410, 11), -- P. Atk. Modifiers
+(27147, 4411, 11), -- M. Atk. Modifiers
+(27147, 4412, 11), -- P. Def. Modifiers
+(27147, 4413, 11), -- M. Def. Modifiers
+(27147, 4414, 2), -- Armor Type
+(27147, 4415, 3), -- Weapon Type
+(27147, 4416, 11), -- Races
 -- Tarlk Raider Kalath
-(27148, 4408, 1), -- HP Increase (1x)
-(27148, 4409, 1), -- MP Increase (1x)
-(27148, 4410, 11), -- Average P. Atk.
-(27148, 4411, 11), -- Average M. Atk.
-(27148, 4412, 11), -- Average P. Def.
-(27148, 4413, 11), -- Average M. Def.
-(27148, 4414, 2), -- Standard Type
-(27148, 4415, 3), -- One-handed Sword
-(27148, 4416, 11), -- Giants
+(27148, 4408, 1), -- HP Modifiers
+(27148, 4409, 1), -- MP Modifiers
+(27148, 4410, 11), -- P. Atk. Modifiers
+(27148, 4411, 11), -- M. Atk. Modifiers
+(27148, 4412, 11), -- P. Def. Modifiers
+(27148, 4413, 11), -- M. Def. Modifiers
+(27148, 4414, 2), -- Armor Type
+(27148, 4415, 3), -- Weapon Type
+(27148, 4416, 11), -- Races
 -- Gremlin Filcher
-(27149, 4408, 1), -- HP Increase (1x)
-(27149, 4409, 1), -- MP Increase (1x)
-(27149, 4410, 11), -- Average P. Atk.
-(27149, 4411, 11), -- Average M. Atk.
-(27149, 4412, 11), -- Average P. Def.
-(27149, 4413, 11), -- Average M. Def.
-(27149, 4414, 2), -- Standard Type
-(27149, 4415, 3), -- One-handed Sword
-(27149, 4416, 13), -- Fairies
+(27149, 4408, 1), -- HP Modifiers
+(27149, 4409, 1), -- MP Modifiers
+(27149, 4410, 11), -- P. Atk. Modifiers
+(27149, 4411, 11), -- M. Atk. Modifiers
+(27149, 4412, 11), -- P. Def. Modifiers
+(27149, 4413, 11), -- M. Def. Modifiers
+(27149, 4414, 2), -- Armor Type
+(27149, 4415, 3), -- Weapon Type
+(27149, 4416, 13), -- Races
 -- Black Legion Stormtrooper
-(27150, 4408, 1), -- HP Increase (1x)
-(27150, 4409, 1), -- MP Increase (1x)
-(27150, 4410, 11), -- Average P. Atk.
-(27150, 4411, 11), -- Average M. Atk.
-(27150, 4412, 11), -- Average P. Def.
-(27150, 4413, 11), -- Average M. Def.
-(27150, 4414, 2), -- Standard Type
-(27150, 4415, 3), -- One-handed Sword
-(27150, 4416, 1), -- Undead
+(27150, 4408, 1), -- HP Modifiers
+(27150, 4409, 1), -- MP Modifiers
+(27150, 4410, 11), -- P. Atk. Modifiers
+(27150, 4411, 11), -- M. Atk. Modifiers
+(27150, 4412, 11), -- P. Def. Modifiers
+(27150, 4413, 11), -- M. Def. Modifiers
+(27150, 4414, 2), -- Armor Type
+(27150, 4415, 3), -- Weapon Type
+(27150, 4416, 1), -- Races
 -- Delu Lizardman Headhunter
-(27151, 4408, 1), -- HP Increase (1x)
-(27151, 4409, 1), -- MP Increase (1x)
-(27151, 4410, 11), -- Average P. Atk.
-(27151, 4411, 11), -- Average M. Atk.
-(27151, 4412, 11), -- Average P. Def.
-(27151, 4413, 11), -- Average M. Def.
-(27151, 4414, 2), -- Standard Type
-(27151, 4415, 9), -- Bows
-(27151, 4416, 6), -- Humanoids
+(27151, 4408, 1), -- HP Modifiers
+(27151, 4409, 1), -- MP Modifiers
+(27151, 4410, 11), -- P. Atk. Modifiers
+(27151, 4411, 11), -- M. Atk. Modifiers
+(27151, 4412, 11), -- P. Def. Modifiers
+(27151, 4413, 11), -- M. Def. Modifiers
+(27151, 4414, 2), -- Armor Type
+(27151, 4415, 9), -- Weapon Type
+(27151, 4416, 6), -- Races
 -- Marsh Stakato Marquess
-(27152, 4408, 1), -- HP Increase (1x)
-(27152, 4409, 1), -- MP Increase (1x)
-(27152, 4410, 11), -- Average P. Atk.
-(27152, 4411, 11), -- Average M. Atk.
-(27152, 4412, 11), -- Average P. Def.
-(27152, 4413, 11), -- Average M. Def.
-(27152, 4414, 2), -- Standard Type
-(27152, 4415, 3), -- One-handed Sword
-(27152, 4416, 6), -- Humanoids
+(27152, 4408, 1), -- HP Modifiers
+(27152, 4409, 1), -- MP Modifiers
+(27152, 4410, 11), -- P. Atk. Modifiers
+(27152, 4411, 11), -- M. Atk. Modifiers
+(27152, 4412, 11), -- P. Def. Modifiers
+(27152, 4413, 11), -- M. Def. Modifiers
+(27152, 4414, 2), -- Armor Type
+(27152, 4415, 3), -- Weapon Type
+(27152, 4416, 6), -- Races
 -- Alexandro Sanches 
-(27153, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(27153, 4408, 1), -- HP Increase (1x)
-(27153, 4409, 1), -- MP Increase (1x)
-(27153, 4410, 11), -- Average P. Atk.
-(27153, 4411, 11), -- Average M. Atk.
-(27153, 4412, 11), -- Average P. Def.
-(27153, 4413, 11), -- Average M. Def.
-(27153, 4414, 2), -- Standard Type
-(27153, 4415, 3), -- One-handed Sword
-(27153, 4416, 13), -- Fairies
+(27153, 4276, 1), -- Archery Attack Weak Point
+(27153, 4408, 1), -- HP Modifiers
+(27153, 4409, 1), -- MP Modifiers
+(27153, 4410, 11), -- P. Atk. Modifiers
+(27153, 4411, 11), -- M. Atk. Modifiers
+(27153, 4412, 11), -- P. Def. Modifiers
+(27153, 4413, 11), -- M. Def. Modifiers
+(27153, 4414, 2), -- Armor Type
+(27153, 4415, 3), -- Weapon Type
+(27153, 4416, 13), -- Races
 -- Bonaparterius
-(27154, 4408, 1), -- HP Increase (1x)
-(27154, 4409, 1), -- MP Increase (1x)
-(27154, 4410, 11), -- Average P. Atk.
-(27154, 4411, 11), -- Average M. Atk.
-(27154, 4412, 11), -- Average P. Def.
-(27154, 4413, 11), -- Average M. Def.
-(27154, 4414, 2), -- Standard Type
-(27154, 4415, 3), -- One-handed Sword
-(27154, 4416, 6), -- Humanoids
+(27154, 4408, 1), -- HP Modifiers
+(27154, 4409, 1), -- MP Modifiers
+(27154, 4410, 11), -- P. Atk. Modifiers
+(27154, 4411, 11), -- M. Atk. Modifiers
+(27154, 4412, 11), -- P. Def. Modifiers
+(27154, 4413, 11), -- M. Def. Modifiers
+(27154, 4414, 2), -- Armor Type
+(27154, 4415, 3), -- Weapon Type
+(27154, 4416, 6), -- Races
 -- Ramsebalius
-(27155, 4408, 1), -- HP Increase (1x)
-(27155, 4409, 1), -- MP Increase (1x)
-(27155, 4410, 11), -- Average P. Atk.
-(27155, 4411, 11), -- Average M. Atk.
-(27155, 4412, 11), -- Average P. Def.
-(27155, 4413, 11), -- Average M. Def.
-(27155, 4414, 2), -- Standard Type
-(27155, 4415, 3), -- One-handed Sword
-(27155, 4416, 6), -- Humanoids
+(27155, 4408, 1), -- HP Modifiers
+(27155, 4409, 1), -- MP Modifiers
+(27155, 4410, 11), -- P. Atk. Modifiers
+(27155, 4411, 11), -- M. Atk. Modifiers
+(27155, 4412, 11), -- P. Def. Modifiers
+(27155, 4413, 11), -- M. Def. Modifiers
+(27155, 4414, 2), -- Armor Type
+(27155, 4415, 3), -- Weapon Type
+(27155, 4416, 6), -- Races
 -- Leto Shaman Ketz
-(27156, 4151, 4), -- Wind Strike
-(27156, 4160, 4), -- Aura Burn
-(27156, 4408, 1), -- HP Increase (1x)
-(27156, 4409, 1), -- MP Increase (1x)
-(27156, 4410, 11), -- Average P. Atk.
-(27156, 4411, 11), -- Average M. Atk.
-(27156, 4412, 11), -- Average P. Def.
-(27156, 4413, 11), -- Average M. Def.
-(27156, 4414, 2), -- Standard Type
-(27156, 4415, 3), -- One-handed Sword
-(27156, 4416, 6), -- Humanoids
+(27156, 4151, 4), -- NPC Windstrike - Magic
+(27156, 4160, 4), -- NPC Aura Burn - Magic
+(27156, 4408, 1), -- HP Modifiers
+(27156, 4409, 1), -- MP Modifiers
+(27156, 4410, 11), -- P. Atk. Modifiers
+(27156, 4411, 11), -- M. Atk. Modifiers
+(27156, 4412, 11), -- P. Def. Modifiers
+(27156, 4413, 11), -- M. Def. Modifiers
+(27156, 4414, 2), -- Armor Type
+(27156, 4415, 3), -- Weapon Type
+(27156, 4416, 6), -- Races
 -- Leto Chief Narak
-(27157, 4408, 1), -- HP Increase (1x)
-(27157, 4409, 1), -- MP Increase (1x)
-(27157, 4410, 11), -- Average P. Atk.
-(27157, 4411, 11), -- Average M. Atk.
-(27157, 4412, 11), -- Average P. Def.
-(27157, 4413, 11), -- Average M. Def.
-(27157, 4414, 2), -- Standard Type
-(27157, 4415, 3), -- One-handed Sword
-(27157, 4416, 6), -- Humanoids
+(27157, 4408, 1), -- HP Modifiers
+(27157, 4409, 1), -- MP Modifiers
+(27157, 4410, 11), -- P. Atk. Modifiers
+(27157, 4411, 11), -- M. Atk. Modifiers
+(27157, 4412, 11), -- P. Def. Modifiers
+(27157, 4413, 11), -- M. Def. Modifiers
+(27157, 4414, 2), -- Armor Type
+(27157, 4415, 3), -- Weapon Type
+(27157, 4416, 6), -- Races
 -- Timak Raider Kaikee
-(27158, 4408, 1), -- HP Increase (1x)
-(27158, 4409, 1), -- MP Increase (1x)
-(27158, 4410, 11), -- Average P. Atk.
-(27158, 4411, 11), -- Average M. Atk.
-(27158, 4412, 11), -- Average P. Def.
-(27158, 4413, 11), -- Average M. Def.
-(27158, 4414, 2), -- Standard Type
-(27158, 4415, 3), -- One-handed Sword
-(27158, 4416, 6), -- Humanoids
+(27158, 4408, 1), -- HP Modifiers
+(27158, 4409, 1), -- MP Modifiers
+(27158, 4410, 11), -- P. Atk. Modifiers
+(27158, 4411, 11), -- M. Atk. Modifiers
+(27158, 4412, 11), -- P. Def. Modifiers
+(27158, 4413, 11), -- M. Def. Modifiers
+(27158, 4414, 2), -- Armor Type
+(27158, 4415, 3), -- Weapon Type
+(27158, 4416, 6), -- Races
 -- Timak Overlord Okun
-(27159, 4408, 1), -- HP Increase (1x)
-(27159, 4409, 1), -- MP Increase (1x)
-(27159, 4410, 11), -- Average P. Atk.
-(27159, 4411, 11), -- Average M. Atk.
-(27159, 4412, 11), -- Average P. Def.
-(27159, 4413, 11), -- Average M. Def.
-(27159, 4414, 2), -- Standard Type
-(27159, 4415, 3), -- One-handed Sword
-(27159, 4416, 6), -- Humanoids
+(27159, 4408, 1), -- HP Modifiers
+(27159, 4409, 1), -- MP Modifiers
+(27159, 4410, 11), -- P. Atk. Modifiers
+(27159, 4411, 11), -- M. Atk. Modifiers
+(27159, 4412, 11), -- P. Def. Modifiers
+(27159, 4413, 11), -- M. Def. Modifiers
+(27159, 4414, 2), -- Armor Type
+(27159, 4415, 3), -- Weapon Type
+(27159, 4416, 6), -- Races
 -- Gok Magok
-(27160, 4408, 1), -- HP Increase (1x)
-(27160, 4409, 1), -- MP Increase (1x)
-(27160, 4410, 11), -- Average P. Atk.
-(27160, 4411, 11), -- Average M. Atk.
-(27160, 4412, 11), -- Average P. Def.
-(27160, 4413, 11), -- Average M. Def.
-(27160, 4414, 2), -- Standard Type
-(27160, 4415, 3), -- One-handed Sword
-(27160, 4416, 11), -- Giants
+(27160, 4408, 1), -- HP Modifiers
+(27160, 4409, 1), -- MP Modifiers
+(27160, 4410, 11), -- P. Atk. Modifiers
+(27160, 4411, 11), -- M. Atk. Modifiers
+(27160, 4412, 11), -- P. Def. Modifiers
+(27160, 4413, 11), -- M. Def. Modifiers
+(27160, 4414, 2), -- Armor Type
+(27160, 4415, 3), -- Weapon Type
+(27160, 4416, 11), -- Races
 -- Taik Overlord Kakran
-(27161, 4408, 1), -- HP Increase (1x)
-(27161, 4409, 1), -- MP Increase (1x)
-(27161, 4410, 11), -- Average P. Atk.
-(27161, 4411, 11), -- Average M. Atk.
-(27161, 4412, 11), -- Average P. Def.
-(27161, 4413, 11), -- Average M. Def.
-(27161, 4414, 2), -- Standard Type
-(27161, 4415, 3), -- One-handed Sword
-(27161, 4416, 6), -- Humanoids
+(27161, 4408, 1), -- HP Modifiers
+(27161, 4409, 1), -- MP Modifiers
+(27161, 4410, 11), -- P. Atk. Modifiers
+(27161, 4411, 11), -- M. Atk. Modifiers
+(27161, 4412, 11), -- P. Def. Modifiers
+(27161, 4413, 11), -- M. Def. Modifiers
+(27161, 4414, 2), -- Armor Type
+(27161, 4415, 3), -- Weapon Type
+(27161, 4416, 6), -- Races
 -- Hatar Chieftain Kubel
-(27162, 4408, 1), -- HP Increase (1x)
-(27162, 4409, 1), -- MP Increase (1x)
-(27162, 4410, 11), -- Average P. Atk.
-(27162, 4411, 11), -- Average M. Atk.
-(27162, 4412, 11), -- Average P. Def.
-(27162, 4413, 11), -- Average M. Def.
-(27162, 4414, 2), -- Standard Type
-(27162, 4415, 3), -- One-handed Sword
-(27162, 4416, 3), -- Beasts
+(27162, 4408, 1), -- HP Modifiers
+(27162, 4409, 1), -- MP Modifiers
+(27162, 4410, 11), -- P. Atk. Modifiers
+(27162, 4411, 11), -- M. Atk. Modifiers
+(27162, 4412, 11), -- P. Def. Modifiers
+(27162, 4413, 11), -- M. Def. Modifiers
+(27162, 4414, 2), -- Armor Type
+(27162, 4415, 3), -- Weapon Type
+(27162, 4416, 3), -- Races
 -- Vanor Elder Kerunos
-(27163, 4408, 1), -- HP Increase (1x)
-(27163, 4409, 1), -- MP Increase (1x)
-(27163, 4410, 11), -- Average P. Atk.
-(27163, 4411, 11), -- Average M. Atk.
-(27163, 4412, 11), -- Average P. Def.
-(27163, 4413, 11), -- Average M. Def.
-(27163, 4414, 2), -- Standard Type
-(27163, 4415, 3), -- One-handed Sword
-(27163, 4416, 6), -- Humanoids
+(27163, 4408, 1), -- HP Modifiers
+(27163, 4409, 1), -- MP Modifiers
+(27163, 4410, 11), -- P. Atk. Modifiers
+(27163, 4411, 11), -- M. Atk. Modifiers
+(27163, 4412, 11), -- P. Def. Modifiers
+(27163, 4413, 11), -- M. Def. Modifiers
+(27163, 4414, 2), -- Armor Type
+(27163, 4415, 3), -- Weapon Type
+(27163, 4416, 6), -- Races
 -- Karul Chief Orooto
-(27164, 4408, 1), -- HP Increase (1x)
-(27164, 4409, 1), -- MP Increase (1x)
-(27164, 4410, 11), -- Average P. Atk.
-(27164, 4411, 11), -- Average M. Atk.
-(27164, 4412, 11), -- Average P. Def.
-(27164, 4413, 11), -- Average M. Def.
-(27164, 4414, 2), -- Standard Type
-(27164, 4415, 3), -- One-handed Sword
-(27164, 4416, 11), -- Giants
+(27164, 4408, 1), -- HP Modifiers
+(27164, 4409, 1), -- MP Modifiers
+(27164, 4410, 11), -- P. Atk. Modifiers
+(27164, 4411, 11), -- M. Atk. Modifiers
+(27164, 4412, 11), -- P. Def. Modifiers
+(27164, 4413, 11), -- M. Def. Modifiers
+(27164, 4414, 2), -- Armor Type
+(27164, 4415, 3), -- Weapon Type
+(27164, 4416, 11), -- Races
 -- Abyssal Jewel 1
-(27165, 4408, 17), -- HP Increase (9x)
-(27165, 4409, 1), -- MP Increase (1x)
-(27165, 4410, 11), -- Average P. Atk.
-(27165, 4411, 11), -- Average M. Atk.
-(27165, 4412, 11), -- Average P. Def.
-(27165, 4413, 11), -- Average M. Def.
-(27165, 4414, 2), -- Standard Type
-(27165, 4415, 3), -- One-handed Sword
-(27165, 4416, 13), -- Fairies
+(27165, 4408, 17), -- HP Modifiers
+(27165, 4409, 1), -- MP Modifiers
+(27165, 4410, 11), -- P. Atk. Modifiers
+(27165, 4411, 11), -- M. Atk. Modifiers
+(27165, 4412, 11), -- P. Def. Modifiers
+(27165, 4413, 11), -- M. Def. Modifiers
+(27165, 4414, 2), -- Armor Type
+(27165, 4415, 3), -- Weapon Type
+(27165, 4416, 13), -- Races
 -- Abyssal Jewel 2
-(27166, 4408, 17), -- HP Increase (9x)
-(27166, 4409, 1), -- MP Increase (1x)
-(27166, 4410, 11), -- Average P. Atk.
-(27166, 4411, 11), -- Average M. Atk.
-(27166, 4412, 11), -- Average P. Def.
-(27166, 4413, 11), -- Average M. Def.
-(27166, 4414, 2), -- Standard Type
-(27166, 4415, 3), -- One-handed Sword
-(27166, 4416, 13), -- Fairies
+(27166, 4408, 17), -- HP Modifiers
+(27166, 4409, 1), -- MP Modifiers
+(27166, 4410, 11), -- P. Atk. Modifiers
+(27166, 4411, 11), -- M. Atk. Modifiers
+(27166, 4412, 11), -- P. Def. Modifiers
+(27166, 4413, 11), -- M. Def. Modifiers
+(27166, 4414, 2), -- Armor Type
+(27166, 4415, 3), -- Weapon Type
+(27166, 4416, 13), -- Races
 -- Abyssal Jewel 3
-(27167, 4408, 17), -- HP Increase (9x)
-(27167, 4409, 1), -- MP Increase (1x)
-(27167, 4410, 11), -- Average P. Atk.
-(27167, 4411, 11), -- Average M. Atk.
-(27167, 4412, 11), -- Average P. Def.
-(27167, 4413, 11), -- Average M. Def.
-(27167, 4414, 2), -- Standard Type
-(27167, 4415, 3), -- One-handed Sword
-(27167, 4416, 13), -- Fairies
+(27167, 4408, 17), -- HP Modifiers
+(27167, 4409, 1), -- MP Modifiers
+(27167, 4410, 11), -- P. Atk. Modifiers
+(27167, 4411, 11), -- M. Atk. Modifiers
+(27167, 4412, 11), -- P. Def. Modifiers
+(27167, 4413, 11), -- M. Def. Modifiers
+(27167, 4414, 2), -- Armor Type
+(27167, 4415, 3), -- Weapon Type
+(27167, 4416, 13), -- Races
 -- Jewel Guardian Mara
-(27168, 4408, 1), -- HP Increase (1x)
-(27168, 4409, 1), -- MP Increase (1x)
-(27168, 4410, 11), -- Average P. Atk.
-(27168, 4411, 11), -- Average M. Atk.
-(27168, 4412, 11), -- Average P. Def.
-(27168, 4413, 11), -- Average M. Def.
-(27168, 4414, 2), -- Standard Type
-(27168, 4415, 3), -- One-handed Sword
-(27168, 4416, 9), -- Demons
+(27168, 4408, 1), -- HP Modifiers
+(27168, 4409, 1), -- MP Modifiers
+(27168, 4410, 11), -- P. Atk. Modifiers
+(27168, 4411, 11), -- M. Atk. Modifiers
+(27168, 4412, 11), -- P. Def. Modifiers
+(27168, 4413, 11), -- M. Def. Modifiers
+(27168, 4414, 2), -- Armor Type
+(27168, 4415, 3), -- Weapon Type
+(27168, 4416, 9), -- Races
 -- Jewel Guardian Musfel
-(27169, 4408, 1), -- HP Increase (1x)
-(27169, 4409, 1), -- MP Increase (1x)
-(27169, 4410, 11), -- Average P. Atk.
-(27169, 4411, 11), -- Average M. Atk.
-(27169, 4412, 11), -- Average P. Def.
-(27169, 4413, 11), -- Average M. Def.
-(27169, 4414, 2), -- Standard Type
-(27169, 4415, 3), -- One-handed Sword
-(27169, 4416, 9), -- Demons
+(27169, 4408, 1), -- HP Modifiers
+(27169, 4409, 1), -- MP Modifiers
+(27169, 4410, 11), -- P. Atk. Modifiers
+(27169, 4411, 11), -- M. Atk. Modifiers
+(27169, 4412, 11), -- P. Def. Modifiers
+(27169, 4413, 11), -- M. Def. Modifiers
+(27169, 4414, 2), -- Armor Type
+(27169, 4415, 3), -- Weapon Type
+(27169, 4416, 9), -- Races
 -- Jewel Guardian Pyton
-(27170, 4408, 1), -- HP Increase (1x)
-(27170, 4409, 1), -- MP Increase (1x)
-(27170, 4410, 11), -- Average P. Atk.
-(27170, 4411, 11), -- Average M. Atk.
-(27170, 4412, 11), -- Average P. Def.
-(27170, 4413, 11), -- Average M. Def.
-(27170, 4414, 2), -- Standard Type
-(27170, 4415, 3), -- One-handed Sword
-(27170, 4416, 3), -- Beasts
+(27170, 4408, 1), -- HP Modifiers
+(27170, 4409, 1), -- MP Modifiers
+(27170, 4410, 11), -- P. Atk. Modifiers
+(27170, 4411, 11), -- M. Atk. Modifiers
+(27170, 4412, 11), -- P. Def. Modifiers
+(27170, 4413, 11), -- M. Def. Modifiers
+(27170, 4414, 2), -- Armor Type
+(27170, 4415, 3), -- Weapon Type
+(27170, 4416, 3), -- Races
 -- Ghost of Offering
-(27171, 4276, 1), -- Weak Point against Bow/Crossbow Weapons
-(27171, 4408, 1), -- HP Increase (1x)
-(27171, 4409, 1), -- MP Increase (1x)
-(27171, 4410, 11), -- Average P. Atk.
-(27171, 4411, 11), -- Average M. Atk.
-(27171, 4412, 11), -- Average P. Def.
-(27171, 4413, 11), -- Average M. Def.
-(27171, 4414, 2), -- Standard Type
-(27171, 4415, 3), -- One-handed Sword
-(27171, 4416, 2), -- Magic Creatures
+(27171, 4276, 1), -- Archery Attack Weak Point
+(27171, 4408, 1), -- HP Modifiers
+(27171, 4409, 1), -- MP Modifiers
+(27171, 4410, 11), -- P. Atk. Modifiers
+(27171, 4411, 11), -- M. Atk. Modifiers
+(27171, 4412, 11), -- P. Def. Modifiers
+(27171, 4413, 11), -- M. Def. Modifiers
+(27171, 4414, 2), -- Armor Type
+(27171, 4415, 3), -- Weapon Type
+(27171, 4416, 2), -- Races
 -- Harit Lizardman Zealot
-(27172, 4408, 1), -- HP Increase (1x)
-(27172, 4409, 1), -- MP Increase (1x)
-(27172, 4410, 11), -- Average P. Atk.
-(27172, 4411, 11), -- Average M. Atk.
-(27172, 4412, 11), -- Average P. Def.
-(27172, 4413, 11), -- Average M. Def.
-(27172, 4414, 2), -- Standard Type
-(27172, 4415, 3), -- One-handed Sword
-(27172, 4416, 6), -- Humanoids
+(27172, 4408, 1), -- HP Modifiers
+(27172, 4409, 1), -- MP Modifiers
+(27172, 4410, 11), -- P. Atk. Modifiers
+(27172, 4411, 11), -- M. Atk. Modifiers
+(27172, 4412, 11), -- P. Def. Modifiers
+(27172, 4413, 11), -- M. Def. Modifiers
+(27172, 4414, 2), -- Armor Type
+(27172, 4415, 3), -- Weapon Type
+(27172, 4416, 6), -- Races
 -- Box Of Athrea 1
-(27173, 4408, 1), -- HP Increase (1x)
-(27173, 4409, 1), -- MP Increase (1x)
-(27173, 4410, 11), -- Average P. Atk.
-(27173, 4411, 11), -- Average M. Atk.
-(27173, 4412, 11), -- Average P. Def.
-(27173, 4413, 11), -- Average M. Def.
-(27173, 4414, 2), -- Standard Type
-(27173, 4415, 3), -- One-handed Sword
-(27173, 4416, 19), -- Others
+(27173, 4408, 1), -- HP Modifiers
+(27173, 4409, 1), -- MP Modifiers
+(27173, 4410, 11), -- P. Atk. Modifiers
+(27173, 4411, 11), -- M. Atk. Modifiers
+(27173, 4412, 11), -- P. Def. Modifiers
+(27173, 4413, 11), -- M. Def. Modifiers
+(27173, 4414, 2), -- Armor Type
+(27173, 4415, 3), -- Weapon Type
+(27173, 4416, 19), -- Races
 -- Box Of Athrea 2
-(27174, 4408, 1), -- HP Increase (1x)
-(27174, 4409, 1), -- MP Increase (1x)
-(27174, 4410, 11), -- Average P. Atk.
-(27174, 4411, 11), -- Average M. Atk.
-(27174, 4412, 11), -- Average P. Def.
-(27174, 4413, 11), -- Average M. Def.
-(27174, 4414, 2), -- Standard Type
-(27174, 4415, 3), -- One-handed Sword
-(27174, 4416, 19), -- Others
+(27174, 4408, 1), -- HP Modifiers
+(27174, 4409, 1), -- MP Modifiers
+(27174, 4410, 11), -- P. Atk. Modifiers
+(27174, 4411, 11), -- M. Atk. Modifiers
+(27174, 4412, 11), -- P. Def. Modifiers
+(27174, 4413, 11), -- M. Def. Modifiers
+(27174, 4414, 2), -- Armor Type
+(27174, 4415, 3), -- Weapon Type
+(27174, 4416, 19), -- Races
 -- Box Of Athrea 3
-(27175, 4408, 1), -- HP Increase (1x)
-(27175, 4409, 1), -- MP Increase (1x)
-(27175, 4410, 11), -- Average P. Atk.
-(27175, 4411, 11), -- Average M. Atk.
-(27175, 4412, 11), -- Average P. Def.
-(27175, 4413, 11), -- Average M. Def.
-(27175, 4414, 2), -- Standard Type
-(27175, 4415, 3), -- One-handed Sword
-(27175, 4416, 19), -- Others
+(27175, 4408, 1), -- HP Modifiers
+(27175, 4409, 1), -- MP Modifiers
+(27175, 4410, 11), -- P. Atk. Modifiers
+(27175, 4411, 11), -- M. Atk. Modifiers
+(27175, 4412, 11), -- P. Def. Modifiers
+(27175, 4413, 11), -- M. Def. Modifiers
+(27175, 4414, 2), -- Armor Type
+(27175, 4415, 3), -- Weapon Type
+(27175, 4416, 19), -- Races
 -- Box Of Athrea 4
-(27176, 4408, 1), -- HP Increase (1x)
-(27176, 4409, 1), -- MP Increase (1x)
-(27176, 4410, 11), -- Average P. Atk.
-(27176, 4411, 11), -- Average M. Atk.
-(27176, 4412, 11), -- Average P. Def.
-(27176, 4413, 11), -- Average M. Def.
-(27176, 4414, 2), -- Standard Type
-(27176, 4415, 3), -- One-handed Sword
-(27176, 4416, 19), -- Others
+(27176, 4408, 1), -- HP Modifiers
+(27176, 4409, 1), -- MP Modifiers
+(27176, 4410, 11), -- P. Atk. Modifiers
+(27176, 4411, 11), -- M. Atk. Modifiers
+(27176, 4412, 11), -- P. Def. Modifiers
+(27176, 4413, 11), -- M. Def. Modifiers
+(27176, 4414, 2), -- Armor Type
+(27176, 4415, 3), -- Weapon Type
+(27176, 4416, 19), -- Races
 -- Box Of Athrea 5
-(27177, 4408, 1), -- HP Increase (1x)
-(27177, 4409, 1), -- MP Increase (1x)
-(27177, 4410, 11), -- Average P. Atk.
-(27177, 4411, 11), -- Average M. Atk.
-(27177, 4412, 11), -- Average P. Def.
-(27177, 4413, 11), -- Average M. Def.
-(27177, 4414, 2), -- Standard Type
-(27177, 4415, 3), -- One-handed Sword
-(27177, 4416, 19), -- Others
+(27177, 4408, 1), -- HP Modifiers
+(27177, 4409, 1), -- MP Modifiers
+(27177, 4410, 11), -- P. Atk. Modifiers
+(27177, 4411, 11), -- M. Atk. Modifiers
+(27177, 4412, 11), -- P. Def. Modifiers
+(27177, 4413, 11), -- M. Def. Modifiers
+(27177, 4414, 2), -- Armor Type
+(27177, 4415, 3), -- Weapon Type
+(27177, 4416, 19), -- Races
 -- Blitz Wyrm
-(27178, 4408, 1), -- HP Increase (1x)
-(27178, 4409, 1), -- MP Increase (1x)
-(27178, 4410, 11), -- Average P. Atk.
-(27178, 4411, 11), -- Average M. Atk.
-(27178, 4412, 11), -- Average P. Def.
-(27178, 4413, 11), -- Average M. Def.
-(27178, 4414, 2), -- Standard Type
-(27178, 4415, 3), -- One-handed Sword
-(27178, 4416, 10), -- Dragons
+(27178, 4408, 1), -- HP Modifiers
+(27178, 4409, 1), -- MP Modifiers
+(27178, 4410, 11), -- P. Atk. Modifiers
+(27178, 4411, 11), -- M. Atk. Modifiers
+(27178, 4412, 11), -- P. Def. Modifiers
+(27178, 4413, 11), -- M. Def. Modifiers
+(27178, 4414, 2), -- Armor Type
+(27178, 4415, 3), -- Weapon Type
+(27178, 4416, 10), -- Races
 -- Grave Keymaster
-(27179, 4273, 3), -- Resist Daggers/Rapier Weapon
-(27179, 4274, 1), -- Blunt Weapon Weak Point
-(27179, 4408, 1), -- HP Increase (1x)
-(27179, 4409, 1), -- MP Increase (1x)
-(27179, 4410, 11), -- Average P. Atk.
-(27179, 4411, 11), -- Average M. Atk.
-(27179, 4412, 11), -- Average P. Def.
-(27179, 4413, 11), -- Average M. Def.
-(27179, 4414, 2), -- Standard Type
-(27179, 4415, 3), -- One-handed Sword
-(27179, 4416, 2), -- Magic Creatures
+(27179, 4273, 3), -- Resist Dagger
+(27179, 4274, 1), -- Blunt Attack Weak Point
+(27179, 4408, 1), -- HP Modifiers
+(27179, 4409, 1), -- MP Modifiers
+(27179, 4410, 11), -- P. Atk. Modifiers
+(27179, 4411, 11), -- M. Atk. Modifiers
+(27179, 4412, 11), -- P. Def. Modifiers
+(27179, 4413, 11), -- M. Def. Modifiers
+(27179, 4414, 2), -- Armor Type
+(27179, 4415, 3), -- Weapon Type
+(27179, 4416, 2), -- Races
 (27179, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Imperial Slave
-(27180, 4408, 1), -- HP Increase (1x)
-(27180, 4409, 1), -- MP Increase (1x)
-(27180, 4410, 11), -- Average P. Atk.
-(27180, 4411, 11), -- Average M. Atk.
-(27180, 4412, 11), -- Average P. Def.
-(27180, 4413, 11), -- Average M. Def.
-(27180, 4414, 2), -- Standard Type
-(27180, 4415, 3), -- One-handed Sword
-(27180, 4416, 1), -- Undead
+(27180, 4408, 1), -- HP Modifiers
+(27180, 4409, 1), -- MP Modifiers
+(27180, 4410, 11), -- P. Atk. Modifiers
+(27180, 4411, 11), -- M. Atk. Modifiers
+(27180, 4412, 11), -- P. Def. Modifiers
+(27180, 4413, 11), -- M. Def. Modifiers
+(27180, 4414, 2), -- Armor Type
+(27180, 4415, 3), -- Weapon Type
+(27180, 4416, 1), -- Races
 -- Imperial Gravekeeper
-(27181, 4408, 1), -- HP Increase (1x)
-(27181, 4409, 1), -- MP Increase (1x)
-(27181, 4410, 11), -- Average P. Atk.
-(27181, 4411, 11), -- Average M. Atk.
-(27181, 4412, 11), -- Average P. Def.
-(27181, 4413, 11), -- Average M. Def.
-(27181, 4414, 2), -- Standard Type
-(27181, 4415, 3), -- One-handed Sword
-(27181, 4416, 1), -- Undead
+(27181, 4408, 1), -- HP Modifiers
+(27181, 4409, 1), -- MP Modifiers
+(27181, 4410, 11), -- P. Atk. Modifiers
+(27181, 4411, 11), -- M. Atk. Modifiers
+(27181, 4412, 11), -- P. Def. Modifiers
+(27181, 4413, 11), -- M. Def. Modifiers
+(27181, 4414, 2), -- Armor Type
+(27181, 4415, 3), -- Weapon Type
+(27181, 4416, 1), -- Races
 -- Ark Guardian Elberoth
-(27182, 4071, 5), -- Resist Bow/Crossbow Weapons
-(27182, 4085, 1), -- Critical Damage
+(27182, 4071, 5), -- Resist Archery
+(27182, 4085, 1), -- Critical Power
 (27182, 4086, 1), -- Critical Chance
-(27182, 4408, 1), -- HP Increase (1x)
-(27182, 4409, 1), -- MP Increase (1x)
-(27182, 4410, 11), -- Average P. Atk.
-(27182, 4411, 11), -- Average M. Atk.
-(27182, 4412, 11), -- Average P. Def.
-(27182, 4413, 11), -- Average M. Def.
-(27182, 4414, 2), -- Standard Type
-(27182, 4415, 15), -- Two-handed Blunt Weapons
-(27182, 4416, 8), -- Angels
+(27182, 4408, 1), -- HP Modifiers
+(27182, 4409, 1), -- MP Modifiers
+(27182, 4410, 11), -- P. Atk. Modifiers
+(27182, 4411, 11), -- M. Atk. Modifiers
+(27182, 4412, 11), -- P. Def. Modifiers
+(27182, 4413, 11), -- M. Def. Modifiers
+(27182, 4414, 2), -- Armor Type
+(27182, 4415, 15), -- Weapon Type
+(27182, 4416, 8), -- Races
 -- Ark Guardian Shadowfang
-(27183, 4071, 5), -- Resist Bow/Crossbow Weapons
-(27183, 4085, 1), -- Critical Damage
+(27183, 4071, 5), -- Resist Archery
+(27183, 4085, 1), -- Critical Power
 (27183, 4086, 1), -- Critical Chance
-(27183, 4408, 1), -- HP Increase (1x)
-(27183, 4409, 1), -- MP Increase (1x)
-(27183, 4410, 11), -- Average P. Atk.
-(27183, 4411, 11), -- Average M. Atk.
-(27183, 4412, 11), -- Average P. Def.
-(27183, 4413, 11), -- Average M. Def.
-(27183, 4414, 3), -- Light Armor Type
-(27183, 4415, 9), -- Bows
-(27183, 4416, 8), -- Angels
+(27183, 4408, 1), -- HP Modifiers
+(27183, 4409, 1), -- MP Modifiers
+(27183, 4410, 11), -- P. Atk. Modifiers
+(27183, 4411, 11), -- M. Atk. Modifiers
+(27183, 4412, 11), -- P. Def. Modifiers
+(27183, 4413, 11), -- M. Def. Modifiers
+(27183, 4414, 3), -- Armor Type
+(27183, 4415, 9), -- Weapon Type
+(27183, 4416, 8), -- Races
 -- Angel Killer
-(27184, 4034, 6), -- Ice Bolt
-(27184, 4071, 5), -- Resist Bow/Crossbow Weapons
-(27184, 4078, 6), -- Flame Strike
-(27184, 4085, 1); -- Critical Damage
-
-INSERT INTO `npcskills` VALUES
+(27184, 4034, 6), -- Decrease Speed
+(27184, 4071, 5), -- Resist Archery
+(27184, 4078, 6), -- NPC Flamestrike
+(27184, 4085, 1), -- Critical Power
 (27184, 4086, 1), -- Critical Chance
 (27184, 4118, 6), -- Paralysis
-(27184, 4408, 17), -- HP Increase (9x)
-(27184, 4409, 1), -- MP Increase (1x)
-(27184, 4410, 11), -- Average P. Atk.
-(27184, 4411, 11), -- Average M. Atk.
-(27184, 4412, 11), -- Average P. Def.
-(27184, 4413, 11), -- Average M. Def.
-(27184, 4414, 2), -- Standard Type
-(27184, 4415, 3), -- One-handed Sword
-(27184, 4416, 1), -- Undead
+(27184, 4408, 17), -- HP Modifiers
+(27184, 4409, 1), -- MP Modifiers
+(27184, 4410, 11), -- P. Atk. Modifiers
+(27184, 4411, 11), -- M. Atk. Modifiers
+(27184, 4412, 11), -- P. Def. Modifiers
+(27184, 4413, 11), -- M. Def. Modifiers
+(27184, 4414, 2), -- Armor Type
+(27184, 4415, 3), -- Weapon Type
+(27184, 4416, 1), -- Races
 -- Fairy Tree of Wind
-(27185, 4071, 5), -- Resist Bow/Crossbow Weapons
-(27185, 4408, 1), -- HP Increase (1x)
-(27185, 4409, 1), -- MP Increase (1x)
-(27185, 4410, 11), -- Average P. Atk.
-(27185, 4411, 11), -- Average M. Atk.
-(27185, 4412, 11), -- Average P. Def.
-(27185, 4413, 11), -- Average M. Def.
-(27185, 4414, 3), -- Light Armor Type
-(27185, 4415, 5), -- Blunt Weapons
-(27185, 4416, 5), -- Plants
+(27185, 4071, 5), -- Resist Archery
+(27185, 4408, 1), -- HP Modifiers
+(27185, 4409, 1), -- MP Modifiers
+(27185, 4410, 11), -- P. Atk. Modifiers
+(27185, 4411, 11), -- M. Atk. Modifiers
+(27185, 4412, 11), -- P. Def. Modifiers
+(27185, 4413, 11), -- M. Def. Modifiers
+(27185, 4414, 3), -- Armor Type
+(27185, 4415, 5), -- Weapon Type
+(27185, 4416, 5), -- Races
 -- Fairy Tree of Star
-(27186, 4071, 5), -- Resist Bow/Crossbow Weapons
-(27186, 4408, 1), -- HP Increase (1x)
-(27186, 4409, 1), -- MP Increase (1x)
-(27186, 4410, 11), -- Average P. Atk.
-(27186, 4411, 11), -- Average M. Atk.
-(27186, 4412, 11), -- Average P. Def.
-(27186, 4413, 11), -- Average M. Def.
-(27186, 4414, 2), -- Standard Type
-(27186, 4415, 3), -- One-handed Sword
-(27186, 4416, 5), -- Plants
+(27186, 4071, 5), -- Resist Archery
+(27186, 4408, 1), -- HP Modifiers
+(27186, 4409, 1), -- MP Modifiers
+(27186, 4410, 11), -- P. Atk. Modifiers
+(27186, 4411, 11), -- M. Atk. Modifiers
+(27186, 4412, 11), -- P. Def. Modifiers
+(27186, 4413, 11), -- M. Def. Modifiers
+(27186, 4414, 2), -- Armor Type
+(27186, 4415, 3), -- Weapon Type
+(27186, 4416, 5), -- Races
 -- Fairy Tree of Twilight
-(27187, 4071, 5), -- Resist Bow/Crossbow Weapons
-(27187, 4408, 1), -- HP Increase (1x)
-(27187, 4409, 1), -- MP Increase (1x)
-(27187, 4410, 11), -- Average P. Atk.
-(27187, 4411, 11), -- Average M. Atk.
-(27187, 4412, 11), -- Average P. Def.
-(27187, 4413, 11), -- Average M. Def.
-(27187, 4414, 2), -- Standard Type
-(27187, 4415, 3), -- One-handed Sword
-(27187, 4416, 5), -- Plants
+(27187, 4071, 5), -- Resist Archery
+(27187, 4408, 1), -- HP Modifiers
+(27187, 4409, 1), -- MP Modifiers
+(27187, 4410, 11), -- P. Atk. Modifiers
+(27187, 4411, 11), -- M. Atk. Modifiers
+(27187, 4412, 11), -- P. Def. Modifiers
+(27187, 4413, 11), -- M. Def. Modifiers
+(27187, 4414, 2), -- Armor Type
+(27187, 4415, 3), -- Weapon Type
+(27187, 4416, 5), -- Races
 -- Fairy Tree of Abyss
-(27188, 4071, 5), -- Resist Bow/Crossbow Weapons
-(27188, 4408, 1), -- HP Increase (1x)
-(27188, 4409, 1), -- MP Increase (1x)
-(27188, 4410, 11), -- Average P. Atk.
-(27188, 4411, 11), -- Average M. Atk.
-(27188, 4412, 11), -- Average P. Def.
-(27188, 4413, 11), -- Average M. Def.
-(27188, 4414, 2), -- Standard Type
-(27188, 4415, 3), -- One-handed Sword
-(27188, 4416, 5), -- Plants
+(27188, 4071, 5), -- Resist Archery
+(27188, 4408, 1), -- HP Modifiers
+(27188, 4409, 1), -- MP Modifiers
+(27188, 4410, 11), -- P. Atk. Modifiers
+(27188, 4411, 11), -- M. Atk. Modifiers
+(27188, 4412, 11), -- P. Def. Modifiers
+(27188, 4413, 11), -- M. Def. Modifiers
+(27188, 4414, 2), -- Armor Type
+(27188, 4415, 3), -- Weapon Type
+(27188, 4416, 5), -- Races
 -- Soul of Tree Guardian
-(27189, 4408, 9), -- HP Increase (1/2x)
-(27189, 4409, 1), -- MP Increase (1x)
-(27189, 4410, 11), -- Average P. Atk.
-(27189, 4411, 11), -- Average M. Atk.
-(27189, 4412, 11), -- Average P. Def.
-(27189, 4413, 11), -- Average M. Def.
-(27189, 4414, 3), -- Light Armor Type
-(27189, 4415, 3), -- One-handed Sword
-(27189, 4416, 1), -- Undead
+(27189, 4408, 9), -- HP Modifiers
+(27189, 4409, 1), -- MP Modifiers
+(27189, 4410, 11), -- P. Atk. Modifiers
+(27189, 4411, 11), -- M. Atk. Modifiers
+(27189, 4412, 11), -- P. Def. Modifiers
+(27189, 4413, 11), -- M. Def. Modifiers
+(27189, 4414, 3), -- Armor Type
+(27189, 4415, 3), -- Weapon Type
+(27189, 4416, 1), -- Races
 -- Ol Mahum Support Troop
-(27190, 4032, 2), -- Power Strike
-(27190, 4408, 1), -- HP Increase (1x)
-(27190, 4409, 1), -- MP Increase (1x)
-(27190, 4410, 11), -- Average P. Atk.
-(27190, 4411, 11), -- Average M. Atk.
-(27190, 4412, 11), -- Average P. Def.
-(27190, 4413, 11), -- Average M. Def.
-(27190, 4414, 2), -- Standard Type
-(27190, 4415, 3), -- One-handed Sword
-(27190, 4416, 6), -- Humanoids
+(27190, 4032, 2), -- NPC Strike
+(27190, 4408, 1), -- HP Modifiers
+(27190, 4409, 1), -- MP Modifiers
+(27190, 4410, 11), -- P. Atk. Modifiers
+(27190, 4411, 11), -- M. Atk. Modifiers
+(27190, 4412, 11), -- P. Def. Modifiers
+(27190, 4413, 11), -- M. Def. Modifiers
+(27190, 4414, 2), -- Armor Type
+(27190, 4415, 3), -- Weapon Type
+(27190, 4416, 6), -- Races
 -- Malcom
-(27191, 4073, 2), -- Stun
-(27191, 4408, 1), -- HP Increase (1x)
-(27191, 4409, 1), -- MP Increase (1x)
-(27191, 4410, 11), -- Average P. Atk.
-(27191, 4411, 11), -- Average M. Atk.
-(27191, 4412, 11), -- Average P. Def.
-(27191, 4413, 11), -- Average M. Def.
-(27191, 4414, 2), -- Standard Type
-(27191, 4415, 19), -- Dual-Sword Weapons
-(27191, 4416, 4), -- Animals
+(27191, 4073, 2), -- Shock
+(27191, 4408, 1), -- HP Modifiers
+(27191, 4409, 1), -- MP Modifiers
+(27191, 4410, 11), -- P. Atk. Modifiers
+(27191, 4411, 11), -- M. Atk. Modifiers
+(27191, 4412, 11), -- P. Def. Modifiers
+(27191, 4413, 11), -- M. Def. Modifiers
+(27191, 4414, 2), -- Armor Type
+(27191, 4415, 19), -- Weapon Type
+(27191, 4416, 4), -- Races
 -- Succubus Handmaiden
-(27192, 4071, 5), -- Resist Bow/Crossbow Weapons
-(27192, 4151, 1), -- Wind Strike
-(27192, 4160, 1), -- Aura Burn
-(27192, 4408, 1), -- HP Increase (1x)
-(27192, 4409, 1), -- MP Increase (1x)
-(27192, 4410, 11), -- Average P. Atk.
-(27192, 4411, 11), -- Average M. Atk.
-(27192, 4412, 11), -- Average P. Def.
-(27192, 4413, 11), -- Average M. Def.
-(27192, 4414, 2), -- Standard Type
-(27192, 4415, 3), -- One-handed Sword
-(27192, 4416, 9), -- Demons
+(27192, 4071, 5), -- Resist Archery
+(27192, 4151, 1), -- NPC Windstrike - Magic
+(27192, 4160, 1), -- NPC Aura Burn - Magic
+(27192, 4408, 1), -- HP Modifiers
+(27192, 4409, 1), -- MP Modifiers
+(27192, 4410, 11), -- P. Atk. Modifiers
+(27192, 4411, 11), -- M. Atk. Modifiers
+(27192, 4412, 11), -- P. Def. Modifiers
+(27192, 4413, 11), -- M. Def. Modifiers
+(27192, 4414, 2), -- Armor Type
+(27192, 4415, 3), -- Weapon Type
+(27192, 4416, 9), -- Races
 -- Goblin Servant
-(27193, 4408, 1), -- HP Increase (1x)
-(27193, 4409, 1), -- MP Increase (1x)
-(27193, 4410, 11), -- Average P. Atk.
-(27193, 4411, 11), -- Average M. Atk.
-(27193, 4412, 11), -- Average P. Def.
-(27193, 4413, 11), -- Average M. Def.
-(27193, 4414, 3), -- Light Armor Type
-(27193, 4415, 3), -- One-handed Sword
-(27193, 4416, 6), -- Humanoids
+(27193, 4408, 1), -- HP Modifiers
+(27193, 4409, 1), -- MP Modifiers
+(27193, 4410, 11), -- P. Atk. Modifiers
+(27193, 4411, 11), -- M. Atk. Modifiers
+(27193, 4412, 11), -- P. Def. Modifiers
+(27193, 4413, 11), -- M. Def. Modifiers
+(27193, 4414, 3), -- Armor Type
+(27193, 4415, 3), -- Weapon Type
+(27193, 4416, 6), -- Races
 -- Julie the Ripper
-(27194, 4071, 5), -- Resist Bow/Crossbow Weapons
-(27194, 4085, 1), -- Critical Damage
+(27194, 4071, 5), -- Resist Archery
+(27194, 4085, 1), -- Critical Power
 (27194, 4086, 1), -- Critical Chance
-(27194, 4408, 10), -- HP Increase (2x)
-(27194, 4409, 1), -- MP Increase (1x)
-(27194, 4410, 11), -- Average P. Atk.
-(27194, 4411, 11), -- Average M. Atk.
-(27194, 4412, 11), -- Average P. Def.
-(27194, 4413, 11), -- Average M. Def.
-(27194, 4414, 3), -- Light Armor Type
-(27194, 4415, 7), -- Daggers
-(27194, 4416, 9), -- Demons
+(27194, 4408, 10), -- HP Modifiers
+(27194, 4409, 1), -- MP Modifiers
+(27194, 4410, 11), -- P. Atk. Modifiers
+(27194, 4411, 11), -- M. Atk. Modifiers
+(27194, 4412, 11), -- P. Def. Modifiers
+(27194, 4413, 11), -- M. Def. Modifiers
+(27194, 4414, 3), -- Armor Type
+(27194, 4415, 7), -- Weapon Type
+(27194, 4416, 9), -- Races
 -- Male Ant
-(27195, 4408, 1), -- HP Increase (1x)
-(27195, 4409, 1), -- MP Increase (1x)
-(27195, 4410, 11), -- Average P. Atk.
-(27195, 4411, 11), -- Average M. Atk.
-(27195, 4412, 11), -- Average P. Def.
-(27195, 4413, 11), -- Average M. Def.
-(27195, 4414, 2), -- Standard Type
-(27195, 4415, 3), -- One-handed Sword
-(27195, 4416, 12), -- Bugs
+(27195, 4408, 1), -- HP Modifiers
+(27195, 4409, 1), -- MP Modifiers
+(27195, 4410, 11), -- P. Atk. Modifiers
+(27195, 4411, 11), -- M. Atk. Modifiers
+(27195, 4412, 11), -- P. Def. Modifiers
+(27195, 4413, 11), -- M. Def. Modifiers
+(27195, 4414, 2), -- Armor Type
+(27195, 4415, 3), -- Weapon Type
+(27195, 4416, 12), -- Races
 -- Bluebacked Alligator
-(27196, 4071, 5), -- Resist Bow/Crossbow Weapons
-(27196, 4073, 4), -- Stun
-(27196, 4408, 10), -- HP Increase (2x)
-(27196, 4409, 1), -- MP Increase (1x)
-(27196, 4410, 11), -- Average P. Atk.
-(27196, 4411, 11), -- Average M. Atk.
-(27196, 4412, 11), -- Average P. Def.
-(27196, 4413, 11), -- Average M. Def.
-(27196, 4414, 2), -- Standard Type
-(27196, 4415, 3), -- One-handed Sword
-(27196, 4416, 4), -- Animals
+(27196, 4071, 5), -- Resist Archery
+(27196, 4073, 4), -- Shock
+(27196, 4408, 10), -- HP Modifiers
+(27196, 4409, 1), -- MP Modifiers
+(27196, 4410, 11), -- P. Atk. Modifiers
+(27196, 4411, 11), -- M. Atk. Modifiers
+(27196, 4412, 11), -- P. Def. Modifiers
+(27196, 4413, 11), -- M. Def. Modifiers
+(27196, 4414, 2), -- Armor Type
+(27196, 4415, 3), -- Weapon Type
+(27196, 4416, 4), -- Races
 -- Bejeweled Alligator
-(27197, 4071, 5), -- Resist Bow/Crossbow Weapons
-(27197, 4073, 4), -- Stun
-(27197, 4408, 11), -- HP Increase (3x)
-(27197, 4409, 1), -- MP Increase (1x)
-(27197, 4410, 11), -- Average P. Atk.
-(27197, 4411, 11), -- Average M. Atk.
-(27197, 4412, 11), -- Average P. Def.
-(27197, 4413, 11), -- Average M. Def.
-(27197, 4414, 2), -- Standard Type
-(27197, 4415, 3), -- One-handed Sword
-(27197, 4416, 4), -- Animals
+(27197, 4071, 5), -- Resist Archery
+(27197, 4073, 4), -- Shock
+(27197, 4408, 11), -- HP Modifiers
+(27197, 4409, 1), -- MP Modifiers
+(27197, 4410, 11), -- P. Atk. Modifiers
+(27197, 4411, 11), -- M. Atk. Modifiers
+(27197, 4412, 11), -- P. Def. Modifiers
+(27197, 4413, 11), -- M. Def. Modifiers
+(27197, 4414, 2), -- Armor Type
+(27197, 4415, 3), -- Weapon Type
+(27197, 4416, 4), -- Races
 -- Crimson Werewolf
-(27199, 4408, 1), -- HP Increase (1x)
-(27199, 4409, 1), -- MP Increase (1x)
-(27199, 4410, 11), -- Average P. Atk.
-(27199, 4411, 11), -- Average M. Atk.
-(27199, 4412, 11), -- Average P. Def.
-(27199, 4413, 11), -- Average M. Def.
-(27199, 4414, 2), -- Standard Type
-(27199, 4415, 3), -- One-handed Sword
-(27199, 4416, 6), -- Humanoids
+(27199, 4408, 1), -- HP Modifiers
+(27199, 4409, 1), -- MP Modifiers
+(27199, 4410, 11), -- P. Atk. Modifiers
+(27199, 4411, 11), -- M. Atk. Modifiers
+(27199, 4412, 11), -- P. Def. Modifiers
+(27199, 4413, 11), -- M. Def. Modifiers
+(27199, 4414, 2), -- Armor Type
+(27199, 4415, 3), -- Weapon Type
+(27199, 4416, 6), -- Races
 -- Krudel Lizardman
-(27200, 4408, 1), -- HP Increase (1x)
-(27200, 4409, 1), -- MP Increase (1x)
-(27200, 4410, 11), -- Average P. Atk.
-(27200, 4411, 11), -- Average M. Atk.
-(27200, 4412, 11), -- Average P. Def.
-(27200, 4413, 11), -- Average M. Def.
-(27200, 4414, 2), -- Standard Type
-(27200, 4415, 11), -- Spears
-(27200, 4416, 6), -- Humanoids
+(27200, 4408, 1), -- HP Modifiers
+(27200, 4409, 1), -- MP Modifiers
+(27200, 4410, 11), -- P. Atk. Modifiers
+(27200, 4411, 11), -- M. Atk. Modifiers
+(27200, 4412, 11), -- P. Def. Modifiers
+(27200, 4413, 11), -- M. Def. Modifiers
+(27200, 4414, 2), -- Armor Type
+(27200, 4415, 11), -- Weapon Type
+(27200, 4416, 6), -- Races
 -- 
-(27201, 4408, 1), -- HP Increase (1x)
-(27201, 4409, 1), -- MP Increase (1x)
-(27201, 4410, 11), -- Average P. Atk.
-(27201, 4411, 11), -- Average M. Atk.
-(27201, 4412, 11), -- Average P. Def.
-(27201, 4413, 11), -- Average M. Def.
-(27201, 4414, 2), -- Standard Type
-(27201, 4415, 11), -- Spears
-(27201, 4416, 11), -- Giants
+(27201, 4408, 1), -- HP Modifiers
+(27201, 4409, 1), -- MP Modifiers
+(27201, 4410, 11), -- P. Atk. Modifiers
+(27201, 4411, 11), -- M. Atk. Modifiers
+(27201, 4412, 11), -- P. Def. Modifiers
+(27201, 4413, 11), -- M. Def. Modifiers
+(27201, 4414, 2), -- Armor Type
+(27201, 4415, 11), -- Weapon Type
+(27201, 4416, 11), -- Races
 -- 
-(27202, 4408, 1), -- HP Increase (1x)
-(27202, 4409, 1), -- MP Increase (1x)
-(27202, 4410, 11), -- Average P. Atk.
-(27202, 4411, 11), -- Average M. Atk.
-(27202, 4412, 11), -- Average P. Def.
-(27202, 4413, 11), -- Average M. Def.
-(27202, 4414, 2), -- Standard Type
-(27202, 4415, 11), -- Spears
-(27202, 4416, 11), -- Giants
+(27202, 4408, 1), -- HP Modifiers
+(27202, 4409, 1), -- MP Modifiers
+(27202, 4410, 11), -- P. Atk. Modifiers
+(27202, 4411, 11), -- M. Atk. Modifiers
+(27202, 4412, 11), -- P. Def. Modifiers
+(27202, 4413, 11), -- M. Def. Modifiers
+(27202, 4414, 2), -- Armor Type
+(27202, 4415, 11), -- Weapon Type
+(27202, 4416, 11), -- Races
 -- 
-(27203, 4408, 1), -- HP Increase (1x)
-(27203, 4409, 1), -- MP Increase (1x)
-(27203, 4410, 11), -- Average P. Atk.
-(27203, 4411, 11), -- Average M. Atk.
-(27203, 4412, 11), -- Average P. Def.
-(27203, 4413, 11), -- Average M. Def.
-(27203, 4414, 2), -- Standard Type
-(27203, 4415, 11), -- Spears
-(27203, 4416, 11), -- Giants
+(27203, 4408, 1), -- HP Modifiers
+(27203, 4409, 1), -- MP Modifiers
+(27203, 4410, 11), -- P. Atk. Modifiers
+(27203, 4411, 11), -- M. Atk. Modifiers
+(27203, 4412, 11), -- P. Def. Modifiers
+(27203, 4413, 11), -- M. Def. Modifiers
+(27203, 4414, 2), -- Armor Type
+(27203, 4415, 11), -- Weapon Type
+(27203, 4416, 11), -- Races
 -- 
-(27204, 4408, 1), -- HP Increase (1x)
-(27204, 4409, 1), -- MP Increase (1x)
-(27204, 4410, 11), -- Average P. Atk.
-(27204, 4411, 11), -- Average M. Atk.
-(27204, 4412, 11), -- Average P. Def.
-(27204, 4413, 11), -- Average M. Def.
-(27204, 4414, 2), -- Standard Type
-(27204, 4415, 11), -- Spears
-(27204, 4416, 11), -- Giants
+(27204, 4408, 1), -- HP Modifiers
+(27204, 4409, 1), -- MP Modifiers
+(27204, 4410, 11), -- P. Atk. Modifiers
+(27204, 4411, 11), -- M. Atk. Modifiers
+(27204, 4412, 11), -- P. Def. Modifiers
+(27204, 4413, 11), -- M. Def. Modifiers
+(27204, 4414, 2), -- Armor Type
+(27204, 4415, 11), -- Weapon Type
+(27204, 4416, 11), -- Races
 -- 
-(27205, 4408, 1), -- HP Increase (1x)
-(27205, 4409, 1), -- MP Increase (1x)
-(27205, 4410, 11), -- Average P. Atk.
-(27205, 4411, 11), -- Average M. Atk.
-(27205, 4412, 11), -- Average P. Def.
-(27205, 4413, 11), -- Average M. Def.
-(27205, 4414, 2), -- Standard Type
-(27205, 4415, 11), -- Spears
-(27205, 4416, 11), -- Giants
+(27205, 4408, 1), -- HP Modifiers
+(27205, 4409, 1), -- MP Modifiers
+(27205, 4410, 11), -- P. Atk. Modifiers
+(27205, 4411, 11), -- M. Atk. Modifiers
+(27205, 4412, 11), -- P. Def. Modifiers
+(27205, 4413, 11), -- M. Def. Modifiers
+(27205, 4414, 2), -- Armor Type
+(27205, 4415, 11), -- Weapon Type
+(27205, 4416, 11), -- Races
 -- 
-(27206, 4408, 1), -- HP Increase (1x)
-(27206, 4409, 1), -- MP Increase (1x)
-(27206, 4410, 11), -- Average P. Atk.
-(27206, 4411, 11), -- Average M. Atk.
-(27206, 4412, 11), -- Average P. Def.
-(27206, 4413, 11), -- Average M. Def.
-(27206, 4414, 2), -- Standard Type
-(27206, 4415, 11), -- Spears
-(27206, 4416, 11), -- Giants
+(27206, 4408, 1), -- HP Modifiers
+(27206, 4409, 1), -- MP Modifiers
+(27206, 4410, 11), -- P. Atk. Modifiers
+(27206, 4411, 11), -- M. Atk. Modifiers
+(27206, 4412, 11), -- P. Def. Modifiers
+(27206, 4413, 11), -- M. Def. Modifiers
+(27206, 4414, 2), -- Armor Type
+(27206, 4415, 11), -- Weapon Type
+(27206, 4416, 11), -- Races
 -- 
-(27207, 4408, 1), -- HP Increase (1x)
-(27207, 4409, 1), -- MP Increase (1x)
-(27207, 4410, 11), -- Average P. Atk.
-(27207, 4411, 11), -- Average M. Atk.
-(27207, 4412, 11), -- Average P. Def.
-(27207, 4413, 11), -- Average M. Def.
-(27207, 4414, 2), -- Standard Type
-(27207, 4415, 11), -- Spears
-(27207, 4416, 11), -- Giants
+(27207, 4408, 1), -- HP Modifiers
+(27207, 4409, 1), -- MP Modifiers
+(27207, 4410, 11), -- P. Atk. Modifiers
+(27207, 4411, 11), -- M. Atk. Modifiers
+(27207, 4412, 11), -- P. Def. Modifiers
+(27207, 4413, 11), -- M. Def. Modifiers
+(27207, 4414, 2), -- Armor Type
+(27207, 4415, 11), -- Weapon Type
+(27207, 4416, 11), -- Races
 -- 
-(27208, 4408, 1), -- HP Increase (1x)
-(27208, 4409, 1), -- MP Increase (1x)
-(27208, 4410, 11), -- Average P. Atk.
-(27208, 4411, 11), -- Average M. Atk.
-(27208, 4412, 11), -- Average P. Def.
-(27208, 4413, 11), -- Average M. Def.
-(27208, 4414, 2), -- Standard Type
-(27208, 4415, 11), -- Spears
-(27208, 4416, 11), -- Giants
+(27208, 4408, 1), -- HP Modifiers
+(27208, 4409, 1), -- MP Modifiers
+(27208, 4410, 11), -- P. Atk. Modifiers
+(27208, 4411, 11), -- M. Atk. Modifiers
+(27208, 4412, 11), -- P. Def. Modifiers
+(27208, 4413, 11), -- M. Def. Modifiers
+(27208, 4414, 2), -- Armor Type
+(27208, 4415, 11), -- Weapon Type
+(27208, 4416, 11), -- Races
 -- 
-(27209, 4408, 1), -- HP Increase (1x)
-(27209, 4409, 1), -- MP Increase (1x)
-(27209, 4410, 11), -- Average P. Atk.
-(27209, 4411, 11), -- Average M. Atk.
-(27209, 4412, 11), -- Average P. Def.
-(27209, 4413, 11), -- Average M. Def.
-(27209, 4414, 2), -- Standard Type
-(27209, 4415, 11), -- Spears
-(27209, 4416, 11), -- Giants
+(27209, 4408, 1), -- HP Modifiers
+(27209, 4409, 1), -- MP Modifiers
+(27209, 4410, 11), -- P. Atk. Modifiers
+(27209, 4411, 11), -- M. Atk. Modifiers
+(27209, 4412, 11), -- P. Def. Modifiers
+(27209, 4413, 11), -- M. Def. Modifiers
+(27209, 4414, 2), -- Armor Type
+(27209, 4415, 11), -- Weapon Type
+(27209, 4416, 11), -- Races
 -- 
-(27210, 4408, 1), -- HP Increase (1x)
-(27210, 4409, 1), -- MP Increase (1x)
-(27210, 4410, 11), -- Average P. Atk.
-(27210, 4411, 11), -- Average M. Atk.
-(27210, 4412, 11), -- Average P. Def.
-(27210, 4413, 11), -- Average M. Def.
-(27210, 4414, 2), -- Standard Type
-(27210, 4415, 11), -- Spears
-(27210, 4416, 11), -- Giants
+(27210, 4408, 1), -- HP Modifiers
+(27210, 4409, 1), -- MP Modifiers
+(27210, 4410, 11), -- P. Atk. Modifiers
+(27210, 4411, 11), -- M. Atk. Modifiers
+(27210, 4412, 11), -- P. Def. Modifiers
+(27210, 4413, 11), -- M. Def. Modifiers
+(27210, 4414, 2), -- Armor Type
+(27210, 4415, 11), -- Weapon Type
+(27210, 4416, 11), -- Races
 -- 
-(27211, 4408, 1), -- HP Increase (1x)
-(27211, 4409, 1), -- MP Increase (1x)
-(27211, 4410, 11), -- Average P. Atk.
-(27211, 4411, 11), -- Average M. Atk.
-(27211, 4412, 11), -- Average P. Def.
-(27211, 4413, 11), -- Average M. Def.
-(27211, 4414, 2), -- Standard Type
-(27211, 4415, 11), -- Spears
-(27211, 4416, 11), -- Giants
+(27211, 4408, 1), -- HP Modifiers
+(27211, 4409, 1), -- MP Modifiers
+(27211, 4410, 11), -- P. Atk. Modifiers
+(27211, 4411, 11), -- M. Atk. Modifiers
+(27211, 4412, 11), -- P. Def. Modifiers
+(27211, 4413, 11), -- M. Def. Modifiers
+(27211, 4414, 2), -- Armor Type
+(27211, 4415, 11), -- Weapon Type
+(27211, 4416, 11), -- Races
 -- 
-(27212, 4408, 1), -- HP Increase (1x)
-(27212, 4409, 1), -- MP Increase (1x)
-(27212, 4410, 11), -- Average P. Atk.
-(27212, 4411, 11), -- Average M. Atk.
-(27212, 4412, 11), -- Average P. Def.
-(27212, 4413, 11), -- Average M. Def.
-(27212, 4414, 2), -- Standard Type
-(27212, 4415, 11), -- Spears
-(27212, 4416, 11), -- Giants
+(27212, 4408, 1), -- HP Modifiers
+(27212, 4409, 1), -- MP Modifiers
+(27212, 4410, 11), -- P. Atk. Modifiers
+(27212, 4411, 11), -- M. Atk. Modifiers
+(27212, 4412, 11), -- P. Def. Modifiers
+(27212, 4413, 11), -- M. Def. Modifiers
+(27212, 4414, 2), -- Armor Type
+(27212, 4415, 11), -- Weapon Type
+(27212, 4416, 11), -- Races
 -- 
-(27213, 4408, 1), -- HP Increase (1x)
-(27213, 4409, 1), -- MP Increase (1x)
-(27213, 4410, 11), -- Average P. Atk.
-(27213, 4411, 11), -- Average M. Atk.
-(27213, 4412, 11), -- Average P. Def.
-(27213, 4413, 11), -- Average M. Def.
-(27213, 4414, 2), -- Standard Type
-(27213, 4415, 11), -- Spears
-(27213, 4416, 11), -- Giants
+(27213, 4408, 1), -- HP Modifiers
+(27213, 4409, 1), -- MP Modifiers
+(27213, 4410, 11), -- P. Atk. Modifiers
+(27213, 4411, 11), -- M. Atk. Modifiers
+(27213, 4412, 11), -- P. Def. Modifiers
+(27213, 4413, 11), -- M. Def. Modifiers
+(27213, 4414, 2), -- Armor Type
+(27213, 4415, 11), -- Weapon Type
+(27213, 4416, 11), -- Races
 -- Guardian of Forbidden Knowledge
-(27214, 4408, 1), -- HP Increase (1x)
-(27214, 4409, 1), -- MP Increase (1x)
-(27214, 4410, 11), -- Average P. Atk.
-(27214, 4411, 11), -- Average M. Atk.
-(27214, 4412, 11), -- Average P. Def.
-(27214, 4413, 11), -- Average M. Def.
-(27214, 4414, 1), -- Heavy Armor Type
-(27214, 4415, 4), -- One-handed Sword
-(27214, 4416, 8), -- Angels
+(27214, 4408, 1), -- HP Modifiers
+(27214, 4409, 1), -- MP Modifiers
+(27214, 4410, 11), -- P. Atk. Modifiers
+(27214, 4411, 11), -- M. Atk. Modifiers
+(27214, 4412, 11), -- P. Def. Modifiers
+(27214, 4413, 11), -- M. Def. Modifiers
+(27214, 4414, 1), -- Armor Type
+(27214, 4415, 4), -- Weapon Type
+(27214, 4416, 8), -- Races
 -- Guardian of Forbidden Knowledge
-(27215, 4408, 1), -- HP Increase (1x)
-(27215, 4409, 1), -- MP Increase (1x)
-(27215, 4410, 11), -- Average P. Atk.
-(27215, 4411, 11), -- Average M. Atk.
-(27215, 4412, 11), -- Average P. Def.
-(27215, 4413, 11), -- Average M. Def.
-(27215, 4414, 1), -- Heavy Armor Type
-(27215, 4415, 4), -- One-handed Sword
-(27215, 4416, 8), -- Angels
+(27215, 4408, 1), -- HP Modifiers
+(27215, 4409, 1), -- MP Modifiers
+(27215, 4410, 11), -- P. Atk. Modifiers
+(27215, 4411, 11), -- M. Atk. Modifiers
+(27215, 4412, 11), -- P. Def. Modifiers
+(27215, 4413, 11), -- M. Def. Modifiers
+(27215, 4414, 1), -- Armor Type
+(27215, 4415, 4), -- Weapon Type
+(27215, 4416, 8), -- Races
 -- Guardian of Forbidden Knowledge
-(27216, 4408, 1), -- HP Increase (1x)
-(27216, 4409, 1), -- MP Increase (1x)
-(27216, 4410, 11), -- Average P. Atk.
-(27216, 4411, 11), -- Average M. Atk.
-(27216, 4412, 11), -- Average P. Def.
-(27216, 4413, 11), -- Average M. Def.
-(27216, 4414, 1), -- Heavy Armor Type
-(27216, 4415, 4), -- One-handed Sword
-(27216, 4416, 8), -- Angels
+(27216, 4408, 1), -- HP Modifiers
+(27216, 4409, 1), -- MP Modifiers
+(27216, 4410, 11), -- P. Atk. Modifiers
+(27216, 4411, 11), -- M. Atk. Modifiers
+(27216, 4412, 11), -- P. Def. Modifiers
+(27216, 4413, 11), -- M. Def. Modifiers
+(27216, 4414, 1), -- Armor Type
+(27216, 4415, 4), -- Weapon Type
+(27216, 4416, 8), -- Races
 -- Soul of the Well
-(27217, 4073, 6), -- Stun
-(27217, 4408, 1), -- HP Increase (1x)
-(27217, 4409, 1), -- MP Increase (1x)
-(27217, 4410, 11), -- Average P. Atk.
-(27217, 4411, 11), -- Average M. Atk.
-(27217, 4412, 11), -- Average P. Def.
-(27217, 4413, 11), -- Average M. Def.
-(27217, 4414, 3), -- Light Armor Type
-(27217, 4415, 3), -- One-handed Sword
-(27217, 4416, 1), -- Undead
+(27217, 4073, 6), -- Shock
+(27217, 4408, 1), -- HP Modifiers
+(27217, 4409, 1), -- MP Modifiers
+(27217, 4410, 11), -- P. Atk. Modifiers
+(27217, 4411, 11), -- M. Atk. Modifiers
+(27217, 4412, 11), -- P. Def. Modifiers
+(27217, 4413, 11), -- M. Def. Modifiers
+(27217, 4414, 3), -- Armor Type
+(27217, 4415, 3), -- Weapon Type
+(27217, 4416, 1), -- Races
 -- Triol's Pawn
-(27218, 4073, 6), -- Stun
-(27218, 4408, 1), -- HP Increase (1x)
-(27218, 4409, 1), -- MP Increase (1x)
-(27218, 4410, 11), -- Average P. Atk.
-(27218, 4411, 11), -- Average M. Atk.
-(27218, 4412, 11), -- Average P. Def.
-(27218, 4413, 11), -- Average M. Def.
-(27218, 4414, 1), -- Heavy Armor Type
-(27218, 4415, 3), -- One-handed Sword
-(27218, 4416, 9), -- Demons
+(27218, 4073, 6), -- Shock
+(27218, 4408, 1), -- HP Modifiers
+(27218, 4409, 1), -- MP Modifiers
+(27218, 4410, 11), -- P. Atk. Modifiers
+(27218, 4411, 11), -- M. Atk. Modifiers
+(27218, 4412, 11), -- P. Def. Modifiers
+(27218, 4413, 11), -- M. Def. Modifiers
+(27218, 4414, 1), -- Armor Type
+(27218, 4415, 3), -- Weapon Type
+(27218, 4416, 9), -- Races
 -- Archon of Halisha
-(27219, 4408, 1), -- HP Increase (1x)
-(27219, 4409, 1), -- MP Increase (1x)
-(27219, 4410, 11), -- Average P. Atk.
-(27219, 4411, 11), -- Average M. Atk.
-(27219, 4412, 11), -- Average P. Def.
-(27219, 4413, 11), -- Average M. Def.
-(27219, 4414, 1), -- Heavy Armor Type
-(27219, 4415, 4), -- One-handed Sword
-(27219, 4416, 9), -- Demons
+(27219, 4408, 1), -- HP Modifiers
+(27219, 4409, 1), -- MP Modifiers
+(27219, 4410, 11), -- P. Atk. Modifiers
+(27219, 4411, 11), -- M. Atk. Modifiers
+(27219, 4412, 11), -- P. Def. Modifiers
+(27219, 4413, 11), -- M. Def. Modifiers
+(27219, 4414, 1), -- Armor Type
+(27219, 4415, 4), -- Weapon Type
+(27219, 4416, 9), -- Races
 -- Archon of Halisha
-(27220, 4408, 1), -- HP Increase (1x)
-(27220, 4409, 1), -- MP Increase (1x)
-(27220, 4410, 11), -- Average P. Atk.
-(27220, 4411, 11), -- Average M. Atk.
-(27220, 4412, 11), -- Average P. Def.
-(27220, 4413, 11), -- Average M. Def.
-(27220, 4414, 1), -- Heavy Armor Type
-(27220, 4415, 4), -- One-handed Sword
-(27220, 4416, 9), -- Demons
+(27220, 4408, 1), -- HP Modifiers
+(27220, 4409, 1), -- MP Modifiers
+(27220, 4410, 11), -- P. Atk. Modifiers
+(27220, 4411, 11), -- M. Atk. Modifiers
+(27220, 4412, 11), -- P. Def. Modifiers
+(27220, 4413, 11), -- M. Def. Modifiers
+(27220, 4414, 1), -- Armor Type
+(27220, 4415, 4), -- Weapon Type
+(27220, 4416, 9), -- Races
 -- Archon of Halisha
-(27221, 4408, 1), -- HP Increase (1x)
-(27221, 4409, 1), -- MP Increase (1x)
-(27221, 4410, 11), -- Average P. Atk.
-(27221, 4411, 11), -- Average M. Atk.
-(27221, 4412, 11), -- Average P. Def.
-(27221, 4413, 11), -- Average M. Def.
-(27221, 4414, 1), -- Heavy Armor Type
-(27221, 4415, 4), -- One-handed Sword
-(27221, 4416, 9), -- Demons
+(27221, 4408, 1), -- HP Modifiers
+(27221, 4409, 1), -- MP Modifiers
+(27221, 4410, 11), -- P. Atk. Modifiers
+(27221, 4411, 11), -- M. Atk. Modifiers
+(27221, 4412, 11), -- P. Def. Modifiers
+(27221, 4413, 11), -- M. Def. Modifiers
+(27221, 4414, 1), -- Armor Type
+(27221, 4415, 4), -- Weapon Type
+(27221, 4416, 9), -- Races
 -- Archon of Halisha
-(27222, 4408, 1), -- HP Increase (1x)
-(27222, 4409, 1), -- MP Increase (1x)
-(27222, 4410, 11), -- Average P. Atk.
-(27222, 4411, 11), -- Average M. Atk.
-(27222, 4412, 11), -- Average P. Def.
-(27222, 4413, 11), -- Average M. Def.
-(27222, 4414, 1), -- Heavy Armor Type
-(27222, 4415, 4), -- One-handed Sword
-(27222, 4416, 9), -- Demons
+(27222, 4408, 1), -- HP Modifiers
+(27222, 4409, 1), -- MP Modifiers
+(27222, 4410, 11), -- P. Atk. Modifiers
+(27222, 4411, 11), -- M. Atk. Modifiers
+(27222, 4412, 11), -- P. Def. Modifiers
+(27222, 4413, 11), -- M. Def. Modifiers
+(27222, 4414, 1), -- Armor Type
+(27222, 4415, 4), -- Weapon Type
+(27222, 4416, 9), -- Races
 -- Archon of Halisha
-(27223, 4408, 1), -- HP Increase (1x)
-(27223, 4409, 1), -- MP Increase (1x)
-(27223, 4410, 11), -- Average P. Atk.
-(27223, 4411, 11), -- Average M. Atk.
-(27223, 4412, 11), -- Average P. Def.
-(27223, 4413, 11), -- Average M. Def.
-(27223, 4414, 1), -- Heavy Armor Type
-(27223, 4415, 4), -- One-handed Sword
-(27223, 4416, 9), -- Demons
+(27223, 4408, 1), -- HP Modifiers
+(27223, 4409, 1), -- MP Modifiers
+(27223, 4410, 11), -- P. Atk. Modifiers
+(27223, 4411, 11), -- M. Atk. Modifiers
+(27223, 4412, 11), -- P. Def. Modifiers
+(27223, 4413, 11), -- M. Def. Modifiers
+(27223, 4414, 1), -- Armor Type
+(27223, 4415, 4), -- Weapon Type
+(27223, 4416, 9), -- Races
 -- Archon of Halisha
-(27224, 4408, 1), -- HP Increase (1x)
-(27224, 4409, 1), -- MP Increase (1x)
-(27224, 4410, 11), -- Average P. Atk.
-(27224, 4411, 11), -- Average M. Atk.
-(27224, 4412, 11), -- Average P. Def.
-(27224, 4413, 11), -- Average M. Def.
-(27224, 4414, 1), -- Heavy Armor Type
-(27224, 4415, 4), -- One-handed Sword
-(27224, 4416, 9), -- Demons
+(27224, 4408, 1), -- HP Modifiers
+(27224, 4409, 1), -- MP Modifiers
+(27224, 4410, 11), -- P. Atk. Modifiers
+(27224, 4411, 11), -- M. Atk. Modifiers
+(27224, 4412, 11), -- P. Def. Modifiers
+(27224, 4413, 11), -- M. Def. Modifiers
+(27224, 4414, 1), -- Armor Type
+(27224, 4415, 4), -- Weapon Type
+(27224, 4416, 9), -- Races
 -- Archon of Halisha
-(27225, 4408, 1), -- HP Increase (1x)
-(27225, 4409, 1), -- MP Increase (1x)
-(27225, 4410, 11), -- Average P. Atk.
-(27225, 4411, 11), -- Average M. Atk.
-(27225, 4412, 11), -- Average P. Def.
-(27225, 4413, 11), -- Average M. Def.
-(27225, 4414, 1), -- Heavy Armor Type
-(27225, 4415, 4), -- One-handed Sword
-(27225, 4416, 9), -- Demons
+(27225, 4408, 1), -- HP Modifiers
+(27225, 4409, 1), -- MP Modifiers
+(27225, 4410, 11), -- P. Atk. Modifiers
+(27225, 4411, 11), -- M. Atk. Modifiers
+(27225, 4412, 11), -- P. Def. Modifiers
+(27225, 4413, 11), -- M. Def. Modifiers
+(27225, 4414, 1), -- Armor Type
+(27225, 4415, 4), -- Weapon Type
+(27225, 4416, 9), -- Races
 -- Archon of Halisha
-(27226, 4408, 1), -- HP Increase (1x)
-(27226, 4409, 1), -- MP Increase (1x)
-(27226, 4410, 11), -- Average P. Atk.
-(27226, 4411, 11), -- Average M. Atk.
-(27226, 4412, 11), -- Average P. Def.
-(27226, 4413, 11), -- Average M. Def.
-(27226, 4414, 1), -- Heavy Armor Type
-(27226, 4415, 4), -- One-handed Sword
-(27226, 4416, 9), -- Demons
+(27226, 4408, 1), -- HP Modifiers
+(27226, 4409, 1), -- MP Modifiers
+(27226, 4410, 11), -- P. Atk. Modifiers
+(27226, 4411, 11), -- M. Atk. Modifiers
+(27226, 4412, 11), -- P. Def. Modifiers
+(27226, 4413, 11), -- M. Def. Modifiers
+(27226, 4414, 1), -- Armor Type
+(27226, 4415, 4), -- Weapon Type
+(27226, 4416, 9), -- Races
 -- Archon of Halisha
-(27227, 4408, 1), -- HP Increase (1x)
-(27227, 4409, 1), -- MP Increase (1x)
-(27227, 4410, 11), -- Average P. Atk.
-(27227, 4411, 11), -- Average M. Atk.
-(27227, 4412, 11), -- Average P. Def.
-(27227, 4413, 11), -- Average M. Def.
-(27227, 4414, 1), -- Heavy Armor Type
-(27227, 4415, 4), -- One-handed Sword
-(27227, 4416, 9), -- Demons
+(27227, 4408, 1), -- HP Modifiers
+(27227, 4409, 1), -- MP Modifiers
+(27227, 4410, 11), -- P. Atk. Modifiers
+(27227, 4411, 11), -- M. Atk. Modifiers
+(27227, 4412, 11), -- P. Def. Modifiers
+(27227, 4413, 11), -- M. Def. Modifiers
+(27227, 4414, 1), -- Armor Type
+(27227, 4415, 4), -- Weapon Type
+(27227, 4416, 9), -- Races
 -- Archon of Halisha
-(27228, 4408, 1), -- HP Increase (1x)
-(27228, 4409, 1), -- MP Increase (1x)
-(27228, 4410, 11), -- Average P. Atk.
-(27228, 4411, 11), -- Average M. Atk.
-(27228, 4412, 11), -- Average P. Def.
-(27228, 4413, 11), -- Average M. Def.
-(27228, 4414, 1), -- Heavy Armor Type
-(27228, 4415, 4), -- One-handed Sword
-(27228, 4416, 9), -- Demons
+(27228, 4408, 1), -- HP Modifiers
+(27228, 4409, 1), -- MP Modifiers
+(27228, 4410, 11), -- P. Atk. Modifiers
+(27228, 4411, 11), -- M. Atk. Modifiers
+(27228, 4412, 11), -- P. Def. Modifiers
+(27228, 4413, 11), -- M. Def. Modifiers
+(27228, 4414, 1), -- Armor Type
+(27228, 4415, 4), -- Weapon Type
+(27228, 4416, 9), -- Races
 -- Archon of Halisha
-(27229, 4408, 1), -- HP Increase (1x)
-(27229, 4409, 1), -- MP Increase (1x)
-(27229, 4410, 11), -- Average P. Atk.
-(27229, 4411, 11), -- Average M. Atk.
-(27229, 4412, 11), -- Average P. Def.
-(27229, 4413, 11), -- Average M. Def.
-(27229, 4414, 1), -- Heavy Armor Type
-(27229, 4415, 4), -- One-handed Sword
-(27229, 4416, 9), -- Demons
+(27229, 4408, 1), -- HP Modifiers
+(27229, 4409, 1), -- MP Modifiers
+(27229, 4410, 11), -- P. Atk. Modifiers
+(27229, 4411, 11), -- M. Atk. Modifiers
+(27229, 4412, 11), -- P. Def. Modifiers
+(27229, 4413, 11), -- M. Def. Modifiers
+(27229, 4414, 1), -- Armor Type
+(27229, 4415, 4), -- Weapon Type
+(27229, 4416, 9), -- Races
 -- Archon of Halisha
-(27230, 4408, 1), -- HP Increase (1x)
-(27230, 4409, 1), -- MP Increase (1x)
-(27230, 4410, 11), -- Average P. Atk.
-(27230, 4411, 11), -- Average M. Atk.
-(27230, 4412, 11), -- Average P. Def.
-(27230, 4413, 11), -- Average M. Def.
-(27230, 4414, 1), -- Heavy Armor Type
-(27230, 4415, 4), -- One-handed Sword
-(27230, 4416, 9), -- Demons
+(27230, 4408, 1), -- HP Modifiers
+(27230, 4409, 1), -- MP Modifiers
+(27230, 4410, 11), -- P. Atk. Modifiers
+(27230, 4411, 11), -- M. Atk. Modifiers
+(27230, 4412, 11), -- P. Def. Modifiers
+(27230, 4413, 11), -- M. Def. Modifiers
+(27230, 4414, 1), -- Armor Type
+(27230, 4415, 4), -- Weapon Type
+(27230, 4416, 9), -- Races
 -- Archon of Halisha
-(27231, 4408, 1), -- HP Increase (1x)
-(27231, 4409, 1), -- MP Increase (1x)
-(27231, 4410, 11), -- Average P. Atk.
-(27231, 4411, 11), -- Average M. Atk.
-(27231, 4412, 11), -- Average P. Def.
-(27231, 4413, 11), -- Average M. Def.
-(27231, 4414, 1), -- Heavy Armor Type
-(27231, 4415, 4), -- One-handed Sword
-(27231, 4416, 9), -- Demons
+(27231, 4408, 1), -- HP Modifiers
+(27231, 4409, 1), -- MP Modifiers
+(27231, 4410, 11), -- P. Atk. Modifiers
+(27231, 4411, 11), -- M. Atk. Modifiers
+(27231, 4412, 11), -- P. Def. Modifiers
+(27231, 4413, 11), -- M. Def. Modifiers
+(27231, 4414, 1), -- Armor Type
+(27231, 4415, 4), -- Weapon Type
+(27231, 4416, 9), -- Races
 -- Archon of Halisha
-(27232, 4408, 1), -- HP Increase (1x)
-(27232, 4409, 1), -- MP Increase (1x)
-(27232, 4410, 11), -- Average P. Atk.
-(27232, 4411, 11), -- Average M. Atk.
-(27232, 4412, 11), -- Average P. Def.
-(27232, 4413, 11), -- Average M. Def.
-(27232, 4414, 1), -- Heavy Armor Type
-(27232, 4415, 4), -- One-handed Sword
-(27232, 4416, 9), -- Demons
+(27232, 4408, 1), -- HP Modifiers
+(27232, 4409, 1), -- MP Modifiers
+(27232, 4410, 11), -- P. Atk. Modifiers
+(27232, 4411, 11), -- M. Atk. Modifiers
+(27232, 4412, 11), -- P. Def. Modifiers
+(27232, 4413, 11), -- M. Def. Modifiers
+(27232, 4414, 1), -- Armor Type
+(27232, 4415, 4), -- Weapon Type
+(27232, 4416, 9), -- Races
 -- Archon of Halisha
-(27233, 4408, 1), -- HP Increase (1x)
-(27233, 4409, 1), -- MP Increase (1x)
-(27233, 4410, 11), -- Average P. Atk.
-(27233, 4411, 11), -- Average M. Atk.
-(27233, 4412, 11), -- Average P. Def.
-(27233, 4413, 11), -- Average M. Def.
-(27233, 4414, 1), -- Heavy Armor Type
-(27233, 4415, 4), -- One-handed Sword
-(27233, 4416, 9), -- Demons
+(27233, 4408, 1), -- HP Modifiers
+(27233, 4409, 1), -- MP Modifiers
+(27233, 4410, 11), -- P. Atk. Modifiers
+(27233, 4411, 11), -- M. Atk. Modifiers
+(27233, 4412, 11), -- P. Def. Modifiers
+(27233, 4413, 11), -- M. Def. Modifiers
+(27233, 4414, 1), -- Armor Type
+(27233, 4415, 4), -- Weapon Type
+(27233, 4416, 9), -- Races
 -- Archon of Halisha
-(27234, 4408, 1), -- HP Increase (1x)
-(27234, 4409, 1), -- MP Increase (1x)
-(27234, 4410, 11), -- Average P. Atk.
-(27234, 4411, 11), -- Average M. Atk.
-(27234, 4412, 11), -- Average P. Def.
-(27234, 4413, 11), -- Average M. Def.
-(27234, 4414, 1), -- Heavy Armor Type
-(27234, 4415, 4), -- One-handed Sword
-(27234, 4416, 9), -- Demons
+(27234, 4408, 1), -- HP Modifiers
+(27234, 4409, 1), -- MP Modifiers
+(27234, 4410, 11), -- P. Atk. Modifiers
+(27234, 4411, 11), -- M. Atk. Modifiers
+(27234, 4412, 11), -- P. Def. Modifiers
+(27234, 4413, 11), -- M. Def. Modifiers
+(27234, 4414, 1), -- Armor Type
+(27234, 4415, 4), -- Weapon Type
+(27234, 4416, 9), -- Races
 -- Archon of Halisha
-(27235, 4408, 1), -- HP Increase (1x)
-(27235, 4409, 1), -- MP Increase (1x)
-(27235, 4410, 11), -- Average P. Atk.
-(27235, 4411, 11), -- Average M. Atk.
-(27235, 4412, 11), -- Average P. Def.
-(27235, 4413, 11), -- Average M. Def.
-(27235, 4414, 1), -- Heavy Armor Type
-(27235, 4415, 4), -- One-handed Sword
-(27235, 4416, 9), -- Demons
+(27235, 4408, 1), -- HP Modifiers
+(27235, 4409, 1), -- MP Modifiers
+(27235, 4410, 11), -- P. Atk. Modifiers
+(27235, 4411, 11), -- M. Atk. Modifiers
+(27235, 4412, 11), -- P. Def. Modifiers
+(27235, 4413, 11), -- M. Def. Modifiers
+(27235, 4414, 1), -- Armor Type
+(27235, 4415, 4), -- Weapon Type
+(27235, 4416, 9), -- Races
 -- Archon of Halisha
-(27236, 4408, 1), -- HP Increase (1x)
-(27236, 4409, 1), -- MP Increase (1x)
-(27236, 4410, 11), -- Average P. Atk.
-(27236, 4411, 11), -- Average M. Atk.
-(27236, 4412, 11), -- Average P. Def.
-(27236, 4413, 11), -- Average M. Def.
-(27236, 4414, 1), -- Heavy Armor Type
-(27236, 4415, 4), -- One-handed Sword
-(27236, 4416, 9), -- Demons
+(27236, 4408, 1), -- HP Modifiers
+(27236, 4409, 1), -- MP Modifiers
+(27236, 4410, 11), -- P. Atk. Modifiers
+(27236, 4411, 11), -- M. Atk. Modifiers
+(27236, 4412, 11), -- P. Def. Modifiers
+(27236, 4413, 11), -- M. Def. Modifiers
+(27236, 4414, 1), -- Armor Type
+(27236, 4415, 4), -- Weapon Type
+(27236, 4416, 9), -- Races
 -- Archon of Halisha
-(27237, 4408, 1), -- HP Increase (1x)
-(27237, 4409, 1), -- MP Increase (1x)
-(27237, 4410, 11), -- Average P. Atk.
-(27237, 4411, 11), -- Average M. Atk.
-(27237, 4412, 11), -- Average P. Def.
-(27237, 4413, 11), -- Average M. Def.
-(27237, 4414, 1), -- Heavy Armor Type
-(27237, 4415, 4), -- One-handed Sword
-(27237, 4416, 9), -- Demons
+(27237, 4408, 1), -- HP Modifiers
+(27237, 4409, 1), -- MP Modifiers
+(27237, 4410, 11), -- P. Atk. Modifiers
+(27237, 4411, 11), -- M. Atk. Modifiers
+(27237, 4412, 11), -- P. Def. Modifiers
+(27237, 4413, 11), -- M. Def. Modifiers
+(27237, 4414, 1), -- Armor Type
+(27237, 4415, 4), -- Weapon Type
+(27237, 4416, 9), -- Races
 -- Archon of Halisha
-(27238, 4408, 1), -- HP Increase (1x)
-(27238, 4409, 1), -- MP Increase (1x)
-(27238, 4410, 11), -- Average P. Atk.
-(27238, 4411, 11), -- Average M. Atk.
-(27238, 4412, 11), -- Average P. Def.
-(27238, 4413, 11), -- Average M. Def.
-(27238, 4414, 1), -- Heavy Armor Type
-(27238, 4415, 4), -- One-handed Sword
-(27238, 4416, 9), -- Demons
+(27238, 4408, 1), -- HP Modifiers
+(27238, 4409, 1), -- MP Modifiers
+(27238, 4410, 11), -- P. Atk. Modifiers
+(27238, 4411, 11), -- M. Atk. Modifiers
+(27238, 4412, 11), -- P. Def. Modifiers
+(27238, 4413, 11), -- M. Def. Modifiers
+(27238, 4414, 1), -- Armor Type
+(27238, 4415, 4), -- Weapon Type
+(27238, 4416, 9), -- Races
 -- Archon of Halisha
-(27239, 4408, 1), -- HP Increase (1x)
-(27239, 4409, 1), -- MP Increase (1x)
-(27239, 4410, 11), -- Average P. Atk.
-(27239, 4411, 11), -- Average M. Atk.
-(27239, 4412, 11), -- Average P. Def.
-(27239, 4413, 11), -- Average M. Def.
-(27239, 4414, 1), -- Heavy Armor Type
-(27239, 4415, 4), -- One-handed Sword
-(27239, 4416, 9), -- Demons
+(27239, 4408, 1), -- HP Modifiers
+(27239, 4409, 1), -- MP Modifiers
+(27239, 4410, 11), -- P. Atk. Modifiers
+(27239, 4411, 11), -- M. Atk. Modifiers
+(27239, 4412, 11), -- P. Def. Modifiers
+(27239, 4413, 11), -- M. Def. Modifiers
+(27239, 4414, 1), -- Armor Type
+(27239, 4415, 4), -- Weapon Type
+(27239, 4416, 9), -- Races
 -- Archon of Halisha
-(27240, 4408, 1), -- HP Increase (1x)
-(27240, 4409, 1), -- MP Increase (1x)
-(27240, 4410, 11), -- Average P. Atk.
-(27240, 4411, 11), -- Average M. Atk.
-(27240, 4412, 11), -- Average P. Def.
-(27240, 4413, 11), -- Average M. Def.
-(27240, 4414, 1), -- Heavy Armor Type
-(27240, 4415, 4), -- One-handed Sword
-(27240, 4416, 9), -- Demons
+(27240, 4408, 1), -- HP Modifiers
+(27240, 4409, 1), -- MP Modifiers
+(27240, 4410, 11), -- P. Atk. Modifiers
+(27240, 4411, 11), -- M. Atk. Modifiers
+(27240, 4412, 11), -- P. Def. Modifiers
+(27240, 4413, 11), -- M. Def. Modifiers
+(27240, 4414, 1), -- Armor Type
+(27240, 4415, 4), -- Weapon Type
+(27240, 4416, 9), -- Races
 -- Archon of Halisha
-(27241, 4408, 1), -- HP Increase (1x)
-(27241, 4409, 1), -- MP Increase (1x)
-(27241, 4410, 11), -- Average P. Atk.
-(27241, 4411, 11), -- Average M. Atk.
-(27241, 4412, 11), -- Average P. Def.
-(27241, 4413, 11), -- Average M. Def.
-(27241, 4414, 1), -- Heavy Armor Type
-(27241, 4415, 4), -- One-handed Sword
-(27241, 4416, 9), -- Demons
+(27241, 4408, 1), -- HP Modifiers
+(27241, 4409, 1), -- MP Modifiers
+(27241, 4410, 11), -- P. Atk. Modifiers
+(27241, 4411, 11), -- M. Atk. Modifiers
+(27241, 4412, 11), -- P. Def. Modifiers
+(27241, 4413, 11), -- M. Def. Modifiers
+(27241, 4414, 1), -- Armor Type
+(27241, 4415, 4), -- Weapon Type
+(27241, 4416, 9), -- Races
 -- Archon of Halisha
-(27242, 4408, 1), -- HP Increase (1x)
-(27242, 4409, 1), -- MP Increase (1x)
-(27242, 4410, 11), -- Average P. Atk.
-(27242, 4411, 11), -- Average M. Atk.
-(27242, 4412, 11), -- Average P. Def.
-(27242, 4413, 11), -- Average M. Def.
-(27242, 4414, 1), -- Heavy Armor Type
-(27242, 4415, 4), -- One-handed Sword
-(27242, 4416, 9), -- Demons
+(27242, 4408, 1), -- HP Modifiers
+(27242, 4409, 1), -- MP Modifiers
+(27242, 4410, 11), -- P. Atk. Modifiers
+(27242, 4411, 11), -- M. Atk. Modifiers
+(27242, 4412, 11), -- P. Def. Modifiers
+(27242, 4413, 11), -- M. Def. Modifiers
+(27242, 4414, 1), -- Armor Type
+(27242, 4415, 4), -- Weapon Type
+(27242, 4416, 9), -- Races
 -- Archon of Halisha
-(27243, 4408, 1), -- HP Increase (1x)
-(27243, 4409, 1), -- MP Increase (1x)
-(27243, 4410, 11), -- Average P. Atk.
-(27243, 4411, 11), -- Average M. Atk.
-(27243, 4412, 11), -- Average P. Def.
-(27243, 4413, 11), -- Average M. Def.
-(27243, 4414, 1), -- Heavy Armor Type
-(27243, 4415, 4), -- One-handed Sword
-(27243, 4416, 9), -- Demons
+(27243, 4408, 1), -- HP Modifiers
+(27243, 4409, 1), -- MP Modifiers
+(27243, 4410, 11), -- P. Atk. Modifiers
+(27243, 4411, 11), -- M. Atk. Modifiers
+(27243, 4412, 11), -- P. Def. Modifiers
+(27243, 4413, 11), -- M. Def. Modifiers
+(27243, 4414, 1), -- Armor Type
+(27243, 4415, 4), -- Weapon Type
+(27243, 4416, 9), -- Races
 -- Archon of Halisha
-(27244, 4408, 1), -- HP Increase (1x)
-(27244, 4409, 1), -- MP Increase (1x)
-(27244, 4410, 11), -- Average P. Atk.
-(27244, 4411, 11), -- Average M. Atk.
-(27244, 4412, 11), -- Average P. Def.
-(27244, 4413, 11), -- Average M. Def.
-(27244, 4414, 1), -- Heavy Armor Type
-(27244, 4415, 4), -- One-handed Sword
-(27244, 4416, 9), -- Demons
+(27244, 4408, 1), -- HP Modifiers
+(27244, 4409, 1), -- MP Modifiers
+(27244, 4410, 11), -- P. Atk. Modifiers
+(27244, 4411, 11), -- M. Atk. Modifiers
+(27244, 4412, 11), -- P. Def. Modifiers
+(27244, 4413, 11), -- M. Def. Modifiers
+(27244, 4414, 1), -- Armor Type
+(27244, 4415, 4), -- Weapon Type
+(27244, 4416, 9), -- Races
 -- Archon of Halisha
-(27245, 4408, 1), -- HP Increase (1x)
-(27245, 4409, 1), -- MP Increase (1x)
-(27245, 4410, 11), -- Average P. Atk.
-(27245, 4411, 11), -- Average M. Atk.
-(27245, 4412, 11), -- Average P. Def.
-(27245, 4413, 11), -- Average M. Def.
-(27245, 4414, 1), -- Heavy Armor Type
-(27245, 4415, 4), -- One-handed Sword
-(27245, 4416, 9), -- Demons
+(27245, 4408, 1), -- HP Modifiers
+(27245, 4409, 1), -- MP Modifiers
+(27245, 4410, 11), -- P. Atk. Modifiers
+(27245, 4411, 11), -- M. Atk. Modifiers
+(27245, 4412, 11), -- P. Def. Modifiers
+(27245, 4413, 11), -- M. Def. Modifiers
+(27245, 4414, 1), -- Armor Type
+(27245, 4415, 4), -- Weapon Type
+(27245, 4416, 9), -- Races
 -- Archon of Halisha
-(27246, 4408, 1), -- HP Increase (1x)
-(27246, 4409, 1), -- MP Increase (1x)
-(27246, 4410, 11), -- Average P. Atk.
-(27246, 4411, 11), -- Average M. Atk.
-(27246, 4412, 11), -- Average P. Def.
-(27246, 4413, 11), -- Average M. Def.
-(27246, 4414, 1), -- Heavy Armor Type
-(27246, 4415, 4), -- One-handed Sword
-(27246, 4416, 9), -- Demons
+(27246, 4408, 1), -- HP Modifiers
+(27246, 4409, 1), -- MP Modifiers
+(27246, 4410, 11), -- P. Atk. Modifiers
+(27246, 4411, 11), -- M. Atk. Modifiers
+(27246, 4412, 11), -- P. Def. Modifiers
+(27246, 4413, 11), -- M. Def. Modifiers
+(27246, 4414, 1), -- Armor Type
+(27246, 4415, 4), -- Weapon Type
+(27246, 4416, 9), -- Races
 -- Archon of Halisha
-(27247, 4408, 1), -- HP Increase (1x)
-(27247, 4409, 1), -- MP Increase (1x)
-(27247, 4410, 11), -- Average P. Atk.
-(27247, 4411, 11), -- Average M. Atk.
-(27247, 4412, 11), -- Average P. Def.
-(27247, 4413, 11), -- Average M. Def.
-(27247, 4414, 1), -- Heavy Armor Type
-(27247, 4415, 4), -- One-handed Sword
-(27247, 4416, 9), -- Demons
+(27247, 4408, 1), -- HP Modifiers
+(27247, 4409, 1), -- MP Modifiers
+(27247, 4410, 11), -- P. Atk. Modifiers
+(27247, 4411, 11), -- M. Atk. Modifiers
+(27247, 4412, 11), -- P. Def. Modifiers
+(27247, 4413, 11), -- M. Def. Modifiers
+(27247, 4414, 1), -- Armor Type
+(27247, 4415, 4), -- Weapon Type
+(27247, 4416, 9), -- Races
 -- Archon of Halisha
-(27248, 4408, 1), -- HP Increase (1x)
-(27248, 4409, 1), -- MP Increase (1x)
-(27248, 4410, 11), -- Average P. Atk.
-(27248, 4411, 11), -- Average M. Atk.
-(27248, 4412, 11), -- Average P. Def.
-(27248, 4413, 11), -- Average M. Def.
-(27248, 4414, 1), -- Heavy Armor Type
-(27248, 4415, 4), -- One-handed Sword
-(27248, 4416, 9), -- Demons
+(27248, 4408, 1), -- HP Modifiers
+(27248, 4409, 1), -- MP Modifiers
+(27248, 4410, 11), -- P. Atk. Modifiers
+(27248, 4411, 11), -- M. Atk. Modifiers
+(27248, 4412, 11), -- P. Def. Modifiers
+(27248, 4413, 11), -- M. Def. Modifiers
+(27248, 4414, 1), -- Armor Type
+(27248, 4415, 4), -- Weapon Type
+(27248, 4416, 9), -- Races
 -- Archon of Halisha
-(27249, 4408, 1), -- HP Increase (1x)
-(27249, 4409, 1), -- MP Increase (1x)
-(27249, 4410, 11), -- Average P. Atk.
-(27249, 4411, 11), -- Average M. Atk.
-(27249, 4412, 11), -- Average P. Def.
-(27249, 4413, 11), -- Average M. Def.
-(27249, 4414, 1), -- Heavy Armor Type
-(27249, 4415, 4), -- One-handed Sword
-(27249, 4416, 9), -- Demons
+(27249, 4408, 1), -- HP Modifiers
+(27249, 4409, 1), -- MP Modifiers
+(27249, 4410, 11), -- P. Atk. Modifiers
+(27249, 4411, 11), -- M. Atk. Modifiers
+(27249, 4412, 11), -- P. Def. Modifiers
+(27249, 4413, 11), -- M. Def. Modifiers
+(27249, 4414, 1), -- Armor Type
+(27249, 4415, 4), -- Weapon Type
+(27249, 4416, 9), -- Races
 -- Fallen Angel Allector
-(27250, 4408, 10), -- HP Increase (2x)
-(27250, 4409, 1), -- MP Increase (1x)
-(27250, 4410, 11), -- Average P. Atk.
-(27250, 4411, 11), -- Average M. Atk.
-(27250, 4412, 11), -- Average P. Def.
-(27250, 4413, 11), -- Average M. Def.
-(27250, 4414, 1), -- Heavy Armor Type
-(27250, 4415, 3), -- One-handed Sword
-(27250, 4416, 9), -- Demons
-(27250, 4525, 1), -- Shield
-(27250, 4526, 1), -- Summon
-(27250, 4527, 1), -- Restore
-(27250, 4528, 1), -- Wind Walk
+(27250, 4408, 10), -- HP Modifiers
+(27250, 4409, 1), -- MP Modifiers
+(27250, 4410, 11), -- P. Atk. Modifiers
+(27250, 4411, 11), -- M. Atk. Modifiers
+(27250, 4412, 11), -- P. Def. Modifiers
+(27250, 4413, 11), -- M. Def. Modifiers
+(27250, 4414, 1), -- Armor Type
+(27250, 4415, 3), -- Weapon Type
+(27250, 4416, 9), -- Races
+(27250, 4525, 1), -- Quest - BOSS Defend
+(27250, 4526, 1), -- Quest - BOSS Summon
+(27250, 4527, 1), -- Quest - BOSS Inc HP to Summoned
+(27250, 4528, 1), -- Quest - BOSS Movement to Summoned
 -- Fallen Angel Allector
-(27251, 4408, 10), -- HP Increase (2x)
-(27251, 4409, 1), -- MP Increase (1x)
-(27251, 4410, 11), -- Average P. Atk.
-(27251, 4411, 11), -- Average M. Atk.
-(27251, 4412, 11), -- Average P. Def.
-(27251, 4413, 11), -- Average M. Def.
-(27251, 4414, 1), -- Heavy Armor Type
-(27251, 4415, 3), -- One-handed Sword
-(27251, 4416, 9), -- Demons
-(27251, 4525, 1), -- Shield
-(27251, 4526, 1), -- Summon
-(27251, 4527, 1), -- Restore
-(27251, 4528, 1), -- Wind Walk
+(27251, 4408, 10), -- HP Modifiers
+(27251, 4409, 1), -- MP Modifiers
+(27251, 4410, 11), -- P. Atk. Modifiers
+(27251, 4411, 11), -- M. Atk. Modifiers
+(27251, 4412, 11), -- P. Def. Modifiers
+(27251, 4413, 11), -- M. Def. Modifiers
+(27251, 4414, 1), -- Armor Type
+(27251, 4415, 3), -- Weapon Type
+(27251, 4416, 9), -- Races
+(27251, 4525, 1), -- Quest - BOSS Defend
+(27251, 4526, 1), -- Quest - BOSS Summon
+(27251, 4527, 1), -- Quest - BOSS Inc HP to Summoned
+(27251, 4528, 1), -- Quest - BOSS Movement to Summoned
 -- Fallen Angel Allector
-(27252, 4408, 10), -- HP Increase (2x)
-(27252, 4409, 1), -- MP Increase (1x)
-(27252, 4410, 11), -- Average P. Atk.
-(27252, 4411, 11), -- Average M. Atk.
-(27252, 4412, 11), -- Average P. Def.
-(27252, 4413, 11), -- Average M. Def.
-(27252, 4414, 1), -- Heavy Armor Type
-(27252, 4415, 3), -- One-handed Sword
-(27252, 4416, 9), -- Demons
-(27252, 4525, 1), -- Shield
-(27252, 4526, 1), -- Summon
-(27252, 4527, 1), -- Restore
-(27252, 4528, 1), -- Wind Walk
+(27252, 4408, 10), -- HP Modifiers
+(27252, 4409, 1), -- MP Modifiers
+(27252, 4410, 11), -- P. Atk. Modifiers
+(27252, 4411, 11), -- M. Atk. Modifiers
+(27252, 4412, 11), -- P. Def. Modifiers
+(27252, 4413, 11), -- M. Def. Modifiers
+(27252, 4414, 1), -- Armor Type
+(27252, 4415, 3), -- Weapon Type
+(27252, 4416, 9), -- Races
+(27252, 4525, 1), -- Quest - BOSS Defend
+(27252, 4526, 1), -- Quest - BOSS Summon
+(27252, 4527, 1), -- Quest - BOSS Inc HP to Summoned
+(27252, 4528, 1), -- Quest - BOSS Movement to Summoned
 -- Hell Fire
-(27253, 4408, 9), -- HP Increase (1/2x)
-(27253, 4409, 1), -- MP Increase (1x)
-(27253, 4410, 11), -- Average P. Atk.
-(27253, 4411, 11), -- Average M. Atk.
-(27253, 4412, 18), -- Extremely Strong P. Def.
-(27253, 4413, 11), -- Average M. Def.
-(27253, 4414, 3), -- Light Armor Type
-(27253, 4415, 5), -- Blunt Weapons
-(27253, 4416, 2), -- Magic Creatures
-(27253, 4529, 1), -- Self-destruction
-(27253, 4530, 1), -- Heal
-(27253, 4531, 1), -- Heal
+(27253, 4408, 9), -- HP Modifiers
+(27253, 4409, 1), -- MP Modifiers
+(27253, 4410, 11), -- P. Atk. Modifiers
+(27253, 4411, 11), -- M. Atk. Modifiers
+(27253, 4412, 18), -- P. Def. Modifiers
+(27253, 4413, 11), -- M. Def. Modifiers
+(27253, 4414, 3), -- Armor Type
+(27253, 4415, 5), -- Weapon Type
+(27253, 4416, 2), -- Races
+(27253, 4529, 1), -- Quest - Summoned Explosion
+(27253, 4530, 1), -- Quest - Summoned HP Heal
+(27253, 4531, 1), -- Quest - Summoned MP Heal
 -- Unknown Stopper
-(27254, 4408, 17), -- HP Increase (9x)
-(27254, 4409, 1), -- MP Increase (1x)
-(27254, 4410, 11), -- Average P. Atk.
-(27254, 4411, 11), -- Average M. Atk.
-(27254, 4412, 11), -- Average P. Def.
-(27254, 4413, 11), -- Average M. Def.
-(27254, 4414, 3), -- Light Armor Type
-(27254, 4415, 9), -- Bows
-(27254, 4416, 9), -- Demons
+(27254, 4408, 17), -- HP Modifiers
+(27254, 4409, 1), -- MP Modifiers
+(27254, 4410, 11), -- P. Atk. Modifiers
+(27254, 4411, 11), -- M. Atk. Modifiers
+(27254, 4412, 11), -- P. Def. Modifiers
+(27254, 4413, 11), -- M. Def. Modifiers
+(27254, 4414, 3), -- Armor Type
+(27254, 4415, 9), -- Weapon Type
+(27254, 4416, 9), -- Races
 -- Unknown Stopper
-(27255, 4408, 17), -- HP Increase (9x)
-(27255, 4409, 1), -- MP Increase (1x)
-(27255, 4410, 11), -- Average P. Atk.
-(27255, 4411, 11), -- Average M. Atk.
-(27255, 4412, 11), -- Average P. Def.
-(27255, 4413, 11), -- Average M. Def.
-(27255, 4414, 3), -- Light Armor Type
-(27255, 4415, 9), -- Bows
-(27255, 4416, 9), -- Demons
+(27255, 4408, 17), -- HP Modifiers
+(27255, 4409, 1), -- MP Modifiers
+(27255, 4410, 11), -- P. Atk. Modifiers
+(27255, 4411, 11), -- M. Atk. Modifiers
+(27255, 4412, 11), -- P. Def. Modifiers
+(27255, 4413, 11), -- M. Def. Modifiers
+(27255, 4414, 3), -- Armor Type
+(27255, 4415, 9), -- Weapon Type
+(27255, 4416, 9), -- Races
 -- Unknown Stopper
-(27256, 4408, 17), -- HP Increase (9x)
-(27256, 4409, 1), -- MP Increase (1x)
-(27256, 4410, 11), -- Average P. Atk.
-(27256, 4411, 11), -- Average M. Atk.
-(27256, 4412, 11), -- Average P. Def.
-(27256, 4413, 11), -- Average M. Def.
-(27256, 4414, 3), -- Light Armor Type
-(27256, 4415, 9), -- Bows
-(27256, 4416, 9), -- Demons
+(27256, 4408, 17), -- HP Modifiers
+(27256, 4409, 1), -- MP Modifiers
+(27256, 4410, 11), -- P. Atk. Modifiers
+(27256, 4411, 11), -- M. Atk. Modifiers
+(27256, 4412, 11), -- P. Def. Modifiers
+(27256, 4413, 11), -- M. Def. Modifiers
+(27256, 4414, 3), -- Armor Type
+(27256, 4415, 9), -- Weapon Type
+(27256, 4416, 9), -- Races
 -- Archangel Iconoclasis
-(27257, 4408, 1), -- HP Increase (1x)
-(27257, 4409, 1), -- MP Increase (1x)
-(27257, 4410, 11), -- Average P. Atk.
-(27257, 4411, 11), -- Average M. Atk.
-(27257, 4412, 11), -- Average P. Def.
-(27257, 4413, 11), -- Average M. Def.
-(27257, 4414, 3), -- Light Armor Type
-(27257, 4415, 5), -- Blunt Weapons
-(27257, 4416, 8), -- Angels
-(27257, 4525, 1), -- Shield
-(27257, 4526, 1), -- Summon
-(27257, 4527, 1), -- Restore
-(27257, 4528, 1), -- Wind Walk
+(27257, 4408, 1), -- HP Modifiers
+(27257, 4409, 1), -- MP Modifiers
+(27257, 4410, 11), -- P. Atk. Modifiers
+(27257, 4411, 11), -- M. Atk. Modifiers
+(27257, 4412, 11), -- P. Def. Modifiers
+(27257, 4413, 11), -- M. Def. Modifiers
+(27257, 4414, 3), -- Armor Type
+(27257, 4415, 5), -- Weapon Type
+(27257, 4416, 8), -- Races
+(27257, 4525, 1), -- Quest - BOSS Defend
+(27257, 4526, 1), -- Quest - BOSS Summon
+(27257, 4527, 1), -- Quest - BOSS Inc HP to Summoned
+(27257, 4528, 1), -- Quest - BOSS Movement to Summoned
 -- Archangel Iconoclasis
-(27258, 4032, 8), -- Power Strike
-(27258, 4073, 8), -- Stun
-(27258, 4408, 1), -- HP Increase (1x)
-(27258, 4409, 1), -- MP Increase (1x)
-(27258, 4410, 11), -- Average P. Atk.
-(27258, 4411, 11), -- Average M. Atk.
-(27258, 4412, 18), -- Extremely Strong P. Def.
-(27258, 4413, 11), -- Average M. Def.
-(27258, 4414, 3), -- Light Armor Type
-(27258, 4415, 5), -- Blunt Weapons
-(27258, 4416, 8), -- Angels
-(27258, 4517, 1), -- Shield
-(27258, 4518, 1), -- Might
-(27258, 4572, 8), -- Triple Sonic Slash
+(27258, 4032, 8), -- NPC Strike
+(27258, 4073, 8), -- Shock
+(27258, 4408, 1), -- HP Modifiers
+(27258, 4409, 1), -- MP Modifiers
+(27258, 4410, 11), -- P. Atk. Modifiers
+(27258, 4411, 11), -- M. Atk. Modifiers
+(27258, 4412, 18), -- P. Def. Modifiers
+(27258, 4413, 11), -- M. Def. Modifiers
+(27258, 4414, 3), -- Armor Type
+(27258, 4415, 5), -- Weapon Type
+(27258, 4416, 8), -- Races
+(27258, 4517, 1), -- Quest - BOSS Defend
+(27258, 4518, 1), -- Quest - BOSS Rampage
+(27258, 4572, 8), -- NPC Triple Sonic Slash
 -- Archangel Iconoclasis
-(27259, 4408, 1), -- HP Increase (1x)
-(27259, 4409, 1), -- MP Increase (1x)
-(27259, 4410, 11), -- Average P. Atk.
-(27259, 4411, 11), -- Average M. Atk.
-(27259, 4412, 11), -- Average P. Def.
-(27259, 4413, 11), -- Average M. Def.
-(27259, 4414, 3), -- Light Armor Type
-(27259, 4415, 5), -- Blunt Weapons
-(27259, 4416, 8), -- Angels
+(27259, 4408, 1), -- HP Modifiers
+(27259, 4409, 1), -- MP Modifiers
+(27259, 4410, 11), -- P. Atk. Modifiers
+(27259, 4411, 11), -- M. Atk. Modifiers
+(27259, 4412, 11), -- P. Def. Modifiers
+(27259, 4413, 11), -- M. Def. Modifiers
+(27259, 4414, 3), -- Armor Type
+(27259, 4415, 5), -- Weapon Type
+(27259, 4416, 8), -- Races
 -- Archangel Iconoclasis
-(27260, 4408, 1), -- HP Increase (1x)
-(27260, 4409, 1), -- MP Increase (1x)
-(27260, 4410, 11), -- Average P. Atk.
-(27260, 4411, 11), -- Average M. Atk.
-(27260, 4412, 11), -- Average P. Def.
-(27260, 4413, 11), -- Average M. Def.
-(27260, 4414, 3), -- Light Armor Type
-(27260, 4415, 5), -- Blunt Weapons
-(27260, 4416, 8), -- Angels
+(27260, 4408, 1), -- HP Modifiers
+(27260, 4409, 1), -- MP Modifiers
+(27260, 4410, 11), -- P. Atk. Modifiers
+(27260, 4411, 11), -- M. Atk. Modifiers
+(27260, 4412, 11), -- P. Def. Modifiers
+(27260, 4413, 11), -- M. Def. Modifiers
+(27260, 4414, 3), -- Armor Type
+(27260, 4415, 5), -- Weapon Type
+(27260, 4416, 8), -- Races
 -- Bead of Sacred Flame
-(27261, 4408, 1), -- HP Increase (1x)
-(27261, 4409, 1), -- MP Increase (1x)
-(27261, 4410, 11), -- Average P. Atk.
-(27261, 4411, 11), -- Average M. Atk.
-(27261, 4412, 11), -- Average P. Def.
-(27261, 4413, 11), -- Average M. Def.
-(27261, 4414, 3), -- Light Armor Type
-(27261, 4415, 5), -- Blunt Weapons
-(27261, 4416, 2), -- Magic Creatures
-(27261, 4542, 1), -- Resist Sleep/Shock
+(27261, 4408, 1), -- HP Modifiers
+(27261, 4409, 1), -- MP Modifiers
+(27261, 4410, 11), -- P. Atk. Modifiers
+(27261, 4411, 11), -- M. Atk. Modifiers
+(27261, 4412, 11), -- P. Def. Modifiers
+(27261, 4413, 11), -- M. Def. Modifiers
+(27261, 4414, 3), -- Armor Type
+(27261, 4415, 5), -- Weapon Type
+(27261, 4416, 2), -- Races
+(27261, 4542, 1), -- Quest - Henchman 90% Sleep Stun Weakness
 -- Death Lord Hallate
-(27262, 4408, 17), -- HP Increase (9x)
-(27262, 4409, 1), -- MP Increase (1x)
-(27262, 4410, 11), -- Average P. Atk.
-(27262, 4411, 11), -- Average M. Atk.
-(27262, 4412, 11), -- Average P. Def.
-(27262, 4413, 11), -- Average M. Def.
-(27262, 4414, 1), -- Heavy Armor Type
-(27262, 4415, 3), -- One-handed Sword
-(27262, 4416, 1), -- Undead
+(27262, 4408, 17), -- HP Modifiers
+(27262, 4409, 1), -- MP Modifiers
+(27262, 4410, 11), -- P. Atk. Modifiers
+(27262, 4411, 11), -- M. Atk. Modifiers
+(27262, 4412, 11), -- P. Def. Modifiers
+(27262, 4413, 11), -- M. Def. Modifiers
+(27262, 4414, 1), -- Armor Type
+(27262, 4415, 3), -- Weapon Type
+(27262, 4416, 1), -- Races
 -- Death Lord Hallate
-(27263, 4408, 17), -- HP Increase (9x)
-(27263, 4409, 1), -- MP Increase (1x)
-(27263, 4410, 11), -- Average P. Atk.
-(27263, 4411, 11), -- Average M. Atk.
-(27263, 4412, 11), -- Average P. Def.
-(27263, 4413, 11), -- Average M. Def.
-(27263, 4414, 1), -- Heavy Armor Type
-(27263, 4415, 3), -- One-handed Sword
-(27263, 4416, 1), -- Undead
+(27263, 4408, 17), -- HP Modifiers
+(27263, 4409, 1), -- MP Modifiers
+(27263, 4410, 11), -- P. Atk. Modifiers
+(27263, 4411, 11), -- M. Atk. Modifiers
+(27263, 4412, 11), -- P. Def. Modifiers
+(27263, 4413, 11), -- M. Def. Modifiers
+(27263, 4414, 1), -- Armor Type
+(27263, 4415, 3), -- Weapon Type
+(27263, 4416, 1), -- Races
 -- Death Lord Hallate
-(27264, 4408, 17), -- HP Increase (9x)
-(27264, 4409, 1), -- MP Increase (1x)
-(27264, 4410, 11), -- Average P. Atk.
-(27264, 4411, 11), -- Average M. Atk.
-(27264, 4412, 11), -- Average P. Def.
-(27264, 4413, 11), -- Average M. Def.
-(27264, 4414, 1), -- Heavy Armor Type
-(27264, 4415, 3), -- One-handed Sword
-(27264, 4416, 1), -- Undead
+(27264, 4408, 17), -- HP Modifiers
+(27264, 4409, 1), -- MP Modifiers
+(27264, 4410, 11), -- P. Atk. Modifiers
+(27264, 4411, 11), -- M. Atk. Modifiers
+(27264, 4412, 11), -- P. Def. Modifiers
+(27264, 4413, 11), -- M. Def. Modifiers
+(27264, 4414, 1), -- Armor Type
+(27264, 4415, 3), -- Weapon Type
+(27264, 4416, 1), -- Races
 -- Lich King Icarus
-(27265, 4408, 17), -- HP Increase (9x)
-(27265, 4409, 1), -- MP Increase (1x)
-(27265, 4410, 11), -- Average P. Atk.
-(27265, 4411, 11), -- Average M. Atk.
-(27265, 4412, 11), -- Average P. Def.
-(27265, 4413, 11), -- Average M. Def.
-(27265, 4414, 3), -- Light Armor Type
-(27265, 4415, 3), -- One-handed Sword
-(27265, 4416, 9), -- Demons
+(27265, 4408, 17), -- HP Modifiers
+(27265, 4409, 1), -- MP Modifiers
+(27265, 4410, 11), -- P. Atk. Modifiers
+(27265, 4411, 11), -- M. Atk. Modifiers
+(27265, 4412, 11), -- P. Def. Modifiers
+(27265, 4413, 11), -- M. Def. Modifiers
+(27265, 4414, 3), -- Armor Type
+(27265, 4415, 3), -- Weapon Type
+(27265, 4416, 9), -- Races
 -- Fallen Angel Haures
-(27266, 4408, 10), -- HP Increase (2x)
-(27266, 4409, 1), -- MP Increase (1x)
-(27266, 4410, 11), -- Average P. Atk.
-(27266, 4411, 11), -- Average M. Atk.
-(27266, 4412, 21), -- Extremely Strong P. Def.
-(27266, 4413, 11), -- Average M. Def.
-(27266, 4414, 3), -- Light Armor Type
-(27266, 4415, 5), -- Blunt Weapons
-(27266, 4416, 1), -- Undead
+(27266, 4408, 10), -- HP Modifiers
+(27266, 4409, 1), -- MP Modifiers
+(27266, 4410, 11), -- P. Atk. Modifiers
+(27266, 4411, 11), -- M. Atk. Modifiers
+(27266, 4412, 21), -- P. Def. Modifiers
+(27266, 4413, 11), -- M. Def. Modifiers
+(27266, 4414, 3), -- Armor Type
+(27266, 4415, 5), -- Weapon Type
+(27266, 4416, 1), -- Races
 -- Fallen Angel Haures
-(27267, 4408, 10), -- HP Increase (2x)
-(27267, 4409, 1), -- MP Increase (1x)
-(27267, 4410, 11), -- Average P. Atk.
-(27267, 4411, 11), -- Average M. Atk.
-(27267, 4412, 21), -- Extremely Strong P. Def.
-(27267, 4413, 11), -- Average M. Def.
-(27267, 4414, 3), -- Light Armor Type
-(27267, 4415, 5), -- Blunt Weapons
-(27267, 4416, 1), -- Undead
+(27267, 4408, 10), -- HP Modifiers
+(27267, 4409, 1), -- MP Modifiers
+(27267, 4410, 11), -- P. Atk. Modifiers
+(27267, 4411, 11), -- M. Atk. Modifiers
+(27267, 4412, 21), -- P. Def. Modifiers
+(27267, 4413, 11), -- M. Def. Modifiers
+(27267, 4414, 3), -- Armor Type
+(27267, 4415, 5), -- Weapon Type
+(27267, 4416, 1), -- Races
 -- Guard of Haures
-(27268, 4408, 1), -- HP Increase (1x)
-(27268, 4409, 1), -- MP Increase (1x)
-(27268, 4410, 11), -- Average P. Atk.
-(27268, 4411, 11), -- Average M. Atk.
-(27268, 4412, 11), -- Average P. Def.
-(27268, 4413, 11), -- Average M. Def.
-(27268, 4414, 3), -- Light Armor Type
-(27268, 4415, 7), -- Daggers
-(27268, 4416, 1), -- Undead
-(27268, 4542, 1), -- Resist Sleep/Shock
+(27268, 4408, 1), -- HP Modifiers
+(27268, 4409, 1), -- MP Modifiers
+(27268, 4410, 11), -- P. Atk. Modifiers
+(27268, 4411, 11), -- M. Atk. Modifiers
+(27268, 4412, 11), -- P. Def. Modifiers
+(27268, 4413, 11), -- M. Def. Modifiers
+(27268, 4414, 3), -- Armor Type
+(27268, 4415, 7), -- Weapon Type
+(27268, 4416, 1), -- Races
+(27268, 4542, 1), -- Quest - Henchman 90% Sleep Stun Weakness
 -- Fallen Angel Naverius
-(27269, 4408, 1), -- HP Increase (1x)
-(27269, 4409, 1), -- MP Increase (1x)
-(27269, 4410, 11), -- Average P. Atk.
-(27269, 4411, 11), -- Average M. Atk.
-(27269, 4412, 11), -- Average P. Def.
-(27269, 4413, 11), -- Average M. Def.
-(27269, 4414, 3), -- Light Armor Type
-(27269, 4415, 5), -- Blunt Weapons
-(27269, 4416, 9), -- Demons
+(27269, 4408, 1), -- HP Modifiers
+(27269, 4409, 1), -- MP Modifiers
+(27269, 4410, 11), -- P. Atk. Modifiers
+(27269, 4411, 11), -- M. Atk. Modifiers
+(27269, 4412, 11), -- P. Def. Modifiers
+(27269, 4413, 11), -- M. Def. Modifiers
+(27269, 4414, 3), -- Armor Type
+(27269, 4415, 5), -- Weapon Type
+(27269, 4416, 9), -- Races
 (27269, 4539, 1), -- Curse of Vague
 (27269, 4540, 1), -- Curse of Weakness
 (27269, 4541, 1), -- Curse of Nihil
 -- Fallen Angel Naverius
-(27270, 4408, 1), -- HP Increase (1x)
-(27270, 4409, 1), -- MP Increase (1x)
-(27270, 4410, 11), -- Average P. Atk.
-(27270, 4411, 11), -- Average M. Atk.
-(27270, 4412, 11), -- Average P. Def.
-(27270, 4413, 11), -- Average M. Def.
-(27270, 4414, 3), -- Light Armor Type
-(27270, 4415, 5), -- Blunt Weapons
-(27270, 4416, 9), -- Demons
+(27270, 4408, 1), -- HP Modifiers
+(27270, 4409, 1), -- MP Modifiers
+(27270, 4410, 11), -- P. Atk. Modifiers
+(27270, 4411, 11), -- M. Atk. Modifiers
+(27270, 4412, 11), -- P. Def. Modifiers
+(27270, 4413, 11), -- M. Def. Modifiers
+(27270, 4414, 3), -- Armor Type
+(27270, 4415, 5), -- Weapon Type
+(27270, 4416, 9), -- Races
 (27270, 4539, 1), -- Curse of Vague
 (27270, 4540, 1), -- Curse of Weakness
 (27270, 4541, 1), -- Curse of Nihil
 -- Chimera Golem
-(27271, 4032, 8), -- Power Strike
-(27271, 4073, 8), -- Stun
-(27271, 4408, 1), -- HP Increase (1x)
-(27271, 4409, 1), -- MP Increase (1x)
-(27271, 4410, 11), -- Average P. Atk.
-(27271, 4411, 11), -- Average M. Atk.
-(27271, 4412, 18), -- Extremely Strong P. Def.
-(27271, 4413, 11), -- Average M. Def.
-(27271, 4414, 1), -- Heavy Armor Type
-(27271, 4415, 3), -- One-handed Sword
-(27271, 4416, 2), -- Magic Creatures
-(27271, 4517, 1), -- Shield
-(27271, 4518, 1), -- Might
-(27271, 4572, 8), -- Triple Sonic Slash
+(27271, 4032, 8), -- NPC Strike
+(27271, 4073, 8), -- Shock
+(27271, 4408, 1), -- HP Modifiers
+(27271, 4409, 1), -- MP Modifiers
+(27271, 4410, 11), -- P. Atk. Modifiers
+(27271, 4411, 11), -- M. Atk. Modifiers
+(27271, 4412, 18), -- P. Def. Modifiers
+(27271, 4413, 11), -- M. Def. Modifiers
+(27271, 4414, 1), -- Armor Type
+(27271, 4415, 3), -- Weapon Type
+(27271, 4416, 2), -- Races
+(27271, 4517, 1), -- Quest - BOSS Defend
+(27271, 4518, 1), -- Quest - BOSS Rampage
+(27271, 4572, 8), -- NPC Triple Sonic Slash
 -- Hallate's Dancer Lillian
-(27272, 4408, 1), -- HP Increase (1x)
-(27272, 4409, 1), -- MP Increase (1x)
-(27272, 4410, 11), -- Average P. Atk.
-(27272, 4411, 11), -- Average M. Atk.
-(27272, 4412, 18), -- Extremely Strong P. Def.
-(27272, 4413, 11), -- Average M. Def.
-(27272, 4414, 3), -- Light Armor Type
-(27272, 4415, 5), -- Blunt Weapons
-(27272, 4416, 9), -- Demons
+(27272, 4408, 1), -- HP Modifiers
+(27272, 4409, 1), -- MP Modifiers
+(27272, 4410, 11), -- P. Atk. Modifiers
+(27272, 4411, 11), -- M. Atk. Modifiers
+(27272, 4412, 18), -- P. Def. Modifiers
+(27272, 4413, 11), -- M. Def. Modifiers
+(27272, 4414, 3), -- Armor Type
+(27272, 4415, 5), -- Weapon Type
+(27272, 4416, 9), -- Races
 (27272, 4533, 1), -- Dance of Resistance
 (27272, 4534, 1), -- Dance of Nihil
 (27272, 4535, 1), -- Dance of Weakness
 -- Assassin Pezel
-(27273, 4408, 17), -- HP Increase (9x)
-(27273, 4409, 1), -- MP Increase (1x)
-(27273, 4410, 11), -- Average P. Atk.
-(27273, 4411, 11), -- Average M. Atk.
-(27273, 4412, 11), -- Average P. Def.
-(27273, 4413, 11), -- Average M. Def.
-(27273, 4414, 1), -- Heavy Armor Type
-(27273, 4415, 7), -- Daggers
-(27273, 4416, 1), -- Undead
+(27273, 4408, 17), -- HP Modifiers
+(27273, 4409, 1), -- MP Modifiers
+(27273, 4410, 11), -- P. Atk. Modifiers
+(27273, 4411, 11), -- M. Atk. Modifiers
+(27273, 4412, 11), -- P. Def. Modifiers
+(27273, 4413, 11), -- M. Def. Modifiers
+(27273, 4414, 1), -- Armor Type
+(27273, 4415, 7), -- Weapon Type
+(27273, 4416, 1), -- Races
 -- Fallen Angel Tanakia
-(27274, 4408, 17), -- HP Increase (9x)
-(27274, 4409, 1), -- MP Increase (1x)
-(27274, 4410, 11), -- Average P. Atk.
-(27274, 4411, 11), -- Average M. Atk.
-(27274, 4412, 11), -- Average P. Def.
-(27274, 4413, 11), -- Average M. Def.
-(27274, 4414, 1), -- Heavy Armor Type
-(27274, 4415, 9), -- Bows
-(27274, 4416, 9), -- Demons
+(27274, 4408, 17), -- HP Modifiers
+(27274, 4409, 1), -- MP Modifiers
+(27274, 4410, 11), -- P. Atk. Modifiers
+(27274, 4411, 11), -- M. Atk. Modifiers
+(27274, 4412, 11), -- P. Def. Modifiers
+(27274, 4413, 11), -- M. Def. Modifiers
+(27274, 4414, 1), -- Armor Type
+(27274, 4415, 9), -- Weapon Type
+(27274, 4416, 9), -- Races
 -- Fallen Angel Tanakia
-(27275, 4408, 17), -- HP Increase (9x)
-(27275, 4409, 1), -- MP Increase (1x)
-(27275, 4410, 11), -- Average P. Atk.
-(27275, 4411, 11), -- Average M. Atk.
-(27275, 4412, 11), -- Average P. Def.
-(27275, 4413, 11), -- Average M. Def.
-(27275, 4414, 1), -- Heavy Armor Type
-(27275, 4415, 9), -- Bows
-(27275, 4416, 9), -- Demons
+(27275, 4408, 17), -- HP Modifiers
+(27275, 4409, 1), -- MP Modifiers
+(27275, 4410, 11), -- P. Atk. Modifiers
+(27275, 4411, 11), -- M. Atk. Modifiers
+(27275, 4412, 11), -- P. Def. Modifiers
+(27275, 4413, 11), -- M. Def. Modifiers
+(27275, 4414, 1), -- Armor Type
+(27275, 4415, 9), -- Weapon Type
+(27275, 4416, 9), -- Races
 -- Fallen Angel Tanakia
-(27276, 4408, 17), -- HP Increase (9x)
-(27276, 4409, 1), -- MP Increase (1x)
-(27276, 4410, 11), -- Average P. Atk.
-(27276, 4411, 11), -- Average M. Atk.
-(27276, 4412, 11), -- Average P. Def.
-(27276, 4413, 11), -- Average M. Def.
-(27276, 4414, 1), -- Heavy Armor Type
-(27276, 4415, 9), -- Bows
-(27276, 4416, 9), -- Demons
+(27276, 4408, 17), -- HP Modifiers
+(27276, 4409, 1), -- MP Modifiers
+(27276, 4410, 11), -- P. Atk. Modifiers
+(27276, 4411, 11), -- M. Atk. Modifiers
+(27276, 4412, 11), -- P. Def. Modifiers
+(27276, 4413, 11), -- M. Def. Modifiers
+(27276, 4414, 1), -- Armor Type
+(27276, 4415, 9), -- Weapon Type
+(27276, 4416, 9), -- Races
 -- Fallen Angel Tanakia
-(27277, 4408, 17), -- HP Increase (9x)
-(27277, 4409, 1), -- MP Increase (1x)
-(27277, 4410, 11), -- Average P. Atk.
-(27277, 4411, 11), -- Average M. Atk.
-(27277, 4412, 11), -- Average P. Def.
-(27277, 4413, 11), -- Average M. Def.
-(27277, 4414, 1), -- Heavy Armor Type
-(27277, 4415, 9), -- Bows
-(27277, 4416, 9), -- Demons
+(27277, 4408, 17), -- HP Modifiers
+(27277, 4409, 1), -- MP Modifiers
+(27277, 4410, 11), -- P. Atk. Modifiers
+(27277, 4411, 11), -- M. Atk. Modifiers
+(27277, 4412, 11), -- P. Def. Modifiers
+(27277, 4413, 11), -- M. Def. Modifiers
+(27277, 4414, 1), -- Armor Type
+(27277, 4415, 9), -- Weapon Type
+(27277, 4416, 9), -- Races
 -- Beleth's Shadow
-(27278, 4408, 17), -- HP Increase (9x)
-(27278, 4409, 1), -- MP Increase (1x)
-(27278, 4410, 11), -- Average P. Atk.
-(27278, 4411, 11), -- Average M. Atk.
-(27278, 4412, 11), -- Average P. Def.
-(27278, 4413, 11), -- Average M. Def.
-(27278, 4414, 1), -- Heavy Armor Type
-(27278, 4415, 5), -- Blunt Weapons
-(27278, 4416, 9), -- Demons
+(27278, 4408, 17), -- HP Modifiers
+(27278, 4409, 1), -- MP Modifiers
+(27278, 4410, 11), -- P. Atk. Modifiers
+(27278, 4411, 11), -- M. Atk. Modifiers
+(27278, 4412, 11), -- P. Def. Modifiers
+(27278, 4413, 11), -- M. Def. Modifiers
+(27278, 4414, 1), -- Armor Type
+(27278, 4415, 5), -- Weapon Type
+(27278, 4416, 9), -- Races
 -- Cursed Kesadein
-(27279, 4408, 17), -- HP Increase (9x)
-(27279, 4409, 1), -- MP Increase (1x)
-(27279, 4410, 11), -- Average P. Atk.
-(27279, 4411, 11), -- Average M. Atk.
-(27279, 4412, 11), -- Average P. Def.
-(27279, 4413, 11), -- Average M. Def.
-(27279, 4414, 3), -- Light Armor Type
-(27279, 4415, 7), -- Daggers
-(27279, 4416, 1), -- Undead
+(27279, 4408, 17), -- HP Modifiers
+(27279, 4409, 1), -- MP Modifiers
+(27279, 4410, 11), -- P. Atk. Modifiers
+(27279, 4411, 11), -- M. Atk. Modifiers
+(27279, 4412, 11), -- P. Def. Modifiers
+(27279, 4413, 11), -- M. Def. Modifiers
+(27279, 4414, 3), -- Armor Type
+(27279, 4415, 7), -- Weapon Type
+(27279, 4416, 1), -- Races
 -- Fallen Angel Narcissus
-(27280, 4408, 17), -- HP Increase (9x)
-(27280, 4409, 1), -- MP Increase (1x)
-(27280, 4410, 11), -- Average P. Atk.
-(27280, 4411, 11), -- Average M. Atk.
-(27280, 4412, 11), -- Average P. Def.
-(27280, 4413, 11), -- Average M. Def.
-(27280, 4414, 1), -- Heavy Armor Type
-(27280, 4415, 3), -- One-handed Sword
-(27280, 4416, 9), -- Demons
+(27280, 4408, 17), -- HP Modifiers
+(27280, 4409, 1), -- MP Modifiers
+(27280, 4410, 11), -- P. Atk. Modifiers
+(27280, 4411, 11), -- M. Atk. Modifiers
+(27280, 4412, 11), -- P. Def. Modifiers
+(27280, 4413, 11), -- M. Def. Modifiers
+(27280, 4414, 1), -- Armor Type
+(27280, 4415, 3), -- Weapon Type
+(27280, 4416, 9), -- Races
 -- Fallen Angel Metellus
-(27281, 4408, 17), -- HP Increase (9x)
-(27281, 4409, 1), -- MP Increase (1x)
-(27281, 4410, 11), -- Average P. Atk.
-(27281, 4411, 11), -- Average M. Atk.
-(27281, 4412, 11), -- Average P. Def.
-(27281, 4413, 11), -- Average M. Def.
-(27281, 4414, 1), -- Heavy Armor Type
-(27281, 4415, 3), -- One-handed Sword
-(27281, 4416, 9), -- Demons
+(27281, 4408, 17), -- HP Modifiers
+(27281, 4409, 1), -- MP Modifiers
+(27281, 4410, 11), -- P. Atk. Modifiers
+(27281, 4411, 11), -- M. Atk. Modifiers
+(27281, 4412, 11), -- P. Def. Modifiers
+(27281, 4413, 11), -- M. Def. Modifiers
+(27281, 4414, 1), -- Armor Type
+(27281, 4415, 3), -- Weapon Type
+(27281, 4416, 9), -- Races
 -- Dark Angel Othiel
-(27282, 4408, 17), -- HP Increase (9x)
-(27282, 4409, 1), -- MP Increase (1x)
-(27282, 4410, 11), -- Average P. Atk.
-(27282, 4411, 11), -- Average M. Atk.
-(27282, 4412, 11), -- Average P. Def.
-(27282, 4413, 11), -- Average M. Def.
-(27282, 4414, 1), -- Heavy Armor Type
-(27282, 4415, 3), -- One-handed Sword
-(27282, 4416, 8), -- Angels
+(27282, 4408, 17), -- HP Modifiers
+(27282, 4409, 1), -- MP Modifiers
+(27282, 4410, 11), -- P. Atk. Modifiers
+(27282, 4411, 11), -- M. Atk. Modifiers
+(27282, 4412, 11), -- P. Def. Modifiers
+(27282, 4413, 11), -- M. Def. Modifiers
+(27282, 4414, 1), -- Armor Type
+(27282, 4415, 3), -- Weapon Type
+(27282, 4416, 8), -- Races
 -- Grandpapa Askalius
-(27283, 4408, 17), -- HP Increase (9x)
-(27283, 4409, 1), -- MP Increase (1x)
-(27283, 4410, 11), -- Average P. Atk.
-(27283, 4411, 11), -- Average M. Atk.
-(27283, 4412, 11), -- Average P. Def.
-(27283, 4413, 11), -- Average M. Def.
-(27283, 4414, 1), -- Heavy Armor Type
-(27283, 4415, 5), -- Blunt Weapons
-(27283, 4416, 2), -- Magic Creatures
+(27283, 4408, 17), -- HP Modifiers
+(27283, 4409, 1), -- MP Modifiers
+(27283, 4410, 11), -- P. Atk. Modifiers
+(27283, 4411, 11), -- M. Atk. Modifiers
+(27283, 4412, 11), -- P. Def. Modifiers
+(27283, 4413, 11), -- M. Def. Modifiers
+(27283, 4414, 1), -- Armor Type
+(27283, 4415, 5), -- Weapon Type
+(27283, 4416, 2), -- Races
 -- Flame Evil Spirit Azira
-(27284, 4408, 17), -- HP Increase (9x)
-(27284, 4409, 1), -- MP Increase (1x)
-(27284, 4410, 11), -- Average P. Atk.
-(27284, 4411, 11), -- Average M. Atk.
-(27284, 4412, 11), -- Average P. Def.
-(27284, 4413, 11), -- Average M. Def.
-(27284, 4414, 1), -- Heavy Armor Type
-(27284, 4415, 3), -- One-handed Sword
-(27284, 4416, 7), -- Spirits
+(27284, 4408, 17), -- HP Modifiers
+(27284, 4409, 1), -- MP Modifiers
+(27284, 4410, 11), -- P. Atk. Modifiers
+(27284, 4411, 11), -- M. Atk. Modifiers
+(27284, 4412, 11), -- P. Def. Modifiers
+(27284, 4413, 11), -- M. Def. Modifiers
+(27284, 4414, 1), -- Armor Type
+(27284, 4415, 3), -- Weapon Type
+(27284, 4416, 7), -- Races
 -- Lizard's Totem Sharuhi
-(27285, 4408, 17), -- HP Increase (9x)
-(27285, 4409, 1), -- MP Increase (1x)
-(27285, 4410, 11), -- Average P. Atk.
-(27285, 4411, 11), -- Average M. Atk.
-(27285, 4412, 11), -- Average P. Def.
-(27285, 4413, 11), -- Average M. Def.
-(27285, 4414, 1), -- Heavy Armor Type
-(27285, 4415, 3), -- One-handed Sword
-(27285, 4416, 3), -- Beasts
+(27285, 4408, 17), -- HP Modifiers
+(27285, 4409, 1), -- MP Modifiers
+(27285, 4410, 11), -- P. Atk. Modifiers
+(27285, 4411, 11), -- M. Atk. Modifiers
+(27285, 4412, 11), -- P. Def. Modifiers
+(27285, 4413, 11), -- M. Def. Modifiers
+(27285, 4414, 1), -- Armor Type
+(27285, 4415, 3), -- Weapon Type
+(27285, 4416, 3), -- Races
 -- Fallen Knight Adhil
-(27286, 4032, 8), -- Power Strike
-(27286, 4073, 8), -- Stun
-(27286, 4408, 1), -- HP Increase (1x)
-(27286, 4409, 1), -- MP Increase (1x)
-(27286, 4410, 11), -- Average P. Atk.
-(27286, 4411, 11), -- Average M. Atk.
-(27286, 4412, 18), -- Extremely Strong P. Def.
-(27286, 4413, 11), -- Average M. Def.
-(27286, 4414, 1), -- Heavy Armor Type
-(27286, 4415, 3), -- One-handed Sword
-(27286, 4416, 14), -- Humans
-(27286, 4517, 1), -- Shield
-(27286, 4518, 1), -- Might
-(27286, 4572, 8), -- Triple Sonic Slash
+(27286, 4032, 8), -- NPC Strike
+(27286, 4073, 8), -- Shock
+(27286, 4408, 1), -- HP Modifiers
+(27286, 4409, 1), -- MP Modifiers
+(27286, 4410, 11), -- P. Atk. Modifiers
+(27286, 4411, 11), -- M. Atk. Modifiers
+(27286, 4412, 18), -- P. Def. Modifiers
+(27286, 4413, 11), -- M. Def. Modifiers
+(27286, 4414, 1), -- Armor Type
+(27286, 4415, 3), -- Weapon Type
+(27286, 4416, 14), -- Races
+(27286, 4517, 1), -- Quest - BOSS Defend
+(27286, 4518, 1), -- Quest - BOSS Rampage
+(27286, 4572, 8), -- NPC Triple Sonic Slash
 -- Bound Elf Panacea
-(27287, 4032, 8), -- Power Strike
-(27287, 4073, 8), -- Stun
-(27287, 4408, 1), -- HP Increase (1x)
-(27287, 4409, 1), -- MP Increase (1x)
-(27287, 4410, 11), -- Average P. Atk.
-(27287, 4411, 11), -- Average M. Atk.
-(27287, 4412, 18), -- Extremely Strong P. Def.
-(27287, 4413, 11), -- Average M. Def.
-(27287, 4414, 1), -- Heavy Armor Type
-(27287, 4415, 3), -- One-handed Sword
-(27287, 4416, 15), -- Elves
-(27287, 4517, 1), -- Shield
-(27287, 4518, 1), -- Might
-(27287, 4572, 8), -- Triple Sonic Slash
+(27287, 4032, 8), -- NPC Strike
+(27287, 4073, 8), -- Shock
+(27287, 4408, 1), -- HP Modifiers
+(27287, 4409, 1), -- MP Modifiers
+(27287, 4410, 11), -- P. Atk. Modifiers
+(27287, 4411, 11), -- M. Atk. Modifiers
+(27287, 4412, 18), -- P. Def. Modifiers
+(27287, 4413, 11), -- M. Def. Modifiers
+(27287, 4414, 1), -- Armor Type
+(27287, 4415, 3), -- Weapon Type
+(27287, 4416, 15), -- Races
+(27287, 4517, 1), -- Quest - BOSS Defend
+(27287, 4518, 1), -- Quest - BOSS Rampage
+(27287, 4572, 8), -- NPC Triple Sonic Slash
 -- Sword Player Biel
-(27288, 4408, 1), -- HP Increase (1x)
-(27288, 4409, 1), -- MP Increase (1x)
-(27288, 4410, 11), -- Average P. Atk.
-(27288, 4411, 11), -- Average M. Atk.
-(27288, 4412, 18), -- Extremely Strong P. Def.
-(27288, 4413, 11), -- Average M. Def.
-(27288, 4414, 1), -- Heavy Armor Type
-(27288, 4415, 3), -- One-handed Sword
-(27288, 4416, 15), -- Elves
+(27288, 4408, 1), -- HP Modifiers
+(27288, 4409, 1), -- MP Modifiers
+(27288, 4410, 11), -- P. Atk. Modifiers
+(27288, 4411, 11), -- M. Atk. Modifiers
+(27288, 4412, 18), -- P. Def. Modifiers
+(27288, 4413, 11), -- M. Def. Modifiers
+(27288, 4414, 1), -- Armor Type
+(27288, 4415, 3), -- Weapon Type
+(27288, 4416, 15), -- Races
 (27288, 4536, 1), -- Song of Seduce
 (27288, 4537, 1), -- Song of Sweet Whisper
 (27288, 4538, 1), -- Song of Temptation
 -- Ancient Sword Master Iron
 (27289, 1, 37), -- Triple Slash
 (27289, 260, 37), -- Hammer Crush
-(27289, 4032, 8), -- Power Strike
-(27289, 4067, 8), -- Blow
-(27289, 4408, 1), -- HP Increase (1x)
-(27289, 4409, 1), -- MP Increase (1x)
-(27289, 4410, 11), -- Average P. Atk.
-(27289, 4411, 11), -- Average M. Atk.
-(27289, 4412, 18), -- Extremely Strong P. Def.
-(27289, 4413, 11), -- Average M. Def.
-(27289, 4414, 1), -- Heavy Armor Type
-(27289, 4415, 3), -- One-handed Sword
-(27289, 4416, 9), -- Demons
-(27289, 4545, 1), -- Reflect Damage
+(27289, 4032, 8), -- NPC Strike
+(27289, 4067, 8), -- NPC Mortal Blow
+(27289, 4408, 1), -- HP Modifiers
+(27289, 4409, 1), -- MP Modifiers
+(27289, 4410, 11), -- P. Atk. Modifiers
+(27289, 4411, 11), -- M. Atk. Modifiers
+(27289, 4412, 18), -- P. Def. Modifiers
+(27289, 4413, 11), -- M. Def. Modifiers
+(27289, 4414, 1), -- Armor Type
+(27289, 4415, 3), -- Weapon Type
+(27289, 4416, 9), -- Races
+(27289, 4545, 1), -- Quest - BOSS Reflect
 (27289, 4579, 8), -- Bleed
 -- White Wing Commander 
-(27290, 4408, 1), -- HP Increase (1x)
-(27290, 4409, 1), -- MP Increase (1x)
-(27290, 4410, 11), -- Average P. Atk.
-(27290, 4411, 11), -- Average M. Atk.
-(27290, 4412, 11), -- Average P. Def.
-(27290, 4413, 11), -- Average M. Def.
-(27290, 4414, 1), -- Heavy Armor Type
-(27290, 4415, 3), -- One-handed Sword
-(27290, 4416, 8), -- Angels
+(27290, 4408, 1), -- HP Modifiers
+(27290, 4409, 1), -- MP Modifiers
+(27290, 4410, 11), -- P. Atk. Modifiers
+(27290, 4411, 11), -- M. Atk. Modifiers
+(27290, 4412, 11), -- P. Def. Modifiers
+(27290, 4413, 11), -- M. Def. Modifiers
+(27290, 4414, 1), -- Armor Type
+(27290, 4415, 3), -- Weapon Type
+(27290, 4416, 8), -- Races
 -- White Wing Fighter
-(27291, 4408, 1), -- HP Increase (1x)
-(27291, 4409, 1), -- MP Increase (1x)
-(27291, 4410, 11), -- Average P. Atk.
-(27291, 4411, 11), -- Average M. Atk.
-(27291, 4412, 11), -- Average P. Def.
-(27291, 4413, 11), -- Average M. Def.
-(27291, 4414, 1), -- Heavy Armor Type
-(27291, 4415, 4), -- One-handed Sword
-(27291, 4416, 8), -- Angels
-(27291, 4542, 1), -- Resist Sleep/Shock
+(27291, 4408, 1), -- HP Modifiers
+(27291, 4409, 1), -- MP Modifiers
+(27291, 4410, 11), -- P. Atk. Modifiers
+(27291, 4411, 11), -- M. Atk. Modifiers
+(27291, 4412, 11), -- P. Def. Modifiers
+(27291, 4413, 11), -- M. Def. Modifiers
+(27291, 4414, 1), -- Armor Type
+(27291, 4415, 4), -- Weapon Type
+(27291, 4416, 8), -- Races
+(27291, 4542, 1), -- Quest - Henchman 90% Sleep Stun Weakness
 -- Fallen Noble Orc Muhark
 (27292, 190, 37), -- Fatal Strike
 (27292, 260, 37), -- Hammer Crush
-(27292, 4032, 8), -- Power Strike
-(27292, 4067, 8), -- Blow
-(27292, 4408, 1), -- HP Increase (1x)
-(27292, 4409, 1), -- MP Increase (1x)
-(27292, 4410, 11), -- Average P. Atk.
-(27292, 4411, 11), -- Average M. Atk.
-(27292, 4412, 18), -- Extremely Strong P. Def.
-(27292, 4413, 11), -- Average M. Def.
-(27292, 4414, 1), -- Heavy Armor Type
-(27292, 4415, 3), -- One-handed Sword
-(27292, 4416, 6), -- Humanoids
-(27292, 4545, 1), -- Reflect Damage
+(27292, 4032, 8), -- NPC Strike
+(27292, 4067, 8), -- NPC Mortal Blow
+(27292, 4408, 1), -- HP Modifiers
+(27292, 4409, 1), -- MP Modifiers
+(27292, 4410, 11), -- P. Atk. Modifiers
+(27292, 4411, 11), -- M. Atk. Modifiers
+(27292, 4412, 18), -- P. Def. Modifiers
+(27292, 4413, 11), -- M. Def. Modifiers
+(27292, 4414, 1), -- Armor Type
+(27292, 4415, 3), -- Weapon Type
+(27292, 4416, 6), -- Races
+(27292, 4545, 1), -- Quest - BOSS Reflect
 (27292, 4579, 8), -- Bleed
 -- Khavatari Uruz
 (27293, 280, 37), -- Burning Fist
 (27293, 281, 37), -- Soul Breaker
-(27293, 4032, 8), -- Power Strike
-(27293, 4067, 8), -- Blow
-(27293, 4408, 1), -- HP Increase (1x)
-(27293, 4409, 1), -- MP Increase (1x)
-(27293, 4410, 11), -- Average P. Atk.
-(27293, 4411, 11), -- Average M. Atk.
-(27293, 4412, 18), -- Extremely Strong P. Def.
-(27293, 4413, 11), -- Average M. Def.
-(27293, 4414, 1), -- Heavy Armor Type
-(27293, 4415, 3), -- One-handed Sword
-(27293, 4416, 6), -- Humanoids
-(27293, 4545, 1), -- Reflect Damage
+(27293, 4032, 8), -- NPC Strike
+(27293, 4067, 8), -- NPC Mortal Blow
+(27293, 4408, 1), -- HP Modifiers
+(27293, 4409, 1), -- MP Modifiers
+(27293, 4410, 11), -- P. Atk. Modifiers
+(27293, 4411, 11), -- M. Atk. Modifiers
+(27293, 4412, 18), -- P. Def. Modifiers
+(27293, 4413, 11), -- M. Def. Modifiers
+(27293, 4414, 1), -- Armor Type
+(27293, 4415, 3), -- Weapon Type
+(27293, 4416, 6), -- Races
+(27293, 4545, 1), -- Quest - BOSS Reflect
 (27293, 4579, 8), -- Bleed
 -- Overlord Atrus
-(27294, 4032, 8), -- Power Strike
-(27294, 4073, 8), -- Stun
-(27294, 4408, 12), -- HP Increase (4x)
-(27294, 4409, 1), -- MP Increase (1x)
-(27294, 4410, 11), -- Average P. Atk.
-(27294, 4411, 11), -- Average M. Atk.
-(27294, 4412, 11), -- Average P. Def.
-(27294, 4413, 11), -- Average M. Def.
-(27294, 4414, 1), -- Heavy Armor Type
-(27294, 4415, 6), -- Blunt Weapons
-(27294, 4416, 6), -- Humanoids
-(27294, 4543, 1), -- Weakened Shock
-(27294, 4544, 1), -- Weakness
-(27294, 4692, 1), -- Body Enlargement
-(27294, 4693, 1), -- Annul Enlargement
+(27294, 4032, 8), -- NPC Strike
+(27294, 4073, 8), -- Shock
+(27294, 4408, 12), -- HP Modifiers
+(27294, 4409, 1), -- MP Modifiers
+(27294, 4410, 11), -- P. Atk. Modifiers
+(27294, 4411, 11), -- M. Atk. Modifiers
+(27294, 4412, 11), -- P. Def. Modifiers
+(27294, 4413, 11), -- M. Def. Modifiers
+(27294, 4414, 1), -- Armor Type
+(27294, 4415, 6), -- Weapon Type
+(27294, 4416, 6), -- Races
+(27294, 4543, 1), -- Quest - BOSS Stun Weakness
+(27294, 4544, 1), -- Quest - BOSS Weakness
+(27294, 4692, 1), -- Quest BOSS Big Body
+(27294, 4693, 1), -- Quest BOSS Dispel Big Body
 -- Sharuhi Mouth Mudaha
-(27295, 4032, 8), -- Power Strike
-(27295, 4073, 8), -- Stun
-(27295, 4408, 12), -- HP Increase (4x)
-(27295, 4409, 1), -- MP Increase (1x)
-(27295, 4410, 11), -- Average P. Atk.
-(27295, 4411, 11), -- Average M. Atk.
-(27295, 4412, 11), -- Average P. Def.
-(27295, 4413, 11), -- Average M. Def.
-(27295, 4414, 1), -- Heavy Armor Type
-(27295, 4415, 6), -- Blunt Weapons
-(27295, 4416, 6), -- Humanoids
-(27295, 4543, 1), -- Weakened Shock
-(27295, 4544, 1), -- Weakness
-(27295, 4692, 1), -- Body Enlargement
-(27295, 4693, 1), -- Annul Enlargement
+(27295, 4032, 8), -- NPC Strike
+(27295, 4073, 8), -- Shock
+(27295, 4408, 12), -- HP Modifiers
+(27295, 4409, 1), -- MP Modifiers
+(27295, 4410, 11), -- P. Atk. Modifiers
+(27295, 4411, 11), -- M. Atk. Modifiers
+(27295, 4412, 11), -- P. Def. Modifiers
+(27295, 4413, 11), -- M. Def. Modifiers
+(27295, 4414, 1), -- Armor Type
+(27295, 4415, 6), -- Weapon Type
+(27295, 4416, 6), -- Races
+(27295, 4543, 1), -- Quest - BOSS Stun Weakness
+(27295, 4544, 1), -- Quest - BOSS Weakness
+(27295, 4692, 1), -- Quest BOSS Big Body
+(27295, 4693, 1), -- Quest BOSS Dispel Big Body
 -- Monument Watcher Ezekiel
 (27296, 19, 37), -- Double Shot
 (27296, 101, 40), -- Stun Shot
-(27296, 4032, 8), -- Power Strike
-(27296, 4067, 8), -- Blow
-(27296, 4408, 1), -- HP Increase (1x)
-(27296, 4409, 1), -- MP Increase (1x)
-(27296, 4410, 11), -- Average P. Atk.
-(27296, 4411, 11), -- Average M. Atk.
-(27296, 4412, 11), -- Average P. Def.
-(27296, 4413, 11), -- Average M. Def.
-(27296, 4414, 1), -- Heavy Armor Type
-(27296, 4415, 3), -- One-handed Sword
-(27296, 4416, 8), -- Angels
-(27296, 4519, 1), -- Shield
-(27296, 4520, 1), -- Might
-(27296, 4521, 1), -- Resist Bow Attack
+(27296, 4032, 8), -- NPC Strike
+(27296, 4067, 8), -- NPC Mortal Blow
+(27296, 4408, 1), -- HP Modifiers
+(27296, 4409, 1), -- MP Modifiers
+(27296, 4410, 11), -- P. Atk. Modifiers
+(27296, 4411, 11), -- M. Atk. Modifiers
+(27296, 4412, 11), -- P. Def. Modifiers
+(27296, 4413, 11), -- M. Def. Modifiers
+(27296, 4414, 1), -- Armor Type
+(27296, 4415, 3), -- Weapon Type
+(27296, 4416, 8), -- Races
+(27296, 4519, 1), -- Quest - BOSS Defend
+(27296, 4520, 1), -- Quest - BOSS Rampage
+(27296, 4521, 1), -- Quest - BOSS Resist non Bow Weapon
 (27296, 4579, 8), -- Bleed
 -- Monument Watcher Ezekiel
 (27297, 19, 37), -- Double Shot
 (27297, 101, 40), -- Stun Shot
-(27297, 4032, 8), -- Power Strike
-(27297, 4067, 8), -- Blow
-(27297, 4408, 1), -- HP Increase (1x)
-(27297, 4409, 1), -- MP Increase (1x)
-(27297, 4410, 11), -- Average P. Atk.
-(27297, 4411, 11), -- Average M. Atk.
-(27297, 4412, 11), -- Average P. Def.
-(27297, 4413, 11), -- Average M. Def.
-(27297, 4414, 1), -- Heavy Armor Type
-(27297, 4415, 3), -- One-handed Sword
-(27297, 4416, 8), -- Angels
-(27297, 4519, 1), -- Shield
-(27297, 4520, 1), -- Might
-(27297, 4521, 1), -- Resist Bow Attack
+(27297, 4032, 8), -- NPC Strike
+(27297, 4067, 8), -- NPC Mortal Blow
+(27297, 4408, 1), -- HP Modifiers
+(27297, 4409, 1), -- MP Modifiers
+(27297, 4410, 11), -- P. Atk. Modifiers
+(27297, 4411, 11), -- M. Atk. Modifiers
+(27297, 4412, 11), -- P. Def. Modifiers
+(27297, 4413, 11), -- M. Def. Modifiers
+(27297, 4414, 1), -- Armor Type
+(27297, 4415, 3), -- Weapon Type
+(27297, 4416, 8), -- Races
+(27297, 4519, 1), -- Quest - BOSS Defend
+(27297, 4520, 1), -- Quest - BOSS Rampage
+(27297, 4521, 1), -- Quest - BOSS Resist non Bow Weapon
 (27297, 4579, 8), -- Bleed
 -- Monument Watcher Ezekiel
 (27298, 19, 37), -- Double Shot
 (27298, 101, 40), -- Stun Shot
-(27298, 4032, 8), -- Power Strike
-(27298, 4067, 8), -- Blow
-(27298, 4408, 1), -- HP Increase (1x)
-(27298, 4409, 1), -- MP Increase (1x)
-(27298, 4410, 11), -- Average P. Atk.
-(27298, 4411, 11), -- Average M. Atk.
-(27298, 4412, 11), -- Average P. Def.
-(27298, 4413, 11), -- Average M. Def.
-(27298, 4414, 1), -- Heavy Armor Type
-(27298, 4415, 3), -- One-handed Sword
-(27298, 4416, 8), -- Angels
-(27298, 4519, 1), -- Shield
-(27298, 4520, 1), -- Might
-(27298, 4521, 1), -- Resist Bow Attack
+(27298, 4032, 8), -- NPC Strike
+(27298, 4067, 8), -- NPC Mortal Blow
+(27298, 4408, 1), -- HP Modifiers
+(27298, 4409, 1), -- MP Modifiers
+(27298, 4410, 11), -- P. Atk. Modifiers
+(27298, 4411, 11), -- M. Atk. Modifiers
+(27298, 4412, 11), -- P. Def. Modifiers
+(27298, 4413, 11), -- M. Def. Modifiers
+(27298, 4414, 1), -- Armor Type
+(27298, 4415, 3), -- Weapon Type
+(27298, 4416, 8), -- Races
+(27298, 4519, 1), -- Quest - BOSS Defend
+(27298, 4520, 1), -- Quest - BOSS Rampage
+(27298, 4521, 1), -- Quest - BOSS Resist non Bow Weapon
 (27298, 4579, 8), -- Bleed
 -- Monument Watcher Ezekiel
-(27299, 4032, 8), -- Power Strike
-(27299, 4072, 7), -- Stun
-(27299, 4101, 8), -- Whirlwind
-(27299, 4408, 1), -- HP Increase (1x)
-(27299, 4409, 1), -- MP Increase (1x)
-(27299, 4410, 11), -- Average P. Atk.
-(27299, 4411, 11), -- Average M. Atk.
-(27299, 4412, 11), -- Average P. Def.
-(27299, 4413, 11), -- Average M. Def.
-(27299, 4414, 1), -- Heavy Armor Type
-(27299, 4415, 3), -- One-handed Sword
-(27299, 4416, 8), -- Angels
+(27299, 4032, 8), -- NPC Strike
+(27299, 4072, 7), -- Shock
+(27299, 4101, 8), -- NPC Spinning Slash
+(27299, 4408, 1), -- HP Modifiers
+(27299, 4409, 1), -- MP Modifiers
+(27299, 4410, 11), -- P. Atk. Modifiers
+(27299, 4411, 11), -- M. Atk. Modifiers
+(27299, 4412, 11), -- P. Def. Modifiers
+(27299, 4413, 11), -- M. Def. Modifiers
+(27299, 4414, 1), -- Armor Type
+(27299, 4415, 3), -- Weapon Type
+(27299, 4416, 8), -- Races
 (27299, 4522, 1), -- Eye of Assassin
-(27299, 4523, 1), -- Ultimate Evasion
-(27299, 4524, 1), -- Bluff
+(27299, 4523, 1), -- Quest - BOSS Evasion
+(27299, 4524, 1), -- Quest - BOSS Bluff
 -- Monument Watcher Ezekiel
-(27300, 4032, 8), -- Power Strike
-(27300, 4072, 7), -- Stun
-(27300, 4101, 8), -- Whirlwind
-(27300, 4408, 1), -- HP Increase (1x)
-(27300, 4409, 1), -- MP Increase (1x)
-(27300, 4410, 11), -- Average P. Atk.
-(27300, 4411, 11), -- Average M. Atk.
-(27300, 4412, 11), -- Average P. Def.
-(27300, 4413, 11), -- Average M. Def.
-(27300, 4414, 1), -- Heavy Armor Type
-(27300, 4415, 3), -- One-handed Sword
-(27300, 4416, 8), -- Angels
+(27300, 4032, 8), -- NPC Strike
+(27300, 4072, 7), -- Shock
+(27300, 4101, 8), -- NPC Spinning Slash
+(27300, 4408, 1), -- HP Modifiers
+(27300, 4409, 1), -- MP Modifiers
+(27300, 4410, 11), -- P. Atk. Modifiers
+(27300, 4411, 11), -- M. Atk. Modifiers
+(27300, 4412, 11), -- P. Def. Modifiers
+(27300, 4413, 11), -- M. Def. Modifiers
+(27300, 4414, 1), -- Armor Type
+(27300, 4415, 3), -- Weapon Type
+(27300, 4416, 8), -- Races
 (27300, 4522, 1), -- Eye of Assassin
-(27300, 4523, 1), -- Ultimate Evasion
-(27300, 4524, 1), -- Bluff
+(27300, 4523, 1), -- Quest - BOSS Evasion
+(27300, 4524, 1), -- Quest - BOSS Bluff
 -- Monument Watcher Ezekiel
-(27301, 4032, 8), -- Power Strike
-(27301, 4072, 7), -- Stun
-(27301, 4101, 8), -- Whirlwind
-(27301, 4408, 1), -- HP Increase (1x)
-(27301, 4409, 1), -- MP Increase (1x)
-(27301, 4410, 11), -- Average P. Atk.
-(27301, 4411, 11), -- Average M. Atk.
-(27301, 4412, 11), -- Average P. Def.
-(27301, 4413, 11), -- Average M. Def.
-(27301, 4414, 1), -- Heavy Armor Type
-(27301, 4415, 3), -- One-handed Sword
-(27301, 4416, 8), -- Angels
+(27301, 4032, 8), -- NPC Strike
+(27301, 4072, 7), -- Shock
+(27301, 4101, 8), -- NPC Spinning Slash
+(27301, 4408, 1), -- HP Modifiers
+(27301, 4409, 1), -- MP Modifiers
+(27301, 4410, 11), -- P. Atk. Modifiers
+(27301, 4411, 11), -- M. Atk. Modifiers
+(27301, 4412, 11), -- P. Def. Modifiers
+(27301, 4413, 11), -- M. Def. Modifiers
+(27301, 4414, 1), -- Armor Type
+(27301, 4415, 3), -- Weapon Type
+(27301, 4416, 8), -- Races
 (27301, 4522, 1), -- Eye of Assassin
-(27301, 4523, 1), -- Ultimate Evasion
-(27301, 4524, 1), -- Bluff
+(27301, 4523, 1), -- Quest - BOSS Evasion
+(27301, 4524, 1), -- Quest - BOSS Bluff
 -- Monument Defender Azrael
-(27302, 4408, 17), -- HP Increase (9x)
-(27302, 4409, 1), -- MP Increase (1x)
-(27302, 4410, 11), -- Average P. Atk.
-(27302, 4411, 11), -- Average M. Atk.
-(27302, 4412, 11), -- Average P. Def.
-(27302, 4413, 11), -- Average M. Def.
-(27302, 4414, 1), -- Heavy Armor Type
-(27302, 4415, 3), -- One-handed Sword
-(27302, 4416, 8), -- Angels
+(27302, 4408, 17), -- HP Modifiers
+(27302, 4409, 1), -- MP Modifiers
+(27302, 4410, 11), -- P. Atk. Modifiers
+(27302, 4411, 11), -- M. Atk. Modifiers
+(27302, 4412, 11), -- P. Def. Modifiers
+(27302, 4413, 11), -- M. Def. Modifiers
+(27302, 4414, 1), -- Armor Type
+(27302, 4415, 3), -- Weapon Type
+(27302, 4416, 8), -- Races
 -- Monument Defender Azrael
-(27303, 4408, 17), -- HP Increase (9x)
-(27303, 4409, 1), -- MP Increase (1x)
-(27303, 4410, 11), -- Average P. Atk.
-(27303, 4411, 11), -- Average M. Atk.
-(27303, 4412, 11), -- Average P. Def.
-(27303, 4413, 11), -- Average M. Def.
-(27303, 4414, 1), -- Heavy Armor Type
-(27303, 4415, 3), -- One-handed Sword
-(27303, 4416, 8), -- Angels
+(27303, 4408, 17), -- HP Modifiers
+(27303, 4409, 1), -- MP Modifiers
+(27303, 4410, 11), -- P. Atk. Modifiers
+(27303, 4411, 11), -- M. Atk. Modifiers
+(27303, 4412, 11), -- P. Def. Modifiers
+(27303, 4413, 11), -- M. Def. Modifiers
+(27303, 4414, 1), -- Armor Type
+(27303, 4415, 3), -- Weapon Type
+(27303, 4416, 8), -- Races
 -- Monument Defender Azrael
-(27304, 4408, 17), -- HP Increase (9x)
-(27304, 4409, 1), -- MP Increase (1x)
-(27304, 4410, 11), -- Average P. Atk.
-(27304, 4411, 11), -- Average M. Atk.
-(27304, 4412, 11), -- Average P. Def.
-(27304, 4413, 11), -- Average M. Def.
-(27304, 4414, 1), -- Heavy Armor Type
-(27304, 4415, 3), -- One-handed Sword
-(27304, 4416, 8), -- Angels
+(27304, 4408, 17), -- HP Modifiers
+(27304, 4409, 1), -- MP Modifiers
+(27304, 4410, 11), -- P. Atk. Modifiers
+(27304, 4411, 11), -- M. Atk. Modifiers
+(27304, 4412, 11), -- P. Def. Modifiers
+(27304, 4413, 11), -- M. Def. Modifiers
+(27304, 4414, 1), -- Armor Type
+(27304, 4415, 3), -- Weapon Type
+(27304, 4416, 8), -- Races
 -- Monument Defender Azrael
-(27305, 4408, 17), -- HP Increase (9x)
-(27305, 4409, 1), -- MP Increase (1x)
-(27305, 4410, 11), -- Average P. Atk.
-(27305, 4411, 11), -- Average M. Atk.
-(27305, 4412, 11), -- Average P. Def.
-(27305, 4413, 11), -- Average M. Def.
-(27305, 4414, 1), -- Heavy Armor Type
-(27305, 4415, 3), -- One-handed Sword
-(27305, 4416, 8), -- Angels
+(27305, 4408, 17), -- HP Modifiers
+(27305, 4409, 1), -- MP Modifiers
+(27305, 4410, 11), -- P. Atk. Modifiers
+(27305, 4411, 11), -- M. Atk. Modifiers
+(27305, 4412, 11), -- P. Def. Modifiers
+(27305, 4413, 11), -- M. Def. Modifiers
+(27305, 4414, 1), -- Armor Type
+(27305, 4415, 3), -- Weapon Type
+(27305, 4416, 8), -- Races
 -- Monument Defender Azrael
-(27306, 4408, 17), -- HP Increase (9x)
-(27306, 4409, 1), -- MP Increase (1x)
-(27306, 4410, 11), -- Average P. Atk.
-(27306, 4411, 11), -- Average M. Atk.
-(27306, 4412, 11), -- Average P. Def.
-(27306, 4413, 11), -- Average M. Def.
-(27306, 4414, 1), -- Heavy Armor Type
-(27306, 4415, 3), -- One-handed Sword
-(27306, 4416, 8), -- Angels
+(27306, 4408, 17), -- HP Modifiers
+(27306, 4409, 1), -- MP Modifiers
+(27306, 4410, 11), -- P. Atk. Modifiers
+(27306, 4411, 11), -- M. Atk. Modifiers
+(27306, 4412, 11), -- P. Def. Modifiers
+(27306, 4413, 11), -- M. Def. Modifiers
+(27306, 4414, 1), -- Armor Type
+(27306, 4415, 3), -- Weapon Type
+(27306, 4416, 8), -- Races
 -- Monument Defender Azrael
-(27307, 4408, 17), -- HP Increase (9x)
-(27307, 4409, 1), -- MP Increase (1x)
-(27307, 4410, 11), -- Average P. Atk.
-(27307, 4411, 11), -- Average M. Atk.
-(27307, 4412, 11), -- Average P. Def.
-(27307, 4413, 11), -- Average M. Def.
-(27307, 4414, 1), -- Heavy Armor Type
-(27307, 4415, 3), -- One-handed Sword
-(27307, 4416, 8), -- Angels
+(27307, 4408, 17), -- HP Modifiers
+(27307, 4409, 1), -- MP Modifiers
+(27307, 4410, 11), -- P. Atk. Modifiers
+(27307, 4411, 11), -- M. Atk. Modifiers
+(27307, 4412, 11), -- P. Def. Modifiers
+(27307, 4413, 11), -- M. Def. Modifiers
+(27307, 4414, 1), -- Armor Type
+(27307, 4415, 3), -- Weapon Type
+(27307, 4416, 8), -- Races
 -- Assassin Frost
-(27308, 4408, 17), -- HP Increase (9x)
-(27308, 4409, 1), -- MP Increase (1x)
-(27308, 4410, 11), -- Average P. Atk.
-(27308, 4411, 11), -- Average M. Atk.
-(27308, 4412, 11), -- Average P. Def.
-(27308, 4413, 11), -- Average M. Def.
-(27308, 4414, 1), -- Heavy Armor Type
-(27308, 4415, 7), -- Daggers
-(27308, 4416, 9), -- Demons
+(27308, 4408, 17), -- HP Modifiers
+(27308, 4409, 1), -- MP Modifiers
+(27308, 4410, 11), -- P. Atk. Modifiers
+(27308, 4411, 11), -- M. Atk. Modifiers
+(27308, 4412, 11), -- P. Def. Modifiers
+(27308, 4413, 11), -- M. Def. Modifiers
+(27308, 4414, 1), -- Armor Type
+(27308, 4415, 7), -- Weapon Type
+(27308, 4416, 9), -- Races
 -- Minervia Van Hacken
-(27309, 4408, 17), -- HP Increase (9x)
-(27309, 4409, 1), -- MP Increase (1x)
-(27309, 4410, 11), -- Average P. Atk.
-(27309, 4411, 11), -- Average M. Atk.
-(27309, 4412, 11), -- Average P. Def.
-(27309, 4413, 11), -- Average M. Def.
-(27309, 4414, 3), -- Light Armor Type
-(27309, 4415, 7), -- Daggers
-(27309, 4416, 9), -- Demons
+(27309, 4408, 17), -- HP Modifiers
+(27309, 4409, 1), -- MP Modifiers
+(27309, 4410, 11), -- P. Atk. Modifiers
+(27309, 4411, 11), -- M. Atk. Modifiers
+(27309, 4412, 11), -- P. Def. Modifiers
+(27309, 4413, 11), -- M. Def. Modifiers
+(27309, 4414, 3), -- Armor Type
+(27309, 4415, 7), -- Weapon Type
+(27309, 4416, 9), -- Races
 -- Kitanis Van Hacken
-(27310, 4408, 17), -- HP Increase (9x)
-(27310, 4409, 1), -- MP Increase (1x)
-(27310, 4410, 11), -- Average P. Atk.
-(27310, 4411, 11), -- Average M. Atk.
-(27310, 4412, 11), -- Average P. Def.
-(27310, 4413, 11), -- Average M. Def.
-(27310, 4414, 1), -- Heavy Armor Type
-(27310, 4415, 3), -- One-handed Sword
-(27310, 4416, 9), -- Demons
+(27310, 4408, 17), -- HP Modifiers
+(27310, 4409, 1), -- MP Modifiers
+(27310, 4410, 11), -- P. Atk. Modifiers
+(27310, 4411, 11), -- M. Atk. Modifiers
+(27310, 4412, 11), -- P. Def. Modifiers
+(27310, 4413, 11), -- M. Def. Modifiers
+(27310, 4414, 1), -- Armor Type
+(27310, 4415, 3), -- Weapon Type
+(27310, 4416, 9), -- Races
 -- Judgment Hound Dog Kelvas
-(27311, 4408, 17), -- HP Increase (9x)
-(27311, 4409, 1), -- MP Increase (1x)
-(27311, 4410, 11), -- Average P. Atk.
-(27311, 4411, 11), -- Average M. Atk.
-(27311, 4412, 11), -- Average P. Def.
-(27311, 4413, 11), -- Average M. Def.
-(27311, 4414, 1), -- Heavy Armor Type
-(27311, 4415, 3), -- One-handed Sword
-(27311, 4416, 3), -- Beasts
+(27311, 4408, 17), -- HP Modifiers
+(27311, 4409, 1), -- MP Modifiers
+(27311, 4410, 11), -- P. Atk. Modifiers
+(27311, 4411, 11), -- M. Atk. Modifiers
+(27311, 4412, 11), -- P. Def. Modifiers
+(27311, 4413, 11), -- M. Def. Modifiers
+(27311, 4414, 1), -- Armor Type
+(27311, 4415, 3), -- Weapon Type
+(27311, 4416, 3), -- Races
 -- Mysterious Servitor
-(27312, 4408, 17), -- HP Increase (9x)
-(27312, 4409, 1), -- MP Increase (1x)
-(27312, 4410, 11), -- Average P. Atk.
-(27312, 4411, 11), -- Average M. Atk.
-(27312, 4412, 11), -- Average P. Def.
-(27312, 4413, 11), -- Average M. Def.
-(27312, 4414, 3), -- Light Armor Type
-(27312, 4415, 3), -- One-handed Sword
-(27312, 4416, 9), -- Demons
+(27312, 4408, 17), -- HP Modifiers
+(27312, 4409, 1), -- MP Modifiers
+(27312, 4410, 11), -- P. Atk. Modifiers
+(27312, 4411, 11), -- M. Atk. Modifiers
+(27312, 4412, 11), -- P. Def. Modifiers
+(27312, 4413, 11), -- M. Def. Modifiers
+(27312, 4414, 3), -- Armor Type
+(27312, 4415, 3), -- Weapon Type
+(27312, 4416, 9), -- Races
 -- Vision Guardian Shakiel
-(27313, 4032, 8), -- Power Strike
-(27313, 4076, 3), -- Slow
-(27313, 4408, 1), -- HP Increase (1x)
-(27313, 4409, 1), -- MP Increase (1x)
-(27313, 4410, 11), -- Average P. Atk.
-(27313, 4411, 11), -- Average M. Atk.
-(27313, 4412, 11), -- Average P. Def.
-(27313, 4413, 11), -- Average M. Def.
-(27313, 4414, 3), -- Light Armor Type
-(27313, 4415, 5), -- Blunt Weapons
-(27313, 4416, 8), -- Angels
-(27313, 4532, 1), -- Reflect Damage
+(27313, 4032, 8), -- NPC Strike
+(27313, 4076, 3), -- Reduction in movement speed
+(27313, 4408, 1), -- HP Modifiers
+(27313, 4409, 1), -- MP Modifiers
+(27313, 4410, 11), -- P. Atk. Modifiers
+(27313, 4411, 11), -- M. Atk. Modifiers
+(27313, 4412, 11), -- P. Def. Modifiers
+(27313, 4413, 11), -- M. Def. Modifiers
+(27313, 4414, 3), -- Armor Type
+(27313, 4415, 5), -- Weapon Type
+(27313, 4416, 8), -- Races
+(27313, 4532, 1), -- Quest - BOSS Reflect
 -- Vision Guardian Shakiel
-(27314, 4032, 8), -- Power Strike
-(27314, 4076, 3), -- Slow
-(27314, 4408, 1), -- HP Increase (1x)
-(27314, 4409, 1), -- MP Increase (1x)
-(27314, 4410, 11), -- Average P. Atk.
-(27314, 4411, 11), -- Average M. Atk.
-(27314, 4412, 11), -- Average P. Def.
-(27314, 4413, 11), -- Average M. Def.
-(27314, 4414, 3), -- Light Armor Type
-(27314, 4415, 5), -- Blunt Weapons
-(27314, 4416, 8), -- Angels
-(27314, 4532, 1), -- Reflect Damage
+(27314, 4032, 8), -- NPC Strike
+(27314, 4076, 3), -- Reduction in movement speed
+(27314, 4408, 1), -- HP Modifiers
+(27314, 4409, 1), -- MP Modifiers
+(27314, 4410, 11), -- P. Atk. Modifiers
+(27314, 4411, 11), -- M. Atk. Modifiers
+(27314, 4412, 11), -- P. Def. Modifiers
+(27314, 4413, 11), -- M. Def. Modifiers
+(27314, 4414, 3), -- Armor Type
+(27314, 4415, 5), -- Weapon Type
+(27314, 4416, 8), -- Races
+(27314, 4532, 1), -- Quest - BOSS Reflect
 -- Vision Guardian Shakiel
-(27315, 4032, 8), -- Power Strike
-(27315, 4076, 3), -- Slow
-(27315, 4408, 1), -- HP Increase (1x)
-(27315, 4409, 1), -- MP Increase (1x)
-(27315, 4410, 11), -- Average P. Atk.
-(27315, 4411, 11), -- Average M. Atk.
-(27315, 4412, 11), -- Average P. Def.
-(27315, 4413, 11), -- Average M. Def.
-(27315, 4414, 3), -- Light Armor Type
-(27315, 4415, 5), -- Blunt Weapons
-(27315, 4416, 8), -- Angels
-(27315, 4532, 1), -- Reflect Damage
+(27315, 4032, 8), -- NPC Strike
+(27315, 4076, 3), -- Reduction in movement speed
+(27315, 4408, 1), -- HP Modifiers
+(27315, 4409, 1), -- MP Modifiers
+(27315, 4410, 11), -- P. Atk. Modifiers
+(27315, 4411, 11), -- M. Atk. Modifiers
+(27315, 4412, 11), -- P. Def. Modifiers
+(27315, 4413, 11), -- M. Def. Modifiers
+(27315, 4414, 3), -- Armor Type
+(27315, 4415, 5), -- Weapon Type
+(27315, 4416, 8), -- Races
+(27315, 4532, 1), -- Quest - BOSS Reflect
 -- Fallen Chieftain Vegus
-(27316, 4408, 1), -- HP Increase (1x)
-(27316, 4409, 1), -- MP Increase (1x)
-(27316, 4410, 11), -- Average P. Atk.
-(27316, 4411, 11), -- Average M. Atk.
-(27316, 4412, 11), -- Average P. Def.
-(27316, 4413, 11), -- Average M. Def.
-(27316, 4414, 3), -- Light Armor Type
-(27316, 4415, 5), -- Blunt Weapons
-(27316, 4416, 6), -- Humanoids
+(27316, 4408, 1), -- HP Modifiers
+(27316, 4409, 1), -- MP Modifiers
+(27316, 4410, 11), -- P. Atk. Modifiers
+(27316, 4411, 11), -- M. Atk. Modifiers
+(27316, 4412, 11), -- P. Def. Modifiers
+(27316, 4413, 11), -- M. Def. Modifiers
+(27316, 4414, 3), -- Armor Type
+(27316, 4415, 5), -- Weapon Type
+(27316, 4416, 6), -- Races
 -- Restrainer of Glory
-(27317, 4408, 1), -- HP Increase (1x)
-(27317, 4409, 1), -- MP Increase (1x)
-(27317, 4410, 11), -- Average P. Atk.
-(27317, 4411, 11), -- Average M. Atk.
-(27317, 4412, 11), -- Average P. Def.
-(27317, 4413, 11), -- Average M. Def.
-(27317, 4414, 3), -- Light Armor Type
-(27317, 4415, 5), -- Blunt Weapons
-(27317, 4416, 8), -- Angels
+(27317, 4408, 1), -- HP Modifiers
+(27317, 4409, 1), -- MP Modifiers
+(27317, 4410, 11), -- P. Atk. Modifiers
+(27317, 4411, 11), -- M. Atk. Modifiers
+(27317, 4412, 11), -- P. Def. Modifiers
+(27317, 4413, 11), -- M. Def. Modifiers
+(27317, 4414, 3), -- Armor Type
+(27317, 4415, 5), -- Weapon Type
+(27317, 4416, 8), -- Races
 -- Wendy's Guardian
-(27318, 4408, 1), -- HP Increase (1x)
-(27318, 4409, 1), -- MP Increase (1x)
-(27318, 4410, 11), -- Average P. Atk.
-(27318, 4411, 11), -- Average M. Atk.
-(27318, 4412, 14), -- Strong P. Def.
-(27318, 4413, 11), -- Average M. Def.
-(27318, 4414, 1), -- Heavy Armor Type
-(27318, 4415, 3), -- One-handed Sword
-(27318, 4416, 2), -- Magic Creatures
+(27318, 4408, 1), -- HP Modifiers
+(27318, 4409, 1), -- MP Modifiers
+(27318, 4410, 11), -- P. Atk. Modifiers
+(27318, 4411, 11), -- M. Atk. Modifiers
+(27318, 4412, 14), -- P. Def. Modifiers
+(27318, 4413, 11), -- M. Def. Modifiers
+(27318, 4414, 1), -- Armor Type
+(27318, 4415, 3), -- Weapon Type
+(27318, 4416, 2), -- Races
 -- Black Leopard
-(27319, 4408, 1), -- HP Increase (1x)
-(27319, 4409, 1), -- MP Increase (1x)
-(27319, 4410, 13), -- Slightly Strong P. Atk.
-(27319, 4411, 11), -- Average M. Atk.
-(27319, 4412, 12), -- Slightly Strong P. Def.
-(27319, 4413, 11), -- Average M. Def.
-(27319, 4414, 2), -- Standard Type
-(27319, 4415, 3), -- One-handed Sword
-(27319, 4416, 3), -- Beasts
+(27319, 4408, 1), -- HP Modifiers
+(27319, 4409, 1), -- MP Modifiers
+(27319, 4410, 13), -- P. Atk. Modifiers
+(27319, 4411, 11), -- M. Atk. Modifiers
+(27319, 4412, 12), -- P. Def. Modifiers
+(27319, 4413, 11), -- M. Def. Modifiers
+(27319, 4414, 2), -- Armor Type
+(27319, 4415, 3), -- Weapon Type
+(27319, 4416, 3), -- Races
 -- Timora Orc
-(27320, 4408, 1), -- HP Increase (1x)
-(27320, 4409, 1), -- MP Increase (1x)
-(27320, 4410, 11), -- Average P. Atk.
-(27320, 4411, 11), -- Average M. Atk.
-(27320, 4412, 11), -- Average P. Def.
-(27320, 4413, 11), -- Average M. Def.
-(27320, 4414, 2), -- Standard Type
-(27320, 4415, 3), -- One-handed Sword
-(27320, 4416, 6), -- Humanoids
+(27320, 4408, 1), -- HP Modifiers
+(27320, 4409, 1), -- MP Modifiers
+(27320, 4410, 11), -- P. Atk. Modifiers
+(27320, 4411, 11), -- M. Atk. Modifiers
+(27320, 4412, 11), -- P. Def. Modifiers
+(27320, 4413, 11), -- M. Def. Modifiers
+(27320, 4414, 2), -- Armor Type
+(27320, 4415, 3), -- Weapon Type
+(27320, 4416, 6), -- Races
 -- Bruin Lizardman
-(27321, 4408, 1), -- HP Increase (1x)
-(27321, 4409, 1), -- MP Increase (1x)
-(27321, 4410, 11), -- Average P. Atk.
-(27321, 4411, 11), -- Average M. Atk.
-(27321, 4412, 11), -- Average P. Def.
-(27321, 4413, 11), -- Average M. Def.
-(27321, 4414, 2), -- Standard Type
-(27321, 4415, 5), -- Blunt Weapons
-(27321, 4416, 6), -- Humanoids
+(27321, 4408, 1), -- HP Modifiers
+(27321, 4409, 1), -- MP Modifiers
+(27321, 4410, 11), -- P. Atk. Modifiers
+(27321, 4411, 11), -- M. Atk. Modifiers
+(27321, 4412, 11), -- P. Def. Modifiers
+(27321, 4413, 11), -- M. Def. Modifiers
+(27321, 4414, 2), -- Armor Type
+(27321, 4415, 5), -- Weapon Type
+(27321, 4416, 6), -- Races
 -- Picot Araneid
-(27322, 4408, 1), -- HP Increase (1x)
-(27322, 4409, 1), -- MP Increase (1x)
-(27322, 4410, 11), -- Average P. Atk.
-(27322, 4411, 11), -- Average M. Atk.
-(27322, 4412, 11), -- Average P. Def.
-(27322, 4413, 11), -- Average M. Def.
-(27322, 4414, 2), -- Standard Type
-(27322, 4415, 5), -- Blunt Weapons
-(27322, 4416, 12), -- Bugs
+(27322, 4408, 1), -- HP Modifiers
+(27322, 4409, 1), -- MP Modifiers
+(27322, 4410, 11), -- P. Atk. Modifiers
+(27322, 4411, 11), -- M. Atk. Modifiers
+(27322, 4412, 11), -- P. Def. Modifiers
+(27322, 4413, 11), -- M. Def. Modifiers
+(27322, 4414, 2), -- Armor Type
+(27322, 4415, 5), -- Weapon Type
+(27322, 4416, 12), -- Races
 -- Divine Emissary
-(27323, 4408, 1), -- HP Increase (1x)
-(27323, 4409, 1), -- MP Increase (1x)
-(27323, 4410, 11), -- Average P. Atk.
-(27323, 4411, 11), -- Average M. Atk.
-(27323, 4412, 11), -- Average P. Def.
-(27323, 4413, 11), -- Average M. Def.
-(27323, 4414, 2), -- Standard Type
-(27323, 4415, 3), -- One-handed Sword
-(27323, 4416, 8), -- Angels
+(27323, 4408, 1), -- HP Modifiers
+(27323, 4409, 1), -- MP Modifiers
+(27323, 4410, 11), -- P. Atk. Modifiers
+(27323, 4411, 11), -- M. Atk. Modifiers
+(27323, 4412, 11), -- P. Def. Modifiers
+(27323, 4413, 11), -- M. Def. Modifiers
+(27323, 4414, 2), -- Armor Type
+(27323, 4415, 3), -- Weapon Type
+(27323, 4416, 8), -- Races
 -- Vision Guard Eranus
 (27324, 485, 7), -- Disarm
 (27324, 494, 1), -- Shoulder Charge
-(27324, 4032, 8), -- Power Strike
-(27324, 4067, 8), -- Blow
-(27324, 4408, 1), -- HP Increase (1x)
-(27324, 4409, 1), -- MP Increase (1x)
-(27324, 4410, 11), -- Average P. Atk.
-(27324, 4411, 11), -- Average M. Atk.
-(27324, 4412, 11), -- Average P. Def.
-(27324, 4413, 11), -- Average M. Def.
-(27324, 4414, 2), -- Standard Type
-(27324, 4415, 3), -- One-handed Sword
-(27324, 4416, 8), -- Angels
-(27324, 4545, 1), -- Reflect Damage
+(27324, 4032, 8), -- NPC Strike
+(27324, 4067, 8), -- NPC Mortal Blow
+(27324, 4408, 1), -- HP Modifiers
+(27324, 4409, 1), -- MP Modifiers
+(27324, 4410, 11), -- P. Atk. Modifiers
+(27324, 4411, 11), -- M. Atk. Modifiers
+(27324, 4412, 11), -- P. Def. Modifiers
+(27324, 4413, 11), -- M. Def. Modifiers
+(27324, 4414, 2), -- Armor Type
+(27324, 4415, 3), -- Weapon Type
+(27324, 4416, 8), -- Races
+(27324, 4545, 1), -- Quest - BOSS Reflect
 (27324, 4579, 8), -- Bleed
 -- Archon of Halisha
-(27325, 4408, 1), -- HP Increase (1x)
-(27325, 4409, 1), -- MP Increase (1x)
-(27325, 4410, 11), -- Average P. Atk.
-(27325, 4411, 11), -- Average M. Atk.
-(27325, 4412, 11), -- Average P. Def.
-(27325, 4413, 11), -- Average M. Def.
-(27325, 4414, 1), -- Heavy Armor Type
-(27325, 4415, 4), -- One-handed Sword
-(27325, 4416, 9), -- Demons
+(27325, 4408, 1), -- HP Modifiers
+(27325, 4409, 1), -- MP Modifiers
+(27325, 4410, 11), -- P. Atk. Modifiers
+(27325, 4411, 11), -- M. Atk. Modifiers
+(27325, 4412, 11), -- P. Def. Modifiers
+(27325, 4413, 11), -- M. Def. Modifiers
+(27325, 4414, 1), -- Armor Type
+(27325, 4415, 4), -- Weapon Type
+(27325, 4416, 9), -- Races
 -- Archangel Kanriel
-(27326, 4408, 1), -- HP Increase (1x)
-(27326, 4409, 1), -- MP Increase (1x)
-(27326, 4410, 11), -- Average P. Atk.
-(27326, 4411, 11), -- Average M. Atk.
-(27326, 4412, 11), -- Average P. Def.
-(27326, 4413, 11), -- Average M. Def.
-(27326, 4414, 2), -- Standard Type
-(27326, 4415, 11), -- Spears
-(27326, 4416, 8), -- Angels
+(27326, 4408, 1), -- HP Modifiers
+(27326, 4409, 1), -- MP Modifiers
+(27326, 4410, 11), -- P. Atk. Modifiers
+(27326, 4411, 11), -- M. Atk. Modifiers
+(27326, 4412, 11), -- P. Def. Modifiers
+(27326, 4413, 11), -- M. Def. Modifiers
+(27326, 4414, 2), -- Armor Type
+(27326, 4415, 11), -- Weapon Type
+(27326, 4416, 8), -- Races
 -- Zakorel's Executor
-(27327, 4032, 8), -- Power Strike
-(27327, 4072, 7), -- Stun
-(27327, 4101, 8), -- Whirlwind
-(27327, 4408, 1), -- HP Increase (1x)
-(27327, 4409, 1), -- MP Increase (1x)
-(27327, 4410, 11), -- Average P. Atk.
-(27327, 4411, 11), -- Average M. Atk.
-(27327, 4412, 11), -- Average P. Def.
-(27327, 4413, 11), -- Average M. Def.
-(27327, 4414, 2), -- Standard Type
-(27327, 4415, 3), -- One-handed Sword
-(27327, 4416, 8), -- Angels
+(27327, 4032, 8), -- NPC Strike
+(27327, 4072, 7), -- Shock
+(27327, 4101, 8), -- NPC Spinning Slash
+(27327, 4408, 1), -- HP Modifiers
+(27327, 4409, 1), -- MP Modifiers
+(27327, 4410, 11), -- P. Atk. Modifiers
+(27327, 4411, 11), -- M. Atk. Modifiers
+(27327, 4412, 11), -- P. Def. Modifiers
+(27327, 4413, 11), -- M. Def. Modifiers
+(27327, 4414, 2), -- Armor Type
+(27327, 4415, 3), -- Weapon Type
+(27327, 4416, 8), -- Races
 (27327, 4522, 1), -- Eye of Assassin
-(27327, 4523, 1), -- Ultimate Evasion
-(27327, 4524, 1), -- Bluff
+(27327, 4523, 1), -- Quest - BOSS Evasion
+(27327, 4524, 1), -- Quest - BOSS Bluff
 -- Zakorel
-(27328, 4408, 1), -- HP Increase (1x)
-(27328, 4409, 1), -- MP Increase (1x)
-(27328, 4410, 11), -- Average P. Atk.
-(27328, 4411, 11), -- Average M. Atk.
-(27328, 4412, 11), -- Average P. Def.
-(27328, 4413, 11), -- Average M. Def.
-(27328, 4414, 2), -- Standard Type
-(27328, 4415, 3), -- One-handed Sword
-(27328, 4416, 8), -- Angels
+(27328, 4408, 1), -- HP Modifiers
+(27328, 4409, 1), -- MP Modifiers
+(27328, 4410, 11), -- P. Atk. Modifiers
+(27328, 4411, 11), -- M. Atk. Modifiers
+(27328, 4412, 11), -- P. Def. Modifiers
+(27328, 4413, 11), -- M. Def. Modifiers
+(27328, 4414, 2), -- Armor Type
+(27328, 4415, 3), -- Weapon Type
+(27328, 4416, 8), -- Races
 -- Archon of Halisha
-(27329, 4408, 1), -- HP Increase (1x)
-(27329, 4409, 1), -- MP Increase (1x)
-(27329, 4410, 11), -- Average P. Atk.
-(27329, 4411, 11), -- Average M. Atk.
-(27329, 4412, 11), -- Average P. Def.
-(27329, 4413, 11), -- Average M. Def.
-(27329, 4414, 1), -- Heavy Armor Type
-(27329, 4415, 4), -- One-handed Sword
-(27329, 4416, 9), -- Demons
+(27329, 4408, 1), -- HP Modifiers
+(27329, 4409, 1), -- MP Modifiers
+(27329, 4410, 11), -- P. Atk. Modifiers
+(27329, 4411, 11), -- M. Atk. Modifiers
+(27329, 4412, 11), -- P. Def. Modifiers
+(27329, 4413, 11), -- M. Def. Modifiers
+(27329, 4414, 1), -- Armor Type
+(27329, 4415, 4), -- Weapon Type
+(27329, 4416, 9), -- Races
 -- Guardian Angel
-(27332, 4408, 1), -- HP Increase (1x)
-(27332, 4409, 1), -- MP Increase (1x)
-(27332, 4410, 11), -- Average P. Atk.
-(27332, 4411, 11), -- Average M. Atk.
-(27332, 4412, 11), -- Average P. Def.
-(27332, 4413, 11), -- Average M. Def.
-(27332, 4414, 2), -- Standard Type
-(27332, 4415, 3), -- One-handed Sword
-(27332, 4416, 8), -- Angels
+(27332, 4408, 1), -- HP Modifiers
+(27332, 4409, 1), -- MP Modifiers
+(27332, 4410, 11), -- P. Atk. Modifiers
+(27332, 4411, 11), -- M. Atk. Modifiers
+(27332, 4412, 11), -- P. Def. Modifiers
+(27332, 4413, 11), -- M. Def. Modifiers
+(27332, 4414, 2), -- Armor Type
+(27332, 4415, 3), -- Weapon Type
+(27332, 4416, 8), -- Races
 -- Crimson Duchess
 (27333, 507, 1), -- Twin Shot
 (27333, 1435, 2), -- Death Mark
-(27333, 4032, 8), -- Power Strike
-(27333, 4067, 8), -- Blow
-(27333, 4408, 1), -- HP Increase (1x)
-(27333, 4409, 1), -- MP Increase (1x)
-(27333, 4410, 11), -- Average P. Atk.
-(27333, 4411, 11), -- Average M. Atk.
-(27333, 4412, 11), -- Average P. Def.
-(27333, 4413, 11), -- Average M. Def.
-(27333, 4414, 2), -- Standard Type
-(27333, 4415, 1), -- Bare Hands
-(27333, 4416, 9), -- Demons
-(27333, 4545, 1), -- Reflect Damage
+(27333, 4032, 8), -- NPC Strike
+(27333, 4067, 8), -- NPC Mortal Blow
+(27333, 4408, 1), -- HP Modifiers
+(27333, 4409, 1), -- MP Modifiers
+(27333, 4410, 11), -- P. Atk. Modifiers
+(27333, 4411, 11), -- M. Atk. Modifiers
+(27333, 4412, 11), -- P. Def. Modifiers
+(27333, 4413, 11), -- M. Def. Modifiers
+(27333, 4414, 2), -- Armor Type
+(27333, 4415, 1), -- Weapon Type
+(27333, 4416, 9), -- Races
+(27333, 4545, 1), -- Quest - BOSS Reflect
 (27333, 4579, 8), -- Bleed
 -- Archon of Halisha
-(27334, 4408, 1), -- HP Increase (1x)
-(27334, 4409, 1), -- MP Increase (1x)
-(27334, 4410, 11), -- Average P. Atk.
-(27334, 4411, 11), -- Average M. Atk.
-(27334, 4412, 11), -- Average P. Def.
-(27334, 4413, 11), -- Average M. Def.
-(27334, 4414, 1), -- Heavy Armor Type
-(27334, 4415, 4), -- One-handed Sword
-(27334, 4416, 9), -- Demons
+(27334, 4408, 1), -- HP Modifiers
+(27334, 4409, 1), -- MP Modifiers
+(27334, 4410, 11), -- P. Atk. Modifiers
+(27334, 4411, 11), -- M. Atk. Modifiers
+(27334, 4412, 11), -- P. Def. Modifiers
+(27334, 4413, 11), -- M. Def. Modifiers
+(27334, 4414, 1), -- Armor Type
+(27334, 4415, 4), -- Weapon Type
+(27334, 4416, 9), -- Races
 -- Dark Angel Othiel
-(27335, 4408, 1), -- HP Increase (1x)
-(27335, 4409, 1), -- MP Increase (1x)
-(27335, 4410, 11), -- Average P. Atk.
-(27335, 4411, 11), -- Average M. Atk.
-(27335, 4412, 11), -- Average P. Def.
-(27335, 4413, 11), -- Average M. Def.
-(27335, 4414, 1), -- Heavy Armor Type
-(27335, 4415, 3), -- One-handed Sword
-(27335, 4416, 8), -- Angels
+(27335, 4408, 1), -- HP Modifiers
+(27335, 4409, 1), -- MP Modifiers
+(27335, 4410, 11), -- P. Atk. Modifiers
+(27335, 4411, 11), -- M. Atk. Modifiers
+(27335, 4412, 11), -- P. Def. Modifiers
+(27335, 4413, 11), -- M. Def. Modifiers
+(27335, 4414, 1), -- Armor Type
+(27335, 4415, 3), -- Weapon Type
+(27335, 4416, 8), -- Races
 -- Crimson Lady
-(27336, 4002, 3), -- HP Drain
-(27336, 4408, 1), -- HP Increase (1x)
-(27336, 4409, 1), -- MP Increase (1x)
-(27336, 4410, 11), -- Average P. Atk.
-(27336, 4411, 11), -- Average M. Atk.
-(27336, 4412, 11), -- Average P. Def.
-(27336, 4413, 11), -- Average M. Def.
-(27336, 4414, 2), -- Standard Type
-(27336, 4415, 3), -- One-handed Sword
-(27336, 4416, 9), -- Demons
+(27336, 4002, 3), -- NPC HP Drain
+(27336, 4408, 1), -- HP Modifiers
+(27336, 4409, 1), -- MP Modifiers
+(27336, 4410, 11), -- P. Atk. Modifiers
+(27336, 4411, 11), -- M. Atk. Modifiers
+(27336, 4412, 11), -- P. Def. Modifiers
+(27336, 4413, 11), -- M. Def. Modifiers
+(27336, 4414, 2), -- Armor Type
+(27336, 4415, 3), -- Weapon Type
+(27336, 4416, 9), -- Races
 -- Ol Mahum Officer Tak
-(27337, 4408, 1), -- HP Increase (1x)
-(27337, 4409, 1), -- MP Increase (1x)
-(27337, 4410, 11), -- Average P. Atk.
-(27337, 4411, 11), -- Average M. Atk.
-(27337, 4412, 11), -- Average P. Def.
-(27337, 4413, 11), -- Average M. Def.
-(27337, 4414, 2), -- Standard Type
-(27337, 4415, 3), -- One-handed Sword
-(27337, 4416, 6), -- Humanoids
+(27337, 4408, 1), -- HP Modifiers
+(27337, 4409, 1), -- MP Modifiers
+(27337, 4410, 11), -- P. Atk. Modifiers
+(27337, 4411, 11), -- M. Atk. Modifiers
+(27337, 4412, 11), -- P. Def. Modifiers
+(27337, 4413, 11), -- M. Def. Modifiers
+(27337, 4414, 2), -- Armor Type
+(27337, 4415, 3), -- Weapon Type
+(27337, 4416, 6), -- Races
 -- Fallen Angel
-(27338, 4408, 1), -- HP Increase (1x)
-(27338, 4409, 1), -- MP Increase (1x)
-(27338, 4410, 11), -- Average P. Atk.
-(27338, 4411, 11), -- Average M. Atk.
-(27338, 4412, 11), -- Average P. Def.
-(27338, 4413, 11), -- Average M. Def.
-(27338, 4414, 3), -- Light Armor Type
-(27338, 4415, 3), -- One-handed Sword
-(27338, 4416, 8), -- Angels
+(27338, 4408, 1), -- HP Modifiers
+(27338, 4409, 1), -- MP Modifiers
+(27338, 4410, 11), -- P. Atk. Modifiers
+(27338, 4411, 11), -- M. Atk. Modifiers
+(27338, 4412, 11), -- P. Def. Modifiers
+(27338, 4413, 11), -- M. Def. Modifiers
+(27338, 4414, 3), -- Armor Type
+(27338, 4415, 3), -- Weapon Type
+(27338, 4416, 8), -- Races
 -- Cruma Marshlands Traitor
-(27339, 4408, 1), -- HP Increase (1x)
-(27339, 4409, 1), -- MP Increase (1x)
-(27339, 4410, 11), -- Average P. Atk.
-(27339, 4411, 11), -- Average M. Atk.
-(27339, 4412, 11), -- Average P. Def.
-(27339, 4413, 11), -- Average M. Def.
-(27339, 4414, 3), -- Light Armor Type
-(27339, 4415, 5), -- Blunt Weapons
-(27339, 4416, 9), -- Demons
+(27339, 4408, 1), -- HP Modifiers
+(27339, 4409, 1), -- MP Modifiers
+(27339, 4410, 11), -- P. Atk. Modifiers
+(27339, 4411, 11), -- M. Atk. Modifiers
+(27339, 4412, 11), -- P. Def. Modifiers
+(27339, 4413, 11), -- M. Def. Modifiers
+(27339, 4414, 3), -- Armor Type
+(27339, 4415, 5), -- Weapon Type
+(27339, 4416, 9), -- Races
 -- Pursuer
-(27340, 4408, 1), -- HP Increase (1x)
-(27340, 4409, 1), -- MP Increase (1x)
-(27340, 4410, 11), -- Average P. Atk.
-(27340, 4411, 11), -- Average M. Atk.
-(27340, 4412, 11), -- Average P. Def.
-(27340, 4413, 11), -- Average M. Def.
-(27340, 4414, 2), -- Standard Type
-(27340, 4415, 3), -- One-handed Sword
-(27340, 4416, 6), -- Humanoids
+(27340, 4408, 1), -- HP Modifiers
+(27340, 4409, 1), -- MP Modifiers
+(27340, 4410, 11), -- P. Atk. Modifiers
+(27340, 4411, 11), -- M. Atk. Modifiers
+(27340, 4412, 11), -- P. Def. Modifiers
+(27340, 4413, 11), -- M. Def. Modifiers
+(27340, 4414, 2), -- Armor Type
+(27340, 4415, 3), -- Weapon Type
+(27340, 4416, 6), -- Races
 -- Shilen's Evil Thoughts
-(27341, 4408, 1), -- HP Increase (1x)
-(27341, 4409, 1), -- MP Increase (1x)
-(27341, 4410, 11), -- Average P. Atk.
-(27341, 4411, 11), -- Average M. Atk.
-(27341, 4412, 11), -- Average P. Def.
-(27341, 4413, 11), -- Average M. Def.
-(27341, 4414, 2), -- Standard Type
-(27341, 4415, 3), -- One-handed Sword
-(27341, 4416, 19), -- Others
+(27341, 4408, 1), -- HP Modifiers
+(27341, 4409, 1), -- MP Modifiers
+(27341, 4410, 11), -- P. Atk. Modifiers
+(27341, 4411, 11), -- M. Atk. Modifiers
+(27341, 4412, 11), -- P. Def. Modifiers
+(27341, 4413, 11), -- M. Def. Modifiers
+(27341, 4414, 2), -- Armor Type
+(27341, 4415, 3), -- Weapon Type
+(27341, 4416, 19), -- Races
 (27341, 5975, 1), -- Dark Attack
 (27341, 5976, 1), -- Dark Storm
 -- Shilen's Evil Thoughts
-(27342, 4408, 1), -- HP Increase (1x)
-(27342, 4409, 1), -- MP Increase (1x)
-(27342, 4410, 11), -- Average P. Atk.
-(27342, 4411, 11), -- Average M. Atk.
-(27342, 4412, 11), -- Average P. Def.
-(27342, 4413, 11), -- Average M. Def.
-(27342, 4414, 2), -- Standard Type
-(27342, 4415, 3), -- One-handed Sword
-(27342, 4416, 19), -- Others
+(27342, 4408, 1), -- HP Modifiers
+(27342, 4409, 1), -- MP Modifiers
+(27342, 4410, 11), -- P. Atk. Modifiers
+(27342, 4411, 11), -- M. Atk. Modifiers
+(27342, 4412, 11), -- P. Def. Modifiers
+(27342, 4413, 11), -- M. Def. Modifiers
+(27342, 4414, 2), -- Armor Type
+(27342, 4415, 3), -- Weapon Type
+(27342, 4416, 19), -- Races
 (27342, 5975, 2), -- Dark Attack
 (27342, 5976, 2), -- Dark Storm
 -- Shilen's Evil Thoughts
-(27343, 4408, 1), -- HP Increase (1x)
-(27343, 4409, 1), -- MP Increase (1x)
-(27343, 4410, 11), -- Average P. Atk.
-(27343, 4411, 11), -- Average M. Atk.
-(27343, 4412, 11), -- Average P. Def.
-(27343, 4413, 11), -- Average M. Def.
-(27343, 4414, 2), -- Standard Type
-(27343, 4415, 3), -- One-handed Sword
-(27343, 4416, 9), -- Demons
+(27343, 4408, 1), -- HP Modifiers
+(27343, 4409, 1), -- MP Modifiers
+(27343, 4410, 11), -- P. Atk. Modifiers
+(27343, 4411, 11), -- M. Atk. Modifiers
+(27343, 4412, 11), -- P. Def. Modifiers
+(27343, 4413, 11), -- M. Def. Modifiers
+(27343, 4414, 2), -- Armor Type
+(27343, 4415, 3), -- Weapon Type
+(27343, 4416, 9), -- Races
 (27343, 5467, 1), -- Dark Attacks
 (27343, 5975, 3), -- Dark Attack
 (27343, 5976, 3), -- Dark Storm
 -- Shilen's Evil Thoughts
-(27344, 4408, 1), -- HP Increase (1x)
-(27344, 4409, 1), -- MP Increase (1x)
-(27344, 4410, 11), -- Average P. Atk.
-(27344, 4411, 11), -- Average M. Atk.
-(27344, 4412, 11), -- Average P. Def.
-(27344, 4413, 11), -- Average M. Def.
-(27344, 4414, 2), -- Standard Type
-(27344, 4415, 3), -- One-handed Sword
-(27344, 4416, 19), -- Others
+(27344, 4408, 1), -- HP Modifiers
+(27344, 4409, 1), -- MP Modifiers
+(27344, 4410, 11), -- P. Atk. Modifiers
+(27344, 4411, 11), -- M. Atk. Modifiers
+(27344, 4412, 11), -- P. Def. Modifiers
+(27344, 4413, 11), -- M. Def. Modifiers
+(27344, 4414, 2), -- Armor Type
+(27344, 4415, 3), -- Weapon Type
+(27344, 4416, 19), -- Races
 (27344, 5975, 1), -- Dark Attack
 (27344, 5976, 1), -- Dark Storm
 (27344, 5977, 1), -- Dark Strike
 -- Shilen's Evil Thoughts
-(27345, 4408, 1), -- HP Increase (1x)
-(27345, 4409, 1), -- MP Increase (1x)
-(27345, 4410, 11), -- Average P. Atk.
-(27345, 4411, 11), -- Average M. Atk.
-(27345, 4412, 11), -- Average P. Def.
-(27345, 4413, 11), -- Average M. Def.
-(27345, 4414, 2), -- Standard Type
-(27345, 4415, 3), -- One-handed Sword
-(27345, 4416, 19), -- Others
+(27345, 4408, 1), -- HP Modifiers
+(27345, 4409, 1), -- MP Modifiers
+(27345, 4410, 11), -- P. Atk. Modifiers
+(27345, 4411, 11), -- M. Atk. Modifiers
+(27345, 4412, 11), -- P. Def. Modifiers
+(27345, 4413, 11), -- M. Def. Modifiers
+(27345, 4414, 2), -- Armor Type
+(27345, 4415, 3), -- Weapon Type
+(27345, 4416, 19), -- Races
 (27345, 5975, 2), -- Dark Attack
 (27345, 5976, 2), -- Dark Storm
 (27345, 5977, 2), -- Dark Strike
 -- Shilen's Evil Thoughts
-(27346, 4408, 1), -- HP Increase (1x)
-(27346, 4409, 1), -- MP Increase (1x)
-(27346, 4410, 11), -- Average P. Atk.
-(27346, 4411, 11), -- Average M. Atk.
-(27346, 4412, 11), -- Average P. Def.
-(27346, 4413, 11), -- Average M. Def.
-(27346, 4414, 2), -- Standard Type
-(27346, 4415, 3), -- One-handed Sword
-(27346, 4416, 9), -- Demons
+(27346, 4408, 1), -- HP Modifiers
+(27346, 4409, 1), -- MP Modifiers
+(27346, 4410, 11), -- P. Atk. Modifiers
+(27346, 4411, 11), -- M. Atk. Modifiers
+(27346, 4412, 11), -- P. Def. Modifiers
+(27346, 4413, 11), -- M. Def. Modifiers
+(27346, 4414, 2), -- Armor Type
+(27346, 4415, 3), -- Weapon Type
+(27346, 4416, 9), -- Races
 (27346, 5467, 1), -- Dark Attacks
 (27346, 5975, 3), -- Dark Attack
 (27346, 5976, 3), -- Dark Storm
 (27346, 5977, 3), -- Dark Strike
 -- Guards of the Dawn Oracle
-(27348, 4408, 1), -- HP Increase (1x)
-(27348, 4409, 1), -- MP Increase (1x)
-(27348, 4410, 11), -- Average P. Atk.
-(27348, 4411, 11), -- Average M. Atk.
-(27348, 4412, 11), -- Average P. Def.
-(27348, 4413, 11), -- Average M. Def.
-(27348, 4414, 2), -- Standard Type
-(27348, 4415, 11), -- Spears
-(27348, 4416, 23), -- Mercenaries
+(27348, 4408, 1), -- HP Modifiers
+(27348, 4409, 1), -- MP Modifiers
+(27348, 4410, 11), -- P. Atk. Modifiers
+(27348, 4411, 11), -- M. Atk. Modifiers
+(27348, 4412, 11), -- P. Def. Modifiers
+(27348, 4413, 11), -- M. Def. Modifiers
+(27348, 4414, 2), -- Armor Type
+(27348, 4415, 11); -- Weapon Type
+
+INSERT INTO `npcskills` VALUES
+(27348, 4416, 23), -- Races
 (27348, 5462, 1), -- Fire Attacks
 -- Guards of the Dawn Oracle
-(27350, 4408, 1), -- HP Increase (1x)
-(27350, 4409, 1), -- MP Increase (1x)
-(27350, 4410, 11), -- Average P. Atk.
-(27350, 4411, 11), -- Average M. Atk.
-(27350, 4412, 11), -- Average P. Def.
-(27350, 4413, 11), -- Average M. Def.
-(27350, 4414, 2), -- Standard Type
-(27350, 4415, 5), -- Blunt Weapons
-(27350, 4416, 23), -- Mercenaries
+(27350, 4408, 1), -- HP Modifiers
+(27350, 4409, 1), -- MP Modifiers
+(27350, 4410, 11), -- P. Atk. Modifiers
+(27350, 4411, 11), -- M. Atk. Modifiers
+(27350, 4412, 11), -- P. Def. Modifiers
+(27350, 4413, 11), -- M. Def. Modifiers
+(27350, 4414, 2), -- Armor Type
+(27350, 4415, 5), -- Weapon Type
+(27350, 4416, 23), -- Races
 (27350, 5462, 1), -- Fire Attacks
 -- Guards of the Dawn
-(27351, 4408, 1), -- HP Increase (1x)
-(27351, 4409, 1), -- MP Increase (1x)
-(27351, 4410, 11), -- Average P. Atk.
-(27351, 4411, 11), -- Average M. Atk.
-(27351, 4412, 11), -- Average P. Def.
-(27351, 4413, 11), -- Average M. Def.
-(27351, 4414, 2), -- Standard Type
-(27351, 4415, 5), -- Blunt Weapons
-(27351, 4416, 23), -- Mercenaries
+(27351, 4408, 1), -- HP Modifiers
+(27351, 4409, 1), -- MP Modifiers
+(27351, 4410, 11), -- P. Atk. Modifiers
+(27351, 4411, 11), -- M. Atk. Modifiers
+(27351, 4412, 11), -- P. Def. Modifiers
+(27351, 4413, 11), -- M. Def. Modifiers
+(27351, 4414, 2), -- Armor Type
+(27351, 4415, 5), -- Weapon Type
+(27351, 4416, 23), -- Races
 (27351, 5462, 1), -- Fire Attacks
 -- Guards of the Dawn Oracle
-(27352, 4408, 1), -- HP Increase (1x)
-(27352, 4409, 1), -- MP Increase (1x)
-(27352, 4410, 11), -- Average P. Atk.
-(27352, 4411, 11), -- Average M. Atk.
-(27352, 4412, 11), -- Average P. Def.
-(27352, 4413, 11), -- Average M. Def.
-(27352, 4414, 2), -- Standard Type
-(27352, 4415, 5), -- Blunt Weapons
-(27352, 4416, 23), -- Mercenaries
+(27352, 4408, 1), -- HP Modifiers
+(27352, 4409, 1), -- MP Modifiers
+(27352, 4410, 11), -- P. Atk. Modifiers
+(27352, 4411, 11), -- M. Atk. Modifiers
+(27352, 4412, 11), -- P. Def. Modifiers
+(27352, 4413, 11), -- M. Def. Modifiers
+(27352, 4414, 2), -- Armor Type
+(27352, 4415, 5), -- Weapon Type
+(27352, 4416, 23), -- Races
 (27352, 5462, 1), -- Fire Attacks
 -- Lilim Butcher
-(27353, 4067, 5), -- Blow
-(27353, 4408, 1), -- HP Increase (1x)
-(27353, 4409, 1), -- MP Increase (1x)
-(27353, 4410, 11), -- Average P. Atk.
-(27353, 4411, 11), -- Average M. Atk.
-(27353, 4412, 11), -- Average P. Def.
-(27353, 4413, 11), -- Average M. Def.
-(27353, 4414, 2), -- Standard Type
-(27353, 4415, 3), -- One-handed Sword
-(27353, 4416, 9), -- Demons
+(27353, 4067, 5), -- NPC Mortal Blow
+(27353, 4408, 1), -- HP Modifiers
+(27353, 4409, 1), -- MP Modifiers
+(27353, 4410, 11), -- P. Atk. Modifiers
+(27353, 4411, 11), -- M. Atk. Modifiers
+(27353, 4412, 11), -- P. Def. Modifiers
+(27353, 4413, 11), -- M. Def. Modifiers
+(27353, 4414, 2), -- Armor Type
+(27353, 4415, 3), -- Weapon Type
+(27353, 4416, 9), -- Races
 -- Lilim Magus
-(27354, 4002, 5), -- HP Drain
+(27354, 4002, 5), -- NPC HP Drain
 (27354, 4046, 5), -- Sleep
-(27354, 4094, 5), -- Cancellation
-(27354, 4408, 1), -- HP Increase (1x)
-(27354, 4409, 1), -- MP Increase (1x)
-(27354, 4410, 11), -- Average P. Atk.
-(27354, 4411, 11), -- Average M. Atk.
-(27354, 4412, 11), -- Average P. Def.
-(27354, 4413, 11), -- Average M. Def.
-(27354, 4414, 2), -- Standard Type
-(27354, 4415, 3), -- One-handed Sword
-(27354, 4416, 9), -- Demons
+(27354, 4094, 5), -- NPC Cancel Magic
+(27354, 4408, 1), -- HP Modifiers
+(27354, 4409, 1), -- MP Modifiers
+(27354, 4410, 11), -- P. Atk. Modifiers
+(27354, 4411, 11), -- M. Atk. Modifiers
+(27354, 4412, 11), -- P. Def. Modifiers
+(27354, 4413, 11), -- M. Def. Modifiers
+(27354, 4414, 2), -- Armor Type
+(27354, 4415, 3), -- Weapon Type
+(27354, 4416, 9), -- Races
 -- Lilim Knight-Errant
-(27355, 4032, 5), -- Power Strike
-(27355, 4092, 1), -- Spirit Puma
-(27355, 4408, 1), -- HP Increase (1x)
-(27355, 4409, 1), -- MP Increase (1x)
-(27355, 4410, 11), -- Average P. Atk.
-(27355, 4411, 11), -- Average M. Atk.
-(27355, 4412, 11), -- Average P. Def.
-(27355, 4413, 11), -- Average M. Def.
-(27355, 4414, 2), -- Standard Type
-(27355, 4415, 3), -- One-handed Sword
-(27355, 4416, 9), -- Demons
+(27355, 4032, 5), -- NPC Strike
+(27355, 4092, 1), -- NPC Puma Spirit Totem
+(27355, 4408, 1), -- HP Modifiers
+(27355, 4409, 1), -- MP Modifiers
+(27355, 4410, 11), -- P. Atk. Modifiers
+(27355, 4411, 11), -- M. Atk. Modifiers
+(27355, 4412, 11), -- P. Def. Modifiers
+(27355, 4413, 11), -- M. Def. Modifiers
+(27355, 4414, 2), -- Armor Type
+(27355, 4415, 3), -- Weapon Type
+(27355, 4416, 9), -- Races
 -- Lilim Marauder
-(27356, 4067, 5), -- Blow
-(27356, 4408, 1), -- HP Increase (1x)
-(27356, 4409, 1), -- MP Increase (1x)
-(27356, 4410, 11), -- Average P. Atk.
-(27356, 4411, 11), -- Average M. Atk.
-(27356, 4412, 11), -- Average P. Def.
-(27356, 4413, 11), -- Average M. Def.
-(27356, 4414, 2), -- Standard Type
-(27356, 4415, 3), -- One-handed Sword
-(27356, 4416, 9), -- Demons
+(27356, 4067, 5), -- NPC Mortal Blow
+(27356, 4408, 1), -- HP Modifiers
+(27356, 4409, 1), -- MP Modifiers
+(27356, 4410, 11), -- P. Atk. Modifiers
+(27356, 4411, 11), -- M. Atk. Modifiers
+(27356, 4412, 11), -- P. Def. Modifiers
+(27356, 4413, 11), -- M. Def. Modifiers
+(27356, 4414, 2), -- Armor Type
+(27356, 4415, 3), -- Weapon Type
+(27356, 4416, 9), -- Races
 -- Lilim Priest
-(27357, 4002, 5), -- HP Drain
+(27357, 4002, 5), -- NPC HP Drain
 (27357, 4046, 5), -- Sleep
-(27357, 4094, 5), -- Cancellation
-(27357, 4408, 1), -- HP Increase (1x)
-(27357, 4409, 1), -- MP Increase (1x)
-(27357, 4410, 11), -- Average P. Atk.
-(27357, 4411, 11), -- Average M. Atk.
-(27357, 4412, 11), -- Average P. Def.
-(27357, 4413, 11), -- Average M. Def.
-(27357, 4414, 2), -- Standard Type
-(27357, 4415, 3), -- One-handed Sword
-(27357, 4416, 9), -- Demons
+(27357, 4094, 5), -- NPC Cancel Magic
+(27357, 4408, 1), -- HP Modifiers
+(27357, 4409, 1), -- MP Modifiers
+(27357, 4410, 11), -- P. Atk. Modifiers
+(27357, 4411, 11), -- M. Atk. Modifiers
+(27357, 4412, 11), -- P. Def. Modifiers
+(27357, 4413, 11), -- M. Def. Modifiers
+(27357, 4414, 2), -- Armor Type
+(27357, 4415, 3), -- Weapon Type
+(27357, 4416, 9), -- Races
 -- Lilim Knight
-(27358, 4032, 5), -- Power Strike
-(27358, 4092, 1), -- Spirit Puma
-(27358, 4408, 1), -- HP Increase (1x)
-(27358, 4409, 1), -- MP Increase (1x)
-(27358, 4410, 11), -- Average P. Atk.
-(27358, 4411, 11), -- Average M. Atk.
-(27358, 4412, 11), -- Average P. Def.
-(27358, 4413, 11), -- Average M. Def.
-(27358, 4414, 2), -- Standard Type
-(27358, 4415, 3), -- One-handed Sword
-(27358, 4416, 9), -- Demons
+(27358, 4032, 5), -- NPC Strike
+(27358, 4092, 1), -- NPC Puma Spirit Totem
+(27358, 4408, 1), -- HP Modifiers
+(27358, 4409, 1), -- MP Modifiers
+(27358, 4410, 11), -- P. Atk. Modifiers
+(27358, 4411, 11), -- M. Atk. Modifiers
+(27358, 4412, 11), -- P. Def. Modifiers
+(27358, 4413, 11), -- M. Def. Modifiers
+(27358, 4414, 2), -- Armor Type
+(27358, 4415, 3), -- Weapon Type
+(27358, 4416, 9), -- Races
 -- Lilim Slayer
-(27359, 4067, 5), -- Blow
-(27359, 4408, 1), -- HP Increase (1x)
-(27359, 4409, 1), -- MP Increase (1x)
-(27359, 4410, 11), -- Average P. Atk.
-(27359, 4411, 11), -- Average M. Atk.
-(27359, 4412, 11), -- Average P. Def.
-(27359, 4413, 11), -- Average M. Def.
-(27359, 4414, 2), -- Standard Type
-(27359, 4415, 3), -- One-handed Sword
-(27359, 4416, 9), -- Demons
+(27359, 4067, 5), -- NPC Mortal Blow
+(27359, 4408, 1), -- HP Modifiers
+(27359, 4409, 1), -- MP Modifiers
+(27359, 4410, 11), -- P. Atk. Modifiers
+(27359, 4411, 11), -- M. Atk. Modifiers
+(27359, 4412, 11), -- P. Def. Modifiers
+(27359, 4413, 11), -- M. Def. Modifiers
+(27359, 4414, 2), -- Armor Type
+(27359, 4415, 3), -- Weapon Type
+(27359, 4416, 9), -- Races
 -- Lilim Great Magus
-(27360, 4002, 5), -- HP Drain
+(27360, 4002, 5), -- NPC HP Drain
 (27360, 4046, 5), -- Sleep
-(27360, 4094, 5), -- Cancellation
-(27360, 4408, 1), -- HP Increase (1x)
-(27360, 4409, 1), -- MP Increase (1x)
-(27360, 4410, 11), -- Average P. Atk.
-(27360, 4411, 11), -- Average M. Atk.
-(27360, 4412, 11), -- Average P. Def.
-(27360, 4413, 11), -- Average M. Def.
-(27360, 4414, 2), -- Standard Type
-(27360, 4415, 3), -- One-handed Sword
-(27360, 4416, 9), -- Demons
+(27360, 4094, 5), -- NPC Cancel Magic
+(27360, 4408, 1), -- HP Modifiers
+(27360, 4409, 1), -- MP Modifiers
+(27360, 4410, 11), -- P. Atk. Modifiers
+(27360, 4411, 11), -- M. Atk. Modifiers
+(27360, 4412, 11), -- P. Def. Modifiers
+(27360, 4413, 11), -- M. Def. Modifiers
+(27360, 4414, 2), -- Armor Type
+(27360, 4415, 3), -- Weapon Type
+(27360, 4416, 9), -- Races
 -- Lilim Guard Knight
-(27361, 4032, 5), -- Power Strike
-(27361, 4092, 1), -- Spirit Puma
-(27361, 4408, 1), -- HP Increase (1x)
-(27361, 4409, 1), -- MP Increase (1x)
-(27361, 4410, 11), -- Average P. Atk.
-(27361, 4411, 11), -- Average M. Atk.
-(27361, 4412, 11), -- Average P. Def.
-(27361, 4413, 11), -- Average M. Def.
-(27361, 4414, 2), -- Standard Type
-(27361, 4415, 3), -- One-handed Sword
-(27361, 4416, 9), -- Demons
+(27361, 4032, 5), -- NPC Strike
+(27361, 4092, 1), -- NPC Puma Spirit Totem
+(27361, 4408, 1), -- HP Modifiers
+(27361, 4409, 1), -- MP Modifiers
+(27361, 4410, 11), -- P. Atk. Modifiers
+(27361, 4411, 11), -- M. Atk. Modifiers
+(27361, 4412, 11), -- P. Def. Modifiers
+(27361, 4413, 11), -- M. Def. Modifiers
+(27361, 4414, 2), -- Armor Type
+(27361, 4415, 3), -- Weapon Type
+(27361, 4416, 9), -- Races
 -- Lilim Butcher
-(27362, 4067, 6), -- Blow
-(27362, 4408, 1), -- HP Increase (1x)
-(27362, 4409, 1), -- MP Increase (1x)
-(27362, 4410, 11), -- Average P. Atk.
-(27362, 4411, 11), -- Average M. Atk.
-(27362, 4412, 11), -- Average P. Def.
-(27362, 4413, 11), -- Average M. Def.
-(27362, 4414, 2), -- Standard Type
-(27362, 4415, 3), -- One-handed Sword
-(27362, 4416, 9), -- Demons
+(27362, 4067, 6), -- NPC Mortal Blow
+(27362, 4408, 1), -- HP Modifiers
+(27362, 4409, 1), -- MP Modifiers
+(27362, 4410, 11), -- P. Atk. Modifiers
+(27362, 4411, 11), -- M. Atk. Modifiers
+(27362, 4412, 11), -- P. Def. Modifiers
+(27362, 4413, 11), -- M. Def. Modifiers
+(27362, 4414, 2), -- Armor Type
+(27362, 4415, 3), -- Weapon Type
+(27362, 4416, 9), -- Races
 -- Lilim Magus
-(27363, 4002, 6), -- HP Drain
+(27363, 4002, 6), -- NPC HP Drain
 (27363, 4046, 6), -- Sleep
-(27363, 4094, 6), -- Cancellation
-(27363, 4408, 1), -- HP Increase (1x)
-(27363, 4409, 1), -- MP Increase (1x)
-(27363, 4410, 11), -- Average P. Atk.
-(27363, 4411, 11), -- Average M. Atk.
-(27363, 4412, 11), -- Average P. Def.
-(27363, 4413, 11), -- Average M. Def.
-(27363, 4414, 2), -- Standard Type
-(27363, 4415, 3), -- One-handed Sword
-(27363, 4416, 9), -- Demons
+(27363, 4094, 6), -- NPC Cancel Magic
+(27363, 4408, 1), -- HP Modifiers
+(27363, 4409, 1), -- MP Modifiers
+(27363, 4410, 11), -- P. Atk. Modifiers
+(27363, 4411, 11), -- M. Atk. Modifiers
+(27363, 4412, 11), -- P. Def. Modifiers
+(27363, 4413, 11), -- M. Def. Modifiers
+(27363, 4414, 2), -- Armor Type
+(27363, 4415, 3), -- Weapon Type
+(27363, 4416, 9), -- Races
 -- Lilim Knight-Errant
-(27364, 4032, 6), -- Power Strike
-(27364, 4092, 1), -- Spirit Puma
-(27364, 4408, 1), -- HP Increase (1x)
-(27364, 4409, 1), -- MP Increase (1x)
-(27364, 4410, 11), -- Average P. Atk.
-(27364, 4411, 11), -- Average M. Atk.
-(27364, 4412, 11), -- Average P. Def.
-(27364, 4413, 11), -- Average M. Def.
-(27364, 4414, 2), -- Standard Type
-(27364, 4415, 3), -- One-handed Sword
-(27364, 4416, 9), -- Demons
+(27364, 4032, 6), -- NPC Strike
+(27364, 4092, 1), -- NPC Puma Spirit Totem
+(27364, 4408, 1), -- HP Modifiers
+(27364, 4409, 1), -- MP Modifiers
+(27364, 4410, 11), -- P. Atk. Modifiers
+(27364, 4411, 11), -- M. Atk. Modifiers
+(27364, 4412, 11), -- P. Def. Modifiers
+(27364, 4413, 11), -- M. Def. Modifiers
+(27364, 4414, 2), -- Armor Type
+(27364, 4415, 3), -- Weapon Type
+(27364, 4416, 9), -- Races
 -- Lilim Marauder
-(27365, 4067, 6), -- Blow
-(27365, 4408, 1), -- HP Increase (1x)
-(27365, 4409, 1), -- MP Increase (1x)
-(27365, 4410, 11), -- Average P. Atk.
-(27365, 4411, 11), -- Average M. Atk.
-(27365, 4412, 11), -- Average P. Def.
-(27365, 4413, 11), -- Average M. Def.
-(27365, 4414, 2), -- Standard Type
-(27365, 4415, 3), -- One-handed Sword
-(27365, 4416, 9), -- Demons
+(27365, 4067, 6), -- NPC Mortal Blow
+(27365, 4408, 1), -- HP Modifiers
+(27365, 4409, 1), -- MP Modifiers
+(27365, 4410, 11), -- P. Atk. Modifiers
+(27365, 4411, 11), -- M. Atk. Modifiers
+(27365, 4412, 11), -- P. Def. Modifiers
+(27365, 4413, 11), -- M. Def. Modifiers
+(27365, 4414, 2), -- Armor Type
+(27365, 4415, 3), -- Weapon Type
+(27365, 4416, 9), -- Races
 -- Lilim Priest
-(27366, 4002, 6), -- HP Drain
+(27366, 4002, 6), -- NPC HP Drain
 (27366, 4046, 6), -- Sleep
-(27366, 4094, 6), -- Cancellation
-(27366, 4408, 1), -- HP Increase (1x)
-(27366, 4409, 1), -- MP Increase (1x)
-(27366, 4410, 11), -- Average P. Atk.
-(27366, 4411, 11), -- Average M. Atk.
-(27366, 4412, 11), -- Average P. Def.
-(27366, 4413, 11), -- Average M. Def.
-(27366, 4414, 2), -- Standard Type
-(27366, 4415, 3), -- One-handed Sword
-(27366, 4416, 9), -- Demons
+(27366, 4094, 6), -- NPC Cancel Magic
+(27366, 4408, 1), -- HP Modifiers
+(27366, 4409, 1), -- MP Modifiers
+(27366, 4410, 11), -- P. Atk. Modifiers
+(27366, 4411, 11), -- M. Atk. Modifiers
+(27366, 4412, 11), -- P. Def. Modifiers
+(27366, 4413, 11), -- M. Def. Modifiers
+(27366, 4414, 2), -- Armor Type
+(27366, 4415, 3), -- Weapon Type
+(27366, 4416, 9), -- Races
 -- Lilim Knight
-(27367, 4032, 6), -- Power Strike
-(27367, 4092, 1), -- Spirit Puma
-(27367, 4408, 1), -- HP Increase (1x)
-(27367, 4409, 1), -- MP Increase (1x)
-(27367, 4410, 11), -- Average P. Atk.
-(27367, 4411, 11), -- Average M. Atk.
-(27367, 4412, 11), -- Average P. Def.
-(27367, 4413, 11), -- Average M. Def.
-(27367, 4414, 2), -- Standard Type
-(27367, 4415, 3), -- One-handed Sword
-(27367, 4416, 9), -- Demons
+(27367, 4032, 6), -- NPC Strike
+(27367, 4092, 1), -- NPC Puma Spirit Totem
+(27367, 4408, 1), -- HP Modifiers
+(27367, 4409, 1), -- MP Modifiers
+(27367, 4410, 11), -- P. Atk. Modifiers
+(27367, 4411, 11), -- M. Atk. Modifiers
+(27367, 4412, 11), -- P. Def. Modifiers
+(27367, 4413, 11), -- M. Def. Modifiers
+(27367, 4414, 2), -- Armor Type
+(27367, 4415, 3), -- Weapon Type
+(27367, 4416, 9), -- Races
 -- Lilim Slayer
-(27368, 4067, 6), -- Blow
-(27368, 4408, 1), -- HP Increase (1x)
-(27368, 4409, 1), -- MP Increase (1x)
-(27368, 4410, 11), -- Average P. Atk.
-(27368, 4411, 11), -- Average M. Atk.
-(27368, 4412, 11), -- Average P. Def.
-(27368, 4413, 11), -- Average M. Def.
-(27368, 4414, 2), -- Standard Type
-(27368, 4415, 3), -- One-handed Sword
-(27368, 4416, 9), -- Demons
+(27368, 4067, 6), -- NPC Mortal Blow
+(27368, 4408, 1), -- HP Modifiers
+(27368, 4409, 1), -- MP Modifiers
+(27368, 4410, 11), -- P. Atk. Modifiers
+(27368, 4411, 11), -- M. Atk. Modifiers
+(27368, 4412, 11), -- P. Def. Modifiers
+(27368, 4413, 11), -- M. Def. Modifiers
+(27368, 4414, 2), -- Armor Type
+(27368, 4415, 3), -- Weapon Type
+(27368, 4416, 9), -- Races
 -- Lilim Great Magus
-(27369, 4002, 6), -- HP Drain
+(27369, 4002, 6), -- NPC HP Drain
 (27369, 4046, 6), -- Sleep
-(27369, 4094, 6), -- Cancellation
-(27369, 4408, 1), -- HP Increase (1x)
-(27369, 4409, 1), -- MP Increase (1x)
-(27369, 4410, 11), -- Average P. Atk.
-(27369, 4411, 11), -- Average M. Atk.
-(27369, 4412, 11), -- Average P. Def.
-(27369, 4413, 11), -- Average M. Def.
-(27369, 4414, 2), -- Standard Type
-(27369, 4415, 3), -- One-handed Sword
-(27369, 4416, 9), -- Demons
+(27369, 4094, 6), -- NPC Cancel Magic
+(27369, 4408, 1), -- HP Modifiers
+(27369, 4409, 1), -- MP Modifiers
+(27369, 4410, 11), -- P. Atk. Modifiers
+(27369, 4411, 11), -- M. Atk. Modifiers
+(27369, 4412, 11), -- P. Def. Modifiers
+(27369, 4413, 11), -- M. Def. Modifiers
+(27369, 4414, 2), -- Armor Type
+(27369, 4415, 3), -- Weapon Type
+(27369, 4416, 9), -- Races
 -- Lilim Guard Knight
-(27370, 4032, 6), -- Power Strike
-(27370, 4092, 1), -- Spirit Puma
-(27370, 4408, 1), -- HP Increase (1x)
-(27370, 4409, 1), -- MP Increase (1x)
-(27370, 4410, 11), -- Average P. Atk.
-(27370, 4411, 11), -- Average M. Atk.
-(27370, 4412, 11), -- Average P. Def.
-(27370, 4413, 11), -- Average M. Def.
-(27370, 4414, 2), -- Standard Type
-(27370, 4415, 3), -- One-handed Sword
-(27370, 4416, 9), -- Demons
+(27370, 4032, 6), -- NPC Strike
+(27370, 4092, 1), -- NPC Puma Spirit Totem
+(27370, 4408, 1), -- HP Modifiers
+(27370, 4409, 1), -- MP Modifiers
+(27370, 4410, 11), -- P. Atk. Modifiers
+(27370, 4411, 11), -- M. Atk. Modifiers
+(27370, 4412, 11), -- P. Def. Modifiers
+(27370, 4413, 11), -- M. Def. Modifiers
+(27370, 4414, 2), -- Armor Type
+(27370, 4415, 3), -- Weapon Type
+(27370, 4416, 9), -- Races
 -- Lilim Butcher
-(27371, 4067, 4), -- Blow
-(27371, 4408, 16), -- HP Increase (8x)
-(27371, 4409, 1), -- MP Increase (1x)
-(27371, 4410, 3), -- Extremely Weak P. Atk.
-(27371, 4411, 3), -- Extremely Weak M. Atk.
-(27371, 4412, 18), -- Extremely Strong P. Def.
-(27371, 4413, 19), -- Extremely Strong M. Def.
-(27371, 4414, 2), -- Standard Type
-(27371, 4415, 3), -- One-handed Sword
-(27371, 4416, 9), -- Demons
+(27371, 4067, 4), -- NPC Mortal Blow
+(27371, 4408, 16), -- HP Modifiers
+(27371, 4409, 1), -- MP Modifiers
+(27371, 4410, 3), -- P. Atk. Modifiers
+(27371, 4411, 3), -- M. Atk. Modifiers
+(27371, 4412, 18), -- P. Def. Modifiers
+(27371, 4413, 19), -- M. Def. Modifiers
+(27371, 4414, 2), -- Armor Type
+(27371, 4415, 3), -- Weapon Type
+(27371, 4416, 9), -- Races
 (27371, 5467, 1), -- Dark Attacks
 -- Lilim Magus
-(27372, 4002, 4), -- HP Drain
+(27372, 4002, 4), -- NPC HP Drain
 (27372, 4046, 4), -- Sleep
-(27372, 4094, 4), -- Cancellation
-(27372, 4408, 16), -- HP Increase (8x)
-(27372, 4409, 1), -- MP Increase (1x)
-(27372, 4410, 3), -- Extremely Weak P. Atk.
-(27372, 4411, 3), -- Extremely Weak M. Atk.
-(27372, 4412, 18), -- Extremely Strong P. Def.
-(27372, 4413, 19), -- Extremely Strong M. Def.
-(27372, 4414, 2), -- Standard Type
-(27372, 4415, 3), -- One-handed Sword
-(27372, 4416, 9), -- Demons
+(27372, 4094, 4), -- NPC Cancel Magic
+(27372, 4408, 16), -- HP Modifiers
+(27372, 4409, 1), -- MP Modifiers
+(27372, 4410, 3), -- P. Atk. Modifiers
+(27372, 4411, 3), -- M. Atk. Modifiers
+(27372, 4412, 18), -- P. Def. Modifiers
+(27372, 4413, 19), -- M. Def. Modifiers
+(27372, 4414, 2), -- Armor Type
+(27372, 4415, 3), -- Weapon Type
+(27372, 4416, 9), -- Races
 (27372, 5467, 1), -- Dark Attacks
 -- Lilim Knight-Errant
-(27373, 4032, 4), -- Power Strike
-(27373, 4408, 16), -- HP Increase (8x)
-(27373, 4409, 1), -- MP Increase (1x)
-(27373, 4410, 3), -- Extremely Weak P. Atk.
-(27373, 4411, 3), -- Extremely Weak M. Atk.
-(27373, 4412, 18), -- Extremely Strong P. Def.
-(27373, 4413, 19), -- Extremely Strong M. Def.
-(27373, 4414, 2), -- Standard Type
-(27373, 4415, 3), -- One-handed Sword
-(27373, 4416, 9), -- Demons
+(27373, 4032, 4), -- NPC Strike
+(27373, 4408, 16), -- HP Modifiers
+(27373, 4409, 1), -- MP Modifiers
+(27373, 4410, 3), -- P. Atk. Modifiers
+(27373, 4411, 3), -- M. Atk. Modifiers
+(27373, 4412, 18), -- P. Def. Modifiers
+(27373, 4413, 19), -- M. Def. Modifiers
+(27373, 4414, 2), -- Armor Type
+(27373, 4415, 3), -- Weapon Type
+(27373, 4416, 9), -- Races
 (27373, 5467, 1), -- Dark Attacks
 -- Shilen's Evil Thoughts
-(27374, 4408, 16), -- HP Increase (8x)
-(27374, 4409, 1), -- MP Increase (1x)
-(27374, 4410, 3), -- Extremely Weak P. Atk.
-(27374, 4411, 3), -- Extremely Weak M. Atk.
-(27374, 4412, 18), -- Extremely Strong P. Def.
-(27374, 4413, 19), -- Extremely Strong M. Def.
-(27374, 4414, 2), -- Standard Type
-(27374, 4415, 3), -- One-handed Sword
-(27374, 4416, 9), -- Demons
+(27374, 4408, 16), -- HP Modifiers
+(27374, 4409, 1), -- MP Modifiers
+(27374, 4410, 3), -- P. Atk. Modifiers
+(27374, 4411, 3), -- M. Atk. Modifiers
+(27374, 4412, 18), -- P. Def. Modifiers
+(27374, 4413, 19), -- M. Def. Modifiers
+(27374, 4414, 2), -- Armor Type
+(27374, 4415, 3), -- Weapon Type
+(27374, 4416, 9), -- Races
 (27374, 5467, 1), -- Dark Attacks
 (27374, 5975, 1), -- Dark Attack
 (27374, 5976, 1), -- Dark Storm
 (27374, 5977, 1), -- Dark Strike
 -- Shilen's Evil Thoughts
-(27375, 4408, 16), -- HP Increase (8x)
-(27375, 4409, 1), -- MP Increase (1x)
-(27375, 4410, 3), -- Extremely Weak P. Atk.
-(27375, 4411, 3), -- Extremely Weak M. Atk.
-(27375, 4412, 18), -- Extremely Strong P. Def.
-(27375, 4413, 19), -- Extremely Strong M. Def.
-(27375, 4414, 2), -- Standard Type
-(27375, 4415, 3), -- One-handed Sword
-(27375, 4416, 9), -- Demons
+(27375, 4408, 16), -- HP Modifiers
+(27375, 4409, 1), -- MP Modifiers
+(27375, 4410, 3), -- P. Atk. Modifiers
+(27375, 4411, 3), -- M. Atk. Modifiers
+(27375, 4412, 18), -- P. Def. Modifiers
+(27375, 4413, 19), -- M. Def. Modifiers
+(27375, 4414, 2), -- Armor Type
+(27375, 4415, 3), -- Weapon Type
+(27375, 4416, 9), -- Races
 (27375, 5467, 1), -- Dark Attacks
 (27375, 5975, 1), -- Dark Attack
 (27375, 5976, 1), -- Dark Storm
 -- Lilim Knight
-(27376, 4032, 4), -- Power Strike
-(27376, 4408, 16), -- HP Increase (8x)
-(27376, 4409, 1), -- MP Increase (1x)
-(27376, 4410, 3), -- Extremely Weak P. Atk.
-(27376, 4411, 3), -- Extremely Weak M. Atk.
-(27376, 4412, 18), -- Extremely Strong P. Def.
-(27376, 4413, 19), -- Extremely Strong M. Def.
-(27376, 4414, 2), -- Standard Type
-(27376, 4415, 3), -- One-handed Sword
-(27376, 4416, 9), -- Demons
+(27376, 4032, 4), -- NPC Strike
+(27376, 4408, 16), -- HP Modifiers
+(27376, 4409, 1), -- MP Modifiers
+(27376, 4410, 3), -- P. Atk. Modifiers
+(27376, 4411, 3), -- M. Atk. Modifiers
+(27376, 4412, 18), -- P. Def. Modifiers
+(27376, 4413, 19), -- M. Def. Modifiers
+(27376, 4414, 2), -- Armor Type
+(27376, 4415, 3), -- Weapon Type
+(27376, 4416, 9), -- Races
 (27376, 5467, 1), -- Dark Attacks
 -- Lilim Slayer
-(27377, 4067, 4), -- Blow
-(27377, 4408, 16), -- HP Increase (8x)
-(27377, 4409, 1), -- MP Increase (1x)
-(27377, 4410, 3), -- Extremely Weak P. Atk.
-(27377, 4411, 3), -- Extremely Weak M. Atk.
-(27377, 4412, 18), -- Extremely Strong P. Def.
-(27377, 4413, 19), -- Extremely Strong M. Def.
-(27377, 4414, 2), -- Standard Type
-(27377, 4415, 3), -- One-handed Sword
-(27377, 4416, 9), -- Demons
+(27377, 4067, 4), -- NPC Mortal Blow
+(27377, 4408, 16), -- HP Modifiers
+(27377, 4409, 1), -- MP Modifiers
+(27377, 4410, 3), -- P. Atk. Modifiers
+(27377, 4411, 3), -- M. Atk. Modifiers
+(27377, 4412, 18), -- P. Def. Modifiers
+(27377, 4413, 19), -- M. Def. Modifiers
+(27377, 4414, 2), -- Armor Type
+(27377, 4415, 3), -- Weapon Type
+(27377, 4416, 9), -- Races
 (27377, 5467, 1), -- Dark Attacks
 -- Lilim Great Magus
-(27378, 4002, 4), -- HP Drain
+(27378, 4002, 4), -- NPC HP Drain
 (27378, 4046, 4), -- Sleep
-(27378, 4094, 4), -- Cancellation
-(27378, 4408, 16), -- HP Increase (8x)
-(27378, 4409, 1), -- MP Increase (1x)
-(27378, 4410, 3), -- Extremely Weak P. Atk.
-(27378, 4411, 3), -- Extremely Weak M. Atk.
-(27378, 4412, 18), -- Extremely Strong P. Def.
-(27378, 4413, 19), -- Extremely Strong M. Def.
-(27378, 4414, 2), -- Standard Type
-(27378, 4415, 3), -- One-handed Sword
-(27378, 4416, 9), -- Demons
+(27378, 4094, 4), -- NPC Cancel Magic
+(27378, 4408, 16), -- HP Modifiers
+(27378, 4409, 1), -- MP Modifiers
+(27378, 4410, 3), -- P. Atk. Modifiers
+(27378, 4411, 3), -- M. Atk. Modifiers
+(27378, 4412, 18), -- P. Def. Modifiers
+(27378, 4413, 19), -- M. Def. Modifiers
+(27378, 4414, 2), -- Armor Type
+(27378, 4415, 3), -- Weapon Type
+(27378, 4416, 9), -- Races
 (27378, 5467, 1), -- Dark Attacks
 -- Lilim Guard Knight
-(27379, 4032, 4), -- Power Strike
-(27379, 4408, 16), -- HP Increase (8x)
-(27379, 4409, 1), -- MP Increase (1x)
-(27379, 4410, 3), -- Extremely Weak P. Atk.
-(27379, 4411, 3), -- Extremely Weak M. Atk.
-(27379, 4412, 18), -- Extremely Strong P. Def.
-(27379, 4413, 19), -- Extremely Strong M. Def.
-(27379, 4414, 2), -- Standard Type
-(27379, 4415, 3), -- One-handed Sword
-(27379, 4416, 9), -- Demons
+(27379, 4032, 4), -- NPC Strike
+(27379, 4408, 16), -- HP Modifiers
+(27379, 4409, 1), -- MP Modifiers
+(27379, 4410, 3), -- P. Atk. Modifiers
+(27379, 4411, 3), -- M. Atk. Modifiers
+(27379, 4412, 18), -- P. Def. Modifiers
+(27379, 4413, 19), -- M. Def. Modifiers
+(27379, 4414, 2), -- Armor Type
+(27379, 4415, 3), -- Weapon Type
+(27379, 4416, 9), -- Races
 (27379, 5467, 1), -- Dark Attacks
 -- Reckless Sprite of Water
-(27380, 4408, 10), -- HP Increase (2x)
-(27380, 4409, 1), -- MP Increase (1x)
-(27380, 4410, 11), -- Average P. Atk.
-(27380, 4411, 11), -- Average M. Atk.
-(27380, 4412, 13), -- Slightly Strong P. Def.
-(27380, 4413, 14), -- Strong M. Def.
-(27380, 4414, 2), -- Standard Type
-(27380, 4415, 3), -- One-handed Sword
-(27380, 4416, 7), -- Spirits
+(27380, 4408, 10), -- HP Modifiers
+(27380, 4409, 1), -- MP Modifiers
+(27380, 4410, 11), -- P. Atk. Modifiers
+(27380, 4411, 11), -- M. Atk. Modifiers
+(27380, 4412, 13), -- P. Def. Modifiers
+(27380, 4413, 14), -- M. Def. Modifiers
+(27380, 4414, 2), -- Armor Type
+(27380, 4415, 3), -- Weapon Type
+(27380, 4416, 7), -- Races
 (27380, 5463, 1), -- Water Attacks
 -- Reckless Sprite of Air
-(27381, 4408, 10), -- HP Increase (2x)
-(27381, 4409, 1), -- MP Increase (1x)
-(27381, 4410, 11), -- Average P. Atk.
-(27381, 4411, 11), -- Average M. Atk.
-(27381, 4412, 13), -- Slightly Strong P. Def.
-(27381, 4413, 14), -- Strong M. Def.
-(27381, 4414, 2), -- Standard Type
-(27381, 4415, 3), -- One-handed Sword
-(27381, 4416, 7), -- Spirits
+(27381, 4408, 10), -- HP Modifiers
+(27381, 4409, 1), -- MP Modifiers
+(27381, 4410, 11), -- P. Atk. Modifiers
+(27381, 4411, 11), -- M. Atk. Modifiers
+(27381, 4412, 13), -- P. Def. Modifiers
+(27381, 4413, 14), -- M. Def. Modifiers
+(27381, 4414, 2), -- Armor Type
+(27381, 4415, 3), -- Weapon Type
+(27381, 4416, 7), -- Races
 (27381, 5464, 1), -- Wind Attacks
 -- Power of Seal Isolation
-(27382, 4408, 1), -- HP Increase (1x)
-(27382, 4409, 1), -- MP Increase (1x)
-(27382, 4410, 11), -- Average P. Atk.
-(27382, 4411, 11), -- Average M. Atk.
-(27382, 4412, 11), -- Average P. Def.
-(27382, 4413, 11), -- Average M. Def.
-(27382, 4414, 2); -- Standard Type
-
-INSERT INTO `npcskills` VALUES
-(27382, 4415, 3), -- One-handed Sword
-(27382, 4416, 19), -- Others
+(27382, 4408, 1), -- HP Modifiers
+(27382, 4409, 1), -- MP Modifiers
+(27382, 4410, 11), -- P. Atk. Modifiers
+(27382, 4411, 11), -- M. Atk. Modifiers
+(27382, 4412, 11), -- P. Def. Modifiers
+(27382, 4413, 11), -- M. Def. Modifiers
+(27382, 4414, 2), -- Armor Type
+(27382, 4415, 3), -- Weapon Type
+(27382, 4416, 19), -- Races
 (27382, 5980, 1), -- Seal Isolation
 -- Power of Seal Isolation
-(27383, 4408, 1), -- HP Increase (1x)
-(27383, 4409, 1), -- MP Increase (1x)
-(27383, 4410, 11), -- Average P. Atk.
-(27383, 4411, 11), -- Average M. Atk.
-(27383, 4412, 11), -- Average P. Def.
-(27383, 4413, 11), -- Average M. Def.
-(27383, 4414, 2), -- Standard Type
-(27383, 4415, 3), -- One-handed Sword
-(27383, 4416, 19), -- Others
+(27383, 4408, 1), -- HP Modifiers
+(27383, 4409, 1), -- MP Modifiers
+(27383, 4410, 11), -- P. Atk. Modifiers
+(27383, 4411, 11), -- M. Atk. Modifiers
+(27383, 4412, 11), -- P. Def. Modifiers
+(27383, 4413, 11), -- M. Def. Modifiers
+(27383, 4414, 2), -- Armor Type
+(27383, 4415, 3), -- Weapon Type
+(27383, 4416, 19), -- Races
 (27383, 5980, 2), -- Seal Isolation
 -- Seal Device
-(27384, 4408, 16), -- HP Increase (8x)
-(27384, 4409, 1), -- MP Increase (1x)
-(27384, 4410, 5), -- Very Weak P. Atk.
-(27384, 4411, 4), -- Extremely Weak M. Atk.
-(27384, 4412, 18), -- Extremely Strong P. Def.
-(27384, 4413, 19), -- Extremely Strong M. Def.
-(27384, 4414, 2), -- Standard Type
-(27384, 4415, 3), -- One-handed Sword
-(27384, 4416, 2), -- Magic Creatures
+(27384, 4408, 16), -- HP Modifiers
+(27384, 4409, 1), -- MP Modifiers
+(27384, 4410, 5), -- P. Atk. Modifiers
+(27384, 4411, 4), -- M. Atk. Modifiers
+(27384, 4412, 18), -- P. Def. Modifiers
+(27384, 4413, 19), -- M. Def. Modifiers
+(27384, 4414, 2), -- Armor Type
+(27384, 4415, 3), -- Weapon Type
+(27384, 4416, 2), -- Races
 -- Bloody Axe Aide
-(27392, 4408, 1), -- HP Increase (1x)
-(27392, 4409, 1), -- MP Increase (1x)
-(27392, 4410, 11), -- Average P. Atk.
-(27392, 4411, 11), -- Average M. Atk.
-(27392, 4412, 11), -- Average P. Def.
-(27392, 4413, 11), -- Average M. Def.
-(27392, 4414, 2), -- Standard Type
-(27392, 4415, 3), -- One-handed Sword
-(27392, 4416, 6), -- Humanoids
+(27392, 4408, 1), -- HP Modifiers
+(27392, 4409, 1), -- MP Modifiers
+(27392, 4410, 11), -- P. Atk. Modifiers
+(27392, 4411, 11), -- M. Atk. Modifiers
+(27392, 4412, 11), -- P. Def. Modifiers
+(27392, 4413, 11), -- M. Def. Modifiers
+(27392, 4414, 2), -- Armor Type
+(27392, 4415, 3), -- Weapon Type
+(27392, 4416, 6), -- Races
 -- Headless Knight
-(27393, 4408, 1), -- HP Increase (1x)
-(27393, 4409, 1), -- MP Increase (1x)
-(27393, 4410, 11), -- Average P. Atk.
-(27393, 4411, 11), -- Average M. Atk.
-(27393, 4412, 11), -- Average P. Def.
-(27393, 4413, 11), -- Average M. Def.
-(27393, 4414, 2), -- Standard Type
-(27393, 4415, 3), -- One-handed Sword
-(27393, 4416, 1), -- Undead
+(27393, 4408, 1), -- HP Modifiers
+(27393, 4409, 1), -- MP Modifiers
+(27393, 4410, 11), -- P. Atk. Modifiers
+(27393, 4411, 11), -- M. Atk. Modifiers
+(27393, 4412, 11), -- P. Def. Modifiers
+(27393, 4413, 11), -- M. Def. Modifiers
+(27393, 4414, 2), -- Armor Type
+(27393, 4415, 3), -- Weapon Type
+(27393, 4416, 1), -- Races
 -- Shilen's Evil Thoughts
-(27394, 4408, 1), -- HP Increase (1x)
-(27394, 4409, 1), -- MP Increase (1x)
-(27394, 4410, 11), -- Average P. Atk.
-(27394, 4411, 11), -- Average M. Atk.
-(27394, 4412, 11), -- Average P. Def.
-(27394, 4413, 11), -- Average M. Def.
-(27394, 4414, 2), -- Standard Type
-(27394, 4415, 3), -- One-handed Sword
-(27394, 4416, 19), -- Others
+(27394, 4408, 1), -- HP Modifiers
+(27394, 4409, 1), -- MP Modifiers
+(27394, 4410, 11), -- P. Atk. Modifiers
+(27394, 4411, 11), -- M. Atk. Modifiers
+(27394, 4412, 11), -- P. Def. Modifiers
+(27394, 4413, 11), -- M. Def. Modifiers
+(27394, 4414, 2), -- Armor Type
+(27394, 4415, 3), -- Weapon Type
+(27394, 4416, 19), -- Races
 (27394, 5975, 1), -- Dark Attack
 (27394, 5976, 1), -- Dark Storm
 -- Shilen's Evil Thoughts
-(27395, 4408, 1), -- HP Increase (1x)
-(27395, 4409, 1), -- MP Increase (1x)
-(27395, 4410, 11), -- Average P. Atk.
-(27395, 4411, 11), -- Average M. Atk.
-(27395, 4412, 11), -- Average P. Def.
-(27395, 4413, 11), -- Average M. Def.
-(27395, 4414, 2), -- Standard Type
-(27395, 4415, 3), -- One-handed Sword
-(27395, 4416, 19), -- Others
+(27395, 4408, 1), -- HP Modifiers
+(27395, 4409, 1), -- MP Modifiers
+(27395, 4410, 11), -- P. Atk. Modifiers
+(27395, 4411, 11), -- M. Atk. Modifiers
+(27395, 4412, 11), -- P. Def. Modifiers
+(27395, 4413, 11), -- M. Def. Modifiers
+(27395, 4414, 2), -- Armor Type
+(27395, 4415, 3), -- Weapon Type
+(27395, 4416, 19), -- Races
 (27395, 5975, 1), -- Dark Attack
 (27395, 5976, 2), -- Dark Storm
 -- Shilen's Evil Thoughts
-(27396, 4408, 1), -- HP Increase (1x)
-(27396, 4409, 1), -- MP Increase (1x)
-(27396, 4410, 11), -- Average P. Atk.
-(27396, 4411, 11), -- Average M. Atk.
-(27396, 4412, 11), -- Average P. Def.
-(27396, 4413, 11), -- Average M. Def.
-(27396, 4414, 2), -- Standard Type
-(27396, 4415, 3), -- One-handed Sword
-(27396, 4416, 9), -- Demons
+(27396, 4408, 1), -- HP Modifiers
+(27396, 4409, 1), -- MP Modifiers
+(27396, 4410, 11), -- P. Atk. Modifiers
+(27396, 4411, 11), -- M. Atk. Modifiers
+(27396, 4412, 11), -- P. Def. Modifiers
+(27396, 4413, 11), -- M. Def. Modifiers
+(27396, 4414, 2), -- Armor Type
+(27396, 4415, 3), -- Weapon Type
+(27396, 4416, 9), -- Races
 (27396, 5467, 1), -- Dark Attacks
 (27396, 5975, 3), -- Dark Attack
 (27396, 5976, 3), -- Dark Storm
 -- Shilen's Evil Thoughts
-(27397, 4408, 1), -- HP Increase (1x)
-(27397, 4409, 1), -- MP Increase (1x)
-(27397, 4410, 11), -- Average P. Atk.
-(27397, 4411, 11), -- Average M. Atk.
-(27397, 4412, 11), -- Average P. Def.
-(27397, 4413, 11), -- Average M. Def.
-(27397, 4414, 2), -- Standard Type
-(27397, 4415, 3), -- One-handed Sword
-(27397, 4416, 19), -- Others
+(27397, 4408, 1), -- HP Modifiers
+(27397, 4409, 1), -- MP Modifiers
+(27397, 4410, 11), -- P. Atk. Modifiers
+(27397, 4411, 11), -- M. Atk. Modifiers
+(27397, 4412, 11), -- P. Def. Modifiers
+(27397, 4413, 11), -- M. Def. Modifiers
+(27397, 4414, 2), -- Armor Type
+(27397, 4415, 3), -- Weapon Type
+(27397, 4416, 19), -- Races
 (27397, 5975, 1), -- Dark Attack
 (27397, 5976, 1), -- Dark Storm
 -- Shilen's Evil Thoughts
-(27398, 4408, 1), -- HP Increase (1x)
-(27398, 4409, 1), -- MP Increase (1x)
-(27398, 4410, 11), -- Average P. Atk.
-(27398, 4411, 11), -- Average M. Atk.
-(27398, 4412, 11), -- Average P. Def.
-(27398, 4413, 11), -- Average M. Def.
-(27398, 4414, 2), -- Standard Type
-(27398, 4415, 3), -- One-handed Sword
-(27398, 4416, 19), -- Others
+(27398, 4408, 1), -- HP Modifiers
+(27398, 4409, 1), -- MP Modifiers
+(27398, 4410, 11), -- P. Atk. Modifiers
+(27398, 4411, 11), -- M. Atk. Modifiers
+(27398, 4412, 11), -- P. Def. Modifiers
+(27398, 4413, 11), -- M. Def. Modifiers
+(27398, 4414, 2), -- Armor Type
+(27398, 4415, 3), -- Weapon Type
+(27398, 4416, 19), -- Races
 (27398, 5975, 1), -- Dark Attack
 (27398, 5976, 2), -- Dark Storm
 -- Shilen's Evil Thoughts
-(27399, 4408, 1), -- HP Increase (1x)
-(27399, 4409, 1), -- MP Increase (1x)
-(27399, 4410, 11), -- Average P. Atk.
-(27399, 4411, 11), -- Average M. Atk.
-(27399, 4412, 11), -- Average P. Def.
-(27399, 4413, 11), -- Average M. Def.
-(27399, 4414, 2), -- Standard Type
-(27399, 4415, 3), -- One-handed Sword
-(27399, 4416, 9), -- Demons
+(27399, 4408, 1), -- HP Modifiers
+(27399, 4409, 1), -- MP Modifiers
+(27399, 4410, 11), -- P. Atk. Modifiers
+(27399, 4411, 11), -- M. Atk. Modifiers
+(27399, 4412, 11), -- P. Def. Modifiers
+(27399, 4413, 11), -- M. Def. Modifiers
+(27399, 4414, 2), -- Armor Type
+(27399, 4415, 3), -- Weapon Type
+(27399, 4416, 9), -- Races
 (27399, 5467, 1), -- Dark Attacks
 (27399, 5975, 3), -- Dark Attack
 (27399, 5976, 3), -- Dark Storm
 -- Shilen's Evil Thoughts
-(27400, 4408, 1), -- HP Increase (1x)
-(27400, 4409, 1), -- MP Increase (1x)
-(27400, 4410, 11), -- Average P. Atk.
-(27400, 4411, 11), -- Average M. Atk.
-(27400, 4412, 11), -- Average P. Def.
-(27400, 4413, 11), -- Average M. Def.
-(27400, 4414, 2), -- Standard Type
-(27400, 4415, 3), -- One-handed Sword
-(27400, 4416, 19), -- Others
+(27400, 4408, 1), -- HP Modifiers
+(27400, 4409, 1), -- MP Modifiers
+(27400, 4410, 11), -- P. Atk. Modifiers
+(27400, 4411, 11), -- M. Atk. Modifiers
+(27400, 4412, 11), -- P. Def. Modifiers
+(27400, 4413, 11), -- M. Def. Modifiers
+(27400, 4414, 2), -- Armor Type
+(27400, 4415, 3), -- Weapon Type
+(27400, 4416, 19), -- Races
 (27400, 5975, 1), -- Dark Attack
 (27400, 5976, 1), -- Dark Storm
 -- Shilen's Evil Thoughts
-(27401, 4408, 1), -- HP Increase (1x)
-(27401, 4409, 1), -- MP Increase (1x)
-(27401, 4410, 11), -- Average P. Atk.
-(27401, 4411, 11), -- Average M. Atk.
-(27401, 4412, 11), -- Average P. Def.
-(27401, 4413, 11), -- Average M. Def.
-(27401, 4414, 2), -- Standard Type
-(27401, 4415, 3), -- One-handed Sword
-(27401, 4416, 19), -- Others
+(27401, 4408, 1), -- HP Modifiers
+(27401, 4409, 1), -- MP Modifiers
+(27401, 4410, 11), -- P. Atk. Modifiers
+(27401, 4411, 11), -- M. Atk. Modifiers
+(27401, 4412, 11), -- P. Def. Modifiers
+(27401, 4413, 11), -- M. Def. Modifiers
+(27401, 4414, 2), -- Armor Type
+(27401, 4415, 3), -- Weapon Type
+(27401, 4416, 19), -- Races
 (27401, 5975, 1), -- Dark Attack
 (27401, 5976, 2), -- Dark Storm
 -- Shilen's Evil Thoughts
-(27402, 4408, 1), -- HP Increase (1x)
-(27402, 4409, 1), -- MP Increase (1x)
-(27402, 4410, 11), -- Average P. Atk.
-(27402, 4411, 11), -- Average M. Atk.
-(27402, 4412, 11), -- Average P. Def.
-(27402, 4413, 11), -- Average M. Def.
-(27402, 4414, 2), -- Standard Type
-(27402, 4415, 3), -- One-handed Sword
-(27402, 4416, 9), -- Demons
+(27402, 4408, 1), -- HP Modifiers
+(27402, 4409, 1), -- MP Modifiers
+(27402, 4410, 11), -- P. Atk. Modifiers
+(27402, 4411, 11), -- M. Atk. Modifiers
+(27402, 4412, 11), -- P. Def. Modifiers
+(27402, 4413, 11), -- M. Def. Modifiers
+(27402, 4414, 2), -- Armor Type
+(27402, 4415, 3), -- Weapon Type
+(27402, 4416, 9), -- Races
 (27402, 5467, 1), -- Dark Attacks
 (27402, 5975, 3), -- Dark Attack
 (27402, 5976, 3), -- Dark Storm
@@ -74281,825 +74635,825 @@ INSERT INTO `npcskills` VALUES
 (29001, 4019, 1), -- Decrease Speed
 (29001, 4021, 1), -- Queen Ant
 (29001, 4045, 1), -- Resist Full Magic Attack
-(29001, 4408, 1), -- HP Increase (1x)
-(29001, 4409, 1), -- MP Increase (1x)
-(29001, 4410, 11), -- Average P. Atk.
-(29001, 4411, 11), -- Average M. Atk.
-(29001, 4412, 11), -- Average P. Def.
-(29001, 4413, 11), -- Average M. Def.
-(29001, 4414, 2), -- Standard Type
-(29001, 4415, 3), -- One-handed Sword
-(29001, 4416, 12), -- Bugs
+(29001, 4408, 1), -- HP Modifiers
+(29001, 4409, 1), -- MP Modifiers
+(29001, 4410, 11), -- P. Atk. Modifiers
+(29001, 4411, 11), -- M. Atk. Modifiers
+(29001, 4412, 11), -- P. Def. Modifiers
+(29001, 4413, 11), -- M. Def. Modifiers
+(29001, 4414, 2), -- Armor Type
+(29001, 4415, 3), -- Weapon Type
+(29001, 4416, 12), -- Races
 -- Queen Ant Larva
 (29002, 4045, 1), -- Resist Full Magic Attack
-(29002, 4408, 1), -- HP Increase (1x)
-(29002, 4409, 1), -- MP Increase (1x)
-(29002, 4410, 11), -- Average P. Atk.
-(29002, 4411, 11), -- Average M. Atk.
-(29002, 4412, 11), -- Average P. Def.
-(29002, 4413, 11), -- Average M. Def.
-(29002, 4414, 2), -- Standard Type
-(29002, 4415, 3), -- One-handed Sword
-(29002, 4416, 12), -- Bugs
+(29002, 4408, 1), -- HP Modifiers
+(29002, 4409, 1), -- MP Modifiers
+(29002, 4410, 11), -- P. Atk. Modifiers
+(29002, 4411, 11), -- M. Atk. Modifiers
+(29002, 4412, 11), -- P. Def. Modifiers
+(29002, 4413, 11), -- M. Def. Modifiers
+(29002, 4414, 2), -- Armor Type
+(29002, 4415, 3), -- Weapon Type
+(29002, 4416, 12), -- Races
 -- Nurse Ant
 (29003, 4045, 1), -- Resist Full Magic Attack
-(29003, 4408, 1), -- HP Increase (1x)
-(29003, 4409, 1), -- MP Increase (1x)
-(29003, 4410, 11), -- Average P. Atk.
-(29003, 4411, 11), -- Average M. Atk.
-(29003, 4412, 11), -- Average P. Def.
-(29003, 4413, 11), -- Average M. Def.
-(29003, 4414, 2), -- Standard Type
-(29003, 4415, 3), -- One-handed Sword
-(29003, 4416, 12), -- Bugs
+(29003, 4408, 1), -- HP Modifiers
+(29003, 4409, 1), -- MP Modifiers
+(29003, 4410, 11), -- P. Atk. Modifiers
+(29003, 4411, 11), -- M. Atk. Modifiers
+(29003, 4412, 11), -- P. Def. Modifiers
+(29003, 4413, 11), -- M. Def. Modifiers
+(29003, 4414, 2), -- Armor Type
+(29003, 4415, 3), -- Weapon Type
+(29003, 4416, 12), -- Races
 -- Guard Ant
 (29004, 4045, 1), -- Resist Full Magic Attack
-(29004, 4408, 1), -- HP Increase (1x)
-(29004, 4409, 1), -- MP Increase (1x)
-(29004, 4410, 11), -- Average P. Atk.
-(29004, 4411, 11), -- Average M. Atk.
-(29004, 4412, 11), -- Average P. Def.
-(29004, 4413, 11), -- Average M. Def.
-(29004, 4414, 2), -- Standard Type
-(29004, 4415, 3), -- One-handed Sword
-(29004, 4416, 12), -- Bugs
+(29004, 4408, 1), -- HP Modifiers
+(29004, 4409, 1), -- MP Modifiers
+(29004, 4410, 11), -- P. Atk. Modifiers
+(29004, 4411, 11), -- M. Atk. Modifiers
+(29004, 4412, 11), -- P. Def. Modifiers
+(29004, 4413, 11), -- M. Def. Modifiers
+(29004, 4414, 2), -- Armor Type
+(29004, 4415, 3), -- Weapon Type
+(29004, 4416, 12), -- Races
 -- Court Guard Ant
 (29005, 4045, 1), -- Resist Full Magic Attack
-(29005, 4408, 1), -- HP Increase (1x)
-(29005, 4409, 1), -- MP Increase (1x)
-(29005, 4410, 11), -- Average P. Atk.
-(29005, 4411, 11), -- Average M. Atk.
-(29005, 4412, 11), -- Average P. Def.
-(29005, 4413, 11), -- Average M. Def.
-(29005, 4414, 2), -- Standard Type
-(29005, 4415, 3), -- One-handed Sword
-(29005, 4416, 12), -- Bugs
+(29005, 4408, 1), -- HP Modifiers
+(29005, 4409, 1), -- MP Modifiers
+(29005, 4410, 11), -- P. Atk. Modifiers
+(29005, 4411, 11), -- M. Atk. Modifiers
+(29005, 4412, 11), -- P. Def. Modifiers
+(29005, 4413, 11), -- M. Def. Modifiers
+(29005, 4414, 2), -- Armor Type
+(29005, 4415, 3), -- Weapon Type
+(29005, 4416, 12), -- Races
 -- Core
 (29006, 4045, 1), -- Resist Full Magic Attack
-(29006, 4408, 1), -- HP Increase (1x)
-(29006, 4409, 1), -- MP Increase (1x)
-(29006, 4410, 11), -- Average P. Atk.
-(29006, 4411, 11), -- Average M. Atk.
-(29006, 4412, 11), -- Average P. Def.
-(29006, 4413, 11), -- Average M. Def.
-(29006, 4414, 2), -- Standard Type
-(29006, 4415, 3), -- One-handed Sword
-(29006, 4416, 2), -- Magic Creatures
+(29006, 4408, 1), -- HP Modifiers
+(29006, 4409, 1), -- MP Modifiers
+(29006, 4410, 11), -- P. Atk. Modifiers
+(29006, 4411, 11), -- M. Atk. Modifiers
+(29006, 4412, 11), -- P. Def. Modifiers
+(29006, 4413, 11), -- M. Def. Modifiers
+(29006, 4414, 2), -- Armor Type
+(29006, 4415, 3), -- Weapon Type
+(29006, 4416, 2), -- Races
 -- Death Knight
 (29007, 4045, 1), -- Resist Full Magic Attack
-(29007, 4408, 1), -- HP Increase (1x)
-(29007, 4409, 1), -- MP Increase (1x)
-(29007, 4410, 11), -- Average P. Atk.
-(29007, 4411, 11), -- Average M. Atk.
-(29007, 4412, 11), -- Average P. Def.
-(29007, 4413, 11), -- Average M. Def.
-(29007, 4414, 2), -- Standard Type
-(29007, 4415, 3), -- One-handed Sword
-(29007, 4416, 1), -- Undead
+(29007, 4408, 1), -- HP Modifiers
+(29007, 4409, 1), -- MP Modifiers
+(29007, 4410, 11), -- P. Atk. Modifiers
+(29007, 4411, 11), -- M. Atk. Modifiers
+(29007, 4412, 11), -- P. Def. Modifiers
+(29007, 4413, 11), -- M. Def. Modifiers
+(29007, 4414, 2), -- Armor Type
+(29007, 4415, 3), -- Weapon Type
+(29007, 4416, 1), -- Races
 -- Doom Wraith
-(29008, 4001, 5), -- Windstrike
+(29008, 4001, 5), -- NPC Wind Strike
 (29008, 4045, 1), -- Resist Full Magic Attack
-(29008, 4408, 1), -- HP Increase (1x)
-(29008, 4409, 1), -- MP Increase (1x)
-(29008, 4410, 11), -- Average P. Atk.
-(29008, 4411, 11), -- Average M. Atk.
-(29008, 4412, 11), -- Average P. Def.
-(29008, 4413, 11), -- Average M. Def.
-(29008, 4414, 2), -- Standard Type
-(29008, 4415, 3), -- One-handed Sword
-(29008, 4416, 1), -- Undead
+(29008, 4408, 1), -- HP Modifiers
+(29008, 4409, 1), -- MP Modifiers
+(29008, 4410, 11), -- P. Atk. Modifiers
+(29008, 4411, 11), -- M. Atk. Modifiers
+(29008, 4412, 11), -- P. Def. Modifiers
+(29008, 4413, 11), -- M. Def. Modifiers
+(29008, 4414, 2), -- Armor Type
+(29008, 4415, 3), -- Weapon Type
+(29008, 4416, 1), -- Races
 -- Dicor
 (29009, 4035, 4), -- Poison
 (29009, 4045, 1), -- Resist Full Magic Attack
-(29009, 4408, 1), -- HP Increase (1x)
-(29009, 4409, 1), -- MP Increase (1x)
-(29009, 4410, 11), -- Average P. Atk.
-(29009, 4411, 11), -- Average M. Atk.
-(29009, 4412, 11), -- Average P. Def.
-(29009, 4413, 11), -- Average M. Def.
-(29009, 4414, 2), -- Standard Type
-(29009, 4415, 3), -- One-handed Sword
-(29009, 4416, 5), -- Plants
+(29009, 4408, 1), -- HP Modifiers
+(29009, 4409, 1), -- MP Modifiers
+(29009, 4410, 11), -- P. Atk. Modifiers
+(29009, 4411, 11), -- M. Atk. Modifiers
+(29009, 4412, 11), -- P. Def. Modifiers
+(29009, 4413, 11), -- M. Def. Modifiers
+(29009, 4414, 2), -- Armor Type
+(29009, 4415, 3), -- Weapon Type
+(29009, 4416, 5), -- Races
 -- Validus
 (29010, 4045, 1), -- Resist Full Magic Attack
-(29010, 4408, 1), -- HP Increase (1x)
-(29010, 4409, 1), -- MP Increase (1x)
-(29010, 4410, 11), -- Average P. Atk.
-(29010, 4411, 11), -- Average M. Atk.
-(29010, 4412, 11), -- Average P. Def.
-(29010, 4413, 11), -- Average M. Def.
-(29010, 4414, 2), -- Standard Type
-(29010, 4415, 3), -- One-handed Sword
-(29010, 4416, 3), -- Beasts
+(29010, 4408, 1), -- HP Modifiers
+(29010, 4409, 1), -- MP Modifiers
+(29010, 4410, 11), -- P. Atk. Modifiers
+(29010, 4411, 11), -- M. Atk. Modifiers
+(29010, 4412, 11), -- P. Def. Modifiers
+(29010, 4413, 11), -- M. Def. Modifiers
+(29010, 4414, 2), -- Armor Type
+(29010, 4415, 3), -- Weapon Type
+(29010, 4416, 3), -- Races
 -- Susceptor
-(29011, 4001, 4), -- Windstrike
+(29011, 4001, 4), -- NPC Wind Strike
 (29011, 4045, 1), -- Resist Full Magic Attack
-(29011, 4408, 1), -- HP Increase (1x)
-(29011, 4409, 1), -- MP Increase (1x)
-(29011, 4410, 11), -- Average P. Atk.
-(29011, 4411, 11), -- Average M. Atk.
-(29011, 4412, 11), -- Average P. Def.
-(29011, 4413, 11), -- Average M. Def.
-(29011, 4414, 2), -- Standard Type
-(29011, 4415, 3), -- One-handed Sword
-(29011, 4416, 2), -- Magic Creatures
+(29011, 4408, 1), -- HP Modifiers
+(29011, 4409, 1), -- MP Modifiers
+(29011, 4410, 11), -- P. Atk. Modifiers
+(29011, 4411, 11), -- M. Atk. Modifiers
+(29011, 4412, 11), -- P. Def. Modifiers
+(29011, 4413, 11), -- M. Def. Modifiers
+(29011, 4414, 2), -- Armor Type
+(29011, 4415, 3), -- Weapon Type
+(29011, 4416, 2), -- Races
 -- Perum
-(29012, 4001, 4), -- Windstrike
+(29012, 4001, 4), -- NPC Wind Strike
 (29012, 4045, 1), -- Resist Full Magic Attack
-(29012, 4273, 3), -- Resist Daggers/Rapier Weapon
-(29012, 4274, 1), -- Blunt Weapon Weak Point
-(29012, 4408, 1), -- HP Increase (1x)
-(29012, 4409, 1), -- MP Increase (1x)
-(29012, 4410, 11), -- Average P. Atk.
-(29012, 4411, 11), -- Average M. Atk.
-(29012, 4412, 11), -- Average P. Def.
-(29012, 4413, 11), -- Average M. Def.
-(29012, 4414, 2), -- Standard Type
-(29012, 4415, 3), -- One-handed Sword
-(29012, 4416, 2), -- Magic Creatures
+(29012, 4273, 3), -- Resist Dagger
+(29012, 4274, 1), -- Blunt Attack Weak Point
+(29012, 4408, 1), -- HP Modifiers
+(29012, 4409, 1), -- MP Modifiers
+(29012, 4410, 11), -- P. Atk. Modifiers
+(29012, 4411, 11), -- M. Atk. Modifiers
+(29012, 4412, 11), -- P. Def. Modifiers
+(29012, 4413, 11), -- M. Def. Modifiers
+(29012, 4414, 2), -- Armor Type
+(29012, 4415, 3), -- Weapon Type
+(29012, 4416, 2), -- Races
 (29012, 4444, 2), -- Higher Resist Bow/Crossbow Weapons
 -- Premo
 (29013, 4045, 1), -- Resist Full Magic Attack
-(29013, 4408, 1), -- HP Increase (1x)
-(29013, 4409, 1), -- MP Increase (1x)
-(29013, 4410, 11), -- Average P. Atk.
-(29013, 4411, 11), -- Average M. Atk.
-(29013, 4412, 11), -- Average P. Def.
-(29013, 4413, 11), -- Average M. Def.
-(29013, 4414, 2), -- Standard Type
-(29013, 4415, 3), -- One-handed Sword
-(29013, 4416, 11), -- Giants
+(29013, 4408, 1), -- HP Modifiers
+(29013, 4409, 1), -- MP Modifiers
+(29013, 4410, 11), -- P. Atk. Modifiers
+(29013, 4411, 11), -- M. Atk. Modifiers
+(29013, 4412, 11), -- P. Def. Modifiers
+(29013, 4413, 11), -- M. Def. Modifiers
+(29013, 4414, 2), -- Armor Type
+(29013, 4415, 3), -- Weapon Type
+(29013, 4416, 11), -- Races
 -- Orfen
 (29014, 4045, 1), -- Resist Full Magic Attack
 (29014, 4062, 1), -- Orfen
 (29014, 4063, 1), -- Paralysis
 (29014, 4064, 1), -- Paralysis
-(29014, 4408, 1), -- HP Increase (1x)
-(29014, 4409, 1), -- MP Increase (1x)
-(29014, 4410, 11), -- Average P. Atk.
-(29014, 4411, 11), -- Average M. Atk.
-(29014, 4412, 11), -- Average P. Def.
-(29014, 4413, 11), -- Average M. Def.
-(29014, 4414, 2), -- Standard Type
-(29014, 4415, 3), -- One-handed Sword
-(29014, 4416, 13), -- Fairies
+(29014, 4408, 1), -- HP Modifiers
+(29014, 4409, 1), -- MP Modifiers
+(29014, 4410, 11), -- P. Atk. Modifiers
+(29014, 4411, 11), -- M. Atk. Modifiers
+(29014, 4412, 11), -- P. Def. Modifiers
+(29014, 4413, 11), -- M. Def. Modifiers
+(29014, 4414, 2), -- Armor Type
+(29014, 4415, 3), -- Weapon Type
+(29014, 4416, 13), -- Races
 -- Richard
 (29015, 4045, 1), -- Resist Full Magic Attack
-(29015, 4408, 1), -- HP Increase (1x)
-(29015, 4409, 1), -- MP Increase (1x)
-(29015, 4410, 11), -- Average P. Atk.
-(29015, 4411, 11), -- Average M. Atk.
-(29015, 4412, 11), -- Average P. Def.
-(29015, 4413, 11), -- Average M. Def.
-(29015, 4414, 2), -- Standard Type
-(29015, 4415, 3), -- One-handed Sword
-(29015, 4416, 12), -- Bugs
+(29015, 4408, 1), -- HP Modifiers
+(29015, 4409, 1), -- MP Modifiers
+(29015, 4410, 11), -- P. Atk. Modifiers
+(29015, 4411, 11), -- M. Atk. Modifiers
+(29015, 4412, 11), -- P. Def. Modifiers
+(29015, 4413, 11), -- M. Def. Modifiers
+(29015, 4414, 2), -- Armor Type
+(29015, 4415, 3), -- Weapon Type
+(29015, 4416, 12), -- Races
 -- Richard Leos
 (29016, 4045, 1), -- Resist Full Magic Attack
-(29016, 4408, 1), -- HP Increase (1x)
-(29016, 4409, 1), -- MP Increase (1x)
-(29016, 4410, 11), -- Average P. Atk.
-(29016, 4411, 11), -- Average M. Atk.
-(29016, 4412, 11), -- Average P. Def.
-(29016, 4413, 11), -- Average M. Def.
-(29016, 4414, 2), -- Standard Type
-(29016, 4415, 3), -- One-handed Sword
-(29016, 4416, 12), -- Bugs
+(29016, 4408, 1), -- HP Modifiers
+(29016, 4409, 1), -- MP Modifiers
+(29016, 4410, 11), -- P. Atk. Modifiers
+(29016, 4411, 11), -- M. Atk. Modifiers
+(29016, 4412, 11), -- P. Def. Modifiers
+(29016, 4413, 11), -- M. Def. Modifiers
+(29016, 4414, 2), -- Armor Type
+(29016, 4415, 3), -- Weapon Type
+(29016, 4416, 12), -- Races
 -- Riba
 (29017, 4045, 1), -- Resist Full Magic Attack
-(29017, 4408, 1), -- HP Increase (1x)
-(29017, 4409, 1), -- MP Increase (1x)
-(29017, 4410, 11), -- Average P. Atk.
-(29017, 4411, 11), -- Average M. Atk.
-(29017, 4412, 11), -- Average P. Def.
-(29017, 4413, 11), -- Average M. Def.
-(29017, 4414, 2), -- Standard Type
-(29017, 4415, 3), -- One-handed Sword
-(29017, 4416, 12), -- Bugs
+(29017, 4408, 1), -- HP Modifiers
+(29017, 4409, 1), -- MP Modifiers
+(29017, 4410, 11), -- P. Atk. Modifiers
+(29017, 4411, 11), -- M. Atk. Modifiers
+(29017, 4412, 11), -- P. Def. Modifiers
+(29017, 4413, 11), -- M. Def. Modifiers
+(29017, 4414, 2), -- Armor Type
+(29017, 4415, 3), -- Weapon Type
+(29017, 4416, 12), -- Races
 -- Riba Iren
 (29018, 4045, 1), -- Resist Full Magic Attack
-(29018, 4408, 1), -- HP Increase (1x)
-(29018, 4409, 1), -- MP Increase (1x)
-(29018, 4410, 11), -- Average P. Atk.
-(29018, 4411, 11), -- Average M. Atk.
-(29018, 4412, 11), -- Average P. Def.
-(29018, 4413, 11), -- Average M. Def.
-(29018, 4414, 2), -- Standard Type
-(29018, 4415, 3), -- One-handed Sword
-(29018, 4416, 12), -- Bugs
+(29018, 4408, 1), -- HP Modifiers
+(29018, 4409, 1), -- MP Modifiers
+(29018, 4410, 11), -- P. Atk. Modifiers
+(29018, 4411, 11), -- M. Atk. Modifiers
+(29018, 4412, 11), -- P. Def. Modifiers
+(29018, 4413, 11), -- M. Def. Modifiers
+(29018, 4414, 2), -- Armor Type
+(29018, 4415, 3), -- Weapon Type
+(29018, 4416, 12), -- Races
 -- Antharas
 (29019, 4045, 1), -- Resist Full Magic Attack
-(29019, 4071, 2), -- Resist Bow/Crossbow Weapons
+(29019, 4071, 2), -- Resist Archery
 (29019, 4106, 1), -- Antharas Stun
 (29019, 4107, 1), -- Antharas Stun
 (29019, 4108, 1), -- Antharas Terror
 (29019, 4109, 1), -- Curse of Antharas
 (29019, 4110, 2), -- Breath Attack
 (29019, 4111, 1), -- Antharas Fossilization
-(29019, 4112, 1), -- Antharas Attack
-(29019, 4113, 1), -- Antharas Attack
+(29019, 4112, 1), -- Ordinary Attack
+(29019, 4113, 1), -- Animal doing ordinary attack
 (29019, 4122, 1), -- Antharas
-(29019, 4408, 1), -- HP Increase (1x)
-(29019, 4409, 1), -- MP Increase (1x)
-(29019, 4410, 11), -- Average P. Atk.
-(29019, 4411, 11), -- Average M. Atk.
-(29019, 4412, 11), -- Average P. Def.
-(29019, 4413, 11), -- Average M. Def.
-(29019, 4414, 2), -- Standard Type
-(29019, 4415, 3), -- One-handed Sword
-(29019, 4416, 10), -- Dragons
+(29019, 4408, 1), -- HP Modifiers
+(29019, 4409, 1), -- MP Modifiers
+(29019, 4410, 11), -- P. Atk. Modifiers
+(29019, 4411, 11), -- M. Atk. Modifiers
+(29019, 4412, 11), -- P. Def. Modifiers
+(29019, 4413, 11), -- M. Def. Modifiers
+(29019, 4414, 2), -- Armor Type
+(29019, 4415, 3), -- Weapon Type
+(29019, 4416, 10), -- Races
 (29019, 5092, 1), -- Antharas Terror
 (29019, 5093, 1), -- Antharas Meteor
 -- Baium
 (29020, 4045, 1), -- Resist Full Magic Attack
-(29020, 4256, 1), -- Resist Shock
-(29020, 4408, 1), -- HP Increase (1x)
-(29020, 4409, 1), -- MP Increase (1x)
-(29020, 4410, 11), -- Average P. Atk.
-(29020, 4411, 11), -- Average M. Atk.
-(29020, 4412, 11), -- Average P. Def.
-(29020, 4413, 11), -- Average M. Def.
-(29020, 4414, 2), -- Standard Type
-(29020, 4415, 3), -- One-handed Sword
-(29020, 4416, 1), -- Undead
+(29020, 4256, 1), -- 100% Stun Resistance.
+(29020, 4408, 1), -- HP Modifiers
+(29020, 4409, 1), -- MP Modifiers
+(29020, 4410, 11), -- P. Atk. Modifiers
+(29020, 4411, 11), -- M. Atk. Modifiers
+(29020, 4412, 11), -- P. Def. Modifiers
+(29020, 4413, 11), -- M. Def. Modifiers
+(29020, 4414, 2), -- Armor Type
+(29020, 4415, 3), -- Weapon Type
+(29020, 4416, 1), -- Races
 -- Archangel
 (29021, 4045, 1), -- Resist Full Magic Attack
-(29021, 4132, 1), -- Spear Attack
-(29021, 4133, 1), -- Heal
-(29021, 4408, 1), -- HP Increase (1x)
-(29021, 4409, 1), -- MP Increase (1x)
-(29021, 4410, 11), -- Average P. Atk.
-(29021, 4411, 11), -- Average M. Atk.
-(29021, 4412, 11), -- Average P. Def.
-(29021, 4413, 11), -- Average M. Def.
-(29021, 4414, 2), -- Standard Type
-(29021, 4415, 11), -- Spears
-(29021, 4416, 8), -- Angels
+(29021, 4132, 1), -- Spear: Pound the Ground
+(29021, 4133, 1), -- Angel Heal
+(29021, 4408, 1), -- HP Modifiers
+(29021, 4409, 1), -- MP Modifiers
+(29021, 4410, 11), -- P. Atk. Modifiers
+(29021, 4411, 11), -- M. Atk. Modifiers
+(29021, 4412, 11), -- P. Def. Modifiers
+(29021, 4413, 11), -- M. Def. Modifiers
+(29021, 4414, 2), -- Armor Type
+(29021, 4415, 11), -- Weapon Type
+(29021, 4416, 8), -- Races
 -- Zaken
 (29022, 4045, 1), -- Resist Full Magic Attack
-(29022, 4408, 1), -- HP Increase (1x)
-(29022, 4409, 1), -- MP Increase (1x)
-(29022, 4410, 11), -- Average P. Atk.
-(29022, 4411, 11), -- Average M. Atk.
-(29022, 4412, 11), -- Average P. Def.
-(29022, 4413, 11), -- Average M. Def.
-(29022, 4414, 2), -- Standard Type
-(29022, 4415, 3), -- One-handed Sword
-(29022, 4416, 1), -- Undead
+(29022, 4408, 1), -- HP Modifiers
+(29022, 4409, 1), -- MP Modifiers
+(29022, 4410, 11), -- P. Atk. Modifiers
+(29022, 4411, 11), -- M. Atk. Modifiers
+(29022, 4412, 11), -- P. Def. Modifiers
+(29022, 4413, 11), -- M. Def. Modifiers
+(29022, 4414, 2), -- Armor Type
+(29022, 4415, 3), -- Weapon Type
+(29022, 4416, 1), -- Races
 -- Doll Blader
 (29023, 4045, 1), -- Resist Full Magic Attack
-(29023, 4071, 5), -- Resist Bow/Crossbow Weapons
-(29023, 4085, 1), -- Critical Damage
+(29023, 4071, 5), -- Resist Archery
+(29023, 4085, 1), -- Critical Power
 (29023, 4086, 1), -- Critical Chance
-(29023, 4408, 1), -- HP Increase (1x)
-(29023, 4409, 1), -- MP Increase (1x)
-(29023, 4410, 11), -- Average P. Atk.
-(29023, 4411, 11), -- Average M. Atk.
-(29023, 4412, 11), -- Average P. Def.
-(29023, 4413, 11), -- Average M. Def.
-(29023, 4414, 2), -- Standard Type
-(29023, 4415, 19), -- Dual-Sword Weapons
-(29023, 4416, 9), -- Demons
+(29023, 4408, 1), -- HP Modifiers
+(29023, 4409, 1), -- MP Modifiers
+(29023, 4410, 11), -- P. Atk. Modifiers
+(29023, 4411, 11), -- M. Atk. Modifiers
+(29023, 4412, 11), -- P. Def. Modifiers
+(29023, 4413, 11), -- M. Def. Modifiers
+(29023, 4414, 2), -- Armor Type
+(29023, 4415, 19), -- Weapon Type
+(29023, 4416, 9), -- Races
 -- Veil Master
 (29024, 4045, 1), -- Resist Full Magic Attack
-(29024, 4071, 5), -- Resist Bow/Crossbow Weapons
-(29024, 4085, 1), -- Critical Damage
+(29024, 4071, 5), -- Resist Archery
+(29024, 4085, 1), -- Critical Power
 (29024, 4086, 1), -- Critical Chance
-(29024, 4408, 1), -- HP Increase (1x)
-(29024, 4409, 1), -- MP Increase (1x)
-(29024, 4410, 11), -- Average P. Atk.
-(29024, 4411, 11), -- Average M. Atk.
-(29024, 4412, 11), -- Average P. Def.
-(29024, 4413, 11), -- Average M. Def.
-(29024, 4414, 2), -- Standard Type
-(29024, 4415, 3), -- One-handed Sword
-(29024, 4416, 9), -- Demons
+(29024, 4408, 1), -- HP Modifiers
+(29024, 4409, 1), -- MP Modifiers
+(29024, 4410, 11), -- P. Atk. Modifiers
+(29024, 4411, 11), -- M. Atk. Modifiers
+(29024, 4412, 11), -- P. Def. Modifiers
+(29024, 4413, 11), -- M. Def. Modifiers
+(29024, 4414, 2), -- Armor Type
+(29024, 4415, 3), -- Weapon Type
+(29024, 4416, 9), -- Races
 -- Baium
 (29025, 4045, 1), -- Resist Full Magic Attack
-(29025, 4408, 1), -- HP Increase (1x)
-(29025, 4409, 1), -- MP Increase (1x)
-(29025, 4410, 11), -- Average P. Atk.
-(29025, 4411, 11), -- Average M. Atk.
-(29025, 4412, 11), -- Average P. Def.
-(29025, 4413, 11), -- Average M. Def.
-(29025, 4414, 2), -- Standard Type
-(29025, 4415, 3), -- One-handed Sword
-(29025, 4416, 1), -- Undead
+(29025, 4408, 1), -- HP Modifiers
+(29025, 4409, 1), -- MP Modifiers
+(29025, 4410, 11), -- P. Atk. Modifiers
+(29025, 4411, 11), -- M. Atk. Modifiers
+(29025, 4412, 11), -- P. Def. Modifiers
+(29025, 4413, 11), -- M. Def. Modifiers
+(29025, 4414, 2), -- Armor Type
+(29025, 4415, 3), -- Weapon Type
+(29025, 4416, 1), -- Races
 -- Pirate Zombie Captain
 (29026, 4045, 1), -- Resist Full Magic Attack
-(29026, 4408, 1), -- HP Increase (1x)
-(29026, 4409, 1), -- MP Increase (1x)
-(29026, 4410, 11), -- Average P. Atk.
-(29026, 4411, 11), -- Average M. Atk.
-(29026, 4412, 11), -- Average P. Def.
-(29026, 4413, 11), -- Average M. Def.
-(29026, 4414, 2), -- Standard Type
-(29026, 4415, 7), -- Daggers
-(29026, 4416, 1), -- Undead
+(29026, 4408, 1), -- HP Modifiers
+(29026, 4409, 1), -- MP Modifiers
+(29026, 4410, 11), -- P. Atk. Modifiers
+(29026, 4411, 11), -- M. Atk. Modifiers
+(29026, 4412, 11), -- P. Def. Modifiers
+(29026, 4413, 11), -- M. Def. Modifiers
+(29026, 4414, 2), -- Armor Type
+(29026, 4415, 7), -- Weapon Type
+(29026, 4416, 1), -- Races
 -- Pirate Zombie
 (29027, 4045, 1), -- Resist Full Magic Attack
-(29027, 4408, 1), -- HP Increase (1x)
-(29027, 4409, 1), -- MP Increase (1x)
-(29027, 4410, 11), -- Average P. Atk.
-(29027, 4411, 11), -- Average M. Atk.
-(29027, 4412, 11), -- Average P. Def.
-(29027, 4413, 11), -- Average M. Def.
-(29027, 4414, 2), -- Standard Type
-(29027, 4415, 7), -- Daggers
-(29027, 4416, 1), -- Undead
+(29027, 4408, 1), -- HP Modifiers
+(29027, 4409, 1), -- MP Modifiers
+(29027, 4410, 11), -- P. Atk. Modifiers
+(29027, 4411, 11), -- M. Atk. Modifiers
+(29027, 4412, 11), -- P. Def. Modifiers
+(29027, 4413, 11), -- M. Def. Modifiers
+(29027, 4414, 2), -- Armor Type
+(29027, 4415, 7), -- Weapon Type
+(29027, 4416, 1), -- Races
 -- Valakas
 (29028, 4045, 1), -- Resist Full Magic Attack
-(29028, 4071, 2), -- Resist Bow/Crossbow Weapons
-(29028, 4408, 1), -- HP Increase (1x)
-(29028, 4409, 1), -- MP Increase (1x)
-(29028, 4410, 11), -- Average P. Atk.
-(29028, 4411, 11), -- Average M. Atk.
-(29028, 4412, 11), -- Average P. Def.
-(29028, 4413, 11), -- Average M. Def.
-(29028, 4414, 2), -- Standard Type
-(29028, 4415, 5), -- Blunt Weapons
-(29028, 4416, 10), -- Dragons
+(29028, 4071, 2), -- Resist Archery
+(29028, 4408, 1), -- HP Modifiers
+(29028, 4409, 1), -- MP Modifiers
+(29028, 4410, 11), -- P. Atk. Modifiers
+(29028, 4411, 11), -- M. Atk. Modifiers
+(29028, 4412, 11), -- P. Def. Modifiers
+(29028, 4413, 11), -- M. Def. Modifiers
+(29028, 4414, 2), -- Armor Type
+(29028, 4415, 5), -- Weapon Type
+(29028, 4416, 10), -- Races
 (29028, 4679, 1), -- Valakas
 (29028, 5462, 1), -- Fire Attacks
 -- Lavasaurus Alpha
 (29029, 4045, 1), -- Resist Full Magic Attack
-(29029, 4408, 1), -- HP Increase (1x)
-(29029, 4409, 1), -- MP Increase (1x)
-(29029, 4410, 11), -- Average P. Atk.
-(29029, 4411, 11), -- Average M. Atk.
-(29029, 4412, 11), -- Average P. Def.
-(29029, 4413, 11), -- Average M. Def.
-(29029, 4414, 2), -- Standard Type
-(29029, 4415, 10), -- Bows
-(29029, 4416, 2), -- Magic Creatures
+(29029, 4408, 1), -- HP Modifiers
+(29029, 4409, 1), -- MP Modifiers
+(29029, 4410, 11), -- P. Atk. Modifiers
+(29029, 4411, 11), -- M. Atk. Modifiers
+(29029, 4412, 11), -- P. Def. Modifiers
+(29029, 4413, 11), -- M. Def. Modifiers
+(29029, 4414, 2), -- Armor Type
+(29029, 4415, 10), -- Weapon Type
+(29029, 4416, 2), -- Races
 (29029, 5462, 1), -- Fire Attacks
 (29029, 6656, 1), -- Lavasaurus Firstborn Attack
 (29029, 6657, 1), -- Lavasaurus Firstborn Heal
 (29029, 6675, 1), -- Lavasaurus Firstborn Attack
 -- Fenril Hound Kerinne
 (29030, 4045, 1), -- Resist Full Magic Attack
-(29030, 4178, 9), -- Flame Strike
-(29030, 4408, 1), -- HP Increase (1x)
-(29030, 4409, 1), -- MP Increase (1x)
-(29030, 4410, 11), -- Average P. Atk.
-(29030, 4411, 11), -- Average M. Atk.
-(29030, 4412, 11), -- Average P. Def.
-(29030, 4413, 11), -- Average M. Def.
-(29030, 4414, 2), -- Standard Type
-(29030, 4415, 4), -- One-handed Sword
-(29030, 4416, 3), -- Beasts
+(29030, 4178, 9), -- BOSS Flame Strike
+(29030, 4408, 1), -- HP Modifiers
+(29030, 4409, 1), -- MP Modifiers
+(29030, 4410, 11), -- P. Atk. Modifiers
+(29030, 4411, 11), -- M. Atk. Modifiers
+(29030, 4412, 11), -- P. Def. Modifiers
+(29030, 4413, 11), -- M. Def. Modifiers
+(29030, 4414, 2), -- Armor Type
+(29030, 4415, 4), -- Weapon Type
+(29030, 4416, 3), -- Races
 (29030, 4494, 1), -- Raid Boss
 (29030, 4978, 1), -- Raid Boss - Level 81
 -- Kerinne's Ifrit
 (29031, 4045, 1), -- Resist Full Magic Attack
-(29031, 4209, 9), -- Heal
-(29031, 4213, 9), -- Haste
-(29031, 4408, 1), -- HP Increase (1x)
-(29031, 4409, 1), -- MP Increase (1x)
-(29031, 4410, 11), -- Average P. Atk.
-(29031, 4411, 11), -- Average M. Atk.
-(29031, 4412, 11), -- Average P. Def.
-(29031, 4413, 11), -- Average M. Def.
-(29031, 4414, 2), -- Standard Type
-(29031, 4415, 1), -- Bare Hands
-(29031, 4416, 7), -- Spirits
+(29031, 4209, 9), -- BOSS Heal
+(29031, 4213, 9), -- BOSS Haste
+(29031, 4408, 1), -- HP Modifiers
+(29031, 4409, 1), -- MP Modifiers
+(29031, 4410, 11), -- P. Atk. Modifiers
+(29031, 4411, 11), -- M. Atk. Modifiers
+(29031, 4412, 11), -- P. Def. Modifiers
+(29031, 4413, 11), -- M. Def. Modifiers
+(29031, 4414, 2), -- Armor Type
+(29031, 4415, 1), -- Weapon Type
+(29031, 4416, 7), -- Races
 -- Kerinne's Golem
 (29032, 4045, 1), -- Resist Full Magic Attack
-(29032, 4408, 1), -- HP Increase (1x)
-(29032, 4409, 1), -- MP Increase (1x)
-(29032, 4410, 11), -- Average P. Atk.
-(29032, 4411, 11), -- Average M. Atk.
-(29032, 4412, 11), -- Average P. Def.
-(29032, 4413, 11), -- Average M. Def.
-(29032, 4414, 2), -- Standard Type
-(29032, 4415, 1), -- Bare Hands
-(29032, 4416, 2), -- Magic Creatures
+(29032, 4408, 1), -- HP Modifiers
+(29032, 4409, 1), -- MP Modifiers
+(29032, 4410, 11), -- P. Atk. Modifiers
+(29032, 4411, 11), -- M. Atk. Modifiers
+(29032, 4412, 11), -- P. Def. Modifiers
+(29032, 4413, 11), -- M. Def. Modifiers
+(29032, 4414, 2), -- Armor Type
+(29032, 4415, 1), -- Weapon Type
+(29032, 4416, 2), -- Races
 -- Fenril Hound Freki
 (29033, 4045, 1), -- Resist Full Magic Attack
 (29033, 4197, 9), -- Hold
-(29033, 4408, 1), -- HP Increase (1x)
-(29033, 4409, 1), -- MP Increase (1x)
-(29033, 4410, 11), -- Average P. Atk.
-(29033, 4411, 11), -- Average M. Atk.
-(29033, 4412, 11), -- Average P. Def.
-(29033, 4413, 11), -- Average M. Def.
-(29033, 4414, 2), -- Standard Type
-(29033, 4415, 4), -- One-handed Sword
-(29033, 4416, 3), -- Beasts
+(29033, 4408, 1), -- HP Modifiers
+(29033, 4409, 1), -- MP Modifiers
+(29033, 4410, 11), -- P. Atk. Modifiers
+(29033, 4411, 11), -- M. Atk. Modifiers
+(29033, 4412, 11), -- P. Def. Modifiers
+(29033, 4413, 11), -- M. Def. Modifiers
+(29033, 4414, 2), -- Armor Type
+(29033, 4415, 4), -- Weapon Type
+(29033, 4416, 3), -- Races
 (29033, 4494, 1), -- Raid Boss
 (29033, 4979, 1), -- Raid Boss - Level 82
 -- Freki's Ifrit
 (29034, 4045, 1), -- Resist Full Magic Attack
-(29034, 4193, 9), -- Life Drain
+(29034, 4193, 9), -- BOSS Life Drain
 (29034, 4203, 9), -- Decrease Speed
-(29034, 4408, 1), -- HP Increase (1x)
-(29034, 4409, 1), -- MP Increase (1x)
-(29034, 4410, 11), -- Average P. Atk.
-(29034, 4411, 11), -- Average M. Atk.
-(29034, 4412, 11), -- Average P. Def.
-(29034, 4413, 11), -- Average M. Def.
-(29034, 4414, 2), -- Standard Type
-(29034, 4415, 1), -- Bare Hands
-(29034, 4416, 7), -- Spirits
+(29034, 4408, 1), -- HP Modifiers
+(29034, 4409, 1), -- MP Modifiers
+(29034, 4410, 11), -- P. Atk. Modifiers
+(29034, 4411, 11), -- M. Atk. Modifiers
+(29034, 4412, 11), -- P. Def. Modifiers
+(29034, 4413, 11), -- M. Def. Modifiers
+(29034, 4414, 2), -- Armor Type
+(29034, 4415, 1), -- Weapon Type
+(29034, 4416, 7), -- Races
 -- Freki's Golem
 (29035, 4045, 1), -- Resist Full Magic Attack
-(29035, 4408, 1), -- HP Increase (1x)
-(29035, 4409, 1), -- MP Increase (1x)
-(29035, 4410, 11), -- Average P. Atk.
-(29035, 4411, 11), -- Average M. Atk.
-(29035, 4412, 11), -- Average P. Def.
-(29035, 4413, 11), -- Average M. Def.
-(29035, 4414, 2), -- Standard Type
-(29035, 4415, 1), -- Bare Hands
-(29035, 4416, 2), -- Magic Creatures
+(29035, 4408, 1), -- HP Modifiers
+(29035, 4409, 1), -- MP Modifiers
+(29035, 4410, 11), -- P. Atk. Modifiers
+(29035, 4411, 11), -- M. Atk. Modifiers
+(29035, 4412, 11), -- P. Def. Modifiers
+(29035, 4413, 11), -- M. Def. Modifiers
+(29035, 4414, 2), -- Armor Type
+(29035, 4415, 1), -- Weapon Type
+(29035, 4416, 2), -- Races
 -- Fenril Hound Uruz
 (29036, 4045, 1), -- Resist Full Magic Attack
-(29036, 4170, 9), -- Mortal Blow
+(29036, 4170, 9), -- BOSS Mortal Blow
 (29036, 4172, 9), -- Stun
-(29036, 4175, 9), -- Haste
-(29036, 4177, 9), -- Cancel
-(29036, 4408, 1), -- HP Increase (1x)
-(29036, 4409, 1), -- MP Increase (1x)
-(29036, 4410, 11), -- Average P. Atk.
-(29036, 4411, 11), -- Average M. Atk.
-(29036, 4412, 11), -- Average P. Def.
-(29036, 4413, 11), -- Average M. Def.
-(29036, 4414, 2), -- Standard Type
-(29036, 4415, 4), -- One-handed Sword
-(29036, 4416, 3), -- Beasts
+(29036, 4175, 9), -- BOSS Haste
+(29036, 4177, 9), -- BOSS Cancel Magic
+(29036, 4408, 1), -- HP Modifiers
+(29036, 4409, 1), -- MP Modifiers
+(29036, 4410, 11), -- P. Atk. Modifiers
+(29036, 4411, 11), -- M. Atk. Modifiers
+(29036, 4412, 11), -- P. Def. Modifiers
+(29036, 4413, 11), -- M. Def. Modifiers
+(29036, 4414, 2), -- Armor Type
+(29036, 4415, 4), -- Weapon Type
+(29036, 4416, 3), -- Races
 (29036, 4494, 1), -- Raid Boss
 (29036, 4980, 1), -- Raid Boss - Level 83
 -- Fenril Hound Kinaz
 (29037, 4045, 1), -- Resist Full Magic Attack
 (29037, 4184, 9), -- Decrease Atk. Spd.
 (29037, 4188, 9), -- Bleed
-(29037, 4195, 9), -- Twister
-(29037, 4408, 1), -- HP Increase (1x)
-(29037, 4409, 1), -- MP Increase (1x)
-(29037, 4410, 11), -- Average P. Atk.
-(29037, 4411, 11), -- Average M. Atk.
-(29037, 4412, 11), -- Average P. Def.
-(29037, 4413, 11), -- Average M. Def.
-(29037, 4414, 2), -- Standard Type
-(29037, 4415, 4), -- One-handed Sword
-(29037, 4416, 3), -- Beasts
+(29037, 4195, 9), -- BOSS Twister
+(29037, 4408, 1), -- HP Modifiers
+(29037, 4409, 1), -- MP Modifiers
+(29037, 4410, 11), -- P. Atk. Modifiers
+(29037, 4411, 11), -- M. Atk. Modifiers
+(29037, 4412, 11), -- P. Def. Modifiers
+(29037, 4413, 11), -- M. Def. Modifiers
+(29037, 4414, 2), -- Armor Type
+(29037, 4415, 4), -- Weapon Type
+(29037, 4416, 3), -- Races
 (29037, 4494, 1), -- Raid Boss
 (29037, 4981, 1), -- Raid Boss - Level 84
 -- Kinaz's Ifrit
 (29038, 4045, 1), -- Resist Full Magic Attack
-(29038, 4191, 9), -- Wind Strike
+(29038, 4191, 9), -- BOSS Wind Strike
 (29038, 4201, 9), -- Sleep
-(29038, 4408, 1), -- HP Increase (1x)
-(29038, 4409, 1), -- MP Increase (1x)
-(29038, 4410, 11), -- Average P. Atk.
-(29038, 4411, 11), -- Average M. Atk.
-(29038, 4412, 11), -- Average P. Def.
-(29038, 4413, 11), -- Average M. Def.
-(29038, 4414, 2), -- Standard Type
-(29038, 4415, 1), -- Bare Hands
-(29038, 4416, 7), -- Spirits
+(29038, 4408, 1), -- HP Modifiers
+(29038, 4409, 1), -- MP Modifiers
+(29038, 4410, 11), -- P. Atk. Modifiers
+(29038, 4411, 11), -- M. Atk. Modifiers
+(29038, 4412, 11), -- P. Def. Modifiers
+(29038, 4413, 11), -- M. Def. Modifiers
+(29038, 4414, 2), -- Armor Type
+(29038, 4415, 1), -- Weapon Type
+(29038, 4416, 7), -- Races
 -- Kinaz's Ifrit
 (29039, 4045, 1), -- Resist Full Magic Attack
-(29039, 4210, 9), -- Chant of Life
-(29039, 4212, 9), -- Shield
-(29039, 4408, 1), -- HP Increase (1x)
-(29039, 4409, 1), -- MP Increase (1x)
-(29039, 4410, 11), -- Average P. Atk.
-(29039, 4411, 11), -- Average M. Atk.
-(29039, 4412, 11), -- Average P. Def.
-(29039, 4413, 11), -- Average M. Def.
-(29039, 4414, 2), -- Standard Type
-(29039, 4415, 1), -- Bare Hands
-(29039, 4416, 7), -- Spirits
+(29039, 4210, 9), -- Life Chant
+(29039, 4212, 9), -- BOSS Shield
+(29039, 4408, 1), -- HP Modifiers
+(29039, 4409, 1), -- MP Modifiers
+(29039, 4410, 11), -- P. Atk. Modifiers
+(29039, 4411, 11), -- M. Atk. Modifiers
+(29039, 4412, 11), -- P. Def. Modifiers
+(29039, 4413, 11), -- M. Def. Modifiers
+(29039, 4414, 2), -- Armor Type
+(29039, 4415, 1), -- Weapon Type
+(29039, 4416, 7), -- Races
 -- Wings of Flame, Ixion
 (29040, 4045, 1), -- Resist Full Magic Attack
-(29040, 4168, 10), -- Power Strike
+(29040, 4168, 10), -- BOSS Power Strike
 (29040, 4172, 10), -- Stun
-(29040, 4175, 10), -- Haste
-(29040, 4177, 10), -- Cancel
-(29040, 4408, 1), -- HP Increase (1x)
-(29040, 4409, 1), -- MP Increase (1x)
-(29040, 4410, 11), -- Average P. Atk.
-(29040, 4411, 11), -- Average M. Atk.
-(29040, 4412, 11), -- Average P. Def.
-(29040, 4413, 11), -- Average M. Def.
-(29040, 4414, 2), -- Standard Type
-(29040, 4415, 3), -- One-handed Sword
-(29040, 4416, 10), -- Dragons
+(29040, 4175, 10), -- BOSS Haste
+(29040, 4177, 10), -- BOSS Cancel Magic
+(29040, 4408, 1), -- HP Modifiers
+(29040, 4409, 1), -- MP Modifiers
+(29040, 4410, 11), -- P. Atk. Modifiers
+(29040, 4411, 11), -- M. Atk. Modifiers
+(29040, 4412, 11), -- P. Def. Modifiers
+(29040, 4413, 11), -- M. Def. Modifiers
+(29040, 4414, 2), -- Armor Type
+(29040, 4415, 3), -- Weapon Type
+(29040, 4416, 10), -- Races
 (29040, 4494, 1), -- Raid Boss
 (29040, 4982, 1), -- Raid Boss - Level 85
 -- Inferno Golem
 (29041, 4045, 1), -- Resist Full Magic Attack
-(29041, 4179, 9), -- Power Strike
-(29041, 4408, 1), -- HP Increase (1x)
-(29041, 4409, 1), -- MP Increase (1x)
-(29041, 4410, 11), -- Average P. Atk.
-(29041, 4411, 11), -- Average M. Atk.
-(29041, 4412, 11), -- Average P. Def.
-(29041, 4413, 11), -- Average M. Def.
-(29041, 4414, 2), -- Standard Type
-(29041, 4415, 1), -- Bare Hands
-(29041, 4416, 2), -- Magic Creatures
+(29041, 4179, 9), -- BOSS Power Strike
+(29041, 4408, 1), -- HP Modifiers
+(29041, 4409, 1), -- MP Modifiers
+(29041, 4410, 11), -- P. Atk. Modifiers
+(29041, 4411, 11), -- M. Atk. Modifiers
+(29041, 4412, 11), -- P. Def. Modifiers
+(29041, 4413, 11), -- M. Def. Modifiers
+(29041, 4414, 2), -- Armor Type
+(29041, 4415, 1), -- Weapon Type
+(29041, 4416, 2), -- Races
 -- Inferno Golem
 (29042, 4045, 1), -- Resist Full Magic Attack
-(29042, 4408, 1), -- HP Increase (1x)
-(29042, 4409, 1), -- MP Increase (1x)
-(29042, 4410, 11), -- Average P. Atk.
-(29042, 4411, 11), -- Average M. Atk.
-(29042, 4412, 11), -- Average P. Def.
-(29042, 4413, 11), -- Average M. Def.
-(29042, 4414, 2), -- Standard Type
-(29042, 4415, 1), -- Bare Hands
-(29042, 4416, 2), -- Magic Creatures
+(29042, 4408, 1), -- HP Modifiers
+(29042, 4409, 1), -- MP Modifiers
+(29042, 4410, 11), -- P. Atk. Modifiers
+(29042, 4411, 11), -- M. Atk. Modifiers
+(29042, 4412, 11), -- P. Def. Modifiers
+(29042, 4413, 11), -- M. Def. Modifiers
+(29042, 4414, 2), -- Armor Type
+(29042, 4415, 1), -- Weapon Type
+(29042, 4416, 2), -- Races
 -- Howling Ifrit
 (29043, 4045, 1), -- Resist Full Magic Attack
-(29043, 4209, 9), -- Heal
-(29043, 4211, 9), -- Might
-(29043, 4408, 1), -- HP Increase (1x)
-(29043, 4409, 1), -- MP Increase (1x)
-(29043, 4410, 11), -- Average P. Atk.
-(29043, 4411, 11), -- Average M. Atk.
-(29043, 4412, 11), -- Average P. Def.
-(29043, 4413, 11), -- Average M. Def.
-(29043, 4414, 2), -- Standard Type
-(29043, 4415, 1), -- Bare Hands
-(29043, 4416, 7), -- Spirits
+(29043, 4209, 9), -- BOSS Heal
+(29043, 4211, 9), -- BOSS Might
+(29043, 4408, 1), -- HP Modifiers
+(29043, 4409, 1), -- MP Modifiers
+(29043, 4410, 11), -- P. Atk. Modifiers
+(29043, 4411, 11), -- M. Atk. Modifiers
+(29043, 4412, 11), -- P. Def. Modifiers
+(29043, 4413, 11), -- M. Def. Modifiers
+(29043, 4414, 2), -- Armor Type
+(29043, 4415, 1), -- Weapon Type
+(29043, 4416, 7), -- Races
 -- Howling Ifrit
 (29044, 4045, 1), -- Resist Full Magic Attack
-(29044, 4191, 9), -- Wind Strike
+(29044, 4191, 9), -- BOSS Wind Strike
 (29044, 4199, 9), -- Decrease P. Atk.
-(29044, 4408, 1), -- HP Increase (1x)
-(29044, 4409, 1), -- MP Increase (1x)
-(29044, 4410, 11), -- Average P. Atk.
-(29044, 4411, 11), -- Average M. Atk.
-(29044, 4412, 11), -- Average P. Def.
-(29044, 4413, 11), -- Average M. Def.
-(29044, 4414, 2), -- Standard Type
-(29044, 4415, 1), -- Bare Hands
-(29044, 4416, 7), -- Spirits
+(29044, 4408, 1), -- HP Modifiers
+(29044, 4409, 1), -- MP Modifiers
+(29044, 4410, 11), -- P. Atk. Modifiers
+(29044, 4411, 11), -- M. Atk. Modifiers
+(29044, 4412, 11), -- P. Def. Modifiers
+(29044, 4413, 11), -- M. Def. Modifiers
+(29044, 4414, 2), -- Armor Type
+(29044, 4415, 1), -- Weapon Type
+(29044, 4416, 7), -- Races
 -- Frintezza
 (29045, 4045, 1), -- Resist Full Magic Attack
-(29045, 4408, 1), -- HP Increase (1x)
-(29045, 4409, 1), -- MP Increase (1x)
-(29045, 4410, 11), -- Average P. Atk.
-(29045, 4411, 11), -- Average M. Atk.
-(29045, 4412, 11), -- Average P. Def.
-(29045, 4413, 11), -- Average M. Def.
-(29045, 4414, 2), -- Standard Type
-(29045, 4415, 1), -- Bare Hands
-(29045, 4416, 6), -- Humanoids
+(29045, 4408, 1), -- HP Modifiers
+(29045, 4409, 1), -- MP Modifiers
+(29045, 4410, 11), -- P. Atk. Modifiers
+(29045, 4411, 11), -- M. Atk. Modifiers
+(29045, 4412, 11), -- P. Def. Modifiers
+(29045, 4413, 11), -- M. Def. Modifiers
+(29045, 4414, 2), -- Armor Type
+(29045, 4415, 1), -- Weapon Type
+(29045, 4416, 6), -- Races
 (29045, 5464, 1), -- Wind Attacks
 -- Scarlet van Halisha
 (29046, 4045, 1), -- Resist Full Magic Attack
-(29046, 4071, 4), -- Resist Bow/Crossbow Weapons
-(29046, 4408, 1), -- HP Increase (1x)
-(29046, 4409, 1), -- MP Increase (1x)
-(29046, 4410, 11), -- Average P. Atk.
-(29046, 4411, 11), -- Average M. Atk.
-(29046, 4412, 11), -- Average P. Def.
-(29046, 4413, 11), -- Average M. Def.
-(29046, 4414, 2), -- Standard Type
-(29046, 4415, 1), -- Bare Hands
-(29046, 4416, 9), -- Demons
-(29046, 5078, 1), -- Frintessa Critical Damage
+(29046, 4071, 4), -- Resist Archery
+(29046, 4408, 1), -- HP Modifiers
+(29046, 4409, 1), -- MP Modifiers
+(29046, 4410, 11), -- P. Atk. Modifiers
+(29046, 4411, 11), -- M. Atk. Modifiers
+(29046, 4412, 11), -- P. Def. Modifiers
+(29046, 4413, 11), -- M. Def. Modifiers
+(29046, 4414, 2), -- Armor Type
+(29046, 4415, 1), -- Weapon Type
+(29046, 4416, 9), -- Races
+(29046, 5078, 1), -- Frintezza Critical Power
 (29046, 5467, 1), -- Dark Attacks
 -- Scarlet van Halisha
 (29047, 4045, 1), -- Resist Full Magic Attack
-(29047, 4071, 4), -- Resist Bow/Crossbow Weapons
-(29047, 4408, 1), -- HP Increase (1x)
-(29047, 4409, 1), -- MP Increase (1x)
-(29047, 4410, 11), -- Average P. Atk.
-(29047, 4411, 11), -- Average M. Atk.
-(29047, 4412, 11), -- Average P. Def.
-(29047, 4413, 11), -- Average M. Def.
-(29047, 4414, 2), -- Standard Type
-(29047, 4415, 1), -- Bare Hands
-(29047, 4416, 9), -- Demons
-(29047, 5078, 1), -- Frintessa Critical Damage
+(29047, 4071, 4), -- Resist Archery
+(29047, 4408, 1), -- HP Modifiers
+(29047, 4409, 1), -- MP Modifiers
+(29047, 4410, 11), -- P. Atk. Modifiers
+(29047, 4411, 11), -- M. Atk. Modifiers
+(29047, 4412, 11), -- P. Def. Modifiers
+(29047, 4413, 11), -- M. Def. Modifiers
+(29047, 4414, 2), -- Armor Type
+(29047, 4415, 1), -- Weapon Type
+(29047, 4416, 9), -- Races
+(29047, 5078, 1), -- Frintezza Critical Power
 (29047, 5467, 1), -- Dark Attacks
 -- Evil Spirit
 (29048, 4045, 1), -- Resist Full Magic Attack
-(29048, 4408, 1), -- HP Increase (1x)
-(29048, 4409, 1), -- MP Increase (1x)
-(29048, 4410, 11), -- Average P. Atk.
-(29048, 4411, 11), -- Average M. Atk.
-(29048, 4412, 11), -- Average P. Def.
-(29048, 4413, 11), -- Average M. Def.
-(29048, 4414, 2), -- Standard Type
-(29048, 4415, 1), -- Bare Hands
-(29048, 4416, 2), -- Magic Creatures
+(29048, 4408, 1), -- HP Modifiers
+(29048, 4409, 1), -- MP Modifiers
+(29048, 4410, 11), -- P. Atk. Modifiers
+(29048, 4411, 11), -- M. Atk. Modifiers
+(29048, 4412, 11), -- P. Def. Modifiers
+(29048, 4413, 11), -- M. Def. Modifiers
+(29048, 4414, 2), -- Armor Type
+(29048, 4415, 1), -- Weapon Type
+(29048, 4416, 2), -- Races
 (29048, 5464, 1), -- Wind Attacks
 -- Evil Spirit
 (29049, 4045, 1), -- Resist Full Magic Attack
-(29049, 4408, 1), -- HP Increase (1x)
-(29049, 4409, 1), -- MP Increase (1x)
-(29049, 4410, 11), -- Average P. Atk.
-(29049, 4411, 11), -- Average M. Atk.
-(29049, 4412, 11), -- Average P. Def.
-(29049, 4413, 11), -- Average M. Def.
-(29049, 4414, 2), -- Standard Type
-(29049, 4415, 1), -- Bare Hands
-(29049, 4416, 2), -- Magic Creatures
+(29049, 4408, 1), -- HP Modifiers
+(29049, 4409, 1), -- MP Modifiers
+(29049, 4410, 11), -- P. Atk. Modifiers
+(29049, 4411, 11), -- M. Atk. Modifiers
+(29049, 4412, 11), -- P. Def. Modifiers
+(29049, 4413, 11), -- M. Def. Modifiers
+(29049, 4414, 2), -- Armor Type
+(29049, 4415, 1), -- Weapon Type
+(29049, 4416, 2), -- Races
 (29049, 5464, 1), -- Wind Attacks
 -- Breath of Halisha
 (29050, 4045, 1), -- Resist Full Magic Attack
-(29050, 4408, 1), -- HP Increase (1x)
-(29050, 4409, 1), -- MP Increase (1x)
-(29050, 4410, 11), -- Average P. Atk.
-(29050, 4411, 11), -- Average M. Atk.
-(29050, 4412, 11), -- Average P. Def.
-(29050, 4413, 11), -- Average M. Def.
-(29050, 4414, 3), -- Light Armor Type
-(29050, 4415, 1), -- Bare Hands
-(29050, 4416, 9), -- Demons
+(29050, 4408, 1), -- HP Modifiers
+(29050, 4409, 1), -- MP Modifiers
+(29050, 4410, 11), -- P. Atk. Modifiers
+(29050, 4411, 11), -- M. Atk. Modifiers
+(29050, 4412, 11), -- P. Def. Modifiers
+(29050, 4413, 11), -- M. Def. Modifiers
+(29050, 4414, 3), -- Armor Type
+(29050, 4415, 1), -- Weapon Type
+(29050, 4416, 9), -- Races
 (29050, 5467, 1), -- Dark Attacks
 -- Breath of Halisha
 (29051, 4045, 1), -- Resist Full Magic Attack
-(29051, 4408, 1), -- HP Increase (1x)
-(29051, 4409, 1), -- MP Increase (1x)
-(29051, 4410, 11), -- Average P. Atk.
-(29051, 4411, 11), -- Average M. Atk.
-(29051, 4412, 11), -- Average P. Def.
-(29051, 4413, 11), -- Average M. Def.
-(29051, 4414, 3), -- Light Armor Type
-(29051, 4415, 1), -- Bare Hands
-(29051, 4416, 9), -- Demons
+(29051, 4408, 1), -- HP Modifiers
+(29051, 4409, 1), -- MP Modifiers
+(29051, 4410, 11), -- P. Atk. Modifiers
+(29051, 4411, 11), -- M. Atk. Modifiers
+(29051, 4412, 11), -- P. Def. Modifiers
+(29051, 4413, 11), -- M. Def. Modifiers
+(29051, 4414, 3), -- Armor Type
+(29051, 4415, 1), -- Weapon Type
+(29051, 4416, 9), -- Races
 (29051, 5467, 1), -- Dark Attacks
 --  
-(29052, 4408, 1), -- HP Increase (1x)
-(29052, 4409, 1), -- MP Increase (1x)
-(29052, 4410, 11), -- Average P. Atk.
-(29052, 4411, 11), -- Average M. Atk.
-(29052, 4412, 11), -- Average P. Def.
-(29052, 4413, 11), -- Average M. Def.
-(29052, 4414, 2), -- Standard Type
-(29052, 4415, 1), -- Bare Hands
-(29052, 4416, 2), -- Magic Creatures
+(29052, 4408, 1), -- HP Modifiers
+(29052, 4409, 1), -- MP Modifiers
+(29052, 4410, 11), -- P. Atk. Modifiers
+(29052, 4411, 11), -- M. Atk. Modifiers
+(29052, 4412, 11), -- P. Def. Modifiers
+(29052, 4413, 11), -- M. Def. Modifiers
+(29052, 4414, 2), -- Armor Type
+(29052, 4415, 1), -- Weapon Type
+(29052, 4416, 2), -- Races
 --  
-(29053, 4408, 1), -- HP Increase (1x)
-(29053, 4409, 1), -- MP Increase (1x)
-(29053, 4410, 11), -- Average P. Atk.
-(29053, 4411, 11), -- Average M. Atk.
-(29053, 4412, 11), -- Average P. Def.
-(29053, 4413, 11), -- Average M. Def.
-(29053, 4414, 2), -- Standard Type
-(29053, 4415, 1), -- Bare Hands
-(29053, 4416, 2), -- Magic Creatures
+(29053, 4408, 1), -- HP Modifiers
+(29053, 4409, 1), -- MP Modifiers
+(29053, 4410, 11), -- P. Atk. Modifiers
+(29053, 4411, 11), -- M. Atk. Modifiers
+(29053, 4412, 11), -- P. Def. Modifiers
+(29053, 4413, 11), -- M. Def. Modifiers
+(29053, 4414, 2), -- Armor Type
+(29053, 4415, 1), -- Weapon Type
+(29053, 4416, 2), -- Races
 -- Benom
 (29054, 4045, 1), -- Resist Full Magic Attack
-(29054, 4408, 1), -- HP Increase (1x)
-(29054, 4409, 1), -- MP Increase (1x)
-(29054, 4410, 11), -- Average P. Atk.
-(29054, 4411, 11), -- Average M. Atk.
-(29054, 4412, 11), -- Average P. Def.
-(29054, 4413, 11), -- Average M. Def.
-(29054, 4414, 2), -- Standard Type
-(29054, 4415, 19), -- Dual-Sword Weapons
-(29054, 4416, 9), -- Demons
-(29054, 4993, 1), -- Venom Strike
-(29054, 4994, 1), -- Venom Storm
-(29054, 4995, 1), -- Venom Teleport
-(29054, 4996, 1), -- Venom Mass Teleport
+(29054, 4408, 1), -- HP Modifiers
+(29054, 4409, 1), -- MP Modifiers
+(29054, 4410, 11), -- P. Atk. Modifiers
+(29054, 4411, 11), -- M. Atk. Modifiers
+(29054, 4412, 11), -- P. Def. Modifiers
+(29054, 4413, 11), -- M. Def. Modifiers
+(29054, 4414, 2), -- Armor Type
+(29054, 4415, 19), -- Weapon Type
+(29054, 4416, 9), -- Races
+(29054, 4993, 1), -- Venom - Strike
+(29054, 4994, 1), -- Venom - Sonic Storm
+(29054, 4995, 1), -- Venom - Teleport
+(29054, 4996, 1), -- Venom - Range Teleport
 -- Teleportation Cubic
 (29055, 4045, 1), -- Resist Full Magic Attack
-(29055, 4408, 1), -- HP Increase (1x)
-(29055, 4409, 1), -- MP Increase (1x)
-(29055, 4410, 11), -- Average P. Atk.
-(29055, 4411, 11), -- Average M. Atk.
-(29055, 4412, 11), -- Average P. Def.
-(29055, 4413, 11), -- Average M. Def.
-(29055, 4414, 2), -- Standard Type
-(29055, 4415, 3), -- One-handed Sword
-(29055, 4416, 19), -- Others
+(29055, 4408, 1), -- HP Modifiers
+(29055, 4409, 1), -- MP Modifiers
+(29055, 4410, 11), -- P. Atk. Modifiers
+(29055, 4411, 11), -- M. Atk. Modifiers
+(29055, 4412, 11), -- P. Def. Modifiers
+(29055, 4413, 11), -- M. Def. Modifiers
+(29055, 4414, 2), -- Armor Type
+(29055, 4415, 3), -- Weapon Type
+(29055, 4416, 19), -- Races
 -- Ice Fairy Sirra
 (29056, 4045, 1), -- Resist Full Magic Attack
-(29056, 4408, 1), -- HP Increase (1x)
-(29056, 4409, 1), -- MP Increase (1x)
-(29056, 4410, 11), -- Average P. Atk.
-(29056, 4411, 11), -- Average M. Atk.
-(29056, 4412, 11), -- Average P. Def.
-(29056, 4413, 11), -- Average M. Def.
-(29056, 4414, 2), -- Standard Type
-(29056, 4415, 3), -- One-handed Sword
-(29056, 4416, 7), -- Spirits
-(29056, 4478, 1), -- Aqua Splash
+(29056, 4408, 1), -- HP Modifiers
+(29056, 4409, 1), -- MP Modifiers
+(29056, 4410, 11), -- P. Atk. Modifiers
+(29056, 4411, 11), -- M. Atk. Modifiers
+(29056, 4412, 11), -- P. Def. Modifiers
+(29056, 4413, 11), -- M. Def. Modifiers
+(29056, 4414, 2), -- Armor Type
+(29056, 4415, 3), -- Weapon Type
+(29056, 4416, 7), -- Races
+(29056, 4478, 1), -- Ice Fairy Aqua Splash
 (29056, 4494, 1), -- Raid Boss
 (29056, 5036, 1), -- Raid Boss - Level 60
 -- Sirra's Page
 (29057, 4045, 1), -- Resist Full Magic Attack
-(29057, 4213, 5), -- Haste
-(29057, 4408, 1), -- HP Increase (1x)
-(29057, 4409, 1), -- MP Increase (1x)
-(29057, 4410, 11), -- Average P. Atk.
-(29057, 4411, 11), -- Average M. Atk.
-(29057, 4412, 11), -- Average P. Def.
-(29057, 4413, 11), -- Average M. Def.
-(29057, 4414, 3), -- Light Armor Type
-(29057, 4415, 5), -- Blunt Weapons
-(29057, 4416, 7), -- Spirits
-(29057, 4780, 5), -- Heal
+(29057, 4213, 5), -- BOSS Haste
+(29057, 4408, 1), -- HP Modifiers
+(29057, 4409, 1), -- MP Modifiers
+(29057, 4410, 11), -- P. Atk. Modifiers
+(29057, 4411, 11), -- M. Atk. Modifiers
+(29057, 4412, 11), -- P. Def. Modifiers
+(29057, 4413, 11), -- M. Def. Modifiers
+(29057, 4414, 3), -- Armor Type
+(29057, 4415, 5), -- Weapon Type
+(29057, 4416, 7), -- Races
+(29057, 4780, 5), -- BOSS Heal
 -- Sirra's Beholder
 (29058, 4045, 1), -- Resist Full Magic Attack
-(29058, 4408, 1), -- HP Increase (1x)
-(29058, 4409, 1), -- MP Increase (1x)
-(29058, 4410, 11), -- Average P. Atk.
-(29058, 4411, 11), -- Average M. Atk.
-(29058, 4412, 11), -- Average P. Def.
-(29058, 4413, 11), -- Average M. Def.
-(29058, 4414, 3), -- Light Armor Type
-(29058, 4415, 3), -- One-handed Sword
-(29058, 4416, 2), -- Magic Creatures
+(29058, 4408, 1), -- HP Modifiers
+(29058, 4409, 1), -- MP Modifiers
+(29058, 4410, 11), -- P. Atk. Modifiers
+(29058, 4411, 11), -- M. Atk. Modifiers
+(29058, 4412, 11), -- P. Def. Modifiers
+(29058, 4413, 11), -- M. Def. Modifiers
+(29058, 4414, 3), -- Armor Type
+(29058, 4415, 3), -- Weapon Type
+(29058, 4416, 2), -- Races
 -- 
-(29059, 4408, 1), -- HP Increase (1x)
-(29059, 4409, 1), -- MP Increase (1x)
-(29059, 4410, 11), -- Average P. Atk.
-(29059, 4411, 11), -- Average M. Atk.
-(29059, 4412, 11), -- Average P. Def.
-(29059, 4413, 11), -- Average M. Def.
-(29059, 4414, 2), -- Standard Type
-(29059, 4415, 3), -- One-handed Sword
-(29059, 4416, 2), -- Magic Creatures
+(29059, 4408, 1), -- HP Modifiers
+(29059, 4409, 1), -- MP Modifiers
+(29059, 4410, 11), -- P. Atk. Modifiers
+(29059, 4411, 11), -- M. Atk. Modifiers
+(29059, 4412, 11), -- P. Def. Modifiers
+(29059, 4413, 11), -- M. Def. Modifiers
+(29059, 4414, 2), -- Armor Type
+(29059, 4415, 3), -- Weapon Type
+(29059, 4416, 2), -- Races
 -- Captain of the Ice Queen's Royal Guard
 (29060, 4045, 1), -- Resist Full Magic Attack
-(29060, 4173, 5), -- Might
-(29060, 4177, 5), -- Cancel
-(29060, 4408, 1), -- HP Increase (1x)
-(29060, 4409, 1), -- MP Increase (1x)
-(29060, 4410, 11), -- Average P. Atk.
-(29060, 4411, 11), -- Average M. Atk.
-(29060, 4412, 11), -- Average P. Def.
-(29060, 4413, 11), -- Average M. Def.
-(29060, 4414, 2), -- Standard Type
-(29060, 4415, 3), -- One-handed Sword
-(29060, 4416, 2), -- Magic Creatures
+(29060, 4173, 5), -- BOSS Might
+(29060, 4177, 5), -- BOSS Cancel Magic
+(29060, 4408, 1), -- HP Modifiers
+(29060, 4409, 1), -- MP Modifiers
+(29060, 4410, 11), -- P. Atk. Modifiers
+(29060, 4411, 11), -- M. Atk. Modifiers
+(29060, 4412, 11), -- P. Def. Modifiers
+(29060, 4413, 11), -- M. Def. Modifiers
+(29060, 4414, 2), -- Armor Type
+(29060, 4415, 3), -- Weapon Type
+(29060, 4416, 2), -- Races
 (29060, 4494, 1), -- Raid Boss
 (29060, 4727, 5), -- Stun
-(29060, 4737, 5), -- Whirlwind
+(29060, 4737, 5), -- BOSS Spinning Slash
 (29060, 5030, 1), -- Raid Boss - Level 59
 -- Teleportation Cubic
 (29061, 4045, 1), -- Resist Full Magic Attack
-(29061, 4408, 1), -- HP Increase (1x)
-(29061, 4409, 1), -- MP Increase (1x)
-(29061, 4410, 11), -- Average P. Atk.
-(29061, 4411, 11), -- Average M. Atk.
-(29061, 4412, 11), -- Average P. Def.
-(29061, 4413, 11), -- Average M. Def.
-(29061, 4414, 2), -- Standard Type
-(29061, 4415, 3), -- One-handed Sword
-(29061, 4416, 19), -- Others
+(29061, 4408, 1), -- HP Modifiers
+(29061, 4409, 1), -- MP Modifiers
+(29061, 4410, 11), -- P. Atk. Modifiers
+(29061, 4411, 11), -- M. Atk. Modifiers
+(29061, 4412, 11), -- P. Def. Modifiers
+(29061, 4413, 11), -- M. Def. Modifiers
+(29061, 4414, 2), -- Armor Type
+(29061, 4415, 3), -- Weapon Type
+(29061, 4416, 19), -- Races
 -- Andreas Van Halter
 (29062, 4045, 1), -- Resist Full Magic Attack
 (29062, 4183, 10), -- Decrease P. Atk.
 (29062, 4188, 10), -- Bleed
-(29062, 4192, 10), -- Vampiric Touch
-(29062, 4408, 1), -- HP Increase (1x)
-(29062, 4409, 1), -- MP Increase (1x)
-(29062, 4410, 11), -- Average P. Atk.
-(29062, 4411, 11), -- Average M. Atk.
-(29062, 4412, 11), -- Average P. Def.
-(29062, 4413, 11), -- Average M. Def.
-(29062, 4414, 2), -- Standard Type
-(29062, 4415, 3), -- One-handed Sword
-(29062, 4416, 6), -- Humanoids
+(29062, 4192, 10), -- BOSS HP Drain
+(29062, 4408, 1), -- HP Modifiers
+(29062, 4409, 1), -- MP Modifiers
+(29062, 4410, 11), -- P. Atk. Modifiers
+(29062, 4411, 11), -- M. Atk. Modifiers
+(29062, 4412, 11), -- P. Def. Modifiers
+(29062, 4413, 11), -- M. Def. Modifiers
+(29062, 4414, 2), -- Armor Type
+(29062, 4415, 3), -- Weapon Type
+(29062, 4416, 6), -- Races
 (29062, 4494, 1), -- Raid Boss
 (29062, 5033, 1), -- Raid Boss - Level 80
 -- Andreas' Acolyte
 (29063, 4045, 1), -- Resist Full Magic Attack
-(29063, 4193, 10), -- Life Drain
-(29063, 4206, 10), -- Aura Sink
-(29063, 4408, 1), -- HP Increase (1x)
-(29063, 4409, 1), -- MP Increase (1x)
-(29063, 4410, 11), -- Average P. Atk.
-(29063, 4411, 11), -- Average M. Atk.
-(29063, 4412, 11), -- Average P. Def.
-(29063, 4413, 11), -- Average M. Def.
-(29063, 4414, 3), -- Light Armor Type
-(29063, 4415, 5), -- Blunt Weapons
-(29063, 4416, 6), -- Humanoids
+(29063, 4193, 10), -- BOSS Life Drain
+(29063, 4206, 10), -- Decrease MP
+(29063, 4408, 1), -- HP Modifiers
+(29063, 4409, 1), -- MP Modifiers
+(29063, 4410, 11), -- P. Atk. Modifiers
+(29063, 4411, 11), -- M. Atk. Modifiers
+(29063, 4412, 11), -- P. Def. Modifiers
+(29063, 4413, 11), -- M. Def. Modifiers
+(29063, 4414, 3), -- Armor Type
+(29063, 4415, 5), -- Weapon Type
+(29063, 4416, 6), -- Races
 -- Andreas' Acolyte
 (29064, 4045, 1), -- Resist Full Magic Attack
-(29064, 4210, 10), -- Chant of Life
-(29064, 4214, 10), -- Reflect Damage
-(29064, 4408, 1), -- HP Increase (1x)
-(29064, 4409, 1), -- MP Increase (1x)
-(29064, 4410, 11), -- Average P. Atk.
-(29064, 4411, 11), -- Average M. Atk.
-(29064, 4412, 11), -- Average P. Def.
-(29064, 4413, 11), -- Average M. Def.
-(29064, 4414, 3), -- Light Armor Type
-(29064, 4415, 3), -- One-handed Sword
-(29064, 4416, 6), -- Humanoids
+(29064, 4210, 10), -- Life Chant
+(29064, 4214, 10), -- BOSS Reflect Damage
+(29064, 4408, 1), -- HP Modifiers
+(29064, 4409, 1), -- MP Modifiers
+(29064, 4410, 11), -- P. Atk. Modifiers
+(29064, 4411, 11), -- M. Atk. Modifiers
+(29064, 4412, 11), -- P. Def. Modifiers
+(29064, 4413, 11), -- M. Def. Modifiers
+(29064, 4414, 3), -- Armor Type
+(29064, 4415, 3), -- Weapon Type
+(29064, 4416, 6), -- Races
 -- Sailren
 (29065, 4045, 1), -- Resist Full Magic Attack
-(29065, 4408, 1), -- HP Increase (1x)
-(29065, 4409, 1), -- MP Increase (1x)
-(29065, 4410, 11), -- Average P. Atk.
-(29065, 4411, 11), -- Average M. Atk.
-(29065, 4412, 11), -- Average P. Def.
-(29065, 4413, 11), -- Average M. Def.
-(29065, 4414, 2), -- Standard Type
-(29065, 4415, 15), -- Two-handed Blunt Weapons
-(29065, 4416, 3), -- Beasts
+(29065, 4408, 1), -- HP Modifiers
+(29065, 4409, 1), -- MP Modifiers
+(29065, 4410, 11), -- P. Atk. Modifiers
+(29065, 4411, 11), -- M. Atk. Modifiers
+(29065, 4412, 11), -- P. Def. Modifiers
+(29065, 4413, 11), -- M. Def. Modifiers
+(29065, 4414, 2), -- Armor Type
+(29065, 4415, 15), -- Weapon Type
+(29065, 4416, 3), -- Races
 (29065, 4494, 1), -- Raid Boss
 (29065, 5117, 1), -- Stun
 (29065, 5118, 1), -- Cancel Sailren Use
@@ -75108,355 +75462,355 @@ INSERT INTO `npcskills` VALUES
 (29065, 5180, 1), -- Raid Boss - Level 80
 -- Antharas
 (29066, 4045, 1), -- Resist Full Magic Attack
-(29066, 4071, 2), -- Resist Bow/Crossbow Weapons
+(29066, 4071, 2), -- Resist Archery
 (29066, 4122, 1), -- Antharas
-(29066, 4408, 1), -- HP Increase (1x)
-(29066, 4409, 1), -- MP Increase (1x)
-(29066, 4410, 11), -- Average P. Atk.
-(29066, 4411, 11), -- Average M. Atk.
-(29066, 4412, 11), -- Average P. Def.
-(29066, 4413, 11), -- Average M. Def.
-(29066, 4414, 2), -- Standard Type
-(29066, 4415, 3), -- One-handed Sword
-(29066, 4416, 10), -- Dragons
+(29066, 4408, 1), -- HP Modifiers
+(29066, 4409, 1), -- MP Modifiers
+(29066, 4410, 11), -- P. Atk. Modifiers
+(29066, 4411, 11), -- M. Atk. Modifiers
+(29066, 4412, 11), -- P. Def. Modifiers
+(29066, 4413, 11), -- M. Def. Modifiers
+(29066, 4414, 2), -- Armor Type
+(29066, 4415, 3), -- Weapon Type
+(29066, 4416, 10), -- Races
 -- Antharas
 (29067, 4045, 1), -- Resist Full Magic Attack
-(29067, 4071, 2), -- Resist Bow/Crossbow Weapons
+(29067, 4071, 2), -- Resist Archery
 (29067, 4122, 1), -- Antharas
-(29067, 4408, 1), -- HP Increase (1x)
-(29067, 4409, 1), -- MP Increase (1x)
-(29067, 4410, 11), -- Average P. Atk.
-(29067, 4411, 11), -- Average M. Atk.
-(29067, 4412, 11), -- Average P. Def.
-(29067, 4413, 11), -- Average M. Def.
-(29067, 4414, 2), -- Standard Type
-(29067, 4415, 3), -- One-handed Sword
-(29067, 4416, 10), -- Dragons
+(29067, 4408, 1), -- HP Modifiers
+(29067, 4409, 1), -- MP Modifiers
+(29067, 4410, 11), -- P. Atk. Modifiers
+(29067, 4411, 11), -- M. Atk. Modifiers
+(29067, 4412, 11), -- P. Def. Modifiers
+(29067, 4413, 11), -- M. Def. Modifiers
+(29067, 4414, 2), -- Armor Type
+(29067, 4415, 3), -- Weapon Type
+(29067, 4416, 10), -- Races
 -- Antharas
 (29068, 4045, 1), -- Resist Full Magic Attack
-(29068, 4071, 2), -- Resist Bow/Crossbow Weapons
+(29068, 4071, 2), -- Resist Archery
 (29068, 4122, 1), -- Antharas
-(29068, 4408, 1), -- HP Increase (1x)
-(29068, 4409, 1), -- MP Increase (1x)
-(29068, 4410, 11), -- Average P. Atk.
-(29068, 4411, 11), -- Average M. Atk.
-(29068, 4412, 11), -- Average P. Def.
-(29068, 4413, 11), -- Average M. Def.
-(29068, 4414, 2), -- Standard Type
-(29068, 4415, 3), -- One-handed Sword
-(29068, 4416, 10), -- Dragons
+(29068, 4408, 1), -- HP Modifiers
+(29068, 4409, 1), -- MP Modifiers
+(29068, 4410, 11), -- P. Atk. Modifiers
+(29068, 4411, 11), -- M. Atk. Modifiers
+(29068, 4412, 11), -- P. Def. Modifiers
+(29068, 4413, 11), -- M. Def. Modifiers
+(29068, 4414, 2), -- Armor Type
+(29068, 4415, 3), -- Weapon Type
+(29068, 4416, 10), -- Races
 (29068, 5465, 1), -- Earth Attacks
 -- Behemoth Dragon
 (29069, 4045, 1), -- Resist Full Magic Attack
-(29069, 4408, 1), -- HP Increase (1x)
-(29069, 4409, 1), -- MP Increase (1x)
-(29069, 4410, 11), -- Average P. Atk.
-(29069, 4411, 11), -- Average M. Atk.
-(29069, 4412, 11), -- Average P. Def.
-(29069, 4413, 11), -- Average M. Def.
-(29069, 4414, 2), -- Standard Type
-(29069, 4415, 3), -- One-handed Sword
-(29069, 4416, 10), -- Dragons
-(29069, 5095, 1), -- Antharas Strike
-(29069, 5096, 1), -- Antharas Power Shot
+(29069, 4408, 1), -- HP Modifiers
+(29069, 4409, 1), -- MP Modifiers
+(29069, 4410, 11), -- P. Atk. Modifiers
+(29069, 4411, 11), -- M. Atk. Modifiers
+(29069, 4412, 11), -- P. Def. Modifiers
+(29069, 4413, 11), -- M. Def. Modifiers
+(29069, 4414, 2), -- Armor Type
+(29069, 4415, 3), -- Weapon Type
+(29069, 4416, 10), -- Races
+(29069, 5095, 1), -- Antharas Subordinate Melee Attack
+(29069, 5096, 1), -- Antharas Subordinate Remote Attack
 (29069, 5465, 1), -- Earth Attacks
 -- Dragon Bomber
 (29070, 4045, 1), -- Resist Full Magic Attack
-(29070, 4408, 1), -- HP Increase (1x)
-(29070, 4409, 1), -- MP Increase (1x)
-(29070, 4410, 11), -- Average P. Atk.
-(29070, 4411, 11), -- Average M. Atk.
-(29070, 4412, 11), -- Average P. Def.
-(29070, 4413, 11), -- Average M. Def.
-(29070, 4414, 2), -- Standard Type
-(29070, 4415, 3), -- One-handed Sword
-(29070, 4416, 10), -- Dragons
-(29070, 5094, 1), -- Antharas Self-destruction
+(29070, 4408, 1), -- HP Modifiers
+(29070, 4409, 1), -- MP Modifiers
+(29070, 4410, 11), -- P. Atk. Modifiers
+(29070, 4411, 11), -- M. Atk. Modifiers
+(29070, 4412, 11), -- P. Def. Modifiers
+(29070, 4413, 11), -- M. Def. Modifiers
+(29070, 4414, 2), -- Armor Type
+(29070, 4415, 3), -- Weapon Type
+(29070, 4416, 10), -- Races
+(29070, 5094, 1), -- Antharas Subordinate Suicide 
 (29070, 5465, 1), -- Earth Attacks
 -- Dragon Bomber
 (29071, 4045, 1), -- Resist Full Magic Attack
-(29071, 4408, 1), -- HP Increase (1x)
-(29071, 4409, 1), -- MP Increase (1x)
-(29071, 4410, 11), -- Average P. Atk.
-(29071, 4411, 11), -- Average M. Atk.
-(29071, 4412, 11), -- Average P. Def.
-(29071, 4413, 11), -- Average M. Def.
-(29071, 4414, 2), -- Standard Type
-(29071, 4415, 3), -- One-handed Sword
-(29071, 4416, 10), -- Dragons
-(29071, 5094, 1), -- Antharas Self-destruction
+(29071, 4408, 1), -- HP Modifiers
+(29071, 4409, 1), -- MP Modifiers
+(29071, 4410, 11), -- P. Atk. Modifiers
+(29071, 4411, 11), -- M. Atk. Modifiers
+(29071, 4412, 11), -- P. Def. Modifiers
+(29071, 4413, 11), -- M. Def. Modifiers
+(29071, 4414, 2), -- Armor Type
+(29071, 4415, 3), -- Weapon Type
+(29071, 4416, 10), -- Races
+(29071, 5094, 1), -- Antharas Subordinate Suicide 
 -- Dragon Bomber
 (29072, 4045, 1), -- Resist Full Magic Attack
-(29072, 4408, 1), -- HP Increase (1x)
-(29072, 4409, 1), -- MP Increase (1x)
-(29072, 4410, 11), -- Average P. Atk.
-(29072, 4411, 11), -- Average M. Atk.
-(29072, 4412, 11), -- Average P. Def.
-(29072, 4413, 11), -- Average M. Def.
-(29072, 4414, 2), -- Standard Type
-(29072, 4415, 3), -- One-handed Sword
-(29072, 4416, 10), -- Dragons
-(29072, 5094, 1), -- Antharas Self-destruction
+(29072, 4408, 1), -- HP Modifiers
+(29072, 4409, 1), -- MP Modifiers
+(29072, 4410, 11), -- P. Atk. Modifiers
+(29072, 4411, 11), -- M. Atk. Modifiers
+(29072, 4412, 11), -- P. Def. Modifiers
+(29072, 4413, 11), -- M. Def. Modifiers
+(29072, 4414, 2), -- Armor Type
+(29072, 4415, 3), -- Weapon Type
+(29072, 4416, 10), -- Races
+(29072, 5094, 1), -- Antharas Subordinate Suicide 
 -- Dragon Bomber
 (29073, 4045, 1), -- Resist Full Magic Attack
-(29073, 4408, 1), -- HP Increase (1x)
-(29073, 4409, 1), -- MP Increase (1x)
-(29073, 4410, 11), -- Average P. Atk.
-(29073, 4411, 11), -- Average M. Atk.
-(29073, 4412, 11), -- Average P. Def.
-(29073, 4413, 11), -- Average M. Def.
-(29073, 4414, 2), -- Standard Type
-(29073, 4415, 3), -- One-handed Sword
-(29073, 4416, 10), -- Dragons
-(29073, 5094, 1), -- Antharas Self-destruction
+(29073, 4408, 1), -- HP Modifiers
+(29073, 4409, 1), -- MP Modifiers
+(29073, 4410, 11), -- P. Atk. Modifiers
+(29073, 4411, 11), -- M. Atk. Modifiers
+(29073, 4412, 11), -- P. Def. Modifiers
+(29073, 4413, 11), -- M. Def. Modifiers
+(29073, 4414, 2), -- Armor Type
+(29073, 4415, 3), -- Weapon Type
+(29073, 4416, 10), -- Races
+(29073, 5094, 1), -- Antharas Subordinate Suicide 
 -- Dragon Bomber
 (29074, 4045, 1), -- Resist Full Magic Attack
-(29074, 4408, 1), -- HP Increase (1x)
-(29074, 4409, 1), -- MP Increase (1x)
-(29074, 4410, 11), -- Average P. Atk.
-(29074, 4411, 11), -- Average M. Atk.
-(29074, 4412, 11), -- Average P. Def.
-(29074, 4413, 11), -- Average M. Def.
-(29074, 4414, 2), -- Standard Type
-(29074, 4415, 3), -- One-handed Sword
-(29074, 4416, 10), -- Dragons
-(29074, 5094, 1), -- Antharas Self-destruction
+(29074, 4408, 1), -- HP Modifiers
+(29074, 4409, 1), -- MP Modifiers
+(29074, 4410, 11), -- P. Atk. Modifiers
+(29074, 4411, 11), -- M. Atk. Modifiers
+(29074, 4412, 11), -- P. Def. Modifiers
+(29074, 4413, 11), -- M. Def. Modifiers
+(29074, 4414, 2), -- Armor Type
+(29074, 4415, 3), -- Weapon Type
+(29074, 4416, 10), -- Races
+(29074, 5094, 1), -- Antharas Subordinate Suicide 
 -- Dragon Bomber
 (29075, 4045, 1), -- Resist Full Magic Attack
-(29075, 4408, 1), -- HP Increase (1x)
-(29075, 4409, 1), -- MP Increase (1x)
-(29075, 4410, 11), -- Average P. Atk.
-(29075, 4411, 11), -- Average M. Atk.
-(29075, 4412, 11), -- Average P. Def.
-(29075, 4413, 11), -- Average M. Def.
-(29075, 4414, 2), -- Standard Type
-(29075, 4415, 3), -- One-handed Sword
-(29075, 4416, 10), -- Dragons
-(29075, 5094, 1), -- Antharas Self-destruction
+(29075, 4408, 1), -- HP Modifiers
+(29075, 4409, 1), -- MP Modifiers
+(29075, 4410, 11), -- P. Atk. Modifiers
+(29075, 4411, 11), -- M. Atk. Modifiers
+(29075, 4412, 11), -- P. Def. Modifiers
+(29075, 4413, 11), -- M. Def. Modifiers
+(29075, 4414, 2), -- Armor Type
+(29075, 4415, 3), -- Weapon Type
+(29075, 4416, 10), -- Races
+(29075, 5094, 1), -- Antharas Subordinate Suicide 
 -- Dragon Bomber
 (29076, 4045, 1), -- Resist Full Magic Attack
-(29076, 4408, 1), -- HP Increase (1x)
-(29076, 4409, 1), -- MP Increase (1x)
-(29076, 4410, 11), -- Average P. Atk.
-(29076, 4411, 11), -- Average M. Atk.
-(29076, 4412, 11), -- Average P. Def.
-(29076, 4413, 11), -- Average M. Def.
-(29076, 4414, 2), -- Standard Type
-(29076, 4415, 3), -- One-handed Sword
-(29076, 4416, 10), -- Dragons
-(29076, 5094, 1), -- Antharas Self-destruction
+(29076, 4408, 1), -- HP Modifiers
+(29076, 4409, 1), -- MP Modifiers
+(29076, 4410, 11), -- P. Atk. Modifiers
+(29076, 4411, 11), -- M. Atk. Modifiers
+(29076, 4412, 11), -- P. Def. Modifiers
+(29076, 4413, 11), -- M. Def. Modifiers
+(29076, 4414, 2), -- Armor Type
+(29076, 4415, 3), -- Weapon Type
+(29076, 4416, 10), -- Races
+(29076, 5094, 1), -- Antharas Subordinate Suicide 
 (29076, 5465, 1), -- Earth Attacks
 -- 
 (29077, 4045, 1), -- Resist Full Magic Attack
-(29077, 4408, 1), -- HP Increase (1x)
-(29077, 4409, 1), -- MP Increase (1x)
-(29077, 4410, 11), -- Average P. Atk.
-(29077, 4411, 11), -- Average M. Atk.
-(29077, 4412, 11), -- Average P. Def.
-(29077, 4413, 11), -- Average M. Def.
-(29077, 4414, 2), -- Standard Type
-(29077, 4415, 3), -- One-handed Sword
-(29077, 4416, 2), -- Magic Creatures
+(29077, 4408, 1), -- HP Modifiers
+(29077, 4409, 1), -- MP Modifiers
+(29077, 4410, 11), -- P. Atk. Modifiers
+(29077, 4411, 11), -- M. Atk. Modifiers
+(29077, 4412, 11), -- P. Def. Modifiers
+(29077, 4413, 11), -- M. Def. Modifiers
+(29077, 4414, 2), -- Armor Type
+(29077, 4415, 3), -- Weapon Type
+(29077, 4416, 2), -- Races
 -- 
 (29078, 4045, 1), -- Resist Full Magic Attack
-(29078, 4408, 1), -- HP Increase (1x)
-(29078, 4409, 1), -- MP Increase (1x)
-(29078, 4410, 11), -- Average P. Atk.
-(29078, 4411, 11), -- Average M. Atk.
-(29078, 4412, 11), -- Average P. Def.
-(29078, 4413, 11), -- Average M. Def.
-(29078, 4414, 2), -- Standard Type
-(29078, 4415, 3), -- One-handed Sword
-(29078, 4416, 2), -- Magic Creatures
+(29078, 4408, 1), -- HP Modifiers
+(29078, 4409, 1), -- MP Modifiers
+(29078, 4410, 11), -- P. Atk. Modifiers
+(29078, 4411, 11), -- M. Atk. Modifiers
+(29078, 4412, 11), -- P. Def. Modifiers
+(29078, 4413, 11), -- M. Def. Modifiers
+(29078, 4414, 2), -- Armor Type
+(29078, 4415, 3), -- Weapon Type
+(29078, 4416, 2), -- Races
 -- 
 (29079, 4045, 1), -- Resist Full Magic Attack
-(29079, 4408, 1), -- HP Increase (1x)
-(29079, 4409, 1), -- MP Increase (1x)
-(29079, 4410, 11), -- Average P. Atk.
-(29079, 4411, 11), -- Average M. Atk.
-(29079, 4412, 11), -- Average P. Def.
-(29079, 4413, 11), -- Average M. Def.
-(29079, 4414, 2), -- Standard Type
-(29079, 4415, 3), -- One-handed Sword
-(29079, 4416, 2), -- Magic Creatures
+(29079, 4408, 1), -- HP Modifiers
+(29079, 4409, 1), -- MP Modifiers
+(29079, 4410, 11), -- P. Atk. Modifiers
+(29079, 4411, 11), -- M. Atk. Modifiers
+(29079, 4412, 11), -- P. Def. Modifiers
+(29079, 4413, 11), -- M. Def. Modifiers
+(29079, 4414, 2), -- Armor Type
+(29079, 4415, 3), -- Weapon Type
+(29079, 4416, 2), -- Races
 -- 
 (29080, 4045, 1), -- Resist Full Magic Attack
-(29080, 4408, 1), -- HP Increase (1x)
-(29080, 4409, 1), -- MP Increase (1x)
-(29080, 4410, 11), -- Average P. Atk.
-(29080, 4411, 11), -- Average M. Atk.
-(29080, 4412, 11), -- Average P. Def.
-(29080, 4413, 11), -- Average M. Def.
-(29080, 4414, 2), -- Standard Type
-(29080, 4415, 3), -- One-handed Sword
-(29080, 4416, 2), -- Magic Creatures
+(29080, 4408, 1), -- HP Modifiers
+(29080, 4409, 1), -- MP Modifiers
+(29080, 4410, 11), -- P. Atk. Modifiers
+(29080, 4411, 11), -- M. Atk. Modifiers
+(29080, 4412, 11), -- P. Def. Modifiers
+(29080, 4413, 11), -- M. Def. Modifiers
+(29080, 4414, 2), -- Armor Type
+(29080, 4415, 3), -- Weapon Type
+(29080, 4416, 2), -- Races
 -- 
 (29081, 4045, 1), -- Resist Full Magic Attack
-(29081, 4408, 1), -- HP Increase (1x)
-(29081, 4409, 1), -- MP Increase (1x)
-(29081, 4410, 11), -- Average P. Atk.
-(29081, 4411, 11), -- Average M. Atk.
-(29081, 4412, 11), -- Average P. Def.
-(29081, 4413, 11), -- Average M. Def.
-(29081, 4414, 2), -- Standard Type
-(29081, 4415, 3), -- One-handed Sword
-(29081, 4416, 2), -- Magic Creatures
+(29081, 4408, 1), -- HP Modifiers
+(29081, 4409, 1), -- MP Modifiers
+(29081, 4410, 11), -- P. Atk. Modifiers
+(29081, 4411, 11), -- M. Atk. Modifiers
+(29081, 4412, 11), -- P. Def. Modifiers
+(29081, 4413, 11), -- M. Def. Modifiers
+(29081, 4414, 2), -- Armor Type
+(29081, 4415, 3), -- Weapon Type
+(29081, 4416, 2), -- Races
 -- 
 (29082, 4045, 1), -- Resist Full Magic Attack
-(29082, 4408, 1), -- HP Increase (1x)
-(29082, 4409, 1), -- MP Increase (1x)
-(29082, 4410, 11), -- Average P. Atk.
-(29082, 4411, 11), -- Average M. Atk.
-(29082, 4412, 11), -- Average P. Def.
-(29082, 4413, 11), -- Average M. Def.
-(29082, 4414, 2), -- Standard Type
-(29082, 4415, 3), -- One-handed Sword
-(29082, 4416, 2), -- Magic Creatures
+(29082, 4408, 1), -- HP Modifiers
+(29082, 4409, 1), -- MP Modifiers
+(29082, 4410, 11), -- P. Atk. Modifiers
+(29082, 4411, 11), -- M. Atk. Modifiers
+(29082, 4412, 11), -- P. Def. Modifiers
+(29082, 4413, 11), -- M. Def. Modifiers
+(29082, 4414, 2), -- Armor Type
+(29082, 4415, 3), -- Weapon Type
+(29082, 4416, 2), -- Races
 -- 
 (29083, 4045, 1), -- Resist Full Magic Attack
-(29083, 4408, 1), -- HP Increase (1x)
-(29083, 4409, 1), -- MP Increase (1x)
-(29083, 4410, 11), -- Average P. Atk.
-(29083, 4411, 11), -- Average M. Atk.
-(29083, 4412, 11), -- Average P. Def.
-(29083, 4413, 11), -- Average M. Def.
-(29083, 4414, 2), -- Standard Type
-(29083, 4415, 3), -- One-handed Sword
-(29083, 4416, 2), -- Magic Creatures
+(29083, 4408, 1), -- HP Modifiers
+(29083, 4409, 1), -- MP Modifiers
+(29083, 4410, 11), -- P. Atk. Modifiers
+(29083, 4411, 11), -- M. Atk. Modifiers
+(29083, 4412, 11), -- P. Def. Modifiers
+(29083, 4413, 11), -- M. Def. Modifiers
+(29083, 4414, 2), -- Armor Type
+(29083, 4415, 3), -- Weapon Type
+(29083, 4416, 2), -- Races
 -- 
 (29084, 4045, 1), -- Resist Full Magic Attack
-(29084, 4408, 1), -- HP Increase (1x)
-(29084, 4409, 1), -- MP Increase (1x)
-(29084, 4410, 11), -- Average P. Atk.
-(29084, 4411, 11), -- Average M. Atk.
-(29084, 4412, 11), -- Average P. Def.
-(29084, 4413, 11), -- Average M. Def.
-(29084, 4414, 2), -- Standard Type
-(29084, 4415, 3), -- One-handed Sword
-(29084, 4416, 2), -- Magic Creatures
+(29084, 4408, 1), -- HP Modifiers
+(29084, 4409, 1), -- MP Modifiers
+(29084, 4410, 11), -- P. Atk. Modifiers
+(29084, 4411, 11), -- M. Atk. Modifiers
+(29084, 4412, 11), -- P. Def. Modifiers
+(29084, 4413, 11), -- M. Def. Modifiers
+(29084, 4414, 2), -- Armor Type
+(29084, 4415, 3), -- Weapon Type
+(29084, 4416, 2), -- Races
 -- 
 (29085, 4045, 1), -- Resist Full Magic Attack
-(29085, 4408, 1), -- HP Increase (1x)
-(29085, 4409, 1), -- MP Increase (1x)
-(29085, 4410, 11), -- Average P. Atk.
-(29085, 4411, 11), -- Average M. Atk.
-(29085, 4412, 11), -- Average P. Def.
-(29085, 4413, 11), -- Average M. Def.
-(29085, 4414, 2), -- Standard Type
-(29085, 4415, 3), -- One-handed Sword
-(29085, 4416, 2), -- Magic Creatures
+(29085, 4408, 1), -- HP Modifiers
+(29085, 4409, 1), -- MP Modifiers
+(29085, 4410, 11), -- P. Atk. Modifiers
+(29085, 4411, 11), -- M. Atk. Modifiers
+(29085, 4412, 11), -- P. Def. Modifiers
+(29085, 4413, 11), -- M. Def. Modifiers
+(29085, 4414, 2), -- Armor Type
+(29085, 4415, 3), -- Weapon Type
+(29085, 4416, 2), -- Races
 -- 
 (29086, 4045, 1), -- Resist Full Magic Attack
-(29086, 4408, 1), -- HP Increase (1x)
-(29086, 4409, 1), -- MP Increase (1x)
-(29086, 4410, 11), -- Average P. Atk.
-(29086, 4411, 11), -- Average M. Atk.
-(29086, 4412, 11), -- Average P. Def.
-(29086, 4413, 11), -- Average M. Def.
-(29086, 4414, 2), -- Standard Type
-(29086, 4415, 3), -- One-handed Sword
-(29086, 4416, 2), -- Magic Creatures
+(29086, 4408, 1), -- HP Modifiers
+(29086, 4409, 1), -- MP Modifiers
+(29086, 4410, 11), -- P. Atk. Modifiers
+(29086, 4411, 11), -- M. Atk. Modifiers
+(29086, 4412, 11), -- P. Def. Modifiers
+(29086, 4413, 11), -- M. Def. Modifiers
+(29086, 4414, 2), -- Armor Type
+(29086, 4415, 3), -- Weapon Type
+(29086, 4416, 2), -- Races
 -- 
 (29087, 4045, 1), -- Resist Full Magic Attack
-(29087, 4408, 1), -- HP Increase (1x)
-(29087, 4409, 1), -- MP Increase (1x)
-(29087, 4410, 11), -- Average P. Atk.
-(29087, 4411, 11), -- Average M. Atk.
-(29087, 4412, 11), -- Average P. Def.
-(29087, 4413, 11), -- Average M. Def.
-(29087, 4414, 2), -- Standard Type
-(29087, 4415, 3), -- One-handed Sword
-(29087, 4416, 2), -- Magic Creatures
+(29087, 4408, 1), -- HP Modifiers
+(29087, 4409, 1), -- MP Modifiers
+(29087, 4410, 11), -- P. Atk. Modifiers
+(29087, 4411, 11), -- M. Atk. Modifiers
+(29087, 4412, 11), -- P. Def. Modifiers
+(29087, 4413, 11), -- M. Def. Modifiers
+(29087, 4414, 2), -- Armor Type
+(29087, 4415, 3), -- Weapon Type
+(29087, 4416, 2), -- Races
 -- 
 (29088, 4045, 1), -- Resist Full Magic Attack
-(29088, 4408, 1), -- HP Increase (1x)
-(29088, 4409, 1), -- MP Increase (1x)
-(29088, 4410, 11), -- Average P. Atk.
-(29088, 4411, 11), -- Average M. Atk.
-(29088, 4412, 11), -- Average P. Def.
-(29088, 4413, 11), -- Average M. Def.
-(29088, 4414, 2), -- Standard Type
-(29088, 4415, 3), -- One-handed Sword
-(29088, 4416, 2), -- Magic Creatures
+(29088, 4408, 1), -- HP Modifiers
+(29088, 4409, 1), -- MP Modifiers
+(29088, 4410, 11), -- P. Atk. Modifiers
+(29088, 4411, 11), -- M. Atk. Modifiers
+(29088, 4412, 11), -- P. Def. Modifiers
+(29088, 4413, 11), -- M. Def. Modifiers
+(29088, 4414, 2), -- Armor Type
+(29088, 4415, 3), -- Weapon Type
+(29088, 4416, 2), -- Races
 -- 
 (29089, 4045, 1), -- Resist Full Magic Attack
-(29089, 4408, 1), -- HP Increase (1x)
-(29089, 4409, 1), -- MP Increase (1x)
-(29089, 4410, 11), -- Average P. Atk.
-(29089, 4411, 11), -- Average M. Atk.
-(29089, 4412, 11), -- Average P. Def.
-(29089, 4413, 11), -- Average M. Def.
-(29089, 4414, 2), -- Standard Type
-(29089, 4415, 3), -- One-handed Sword
-(29089, 4416, 2), -- Magic Creatures
+(29089, 4408, 1), -- HP Modifiers
+(29089, 4409, 1), -- MP Modifiers
+(29089, 4410, 11), -- P. Atk. Modifiers
+(29089, 4411, 11), -- M. Atk. Modifiers
+(29089, 4412, 11), -- P. Def. Modifiers
+(29089, 4413, 11), -- M. Def. Modifiers
+(29089, 4414, 2), -- Armor Type
+(29089, 4415, 3), -- Weapon Type
+(29089, 4416, 2), -- Races
 -- 
 (29090, 4045, 1), -- Resist Full Magic Attack
-(29090, 4408, 1), -- HP Increase (1x)
-(29090, 4409, 1), -- MP Increase (1x)
-(29090, 4410, 11), -- Average P. Atk.
-(29090, 4411, 11), -- Average M. Atk.
-(29090, 4412, 11), -- Average P. Def.
-(29090, 4413, 11), -- Average M. Def.
-(29090, 4414, 2), -- Standard Type
-(29090, 4415, 3), -- One-handed Sword
-(29090, 4416, 2), -- Magic Creatures
+(29090, 4408, 1), -- HP Modifiers
+(29090, 4409, 1), -- MP Modifiers
+(29090, 4410, 11), -- P. Atk. Modifiers
+(29090, 4411, 11), -- M. Atk. Modifiers
+(29090, 4412, 11), -- P. Def. Modifiers
+(29090, 4413, 11), -- M. Def. Modifiers
+(29090, 4414, 2), -- Armor Type
+(29090, 4415, 3), -- Weapon Type
+(29090, 4416, 2), -- Races
 -- 
 (29091, 4045, 1), -- Resist Full Magic Attack
-(29091, 4408, 1), -- HP Increase (1x)
-(29091, 4409, 1), -- MP Increase (1x)
-(29091, 4410, 11), -- Average P. Atk.
-(29091, 4411, 11), -- Average M. Atk.
-(29091, 4412, 11), -- Average P. Def.
-(29091, 4413, 11), -- Average M. Def.
-(29091, 4414, 2), -- Standard Type
-(29091, 4415, 3), -- One-handed Sword
-(29091, 4416, 2), -- Magic Creatures
+(29091, 4408, 1), -- HP Modifiers
+(29091, 4409, 1), -- MP Modifiers
+(29091, 4410, 11), -- P. Atk. Modifiers
+(29091, 4411, 11), -- M. Atk. Modifiers
+(29091, 4412, 11), -- P. Def. Modifiers
+(29091, 4413, 11), -- M. Def. Modifiers
+(29091, 4414, 2), -- Armor Type
+(29091, 4415, 3), -- Weapon Type
+(29091, 4416, 2), -- Races
 -- 
 (29092, 4045, 1), -- Resist Full Magic Attack
-(29092, 4408, 1), -- HP Increase (1x)
-(29092, 4409, 1), -- MP Increase (1x)
-(29092, 4410, 11), -- Average P. Atk.
-(29092, 4411, 11), -- Average M. Atk.
-(29092, 4412, 11), -- Average P. Def.
-(29092, 4413, 11), -- Average M. Def.
-(29092, 4414, 2), -- Standard Type
-(29092, 4415, 3), -- One-handed Sword
-(29092, 4416, 2), -- Magic Creatures
+(29092, 4408, 1), -- HP Modifiers
+(29092, 4409, 1), -- MP Modifiers
+(29092, 4410, 11), -- P. Atk. Modifiers
+(29092, 4411, 11), -- M. Atk. Modifiers
+(29092, 4412, 11), -- P. Def. Modifiers
+(29092, 4413, 11), -- M. Def. Modifiers
+(29092, 4414, 2), -- Armor Type
+(29092, 4415, 3), -- Weapon Type
+(29092, 4416, 2), -- Races
 -- 
 (29093, 4045, 1), -- Resist Full Magic Attack
-(29093, 4408, 1), -- HP Increase (1x)
-(29093, 4409, 1), -- MP Increase (1x)
-(29093, 4410, 11), -- Average P. Atk.
-(29093, 4411, 11), -- Average M. Atk.
-(29093, 4412, 11), -- Average P. Def.
-(29093, 4413, 11), -- Average M. Def.
-(29093, 4414, 2), -- Standard Type
-(29093, 4415, 3), -- One-handed Sword
-(29093, 4416, 2), -- Magic Creatures
+(29093, 4408, 1), -- HP Modifiers
+(29093, 4409, 1), -- MP Modifiers
+(29093, 4410, 11), -- P. Atk. Modifiers
+(29093, 4411, 11), -- M. Atk. Modifiers
+(29093, 4412, 11), -- P. Def. Modifiers
+(29093, 4413, 11), -- M. Def. Modifiers
+(29093, 4414, 2), -- Armor Type
+(29093, 4415, 3), -- Weapon Type
+(29093, 4416, 2), -- Races
 -- 
 (29094, 4045, 1), -- Resist Full Magic Attack
-(29094, 4408, 1), -- HP Increase (1x)
-(29094, 4409, 1), -- MP Increase (1x)
-(29094, 4410, 11), -- Average P. Atk.
-(29094, 4411, 11), -- Average M. Atk.
-(29094, 4412, 11), -- Average P. Def.
-(29094, 4413, 11), -- Average M. Def.
-(29094, 4414, 2), -- Standard Type
-(29094, 4415, 3), -- One-handed Sword
-(29094, 4416, 2), -- Magic Creatures
+(29094, 4408, 1), -- HP Modifiers
+(29094, 4409, 1), -- MP Modifiers
+(29094, 4410, 11), -- P. Atk. Modifiers
+(29094, 4411, 11), -- M. Atk. Modifiers
+(29094, 4412, 11), -- P. Def. Modifiers
+(29094, 4413, 11), -- M. Def. Modifiers
+(29094, 4414, 2), -- Armor Type
+(29094, 4415, 3), -- Weapon Type
+(29094, 4416, 2), -- Races
 -- Gordon
 (29095, 4045, 1), -- Resist Full Magic Attack
-(29095, 4174, 10), -- Shield
-(29095, 4177, 10), -- Cancel
-(29095, 4408, 1), -- HP Increase (1x)
-(29095, 4409, 1), -- MP Increase (1x)
-(29095, 4410, 11), -- Average P. Atk.
-(29095, 4411, 11), -- Average M. Atk.
-(29095, 4412, 11), -- Average P. Def.
-(29095, 4413, 11), -- Average M. Def.
-(29095, 4414, 2), -- Standard Type
-(29095, 4415, 3), -- One-handed Sword
-(29095, 4416, 9), -- Demons
+(29095, 4174, 10), -- BOSS Shield
+(29095, 4177, 10), -- BOSS Cancel Magic
+(29095, 4408, 1), -- HP Modifiers
+(29095, 4409, 1), -- MP Modifiers
+(29095, 4410, 11), -- P. Atk. Modifiers
+(29095, 4411, 11), -- M. Atk. Modifiers
+(29095, 4412, 11), -- P. Def. Modifiers
+(29095, 4413, 11), -- M. Def. Modifiers
+(29095, 4414, 2), -- Armor Type
+(29095, 4415, 3), -- Weapon Type
+(29095, 4416, 9), -- Races
 (29095, 4494, 1), -- Raid Boss
 (29095, 4726, 10), -- Stun
 (29095, 5119, 1), -- Bleed
@@ -75464,51 +75818,51 @@ INSERT INTO `npcskills` VALUES
 -- Anais
 (29096, 4045, 1), -- Resist Full Magic Attack
 (29096, 4180, 10), -- Stun
-(29096, 4408, 1), -- HP Increase (1x)
-(29096, 4409, 1), -- MP Increase (1x)
-(29096, 4410, 11), -- Average P. Atk.
-(29096, 4411, 11), -- Average M. Atk.
-(29096, 4412, 11), -- Average P. Def.
-(29096, 4413, 11), -- Average M. Def.
-(29096, 4414, 2), -- Standard Type
-(29096, 4415, 3), -- One-handed Sword
-(29096, 4416, 8), -- Angels
+(29096, 4408, 1), -- HP Modifiers
+(29096, 4409, 1), -- MP Modifiers
+(29096, 4410, 11), -- P. Atk. Modifiers
+(29096, 4411, 11), -- M. Atk. Modifiers
+(29096, 4412, 11), -- P. Def. Modifiers
+(29096, 4413, 11), -- M. Def. Modifiers
+(29096, 4414, 2), -- Armor Type
+(29096, 4415, 3), -- Weapon Type
+(29096, 4416, 8), -- Races
 (29096, 4494, 1), -- Raid Boss
 (29096, 5032, 1), -- Raid Boss - Level 80
 -- Disciple of Splendor 
 (29097, 4045, 1), -- Resist Full Magic Attack
-(29097, 4408, 1), -- HP Increase (1x)
-(29097, 4409, 1), -- MP Increase (1x)
-(29097, 4410, 11), -- Average P. Atk.
-(29097, 4411, 11), -- Average M. Atk.
-(29097, 4412, 11), -- Average P. Def.
-(29097, 4413, 11), -- Average M. Def.
-(29097, 4414, 3), -- Light Armor Type
-(29097, 4415, 3), -- One-handed Sword
-(29097, 4416, 8), -- Angels
+(29097, 4408, 1), -- HP Modifiers
+(29097, 4409, 1), -- MP Modifiers
+(29097, 4410, 11), -- P. Atk. Modifiers
+(29097, 4411, 11), -- M. Atk. Modifiers
+(29097, 4412, 11), -- P. Def. Modifiers
+(29097, 4413, 11), -- M. Def. Modifiers
+(29097, 4414, 3), -- Armor Type
+(29097, 4415, 3), -- Weapon Type
+(29097, 4416, 8), -- Races
 -- Splendor Worshiper
 (29098, 4045, 1), -- Resist Full Magic Attack
 (29098, 4208, 10), -- Stun
-(29098, 4408, 1), -- HP Increase (1x)
-(29098, 4409, 1), -- MP Increase (1x)
-(29098, 4410, 11), -- Average P. Atk.
-(29098, 4411, 11), -- Average M. Atk.
-(29098, 4412, 11), -- Average P. Def.
-(29098, 4413, 11), -- Average M. Def.
-(29098, 4414, 3), -- Light Armor Type
-(29098, 4415, 5), -- Blunt Weapons
-(29098, 4416, 8), -- Angels
+(29098, 4408, 1), -- HP Modifiers
+(29098, 4409, 1), -- MP Modifiers
+(29098, 4410, 11), -- P. Atk. Modifiers
+(29098, 4411, 11), -- M. Atk. Modifiers
+(29098, 4412, 11), -- P. Def. Modifiers
+(29098, 4413, 11), -- M. Def. Modifiers
+(29098, 4414, 3), -- Armor Type
+(29098, 4415, 5), -- Weapon Type
+(29098, 4416, 8), -- Races
 -- Baylor
 (29099, 4045, 1), -- Resist Full Magic Attack
-(29099, 4408, 1), -- HP Increase (1x)
-(29099, 4409, 1), -- MP Increase (1x)
-(29099, 4410, 11), -- Average P. Atk.
-(29099, 4411, 11), -- Average M. Atk.
-(29099, 4412, 11), -- Average P. Def.
-(29099, 4413, 11), -- Average M. Def.
-(29099, 4414, 2), -- Standard Type
-(29099, 4415, 1), -- Bare Hands
-(29099, 4416, 9), -- Demons
+(29099, 4408, 1), -- HP Modifiers
+(29099, 4409, 1), -- MP Modifiers
+(29099, 4410, 11), -- P. Atk. Modifiers
+(29099, 4411, 11), -- M. Atk. Modifiers
+(29099, 4412, 11), -- P. Def. Modifiers
+(29099, 4413, 11), -- M. Def. Modifiers
+(29099, 4414, 2), -- Armor Type
+(29099, 4415, 1), -- Weapon Type
+(29099, 4416, 9), -- Races
 (29099, 5221, 1), -- Balor - Physical Close Range Weak Point
 (29099, 5222, 1), -- Balor - Physical Long Range Weak Point
 (29099, 5223, 1), -- Balor - Magic Weak Point
@@ -75519,778 +75873,780 @@ INSERT INTO `npcskills` VALUES
 (29099, 5467, 1), -- Dark Attacks
 (29099, 5479, 1), -- Boss Petrification Resistance
 -- Crystal Prison Guard
-(29100, 4032, 9), -- Power Strike
+(29100, 4032, 9), -- NPC Strike
 (29100, 4045, 1), -- Resist Full Magic Attack
-(29100, 4408, 1), -- HP Increase (1x)
-(29100, 4409, 1), -- MP Increase (1x)
-(29100, 4410, 11), -- Average P. Atk.
-(29100, 4411, 11), -- Average M. Atk.
-(29100, 4412, 11), -- Average P. Def.
-(29100, 4413, 11), -- Average M. Def.
-(29100, 4414, 2), -- Standard Type
-(29100, 4415, 3), -- One-handed Sword
-(29100, 4416, 9), -- Demons
-(29100, 5043, 9), -- Super Sonic Blaster
-(29100, 5360, 9), -- Whirlwind
+(29100, 4408, 1), -- HP Modifiers
+(29100, 4409, 1), -- MP Modifiers
+(29100, 4410, 11), -- P. Atk. Modifiers
+(29100, 4411, 11), -- M. Atk. Modifiers
+(29100, 4412, 11), -- P. Def. Modifiers
+(29100, 4413, 11), -- M. Def. Modifiers
+(29100, 4414, 2), -- Armor Type
+(29100, 4415, 3), -- Weapon Type
+(29100, 4416, 9), -- Races
+(29100, 5043, 9), -- NPC Super Sonic Blaster
+(29100, 5360, 9), -- NPC(party) - Physical Range Close Range Attack - Dark
 (29100, 5479, 1), -- Boss Petrification Resistance
 -- Crystalline Golem
-(29101, 4408, 1), -- HP Increase (1x)
-(29101, 4409, 1), -- MP Increase (1x)
-(29101, 4410, 11), -- Average P. Atk.
-(29101, 4411, 11), -- Average M. Atk.
-(29101, 4412, 11), -- Average P. Def.
-(29101, 4413, 11), -- Average M. Def.
-(29101, 4414, 2), -- Standard Type
-(29101, 4415, 3), -- One-handed Sword
-(29101, 4416, 2), -- Magic Creatures
+(29101, 4408, 1), -- HP Modifiers
+(29101, 4409, 1), -- MP Modifiers
+(29101, 4410, 11), -- P. Atk. Modifiers
+(29101, 4411, 11), -- M. Atk. Modifiers
+(29101, 4412, 11), -- P. Def. Modifiers
+(29101, 4413, 11), -- M. Def. Modifiers
+(29101, 4414, 2), -- Armor Type
+(29101, 4415, 3), -- Weapon Type
+(29101, 4416, 2), -- Races
 -- Crystalline Golem
-(29102, 4408, 1), -- HP Increase (1x)
-(29102, 4409, 1), -- MP Increase (1x)
-(29102, 4410, 11), -- Average P. Atk.
-(29102, 4411, 11), -- Average M. Atk.
-(29102, 4412, 11), -- Average P. Def.
-(29102, 4413, 11), -- Average M. Def.
-(29102, 4414, 2), -- Standard Type
-(29102, 4415, 3), -- One-handed Sword
-(29102, 4416, 2), -- Magic Creatures
+(29102, 4408, 1), -- HP Modifiers
+(29102, 4409, 1), -- MP Modifiers
+(29102, 4410, 11), -- P. Atk. Modifiers
+(29102, 4411, 11), -- M. Atk. Modifiers
+(29102, 4412, 11), -- P. Def. Modifiers
+(29102, 4413, 11), -- M. Def. Modifiers
+(29102, 4414, 2), -- Armor Type
+(29102, 4415, 3), -- Weapon Type
+(29102, 4416, 2), -- Races
 -- Baylor
 (29103, 4045, 1), -- Resist Full Magic Attack
-(29103, 4408, 1), -- HP Increase (1x)
-(29103, 4409, 1), -- MP Increase (1x)
-(29103, 4410, 11), -- Average P. Atk.
-(29103, 4411, 11), -- Average M. Atk.
-(29103, 4412, 11), -- Average P. Def.
-(29103, 4413, 11), -- Average M. Def.
-(29103, 4414, 2), -- Standard Type
-(29103, 4415, 1), -- Bare Hands
-(29103, 4416, 9), -- Demons
+(29103, 4408, 1), -- HP Modifiers
+(29103, 4409, 1), -- MP Modifiers
+(29103, 4410, 11), -- P. Atk. Modifiers
+(29103, 4411, 11), -- M. Atk. Modifiers
+(29103, 4412, 11), -- P. Def. Modifiers
+(29103, 4413, 11), -- M. Def. Modifiers
+(29103, 4414, 2), -- Armor Type
+(29103, 4415, 1), -- Weapon Type
+(29103, 4416, 9), -- Races
 (29103, 5401, 1), -- Stun
 (29103, 5479, 1), -- Boss Petrification Resistance
 -- Crystal Prison Guard
 (29104, 4045, 1), -- Resist Full Magic Attack
-(29104, 4408, 1), -- HP Increase (1x)
-(29104, 4409, 1), -- MP Increase (1x)
-(29104, 4410, 11), -- Average P. Atk.
-(29104, 4411, 11), -- Average M. Atk.
-(29104, 4412, 11), -- Average P. Def.
-(29104, 4413, 11), -- Average M. Def.
-(29104, 4414, 2), -- Standard Type
-(29104, 4415, 3), -- One-handed Sword
-(29104, 4416, 9), -- Demons
+(29104, 4408, 1), -- HP Modifiers
+(29104, 4409, 1), -- MP Modifiers
+(29104, 4410, 11), -- P. Atk. Modifiers
+(29104, 4411, 11), -- M. Atk. Modifiers
+(29104, 4412, 11), -- P. Def. Modifiers
+(29104, 4413, 11), -- M. Def. Modifiers
+(29104, 4414, 2), -- Armor Type
+(29104, 4415, 3), -- Weapon Type
+(29104, 4416, 9), -- Races
 (29104, 5405, 1), -- Presentation - Demonic 1
 (29104, 5406, 1), -- Presentation - Demonic 2
 (29104, 5479, 1), -- Boss Petrification Resistance
 -- Crystalline Golem
 (29105, 4045, 1), -- Resist Full Magic Attack
-(29105, 4408, 1), -- HP Increase (1x)
-(29105, 4409, 1), -- MP Increase (1x)
-(29105, 4410, 11), -- Average P. Atk.
-(29105, 4411, 11), -- Average M. Atk.
-(29105, 4412, 11), -- Average P. Def.
-(29105, 4413, 11), -- Average M. Def.
-(29105, 4414, 2), -- Standard Type
-(29105, 4415, 3), -- One-handed Sword
-(29105, 4416, 2), -- Magic Creatures
+(29105, 4408, 1), -- HP Modifiers
+(29105, 4409, 1), -- MP Modifiers
+(29105, 4410, 11), -- P. Atk. Modifiers
+(29105, 4411, 11), -- M. Atk. Modifiers
+(29105, 4412, 11), -- P. Def. Modifiers
+(29105, 4413, 11), -- M. Def. Modifiers
+(29105, 4414, 2), -- Armor Type
+(29105, 4415, 3), -- Weapon Type
+(29105, 4416, 2), -- Races
 (29105, 5407, 1), -- Presentation - Crystalline Golem 1
 (29105, 5408, 1), -- Presentation - Crystalline Golem 2
 (29105, 5409, 1), -- Presentation - Crystalline Golem 3
 (29105, 5479, 1), -- Boss Petrification Resistance
 -- 
-(29106, 4408, 1), -- HP Increase (1x)
-(29106, 4409, 1), -- MP Increase (1x)
-(29106, 4410, 11), -- Average P. Atk.
-(29106, 4411, 11), -- Average M. Atk.
-(29106, 4412, 11), -- Average P. Def.
-(29106, 4413, 11), -- Average M. Def.
-(29106, 4414, 2), -- Standard Type
-(29106, 4415, 3), -- One-handed Sword
-(29106, 4416, 2), -- Magic Creatures
+(29106, 4408, 1), -- HP Modifiers
+(29106, 4409, 1), -- MP Modifiers
+(29106, 4410, 11), -- P. Atk. Modifiers
+(29106, 4411, 11), -- M. Atk. Modifiers
+(29106, 4412, 11), -- P. Def. Modifiers
+(29106, 4413, 11), -- M. Def. Modifiers
+(29106, 4414, 2), -- Armor Type
+(29106, 4415, 3), -- Weapon Type
+(29106, 4416, 2), -- Races
 -- 
-(29107, 4408, 1), -- HP Increase (1x)
-(29107, 4409, 1), -- MP Increase (1x)
-(29107, 4410, 11), -- Average P. Atk.
-(29107, 4411, 11), -- Average M. Atk.
-(29107, 4412, 11), -- Average P. Def.
-(29107, 4413, 11), -- Average M. Def.
-(29107, 4414, 2), -- Standard Type
-(29107, 4415, 3), -- One-handed Sword
-(29107, 4416, 2), -- Magic Creatures
+(29107, 4408, 1), -- HP Modifiers
+(29107, 4409, 1), -- MP Modifiers
+(29107, 4410, 11), -- P. Atk. Modifiers
+(29107, 4411, 11), -- M. Atk. Modifiers
+(29107, 4412, 11), -- P. Def. Modifiers
+(29107, 4413, 11), -- M. Def. Modifiers
+(29107, 4414, 2), -- Armor Type
+(29107, 4415, 3), -- Weapon Type
+(29107, 4416, 2), -- Races
 -- 
-(29108, 4408, 1), -- HP Increase (1x)
-(29108, 4409, 1), -- MP Increase (1x)
-(29108, 4410, 11), -- Average P. Atk.
-(29108, 4411, 11), -- Average M. Atk.
-(29108, 4412, 11), -- Average P. Def.
-(29108, 4413, 11), -- Average M. Def.
-(29108, 4414, 2), -- Standard Type
-(29108, 4415, 3), -- One-handed Sword
-(29108, 4416, 2), -- Magic Creatures
+(29108, 4408, 1), -- HP Modifiers
+(29108, 4409, 1), -- MP Modifiers
+(29108, 4410, 11), -- P. Atk. Modifiers
+(29108, 4411, 11), -- M. Atk. Modifiers
+(29108, 4412, 11), -- P. Def. Modifiers
+(29108, 4413, 11), -- M. Def. Modifiers
+(29108, 4414, 2), -- Armor Type
+(29108, 4415, 3), -- Weapon Type
+(29108, 4416, 2), -- Races
 -- 
-(29109, 4408, 1), -- HP Increase (1x)
-(29109, 4409, 1), -- MP Increase (1x)
-(29109, 4410, 11), -- Average P. Atk.
-(29109, 4411, 11), -- Average M. Atk.
-(29109, 4412, 11), -- Average P. Def.
-(29109, 4413, 11), -- Average M. Def.
-(29109, 4414, 2), -- Standard Type
-(29109, 4415, 3), -- One-handed Sword
-(29109, 4416, 2), -- Magic Creatures
+(29109, 4408, 1), -- HP Modifiers
+(29109, 4409, 1), -- MP Modifiers
+(29109, 4410, 11), -- P. Atk. Modifiers
+(29109, 4411, 11), -- M. Atk. Modifiers
+(29109, 4412, 11), -- P. Def. Modifiers
+(29109, 4413, 11), -- M. Def. Modifiers
+(29109, 4414, 2), -- Armor Type
+(29109, 4415, 3), -- Weapon Type
+(29109, 4416, 2), -- Races
 -- 
-(29110, 4408, 1), -- HP Increase (1x)
-(29110, 4409, 1), -- MP Increase (1x)
-(29110, 4410, 11), -- Average P. Atk.
-(29110, 4411, 11), -- Average M. Atk.
-(29110, 4412, 11), -- Average P. Def.
-(29110, 4413, 11), -- Average M. Def.
-(29110, 4414, 2), -- Standard Type
-(29110, 4415, 3), -- One-handed Sword
-(29110, 4416, 2), -- Magic Creatures
+(29110, 4408, 1), -- HP Modifiers
+(29110, 4409, 1), -- MP Modifiers
+(29110, 4410, 11), -- P. Atk. Modifiers
+(29110, 4411, 11), -- M. Atk. Modifiers
+(29110, 4412, 11), -- P. Def. Modifiers
+(29110, 4413, 11), -- M. Def. Modifiers
+(29110, 4414, 2), -- Armor Type
+(29110, 4415, 3), -- Weapon Type
+(29110, 4416, 2), -- Races
 -- 
-(29111, 4408, 1), -- HP Increase (1x)
-(29111, 4409, 1), -- MP Increase (1x)
-(29111, 4410, 11), -- Average P. Atk.
-(29111, 4411, 11), -- Average M. Atk.
-(29111, 4412, 11), -- Average P. Def.
-(29111, 4413, 11), -- Average M. Def.
-(29111, 4414, 2), -- Standard Type
-(29111, 4415, 3), -- One-handed Sword
-(29111, 4416, 2), -- Magic Creatures
+(29111, 4408, 1), -- HP Modifiers
+(29111, 4409, 1), -- MP Modifiers
+(29111, 4410, 11), -- P. Atk. Modifiers
+(29111, 4411, 11), -- M. Atk. Modifiers
+(29111, 4412, 11), -- P. Def. Modifiers
+(29111, 4413, 11), -- M. Def. Modifiers
+(29111, 4414, 2), -- Armor Type
+(29111, 4415, 3), -- Weapon Type
+(29111, 4416, 2), -- Races
 -- 
-(29112, 4408, 1), -- HP Increase (1x)
-(29112, 4409, 1), -- MP Increase (1x)
-(29112, 4410, 11), -- Average P. Atk.
-(29112, 4411, 11), -- Average M. Atk.
-(29112, 4412, 11), -- Average P. Def.
-(29112, 4413, 11), -- Average M. Def.
-(29112, 4414, 2), -- Standard Type
-(29112, 4415, 3), -- One-handed Sword
-(29112, 4416, 2), -- Magic Creatures
+(29112, 4408, 1), -- HP Modifiers
+(29112, 4409, 1), -- MP Modifiers
+(29112, 4410, 11), -- P. Atk. Modifiers
+(29112, 4411, 11), -- M. Atk. Modifiers
+(29112, 4412, 11), -- P. Def. Modifiers
+(29112, 4413, 11), -- M. Def. Modifiers
+(29112, 4414, 2), -- Armor Type
+(29112, 4415, 3), -- Weapon Type
+(29112, 4416, 2), -- Races
 -- 
-(29113, 4408, 1), -- HP Increase (1x)
-(29113, 4409, 1), -- MP Increase (1x)
-(29113, 4410, 11), -- Average P. Atk.
-(29113, 4411, 11), -- Average M. Atk.
-(29113, 4412, 11), -- Average P. Def.
-(29113, 4413, 11), -- Average M. Def.
-(29113, 4414, 2), -- Standard Type
-(29113, 4415, 3), -- One-handed Sword
-(29113, 4416, 2), -- Magic Creatures
+(29113, 4408, 1), -- HP Modifiers
+(29113, 4409, 1), -- MP Modifiers
+(29113, 4410, 11), -- P. Atk. Modifiers
+(29113, 4411, 11), -- M. Atk. Modifiers
+(29113, 4412, 11), -- P. Def. Modifiers
+(29113, 4413, 11), -- M. Def. Modifiers
+(29113, 4414, 2), -- Armor Type
+(29113, 4415, 3), -- Weapon Type
+(29113, 4416, 2), -- Races
 -- 
-(29114, 4408, 1), -- HP Increase (1x)
-(29114, 4409, 1), -- MP Increase (1x)
-(29114, 4410, 11), -- Average P. Atk.
-(29114, 4411, 11), -- Average M. Atk.
-(29114, 4412, 11), -- Average P. Def.
-(29114, 4413, 11), -- Average M. Def.
-(29114, 4414, 2), -- Standard Type
-(29114, 4415, 3), -- One-handed Sword
-(29114, 4416, 2), -- Magic Creatures
+(29114, 4408, 1), -- HP Modifiers
+(29114, 4409, 1), -- MP Modifiers
+(29114, 4410, 11), -- P. Atk. Modifiers
+(29114, 4411, 11), -- M. Atk. Modifiers
+(29114, 4412, 11), -- P. Def. Modifiers
+(29114, 4413, 11), -- M. Def. Modifiers
+(29114, 4414, 2), -- Armor Type
+(29114, 4415, 3), -- Weapon Type
+(29114, 4416, 2), -- Races
 -- Crystal Prison Guard
-(29115, 4032, 9), -- Power Strike
-(29115, 4408, 1), -- HP Increase (1x)
-(29115, 4409, 1), -- MP Increase (1x)
-(29115, 4410, 11), -- Average P. Atk.
-(29115, 4411, 11), -- Average M. Atk.
-(29115, 4412, 11), -- Average P. Def.
-(29115, 4413, 11), -- Average M. Def.
-(29115, 4414, 2), -- Standard Type
-(29115, 4415, 1), -- Bare Hands
-(29115, 4416, 9), -- Demons
-(29115, 5043, 9), -- Super Sonic Blaster
+(29115, 4032, 9), -- NPC Strike
+(29115, 4408, 1), -- HP Modifiers
+(29115, 4409, 1), -- MP Modifiers
+(29115, 4410, 11), -- P. Atk. Modifiers
+(29115, 4411, 11), -- M. Atk. Modifiers
+(29115, 4412, 11), -- P. Def. Modifiers
+(29115, 4413, 11), -- M. Def. Modifiers
+(29115, 4414, 2), -- Armor Type
+(29115, 4415, 1), -- Weapon Type
+(29115, 4416, 9), -- Races
+(29115, 5043, 9), -- NPC Super Sonic Blaster
 -- Baylor's Treasure Chest
-(29116, 4408, 1), -- HP Increase (1x)
-(29116, 4409, 1), -- MP Increase (1x)
-(29116, 4410, 11), -- Average P. Atk.
-(29116, 4411, 11), -- Average M. Atk.
-(29116, 4412, 11), -- Average P. Def.
-(29116, 4413, 11), -- Average M. Def.
-(29116, 4414, 2), -- Standard Type
-(29116, 4415, 3), -- One-handed Sword
-(29116, 4416, 2), -- Magic Creatures
+(29116, 4408, 1), -- HP Modifiers
+(29116, 4409, 1), -- MP Modifiers
+(29116, 4410, 11), -- P. Atk. Modifiers
+(29116, 4411, 11), -- M. Atk. Modifiers
+(29116, 4412, 11), -- P. Def. Modifiers
+(29116, 4413, 11), -- M. Def. Modifiers
+(29116, 4414, 2), -- Armor Type
+(29116, 4415, 3), -- Weapon Type
+(29116, 4416, 2), -- Races
 -- Baylor's Treasure Chest
-(29117, 4408, 1), -- HP Increase (1x)
-(29117, 4409, 1), -- MP Increase (1x)
-(29117, 4410, 11), -- Average P. Atk.
-(29117, 4411, 11), -- Average M. Atk.
-(29117, 4412, 11), -- Average P. Def.
-(29117, 4413, 11), -- Average M. Def.
-(29117, 4414, 2), -- Standard Type
-(29117, 4415, 3), -- One-handed Sword
-(29117, 4416, 2), -- Magic Creatures
+(29117, 4408, 1), -- HP Modifiers
+(29117, 4409, 1), -- MP Modifiers
+(29117, 4410, 11), -- P. Atk. Modifiers
+(29117, 4411, 11), -- M. Atk. Modifiers
+(29117, 4412, 11), -- P. Def. Modifiers
+(29117, 4413, 11), -- M. Def. Modifiers
+(29117, 4414, 2), -- Armor Type
+(29117, 4415, 3), -- Weapon Type
+(29117, 4416, 2), -- Races
 -- Beleth
 (29118, 4045, 1), -- Resist Full Magic Attack
-(29118, 4408, 1), -- HP Increase (1x)
-(29118, 4409, 1), -- MP Increase (1x)
-(29118, 4410, 11), -- Average P. Atk.
-(29118, 4411, 11), -- Average M. Atk.
-(29118, 4412, 11), -- Average P. Def.
-(29118, 4413, 11), -- Average M. Def.
-(29118, 4414, 3), -- Light Armor Type
-(29118, 4415, 5), -- Blunt Weapons
-(29118, 4416, 6), -- Humanoids
+(29118, 4408, 1), -- HP Modifiers
+(29118, 4409, 1), -- MP Modifiers
+(29118, 4410, 11), -- P. Atk. Modifiers
+(29118, 4411, 11), -- M. Atk. Modifiers
+(29118, 4412, 11), -- P. Def. Modifiers
+(29118, 4413, 11), -- M. Def. Modifiers
+(29118, 4414, 3), -- Armor Type
+(29118, 4415, 5), -- Weapon Type
+(29118, 4416, 6), -- Races
 (29118, 5467, 1), -- Dark Attacks
 (29118, 5479, 1), -- Boss Petrification Resistance
 -- Beleth
 (29119, 4045, 1), -- Resist Full Magic Attack
-(29119, 4408, 1), -- HP Increase (1x)
-(29119, 4409, 1), -- MP Increase (1x)
-(29119, 4410, 11), -- Average P. Atk.
-(29119, 4411, 11), -- Average M. Atk.
-(29119, 4412, 11), -- Average P. Def.
-(29119, 4413, 11), -- Average M. Def.
-(29119, 4414, 3), -- Light Armor Type
-(29119, 4415, 5), -- Blunt Weapons
-(29119, 4416, 6), -- Humanoids
+(29119, 4408, 1), -- HP Modifiers
+(29119, 4409, 1), -- MP Modifiers
+(29119, 4410, 11), -- P. Atk. Modifiers
+(29119, 4411, 11), -- M. Atk. Modifiers
+(29119, 4412, 11), -- P. Def. Modifiers
+(29119, 4413, 11), -- M. Def. Modifiers
+(29119, 4414, 3), -- Armor Type
+(29119, 4415, 5), -- Weapon Type
+(29119, 4416, 6), -- Races
 (29119, 5467, 1), -- Dark Attacks
 (29119, 5479, 1), -- Boss Petrification Resistance
 -- 
-(29120, 4408, 1), -- HP Increase (1x)
-(29120, 4409, 1), -- MP Increase (1x)
-(29120, 4410, 11), -- Average P. Atk.
-(29120, 4411, 11), -- Average M. Atk.
-(29120, 4412, 11), -- Average P. Def.
-(29120, 4413, 11), -- Average M. Def.
-(29120, 4414, 2), -- Standard Type
-(29120, 4415, 3), -- One-handed Sword
-(29120, 4416, 2), -- Magic Creatures
+(29120, 4408, 1), -- HP Modifiers
+(29120, 4409, 1), -- MP Modifiers
+(29120, 4410, 11), -- P. Atk. Modifiers
+(29120, 4411, 11), -- M. Atk. Modifiers
+(29120, 4412, 11), -- P. Def. Modifiers
+(29120, 4413, 11), -- M. Def. Modifiers
+(29120, 4414, 2), -- Armor Type
+(29120, 4415, 3), -- Weapon Type
+(29120, 4416, 2), -- Races
 -- 
-(29121, 4408, 1), -- HP Increase (1x)
-(29121, 4409, 1), -- MP Increase (1x)
-(29121, 4410, 11), -- Average P. Atk.
-(29121, 4411, 11), -- Average M. Atk.
-(29121, 4412, 11), -- Average P. Def.
-(29121, 4413, 11), -- Average M. Def.
-(29121, 4414, 2), -- Standard Type
-(29121, 4415, 3), -- One-handed Sword
-(29121, 4416, 2), -- Magic Creatures
+(29121, 4408, 1), -- HP Modifiers
+(29121, 4409, 1), -- MP Modifiers
+(29121, 4410, 11), -- P. Atk. Modifiers
+(29121, 4411, 11), -- M. Atk. Modifiers
+(29121, 4412, 11), -- P. Def. Modifiers
+(29121, 4413, 11), -- M. Def. Modifiers
+(29121, 4414, 2), -- Armor Type
+(29121, 4415, 3), -- Weapon Type
+(29121, 4416, 2), -- Races
 -- 
-(29122, 4408, 1), -- HP Increase (1x)
-(29122, 4409, 1), -- MP Increase (1x)
-(29122, 4410, 11), -- Average P. Atk.
-(29122, 4411, 11), -- Average M. Atk.
-(29122, 4412, 11), -- Average P. Def.
-(29122, 4413, 11), -- Average M. Def.
-(29122, 4414, 2), -- Standard Type
-(29122, 4415, 3), -- One-handed Sword
-(29122, 4416, 2), -- Magic Creatures
+(29122, 4408, 1), -- HP Modifiers
+(29122, 4409, 1), -- MP Modifiers
+(29122, 4410, 11), -- P. Atk. Modifiers
+(29122, 4411, 11), -- M. Atk. Modifiers
+(29122, 4412, 11), -- P. Def. Modifiers
+(29122, 4413, 11), -- M. Def. Modifiers
+(29122, 4414, 2), -- Armor Type
+(29122, 4415, 3), -- Weapon Type
+(29122, 4416, 2), -- Races
 -- 
-(29123, 4408, 1), -- HP Increase (1x)
-(29123, 4409, 1), -- MP Increase (1x)
-(29123, 4410, 11), -- Average P. Atk.
-(29123, 4411, 11), -- Average M. Atk.
-(29123, 4412, 11), -- Average P. Def.
-(29123, 4413, 11), -- Average M. Def.
-(29123, 4414, 2), -- Standard Type
-(29123, 4415, 3), -- One-handed Sword
-(29123, 4416, 2), -- Magic Creatures
+(29123, 4408, 1), -- HP Modifiers
+(29123, 4409, 1), -- MP Modifiers
+(29123, 4410, 11), -- P. Atk. Modifiers
+(29123, 4411, 11), -- M. Atk. Modifiers
+(29123, 4412, 11), -- P. Def. Modifiers
+(29123, 4413, 11), -- M. Def. Modifiers
+(29123, 4414, 2), -- Armor Type
+(29123, 4415, 3), -- Weapon Type
+(29123, 4416, 2), -- Races
 -- 
-(29124, 4408, 1), -- HP Increase (1x)
-(29124, 4409, 1), -- MP Increase (1x)
-(29124, 4410, 11), -- Average P. Atk.
-(29124, 4411, 11), -- Average M. Atk.
-(29124, 4412, 11), -- Average P. Def.
-(29124, 4413, 11), -- Average M. Def.
-(29124, 4414, 2), -- Standard Type
-(29124, 4415, 3), -- One-handed Sword
-(29124, 4416, 2), -- Magic Creatures
+(29124, 4408, 1), -- HP Modifiers
+(29124, 4409, 1), -- MP Modifiers
+(29124, 4410, 11), -- P. Atk. Modifiers
+(29124, 4411, 11), -- M. Atk. Modifiers
+(29124, 4412, 11), -- P. Def. Modifiers
+(29124, 4413, 11), -- M. Def. Modifiers
+(29124, 4414, 2), -- Armor Type
+(29124, 4415, 3), -- Weapon Type
+(29124, 4416, 2), -- Races
 -- 
-(29125, 4408, 1), -- HP Increase (1x)
-(29125, 4409, 1), -- MP Increase (1x)
-(29125, 4410, 11), -- Average P. Atk.
-(29125, 4411, 11), -- Average M. Atk.
-(29125, 4412, 11), -- Average P. Def.
-(29125, 4413, 11), -- Average M. Def.
-(29125, 4414, 2), -- Standard Type
-(29125, 4415, 3), -- One-handed Sword
-(29125, 4416, 7), -- Spirits
+(29125, 4408, 1), -- HP Modifiers
+(29125, 4409, 1), -- MP Modifiers
+(29125, 4410, 11), -- P. Atk. Modifiers
+(29125, 4411, 11), -- M. Atk. Modifiers
+(29125, 4412, 11), -- P. Def. Modifiers
+(29125, 4413, 11), -- M. Def. Modifiers
+(29125, 4414, 2), -- Armor Type
+(29125, 4415, 3), -- Weapon Type
+(29125, 4416, 7), -- Races
 -- 
 (29126, 4045, 1), -- Resist Full Magic Attack
-(29126, 4408, 1), -- HP Increase (1x)
-(29126, 4409, 1), -- MP Increase (1x)
-(29126, 4410, 11), -- Average P. Atk.
-(29126, 4411, 11), -- Average M. Atk.
-(29126, 4412, 11), -- Average P. Def.
-(29126, 4413, 11), -- Average M. Def.
-(29126, 4414, 3), -- Light Armor Type
-(29126, 4415, 11), -- Spears
-(29126, 4416, 6), -- Humanoids
+(29126, 4408, 1), -- HP Modifiers
+(29126, 4409, 1), -- MP Modifiers
+(29126, 4410, 11), -- P. Atk. Modifiers
+(29126, 4411, 11), -- M. Atk. Modifiers
+(29126, 4412, 11), -- P. Def. Modifiers
+(29126, 4413, 11), -- M. Def. Modifiers
+(29126, 4414, 3), -- Armor Type
+(29126, 4415, 11), -- Weapon Type
+(29126, 4416, 6), -- Races
 -- 
 (29127, 4045, 1), -- Resist Full Magic Attack
-(29127, 4408, 1), -- HP Increase (1x)
-(29127, 4409, 1), -- MP Increase (1x)
-(29127, 4410, 11), -- Average P. Atk.
-(29127, 4411, 11), -- Average M. Atk.
-(29127, 4412, 11), -- Average P. Def.
-(29127, 4413, 11), -- Average M. Def.
-(29127, 4414, 3), -- Light Armor Type
-(29127, 4415, 11), -- Spears
-(29127, 4416, 6), -- Humanoids
+(29127, 4408, 1), -- HP Modifiers
+(29127, 4409, 1), -- MP Modifiers
+(29127, 4410, 11), -- P. Atk. Modifiers
+(29127, 4411, 11), -- M. Atk. Modifiers
+(29127, 4412, 11), -- P. Def. Modifiers
+(29127, 4413, 11), -- M. Def. Modifiers
+(29127, 4414, 3), -- Armor Type
+(29127, 4415, 11), -- Weapon Type
+(29127, 4416, 6), -- Races
 -- 
 (29128, 4045, 1), -- Resist Full Magic Attack
-(29128, 4408, 1), -- HP Increase (1x)
-(29128, 4409, 1), -- MP Increase (1x)
-(29128, 4410, 11), -- Average P. Atk.
-(29128, 4411, 11), -- Average M. Atk.
-(29128, 4412, 11), -- Average P. Def.
-(29128, 4413, 11), -- Average M. Def.
-(29128, 4414, 2), -- Standard Type
-(29128, 4415, 3), -- One-handed Sword
-(29128, 4416, 15), -- Elves
+(29128, 4408, 1), -- HP Modifiers
+(29128, 4409, 1), -- MP Modifiers
+(29128, 4410, 11), -- P. Atk. Modifiers
+(29128, 4411, 11), -- M. Atk. Modifiers
+(29128, 4412, 11), -- P. Def. Modifiers
+(29128, 4413, 11), -- M. Def. Modifiers
+(29128, 4414, 2), -- Armor Type
+(29128, 4415, 3), -- Weapon Type
+(29128, 4416, 15), -- Races
 -- Lost Captain
 (29129, 4045, 1), -- Resist Full Magic Attack
-(29129, 4178, 2), -- Flame Strike
-(29129, 4408, 1), -- HP Increase (1x)
-(29129, 4409, 1), -- MP Increase (1x)
-(29129, 4410, 11), -- Average P. Atk.
-(29129, 4411, 11), -- Average M. Atk.
-(29129, 4412, 11), -- Average P. Def.
-(29129, 4413, 11), -- Average M. Def.
-(29129, 4414, 2), -- Standard Type
-(29129, 4415, 3), -- One-handed Sword
-(29129, 4416, 6), -- Humanoids
+(29129, 4178, 2), -- BOSS Flame Strike
+(29129, 4408, 1), -- HP Modifiers
+(29129, 4409, 1), -- MP Modifiers
+(29129, 4410, 11), -- P. Atk. Modifiers
+(29129, 4411, 11), -- M. Atk. Modifiers
+(29129, 4412, 11), -- P. Def. Modifiers
+(29129, 4413, 11), -- M. Def. Modifiers
+(29129, 4414, 2), -- Armor Type
+(29129, 4415, 3), -- Weapon Type
+(29129, 4416, 6), -- Races
 (29129, 5699, 1), -- Decrease P. Def
 (29129, 5700, 1), -- Magic Resistance Decrease
 (29129, 5701, 1), -- Decrease P. Atk
 -- Lost Guard
 (29130, 4045, 1), -- Resist Full Magic Attack
-(29130, 4408, 1), -- HP Increase (1x)
-(29130, 4409, 1), -- MP Increase (1x)
-(29130, 4410, 11), -- Average P. Atk.
-(29130, 4411, 11), -- Average M. Atk.
-(29130, 4412, 11), -- Average P. Def.
-(29130, 4413, 11), -- Average M. Def.
-(29130, 4414, 2), -- Standard Type
-(29130, 4415, 3), -- One-handed Sword
-(29130, 4416, 6), -- Humanoids
+(29130, 4408, 1), -- HP Modifiers
+(29130, 4409, 1), -- MP Modifiers
+(29130, 4410, 11), -- P. Atk. Modifiers
+(29130, 4411, 11), -- M. Atk. Modifiers
+(29130, 4412, 11), -- P. Def. Modifiers
+(29130, 4413, 11), -- M. Def. Modifiers
+(29130, 4414, 2), -- Armor Type
+(29130, 4415, 3), -- Weapon Type
+(29130, 4416, 6), -- Races
 -- Lost Assistant Guard
-(29131, 4214, 2), -- Reflect Damage
-(29131, 4408, 1), -- HP Increase (1x)
-(29131, 4409, 1), -- MP Increase (1x)
-(29131, 4410, 11), -- Average P. Atk.
-(29131, 4411, 11), -- Average M. Atk.
-(29131, 4412, 11), -- Average P. Def.
-(29131, 4413, 11), -- Average M. Def.
-(29131, 4414, 2), -- Standard Type
-(29131, 4415, 5), -- Blunt Weapons
-(29131, 4416, 6), -- Humanoids
+(29131, 4214, 2), -- BOSS Reflect Damage
+(29131, 4408, 1), -- HP Modifiers
+(29131, 4409, 1), -- MP Modifiers
+(29131, 4410, 11), -- P. Atk. Modifiers
+(29131, 4411, 11), -- M. Atk. Modifiers
+(29131, 4412, 11), -- P. Def. Modifiers
+(29131, 4413, 11), -- M. Def. Modifiers
+(29131, 4414, 2), -- Armor Type
+(29131, 4415, 5), -- Weapon Type
+(29131, 4416, 6), -- Races
 (29131, 4438, 4), -- Greater Resist Sleep
 (29131, 4439, 4), -- Greater Resist Hold
 (29131, 4440, 4), -- Greater Resist Paralysis
 (29131, 4441, 4), -- Greater Resist Mental Derangement
-(29131, 4780, 2), -- Heal
+(29131, 4780, 2), -- BOSS Heal
 -- Lost Captain
 (29132, 4045, 1), -- Resist Full Magic Attack
-(29132, 4178, 3), -- Flame Strike
-(29132, 4408, 1), -- HP Increase (1x)
-(29132, 4409, 1), -- MP Increase (1x)
-(29132, 4410, 11), -- Average P. Atk.
-(29132, 4411, 11), -- Average M. Atk.
-(29132, 4412, 11), -- Average P. Def.
-(29132, 4413, 11), -- Average M. Def.
-(29132, 4414, 2), -- Standard Type
-(29132, 4415, 3), -- One-handed Sword
-(29132, 4416, 6), -- Humanoids
+(29132, 4178, 3), -- BOSS Flame Strike
+(29132, 4408, 1), -- HP Modifiers
+(29132, 4409, 1), -- MP Modifiers
+(29132, 4410, 11), -- P. Atk. Modifiers
+(29132, 4411, 11), -- M. Atk. Modifiers
+(29132, 4412, 11), -- P. Def. Modifiers
+(29132, 4413, 11), -- M. Def. Modifiers
+(29132, 4414, 2), -- Armor Type
+(29132, 4415, 3), -- Weapon Type
+(29132, 4416, 6), -- Races
 (29132, 5699, 2), -- Decrease P. Def
 (29132, 5700, 2), -- Magic Resistance Decrease
 (29132, 5701, 2), -- Decrease P. Atk
 -- Lost Guard
 (29133, 4045, 1), -- Resist Full Magic Attack
-(29133, 4408, 1), -- HP Increase (1x)
-(29133, 4409, 1), -- MP Increase (1x)
-(29133, 4410, 11), -- Average P. Atk.
-(29133, 4411, 11), -- Average M. Atk.
-(29133, 4412, 11), -- Average P. Def.
-(29133, 4413, 11), -- Average M. Def.
-(29133, 4414, 3), -- Light Armor Type
-(29133, 4415, 11), -- Spears
-(29133, 4416, 6), -- Humanoids
+(29133, 4408, 1), -- HP Modifiers
+(29133, 4409, 1), -- MP Modifiers
+(29133, 4410, 11), -- P. Atk. Modifiers
+(29133, 4411, 11), -- M. Atk. Modifiers
+(29133, 4412, 11), -- P. Def. Modifiers
+(29133, 4413, 11), -- M. Def. Modifiers
+(29133, 4414, 3), -- Armor Type
+(29133, 4415, 11), -- Weapon Type
+(29133, 4416, 6), -- Races
 -- Lost Assistant Guard
-(29134, 4214, 3), -- Reflect Damage
-(29134, 4408, 1), -- HP Increase (1x)
-(29134, 4409, 1), -- MP Increase (1x)
-(29134, 4410, 11), -- Average P. Atk.
-(29134, 4411, 11), -- Average M. Atk.
-(29134, 4412, 11), -- Average P. Def.
-(29134, 4413, 11), -- Average M. Def.
-(29134, 4414, 3), -- Light Armor Type
-(29134, 4415, 5), -- Blunt Weapons
-(29134, 4416, 6), -- Humanoids
+(29134, 4214, 3), -- BOSS Reflect Damage
+(29134, 4408, 1), -- HP Modifiers
+(29134, 4409, 1); -- MP Modifiers
+
+INSERT INTO `npcskills` VALUES
+(29134, 4410, 11), -- P. Atk. Modifiers
+(29134, 4411, 11), -- M. Atk. Modifiers
+(29134, 4412, 11), -- P. Def. Modifiers
+(29134, 4413, 11), -- M. Def. Modifiers
+(29134, 4414, 3), -- Armor Type
+(29134, 4415, 5), -- Weapon Type
+(29134, 4416, 6), -- Races
 (29134, 4438, 4), -- Greater Resist Sleep
 (29134, 4439, 4), -- Greater Resist Hold
 (29134, 4440, 4), -- Greater Resist Paralysis
 (29134, 4441, 4), -- Greater Resist Mental Derangement
-(29134, 4780, 3), -- Heal
+(29134, 4780, 3), -- BOSS Heal
 -- Lost Captain
 (29135, 4045, 1), -- Resist Full Magic Attack
-(29135, 4178, 4), -- Flame Strike
-(29135, 4408, 1), -- HP Increase (1x)
-(29135, 4409, 1), -- MP Increase (1x)
-(29135, 4410, 11), -- Average P. Atk.
-(29135, 4411, 11), -- Average M. Atk.
-(29135, 4412, 11), -- Average P. Def.
-(29135, 4413, 11), -- Average M. Def.
-(29135, 4414, 1), -- Heavy Armor Type
-(29135, 4415, 5), -- Blunt Weapons
-(29135, 4416, 2), -- Magic Creatures
+(29135, 4178, 4), -- BOSS Flame Strike
+(29135, 4408, 1), -- HP Modifiers
+(29135, 4409, 1), -- MP Modifiers
+(29135, 4410, 11), -- P. Atk. Modifiers
+(29135, 4411, 11), -- M. Atk. Modifiers
+(29135, 4412, 11), -- P. Def. Modifiers
+(29135, 4413, 11), -- M. Def. Modifiers
+(29135, 4414, 1), -- Armor Type
+(29135, 4415, 5), -- Weapon Type
+(29135, 4416, 2), -- Races
 (29135, 5699, 3), -- Decrease P. Def
 (29135, 5700, 3), -- Magic Resistance Decrease
 (29135, 5701, 3), -- Decrease P. Atk
 -- Lost Guard
 (29136, 4045, 1), -- Resist Full Magic Attack
-(29136, 4408, 1), -- HP Increase (1x)
-(29136, 4409, 1), -- MP Increase (1x)
-(29136, 4410, 11), -- Average P. Atk.
-(29136, 4411, 11), -- Average M. Atk.
-(29136, 4412, 11), -- Average P. Def.
-(29136, 4413, 11), -- Average M. Def.
-(29136, 4414, 1), -- Heavy Armor Type
-(29136, 4415, 4), -- One-handed Sword
-(29136, 4416, 2), -- Magic Creatures
+(29136, 4408, 1), -- HP Modifiers
+(29136, 4409, 1), -- MP Modifiers
+(29136, 4410, 11), -- P. Atk. Modifiers
+(29136, 4411, 11), -- M. Atk. Modifiers
+(29136, 4412, 11), -- P. Def. Modifiers
+(29136, 4413, 11), -- M. Def. Modifiers
+(29136, 4414, 1), -- Armor Type
+(29136, 4415, 4), -- Weapon Type
+(29136, 4416, 2), -- Races
 -- Lost Assistant Guard
-(29137, 4214, 4), -- Reflect Damage
-(29137, 4408, 1), -- HP Increase (1x)
-(29137, 4409, 1), -- MP Increase (1x)
-(29137, 4410, 11), -- Average P. Atk.
-(29137, 4411, 11), -- Average M. Atk.
-(29137, 4412, 11), -- Average P. Def.
-(29137, 4413, 11), -- Average M. Def.
-(29137, 4414, 1), -- Heavy Armor Type
-(29137, 4415, 5), -- Blunt Weapons
-(29137, 4416, 2), -- Magic Creatures
+(29137, 4214, 4), -- BOSS Reflect Damage
+(29137, 4408, 1), -- HP Modifiers
+(29137, 4409, 1), -- MP Modifiers
+(29137, 4410, 11), -- P. Atk. Modifiers
+(29137, 4411, 11), -- M. Atk. Modifiers
+(29137, 4412, 11), -- P. Def. Modifiers
+(29137, 4413, 11), -- M. Def. Modifiers
+(29137, 4414, 1), -- Armor Type
+(29137, 4415, 5), -- Weapon Type
+(29137, 4416, 2), -- Races
 (29137, 4438, 4), -- Greater Resist Sleep
 (29137, 4439, 4), -- Greater Resist Hold
 (29137, 4440, 4), -- Greater Resist Paralysis
 (29137, 4441, 4), -- Greater Resist Mental Derangement
-(29137, 4780, 4), -- Heal
+(29137, 4780, 4), -- BOSS Heal
 -- Lost Captain
 (29138, 4045, 1), -- Resist Full Magic Attack
-(29138, 4178, 5), -- Flame Strike
-(29138, 4408, 1), -- HP Increase (1x)
-(29138, 4409, 1), -- MP Increase (1x)
-(29138, 4410, 11), -- Average P. Atk.
-(29138, 4411, 11), -- Average M. Atk.
-(29138, 4412, 11), -- Average P. Def.
-(29138, 4413, 11), -- Average M. Def.
-(29138, 4414, 2), -- Standard Type
-(29138, 4415, 3), -- One-handed Sword
-(29138, 4416, 1), -- Undead
+(29138, 4178, 5), -- BOSS Flame Strike
+(29138, 4408, 1), -- HP Modifiers
+(29138, 4409, 1), -- MP Modifiers
+(29138, 4410, 11), -- P. Atk. Modifiers
+(29138, 4411, 11), -- M. Atk. Modifiers
+(29138, 4412, 11), -- P. Def. Modifiers
+(29138, 4413, 11), -- M. Def. Modifiers
+(29138, 4414, 2), -- Armor Type
+(29138, 4415, 3), -- Weapon Type
+(29138, 4416, 1), -- Races
 (29138, 5699, 4), -- Decrease P. Def
 (29138, 5700, 4), -- Magic Resistance Decrease
 (29138, 5701, 4), -- Decrease P. Atk
 -- Lost Guard
 (29139, 4045, 1), -- Resist Full Magic Attack
-(29139, 4408, 1), -- HP Increase (1x)
-(29139, 4409, 1), -- MP Increase (1x)
-(29139, 4410, 11), -- Average P. Atk.
-(29139, 4411, 11), -- Average M. Atk.
-(29139, 4412, 11), -- Average P. Def.
-(29139, 4413, 11), -- Average M. Def.
-(29139, 4414, 3), -- Light Armor Type
-(29139, 4415, 3), -- One-handed Sword
-(29139, 4416, 1), -- Undead
+(29139, 4408, 1), -- HP Modifiers
+(29139, 4409, 1), -- MP Modifiers
+(29139, 4410, 11), -- P. Atk. Modifiers
+(29139, 4411, 11), -- M. Atk. Modifiers
+(29139, 4412, 11), -- P. Def. Modifiers
+(29139, 4413, 11), -- M. Def. Modifiers
+(29139, 4414, 3), -- Armor Type
+(29139, 4415, 3), -- Weapon Type
+(29139, 4416, 1), -- Races
 -- Lost Assistant Guard
-(29140, 4214, 5), -- Reflect Damage
-(29140, 4408, 1), -- HP Increase (1x)
-(29140, 4409, 1), -- MP Increase (1x)
-(29140, 4410, 11), -- Average P. Atk.
-(29140, 4411, 11), -- Average M. Atk.
-(29140, 4412, 11), -- Average P. Def.
-(29140, 4413, 11), -- Average M. Def.
-(29140, 4414, 3), -- Light Armor Type
-(29140, 4415, 3), -- One-handed Sword
-(29140, 4416, 1), -- Undead
+(29140, 4214, 5), -- BOSS Reflect Damage
+(29140, 4408, 1), -- HP Modifiers
+(29140, 4409, 1), -- MP Modifiers
+(29140, 4410, 11), -- P. Atk. Modifiers
+(29140, 4411, 11), -- M. Atk. Modifiers
+(29140, 4412, 11), -- P. Def. Modifiers
+(29140, 4413, 11), -- M. Def. Modifiers
+(29140, 4414, 3), -- Armor Type
+(29140, 4415, 3), -- Weapon Type
+(29140, 4416, 1), -- Races
 (29140, 4438, 4), -- Greater Resist Sleep
 (29140, 4439, 4), -- Greater Resist Hold
 (29140, 4440, 4), -- Greater Resist Paralysis
 (29140, 4441, 4), -- Greater Resist Mental Derangement
-(29140, 4780, 5), -- Heal
+(29140, 4780, 5), -- BOSS Heal
 -- Lost Captain
 (29141, 4045, 1), -- Resist Full Magic Attack
-(29141, 4178, 6), -- Flame Strike
-(29141, 4408, 1), -- HP Increase (1x)
-(29141, 4409, 1), -- MP Increase (1x)
-(29141, 4410, 11), -- Average P. Atk.
-(29141, 4411, 11), -- Average M. Atk.
-(29141, 4412, 11), -- Average P. Def.
-(29141, 4413, 11), -- Average M. Def.
-(29141, 4414, 3), -- Light Armor Type
-(29141, 4415, 7), -- Daggers
-(29141, 4416, 4), -- Animals
+(29141, 4178, 6), -- BOSS Flame Strike
+(29141, 4408, 1), -- HP Modifiers
+(29141, 4409, 1), -- MP Modifiers
+(29141, 4410, 11), -- P. Atk. Modifiers
+(29141, 4411, 11), -- M. Atk. Modifiers
+(29141, 4412, 11), -- P. Def. Modifiers
+(29141, 4413, 11), -- M. Def. Modifiers
+(29141, 4414, 3), -- Armor Type
+(29141, 4415, 7), -- Weapon Type
+(29141, 4416, 4), -- Races
 (29141, 5699, 5), -- Decrease P. Def
 (29141, 5700, 5), -- Magic Resistance Decrease
 (29141, 5701, 5), -- Decrease P. Atk
 -- Lost Guard
 (29142, 4045, 1), -- Resist Full Magic Attack
-(29142, 4408, 1), -- HP Increase (1x)
-(29142, 4409, 1), -- MP Increase (1x)
-(29142, 4410, 11), -- Average P. Atk.
-(29142, 4411, 11), -- Average M. Atk.
-(29142, 4412, 11), -- Average P. Def.
-(29142, 4413, 11), -- Average M. Def.
-(29142, 4414, 2), -- Standard Type
-(29142, 4415, 3), -- One-handed Sword
-(29142, 4416, 9), -- Demons
+(29142, 4408, 1), -- HP Modifiers
+(29142, 4409, 1), -- MP Modifiers
+(29142, 4410, 11), -- P. Atk. Modifiers
+(29142, 4411, 11), -- M. Atk. Modifiers
+(29142, 4412, 11), -- P. Def. Modifiers
+(29142, 4413, 11), -- M. Def. Modifiers
+(29142, 4414, 2), -- Armor Type
+(29142, 4415, 3), -- Weapon Type
+(29142, 4416, 9), -- Races
 -- Lost Assistant Guard
-(29143, 4214, 6), -- Reflect Damage
-(29143, 4408, 1), -- HP Increase (1x)
-(29143, 4409, 1), -- MP Increase (1x)
-(29143, 4410, 11), -- Average P. Atk.
-(29143, 4411, 11), -- Average M. Atk.
-(29143, 4412, 11), -- Average P. Def.
-(29143, 4413, 11), -- Average M. Def.
-(29143, 4414, 2), -- Standard Type
-(29143, 4415, 3), -- One-handed Sword
-(29143, 4416, 9), -- Demons
+(29143, 4214, 6), -- BOSS Reflect Damage
+(29143, 4408, 1), -- HP Modifiers
+(29143, 4409, 1), -- MP Modifiers
+(29143, 4410, 11), -- P. Atk. Modifiers
+(29143, 4411, 11), -- M. Atk. Modifiers
+(29143, 4412, 11), -- P. Def. Modifiers
+(29143, 4413, 11), -- M. Def. Modifiers
+(29143, 4414, 2), -- Armor Type
+(29143, 4415, 3), -- Weapon Type
+(29143, 4416, 9), -- Races
 (29143, 4438, 4), -- Greater Resist Sleep
 (29143, 4439, 4), -- Greater Resist Hold
 (29143, 4440, 4), -- Greater Resist Paralysis
 (29143, 4441, 4), -- Greater Resist Mental Derangement
-(29143, 4780, 6), -- Heal
+(29143, 4780, 6), -- BOSS Heal
 -- Lost Captain
 (29144, 4045, 1), -- Resist Full Magic Attack
-(29144, 4178, 7), -- Flame Strike
-(29144, 4408, 1), -- HP Increase (1x)
-(29144, 4409, 1), -- MP Increase (1x)
-(29144, 4410, 11), -- Average P. Atk.
-(29144, 4411, 11), -- Average M. Atk.
-(29144, 4412, 11), -- Average P. Def.
-(29144, 4413, 11), -- Average M. Def.
-(29144, 4414, 2), -- Standard Type
-(29144, 4415, 11), -- Spears
-(29144, 4416, 8), -- Angels
+(29144, 4178, 7), -- BOSS Flame Strike
+(29144, 4408, 1), -- HP Modifiers
+(29144, 4409, 1), -- MP Modifiers
+(29144, 4410, 11), -- P. Atk. Modifiers
+(29144, 4411, 11), -- M. Atk. Modifiers
+(29144, 4412, 11), -- P. Def. Modifiers
+(29144, 4413, 11), -- M. Def. Modifiers
+(29144, 4414, 2), -- Armor Type
+(29144, 4415, 11), -- Weapon Type
+(29144, 4416, 8), -- Races
 (29144, 5462, 1), -- Fire Attacks
 (29144, 5699, 6), -- Decrease P. Def
 (29144, 5700, 6), -- Magic Resistance Decrease
 (29144, 5701, 6), -- Decrease P. Atk
 -- Lost Guard
 (29145, 4045, 1), -- Resist Full Magic Attack
-(29145, 4408, 1), -- HP Increase (1x)
-(29145, 4409, 1), -- MP Increase (1x)
-(29145, 4410, 11), -- Average P. Atk.
-(29145, 4411, 11), -- Average M. Atk.
-(29145, 4412, 11), -- Average P. Def.
-(29145, 4413, 11), -- Average M. Def.
-(29145, 4414, 2), -- Standard Type
-(29145, 4415, 11), -- Spears
-(29145, 4416, 8), -- Angels
+(29145, 4408, 1), -- HP Modifiers
+(29145, 4409, 1), -- MP Modifiers
+(29145, 4410, 11), -- P. Atk. Modifiers
+(29145, 4411, 11), -- M. Atk. Modifiers
+(29145, 4412, 11), -- P. Def. Modifiers
+(29145, 4413, 11), -- M. Def. Modifiers
+(29145, 4414, 2), -- Armor Type
+(29145, 4415, 11), -- Weapon Type
+(29145, 4416, 8), -- Races
 (29145, 5465, 1), -- Earth Attacks
 -- Lost Assistant Guard
-(29146, 4214, 7), -- Reflect Damage
-(29146, 4408, 1), -- HP Increase (1x)
-(29146, 4409, 1), -- MP Increase (1x)
-(29146, 4410, 11), -- Average P. Atk.
-(29146, 4411, 11), -- Average M. Atk.
-(29146, 4412, 11), -- Average P. Def.
-(29146, 4413, 11), -- Average M. Def.
-(29146, 4414, 2), -- Standard Type
-(29146, 4415, 5), -- Blunt Weapons
-(29146, 4416, 8), -- Angels
+(29146, 4214, 7), -- BOSS Reflect Damage
+(29146, 4408, 1), -- HP Modifiers
+(29146, 4409, 1), -- MP Modifiers
+(29146, 4410, 11), -- P. Atk. Modifiers
+(29146, 4411, 11), -- M. Atk. Modifiers
+(29146, 4412, 11), -- P. Def. Modifiers
+(29146, 4413, 11), -- M. Def. Modifiers
+(29146, 4414, 2), -- Armor Type
+(29146, 4415, 5), -- Weapon Type
+(29146, 4416, 8), -- Races
 (29146, 4438, 4), -- Greater Resist Sleep
 (29146, 4439, 4), -- Greater Resist Hold
 (29146, 4440, 4), -- Greater Resist Paralysis
 (29146, 4441, 4), -- Greater Resist Mental Derangement
-(29146, 4780, 7), -- Heal
+(29146, 4780, 7), -- BOSS Heal
 (29146, 5465, 1), -- Earth Attacks
 -- Lost Captain
 (29147, 4045, 1), -- Resist Full Magic Attack
-(29147, 4178, 8), -- Flame Strike
-(29147, 4408, 1), -- HP Increase (1x)
-(29147, 4409, 1), -- MP Increase (1x)
-(29147, 4410, 11), -- Average P. Atk.
-(29147, 4411, 11), -- Average M. Atk.
-(29147, 4412, 11), -- Average P. Def.
-(29147, 4413, 11), -- Average M. Def.
-(29147, 4414, 2), -- Standard Type
-(29147, 4415, 1), -- Bare Hands
-(29147, 4416, 10), -- Dragons
+(29147, 4178, 8), -- BOSS Flame Strike
+(29147, 4408, 1), -- HP Modifiers
+(29147, 4409, 1), -- MP Modifiers
+(29147, 4410, 11), -- P. Atk. Modifiers
+(29147, 4411, 11), -- M. Atk. Modifiers
+(29147, 4412, 11), -- P. Def. Modifiers
+(29147, 4413, 11), -- M. Def. Modifiers
+(29147, 4414, 2), -- Armor Type
+(29147, 4415, 1), -- Weapon Type
+(29147, 4416, 10), -- Races
 (29147, 5464, 1), -- Wind Attacks
 (29147, 5699, 7), -- Decrease P. Def
 (29147, 5700, 7), -- Magic Resistance Decrease
 (29147, 5701, 7), -- Decrease P. Atk
 -- Lost Guard
 (29148, 4045, 1), -- Resist Full Magic Attack
-(29148, 4408, 1), -- HP Increase (1x)
-(29148, 4409, 1), -- MP Increase (1x)
-(29148, 4410, 11), -- Average P. Atk.
-(29148, 4411, 11), -- Average M. Atk.
-(29148, 4412, 11), -- Average P. Def.
-(29148, 4413, 11), -- Average M. Def.
-(29148, 4414, 2), -- Standard Type
-(29148, 4415, 3), -- One-handed Sword
-(29148, 4416, 10), -- Dragons
+(29148, 4408, 1), -- HP Modifiers
+(29148, 4409, 1), -- MP Modifiers
+(29148, 4410, 11), -- P. Atk. Modifiers
+(29148, 4411, 11), -- M. Atk. Modifiers
+(29148, 4412, 11), -- P. Def. Modifiers
+(29148, 4413, 11), -- M. Def. Modifiers
+(29148, 4414, 2), -- Armor Type
+(29148, 4415, 3), -- Weapon Type
+(29148, 4416, 10), -- Races
 (29148, 5462, 1), -- Fire Attacks
 -- Lost Assistant Guard
-(29149, 4214, 8), -- Reflect Damage
-(29149, 4408, 1), -- HP Increase (1x)
-(29149, 4409, 1), -- MP Increase (1x)
-(29149, 4410, 11), -- Average P. Atk.
-(29149, 4411, 11), -- Average M. Atk.
-(29149, 4412, 11), -- Average P. Def.
-(29149, 4413, 11), -- Average M. Def.
-(29149, 4414, 2), -- Standard Type
-(29149, 4415, 3), -- One-handed Sword
-(29149, 4416, 10), -- Dragons
+(29149, 4214, 8), -- BOSS Reflect Damage
+(29149, 4408, 1), -- HP Modifiers
+(29149, 4409, 1), -- MP Modifiers
+(29149, 4410, 11), -- P. Atk. Modifiers
+(29149, 4411, 11), -- M. Atk. Modifiers
+(29149, 4412, 11), -- P. Def. Modifiers
+(29149, 4413, 11), -- M. Def. Modifiers
+(29149, 4414, 2), -- Armor Type
+(29149, 4415, 3), -- Weapon Type
+(29149, 4416, 10), -- Races
 (29149, 4438, 4), -- Greater Resist Sleep
 (29149, 4439, 4), -- Greater Resist Hold
 (29149, 4440, 4), -- Greater Resist Paralysis
 (29149, 4441, 4), -- Greater Resist Mental Derangement
-(29149, 4780, 8), -- Heal
+(29149, 4780, 8), -- BOSS Heal
 (29149, 5467, 1), -- Dark Attacks
 -- Ekimus
 (29150, 4045, 1), -- Resist Full Magic Attack
-(29150, 4408, 1), -- HP Increase (1x)
-(29150, 4409, 13), -- MP Increase (5x)
-(29150, 4410, 11), -- Average P. Atk.
-(29150, 4411, 11), -- Average M. Atk.
-(29150, 4412, 11), -- Average P. Def.
-(29150, 4413, 11), -- Average M. Def.
-(29150, 4414, 2), -- Standard Type
-(29150, 4415, 4), -- One-handed Sword
-(29150, 4416, 1), -- Undead
+(29150, 4408, 1), -- HP Modifiers
+(29150, 4409, 13), -- MP Modifiers
+(29150, 4410, 11), -- P. Atk. Modifiers
+(29150, 4411, 11), -- M. Atk. Modifiers
+(29150, 4412, 11), -- P. Def. Modifiers
+(29150, 4413, 11), -- M. Def. Modifiers
+(29150, 4414, 2), -- Armor Type
+(29150, 4415, 4), -- Weapon Type
+(29150, 4416, 1), -- Races
 (29150, 4438, 5), -- Greater Resist Sleep
 (29150, 5467, 1), -- Dark Attacks
 (29150, 5916, 1), -- Cruising Aura
 -- Feral Hound of the Netherworld
 (29151, 4045, 1), -- Resist Full Magic Attack
-(29151, 4408, 1), -- HP Increase (1x)
-(29151, 4409, 13), -- MP Increase (5x)
-(29151, 4410, 11), -- Average P. Atk.
-(29151, 4411, 11), -- Average M. Atk.
-(29151, 4412, 11), -- Average P. Def.
-(29151, 4413, 11), -- Average M. Def.
-(29151, 4414, 2), -- Standard Type
-(29151, 4415, 3), -- One-handed Sword
-(29151, 4416, 1), -- Undead
+(29151, 4408, 1), -- HP Modifiers
+(29151, 4409, 13), -- MP Modifiers
+(29151, 4410, 11), -- P. Atk. Modifiers
+(29151, 4411, 11), -- M. Atk. Modifiers
+(29151, 4412, 11), -- P. Def. Modifiers
+(29151, 4413, 11), -- M. Def. Modifiers
+(29151, 4414, 2), -- Armor Type
+(29151, 4415, 3), -- Weapon Type
+(29151, 4416, 1), -- Races
 (29151, 5467, 1), -- Dark Attacks
 -- Feral Hound of the Netherworld
 (29152, 4045, 1), -- Resist Full Magic Attack
-(29152, 4408, 1), -- HP Increase (1x)
-(29152, 4409, 13), -- MP Increase (5x)
-(29152, 4410, 11), -- Average P. Atk.
-(29152, 4411, 11), -- Average M. Atk.
-(29152, 4412, 11), -- Average P. Def.
-(29152, 4413, 11), -- Average M. Def.
-(29152, 4414, 2), -- Standard Type
-(29152, 4415, 3), -- One-handed Sword
-(29152, 4416, 1), -- Undead
+(29152, 4408, 1), -- HP Modifiers
+(29152, 4409, 13), -- MP Modifiers
+(29152, 4410, 11), -- P. Atk. Modifiers
+(29152, 4411, 11), -- M. Atk. Modifiers
+(29152, 4412, 11), -- P. Def. Modifiers
+(29152, 4413, 11), -- M. Def. Modifiers
+(29152, 4414, 2), -- Armor Type
+(29152, 4415, 3), -- Weapon Type
+(29152, 4416, 1), -- Races
 (29152, 5467, 1), -- Dark Attacks
 -- 
-(29153, 4408, 1), -- HP Increase (1x)
-(29153, 4409, 1), -- MP Increase (1x)
-(29153, 4410, 11), -- Average P. Atk.
-(29153, 4411, 11), -- Average M. Atk.
-(29153, 4412, 11), -- Average P. Def.
-(29153, 4413, 11), -- Average M. Def.
-(29153, 4414, 2), -- Standard Type
-(29153, 4415, 3), -- One-handed Sword
-(29153, 4416, 2), -- Magic Creatures
+(29153, 4408, 1), -- HP Modifiers
+(29153, 4409, 1), -- MP Modifiers
+(29153, 4410, 11), -- P. Atk. Modifiers
+(29153, 4411, 11), -- M. Atk. Modifiers
+(29153, 4412, 11), -- P. Def. Modifiers
+(29153, 4413, 11), -- M. Def. Modifiers
+(29153, 4414, 2), -- Armor Type
+(29153, 4415, 3), -- Weapon Type
+(29153, 4416, 2), -- Races
 -- 
-(29154, 4408, 1), -- HP Increase (1x)
-(29154, 4409, 1), -- MP Increase (1x)
-(29154, 4410, 11), -- Average P. Atk.
-(29154, 4411, 11), -- Average M. Atk.
-(29154, 4412, 11), -- Average P. Def.
-(29154, 4413, 11), -- Average M. Def.
-(29154, 4414, 2), -- Standard Type
-(29154, 4415, 3), -- One-handed Sword
-(29154, 4416, 2), -- Magic Creatures
+(29154, 4408, 1), -- HP Modifiers
+(29154, 4409, 1), -- MP Modifiers
+(29154, 4410, 11), -- P. Atk. Modifiers
+(29154, 4411, 11), -- M. Atk. Modifiers
+(29154, 4412, 11), -- P. Def. Modifiers
+(29154, 4413, 11), -- M. Def. Modifiers
+(29154, 4414, 2), -- Armor Type
+(29154, 4415, 3), -- Weapon Type
+(29154, 4416, 2), -- Races
 -- 
-(29155, 4408, 1), -- HP Increase (1x)
-(29155, 4409, 1), -- MP Increase (1x)
-(29155, 4410, 11), -- Average P. Atk.
-(29155, 4411, 11), -- Average M. Atk.
-(29155, 4412, 11), -- Average P. Def.
-(29155, 4413, 11), -- Average M. Def.
-(29155, 4414, 2), -- Standard Type
-(29155, 4415, 3), -- One-handed Sword
-(29155, 4416, 2), -- Magic Creatures
+(29155, 4408, 1), -- HP Modifiers
+(29155, 4409, 1), -- MP Modifiers
+(29155, 4410, 11), -- P. Atk. Modifiers
+(29155, 4411, 11), -- M. Atk. Modifiers
+(29155, 4412, 11), -- P. Def. Modifiers
+(29155, 4413, 11), -- M. Def. Modifiers
+(29155, 4414, 2), -- Armor Type
+(29155, 4415, 3), -- Weapon Type
+(29155, 4416, 2), -- Races
 -- 
-(29156, 4408, 1), -- HP Increase (1x)
-(29156, 4409, 1), -- MP Increase (1x)
-(29156, 4410, 11), -- Average P. Atk.
-(29156, 4411, 11), -- Average M. Atk.
-(29156, 4412, 11), -- Average P. Def.
-(29156, 4413, 11), -- Average M. Def.
-(29156, 4414, 2), -- Standard Type
-(29156, 4415, 3), -- One-handed Sword
-(29156, 4416, 2), -- Magic Creatures
+(29156, 4408, 1), -- HP Modifiers
+(29156, 4409, 1), -- MP Modifiers
+(29156, 4410, 11), -- P. Atk. Modifiers
+(29156, 4411, 11), -- M. Atk. Modifiers
+(29156, 4412, 11), -- P. Def. Modifiers
+(29156, 4413, 11), -- M. Def. Modifiers
+(29156, 4414, 2), -- Armor Type
+(29156, 4415, 3), -- Weapon Type
+(29156, 4416, 2), -- Races
 -- 
-(29157, 4408, 1), -- HP Increase (1x)
-(29157, 4409, 1), -- MP Increase (1x)
-(29157, 4410, 11), -- Average P. Atk.
-(29157, 4411, 11), -- Average M. Atk.
-(29157, 4412, 11), -- Average P. Def.
-(29157, 4413, 11), -- Average M. Def.
-(29157, 4414, 2), -- Standard Type
-(29157, 4415, 3), -- One-handed Sword
-(29157, 4416, 2), -- Magic Creatures
+(29157, 4408, 1), -- HP Modifiers
+(29157, 4409, 1), -- MP Modifiers
+(29157, 4410, 11), -- P. Atk. Modifiers
+(29157, 4411, 11), -- M. Atk. Modifiers
+(29157, 4412, 11), -- P. Def. Modifiers
+(29157, 4413, 11), -- M. Def. Modifiers
+(29157, 4414, 2), -- Armor Type
+(29157, 4415, 3), -- Weapon Type
+(29157, 4416, 2), -- Races
 -- 
-(29158, 4408, 1), -- HP Increase (1x)
-(29158, 4409, 1), -- MP Increase (1x)
-(29158, 4410, 11), -- Average P. Atk.
-(29158, 4411, 11), -- Average M. Atk.
-(29158, 4412, 11), -- Average P. Def.
-(29158, 4413, 11), -- Average M. Def.
-(29158, 4414, 2), -- Standard Type
-(29158, 4415, 3), -- One-handed Sword
-(29158, 4416, 2), -- Magic Creatures
+(29158, 4408, 1), -- HP Modifiers
+(29158, 4409, 1), -- MP Modifiers
+(29158, 4410, 11), -- P. Atk. Modifiers
+(29158, 4411, 11), -- M. Atk. Modifiers
+(29158, 4412, 11), -- P. Def. Modifiers
+(29158, 4413, 11), -- M. Def. Modifiers
+(29158, 4414, 2), -- Armor Type
+(29158, 4415, 3), -- Weapon Type
+(29158, 4416, 2), -- Races
 -- 
-(29159, 4408, 1), -- HP Increase (1x)
-(29159, 4409, 1), -- MP Increase (1x)
-(29159, 4410, 11), -- Average P. Atk.
-(29159, 4411, 11), -- Average M. Atk.
-(29159, 4412, 11), -- Average P. Def.
-(29159, 4413, 11), -- Average M. Def.
-(29159, 4414, 2), -- Standard Type
-(29159, 4415, 3), -- One-handed Sword
-(29159, 4416, 2), -- Magic Creatures
+(29159, 4408, 1), -- HP Modifiers
+(29159, 4409, 1), -- MP Modifiers
+(29159, 4410, 11), -- P. Atk. Modifiers
+(29159, 4411, 11), -- M. Atk. Modifiers
+(29159, 4412, 11), -- P. Def. Modifiers
+(29159, 4413, 11), -- M. Def. Modifiers
+(29159, 4414, 2), -- Armor Type
+(29159, 4415, 3), -- Weapon Type
+(29159, 4416, 2), -- Races
 -- 
-(29160, 4408, 1), -- HP Increase (1x)
-(29160, 4409, 1), -- MP Increase (1x)
-(29160, 4410, 11), -- Average P. Atk.
-(29160, 4411, 11), -- Average M. Atk.
-(29160, 4412, 11), -- Average P. Def.
-(29160, 4413, 11), -- Average M. Def.
-(29160, 4414, 2), -- Standard Type
-(29160, 4415, 3), -- One-handed Sword
-(29160, 4416, 2), -- Magic Creatures
+(29160, 4408, 1), -- HP Modifiers
+(29160, 4409, 1), -- MP Modifiers
+(29160, 4410, 11), -- P. Atk. Modifiers
+(29160, 4411, 11), -- M. Atk. Modifiers
+(29160, 4412, 11), -- P. Def. Modifiers
+(29160, 4413, 11), -- M. Def. Modifiers
+(29160, 4414, 2), -- Armor Type
+(29160, 4415, 3), -- Weapon Type
+(29160, 4416, 2), -- Races
 -- Pre-Awakened Ekimus
-(29161, 4408, 1), -- HP Increase (1x)
-(29161, 4409, 1), -- MP Increase (1x)
-(29161, 4410, 11), -- Average P. Atk.
-(29161, 4411, 11), -- Average M. Atk.
-(29161, 4412, 11), -- Average P. Def.
-(29161, 4413, 11), -- Average M. Def.
-(29161, 4414, 2), -- Standard Type
-(29161, 4415, 3), -- One-handed Sword
-(29161, 4416, 1), -- Undead
+(29161, 4408, 1), -- HP Modifiers
+(29161, 4409, 1), -- MP Modifiers
+(29161, 4410, 11), -- P. Atk. Modifiers
+(29161, 4411, 11), -- M. Atk. Modifiers
+(29161, 4412, 11), -- P. Def. Modifiers
+(29161, 4413, 11), -- M. Def. Modifiers
+(29161, 4414, 2), -- Armor Type
+(29161, 4415, 3), -- Weapon Type
+(29161, 4416, 1), -- Races
 -- Soldiers of Bravery
-(29162, 4408, 1), -- HP Increase (1x)
-(29162, 4409, 1), -- MP Increase (1x)
-(29162, 4410, 11), -- Average P. Atk.
-(29162, 4411, 11), -- Average M. Atk.
-(29162, 4412, 11), -- Average P. Def.
-(29162, 4413, 11), -- Average M. Def.
-(29162, 4414, 2), -- Standard Type
-(29162, 4415, 11), -- Spears
-(29162, 4416, 10), -- Dragons
+(29162, 4408, 1), -- HP Modifiers
+(29162, 4409, 1), -- MP Modifiers
+(29162, 4410, 11), -- P. Atk. Modifiers
+(29162, 4411, 11), -- M. Atk. Modifiers
+(29162, 4412, 11), -- P. Def. Modifiers
+(29162, 4413, 11), -- M. Def. Modifiers
+(29162, 4414, 2), -- Armor Type
+(29162, 4415, 11), -- Weapon Type
+(29162, 4416, 10), -- Races
 (29162, 5203, 10), -- Fear
 (29162, 5309, 5), -- Bleed
 (29162, 5462, 1), -- Fire Attacks
 (29162, 5826, 1), -- Fire Breath
 -- Tiat
 (29163, 4045, 1), -- Resist Full Magic Attack
-(29163, 4071, 3), -- Resist Bow/Crossbow Weapons
-(29163, 4116, 5), -- Resist M. Atk.
-(29163, 4408, 1), -- HP Increase (1x)
-(29163, 4409, 1), -- MP Increase (1x)
-(29163, 4410, 11), -- Average P. Atk.
-(29163, 4411, 11), -- Average M. Atk.
-(29163, 4412, 11), -- Average P. Def.
-(29163, 4413, 11), -- Average M. Def.
-(29163, 4414, 2), -- Standard Type
-(29163, 4415, 4), -- One-handed Sword
-(29163, 4416, 10), -- Dragons
+(29163, 4071, 3), -- Resist Archery
+(29163, 4116, 5), -- Resist M.Atk
+(29163, 4408, 1), -- HP Modifiers
+(29163, 4409, 1), -- MP Modifiers
+(29163, 4410, 11), -- P. Atk. Modifiers
+(29163, 4411, 11), -- M. Atk. Modifiers
+(29163, 4412, 11), -- P. Def. Modifiers
+(29163, 4413, 11), -- M. Def. Modifiers
+(29163, 4414, 2), -- Armor Type
+(29163, 4415, 4), -- Weapon Type
+(29163, 4416, 10), -- Races
 (29163, 5462, 1), -- Fire Attacks
 (29163, 5839, 1), -- Breath
 (29163, 5840, 1), -- Fire Breath
@@ -76299,278 +76655,276 @@ INSERT INTO `npcskills` VALUES
 (29163, 5843, 1), -- Terror
 (29163, 6127, 1), -- Anti-limit
 -- 
-(29164, 4408, 1), -- HP Increase (1x)
-(29164, 4409, 1); -- MP Increase (1x)
-
-INSERT INTO `npcskills` VALUES
-(29164, 4410, 11), -- Average P. Atk.
-(29164, 4411, 11), -- Average M. Atk.
-(29164, 4412, 11), -- Average P. Def.
-(29164, 4413, 11), -- Average M. Def.
-(29164, 4414, 2), -- Standard Type
-(29164, 4415, 3), -- One-handed Sword
-(29164, 4416, 2), -- Magic Creatures
+(29164, 4408, 1), -- HP Modifiers
+(29164, 4409, 1), -- MP Modifiers
+(29164, 4410, 11), -- P. Atk. Modifiers
+(29164, 4411, 11), -- M. Atk. Modifiers
+(29164, 4412, 11), -- P. Def. Modifiers
+(29164, 4413, 11), -- M. Def. Modifiers
+(29164, 4414, 2), -- Armor Type
+(29164, 4415, 3), -- Weapon Type
+(29164, 4416, 2), -- Races
 -- 
-(29165, 4408, 1), -- HP Increase (1x)
-(29165, 4409, 1), -- MP Increase (1x)
-(29165, 4410, 11), -- Average P. Atk.
-(29165, 4411, 11), -- Average M. Atk.
-(29165, 4412, 11), -- Average P. Def.
-(29165, 4413, 11), -- Average M. Def.
-(29165, 4414, 2), -- Standard Type
-(29165, 4415, 3), -- One-handed Sword
-(29165, 4416, 2), -- Magic Creatures
+(29165, 4408, 1), -- HP Modifiers
+(29165, 4409, 1), -- MP Modifiers
+(29165, 4410, 11), -- P. Atk. Modifiers
+(29165, 4411, 11), -- M. Atk. Modifiers
+(29165, 4412, 11), -- P. Def. Modifiers
+(29165, 4413, 11), -- M. Def. Modifiers
+(29165, 4414, 2), -- Armor Type
+(29165, 4415, 3), -- Weapon Type
+(29165, 4416, 2), -- Races
 -- 
-(29166, 4408, 1), -- HP Increase (1x)
-(29166, 4409, 1), -- MP Increase (1x)
-(29166, 4410, 11), -- Average P. Atk.
-(29166, 4411, 11), -- Average M. Atk.
-(29166, 4412, 11), -- Average P. Def.
-(29166, 4413, 11), -- Average M. Def.
-(29166, 4414, 2), -- Standard Type
-(29166, 4415, 3), -- One-handed Sword
-(29166, 4416, 2), -- Magic Creatures
+(29166, 4408, 1), -- HP Modifiers
+(29166, 4409, 1), -- MP Modifiers
+(29166, 4410, 11), -- P. Atk. Modifiers
+(29166, 4411, 11), -- M. Atk. Modifiers
+(29166, 4412, 11), -- P. Def. Modifiers
+(29166, 4413, 11), -- M. Def. Modifiers
+(29166, 4414, 2), -- Armor Type
+(29166, 4415, 3), -- Weapon Type
+(29166, 4416, 2), -- Races
 -- 
-(29167, 4408, 1), -- HP Increase (1x)
-(29167, 4409, 1), -- MP Increase (1x)
-(29167, 4410, 11), -- Average P. Atk.
-(29167, 4411, 11), -- Average M. Atk.
-(29167, 4412, 11), -- Average P. Def.
-(29167, 4413, 11), -- Average M. Def.
-(29167, 4414, 2), -- Standard Type
-(29167, 4415, 3), -- One-handed Sword
-(29167, 4416, 2), -- Magic Creatures
+(29167, 4408, 1), -- HP Modifiers
+(29167, 4409, 1), -- MP Modifiers
+(29167, 4410, 11), -- P. Atk. Modifiers
+(29167, 4411, 11), -- M. Atk. Modifiers
+(29167, 4412, 11), -- P. Def. Modifiers
+(29167, 4413, 11), -- M. Def. Modifiers
+(29167, 4414, 2), -- Armor Type
+(29167, 4415, 3), -- Weapon Type
+(29167, 4416, 2), -- Races
 -- 
 (29168, 4045, 1), -- Resist Full Magic Attack
-(29168, 4408, 1), -- HP Increase (1x)
-(29168, 4409, 1), -- MP Increase (1x)
-(29168, 4410, 11), -- Average P. Atk.
-(29168, 4411, 11), -- Average M. Atk.
-(29168, 4412, 11), -- Average P. Def.
-(29168, 4413, 11), -- Average M. Def.
-(29168, 4414, 2), -- Standard Type
-(29168, 4415, 4), -- One-handed Sword
-(29168, 4416, 10), -- Dragons
+(29168, 4408, 1), -- HP Modifiers
+(29168, 4409, 1), -- MP Modifiers
+(29168, 4410, 11), -- P. Atk. Modifiers
+(29168, 4411, 11), -- M. Atk. Modifiers
+(29168, 4412, 11), -- P. Def. Modifiers
+(29168, 4413, 11), -- M. Def. Modifiers
+(29168, 4414, 2), -- Armor Type
+(29168, 4415, 4), -- Weapon Type
+(29168, 4416, 10), -- Races
 (29168, 5462, 1), -- Fire Attacks
 -- 
-(29169, 4408, 1), -- HP Increase (1x)
-(29169, 4409, 1), -- MP Increase (1x)
-(29169, 4410, 11), -- Average P. Atk.
-(29169, 4411, 11), -- Average M. Atk.
-(29169, 4412, 11), -- Average P. Def.
-(29169, 4413, 11), -- Average M. Def.
-(29169, 4414, 2), -- Standard Type
-(29169, 4415, 3), -- One-handed Sword
-(29169, 4416, 2), -- Magic Creatures
+(29169, 4408, 1), -- HP Modifiers
+(29169, 4409, 1), -- MP Modifiers
+(29169, 4410, 11), -- P. Atk. Modifiers
+(29169, 4411, 11), -- M. Atk. Modifiers
+(29169, 4412, 11), -- P. Def. Modifiers
+(29169, 4413, 11), -- M. Def. Modifiers
+(29169, 4414, 2), -- Armor Type
+(29169, 4415, 3), -- Weapon Type
+(29169, 4416, 2), -- Races
 -- 
-(29170, 4408, 1), -- HP Increase (1x)
-(29170, 4409, 1), -- MP Increase (1x)
-(29170, 4410, 11), -- Average P. Atk.
-(29170, 4411, 11), -- Average M. Atk.
-(29170, 4412, 11), -- Average P. Def.
-(29170, 4413, 11), -- Average M. Def.
-(29170, 4414, 2), -- Standard Type
-(29170, 4415, 3), -- One-handed Sword
-(29170, 4416, 2), -- Magic Creatures
+(29170, 4408, 1), -- HP Modifiers
+(29170, 4409, 1), -- MP Modifiers
+(29170, 4410, 11), -- P. Atk. Modifiers
+(29170, 4411, 11), -- M. Atk. Modifiers
+(29170, 4412, 11), -- P. Def. Modifiers
+(29170, 4413, 11), -- M. Def. Modifiers
+(29170, 4414, 2), -- Armor Type
+(29170, 4415, 3), -- Weapon Type
+(29170, 4416, 2), -- Races
 -- 
-(29171, 4408, 1), -- HP Increase (1x)
-(29171, 4409, 1), -- MP Increase (1x)
-(29171, 4410, 11), -- Average P. Atk.
-(29171, 4411, 11), -- Average M. Atk.
-(29171, 4412, 11), -- Average P. Def.
-(29171, 4413, 11), -- Average M. Def.
-(29171, 4414, 2), -- Standard Type
-(29171, 4415, 3), -- One-handed Sword
-(29171, 4416, 2), -- Magic Creatures
+(29171, 4408, 1), -- HP Modifiers
+(29171, 4409, 1), -- MP Modifiers
+(29171, 4410, 11), -- P. Atk. Modifiers
+(29171, 4411, 11), -- M. Atk. Modifiers
+(29171, 4412, 11), -- P. Def. Modifiers
+(29171, 4413, 11), -- M. Def. Modifiers
+(29171, 4414, 2), -- Armor Type
+(29171, 4415, 3), -- Weapon Type
+(29171, 4416, 2), -- Races
 -- 
-(29172, 4408, 1), -- HP Increase (1x)
-(29172, 4409, 1), -- MP Increase (1x)
-(29172, 4410, 11), -- Average P. Atk.
-(29172, 4411, 11), -- Average M. Atk.
-(29172, 4412, 11), -- Average P. Def.
-(29172, 4413, 11), -- Average M. Def.
-(29172, 4414, 2), -- Standard Type
-(29172, 4415, 3), -- One-handed Sword
-(29172, 4416, 2), -- Magic Creatures
+(29172, 4408, 1), -- HP Modifiers
+(29172, 4409, 1), -- MP Modifiers
+(29172, 4410, 11), -- P. Atk. Modifiers
+(29172, 4411, 11), -- M. Atk. Modifiers
+(29172, 4412, 11), -- P. Def. Modifiers
+(29172, 4413, 11), -- M. Def. Modifiers
+(29172, 4414, 2), -- Armor Type
+(29172, 4415, 3), -- Weapon Type
+(29172, 4416, 2), -- Races
 -- Tiat Priest
-(29173, 4408, 1), -- HP Increase (1x)
-(29173, 4409, 1), -- MP Increase (1x)
-(29173, 4410, 11), -- Average P. Atk.
-(29173, 4411, 11), -- Average M. Atk.
-(29173, 4412, 11), -- Average P. Def.
-(29173, 4413, 11), -- Average M. Def.
-(29173, 4414, 2), -- Standard Type
-(29173, 4415, 3), -- One-handed Sword
-(29173, 4416, 14), -- Humans
+(29173, 4408, 1), -- HP Modifiers
+(29173, 4409, 1), -- MP Modifiers
+(29173, 4410, 11), -- P. Atk. Modifiers
+(29173, 4411, 11), -- M. Atk. Modifiers
+(29173, 4412, 11), -- P. Def. Modifiers
+(29173, 4413, 11), -- M. Def. Modifiers
+(29173, 4414, 2), -- Armor Type
+(29173, 4415, 3), -- Weapon Type
+(29173, 4416, 14), -- Races
 -- Tiat Priest
-(29174, 4408, 1), -- HP Increase (1x)
-(29174, 4409, 1), -- MP Increase (1x)
-(29174, 4410, 11), -- Average P. Atk.
-(29174, 4411, 11), -- Average M. Atk.
-(29174, 4412, 11), -- Average P. Def.
-(29174, 4413, 11), -- Average M. Def.
-(29174, 4414, 2), -- Standard Type
-(29174, 4415, 3), -- One-handed Sword
-(29174, 4416, 14), -- Humans
+(29174, 4408, 1), -- HP Modifiers
+(29174, 4409, 1), -- MP Modifiers
+(29174, 4410, 11), -- P. Atk. Modifiers
+(29174, 4411, 11), -- M. Atk. Modifiers
+(29174, 4412, 11), -- P. Def. Modifiers
+(29174, 4413, 11), -- M. Def. Modifiers
+(29174, 4414, 2), -- Armor Type
+(29174, 4415, 3), -- Weapon Type
+(29174, 4416, 14), -- Races
 -- Tiat
 (29175, 4045, 1), -- Resist Full Magic Attack
-(29175, 4071, 3), -- Resist Bow/Crossbow Weapons
-(29175, 4116, 5), -- Resist M. Atk.
-(29175, 4408, 1), -- HP Increase (1x)
-(29175, 4409, 1), -- MP Increase (1x)
-(29175, 4410, 11), -- Average P. Atk.
-(29175, 4411, 11), -- Average M. Atk.
-(29175, 4412, 11), -- Average P. Def.
-(29175, 4413, 11), -- Average M. Def.
-(29175, 4414, 2), -- Standard Type
-(29175, 4415, 3), -- One-handed Sword
-(29175, 4416, 10), -- Dragons
+(29175, 4071, 3), -- Resist Archery
+(29175, 4116, 5), -- Resist M.Atk
+(29175, 4408, 1), -- HP Modifiers
+(29175, 4409, 1), -- MP Modifiers
+(29175, 4410, 11), -- P. Atk. Modifiers
+(29175, 4411, 11), -- M. Atk. Modifiers
+(29175, 4412, 11), -- P. Def. Modifiers
+(29175, 4413, 11), -- M. Def. Modifiers
+(29175, 4414, 2), -- Armor Type
+(29175, 4415, 3), -- Weapon Type
+(29175, 4416, 10), -- Races
 (29175, 5462, 1), -- Fire Attacks
 (29175, 6127, 1), -- Anti-limit
 -- Zaken
 (29176, 4045, 1), -- Resist Full Magic Attack
-(29176, 4408, 1), -- HP Increase (1x)
-(29176, 4409, 1), -- MP Increase (1x)
-(29176, 4410, 11), -- Average P. Atk.
-(29176, 4411, 11), -- Average M. Atk.
-(29176, 4412, 11), -- Average P. Def.
-(29176, 4413, 11), -- Average M. Def.
-(29176, 4414, 2), -- Standard Type
-(29176, 4415, 3), -- One-handed Sword
-(29176, 4416, 1), -- Undead
+(29176, 4408, 1), -- HP Modifiers
+(29176, 4409, 1), -- MP Modifiers
+(29176, 4410, 11), -- P. Atk. Modifiers
+(29176, 4411, 11), -- M. Atk. Modifiers
+(29176, 4412, 11), -- P. Def. Modifiers
+(29176, 4413, 11), -- M. Def. Modifiers
+(29176, 4414, 2), -- Armor Type
+(29176, 4415, 3), -- Weapon Type
+(29176, 4416, 1), -- Races
 (29176, 4444, 1), -- Higher Resist Bow/Crossbow Weapons
 (29176, 5601, 7), -- Short-Range Physical Attack Resistance
 -- Freya
 (29177, 4045, 1), -- Resist Full Magic Attack
-(29177, 4408, 1), -- HP Increase (1x)
-(29177, 4409, 1), -- MP Increase (1x)
-(29177, 4410, 11), -- Average P. Atk.
-(29177, 4411, 11), -- Average M. Atk.
-(29177, 4412, 11), -- Average P. Def.
-(29177, 4413, 11), -- Average M. Def.
-(29177, 4414, 2), -- Standard Type
-(29177, 4415, 3), -- One-handed Sword
-(29177, 4416, 6), -- Humanoids
+(29177, 4408, 1), -- HP Modifiers
+(29177, 4409, 1), -- MP Modifiers
+(29177, 4410, 11), -- P. Atk. Modifiers
+(29177, 4411, 11), -- M. Atk. Modifiers
+(29177, 4412, 11), -- P. Def. Modifiers
+(29177, 4413, 11), -- M. Def. Modifiers
+(29177, 4414, 2), -- Armor Type
+(29177, 4415, 3), -- Weapon Type
+(29177, 4416, 6), -- Races
 (29177, 5463, 1), -- Water Attacks
 (29177, 6644, 1), -- Ice Queen Freya
 -- Freya
 (29178, 4045, 1), -- Resist Full Magic Attack
-(29178, 4408, 1), -- HP Increase (1x)
-(29178, 4409, 1), -- MP Increase (1x)
-(29178, 4410, 11), -- Average P. Atk.
-(29178, 4411, 11), -- Average M. Atk.
-(29178, 4412, 11), -- Average P. Def.
-(29178, 4413, 11), -- Average M. Def.
-(29178, 4414, 2), -- Standard Type
-(29178, 4415, 3), -- One-handed Sword
-(29178, 4416, 6), -- Humanoids
+(29178, 4408, 1), -- HP Modifiers
+(29178, 4409, 1), -- MP Modifiers
+(29178, 4410, 11), -- P. Atk. Modifiers
+(29178, 4411, 11), -- M. Atk. Modifiers
+(29178, 4412, 11), -- P. Def. Modifiers
+(29178, 4413, 11), -- M. Def. Modifiers
+(29178, 4414, 2), -- Armor Type
+(29178, 4415, 3), -- Weapon Type
+(29178, 4416, 6), -- Races
 (29178, 5463, 1), -- Water Attacks
 (29178, 6644, 1), -- Ice Queen Freya
 -- Freya
 (29179, 4045, 1), -- Resist Full Magic Attack
-(29179, 4408, 1), -- HP Increase (1x)
-(29179, 4409, 1), -- MP Increase (1x)
-(29179, 4410, 11), -- Average P. Atk.
-(29179, 4411, 11), -- Average M. Atk.
-(29179, 4412, 11), -- Average P. Def.
-(29179, 4413, 11), -- Average M. Def.
-(29179, 4414, 2), -- Standard Type
-(29179, 4415, 3), -- One-handed Sword
-(29179, 4416, 6), -- Humanoids
+(29179, 4408, 1), -- HP Modifiers
+(29179, 4409, 1), -- MP Modifiers
+(29179, 4410, 11), -- P. Atk. Modifiers
+(29179, 4411, 11), -- M. Atk. Modifiers
+(29179, 4412, 11), -- P. Def. Modifiers
+(29179, 4413, 11), -- M. Def. Modifiers
+(29179, 4414, 2), -- Armor Type
+(29179, 4415, 3), -- Weapon Type
+(29179, 4416, 6), -- Races
 (29179, 5463, 1), -- Water Attacks
 (29179, 6644, 1), -- Ice Queen Freya
 -- Freya
 (29180, 4045, 1), -- Resist Full Magic Attack
-(29180, 4408, 1), -- HP Increase (1x)
-(29180, 4409, 1), -- MP Increase (1x)
-(29180, 4410, 11), -- Average P. Atk.
-(29180, 4411, 11), -- Average M. Atk.
-(29180, 4412, 11), -- Average P. Def.
-(29180, 4413, 11), -- Average M. Def.
-(29180, 4414, 2), -- Standard Type
-(29180, 4415, 3), -- One-handed Sword
-(29180, 4416, 6), -- Humanoids
+(29180, 4408, 1), -- HP Modifiers
+(29180, 4409, 1), -- MP Modifiers
+(29180, 4410, 11), -- P. Atk. Modifiers
+(29180, 4411, 11), -- M. Atk. Modifiers
+(29180, 4412, 11), -- P. Def. Modifiers
+(29180, 4413, 11), -- M. Def. Modifiers
+(29180, 4414, 2), -- Armor Type
+(29180, 4415, 3), -- Weapon Type
+(29180, 4416, 6), -- Races
 (29180, 5463, 1), -- Water Attacks
 (29180, 6644, 1), -- Ice Queen Freya
 -- Zaken
 (29181, 4045, 1), -- Resist Full Magic Attack
-(29181, 4408, 1), -- HP Increase (1x)
-(29181, 4409, 1), -- MP Increase (1x)
-(29181, 4410, 11), -- Average P. Atk.
-(29181, 4411, 11), -- Average M. Atk.
-(29181, 4412, 11), -- Average P. Def.
-(29181, 4413, 11), -- Average M. Def.
-(29181, 4414, 2), -- Standard Type
-(29181, 4415, 3), -- One-handed Sword
-(29181, 4416, 1), -- Undead
+(29181, 4408, 1), -- HP Modifiers
+(29181, 4409, 1), -- MP Modifiers
+(29181, 4410, 11), -- P. Atk. Modifiers
+(29181, 4411, 11), -- M. Atk. Modifiers
+(29181, 4412, 11), -- P. Def. Modifiers
+(29181, 4413, 11), -- M. Def. Modifiers
+(29181, 4414, 2), -- Armor Type
+(29181, 4415, 3), -- Weapon Type
+(29181, 4416, 1), -- Races
 (29181, 5467, 1), -- Dark Attacks
 -- Doll Blader
 (29182, 4045, 1), -- Resist Full Magic Attack
-(29182, 4071, 5), -- Resist Bow/Crossbow Weapons
-(29182, 4085, 1), -- Critical Damage
+(29182, 4071, 5), -- Resist Archery
+(29182, 4085, 1), -- Critical Power
 (29182, 4086, 1), -- Critical Chance
-(29182, 4408, 1), -- HP Increase (1x)
-(29182, 4409, 1), -- MP Increase (1x)
-(29182, 4410, 11), -- Average P. Atk.
-(29182, 4411, 11), -- Average M. Atk.
-(29182, 4412, 11), -- Average P. Def.
-(29182, 4413, 11), -- Average M. Def.
-(29182, 4414, 2), -- Standard Type
-(29182, 4415, 19), -- Dual-Sword Weapons
-(29182, 4416, 9), -- Demons
+(29182, 4408, 1), -- HP Modifiers
+(29182, 4409, 1), -- MP Modifiers
+(29182, 4410, 11), -- P. Atk. Modifiers
+(29182, 4411, 11), -- M. Atk. Modifiers
+(29182, 4412, 11), -- P. Def. Modifiers
+(29182, 4413, 11), -- M. Def. Modifiers
+(29182, 4414, 2), -- Armor Type
+(29182, 4415, 19), -- Weapon Type
+(29182, 4416, 9), -- Races
 (29182, 5467, 1), -- Dark Attacks
 -- Veil Master
 (29183, 4045, 1), -- Resist Full Magic Attack
-(29183, 4071, 5), -- Resist Bow/Crossbow Weapons
-(29183, 4085, 1), -- Critical Damage
+(29183, 4071, 5), -- Resist Archery
+(29183, 4085, 1), -- Critical Power
 (29183, 4086, 1), -- Critical Chance
-(29183, 4408, 1), -- HP Increase (1x)
-(29183, 4409, 1), -- MP Increase (1x)
-(29183, 4410, 11), -- Average P. Atk.
-(29183, 4411, 11), -- Average M. Atk.
-(29183, 4412, 11), -- Average P. Def.
-(29183, 4413, 11), -- Average M. Def.
-(29183, 4415, 1), -- Bare Hands
-(29183, 4416, 9), -- Demons
+(29183, 4408, 1), -- HP Modifiers
+(29183, 4409, 1), -- MP Modifiers
+(29183, 4410, 11), -- P. Atk. Modifiers
+(29183, 4411, 11), -- M. Atk. Modifiers
+(29183, 4412, 11), -- P. Def. Modifiers
+(29183, 4413, 11), -- M. Def. Modifiers
+(29183, 4415, 1), -- Weapon Type
+(29183, 4416, 9), -- Races
 (29183, 5467, 1), -- Dark Attacks
 -- Pirate Zombie Captain
 (29184, 4045, 1), -- Resist Full Magic Attack
-(29184, 4408, 1), -- HP Increase (1x)
-(29184, 4409, 1), -- MP Increase (1x)
-(29184, 4410, 11), -- Average P. Atk.
-(29184, 4411, 11), -- Average M. Atk.
-(29184, 4412, 11), -- Average P. Def.
-(29184, 4413, 11), -- Average M. Def.
-(29184, 4414, 2), -- Standard Type
-(29184, 4415, 3), -- One-handed Sword
-(29184, 4416, 10), -- Dragons
+(29184, 4408, 1), -- HP Modifiers
+(29184, 4409, 1), -- MP Modifiers
+(29184, 4410, 11), -- P. Atk. Modifiers
+(29184, 4411, 11), -- M. Atk. Modifiers
+(29184, 4412, 11), -- P. Def. Modifiers
+(29184, 4413, 11), -- M. Def. Modifiers
+(29184, 4414, 2), -- Armor Type
+(29184, 4415, 3), -- Weapon Type
+(29184, 4416, 10), -- Races
 (29184, 5467, 1), -- Dark Attacks
 (29184, 5708, 2), -- Water Cannon
 (29184, 5709, 2), -- Whirlpool
 (29184, 5710, 2), -- Triple Sword
 -- Pirate Zombie
 (29185, 4045, 1), -- Resist Full Magic Attack
-(29185, 4408, 1), -- HP Increase (1x)
-(29185, 4409, 1), -- MP Increase (1x)
-(29185, 4410, 11), -- Average P. Atk.
-(29185, 4411, 11), -- Average M. Atk.
-(29185, 4412, 11), -- Average P. Def.
-(29185, 4413, 11), -- Average M. Def.
-(29185, 4414, 2), -- Standard Type
-(29185, 4415, 3), -- One-handed Sword
-(29185, 4416, 1), -- Undead
+(29185, 4408, 1), -- HP Modifiers
+(29185, 4409, 1), -- MP Modifiers
+(29185, 4410, 11), -- P. Atk. Modifiers
+(29185, 4411, 11), -- M. Atk. Modifiers
+(29185, 4412, 11), -- P. Def. Modifiers
+(29185, 4413, 11), -- M. Def. Modifiers
+(29185, 4414, 2), -- Armor Type
+(29185, 4415, 3), -- Weapon Type
+(29185, 4416, 1), -- Races
 (29185, 5467, 1), -- Dark Attacks
 -- Baylor
 (29186, 4045, 1), -- Resist Full Magic Attack
-(29186, 4408, 1), -- HP Increase (1x)
-(29186, 4409, 1), -- MP Increase (1x)
-(29186, 4410, 11), -- Average P. Atk.
-(29186, 4411, 11), -- Average M. Atk.
-(29186, 4412, 11), -- Average P. Def.
-(29186, 4413, 11), -- Average M. Def.
-(29186, 4414, 2), -- Standard Type
-(29186, 4415, 1), -- Bare Hands
-(29186, 4416, 9), -- Demons
+(29186, 4408, 1), -- HP Modifiers
+(29186, 4409, 1), -- MP Modifiers
+(29186, 4410, 11), -- P. Atk. Modifiers
+(29186, 4411, 11), -- M. Atk. Modifiers
+(29186, 4412, 11), -- P. Def. Modifiers
+(29186, 4413, 11), -- M. Def. Modifiers
+(29186, 4414, 2), -- Armor Type
+(29186, 4415, 1), -- Weapon Type
+(29186, 4416, 9), -- Races
 (29186, 5221, 1), -- Balor - Physical Close Range Weak Point
 (29186, 5222, 1), -- Balor - Physical Long Range Weak Point
 (29186, 5223, 1), -- Balor - Magic Weak Point
@@ -76583,46364 +76937,46364 @@ INSERT INTO `npcskills` VALUES
 (29186, 5467, 1), -- Dark Attacks
 (29186, 5479, 1), -- Boss Petrification Resistance
 -- Crystal Prison Guard
-(29187, 4032, 9), -- Power Strike
+(29187, 4032, 9), -- NPC Strike
 (29187, 4045, 1), -- Resist Full Magic Attack
-(29187, 4408, 1), -- HP Increase (1x)
-(29187, 4409, 1), -- MP Increase (1x)
-(29187, 4410, 11), -- Average P. Atk.
-(29187, 4411, 11), -- Average M. Atk.
-(29187, 4412, 11), -- Average P. Def.
-(29187, 4413, 11), -- Average M. Def.
-(29187, 4414, 2), -- Standard Type
-(29187, 4415, 1), -- Bare Hands
-(29187, 4416, 9), -- Demons
-(29187, 5043, 9), -- Super Sonic Blaster
-(29187, 5360, 9), -- Whirlwind
+(29187, 4408, 1), -- HP Modifiers
+(29187, 4409, 1), -- MP Modifiers
+(29187, 4410, 11), -- P. Atk. Modifiers
+(29187, 4411, 11), -- M. Atk. Modifiers
+(29187, 4412, 11), -- P. Def. Modifiers
+(29187, 4413, 11), -- M. Def. Modifiers
+(29187, 4414, 2), -- Armor Type
+(29187, 4415, 1), -- Weapon Type
+(29187, 4416, 9), -- Races
+(29187, 5043, 9), -- NPC Super Sonic Blaster
+(29187, 5360, 9), -- NPC(party) - Physical Range Close Range Attack - Dark
 (29187, 5465, 1), -- Earth Attacks
 (29187, 5479, 1), -- Boss Petrification Resistance
 -- Crystalline Golem
-(29188, 4408, 1), -- HP Increase (1x)
-(29188, 4409, 1), -- MP Increase (1x)
-(29188, 4410, 11), -- Average P. Atk.
-(29188, 4411, 11), -- Average M. Atk.
-(29188, 4412, 11), -- Average P. Def.
-(29188, 4413, 11), -- Average M. Def.
-(29188, 4414, 2), -- Standard Type
-(29188, 4415, 3), -- One-handed Sword
-(29188, 4416, 2), -- Magic Creatures
+(29188, 4408, 1), -- HP Modifiers
+(29188, 4409, 1), -- MP Modifiers
+(29188, 4410, 11), -- P. Atk. Modifiers
+(29188, 4411, 11), -- M. Atk. Modifiers
+(29188, 4412, 11), -- P. Def. Modifiers
+(29188, 4413, 11), -- M. Def. Modifiers
+(29188, 4414, 2), -- Armor Type
+(29188, 4415, 3), -- Weapon Type
+(29188, 4416, 2), -- Races
 (29188, 5465, 1), -- Earth Attacks
 -- Crystalline Golem
-(29189, 4408, 1), -- HP Increase (1x)
-(29189, 4409, 1), -- MP Increase (1x)
-(29189, 4410, 11), -- Average P. Atk.
-(29189, 4411, 11), -- Average M. Atk.
-(29189, 4412, 11), -- Average P. Def.
-(29189, 4413, 11), -- Average M. Def.
-(29189, 4414, 2), -- Standard Type
-(29189, 4415, 3), -- One-handed Sword
-(29189, 4416, 2), -- Magic Creatures
+(29189, 4408, 1), -- HP Modifiers
+(29189, 4409, 1), -- MP Modifiers
+(29189, 4410, 11), -- P. Atk. Modifiers
+(29189, 4411, 11), -- M. Atk. Modifiers
+(29189, 4412, 11), -- P. Def. Modifiers
+(29189, 4413, 11), -- M. Def. Modifiers
+(29189, 4414, 2), -- Armor Type
+(29189, 4415, 3), -- Weapon Type
+(29189, 4416, 2), -- Races
 (29189, 5465, 1), -- Earth Attacks
 -- Tarask Dragon
 (29190, 4045, 1), -- Resist Full Magic Attack
-(29190, 4408, 1), -- HP Increase (1x)
-(29190, 4409, 1), -- MP Increase (1x)
-(29190, 4410, 11), -- Average P. Atk.
-(29190, 4411, 11), -- Average M. Atk.
-(29190, 4412, 11), -- Average P. Def.
-(29190, 4413, 11), -- Average M. Def.
-(29190, 4414, 2), -- Standard Type
-(29190, 4415, 3), -- One-handed Sword
-(29190, 4416, 10), -- Dragons
-(29190, 5095, 1), -- Antharas Strike
-(29190, 5096, 1), -- Antharas Power Shot
+(29190, 4408, 1), -- HP Modifiers
+(29190, 4409, 1), -- MP Modifiers
+(29190, 4410, 11), -- P. Atk. Modifiers
+(29190, 4411, 11), -- M. Atk. Modifiers
+(29190, 4412, 11), -- P. Def. Modifiers
+(29190, 4413, 11), -- M. Def. Modifiers
+(29190, 4414, 2), -- Armor Type
+(29190, 4415, 3), -- Weapon Type
+(29190, 4416, 10), -- Races
+(29190, 5095, 1), -- Antharas Subordinate Melee Attack
+(29190, 5096, 1), -- Antharas Subordinate Remote Attack
 (29190, 5465, 1), -- Earth Attacks
 (29190, 6655, 1), -- Tarsque Carapace
 -- Lector
 (30001, 4045, 1), -- Resist Full Magic Attack
-(30001, 4408, 1), -- HP Increase (1x)
-(30001, 4409, 1), -- MP Increase (1x)
-(30001, 4410, 11), -- Average P. Atk.
-(30001, 4411, 11), -- Average M. Atk.
-(30001, 4412, 11), -- Average P. Def.
-(30001, 4413, 11), -- Average M. Def.
-(30001, 4414, 2), -- Standard Type
-(30001, 4415, 3), -- One-handed Sword
-(30001, 4416, 14), -- Humans
+(30001, 4408, 1), -- HP Modifiers
+(30001, 4409, 1), -- MP Modifiers
+(30001, 4410, 11), -- P. Atk. Modifiers
+(30001, 4411, 11), -- M. Atk. Modifiers
+(30001, 4412, 11), -- P. Def. Modifiers
+(30001, 4413, 11), -- M. Def. Modifiers
+(30001, 4414, 2), -- Armor Type
+(30001, 4415, 3), -- Weapon Type
+(30001, 4416, 14), -- Races
 -- Jackson
 (30002, 4045, 1), -- Resist Full Magic Attack
-(30002, 4408, 1), -- HP Increase (1x)
-(30002, 4409, 1), -- MP Increase (1x)
-(30002, 4410, 11), -- Average P. Atk.
-(30002, 4411, 11), -- Average M. Atk.
-(30002, 4412, 11), -- Average P. Def.
-(30002, 4413, 11), -- Average M. Def.
-(30002, 4414, 2), -- Standard Type
-(30002, 4415, 3), -- One-handed Sword
-(30002, 4416, 14), -- Humans
+(30002, 4408, 1), -- HP Modifiers
+(30002, 4409, 1), -- MP Modifiers
+(30002, 4410, 11), -- P. Atk. Modifiers
+(30002, 4411, 11), -- M. Atk. Modifiers
+(30002, 4412, 11), -- P. Def. Modifiers
+(30002, 4413, 11), -- M. Def. Modifiers
+(30002, 4414, 2), -- Armor Type
+(30002, 4415, 3), -- Weapon Type
+(30002, 4416, 14), -- Races
 -- Silvia
 (30003, 4045, 1), -- Resist Full Magic Attack
-(30003, 4408, 1), -- HP Increase (1x)
-(30003, 4409, 1), -- MP Increase (1x)
-(30003, 4410, 11), -- Average P. Atk.
-(30003, 4411, 11), -- Average M. Atk.
-(30003, 4412, 11), -- Average P. Def.
-(30003, 4413, 11), -- Average M. Def.
-(30003, 4414, 2), -- Standard Type
-(30003, 4415, 3), -- One-handed Sword
-(30003, 4416, 14), -- Humans
+(30003, 4408, 1), -- HP Modifiers
+(30003, 4409, 1), -- MP Modifiers
+(30003, 4410, 11), -- P. Atk. Modifiers
+(30003, 4411, 11), -- M. Atk. Modifiers
+(30003, 4412, 11), -- P. Def. Modifiers
+(30003, 4413, 11), -- M. Def. Modifiers
+(30003, 4414, 2), -- Armor Type
+(30003, 4415, 3), -- Weapon Type
+(30003, 4416, 14), -- Races
 -- Katerina
 (30004, 4045, 1), -- Resist Full Magic Attack
-(30004, 4408, 1), -- HP Increase (1x)
-(30004, 4409, 1), -- MP Increase (1x)
-(30004, 4410, 11), -- Average P. Atk.
-(30004, 4411, 11), -- Average M. Atk.
-(30004, 4412, 11), -- Average P. Def.
-(30004, 4413, 11), -- Average M. Def.
-(30004, 4414, 2), -- Standard Type
-(30004, 4415, 3), -- One-handed Sword
-(30004, 4416, 14), -- Humans
+(30004, 4408, 1), -- HP Modifiers
+(30004, 4409, 1), -- MP Modifiers
+(30004, 4410, 11), -- P. Atk. Modifiers
+(30004, 4411, 11), -- M. Atk. Modifiers
+(30004, 4412, 11), -- P. Def. Modifiers
+(30004, 4413, 11), -- M. Def. Modifiers
+(30004, 4414, 2), -- Armor Type
+(30004, 4415, 3), -- Weapon Type
+(30004, 4416, 14), -- Races
 -- Wilford
 (30005, 4045, 1), -- Resist Full Magic Attack
-(30005, 4408, 1), -- HP Increase (1x)
-(30005, 4409, 1), -- MP Increase (1x)
-(30005, 4410, 11), -- Average P. Atk.
-(30005, 4411, 11), -- Average M. Atk.
-(30005, 4412, 11), -- Average P. Def.
-(30005, 4413, 11), -- Average M. Def.
-(30005, 4414, 2), -- Standard Type
-(30005, 4415, 3), -- One-handed Sword
-(30005, 4416, 18), -- Dwarves
+(30005, 4408, 1), -- HP Modifiers
+(30005, 4409, 1), -- MP Modifiers
+(30005, 4410, 11), -- P. Atk. Modifiers
+(30005, 4411, 11), -- M. Atk. Modifiers
+(30005, 4412, 11), -- P. Def. Modifiers
+(30005, 4413, 11), -- M. Def. Modifiers
+(30005, 4414, 2), -- Armor Type
+(30005, 4415, 3), -- Weapon Type
+(30005, 4416, 18), -- Races
 -- Milia
 (30006, 4045, 1), -- Resist Full Magic Attack
-(30006, 4408, 1), -- HP Increase (1x)
-(30006, 4409, 1), -- MP Increase (1x)
-(30006, 4410, 11), -- Average P. Atk.
-(30006, 4411, 11), -- Average M. Atk.
-(30006, 4412, 11), -- Average P. Def.
-(30006, 4413, 11), -- Average M. Def.
-(30006, 4414, 2), -- Standard Type
-(30006, 4415, 3), -- One-handed Sword
-(30006, 4416, 14), -- Humans
+(30006, 4408, 1), -- HP Modifiers
+(30006, 4409, 1), -- MP Modifiers
+(30006, 4410, 11), -- P. Atk. Modifiers
+(30006, 4411, 11), -- M. Atk. Modifiers
+(30006, 4412, 11), -- P. Def. Modifiers
+(30006, 4413, 11), -- M. Def. Modifiers
+(30006, 4414, 2), -- Armor Type
+(30006, 4415, 3), -- Weapon Type
+(30006, 4416, 14), -- Races
 -- Roien
 (30008, 4045, 1), -- Resist Full Magic Attack
-(30008, 4408, 1), -- HP Increase (1x)
-(30008, 4409, 1), -- MP Increase (1x)
-(30008, 4410, 11), -- Average P. Atk.
-(30008, 4411, 11), -- Average M. Atk.
-(30008, 4412, 11), -- Average P. Def.
-(30008, 4413, 11), -- Average M. Def.
-(30008, 4414, 2), -- Standard Type
-(30008, 4415, 3), -- One-handed Sword
-(30008, 4416, 14), -- Humans
+(30008, 4408, 1), -- HP Modifiers
+(30008, 4409, 1), -- MP Modifiers
+(30008, 4410, 11), -- P. Atk. Modifiers
+(30008, 4411, 11), -- M. Atk. Modifiers
+(30008, 4412, 11), -- P. Def. Modifiers
+(30008, 4413, 11), -- M. Def. Modifiers
+(30008, 4414, 2), -- Armor Type
+(30008, 4415, 3), -- Weapon Type
+(30008, 4416, 14), -- Races
 -- Newbie Helper
 (30009, 4045, 1), -- Resist Full Magic Attack
-(30009, 4408, 1), -- HP Increase (1x)
-(30009, 4409, 1), -- MP Increase (1x)
-(30009, 4410, 11), -- Average P. Atk.
-(30009, 4411, 11), -- Average M. Atk.
-(30009, 4412, 11), -- Average P. Def.
-(30009, 4413, 11), -- Average M. Def.
-(30009, 4414, 2), -- Standard Type
-(30009, 4415, 3), -- One-handed Sword
-(30009, 4416, 14), -- Humans
+(30009, 4408, 1), -- HP Modifiers
+(30009, 4409, 1), -- MP Modifiers
+(30009, 4410, 11), -- P. Atk. Modifiers
+(30009, 4411, 11), -- M. Atk. Modifiers
+(30009, 4412, 11), -- P. Def. Modifiers
+(30009, 4413, 11), -- M. Def. Modifiers
+(30009, 4414, 2), -- Armor Type
+(30009, 4415, 3), -- Weapon Type
+(30009, 4416, 14), -- Races
 -- Auron
 (30010, 4045, 1), -- Resist Full Magic Attack
-(30010, 4408, 1), -- HP Increase (1x)
-(30010, 4409, 1), -- MP Increase (1x)
-(30010, 4410, 11), -- Average P. Atk.
-(30010, 4411, 11), -- Average M. Atk.
-(30010, 4412, 11), -- Average P. Def.
-(30010, 4413, 11), -- Average M. Def.
-(30010, 4414, 2), -- Standard Type
-(30010, 4415, 3), -- One-handed Sword
-(30010, 4416, 14), -- Humans
+(30010, 4408, 1), -- HP Modifiers
+(30010, 4409, 1), -- MP Modifiers
+(30010, 4410, 11), -- P. Atk. Modifiers
+(30010, 4411, 11), -- M. Atk. Modifiers
+(30010, 4412, 11), -- P. Def. Modifiers
+(30010, 4413, 11), -- M. Def. Modifiers
+(30010, 4414, 2), -- Armor Type
+(30010, 4415, 3), -- Weapon Type
+(30010, 4416, 14), -- Races
 -- Celma
 (30014, 4045, 1), -- Resist Full Magic Attack
-(30014, 4408, 1), -- HP Increase (1x)
-(30014, 4409, 1), -- MP Increase (1x)
-(30014, 4410, 11), -- Average P. Atk.
-(30014, 4411, 11), -- Average M. Atk.
-(30014, 4412, 11), -- Average P. Def.
-(30014, 4413, 11), -- Average M. Def.
-(30014, 4414, 2), -- Standard Type
-(30014, 4415, 3), -- One-handed Sword
-(30014, 4416, 14), -- Humans
+(30014, 4408, 1), -- HP Modifiers
+(30014, 4409, 1), -- MP Modifiers
+(30014, 4410, 11), -- P. Atk. Modifiers
+(30014, 4411, 11), -- M. Atk. Modifiers
+(30014, 4412, 11), -- P. Def. Modifiers
+(30014, 4413, 11), -- M. Def. Modifiers
+(30014, 4414, 2), -- Armor Type
+(30014, 4415, 3), -- Weapon Type
+(30014, 4416, 14), -- Races
 -- Gallint
 (30017, 4045, 1), -- Resist Full Magic Attack
-(30017, 4408, 1), -- HP Increase (1x)
-(30017, 4409, 1), -- MP Increase (1x)
-(30017, 4410, 11), -- Average P. Atk.
-(30017, 4411, 11), -- Average M. Atk.
-(30017, 4412, 11), -- Average P. Def.
-(30017, 4413, 11), -- Average M. Def.
-(30017, 4414, 2), -- Standard Type
-(30017, 4415, 3), -- One-handed Sword
-(30017, 4416, 14), -- Humans
+(30017, 4408, 1), -- HP Modifiers
+(30017, 4409, 1), -- MP Modifiers
+(30017, 4410, 11), -- P. Atk. Modifiers
+(30017, 4411, 11), -- M. Atk. Modifiers
+(30017, 4412, 11), -- P. Def. Modifiers
+(30017, 4413, 11), -- M. Def. Modifiers
+(30017, 4414, 2), -- Armor Type
+(30017, 4415, 3), -- Weapon Type
+(30017, 4416, 14), -- Races
 -- Newbie Helper
 (30019, 4045, 1), -- Resist Full Magic Attack
-(30019, 4408, 1), -- HP Increase (1x)
-(30019, 4409, 1), -- MP Increase (1x)
-(30019, 4410, 11), -- Average P. Atk.
-(30019, 4411, 11), -- Average M. Atk.
-(30019, 4412, 11), -- Average P. Def.
-(30019, 4413, 11), -- Average M. Def.
-(30019, 4414, 2), -- Standard Type
-(30019, 4415, 3), -- One-handed Sword
-(30019, 4416, 14), -- Humans
+(30019, 4408, 1), -- HP Modifiers
+(30019, 4409, 1), -- MP Modifiers
+(30019, 4410, 11), -- P. Atk. Modifiers
+(30019, 4411, 11), -- M. Atk. Modifiers
+(30019, 4412, 11), -- P. Def. Modifiers
+(30019, 4413, 11), -- M. Def. Modifiers
+(30019, 4414, 2), -- Armor Type
+(30019, 4415, 3), -- Weapon Type
+(30019, 4416, 14), -- Races
 -- Zigaunt
 (30022, 4045, 1), -- Resist Full Magic Attack
-(30022, 4408, 1), -- HP Increase (1x)
-(30022, 4409, 1), -- MP Increase (1x)
-(30022, 4410, 11), -- Average P. Atk.
-(30022, 4411, 11), -- Average M. Atk.
-(30022, 4412, 11), -- Average P. Def.
-(30022, 4413, 11), -- Average M. Def.
-(30022, 4414, 2), -- Standard Type
-(30022, 4415, 3), -- One-handed Sword
-(30022, 4416, 14), -- Humans
+(30022, 4408, 1), -- HP Modifiers
+(30022, 4409, 1), -- MP Modifiers
+(30022, 4410, 11), -- P. Atk. Modifiers
+(30022, 4411, 11), -- M. Atk. Modifiers
+(30022, 4412, 11), -- P. Def. Modifiers
+(30022, 4413, 11), -- M. Def. Modifiers
+(30022, 4414, 2), -- Armor Type
+(30022, 4415, 3), -- Weapon Type
+(30022, 4416, 14), -- Races
 -- Bitz
 (30026, 4045, 1), -- Resist Full Magic Attack
-(30026, 4408, 1), -- HP Increase (1x)
-(30026, 4409, 1), -- MP Increase (1x)
-(30026, 4410, 11), -- Average P. Atk.
-(30026, 4411, 11), -- Average M. Atk.
-(30026, 4412, 11), -- Average P. Def.
-(30026, 4413, 11), -- Average M. Def.
-(30026, 4414, 2), -- Standard Type
-(30026, 4415, 3), -- One-handed Sword
-(30026, 4416, 14), -- Humans
+(30026, 4408, 1), -- HP Modifiers
+(30026, 4409, 1), -- MP Modifiers
+(30026, 4410, 11), -- P. Atk. Modifiers
+(30026, 4411, 11), -- M. Atk. Modifiers
+(30026, 4412, 11), -- P. Def. Modifiers
+(30026, 4413, 11), -- M. Def. Modifiers
+(30026, 4414, 2), -- Armor Type
+(30026, 4415, 3), -- Weapon Type
+(30026, 4416, 14), -- Races
 -- Gwinter
 (30027, 4045, 1), -- Resist Full Magic Attack
-(30027, 4408, 1), -- HP Increase (1x)
-(30027, 4409, 1), -- MP Increase (1x)
-(30027, 4410, 11), -- Average P. Atk.
-(30027, 4411, 11), -- Average M. Atk.
-(30027, 4412, 11), -- Average P. Def.
-(30027, 4413, 11), -- Average M. Def.
-(30027, 4414, 2), -- Standard Type
-(30027, 4415, 3), -- One-handed Sword
-(30027, 4416, 14), -- Humans
+(30027, 4408, 1), -- HP Modifiers
+(30027, 4409, 1), -- MP Modifiers
+(30027, 4410, 11), -- P. Atk. Modifiers
+(30027, 4411, 11), -- M. Atk. Modifiers
+(30027, 4412, 11), -- P. Def. Modifiers
+(30027, 4413, 11), -- M. Def. Modifiers
+(30027, 4414, 2), -- Armor Type
+(30027, 4415, 3), -- Weapon Type
+(30027, 4416, 14), -- Races
 -- Pintage
 (30028, 4045, 1), -- Resist Full Magic Attack
-(30028, 4408, 1), -- HP Increase (1x)
-(30028, 4409, 1), -- MP Increase (1x)
-(30028, 4410, 11), -- Average P. Atk.
-(30028, 4411, 11), -- Average M. Atk.
-(30028, 4412, 11), -- Average P. Def.
-(30028, 4413, 11), -- Average M. Def.
-(30028, 4414, 2), -- Standard Type
-(30028, 4415, 3), -- One-handed Sword
-(30028, 4416, 14), -- Humans
+(30028, 4408, 1), -- HP Modifiers
+(30028, 4409, 1), -- MP Modifiers
+(30028, 4410, 11), -- P. Atk. Modifiers
+(30028, 4411, 11), -- M. Atk. Modifiers
+(30028, 4412, 11), -- P. Def. Modifiers
+(30028, 4413, 11), -- M. Def. Modifiers
+(30028, 4414, 2), -- Armor Type
+(30028, 4415, 3), -- Weapon Type
+(30028, 4416, 14), -- Races
 -- Minia
 (30029, 4045, 1), -- Resist Full Magic Attack
-(30029, 4408, 1), -- HP Increase (1x)
-(30029, 4409, 1), -- MP Increase (1x)
-(30029, 4410, 11), -- Average P. Atk.
-(30029, 4411, 11), -- Average M. Atk.
-(30029, 4412, 11), -- Average P. Def.
-(30029, 4413, 11), -- Average M. Def.
-(30029, 4414, 2), -- Standard Type
-(30029, 4415, 3), -- One-handed Sword
-(30029, 4416, 14), -- Humans
+(30029, 4408, 1), -- HP Modifiers
+(30029, 4409, 1), -- MP Modifiers
+(30029, 4410, 11), -- P. Atk. Modifiers
+(30029, 4411, 11), -- M. Atk. Modifiers
+(30029, 4412, 11), -- P. Def. Modifiers
+(30029, 4413, 11), -- M. Def. Modifiers
+(30029, 4414, 2), -- Armor Type
+(30029, 4415, 3), -- Weapon Type
+(30029, 4416, 14), -- Races
 -- Vivyan
 (30030, 4045, 1), -- Resist Full Magic Attack
-(30030, 4408, 1), -- HP Increase (1x)
-(30030, 4409, 1), -- MP Increase (1x)
-(30030, 4410, 11), -- Average P. Atk.
-(30030, 4411, 11), -- Average M. Atk.
-(30030, 4412, 11), -- Average P. Def.
-(30030, 4413, 11), -- Average M. Def.
-(30030, 4414, 2), -- Standard Type
-(30030, 4415, 3), -- One-handed Sword
-(30030, 4416, 14), -- Humans
+(30030, 4408, 1), -- HP Modifiers
+(30030, 4409, 1), -- MP Modifiers
+(30030, 4410, 11), -- P. Atk. Modifiers
+(30030, 4411, 11), -- M. Atk. Modifiers
+(30030, 4412, 11), -- P. Def. Modifiers
+(30030, 4413, 11), -- M. Def. Modifiers
+(30030, 4414, 2), -- Armor Type
+(30030, 4415, 3), -- Weapon Type
+(30030, 4416, 14), -- Races
 -- Biotin
 (30031, 4045, 1), -- Resist Full Magic Attack
-(30031, 4408, 1), -- HP Increase (1x)
-(30031, 4409, 1), -- MP Increase (1x)
-(30031, 4410, 11), -- Average P. Atk.
-(30031, 4411, 11), -- Average M. Atk.
-(30031, 4412, 11), -- Average P. Def.
-(30031, 4413, 11), -- Average M. Def.
-(30031, 4414, 2), -- Standard Type
-(30031, 4415, 3), -- One-handed Sword
-(30031, 4416, 14), -- Humans
+(30031, 4408, 1), -- HP Modifiers
+(30031, 4409, 1), -- MP Modifiers
+(30031, 4410, 11), -- P. Atk. Modifiers
+(30031, 4411, 11), -- M. Atk. Modifiers
+(30031, 4412, 11), -- P. Def. Modifiers
+(30031, 4413, 11), -- M. Def. Modifiers
+(30031, 4414, 2), -- Armor Type
+(30031, 4415, 3), -- Weapon Type
+(30031, 4416, 14), -- Races
 -- Yohanes
 (30032, 4045, 1), -- Resist Full Magic Attack
-(30032, 4408, 1), -- HP Increase (1x)
-(30032, 4409, 1), -- MP Increase (1x)
-(30032, 4410, 11), -- Average P. Atk.
-(30032, 4411, 11), -- Average M. Atk.
-(30032, 4412, 11), -- Average P. Def.
-(30032, 4413, 11), -- Average M. Def.
-(30032, 4414, 2), -- Standard Type
-(30032, 4415, 3), -- One-handed Sword
-(30032, 4416, 14), -- Humans
+(30032, 4408, 1), -- HP Modifiers
+(30032, 4409, 1), -- MP Modifiers
+(30032, 4410, 11), -- P. Atk. Modifiers
+(30032, 4411, 11), -- M. Atk. Modifiers
+(30032, 4412, 11), -- P. Def. Modifiers
+(30032, 4413, 11), -- M. Def. Modifiers
+(30032, 4414, 2), -- Armor Type
+(30032, 4415, 3), -- Weapon Type
+(30032, 4416, 14), -- Races
 -- Baulro
 (30033, 4045, 1), -- Resist Full Magic Attack
-(30033, 4408, 1), -- HP Increase (1x)
-(30033, 4409, 1), -- MP Increase (1x)
-(30033, 4410, 11), -- Average P. Atk.
-(30033, 4411, 11), -- Average M. Atk.
-(30033, 4412, 11), -- Average P. Def.
-(30033, 4413, 11), -- Average M. Def.
-(30033, 4414, 2), -- Standard Type
-(30033, 4415, 3), -- One-handed Sword
-(30033, 4416, 14), -- Humans
+(30033, 4408, 1), -- HP Modifiers
+(30033, 4409, 1), -- MP Modifiers
+(30033, 4410, 11), -- P. Atk. Modifiers
+(30033, 4411, 11), -- M. Atk. Modifiers
+(30033, 4412, 11), -- P. Def. Modifiers
+(30033, 4413, 11), -- M. Def. Modifiers
+(30033, 4414, 2), -- Armor Type
+(30033, 4415, 3), -- Weapon Type
+(30033, 4416, 14), -- Races
 -- Iris
 (30034, 4045, 1), -- Resist Full Magic Attack
-(30034, 4408, 1), -- HP Increase (1x)
-(30034, 4409, 1), -- MP Increase (1x)
-(30034, 4410, 11), -- Average P. Atk.
-(30034, 4411, 11), -- Average M. Atk.
-(30034, 4412, 11), -- Average P. Def.
-(30034, 4413, 11), -- Average M. Def.
-(30034, 4414, 2), -- Standard Type
-(30034, 4415, 3), -- One-handed Sword
-(30034, 4416, 14), -- Humans
+(30034, 4408, 1), -- HP Modifiers
+(30034, 4409, 1), -- MP Modifiers
+(30034, 4410, 11), -- P. Atk. Modifiers
+(30034, 4411, 11), -- M. Atk. Modifiers
+(30034, 4412, 11), -- P. Def. Modifiers
+(30034, 4413, 11), -- M. Def. Modifiers
+(30034, 4414, 2), -- Armor Type
+(30034, 4415, 3), -- Weapon Type
+(30034, 4416, 14), -- Races
 -- Harrys
 (30035, 4045, 1), -- Resist Full Magic Attack
-(30035, 4408, 1), -- HP Increase (1x)
-(30035, 4409, 1), -- MP Increase (1x)
-(30035, 4410, 11), -- Average P. Atk.
-(30035, 4411, 11), -- Average M. Atk.
-(30035, 4412, 11), -- Average P. Def.
-(30035, 4413, 11), -- Average M. Def.
-(30035, 4414, 2), -- Standard Type
-(30035, 4415, 3), -- One-handed Sword
-(30035, 4416, 14), -- Humans
+(30035, 4408, 1), -- HP Modifiers
+(30035, 4409, 1), -- MP Modifiers
+(30035, 4410, 11), -- P. Atk. Modifiers
+(30035, 4411, 11), -- M. Atk. Modifiers
+(30035, 4412, 11), -- P. Def. Modifiers
+(30035, 4413, 11), -- M. Def. Modifiers
+(30035, 4414, 2), -- Armor Type
+(30035, 4415, 3), -- Weapon Type
+(30035, 4416, 14), -- Races
 -- Petron
 (30036, 4045, 1), -- Resist Full Magic Attack
-(30036, 4408, 1), -- HP Increase (1x)
-(30036, 4409, 1), -- MP Increase (1x)
-(30036, 4410, 11), -- Average P. Atk.
-(30036, 4411, 11), -- Average M. Atk.
-(30036, 4412, 11), -- Average P. Def.
-(30036, 4413, 11), -- Average M. Def.
-(30036, 4414, 2), -- Standard Type
-(30036, 4415, 3), -- One-handed Sword
-(30036, 4416, 14), -- Humans
+(30036, 4408, 1), -- HP Modifiers
+(30036, 4409, 1), -- MP Modifiers
+(30036, 4410, 11), -- P. Atk. Modifiers
+(30036, 4411, 11), -- M. Atk. Modifiers
+(30036, 4412, 11), -- P. Def. Modifiers
+(30036, 4413, 11), -- M. Def. Modifiers
+(30036, 4414, 2), -- Armor Type
+(30036, 4415, 3), -- Weapon Type
+(30036, 4416, 14), -- Races
 -- Levian
 (30037, 4045, 1), -- Resist Full Magic Attack
-(30037, 4408, 1), -- HP Increase (1x)
-(30037, 4409, 1), -- MP Increase (1x)
-(30037, 4410, 11), -- Average P. Atk.
-(30037, 4411, 11), -- Average M. Atk.
-(30037, 4412, 11), -- Average P. Def.
-(30037, 4413, 11), -- Average M. Def.
-(30037, 4414, 2), -- Standard Type
-(30037, 4415, 3), -- One-handed Sword
-(30037, 4416, 14), -- Humans
+(30037, 4408, 1), -- HP Modifiers
+(30037, 4409, 1), -- MP Modifiers
+(30037, 4410, 11), -- P. Atk. Modifiers
+(30037, 4411, 11), -- M. Atk. Modifiers
+(30037, 4412, 11), -- P. Def. Modifiers
+(30037, 4413, 11), -- M. Def. Modifiers
+(30037, 4414, 2), -- Armor Type
+(30037, 4415, 3), -- Weapon Type
+(30037, 4416, 14), -- Races
 -- Gilbert
 (30039, 4045, 1), -- Resist Full Magic Attack
-(30039, 4408, 1), -- HP Increase (1x)
-(30039, 4409, 1), -- MP Increase (1x)
-(30039, 4410, 16), -- Very Strong P. Atk.
-(30039, 4411, 16), -- Very Strong M. Atk.
-(30039, 4412, 16), -- Very Strong P. Def.
-(30039, 4413, 16), -- Very Strong M. Def.
-(30039, 4414, 2), -- Standard Type
-(30039, 4415, 3), -- One-handed Sword
-(30039, 4416, 14), -- Humans
+(30039, 4408, 1), -- HP Modifiers
+(30039, 4409, 1), -- MP Modifiers
+(30039, 4410, 16), -- P. Atk. Modifiers
+(30039, 4411, 16), -- M. Atk. Modifiers
+(30039, 4412, 16), -- P. Def. Modifiers
+(30039, 4413, 16), -- M. Def. Modifiers
+(30039, 4414, 2), -- Armor Type
+(30039, 4415, 3), -- Weapon Type
+(30039, 4416, 14), -- Races
 -- Leon
 (30040, 4045, 1), -- Resist Full Magic Attack
-(30040, 4408, 1), -- HP Increase (1x)
-(30040, 4409, 1), -- MP Increase (1x)
-(30040, 4410, 16), -- Very Strong P. Atk.
-(30040, 4411, 16), -- Very Strong M. Atk.
-(30040, 4412, 16), -- Very Strong P. Def.
-(30040, 4413, 16), -- Very Strong M. Def.
-(30040, 4414, 2), -- Standard Type
-(30040, 4415, 9), -- Bows
-(30040, 4416, 14), -- Humans
+(30040, 4408, 1), -- HP Modifiers
+(30040, 4409, 1), -- MP Modifiers
+(30040, 4410, 16), -- P. Atk. Modifiers
+(30040, 4411, 16), -- M. Atk. Modifiers
+(30040, 4412, 16), -- P. Def. Modifiers
+(30040, 4413, 16), -- M. Def. Modifiers
+(30040, 4414, 2), -- Armor Type
+(30040, 4415, 9), -- Weapon Type
+(30040, 4416, 14), -- Races
 -- Arnold
 (30041, 4045, 1), -- Resist Full Magic Attack
-(30041, 4408, 1), -- HP Increase (1x)
-(30041, 4409, 1), -- MP Increase (1x)
-(30041, 4410, 16), -- Very Strong P. Atk.
-(30041, 4411, 16), -- Very Strong M. Atk.
-(30041, 4412, 16), -- Very Strong P. Def.
-(30041, 4413, 16), -- Very Strong M. Def.
-(30041, 4414, 2), -- Standard Type
-(30041, 4415, 9), -- Bows
-(30041, 4416, 14), -- Humans
+(30041, 4408, 1), -- HP Modifiers
+(30041, 4409, 1), -- MP Modifiers
+(30041, 4410, 16), -- P. Atk. Modifiers
+(30041, 4411, 16), -- M. Atk. Modifiers
+(30041, 4412, 16), -- P. Def. Modifiers
+(30041, 4413, 16), -- M. Def. Modifiers
+(30041, 4414, 2), -- Armor Type
+(30041, 4415, 9), -- Weapon Type
+(30041, 4416, 14), -- Races
 -- Abellos
 (30042, 4045, 1), -- Resist Full Magic Attack
-(30042, 4408, 1), -- HP Increase (1x)
-(30042, 4409, 1), -- MP Increase (1x)
-(30042, 4410, 16), -- Very Strong P. Atk.
-(30042, 4411, 16), -- Very Strong M. Atk.
-(30042, 4412, 16), -- Very Strong P. Def.
-(30042, 4413, 16), -- Very Strong M. Def.
-(30042, 4414, 2), -- Standard Type
-(30042, 4415, 3), -- One-handed Sword
-(30042, 4416, 14), -- Humans
+(30042, 4408, 1), -- HP Modifiers
+(30042, 4409, 1), -- MP Modifiers
+(30042, 4410, 16), -- P. Atk. Modifiers
+(30042, 4411, 16), -- M. Atk. Modifiers
+(30042, 4412, 16), -- P. Def. Modifiers
+(30042, 4413, 16), -- M. Def. Modifiers
+(30042, 4414, 2), -- Armor Type
+(30042, 4415, 3), -- Weapon Type
+(30042, 4416, 14), -- Races
 -- Johnstone
 (30043, 4045, 1), -- Resist Full Magic Attack
-(30043, 4408, 1), -- HP Increase (1x)
-(30043, 4409, 1), -- MP Increase (1x)
-(30043, 4410, 16), -- Very Strong P. Atk.
-(30043, 4411, 16), -- Very Strong M. Atk.
-(30043, 4412, 16), -- Very Strong P. Def.
-(30043, 4413, 16), -- Very Strong M. Def.
-(30043, 4414, 2), -- Standard Type
-(30043, 4415, 3), -- One-handed Sword
-(30043, 4416, 14), -- Humans
+(30043, 4408, 1), -- HP Modifiers
+(30043, 4409, 1), -- MP Modifiers
+(30043, 4410, 16), -- P. Atk. Modifiers
+(30043, 4411, 16), -- M. Atk. Modifiers
+(30043, 4412, 16), -- P. Def. Modifiers
+(30043, 4413, 16), -- M. Def. Modifiers
+(30043, 4414, 2), -- Armor Type
+(30043, 4415, 3), -- Weapon Type
+(30043, 4416, 14), -- Races
 -- Chiperan
 (30044, 4045, 1), -- Resist Full Magic Attack
-(30044, 4408, 1), -- HP Increase (1x)
-(30044, 4409, 1), -- MP Increase (1x)
-(30044, 4410, 16), -- Very Strong P. Atk.
-(30044, 4411, 16), -- Very Strong M. Atk.
-(30044, 4412, 16), -- Very Strong P. Def.
-(30044, 4413, 16), -- Very Strong M. Def.
-(30044, 4414, 2), -- Standard Type
-(30044, 4415, 9), -- Bows
-(30044, 4416, 14), -- Humans
+(30044, 4408, 1), -- HP Modifiers
+(30044, 4409, 1), -- MP Modifiers
+(30044, 4410, 16), -- P. Atk. Modifiers
+(30044, 4411, 16), -- M. Atk. Modifiers
+(30044, 4412, 16), -- P. Def. Modifiers
+(30044, 4413, 16), -- M. Def. Modifiers
+(30044, 4414, 2), -- Armor Type
+(30044, 4415, 9), -- Weapon Type
+(30044, 4416, 14), -- Races
 -- Kenyos
 (30045, 4045, 1), -- Resist Full Magic Attack
-(30045, 4408, 1), -- HP Increase (1x)
-(30045, 4409, 1), -- MP Increase (1x)
-(30045, 4410, 16), -- Very Strong P. Atk.
-(30045, 4411, 16), -- Very Strong M. Atk.
-(30045, 4412, 16), -- Very Strong P. Def.
-(30045, 4413, 16), -- Very Strong M. Def.
-(30045, 4414, 2), -- Standard Type
-(30045, 4415, 9), -- Bows
-(30045, 4416, 14), -- Humans
+(30045, 4408, 1), -- HP Modifiers
+(30045, 4409, 1), -- MP Modifiers
+(30045, 4410, 16), -- P. Atk. Modifiers
+(30045, 4411, 16), -- M. Atk. Modifiers
+(30045, 4412, 16), -- P. Def. Modifiers
+(30045, 4413, 16), -- M. Def. Modifiers
+(30045, 4414, 2), -- Armor Type
+(30045, 4415, 9), -- Weapon Type
+(30045, 4416, 14), -- Races
 -- Hanks
 (30046, 4045, 1), -- Resist Full Magic Attack
-(30046, 4408, 1), -- HP Increase (1x)
-(30046, 4409, 1), -- MP Increase (1x)
-(30046, 4410, 16), -- Very Strong P. Atk.
-(30046, 4411, 16), -- Very Strong M. Atk.
-(30046, 4412, 16), -- Very Strong P. Def.
-(30046, 4413, 16), -- Very Strong M. Def.
-(30046, 4414, 2), -- Standard Type
-(30046, 4415, 3), -- One-handed Sword
-(30046, 4416, 14), -- Humans
+(30046, 4408, 1), -- HP Modifiers
+(30046, 4409, 1), -- MP Modifiers
+(30046, 4410, 16), -- P. Atk. Modifiers
+(30046, 4411, 16), -- M. Atk. Modifiers
+(30046, 4412, 16), -- P. Def. Modifiers
+(30046, 4413, 16), -- M. Def. Modifiers
+(30046, 4414, 2), -- Armor Type
+(30046, 4415, 3), -- Weapon Type
+(30046, 4416, 14), -- Races
 -- Firon
 (30047, 4045, 1), -- Resist Full Magic Attack
-(30047, 4408, 1), -- HP Increase (1x)
-(30047, 4409, 1), -- MP Increase (1x)
-(30047, 4410, 11), -- Average P. Atk.
-(30047, 4411, 11), -- Average M. Atk.
-(30047, 4412, 11), -- Average P. Def.
-(30047, 4413, 11), -- Average M. Def.
-(30047, 4414, 2), -- Standard Type
-(30047, 4415, 3), -- One-handed Sword
-(30047, 4416, 14), -- Humans
+(30047, 4408, 1), -- HP Modifiers
+(30047, 4409, 1), -- MP Modifiers
+(30047, 4410, 11), -- P. Atk. Modifiers
+(30047, 4411, 11), -- M. Atk. Modifiers
+(30047, 4412, 11), -- P. Def. Modifiers
+(30047, 4413, 11), -- M. Def. Modifiers
+(30047, 4414, 2), -- Armor Type
+(30047, 4415, 3), -- Weapon Type
+(30047, 4416, 14), -- Races
 -- Darin
 (30048, 4045, 1), -- Resist Full Magic Attack
-(30048, 4408, 1), -- HP Increase (1x)
-(30048, 4409, 1), -- MP Increase (1x)
-(30048, 4410, 11), -- Average P. Atk.
-(30048, 4411, 11), -- Average M. Atk.
-(30048, 4412, 11), -- Average P. Def.
-(30048, 4413, 11), -- Average M. Def.
-(30048, 4414, 2), -- Standard Type
-(30048, 4415, 3), -- One-handed Sword
-(30048, 4416, 14), -- Humans
+(30048, 4408, 1), -- HP Modifiers
+(30048, 4409, 1), -- MP Modifiers
+(30048, 4410, 11), -- P. Atk. Modifiers
+(30048, 4411, 11), -- M. Atk. Modifiers
+(30048, 4412, 11), -- P. Def. Modifiers
+(30048, 4413, 11), -- M. Def. Modifiers
+(30048, 4414, 2), -- Armor Type
+(30048, 4415, 3), -- Weapon Type
+(30048, 4416, 14), -- Races
 -- Bonnie
 (30049, 4045, 1), -- Resist Full Magic Attack
-(30049, 4408, 1), -- HP Increase (1x)
-(30049, 4409, 1), -- MP Increase (1x)
-(30049, 4410, 11), -- Average P. Atk.
-(30049, 4411, 11), -- Average M. Atk.
-(30049, 4412, 11), -- Average P. Def.
-(30049, 4413, 11), -- Average M. Def.
-(30049, 4414, 2), -- Standard Type
-(30049, 4415, 3), -- One-handed Sword
-(30049, 4416, 14), -- Humans
+(30049, 4408, 1), -- HP Modifiers
+(30049, 4409, 1), -- MP Modifiers
+(30049, 4410, 11), -- P. Atk. Modifiers
+(30049, 4411, 11), -- M. Atk. Modifiers
+(30049, 4412, 11), -- P. Def. Modifiers
+(30049, 4413, 11), -- M. Def. Modifiers
+(30049, 4414, 2), -- Armor Type
+(30049, 4415, 3), -- Weapon Type
+(30049, 4416, 14), -- Races
 -- Elias
 (30050, 4045, 1), -- Resist Full Magic Attack
-(30050, 4408, 1), -- HP Increase (1x)
-(30050, 4409, 1), -- MP Increase (1x)
-(30050, 4410, 11), -- Average P. Atk.
-(30050, 4411, 11), -- Average M. Atk.
-(30050, 4412, 11), -- Average P. Def.
-(30050, 4413, 11), -- Average M. Def.
-(30050, 4414, 2), -- Standard Type
-(30050, 4415, 3), -- One-handed Sword
-(30050, 4416, 14), -- Humans
+(30050, 4408, 1), -- HP Modifiers
+(30050, 4409, 1), -- MP Modifiers
+(30050, 4410, 11), -- P. Atk. Modifiers
+(30050, 4411, 11), -- M. Atk. Modifiers
+(30050, 4412, 11), -- P. Def. Modifiers
+(30050, 4413, 11), -- M. Def. Modifiers
+(30050, 4414, 2), -- Armor Type
+(30050, 4415, 3), -- Weapon Type
+(30050, 4416, 14), -- Races
 -- Cristel
 (30051, 4045, 1), -- Resist Full Magic Attack
-(30051, 4408, 1), -- HP Increase (1x)
-(30051, 4409, 1), -- MP Increase (1x)
-(30051, 4410, 11), -- Average P. Atk.
-(30051, 4411, 11), -- Average M. Atk.
-(30051, 4412, 11), -- Average P. Def.
-(30051, 4413, 11), -- Average M. Def.
-(30051, 4414, 2), -- Standard Type
-(30051, 4415, 3), -- One-handed Sword
-(30051, 4416, 14), -- Humans
+(30051, 4408, 1), -- HP Modifiers
+(30051, 4409, 1), -- MP Modifiers
+(30051, 4410, 11), -- P. Atk. Modifiers
+(30051, 4411, 11), -- M. Atk. Modifiers
+(30051, 4412, 11), -- P. Def. Modifiers
+(30051, 4413, 11), -- M. Def. Modifiers
+(30051, 4414, 2), -- Armor Type
+(30051, 4415, 3), -- Weapon Type
+(30051, 4416, 14), -- Races
 -- Rant
 (30054, 4045, 1), -- Resist Full Magic Attack
-(30054, 4408, 1), -- HP Increase (1x)
-(30054, 4409, 1), -- MP Increase (1x)
-(30054, 4410, 11), -- Average P. Atk.
-(30054, 4411, 11), -- Average M. Atk.
-(30054, 4412, 11), -- Average P. Def.
-(30054, 4413, 11), -- Average M. Def.
-(30054, 4414, 2), -- Standard Type
-(30054, 4415, 3), -- One-handed Sword
-(30054, 4416, 18), -- Dwarves
+(30054, 4408, 1), -- HP Modifiers
+(30054, 4409, 1), -- MP Modifiers
+(30054, 4410, 11), -- P. Atk. Modifiers
+(30054, 4411, 11), -- M. Atk. Modifiers
+(30054, 4412, 11), -- P. Def. Modifiers
+(30054, 4413, 11), -- M. Def. Modifiers
+(30054, 4414, 2), -- Armor Type
+(30054, 4415, 3), -- Weapon Type
+(30054, 4416, 18), -- Races
 -- Rolfe
 (30055, 4045, 1), -- Resist Full Magic Attack
-(30055, 4408, 1), -- HP Increase (1x)
-(30055, 4409, 1), -- MP Increase (1x)
-(30055, 4410, 11), -- Average P. Atk.
-(30055, 4411, 11), -- Average M. Atk.
-(30055, 4412, 11), -- Average P. Def.
-(30055, 4413, 11), -- Average M. Def.
-(30055, 4414, 2), -- Standard Type
-(30055, 4415, 3), -- One-handed Sword
-(30055, 4416, 18), -- Dwarves
+(30055, 4408, 1), -- HP Modifiers
+(30055, 4409, 1), -- MP Modifiers
+(30055, 4410, 11), -- P. Atk. Modifiers
+(30055, 4411, 11), -- M. Atk. Modifiers
+(30055, 4412, 11), -- P. Def. Modifiers
+(30055, 4413, 11), -- M. Def. Modifiers
+(30055, 4414, 2), -- Armor Type
+(30055, 4415, 3), -- Weapon Type
+(30055, 4416, 18), -- Races
 -- Aldo
 (30057, 4045, 1), -- Resist Full Magic Attack
-(30057, 4408, 1), -- HP Increase (1x)
-(30057, 4409, 1), -- MP Increase (1x)
-(30057, 4410, 11), -- Average P. Atk.
-(30057, 4411, 11), -- Average M. Atk.
-(30057, 4412, 11), -- Average P. Def.
-(30057, 4413, 11), -- Average M. Def.
-(30057, 4414, 2), -- Standard Type
-(30057, 4415, 3), -- One-handed Sword
-(30057, 4416, 18), -- Dwarves
+(30057, 4408, 1), -- HP Modifiers
+(30057, 4409, 1), -- MP Modifiers
+(30057, 4410, 11), -- P. Atk. Modifiers
+(30057, 4411, 11), -- M. Atk. Modifiers
+(30057, 4412, 11), -- P. Def. Modifiers
+(30057, 4413, 11), -- M. Def. Modifiers
+(30057, 4414, 2), -- Armor Type
+(30057, 4415, 3), -- Weapon Type
+(30057, 4416, 18), -- Races
 -- Holvas
 (30058, 4045, 1), -- Resist Full Magic Attack
-(30058, 4408, 1), -- HP Increase (1x)
-(30058, 4409, 1), -- MP Increase (1x)
-(30058, 4410, 11), -- Average P. Atk.
-(30058, 4411, 11), -- Average M. Atk.
-(30058, 4412, 11), -- Average P. Def.
-(30058, 4413, 11), -- Average M. Def.
-(30058, 4414, 2), -- Standard Type
-(30058, 4415, 3), -- One-handed Sword
-(30058, 4416, 18), -- Dwarves
+(30058, 4408, 1), -- HP Modifiers
+(30058, 4409, 1), -- MP Modifiers
+(30058, 4410, 11), -- P. Atk. Modifiers
+(30058, 4411, 11), -- M. Atk. Modifiers
+(30058, 4412, 11), -- P. Def. Modifiers
+(30058, 4413, 11), -- M. Def. Modifiers
+(30058, 4414, 2), -- Armor Type
+(30058, 4415, 3), -- Weapon Type
+(30058, 4416, 18), -- Races
 -- Trisha
 (30059, 4045, 1), -- Resist Full Magic Attack
-(30059, 4408, 1), -- HP Increase (1x)
-(30059, 4409, 1), -- MP Increase (1x)
-(30059, 4410, 11), -- Average P. Atk.
-(30059, 4411, 11), -- Average M. Atk.
-(30059, 4412, 11), -- Average P. Def.
-(30059, 4413, 11), -- Average M. Def.
-(30059, 4414, 2), -- Standard Type
-(30059, 4415, 3), -- One-handed Sword
-(30059, 4416, 14), -- Humans
+(30059, 4408, 1), -- HP Modifiers
+(30059, 4409, 1), -- MP Modifiers
+(30059, 4410, 11), -- P. Atk. Modifiers
+(30059, 4411, 11), -- M. Atk. Modifiers
+(30059, 4412, 11), -- P. Def. Modifiers
+(30059, 4413, 11), -- M. Def. Modifiers
+(30059, 4414, 2), -- Armor Type
+(30059, 4415, 3), -- Weapon Type
+(30059, 4416, 14), -- Races
 -- Sabrin
 (30060, 4045, 1), -- Resist Full Magic Attack
-(30060, 4408, 1), -- HP Increase (1x)
-(30060, 4409, 1), -- MP Increase (1x)
-(30060, 4410, 11), -- Average P. Atk.
-(30060, 4411, 11), -- Average M. Atk.
-(30060, 4412, 11), -- Average P. Def.
-(30060, 4413, 11), -- Average M. Def.
-(30060, 4414, 2), -- Standard Type
-(30060, 4415, 3), -- One-handed Sword
-(30060, 4416, 14), -- Humans
+(30060, 4408, 1), -- HP Modifiers
+(30060, 4409, 1), -- MP Modifiers
+(30060, 4410, 11), -- P. Atk. Modifiers
+(30060, 4411, 11), -- M. Atk. Modifiers
+(30060, 4412, 11), -- P. Def. Modifiers
+(30060, 4413, 11), -- M. Def. Modifiers
+(30060, 4414, 2), -- Armor Type
+(30060, 4415, 3), -- Weapon Type
+(30060, 4416, 14), -- Races
 -- Casey
 (30061, 4045, 1), -- Resist Full Magic Attack
-(30061, 4408, 1), -- HP Increase (1x)
-(30061, 4409, 1), -- MP Increase (1x)
-(30061, 4410, 11), -- Average P. Atk.
-(30061, 4411, 11), -- Average M. Atk.
-(30061, 4412, 11), -- Average P. Def.
-(30061, 4413, 11), -- Average M. Def.
-(30061, 4414, 2), -- Standard Type
-(30061, 4415, 3), -- One-handed Sword
-(30061, 4416, 14), -- Humans
+(30061, 4408, 1), -- HP Modifiers
+(30061, 4409, 1), -- MP Modifiers
+(30061, 4410, 11), -- P. Atk. Modifiers
+(30061, 4411, 11), -- M. Atk. Modifiers
+(30061, 4412, 11), -- P. Def. Modifiers
+(30061, 4413, 11), -- M. Def. Modifiers
+(30061, 4414, 2), -- Armor Type
+(30061, 4415, 3), -- Weapon Type
+(30061, 4416, 14), -- Races
 -- Sonia
 (30062, 4045, 1), -- Resist Full Magic Attack
-(30062, 4408, 1), -- HP Increase (1x)
-(30062, 4409, 1), -- MP Increase (1x)
-(30062, 4410, 11), -- Average P. Atk.
-(30062, 4411, 11), -- Average M. Atk.
-(30062, 4412, 11), -- Average P. Def.
-(30062, 4413, 11), -- Average M. Def.
-(30062, 4414, 2), -- Standard Type
-(30062, 4415, 3), -- One-handed Sword
-(30062, 4416, 14), -- Humans
+(30062, 4408, 1), -- HP Modifiers
+(30062, 4409, 1), -- MP Modifiers
+(30062, 4410, 11), -- P. Atk. Modifiers
+(30062, 4411, 11), -- M. Atk. Modifiers
+(30062, 4412, 11), -- P. Def. Modifiers
+(30062, 4413, 11), -- M. Def. Modifiers
+(30062, 4414, 2), -- Armor Type
+(30062, 4415, 3), -- Weapon Type
+(30062, 4416, 14), -- Races
 -- Lara
 (30063, 4045, 1), -- Resist Full Magic Attack
-(30063, 4408, 1), -- HP Increase (1x)
-(30063, 4409, 1), -- MP Increase (1x)
-(30063, 4410, 11), -- Average P. Atk.
-(30063, 4411, 11), -- Average M. Atk.
-(30063, 4412, 11), -- Average P. Def.
-(30063, 4413, 11), -- Average M. Def.
-(30063, 4414, 2), -- Standard Type
-(30063, 4415, 3), -- One-handed Sword
-(30063, 4416, 14), -- Humans
+(30063, 4408, 1), -- HP Modifiers
+(30063, 4409, 1), -- MP Modifiers
+(30063, 4410, 11), -- P. Atk. Modifiers
+(30063, 4411, 11), -- M. Atk. Modifiers
+(30063, 4412, 11), -- P. Def. Modifiers
+(30063, 4413, 11), -- M. Def. Modifiers
+(30063, 4414, 2), -- Armor Type
+(30063, 4415, 3), -- Weapon Type
+(30063, 4416, 14), -- Races
 -- Terry
 (30064, 4045, 1), -- Resist Full Magic Attack
-(30064, 4408, 1), -- HP Increase (1x)
-(30064, 4409, 1), -- MP Increase (1x)
-(30064, 4410, 11), -- Average P. Atk.
-(30064, 4411, 11), -- Average M. Atk.
-(30064, 4412, 11), -- Average P. Def.
-(30064, 4413, 11), -- Average M. Def.
-(30064, 4414, 2), -- Standard Type
-(30064, 4415, 3), -- One-handed Sword
-(30064, 4416, 14), -- Humans
+(30064, 4408, 1), -- HP Modifiers
+(30064, 4409, 1), -- MP Modifiers
+(30064, 4410, 11), -- P. Atk. Modifiers
+(30064, 4411, 11), -- M. Atk. Modifiers
+(30064, 4412, 11), -- P. Def. Modifiers
+(30064, 4413, 11), -- M. Def. Modifiers
+(30064, 4414, 2), -- Armor Type
+(30064, 4415, 3), -- Weapon Type
+(30064, 4416, 14), -- Races
 -- Arnelle
 (30065, 4045, 1), -- Resist Full Magic Attack
-(30065, 4408, 1), -- HP Increase (1x)
-(30065, 4409, 1), -- MP Increase (1x)
-(30065, 4410, 11), -- Average P. Atk.
-(30065, 4411, 11), -- Average M. Atk.
-(30065, 4412, 11), -- Average P. Def.
-(30065, 4413, 11), -- Average M. Def.
-(30065, 4414, 2), -- Standard Type
-(30065, 4415, 3), -- One-handed Sword
-(30065, 4416, 14), -- Humans
+(30065, 4408, 1), -- HP Modifiers
+(30065, 4409, 1), -- MP Modifiers
+(30065, 4410, 11), -- P. Atk. Modifiers
+(30065, 4411, 11), -- M. Atk. Modifiers
+(30065, 4412, 11), -- P. Def. Modifiers
+(30065, 4413, 11), -- M. Def. Modifiers
+(30065, 4414, 2), -- Armor Type
+(30065, 4415, 3), -- Weapon Type
+(30065, 4416, 14), -- Races
 -- Pabris
 (30066, 4045, 1), -- Resist Full Magic Attack
-(30066, 4408, 1), -- HP Increase (1x)
-(30066, 4409, 1), -- MP Increase (1x)
-(30066, 4410, 11), -- Average P. Atk.
-(30066, 4411, 11), -- Average M. Atk.
-(30066, 4412, 11), -- Average P. Def.
-(30066, 4413, 11), -- Average M. Def.
-(30066, 4414, 2), -- Standard Type
-(30066, 4415, 3), -- One-handed Sword
-(30066, 4416, 14), -- Humans
+(30066, 4408, 1), -- HP Modifiers
+(30066, 4409, 1), -- MP Modifiers
+(30066, 4410, 11), -- P. Atk. Modifiers
+(30066, 4411, 11), -- M. Atk. Modifiers
+(30066, 4412, 11), -- P. Def. Modifiers
+(30066, 4413, 11), -- M. Def. Modifiers
+(30066, 4414, 2), -- Armor Type
+(30066, 4415, 3), -- Weapon Type
+(30066, 4416, 14), -- Races
 -- Glyvka
 (30067, 4045, 1), -- Resist Full Magic Attack
-(30067, 4408, 1), -- HP Increase (1x)
-(30067, 4409, 1), -- MP Increase (1x)
-(30067, 4410, 11), -- Average P. Atk.
-(30067, 4411, 11), -- Average M. Atk.
-(30067, 4412, 11), -- Average P. Def.
-(30067, 4413, 11), -- Average M. Def.
-(30067, 4414, 2), -- Standard Type
-(30067, 4415, 3), -- One-handed Sword
-(30067, 4416, 14), -- Humans
+(30067, 4408, 1), -- HP Modifiers
+(30067, 4409, 1), -- MP Modifiers
+(30067, 4410, 11), -- P. Atk. Modifiers
+(30067, 4411, 11), -- M. Atk. Modifiers
+(30067, 4412, 11), -- P. Def. Modifiers
+(30067, 4413, 11), -- M. Def. Modifiers
+(30067, 4414, 2), -- Armor Type
+(30067, 4415, 3), -- Weapon Type
+(30067, 4416, 14), -- Races
 -- Shegfield
 (30068, 4045, 1), -- Resist Full Magic Attack
-(30068, 4408, 1), -- HP Increase (1x)
-(30068, 4409, 1), -- MP Increase (1x)
-(30068, 4410, 11), -- Average P. Atk.
-(30068, 4411, 11), -- Average M. Atk.
-(30068, 4412, 11), -- Average P. Def.
-(30068, 4413, 11), -- Average M. Def.
-(30068, 4414, 2), -- Standard Type
-(30068, 4415, 3), -- One-handed Sword
-(30068, 4416, 15), -- Elves
+(30068, 4408, 1), -- HP Modifiers
+(30068, 4409, 1), -- MP Modifiers
+(30068, 4410, 11), -- P. Atk. Modifiers
+(30068, 4411, 11), -- M. Atk. Modifiers
+(30068, 4412, 11), -- P. Def. Modifiers
+(30068, 4413, 11), -- M. Def. Modifiers
+(30068, 4414, 2), -- Armor Type
+(30068, 4415, 3), -- Weapon Type
+(30068, 4416, 15), -- Races
 -- Rollant
 (30069, 4045, 1), -- Resist Full Magic Attack
-(30069, 4408, 1), -- HP Increase (1x)
-(30069, 4409, 1), -- MP Increase (1x)
-(30069, 4410, 11), -- Average P. Atk.
-(30069, 4411, 11), -- Average M. Atk.
-(30069, 4412, 11), -- Average P. Def.
-(30069, 4413, 11), -- Average M. Def.
-(30069, 4414, 2), -- Standard Type
-(30069, 4415, 3), -- One-handed Sword
-(30069, 4416, 14), -- Humans
+(30069, 4408, 1), -- HP Modifiers
+(30069, 4409, 1), -- MP Modifiers
+(30069, 4410, 11), -- P. Atk. Modifiers
+(30069, 4411, 11), -- M. Atk. Modifiers
+(30069, 4412, 11), -- P. Def. Modifiers
+(30069, 4413, 11), -- M. Def. Modifiers
+(30069, 4414, 2), -- Armor Type
+(30069, 4415, 3), -- Weapon Type
+(30069, 4416, 14), -- Races
 -- Sylvain
 (30070, 4045, 1), -- Resist Full Magic Attack
-(30070, 4408, 1), -- HP Increase (1x)
-(30070, 4409, 1), -- MP Increase (1x)
-(30070, 4410, 11), -- Average P. Atk.
-(30070, 4411, 11), -- Average M. Atk.
-(30070, 4412, 11), -- Average P. Def.
-(30070, 4413, 11), -- Average M. Def.
-(30070, 4414, 2), -- Standard Type
-(30070, 4415, 3), -- One-handed Sword
-(30070, 4416, 14), -- Humans
+(30070, 4408, 1), -- HP Modifiers
+(30070, 4409, 1), -- MP Modifiers
+(30070, 4410, 11), -- P. Atk. Modifiers
+(30070, 4411, 11), -- M. Atk. Modifiers
+(30070, 4412, 11), -- P. Def. Modifiers
+(30070, 4413, 11), -- M. Def. Modifiers
+(30070, 4414, 2), -- Armor Type
+(30070, 4415, 3), -- Weapon Type
+(30070, 4416, 14), -- Races
 -- Lucas
 (30071, 4045, 1), -- Resist Full Magic Attack
-(30071, 4408, 1), -- HP Increase (1x)
-(30071, 4409, 1), -- MP Increase (1x)
-(30071, 4410, 16), -- Very Strong P. Atk.
-(30071, 4411, 16), -- Very Strong M. Atk.
-(30071, 4412, 16), -- Very Strong P. Def.
-(30071, 4413, 16), -- Very Strong M. Def.
-(30071, 4414, 2), -- Standard Type
-(30071, 4415, 3), -- One-handed Sword
-(30071, 4416, 14), -- Humans
+(30071, 4408, 1), -- HP Modifiers
+(30071, 4409, 1), -- MP Modifiers
+(30071, 4410, 16), -- P. Atk. Modifiers
+(30071, 4411, 16), -- M. Atk. Modifiers
+(30071, 4412, 16), -- P. Def. Modifiers
+(30071, 4413, 16), -- M. Def. Modifiers
+(30071, 4414, 2), -- Armor Type
+(30071, 4415, 3), -- Weapon Type
+(30071, 4416, 14), -- Races
 -- Metty
 (30072, 4045, 1), -- Resist Full Magic Attack
-(30072, 4408, 1), -- HP Increase (1x)
-(30072, 4409, 1), -- MP Increase (1x)
-(30072, 4410, 16), -- Very Strong P. Atk.
-(30072, 4411, 16), -- Very Strong M. Atk.
-(30072, 4412, 16), -- Very Strong P. Def.
-(30072, 4413, 16), -- Very Strong M. Def.
-(30072, 4414, 2), -- Standard Type
-(30072, 4415, 9), -- Bows
-(30072, 4416, 14), -- Humans
+(30072, 4408, 1), -- HP Modifiers
+(30072, 4409, 1), -- MP Modifiers
+(30072, 4410, 16), -- P. Atk. Modifiers
+(30072, 4411, 16), -- M. Atk. Modifiers
+(30072, 4412, 16), -- P. Def. Modifiers
+(30072, 4413, 16), -- M. Def. Modifiers
+(30072, 4414, 2), -- Armor Type
+(30072, 4415, 9), -- Weapon Type
+(30072, 4416, 14), -- Races
 -- Jacob
 (30073, 4045, 1), -- Resist Full Magic Attack
-(30073, 4408, 1), -- HP Increase (1x)
-(30073, 4409, 1), -- MP Increase (1x)
-(30073, 4410, 16), -- Very Strong P. Atk.
-(30073, 4411, 16), -- Very Strong M. Atk.
-(30073, 4412, 16), -- Very Strong P. Def.
-(30073, 4413, 16), -- Very Strong M. Def.
-(30073, 4414, 2), -- Standard Type
-(30073, 4415, 9), -- Bows
-(30073, 4416, 14), -- Humans
+(30073, 4408, 1), -- HP Modifiers
+(30073, 4409, 1), -- MP Modifiers
+(30073, 4410, 16), -- P. Atk. Modifiers
+(30073, 4411, 16), -- M. Atk. Modifiers
+(30073, 4412, 16), -- P. Def. Modifiers
+(30073, 4413, 16), -- M. Def. Modifiers
+(30073, 4414, 2), -- Armor Type
+(30073, 4415, 9), -- Weapon Type
+(30073, 4416, 14), -- Races
 -- Harlan
 (30074, 4045, 1), -- Resist Full Magic Attack
-(30074, 4408, 1), -- HP Increase (1x)
-(30074, 4409, 1), -- MP Increase (1x)
-(30074, 4410, 16), -- Very Strong P. Atk.
-(30074, 4411, 16), -- Very Strong M. Atk.
-(30074, 4412, 16), -- Very Strong P. Def.
-(30074, 4413, 16), -- Very Strong M. Def.
-(30074, 4414, 2), -- Standard Type
-(30074, 4415, 3), -- One-handed Sword
-(30074, 4416, 14), -- Humans
+(30074, 4408, 1), -- HP Modifiers
+(30074, 4409, 1), -- MP Modifiers
+(30074, 4410, 16), -- P. Atk. Modifiers
+(30074, 4411, 16), -- M. Atk. Modifiers
+(30074, 4412, 16), -- P. Def. Modifiers
+(30074, 4413, 16), -- M. Def. Modifiers
+(30074, 4414, 2), -- Armor Type
+(30074, 4415, 3), -- Weapon Type
+(30074, 4416, 14), -- Races
 -- Xaber
 (30075, 4045, 1), -- Resist Full Magic Attack
-(30075, 4408, 1), -- HP Increase (1x)
-(30075, 4409, 1), -- MP Increase (1x)
-(30075, 4410, 16), -- Very Strong P. Atk.
-(30075, 4411, 16), -- Very Strong M. Atk.
-(30075, 4412, 16), -- Very Strong P. Def.
-(30075, 4413, 16), -- Very Strong M. Def.
-(30075, 4414, 2), -- Standard Type
-(30075, 4415, 9), -- Bows
-(30075, 4416, 14), -- Humans
+(30075, 4408, 1), -- HP Modifiers
+(30075, 4409, 1), -- MP Modifiers
+(30075, 4410, 16), -- P. Atk. Modifiers
+(30075, 4411, 16), -- M. Atk. Modifiers
+(30075, 4412, 16), -- P. Def. Modifiers
+(30075, 4413, 16), -- M. Def. Modifiers
+(30075, 4414, 2), -- Armor Type
+(30075, 4415, 9), -- Weapon Type
+(30075, 4416, 14), -- Races
 -- Liam
 (30076, 4045, 1), -- Resist Full Magic Attack
-(30076, 4408, 1), -- HP Increase (1x)
-(30076, 4409, 1), -- MP Increase (1x)
-(30076, 4410, 16), -- Very Strong P. Atk.
-(30076, 4411, 16), -- Very Strong M. Atk.
-(30076, 4412, 16), -- Very Strong P. Def.
-(30076, 4413, 16), -- Very Strong M. Def.
-(30076, 4414, 2), -- Standard Type
-(30076, 4415, 3), -- One-handed Sword
-(30076, 4416, 14), -- Humans
+(30076, 4408, 1), -- HP Modifiers
+(30076, 4409, 1), -- MP Modifiers
+(30076, 4410, 16), -- P. Atk. Modifiers
+(30076, 4411, 16), -- M. Atk. Modifiers
+(30076, 4412, 16), -- P. Def. Modifiers
+(30076, 4413, 16), -- M. Def. Modifiers
+(30076, 4414, 2), -- Armor Type
+(30076, 4415, 3), -- Weapon Type
+(30076, 4416, 14), -- Races
 -- Pano
 (30078, 4045, 1), -- Resist Full Magic Attack
-(30078, 4408, 1), -- HP Increase (1x)
-(30078, 4409, 1), -- MP Increase (1x)
-(30078, 4410, 11), -- Average P. Atk.
-(30078, 4411, 11), -- Average M. Atk.
-(30078, 4412, 11), -- Average P. Def.
-(30078, 4413, 11), -- Average M. Def.
-(30078, 4414, 2), -- Standard Type
-(30078, 4415, 3), -- One-handed Sword
-(30078, 4416, 14), -- Humans
+(30078, 4408, 1), -- HP Modifiers
+(30078, 4409, 1), -- MP Modifiers
+(30078, 4410, 11), -- P. Atk. Modifiers
+(30078, 4411, 11), -- M. Atk. Modifiers
+(30078, 4412, 11), -- P. Def. Modifiers
+(30078, 4413, 11), -- M. Def. Modifiers
+(30078, 4414, 2), -- Armor Type
+(30078, 4415, 3), -- Weapon Type
+(30078, 4416, 14), -- Races
 -- Barder
 (30079, 4045, 1), -- Resist Full Magic Attack
-(30079, 4408, 1), -- HP Increase (1x)
-(30079, 4409, 1), -- MP Increase (1x)
-(30079, 4410, 11), -- Average P. Atk.
-(30079, 4411, 11), -- Average M. Atk.
-(30079, 4412, 11), -- Average P. Def.
-(30079, 4413, 11), -- Average M. Def.
-(30079, 4414, 2), -- Standard Type
-(30079, 4415, 3), -- One-handed Sword
-(30079, 4416, 18), -- Dwarves
+(30079, 4408, 1), -- HP Modifiers
+(30079, 4409, 1), -- MP Modifiers
+(30079, 4410, 11), -- P. Atk. Modifiers
+(30079, 4411, 11), -- M. Atk. Modifiers
+(30079, 4412, 11), -- P. Def. Modifiers
+(30079, 4413, 11), -- M. Def. Modifiers
+(30079, 4414, 2), -- Armor Type
+(30079, 4415, 3), -- Weapon Type
+(30079, 4416, 18), -- Races
 -- Clarissa
 (30080, 4045, 1), -- Resist Full Magic Attack
-(30080, 4408, 1), -- HP Increase (1x)
-(30080, 4409, 1), -- MP Increase (1x)
-(30080, 4410, 11), -- Average P. Atk.
-(30080, 4411, 11), -- Average M. Atk.
-(30080, 4412, 11), -- Average P. Def.
-(30080, 4413, 11), -- Average M. Def.
-(30080, 4414, 2), -- Standard Type
-(30080, 4415, 3), -- One-handed Sword
-(30080, 4416, 14), -- Humans
+(30080, 4408, 1), -- HP Modifiers
+(30080, 4409, 1), -- MP Modifiers
+(30080, 4410, 11), -- P. Atk. Modifiers
+(30080, 4411, 11), -- M. Atk. Modifiers
+(30080, 4412, 11), -- P. Def. Modifiers
+(30080, 4413, 11), -- M. Def. Modifiers
+(30080, 4414, 2), -- Armor Type
+(30080, 4415, 3), -- Weapon Type
+(30080, 4416, 14), -- Races
 -- Helvetia
 (30081, 4045, 1), -- Resist Full Magic Attack
-(30081, 4408, 1), -- HP Increase (1x)
-(30081, 4409, 1), -- MP Increase (1x)
-(30081, 4410, 11), -- Average P. Atk.
-(30081, 4411, 11), -- Average M. Atk.
-(30081, 4412, 11), -- Average P. Def.
-(30081, 4413, 11), -- Average M. Def.
-(30081, 4414, 2), -- Standard Type
-(30081, 4415, 3), -- One-handed Sword
-(30081, 4416, 14), -- Humans
+(30081, 4408, 1), -- HP Modifiers
+(30081, 4409, 1), -- MP Modifiers
+(30081, 4410, 11), -- P. Atk. Modifiers
+(30081, 4411, 11), -- M. Atk. Modifiers
+(30081, 4412, 11), -- P. Def. Modifiers
+(30081, 4413, 11), -- M. Def. Modifiers
+(30081, 4414, 2), -- Armor Type
+(30081, 4415, 3), -- Weapon Type
+(30081, 4416, 14), -- Races
 -- Denkus
 (30082, 4045, 1), -- Resist Full Magic Attack
-(30082, 4408, 1), -- HP Increase (1x)
-(30082, 4409, 1), -- MP Increase (1x)
-(30082, 4410, 11), -- Average P. Atk.
-(30082, 4411, 11), -- Average M. Atk.
-(30082, 4412, 11), -- Average P. Def.
-(30082, 4413, 11), -- Average M. Def.
-(30082, 4414, 2), -- Standard Type
-(30082, 4415, 3), -- One-handed Sword
-(30082, 4416, 14), -- Humans
+(30082, 4408, 1), -- HP Modifiers
+(30082, 4409, 1), -- MP Modifiers
+(30082, 4410, 11), -- P. Atk. Modifiers
+(30082, 4411, 11), -- M. Atk. Modifiers
+(30082, 4412, 11), -- P. Def. Modifiers
+(30082, 4413, 11), -- M. Def. Modifiers
+(30082, 4414, 2), -- Armor Type
+(30082, 4415, 3), -- Weapon Type
+(30082, 4416, 14), -- Races
 -- Pochi
 (30083, 4045, 1), -- Resist Full Magic Attack
-(30083, 4408, 1), -- HP Increase (1x)
-(30083, 4409, 1), -- MP Increase (1x)
-(30083, 4410, 11), -- Average P. Atk.
-(30083, 4411, 11), -- Average M. Atk.
-(30083, 4412, 11), -- Average P. Def.
-(30083, 4413, 11), -- Average M. Def.
-(30083, 4414, 2), -- Standard Type
-(30083, 4415, 3), -- One-handed Sword
-(30083, 4416, 18), -- Dwarves
+(30083, 4408, 1), -- HP Modifiers
+(30083, 4409, 1), -- MP Modifiers
+(30083, 4410, 11), -- P. Atk. Modifiers
+(30083, 4411, 11), -- M. Atk. Modifiers
+(30083, 4412, 11), -- P. Def. Modifiers
+(30083, 4413, 11), -- M. Def. Modifiers
+(30083, 4414, 2), -- Armor Type
+(30083, 4415, 3), -- Weapon Type
+(30083, 4416, 18), -- Races
 -- Graham
 (30084, 4045, 1), -- Resist Full Magic Attack
-(30084, 4408, 1), -- HP Increase (1x)
-(30084, 4409, 1), -- MP Increase (1x)
-(30084, 4410, 11), -- Average P. Atk.
-(30084, 4411, 11), -- Average M. Atk.
-(30084, 4412, 11), -- Average P. Def.
-(30084, 4413, 11), -- Average M. Def.
-(30084, 4414, 2), -- Standard Type
-(30084, 4415, 3), -- One-handed Sword
-(30084, 4416, 14), -- Humans
+(30084, 4408, 1), -- HP Modifiers
+(30084, 4409, 1), -- MP Modifiers
+(30084, 4410, 11), -- P. Atk. Modifiers
+(30084, 4411, 11), -- M. Atk. Modifiers
+(30084, 4412, 11), -- P. Def. Modifiers
+(30084, 4413, 11), -- M. Def. Modifiers
+(30084, 4414, 2), -- Armor Type
+(30084, 4415, 3), -- Weapon Type
+(30084, 4416, 14), -- Races
 -- Stanford
 (30085, 4045, 1), -- Resist Full Magic Attack
-(30085, 4408, 1), -- HP Increase (1x)
-(30085, 4409, 1), -- MP Increase (1x)
-(30085, 4410, 11), -- Average P. Atk.
-(30085, 4411, 11), -- Average M. Atk.
-(30085, 4412, 11), -- Average P. Def.
-(30085, 4413, 11), -- Average M. Def.
-(30085, 4414, 2), -- Standard Type
-(30085, 4415, 3), -- One-handed Sword
-(30085, 4416, 14), -- Humans
+(30085, 4408, 1), -- HP Modifiers
+(30085, 4409, 1), -- MP Modifiers
+(30085, 4410, 11), -- P. Atk. Modifiers
+(30085, 4411, 11), -- M. Atk. Modifiers
+(30085, 4412, 11), -- P. Def. Modifiers
+(30085, 4413, 11), -- M. Def. Modifiers
+(30085, 4414, 2), -- Armor Type
+(30085, 4415, 3), -- Weapon Type
+(30085, 4416, 14), -- Races
 -- Taurin
 (30086, 4045, 1), -- Resist Full Magic Attack
-(30086, 4408, 1), -- HP Increase (1x)
-(30086, 4409, 1), -- MP Increase (1x)
-(30086, 4410, 11), -- Average P. Atk.
-(30086, 4411, 11), -- Average M. Atk.
-(30086, 4412, 11), -- Average P. Def.
-(30086, 4413, 11), -- Average M. Def.
-(30086, 4414, 2), -- Standard Type
-(30086, 4415, 3), -- One-handed Sword
-(30086, 4416, 18), -- Dwarves
+(30086, 4408, 1), -- HP Modifiers
+(30086, 4409, 1), -- MP Modifiers
+(30086, 4410, 11), -- P. Atk. Modifiers
+(30086, 4411, 11), -- M. Atk. Modifiers
+(30086, 4412, 11), -- P. Def. Modifiers
+(30086, 4413, 11), -- M. Def. Modifiers
+(30086, 4414, 2), -- Armor Type
+(30086, 4415, 3), -- Weapon Type
+(30086, 4416, 18), -- Races
 -- Peta
 (30087, 4045, 1), -- Resist Full Magic Attack
-(30087, 4408, 1), -- HP Increase (1x)
-(30087, 4409, 1), -- MP Increase (1x)
-(30087, 4410, 11), -- Average P. Atk.
-(30087, 4411, 11), -- Average M. Atk.
-(30087, 4412, 11), -- Average P. Def.
-(30087, 4413, 11), -- Average M. Def.
-(30087, 4414, 2), -- Standard Type
-(30087, 4415, 3), -- One-handed Sword
-(30087, 4416, 14), -- Humans
+(30087, 4408, 1), -- HP Modifiers
+(30087, 4409, 1), -- MP Modifiers
+(30087, 4410, 11), -- P. Atk. Modifiers
+(30087, 4411, 11), -- M. Atk. Modifiers
+(30087, 4412, 11), -- P. Def. Modifiers
+(30087, 4413, 11), -- M. Def. Modifiers
+(30087, 4414, 2), -- Armor Type
+(30087, 4415, 3), -- Weapon Type
+(30087, 4416, 14), -- Races
 -- Radia
 (30088, 4045, 1), -- Resist Full Magic Attack
-(30088, 4408, 1), -- HP Increase (1x)
-(30088, 4409, 1), -- MP Increase (1x)
-(30088, 4410, 11), -- Average P. Atk.
-(30088, 4411, 11), -- Average M. Atk.
-(30088, 4412, 11), -- Average P. Def.
-(30088, 4413, 11), -- Average M. Def.
-(30088, 4414, 2), -- Standard Type
-(30088, 4415, 3), -- One-handed Sword
-(30088, 4416, 14), -- Humans
+(30088, 4408, 1), -- HP Modifiers
+(30088, 4409, 1), -- MP Modifiers
+(30088, 4410, 11), -- P. Atk. Modifiers
+(30088, 4411, 11), -- M. Atk. Modifiers
+(30088, 4412, 11), -- P. Def. Modifiers
+(30088, 4413, 11), -- M. Def. Modifiers
+(30088, 4414, 2), -- Armor Type
+(30088, 4415, 3), -- Weapon Type
+(30088, 4416, 14), -- Races
 -- Sandra
 (30090, 4045, 1), -- Resist Full Magic Attack
-(30090, 4408, 1), -- HP Increase (1x)
-(30090, 4409, 1), -- MP Increase (1x)
-(30090, 4410, 11), -- Average P. Atk.
-(30090, 4411, 11), -- Average M. Atk.
-(30090, 4412, 11), -- Average P. Def.
-(30090, 4413, 11), -- Average M. Def.
-(30090, 4414, 2), -- Standard Type
-(30090, 4415, 3), -- One-handed Sword
-(30090, 4416, 14), -- Humans
+(30090, 4408, 1), -- HP Modifiers
+(30090, 4409, 1), -- MP Modifiers
+(30090, 4410, 11), -- P. Atk. Modifiers
+(30090, 4411, 11), -- M. Atk. Modifiers
+(30090, 4412, 11), -- P. Def. Modifiers
+(30090, 4413, 11), -- M. Def. Modifiers
+(30090, 4414, 2), -- Armor Type
+(30090, 4415, 3), -- Weapon Type
+(30090, 4416, 14), -- Races
 -- Ellie
 (30091, 4045, 1), -- Resist Full Magic Attack
-(30091, 4408, 1), -- HP Increase (1x)
-(30091, 4409, 1), -- MP Increase (1x)
-(30091, 4410, 11), -- Average P. Atk.
-(30091, 4411, 11), -- Average M. Atk.
-(30091, 4412, 11), -- Average P. Def.
-(30091, 4413, 11), -- Average M. Def.
-(30091, 4414, 2), -- Standard Type
-(30091, 4415, 3), -- One-handed Sword
-(30091, 4416, 14), -- Humans
+(30091, 4408, 1), -- HP Modifiers
+(30091, 4409, 1), -- MP Modifiers
+(30091, 4410, 11), -- P. Atk. Modifiers
+(30091, 4411, 11), -- M. Atk. Modifiers
+(30091, 4412, 11), -- P. Def. Modifiers
+(30091, 4413, 11), -- M. Def. Modifiers
+(30091, 4414, 2), -- Armor Type
+(30091, 4415, 3), -- Weapon Type
+(30091, 4416, 14), -- Races
 -- Collob
 (30092, 4045, 1), -- Resist Full Magic Attack
-(30092, 4408, 1), -- HP Increase (1x)
-(30092, 4409, 1), -- MP Increase (1x)
-(30092, 4410, 11), -- Average P. Atk.
-(30092, 4411, 11), -- Average M. Atk.
-(30092, 4412, 11), -- Average P. Def.
-(30092, 4413, 11), -- Average M. Def.
-(30092, 4414, 2), -- Standard Type
-(30092, 4415, 3), -- One-handed Sword
-(30092, 4416, 18), -- Dwarves
+(30092, 4408, 1), -- HP Modifiers
+(30092, 4409, 1), -- MP Modifiers
+(30092, 4410, 11), -- P. Atk. Modifiers
+(30092, 4411, 11), -- M. Atk. Modifiers
+(30092, 4412, 11), -- P. Def. Modifiers
+(30092, 4413, 11), -- M. Def. Modifiers
+(30092, 4414, 2), -- Armor Type
+(30092, 4415, 3), -- Weapon Type
+(30092, 4416, 18), -- Races
 -- Groot
 (30093, 4045, 1), -- Resist Full Magic Attack
-(30093, 4408, 1), -- HP Increase (1x)
-(30093, 4409, 1), -- MP Increase (1x)
-(30093, 4410, 11), -- Average P. Atk.
-(30093, 4411, 11), -- Average M. Atk.
-(30093, 4412, 11), -- Average P. Def.
-(30093, 4413, 11), -- Average M. Def.
-(30093, 4414, 2), -- Standard Type
-(30093, 4415, 3), -- One-handed Sword
-(30093, 4416, 14), -- Humans
+(30093, 4408, 1), -- HP Modifiers
+(30093, 4409, 1), -- MP Modifiers
+(30093, 4410, 11), -- P. Atk. Modifiers
+(30093, 4411, 11), -- M. Atk. Modifiers
+(30093, 4412, 11), -- P. Def. Modifiers
+(30093, 4413, 11), -- M. Def. Modifiers
+(30093, 4414, 2), -- Armor Type
+(30093, 4415, 3), -- Weapon Type
+(30093, 4416, 14), -- Races
 -- Gentler
 (30094, 4045, 1), -- Resist Full Magic Attack
-(30094, 4408, 1), -- HP Increase (1x)
-(30094, 4409, 1), -- MP Increase (1x)
-(30094, 4410, 11), -- Average P. Atk.
-(30094, 4411, 11), -- Average M. Atk.
-(30094, 4412, 11), -- Average P. Def.
-(30094, 4413, 11), -- Average M. Def.
-(30094, 4414, 2), -- Standard Type
-(30094, 4415, 3), -- One-handed Sword
-(30094, 4416, 14), -- Humans
+(30094, 4408, 1), -- HP Modifiers
+(30094, 4409, 1), -- MP Modifiers
+(30094, 4410, 11), -- P. Atk. Modifiers
+(30094, 4411, 11), -- M. Atk. Modifiers
+(30094, 4412, 11), -- P. Def. Modifiers
+(30094, 4413, 11), -- M. Def. Modifiers
+(30094, 4414, 2), -- Armor Type
+(30094, 4415, 3), -- Weapon Type
+(30094, 4416, 14), -- Races
 -- Randolf
 (30095, 4045, 1), -- Resist Full Magic Attack
-(30095, 4408, 1), -- HP Increase (1x)
-(30095, 4409, 1), -- MP Increase (1x)
-(30095, 4410, 11), -- Average P. Atk.
-(30095, 4411, 11), -- Average M. Atk.
-(30095, 4412, 11), -- Average P. Def.
-(30095, 4413, 11), -- Average M. Def.
-(30095, 4414, 2), -- Standard Type
-(30095, 4415, 3), -- One-handed Sword
-(30095, 4416, 18), -- Dwarves
+(30095, 4408, 1), -- HP Modifiers
+(30095, 4409, 1), -- MP Modifiers
+(30095, 4410, 11), -- P. Atk. Modifiers
+(30095, 4411, 11), -- M. Atk. Modifiers
+(30095, 4412, 11), -- P. Def. Modifiers
+(30095, 4413, 11), -- M. Def. Modifiers
+(30095, 4414, 2), -- Armor Type
+(30095, 4415, 3), -- Weapon Type
+(30095, 4416, 18), -- Races
 -- Galladucci
 (30097, 4045, 1), -- Resist Full Magic Attack
-(30097, 4408, 1), -- HP Increase (1x)
-(30097, 4409, 1), -- MP Increase (1x)
-(30097, 4410, 11), -- Average P. Atk.
-(30097, 4411, 11), -- Average M. Atk.
-(30097, 4412, 11), -- Average P. Def.
-(30097, 4413, 11), -- Average M. Def.
-(30097, 4414, 2), -- Standard Type
-(30097, 4415, 3), -- One-handed Sword
-(30097, 4416, 18), -- Dwarves
+(30097, 4408, 1), -- HP Modifiers
+(30097, 4409, 1), -- MP Modifiers
+(30097, 4410, 11), -- P. Atk. Modifiers
+(30097, 4411, 11), -- M. Atk. Modifiers
+(30097, 4412, 11), -- P. Def. Modifiers
+(30097, 4413, 11), -- M. Def. Modifiers
+(30097, 4414, 2), -- Armor Type
+(30097, 4415, 3), -- Weapon Type
+(30097, 4416, 18), -- Races
 -- Alexandria
 (30098, 4045, 1), -- Resist Full Magic Attack
-(30098, 4408, 1), -- HP Increase (1x)
-(30098, 4409, 1), -- MP Increase (1x)
-(30098, 4410, 11), -- Average P. Atk.
-(30098, 4411, 11), -- Average M. Atk.
-(30098, 4412, 11), -- Average P. Def.
-(30098, 4413, 11), -- Average M. Def.
-(30098, 4414, 2), -- Standard Type
-(30098, 4415, 3), -- One-handed Sword
-(30098, 4416, 14), -- Humans
+(30098, 4408, 1), -- HP Modifiers
+(30098, 4409, 1), -- MP Modifiers
+(30098, 4410, 11), -- P. Atk. Modifiers
+(30098, 4411, 11), -- M. Atk. Modifiers
+(30098, 4412, 11), -- P. Def. Modifiers
+(30098, 4413, 11), -- M. Def. Modifiers
+(30098, 4414, 2), -- Armor Type
+(30098, 4415, 3), -- Weapon Type
+(30098, 4416, 14), -- Races
 -- Valkon
 (30103, 4045, 1), -- Resist Full Magic Attack
-(30103, 4408, 1), -- HP Increase (1x)
-(30103, 4409, 1), -- MP Increase (1x)
-(30103, 4410, 11), -- Average P. Atk.
-(30103, 4411, 11), -- Average M. Atk.
-(30103, 4412, 11), -- Average P. Def.
-(30103, 4413, 11), -- Average M. Def.
-(30103, 4414, 2), -- Standard Type
-(30103, 4415, 3), -- One-handed Sword
-(30103, 4416, 18), -- Dwarves
+(30103, 4408, 1), -- HP Modifiers
+(30103, 4409, 1), -- MP Modifiers
+(30103, 4410, 11), -- P. Atk. Modifiers
+(30103, 4411, 11), -- M. Atk. Modifiers
+(30103, 4412, 11), -- P. Def. Modifiers
+(30103, 4413, 11), -- M. Def. Modifiers
+(30103, 4414, 2), -- Armor Type
+(30103, 4415, 3), -- Weapon Type
+(30103, 4416, 18), -- Races
 -- Parman
 (30104, 4045, 1), -- Resist Full Magic Attack
-(30104, 4408, 1), -- HP Increase (1x)
-(30104, 4409, 1), -- MP Increase (1x)
-(30104, 4410, 11), -- Average P. Atk.
-(30104, 4411, 11), -- Average M. Atk.
-(30104, 4412, 11), -- Average P. Def.
-(30104, 4413, 11), -- Average M. Def.
-(30104, 4414, 2), -- Standard Type
-(30104, 4415, 3), -- One-handed Sword
-(30104, 4416, 18), -- Dwarves
+(30104, 4408, 1), -- HP Modifiers
+(30104, 4409, 1), -- MP Modifiers
+(30104, 4410, 11), -- P. Atk. Modifiers
+(30104, 4411, 11), -- M. Atk. Modifiers
+(30104, 4412, 11), -- P. Def. Modifiers
+(30104, 4413, 11), -- M. Def. Modifiers
+(30104, 4414, 2), -- Armor Type
+(30104, 4415, 3), -- Weapon Type
+(30104, 4416, 18), -- Races
 -- Genwitter
 (30105, 4045, 1), -- Resist Full Magic Attack
-(30105, 4408, 1), -- HP Increase (1x)
-(30105, 4409, 1), -- MP Increase (1x)
-(30105, 4410, 11), -- Average P. Atk.
-(30105, 4411, 11), -- Average M. Atk.
-(30105, 4412, 11), -- Average P. Def.
-(30105, 4413, 11), -- Average M. Def.
-(30105, 4414, 2), -- Standard Type
-(30105, 4415, 3), -- One-handed Sword
-(30105, 4416, 14), -- Humans
+(30105, 4408, 1), -- HP Modifiers
+(30105, 4409, 1), -- MP Modifiers
+(30105, 4410, 11), -- P. Atk. Modifiers
+(30105, 4411, 11), -- M. Atk. Modifiers
+(30105, 4412, 11), -- P. Def. Modifiers
+(30105, 4413, 11), -- M. Def. Modifiers
+(30105, 4414, 2), -- Armor Type
+(30105, 4415, 3), -- Weapon Type
+(30105, 4416, 14), -- Races
 -- Dufner
 (30106, 4045, 1), -- Resist Full Magic Attack
-(30106, 4408, 1), -- HP Increase (1x)
-(30106, 4409, 1), -- MP Increase (1x)
-(30106, 4410, 11), -- Average P. Atk.
-(30106, 4411, 11), -- Average M. Atk.
-(30106, 4412, 11), -- Average P. Def.
-(30106, 4413, 11), -- Average M. Def.
-(30106, 4414, 2), -- Standard Type
-(30106, 4415, 3), -- One-handed Sword
-(30106, 4416, 14), -- Humans
+(30106, 4408, 1), -- HP Modifiers
+(30106, 4409, 1), -- MP Modifiers
+(30106, 4410, 11), -- P. Atk. Modifiers
+(30106, 4411, 11), -- M. Atk. Modifiers
+(30106, 4412, 11), -- P. Def. Modifiers
+(30106, 4413, 11), -- M. Def. Modifiers
+(30106, 4414, 2), -- Armor Type
+(30106, 4415, 3), -- Weapon Type
+(30106, 4416, 14), -- Races
 -- Goldian
 (30107, 4045, 1), -- Resist Full Magic Attack
-(30107, 4408, 1), -- HP Increase (1x)
-(30107, 4409, 1), -- MP Increase (1x)
-(30107, 4410, 11), -- Average P. Atk.
-(30107, 4411, 11), -- Average M. Atk.
-(30107, 4412, 11), -- Average P. Def.
-(30107, 4413, 11), -- Average M. Def.
-(30107, 4414, 2), -- Standard Type
-(30107, 4415, 3), -- One-handed Sword
-(30107, 4416, 15), -- Elves
+(30107, 4408, 1), -- HP Modifiers
+(30107, 4409, 1), -- MP Modifiers
+(30107, 4410, 11), -- P. Atk. Modifiers
+(30107, 4411, 11), -- M. Atk. Modifiers
+(30107, 4412, 11), -- P. Def. Modifiers
+(30107, 4413, 11), -- M. Def. Modifiers
+(30107, 4414, 2), -- Armor Type
+(30107, 4415, 3), -- Weapon Type
+(30107, 4416, 15), -- Races
 -- Macken
 (30108, 4045, 1), -- Resist Full Magic Attack
-(30108, 4408, 1), -- HP Increase (1x)
-(30108, 4409, 1), -- MP Increase (1x)
-(30108, 4410, 11), -- Average P. Atk.
-(30108, 4411, 11), -- Average M. Atk.
-(30108, 4412, 11), -- Average P. Def.
-(30108, 4413, 11), -- Average M. Def.
-(30108, 4414, 2), -- Standard Type
-(30108, 4415, 3), -- One-handed Sword
-(30108, 4416, 14), -- Humans
+(30108, 4408, 1), -- HP Modifiers
+(30108, 4409, 1), -- MP Modifiers
+(30108, 4410, 11), -- P. Atk. Modifiers
+(30108, 4411, 11), -- M. Atk. Modifiers
+(30108, 4412, 11), -- P. Def. Modifiers
+(30108, 4413, 11), -- M. Def. Modifiers
+(30108, 4414, 2), -- Armor Type
+(30108, 4415, 3), -- Weapon Type
+(30108, 4416, 14), -- Races
 -- Hannavalt
 (30109, 4045, 1), -- Resist Full Magic Attack
-(30109, 4408, 1), -- HP Increase (1x)
-(30109, 4409, 1), -- MP Increase (1x)
-(30109, 4410, 11), -- Average P. Atk.
-(30109, 4411, 11), -- Average M. Atk.
-(30109, 4412, 11), -- Average P. Def.
-(30109, 4413, 11), -- Average M. Def.
-(30109, 4414, 2), -- Standard Type
-(30109, 4415, 3), -- One-handed Sword
-(30109, 4416, 14), -- Humans
+(30109, 4408, 1), -- HP Modifiers
+(30109, 4409, 1), -- MP Modifiers
+(30109, 4410, 11), -- P. Atk. Modifiers
+(30109, 4411, 11), -- M. Atk. Modifiers
+(30109, 4412, 11), -- P. Def. Modifiers
+(30109, 4413, 11), -- M. Def. Modifiers
+(30109, 4414, 2), -- Armor Type
+(30109, 4415, 3), -- Weapon Type
+(30109, 4416, 14), -- Races
 -- Iker
 (30110, 4045, 1), -- Resist Full Magic Attack
-(30110, 4408, 1), -- HP Increase (1x)
-(30110, 4409, 1), -- MP Increase (1x)
-(30110, 4410, 11), -- Average P. Atk.
-(30110, 4411, 11), -- Average M. Atk.
-(30110, 4412, 11), -- Average P. Def.
-(30110, 4413, 11), -- Average M. Def.
-(30110, 4414, 2), -- Standard Type
-(30110, 4415, 3), -- One-handed Sword
-(30110, 4416, 14), -- Humans
+(30110, 4408, 1), -- HP Modifiers
+(30110, 4409, 1), -- MP Modifiers
+(30110, 4410, 11), -- P. Atk. Modifiers
+(30110, 4411, 11), -- M. Atk. Modifiers
+(30110, 4412, 11), -- P. Def. Modifiers
+(30110, 4413, 11), -- M. Def. Modifiers
+(30110, 4414, 2), -- Armor Type
+(30110, 4415, 3), -- Weapon Type
+(30110, 4416, 14), -- Races
 -- Dieter
 (30111, 4045, 1), -- Resist Full Magic Attack
-(30111, 4408, 1), -- HP Increase (1x)
-(30111, 4409, 1), -- MP Increase (1x)
-(30111, 4410, 11), -- Average P. Atk.
-(30111, 4411, 11), -- Average M. Atk.
-(30111, 4412, 11), -- Average P. Def.
-(30111, 4413, 11), -- Average M. Def.
-(30111, 4414, 2), -- Standard Type
-(30111, 4415, 3), -- One-handed Sword
-(30111, 4416, 14), -- Humans
+(30111, 4408, 1), -- HP Modifiers
+(30111, 4409, 1), -- MP Modifiers
+(30111, 4410, 11), -- P. Atk. Modifiers
+(30111, 4411, 11), -- M. Atk. Modifiers
+(30111, 4412, 11), -- P. Def. Modifiers
+(30111, 4413, 11), -- M. Def. Modifiers
+(30111, 4414, 2), -- Armor Type
+(30111, 4415, 3), -- Weapon Type
+(30111, 4416, 14), -- Races
 -- Maurius
 (30112, 4045, 1), -- Resist Full Magic Attack
-(30112, 4408, 1), -- HP Increase (1x)
-(30112, 4409, 1), -- MP Increase (1x)
-(30112, 4410, 11), -- Average P. Atk.
-(30112, 4411, 11), -- Average M. Atk.
-(30112, 4412, 11), -- Average P. Def.
-(30112, 4413, 11), -- Average M. Def.
-(30112, 4414, 2), -- Standard Type
-(30112, 4415, 3), -- One-handed Sword
-(30112, 4416, 15), -- Elves
+(30112, 4408, 1), -- HP Modifiers
+(30112, 4409, 1), -- MP Modifiers
+(30112, 4410, 11), -- P. Atk. Modifiers
+(30112, 4411, 11), -- M. Atk. Modifiers
+(30112, 4412, 11), -- P. Def. Modifiers
+(30112, 4413, 11), -- M. Def. Modifiers
+(30112, 4414, 2), -- Armor Type
+(30112, 4415, 3), -- Weapon Type
+(30112, 4416, 15), -- Races
 -- Juris
 (30113, 4045, 1), -- Resist Full Magic Attack
-(30113, 4408, 1), -- HP Increase (1x)
-(30113, 4409, 1), -- MP Increase (1x)
-(30113, 4410, 11), -- Average P. Atk.
-(30113, 4411, 11), -- Average M. Atk.
-(30113, 4412, 11), -- Average P. Def.
-(30113, 4413, 11), -- Average M. Def.
-(30113, 4414, 2), -- Standard Type
-(30113, 4415, 3), -- One-handed Sword
-(30113, 4416, 15), -- Elves
+(30113, 4408, 1), -- HP Modifiers
+(30113, 4409, 1), -- MP Modifiers
+(30113, 4410, 11), -- P. Atk. Modifiers
+(30113, 4411, 11), -- M. Atk. Modifiers
+(30113, 4412, 11), -- P. Def. Modifiers
+(30113, 4413, 11), -- M. Def. Modifiers
+(30113, 4414, 2), -- Armor Type
+(30113, 4415, 3), -- Weapon Type
+(30113, 4416, 15), -- Races
 -- Roa
 (30114, 4045, 1), -- Resist Full Magic Attack
-(30114, 4408, 1), -- HP Increase (1x)
-(30114, 4409, 1), -- MP Increase (1x)
-(30114, 4410, 11), -- Average P. Atk.
-(30114, 4411, 11), -- Average M. Atk.
-(30114, 4412, 11), -- Average P. Def.
-(30114, 4413, 11), -- Average M. Def.
-(30114, 4414, 2), -- Standard Type
-(30114, 4415, 3), -- One-handed Sword
-(30114, 4416, 14), -- Humans
+(30114, 4408, 1), -- HP Modifiers
+(30114, 4409, 1), -- MP Modifiers
+(30114, 4410, 11), -- P. Atk. Modifiers
+(30114, 4411, 11), -- M. Atk. Modifiers
+(30114, 4412, 11), -- P. Def. Modifiers
+(30114, 4413, 11), -- M. Def. Modifiers
+(30114, 4414, 2), -- Armor Type
+(30114, 4415, 3), -- Weapon Type
+(30114, 4416, 14), -- Races
 -- Jurek
 (30115, 4045, 1), -- Resist Full Magic Attack
-(30115, 4408, 1), -- HP Increase (1x)
-(30115, 4409, 1), -- MP Increase (1x)
-(30115, 4410, 11), -- Average P. Atk.
-(30115, 4411, 11), -- Average M. Atk.
-(30115, 4412, 11), -- Average P. Def.
-(30115, 4413, 11), -- Average M. Def.
-(30115, 4414, 2), -- Standard Type
-(30115, 4415, 3), -- One-handed Sword
-(30115, 4416, 14), -- Humans
+(30115, 4408, 1), -- HP Modifiers
+(30115, 4409, 1), -- MP Modifiers
+(30115, 4410, 11), -- P. Atk. Modifiers
+(30115, 4411, 11), -- M. Atk. Modifiers
+(30115, 4412, 11), -- P. Def. Modifiers
+(30115, 4413, 11), -- M. Def. Modifiers
+(30115, 4414, 2), -- Armor Type
+(30115, 4415, 3), -- Weapon Type
+(30115, 4416, 14), -- Races
 -- Dustin
 (30116, 4045, 1), -- Resist Full Magic Attack
-(30116, 4408, 1), -- HP Increase (1x)
-(30116, 4409, 1), -- MP Increase (1x)
-(30116, 4410, 11), -- Average P. Atk.
-(30116, 4411, 11), -- Average M. Atk.
-(30116, 4412, 11), -- Average P. Def.
-(30116, 4413, 11), -- Average M. Def.
-(30116, 4414, 2), -- Standard Type
-(30116, 4415, 3), -- One-handed Sword
-(30116, 4416, 14), -- Humans
+(30116, 4408, 1), -- HP Modifiers
+(30116, 4409, 1), -- MP Modifiers
+(30116, 4410, 11), -- P. Atk. Modifiers
+(30116, 4411, 11), -- M. Atk. Modifiers
+(30116, 4412, 11), -- P. Def. Modifiers
+(30116, 4413, 11), -- M. Def. Modifiers
+(30116, 4414, 2), -- Armor Type
+(30116, 4415, 3), -- Weapon Type
+(30116, 4416, 14), -- Races
 -- Primos
 (30117, 4045, 1), -- Resist Full Magic Attack
-(30117, 4408, 1), -- HP Increase (1x)
-(30117, 4409, 1), -- MP Increase (1x)
-(30117, 4410, 11), -- Average P. Atk.
-(30117, 4411, 11), -- Average M. Atk.
-(30117, 4412, 11), -- Average P. Def.
-(30117, 4413, 11), -- Average M. Def.
-(30117, 4414, 2), -- Standard Type
-(30117, 4415, 3), -- One-handed Sword
-(30117, 4416, 14), -- Humans
+(30117, 4408, 1), -- HP Modifiers
+(30117, 4409, 1), -- MP Modifiers
+(30117, 4410, 11), -- P. Atk. Modifiers
+(30117, 4411, 11), -- M. Atk. Modifiers
+(30117, 4412, 11), -- P. Def. Modifiers
+(30117, 4413, 11), -- M. Def. Modifiers
+(30117, 4414, 2), -- Armor Type
+(30117, 4415, 3), -- Weapon Type
+(30117, 4416, 14), -- Races
 -- Pupina
 (30118, 4045, 1), -- Resist Full Magic Attack
-(30118, 4408, 1), -- HP Increase (1x)
-(30118, 4409, 1), -- MP Increase (1x)
-(30118, 4410, 11), -- Average P. Atk.
-(30118, 4411, 11), -- Average M. Atk.
-(30118, 4412, 11), -- Average P. Def.
-(30118, 4413, 11), -- Average M. Def.
-(30118, 4414, 2), -- Standard Type
-(30118, 4415, 3), -- One-handed Sword
-(30118, 4416, 14), -- Humans
+(30118, 4408, 1), -- HP Modifiers
+(30118, 4409, 1), -- MP Modifiers
+(30118, 4410, 11), -- P. Atk. Modifiers
+(30118, 4411, 11), -- M. Atk. Modifiers
+(30118, 4412, 11), -- P. Def. Modifiers
+(30118, 4413, 11), -- M. Def. Modifiers
+(30118, 4414, 2), -- Armor Type
+(30118, 4415, 3), -- Weapon Type
+(30118, 4416, 14), -- Races
 -- Isabellin
 (30119, 4045, 1), -- Resist Full Magic Attack
-(30119, 4408, 1), -- HP Increase (1x)
-(30119, 4409, 1), -- MP Increase (1x)
-(30119, 4410, 11), -- Average P. Atk.
-(30119, 4411, 11), -- Average M. Atk.
-(30119, 4412, 11), -- Average P. Def.
-(30119, 4413, 11), -- Average M. Def.
-(30119, 4414, 2), -- Standard Type
-(30119, 4415, 3), -- One-handed Sword
-(30119, 4416, 15), -- Elves
+(30119, 4408, 1), -- HP Modifiers
+(30119, 4409, 1), -- MP Modifiers
+(30119, 4410, 11), -- P. Atk. Modifiers
+(30119, 4411, 11), -- M. Atk. Modifiers
+(30119, 4412, 11), -- P. Def. Modifiers
+(30119, 4413, 11), -- M. Def. Modifiers
+(30119, 4414, 2), -- Armor Type
+(30119, 4415, 3), -- Weapon Type
+(30119, 4416, 15), -- Races
 -- Maximilian
 (30120, 4045, 1), -- Resist Full Magic Attack
-(30120, 4408, 1), -- HP Increase (1x)
-(30120, 4409, 1), -- MP Increase (1x)
-(30120, 4410, 11), -- Average P. Atk.
-(30120, 4411, 11), -- Average M. Atk.
-(30120, 4412, 11), -- Average P. Def.
-(30120, 4413, 11), -- Average M. Def.
-(30120, 4414, 2), -- Standard Type
-(30120, 4415, 3), -- One-handed Sword
-(30120, 4416, 14), -- Humans
+(30120, 4408, 1), -- HP Modifiers
+(30120, 4409, 1), -- MP Modifiers
+(30120, 4410, 11), -- P. Atk. Modifiers
+(30120, 4411, 11), -- M. Atk. Modifiers
+(30120, 4412, 11), -- P. Def. Modifiers
+(30120, 4413, 11), -- M. Def. Modifiers
+(30120, 4414, 2), -- Armor Type
+(30120, 4415, 3), -- Weapon Type
+(30120, 4416, 14), -- Races
 -- Jeronin
 (30121, 4045, 1), -- Resist Full Magic Attack
-(30121, 4408, 1), -- HP Increase (1x)
-(30121, 4409, 1), -- MP Increase (1x)
-(30121, 4410, 16), -- Very Strong P. Atk.
-(30121, 4411, 16), -- Very Strong M. Atk.
-(30121, 4412, 16), -- Very Strong P. Def.
-(30121, 4413, 16), -- Very Strong M. Def.
-(30121, 4414, 2), -- Standard Type
-(30121, 4415, 3), -- One-handed Sword
-(30121, 4416, 14), -- Humans
+(30121, 4408, 1), -- HP Modifiers
+(30121, 4409, 1), -- MP Modifiers
+(30121, 4410, 16), -- P. Atk. Modifiers
+(30121, 4411, 16), -- M. Atk. Modifiers
+(30121, 4412, 16), -- P. Def. Modifiers
+(30121, 4413, 16), -- M. Def. Modifiers
+(30121, 4414, 2), -- Armor Type
+(30121, 4415, 3), -- Weapon Type
+(30121, 4416, 14), -- Races
 -- Bane
 (30122, 4045, 1), -- Resist Full Magic Attack
-(30122, 4408, 1), -- HP Increase (1x)
-(30122, 4409, 1), -- MP Increase (1x)
-(30122, 4410, 16), -- Very Strong P. Atk.
-(30122, 4411, 16), -- Very Strong M. Atk.
-(30122, 4412, 16), -- Very Strong P. Def.
-(30122, 4413, 16), -- Very Strong M. Def.
-(30122, 4414, 2), -- Standard Type
-(30122, 4415, 9), -- Bows
-(30122, 4416, 14), -- Humans
+(30122, 4408, 1), -- HP Modifiers
+(30122, 4409, 1), -- MP Modifiers
+(30122, 4410, 16), -- P. Atk. Modifiers
+(30122, 4411, 16), -- M. Atk. Modifiers
+(30122, 4412, 16), -- P. Def. Modifiers
+(30122, 4413, 16), -- M. Def. Modifiers
+(30122, 4414, 2), -- Armor Type
+(30122, 4415, 9), -- Weapon Type
+(30122, 4416, 14), -- Races
 -- Vesa
 (30123, 4045, 1), -- Resist Full Magic Attack
-(30123, 4408, 1), -- HP Increase (1x)
-(30123, 4409, 1), -- MP Increase (1x)
-(30123, 4410, 16), -- Very Strong P. Atk.
-(30123, 4411, 16), -- Very Strong M. Atk.
-(30123, 4412, 16), -- Very Strong P. Def.
-(30123, 4413, 16), -- Very Strong M. Def.
-(30123, 4414, 2), -- Standard Type
-(30123, 4415, 9), -- Bows
-(30123, 4416, 14), -- Humans
+(30123, 4408, 1), -- HP Modifiers
+(30123, 4409, 1), -- MP Modifiers
+(30123, 4410, 16), -- P. Atk. Modifiers
+(30123, 4411, 16), -- M. Atk. Modifiers
+(30123, 4412, 16), -- P. Def. Modifiers
+(30123, 4413, 16), -- M. Def. Modifiers
+(30123, 4414, 2), -- Armor Type
+(30123, 4415, 9), -- Weapon Type
+(30123, 4416, 14), -- Races
 -- Zerome
 (30124, 4045, 1), -- Resist Full Magic Attack
-(30124, 4408, 1), -- HP Increase (1x)
-(30124, 4409, 1), -- MP Increase (1x)
-(30124, 4410, 16), -- Very Strong P. Atk.
-(30124, 4411, 16), -- Very Strong M. Atk.
-(30124, 4412, 16), -- Very Strong P. Def.
-(30124, 4413, 16), -- Very Strong M. Def.
-(30124, 4414, 2), -- Standard Type
-(30124, 4415, 3), -- One-handed Sword
-(30124, 4416, 14), -- Humans
+(30124, 4408, 1), -- HP Modifiers
+(30124, 4409, 1), -- MP Modifiers
+(30124, 4410, 16), -- P. Atk. Modifiers
+(30124, 4411, 16), -- M. Atk. Modifiers
+(30124, 4412, 16), -- P. Def. Modifiers
+(30124, 4413, 16), -- M. Def. Modifiers
+(30124, 4414, 2), -- Armor Type
+(30124, 4415, 3), -- Weapon Type
+(30124, 4416, 14), -- Races
 -- Belton
 (30125, 4045, 1), -- Resist Full Magic Attack
-(30125, 4408, 1), -- HP Increase (1x)
-(30125, 4409, 1), -- MP Increase (1x)
-(30125, 4410, 16), -- Very Strong P. Atk.
-(30125, 4411, 16), -- Very Strong M. Atk.
-(30125, 4412, 16), -- Very Strong P. Def.
-(30125, 4413, 16), -- Very Strong M. Def.
-(30125, 4414, 2), -- Standard Type
-(30125, 4415, 3), -- One-handed Sword
-(30125, 4416, 14), -- Humans
+(30125, 4408, 1), -- HP Modifiers
+(30125, 4409, 1), -- MP Modifiers
+(30125, 4410, 16), -- P. Atk. Modifiers
+(30125, 4411, 16), -- M. Atk. Modifiers
+(30125, 4412, 16), -- P. Def. Modifiers
+(30125, 4413, 16), -- M. Def. Modifiers
+(30125, 4414, 2), -- Armor Type
+(30125, 4415, 3), -- Weapon Type
+(30125, 4416, 14), -- Races
 -- Rath
 (30126, 4045, 1), -- Resist Full Magic Attack
-(30126, 4408, 1), -- HP Increase (1x)
-(30126, 4409, 1), -- MP Increase (1x)
-(30126, 4410, 16), -- Very Strong P. Atk.
-(30126, 4411, 16), -- Very Strong M. Atk.
-(30126, 4412, 16), -- Very Strong P. Def.
-(30126, 4413, 16), -- Very Strong M. Def.
-(30126, 4414, 2), -- Standard Type
-(30126, 4415, 3), -- One-handed Sword
-(30126, 4416, 14), -- Humans
+(30126, 4408, 1), -- HP Modifiers
+(30126, 4409, 1), -- MP Modifiers
+(30126, 4410, 16), -- P. Atk. Modifiers
+(30126, 4411, 16), -- M. Atk. Modifiers
+(30126, 4412, 16), -- P. Def. Modifiers
+(30126, 4413, 16), -- M. Def. Modifiers
+(30126, 4414, 2), -- Armor Type
+(30126, 4415, 3), -- Weapon Type
+(30126, 4416, 14), -- Races
 -- Atanas
 (30128, 4045, 1), -- Resist Full Magic Attack
-(30128, 4408, 1), -- HP Increase (1x)
-(30128, 4409, 1), -- MP Increase (1x)
-(30128, 4410, 16), -- Very Strong P. Atk.
-(30128, 4411, 16), -- Very Strong M. Atk.
-(30128, 4412, 16), -- Very Strong P. Def.
-(30128, 4413, 16), -- Very Strong M. Def.
-(30128, 4414, 2), -- Standard Type
-(30128, 4415, 3), -- One-handed Sword
-(30128, 4416, 14), -- Humans
+(30128, 4408, 1), -- HP Modifiers
+(30128, 4409, 1), -- MP Modifiers
+(30128, 4410, 16), -- P. Atk. Modifiers
+(30128, 4411, 16), -- M. Atk. Modifiers
+(30128, 4412, 16), -- P. Def. Modifiers
+(30128, 4413, 16), -- M. Def. Modifiers
+(30128, 4414, 2), -- Armor Type
+(30128, 4415, 3), -- Weapon Type
+(30128, 4416, 14), -- Races
 -- Mitraell
 (30129, 4045, 1), -- Resist Full Magic Attack
-(30129, 4408, 1), -- HP Increase (1x)
-(30129, 4409, 1), -- MP Increase (1x)
-(30129, 4410, 11), -- Average P. Atk.
-(30129, 4411, 11), -- Average M. Atk.
-(30129, 4412, 11), -- Average P. Def.
-(30129, 4413, 11), -- Average M. Def.
-(30129, 4414, 2), -- Standard Type
-(30129, 4415, 3), -- One-handed Sword
-(30129, 4416, 16), -- Dark Elves
+(30129, 4408, 1), -- HP Modifiers
+(30129, 4409, 1), -- MP Modifiers
+(30129, 4410, 11), -- P. Atk. Modifiers
+(30129, 4411, 11), -- M. Atk. Modifiers
+(30129, 4412, 11), -- P. Def. Modifiers
+(30129, 4413, 11), -- M. Def. Modifiers
+(30129, 4414, 2), -- Armor Type
+(30129, 4415, 3), -- Weapon Type
+(30129, 4416, 16), -- Races
 -- Undrias
 (30130, 4045, 1), -- Resist Full Magic Attack
-(30130, 4408, 1), -- HP Increase (1x)
-(30130, 4409, 1), -- MP Increase (1x)
-(30130, 4410, 11), -- Average P. Atk.
-(30130, 4411, 11), -- Average M. Atk.
-(30130, 4412, 11), -- Average P. Def.
-(30130, 4413, 11), -- Average M. Def.
-(30130, 4414, 2), -- Standard Type
-(30130, 4415, 3), -- One-handed Sword
-(30130, 4416, 16), -- Dark Elves
+(30130, 4408, 1), -- HP Modifiers
+(30130, 4409, 1), -- MP Modifiers
+(30130, 4410, 11), -- P. Atk. Modifiers
+(30130, 4411, 11), -- M. Atk. Modifiers
+(30130, 4412, 11), -- P. Def. Modifiers
+(30130, 4413, 11), -- M. Def. Modifiers
+(30130, 4414, 2), -- Armor Type
+(30130, 4415, 3), -- Weapon Type
+(30130, 4416, 16), -- Races
 -- Newbie Helper
 (30131, 4045, 1), -- Resist Full Magic Attack
-(30131, 4408, 1), -- HP Increase (1x)
-(30131, 4409, 1), -- MP Increase (1x)
-(30131, 4410, 11), -- Average P. Atk.
-(30131, 4411, 11), -- Average M. Atk.
-(30131, 4412, 11), -- Average P. Def.
-(30131, 4413, 11), -- Average M. Def.
-(30131, 4414, 2), -- Standard Type
-(30131, 4415, 3), -- One-handed Sword
-(30131, 4416, 16), -- Dark Elves
+(30131, 4408, 1), -- HP Modifiers
+(30131, 4409, 1), -- MP Modifiers
+(30131, 4410, 11), -- P. Atk. Modifiers
+(30131, 4411, 11), -- M. Atk. Modifiers
+(30131, 4412, 11), -- P. Def. Modifiers
+(30131, 4413, 11), -- M. Def. Modifiers
+(30131, 4414, 2), -- Armor Type
+(30131, 4415, 3), -- Weapon Type
+(30131, 4416, 16), -- Races
 -- Cecktinon
 (30132, 4045, 1), -- Resist Full Magic Attack
-(30132, 4408, 1), -- HP Increase (1x)
-(30132, 4409, 1), -- MP Increase (1x)
-(30132, 4410, 11), -- Average P. Atk.
-(30132, 4411, 11), -- Average M. Atk.
-(30132, 4412, 11), -- Average P. Def.
-(30132, 4413, 11), -- Average M. Def.
-(30132, 4414, 2), -- Standard Type
-(30132, 4415, 3), -- One-handed Sword
-(30132, 4416, 16), -- Dark Elves
+(30132, 4408, 1), -- HP Modifiers
+(30132, 4409, 1), -- MP Modifiers
+(30132, 4410, 11), -- P. Atk. Modifiers
+(30132, 4411, 11), -- M. Atk. Modifiers
+(30132, 4412, 11), -- P. Def. Modifiers
+(30132, 4413, 11), -- M. Def. Modifiers
+(30132, 4414, 2), -- Armor Type
+(30132, 4415, 3), -- Weapon Type
+(30132, 4416, 16), -- Races
 -- Kartia
 (30133, 4045, 1), -- Resist Full Magic Attack
-(30133, 4408, 1), -- HP Increase (1x)
-(30133, 4409, 1), -- MP Increase (1x)
-(30133, 4410, 11), -- Average P. Atk.
-(30133, 4411, 11), -- Average M. Atk.
-(30133, 4412, 11), -- Average P. Def.
-(30133, 4413, 11), -- Average M. Def.
-(30133, 4414, 2), -- Standard Type
-(30133, 4415, 3), -- One-handed Sword
-(30133, 4416, 16), -- Dark Elves
+(30133, 4408, 1), -- HP Modifiers
+(30133, 4409, 1), -- MP Modifiers
+(30133, 4410, 11), -- P. Atk. Modifiers
+(30133, 4411, 11), -- M. Atk. Modifiers
+(30133, 4412, 11), -- P. Def. Modifiers
+(30133, 4413, 11), -- M. Def. Modifiers
+(30133, 4414, 2), -- Armor Type
+(30133, 4415, 3), -- Weapon Type
+(30133, 4416, 16), -- Races
 -- Teleport Device
 (30134, 4045, 1), -- Resist Full Magic Attack
-(30134, 4408, 1), -- HP Increase (1x)
-(30134, 4409, 1), -- MP Increase (1x)
-(30134, 4410, 11), -- Average P. Atk.
-(30134, 4411, 11), -- Average M. Atk.
-(30134, 4412, 11), -- Average P. Def.
-(30134, 4413, 11), -- Average M. Def.
-(30134, 4414, 2), -- Standard Type
-(30134, 4415, 3), -- One-handed Sword
-(30134, 4416, 16), -- Dark Elves
+(30134, 4408, 1), -- HP Modifiers
+(30134, 4409, 1), -- MP Modifiers
+(30134, 4410, 11), -- P. Atk. Modifiers
+(30134, 4411, 11), -- M. Atk. Modifiers
+(30134, 4412, 11), -- P. Def. Modifiers
+(30134, 4413, 11), -- M. Def. Modifiers
+(30134, 4414, 2), -- Armor Type
+(30134, 4415, 3), -- Weapon Type
+(30134, 4416, 16), -- Races
 -- Iria
 (30135, 4045, 1), -- Resist Full Magic Attack
-(30135, 4408, 1), -- HP Increase (1x)
-(30135, 4409, 1), -- MP Increase (1x)
-(30135, 4410, 11), -- Average P. Atk.
-(30135, 4411, 11), -- Average M. Atk.
-(30135, 4412, 11), -- Average P. Def.
-(30135, 4413, 11), -- Average M. Def.
-(30135, 4414, 2), -- Standard Type
-(30135, 4415, 3), -- One-handed Sword
-(30135, 4416, 16), -- Dark Elves
+(30135, 4408, 1), -- HP Modifiers
+(30135, 4409, 1), -- MP Modifiers
+(30135, 4410, 11), -- P. Atk. Modifiers
+(30135, 4411, 11), -- M. Atk. Modifiers
+(30135, 4412, 11), -- P. Def. Modifiers
+(30135, 4413, 11), -- M. Def. Modifiers
+(30135, 4414, 2), -- Armor Type
+(30135, 4415, 3), -- Weapon Type
+(30135, 4416, 16), -- Races
 -- Payne
 (30136, 4045, 1), -- Resist Full Magic Attack
-(30136, 4408, 1), -- HP Increase (1x)
-(30136, 4409, 1), -- MP Increase (1x)
-(30136, 4410, 11), -- Average P. Atk.
-(30136, 4411, 11), -- Average M. Atk.
-(30136, 4412, 11), -- Average P. Def.
-(30136, 4413, 11), -- Average M. Def.
-(30136, 4414, 2), -- Standard Type
-(30136, 4415, 3), -- One-handed Sword
-(30136, 4416, 16), -- Dark Elves
+(30136, 4408, 1), -- HP Modifiers
+(30136, 4409, 1), -- MP Modifiers
+(30136, 4410, 11), -- P. Atk. Modifiers
+(30136, 4411, 11), -- M. Atk. Modifiers
+(30136, 4412, 11), -- P. Def. Modifiers
+(30136, 4413, 11), -- M. Def. Modifiers
+(30136, 4414, 2), -- Armor Type
+(30136, 4415, 3), -- Weapon Type
+(30136, 4416, 16), -- Races
 -- Vollodos
 (30137, 4045, 1), -- Resist Full Magic Attack
-(30137, 4408, 1), -- HP Increase (1x)
-(30137, 4409, 1), -- MP Increase (1x)
-(30137, 4410, 11), -- Average P. Atk.
-(30137, 4411, 11), -- Average M. Atk.
-(30137, 4412, 11), -- Average P. Def.
-(30137, 4413, 11), -- Average M. Def.
-(30137, 4414, 2), -- Standard Type
-(30137, 4415, 3), -- One-handed Sword
-(30137, 4416, 16), -- Dark Elves
+(30137, 4408, 1), -- HP Modifiers
+(30137, 4409, 1), -- MP Modifiers
+(30137, 4410, 11), -- P. Atk. Modifiers
+(30137, 4411, 11), -- M. Atk. Modifiers
+(30137, 4412, 11), -- P. Def. Modifiers
+(30137, 4413, 11), -- M. Def. Modifiers
+(30137, 4414, 2), -- Armor Type
+(30137, 4415, 3), -- Weapon Type
+(30137, 4416, 16), -- Races
 -- Minaless
 (30138, 4045, 1), -- Resist Full Magic Attack
-(30138, 4408, 1), -- HP Increase (1x)
-(30138, 4409, 1), -- MP Increase (1x)
-(30138, 4410, 11), -- Average P. Atk.
-(30138, 4411, 11), -- Average M. Atk.
-(30138, 4412, 11), -- Average P. Def.
-(30138, 4413, 11), -- Average M. Def.
-(30138, 4414, 2), -- Standard Type
-(30138, 4415, 3), -- One-handed Sword
-(30138, 4416, 16), -- Dark Elves
+(30138, 4408, 1), -- HP Modifiers
+(30138, 4409, 1), -- MP Modifiers
+(30138, 4410, 11), -- P. Atk. Modifiers
+(30138, 4411, 11), -- M. Atk. Modifiers
+(30138, 4412, 11), -- P. Def. Modifiers
+(30138, 4413, 11), -- M. Def. Modifiers
+(30138, 4414, 2), -- Armor Type
+(30138, 4415, 3), -- Weapon Type
+(30138, 4416, 16), -- Races
 -- Dorankus
 (30139, 4045, 1), -- Resist Full Magic Attack
-(30139, 4408, 1), -- HP Increase (1x)
-(30139, 4409, 1), -- MP Increase (1x)
-(30139, 4410, 11), -- Average P. Atk.
-(30139, 4411, 11), -- Average M. Atk.
-(30139, 4412, 11), -- Average P. Def.
-(30139, 4413, 11), -- Average M. Def.
-(30139, 4414, 2), -- Standard Type
-(30139, 4415, 3), -- One-handed Sword
-(30139, 4416, 16), -- Dark Elves
+(30139, 4408, 1), -- HP Modifiers
+(30139, 4409, 1), -- MP Modifiers
+(30139, 4410, 11), -- P. Atk. Modifiers
+(30139, 4411, 11), -- M. Atk. Modifiers
+(30139, 4412, 11), -- P. Def. Modifiers
+(30139, 4413, 11), -- M. Def. Modifiers
+(30139, 4414, 2), -- Armor Type
+(30139, 4415, 3), -- Weapon Type
+(30139, 4416, 16), -- Races
 -- Erviante
 (30140, 4045, 1), -- Resist Full Magic Attack
-(30140, 4408, 1), -- HP Increase (1x)
-(30140, 4409, 1), -- MP Increase (1x)
-(30140, 4410, 11), -- Average P. Atk.
-(30140, 4411, 11), -- Average M. Atk.
-(30140, 4412, 11), -- Average P. Def.
-(30140, 4413, 11), -- Average M. Def.
-(30140, 4414, 2), -- Standard Type
-(30140, 4415, 3), -- One-handed Sword
-(30140, 4416, 16), -- Dark Elves
+(30140, 4408, 1), -- HP Modifiers
+(30140, 4409, 1), -- MP Modifiers
+(30140, 4410, 11), -- P. Atk. Modifiers
+(30140, 4411, 11), -- M. Atk. Modifiers
+(30140, 4412, 11), -- P. Def. Modifiers
+(30140, 4413, 11), -- M. Def. Modifiers
+(30140, 4414, 2), -- Armor Type
+(30140, 4415, 3), -- Weapon Type
+(30140, 4416, 16), -- Races
 -- Talloth
 (30141, 4045, 1), -- Resist Full Magic Attack
-(30141, 4408, 1), -- HP Increase (1x)
-(30141, 4409, 1), -- MP Increase (1x)
-(30141, 4410, 11), -- Average P. Atk.
-(30141, 4411, 11), -- Average M. Atk.
-(30141, 4412, 11), -- Average P. Def.
-(30141, 4413, 11), -- Average M. Def.
-(30141, 4414, 2), -- Standard Type
-(30141, 4415, 3), -- One-handed Sword
-(30141, 4416, 16), -- Dark Elves
+(30141, 4408, 1), -- HP Modifiers
+(30141, 4409, 1), -- MP Modifiers
+(30141, 4410, 11), -- P. Atk. Modifiers
+(30141, 4411, 11), -- M. Atk. Modifiers
+(30141, 4412, 11), -- P. Def. Modifiers
+(30141, 4413, 11), -- M. Def. Modifiers
+(30141, 4414, 2), -- Armor Type
+(30141, 4415, 3), -- Weapon Type
+(30141, 4416, 16), -- Races
 -- Trudy
 (30143, 4045, 1), -- Resist Full Magic Attack
-(30143, 4408, 1), -- HP Increase (1x)
-(30143, 4409, 1), -- MP Increase (1x)
-(30143, 4410, 11), -- Average P. Atk.
-(30143, 4411, 11), -- Average M. Atk.
-(30143, 4412, 11), -- Average P. Def.
-(30143, 4413, 11), -- Average M. Def.
-(30143, 4414, 2), -- Standard Type
-(30143, 4415, 3), -- One-handed Sword
-(30143, 4416, 16), -- Dark Elves
+(30143, 4408, 1), -- HP Modifiers
+(30143, 4409, 1), -- MP Modifiers
+(30143, 4410, 11), -- P. Atk. Modifiers
+(30143, 4411, 11), -- M. Atk. Modifiers
+(30143, 4412, 11), -- P. Def. Modifiers
+(30143, 4413, 11), -- M. Def. Modifiers
+(30143, 4414, 2), -- Armor Type
+(30143, 4415, 3), -- Weapon Type
+(30143, 4416, 16), -- Races
 -- Harne
 (30144, 4045, 1), -- Resist Full Magic Attack
-(30144, 4408, 1), -- HP Increase (1x)
-(30144, 4409, 1), -- MP Increase (1x)
-(30144, 4410, 11), -- Average P. Atk.
-(30144, 4411, 11), -- Average M. Atk.
-(30144, 4412, 11), -- Average P. Def.
-(30144, 4413, 11), -- Average M. Def.
-(30144, 4414, 2), -- Standard Type
-(30144, 4415, 3), -- One-handed Sword
-(30144, 4416, 16), -- Dark Elves
+(30144, 4408, 1), -- HP Modifiers
+(30144, 4409, 1), -- MP Modifiers
+(30144, 4410, 11), -- P. Atk. Modifiers
+(30144, 4411, 11), -- M. Atk. Modifiers
+(30144, 4412, 11), -- P. Def. Modifiers
+(30144, 4413, 11), -- M. Def. Modifiers
+(30144, 4414, 2), -- Armor Type
+(30144, 4415, 3), -- Weapon Type
+(30144, 4416, 16), -- Races
 -- Vlasty
 (30145, 4045, 1), -- Resist Full Magic Attack
-(30145, 4408, 1), -- HP Increase (1x)
-(30145, 4409, 1), -- MP Increase (1x)
-(30145, 4410, 11), -- Average P. Atk.
-(30145, 4411, 11), -- Average M. Atk.
-(30145, 4412, 11), -- Average P. Def.
-(30145, 4413, 11), -- Average M. Def.
-(30145, 4414, 2), -- Standard Type
-(30145, 4415, 3), -- One-handed Sword
-(30145, 4416, 16), -- Dark Elves
+(30145, 4408, 1), -- HP Modifiers
+(30145, 4409, 1), -- MP Modifiers
+(30145, 4410, 11), -- P. Atk. Modifiers
+(30145, 4411, 11), -- M. Atk. Modifiers
+(30145, 4412, 11), -- P. Def. Modifiers
+(30145, 4413, 11), -- M. Def. Modifiers
+(30145, 4414, 2), -- Armor Type
+(30145, 4415, 3), -- Weapon Type
+(30145, 4416, 16), -- Races
 -- Teleport Device
 (30146, 4045, 1), -- Resist Full Magic Attack
-(30146, 4408, 1), -- HP Increase (1x)
-(30146, 4409, 1), -- MP Increase (1x)
-(30146, 4410, 11), -- Average P. Atk.
-(30146, 4411, 11), -- Average M. Atk.
-(30146, 4412, 11), -- Average P. Def.
-(30146, 4413, 11), -- Average M. Def.
-(30146, 4414, 2), -- Standard Type
-(30146, 4415, 3), -- One-handed Sword
-(30146, 4416, 15), -- Elves
+(30146, 4408, 1), -- HP Modifiers
+(30146, 4409, 1), -- MP Modifiers
+(30146, 4410, 11), -- P. Atk. Modifiers
+(30146, 4411, 11), -- M. Atk. Modifiers
+(30146, 4412, 11), -- P. Def. Modifiers
+(30146, 4413, 11), -- M. Def. Modifiers
+(30146, 4414, 2), -- Armor Type
+(30146, 4415, 3), -- Weapon Type
+(30146, 4416, 15), -- Races
 -- Unoren
 (30147, 4045, 1), -- Resist Full Magic Attack
-(30147, 4408, 1), -- HP Increase (1x)
-(30147, 4409, 1), -- MP Increase (1x)
-(30147, 4410, 11), -- Average P. Atk.
-(30147, 4411, 11), -- Average M. Atk.
-(30147, 4412, 11), -- Average P. Def.
-(30147, 4413, 11), -- Average M. Def.
-(30147, 4414, 2), -- Standard Type
-(30147, 4415, 3), -- One-handed Sword
-(30147, 4416, 15), -- Elves
+(30147, 4408, 1), -- HP Modifiers
+(30147, 4409, 1), -- MP Modifiers
+(30147, 4410, 11), -- P. Atk. Modifiers
+(30147, 4411, 11), -- M. Atk. Modifiers
+(30147, 4412, 11), -- P. Def. Modifiers
+(30147, 4413, 11), -- M. Def. Modifiers
+(30147, 4414, 2), -- Armor Type
+(30147, 4415, 3), -- Weapon Type
+(30147, 4416, 15), -- Races
 -- Ariel
 (30148, 4045, 1), -- Resist Full Magic Attack
-(30148, 4408, 1), -- HP Increase (1x)
-(30148, 4409, 1), -- MP Increase (1x)
-(30148, 4410, 11), -- Average P. Atk.
-(30148, 4411, 11), -- Average M. Atk.
-(30148, 4412, 11), -- Average P. Def.
-(30148, 4413, 11), -- Average M. Def.
-(30148, 4414, 2), -- Standard Type
-(30148, 4415, 3), -- One-handed Sword
-(30148, 4416, 15), -- Elves
+(30148, 4408, 1), -- HP Modifiers
+(30148, 4409, 1), -- MP Modifiers
+(30148, 4410, 11), -- P. Atk. Modifiers
+(30148, 4411, 11), -- M. Atk. Modifiers
+(30148, 4412, 11), -- P. Def. Modifiers
+(30148, 4413, 11), -- M. Def. Modifiers
+(30148, 4414, 2), -- Armor Type
+(30148, 4415, 3), -- Weapon Type
+(30148, 4416, 15), -- Races
 -- Creamees
 (30149, 4045, 1), -- Resist Full Magic Attack
-(30149, 4408, 1), -- HP Increase (1x)
-(30149, 4409, 1), -- MP Increase (1x)
-(30149, 4410, 11), -- Average P. Atk.
-(30149, 4411, 11), -- Average M. Atk.
-(30149, 4412, 11), -- Average P. Def.
-(30149, 4413, 11), -- Average M. Def.
-(30149, 4414, 2), -- Standard Type
-(30149, 4415, 3), -- One-handed Sword
-(30149, 4416, 15), -- Elves
+(30149, 4408, 1), -- HP Modifiers
+(30149, 4409, 1), -- MP Modifiers
+(30149, 4410, 11), -- P. Atk. Modifiers
+(30149, 4411, 11), -- M. Atk. Modifiers
+(30149, 4412, 11), -- P. Def. Modifiers
+(30149, 4413, 11), -- M. Def. Modifiers
+(30149, 4414, 2), -- Armor Type
+(30149, 4415, 3), -- Weapon Type
+(30149, 4416, 15), -- Races
 -- Herbiel
 (30150, 4045, 1), -- Resist Full Magic Attack
-(30150, 4408, 1), -- HP Increase (1x)
-(30150, 4409, 1), -- MP Increase (1x)
-(30150, 4410, 11), -- Average P. Atk.
-(30150, 4411, 11), -- Average M. Atk.
-(30150, 4412, 11), -- Average P. Def.
-(30150, 4413, 11), -- Average M. Def.
-(30150, 4414, 2), -- Standard Type
-(30150, 4415, 3), -- One-handed Sword
-(30150, 4416, 15), -- Elves
+(30150, 4408, 1), -- HP Modifiers
+(30150, 4409, 1), -- MP Modifiers
+(30150, 4410, 11), -- P. Atk. Modifiers
+(30150, 4411, 11), -- M. Atk. Modifiers
+(30150, 4412, 11), -- P. Def. Modifiers
+(30150, 4413, 11), -- M. Def. Modifiers
+(30150, 4414, 2), -- Armor Type
+(30150, 4415, 3), -- Weapon Type
+(30150, 4416, 15), -- Races
 -- Chad
 (30151, 4045, 1), -- Resist Full Magic Attack
-(30151, 4408, 1), -- HP Increase (1x)
-(30151, 4409, 1), -- MP Increase (1x)
-(30151, 4410, 11), -- Average P. Atk.
-(30151, 4411, 11), -- Average M. Atk.
-(30151, 4412, 11), -- Average P. Def.
-(30151, 4413, 11), -- Average M. Def.
-(30151, 4414, 2), -- Standard Type
-(30151, 4415, 3), -- One-handed Sword
-(30151, 4416, 15), -- Elves
+(30151, 4408, 1), -- HP Modifiers
+(30151, 4409, 1), -- MP Modifiers
+(30151, 4410, 11), -- P. Atk. Modifiers
+(30151, 4411, 11), -- M. Atk. Modifiers
+(30151, 4412, 11), -- P. Def. Modifiers
+(30151, 4413, 11), -- M. Def. Modifiers
+(30151, 4414, 2), -- Armor Type
+(30151, 4415, 3), -- Weapon Type
+(30151, 4416, 15), -- Races
 -- Julia
 (30152, 4045, 1), -- Resist Full Magic Attack
-(30152, 4408, 1), -- HP Increase (1x)
-(30152, 4409, 1), -- MP Increase (1x)
-(30152, 4410, 11), -- Average P. Atk.
-(30152, 4411, 11), -- Average M. Atk.
-(30152, 4412, 11), -- Average P. Def.
-(30152, 4413, 11), -- Average M. Def.
-(30152, 4414, 2), -- Standard Type
-(30152, 4415, 3), -- One-handed Sword
-(30152, 4416, 15), -- Elves
+(30152, 4408, 1), -- HP Modifiers
+(30152, 4409, 1), -- MP Modifiers
+(30152, 4410, 11), -- P. Atk. Modifiers
+(30152, 4411, 11), -- M. Atk. Modifiers
+(30152, 4412, 11), -- P. Def. Modifiers
+(30152, 4413, 11), -- M. Def. Modifiers
+(30152, 4414, 2), -- Armor Type
+(30152, 4415, 3), -- Weapon Type
+(30152, 4416, 15), -- Races
 -- Markius
 (30153, 4045, 1), -- Resist Full Magic Attack
-(30153, 4408, 1), -- HP Increase (1x)
-(30153, 4409, 1), -- MP Increase (1x)
-(30153, 4410, 11), -- Average P. Atk.
-(30153, 4411, 11), -- Average M. Atk.
-(30153, 4412, 11), -- Average P. Def.
-(30153, 4413, 11), -- Average M. Def.
-(30153, 4414, 2), -- Standard Type
-(30153, 4415, 3), -- One-handed Sword
-(30153, 4416, 15), -- Elves
+(30153, 4408, 1), -- HP Modifiers
+(30153, 4409, 1), -- MP Modifiers
+(30153, 4410, 11), -- P. Atk. Modifiers
+(30153, 4411, 11), -- M. Atk. Modifiers
+(30153, 4412, 11), -- P. Def. Modifiers
+(30153, 4413, 11), -- M. Def. Modifiers
+(30153, 4414, 2), -- Armor Type
+(30153, 4415, 3), -- Weapon Type
+(30153, 4416, 15), -- Races
 -- Asterios
 (30154, 4045, 1), -- Resist Full Magic Attack
-(30154, 4408, 1), -- HP Increase (1x)
-(30154, 4409, 1), -- MP Increase (1x)
-(30154, 4410, 11), -- Average P. Atk.
-(30154, 4411, 11), -- Average M. Atk.
-(30154, 4412, 11), -- Average P. Def.
-(30154, 4413, 11), -- Average M. Def.
-(30154, 4414, 2), -- Standard Type
-(30154, 4415, 3), -- One-handed Sword
-(30154, 4416, 15), -- Elves
+(30154, 4408, 1), -- HP Modifiers
+(30154, 4409, 1), -- MP Modifiers
+(30154, 4410, 11), -- P. Atk. Modifiers
+(30154, 4411, 11), -- M. Atk. Modifiers
+(30154, 4412, 11), -- P. Def. Modifiers
+(30154, 4413, 11), -- M. Def. Modifiers
+(30154, 4414, 2), -- Armor Type
+(30154, 4415, 3), -- Weapon Type
+(30154, 4416, 15), -- Races
 -- Ellenia
 (30155, 4045, 1), -- Resist Full Magic Attack
-(30155, 4408, 1), -- HP Increase (1x)
-(30155, 4409, 1), -- MP Increase (1x)
-(30155, 4410, 11), -- Average P. Atk.
-(30155, 4411, 11), -- Average M. Atk.
-(30155, 4412, 11), -- Average P. Def.
-(30155, 4413, 11), -- Average M. Def.
-(30155, 4414, 2), -- Standard Type
-(30155, 4415, 3), -- One-handed Sword
-(30155, 4416, 15), -- Elves
+(30155, 4408, 1), -- HP Modifiers
+(30155, 4409, 1), -- MP Modifiers
+(30155, 4410, 11), -- P. Atk. Modifiers
+(30155, 4411, 11), -- M. Atk. Modifiers
+(30155, 4412, 11), -- P. Def. Modifiers
+(30155, 4413, 11), -- M. Def. Modifiers
+(30155, 4414, 2), -- Armor Type
+(30155, 4415, 3), -- Weapon Type
+(30155, 4416, 15), -- Races
 -- Esrandell
 (30156, 4045, 1), -- Resist Full Magic Attack
-(30156, 4408, 1), -- HP Increase (1x)
-(30156, 4409, 1), -- MP Increase (1x)
-(30156, 4410, 11), -- Average P. Atk.
-(30156, 4411, 11), -- Average M. Atk.
-(30156, 4412, 11), -- Average P. Def.
-(30156, 4413, 11), -- Average M. Def.
-(30156, 4414, 2), -- Standard Type
-(30156, 4415, 3), -- One-handed Sword
-(30156, 4416, 15), -- Elves
+(30156, 4408, 1), -- HP Modifiers
+(30156, 4409, 1), -- MP Modifiers
+(30156, 4410, 11), -- P. Atk. Modifiers
+(30156, 4411, 11), -- M. Atk. Modifiers
+(30156, 4412, 11), -- P. Def. Modifiers
+(30156, 4413, 11), -- M. Def. Modifiers
+(30156, 4414, 2), -- Armor Type
+(30156, 4415, 3), -- Weapon Type
+(30156, 4416, 15), -- Races
 -- Greenis
 (30157, 4045, 1), -- Resist Full Magic Attack
-(30157, 4408, 1), -- HP Increase (1x)
-(30157, 4409, 1), -- MP Increase (1x)
-(30157, 4410, 11), -- Average P. Atk.
-(30157, 4411, 11), -- Average M. Atk.
-(30157, 4412, 11), -- Average P. Def.
-(30157, 4413, 11), -- Average M. Def.
-(30157, 4414, 2), -- Standard Type
-(30157, 4415, 3), -- One-handed Sword
-(30157, 4416, 15), -- Elves
+(30157, 4408, 1), -- HP Modifiers
+(30157, 4409, 1), -- MP Modifiers
+(30157, 4410, 11), -- P. Atk. Modifiers
+(30157, 4411, 11), -- M. Atk. Modifiers
+(30157, 4412, 11), -- P. Def. Modifiers
+(30157, 4413, 11), -- M. Def. Modifiers
+(30157, 4414, 2), -- Armor Type
+(30157, 4415, 3), -- Weapon Type
+(30157, 4416, 15), -- Races
 -- Esrandell
 (30158, 4045, 1), -- Resist Full Magic Attack
-(30158, 4408, 1), -- HP Increase (1x)
-(30158, 4409, 1), -- MP Increase (1x)
-(30158, 4410, 11), -- Average P. Atk.
-(30158, 4411, 11), -- Average M. Atk.
-(30158, 4412, 11), -- Average P. Def.
-(30158, 4413, 11), -- Average M. Def.
-(30158, 4414, 2), -- Standard Type
-(30158, 4415, 3), -- One-handed Sword
-(30158, 4416, 15), -- Elves
+(30158, 4408, 1), -- HP Modifiers
+(30158, 4409, 1), -- MP Modifiers
+(30158, 4410, 11), -- P. Atk. Modifiers
+(30158, 4411, 11), -- M. Atk. Modifiers
+(30158, 4412, 11), -- P. Def. Modifiers
+(30158, 4413, 11), -- M. Def. Modifiers
+(30158, 4414, 2), -- Armor Type
+(30158, 4415, 3), -- Weapon Type
+(30158, 4416, 15), -- Races
 -- Karin
 (30162, 4045, 1), -- Resist Full Magic Attack
-(30162, 4408, 1), -- HP Increase (1x)
-(30162, 4409, 1), -- MP Increase (1x)
-(30162, 4410, 11), -- Average P. Atk.
-(30162, 4411, 11), -- Average M. Atk.
-(30162, 4412, 11), -- Average P. Def.
-(30162, 4413, 11), -- Average M. Def.
-(30162, 4414, 2), -- Standard Type
-(30162, 4415, 3), -- One-handed Sword
-(30162, 4416, 14), -- Humans
+(30162, 4408, 1), -- HP Modifiers
+(30162, 4409, 1); -- MP Modifiers
+
+INSERT INTO `npcskills` VALUES
+(30162, 4410, 11), -- P. Atk. Modifiers
+(30162, 4411, 11), -- M. Atk. Modifiers
+(30162, 4412, 11), -- P. Def. Modifiers
+(30162, 4413, 11), -- M. Def. Modifiers
+(30162, 4414, 2), -- Armor Type
+(30162, 4415, 3), -- Weapon Type
+(30162, 4416, 14), -- Races
 -- Rex
 (30163, 4045, 1), -- Resist Full Magic Attack
-(30163, 4408, 1), -- HP Increase (1x)
-(30163, 4409, 1), -- MP Increase (1x)
-(30163, 4410, 11), -- Average P. Atk.
-(30163, 4411, 11), -- Average M. Atk.
-(30163, 4412, 11), -- Average P. Def.
-(30163, 4413, 11), -- Average M. Def.
-(30163, 4414, 2), -- Standard Type
-(30163, 4415, 3), -- One-handed Sword
-(30163, 4416, 14), -- Humans
+(30163, 4408, 1), -- HP Modifiers
+(30163, 4409, 1), -- MP Modifiers
+(30163, 4410, 11), -- P. Atk. Modifiers
+(30163, 4411, 11), -- M. Atk. Modifiers
+(30163, 4412, 11), -- P. Def. Modifiers
+(30163, 4413, 11), -- M. Def. Modifiers
+(30163, 4414, 2), -- Armor Type
+(30163, 4415, 3), -- Weapon Type
+(30163, 4416, 14), -- Races
 -- Ian
 (30164, 4045, 1), -- Resist Full Magic Attack
-(30164, 4408, 1), -- HP Increase (1x)
-(30164, 4409, 1), -- MP Increase (1x)
-(30164, 4410, 11), -- Average P. Atk.
-(30164, 4411, 11), -- Average M. Atk.
-(30164, 4412, 11), -- Average P. Def.
-(30164, 4413, 11), -- Average M. Def.
-(30164, 4414, 2), -- Standard Type
-(30164, 4415, 3), -- One-handed Sword
-(30164, 4416, 14), -- Humans
+(30164, 4408, 1), -- HP Modifiers
+(30164, 4409, 1), -- MP Modifiers
+(30164, 4410, 11), -- P. Atk. Modifiers
+(30164, 4411, 11), -- M. Atk. Modifiers
+(30164, 4412, 11), -- P. Def. Modifiers
+(30164, 4413, 11), -- M. Def. Modifiers
+(30164, 4414, 2), -- Armor Type
+(30164, 4415, 3), -- Weapon Type
+(30164, 4416, 14), -- Races
 -- Ralford
 (30165, 4045, 1), -- Resist Full Magic Attack
-(30165, 4408, 1), -- HP Increase (1x)
-(30165, 4409, 1), -- MP Increase (1x)
-(30165, 4410, 11), -- Average P. Atk.
-(30165, 4411, 11), -- Average M. Atk.
-(30165, 4412, 11), -- Average P. Def.
-(30165, 4413, 11), -- Average M. Def.
-(30165, 4414, 2), -- Standard Type
-(30165, 4415, 3), -- One-handed Sword
-(30165, 4416, 15), -- Elves
+(30165, 4408, 1), -- HP Modifiers
+(30165, 4409, 1), -- MP Modifiers
+(30165, 4410, 11), -- P. Atk. Modifiers
+(30165, 4411, 11), -- M. Atk. Modifiers
+(30165, 4412, 11), -- P. Def. Modifiers
+(30165, 4413, 11), -- M. Def. Modifiers
+(30165, 4414, 2), -- Armor Type
+(30165, 4415, 3), -- Weapon Type
+(30165, 4416, 15), -- Races
 -- Wesley
 (30166, 4045, 1), -- Resist Full Magic Attack
-(30166, 4408, 1), -- HP Increase (1x)
-(30166, 4409, 1), -- MP Increase (1x)
-(30166, 4410, 11), -- Average P. Atk.
-(30166, 4411, 11), -- Average M. Atk.
-(30166, 4412, 11), -- Average P. Def.
-(30166, 4413, 11), -- Average M. Def.
-(30166, 4414, 2), -- Standard Type
-(30166, 4415, 3), -- One-handed Sword
-(30166, 4416, 14), -- Humans
+(30166, 4408, 1), -- HP Modifiers
+(30166, 4409, 1), -- MP Modifiers
+(30166, 4410, 11), -- P. Atk. Modifiers
+(30166, 4411, 11), -- M. Atk. Modifiers
+(30166, 4412, 11), -- P. Def. Modifiers
+(30166, 4413, 11), -- M. Def. Modifiers
+(30166, 4414, 2), -- Armor Type
+(30166, 4415, 3), -- Weapon Type
+(30166, 4416, 14), -- Races
 -- Marty
 (30169, 4045, 1), -- Resist Full Magic Attack
-(30169, 4408, 1), -- HP Increase (1x)
-(30169, 4409, 1), -- MP Increase (1x)
-(30169, 4410, 11), -- Average P. Atk.
-(30169, 4411, 11), -- Average M. Atk.
-(30169, 4412, 11), -- Average P. Def.
-(30169, 4413, 11), -- Average M. Def.
-(30169, 4414, 2), -- Standard Type
-(30169, 4415, 3), -- One-handed Sword
-(30169, 4416, 18), -- Dwarves
+(30169, 4408, 1), -- HP Modifiers
+(30169, 4409, 1), -- MP Modifiers
+(30169, 4410, 11), -- P. Atk. Modifiers
+(30169, 4411, 11), -- M. Atk. Modifiers
+(30169, 4412, 11), -- P. Def. Modifiers
+(30169, 4413, 11), -- M. Def. Modifiers
+(30169, 4414, 2), -- Armor Type
+(30169, 4415, 3), -- Weapon Type
+(30169, 4416, 18), -- Races
 -- Radic
 (30170, 4045, 1), -- Resist Full Magic Attack
-(30170, 4408, 1), -- HP Increase (1x)
-(30170, 4409, 1), -- MP Increase (1x)
-(30170, 4410, 11), -- Average P. Atk.
-(30170, 4411, 11), -- Average M. Atk.
-(30170, 4412, 11), -- Average P. Def.
-(30170, 4413, 11), -- Average M. Def.
-(30170, 4414, 2), -- Standard Type
-(30170, 4415, 3), -- One-handed Sword
-(30170, 4416, 18), -- Dwarves
+(30170, 4408, 1), -- HP Modifiers
+(30170, 4409, 1), -- MP Modifiers
+(30170, 4410, 11), -- P. Atk. Modifiers
+(30170, 4411, 11), -- M. Atk. Modifiers
+(30170, 4412, 11), -- P. Def. Modifiers
+(30170, 4413, 11), -- M. Def. Modifiers
+(30170, 4414, 2), -- Armor Type
+(30170, 4415, 3), -- Weapon Type
+(30170, 4416, 18), -- Races
 -- Gaius
 (30171, 4045, 1), -- Resist Full Magic Attack
-(30171, 4408, 1), -- HP Increase (1x)
-(30171, 4409, 1), -- MP Increase (1x)
-(30171, 4410, 11), -- Average P. Atk.
-(30171, 4411, 11), -- Average M. Atk.
-(30171, 4412, 11), -- Average P. Def.
-(30171, 4413, 11), -- Average M. Def.
-(30171, 4414, 2), -- Standard Type
-(30171, 4415, 3), -- One-handed Sword
-(30171, 4416, 14), -- Humans
+(30171, 4408, 1), -- HP Modifiers
+(30171, 4409, 1), -- MP Modifiers
+(30171, 4410, 11), -- P. Atk. Modifiers
+(30171, 4411, 11), -- M. Atk. Modifiers
+(30171, 4412, 11), -- P. Def. Modifiers
+(30171, 4413, 11), -- M. Def. Modifiers
+(30171, 4414, 2), -- Armor Type
+(30171, 4415, 3), -- Weapon Type
+(30171, 4416, 14), -- Races
 -- Arkenias
 (30174, 4045, 1), -- Resist Full Magic Attack
-(30174, 4408, 1), -- HP Increase (1x)
-(30174, 4409, 1), -- MP Increase (1x)
-(30174, 4410, 11), -- Average P. Atk.
-(30174, 4411, 11), -- Average M. Atk.
-(30174, 4412, 11), -- Average P. Def.
-(30174, 4413, 11), -- Average M. Def.
-(30174, 4414, 2), -- Standard Type
-(30174, 4415, 3), -- One-handed Sword
-(30174, 4416, 15), -- Elves
+(30174, 4408, 1), -- HP Modifiers
+(30174, 4409, 1), -- MP Modifiers
+(30174, 4410, 11), -- P. Atk. Modifiers
+(30174, 4411, 11), -- M. Atk. Modifiers
+(30174, 4412, 11), -- P. Def. Modifiers
+(30174, 4413, 11), -- M. Def. Modifiers
+(30174, 4414, 2), -- Armor Type
+(30174, 4415, 3), -- Weapon Type
+(30174, 4416, 15), -- Races
 -- Fairen
 (30175, 4045, 1), -- Resist Full Magic Attack
-(30175, 4408, 1), -- HP Increase (1x)
-(30175, 4409, 1), -- MP Increase (1x)
-(30175, 4410, 11), -- Average P. Atk.
-(30175, 4411, 11), -- Average M. Atk.
-(30175, 4412, 11), -- Average P. Def.
-(30175, 4413, 11), -- Average M. Def.
-(30175, 4414, 2), -- Standard Type
-(30175, 4415, 3), -- One-handed Sword
-(30175, 4416, 16), -- Dark Elves
+(30175, 4408, 1), -- HP Modifiers
+(30175, 4409, 1), -- MP Modifiers
+(30175, 4410, 11), -- P. Atk. Modifiers
+(30175, 4411, 11), -- M. Atk. Modifiers
+(30175, 4412, 11), -- P. Def. Modifiers
+(30175, 4413, 11), -- M. Def. Modifiers
+(30175, 4414, 2), -- Armor Type
+(30175, 4415, 3), -- Weapon Type
+(30175, 4416, 16), -- Races
 -- Valleria
 (30176, 4045, 1), -- Resist Full Magic Attack
-(30176, 4408, 1), -- HP Increase (1x)
-(30176, 4409, 1), -- MP Increase (1x)
-(30176, 4410, 11), -- Average P. Atk.
-(30176, 4411, 11), -- Average M. Atk.
-(30176, 4412, 11), -- Average P. Def.
-(30176, 4413, 11), -- Average M. Def.
-(30176, 4414, 2), -- Standard Type
-(30176, 4415, 3), -- One-handed Sword
-(30176, 4416, 14), -- Humans
+(30176, 4408, 1), -- HP Modifiers
+(30176, 4409, 1), -- MP Modifiers
+(30176, 4410, 11), -- P. Atk. Modifiers
+(30176, 4411, 11), -- M. Atk. Modifiers
+(30176, 4412, 11), -- P. Def. Modifiers
+(30176, 4413, 11), -- M. Def. Modifiers
+(30176, 4414, 2), -- Armor Type
+(30176, 4415, 3), -- Weapon Type
+(30176, 4416, 14), -- Races
 -- Valentina
 (30177, 4045, 1), -- Resist Full Magic Attack
-(30177, 4408, 1), -- HP Increase (1x)
-(30177, 4409, 1), -- MP Increase (1x)
-(30177, 4410, 11), -- Average P. Atk.
-(30177, 4411, 11), -- Average M. Atk.
-(30177, 4412, 11), -- Average P. Def.
-(30177, 4413, 11), -- Average M. Def.
-(30177, 4414, 2), -- Standard Type
-(30177, 4415, 3), -- One-handed Sword
-(30177, 4416, 14), -- Humans
+(30177, 4408, 1), -- HP Modifiers
+(30177, 4409, 1), -- MP Modifiers
+(30177, 4410, 11), -- P. Atk. Modifiers
+(30177, 4411, 11), -- M. Atk. Modifiers
+(30177, 4412, 11), -- P. Def. Modifiers
+(30177, 4413, 11), -- M. Def. Modifiers
+(30177, 4414, 2), -- Armor Type
+(30177, 4415, 3), -- Weapon Type
+(30177, 4416, 14), -- Races
 -- Zenkin
 (30178, 4045, 1), -- Resist Full Magic Attack
-(30178, 4408, 1), -- HP Increase (1x)
-(30178, 4409, 1), -- MP Increase (1x)
-(30178, 4410, 11), -- Average P. Atk.
-(30178, 4411, 11), -- Average M. Atk.
-(30178, 4412, 11), -- Average P. Def.
-(30178, 4413, 11), -- Average M. Def.
-(30178, 4414, 2), -- Standard Type
-(30178, 4415, 3), -- One-handed Sword
-(30178, 4416, 14), -- Humans
+(30178, 4408, 1), -- HP Modifiers
+(30178, 4409, 1), -- MP Modifiers
+(30178, 4410, 11), -- P. Atk. Modifiers
+(30178, 4411, 11), -- M. Atk. Modifiers
+(30178, 4412, 11), -- P. Def. Modifiers
+(30178, 4413, 11), -- M. Def. Modifiers
+(30178, 4414, 2), -- Armor Type
+(30178, 4415, 3), -- Weapon Type
+(30178, 4416, 14), -- Races
 -- Raudia
 (30179, 4045, 1), -- Resist Full Magic Attack
-(30179, 4408, 1), -- HP Increase (1x)
-(30179, 4409, 1), -- MP Increase (1x)
-(30179, 4410, 11), -- Average P. Atk.
-(30179, 4411, 11), -- Average M. Atk.
-(30179, 4412, 11), -- Average P. Def.
-(30179, 4413, 11), -- Average M. Def.
-(30179, 4414, 2), -- Standard Type
-(30179, 4415, 3), -- One-handed Sword
-(30179, 4416, 14), -- Humans
+(30179, 4408, 1), -- HP Modifiers
+(30179, 4409, 1), -- MP Modifiers
+(30179, 4410, 11), -- P. Atk. Modifiers
+(30179, 4411, 11), -- M. Atk. Modifiers
+(30179, 4412, 11), -- P. Def. Modifiers
+(30179, 4413, 11), -- M. Def. Modifiers
+(30179, 4414, 2), -- Armor Type
+(30179, 4415, 3), -- Weapon Type
+(30179, 4416, 14), -- Races
 -- Sara
 (30180, 4045, 1), -- Resist Full Magic Attack
-(30180, 4408, 1), -- HP Increase (1x)
-(30180, 4409, 1), -- MP Increase (1x)
-(30180, 4410, 11), -- Average P. Atk.
-(30180, 4411, 11), -- Average M. Atk.
-(30180, 4412, 11), -- Average P. Def.
-(30180, 4413, 11), -- Average M. Def.
-(30180, 4414, 2), -- Standard Type
-(30180, 4415, 3), -- One-handed Sword
-(30180, 4416, 14), -- Humans
+(30180, 4408, 1), -- HP Modifiers
+(30180, 4409, 1), -- MP Modifiers
+(30180, 4410, 11), -- P. Atk. Modifiers
+(30180, 4411, 11), -- M. Atk. Modifiers
+(30180, 4412, 11), -- P. Def. Modifiers
+(30180, 4413, 11), -- M. Def. Modifiers
+(30180, 4414, 2), -- Armor Type
+(30180, 4415, 3), -- Weapon Type
+(30180, 4416, 14), -- Races
 -- Galibredo
 (30181, 4045, 1), -- Resist Full Magic Attack
-(30181, 4408, 1), -- HP Increase (1x)
-(30181, 4409, 1), -- MP Increase (1x)
-(30181, 4410, 11), -- Average P. Atk.
-(30181, 4411, 11), -- Average M. Atk.
-(30181, 4412, 11), -- Average P. Def.
-(30181, 4413, 11), -- Average M. Def.
-(30181, 4414, 2), -- Standard Type
-(30181, 4415, 3), -- One-handed Sword
-(30181, 4416, 14), -- Humans
+(30181, 4408, 1), -- HP Modifiers
+(30181, 4409, 1), -- MP Modifiers
+(30181, 4410, 11), -- P. Atk. Modifiers
+(30181, 4411, 11), -- M. Atk. Modifiers
+(30181, 4412, 11), -- P. Def. Modifiers
+(30181, 4413, 11), -- M. Def. Modifiers
+(30181, 4414, 2), -- Armor Type
+(30181, 4415, 3), -- Weapon Type
+(30181, 4416, 14), -- Races
 -- Cliff
 (30182, 4045, 1), -- Resist Full Magic Attack
-(30182, 4408, 1), -- HP Increase (1x)
-(30182, 4409, 1), -- MP Increase (1x)
-(30182, 4410, 11), -- Average P. Atk.
-(30182, 4411, 11), -- Average M. Atk.
-(30182, 4412, 11), -- Average P. Def.
-(30182, 4413, 11), -- Average M. Def.
-(30182, 4414, 2), -- Standard Type
-(30182, 4415, 3), -- One-handed Sword
-(30182, 4416, 18), -- Dwarves
+(30182, 4408, 1), -- HP Modifiers
+(30182, 4409, 1), -- MP Modifiers
+(30182, 4410, 11), -- P. Atk. Modifiers
+(30182, 4411, 11), -- M. Atk. Modifiers
+(30182, 4412, 11), -- P. Def. Modifiers
+(30182, 4413, 11), -- M. Def. Modifiers
+(30182, 4414, 2), -- Armor Type
+(30182, 4415, 3), -- Weapon Type
+(30182, 4416, 18), -- Races
 -- Hagger
 (30183, 4045, 1), -- Resist Full Magic Attack
-(30183, 4408, 1), -- HP Increase (1x)
-(30183, 4409, 1), -- MP Increase (1x)
-(30183, 4410, 11), -- Average P. Atk.
-(30183, 4411, 11), -- Average M. Atk.
-(30183, 4412, 11), -- Average P. Def.
-(30183, 4413, 11), -- Average M. Def.
-(30183, 4414, 2), -- Standard Type
-(30183, 4415, 3), -- One-handed Sword
-(30183, 4416, 18), -- Dwarves
+(30183, 4408, 1), -- HP Modifiers
+(30183, 4409, 1), -- MP Modifiers
+(30183, 4410, 11), -- P. Atk. Modifiers
+(30183, 4411, 11), -- M. Atk. Modifiers
+(30183, 4412, 11), -- P. Def. Modifiers
+(30183, 4413, 11), -- M. Def. Modifiers
+(30183, 4414, 2), -- Armor Type
+(30183, 4415, 3), -- Weapon Type
+(30183, 4416, 18), -- Races
 -- Rigol
 (30184, 4045, 1), -- Resist Full Magic Attack
-(30184, 4408, 1), -- HP Increase (1x)
-(30184, 4409, 1), -- MP Increase (1x)
-(30184, 4410, 11), -- Average P. Atk.
-(30184, 4411, 11), -- Average M. Atk.
-(30184, 4412, 11), -- Average P. Def.
-(30184, 4413, 11), -- Average M. Def.
-(30184, 4414, 2), -- Standard Type
-(30184, 4415, 3), -- One-handed Sword
-(30184, 4416, 14), -- Humans
+(30184, 4408, 1), -- HP Modifiers
+(30184, 4409, 1), -- MP Modifiers
+(30184, 4410, 11), -- P. Atk. Modifiers
+(30184, 4411, 11), -- M. Atk. Modifiers
+(30184, 4412, 11), -- P. Def. Modifiers
+(30184, 4413, 11), -- M. Def. Modifiers
+(30184, 4414, 2), -- Armor Type
+(30184, 4415, 3), -- Weapon Type
+(30184, 4416, 14), -- Races
 -- Taniac Blackbird
 (30185, 4045, 1), -- Resist Full Magic Attack
-(30185, 4408, 1), -- HP Increase (1x)
-(30185, 4409, 1), -- MP Increase (1x)
-(30185, 4410, 11), -- Average P. Atk.
-(30185, 4411, 11), -- Average M. Atk.
-(30185, 4412, 11), -- Average P. Def.
-(30185, 4413, 11), -- Average M. Def.
-(30185, 4414, 2), -- Standard Type
-(30185, 4415, 3), -- One-handed Sword
-(30185, 4416, 14), -- Humans
+(30185, 4408, 1), -- HP Modifiers
+(30185, 4409, 1), -- MP Modifiers
+(30185, 4410, 11), -- P. Atk. Modifiers
+(30185, 4411, 11), -- M. Atk. Modifiers
+(30185, 4412, 11), -- P. Def. Modifiers
+(30185, 4413, 11), -- M. Def. Modifiers
+(30185, 4414, 2), -- Armor Type
+(30185, 4415, 3), -- Weapon Type
+(30185, 4416, 14), -- Races
 -- Bhan
 (30186, 4045, 1), -- Resist Full Magic Attack
-(30186, 4408, 1), -- HP Increase (1x)
-(30186, 4409, 1), -- MP Increase (1x)
-(30186, 4410, 11), -- Average P. Atk.
-(30186, 4411, 11), -- Average M. Atk.
-(30186, 4412, 11), -- Average P. Def.
-(30186, 4413, 11), -- Average M. Def.
-(30186, 4414, 2), -- Standard Type
-(30186, 4415, 3), -- One-handed Sword
-(30186, 4416, 15), -- Elves
+(30186, 4408, 1), -- HP Modifiers
+(30186, 4409, 1), -- MP Modifiers
+(30186, 4410, 11), -- P. Atk. Modifiers
+(30186, 4411, 11), -- M. Atk. Modifiers
+(30186, 4412, 11), -- P. Def. Modifiers
+(30186, 4413, 11), -- M. Def. Modifiers
+(30186, 4414, 2), -- Armor Type
+(30186, 4415, 3), -- Weapon Type
+(30186, 4416, 15), -- Races
 -- Klaus Blackbird
 (30187, 4045, 1), -- Resist Full Magic Attack
-(30187, 4408, 1), -- HP Increase (1x)
-(30187, 4409, 1), -- MP Increase (1x)
-(30187, 4410, 11), -- Average P. Atk.
-(30187, 4411, 11), -- Average M. Atk.
-(30187, 4412, 11), -- Average P. Def.
-(30187, 4413, 11), -- Average M. Def.
-(30187, 4414, 2), -- Standard Type
-(30187, 4415, 3), -- One-handed Sword
-(30187, 4416, 14), -- Humans
+(30187, 4408, 1), -- HP Modifiers
+(30187, 4409, 1), -- MP Modifiers
+(30187, 4410, 11), -- P. Atk. Modifiers
+(30187, 4411, 11), -- M. Atk. Modifiers
+(30187, 4412, 11), -- P. Def. Modifiers
+(30187, 4413, 11), -- M. Def. Modifiers
+(30187, 4414, 2), -- Armor Type
+(30187, 4415, 3), -- Weapon Type
+(30187, 4416, 14), -- Races
 -- Vadin
 (30188, 4045, 1), -- Resist Full Magic Attack
-(30188, 4408, 1), -- HP Increase (1x)
-(30188, 4409, 1), -- MP Increase (1x)
-(30188, 4410, 11), -- Average P. Atk.
-(30188, 4411, 11), -- Average M. Atk.
-(30188, 4412, 11), -- Average P. Def.
-(30188, 4413, 11), -- Average M. Def.
-(30188, 4414, 2), -- Standard Type
-(30188, 4415, 3), -- One-handed Sword
-(30188, 4416, 14), -- Humans
+(30188, 4408, 1), -- HP Modifiers
+(30188, 4409, 1), -- MP Modifiers
+(30188, 4410, 11), -- P. Atk. Modifiers
+(30188, 4411, 11), -- M. Atk. Modifiers
+(30188, 4412, 11), -- P. Def. Modifiers
+(30188, 4413, 11), -- M. Def. Modifiers
+(30188, 4414, 2), -- Armor Type
+(30188, 4415, 3), -- Weapon Type
+(30188, 4416, 14), -- Races
 -- Rovia
 (30189, 4045, 1), -- Resist Full Magic Attack
-(30189, 4408, 1), -- HP Increase (1x)
-(30189, 4409, 1), -- MP Increase (1x)
-(30189, 4410, 11), -- Average P. Atk.
-(30189, 4411, 11), -- Average M. Atk.
-(30189, 4412, 11), -- Average P. Def.
-(30189, 4413, 11), -- Average M. Def.
-(30189, 4414, 2), -- Standard Type
-(30189, 4415, 3), -- One-handed Sword
-(30189, 4416, 15), -- Elves
+(30189, 4408, 1), -- HP Modifiers
+(30189, 4409, 1), -- MP Modifiers
+(30189, 4410, 11), -- P. Atk. Modifiers
+(30189, 4411, 11), -- M. Atk. Modifiers
+(30189, 4412, 11), -- P. Def. Modifiers
+(30189, 4413, 11), -- M. Def. Modifiers
+(30189, 4414, 2), -- Armor Type
+(30189, 4415, 3), -- Weapon Type
+(30189, 4416, 15), -- Races
 -- Phanovia
 (30190, 4045, 1), -- Resist Full Magic Attack
-(30190, 4408, 1), -- HP Increase (1x)
-(30190, 4409, 1), -- MP Increase (1x)
-(30190, 4410, 11), -- Average P. Atk.
-(30190, 4411, 11), -- Average M. Atk.
-(30190, 4412, 11), -- Average P. Def.
-(30190, 4413, 11), -- Average M. Def.
-(30190, 4414, 2), -- Standard Type
-(30190, 4415, 3), -- One-handed Sword
-(30190, 4416, 14), -- Humans
+(30190, 4408, 1), -- HP Modifiers
+(30190, 4409, 1), -- MP Modifiers
+(30190, 4410, 11), -- P. Atk. Modifiers
+(30190, 4411, 11), -- M. Atk. Modifiers
+(30190, 4412, 11), -- P. Def. Modifiers
+(30190, 4413, 11), -- M. Def. Modifiers
+(30190, 4414, 2), -- Armor Type
+(30190, 4415, 3), -- Weapon Type
+(30190, 4416, 14), -- Races
 -- Hollint
 (30191, 4045, 1), -- Resist Full Magic Attack
-(30191, 4408, 1), -- HP Increase (1x)
-(30191, 4409, 1), -- MP Increase (1x)
-(30191, 4410, 11), -- Average P. Atk.
-(30191, 4411, 11), -- Average M. Atk.
-(30191, 4412, 11), -- Average P. Def.
-(30191, 4413, 11), -- Average M. Def.
-(30191, 4414, 2), -- Standard Type
-(30191, 4415, 3), -- One-handed Sword
-(30191, 4416, 14), -- Humans
+(30191, 4408, 1), -- HP Modifiers
+(30191, 4409, 1), -- MP Modifiers
+(30191, 4410, 11), -- P. Atk. Modifiers
+(30191, 4411, 11), -- M. Atk. Modifiers
+(30191, 4412, 11), -- P. Def. Modifiers
+(30191, 4413, 11), -- M. Def. Modifiers
+(30191, 4414, 2), -- Armor Type
+(30191, 4415, 3), -- Weapon Type
+(30191, 4416, 14), -- Races
 -- Darya
 (30192, 4045, 1), -- Resist Full Magic Attack
-(30192, 4408, 1), -- HP Increase (1x)
-(30192, 4409, 1), -- MP Increase (1x)
-(30192, 4410, 11), -- Average P. Atk.
-(30192, 4411, 11), -- Average M. Atk.
-(30192, 4412, 11), -- Average P. Def.
-(30192, 4413, 11), -- Average M. Def.
-(30192, 4414, 2), -- Standard Type
-(30192, 4415, 3), -- One-handed Sword
-(30192, 4416, 16), -- Dark Elves
+(30192, 4408, 1), -- HP Modifiers
+(30192, 4409, 1), -- MP Modifiers
+(30192, 4410, 11), -- P. Atk. Modifiers
+(30192, 4411, 11), -- M. Atk. Modifiers
+(30192, 4412, 11), -- P. Def. Modifiers
+(30192, 4413, 11), -- M. Def. Modifiers
+(30192, 4414, 2), -- Armor Type
+(30192, 4415, 3), -- Weapon Type
+(30192, 4416, 16), -- Races
 -- Gideon
 (30194, 4045, 1), -- Resist Full Magic Attack
-(30194, 4408, 1), -- HP Increase (1x)
-(30194, 4409, 1), -- MP Increase (1x)
-(30194, 4410, 11), -- Average P. Atk.
-(30194, 4411, 11), -- Average M. Atk.
-(30194, 4412, 11), -- Average P. Def.
-(30194, 4413, 11), -- Average M. Def.
-(30194, 4414, 2), -- Standard Type
-(30194, 4415, 3), -- One-handed Sword
-(30194, 4416, 16), -- Dark Elves
+(30194, 4408, 1), -- HP Modifiers
+(30194, 4409, 1), -- MP Modifiers
+(30194, 4410, 11), -- P. Atk. Modifiers
+(30194, 4411, 11), -- M. Atk. Modifiers
+(30194, 4412, 11), -- P. Def. Modifiers
+(30194, 4413, 11), -- M. Def. Modifiers
+(30194, 4414, 2), -- Armor Type
+(30194, 4415, 3), -- Weapon Type
+(30194, 4416, 16), -- Races
 -- Brecson
 (30195, 4045, 1), -- Resist Full Magic Attack
-(30195, 4408, 1), -- HP Increase (1x)
-(30195, 4409, 1), -- MP Increase (1x)
-(30195, 4410, 11), -- Average P. Atk.
-(30195, 4411, 11), -- Average M. Atk.
-(30195, 4412, 11), -- Average P. Def.
-(30195, 4413, 11), -- Average M. Def.
-(30195, 4414, 2), -- Standard Type
-(30195, 4415, 3), -- One-handed Sword
-(30195, 4416, 16), -- Dark Elves
+(30195, 4408, 1), -- HP Modifiers
+(30195, 4409, 1), -- MP Modifiers
+(30195, 4410, 11), -- P. Atk. Modifiers
+(30195, 4411, 11), -- M. Atk. Modifiers
+(30195, 4412, 11), -- P. Def. Modifiers
+(30195, 4413, 11), -- M. Def. Modifiers
+(30195, 4414, 2), -- Armor Type
+(30195, 4415, 3), -- Weapon Type
+(30195, 4416, 16), -- Races
 -- Mouen
 (30196, 4045, 1), -- Resist Full Magic Attack
-(30196, 4408, 1), -- HP Increase (1x)
-(30196, 4409, 1), -- MP Increase (1x)
-(30196, 4410, 16), -- Very Strong P. Atk.
-(30196, 4411, 16), -- Very Strong M. Atk.
-(30196, 4412, 16), -- Very Strong P. Def.
-(30196, 4413, 16), -- Very Strong M. Def.
-(30196, 4414, 2), -- Standard Type
-(30196, 4415, 3), -- One-handed Sword
-(30196, 4416, 14), -- Humans
+(30196, 4408, 1), -- HP Modifiers
+(30196, 4409, 1), -- MP Modifiers
+(30196, 4410, 16), -- P. Atk. Modifiers
+(30196, 4411, 16), -- M. Atk. Modifiers
+(30196, 4412, 16), -- P. Def. Modifiers
+(30196, 4413, 16), -- M. Def. Modifiers
+(30196, 4414, 2), -- Armor Type
+(30196, 4415, 3), -- Weapon Type
+(30196, 4416, 14), -- Races
 -- Hector
 (30197, 4045, 1), -- Resist Full Magic Attack
-(30197, 4408, 1), -- HP Increase (1x)
-(30197, 4409, 1), -- MP Increase (1x)
-(30197, 4410, 16), -- Very Strong P. Atk.
-(30197, 4411, 16), -- Very Strong M. Atk.
-(30197, 4412, 16), -- Very Strong P. Def.
-(30197, 4413, 16), -- Very Strong M. Def.
-(30197, 4414, 2), -- Standard Type
-(30197, 4415, 9), -- Bows
-(30197, 4416, 14), -- Humans
+(30197, 4408, 1), -- HP Modifiers
+(30197, 4409, 1), -- MP Modifiers
+(30197, 4410, 16), -- P. Atk. Modifiers
+(30197, 4411, 16), -- M. Atk. Modifiers
+(30197, 4412, 16), -- P. Def. Modifiers
+(30197, 4413, 16), -- M. Def. Modifiers
+(30197, 4414, 2), -- Armor Type
+(30197, 4415, 9), -- Weapon Type
+(30197, 4416, 14), -- Races
 -- Jerin
 (30198, 4045, 1), -- Resist Full Magic Attack
-(30198, 4408, 1), -- HP Increase (1x)
-(30198, 4409, 1), -- MP Increase (1x)
-(30198, 4410, 16), -- Very Strong P. Atk.
-(30198, 4411, 16), -- Very Strong M. Atk.
-(30198, 4412, 16), -- Very Strong P. Def.
-(30198, 4413, 16), -- Very Strong M. Def.
-(30198, 4414, 2), -- Standard Type
-(30198, 4415, 3), -- One-handed Sword
-(30198, 4416, 14), -- Humans
+(30198, 4408, 1), -- HP Modifiers
+(30198, 4409, 1), -- MP Modifiers
+(30198, 4410, 16), -- P. Atk. Modifiers
+(30198, 4411, 16), -- M. Atk. Modifiers
+(30198, 4412, 16), -- P. Def. Modifiers
+(30198, 4413, 16), -- M. Def. Modifiers
+(30198, 4414, 2), -- Armor Type
+(30198, 4415, 3), -- Weapon Type
+(30198, 4416, 14), -- Races
 -- Yates
 (30199, 4045, 1), -- Resist Full Magic Attack
-(30199, 4408, 1), -- HP Increase (1x)
-(30199, 4409, 1), -- MP Increase (1x)
-(30199, 4410, 16), -- Very Strong P. Atk.
-(30199, 4411, 16), -- Very Strong M. Atk.
-(30199, 4412, 16), -- Very Strong P. Def.
-(30199, 4413, 16), -- Very Strong M. Def.
-(30199, 4414, 2), -- Standard Type
-(30199, 4415, 9), -- Bows
-(30199, 4416, 14), -- Humans
+(30199, 4408, 1), -- HP Modifiers
+(30199, 4409, 1), -- MP Modifiers
+(30199, 4410, 16), -- P. Atk. Modifiers
+(30199, 4411, 16), -- M. Atk. Modifiers
+(30199, 4412, 16), -- P. Def. Modifiers
+(30199, 4413, 16), -- M. Def. Modifiers
+(30199, 4414, 2), -- Armor Type
+(30199, 4415, 9), -- Weapon Type
+(30199, 4416, 14), -- Races
 -- Stan
 (30200, 4045, 1), -- Resist Full Magic Attack
-(30200, 4408, 1), -- HP Increase (1x)
-(30200, 4409, 1), -- MP Increase (1x)
-(30200, 4410, 16), -- Very Strong P. Atk.
-(30200, 4411, 16), -- Very Strong M. Atk.
-(30200, 4412, 16), -- Very Strong P. Def.
-(30200, 4413, 16), -- Very Strong M. Def.
-(30200, 4414, 2), -- Standard Type
-(30200, 4415, 9), -- Bows
-(30200, 4416, 14), -- Humans
+(30200, 4408, 1), -- HP Modifiers
+(30200, 4409, 1), -- MP Modifiers
+(30200, 4410, 16), -- P. Atk. Modifiers
+(30200, 4411, 16), -- M. Atk. Modifiers
+(30200, 4412, 16), -- P. Def. Modifiers
+(30200, 4413, 16), -- M. Def. Modifiers
+(30200, 4414, 2), -- Armor Type
+(30200, 4415, 9), -- Weapon Type
+(30200, 4416, 14), -- Races
 -- Pinaps
 (30201, 4045, 1), -- Resist Full Magic Attack
-(30201, 4408, 1), -- HP Increase (1x)
-(30201, 4409, 1), -- MP Increase (1x)
-(30201, 4410, 16), -- Very Strong P. Atk.
-(30201, 4411, 16), -- Very Strong M. Atk.
-(30201, 4412, 16), -- Very Strong P. Def.
-(30201, 4413, 16), -- Very Strong M. Def.
-(30201, 4414, 2), -- Standard Type
-(30201, 4415, 9), -- Bows
-(30201, 4416, 14), -- Humans
+(30201, 4408, 1), -- HP Modifiers
+(30201, 4409, 1), -- MP Modifiers
+(30201, 4410, 16), -- P. Atk. Modifiers
+(30201, 4411, 16), -- M. Atk. Modifiers
+(30201, 4412, 16), -- P. Def. Modifiers
+(30201, 4413, 16), -- M. Def. Modifiers
+(30201, 4414, 2), -- Armor Type
+(30201, 4415, 9), -- Weapon Type
+(30201, 4416, 14), -- Races
 -- Arodin
 (30207, 4045, 1), -- Resist Full Magic Attack
-(30207, 4408, 1), -- HP Increase (1x)
-(30207, 4409, 1), -- MP Increase (1x)
-(30207, 4410, 11), -- Average P. Atk.
-(30207, 4411, 11), -- Average M. Atk.
-(30207, 4412, 11), -- Average P. Def.
-(30207, 4413, 11), -- Average M. Def.
-(30207, 4414, 2), -- Standard Type
-(30207, 4415, 3), -- One-handed Sword
-(30207, 4416, 14), -- Humans
+(30207, 4408, 1), -- HP Modifiers
+(30207, 4409, 1), -- MP Modifiers
+(30207, 4410, 11), -- P. Atk. Modifiers
+(30207, 4411, 11), -- M. Atk. Modifiers
+(30207, 4412, 11), -- P. Def. Modifiers
+(30207, 4413, 11), -- M. Def. Modifiers
+(30207, 4414, 2), -- Armor Type
+(30207, 4415, 3), -- Weapon Type
+(30207, 4416, 14), -- Races
 -- Damion
 (30208, 4045, 1), -- Resist Full Magic Attack
-(30208, 4408, 1), -- HP Increase (1x)
-(30208, 4409, 1), -- MP Increase (1x)
-(30208, 4410, 11), -- Average P. Atk.
-(30208, 4411, 11), -- Average M. Atk.
-(30208, 4412, 11); -- Average P. Def.
-
-INSERT INTO `npcskills` VALUES
-(30208, 4413, 11), -- Average M. Def.
-(30208, 4414, 2), -- Standard Type
-(30208, 4415, 3), -- One-handed Sword
-(30208, 4416, 14), -- Humans
+(30208, 4408, 1), -- HP Modifiers
+(30208, 4409, 1), -- MP Modifiers
+(30208, 4410, 11), -- P. Atk. Modifiers
+(30208, 4411, 11), -- M. Atk. Modifiers
+(30208, 4412, 11), -- P. Def. Modifiers
+(30208, 4413, 11), -- M. Def. Modifiers
+(30208, 4414, 2), -- Armor Type
+(30208, 4415, 3), -- Weapon Type
+(30208, 4416, 14), -- Races
 -- Colleen
 (30209, 4045, 1), -- Resist Full Magic Attack
-(30209, 4408, 1), -- HP Increase (1x)
-(30209, 4409, 1), -- MP Increase (1x)
-(30209, 4410, 11), -- Average P. Atk.
-(30209, 4411, 11), -- Average M. Atk.
-(30209, 4412, 11), -- Average P. Def.
-(30209, 4413, 11), -- Average M. Def.
-(30209, 4414, 2), -- Standard Type
-(30209, 4415, 3), -- One-handed Sword
-(30209, 4416, 14), -- Humans
+(30209, 4408, 1), -- HP Modifiers
+(30209, 4409, 1), -- MP Modifiers
+(30209, 4410, 11), -- P. Atk. Modifiers
+(30209, 4411, 11), -- M. Atk. Modifiers
+(30209, 4412, 11), -- P. Def. Modifiers
+(30209, 4413, 11), -- M. Def. Modifiers
+(30209, 4414, 2), -- Armor Type
+(30209, 4415, 3), -- Weapon Type
+(30209, 4416, 14), -- Races
 -- Norman
 (30210, 4045, 1), -- Resist Full Magic Attack
-(30210, 4408, 1), -- HP Increase (1x)
-(30210, 4409, 1), -- MP Increase (1x)
-(30210, 4410, 11), -- Average P. Atk.
-(30210, 4411, 11), -- Average M. Atk.
-(30210, 4412, 11), -- Average P. Def.
-(30210, 4413, 11), -- Average M. Def.
-(30210, 4414, 2), -- Standard Type
-(30210, 4415, 3), -- One-handed Sword
-(30210, 4416, 18), -- Dwarves
+(30210, 4408, 1), -- HP Modifiers
+(30210, 4409, 1), -- MP Modifiers
+(30210, 4410, 11), -- P. Atk. Modifiers
+(30210, 4411, 11), -- M. Atk. Modifiers
+(30210, 4412, 11), -- P. Def. Modifiers
+(30210, 4413, 11), -- M. Def. Modifiers
+(30210, 4414, 2), -- Armor Type
+(30210, 4415, 3), -- Weapon Type
+(30210, 4416, 18), -- Races
 -- Wheeler
 (30216, 4045, 1), -- Resist Full Magic Attack
-(30216, 4408, 1), -- HP Increase (1x)
-(30216, 4409, 1), -- MP Increase (1x)
-(30216, 4410, 16), -- Very Strong P. Atk.
-(30216, 4411, 16), -- Very Strong M. Atk.
-(30216, 4412, 16), -- Very Strong P. Def.
-(30216, 4413, 16), -- Very Strong M. Def.
-(30216, 4414, 2), -- Standard Type
-(30216, 4415, 3), -- One-handed Sword
-(30216, 4416, 15), -- Elves
+(30216, 4408, 1), -- HP Modifiers
+(30216, 4409, 1), -- MP Modifiers
+(30216, 4410, 16), -- P. Atk. Modifiers
+(30216, 4411, 16), -- M. Atk. Modifiers
+(30216, 4412, 16), -- P. Def. Modifiers
+(30216, 4413, 16), -- M. Def. Modifiers
+(30216, 4414, 2), -- Armor Type
+(30216, 4415, 3), -- Weapon Type
+(30216, 4416, 15), -- Races
 -- Berros
 (30217, 4045, 1), -- Resist Full Magic Attack
-(30217, 4408, 1), -- HP Increase (1x)
-(30217, 4409, 1), -- MP Increase (1x)
-(30217, 4410, 16), -- Very Strong P. Atk.
-(30217, 4411, 16), -- Very Strong M. Atk.
-(30217, 4412, 16), -- Very Strong P. Def.
-(30217, 4413, 16), -- Very Strong M. Def.
-(30217, 4414, 2), -- Standard Type
-(30217, 4415, 9), -- Bows
-(30217, 4416, 15), -- Elves
+(30217, 4408, 1), -- HP Modifiers
+(30217, 4409, 1), -- MP Modifiers
+(30217, 4410, 16), -- P. Atk. Modifiers
+(30217, 4411, 16), -- M. Atk. Modifiers
+(30217, 4412, 16), -- P. Def. Modifiers
+(30217, 4413, 16), -- M. Def. Modifiers
+(30217, 4414, 2), -- Armor Type
+(30217, 4415, 9), -- Weapon Type
+(30217, 4416, 15), -- Races
 -- Kendell
 (30218, 4045, 1), -- Resist Full Magic Attack
-(30218, 4408, 1), -- HP Increase (1x)
-(30218, 4409, 1), -- MP Increase (1x)
-(30218, 4410, 16), -- Very Strong P. Atk.
-(30218, 4411, 16), -- Very Strong M. Atk.
-(30218, 4412, 16), -- Very Strong P. Def.
-(30218, 4413, 16), -- Very Strong M. Def.
-(30218, 4414, 2), -- Standard Type
-(30218, 4415, 9), -- Bows
-(30218, 4416, 15), -- Elves
+(30218, 4408, 1), -- HP Modifiers
+(30218, 4409, 1), -- MP Modifiers
+(30218, 4410, 16), -- P. Atk. Modifiers
+(30218, 4411, 16), -- M. Atk. Modifiers
+(30218, 4412, 16), -- P. Def. Modifiers
+(30218, 4413, 16), -- M. Def. Modifiers
+(30218, 4414, 2), -- Armor Type
+(30218, 4415, 9), -- Weapon Type
+(30218, 4416, 15), -- Races
 -- Veltress
 (30219, 4045, 1), -- Resist Full Magic Attack
-(30219, 4408, 1), -- HP Increase (1x)
-(30219, 4409, 1), -- MP Increase (1x)
-(30219, 4410, 16), -- Very Strong P. Atk.
-(30219, 4411, 16), -- Very Strong M. Atk.
-(30219, 4412, 16), -- Very Strong P. Def.
-(30219, 4413, 16), -- Very Strong M. Def.
-(30219, 4414, 2), -- Standard Type
-(30219, 4415, 3), -- One-handed Sword
-(30219, 4416, 15), -- Elves
+(30219, 4408, 1), -- HP Modifiers
+(30219, 4409, 1), -- MP Modifiers
+(30219, 4410, 16), -- P. Atk. Modifiers
+(30219, 4411, 16), -- M. Atk. Modifiers
+(30219, 4412, 16), -- P. Def. Modifiers
+(30219, 4413, 16), -- M. Def. Modifiers
+(30219, 4414, 2), -- Armor Type
+(30219, 4415, 3), -- Weapon Type
+(30219, 4416, 15), -- Races
 -- Starden
 (30220, 4045, 1), -- Resist Full Magic Attack
-(30220, 4408, 1), -- HP Increase (1x)
-(30220, 4409, 1), -- MP Increase (1x)
-(30220, 4410, 16), -- Very Strong P. Atk.
-(30220, 4411, 16), -- Very Strong M. Atk.
-(30220, 4412, 16), -- Very Strong P. Def.
-(30220, 4413, 16), -- Very Strong M. Def.
-(30220, 4414, 2), -- Standard Type
-(30220, 4415, 9), -- Bows
-(30220, 4416, 15), -- Elves
+(30220, 4408, 1), -- HP Modifiers
+(30220, 4409, 1), -- MP Modifiers
+(30220, 4410, 16), -- P. Atk. Modifiers
+(30220, 4411, 16), -- M. Atk. Modifiers
+(30220, 4412, 16), -- P. Def. Modifiers
+(30220, 4413, 16), -- M. Def. Modifiers
+(30220, 4414, 2), -- Armor Type
+(30220, 4415, 9), -- Weapon Type
+(30220, 4416, 15), -- Races
 -- Rayen
 (30221, 4045, 1), -- Resist Full Magic Attack
-(30221, 4408, 1), -- HP Increase (1x)
-(30221, 4409, 1), -- MP Increase (1x)
-(30221, 4410, 16), -- Very Strong P. Atk.
-(30221, 4411, 16), -- Very Strong M. Atk.
-(30221, 4412, 16), -- Very Strong P. Def.
-(30221, 4413, 16), -- Very Strong M. Def.
-(30221, 4414, 2), -- Standard Type
-(30221, 4415, 3), -- One-handed Sword
-(30221, 4416, 15), -- Elves
+(30221, 4408, 1), -- HP Modifiers
+(30221, 4409, 1), -- MP Modifiers
+(30221, 4410, 16), -- P. Atk. Modifiers
+(30221, 4411, 16), -- M. Atk. Modifiers
+(30221, 4412, 16), -- P. Def. Modifiers
+(30221, 4413, 16), -- M. Def. Modifiers
+(30221, 4414, 2), -- Armor Type
+(30221, 4415, 3), -- Weapon Type
+(30221, 4416, 15), -- Races
 -- Alshupes
 (30222, 4045, 1), -- Resist Full Magic Attack
-(30222, 4408, 1), -- HP Increase (1x)
-(30222, 4409, 1), -- MP Increase (1x)
-(30222, 4410, 11), -- Average P. Atk.
-(30222, 4411, 11), -- Average M. Atk.
-(30222, 4412, 11), -- Average P. Def.
-(30222, 4413, 11), -- Average M. Def.
-(30222, 4414, 2), -- Standard Type
-(30222, 4415, 3), -- One-handed Sword
-(30222, 4416, 15), -- Elves
+(30222, 4408, 1), -- HP Modifiers
+(30222, 4409, 1), -- MP Modifiers
+(30222, 4410, 11), -- P. Atk. Modifiers
+(30222, 4411, 11), -- M. Atk. Modifiers
+(30222, 4412, 11), -- P. Def. Modifiers
+(30222, 4413, 11), -- M. Def. Modifiers
+(30222, 4414, 2), -- Armor Type
+(30222, 4415, 3), -- Weapon Type
+(30222, 4416, 15), -- Races
 -- Arujien
 (30223, 4045, 1), -- Resist Full Magic Attack
-(30223, 4408, 1), -- HP Increase (1x)
-(30223, 4409, 1), -- MP Increase (1x)
-(30223, 4410, 11), -- Average P. Atk.
-(30223, 4411, 11), -- Average M. Atk.
-(30223, 4412, 11), -- Average P. Def.
-(30223, 4413, 11), -- Average M. Def.
-(30223, 4414, 2), -- Standard Type
-(30223, 4415, 3), -- One-handed Sword
-(30223, 4416, 15), -- Elves
+(30223, 4408, 1), -- HP Modifiers
+(30223, 4409, 1), -- MP Modifiers
+(30223, 4410, 11), -- P. Atk. Modifiers
+(30223, 4411, 11), -- M. Atk. Modifiers
+(30223, 4412, 11), -- P. Def. Modifiers
+(30223, 4413, 11), -- M. Def. Modifiers
+(30223, 4414, 2), -- Armor Type
+(30223, 4415, 3), -- Weapon Type
+(30223, 4416, 15), -- Races
 -- Rayla
 (30224, 4045, 1), -- Resist Full Magic Attack
-(30224, 4408, 1), -- HP Increase (1x)
-(30224, 4409, 1), -- MP Increase (1x)
-(30224, 4410, 16), -- Very Strong P. Atk.
-(30224, 4411, 16), -- Very Strong M. Atk.
-(30224, 4412, 16), -- Very Strong P. Def.
-(30224, 4413, 16), -- Very Strong M. Def.
-(30224, 4414, 2), -- Standard Type
-(30224, 4415, 3), -- One-handed Sword
-(30224, 4416, 16), -- Dark Elves
+(30224, 4408, 1), -- HP Modifiers
+(30224, 4409, 1), -- MP Modifiers
+(30224, 4410, 16), -- P. Atk. Modifiers
+(30224, 4411, 16), -- M. Atk. Modifiers
+(30224, 4412, 16), -- P. Def. Modifiers
+(30224, 4413, 16), -- M. Def. Modifiers
+(30224, 4414, 2), -- Armor Type
+(30224, 4415, 3), -- Weapon Type
+(30224, 4416, 16), -- Races
 -- Edroc
 (30230, 4045, 1), -- Resist Full Magic Attack
-(30230, 4408, 1), -- HP Increase (1x)
-(30230, 4409, 1), -- MP Increase (1x)
-(30230, 4410, 11), -- Average P. Atk.
-(30230, 4411, 11), -- Average M. Atk.
-(30230, 4412, 11), -- Average P. Def.
-(30230, 4413, 11), -- Average M. Def.
-(30230, 4414, 2), -- Standard Type
-(30230, 4415, 3), -- One-handed Sword
-(30230, 4416, 14), -- Humans
+(30230, 4408, 1), -- HP Modifiers
+(30230, 4409, 1), -- MP Modifiers
+(30230, 4410, 11), -- P. Atk. Modifiers
+(30230, 4411, 11), -- M. Atk. Modifiers
+(30230, 4412, 11), -- P. Def. Modifiers
+(30230, 4413, 11), -- M. Def. Modifiers
+(30230, 4414, 2), -- Armor Type
+(30230, 4415, 3), -- Weapon Type
+(30230, 4416, 14), -- Races
 -- Garette
 (30231, 4045, 1), -- Resist Full Magic Attack
-(30231, 4408, 1), -- HP Increase (1x)
-(30231, 4409, 1), -- MP Increase (1x)
-(30231, 4410, 11), -- Average P. Atk.
-(30231, 4411, 11), -- Average M. Atk.
-(30231, 4412, 11), -- Average P. Def.
-(30231, 4413, 11), -- Average M. Def.
-(30231, 4414, 2), -- Standard Type
-(30231, 4415, 3), -- One-handed Sword
-(30231, 4416, 14), -- Humans
+(30231, 4408, 1), -- HP Modifiers
+(30231, 4409, 1), -- MP Modifiers
+(30231, 4410, 11), -- P. Atk. Modifiers
+(30231, 4411, 11), -- M. Atk. Modifiers
+(30231, 4412, 11), -- P. Def. Modifiers
+(30231, 4413, 11), -- M. Def. Modifiers
+(30231, 4414, 2), -- Armor Type
+(30231, 4415, 3), -- Weapon Type
+(30231, 4416, 14), -- Races
 -- Sorint
 (30232, 4045, 1), -- Resist Full Magic Attack
-(30232, 4408, 1), -- HP Increase (1x)
-(30232, 4409, 1), -- MP Increase (1x)
-(30232, 4410, 11), -- Average P. Atk.
-(30232, 4411, 11), -- Average M. Atk.
-(30232, 4412, 11), -- Average P. Def.
-(30232, 4413, 11), -- Average M. Def.
-(30232, 4414, 2), -- Standard Type
-(30232, 4415, 3), -- One-handed Sword
-(30232, 4416, 18), -- Dwarves
+(30232, 4408, 1), -- HP Modifiers
+(30232, 4409, 1), -- MP Modifiers
+(30232, 4410, 11), -- P. Atk. Modifiers
+(30232, 4411, 11), -- M. Atk. Modifiers
+(30232, 4412, 11), -- P. Def. Modifiers
+(30232, 4413, 11), -- M. Def. Modifiers
+(30232, 4414, 2), -- Armor Type
+(30232, 4415, 3), -- Weapon Type
+(30232, 4416, 18), -- Races
 -- Esmeralda
 (30233, 4045, 1), -- Resist Full Magic Attack
-(30233, 4408, 1), -- HP Increase (1x)
-(30233, 4409, 1), -- MP Increase (1x)
-(30233, 4410, 11), -- Average P. Atk.
-(30233, 4411, 11), -- Average M. Atk.
-(30233, 4412, 11), -- Average P. Def.
-(30233, 4413, 11), -- Average M. Def.
-(30233, 4414, 2), -- Standard Type
-(30233, 4415, 3), -- One-handed Sword
-(30233, 4416, 14), -- Humans
+(30233, 4408, 1), -- HP Modifiers
+(30233, 4409, 1), -- MP Modifiers
+(30233, 4410, 11), -- P. Atk. Modifiers
+(30233, 4411, 11), -- M. Atk. Modifiers
+(30233, 4412, 11), -- P. Def. Modifiers
+(30233, 4413, 11), -- M. Def. Modifiers
+(30233, 4414, 2), -- Armor Type
+(30233, 4415, 3), -- Weapon Type
+(30233, 4416, 14), -- Races
 -- Simplon
 (30253, 4045, 1), -- Resist Full Magic Attack
-(30253, 4408, 1), -- HP Increase (1x)
-(30253, 4409, 1), -- MP Increase (1x)
-(30253, 4410, 11), -- Average P. Atk.
-(30253, 4411, 11), -- Average M. Atk.
-(30253, 4412, 11), -- Average P. Def.
-(30253, 4413, 11), -- Average M. Def.
-(30253, 4414, 2), -- Standard Type
-(30253, 4415, 3), -- One-handed Sword
-(30253, 4416, 14), -- Humans
+(30253, 4408, 1), -- HP Modifiers
+(30253, 4409, 1), -- MP Modifiers
+(30253, 4410, 11), -- P. Atk. Modifiers
+(30253, 4411, 11), -- M. Atk. Modifiers
+(30253, 4412, 11), -- P. Def. Modifiers
+(30253, 4413, 11), -- M. Def. Modifiers
+(30253, 4414, 2), -- Armor Type
+(30253, 4415, 3), -- Weapon Type
+(30253, 4416, 14), -- Races
 -- Harmony
 (30254, 4045, 1), -- Resist Full Magic Attack
-(30254, 4408, 1), -- HP Increase (1x)
-(30254, 4409, 1), -- MP Increase (1x)
-(30254, 4410, 11), -- Average P. Atk.
-(30254, 4411, 11), -- Average M. Atk.
-(30254, 4412, 11), -- Average P. Def.
-(30254, 4413, 11), -- Average M. Def.
-(30254, 4414, 2), -- Standard Type
-(30254, 4415, 3), -- One-handed Sword
-(30254, 4416, 14), -- Humans
+(30254, 4408, 1), -- HP Modifiers
+(30254, 4409, 1), -- MP Modifiers
+(30254, 4410, 11), -- P. Atk. Modifiers
+(30254, 4411, 11), -- M. Atk. Modifiers
+(30254, 4412, 11), -- P. Def. Modifiers
+(30254, 4413, 11), -- M. Def. Modifiers
+(30254, 4414, 2), -- Armor Type
+(30254, 4415, 3), -- Weapon Type
+(30254, 4416, 14), -- Races
 -- Haprock
 (30255, 4045, 1), -- Resist Full Magic Attack
-(30255, 4408, 1), -- HP Increase (1x)
-(30255, 4409, 1), -- MP Increase (1x)
-(30255, 4410, 11), -- Average P. Atk.
-(30255, 4411, 11), -- Average M. Atk.
-(30255, 4412, 11), -- Average P. Def.
-(30255, 4413, 11), -- Average M. Def.
-(30255, 4414, 2), -- Standard Type
-(30255, 4415, 3), -- One-handed Sword
-(30255, 4416, 18), -- Dwarves
+(30255, 4408, 1), -- HP Modifiers
+(30255, 4409, 1), -- MP Modifiers
+(30255, 4410, 11), -- P. Atk. Modifiers
+(30255, 4411, 11), -- M. Atk. Modifiers
+(30255, 4412, 11), -- P. Def. Modifiers
+(30255, 4413, 11), -- M. Def. Modifiers
+(30255, 4414, 2), -- Armor Type
+(30255, 4415, 3), -- Weapon Type
+(30255, 4416, 18), -- Races
 -- Bella
 (30256, 4045, 1), -- Resist Full Magic Attack
-(30256, 4408, 1), -- HP Increase (1x)
-(30256, 4409, 1), -- MP Increase (1x)
-(30256, 4410, 11), -- Average P. Atk.
-(30256, 4411, 11), -- Average M. Atk.
-(30256, 4412, 11), -- Average P. Def.
-(30256, 4413, 11), -- Average M. Def.
-(30256, 4414, 2), -- Standard Type
-(30256, 4415, 3), -- One-handed Sword
-(30256, 4416, 14), -- Humans
+(30256, 4408, 1), -- HP Modifiers
+(30256, 4409, 1), -- MP Modifiers
+(30256, 4410, 11), -- P. Atk. Modifiers
+(30256, 4411, 11), -- M. Atk. Modifiers
+(30256, 4412, 11), -- P. Def. Modifiers
+(30256, 4413, 11), -- M. Def. Modifiers
+(30256, 4414, 2), -- Armor Type
+(30256, 4415, 3), -- Weapon Type
+(30256, 4416, 14), -- Races
 -- Altran
 (30283, 4045, 1), -- Resist Full Magic Attack
-(30283, 4408, 1), -- HP Increase (1x)
-(30283, 4409, 1), -- MP Increase (1x)
-(30283, 4410, 11), -- Average P. Atk.
-(30283, 4411, 11), -- Average M. Atk.
-(30283, 4412, 11), -- Average P. Def.
-(30283, 4413, 11), -- Average M. Def.
-(30283, 4414, 2), -- Standard Type
-(30283, 4415, 3), -- One-handed Sword
-(30283, 4416, 18), -- Dwarves
+(30283, 4408, 1), -- HP Modifiers
+(30283, 4409, 1), -- MP Modifiers
+(30283, 4410, 11), -- P. Atk. Modifiers
+(30283, 4411, 11), -- M. Atk. Modifiers
+(30283, 4412, 11), -- P. Def. Modifiers
+(30283, 4413, 11), -- M. Def. Modifiers
+(30283, 4414, 2), -- Armor Type
+(30283, 4415, 3), -- Weapon Type
+(30283, 4416, 18), -- Races
 -- Alberius
 (30284, 4045, 1), -- Resist Full Magic Attack
-(30284, 4408, 1), -- HP Increase (1x)
-(30284, 4409, 1), -- MP Increase (1x)
-(30284, 4410, 16), -- Very Strong P. Atk.
-(30284, 4411, 16), -- Very Strong M. Atk.
-(30284, 4412, 16), -- Very Strong P. Def.
-(30284, 4413, 16), -- Very Strong M. Def.
-(30284, 4414, 2), -- Standard Type
-(30284, 4415, 3), -- One-handed Sword
-(30284, 4416, 15), -- Elves
+(30284, 4408, 1), -- HP Modifiers
+(30284, 4409, 1), -- MP Modifiers
+(30284, 4410, 16), -- P. Atk. Modifiers
+(30284, 4411, 16), -- M. Atk. Modifiers
+(30284, 4412, 16), -- P. Def. Modifiers
+(30284, 4413, 16), -- M. Def. Modifiers
+(30284, 4414, 2), -- Armor Type
+(30284, 4415, 3), -- Weapon Type
+(30284, 4416, 15), -- Races
 -- Gartrandell
 (30285, 4045, 1), -- Resist Full Magic Attack
-(30285, 4408, 1), -- HP Increase (1x)
-(30285, 4409, 1), -- MP Increase (1x)
-(30285, 4410, 16), -- Very Strong P. Atk.
-(30285, 4411, 16), -- Very Strong M. Atk.
-(30285, 4412, 16), -- Very Strong P. Def.
-(30285, 4413, 16), -- Very Strong M. Def.
-(30285, 4414, 2), -- Standard Type
-(30285, 4415, 3), -- One-handed Sword
-(30285, 4416, 15), -- Elves
+(30285, 4408, 1), -- HP Modifiers
+(30285, 4409, 1), -- MP Modifiers
+(30285, 4410, 16), -- P. Atk. Modifiers
+(30285, 4411, 16), -- M. Atk. Modifiers
+(30285, 4412, 16), -- P. Def. Modifiers
+(30285, 4413, 16), -- M. Def. Modifiers
+(30285, 4414, 2), -- Armor Type
+(30285, 4415, 3), -- Weapon Type
+(30285, 4416, 15), -- Races
 -- Rains
 (30288, 4045, 1), -- Resist Full Magic Attack
-(30288, 4408, 1), -- HP Increase (1x)
-(30288, 4409, 1), -- MP Increase (1x)
-(30288, 4410, 11), -- Average P. Atk.
-(30288, 4411, 11), -- Average M. Atk.
-(30288, 4412, 11), -- Average P. Def.
-(30288, 4413, 11), -- Average M. Def.
-(30288, 4414, 2), -- Standard Type
-(30288, 4415, 3), -- One-handed Sword
-(30288, 4416, 14), -- Humans
+(30288, 4408, 1), -- HP Modifiers
+(30288, 4409, 1), -- MP Modifiers
+(30288, 4410, 11), -- P. Atk. Modifiers
+(30288, 4411, 11), -- M. Atk. Modifiers
+(30288, 4412, 11), -- P. Def. Modifiers
+(30288, 4413, 11), -- M. Def. Modifiers
+(30288, 4414, 2), -- Armor Type
+(30288, 4415, 3), -- Weapon Type
+(30288, 4416, 14), -- Races
 -- Raymond
 (30289, 4045, 1), -- Resist Full Magic Attack
-(30289, 4408, 1), -- HP Increase (1x)
-(30289, 4409, 1), -- MP Increase (1x)
-(30289, 4410, 11), -- Average P. Atk.
-(30289, 4411, 11), -- Average M. Atk.
-(30289, 4412, 11), -- Average P. Def.
-(30289, 4413, 11), -- Average M. Def.
-(30289, 4414, 2), -- Standard Type
-(30289, 4415, 3), -- One-handed Sword
-(30289, 4416, 14), -- Humans
+(30289, 4408, 1), -- HP Modifiers
+(30289, 4409, 1), -- MP Modifiers
+(30289, 4410, 11), -- P. Atk. Modifiers
+(30289, 4411, 11), -- M. Atk. Modifiers
+(30289, 4412, 11), -- P. Def. Modifiers
+(30289, 4413, 11), -- M. Def. Modifiers
+(30289, 4414, 2), -- Armor Type
+(30289, 4415, 3), -- Weapon Type
+(30289, 4416, 14), -- Races
 -- Xenos
 (30290, 4045, 1), -- Resist Full Magic Attack
-(30290, 4408, 1), -- HP Increase (1x)
-(30290, 4409, 1), -- MP Increase (1x)
-(30290, 4410, 11), -- Average P. Atk.
-(30290, 4411, 11), -- Average M. Atk.
-(30290, 4412, 11), -- Average P. Def.
-(30290, 4413, 11), -- Average M. Def.
-(30290, 4414, 2), -- Standard Type
-(30290, 4415, 3), -- One-handed Sword
-(30290, 4416, 16), -- Dark Elves
+(30290, 4408, 1), -- HP Modifiers
+(30290, 4409, 1), -- MP Modifiers
+(30290, 4410, 11), -- P. Atk. Modifiers
+(30290, 4411, 11), -- M. Atk. Modifiers
+(30290, 4412, 11), -- P. Def. Modifiers
+(30290, 4413, 11), -- M. Def. Modifiers
+(30290, 4414, 2), -- Armor Type
+(30290, 4415, 3), -- Weapon Type
+(30290, 4416, 16), -- Races
 -- Alex
 (30291, 4045, 1), -- Resist Full Magic Attack
-(30291, 4408, 1), -- HP Increase (1x)
-(30291, 4409, 1), -- MP Increase (1x)
-(30291, 4410, 11), -- Average P. Atk.
-(30291, 4411, 11), -- Average M. Atk.
-(30291, 4412, 11), -- Average P. Def.
-(30291, 4413, 11), -- Average M. Def.
-(30291, 4414, 2), -- Standard Type
-(30291, 4415, 3), -- One-handed Sword
-(30291, 4416, 14), -- Humans
+(30291, 4408, 1), -- HP Modifiers
+(30291, 4409, 1), -- MP Modifiers
+(30291, 4410, 11), -- P. Atk. Modifiers
+(30291, 4411, 11), -- M. Atk. Modifiers
+(30291, 4412, 11), -- P. Def. Modifiers
+(30291, 4413, 11), -- M. Def. Modifiers
+(30291, 4414, 2), -- Armor Type
+(30291, 4415, 3), -- Weapon Type
+(30291, 4416, 14), -- Races
 -- Manuel
 (30293, 4045, 1), -- Resist Full Magic Attack
-(30293, 4408, 1), -- HP Increase (1x)
-(30293, 4409, 1), -- MP Increase (1x)
-(30293, 4410, 11), -- Average P. Atk.
-(30293, 4411, 11), -- Average M. Atk.
-(30293, 4412, 11), -- Average P. Def.
-(30293, 4413, 11), -- Average M. Def.
-(30293, 4414, 2), -- Standard Type
-(30293, 4415, 3), -- One-handed Sword
-(30293, 4416, 15), -- Elves
+(30293, 4408, 1), -- HP Modifiers
+(30293, 4409, 1), -- MP Modifiers
+(30293, 4410, 11), -- P. Atk. Modifiers
+(30293, 4411, 11), -- M. Atk. Modifiers
+(30293, 4412, 11), -- P. Def. Modifiers
+(30293, 4413, 11), -- M. Def. Modifiers
+(30293, 4414, 2), -- Armor Type
+(30293, 4415, 3), -- Weapon Type
+(30293, 4416, 15), -- Races
 -- Varan
 (30294, 4045, 1), -- Resist Full Magic Attack
-(30294, 4408, 1), -- HP Increase (1x)
-(30294, 4409, 1), -- MP Increase (1x)
-(30294, 4410, 11), -- Average P. Atk.
-(30294, 4411, 11), -- Average M. Atk.
-(30294, 4412, 11), -- Average P. Def.
-(30294, 4413, 11), -- Average M. Def.
-(30294, 4414, 2), -- Standard Type
-(30294, 4415, 3), -- One-handed Sword
-(30294, 4416, 14), -- Humans
+(30294, 4408, 1), -- HP Modifiers
+(30294, 4409, 1), -- MP Modifiers
+(30294, 4410, 11), -- P. Atk. Modifiers
+(30294, 4411, 11), -- M. Atk. Modifiers
+(30294, 4412, 11), -- P. Def. Modifiers
+(30294, 4413, 11), -- M. Def. Modifiers
+(30294, 4414, 2), -- Armor Type
+(30294, 4415, 3), -- Weapon Type
+(30294, 4416, 14), -- Races
 -- Tobias
 (30297, 4045, 1), -- Resist Full Magic Attack
-(30297, 4408, 1), -- HP Increase (1x)
-(30297, 4409, 1), -- MP Increase (1x)
-(30297, 4410, 11), -- Average P. Atk.
-(30297, 4411, 11), -- Average M. Atk.
-(30297, 4412, 11), -- Average P. Def.
-(30297, 4413, 11), -- Average M. Def.
-(30297, 4414, 2), -- Standard Type
-(30297, 4415, 3), -- One-handed Sword
-(30297, 4416, 16), -- Dark Elves
+(30297, 4408, 1), -- HP Modifiers
+(30297, 4409, 1), -- MP Modifiers
+(30297, 4410, 11), -- P. Atk. Modifiers
+(30297, 4411, 11), -- M. Atk. Modifiers
+(30297, 4412, 11), -- P. Def. Modifiers
+(30297, 4413, 11), -- M. Def. Modifiers
+(30297, 4414, 2), -- Armor Type
+(30297, 4415, 3), -- Weapon Type
+(30297, 4416, 16), -- Races
 -- Pinter
 (30298, 4045, 1), -- Resist Full Magic Attack
-(30298, 4408, 1), -- HP Increase (1x)
-(30298, 4409, 1), -- MP Increase (1x)
-(30298, 4410, 11), -- Average P. Atk.
-(30298, 4411, 11), -- Average M. Atk.
-(30298, 4412, 11), -- Average P. Def.
-(30298, 4413, 11), -- Average M. Def.
-(30298, 4414, 2), -- Standard Type
-(30298, 4415, 3), -- One-handed Sword
-(30298, 4416, 18), -- Dwarves
+(30298, 4408, 1), -- HP Modifiers
+(30298, 4409, 1), -- MP Modifiers
+(30298, 4410, 11), -- P. Atk. Modifiers
+(30298, 4411, 11), -- M. Atk. Modifiers
+(30298, 4412, 11), -- P. Def. Modifiers
+(30298, 4413, 11), -- M. Def. Modifiers
+(30298, 4414, 2), -- Armor Type
+(30298, 4415, 3), -- Weapon Type
+(30298, 4416, 18), -- Races
 -- Pushkin
 (30300, 4045, 1), -- Resist Full Magic Attack
-(30300, 4408, 1), -- HP Increase (1x)
-(30300, 4409, 1), -- MP Increase (1x)
-(30300, 4410, 11), -- Average P. Atk.
-(30300, 4411, 11), -- Average M. Atk.
-(30300, 4412, 11), -- Average P. Def.
-(30300, 4413, 11), -- Average M. Def.
-(30300, 4414, 2), -- Standard Type
-(30300, 4415, 3), -- One-handed Sword
-(30300, 4416, 18), -- Dwarves
+(30300, 4408, 1), -- HP Modifiers
+(30300, 4409, 1), -- MP Modifiers
+(30300, 4410, 11), -- P. Atk. Modifiers
+(30300, 4411, 11), -- M. Atk. Modifiers
+(30300, 4412, 11), -- P. Def. Modifiers
+(30300, 4413, 11), -- M. Def. Modifiers
+(30300, 4414, 2), -- Armor Type
+(30300, 4415, 3), -- Weapon Type
+(30300, 4416, 18), -- Races
 -- Hally
 (30301, 4045, 1), -- Resist Full Magic Attack
-(30301, 4408, 1), -- HP Increase (1x)
-(30301, 4409, 1), -- MP Increase (1x)
-(30301, 4410, 11), -- Average P. Atk.
-(30301, 4411, 11), -- Average M. Atk.
-(30301, 4412, 11), -- Average P. Def.
-(30301, 4413, 11), -- Average M. Def.
-(30301, 4414, 2), -- Standard Type
-(30301, 4415, 3), -- One-handed Sword
-(30301, 4416, 14), -- Humans
+(30301, 4408, 1), -- HP Modifiers
+(30301, 4409, 1), -- MP Modifiers
+(30301, 4410, 11), -- P. Atk. Modifiers
+(30301, 4411, 11), -- M. Atk. Modifiers
+(30301, 4412, 11), -- P. Def. Modifiers
+(30301, 4413, 11), -- M. Def. Modifiers
+(30301, 4414, 2), -- Armor Type
+(30301, 4415, 3), -- Weapon Type
+(30301, 4416, 14), -- Races
 -- Vellior
 (30305, 4045, 1), -- Resist Full Magic Attack
-(30305, 4408, 1), -- HP Increase (1x)
-(30305, 4409, 1), -- MP Increase (1x)
-(30305, 4410, 11), -- Average P. Atk.
-(30305, 4411, 11), -- Average M. Atk.
-(30305, 4412, 11), -- Average P. Def.
-(30305, 4413, 11), -- Average M. Def.
-(30305, 4414, 2), -- Standard Type
-(30305, 4415, 3), -- One-handed Sword
-(30305, 4416, 16), -- Dark Elves
+(30305, 4408, 1), -- HP Modifiers
+(30305, 4409, 1), -- MP Modifiers
+(30305, 4410, 11), -- P. Atk. Modifiers
+(30305, 4411, 11), -- M. Atk. Modifiers
+(30305, 4412, 11), -- P. Def. Modifiers
+(30305, 4413, 11), -- M. Def. Modifiers
+(30305, 4414, 2), -- Armor Type
+(30305, 4415, 3), -- Weapon Type
+(30305, 4416, 16), -- Races
 -- Karrod
 (30307, 4045, 1), -- Resist Full Magic Attack
-(30307, 4408, 1), -- HP Increase (1x)
-(30307, 4409, 1), -- MP Increase (1x)
-(30307, 4410, 11), -- Average P. Atk.
-(30307, 4411, 11), -- Average M. Atk.
-(30307, 4412, 11), -- Average P. Def.
-(30307, 4413, 11), -- Average M. Def.
-(30307, 4414, 2), -- Standard Type
-(30307, 4415, 3), -- One-handed Sword
-(30307, 4416, 16), -- Dark Elves
+(30307, 4408, 1), -- HP Modifiers
+(30307, 4409, 1), -- MP Modifiers
+(30307, 4410, 11), -- P. Atk. Modifiers
+(30307, 4411, 11), -- M. Atk. Modifiers
+(30307, 4412, 11), -- P. Def. Modifiers
+(30307, 4413, 11), -- M. Def. Modifiers
+(30307, 4414, 2), -- Armor Type
+(30307, 4415, 3), -- Weapon Type
+(30307, 4416, 16), -- Races
 -- Sir Collin Windawood
 (30311, 4045, 1), -- Resist Full Magic Attack
-(30311, 4408, 1), -- HP Increase (1x)
-(30311, 4409, 1), -- MP Increase (1x)
-(30311, 4410, 11), -- Average P. Atk.
-(30311, 4411, 11), -- Average M. Atk.
-(30311, 4412, 11), -- Average P. Def.
-(30311, 4413, 11), -- Average M. Def.
-(30311, 4414, 2), -- Standard Type
-(30311, 4415, 3), -- One-handed Sword
-(30311, 4416, 14), -- Humans
+(30311, 4408, 1), -- HP Modifiers
+(30311, 4409, 1), -- MP Modifiers
+(30311, 4410, 11), -- P. Atk. Modifiers
+(30311, 4411, 11), -- M. Atk. Modifiers
+(30311, 4412, 11), -- P. Def. Modifiers
+(30311, 4413, 11), -- M. Def. Modifiers
+(30311, 4414, 2), -- Armor Type
+(30311, 4415, 3), -- Weapon Type
+(30311, 4416, 14), -- Races
 -- Rockswell
 (30312, 4045, 1), -- Resist Full Magic Attack
-(30312, 4408, 1), -- HP Increase (1x)
-(30312, 4409, 1), -- MP Increase (1x)
-(30312, 4410, 11), -- Average P. Atk.
-(30312, 4411, 11), -- Average M. Atk.
-(30312, 4412, 11), -- Average P. Def.
-(30312, 4413, 11), -- Average M. Def.
-(30312, 4414, 2), -- Standard Type
-(30312, 4415, 3), -- One-handed Sword
-(30312, 4416, 14), -- Humans
+(30312, 4408, 1), -- HP Modifiers
+(30312, 4409, 1), -- MP Modifiers
+(30312, 4410, 11), -- P. Atk. Modifiers
+(30312, 4411, 11), -- M. Atk. Modifiers
+(30312, 4412, 11), -- P. Def. Modifiers
+(30312, 4413, 11), -- M. Def. Modifiers
+(30312, 4414, 2), -- Armor Type
+(30312, 4415, 3), -- Weapon Type
+(30312, 4416, 14), -- Races
 -- Asha
 (30313, 4045, 1), -- Resist Full Magic Attack
-(30313, 4408, 1), -- HP Increase (1x)
-(30313, 4409, 1), -- MP Increase (1x)
-(30313, 4410, 11), -- Average P. Atk.
-(30313, 4411, 11), -- Average M. Atk.
-(30313, 4412, 11), -- Average P. Def.
-(30313, 4413, 11), -- Average M. Def.
-(30313, 4414, 2), -- Standard Type
-(30313, 4415, 3), -- One-handed Sword
-(30313, 4416, 14), -- Humans
+(30313, 4408, 1), -- HP Modifiers
+(30313, 4409, 1), -- MP Modifiers
+(30313, 4410, 11), -- P. Atk. Modifiers
+(30313, 4411, 11), -- M. Atk. Modifiers
+(30313, 4412, 11), -- P. Def. Modifiers
+(30313, 4413, 11), -- M. Def. Modifiers
+(30313, 4414, 2), -- Armor Type
+(30313, 4415, 3), -- Weapon Type
+(30313, 4416, 14), -- Races
 -- Nestle
 (30314, 4045, 1), -- Resist Full Magic Attack
-(30314, 4408, 1), -- HP Increase (1x)
-(30314, 4409, 1), -- MP Increase (1x)
-(30314, 4410, 11), -- Average P. Atk.
-(30314, 4411, 11), -- Average M. Atk.
-(30314, 4412, 11), -- Average P. Def.
-(30314, 4413, 11), -- Average M. Def.
-(30314, 4414, 2), -- Standard Type
-(30314, 4415, 3), -- One-handed Sword
-(30314, 4416, 14), -- Humans
+(30314, 4408, 1), -- HP Modifiers
+(30314, 4409, 1), -- MP Modifiers
+(30314, 4410, 11), -- P. Atk. Modifiers
+(30314, 4411, 11), -- M. Atk. Modifiers
+(30314, 4412, 11), -- P. Def. Modifiers
+(30314, 4413, 11), -- M. Def. Modifiers
+(30314, 4414, 2), -- Armor Type
+(30314, 4415, 3), -- Weapon Type
+(30314, 4416, 14), -- Races
 -- Poesia
 (30315, 4045, 1), -- Resist Full Magic Attack
-(30315, 4408, 1), -- HP Increase (1x)
-(30315, 4409, 1), -- MP Increase (1x)
-(30315, 4410, 11), -- Average P. Atk.
-(30315, 4411, 11), -- Average M. Atk.
-(30315, 4412, 11), -- Average P. Def.
-(30315, 4413, 11), -- Average M. Def.
-(30315, 4414, 2), -- Standard Type
-(30315, 4415, 3), -- One-handed Sword
-(30315, 4416, 14), -- Humans
+(30315, 4408, 1), -- HP Modifiers
+(30315, 4409, 1), -- MP Modifiers
+(30315, 4410, 11), -- P. Atk. Modifiers
+(30315, 4411, 11), -- M. Atk. Modifiers
+(30315, 4412, 11), -- P. Def. Modifiers
+(30315, 4413, 11), -- M. Def. Modifiers
+(30315, 4414, 2), -- Armor Type
+(30315, 4415, 3), -- Weapon Type
+(30315, 4416, 14), -- Races
 -- Raut
 (30316, 4045, 1), -- Resist Full Magic Attack
-(30316, 4408, 1), -- HP Increase (1x)
-(30316, 4409, 1), -- MP Increase (1x)
-(30316, 4410, 11), -- Average P. Atk.
-(30316, 4411, 11), -- Average M. Atk.
-(30316, 4412, 11), -- Average P. Def.
-(30316, 4413, 11), -- Average M. Def.
-(30316, 4414, 2), -- Standard Type
-(30316, 4415, 3), -- One-handed Sword
-(30316, 4416, 18), -- Dwarves
+(30316, 4408, 1), -- HP Modifiers
+(30316, 4409, 1), -- MP Modifiers
+(30316, 4410, 11), -- P. Atk. Modifiers
+(30316, 4411, 11), -- M. Atk. Modifiers
+(30316, 4412, 11), -- P. Def. Modifiers
+(30316, 4413, 11), -- M. Def. Modifiers
+(30316, 4414, 2), -- Armor Type
+(30316, 4415, 3), -- Weapon Type
+(30316, 4416, 18), -- Races
 -- Kluto
 (30317, 4045, 1), -- Resist Full Magic Attack
-(30317, 4408, 1), -- HP Increase (1x)
-(30317, 4409, 1), -- MP Increase (1x)
-(30317, 4410, 11), -- Average P. Atk.
-(30317, 4411, 11), -- Average M. Atk.
-(30317, 4412, 11), -- Average P. Def.
-(30317, 4413, 11), -- Average M. Def.
-(30317, 4414, 2), -- Standard Type
-(30317, 4415, 3), -- One-handed Sword
-(30317, 4416, 18), -- Dwarves
+(30317, 4408, 1), -- HP Modifiers
+(30317, 4409, 1), -- MP Modifiers
+(30317, 4410, 11), -- P. Atk. Modifiers
+(30317, 4411, 11), -- M. Atk. Modifiers
+(30317, 4412, 11), -- P. Def. Modifiers
+(30317, 4413, 11), -- M. Def. Modifiers
+(30317, 4414, 2), -- Armor Type
+(30317, 4415, 3), -- Weapon Type
+(30317, 4416, 18), -- Races
 -- Richlin
 (30320, 4045, 1), -- Resist Full Magic Attack
-(30320, 4408, 1), -- HP Increase (1x)
-(30320, 4409, 1), -- MP Increase (1x)
-(30320, 4410, 11), -- Average P. Atk.
-(30320, 4411, 11), -- Average M. Atk.
-(30320, 4412, 11), -- Average P. Def.
-(30320, 4413, 11), -- Average M. Def.
-(30320, 4414, 2), -- Standard Type
-(30320, 4415, 3), -- One-handed Sword
-(30320, 4416, 14), -- Humans
+(30320, 4408, 1), -- HP Modifiers
+(30320, 4409, 1), -- MP Modifiers
+(30320, 4410, 11), -- P. Atk. Modifiers
+(30320, 4411, 11), -- M. Atk. Modifiers
+(30320, 4412, 11), -- P. Def. Modifiers
+(30320, 4413, 11), -- M. Def. Modifiers
+(30320, 4414, 2), -- Armor Type
+(30320, 4415, 3), -- Weapon Type
+(30320, 4416, 14), -- Races
 -- Sydnia
 (30321, 4045, 1), -- Resist Full Magic Attack
-(30321, 4408, 1), -- HP Increase (1x)
-(30321, 4409, 1), -- MP Increase (1x)
-(30321, 4410, 11), -- Average P. Atk.
-(30321, 4411, 11), -- Average M. Atk.
-(30321, 4412, 11), -- Average P. Def.
-(30321, 4413, 11), -- Average M. Def.
-(30321, 4414, 2), -- Standard Type
-(30321, 4415, 3), -- One-handed Sword
-(30321, 4416, 14), -- Humans
+(30321, 4408, 1), -- HP Modifiers
+(30321, 4409, 1), -- MP Modifiers
+(30321, 4410, 11), -- P. Atk. Modifiers
+(30321, 4411, 11), -- M. Atk. Modifiers
+(30321, 4412, 11), -- P. Def. Modifiers
+(30321, 4413, 11), -- M. Def. Modifiers
+(30321, 4414, 2), -- Armor Type
+(30321, 4415, 3), -- Weapon Type
+(30321, 4416, 14), -- Races
 -- Ballin
 (30322, 4045, 1), -- Resist Full Magic Attack
-(30322, 4408, 1), -- HP Increase (1x)
-(30322, 4409, 1), -- MP Increase (1x)
-(30322, 4410, 11), -- Average P. Atk.
-(30322, 4411, 11), -- Average M. Atk.
-(30322, 4412, 11), -- Average P. Def.
-(30322, 4413, 11), -- Average M. Def.
-(30322, 4414, 2), -- Standard Type
-(30322, 4415, 3), -- One-handed Sword
-(30322, 4416, 18), -- Dwarves
+(30322, 4408, 1), -- HP Modifiers
+(30322, 4409, 1), -- MP Modifiers
+(30322, 4410, 11), -- P. Atk. Modifiers
+(30322, 4411, 11), -- M. Atk. Modifiers
+(30322, 4412, 11), -- P. Def. Modifiers
+(30322, 4413, 11), -- M. Def. Modifiers
+(30322, 4414, 2), -- Armor Type
+(30322, 4415, 3), -- Weapon Type
+(30322, 4416, 18), -- Races
 -- Audiberti
 (30325, 4045, 1), -- Resist Full Magic Attack
-(30325, 4408, 1), -- HP Increase (1x)
-(30325, 4409, 1), -- MP Increase (1x)
-(30325, 4410, 11), -- Average P. Atk.
-(30325, 4411, 11), -- Average M. Atk.
-(30325, 4412, 11), -- Average P. Def.
-(30325, 4413, 11), -- Average M. Def.
-(30325, 4414, 2), -- Standard Type
-(30325, 4415, 3), -- One-handed Sword
-(30325, 4416, 14), -- Humans
+(30325, 4408, 1), -- HP Modifiers
+(30325, 4409, 1), -- MP Modifiers
+(30325, 4410, 11), -- P. Atk. Modifiers
+(30325, 4411, 11), -- M. Atk. Modifiers
+(30325, 4412, 11), -- P. Def. Modifiers
+(30325, 4413, 11), -- M. Def. Modifiers
+(30325, 4414, 2), -- Armor Type
+(30325, 4415, 3), -- Weapon Type
+(30325, 4416, 14), -- Races
 -- Leona
 (30326, 4045, 1), -- Resist Full Magic Attack
-(30326, 4408, 1), -- HP Increase (1x)
-(30326, 4409, 1), -- MP Increase (1x)
-(30326, 4410, 11), -- Average P. Atk.
-(30326, 4411, 11), -- Average M. Atk.
-(30326, 4412, 11), -- Average P. Def.
-(30326, 4413, 11), -- Average M. Def.
-(30326, 4414, 2), -- Standard Type
-(30326, 4415, 3), -- One-handed Sword
-(30326, 4416, 14), -- Humans
+(30326, 4408, 1), -- HP Modifiers
+(30326, 4409, 1), -- MP Modifiers
+(30326, 4410, 11), -- P. Atk. Modifiers
+(30326, 4411, 11), -- M. Atk. Modifiers
+(30326, 4412, 11), -- P. Def. Modifiers
+(30326, 4413, 11), -- M. Def. Modifiers
+(30326, 4414, 2), -- Armor Type
+(30326, 4415, 3), -- Weapon Type
+(30326, 4416, 14), -- Races
 -- Sorius
 (30327, 4045, 1), -- Resist Full Magic Attack
-(30327, 4408, 1), -- HP Increase (1x)
-(30327, 4409, 1), -- MP Increase (1x)
-(30327, 4410, 11), -- Average P. Atk.
-(30327, 4411, 11), -- Average M. Atk.
-(30327, 4412, 11), -- Average P. Def.
-(30327, 4413, 11), -- Average M. Def.
-(30327, 4414, 2), -- Standard Type
-(30327, 4415, 3), -- One-handed Sword
-(30327, 4416, 15), -- Elves
+(30327, 4408, 1), -- HP Modifiers
+(30327, 4409, 1), -- MP Modifiers
+(30327, 4410, 11), -- P. Atk. Modifiers
+(30327, 4411, 11), -- M. Atk. Modifiers
+(30327, 4412, 11), -- P. Def. Modifiers
+(30327, 4413, 11), -- M. Def. Modifiers
+(30327, 4414, 2), -- Armor Type
+(30327, 4415, 3), -- Weapon Type
+(30327, 4416, 15), -- Races
 -- Reisa
 (30328, 4045, 1), -- Resist Full Magic Attack
-(30328, 4408, 1), -- HP Increase (1x)
-(30328, 4409, 1), -- MP Increase (1x)
-(30328, 4410, 11), -- Average P. Atk.
-(30328, 4411, 11), -- Average M. Atk.
-(30328, 4412, 11), -- Average P. Def.
-(30328, 4413, 11), -- Average M. Def.
-(30328, 4414, 2), -- Standard Type
-(30328, 4415, 3), -- One-handed Sword
-(30328, 4416, 15), -- Elves
+(30328, 4408, 1), -- HP Modifiers
+(30328, 4409, 1), -- MP Modifiers
+(30328, 4410, 11), -- P. Atk. Modifiers
+(30328, 4411, 11), -- M. Atk. Modifiers
+(30328, 4412, 11), -- P. Def. Modifiers
+(30328, 4413, 11), -- M. Def. Modifiers
+(30328, 4414, 2), -- Armor Type
+(30328, 4415, 3), -- Weapon Type
+(30328, 4416, 15), -- Races
 -- Virgil
 (30329, 4045, 1), -- Resist Full Magic Attack
-(30329, 4408, 1), -- HP Increase (1x)
-(30329, 4409, 1), -- MP Increase (1x)
-(30329, 4410, 11), -- Average P. Atk.
-(30329, 4411, 11), -- Average M. Atk.
-(30329, 4412, 11), -- Average P. Def.
-(30329, 4413, 11), -- Average M. Def.
-(30329, 4414, 2), -- Standard Type
-(30329, 4415, 3), -- One-handed Sword
-(30329, 4416, 16), -- Dark Elves
+(30329, 4408, 1), -- HP Modifiers
+(30329, 4409, 1), -- MP Modifiers
+(30329, 4410, 11), -- P. Atk. Modifiers
+(30329, 4411, 11), -- M. Atk. Modifiers
+(30329, 4412, 11), -- P. Def. Modifiers
+(30329, 4413, 11), -- M. Def. Modifiers
+(30329, 4414, 2), -- Armor Type
+(30329, 4415, 3), -- Weapon Type
+(30329, 4416, 16), -- Races
 -- Sidra
 (30330, 4045, 1), -- Resist Full Magic Attack
-(30330, 4408, 1), -- HP Increase (1x)
-(30330, 4409, 1), -- MP Increase (1x)
-(30330, 4410, 11), -- Average P. Atk.
-(30330, 4411, 11), -- Average M. Atk.
-(30330, 4412, 11), -- Average P. Def.
-(30330, 4413, 11), -- Average M. Def.
-(30330, 4414, 2), -- Standard Type
-(30330, 4415, 3), -- One-handed Sword
-(30330, 4416, 16), -- Dark Elves
+(30330, 4408, 1), -- HP Modifiers
+(30330, 4409, 1), -- MP Modifiers
+(30330, 4410, 11), -- P. Atk. Modifiers
+(30330, 4411, 11), -- M. Atk. Modifiers
+(30330, 4412, 11), -- P. Def. Modifiers
+(30330, 4413, 11), -- M. Def. Modifiers
+(30330, 4414, 2), -- Armor Type
+(30330, 4415, 3), -- Weapon Type
+(30330, 4416, 16), -- Races
 -- Toma
 (30331, 4045, 1), -- Resist Full Magic Attack
-(30331, 4408, 1), -- HP Increase (1x)
-(30331, 4409, 1), -- MP Increase (1x)
-(30331, 4410, 16), -- Very Strong P. Atk.
-(30331, 4411, 16), -- Very Strong M. Atk.
-(30331, 4412, 16), -- Very Strong P. Def.
-(30331, 4413, 16), -- Very Strong M. Def.
-(30331, 4414, 2), -- Standard Type
-(30331, 4415, 9), -- Bows
-(30331, 4416, 14), -- Humans
+(30331, 4408, 1), -- HP Modifiers
+(30331, 4409, 1), -- MP Modifiers
+(30331, 4410, 16), -- P. Atk. Modifiers
+(30331, 4411, 16), -- M. Atk. Modifiers
+(30331, 4412, 16), -- P. Def. Modifiers
+(30331, 4413, 16), -- M. Def. Modifiers
+(30331, 4414, 2), -- Armor Type
+(30331, 4415, 9), -- Weapon Type
+(30331, 4416, 14), -- Races
 -- Bathis
 (30332, 4045, 1), -- Resist Full Magic Attack
-(30332, 4408, 1), -- HP Increase (1x)
-(30332, 4409, 1), -- MP Increase (1x)
-(30332, 4410, 16), -- Very Strong P. Atk.
-(30332, 4411, 16), -- Very Strong M. Atk.
-(30332, 4412, 16), -- Very Strong P. Def.
-(30332, 4413, 16), -- Very Strong M. Def.
-(30332, 4414, 2), -- Standard Type
-(30332, 4415, 3), -- One-handed Sword
-(30332, 4416, 14), -- Humans
+(30332, 4408, 1), -- HP Modifiers
+(30332, 4409, 1), -- MP Modifiers
+(30332, 4410, 16), -- P. Atk. Modifiers
+(30332, 4411, 16), -- M. Atk. Modifiers
+(30332, 4412, 16), -- P. Def. Modifiers
+(30332, 4413, 16), -- M. Def. Modifiers
+(30332, 4414, 2), -- Armor Type
+(30332, 4415, 3), -- Weapon Type
+(30332, 4416, 14), -- Races
 -- Praga
 (30333, 4045, 1), -- Resist Full Magic Attack
-(30333, 4408, 1), -- HP Increase (1x)
-(30333, 4409, 1), -- MP Increase (1x)
-(30333, 4410, 16), -- Very Strong P. Atk.
-(30333, 4411, 16), -- Very Strong M. Atk.
-(30333, 4412, 16), -- Very Strong P. Def.
-(30333, 4413, 16), -- Very Strong M. Def.
-(30333, 4414, 2), -- Standard Type
-(30333, 4415, 3), -- One-handed Sword
-(30333, 4416, 14), -- Humans
+(30333, 4408, 1), -- HP Modifiers
+(30333, 4409, 1), -- MP Modifiers
+(30333, 4410, 16), -- P. Atk. Modifiers
+(30333, 4411, 16), -- M. Atk. Modifiers
+(30333, 4412, 16), -- P. Def. Modifiers
+(30333, 4413, 16), -- M. Def. Modifiers
+(30333, 4414, 2), -- Armor Type
+(30333, 4415, 3), -- Weapon Type
+(30333, 4416, 14), -- Races
 -- Babenco
 (30334, 4045, 1), -- Resist Full Magic Attack
-(30334, 4408, 1), -- HP Increase (1x)
-(30334, 4409, 1), -- MP Increase (1x)
-(30334, 4410, 16), -- Very Strong P. Atk.
-(30334, 4411, 16), -- Very Strong M. Atk.
-(30334, 4412, 16), -- Very Strong P. Def.
-(30334, 4413, 16), -- Very Strong M. Def.
-(30334, 4414, 2), -- Standard Type
-(30334, 4415, 9), -- Bows
-(30334, 4416, 14), -- Humans
+(30334, 4408, 1), -- HP Modifiers
+(30334, 4409, 1), -- MP Modifiers
+(30334, 4410, 16), -- P. Atk. Modifiers
+(30334, 4411, 16), -- M. Atk. Modifiers
+(30334, 4412, 16), -- P. Def. Modifiers
+(30334, 4413, 16), -- M. Def. Modifiers
+(30334, 4414, 2), -- Armor Type
+(30334, 4415, 9), -- Weapon Type
+(30334, 4416, 14), -- Races
 -- Brynn
 (30335, 4045, 1), -- Resist Full Magic Attack
-(30335, 4408, 1), -- HP Increase (1x)
-(30335, 4409, 1), -- MP Increase (1x)
-(30335, 4410, 16), -- Very Strong P. Atk.
-(30335, 4411, 16), -- Very Strong M. Atk.
-(30335, 4412, 16), -- Very Strong P. Def.
-(30335, 4413, 16), -- Very Strong M. Def.
-(30335, 4414, 2), -- Standard Type
-(30335, 4415, 9), -- Bows
-(30335, 4416, 14), -- Humans
+(30335, 4408, 1), -- HP Modifiers
+(30335, 4409, 1), -- MP Modifiers
+(30335, 4410, 16), -- P. Atk. Modifiers
+(30335, 4411, 16), -- M. Atk. Modifiers
+(30335, 4412, 16), -- P. Def. Modifiers
+(30335, 4413, 16), -- M. Def. Modifiers
+(30335, 4414, 2), -- Armor Type
+(30335, 4415, 9), -- Weapon Type
+(30335, 4416, 14), -- Races
 -- Curtis
 (30336, 4045, 1), -- Resist Full Magic Attack
-(30336, 4408, 1), -- HP Increase (1x)
-(30336, 4409, 1), -- MP Increase (1x)
-(30336, 4410, 16), -- Very Strong P. Atk.
-(30336, 4411, 16), -- Very Strong M. Atk.
-(30336, 4412, 16), -- Very Strong P. Def.
-(30336, 4413, 16), -- Very Strong M. Def.
-(30336, 4414, 2), -- Standard Type
-(30336, 4415, 9), -- Bows
-(30336, 4416, 14), -- Humans
+(30336, 4408, 1), -- HP Modifiers
+(30336, 4409, 1), -- MP Modifiers
+(30336, 4410, 16), -- P. Atk. Modifiers
+(30336, 4411, 16), -- M. Atk. Modifiers
+(30336, 4412, 16), -- P. Def. Modifiers
+(30336, 4413, 16), -- M. Def. Modifiers
+(30336, 4414, 2), -- Armor Type
+(30336, 4415, 9), -- Weapon Type
+(30336, 4416, 14), -- Races
 -- Moretti
 (30337, 4045, 1), -- Resist Full Magic Attack
-(30337, 4408, 1), -- HP Increase (1x)
-(30337, 4409, 1), -- MP Increase (1x)
-(30337, 4410, 16), -- Very Strong P. Atk.
-(30337, 4411, 16), -- Very Strong M. Atk.
-(30337, 4412, 16), -- Very Strong P. Def.
-(30337, 4413, 16), -- Very Strong M. Def.
-(30337, 4414, 2), -- Standard Type
-(30337, 4415, 3), -- One-handed Sword
-(30337, 4416, 14), -- Humans
+(30337, 4408, 1), -- HP Modifiers
+(30337, 4409, 1), -- MP Modifiers
+(30337, 4410, 16), -- P. Atk. Modifiers
+(30337, 4411, 16), -- M. Atk. Modifiers
+(30337, 4412, 16), -- P. Def. Modifiers
+(30337, 4413, 16), -- M. Def. Modifiers
+(30337, 4414, 2), -- Armor Type
+(30337, 4415, 3), -- Weapon Type
+(30337, 4416, 14), -- Races
 -- Melville
 (30338, 4045, 1), -- Resist Full Magic Attack
-(30338, 4408, 1), -- HP Increase (1x)
-(30338, 4409, 1), -- MP Increase (1x)
-(30338, 4410, 16), -- Very Strong P. Atk.
-(30338, 4411, 16), -- Very Strong M. Atk.
-(30338, 4412, 16), -- Very Strong P. Def.
-(30338, 4413, 16), -- Very Strong M. Def.
-(30338, 4414, 2), -- Standard Type
-(30338, 4415, 9), -- Bows
-(30338, 4416, 14), -- Humans
+(30338, 4408, 1), -- HP Modifiers
+(30338, 4409, 1), -- MP Modifiers
+(30338, 4410, 16), -- P. Atk. Modifiers
+(30338, 4411, 16), -- M. Atk. Modifiers
+(30338, 4412, 16), -- P. Def. Modifiers
+(30338, 4413, 16), -- M. Def. Modifiers
+(30338, 4414, 2), -- Armor Type
+(30338, 4415, 9), -- Weapon Type
+(30338, 4416, 14), -- Races
 -- Varsak
 (30342, 4045, 1), -- Resist Full Magic Attack
-(30342, 4408, 1), -- HP Increase (1x)
-(30342, 4409, 1), -- MP Increase (1x)
-(30342, 4410, 11), -- Average P. Atk.
-(30342, 4411, 11), -- Average M. Atk.
-(30342, 4412, 11), -- Average P. Def.
-(30342, 4413, 11), -- Average M. Def.
-(30342, 4414, 2), -- Standard Type
-(30342, 4415, 3), -- One-handed Sword
-(30342, 4416, 14), -- Humans
+(30342, 4408, 1), -- HP Modifiers
+(30342, 4409, 1), -- MP Modifiers
+(30342, 4410, 11), -- P. Atk. Modifiers
+(30342, 4411, 11), -- M. Atk. Modifiers
+(30342, 4412, 11), -- P. Def. Modifiers
+(30342, 4413, 11), -- M. Def. Modifiers
+(30342, 4414, 2), -- Armor Type
+(30342, 4415, 3), -- Weapon Type
+(30342, 4416, 14), -- Races
 -- Rohmer
 (30344, 4045, 1), -- Resist Full Magic Attack
-(30344, 4408, 1), -- HP Increase (1x)
-(30344, 4409, 1), -- MP Increase (1x)
-(30344, 4410, 11), -- Average P. Atk.
-(30344, 4411, 11), -- Average M. Atk.
-(30344, 4412, 11), -- Average P. Def.
-(30344, 4413, 11), -- Average M. Def.
-(30344, 4414, 2), -- Standard Type
-(30344, 4415, 3), -- One-handed Sword
-(30344, 4416, 14), -- Humans
+(30344, 4408, 1), -- HP Modifiers
+(30344, 4409, 1), -- MP Modifiers
+(30344, 4410, 11), -- P. Atk. Modifiers
+(30344, 4411, 11), -- M. Atk. Modifiers
+(30344, 4412, 11), -- P. Def. Modifiers
+(30344, 4413, 11), -- M. Def. Modifiers
+(30344, 4414, 2), -- Armor Type
+(30344, 4415, 3), -- Weapon Type
+(30344, 4416, 14), -- Races
 -- Ramoniell
 (30345, 4045, 1), -- Resist Full Magic Attack
-(30345, 4408, 1), -- HP Increase (1x)
-(30345, 4409, 1), -- MP Increase (1x)
-(30345, 4410, 11), -- Average P. Atk.
-(30345, 4411, 11), -- Average M. Atk.
-(30345, 4412, 11), -- Average P. Def.
-(30345, 4413, 11), -- Average M. Def.
-(30345, 4414, 2), -- Standard Type
-(30345, 4415, 3), -- One-handed Sword
-(30345, 4416, 15), -- Elves
+(30345, 4408, 1), -- HP Modifiers
+(30345, 4409, 1), -- MP Modifiers
+(30345, 4410, 11), -- P. Atk. Modifiers
+(30345, 4411, 11), -- M. Atk. Modifiers
+(30345, 4412, 11), -- P. Def. Modifiers
+(30345, 4413, 11), -- M. Def. Modifiers
+(30345, 4414, 2), -- Armor Type
+(30345, 4415, 3), -- Weapon Type
+(30345, 4416, 15), -- Races
 -- Kayleen
 (30346, 4045, 1), -- Resist Full Magic Attack
-(30346, 4408, 1), -- HP Increase (1x)
-(30346, 4409, 1), -- MP Increase (1x)
-(30346, 4410, 16), -- Very Strong P. Atk.
-(30346, 4411, 16), -- Very Strong M. Atk.
-(30346, 4412, 16), -- Very Strong P. Def.
-(30346, 4413, 16), -- Very Strong M. Def.
-(30346, 4414, 2), -- Standard Type
-(30346, 4415, 9), -- Bows
-(30346, 4416, 16), -- Dark Elves
+(30346, 4408, 1), -- HP Modifiers
+(30346, 4409, 1), -- MP Modifiers
+(30346, 4410, 16), -- P. Atk. Modifiers
+(30346, 4411, 16), -- M. Atk. Modifiers
+(30346, 4412, 16), -- P. Def. Modifiers
+(30346, 4413, 16), -- M. Def. Modifiers
+(30346, 4414, 2), -- Armor Type
+(30346, 4415, 9), -- Weapon Type
+(30346, 4416, 16), -- Races
 -- Marion
 (30347, 4045, 1), -- Resist Full Magic Attack
-(30347, 4408, 1), -- HP Increase (1x)
-(30347, 4409, 1), -- MP Increase (1x)
-(30347, 4410, 16), -- Very Strong P. Atk.
-(30347, 4411, 16), -- Very Strong M. Atk.
-(30347, 4412, 16), -- Very Strong P. Def.
-(30347, 4413, 16), -- Very Strong M. Def.
-(30347, 4414, 2), -- Standard Type
-(30347, 4415, 3), -- One-handed Sword
-(30347, 4416, 16), -- Dark Elves
+(30347, 4408, 1), -- HP Modifiers
+(30347, 4409, 1), -- MP Modifiers
+(30347, 4410, 16), -- P. Atk. Modifiers
+(30347, 4411, 16), -- M. Atk. Modifiers
+(30347, 4412, 16), -- P. Def. Modifiers
+(30347, 4413, 16), -- M. Def. Modifiers
+(30347, 4414, 2), -- Armor Type
+(30347, 4415, 3), -- Weapon Type
+(30347, 4416, 16), -- Races
 -- Nelsya
 (30348, 4045, 1), -- Resist Full Magic Attack
-(30348, 4408, 1), -- HP Increase (1x)
-(30348, 4409, 1), -- MP Increase (1x)
-(30348, 4410, 16), -- Very Strong P. Atk.
-(30348, 4411, 16), -- Very Strong M. Atk.
-(30348, 4412, 16), -- Very Strong P. Def.
-(30348, 4413, 16), -- Very Strong M. Def.
-(30348, 4414, 2), -- Standard Type
-(30348, 4415, 3), -- One-handed Sword
-(30348, 4416, 16), -- Dark Elves
+(30348, 4408, 1), -- HP Modifiers
+(30348, 4409, 1), -- MP Modifiers
+(30348, 4410, 16), -- P. Atk. Modifiers
+(30348, 4411, 16), -- M. Atk. Modifiers
+(30348, 4412, 16), -- P. Def. Modifiers
+(30348, 4413, 16), -- M. Def. Modifiers
+(30348, 4414, 2), -- Armor Type
+(30348, 4415, 3), -- Weapon Type
+(30348, 4416, 16), -- Races
 -- Jenna
 (30349, 4045, 1), -- Resist Full Magic Attack
-(30349, 4408, 1), -- HP Increase (1x)
-(30349, 4409, 1), -- MP Increase (1x)
-(30349, 4410, 16), -- Very Strong P. Atk.
-(30349, 4411, 16), -- Very Strong M. Atk.
-(30349, 4412, 16), -- Very Strong P. Def.
-(30349, 4413, 16), -- Very Strong M. Def.
-(30349, 4414, 2), -- Standard Type
-(30349, 4415, 9), -- Bows
-(30349, 4416, 16), -- Dark Elves
+(30349, 4408, 1), -- HP Modifiers
+(30349, 4409, 1), -- MP Modifiers
+(30349, 4410, 16), -- P. Atk. Modifiers
+(30349, 4411, 16), -- M. Atk. Modifiers
+(30349, 4412, 16), -- P. Def. Modifiers
+(30349, 4413, 16), -- M. Def. Modifiers
+(30349, 4414, 2), -- Armor Type
+(30349, 4415, 9), -- Weapon Type
+(30349, 4416, 16), -- Races
 -- Carlon
 (30350, 4045, 1), -- Resist Full Magic Attack
-(30350, 4408, 1), -- HP Increase (1x)
-(30350, 4409, 1), -- MP Increase (1x)
-(30350, 4410, 11), -- Average P. Atk.
-(30350, 4411, 11), -- Average M. Atk.
-(30350, 4412, 11), -- Average P. Def.
-(30350, 4413, 11), -- Average M. Def.
-(30350, 4414, 2), -- Standard Type
-(30350, 4415, 3), -- One-handed Sword
-(30350, 4416, 18), -- Dwarves
+(30350, 4408, 1), -- HP Modifiers
+(30350, 4409, 1), -- MP Modifiers
+(30350, 4410, 11), -- P. Atk. Modifiers
+(30350, 4411, 11), -- M. Atk. Modifiers
+(30350, 4412, 11), -- P. Def. Modifiers
+(30350, 4413, 11), -- M. Def. Modifiers
+(30350, 4414, 2), -- Armor Type
+(30350, 4415, 3), -- Weapon Type
+(30350, 4416, 18), -- Races
 -- Astaron
 (30351, 4045, 1), -- Resist Full Magic Attack
-(30351, 4408, 1), -- HP Increase (1x)
-(30351, 4409, 1), -- MP Increase (1x)
-(30351, 4410, 11), -- Average P. Atk.
-(30351, 4411, 11), -- Average M. Atk.
-(30351, 4412, 11), -- Average P. Def.
-(30351, 4413, 11), -- Average M. Def.
-(30351, 4414, 2), -- Standard Type
-(30351, 4415, 3), -- One-handed Sword
-(30351, 4416, 16), -- Dark Elves
+(30351, 4408, 1), -- HP Modifiers
+(30351, 4409, 1), -- MP Modifiers
+(30351, 4410, 11), -- P. Atk. Modifiers
+(30351, 4411, 11), -- M. Atk. Modifiers
+(30351, 4412, 11), -- P. Def. Modifiers
+(30351, 4413, 11), -- M. Def. Modifiers
+(30351, 4414, 2), -- Armor Type
+(30351, 4415, 3), -- Weapon Type
+(30351, 4416, 16), -- Races
 -- Karina
 (30352, 4045, 1), -- Resist Full Magic Attack
-(30352, 4408, 1), -- HP Increase (1x)
-(30352, 4409, 1), -- MP Increase (1x)
-(30352, 4410, 11), -- Average P. Atk.
-(30352, 4411, 11), -- Average M. Atk.
-(30352, 4412, 11), -- Average P. Def.
-(30352, 4413, 11), -- Average M. Def.
-(30352, 4414, 2), -- Standard Type
-(30352, 4415, 3), -- One-handed Sword
-(30352, 4416, 16), -- Dark Elves
+(30352, 4408, 1), -- HP Modifiers
+(30352, 4409, 1), -- MP Modifiers
+(30352, 4410, 11), -- P. Atk. Modifiers
+(30352, 4411, 11), -- M. Atk. Modifiers
+(30352, 4412, 11), -- P. Def. Modifiers
+(30352, 4413, 11), -- M. Def. Modifiers
+(30352, 4414, 2), -- Armor Type
+(30352, 4415, 3), -- Weapon Type
+(30352, 4416, 16), -- Races
 -- Jughead
 (30353, 4045, 1), -- Resist Full Magic Attack
-(30353, 4408, 1), -- HP Increase (1x)
-(30353, 4409, 1), -- MP Increase (1x)
-(30353, 4410, 11), -- Average P. Atk.
-(30353, 4411, 11), -- Average M. Atk.
-(30353, 4412, 11), -- Average P. Def.
-(30353, 4413, 11), -- Average M. Def.
-(30353, 4414, 2), -- Standard Type
-(30353, 4415, 3), -- One-handed Sword
-(30353, 4416, 16), -- Dark Elves
+(30353, 4408, 1), -- HP Modifiers
+(30353, 4409, 1), -- MP Modifiers
+(30353, 4410, 11), -- P. Atk. Modifiers
+(30353, 4411, 11), -- M. Atk. Modifiers
+(30353, 4412, 11), -- P. Def. Modifiers
+(30353, 4413, 11), -- M. Def. Modifiers
+(30353, 4414, 2), -- Armor Type
+(30353, 4415, 3), -- Weapon Type
+(30353, 4416, 16), -- Races
 -- Jewel
 (30354, 4045, 1), -- Resist Full Magic Attack
-(30354, 4408, 1), -- HP Increase (1x)
-(30354, 4409, 1), -- MP Increase (1x)
-(30354, 4410, 11), -- Average P. Atk.
-(30354, 4411, 11), -- Average M. Atk.
-(30354, 4412, 11), -- Average P. Def.
-(30354, 4413, 11), -- Average M. Def.
-(30354, 4414, 2), -- Standard Type
-(30354, 4415, 3), -- One-handed Sword
-(30354, 4416, 16), -- Dark Elves
+(30354, 4408, 1), -- HP Modifiers
+(30354, 4409, 1), -- MP Modifiers
+(30354, 4410, 11), -- P. Atk. Modifiers
+(30354, 4411, 11), -- M. Atk. Modifiers
+(30354, 4412, 11), -- P. Def. Modifiers
+(30354, 4413, 11), -- M. Def. Modifiers
+(30354, 4414, 2), -- Armor Type
+(30354, 4415, 3), -- Weapon Type
+(30354, 4416, 16), -- Races
 -- Roselyn
 (30355, 4045, 1), -- Resist Full Magic Attack
-(30355, 4408, 1), -- HP Increase (1x)
-(30355, 4409, 1), -- MP Increase (1x)
-(30355, 4410, 16), -- Very Strong P. Atk.
-(30355, 4411, 16), -- Very Strong M. Atk.
-(30355, 4412, 16), -- Very Strong P. Def.
-(30355, 4413, 16), -- Very Strong M. Def.
-(30355, 4414, 2), -- Standard Type
-(30355, 4415, 9), -- Bows
-(30355, 4416, 16), -- Dark Elves
+(30355, 4408, 1), -- HP Modifiers
+(30355, 4409, 1), -- MP Modifiers
+(30355, 4410, 16), -- P. Atk. Modifiers
+(30355, 4411, 16), -- M. Atk. Modifiers
+(30355, 4412, 16), -- P. Def. Modifiers
+(30355, 4413, 16), -- M. Def. Modifiers
+(30355, 4414, 2), -- Armor Type
+(30355, 4415, 9), -- Weapon Type
+(30355, 4416, 16), -- Races
 -- Altima
 (30356, 4045, 1), -- Resist Full Magic Attack
-(30356, 4408, 1), -- HP Increase (1x)
-(30356, 4409, 1), -- MP Increase (1x)
-(30356, 4410, 16), -- Very Strong P. Atk.
-(30356, 4411, 16), -- Very Strong M. Atk.
-(30356, 4412, 16), -- Very Strong P. Def.
-(30356, 4413, 16), -- Very Strong M. Def.
-(30356, 4414, 2), -- Standard Type
-(30356, 4415, 9), -- Bows
-(30356, 4416, 16), -- Dark Elves
+(30356, 4408, 1), -- HP Modifiers
+(30356, 4409, 1), -- MP Modifiers
+(30356, 4410, 16), -- P. Atk. Modifiers
+(30356, 4411, 16), -- M. Atk. Modifiers
+(30356, 4412, 16), -- P. Def. Modifiers
+(30356, 4413, 16), -- M. Def. Modifiers
+(30356, 4414, 2), -- Armor Type
+(30356, 4415, 9), -- Weapon Type
+(30356, 4416, 16), -- Races
 -- Kristin
 (30357, 4045, 1), -- Resist Full Magic Attack
-(30357, 4408, 1), -- HP Increase (1x)
-(30357, 4409, 1), -- MP Increase (1x)
-(30357, 4410, 16), -- Very Strong P. Atk.
-(30357, 4411, 16), -- Very Strong M. Atk.
-(30357, 4412, 16), -- Very Strong P. Def.
-(30357, 4413, 16), -- Very Strong M. Def.
-(30357, 4414, 2), -- Standard Type
-(30357, 4415, 3), -- One-handed Sword
-(30357, 4416, 16), -- Dark Elves
+(30357, 4408, 1), -- HP Modifiers
+(30357, 4409, 1), -- MP Modifiers
+(30357, 4410, 16), -- P. Atk. Modifiers
+(30357, 4411, 16), -- M. Atk. Modifiers
+(30357, 4412, 16), -- P. Def. Modifiers
+(30357, 4413, 16), -- M. Def. Modifiers
+(30357, 4414, 2), -- Armor Type
+(30357, 4415, 3), -- Weapon Type
+(30357, 4416, 16), -- Races
 -- Thifiell
 (30358, 4045, 1), -- Resist Full Magic Attack
-(30358, 4408, 1), -- HP Increase (1x)
-(30358, 4409, 1), -- MP Increase (1x)
-(30358, 4410, 11), -- Average P. Atk.
-(30358, 4411, 11), -- Average M. Atk.
-(30358, 4412, 11), -- Average P. Def.
-(30358, 4413, 11), -- Average M. Def.
-(30358, 4414, 2), -- Standard Type
-(30358, 4415, 3), -- One-handed Sword
-(30358, 4416, 16), -- Dark Elves
+(30358, 4408, 1), -- HP Modifiers
+(30358, 4409, 1), -- MP Modifiers
+(30358, 4410, 11), -- P. Atk. Modifiers
+(30358, 4411, 11), -- M. Atk. Modifiers
+(30358, 4412, 11), -- P. Def. Modifiers
+(30358, 4413, 11), -- M. Def. Modifiers
+(30358, 4414, 2), -- Armor Type
+(30358, 4415, 3), -- Weapon Type
+(30358, 4416, 16), -- Races
 -- Kaitar
 (30359, 4045, 1), -- Resist Full Magic Attack
-(30359, 4408, 1), -- HP Increase (1x)
-(30359, 4409, 1), -- MP Increase (1x)
-(30359, 4410, 11), -- Average P. Atk.
-(30359, 4411, 11), -- Average M. Atk.
-(30359, 4412, 11), -- Average P. Def.
-(30359, 4413, 11), -- Average M. Def.
-(30359, 4414, 2), -- Standard Type
-(30359, 4415, 3), -- One-handed Sword
-(30359, 4416, 16), -- Dark Elves
+(30359, 4408, 1), -- HP Modifiers
+(30359, 4409, 1), -- MP Modifiers
+(30359, 4410, 11), -- P. Atk. Modifiers
+(30359, 4411, 11), -- M. Atk. Modifiers
+(30359, 4412, 11), -- P. Def. Modifiers
+(30359, 4413, 11), -- M. Def. Modifiers
+(30359, 4414, 2), -- Armor Type
+(30359, 4415, 3), -- Weapon Type
+(30359, 4416, 16), -- Races
 -- Harant
 (30360, 4045, 1), -- Resist Full Magic Attack
-(30360, 4408, 1), -- HP Increase (1x)
-(30360, 4409, 1), -- MP Increase (1x)
-(30360, 4410, 11), -- Average P. Atk.
-(30360, 4411, 11), -- Average M. Atk.
-(30360, 4412, 11), -- Average P. Def.
-(30360, 4413, 11), -- Average M. Def.
-(30360, 4414, 2), -- Standard Type
-(30360, 4415, 3), -- One-handed Sword
-(30360, 4416, 16), -- Dark Elves
+(30360, 4408, 1), -- HP Modifiers
+(30360, 4409, 1), -- MP Modifiers
+(30360, 4410, 11), -- P. Atk. Modifiers
+(30360, 4411, 11), -- M. Atk. Modifiers
+(30360, 4412, 11), -- P. Def. Modifiers
+(30360, 4413, 11), -- M. Def. Modifiers
+(30360, 4414, 2), -- Armor Type
+(30360, 4415, 3), -- Weapon Type
+(30360, 4416, 16), -- Races
 -- Rizraell
 (30361, 4045, 1), -- Resist Full Magic Attack
-(30361, 4408, 1), -- HP Increase (1x)
-(30361, 4409, 1), -- MP Increase (1x)
-(30361, 4410, 11), -- Average P. Atk.
-(30361, 4411, 11), -- Average M. Atk.
-(30361, 4412, 11), -- Average P. Def.
-(30361, 4413, 11), -- Average M. Def.
-(30361, 4414, 2), -- Standard Type
-(30361, 4415, 3), -- One-handed Sword
-(30361, 4416, 15), -- Elves
+(30361, 4408, 1), -- HP Modifiers
+(30361, 4409, 1), -- MP Modifiers
+(30361, 4410, 11), -- P. Atk. Modifiers
+(30361, 4411, 11), -- M. Atk. Modifiers
+(30361, 4412, 11), -- P. Def. Modifiers
+(30361, 4413, 11), -- M. Def. Modifiers
+(30361, 4414, 2), -- Armor Type
+(30361, 4415, 3), -- Weapon Type
+(30361, 4416, 15), -- Races
 -- Andellia
 (30362, 4045, 1), -- Resist Full Magic Attack
-(30362, 4408, 1), -- HP Increase (1x)
-(30362, 4409, 1), -- MP Increase (1x)
-(30362, 4410, 11), -- Average P. Atk.
-(30362, 4411, 11), -- Average M. Atk.
-(30362, 4412, 11), -- Average P. Def.
-(30362, 4413, 11), -- Average M. Def.
-(30362, 4414, 2), -- Standard Type
-(30362, 4415, 3), -- One-handed Sword
-(30362, 4416, 15), -- Elves
+(30362, 4408, 1), -- HP Modifiers
+(30362, 4409, 1), -- MP Modifiers
+(30362, 4410, 11), -- P. Atk. Modifiers
+(30362, 4411, 11), -- M. Atk. Modifiers
+(30362, 4412, 11), -- P. Def. Modifiers
+(30362, 4413, 11), -- M. Def. Modifiers
+(30362, 4414, 2), -- Armor Type
+(30362, 4415, 3), -- Weapon Type
+(30362, 4416, 15), -- Races
 -- Aios
 (30363, 4045, 1), -- Resist Full Magic Attack
-(30363, 4408, 1), -- HP Increase (1x)
-(30363, 4409, 1), -- MP Increase (1x)
-(30363, 4410, 11), -- Average P. Atk.
-(30363, 4411, 11), -- Average M. Atk.
-(30363, 4412, 11), -- Average P. Def.
-(30363, 4413, 11), -- Average M. Def.
-(30363, 4414, 2), -- Standard Type
-(30363, 4415, 3), -- One-handed Sword
-(30363, 4416, 15), -- Elves
+(30363, 4408, 1), -- HP Modifiers
+(30363, 4409, 1), -- MP Modifiers
+(30363, 4410, 11), -- P. Atk. Modifiers
+(30363, 4411, 11), -- M. Atk. Modifiers
+(30363, 4412, 11), -- P. Def. Modifiers
+(30363, 4413, 11), -- M. Def. Modifiers
+(30363, 4414, 2), -- Armor Type
+(30363, 4415, 3), -- Weapon Type
+(30363, 4416, 15), -- Races
 -- Lilith
 (30368, 4045, 1), -- Resist Full Magic Attack
-(30368, 4408, 1), -- HP Increase (1x)
-(30368, 4409, 1), -- MP Increase (1x)
-(30368, 4410, 11), -- Average P. Atk.
-(30368, 4411, 11), -- Average M. Atk.
-(30368, 4412, 11), -- Average P. Def.
-(30368, 4413, 11), -- Average M. Def.
-(30368, 4414, 2), -- Standard Type
-(30368, 4415, 3), -- One-handed Sword
-(30368, 4416, 15), -- Elves
+(30368, 4408, 1), -- HP Modifiers
+(30368, 4409, 1), -- MP Modifiers
+(30368, 4410, 11), -- P. Atk. Modifiers
+(30368, 4411, 11), -- M. Atk. Modifiers
+(30368, 4412, 11), -- P. Def. Modifiers
+(30368, 4413, 11), -- M. Def. Modifiers
+(30368, 4414, 2), -- Armor Type
+(30368, 4415, 3), -- Weapon Type
+(30368, 4416, 15), -- Races
 -- Baenedes
 (30369, 4045, 1), -- Resist Full Magic Attack
-(30369, 4408, 1), -- HP Increase (1x)
-(30369, 4409, 1), -- MP Increase (1x)
-(30369, 4410, 11), -- Average P. Atk.
-(30369, 4411, 11), -- Average M. Atk.
-(30369, 4412, 11), -- Average P. Def.
-(30369, 4413, 11), -- Average M. Def.
-(30369, 4414, 2), -- Standard Type
-(30369, 4415, 3), -- One-handed Sword
-(30369, 4416, 15), -- Elves
+(30369, 4408, 1), -- HP Modifiers
+(30369, 4409, 1), -- MP Modifiers
+(30369, 4410, 11), -- P. Atk. Modifiers
+(30369, 4411, 11), -- M. Atk. Modifiers
+(30369, 4412, 11), -- P. Def. Modifiers
+(30369, 4413, 11), -- M. Def. Modifiers
+(30369, 4414, 2), -- Armor Type
+(30369, 4415, 3), -- Weapon Type
+(30369, 4416, 15), -- Races
 -- Nerupa
 (30370, 4045, 1), -- Resist Full Magic Attack
-(30370, 4408, 1), -- HP Increase (1x)
-(30370, 4409, 1), -- MP Increase (1x)
-(30370, 4410, 11), -- Average P. Atk.
-(30370, 4411, 11), -- Average M. Atk.
-(30370, 4412, 11), -- Average P. Def.
-(30370, 4413, 11), -- Average M. Def.
-(30370, 4414, 2), -- Standard Type
-(30370, 4415, 3), -- One-handed Sword
-(30370, 4416, 13), -- Fairies
+(30370, 4408, 1), -- HP Modifiers
+(30370, 4409, 1), -- MP Modifiers
+(30370, 4410, 11), -- P. Atk. Modifiers
+(30370, 4411, 11), -- M. Atk. Modifiers
+(30370, 4412, 11), -- P. Def. Modifiers
+(30370, 4413, 11), -- M. Def. Modifiers
+(30370, 4414, 2), -- Armor Type
+(30370, 4415, 3), -- Weapon Type
+(30370, 4416, 13), -- Races
 -- Thalia
 (30371, 4045, 1), -- Resist Full Magic Attack
-(30371, 4408, 1), -- HP Increase (1x)
-(30371, 4409, 1), -- MP Increase (1x)
-(30371, 4410, 11), -- Average P. Atk.
-(30371, 4411, 11), -- Average M. Atk.
-(30371, 4412, 11), -- Average P. Def.
-(30371, 4413, 11), -- Average M. Def.
-(30371, 4414, 2), -- Standard Type
-(30371, 4415, 3), -- One-handed Sword
-(30371, 4416, 15), -- Elves
+(30371, 4408, 1), -- HP Modifiers
+(30371, 4409, 1), -- MP Modifiers
+(30371, 4410, 11), -- P. Atk. Modifiers
+(30371, 4411, 11), -- M. Atk. Modifiers
+(30371, 4412, 11), -- P. Def. Modifiers
+(30371, 4413, 11), -- M. Def. Modifiers
+(30371, 4414, 2), -- Armor Type
+(30371, 4415, 3), -- Weapon Type
+(30371, 4416, 15), -- Races
 -- Ramos
 (30373, 4045, 1), -- Resist Full Magic Attack
-(30373, 4408, 1), -- HP Increase (1x)
-(30373, 4409, 1), -- MP Increase (1x)
-(30373, 4410, 11), -- Average P. Atk.
-(30373, 4411, 11), -- Average M. Atk.
-(30373, 4412, 11), -- Average P. Def.
-(30373, 4413, 11), -- Average M. Def.
-(30373, 4414, 2), -- Standard Type
-(30373, 4415, 3), -- One-handed Sword
-(30373, 4416, 14), -- Humans
+(30373, 4408, 1), -- HP Modifiers
+(30373, 4409, 1), -- MP Modifiers
+(30373, 4410, 11), -- P. Atk. Modifiers
+(30373, 4411, 11), -- M. Atk. Modifiers
+(30373, 4412, 11), -- P. Def. Modifiers
+(30373, 4413, 11), -- M. Def. Modifiers
+(30373, 4414, 2), -- Armor Type
+(30373, 4415, 3), -- Weapon Type
+(30373, 4416, 14), -- Races
 -- Rhodiell
 (30374, 4045, 1), -- Resist Full Magic Attack
-(30374, 4408, 1), -- HP Increase (1x)
-(30374, 4409, 1), -- MP Increase (1x)
-(30374, 4410, 11), -- Average P. Atk.
-(30374, 4411, 11), -- Average M. Atk.
-(30374, 4412, 11), -- Average P. Def.
-(30374, 4413, 11), -- Average M. Def.
-(30374, 4414, 2), -- Standard Type
-(30374, 4415, 3), -- One-handed Sword
-(30374, 4416, 15), -- Elves
+(30374, 4408, 1), -- HP Modifiers
+(30374, 4409, 1), -- MP Modifiers
+(30374, 4410, 11), -- P. Atk. Modifiers
+(30374, 4411, 11), -- M. Atk. Modifiers
+(30374, 4412, 11), -- P. Def. Modifiers
+(30374, 4413, 11), -- M. Def. Modifiers
+(30374, 4414, 2), -- Armor Type
+(30374, 4415, 3), -- Weapon Type
+(30374, 4416, 15), -- Races
 -- Adonius
 (30375, 4045, 1), -- Resist Full Magic Attack
-(30375, 4408, 1), -- HP Increase (1x)
-(30375, 4409, 1), -- MP Increase (1x)
-(30375, 4410, 11), -- Average P. Atk.
-(30375, 4411, 11), -- Average M. Atk.
-(30375, 4412, 11), -- Average P. Def.
-(30375, 4413, 11), -- Average M. Def.
-(30375, 4414, 2), -- Standard Type
-(30375, 4415, 3), -- One-handed Sword
-(30375, 4416, 15), -- Elves
+(30375, 4408, 1), -- HP Modifiers
+(30375, 4409, 1), -- MP Modifiers
+(30375, 4410, 11), -- P. Atk. Modifiers
+(30375, 4411, 11), -- M. Atk. Modifiers
+(30375, 4412, 11), -- P. Def. Modifiers
+(30375, 4413, 11), -- M. Def. Modifiers
+(30375, 4414, 2), -- Armor Type
+(30375, 4415, 3), -- Weapon Type
+(30375, 4416, 15), -- Races
 -- Nell
 (30376, 4045, 1), -- Resist Full Magic Attack
-(30376, 4408, 1), -- HP Increase (1x)
-(30376, 4409, 1), -- MP Increase (1x)
-(30376, 4410, 11), -- Average P. Atk.
-(30376, 4411, 11), -- Average M. Atk.
-(30376, 4412, 11), -- Average P. Def.
-(30376, 4413, 11), -- Average M. Def.
-(30376, 4414, 2), -- Standard Type
-(30376, 4415, 3), -- One-handed Sword
-(30376, 4416, 15), -- Elves
+(30376, 4408, 1), -- HP Modifiers
+(30376, 4409, 1), -- MP Modifiers
+(30376, 4410, 11), -- P. Atk. Modifiers
+(30376, 4411, 11), -- M. Atk. Modifiers
+(30376, 4412, 11), -- P. Def. Modifiers
+(30376, 4413, 11), -- M. Def. Modifiers
+(30376, 4414, 2), -- Armor Type
+(30376, 4415, 3), -- Weapon Type
+(30376, 4416, 15), -- Races
 -- Talbot
 (30377, 4045, 1), -- Resist Full Magic Attack
-(30377, 4408, 1), -- HP Increase (1x)
-(30377, 4409, 1), -- MP Increase (1x)
-(30377, 4410, 11), -- Average P. Atk.
-(30377, 4411, 11), -- Average M. Atk.
-(30377, 4412, 11), -- Average P. Def.
-(30377, 4413, 11), -- Average M. Def.
-(30377, 4414, 2), -- Standard Type
-(30377, 4415, 3), -- One-handed Sword
-(30377, 4416, 16), -- Dark Elves
+(30377, 4408, 1), -- HP Modifiers
+(30377, 4409, 1), -- MP Modifiers
+(30377, 4410, 11), -- P. Atk. Modifiers
+(30377, 4411, 11), -- M. Atk. Modifiers
+(30377, 4412, 11), -- P. Def. Modifiers
+(30377, 4413, 11), -- M. Def. Modifiers
+(30377, 4414, 2), -- Armor Type
+(30377, 4415, 3), -- Weapon Type
+(30377, 4416, 16), -- Races
 -- Estella
 (30378, 4045, 1), -- Resist Full Magic Attack
-(30378, 4408, 1), -- HP Increase (1x)
-(30378, 4409, 1), -- MP Increase (1x)
-(30378, 4410, 11), -- Average P. Atk.
-(30378, 4411, 11), -- Average M. Atk.
-(30378, 4412, 11), -- Average P. Def.
-(30378, 4413, 11), -- Average M. Def.
-(30378, 4414, 2), -- Standard Type
-(30378, 4415, 3), -- One-handed Sword
-(30378, 4416, 16), -- Dark Elves
+(30378, 4408, 1), -- HP Modifiers
+(30378, 4409, 1), -- MP Modifiers
+(30378, 4410, 11), -- P. Atk. Modifiers
+(30378, 4411, 11), -- M. Atk. Modifiers
+(30378, 4412, 11), -- P. Def. Modifiers
+(30378, 4413, 11), -- M. Def. Modifiers
+(30378, 4414, 2), -- Armor Type
+(30378, 4415, 3), -- Weapon Type
+(30378, 4416, 16), -- Races
 -- Bezique
 (30379, 4045, 1), -- Resist Full Magic Attack
-(30379, 4408, 1), -- HP Increase (1x)
-(30379, 4409, 1), -- MP Increase (1x)
-(30379, 4410, 16), -- Very Strong P. Atk.
-(30379, 4411, 16), -- Very Strong M. Atk.
-(30379, 4412, 16), -- Very Strong P. Def.
-(30379, 4413, 16), -- Very Strong M. Def.
-(30379, 4414, 2), -- Standard Type
-(30379, 4415, 9), -- Bows
-(30379, 4416, 14), -- Humans
+(30379, 4408, 1), -- HP Modifiers
+(30379, 4409, 1), -- MP Modifiers
+(30379, 4410, 16), -- P. Atk. Modifiers
+(30379, 4411, 16), -- M. Atk. Modifiers
+(30379, 4412, 16), -- P. Def. Modifiers
+(30379, 4413, 16), -- M. Def. Modifiers
+(30379, 4414, 2), -- Armor Type
+(30379, 4415, 9), -- Weapon Type
+(30379, 4416, 14), -- Races
 -- Plink
 (30380, 4045, 1), -- Resist Full Magic Attack
-(30380, 4408, 1), -- HP Increase (1x)
-(30380, 4409, 1), -- MP Increase (1x)
-(30380, 4410, 16), -- Very Strong P. Atk.
-(30380, 4411, 16), -- Very Strong M. Atk.
-(30380, 4412, 16), -- Very Strong P. Def.
-(30380, 4413, 16), -- Very Strong M. Def.
-(30380, 4414, 2), -- Standard Type
-(30380, 4415, 9), -- Bows
-(30380, 4416, 14), -- Humans
+(30380, 4408, 1), -- HP Modifiers
+(30380, 4409, 1), -- MP Modifiers
+(30380, 4410, 16), -- P. Atk. Modifiers
+(30380, 4411, 16), -- M. Atk. Modifiers
+(30380, 4412, 16), -- P. Def. Modifiers
+(30380, 4413, 16), -- M. Def. Modifiers
+(30380, 4414, 2), -- Armor Type
+(30380, 4415, 9), -- Weapon Type
+(30380, 4416, 14), -- Races
 -- Alvah
 (30381, 4045, 1), -- Resist Full Magic Attack
-(30381, 4408, 1), -- HP Increase (1x)
-(30381, 4409, 1), -- MP Increase (1x)
-(30381, 4410, 16), -- Very Strong P. Atk.
-(30381, 4411, 16), -- Very Strong M. Atk.
-(30381, 4412, 16), -- Very Strong P. Def.
-(30381, 4413, 16), -- Very Strong M. Def.
-(30381, 4414, 2), -- Standard Type
-(30381, 4415, 9), -- Bows
-(30381, 4416, 14), -- Humans
+(30381, 4408, 1), -- HP Modifiers
+(30381, 4409, 1), -- MP Modifiers
+(30381, 4410, 16), -- P. Atk. Modifiers
+(30381, 4411, 16), -- M. Atk. Modifiers
+(30381, 4412, 16), -- P. Def. Modifiers
+(30381, 4413, 16), -- M. Def. Modifiers
+(30381, 4414, 2), -- Armor Type
+(30381, 4415, 9), -- Weapon Type
+(30381, 4416, 14), -- Races
 -- Leikan
 (30382, 4045, 1), -- Resist Full Magic Attack
-(30382, 4408, 1), -- HP Increase (1x)
-(30382, 4409, 1), -- MP Increase (1x)
-(30382, 4410, 16), -- Very Strong P. Atk.
-(30382, 4411, 16), -- Very Strong M. Atk.
-(30382, 4412, 16), -- Very Strong P. Def.
-(30382, 4413, 16), -- Very Strong M. Def.
-(30382, 4414, 2), -- Standard Type
-(30382, 4415, 3), -- One-handed Sword
-(30382, 4416, 14), -- Humans
+(30382, 4408, 1), -- HP Modifiers
+(30382, 4409, 1), -- MP Modifiers
+(30382, 4410, 16), -- P. Atk. Modifiers
+(30382, 4411, 16), -- M. Atk. Modifiers
+(30382, 4412, 16), -- P. Def. Modifiers
+(30382, 4413, 16), -- M. Def. Modifiers
+(30382, 4414, 2), -- Armor Type
+(30382, 4415, 3), -- Weapon Type
+(30382, 4416, 14), -- Races
 -- Scott
 (30383, 4045, 1), -- Resist Full Magic Attack
-(30383, 4408, 1), -- HP Increase (1x)
-(30383, 4409, 1), -- MP Increase (1x)
-(30383, 4410, 16), -- Very Strong P. Atk.
-(30383, 4411, 16), -- Very Strong M. Atk.
-(30383, 4412, 16), -- Very Strong P. Def.
-(30383, 4413, 16), -- Very Strong M. Def.
-(30383, 4414, 2), -- Standard Type
-(30383, 4415, 9), -- Bows
-(30383, 4416, 14), -- Humans
+(30383, 4408, 1), -- HP Modifiers
+(30383, 4409, 1), -- MP Modifiers
+(30383, 4410, 16), -- P. Atk. Modifiers
+(30383, 4411, 16), -- M. Atk. Modifiers
+(30383, 4412, 16), -- P. Def. Modifiers
+(30383, 4413, 16), -- M. Def. Modifiers
+(30383, 4414, 2), -- Armor Type
+(30383, 4415, 9), -- Weapon Type
+(30383, 4416, 14), -- Races
 -- Linus
 (30384, 4045, 1), -- Resist Full Magic Attack
-(30384, 4408, 1), -- HP Increase (1x)
-(30384, 4409, 1), -- MP Increase (1x)
-(30384, 4410, 16), -- Very Strong P. Atk.
-(30384, 4411, 16), -- Very Strong M. Atk.
-(30384, 4412, 16), -- Very Strong P. Def.
-(30384, 4413, 16), -- Very Strong M. Def.
-(30384, 4414, 2), -- Standard Type
-(30384, 4415, 3), -- One-handed Sword
-(30384, 4416, 14), -- Humans
+(30384, 4408, 1), -- HP Modifiers
+(30384, 4409, 1), -- MP Modifiers
+(30384, 4410, 16), -- P. Atk. Modifiers
+(30384, 4411, 16), -- M. Atk. Modifiers
+(30384, 4412, 16), -- P. Def. Modifiers
+(30384, 4413, 16), -- M. Def. Modifiers
+(30384, 4414, 2), -- Armor Type
+(30384, 4415, 3), -- Weapon Type
+(30384, 4416, 14), -- Races
 -- Weisz
 (30385, 4045, 1), -- Resist Full Magic Attack
-(30385, 4408, 1), -- HP Increase (1x)
-(30385, 4409, 1), -- MP Increase (1x)
-(30385, 4410, 16), -- Very Strong P. Atk.
-(30385, 4411, 16), -- Very Strong M. Atk.
-(30385, 4412, 16), -- Very Strong P. Def.
-(30385, 4413, 16), -- Very Strong M. Def.
-(30385, 4414, 2), -- Standard Type
-(30385, 4415, 9), -- Bows
-(30385, 4416, 14), -- Humans
+(30385, 4408, 1), -- HP Modifiers
+(30385, 4409, 1), -- MP Modifiers
+(30385, 4410, 16), -- P. Atk. Modifiers
+(30385, 4411, 16), -- M. Atk. Modifiers
+(30385, 4412, 16), -- P. Def. Modifiers
+(30385, 4413, 16), -- M. Def. Modifiers
+(30385, 4414, 2), -- Armor Type
+(30385, 4415, 9), -- Weapon Type
+(30385, 4416, 14), -- Races
 -- Luis
 (30386, 4045, 1), -- Resist Full Magic Attack
-(30386, 4408, 1), -- HP Increase (1x)
-(30386, 4409, 1), -- MP Increase (1x)
-(30386, 4410, 16), -- Very Strong P. Atk.
-(30386, 4411, 16), -- Very Strong M. Atk.
-(30386, 4412, 16), -- Very Strong P. Def.
-(30386, 4413, 16), -- Very Strong M. Def.
-(30386, 4414, 2), -- Standard Type
-(30386, 4415, 3), -- One-handed Sword
-(30386, 4416, 14), -- Humans
+(30386, 4408, 1), -- HP Modifiers
+(30386, 4409, 1), -- MP Modifiers
+(30386, 4410, 16), -- P. Atk. Modifiers
+(30386, 4411, 16), -- M. Atk. Modifiers
+(30386, 4412, 16), -- P. Def. Modifiers
+(30386, 4413, 16), -- M. Def. Modifiers
+(30386, 4414, 2), -- Armor Type
+(30386, 4415, 3), -- Weapon Type
+(30386, 4416, 14), -- Races
 -- Clancy
 (30387, 4045, 1), -- Resist Full Magic Attack
-(30387, 4408, 1), -- HP Increase (1x)
-(30387, 4409, 1), -- MP Increase (1x)
-(30387, 4410, 11), -- Average P. Atk.
-(30387, 4411, 11), -- Average M. Atk.
-(30387, 4412, 11), -- Average P. Def.
-(30387, 4413, 11), -- Average M. Def.
-(30387, 4414, 2), -- Standard Type
-(30387, 4415, 3), -- One-handed Sword
-(30387, 4416, 14), -- Humans
+(30387, 4408, 1), -- HP Modifiers
+(30387, 4409, 1), -- MP Modifiers
+(30387, 4410, 11), -- P. Atk. Modifiers
+(30387, 4411, 11), -- M. Atk. Modifiers
+(30387, 4412, 11), -- P. Def. Modifiers
+(30387, 4413, 11), -- M. Def. Modifiers
+(30387, 4414, 2), -- Armor Type
+(30387, 4415, 3), -- Weapon Type
+(30387, 4416, 14), -- Races
 -- Parina
 (30391, 4045, 1), -- Resist Full Magic Attack
-(30391, 4408, 1), -- HP Increase (1x)
-(30391, 4409, 1), -- MP Increase (1x)
-(30391, 4410, 11), -- Average P. Atk.
-(30391, 4411, 11), -- Average M. Atk.
-(30391, 4412, 11), -- Average P. Def.
-(30391, 4413, 11), -- Average M. Def.
-(30391, 4414, 2), -- Standard Type
-(30391, 4415, 3), -- One-handed Sword
-(30391, 4416, 14), -- Humans
+(30391, 4408, 1), -- HP Modifiers
+(30391, 4409, 1), -- MP Modifiers
+(30391, 4410, 11), -- P. Atk. Modifiers
+(30391, 4411, 11), -- M. Atk. Modifiers
+(30391, 4412, 11), -- P. Def. Modifiers
+(30391, 4413, 11), -- M. Def. Modifiers
+(30391, 4414, 2), -- Armor Type
+(30391, 4415, 3), -- Weapon Type
+(30391, 4416, 14), -- Races
 -- Newbie Helper
 (30400, 4045, 1), -- Resist Full Magic Attack
-(30400, 4408, 1), -- HP Increase (1x)
-(30400, 4409, 1), -- MP Increase (1x)
-(30400, 4410, 11), -- Average P. Atk.
-(30400, 4411, 11), -- Average M. Atk.
-(30400, 4412, 11), -- Average P. Def.
-(30400, 4413, 11), -- Average M. Def.
-(30400, 4414, 2), -- Standard Type
-(30400, 4415, 3), -- One-handed Sword
-(30400, 4416, 15), -- Elves
+(30400, 4408, 1), -- HP Modifiers
+(30400, 4409, 1), -- MP Modifiers
+(30400, 4410, 11), -- P. Atk. Modifiers
+(30400, 4411, 11), -- M. Atk. Modifiers
+(30400, 4412, 11), -- P. Def. Modifiers
+(30400, 4413, 11), -- M. Def. Modifiers
+(30400, 4414, 2), -- Armor Type
+(30400, 4415, 3), -- Weapon Type
+(30400, 4416, 15), -- Races
 -- Newbie Helper
 (30401, 4045, 1), -- Resist Full Magic Attack
-(30401, 4408, 1), -- HP Increase (1x)
-(30401, 4409, 1), -- MP Increase (1x)
-(30401, 4410, 11), -- Average P. Atk.
-(30401, 4411, 11), -- Average M. Atk.
-(30401, 4412, 11), -- Average P. Def.
-(30401, 4413, 11), -- Average M. Def.
-(30401, 4414, 2), -- Standard Type
-(30401, 4415, 3), -- One-handed Sword
-(30401, 4416, 15), -- Elves
+(30401, 4408, 1), -- HP Modifiers
+(30401, 4409, 1), -- MP Modifiers
+(30401, 4410, 11), -- P. Atk. Modifiers
+(30401, 4411, 11), -- M. Atk. Modifiers
+(30401, 4412, 11), -- P. Def. Modifiers
+(30401, 4413, 11), -- M. Def. Modifiers
+(30401, 4414, 2), -- Armor Type
+(30401, 4415, 3), -- Weapon Type
+(30401, 4416, 15), -- Races
 -- Newbie Helper
 (30402, 4045, 1), -- Resist Full Magic Attack
-(30402, 4408, 1), -- HP Increase (1x)
-(30402, 4409, 1), -- MP Increase (1x)
-(30402, 4410, 11), -- Average P. Atk.
-(30402, 4411, 11), -- Average M. Atk.
-(30402, 4412, 11), -- Average P. Def.
-(30402, 4413, 11), -- Average M. Def.
-(30402, 4414, 2), -- Standard Type
-(30402, 4415, 3), -- One-handed Sword
-(30402, 4416, 15), -- Elves
+(30402, 4408, 1), -- HP Modifiers
+(30402, 4409, 1), -- MP Modifiers
+(30402, 4410, 11), -- P. Atk. Modifiers
+(30402, 4411, 11), -- M. Atk. Modifiers
+(30402, 4412, 11), -- P. Def. Modifiers
+(30402, 4413, 11), -- M. Def. Modifiers
+(30402, 4414, 2), -- Armor Type
+(30402, 4415, 3), -- Weapon Type
+(30402, 4416, 15), -- Races
 -- Newbie Helper
 (30403, 4045, 1), -- Resist Full Magic Attack
-(30403, 4408, 1), -- HP Increase (1x)
-(30403, 4409, 1), -- MP Increase (1x)
-(30403, 4410, 11), -- Average P. Atk.
-(30403, 4411, 11), -- Average M. Atk.
-(30403, 4412, 11), -- Average P. Def.
-(30403, 4413, 11), -- Average M. Def.
-(30403, 4414, 2), -- Standard Type
-(30403, 4415, 3), -- One-handed Sword
-(30403, 4416, 15), -- Elves
+(30403, 4408, 1), -- HP Modifiers
+(30403, 4409, 1), -- MP Modifiers
+(30403, 4410, 11), -- P. Atk. Modifiers
+(30403, 4411, 11), -- M. Atk. Modifiers
+(30403, 4412, 11), -- P. Def. Modifiers
+(30403, 4413, 11), -- M. Def. Modifiers
+(30403, 4414, 2), -- Armor Type
+(30403, 4415, 3), -- Weapon Type
+(30403, 4416, 15), -- Races
 -- Newbie Helper
 (30404, 4045, 1), -- Resist Full Magic Attack
-(30404, 4408, 1), -- HP Increase (1x)
-(30404, 4409, 1), -- MP Increase (1x)
-(30404, 4410, 11), -- Average P. Atk.
-(30404, 4411, 11), -- Average M. Atk.
-(30404, 4412, 11), -- Average P. Def.
-(30404, 4413, 11), -- Average M. Def.
-(30404, 4414, 2), -- Standard Type
-(30404, 4415, 3), -- One-handed Sword
-(30404, 4416, 16), -- Dark Elves
+(30404, 4408, 1), -- HP Modifiers
+(30404, 4409, 1), -- MP Modifiers
+(30404, 4410, 11), -- P. Atk. Modifiers
+(30404, 4411, 11), -- M. Atk. Modifiers
+(30404, 4412, 11), -- P. Def. Modifiers
+(30404, 4413, 11), -- M. Def. Modifiers
+(30404, 4414, 2), -- Armor Type
+(30404, 4415, 3), -- Weapon Type
+(30404, 4416, 16), -- Races
 -- Marius
 (30405, 4045, 1), -- Resist Full Magic Attack
-(30405, 4408, 1), -- HP Increase (1x)
-(30405, 4409, 1), -- MP Increase (1x)
-(30405, 4410, 11), -- Average P. Atk.
-(30405, 4411, 11), -- Average M. Atk.
-(30405, 4412, 11), -- Average P. Def.
-(30405, 4413, 11), -- Average M. Def.
-(30405, 4414, 2), -- Standard Type
-(30405, 4415, 3), -- One-handed Sword
-(30405, 4416, 15), -- Elves
+(30405, 4408, 1), -- HP Modifiers
+(30405, 4409, 1), -- MP Modifiers
+(30405, 4410, 11), -- P. Atk. Modifiers
+(30405, 4411, 11), -- M. Atk. Modifiers
+(30405, 4412, 11), -- P. Def. Modifiers
+(30405, 4413, 11), -- M. Def. Modifiers
+(30405, 4414, 2), -- Armor Type
+(30405, 4415, 3), -- Weapon Type
+(30405, 4416, 15), -- Races
 -- Matheo
 (30406, 4045, 1), -- Resist Full Magic Attack
-(30406, 4408, 1), -- HP Increase (1x)
-(30406, 4409, 1), -- MP Increase (1x)
-(30406, 4410, 11), -- Average P. Atk.
-(30406, 4411, 11), -- Average M. Atk.
-(30406, 4412, 11), -- Average P. Def.
-(30406, 4413, 11), -- Average M. Def.
-(30406, 4414, 2), -- Standard Type
-(30406, 4415, 3), -- One-handed Sword
-(30406, 4416, 14), -- Humans
+(30406, 4408, 1), -- HP Modifiers
+(30406, 4409, 1), -- MP Modifiers
+(30406, 4410, 11), -- P. Atk. Modifiers
+(30406, 4411, 11), -- M. Atk. Modifiers
+(30406, 4412, 11), -- P. Def. Modifiers
+(30406, 4413, 11), -- M. Def. Modifiers
+(30406, 4414, 2), -- Armor Type
+(30406, 4415, 3), -- Weapon Type
+(30406, 4416, 14), -- Races
 -- Mesella
 (30407, 4045, 1), -- Resist Full Magic Attack
-(30407, 4408, 1), -- HP Increase (1x)
-(30407, 4409, 1), -- MP Increase (1x)
-(30407, 4410, 11), -- Average P. Atk.
-(30407, 4411, 11), -- Average M. Atk.
-(30407, 4412, 11), -- Average P. Def.
-(30407, 4413, 11), -- Average M. Def.
-(30407, 4414, 2), -- Standard Type
-(30407, 4415, 3), -- One-handed Sword
-(30407, 4416, 14), -- Humans
+(30407, 4408, 1), -- HP Modifiers
+(30407, 4409, 1), -- MP Modifiers
+(30407, 4410, 11), -- P. Atk. Modifiers
+(30407, 4411, 11), -- M. Atk. Modifiers
+(30407, 4412, 11), -- P. Def. Modifiers
+(30407, 4413, 11), -- M. Def. Modifiers
+(30407, 4414, 2), -- Armor Type
+(30407, 4415, 3), -- Weapon Type
+(30407, 4416, 14), -- Races
 -- Lionel
 (30408, 4045, 1), -- Resist Full Magic Attack
-(30408, 4408, 1), -- HP Increase (1x)
-(30408, 4409, 1), -- MP Increase (1x)
-(30408, 4410, 11), -- Average P. Atk.
-(30408, 4411, 11), -- Average M. Atk.
-(30408, 4412, 11), -- Average P. Def.
-(30408, 4413, 11), -- Average M. Def.
-(30408, 4414, 2), -- Standard Type
-(30408, 4415, 3), -- One-handed Sword
-(30408, 4416, 14), -- Humans
+(30408, 4408, 1), -- HP Modifiers
+(30408, 4409, 1), -- MP Modifiers
+(30408, 4410, 11), -- P. Atk. Modifiers
+(30408, 4411, 11), -- M. Atk. Modifiers
+(30408, 4412, 11), -- P. Def. Modifiers
+(30408, 4413, 11), -- M. Def. Modifiers
+(30408, 4414, 2), -- Armor Type
+(30408, 4415, 3), -- Weapon Type
+(30408, 4416, 14), -- Races
 -- Earth Snake
 (30409, 4045, 1), -- Resist Full Magic Attack
-(30409, 4408, 1), -- HP Increase (1x)
-(30409, 4409, 1), -- MP Increase (1x)
-(30409, 4410, 11), -- Average P. Atk.
-(30409, 4411, 11), -- Average M. Atk.
-(30409, 4412, 11), -- Average P. Def.
-(30409, 4413, 11), -- Average M. Def.
-(30409, 4414, 2), -- Standard Type
-(30409, 4415, 3), -- One-handed Sword
-(30409, 4416, 7), -- Spirits
+(30409, 4408, 1), -- HP Modifiers
+(30409, 4409, 1), -- MP Modifiers
+(30409, 4410, 11), -- P. Atk. Modifiers
+(30409, 4411, 11), -- M. Atk. Modifiers
+(30409, 4412, 11), -- P. Def. Modifiers
+(30409, 4413, 11), -- M. Def. Modifiers
+(30409, 4414, 2), -- Armor Type
+(30409, 4415, 3), -- Weapon Type
+(30409, 4416, 7), -- Races
 -- Wasteland Lizardman
 (30410, 4045, 1), -- Resist Full Magic Attack
-(30410, 4408, 1), -- HP Increase (1x)
-(30410, 4409, 1), -- MP Increase (1x)
-(30410, 4410, 11), -- Average P. Atk.
-(30410, 4411, 11), -- Average M. Atk.
-(30410, 4412, 11), -- Average P. Def.
-(30410, 4413, 11), -- Average M. Def.
-(30410, 4414, 2), -- Standard Type
-(30410, 4415, 3), -- One-handed Sword
-(30410, 4416, 6), -- Humanoids
+(30410, 4408, 1), -- HP Modifiers
+(30410, 4409, 1), -- MP Modifiers
+(30410, 4410, 11), -- P. Atk. Modifiers
+(30410, 4411, 11), -- M. Atk. Modifiers
+(30410, 4412, 11), -- P. Def. Modifiers
+(30410, 4413, 11), -- M. Def. Modifiers
+(30410, 4414, 2), -- Armor Type
+(30410, 4415, 3), -- Weapon Type
+(30410, 4416, 6), -- Races
 -- Flame Salamander
 (30411, 4045, 1), -- Resist Full Magic Attack
-(30411, 4408, 1), -- HP Increase (1x)
-(30411, 4409, 1), -- MP Increase (1x)
-(30411, 4410, 11), -- Average P. Atk.
-(30411, 4411, 11), -- Average M. Atk.
-(30411, 4412, 11), -- Average P. Def.
-(30411, 4413, 11), -- Average M. Def.
-(30411, 4414, 2), -- Standard Type
-(30411, 4415, 3), -- One-handed Sword
-(30411, 4416, 7), -- Spirits
+(30411, 4408, 1), -- HP Modifiers
+(30411, 4409, 1), -- MP Modifiers
+(30411, 4410, 11), -- P. Atk. Modifiers
+(30411, 4411, 11), -- M. Atk. Modifiers
+(30411, 4412, 11), -- P. Def. Modifiers
+(30411, 4413, 11), -- M. Def. Modifiers
+(30411, 4414, 2), -- Armor Type
+(30411, 4415, 3), -- Weapon Type
+(30411, 4416, 7), -- Races
 -- Wind Sylph
 (30412, 4045, 1), -- Resist Full Magic Attack
-(30412, 4408, 1), -- HP Increase (1x)
-(30412, 4409, 1), -- MP Increase (1x)
-(30412, 4410, 11), -- Average P. Atk.
-(30412, 4411, 11), -- Average M. Atk.
-(30412, 4412, 11), -- Average P. Def.
-(30412, 4413, 11), -- Average M. Def.
-(30412, 4414, 2), -- Standard Type
-(30412, 4415, 3), -- One-handed Sword
-(30412, 4416, 7), -- Spirits
+(30412, 4408, 1), -- HP Modifiers
+(30412, 4409, 1), -- MP Modifiers
+(30412, 4410, 11), -- P. Atk. Modifiers
+(30412, 4411, 11), -- M. Atk. Modifiers
+(30412, 4412, 11), -- P. Def. Modifiers
+(30412, 4413, 11), -- M. Def. Modifiers
+(30412, 4414, 2), -- Armor Type
+(30412, 4415, 3), -- Weapon Type
+(30412, 4416, 7), -- Races
 -- Water Undine
 (30413, 4045, 1), -- Resist Full Magic Attack
-(30413, 4408, 1), -- HP Increase (1x)
-(30413, 4409, 1), -- MP Increase (1x)
-(30413, 4410, 11), -- Average P. Atk.
-(30413, 4411, 11), -- Average M. Atk.
-(30413, 4412, 11), -- Average P. Def.
-(30413, 4413, 11), -- Average M. Def.
-(30413, 4414, 2), -- Standard Type
-(30413, 4415, 3), -- One-handed Sword
-(30413, 4416, 7), -- Spirits
+(30413, 4408, 1), -- HP Modifiers
+(30413, 4409, 1), -- MP Modifiers
+(30413, 4410, 11), -- P. Atk. Modifiers
+(30413, 4411, 11), -- M. Atk. Modifiers
+(30413, 4412, 11), -- P. Def. Modifiers
+(30413, 4413, 11), -- M. Def. Modifiers
+(30413, 4414, 2), -- Armor Type
+(30413, 4415, 3), -- Weapon Type
+(30413, 4416, 7), -- Races
 -- Rosella
 (30414, 4045, 1), -- Resist Full Magic Attack
-(30414, 4408, 1), -- HP Increase (1x)
-(30414, 4409, 1), -- MP Increase (1x)
-(30414, 4410, 11), -- Average P. Atk.
-(30414, 4411, 11), -- Average M. Atk.
-(30414, 4412, 11), -- Average P. Def.
-(30414, 4413, 11), -- Average M. Def.
-(30414, 4414, 2), -- Standard Type
-(30414, 4415, 3), -- One-handed Sword
-(30414, 4416, 15), -- Elves
+(30414, 4408, 1), -- HP Modifiers
+(30414, 4409, 1), -- MP Modifiers
+(30414, 4410, 11), -- P. Atk. Modifiers
+(30414, 4411, 11), -- M. Atk. Modifiers
+(30414, 4412, 11), -- P. Def. Modifiers
+(30414, 4413, 11), -- M. Def. Modifiers
+(30414, 4414, 2), -- Armor Type
+(30414, 4415, 3), -- Weapon Type
+(30414, 4416, 15), -- Races
 -- Charkeren
 (30415, 4045, 1), -- Resist Full Magic Attack
-(30415, 4408, 1), -- HP Increase (1x)
-(30415, 4409, 1), -- MP Increase (1x)
-(30415, 4410, 11), -- Average P. Atk.
-(30415, 4411, 11), -- Average M. Atk.
-(30415, 4412, 11), -- Average P. Def.
-(30415, 4413, 11), -- Average M. Def.
-(30415, 4414, 2), -- Standard Type
-(30415, 4415, 3), -- One-handed Sword
-(30415, 4416, 16), -- Dark Elves
+(30415, 4408, 1), -- HP Modifiers
+(30415, 4409, 1), -- MP Modifiers
+(30415, 4410, 11), -- P. Atk. Modifiers
+(30415, 4411, 11), -- M. Atk. Modifiers
+(30415, 4412, 11), -- P. Def. Modifiers
+(30415, 4413, 11), -- M. Def. Modifiers
+(30415, 4414, 2), -- Armor Type
+(30415, 4415, 3), -- Weapon Type
+(30415, 4416, 16), -- Races
 -- Triskel
 (30416, 4045, 1), -- Resist Full Magic Attack
-(30416, 4408, 1), -- HP Increase (1x)
-(30416, 4409, 1), -- MP Increase (1x)
-(30416, 4410, 11), -- Average P. Atk.
-(30416, 4411, 11), -- Average M. Atk.
-(30416, 4412, 11), -- Average P. Def.
-(30416, 4413, 11), -- Average M. Def.
-(30416, 4414, 2), -- Standard Type
-(30416, 4415, 3), -- One-handed Sword
-(30416, 4416, 16), -- Dark Elves
+(30416, 4408, 1), -- HP Modifiers
+(30416, 4409, 1), -- MP Modifiers
+(30416, 4410, 11), -- P. Atk. Modifiers
+(30416, 4411, 11), -- M. Atk. Modifiers
+(30416, 4412, 11), -- P. Def. Modifiers
+(30416, 4413, 11), -- M. Def. Modifiers
+(30416, 4414, 2), -- Armor Type
+(30416, 4415, 3), -- Weapon Type
+(30416, 4416, 16), -- Races
 -- Sir Klaus Vasper
 (30417, 4045, 1), -- Resist Full Magic Attack
-(30417, 4408, 1), -- HP Increase (1x)
-(30417, 4409, 1), -- MP Increase (1x)
-(30417, 4410, 11), -- Average P. Atk.
-(30417, 4411, 11), -- Average M. Atk.
-(30417, 4412, 11), -- Average P. Def.
-(30417, 4413, 11), -- Average M. Def.
-(30417, 4414, 2), -- Standard Type
-(30417, 4415, 3), -- One-handed Sword
-(30417, 4416, 14), -- Humans
+(30417, 4408, 1), -- HP Modifiers
+(30417, 4409, 1), -- MP Modifiers
+(30417, 4410, 11), -- P. Atk. Modifiers
+(30417, 4411, 11), -- M. Atk. Modifiers
+(30417, 4412, 11), -- P. Def. Modifiers
+(30417, 4413, 11), -- M. Def. Modifiers
+(30417, 4414, 2), -- Armor Type
+(30417, 4415, 3), -- Weapon Type
+(30417, 4416, 14), -- Races
 -- Annika
 (30418, 4045, 1), -- Resist Full Magic Attack
-(30418, 4408, 1), -- HP Increase (1x)
-(30418, 4409, 1), -- MP Increase (1x)
-(30418, 4410, 11), -- Average P. Atk.
-(30418, 4411, 11), -- Average M. Atk.
-(30418, 4412, 11), -- Average P. Def.
-(30418, 4413, 11), -- Average M. Def.
-(30418, 4414, 2), -- Standard Type
-(30418, 4415, 3), -- One-handed Sword
-(30418, 4416, 16), -- Dark Elves
+(30418, 4408, 1), -- HP Modifiers
+(30418, 4409, 1), -- MP Modifiers
+(30418, 4410, 11), -- P. Atk. Modifiers
+(30418, 4411, 11), -- M. Atk. Modifiers
+(30418, 4412, 11), -- P. Def. Modifiers
+(30418, 4413, 11), -- M. Def. Modifiers
+(30418, 4414, 2), -- Armor Type
+(30418, 4415, 3), -- Weapon Type
+(30418, 4416, 16), -- Races
 -- Arkenia
 (30419, 4045, 1), -- Resist Full Magic Attack
-(30419, 4408, 1), -- HP Increase (1x)
-(30419, 4409, 1), -- MP Increase (1x)
-(30419, 4410, 11), -- Average P. Atk.
-(30419, 4411, 11), -- Average M. Atk.
-(30419, 4412, 11), -- Average P. Def.
-(30419, 4413, 11), -- Average M. Def.
-(30419, 4414, 2), -- Standard Type
-(30419, 4415, 3), -- One-handed Sword
-(30419, 4416, 16), -- Dark Elves
+(30419, 4408, 1), -- HP Modifiers
+(30419, 4409, 1), -- MP Modifiers
+(30419, 4410, 11), -- P. Atk. Modifiers
+(30419, 4411, 11), -- M. Atk. Modifiers
+(30419, 4412, 11), -- P. Def. Modifiers
+(30419, 4413, 11), -- M. Def. Modifiers
+(30419, 4414, 2), -- Armor Type
+(30419, 4415, 3), -- Weapon Type
+(30419, 4416, 16), -- Races
 -- Tyra
 (30420, 4045, 1), -- Resist Full Magic Attack
-(30420, 4408, 1), -- HP Increase (1x)
-(30420, 4409, 1), -- MP Increase (1x)
-(30420, 4410, 11), -- Average P. Atk.
-(30420, 4411, 11), -- Average M. Atk.
-(30420, 4412, 11), -- Average P. Def.
-(30420, 4413, 11), -- Average M. Def.
-(30420, 4414, 2), -- Standard Type
-(30420, 4415, 3), -- One-handed Sword
-(30420, 4416, 16), -- Dark Elves
+(30420, 4408, 1), -- HP Modifiers
+(30420, 4409, 1), -- MP Modifiers
+(30420, 4410, 11), -- P. Atk. Modifiers
+(30420, 4411, 11), -- M. Atk. Modifiers
+(30420, 4412, 11), -- P. Def. Modifiers
+(30420, 4413, 11), -- M. Def. Modifiers
+(30420, 4414, 2), -- Armor Type
+(30420, 4415, 3), -- Weapon Type
+(30420, 4416, 16), -- Races
 -- Varika
 (30421, 4045, 1), -- Resist Full Magic Attack
-(30421, 4408, 1), -- HP Increase (1x)
-(30421, 4409, 1), -- MP Increase (1x)
-(30421, 4410, 11), -- Average P. Atk.
-(30421, 4411, 11), -- Average M. Atk.
-(30421, 4412, 11), -- Average P. Def.
-(30421, 4413, 11), -- Average M. Def.
-(30421, 4414, 2), -- Standard Type
-(30421, 4415, 3), -- One-handed Sword
-(30421, 4416, 16), -- Dark Elves
+(30421, 4408, 1), -- HP Modifiers
+(30421, 4409, 1), -- MP Modifiers
+(30421, 4410, 11), -- P. Atk. Modifiers
+(30421, 4411, 11), -- M. Atk. Modifiers
+(30421, 4412, 11), -- P. Def. Modifiers
+(30421, 4413, 11), -- M. Def. Modifiers
+(30421, 4414, 2), -- Armor Type
+(30421, 4415, 3), -- Weapon Type
+(30421, 4416, 16), -- Races
 -- Kalinta
 (30422, 4045, 1), -- Resist Full Magic Attack
-(30422, 4408, 1), -- HP Increase (1x)
-(30422, 4409, 1), -- MP Increase (1x)
-(30422, 4410, 11), -- Average P. Atk.
-(30422, 4411, 11), -- Average M. Atk.
-(30422, 4412, 11), -- Average P. Def.
-(30422, 4413, 11), -- Average M. Def.
-(30422, 4414, 2), -- Standard Type
-(30422, 4415, 3), -- One-handed Sword
-(30422, 4416, 16), -- Dark Elves
+(30422, 4408, 1), -- HP Modifiers
+(30422, 4409, 1), -- MP Modifiers
+(30422, 4410, 11), -- P. Atk. Modifiers
+(30422, 4411, 11), -- M. Atk. Modifiers
+(30422, 4412, 11), -- P. Def. Modifiers
+(30422, 4413, 11), -- M. Def. Modifiers
+(30422, 4414, 2), -- Armor Type
+(30422, 4415, 3), -- Weapon Type
+(30422, 4416, 16), -- Races
 -- Northwind
 (30423, 4045, 1), -- Resist Full Magic Attack
-(30423, 4408, 1), -- HP Increase (1x)
-(30423, 4409, 1), -- MP Increase (1x)
-(30423, 4410, 11), -- Average P. Atk.
-(30423, 4411, 11), -- Average M. Atk.
-(30423, 4412, 11), -- Average P. Def.
-(30423, 4413, 11), -- Average M. Def.
-(30423, 4414, 2), -- Standard Type
-(30423, 4415, 3), -- One-handed Sword
-(30423, 4416, 15), -- Elves
+(30423, 4408, 1), -- HP Modifiers
+(30423, 4409, 1), -- MP Modifiers
+(30423, 4410, 11), -- P. Atk. Modifiers
+(30423, 4411, 11), -- M. Atk. Modifiers
+(30423, 4412, 11), -- P. Def. Modifiers
+(30423, 4413, 11), -- M. Def. Modifiers
+(30423, 4414, 2), -- Armor Type
+(30423, 4415, 3), -- Weapon Type
+(30423, 4416, 15), -- Races
 -- Allana
 (30424, 4045, 1), -- Resist Full Magic Attack
-(30424, 4408, 1), -- HP Increase (1x)
-(30424, 4409, 1), -- MP Increase (1x)
-(30424, 4410, 11), -- Average P. Atk.
-(30424, 4411, 11), -- Average M. Atk.
-(30424, 4412, 11), -- Average P. Def.
-(30424, 4413, 11), -- Average M. Def.
-(30424, 4414, 2), -- Standard Type
-(30424, 4415, 3), -- One-handed Sword
-(30424, 4416, 14), -- Humans
+(30424, 4408, 1), -- HP Modifiers
+(30424, 4409, 1), -- MP Modifiers
+(30424, 4410, 11), -- P. Atk. Modifiers
+(30424, 4411, 11), -- M. Atk. Modifiers
+(30424, 4412, 11), -- P. Def. Modifiers
+(30424, 4413, 11), -- M. Def. Modifiers
+(30424, 4414, 2), -- Armor Type
+(30424, 4415, 3), -- Weapon Type
+(30424, 4416, 14), -- Races
 -- Neti
 (30425, 4045, 1), -- Resist Full Magic Attack
-(30425, 4408, 1), -- HP Increase (1x)
-(30425, 4409, 1), -- MP Increase (1x)
-(30425, 4410, 11), -- Average P. Atk.
-(30425, 4411, 11), -- Average M. Atk.
-(30425, 4412, 11), -- Average P. Def.
-(30425, 4413, 11), -- Average M. Def.
-(30425, 4414, 2), -- Standard Type
-(30425, 4415, 3), -- One-handed Sword
-(30425, 4416, 14), -- Humans
+(30425, 4408, 1), -- HP Modifiers
+(30425, 4409, 1), -- MP Modifiers
+(30425, 4410, 11), -- P. Atk. Modifiers
+(30425, 4411, 11), -- M. Atk. Modifiers
+(30425, 4412, 11), -- P. Def. Modifiers
+(30425, 4413, 11), -- M. Def. Modifiers
+(30425, 4414, 2), -- Armor Type
+(30425, 4415, 3), -- Weapon Type
+(30425, 4416, 14), -- Races
 -- Prias
 (30426, 4045, 1), -- Resist Full Magic Attack
-(30426, 4408, 1), -- HP Increase (1x)
-(30426, 4409, 1), -- MP Increase (1x)
-(30426, 4410, 11), -- Average P. Atk.
-(30426, 4411, 11), -- Average M. Atk.
-(30426, 4412, 11), -- Average P. Def.
-(30426, 4413, 11), -- Average M. Def.
-(30426, 4414, 2), -- Standard Type
-(30426, 4415, 3), -- One-handed Sword
-(30426, 4416, 14), -- Humans
+(30426, 4408, 1), -- HP Modifiers
+(30426, 4409, 1), -- MP Modifiers
+(30426, 4410, 11), -- P. Atk. Modifiers
+(30426, 4411, 11), -- M. Atk. Modifiers
+(30426, 4412, 11), -- P. Def. Modifiers
+(30426, 4413, 11), -- M. Def. Modifiers
+(30426, 4414, 2), -- Armor Type
+(30426, 4415, 3), -- Weapon Type
+(30426, 4416, 14), -- Races
 -- Siff
 (30427, 4045, 1), -- Resist Full Magic Attack
-(30427, 4408, 1), -- HP Increase (1x)
-(30427, 4409, 1), -- MP Increase (1x)
-(30427, 4410, 11), -- Average P. Atk.
-(30427, 4411, 11), -- Average M. Atk.
-(30427, 4412, 11), -- Average P. Def.
-(30427, 4413, 11), -- Average M. Def.
-(30427, 4414, 2), -- Standard Type
-(30427, 4415, 3), -- One-handed Sword
-(30427, 4416, 14), -- Humans
+(30427, 4408, 1), -- HP Modifiers
+(30427, 4409, 1), -- MP Modifiers
+(30427, 4410, 11), -- P. Atk. Modifiers
+(30427, 4411, 11), -- M. Atk. Modifiers
+(30427, 4412, 11), -- P. Def. Modifiers
+(30427, 4413, 11), -- M. Def. Modifiers
+(30427, 4414, 2), -- Armor Type
+(30427, 4415, 3), -- Weapon Type
+(30427, 4416, 14), -- Races
 -- Perrin
 (30428, 4045, 1), -- Resist Full Magic Attack
-(30428, 4408, 1), -- HP Increase (1x)
-(30428, 4409, 1), -- MP Increase (1x)
-(30428, 4410, 11), -- Average P. Atk.
-(30428, 4411, 11), -- Average M. Atk.
-(30428, 4412, 11), -- Average P. Def.
-(30428, 4413, 11), -- Average M. Def.
-(30428, 4414, 2), -- Standard Type
-(30428, 4415, 3), -- One-handed Sword
-(30428, 4416, 14), -- Humans
+(30428, 4408, 1), -- HP Modifiers
+(30428, 4409, 1), -- MP Modifiers
+(30428, 4410, 11), -- P. Atk. Modifiers
+(30428, 4411, 11), -- M. Atk. Modifiers
+(30428, 4412, 11), -- P. Def. Modifiers
+(30428, 4413, 11), -- M. Def. Modifiers
+(30428, 4414, 2), -- Armor Type
+(30428, 4415, 3), -- Weapon Type
+(30428, 4416, 14), -- Races
 -- Tiramisa
 (30429, 4045, 1), -- Resist Full Magic Attack
-(30429, 4408, 1), -- HP Increase (1x)
-(30429, 4409, 1), -- MP Increase (1x)
-(30429, 4410, 11), -- Average P. Atk.
-(30429, 4411, 11), -- Average M. Atk.
-(30429, 4412, 11), -- Average P. Def.
-(30429, 4413, 11), -- Average M. Def.
-(30429, 4414, 2), -- Standard Type
-(30429, 4415, 3), -- One-handed Sword
-(30429, 4416, 14), -- Humans
+(30429, 4408, 1), -- HP Modifiers
+(30429, 4409, 1), -- MP Modifiers
+(30429, 4410, 11), -- P. Atk. Modifiers
+(30429, 4411, 11), -- M. Atk. Modifiers
+(30429, 4412, 11), -- P. Def. Modifiers
+(30429, 4413, 11), -- M. Def. Modifiers
+(30429, 4414, 2), -- Armor Type
+(30429, 4415, 3), -- Weapon Type
+(30429, 4416, 14), -- Races
 -- Trionell
 (30430, 4045, 1), -- Resist Full Magic Attack
-(30430, 4408, 1), -- HP Increase (1x)
-(30430, 4409, 1), -- MP Increase (1x)
-(30430, 4410, 16), -- Very Strong P. Atk.
-(30430, 4411, 16), -- Very Strong M. Atk.
-(30430, 4412, 16), -- Very Strong P. Def.
-(30430, 4413, 16), -- Very Strong M. Def.
-(30430, 4414, 2), -- Standard Type
-(30430, 4415, 3), -- One-handed Sword
-(30430, 4416, 15), -- Elves
+(30430, 4408, 1), -- HP Modifiers
+(30430, 4409, 1), -- MP Modifiers
+(30430, 4410, 16), -- P. Atk. Modifiers
+(30430, 4411, 16), -- M. Atk. Modifiers
+(30430, 4412, 16), -- P. Def. Modifiers
+(30430, 4413, 16), -- M. Def. Modifiers
+(30430, 4414, 2), -- Armor Type
+(30430, 4415, 3), -- Weapon Type
+(30430, 4416, 15), -- Races
 -- Eriel
 (30431, 4045, 1), -- Resist Full Magic Attack
-(30431, 4408, 1), -- HP Increase (1x)
-(30431, 4409, 1), -- MP Increase (1x)
-(30431, 4410, 16), -- Very Strong P. Atk.
-(30431, 4411, 16), -- Very Strong M. Atk.
-(30431, 4412, 16), -- Very Strong P. Def.
-(30431, 4413, 16), -- Very Strong M. Def.
-(30431, 4414, 2), -- Standard Type
-(30431, 4415, 3), -- One-handed Sword
-(30431, 4416, 15), -- Elves
+(30431, 4408, 1), -- HP Modifiers
+(30431, 4409, 1), -- MP Modifiers
+(30431, 4410, 16), -- P. Atk. Modifiers
+(30431, 4411, 16), -- M. Atk. Modifiers
+(30431, 4412, 16), -- P. Def. Modifiers
+(30431, 4413, 16), -- M. Def. Modifiers
+(30431, 4414, 2), -- Armor Type
+(30431, 4415, 3), -- Weapon Type
+(30431, 4416, 15), -- Races
 -- Irene
 (30432, 4045, 1), -- Resist Full Magic Attack
-(30432, 4408, 1), -- HP Increase (1x)
-(30432, 4409, 1), -- MP Increase (1x)
-(30432, 4410, 16), -- Very Strong P. Atk.
-(30432, 4411, 16), -- Very Strong M. Atk.
-(30432, 4412, 16), -- Very Strong P. Def.
-(30432, 4413, 16), -- Very Strong M. Def.
-(30432, 4414, 2), -- Standard Type
-(30432, 4415, 3), -- One-handed Sword
-(30432, 4416, 16), -- Dark Elves
+(30432, 4408, 1), -- HP Modifiers
+(30432, 4409, 1), -- MP Modifiers
+(30432, 4410, 16), -- P. Atk. Modifiers
+(30432, 4411, 16), -- M. Atk. Modifiers
+(30432, 4412, 16), -- P. Def. Modifiers
+(30432, 4413, 16), -- M. Def. Modifiers
+(30432, 4414, 2), -- Armor Type
+(30432, 4415, 3), -- Weapon Type
+(30432, 4416, 16), -- Races
 -- Kathaway
 (30433, 4045, 1), -- Resist Full Magic Attack
-(30433, 4408, 1), -- HP Increase (1x)
-(30433, 4409, 1), -- MP Increase (1x)
-(30433, 4410, 16), -- Very Strong P. Atk.
-(30433, 4411, 16), -- Very Strong M. Atk.
-(30433, 4412, 16), -- Very Strong P. Def.
-(30433, 4413, 16), -- Very Strong M. Def.
-(30433, 4414, 2), -- Standard Type
-(30433, 4415, 3), -- One-handed Sword
-(30433, 4416, 16), -- Dark Elves
+(30433, 4408, 1), -- HP Modifiers
+(30433, 4409, 1), -- MP Modifiers
+(30433, 4410, 16), -- P. Atk. Modifiers
+(30433, 4411, 16), -- M. Atk. Modifiers
+(30433, 4412, 16), -- P. Def. Modifiers
+(30433, 4413, 16), -- M. Def. Modifiers
+(30433, 4414, 2), -- Armor Type
+(30433, 4415, 3), -- Weapon Type
+(30433, 4416, 16), -- Races
 -- Samed
 (30434, 4045, 1), -- Resist Full Magic Attack
-(30434, 4408, 1), -- HP Increase (1x)
-(30434, 4409, 1), -- MP Increase (1x)
-(30434, 4410, 11), -- Average P. Atk.
-(30434, 4411, 11), -- Average M. Atk.
-(30434, 4412, 11), -- Average P. Def.
-(30434, 4413, 11), -- Average M. Def.
-(30434, 4414, 2), -- Standard Type
-(30434, 4415, 3), -- One-handed Sword
-(30434, 4416, 14), -- Humans
+(30434, 4408, 1), -- HP Modifiers
+(30434, 4409, 1), -- MP Modifiers
+(30434, 4410, 11), -- P. Atk. Modifiers
+(30434, 4411, 11), -- M. Atk. Modifiers
+(30434, 4412, 11), -- P. Def. Modifiers
+(30434, 4413, 11), -- M. Def. Modifiers
+(30434, 4414, 2), -- Armor Type
+(30434, 4415, 3), -- Weapon Type
+(30434, 4416, 14), -- Races
 -- Leopold
 (30435, 4045, 1), -- Resist Full Magic Attack
-(30435, 4408, 1), -- HP Increase (1x)
-(30435, 4409, 1), -- MP Increase (1x)
-(30435, 4410, 11), -- Average P. Atk.
-(30435, 4411, 11), -- Average M. Atk.
-(30435, 4412, 11), -- Average P. Def.
-(30435, 4413, 11), -- Average M. Def.
-(30435, 4414, 2), -- Standard Type
-(30435, 4415, 3), -- One-handed Sword
-(30435, 4416, 14), -- Humans
+(30435, 4408, 1), -- HP Modifiers
+(30435, 4409, 1), -- MP Modifiers
+(30435, 4410, 11), -- P. Atk. Modifiers
+(30435, 4411, 11), -- M. Atk. Modifiers
+(30435, 4412, 11), -- P. Def. Modifiers
+(30435, 4413, 11), -- M. Def. Modifiers
+(30435, 4414, 2), -- Armor Type
+(30435, 4415, 3), -- Weapon Type
+(30435, 4416, 14), -- Races
 -- Sarien
 (30436, 4045, 1), -- Resist Full Magic Attack
-(30436, 4408, 1), -- HP Increase (1x)
-(30436, 4409, 1), -- MP Increase (1x)
-(30436, 4410, 11), -- Average P. Atk.
-(30436, 4411, 11), -- Average M. Atk.
-(30436, 4412, 11), -- Average P. Def.
-(30436, 4413, 11), -- Average M. Def.
-(30436, 4414, 2), -- Standard Type
-(30436, 4415, 3), -- One-handed Sword
-(30436, 4416, 14), -- Humans
+(30436, 4408, 1), -- HP Modifiers
+(30436, 4409, 1), -- MP Modifiers
+(30436, 4410, 11), -- P. Atk. Modifiers
+(30436, 4411, 11), -- M. Atk. Modifiers
+(30436, 4412, 11), -- P. Def. Modifiers
+(30436, 4413, 11), -- M. Def. Modifiers
+(30436, 4414, 2), -- Armor Type
+(30436, 4415, 3), -- Weapon Type
+(30436, 4416, 14), -- Races
 -- Rolento
 (30437, 4045, 1), -- Resist Full Magic Attack
-(30437, 4408, 1), -- HP Increase (1x)
-(30437, 4409, 1), -- MP Increase (1x)
-(30437, 4410, 11), -- Average P. Atk.
-(30437, 4411, 11), -- Average M. Atk.
-(30437, 4412, 11), -- Average P. Def.
-(30437, 4413, 11), -- Average M. Def.
-(30437, 4414, 2), -- Standard Type
-(30437, 4415, 3), -- One-handed Sword
-(30437, 4416, 18), -- Dwarves
+(30437, 4408, 1), -- HP Modifiers
+(30437, 4409, 1), -- MP Modifiers
+(30437, 4410, 11), -- P. Atk. Modifiers
+(30437, 4411, 11), -- M. Atk. Modifiers
+(30437, 4412, 11), -- P. Def. Modifiers
+(30437, 4413, 11), -- M. Def. Modifiers
+(30437, 4414, 2), -- Armor Type
+(30437, 4415, 3), -- Weapon Type
+(30437, 4416, 18), -- Races
 -- Kurt
 (30452, 4045, 1), -- Resist Full Magic Attack
-(30452, 4408, 1), -- HP Increase (1x)
-(30452, 4409, 1), -- MP Increase (1x)
-(30452, 4410, 16), -- Very Strong P. Atk.
-(30452, 4411, 16), -- Very Strong M. Atk.
-(30452, 4412, 16), -- Very Strong P. Def.
-(30452, 4413, 16), -- Very Strong M. Def.
-(30452, 4414, 2), -- Standard Type
-(30452, 4415, 3), -- One-handed Sword
-(30452, 4416, 14), -- Humans
+(30452, 4408, 1), -- HP Modifiers
+(30452, 4409, 1), -- MP Modifiers
+(30452, 4410, 16), -- P. Atk. Modifiers
+(30452, 4411, 16), -- M. Atk. Modifiers
+(30452, 4412, 16), -- P. Def. Modifiers
+(30452, 4413, 16), -- M. Def. Modifiers
+(30452, 4414, 2), -- Armor Type
+(30452, 4415, 3), -- Weapon Type
+(30452, 4416, 14), -- Races
 -- Poitan
 (30458, 4045, 1), -- Resist Full Magic Attack
-(30458, 4408, 1), -- HP Increase (1x)
-(30458, 4409, 1), -- MP Increase (1x)
-(30458, 4410, 11), -- Average P. Atk.
-(30458, 4411, 11), -- Average M. Atk.
-(30458, 4412, 11), -- Average P. Def.
-(30458, 4413, 11), -- Average M. Def.
-(30458, 4414, 2), -- Standard Type
-(30458, 4415, 3), -- One-handed Sword
-(30458, 4416, 18), -- Dwarves
+(30458, 4408, 1), -- HP Modifiers
+(30458, 4409, 1), -- MP Modifiers
+(30458, 4410, 11), -- P. Atk. Modifiers
+(30458, 4411, 11), -- M. Atk. Modifiers
+(30458, 4412, 11), -- P. Def. Modifiers
+(30458, 4413, 11), -- M. Def. Modifiers
+(30458, 4414, 2), -- Armor Type
+(30458, 4415, 3), -- Weapon Type
+(30458, 4416, 18), -- Races
 -- Wandius
 (30459, 4045, 1), -- Resist Full Magic Attack
-(30459, 4408, 1), -- HP Increase (1x)
-(30459, 4409, 1), -- MP Increase (1x)
-(30459, 4410, 11), -- Average P. Atk.
-(30459, 4411, 11), -- Average M. Atk.
-(30459, 4412, 11), -- Average P. Def.
-(30459, 4413, 11), -- Average M. Def.
-(30459, 4414, 2), -- Standard Type
-(30459, 4415, 3), -- One-handed Sword
-(30459, 4416, 15), -- Elves
+(30459, 4408, 1), -- HP Modifiers
+(30459, 4409, 1), -- MP Modifiers
+(30459, 4410, 11), -- P. Atk. Modifiers
+(30459, 4411, 11), -- M. Atk. Modifiers
+(30459, 4412, 11), -- P. Def. Modifiers
+(30459, 4413, 11), -- M. Def. Modifiers
+(30459, 4414, 2), -- Armor Type
+(30459, 4415, 3), -- Weapon Type
+(30459, 4416, 15), -- Races
 -- Cardien
 (30460, 4045, 1), -- Resist Full Magic Attack
-(30460, 4408, 1), -- HP Increase (1x)
-(30460, 4409, 1), -- MP Increase (1x)
-(30460, 4410, 11), -- Average P. Atk.
-(30460, 4411, 11), -- Average M. Atk.
-(30460, 4412, 11), -- Average P. Def.
-(30460, 4413, 11), -- Average M. Def.
-(30460, 4414, 2), -- Standard Type
-(30460, 4415, 3), -- One-handed Sword
-(30460, 4416, 15), -- Elves
+(30460, 4408, 1), -- HP Modifiers
+(30460, 4409, 1), -- MP Modifiers
+(30460, 4410, 11), -- P. Atk. Modifiers
+(30460, 4411, 11), -- M. Atk. Modifiers
+(30460, 4412, 11), -- P. Def. Modifiers
+(30460, 4413, 11), -- M. Def. Modifiers
+(30460, 4414, 2), -- Armor Type
+(30460, 4415, 3), -- Weapon Type
+(30460, 4416, 15), -- Races
 -- Mirien
 (30461, 4045, 1), -- Resist Full Magic Attack
-(30461, 4408, 1), -- HP Increase (1x)
-(30461, 4409, 1), -- MP Increase (1x)
-(30461, 4410, 11), -- Average P. Atk.
-(30461, 4411, 11), -- Average M. Atk.
-(30461, 4412, 11), -- Average P. Def.
-(30461, 4413, 11), -- Average M. Def.
-(30461, 4414, 2), -- Standard Type
-(30461, 4415, 3), -- One-handed Sword
-(30461, 4416, 15), -- Elves
+(30461, 4408, 1), -- HP Modifiers
+(30461, 4409, 1), -- MP Modifiers
+(30461, 4410, 11), -- P. Atk. Modifiers
+(30461, 4411, 11), -- M. Atk. Modifiers
+(30461, 4412, 11), -- P. Def. Modifiers
+(30461, 4413, 11), -- M. Def. Modifiers
+(30461, 4414, 2), -- Armor Type
+(30461, 4415, 3), -- Weapon Type
+(30461, 4416, 15), -- Races
 -- Tronix
 (30462, 4045, 1), -- Resist Full Magic Attack
-(30462, 4408, 1), -- HP Increase (1x)
-(30462, 4409, 1), -- MP Increase (1x)
-(30462, 4410, 11), -- Average P. Atk.
-(30462, 4411, 11), -- Average M. Atk.
-(30462, 4412, 11), -- Average P. Def.
-(30462, 4413, 11), -- Average M. Def.
-(30462, 4414, 2), -- Standard Type
-(30462, 4415, 3), -- One-handed Sword
-(30462, 4416, 16), -- Dark Elves
+(30462, 4408, 1), -- HP Modifiers
+(30462, 4409, 1), -- MP Modifiers
+(30462, 4410, 11), -- P. Atk. Modifiers
+(30462, 4411, 11), -- M. Atk. Modifiers
+(30462, 4412, 11), -- P. Def. Modifiers
+(30462, 4413, 11), -- M. Def. Modifiers
+(30462, 4414, 2), -- Armor Type
+(30462, 4415, 3), -- Weapon Type
+(30462, 4416, 16), -- Races
 -- Ixia
 (30463, 4045, 1), -- Resist Full Magic Attack
-(30463, 4408, 1), -- HP Increase (1x)
-(30463, 4409, 1), -- MP Increase (1x)
-(30463, 4410, 11), -- Average P. Atk.
-(30463, 4411, 11), -- Average M. Atk.
-(30463, 4412, 11), -- Average P. Def.
-(30463, 4413, 11), -- Average M. Def.
-(30463, 4414, 2), -- Standard Type
-(30463, 4415, 3), -- One-handed Sword
-(30463, 4416, 16), -- Dark Elves
+(30463, 4408, 1), -- HP Modifiers
+(30463, 4409, 1), -- MP Modifiers
+(30463, 4410, 11), -- P. Atk. Modifiers
+(30463, 4411, 11), -- M. Atk. Modifiers
+(30463, 4412, 11), -- P. Def. Modifiers
+(30463, 4413, 11), -- M. Def. Modifiers
+(30463, 4414, 2), -- Armor Type
+(30463, 4415, 3), -- Weapon Type
+(30463, 4416, 16), -- Races
 -- Clayton
 (30464, 4045, 1), -- Resist Full Magic Attack
-(30464, 4408, 1), -- HP Increase (1x)
-(30464, 4409, 1), -- MP Increase (1x)
-(30464, 4410, 11), -- Average P. Atk.
-(30464, 4411, 11), -- Average M. Atk.
-(30464, 4412, 11), -- Average P. Def.
-(30464, 4413, 11), -- Average M. Def.
-(30464, 4414, 2), -- Standard Type
-(30464, 4415, 3), -- One-handed Sword
-(30464, 4416, 16), -- Dark Elves
+(30464, 4408, 1), -- HP Modifiers
+(30464, 4409, 1), -- MP Modifiers
+(30464, 4410, 11), -- P. Atk. Modifiers
+(30464, 4411, 11), -- M. Atk. Modifiers
+(30464, 4412, 11), -- P. Def. Modifiers
+(30464, 4413, 11), -- M. Def. Modifiers
+(30464, 4414, 2), -- Armor Type
+(30464, 4415, 3), -- Weapon Type
+(30464, 4416, 16), -- Races
 -- Herven
 (30465, 4045, 1), -- Resist Full Magic Attack
-(30465, 4408, 1), -- HP Increase (1x)
-(30465, 4409, 1), -- MP Increase (1x)
-(30465, 4410, 16), -- Very Strong P. Atk.
-(30465, 4411, 16), -- Very Strong M. Atk.
-(30465, 4412, 16), -- Very Strong P. Def.
-(30465, 4413, 16), -- Very Strong M. Def.
-(30465, 4414, 2), -- Standard Type
-(30465, 4415, 9), -- Bows
-(30465, 4416, 14), -- Humans
+(30465, 4408, 1), -- HP Modifiers
+(30465, 4409, 1), -- MP Modifiers
+(30465, 4410, 16), -- P. Atk. Modifiers
+(30465, 4411, 16), -- M. Atk. Modifiers
+(30465, 4412, 16), -- P. Def. Modifiers
+(30465, 4413, 16), -- M. Def. Modifiers
+(30465, 4414, 2), -- Armor Type
+(30465, 4415, 9), -- Weapon Type
+(30465, 4416, 14), -- Races
 -- Bright
 (30466, 4045, 1), -- Resist Full Magic Attack
-(30466, 4408, 1), -- HP Increase (1x)
-(30466, 4409, 1), -- MP Increase (1x)
-(30466, 4410, 16), -- Very Strong P. Atk.
-(30466, 4411, 16), -- Very Strong M. Atk.
-(30466, 4412, 16), -- Very Strong P. Def.
-(30466, 4413, 16), -- Very Strong M. Def.
-(30466, 4414, 2), -- Standard Type
-(30466, 4415, 3), -- One-handed Sword
-(30466, 4416, 14), -- Humans
+(30466, 4408, 1), -- HP Modifiers
+(30466, 4409, 1), -- MP Modifiers
+(30466, 4410, 16), -- P. Atk. Modifiers
+(30466, 4411, 16), -- M. Atk. Modifiers
+(30466, 4412, 16), -- P. Def. Modifiers
+(30466, 4413, 16), -- M. Def. Modifiers
+(30466, 4414, 2), -- Armor Type
+(30466, 4415, 3), -- Weapon Type
+(30466, 4416, 14), -- Races
 -- Jonas
 (30469, 4045, 1), -- Resist Full Magic Attack
-(30469, 4408, 1), -- HP Increase (1x)
-(30469, 4409, 1), -- MP Increase (1x)
-(30469, 4410, 11), -- Average P. Atk.
-(30469, 4411, 11), -- Average M. Atk.
-(30469, 4412, 11), -- Average P. Def.
-(30469, 4413, 11), -- Average M. Def.
-(30469, 4414, 2), -- Standard Type
-(30469, 4415, 3), -- One-handed Sword
-(30469, 4416, 14), -- Humans
+(30469, 4408, 1), -- HP Modifiers
+(30469, 4409, 1), -- MP Modifiers
+(30469, 4410, 11), -- P. Atk. Modifiers
+(30469, 4411, 11), -- M. Atk. Modifiers
+(30469, 4412, 11), -- P. Def. Modifiers
+(30469, 4413, 11), -- M. Def. Modifiers
+(30469, 4414, 2), -- Armor Type
+(30469, 4415, 3), -- Weapon Type
+(30469, 4416, 14), -- Races
 -- Rupio
 (30471, 4045, 1), -- Resist Full Magic Attack
-(30471, 4408, 1), -- HP Increase (1x)
-(30471, 4409, 1), -- MP Increase (1x)
-(30471, 4410, 11), -- Average P. Atk.
-(30471, 4411, 11), -- Average M. Atk.
-(30471, 4412, 11), -- Average P. Def.
-(30471, 4413, 11), -- Average M. Def.
-(30471, 4414, 2), -- Standard Type
-(30471, 4415, 3), -- One-handed Sword
-(30471, 4416, 18), -- Dwarves
+(30471, 4408, 1), -- HP Modifiers
+(30471, 4409, 1), -- MP Modifiers
+(30471, 4410, 11), -- P. Atk. Modifiers
+(30471, 4411, 11), -- M. Atk. Modifiers
+(30471, 4412, 11), -- P. Def. Modifiers
+(30471, 4413, 11), -- M. Def. Modifiers
+(30471, 4414, 2), -- Armor Type
+(30471, 4415, 3), -- Weapon Type
+(30471, 4416, 18), -- Races
 -- Rosheria
 (30472, 4045, 1), -- Resist Full Magic Attack
-(30472, 4408, 1), -- HP Increase (1x)
-(30472, 4409, 1), -- MP Increase (1x)
-(30472, 4410, 11), -- Average P. Atk.
-(30472, 4411, 11), -- Average M. Atk.
-(30472, 4412, 11), -- Average P. Def.
-(30472, 4413, 11), -- Average M. Def.
-(30472, 4414, 2), -- Standard Type
-(30472, 4415, 3), -- One-handed Sword
-(30472, 4416, 15), -- Elves
+(30472, 4408, 1), -- HP Modifiers
+(30472, 4409, 1), -- MP Modifiers
+(30472, 4410, 11), -- P. Atk. Modifiers
+(30472, 4411, 11), -- M. Atk. Modifiers
+(30472, 4412, 11), -- P. Def. Modifiers
+(30472, 4413, 11), -- M. Def. Modifiers
+(30472, 4414, 2), -- Armor Type
+(30472, 4415, 3), -- Weapon Type
+(30472, 4416, 15), -- Races
 -- Bandellos
 (30473, 4045, 1), -- Resist Full Magic Attack
-(30473, 4408, 1), -- HP Increase (1x)
-(30473, 4409, 1), -- MP Increase (1x)
-(30473, 4410, 11), -- Average P. Atk.
-(30473, 4411, 11), -- Average M. Atk.
-(30473, 4412, 11), -- Average P. Def.
-(30473, 4413, 11), -- Average M. Def.
-(30473, 4414, 2), -- Standard Type
-(30473, 4415, 3), -- One-handed Sword
-(30473, 4416, 15), -- Elves
+(30473, 4408, 1), -- HP Modifiers
+(30473, 4409, 1), -- MP Modifiers
+(30473, 4410, 11), -- P. Atk. Modifiers
+(30473, 4411, 11), -- M. Atk. Modifiers
+(30473, 4412, 11), -- P. Def. Modifiers
+(30473, 4413, 11), -- M. Def. Modifiers
+(30473, 4414, 2), -- Armor Type
+(30473, 4415, 3), -- Weapon Type
+(30473, 4416, 15), -- Races
 -- Angus
 (30474, 4045, 1), -- Resist Full Magic Attack
-(30474, 4408, 1), -- HP Increase (1x)
-(30474, 4409, 1), -- MP Increase (1x)
-(30474, 4410, 11), -- Average P. Atk.
-(30474, 4411, 11), -- Average M. Atk.
-(30474, 4412, 11), -- Average P. Def.
-(30474, 4413, 11), -- Average M. Def.
-(30474, 4414, 2), -- Standard Type
-(30474, 4415, 3), -- One-handed Sword
-(30474, 4416, 16), -- Dark Elves
+(30474, 4408, 1), -- HP Modifiers
+(30474, 4409, 1), -- MP Modifiers
+(30474, 4410, 11), -- P. Atk. Modifiers
+(30474, 4411, 11), -- M. Atk. Modifiers
+(30474, 4412, 11), -- P. Def. Modifiers
+(30474, 4413, 11), -- M. Def. Modifiers
+(30474, 4414, 2), -- Armor Type
+(30474, 4415, 3), -- Weapon Type
+(30474, 4416, 16), -- Races
 -- Stapin
 (30475, 4045, 1), -- Resist Full Magic Attack
-(30475, 4408, 1), -- HP Increase (1x)
-(30475, 4409, 1), -- MP Increase (1x)
-(30475, 4410, 11), -- Average P. Atk.
-(30475, 4411, 11), -- Average M. Atk.
-(30475, 4412, 11), -- Average P. Def.
-(30475, 4413, 11), -- Average M. Def.
-(30475, 4414, 2), -- Standard Type
-(30475, 4415, 3), -- One-handed Sword
-(30475, 4416, 16), -- Dark Elves
+(30475, 4408, 1), -- HP Modifiers
+(30475, 4409, 1), -- MP Modifiers
+(30475, 4410, 11), -- P. Atk. Modifiers
+(30475, 4411, 11), -- M. Atk. Modifiers
+(30475, 4412, 11), -- P. Def. Modifiers
+(30475, 4413, 11), -- M. Def. Modifiers
+(30475, 4414, 2), -- Armor Type
+(30475, 4415, 3), -- Weapon Type
+(30475, 4416, 16), -- Races
 -- Kaira
 (30476, 4045, 1), -- Resist Full Magic Attack
-(30476, 4408, 1), -- HP Increase (1x)
-(30476, 4409, 1), -- MP Increase (1x)
-(30476, 4410, 11), -- Average P. Atk.
-(30476, 4411, 11), -- Average M. Atk.
-(30476, 4412, 11), -- Average P. Def.
-(30476, 4413, 11), -- Average M. Def.
-(30476, 4414, 2), -- Standard Type
-(30476, 4415, 3), -- One-handed Sword
-(30476, 4416, 16), -- Dark Elves
+(30476, 4408, 1), -- HP Modifiers
+(30476, 4409, 1), -- MP Modifiers
+(30476, 4410, 11), -- P. Atk. Modifiers
+(30476, 4411, 11), -- M. Atk. Modifiers
+(30476, 4412, 11), -- P. Def. Modifiers
+(30476, 4413, 11), -- M. Def. Modifiers
+(30476, 4414, 2), -- Armor Type
+(30476, 4415, 3), -- Weapon Type
+(30476, 4416, 16), -- Races
 -- Sir Ortho Lancer
 (30477, 4045, 1), -- Resist Full Magic Attack
-(30477, 4408, 1), -- HP Increase (1x)
-(30477, 4409, 1), -- MP Increase (1x)
-(30477, 4410, 11), -- Average P. Atk.
-(30477, 4411, 11), -- Average M. Atk.
-(30477, 4412, 11), -- Average P. Def.
-(30477, 4413, 11), -- Average M. Def.
-(30477, 4414, 2), -- Standard Type
-(30477, 4415, 3), -- One-handed Sword
-(30477, 4416, 14), -- Humans
+(30477, 4408, 1), -- HP Modifiers
+(30477, 4409, 1), -- MP Modifiers
+(30477, 4410, 11), -- P. Atk. Modifiers
+(30477, 4411, 11), -- M. Atk. Modifiers
+(30477, 4412, 11), -- P. Def. Modifiers
+(30477, 4413, 11), -- M. Def. Modifiers
+(30477, 4414, 2), -- Armor Type
+(30477, 4415, 3), -- Weapon Type
+(30477, 4416, 14), -- Races
 -- Reikin
 (30478, 4045, 1), -- Resist Full Magic Attack
-(30478, 4408, 1), -- HP Increase (1x)
-(30478, 4409, 1), -- MP Increase (1x)
-(30478, 4410, 16), -- Very Strong P. Atk.
-(30478, 4411, 16), -- Very Strong M. Atk.
-(30478, 4412, 16), -- Very Strong P. Def.
-(30478, 4413, 16), -- Very Strong M. Def.
-(30478, 4414, 2), -- Standard Type
-(30478, 4415, 9), -- Bows
-(30478, 4416, 14), -- Humans
+(30478, 4408, 1), -- HP Modifiers
+(30478, 4409, 1), -- MP Modifiers
+(30478, 4410, 16), -- P. Atk. Modifiers
+(30478, 4411, 16), -- M. Atk. Modifiers
+(30478, 4412, 16), -- P. Def. Modifiers
+(30478, 4413, 16), -- M. Def. Modifiers
+(30478, 4414, 2), -- Armor Type
+(30478, 4415, 9), -- Weapon Type
+(30478, 4416, 14), -- Races
 -- Carsus
 (30483, 4045, 1), -- Resist Full Magic Attack
-(30483, 4408, 1), -- HP Increase (1x)
-(30483, 4409, 1), -- MP Increase (1x)
-(30483, 4410, 11), -- Average P. Atk.
-(30483, 4411, 11), -- Average M. Atk.
-(30483, 4412, 11), -- Average P. Def.
-(30483, 4413, 11), -- Average M. Def.
-(30483, 4414, 2), -- Standard Type
-(30483, 4415, 3), -- One-handed Sword
-(30483, 4416, 14), -- Humans
+(30483, 4408, 1), -- HP Modifiers
+(30483, 4409, 1), -- MP Modifiers
+(30483, 4410, 11), -- P. Atk. Modifiers
+(30483, 4411, 11), -- M. Atk. Modifiers
+(30483, 4412, 11), -- P. Def. Modifiers
+(30483, 4413, 11), -- M. Def. Modifiers
+(30483, 4414, 2), -- Armor Type
+(30483, 4415, 3), -- Weapon Type
+(30483, 4416, 14), -- Races
 -- Janssen
 (30484, 4045, 1), -- Resist Full Magic Attack
-(30484, 4408, 1), -- HP Increase (1x)
-(30484, 4409, 1), -- MP Increase (1x)
-(30484, 4410, 11), -- Average P. Atk.
-(30484, 4411, 11), -- Average M. Atk.
-(30484, 4412, 11), -- Average P. Def.
-(30484, 4413, 11), -- Average M. Def.
-(30484, 4414, 2), -- Standard Type
-(30484, 4415, 3), -- One-handed Sword
-(30484, 4416, 14), -- Humans
+(30484, 4408, 1), -- HP Modifiers
+(30484, 4409, 1), -- MP Modifiers
+(30484, 4410, 11), -- P. Atk. Modifiers
+(30484, 4411, 11), -- M. Atk. Modifiers
+(30484, 4412, 11), -- P. Def. Modifiers
+(30484, 4413, 11), -- M. Def. Modifiers
+(30484, 4414, 2), -- Armor Type
+(30484, 4415, 3), -- Weapon Type
+(30484, 4416, 14), -- Races
 -- Belkadhi
 (30485, 4045, 1), -- Resist Full Magic Attack
-(30485, 4408, 1), -- HP Increase (1x)
-(30485, 4409, 1), -- MP Increase (1x)
-(30485, 4410, 11), -- Average P. Atk.
-(30485, 4411, 11), -- Average M. Atk.
-(30485, 4412, 11), -- Average P. Def.
-(30485, 4413, 11), -- Average M. Def.
-(30485, 4414, 2), -- Standard Type
-(30485, 4415, 3), -- One-handed Sword
-(30485, 4416, 14), -- Humans
+(30485, 4408, 1), -- HP Modifiers
+(30485, 4409, 1), -- MP Modifiers
+(30485, 4410, 11), -- P. Atk. Modifiers
+(30485, 4411, 11), -- M. Atk. Modifiers
+(30485, 4412, 11), -- P. Def. Modifiers
+(30485, 4413, 11), -- M. Def. Modifiers
+(30485, 4414, 2), -- Armor Type
+(30485, 4415, 3), -- Weapon Type
+(30485, 4416, 14), -- Races
 -- Ian
 (30486, 4045, 1), -- Resist Full Magic Attack
-(30486, 4408, 1), -- HP Increase (1x)
-(30486, 4409, 1), -- MP Increase (1x)
-(30486, 4410, 11), -- Average P. Atk.
-(30486, 4411, 11), -- Average M. Atk.
-(30486, 4412, 11), -- Average P. Def.
-(30486, 4413, 11), -- Average M. Def.
-(30486, 4414, 2), -- Standard Type
-(30486, 4415, 3), -- One-handed Sword
-(30486, 4416, 14), -- Humans
+(30486, 4408, 1), -- HP Modifiers
+(30486, 4409, 1), -- MP Modifiers
+(30486, 4410, 11), -- P. Atk. Modifiers
+(30486, 4411, 11), -- M. Atk. Modifiers
+(30486, 4412, 11), -- P. Def. Modifiers
+(30486, 4413, 11), -- M. Def. Modifiers
+(30486, 4414, 2), -- Armor Type
+(30486, 4415, 3), -- Weapon Type
+(30486, 4416, 14), -- Races
 -- Rombel
 (30487, 4045, 1), -- Resist Full Magic Attack
-(30487, 4408, 1), -- HP Increase (1x)
-(30487, 4409, 1), -- MP Increase (1x)
-(30487, 4410, 11), -- Average P. Atk.
-(30487, 4411, 11), -- Average M. Atk.
-(30487, 4412, 11), -- Average P. Def.
-(30487, 4413, 11), -- Average M. Def.
-(30487, 4414, 2), -- Standard Type
-(30487, 4415, 3), -- One-handed Sword
-(30487, 4416, 14), -- Humans
+(30487, 4408, 1), -- HP Modifiers
+(30487, 4409, 1), -- MP Modifiers
+(30487, 4410, 11), -- P. Atk. Modifiers
+(30487, 4411, 11), -- M. Atk. Modifiers
+(30487, 4412, 11), -- P. Def. Modifiers
+(30487, 4413, 11), -- M. Def. Modifiers
+(30487, 4414, 2), -- Armor Type
+(30487, 4415, 3), -- Weapon Type
+(30487, 4416, 14), -- Races
 -- Edmond
 (30497, 4045, 1), -- Resist Full Magic Attack
-(30497, 4408, 1), -- HP Increase (1x)
-(30497, 4409, 1), -- MP Increase (1x)
-(30497, 4410, 11), -- Average P. Atk.
-(30497, 4411, 11), -- Average M. Atk.
-(30497, 4412, 11), -- Average P. Def.
-(30497, 4413, 11), -- Average M. Def.
-(30497, 4414, 2), -- Standard Type
-(30497, 4415, 3), -- One-handed Sword
-(30497, 4416, 14), -- Humans
+(30497, 4408, 1), -- HP Modifiers
+(30497, 4409, 1), -- MP Modifiers
+(30497, 4410, 11), -- P. Atk. Modifiers
+(30497, 4411, 11), -- M. Atk. Modifiers
+(30497, 4412, 11), -- P. Def. Modifiers
+(30497, 4413, 11), -- M. Def. Modifiers
+(30497, 4414, 2), -- Armor Type
+(30497, 4415, 3), -- Weapon Type
+(30497, 4416, 14), -- Races
 -- Moke
 (30498, 4045, 1), -- Resist Full Magic Attack
-(30498, 4408, 1), -- HP Increase (1x)
-(30498, 4409, 1), -- MP Increase (1x)
-(30498, 4410, 11), -- Average P. Atk.
-(30498, 4411, 11), -- Average M. Atk.
-(30498, 4412, 11), -- Average P. Def.
-(30498, 4413, 11), -- Average M. Def.
-(30498, 4414, 2), -- Standard Type
-(30498, 4415, 3), -- One-handed Sword
-(30498, 4416, 18), -- Dwarves
+(30498, 4408, 1), -- HP Modifiers
+(30498, 4409, 1), -- MP Modifiers
+(30498, 4410, 11), -- P. Atk. Modifiers
+(30498, 4411, 11), -- M. Atk. Modifiers
+(30498, 4412, 11), -- P. Def. Modifiers
+(30498, 4413, 11), -- M. Def. Modifiers
+(30498, 4414, 2), -- Armor Type
+(30498, 4415, 3), -- Weapon Type
+(30498, 4416, 18), -- Races
 -- Tapoy
 (30499, 4045, 1), -- Resist Full Magic Attack
-(30499, 4408, 1), -- HP Increase (1x)
-(30499, 4409, 1), -- MP Increase (1x)
-(30499, 4410, 11), -- Average P. Atk.
-(30499, 4411, 11), -- Average M. Atk.
-(30499, 4412, 11), -- Average P. Def.
-(30499, 4413, 11), -- Average M. Def.
-(30499, 4414, 2), -- Standard Type
-(30499, 4415, 3), -- One-handed Sword
-(30499, 4416, 18), -- Dwarves
+(30499, 4408, 1), -- HP Modifiers
+(30499, 4409, 1), -- MP Modifiers
+(30499, 4410, 11), -- P. Atk. Modifiers
+(30499, 4411, 11); -- M. Atk. Modifiers
+
+INSERT INTO `npcskills` VALUES
+(30499, 4412, 11), -- P. Def. Modifiers
+(30499, 4413, 11), -- M. Def. Modifiers
+(30499, 4414, 2), -- Armor Type
+(30499, 4415, 3), -- Weapon Type
+(30499, 4416, 18), -- Races
 -- Osborn
 (30500, 4045, 1), -- Resist Full Magic Attack
-(30500, 4408, 1), -- HP Increase (1x)
-(30500, 4409, 1), -- MP Increase (1x)
-(30500, 4410, 11), -- Average P. Atk.
-(30500, 4411, 11), -- Average M. Atk.
-(30500, 4412, 11), -- Average P. Def.
-(30500, 4413, 11), -- Average M. Def.
-(30500, 4414, 2), -- Standard Type
-(30500, 4415, 3), -- One-handed Sword
-(30500, 4416, 17), -- Orcs
+(30500, 4408, 1), -- HP Modifiers
+(30500, 4409, 1), -- MP Modifiers
+(30500, 4410, 11), -- P. Atk. Modifiers
+(30500, 4411, 11), -- M. Atk. Modifiers
+(30500, 4412, 11), -- P. Def. Modifiers
+(30500, 4413, 11), -- M. Def. Modifiers
+(30500, 4414, 2), -- Armor Type
+(30500, 4415, 3), -- Weapon Type
+(30500, 4416, 17), -- Races
 -- Kasman
 (30501, 4045, 1), -- Resist Full Magic Attack
-(30501, 4408, 1), -- HP Increase (1x)
-(30501, 4409, 1), -- MP Increase (1x)
-(30501, 4410, 11), -- Average P. Atk.
-(30501, 4411, 11), -- Average M. Atk.
-(30501, 4412, 11), -- Average P. Def.
-(30501, 4413, 11), -- Average M. Def.
-(30501, 4414, 2), -- Standard Type
-(30501, 4415, 3), -- One-handed Sword
-(30501, 4416, 17), -- Orcs
+(30501, 4408, 1), -- HP Modifiers
+(30501, 4409, 1), -- MP Modifiers
+(30501, 4410, 11), -- P. Atk. Modifiers
+(30501, 4411, 11), -- M. Atk. Modifiers
+(30501, 4412, 11), -- P. Def. Modifiers
+(30501, 4413, 11), -- M. Def. Modifiers
+(30501, 4414, 2), -- Armor Type
+(30501, 4415, 3), -- Weapon Type
+(30501, 4416, 17), -- Races
 -- Umos
 (30502, 4045, 1), -- Resist Full Magic Attack
-(30502, 4408, 1), -- HP Increase (1x)
-(30502, 4409, 1), -- MP Increase (1x)
-(30502, 4410, 11), -- Average P. Atk.
-(30502, 4411, 11), -- Average M. Atk.
-(30502, 4412, 11), -- Average P. Def.
-(30502, 4413, 11), -- Average M. Def.
-(30502, 4414, 2), -- Standard Type
-(30502, 4415, 3), -- One-handed Sword
-(30502, 4416, 17), -- Orcs
+(30502, 4408, 1), -- HP Modifiers
+(30502, 4409, 1), -- MP Modifiers
+(30502, 4410, 11), -- P. Atk. Modifiers
+(30502, 4411, 11), -- M. Atk. Modifiers
+(30502, 4412, 11), -- P. Def. Modifiers
+(30502, 4413, 11), -- M. Def. Modifiers
+(30502, 4414, 2), -- Armor Type
+(30502, 4415, 3), -- Weapon Type
+(30502, 4416, 17), -- Races
 -- Rikadio
 (30503, 4045, 1), -- Resist Full Magic Attack
-(30503, 4408, 1), -- HP Increase (1x)
-(30503, 4409, 1), -- MP Increase (1x)
-(30503, 4410, 11), -- Average P. Atk.
-(30503, 4411, 11), -- Average M. Atk.
-(30503, 4412, 11), -- Average P. Def.
-(30503, 4413, 11), -- Average M. Def.
-(30503, 4414, 2), -- Standard Type
-(30503, 4415, 3), -- One-handed Sword
-(30503, 4416, 18), -- Dwarves
+(30503, 4408, 1), -- HP Modifiers
+(30503, 4409, 1), -- MP Modifiers
+(30503, 4410, 11), -- P. Atk. Modifiers
+(30503, 4411, 11), -- M. Atk. Modifiers
+(30503, 4412, 11), -- P. Def. Modifiers
+(30503, 4413, 11), -- M. Def. Modifiers
+(30503, 4414, 2), -- Armor Type
+(30503, 4415, 3), -- Weapon Type
+(30503, 4416, 18), -- Races
 -- Mendio
 (30504, 4045, 1), -- Resist Full Magic Attack
-(30504, 4408, 1), -- HP Increase (1x)
-(30504, 4409, 1), -- MP Increase (1x)
-(30504, 4410, 11), -- Average P. Atk.
-(30504, 4411, 11), -- Average M. Atk.
-(30504, 4412, 11), -- Average P. Def.
-(30504, 4413, 11), -- Average M. Def.
-(30504, 4414, 2), -- Standard Type
-(30504, 4415, 3), -- One-handed Sword
-(30504, 4416, 18), -- Dwarves
+(30504, 4408, 1), -- HP Modifiers
+(30504, 4409, 1), -- MP Modifiers
+(30504, 4410, 11), -- P. Atk. Modifiers
+(30504, 4411, 11), -- M. Atk. Modifiers
+(30504, 4412, 11), -- P. Def. Modifiers
+(30504, 4413, 11), -- M. Def. Modifiers
+(30504, 4414, 2), -- Armor Type
+(30504, 4415, 3), -- Weapon Type
+(30504, 4416, 18), -- Races
 -- Drikus
 (30505, 4045, 1), -- Resist Full Magic Attack
-(30505, 4408, 1), -- HP Increase (1x)
-(30505, 4409, 1), -- MP Increase (1x)
-(30505, 4410, 11), -- Average P. Atk.
-(30505, 4411, 11), -- Average M. Atk.
-(30505, 4412, 11), -- Average P. Def.
-(30505, 4413, 11), -- Average M. Def.
-(30505, 4414, 2), -- Standard Type
-(30505, 4415, 3), -- One-handed Sword
-(30505, 4416, 17), -- Orcs
+(30505, 4408, 1), -- HP Modifiers
+(30505, 4409, 1), -- MP Modifiers
+(30505, 4410, 11), -- P. Atk. Modifiers
+(30505, 4411, 11), -- M. Atk. Modifiers
+(30505, 4412, 11), -- P. Def. Modifiers
+(30505, 4413, 11), -- M. Def. Modifiers
+(30505, 4414, 2), -- Armor Type
+(30505, 4415, 3), -- Weapon Type
+(30505, 4416, 17), -- Races
 -- Buka
 (30506, 4045, 1), -- Resist Full Magic Attack
-(30506, 4408, 1), -- HP Increase (1x)
-(30506, 4409, 1), -- MP Increase (1x)
-(30506, 4410, 11), -- Average P. Atk.
-(30506, 4411, 11), -- Average M. Atk.
-(30506, 4412, 11), -- Average P. Def.
-(30506, 4413, 11), -- Average M. Def.
-(30506, 4414, 2), -- Standard Type
-(30506, 4415, 3), -- One-handed Sword
-(30506, 4416, 17), -- Orcs
+(30506, 4408, 1), -- HP Modifiers
+(30506, 4409, 1), -- MP Modifiers
+(30506, 4410, 11), -- P. Atk. Modifiers
+(30506, 4411, 11), -- M. Atk. Modifiers
+(30506, 4412, 11), -- P. Def. Modifiers
+(30506, 4413, 11), -- M. Def. Modifiers
+(30506, 4414, 2), -- Armor Type
+(30506, 4415, 3), -- Weapon Type
+(30506, 4416, 17), -- Races
 -- Racoy
 (30507, 4045, 1), -- Resist Full Magic Attack
-(30507, 4408, 1), -- HP Increase (1x)
-(30507, 4409, 1), -- MP Increase (1x)
-(30507, 4410, 11), -- Average P. Atk.
-(30507, 4411, 11), -- Average M. Atk.
-(30507, 4412, 11), -- Average P. Def.
-(30507, 4413, 11), -- Average M. Def.
-(30507, 4414, 2), -- Standard Type
-(30507, 4415, 3), -- One-handed Sword
-(30507, 4416, 17), -- Orcs
+(30507, 4408, 1), -- HP Modifiers
+(30507, 4409, 1), -- MP Modifiers
+(30507, 4410, 11), -- P. Atk. Modifiers
+(30507, 4411, 11), -- M. Atk. Modifiers
+(30507, 4412, 11), -- P. Def. Modifiers
+(30507, 4413, 11), -- M. Def. Modifiers
+(30507, 4414, 2), -- Armor Type
+(30507, 4415, 3), -- Weapon Type
+(30507, 4416, 17), -- Races
 -- Castor
 (30508, 4045, 1), -- Resist Full Magic Attack
-(30508, 4408, 1), -- HP Increase (1x)
-(30508, 4409, 1), -- MP Increase (1x)
-(30508, 4410, 11), -- Average P. Atk.
-(30508, 4411, 11), -- Average M. Atk.
-(30508, 4412, 11), -- Average P. Def.
-(30508, 4413, 11), -- Average M. Def.
-(30508, 4414, 2), -- Standard Type
-(30508, 4415, 3), -- One-handed Sword
-(30508, 4416, 17), -- Orcs
+(30508, 4408, 1), -- HP Modifiers
+(30508, 4409, 1), -- MP Modifiers
+(30508, 4410, 11), -- P. Atk. Modifiers
+(30508, 4411, 11), -- M. Atk. Modifiers
+(30508, 4412, 11), -- P. Def. Modifiers
+(30508, 4413, 11), -- M. Def. Modifiers
+(30508, 4414, 2), -- Armor Type
+(30508, 4415, 3), -- Weapon Type
+(30508, 4416, 17), -- Races
 -- Dowki
 (30509, 4045, 1), -- Resist Full Magic Attack
-(30509, 4408, 1), -- HP Increase (1x)
-(30509, 4409, 1), -- MP Increase (1x)
-(30509, 4410, 11), -- Average P. Atk.
-(30509, 4411, 11), -- Average M. Atk.
-(30509, 4412, 11), -- Average P. Def.
-(30509, 4413, 11), -- Average M. Def.
-(30509, 4414, 2), -- Standard Type
-(30509, 4415, 3), -- One-handed Sword
-(30509, 4416, 17), -- Orcs
+(30509, 4408, 1), -- HP Modifiers
+(30509, 4409, 1), -- MP Modifiers
+(30509, 4410, 11), -- P. Atk. Modifiers
+(30509, 4411, 11), -- M. Atk. Modifiers
+(30509, 4412, 11), -- P. Def. Modifiers
+(30509, 4413, 11), -- M. Def. Modifiers
+(30509, 4414, 2), -- Armor Type
+(30509, 4415, 3), -- Weapon Type
+(30509, 4416, 17), -- Races
 -- Somak
 (30510, 4045, 1), -- Resist Full Magic Attack
-(30510, 4408, 1), -- HP Increase (1x)
-(30510, 4409, 1), -- MP Increase (1x)
-(30510, 4410, 11), -- Average P. Atk.
-(30510, 4411, 11), -- Average M. Atk.
-(30510, 4412, 11), -- Average P. Def.
-(30510, 4413, 11), -- Average M. Def.
-(30510, 4414, 2), -- Standard Type
-(30510, 4415, 3), -- One-handed Sword
-(30510, 4416, 17), -- Orcs
+(30510, 4408, 1), -- HP Modifiers
+(30510, 4409, 1), -- MP Modifiers
+(30510, 4410, 11), -- P. Atk. Modifiers
+(30510, 4411, 11), -- M. Atk. Modifiers
+(30510, 4412, 11), -- P. Def. Modifiers
+(30510, 4413, 11), -- M. Def. Modifiers
+(30510, 4414, 2), -- Armor Type
+(30510, 4415, 3), -- Weapon Type
+(30510, 4416, 17), -- Races
 -- Gesto
 (30511, 4045, 1), -- Resist Full Magic Attack
-(30511, 4408, 1), -- HP Increase (1x)
-(30511, 4409, 1), -- MP Increase (1x)
-(30511, 4410, 11), -- Average P. Atk.
-(30511, 4411, 11), -- Average M. Atk.
-(30511, 4412, 11), -- Average P. Def.
-(30511, 4413, 11), -- Average M. Def.
-(30511, 4414, 2), -- Standard Type
-(30511, 4415, 3), -- One-handed Sword
-(30511, 4416, 18), -- Dwarves
+(30511, 4408, 1), -- HP Modifiers
+(30511, 4409, 1), -- MP Modifiers
+(30511, 4410, 11), -- P. Atk. Modifiers
+(30511, 4411, 11), -- M. Atk. Modifiers
+(30511, 4412, 11), -- P. Def. Modifiers
+(30511, 4413, 11), -- M. Def. Modifiers
+(30511, 4414, 2), -- Armor Type
+(30511, 4415, 3), -- Weapon Type
+(30511, 4416, 18), -- Races
 -- Kusto
 (30512, 4045, 1), -- Resist Full Magic Attack
-(30512, 4408, 1), -- HP Increase (1x)
-(30512, 4409, 1), -- MP Increase (1x)
-(30512, 4410, 11), -- Average P. Atk.
-(30512, 4411, 11), -- Average M. Atk.
-(30512, 4412, 11), -- Average P. Def.
-(30512, 4413, 11), -- Average M. Def.
-(30512, 4414, 2), -- Standard Type
-(30512, 4415, 3), -- One-handed Sword
-(30512, 4416, 18), -- Dwarves
+(30512, 4408, 1), -- HP Modifiers
+(30512, 4409, 1), -- MP Modifiers
+(30512, 4410, 11), -- P. Atk. Modifiers
+(30512, 4411, 11), -- M. Atk. Modifiers
+(30512, 4412, 11), -- P. Def. Modifiers
+(30512, 4413, 11), -- M. Def. Modifiers
+(30512, 4414, 2), -- Armor Type
+(30512, 4415, 3), -- Weapon Type
+(30512, 4416, 18), -- Races
 -- Penatus
 (30513, 4045, 1), -- Resist Full Magic Attack
-(30513, 4408, 1), -- HP Increase (1x)
-(30513, 4409, 1), -- MP Increase (1x)
-(30513, 4410, 11), -- Average P. Atk.
-(30513, 4411, 11), -- Average M. Atk.
-(30513, 4412, 11), -- Average P. Def.
-(30513, 4413, 11), -- Average M. Def.
-(30513, 4414, 2), -- Standard Type
-(30513, 4415, 3), -- One-handed Sword
-(30513, 4416, 17), -- Orcs
+(30513, 4408, 1), -- HP Modifiers
+(30513, 4409, 1), -- MP Modifiers
+(30513, 4410, 11), -- P. Atk. Modifiers
+(30513, 4411, 11), -- M. Atk. Modifiers
+(30513, 4412, 11), -- P. Def. Modifiers
+(30513, 4413, 11), -- M. Def. Modifiers
+(30513, 4414, 2), -- Armor Type
+(30513, 4415, 3), -- Weapon Type
+(30513, 4416, 17), -- Races
 -- Vokian
 (30514, 4045, 1), -- Resist Full Magic Attack
-(30514, 4408, 1), -- HP Increase (1x)
-(30514, 4409, 1), -- MP Increase (1x)
-(30514, 4410, 11), -- Average P. Atk.
-(30514, 4411, 11), -- Average M. Atk.
-(30514, 4412, 11), -- Average P. Def.
-(30514, 4413, 11), -- Average M. Def.
-(30514, 4414, 2), -- Standard Type
-(30514, 4415, 3), -- One-handed Sword
-(30514, 4416, 17), -- Orcs
+(30514, 4408, 1), -- HP Modifiers
+(30514, 4409, 1), -- MP Modifiers
+(30514, 4410, 11), -- P. Atk. Modifiers
+(30514, 4411, 11), -- M. Atk. Modifiers
+(30514, 4412, 11), -- P. Def. Modifiers
+(30514, 4413, 11), -- M. Def. Modifiers
+(30514, 4414, 2), -- Armor Type
+(30514, 4415, 3), -- Weapon Type
+(30514, 4416, 17), -- Races
 -- Manakia
 (30515, 4045, 1), -- Resist Full Magic Attack
-(30515, 4408, 1), -- HP Increase (1x)
-(30515, 4409, 1), -- MP Increase (1x)
-(30515, 4410, 11), -- Average P. Atk.
-(30515, 4411, 11), -- Average M. Atk.
-(30515, 4412, 11), -- Average P. Def.
-(30515, 4413, 11), -- Average M. Def.
-(30515, 4414, 2), -- Standard Type
-(30515, 4415, 3), -- One-handed Sword
-(30515, 4416, 17), -- Orcs
+(30515, 4408, 1), -- HP Modifiers
+(30515, 4409, 1), -- MP Modifiers
+(30515, 4410, 11), -- P. Atk. Modifiers
+(30515, 4411, 11), -- M. Atk. Modifiers
+(30515, 4412, 11), -- P. Def. Modifiers
+(30515, 4413, 11), -- M. Def. Modifiers
+(30515, 4414, 2), -- Armor Type
+(30515, 4415, 3), -- Weapon Type
+(30515, 4416, 17), -- Races
 -- Reep
 (30516, 4045, 1), -- Resist Full Magic Attack
-(30516, 4408, 1), -- HP Increase (1x)
-(30516, 4409, 1), -- MP Increase (1x)
-(30516, 4410, 11), -- Average P. Atk.
-(30516, 4411, 11), -- Average M. Atk.
-(30516, 4412, 11), -- Average P. Def.
-(30516, 4413, 11), -- Average M. Def.
-(30516, 4414, 2), -- Standard Type
-(30516, 4415, 3), -- One-handed Sword
-(30516, 4416, 18), -- Dwarves
+(30516, 4408, 1), -- HP Modifiers
+(30516, 4409, 1), -- MP Modifiers
+(30516, 4410, 11), -- P. Atk. Modifiers
+(30516, 4411, 11), -- M. Atk. Modifiers
+(30516, 4412, 11), -- P. Def. Modifiers
+(30516, 4413, 11), -- M. Def. Modifiers
+(30516, 4414, 2), -- Armor Type
+(30516, 4415, 3), -- Weapon Type
+(30516, 4416, 18), -- Races
 -- Shari
 (30517, 4045, 1), -- Resist Full Magic Attack
-(30517, 4408, 1), -- HP Increase (1x)
-(30517, 4409, 1), -- MP Increase (1x)
-(30517, 4410, 11), -- Average P. Atk.
-(30517, 4411, 11), -- Average M. Atk.
-(30517, 4412, 11), -- Average P. Def.
-(30517, 4413, 11), -- Average M. Def.
-(30517, 4414, 2), -- Standard Type
-(30517, 4415, 3), -- One-handed Sword
-(30517, 4416, 18), -- Dwarves
+(30517, 4408, 1), -- HP Modifiers
+(30517, 4409, 1), -- MP Modifiers
+(30517, 4410, 11), -- P. Atk. Modifiers
+(30517, 4411, 11), -- M. Atk. Modifiers
+(30517, 4412, 11), -- P. Def. Modifiers
+(30517, 4413, 11), -- M. Def. Modifiers
+(30517, 4414, 2), -- Armor Type
+(30517, 4415, 3), -- Weapon Type
+(30517, 4416, 18), -- Races
 -- Garita
 (30518, 4045, 1), -- Resist Full Magic Attack
-(30518, 4408, 1), -- HP Increase (1x)
-(30518, 4409, 1), -- MP Increase (1x)
-(30518, 4410, 11), -- Average P. Atk.
-(30518, 4411, 11), -- Average M. Atk.
-(30518, 4412, 11), -- Average P. Def.
-(30518, 4413, 11), -- Average M. Def.
-(30518, 4414, 2), -- Standard Type
-(30518, 4415, 3), -- One-handed Sword
-(30518, 4416, 18), -- Dwarves
+(30518, 4408, 1), -- HP Modifiers
+(30518, 4409, 1), -- MP Modifiers
+(30518, 4410, 11), -- P. Atk. Modifiers
+(30518, 4411, 11), -- M. Atk. Modifiers
+(30518, 4412, 11), -- P. Def. Modifiers
+(30518, 4413, 11), -- M. Def. Modifiers
+(30518, 4414, 2), -- Armor Type
+(30518, 4415, 3), -- Weapon Type
+(30518, 4416, 18), -- Races
 -- Mion
 (30519, 4045, 1), -- Resist Full Magic Attack
-(30519, 4408, 1), -- HP Increase (1x)
-(30519, 4409, 1), -- MP Increase (1x)
-(30519, 4410, 11), -- Average P. Atk.
-(30519, 4411, 11), -- Average M. Atk.
-(30519, 4412, 11), -- Average P. Def.
-(30519, 4413, 11), -- Average M. Def.
-(30519, 4414, 2), -- Standard Type
-(30519, 4415, 3), -- One-handed Sword
-(30519, 4416, 18), -- Dwarves
+(30519, 4408, 1), -- HP Modifiers
+(30519, 4409, 1), -- MP Modifiers
+(30519, 4410, 11), -- P. Atk. Modifiers
+(30519, 4411, 11), -- M. Atk. Modifiers
+(30519, 4412, 11), -- P. Def. Modifiers
+(30519, 4413, 11), -- M. Def. Modifiers
+(30519, 4414, 2), -- Armor Type
+(30519, 4415, 3), -- Weapon Type
+(30519, 4416, 18), -- Races
 -- Reed
 (30520, 4045, 1), -- Resist Full Magic Attack
-(30520, 4408, 1), -- HP Increase (1x)
-(30520, 4409, 1), -- MP Increase (1x)
-(30520, 4410, 11), -- Average P. Atk.
-(30520, 4411, 11), -- Average M. Atk.
-(30520, 4412, 11), -- Average P. Def.
-(30520, 4413, 11), -- Average M. Def.
-(30520, 4414, 2), -- Standard Type
-(30520, 4415, 3), -- One-handed Sword
-(30520, 4416, 18), -- Dwarves
+(30520, 4408, 1), -- HP Modifiers
+(30520, 4409, 1), -- MP Modifiers
+(30520, 4410, 11), -- P. Atk. Modifiers
+(30520, 4411, 11), -- M. Atk. Modifiers
+(30520, 4412, 11), -- P. Def. Modifiers
+(30520, 4413, 11), -- M. Def. Modifiers
+(30520, 4414, 2), -- Armor Type
+(30520, 4415, 3), -- Weapon Type
+(30520, 4416, 18), -- Races
 -- Murdoc
 (30521, 4045, 1), -- Resist Full Magic Attack
-(30521, 4408, 1), -- HP Increase (1x)
-(30521, 4409, 1), -- MP Increase (1x)
-(30521, 4410, 11), -- Average P. Atk.
-(30521, 4411, 11), -- Average M. Atk.
-(30521, 4412, 11), -- Average P. Def.
-(30521, 4413, 11), -- Average M. Def.
-(30521, 4414, 2), -- Standard Type
-(30521, 4415, 3), -- One-handed Sword
-(30521, 4416, 18), -- Dwarves
+(30521, 4408, 1), -- HP Modifiers
+(30521, 4409, 1), -- MP Modifiers
+(30521, 4410, 11), -- P. Atk. Modifiers
+(30521, 4411, 11), -- M. Atk. Modifiers
+(30521, 4412, 11), -- P. Def. Modifiers
+(30521, 4413, 11), -- M. Def. Modifiers
+(30521, 4414, 2), -- Armor Type
+(30521, 4415, 3), -- Weapon Type
+(30521, 4416, 18), -- Races
 -- Airy
 (30522, 4045, 1), -- Resist Full Magic Attack
-(30522, 4408, 1), -- HP Increase (1x)
-(30522, 4409, 1), -- MP Increase (1x)
-(30522, 4410, 11), -- Average P. Atk.
-(30522, 4411, 11), -- Average M. Atk.
-(30522, 4412, 11), -- Average P. Def.
-(30522, 4413, 11), -- Average M. Def.
-(30522, 4414, 2), -- Standard Type
-(30522, 4415, 3), -- One-handed Sword
-(30522, 4416, 18), -- Dwarves
+(30522, 4408, 1), -- HP Modifiers
+(30522, 4409, 1), -- MP Modifiers
+(30522, 4410, 11), -- P. Atk. Modifiers
+(30522, 4411, 11), -- M. Atk. Modifiers
+(30522, 4412, 11), -- P. Def. Modifiers
+(30522, 4413, 11), -- M. Def. Modifiers
+(30522, 4414, 2), -- Armor Type
+(30522, 4415, 3), -- Weapon Type
+(30522, 4416, 18), -- Races
 -- Gouph
 (30523, 4045, 1), -- Resist Full Magic Attack
-(30523, 4408, 1), -- HP Increase (1x)
-(30523, 4409, 1), -- MP Increase (1x)
-(30523, 4410, 11), -- Average P. Atk.
-(30523, 4411, 11), -- Average M. Atk.
-(30523, 4412, 11), -- Average P. Def.
-(30523, 4413, 11), -- Average M. Def.
-(30523, 4414, 2), -- Standard Type
-(30523, 4415, 3), -- One-handed Sword
-(30523, 4416, 18), -- Dwarves
+(30523, 4408, 1), -- HP Modifiers
+(30523, 4409, 1), -- MP Modifiers
+(30523, 4410, 11), -- P. Atk. Modifiers
+(30523, 4411, 11), -- M. Atk. Modifiers
+(30523, 4412, 11), -- P. Def. Modifiers
+(30523, 4413, 11), -- M. Def. Modifiers
+(30523, 4414, 2), -- Armor Type
+(30523, 4415, 3), -- Weapon Type
+(30523, 4416, 18), -- Races
 -- Pippi
 (30524, 4045, 1), -- Resist Full Magic Attack
-(30524, 4408, 1), -- HP Increase (1x)
-(30524, 4409, 1), -- MP Increase (1x)
-(30524, 4410, 11), -- Average P. Atk.
-(30524, 4411, 11), -- Average M. Atk.
-(30524, 4412, 11), -- Average P. Def.
-(30524, 4413, 11), -- Average M. Def.
-(30524, 4414, 2), -- Standard Type
-(30524, 4415, 3), -- One-handed Sword
-(30524, 4416, 18), -- Dwarves
+(30524, 4408, 1), -- HP Modifiers
+(30524, 4409, 1), -- MP Modifiers
+(30524, 4410, 11), -- P. Atk. Modifiers
+(30524, 4411, 11), -- M. Atk. Modifiers
+(30524, 4412, 11), -- P. Def. Modifiers
+(30524, 4413, 11), -- M. Def. Modifiers
+(30524, 4414, 2), -- Armor Type
+(30524, 4415, 3), -- Weapon Type
+(30524, 4416, 18), -- Races
 -- Bronk
 (30525, 4045, 1), -- Resist Full Magic Attack
-(30525, 4408, 1), -- HP Increase (1x)
-(30525, 4409, 1), -- MP Increase (1x)
-(30525, 4410, 11), -- Average P. Atk.
-(30525, 4411, 11), -- Average M. Atk.
-(30525, 4412, 11), -- Average P. Def.
-(30525, 4413, 11), -- Average M. Def.
-(30525, 4414, 2), -- Standard Type
-(30525, 4415, 3), -- One-handed Sword
-(30525, 4416, 18), -- Dwarves
+(30525, 4408, 1), -- HP Modifiers
+(30525, 4409, 1), -- MP Modifiers
+(30525, 4410, 11), -- P. Atk. Modifiers
+(30525, 4411, 11), -- M. Atk. Modifiers
+(30525, 4412, 11), -- P. Def. Modifiers
+(30525, 4413, 11), -- M. Def. Modifiers
+(30525, 4414, 2), -- Armor Type
+(30525, 4415, 3), -- Weapon Type
+(30525, 4416, 18), -- Races
 -- Brunon
 (30526, 4045, 1), -- Resist Full Magic Attack
-(30526, 4408, 1), -- HP Increase (1x)
-(30526, 4409, 1), -- MP Increase (1x)
-(30526, 4410, 11), -- Average P. Atk.
-(30526, 4411, 11), -- Average M. Atk.
-(30526, 4412, 11), -- Average P. Def.
-(30526, 4413, 11), -- Average M. Def.
-(30526, 4414, 2), -- Standard Type
-(30526, 4415, 3), -- One-handed Sword
-(30526, 4416, 18), -- Dwarves
+(30526, 4408, 1), -- HP Modifiers
+(30526, 4409, 1), -- MP Modifiers
+(30526, 4410, 11), -- P. Atk. Modifiers
+(30526, 4411, 11), -- M. Atk. Modifiers
+(30526, 4412, 11), -- P. Def. Modifiers
+(30526, 4413, 11), -- M. Def. Modifiers
+(30526, 4414, 2), -- Armor Type
+(30526, 4415, 3), -- Weapon Type
+(30526, 4416, 18), -- Races
 -- Silvera
 (30527, 4045, 1), -- Resist Full Magic Attack
-(30527, 4408, 1), -- HP Increase (1x)
-(30527, 4409, 1), -- MP Increase (1x)
-(30527, 4410, 11), -- Average P. Atk.
-(30527, 4411, 11), -- Average M. Atk.
-(30527, 4412, 11), -- Average P. Def.
-(30527, 4413, 11), -- Average M. Def.
-(30527, 4414, 2), -- Standard Type
-(30527, 4415, 3), -- One-handed Sword
-(30527, 4416, 18), -- Dwarves
+(30527, 4408, 1), -- HP Modifiers
+(30527, 4409, 1), -- MP Modifiers
+(30527, 4410, 11), -- P. Atk. Modifiers
+(30527, 4411, 11), -- M. Atk. Modifiers
+(30527, 4412, 11), -- P. Def. Modifiers
+(30527, 4413, 11), -- M. Def. Modifiers
+(30527, 4414, 2), -- Armor Type
+(30527, 4415, 3), -- Weapon Type
+(30527, 4416, 18), -- Races
 -- Laferon
 (30528, 4045, 1), -- Resist Full Magic Attack
-(30528, 4408, 1), -- HP Increase (1x)
-(30528, 4409, 1), -- MP Increase (1x)
-(30528, 4410, 11), -- Average P. Atk.
-(30528, 4411, 11), -- Average M. Atk.
-(30528, 4412, 11), -- Average P. Def.
-(30528, 4413, 11), -- Average M. Def.
-(30528, 4414, 2), -- Standard Type
-(30528, 4415, 3), -- One-handed Sword
-(30528, 4416, 18), -- Dwarves
+(30528, 4408, 1), -- HP Modifiers
+(30528, 4409, 1), -- MP Modifiers
+(30528, 4410, 11), -- P. Atk. Modifiers
+(30528, 4411, 11), -- M. Atk. Modifiers
+(30528, 4412, 11), -- P. Def. Modifiers
+(30528, 4413, 11), -- M. Def. Modifiers
+(30528, 4414, 2), -- Armor Type
+(30528, 4415, 3), -- Weapon Type
+(30528, 4416, 18), -- Races
 -- Maron
 (30529, 4045, 1), -- Resist Full Magic Attack
-(30529, 4408, 1), -- HP Increase (1x)
-(30529, 4409, 1), -- MP Increase (1x)
-(30529, 4410, 11), -- Average P. Atk.
-(30529, 4411, 11), -- Average M. Atk.
-(30529, 4412, 11), -- Average P. Def.
-(30529, 4413, 11), -- Average M. Def.
-(30529, 4414, 2), -- Standard Type
-(30529, 4415, 3), -- One-handed Sword
-(30529, 4416, 18), -- Dwarves
+(30529, 4408, 1), -- HP Modifiers
+(30529, 4409, 1), -- MP Modifiers
+(30529, 4410, 11), -- P. Atk. Modifiers
+(30529, 4411, 11), -- M. Atk. Modifiers
+(30529, 4412, 11), -- P. Def. Modifiers
+(30529, 4413, 11), -- M. Def. Modifiers
+(30529, 4414, 2), -- Armor Type
+(30529, 4415, 3), -- Weapon Type
+(30529, 4416, 18), -- Races
 -- Newbie Helper
 (30530, 4045, 1), -- Resist Full Magic Attack
-(30530, 4408, 1), -- HP Increase (1x)
-(30530, 4409, 1), -- MP Increase (1x)
-(30530, 4410, 11), -- Average P. Atk.
-(30530, 4411, 11), -- Average M. Atk.
-(30530, 4412, 11), -- Average P. Def.
-(30530, 4413, 11), -- Average M. Def.
-(30530, 4414, 2), -- Standard Type
-(30530, 4415, 3), -- One-handed Sword
-(30530, 4416, 18), -- Dwarves
+(30530, 4408, 1), -- HP Modifiers
+(30530, 4409, 1), -- MP Modifiers
+(30530, 4410, 11), -- P. Atk. Modifiers
+(30530, 4411, 11), -- M. Atk. Modifiers
+(30530, 4412, 11), -- P. Def. Modifiers
+(30530, 4413, 11), -- M. Def. Modifiers
+(30530, 4414, 2), -- Armor Type
+(30530, 4415, 3), -- Weapon Type
+(30530, 4416, 18), -- Races
 -- Lockirin
 (30531, 4045, 1), -- Resist Full Magic Attack
-(30531, 4408, 1), -- HP Increase (1x)
-(30531, 4409, 1), -- MP Increase (1x)
-(30531, 4410, 11), -- Average P. Atk.
-(30531, 4411, 11), -- Average M. Atk.
-(30531, 4412, 11), -- Average P. Def.
-(30531, 4413, 11), -- Average M. Def.
-(30531, 4414, 2), -- Standard Type
-(30531, 4415, 3), -- One-handed Sword
-(30531, 4416, 18), -- Dwarves
+(30531, 4408, 1), -- HP Modifiers
+(30531, 4409, 1), -- MP Modifiers
+(30531, 4410, 11), -- P. Atk. Modifiers
+(30531, 4411, 11), -- M. Atk. Modifiers
+(30531, 4412, 11), -- P. Def. Modifiers
+(30531, 4413, 11), -- M. Def. Modifiers
+(30531, 4414, 2), -- Armor Type
+(30531, 4415, 3), -- Weapon Type
+(30531, 4416, 18), -- Races
 -- Spiron
 (30532, 4045, 1), -- Resist Full Magic Attack
-(30532, 4408, 1), -- HP Increase (1x)
-(30532, 4409, 1), -- MP Increase (1x)
-(30532, 4410, 11), -- Average P. Atk.
-(30532, 4411, 11), -- Average M. Atk.
-(30532, 4412, 11), -- Average P. Def.
-(30532, 4413, 11), -- Average M. Def.
-(30532, 4414, 2), -- Standard Type
-(30532, 4415, 3), -- One-handed Sword
-(30532, 4416, 18), -- Dwarves
+(30532, 4408, 1), -- HP Modifiers
+(30532, 4409, 1), -- MP Modifiers
+(30532, 4410, 11), -- P. Atk. Modifiers
+(30532, 4411, 11), -- M. Atk. Modifiers
+(30532, 4412, 11), -- P. Def. Modifiers
+(30532, 4413, 11), -- M. Def. Modifiers
+(30532, 4414, 2), -- Armor Type
+(30532, 4415, 3), -- Weapon Type
+(30532, 4416, 18), -- Races
 -- Balanki
 (30533, 4045, 1), -- Resist Full Magic Attack
-(30533, 4408, 1), -- HP Increase (1x)
-(30533, 4409, 1), -- MP Increase (1x)
-(30533, 4410, 11), -- Average P. Atk.
-(30533, 4411, 11), -- Average M. Atk.
-(30533, 4412, 11), -- Average P. Def.
-(30533, 4413, 11), -- Average M. Def.
-(30533, 4414, 2), -- Standard Type
-(30533, 4415, 3), -- One-handed Sword
-(30533, 4416, 18), -- Dwarves
+(30533, 4408, 1), -- HP Modifiers
+(30533, 4409, 1), -- MP Modifiers
+(30533, 4410, 11), -- P. Atk. Modifiers
+(30533, 4411, 11), -- M. Atk. Modifiers
+(30533, 4412, 11), -- P. Def. Modifiers
+(30533, 4413, 11), -- M. Def. Modifiers
+(30533, 4414, 2), -- Armor Type
+(30533, 4415, 3), -- Weapon Type
+(30533, 4416, 18), -- Races
 -- Keef
 (30534, 4045, 1), -- Resist Full Magic Attack
-(30534, 4408, 1), -- HP Increase (1x)
-(30534, 4409, 1), -- MP Increase (1x)
-(30534, 4410, 11), -- Average P. Atk.
-(30534, 4411, 11), -- Average M. Atk.
-(30534, 4412, 11), -- Average P. Def.
-(30534, 4413, 11), -- Average M. Def.
-(30534, 4414, 2), -- Standard Type
-(30534, 4415, 3), -- One-handed Sword
-(30534, 4416, 18), -- Dwarves
+(30534, 4408, 1), -- HP Modifiers
+(30534, 4409, 1), -- MP Modifiers
+(30534, 4410, 11), -- P. Atk. Modifiers
+(30534, 4411, 11), -- M. Atk. Modifiers
+(30534, 4412, 11), -- P. Def. Modifiers
+(30534, 4413, 11), -- M. Def. Modifiers
+(30534, 4414, 2), -- Armor Type
+(30534, 4415, 3), -- Weapon Type
+(30534, 4416, 18), -- Races
 -- Filaur
 (30535, 4045, 1), -- Resist Full Magic Attack
-(30535, 4408, 1), -- HP Increase (1x)
-(30535, 4409, 1), -- MP Increase (1x)
-(30535, 4410, 11), -- Average P. Atk.
-(30535, 4411, 11), -- Average M. Atk.
-(30535, 4412, 11), -- Average P. Def.
-(30535, 4413, 11), -- Average M. Def.
-(30535, 4414, 2); -- Standard Type
-
-INSERT INTO `npcskills` VALUES
-(30535, 4415, 3), -- One-handed Sword
-(30535, 4416, 18), -- Dwarves
+(30535, 4408, 1), -- HP Modifiers
+(30535, 4409, 1), -- MP Modifiers
+(30535, 4410, 11), -- P. Atk. Modifiers
+(30535, 4411, 11), -- M. Atk. Modifiers
+(30535, 4412, 11), -- P. Def. Modifiers
+(30535, 4413, 11), -- M. Def. Modifiers
+(30535, 4414, 2), -- Armor Type
+(30535, 4415, 3), -- Weapon Type
+(30535, 4416, 18), -- Races
 -- Arin
 (30536, 4045, 1), -- Resist Full Magic Attack
-(30536, 4408, 1), -- HP Increase (1x)
-(30536, 4409, 1), -- MP Increase (1x)
-(30536, 4410, 11), -- Average P. Atk.
-(30536, 4411, 11), -- Average M. Atk.
-(30536, 4412, 11), -- Average P. Def.
-(30536, 4413, 11), -- Average M. Def.
-(30536, 4414, 2), -- Standard Type
-(30536, 4415, 3), -- One-handed Sword
-(30536, 4416, 18), -- Dwarves
+(30536, 4408, 1), -- HP Modifiers
+(30536, 4409, 1), -- MP Modifiers
+(30536, 4410, 11), -- P. Atk. Modifiers
+(30536, 4411, 11), -- M. Atk. Modifiers
+(30536, 4412, 11), -- P. Def. Modifiers
+(30536, 4413, 11), -- M. Def. Modifiers
+(30536, 4414, 2), -- Armor Type
+(30536, 4415, 3), -- Weapon Type
+(30536, 4416, 18), -- Races
 -- Daichir
 (30537, 4045, 1), -- Resist Full Magic Attack
-(30537, 4408, 1), -- HP Increase (1x)
-(30537, 4409, 1), -- MP Increase (1x)
-(30537, 4410, 11), -- Average P. Atk.
-(30537, 4411, 11), -- Average M. Atk.
-(30537, 4412, 11), -- Average P. Def.
-(30537, 4413, 11), -- Average M. Def.
-(30537, 4414, 2), -- Standard Type
-(30537, 4415, 3), -- One-handed Sword
-(30537, 4416, 18), -- Dwarves
+(30537, 4408, 1), -- HP Modifiers
+(30537, 4409, 1), -- MP Modifiers
+(30537, 4410, 11), -- P. Atk. Modifiers
+(30537, 4411, 11), -- M. Atk. Modifiers
+(30537, 4412, 11), -- P. Def. Modifiers
+(30537, 4413, 11), -- M. Def. Modifiers
+(30537, 4414, 2), -- Armor Type
+(30537, 4415, 3), -- Weapon Type
+(30537, 4416, 18), -- Races
 -- Zimenf
 (30538, 4045, 1), -- Resist Full Magic Attack
-(30538, 4408, 1), -- HP Increase (1x)
-(30538, 4409, 1), -- MP Increase (1x)
-(30538, 4410, 11), -- Average P. Atk.
-(30538, 4411, 11), -- Average M. Atk.
-(30538, 4412, 11), -- Average P. Def.
-(30538, 4413, 11), -- Average M. Def.
-(30538, 4414, 2), -- Standard Type
-(30538, 4415, 3), -- One-handed Sword
-(30538, 4416, 18), -- Dwarves
+(30538, 4408, 1), -- HP Modifiers
+(30538, 4409, 1), -- MP Modifiers
+(30538, 4410, 11), -- P. Atk. Modifiers
+(30538, 4411, 11), -- M. Atk. Modifiers
+(30538, 4412, 11), -- P. Def. Modifiers
+(30538, 4413, 11), -- M. Def. Modifiers
+(30538, 4414, 2), -- Armor Type
+(30538, 4415, 3), -- Weapon Type
+(30538, 4416, 18), -- Races
 -- Chichirin
 (30539, 4045, 1), -- Resist Full Magic Attack
-(30539, 4408, 1), -- HP Increase (1x)
-(30539, 4409, 1), -- MP Increase (1x)
-(30539, 4410, 11), -- Average P. Atk.
-(30539, 4411, 11), -- Average M. Atk.
-(30539, 4412, 11), -- Average P. Def.
-(30539, 4413, 11), -- Average M. Def.
-(30539, 4414, 2), -- Standard Type
-(30539, 4415, 3), -- One-handed Sword
-(30539, 4416, 18), -- Dwarves
+(30539, 4408, 1), -- HP Modifiers
+(30539, 4409, 1), -- MP Modifiers
+(30539, 4410, 11), -- P. Atk. Modifiers
+(30539, 4411, 11), -- M. Atk. Modifiers
+(30539, 4412, 11), -- P. Def. Modifiers
+(30539, 4413, 11), -- M. Def. Modifiers
+(30539, 4414, 2), -- Armor Type
+(30539, 4415, 3), -- Weapon Type
+(30539, 4416, 18), -- Races
 -- Teleport Device
 (30540, 4045, 1), -- Resist Full Magic Attack
-(30540, 4408, 1), -- HP Increase (1x)
-(30540, 4409, 1), -- MP Increase (1x)
-(30540, 4410, 11), -- Average P. Atk.
-(30540, 4411, 11), -- Average M. Atk.
-(30540, 4412, 11), -- Average P. Def.
-(30540, 4413, 11), -- Average M. Def.
-(30540, 4414, 2), -- Standard Type
-(30540, 4415, 3), -- One-handed Sword
-(30540, 4416, 18), -- Dwarves
+(30540, 4408, 1), -- HP Modifiers
+(30540, 4409, 1), -- MP Modifiers
+(30540, 4410, 11), -- P. Atk. Modifiers
+(30540, 4411, 11), -- M. Atk. Modifiers
+(30540, 4412, 11), -- P. Def. Modifiers
+(30540, 4413, 11), -- M. Def. Modifiers
+(30540, 4414, 2), -- Armor Type
+(30540, 4415, 3), -- Weapon Type
+(30540, 4416, 18), -- Races
 -- Paion
 (30541, 4045, 1), -- Resist Full Magic Attack
-(30541, 4408, 1), -- HP Increase (1x)
-(30541, 4409, 1), -- MP Increase (1x)
-(30541, 4410, 16), -- Very Strong P. Atk.
-(30541, 4411, 16), -- Very Strong M. Atk.
-(30541, 4412, 16), -- Very Strong P. Def.
-(30541, 4413, 16), -- Very Strong M. Def.
-(30541, 4414, 2), -- Standard Type
-(30541, 4415, 9), -- Bows
-(30541, 4416, 18), -- Dwarves
+(30541, 4408, 1), -- HP Modifiers
+(30541, 4409, 1), -- MP Modifiers
+(30541, 4410, 16), -- P. Atk. Modifiers
+(30541, 4411, 16), -- M. Atk. Modifiers
+(30541, 4412, 16), -- P. Def. Modifiers
+(30541, 4413, 16), -- M. Def. Modifiers
+(30541, 4414, 2), -- Armor Type
+(30541, 4415, 9), -- Weapon Type
+(30541, 4416, 18), -- Races
 -- Runant
 (30542, 4045, 1), -- Resist Full Magic Attack
-(30542, 4408, 1), -- HP Increase (1x)
-(30542, 4409, 1), -- MP Increase (1x)
-(30542, 4410, 16), -- Very Strong P. Atk.
-(30542, 4411, 16), -- Very Strong M. Atk.
-(30542, 4412, 16), -- Very Strong P. Def.
-(30542, 4413, 16), -- Very Strong M. Def.
-(30542, 4414, 2), -- Standard Type
-(30542, 4415, 9), -- Bows
-(30542, 4416, 18), -- Dwarves
+(30542, 4408, 1), -- HP Modifiers
+(30542, 4409, 1), -- MP Modifiers
+(30542, 4410, 16), -- P. Atk. Modifiers
+(30542, 4411, 16), -- M. Atk. Modifiers
+(30542, 4412, 16), -- P. Def. Modifiers
+(30542, 4413, 16), -- M. Def. Modifiers
+(30542, 4414, 2), -- Armor Type
+(30542, 4415, 9), -- Weapon Type
+(30542, 4416, 18), -- Races
 -- Ethan
 (30543, 4045, 1), -- Resist Full Magic Attack
-(30543, 4408, 1), -- HP Increase (1x)
-(30543, 4409, 1), -- MP Increase (1x)
-(30543, 4410, 16), -- Very Strong P. Atk.
-(30543, 4411, 16), -- Very Strong M. Atk.
-(30543, 4412, 16), -- Very Strong P. Def.
-(30543, 4413, 16), -- Very Strong M. Def.
-(30543, 4414, 2), -- Standard Type
-(30543, 4415, 3), -- One-handed Sword
-(30543, 4416, 18), -- Dwarves
+(30543, 4408, 1), -- HP Modifiers
+(30543, 4409, 1), -- MP Modifiers
+(30543, 4410, 16), -- P. Atk. Modifiers
+(30543, 4411, 16), -- M. Atk. Modifiers
+(30543, 4412, 16), -- P. Def. Modifiers
+(30543, 4413, 16), -- M. Def. Modifiers
+(30543, 4414, 2), -- Armor Type
+(30543, 4415, 3), -- Weapon Type
+(30543, 4416, 18), -- Races
 -- Cromwell
 (30544, 4045, 1), -- Resist Full Magic Attack
-(30544, 4408, 1), -- HP Increase (1x)
-(30544, 4409, 1), -- MP Increase (1x)
-(30544, 4410, 16), -- Very Strong P. Atk.
-(30544, 4411, 16), -- Very Strong M. Atk.
-(30544, 4412, 16), -- Very Strong P. Def.
-(30544, 4413, 16), -- Very Strong M. Def.
-(30544, 4414, 2), -- Standard Type
-(30544, 4415, 3), -- One-handed Sword
-(30544, 4416, 18), -- Dwarves
+(30544, 4408, 1), -- HP Modifiers
+(30544, 4409, 1), -- MP Modifiers
+(30544, 4410, 16), -- P. Atk. Modifiers
+(30544, 4411, 16), -- M. Atk. Modifiers
+(30544, 4412, 16), -- P. Def. Modifiers
+(30544, 4413, 16), -- M. Def. Modifiers
+(30544, 4414, 2), -- Armor Type
+(30544, 4415, 3), -- Weapon Type
+(30544, 4416, 18), -- Races
 -- Proton
 (30545, 4045, 1), -- Resist Full Magic Attack
-(30545, 4408, 1), -- HP Increase (1x)
-(30545, 4409, 1), -- MP Increase (1x)
-(30545, 4410, 16), -- Very Strong P. Atk.
-(30545, 4411, 16), -- Very Strong M. Atk.
-(30545, 4412, 16), -- Very Strong P. Def.
-(30545, 4413, 16), -- Very Strong M. Def.
-(30545, 4414, 2), -- Standard Type
-(30545, 4415, 3), -- One-handed Sword
-(30545, 4416, 18), -- Dwarves
+(30545, 4408, 1), -- HP Modifiers
+(30545, 4409, 1), -- MP Modifiers
+(30545, 4410, 16), -- P. Atk. Modifiers
+(30545, 4411, 16), -- M. Atk. Modifiers
+(30545, 4412, 16), -- P. Def. Modifiers
+(30545, 4413, 16), -- M. Def. Modifiers
+(30545, 4414, 2), -- Armor Type
+(30545, 4415, 3), -- Weapon Type
+(30545, 4416, 18), -- Races
 -- Dinkey
 (30546, 4045, 1), -- Resist Full Magic Attack
-(30546, 4408, 1), -- HP Increase (1x)
-(30546, 4409, 1), -- MP Increase (1x)
-(30546, 4410, 16), -- Very Strong P. Atk.
-(30546, 4411, 16), -- Very Strong M. Atk.
-(30546, 4412, 16), -- Very Strong P. Def.
-(30546, 4413, 16), -- Very Strong M. Def.
-(30546, 4414, 2), -- Standard Type
-(30546, 4415, 9), -- Bows
-(30546, 4416, 18), -- Dwarves
+(30546, 4408, 1), -- HP Modifiers
+(30546, 4409, 1), -- MP Modifiers
+(30546, 4410, 16), -- P. Atk. Modifiers
+(30546, 4411, 16), -- M. Atk. Modifiers
+(30546, 4412, 16), -- P. Def. Modifiers
+(30546, 4413, 16), -- M. Def. Modifiers
+(30546, 4414, 2), -- Armor Type
+(30546, 4415, 9), -- Weapon Type
+(30546, 4416, 18), -- Races
 -- Tardyon
 (30547, 4045, 1), -- Resist Full Magic Attack
-(30547, 4408, 1), -- HP Increase (1x)
-(30547, 4409, 1), -- MP Increase (1x)
-(30547, 4410, 16), -- Very Strong P. Atk.
-(30547, 4411, 16), -- Very Strong M. Atk.
-(30547, 4412, 16), -- Very Strong P. Def.
-(30547, 4413, 16), -- Very Strong M. Def.
-(30547, 4414, 2), -- Standard Type
-(30547, 4415, 9), -- Bows
-(30547, 4416, 18), -- Dwarves
+(30547, 4408, 1), -- HP Modifiers
+(30547, 4409, 1), -- MP Modifiers
+(30547, 4410, 16), -- P. Atk. Modifiers
+(30547, 4411, 16), -- M. Atk. Modifiers
+(30547, 4412, 16), -- P. Def. Modifiers
+(30547, 4413, 16), -- M. Def. Modifiers
+(30547, 4414, 2), -- Armor Type
+(30547, 4415, 9), -- Weapon Type
+(30547, 4416, 18), -- Races
 -- Nathan
 (30548, 4045, 1), -- Resist Full Magic Attack
-(30548, 4408, 1), -- HP Increase (1x)
-(30548, 4409, 1), -- MP Increase (1x)
-(30548, 4410, 16), -- Very Strong P. Atk.
-(30548, 4411, 16), -- Very Strong M. Atk.
-(30548, 4412, 16), -- Very Strong P. Def.
-(30548, 4413, 16), -- Very Strong M. Def.
-(30548, 4414, 2), -- Standard Type
-(30548, 4415, 3), -- One-handed Sword
-(30548, 4416, 18), -- Dwarves
+(30548, 4408, 1), -- HP Modifiers
+(30548, 4409, 1), -- MP Modifiers
+(30548, 4410, 16), -- P. Atk. Modifiers
+(30548, 4411, 16), -- M. Atk. Modifiers
+(30548, 4412, 16), -- P. Def. Modifiers
+(30548, 4413, 16), -- M. Def. Modifiers
+(30548, 4414, 2), -- Armor Type
+(30548, 4415, 3), -- Weapon Type
+(30548, 4416, 18), -- Races
 -- Ghouliff Droopstone
 (30549, 4045, 1), -- Resist Full Magic Attack
-(30549, 4408, 1), -- HP Increase (1x)
-(30549, 4409, 1), -- MP Increase (1x)
-(30549, 4410, 11), -- Average P. Atk.
-(30549, 4411, 11), -- Average M. Atk.
-(30549, 4412, 11), -- Average P. Def.
-(30549, 4413, 11), -- Average M. Def.
-(30549, 4414, 2), -- Standard Type
-(30549, 4415, 3), -- One-handed Sword
-(30549, 4416, 18), -- Dwarves
+(30549, 4408, 1), -- HP Modifiers
+(30549, 4409, 1), -- MP Modifiers
+(30549, 4410, 11), -- P. Atk. Modifiers
+(30549, 4411, 11), -- M. Atk. Modifiers
+(30549, 4412, 11), -- P. Def. Modifiers
+(30549, 4413, 11), -- M. Def. Modifiers
+(30549, 4414, 2), -- Armor Type
+(30549, 4415, 3), -- Weapon Type
+(30549, 4416, 18), -- Races
 -- Gauri Twinklerock
 (30550, 4045, 1), -- Resist Full Magic Attack
-(30550, 4408, 1), -- HP Increase (1x)
-(30550, 4409, 1), -- MP Increase (1x)
-(30550, 4410, 11), -- Average P. Atk.
-(30550, 4411, 11), -- Average M. Atk.
-(30550, 4412, 11), -- Average P. Def.
-(30550, 4413, 11), -- Average M. Def.
-(30550, 4414, 2), -- Standard Type
-(30550, 4415, 3), -- One-handed Sword
-(30550, 4416, 18), -- Dwarves
+(30550, 4408, 1), -- HP Modifiers
+(30550, 4409, 1), -- MP Modifiers
+(30550, 4410, 11), -- P. Atk. Modifiers
+(30550, 4411, 11), -- M. Atk. Modifiers
+(30550, 4412, 11), -- P. Def. Modifiers
+(30550, 4413, 11), -- M. Def. Modifiers
+(30550, 4414, 2), -- Armor Type
+(30550, 4415, 3), -- Weapon Type
+(30550, 4416, 18), -- Races
 -- Tink Wandergold
 (30551, 4045, 1), -- Resist Full Magic Attack
-(30551, 4408, 1), -- HP Increase (1x)
-(30551, 4409, 1), -- MP Increase (1x)
-(30551, 4410, 11), -- Average P. Atk.
-(30551, 4411, 11), -- Average M. Atk.
-(30551, 4412, 11), -- Average P. Def.
-(30551, 4413, 11), -- Average M. Def.
-(30551, 4414, 2), -- Standard Type
-(30551, 4415, 3), -- One-handed Sword
-(30551, 4416, 18), -- Dwarves
+(30551, 4408, 1), -- HP Modifiers
+(30551, 4409, 1), -- MP Modifiers
+(30551, 4410, 11), -- P. Atk. Modifiers
+(30551, 4411, 11), -- M. Atk. Modifiers
+(30551, 4412, 11), -- P. Def. Modifiers
+(30551, 4413, 11), -- M. Def. Modifiers
+(30551, 4414, 2), -- Armor Type
+(30551, 4415, 3), -- Weapon Type
+(30551, 4416, 18), -- Races
 -- Kiril Sparkystone
 (30552, 4045, 1), -- Resist Full Magic Attack
-(30552, 4408, 1), -- HP Increase (1x)
-(30552, 4409, 1), -- MP Increase (1x)
-(30552, 4410, 11), -- Average P. Atk.
-(30552, 4411, 11), -- Average M. Atk.
-(30552, 4412, 11), -- Average P. Def.
-(30552, 4413, 11), -- Average M. Def.
-(30552, 4414, 2), -- Standard Type
-(30552, 4415, 3), -- One-handed Sword
-(30552, 4416, 18), -- Dwarves
+(30552, 4408, 1), -- HP Modifiers
+(30552, 4409, 1), -- MP Modifiers
+(30552, 4410, 11), -- P. Atk. Modifiers
+(30552, 4411, 11), -- M. Atk. Modifiers
+(30552, 4412, 11), -- P. Def. Modifiers
+(30552, 4413, 11), -- M. Def. Modifiers
+(30552, 4414, 2), -- Armor Type
+(30552, 4415, 3), -- Weapon Type
+(30552, 4416, 18), -- Races
 -- Maryse Redbonnet
 (30553, 4045, 1), -- Resist Full Magic Attack
-(30553, 4408, 1), -- HP Increase (1x)
-(30553, 4409, 1), -- MP Increase (1x)
-(30553, 4410, 11), -- Average P. Atk.
-(30553, 4411, 11), -- Average M. Atk.
-(30553, 4412, 11), -- Average P. Def.
-(30553, 4413, 11), -- Average M. Def.
-(30553, 4414, 2), -- Standard Type
-(30553, 4415, 3), -- One-handed Sword
-(30553, 4416, 18), -- Dwarves
+(30553, 4408, 1), -- HP Modifiers
+(30553, 4409, 1), -- MP Modifiers
+(30553, 4410, 11), -- P. Atk. Modifiers
+(30553, 4411, 11), -- M. Atk. Modifiers
+(30553, 4412, 11), -- P. Def. Modifiers
+(30553, 4413, 11), -- M. Def. Modifiers
+(30553, 4414, 2), -- Armor Type
+(30553, 4415, 3), -- Weapon Type
+(30553, 4416, 18), -- Races
 -- Bolter
 (30554, 4045, 1), -- Resist Full Magic Attack
-(30554, 4408, 1), -- HP Increase (1x)
-(30554, 4409, 1), -- MP Increase (1x)
-(30554, 4410, 11), -- Average P. Atk.
-(30554, 4411, 11), -- Average M. Atk.
-(30554, 4412, 11), -- Average P. Def.
-(30554, 4413, 11), -- Average M. Def.
-(30554, 4414, 2), -- Standard Type
-(30554, 4415, 3), -- One-handed Sword
-(30554, 4416, 18), -- Dwarves
+(30554, 4408, 1), -- HP Modifiers
+(30554, 4409, 1), -- MP Modifiers
+(30554, 4410, 11), -- P. Atk. Modifiers
+(30554, 4411, 11), -- M. Atk. Modifiers
+(30554, 4412, 11), -- P. Def. Modifiers
+(30554, 4413, 11), -- M. Def. Modifiers
+(30554, 4414, 2), -- Armor Type
+(30554, 4415, 3), -- Weapon Type
+(30554, 4416, 18), -- Races
 -- Torocco
 (30555, 4045, 1), -- Resist Full Magic Attack
-(30555, 4408, 1), -- HP Increase (1x)
-(30555, 4409, 1), -- MP Increase (1x)
-(30555, 4410, 11), -- Average P. Atk.
-(30555, 4411, 11), -- Average M. Atk.
-(30555, 4412, 11), -- Average P. Def.
-(30555, 4413, 11), -- Average M. Def.
-(30555, 4414, 2), -- Standard Type
-(30555, 4415, 3), -- One-handed Sword
-(30555, 4416, 18), -- Dwarves
+(30555, 4408, 1), -- HP Modifiers
+(30555, 4409, 1), -- MP Modifiers
+(30555, 4410, 11), -- P. Atk. Modifiers
+(30555, 4411, 11), -- M. Atk. Modifiers
+(30555, 4412, 11), -- P. Def. Modifiers
+(30555, 4413, 11), -- M. Def. Modifiers
+(30555, 4414, 2), -- Armor Type
+(30555, 4415, 3), -- Weapon Type
+(30555, 4416, 18), -- Races
 -- Toma
 (30556, 4045, 1), -- Resist Full Magic Attack
-(30556, 4408, 1), -- HP Increase (1x)
-(30556, 4409, 1), -- MP Increase (1x)
-(30556, 4410, 11), -- Average P. Atk.
-(30556, 4411, 11), -- Average M. Atk.
-(30556, 4412, 11), -- Average P. Def.
-(30556, 4413, 11), -- Average M. Def.
-(30556, 4414, 2), -- Standard Type
-(30556, 4415, 3), -- One-handed Sword
-(30556, 4416, 18), -- Dwarves
+(30556, 4408, 1), -- HP Modifiers
+(30556, 4409, 1), -- MP Modifiers
+(30556, 4410, 11), -- P. Atk. Modifiers
+(30556, 4411, 11), -- M. Atk. Modifiers
+(30556, 4412, 11), -- P. Def. Modifiers
+(30556, 4413, 11), -- M. Def. Modifiers
+(30556, 4414, 2), -- Armor Type
+(30556, 4415, 3), -- Weapon Type
+(30556, 4416, 18), -- Races
 -- Torai
 (30557, 4045, 1), -- Resist Full Magic Attack
-(30557, 4408, 1), -- HP Increase (1x)
-(30557, 4409, 1), -- MP Increase (1x)
-(30557, 4410, 11), -- Average P. Atk.
-(30557, 4411, 11), -- Average M. Atk.
-(30557, 4412, 11), -- Average P. Def.
-(30557, 4413, 11), -- Average M. Def.
-(30557, 4414, 2), -- Standard Type
-(30557, 4415, 3), -- One-handed Sword
-(30557, 4416, 18), -- Dwarves
+(30557, 4408, 1), -- HP Modifiers
+(30557, 4409, 1), -- MP Modifiers
+(30557, 4410, 11), -- P. Atk. Modifiers
+(30557, 4411, 11), -- M. Atk. Modifiers
+(30557, 4412, 11), -- P. Def. Modifiers
+(30557, 4413, 11), -- M. Def. Modifiers
+(30557, 4414, 2), -- Armor Type
+(30557, 4415, 3), -- Weapon Type
+(30557, 4416, 18), -- Races
 -- Jakal
 (30558, 4045, 1), -- Resist Full Magic Attack
-(30558, 4408, 1), -- HP Increase (1x)
-(30558, 4409, 1), -- MP Increase (1x)
-(30558, 4410, 11), -- Average P. Atk.
-(30558, 4411, 11), -- Average M. Atk.
-(30558, 4412, 11), -- Average P. Def.
-(30558, 4413, 11), -- Average M. Def.
-(30558, 4414, 2), -- Standard Type
-(30558, 4415, 3), -- One-handed Sword
-(30558, 4416, 17), -- Orcs
+(30558, 4408, 1), -- HP Modifiers
+(30558, 4409, 1), -- MP Modifiers
+(30558, 4410, 11), -- P. Atk. Modifiers
+(30558, 4411, 11), -- M. Atk. Modifiers
+(30558, 4412, 11), -- P. Def. Modifiers
+(30558, 4413, 11), -- M. Def. Modifiers
+(30558, 4414, 2), -- Armor Type
+(30558, 4415, 3), -- Weapon Type
+(30558, 4416, 17), -- Races
 -- Kunai
 (30559, 4045, 1), -- Resist Full Magic Attack
-(30559, 4408, 1), -- HP Increase (1x)
-(30559, 4409, 1), -- MP Increase (1x)
-(30559, 4410, 11), -- Average P. Atk.
-(30559, 4411, 11), -- Average M. Atk.
-(30559, 4412, 11), -- Average P. Def.
-(30559, 4413, 11), -- Average M. Def.
-(30559, 4414, 2), -- Standard Type
-(30559, 4415, 3), -- One-handed Sword
-(30559, 4416, 17), -- Orcs
+(30559, 4408, 1), -- HP Modifiers
+(30559, 4409, 1), -- MP Modifiers
+(30559, 4410, 11), -- P. Atk. Modifiers
+(30559, 4411, 11), -- M. Atk. Modifiers
+(30559, 4412, 11), -- P. Def. Modifiers
+(30559, 4413, 11), -- M. Def. Modifiers
+(30559, 4414, 2), -- Armor Type
+(30559, 4415, 3), -- Weapon Type
+(30559, 4416, 17), -- Races
 -- Uska
 (30560, 4045, 1), -- Resist Full Magic Attack
-(30560, 4408, 1), -- HP Increase (1x)
-(30560, 4409, 1), -- MP Increase (1x)
-(30560, 4410, 11), -- Average P. Atk.
-(30560, 4411, 11), -- Average M. Atk.
-(30560, 4412, 11), -- Average P. Def.
-(30560, 4413, 11), -- Average M. Def.
-(30560, 4414, 2), -- Standard Type
-(30560, 4415, 3), -- One-handed Sword
-(30560, 4416, 17), -- Orcs
+(30560, 4408, 1), -- HP Modifiers
+(30560, 4409, 1), -- MP Modifiers
+(30560, 4410, 11), -- P. Atk. Modifiers
+(30560, 4411, 11), -- M. Atk. Modifiers
+(30560, 4412, 11), -- P. Def. Modifiers
+(30560, 4413, 11), -- M. Def. Modifiers
+(30560, 4414, 2), -- Armor Type
+(30560, 4415, 3), -- Weapon Type
+(30560, 4416, 17), -- Races
 -- Papuma
 (30561, 4045, 1), -- Resist Full Magic Attack
-(30561, 4408, 1), -- HP Increase (1x)
-(30561, 4409, 1), -- MP Increase (1x)
-(30561, 4410, 11), -- Average P. Atk.
-(30561, 4411, 11), -- Average M. Atk.
-(30561, 4412, 11), -- Average P. Def.
-(30561, 4413, 11), -- Average M. Def.
-(30561, 4414, 2), -- Standard Type
-(30561, 4415, 3), -- One-handed Sword
-(30561, 4416, 17), -- Orcs
+(30561, 4408, 1), -- HP Modifiers
+(30561, 4409, 1), -- MP Modifiers
+(30561, 4410, 11), -- P. Atk. Modifiers
+(30561, 4411, 11), -- M. Atk. Modifiers
+(30561, 4412, 11), -- P. Def. Modifiers
+(30561, 4413, 11), -- M. Def. Modifiers
+(30561, 4414, 2), -- Armor Type
+(30561, 4415, 3), -- Weapon Type
+(30561, 4416, 17), -- Races
 -- Grookin
 (30562, 4045, 1), -- Resist Full Magic Attack
-(30562, 4408, 1), -- HP Increase (1x)
-(30562, 4409, 1), -- MP Increase (1x)
-(30562, 4410, 11), -- Average P. Atk.
-(30562, 4411, 11), -- Average M. Atk.
-(30562, 4412, 11), -- Average P. Def.
-(30562, 4413, 11), -- Average M. Def.
-(30562, 4414, 2), -- Standard Type
-(30562, 4415, 3), -- One-handed Sword
-(30562, 4416, 17), -- Orcs
+(30562, 4408, 1), -- HP Modifiers
+(30562, 4409, 1), -- MP Modifiers
+(30562, 4410, 11), -- P. Atk. Modifiers
+(30562, 4411, 11), -- M. Atk. Modifiers
+(30562, 4412, 11), -- P. Def. Modifiers
+(30562, 4413, 11), -- M. Def. Modifiers
+(30562, 4414, 2), -- Armor Type
+(30562, 4415, 3), -- Weapon Type
+(30562, 4416, 17), -- Races
 -- Imantu
 (30563, 4045, 1), -- Resist Full Magic Attack
-(30563, 4408, 1), -- HP Increase (1x)
-(30563, 4409, 1), -- MP Increase (1x)
-(30563, 4410, 11), -- Average P. Atk.
-(30563, 4411, 11), -- Average M. Atk.
-(30563, 4412, 11), -- Average P. Def.
-(30563, 4413, 11), -- Average M. Def.
-(30563, 4414, 2), -- Standard Type
-(30563, 4415, 3), -- One-handed Sword
-(30563, 4416, 17), -- Orcs
+(30563, 4408, 1), -- HP Modifiers
+(30563, 4409, 1), -- MP Modifiers
+(30563, 4410, 11), -- P. Atk. Modifiers
+(30563, 4411, 11), -- M. Atk. Modifiers
+(30563, 4412, 11), -- P. Def. Modifiers
+(30563, 4413, 11), -- M. Def. Modifiers
+(30563, 4414, 2), -- Armor Type
+(30563, 4415, 3), -- Weapon Type
+(30563, 4416, 17), -- Races
 -- Sumari
 (30564, 4045, 1), -- Resist Full Magic Attack
-(30564, 4408, 1), -- HP Increase (1x)
-(30564, 4409, 1), -- MP Increase (1x)
-(30564, 4410, 11), -- Average P. Atk.
-(30564, 4411, 11), -- Average M. Atk.
-(30564, 4412, 11), -- Average P. Def.
-(30564, 4413, 11), -- Average M. Def.
-(30564, 4414, 2), -- Standard Type
-(30564, 4415, 3), -- One-handed Sword
-(30564, 4416, 17), -- Orcs
+(30564, 4408, 1), -- HP Modifiers
+(30564, 4409, 1), -- MP Modifiers
+(30564, 4410, 11), -- P. Atk. Modifiers
+(30564, 4411, 11), -- M. Atk. Modifiers
+(30564, 4412, 11), -- P. Def. Modifiers
+(30564, 4413, 11), -- M. Def. Modifiers
+(30564, 4414, 2), -- Armor Type
+(30564, 4415, 3), -- Weapon Type
+(30564, 4416, 17), -- Races
 -- Kakai
 (30565, 4045, 1), -- Resist Full Magic Attack
-(30565, 4408, 1), -- HP Increase (1x)
-(30565, 4409, 1), -- MP Increase (1x)
-(30565, 4410, 11), -- Average P. Atk.
-(30565, 4411, 11), -- Average M. Atk.
-(30565, 4412, 11), -- Average P. Def.
-(30565, 4413, 11), -- Average M. Def.
-(30565, 4414, 2), -- Standard Type
-(30565, 4415, 3), -- One-handed Sword
-(30565, 4416, 17), -- Orcs
+(30565, 4408, 1), -- HP Modifiers
+(30565, 4409, 1), -- MP Modifiers
+(30565, 4410, 11), -- P. Atk. Modifiers
+(30565, 4411, 11), -- M. Atk. Modifiers
+(30565, 4412, 11), -- P. Def. Modifiers
+(30565, 4413, 11), -- M. Def. Modifiers
+(30565, 4414, 2), -- Armor Type
+(30565, 4415, 3), -- Weapon Type
+(30565, 4416, 17), -- Races
 -- Varkees
 (30566, 4045, 1), -- Resist Full Magic Attack
-(30566, 4408, 1), -- HP Increase (1x)
-(30566, 4409, 1), -- MP Increase (1x)
-(30566, 4410, 11), -- Average P. Atk.
-(30566, 4411, 11), -- Average M. Atk.
-(30566, 4412, 11), -- Average P. Def.
-(30566, 4413, 11), -- Average M. Def.
-(30566, 4414, 2), -- Standard Type
-(30566, 4415, 3), -- One-handed Sword
-(30566, 4416, 17), -- Orcs
+(30566, 4408, 1), -- HP Modifiers
+(30566, 4409, 1), -- MP Modifiers
+(30566, 4410, 11), -- P. Atk. Modifiers
+(30566, 4411, 11), -- M. Atk. Modifiers
+(30566, 4412, 11), -- P. Def. Modifiers
+(30566, 4413, 11), -- M. Def. Modifiers
+(30566, 4414, 2), -- Armor Type
+(30566, 4415, 3), -- Weapon Type
+(30566, 4416, 17), -- Races
 -- Tantus
 (30567, 4045, 1), -- Resist Full Magic Attack
-(30567, 4408, 1), -- HP Increase (1x)
-(30567, 4409, 1), -- MP Increase (1x)
-(30567, 4410, 11), -- Average P. Atk.
-(30567, 4411, 11), -- Average M. Atk.
-(30567, 4412, 11), -- Average P. Def.
-(30567, 4413, 11), -- Average M. Def.
-(30567, 4414, 2), -- Standard Type
-(30567, 4415, 3), -- One-handed Sword
-(30567, 4416, 17), -- Orcs
+(30567, 4408, 1), -- HP Modifiers
+(30567, 4409, 1), -- MP Modifiers
+(30567, 4410, 11), -- P. Atk. Modifiers
+(30567, 4411, 11), -- M. Atk. Modifiers
+(30567, 4412, 11), -- P. Def. Modifiers
+(30567, 4413, 11), -- M. Def. Modifiers
+(30567, 4414, 2), -- Armor Type
+(30567, 4415, 3), -- Weapon Type
+(30567, 4416, 17), -- Races
 -- Hatos
 (30568, 4045, 1), -- Resist Full Magic Attack
-(30568, 4408, 1), -- HP Increase (1x)
-(30568, 4409, 1), -- MP Increase (1x)
-(30568, 4410, 11), -- Average P. Atk.
-(30568, 4411, 11), -- Average M. Atk.
-(30568, 4412, 11), -- Average P. Def.
-(30568, 4413, 11), -- Average M. Def.
-(30568, 4414, 2), -- Standard Type
-(30568, 4415, 3), -- One-handed Sword
-(30568, 4416, 17), -- Orcs
+(30568, 4408, 1), -- HP Modifiers
+(30568, 4409, 1), -- MP Modifiers
+(30568, 4410, 11), -- P. Atk. Modifiers
+(30568, 4411, 11), -- M. Atk. Modifiers
+(30568, 4412, 11), -- P. Def. Modifiers
+(30568, 4413, 11), -- M. Def. Modifiers
+(30568, 4414, 2), -- Armor Type
+(30568, 4415, 3), -- Weapon Type
+(30568, 4416, 17), -- Races
 -- Brukurse
 (30569, 4045, 1), -- Resist Full Magic Attack
-(30569, 4408, 1), -- HP Increase (1x)
-(30569, 4409, 1), -- MP Increase (1x)
-(30569, 4410, 11), -- Average P. Atk.
-(30569, 4411, 11), -- Average M. Atk.
-(30569, 4412, 11), -- Average P. Def.
-(30569, 4413, 11), -- Average M. Def.
-(30569, 4414, 2), -- Standard Type
-(30569, 4415, 3), -- One-handed Sword
-(30569, 4416, 17), -- Orcs
+(30569, 4408, 1), -- HP Modifiers
+(30569, 4409, 1), -- MP Modifiers
+(30569, 4410, 11), -- P. Atk. Modifiers
+(30569, 4411, 11), -- M. Atk. Modifiers
+(30569, 4412, 11), -- P. Def. Modifiers
+(30569, 4413, 11), -- M. Def. Modifiers
+(30569, 4414, 2), -- Armor Type
+(30569, 4415, 3), -- Weapon Type
+(30569, 4416, 17), -- Races
 -- Karukia
 (30570, 4045, 1), -- Resist Full Magic Attack
-(30570, 4408, 1), -- HP Increase (1x)
-(30570, 4409, 1), -- MP Increase (1x)
-(30570, 4410, 11), -- Average P. Atk.
-(30570, 4411, 11), -- Average M. Atk.
-(30570, 4412, 11), -- Average P. Def.
-(30570, 4413, 11), -- Average M. Def.
-(30570, 4414, 2), -- Standard Type
-(30570, 4415, 3), -- One-handed Sword
-(30570, 4416, 17), -- Orcs
+(30570, 4408, 1), -- HP Modifiers
+(30570, 4409, 1), -- MP Modifiers
+(30570, 4410, 11), -- P. Atk. Modifiers
+(30570, 4411, 11), -- M. Atk. Modifiers
+(30570, 4412, 11), -- P. Def. Modifiers
+(30570, 4413, 11), -- M. Def. Modifiers
+(30570, 4414, 2), -- Armor Type
+(30570, 4415, 3), -- Weapon Type
+(30570, 4416, 17), -- Races
 -- Tanapi
 (30571, 4045, 1), -- Resist Full Magic Attack
-(30571, 4408, 1), -- HP Increase (1x)
-(30571, 4409, 1), -- MP Increase (1x)
-(30571, 4410, 11), -- Average P. Atk.
-(30571, 4411, 11), -- Average M. Atk.
-(30571, 4412, 11), -- Average P. Def.
-(30571, 4413, 11), -- Average M. Def.
-(30571, 4414, 2), -- Standard Type
-(30571, 4415, 3), -- One-handed Sword
-(30571, 4416, 17), -- Orcs
+(30571, 4408, 1), -- HP Modifiers
+(30571, 4409, 1), -- MP Modifiers
+(30571, 4410, 11), -- P. Atk. Modifiers
+(30571, 4411, 11), -- M. Atk. Modifiers
+(30571, 4412, 11), -- P. Def. Modifiers
+(30571, 4413, 11), -- M. Def. Modifiers
+(30571, 4414, 2), -- Armor Type
+(30571, 4415, 3), -- Weapon Type
+(30571, 4416, 17), -- Races
 -- Livina
 (30572, 4045, 1), -- Resist Full Magic Attack
-(30572, 4408, 1), -- HP Increase (1x)
-(30572, 4409, 1), -- MP Increase (1x)
-(30572, 4410, 11), -- Average P. Atk.
-(30572, 4411, 11), -- Average M. Atk.
-(30572, 4412, 11), -- Average P. Def.
-(30572, 4413, 11), -- Average M. Def.
-(30572, 4414, 2), -- Standard Type
-(30572, 4415, 3), -- One-handed Sword
-(30572, 4416, 17), -- Orcs
+(30572, 4408, 1), -- HP Modifiers
+(30572, 4409, 1), -- MP Modifiers
+(30572, 4410, 11), -- P. Atk. Modifiers
+(30572, 4411, 11), -- M. Atk. Modifiers
+(30572, 4412, 11), -- P. Def. Modifiers
+(30572, 4413, 11), -- M. Def. Modifiers
+(30572, 4414, 2), -- Armor Type
+(30572, 4415, 3), -- Weapon Type
+(30572, 4416, 17), -- Races
 -- Vulkus
 (30573, 4045, 1), -- Resist Full Magic Attack
-(30573, 4408, 1), -- HP Increase (1x)
-(30573, 4409, 1), -- MP Increase (1x)
-(30573, 4410, 11), -- Average P. Atk.
-(30573, 4411, 11), -- Average M. Atk.
-(30573, 4412, 11), -- Average P. Def.
-(30573, 4413, 11), -- Average M. Def.
-(30573, 4414, 2), -- Standard Type
-(30573, 4415, 3), -- One-handed Sword
-(30573, 4416, 17), -- Orcs
+(30573, 4408, 1), -- HP Modifiers
+(30573, 4409, 1), -- MP Modifiers
+(30573, 4410, 11), -- P. Atk. Modifiers
+(30573, 4411, 11), -- M. Atk. Modifiers
+(30573, 4412, 11), -- P. Def. Modifiers
+(30573, 4413, 11), -- M. Def. Modifiers
+(30573, 4414, 2), -- Armor Type
+(30573, 4415, 3), -- Weapon Type
+(30573, 4416, 17), -- Races
 -- Newbie Helper
 (30575, 4045, 1), -- Resist Full Magic Attack
-(30575, 4408, 1), -- HP Increase (1x)
-(30575, 4409, 1), -- MP Increase (1x)
-(30575, 4410, 11), -- Average P. Atk.
-(30575, 4411, 11), -- Average M. Atk.
-(30575, 4412, 11), -- Average P. Def.
-(30575, 4413, 11), -- Average M. Def.
-(30575, 4414, 2), -- Standard Type
-(30575, 4415, 3), -- One-handed Sword
-(30575, 4416, 17), -- Orcs
+(30575, 4408, 1), -- HP Modifiers
+(30575, 4409, 1), -- MP Modifiers
+(30575, 4410, 11), -- P. Atk. Modifiers
+(30575, 4411, 11), -- M. Atk. Modifiers
+(30575, 4412, 11), -- P. Def. Modifiers
+(30575, 4413, 11), -- M. Def. Modifiers
+(30575, 4414, 2), -- Armor Type
+(30575, 4415, 3), -- Weapon Type
+(30575, 4416, 17), -- Races
 -- Teleport Device
 (30576, 4045, 1), -- Resist Full Magic Attack
-(30576, 4408, 1), -- HP Increase (1x)
-(30576, 4409, 1), -- MP Increase (1x)
-(30576, 4410, 11), -- Average P. Atk.
-(30576, 4411, 11), -- Average M. Atk.
-(30576, 4412, 11), -- Average P. Def.
-(30576, 4413, 11), -- Average M. Def.
-(30576, 4414, 2), -- Standard Type
-(30576, 4415, 3), -- One-handed Sword
-(30576, 4416, 17), -- Orcs
+(30576, 4408, 1), -- HP Modifiers
+(30576, 4409, 1), -- MP Modifiers
+(30576, 4410, 11), -- P. Atk. Modifiers
+(30576, 4411, 11), -- M. Atk. Modifiers
+(30576, 4412, 11), -- P. Def. Modifiers
+(30576, 4413, 11), -- M. Def. Modifiers
+(30576, 4414, 2), -- Armor Type
+(30576, 4415, 3), -- Weapon Type
+(30576, 4416, 17), -- Races
 -- Rukain
 (30577, 4045, 1), -- Resist Full Magic Attack
-(30577, 4408, 1), -- HP Increase (1x)
-(30577, 4409, 1), -- MP Increase (1x)
-(30577, 4410, 16), -- Very Strong P. Atk.
-(30577, 4411, 16), -- Very Strong M. Atk.
-(30577, 4412, 16), -- Very Strong P. Def.
-(30577, 4413, 16), -- Very Strong M. Def.
-(30577, 4414, 2), -- Standard Type
-(30577, 4415, 9), -- Bows
-(30577, 4416, 17), -- Orcs
+(30577, 4408, 1), -- HP Modifiers
+(30577, 4409, 1), -- MP Modifiers
+(30577, 4410, 16), -- P. Atk. Modifiers
+(30577, 4411, 16), -- M. Atk. Modifiers
+(30577, 4412, 16), -- P. Def. Modifiers
+(30577, 4413, 16), -- M. Def. Modifiers
+(30577, 4414, 2), -- Armor Type
+(30577, 4415, 9), -- Weapon Type
+(30577, 4416, 17), -- Races
 -- Nakusin
 (30578, 4045, 1), -- Resist Full Magic Attack
-(30578, 4408, 1), -- HP Increase (1x)
-(30578, 4409, 1), -- MP Increase (1x)
-(30578, 4410, 16), -- Very Strong P. Atk.
-(30578, 4411, 16), -- Very Strong M. Atk.
-(30578, 4412, 16), -- Very Strong P. Def.
-(30578, 4413, 16), -- Very Strong M. Def.
-(30578, 4414, 2), -- Standard Type
-(30578, 4415, 9), -- Bows
-(30578, 4416, 17), -- Orcs
+(30578, 4408, 1), -- HP Modifiers
+(30578, 4409, 1), -- MP Modifiers
+(30578, 4410, 16), -- P. Atk. Modifiers
+(30578, 4411, 16), -- M. Atk. Modifiers
+(30578, 4412, 16), -- P. Def. Modifiers
+(30578, 4413, 16), -- M. Def. Modifiers
+(30578, 4414, 2), -- Armor Type
+(30578, 4415, 9), -- Weapon Type
+(30578, 4416, 17), -- Races
 -- Tamai
 (30579, 4045, 1), -- Resist Full Magic Attack
-(30579, 4408, 1), -- HP Increase (1x)
-(30579, 4409, 1), -- MP Increase (1x)
-(30579, 4410, 16), -- Very Strong P. Atk.
-(30579, 4411, 16), -- Very Strong M. Atk.
-(30579, 4412, 16), -- Very Strong P. Def.
-(30579, 4413, 16), -- Very Strong M. Def.
-(30579, 4414, 2), -- Standard Type
-(30579, 4415, 9), -- Bows
-(30579, 4416, 17), -- Orcs
+(30579, 4408, 1), -- HP Modifiers
+(30579, 4409, 1), -- MP Modifiers
+(30579, 4410, 16), -- P. Atk. Modifiers
+(30579, 4411, 16), -- M. Atk. Modifiers
+(30579, 4412, 16), -- P. Def. Modifiers
+(30579, 4413, 16), -- M. Def. Modifiers
+(30579, 4414, 2), -- Armor Type
+(30579, 4415, 9), -- Weapon Type
+(30579, 4416, 17), -- Races
 -- Parugon
 (30580, 4045, 1), -- Resist Full Magic Attack
-(30580, 4408, 1), -- HP Increase (1x)
-(30580, 4409, 1), -- MP Increase (1x)
-(30580, 4410, 16), -- Very Strong P. Atk.
-(30580, 4411, 16), -- Very Strong M. Atk.
-(30580, 4412, 16), -- Very Strong P. Def.
-(30580, 4413, 16), -- Very Strong M. Def.
-(30580, 4414, 2), -- Standard Type
-(30580, 4415, 3), -- One-handed Sword
-(30580, 4416, 17), -- Orcs
+(30580, 4408, 1), -- HP Modifiers
+(30580, 4409, 1), -- MP Modifiers
+(30580, 4410, 16), -- P. Atk. Modifiers
+(30580, 4411, 16), -- M. Atk. Modifiers
+(30580, 4412, 16), -- P. Def. Modifiers
+(30580, 4413, 16), -- M. Def. Modifiers
+(30580, 4414, 2), -- Armor Type
+(30580, 4415, 3), -- Weapon Type
+(30580, 4416, 17), -- Races
 -- Orinak
 (30581, 4045, 1), -- Resist Full Magic Attack
-(30581, 4408, 1), -- HP Increase (1x)
-(30581, 4409, 1), -- MP Increase (1x)
-(30581, 4410, 16), -- Very Strong P. Atk.
-(30581, 4411, 16), -- Very Strong M. Atk.
-(30581, 4412, 16), -- Very Strong P. Def.
-(30581, 4413, 16), -- Very Strong M. Def.
-(30581, 4414, 2), -- Standard Type
-(30581, 4415, 9), -- Bows
-(30581, 4416, 17), -- Orcs
+(30581, 4408, 1), -- HP Modifiers
+(30581, 4409, 1), -- MP Modifiers
+(30581, 4410, 16), -- P. Atk. Modifiers
+(30581, 4411, 16), -- M. Atk. Modifiers
+(30581, 4412, 16), -- P. Def. Modifiers
+(30581, 4413, 16), -- M. Def. Modifiers
+(30581, 4414, 2), -- Armor Type
+(30581, 4415, 9), -- Weapon Type
+(30581, 4416, 17), -- Races
 -- Tiku
 (30582, 4045, 1), -- Resist Full Magic Attack
-(30582, 4408, 1), -- HP Increase (1x)
-(30582, 4409, 1), -- MP Increase (1x)
-(30582, 4410, 16), -- Very Strong P. Atk.
-(30582, 4411, 16), -- Very Strong M. Atk.
-(30582, 4412, 16), -- Very Strong P. Def.
-(30582, 4413, 16), -- Very Strong M. Def.
-(30582, 4414, 2), -- Standard Type
-(30582, 4415, 3), -- One-handed Sword
-(30582, 4416, 17), -- Orcs
+(30582, 4408, 1), -- HP Modifiers
+(30582, 4409, 1), -- MP Modifiers
+(30582, 4410, 16), -- P. Atk. Modifiers
+(30582, 4411, 16), -- M. Atk. Modifiers
+(30582, 4412, 16), -- P. Def. Modifiers
+(30582, 4413, 16), -- M. Def. Modifiers
+(30582, 4414, 2), -- Armor Type
+(30582, 4415, 3), -- Weapon Type
+(30582, 4416, 17), -- Races
 -- Petukai
 (30583, 4045, 1), -- Resist Full Magic Attack
-(30583, 4408, 1), -- HP Increase (1x)
-(30583, 4409, 1), -- MP Increase (1x)
-(30583, 4410, 16), -- Very Strong P. Atk.
-(30583, 4411, 16), -- Very Strong M. Atk.
-(30583, 4412, 16), -- Very Strong P. Def.
-(30583, 4413, 16), -- Very Strong M. Def.
-(30583, 4414, 2), -- Standard Type
-(30583, 4415, 3), -- One-handed Sword
-(30583, 4416, 17), -- Orcs
+(30583, 4408, 1), -- HP Modifiers
+(30583, 4409, 1), -- MP Modifiers
+(30583, 4410, 16), -- P. Atk. Modifiers
+(30583, 4411, 16), -- M. Atk. Modifiers
+(30583, 4412, 16), -- P. Def. Modifiers
+(30583, 4413, 16), -- M. Def. Modifiers
+(30583, 4414, 2), -- Armor Type
+(30583, 4415, 3), -- Weapon Type
+(30583, 4416, 17), -- Races
 -- Vapook
 (30584, 4045, 1), -- Resist Full Magic Attack
-(30584, 4408, 1), -- HP Increase (1x)
-(30584, 4409, 1), -- MP Increase (1x)
-(30584, 4410, 16), -- Very Strong P. Atk.
-(30584, 4411, 16), -- Very Strong M. Atk.
-(30584, 4412, 16), -- Very Strong P. Def.
-(30584, 4413, 16), -- Very Strong M. Def.
-(30584, 4414, 2), -- Standard Type
-(30584, 4415, 3), -- One-handed Sword
-(30584, 4416, 17), -- Orcs
+(30584, 4408, 1), -- HP Modifiers
+(30584, 4409, 1), -- MP Modifiers
+(30584, 4410, 16), -- P. Atk. Modifiers
+(30584, 4411, 16), -- M. Atk. Modifiers
+(30584, 4412, 16), -- P. Def. Modifiers
+(30584, 4413, 16), -- M. Def. Modifiers
+(30584, 4414, 2), -- Armor Type
+(30584, 4415, 3), -- Weapon Type
+(30584, 4416, 17), -- Races
 -- Tataru Zu Hestui
 (30585, 4045, 1), -- Resist Full Magic Attack
-(30585, 4408, 1), -- HP Increase (1x)
-(30585, 4409, 1), -- MP Increase (1x)
-(30585, 4410, 11), -- Average P. Atk.
-(30585, 4411, 11), -- Average M. Atk.
-(30585, 4412, 11), -- Average P. Def.
-(30585, 4413, 11), -- Average M. Def.
-(30585, 4414, 2), -- Standard Type
-(30585, 4415, 3), -- One-handed Sword
-(30585, 4416, 17), -- Orcs
+(30585, 4408, 1), -- HP Modifiers
+(30585, 4409, 1), -- MP Modifiers
+(30585, 4410, 11), -- P. Atk. Modifiers
+(30585, 4411, 11), -- M. Atk. Modifiers
+(30585, 4412, 11), -- P. Def. Modifiers
+(30585, 4413, 11), -- M. Def. Modifiers
+(30585, 4414, 2), -- Armor Type
+(30585, 4415, 3), -- Weapon Type
+(30585, 4416, 17), -- Races
 -- Anai Zu Neruga
 (30586, 4045, 1), -- Resist Full Magic Attack
-(30586, 4408, 1), -- HP Increase (1x)
-(30586, 4409, 1), -- MP Increase (1x)
-(30586, 4410, 11), -- Average P. Atk.
-(30586, 4411, 11), -- Average M. Atk.
-(30586, 4412, 11), -- Average P. Def.
-(30586, 4413, 11), -- Average M. Def.
-(30586, 4414, 2), -- Standard Type
-(30586, 4415, 3), -- One-handed Sword
-(30586, 4416, 17), -- Orcs
+(30586, 4408, 1), -- HP Modifiers
+(30586, 4409, 1), -- MP Modifiers
+(30586, 4410, 11), -- P. Atk. Modifiers
+(30586, 4411, 11), -- M. Atk. Modifiers
+(30586, 4412, 11), -- P. Def. Modifiers
+(30586, 4413, 11), -- M. Def. Modifiers
+(30586, 4414, 2), -- Armor Type
+(30586, 4415, 3), -- Weapon Type
+(30586, 4416, 17), -- Races
 -- Gantaki Zu Urutu
 (30587, 4045, 1), -- Resist Full Magic Attack
-(30587, 4408, 1), -- HP Increase (1x)
-(30587, 4409, 1), -- MP Increase (1x)
-(30587, 4410, 11), -- Average P. Atk.
-(30587, 4411, 11), -- Average M. Atk.
-(30587, 4412, 11), -- Average P. Def.
-(30587, 4413, 11), -- Average M. Def.
-(30587, 4414, 2), -- Standard Type
-(30587, 4415, 3), -- One-handed Sword
-(30587, 4416, 17), -- Orcs
+(30587, 4408, 1), -- HP Modifiers
+(30587, 4409, 1), -- MP Modifiers
+(30587, 4410, 11), -- P. Atk. Modifiers
+(30587, 4411, 11), -- M. Atk. Modifiers
+(30587, 4412, 11), -- P. Def. Modifiers
+(30587, 4413, 11), -- M. Def. Modifiers
+(30587, 4414, 2), -- Armor Type
+(30587, 4415, 3), -- Weapon Type
+(30587, 4416, 17), -- Races
 -- Takia Zu Duda-Mara
 (30588, 4045, 1), -- Resist Full Magic Attack
-(30588, 4408, 1), -- HP Increase (1x)
-(30588, 4409, 1), -- MP Increase (1x)
-(30588, 4410, 11), -- Average P. Atk.
-(30588, 4411, 11), -- Average M. Atk.
-(30588, 4412, 11), -- Average P. Def.
-(30588, 4413, 11), -- Average M. Def.
-(30588, 4414, 2), -- Standard Type
-(30588, 4415, 3), -- One-handed Sword
-(30588, 4416, 17), -- Orcs
+(30588, 4408, 1), -- HP Modifiers
+(30588, 4409, 1), -- MP Modifiers
+(30588, 4410, 11), -- P. Atk. Modifiers
+(30588, 4411, 11), -- M. Atk. Modifiers
+(30588, 4412, 11), -- P. Def. Modifiers
+(30588, 4413, 11), -- M. Def. Modifiers
+(30588, 4414, 2), -- Armor Type
+(30588, 4415, 3), -- Weapon Type
+(30588, 4416, 17), -- Races
 -- Kazkin Zu Gandi
 (30589, 4045, 1), -- Resist Full Magic Attack
-(30589, 4408, 1), -- HP Increase (1x)
-(30589, 4409, 1), -- MP Increase (1x)
-(30589, 4410, 11), -- Average P. Atk.
-(30589, 4411, 11), -- Average M. Atk.
-(30589, 4412, 11), -- Average P. Def.
-(30589, 4413, 11), -- Average M. Def.
-(30589, 4414, 2), -- Standard Type
-(30589, 4415, 3), -- One-handed Sword
-(30589, 4416, 17), -- Orcs
+(30589, 4408, 1), -- HP Modifiers
+(30589, 4409, 1), -- MP Modifiers
+(30589, 4410, 11), -- P. Atk. Modifiers
+(30589, 4411, 11), -- M. Atk. Modifiers
+(30589, 4412, 11), -- P. Def. Modifiers
+(30589, 4413, 11), -- M. Def. Modifiers
+(30589, 4414, 2), -- Armor Type
+(30589, 4415, 3), -- Weapon Type
+(30589, 4416, 17), -- Races
 -- Rosheek
 (30590, 4045, 1), -- Resist Full Magic Attack
-(30590, 4408, 1), -- HP Increase (1x)
-(30590, 4409, 1), -- MP Increase (1x)
-(30590, 4410, 11), -- Average P. Atk.
-(30590, 4411, 11), -- Average M. Atk.
-(30590, 4412, 11), -- Average P. Def.
-(30590, 4413, 11), -- Average M. Def.
-(30590, 4414, 2), -- Standard Type
-(30590, 4415, 3), -- One-handed Sword
-(30590, 4416, 17), -- Orcs
+(30590, 4408, 1), -- HP Modifiers
+(30590, 4409, 1), -- MP Modifiers
+(30590, 4410, 11), -- P. Atk. Modifiers
+(30590, 4411, 11), -- M. Atk. Modifiers
+(30590, 4412, 11), -- P. Def. Modifiers
+(30590, 4413, 11), -- M. Def. Modifiers
+(30590, 4414, 2), -- Armor Type
+(30590, 4415, 3), -- Weapon Type
+(30590, 4416, 17), -- Races
 -- Toruku
 (30591, 4045, 1), -- Resist Full Magic Attack
-(30591, 4408, 1), -- HP Increase (1x)
-(30591, 4409, 1), -- MP Increase (1x)
-(30591, 4410, 11), -- Average P. Atk.
-(30591, 4411, 11), -- Average M. Atk.
-(30591, 4412, 11), -- Average P. Def.
-(30591, 4413, 11), -- Average M. Def.
-(30591, 4414, 2), -- Standard Type
-(30591, 4415, 3), -- One-handed Sword
-(30591, 4416, 17), -- Orcs
+(30591, 4408, 1), -- HP Modifiers
+(30591, 4409, 1), -- MP Modifiers
+(30591, 4410, 11), -- P. Atk. Modifiers
+(30591, 4411, 11), -- M. Atk. Modifiers
+(30591, 4412, 11), -- P. Def. Modifiers
+(30591, 4413, 11), -- M. Def. Modifiers
+(30591, 4414, 2), -- Armor Type
+(30591, 4415, 3), -- Weapon Type
+(30591, 4416, 17), -- Races
 -- Hestui Totem Spirit
 (30592, 4045, 1), -- Resist Full Magic Attack
-(30592, 4408, 1), -- HP Increase (1x)
-(30592, 4409, 1), -- MP Increase (1x)
-(30592, 4410, 11), -- Average P. Atk.
-(30592, 4411, 11), -- Average M. Atk.
-(30592, 4412, 11), -- Average P. Def.
-(30592, 4413, 11), -- Average M. Def.
-(30592, 4414, 2), -- Standard Type
-(30592, 4415, 3), -- One-handed Sword
-(30592, 4416, 4), -- Animals
+(30592, 4408, 1), -- HP Modifiers
+(30592, 4409, 1), -- MP Modifiers
+(30592, 4410, 11), -- P. Atk. Modifiers
+(30592, 4411, 11), -- M. Atk. Modifiers
+(30592, 4412, 11), -- P. Def. Modifiers
+(30592, 4413, 11), -- M. Def. Modifiers
+(30592, 4414, 2), -- Armor Type
+(30592, 4415, 3), -- Weapon Type
+(30592, 4416, 4), -- Races
 -- Duda-Mara Totem Spirit
 (30593, 4045, 1), -- Resist Full Magic Attack
-(30593, 4408, 1), -- HP Increase (1x)
-(30593, 4409, 1), -- MP Increase (1x)
-(30593, 4410, 11), -- Average P. Atk.
-(30593, 4411, 11), -- Average M. Atk.
-(30593, 4412, 11), -- Average P. Def.
-(30593, 4413, 11), -- Average M. Def.
-(30593, 4414, 2), -- Standard Type
-(30593, 4415, 3), -- One-handed Sword
-(30593, 4416, 12), -- Bugs
+(30593, 4408, 1), -- HP Modifiers
+(30593, 4409, 1), -- MP Modifiers
+(30593, 4410, 11), -- P. Atk. Modifiers
+(30593, 4411, 11), -- M. Atk. Modifiers
+(30593, 4412, 11), -- P. Def. Modifiers
+(30593, 4413, 11), -- M. Def. Modifiers
+(30593, 4414, 2), -- Armor Type
+(30593, 4415, 3), -- Weapon Type
+(30593, 4416, 12), -- Races
 -- Ranspo
 (30594, 4045, 1), -- Resist Full Magic Attack
-(30594, 4408, 1), -- HP Increase (1x)
-(30594, 4409, 1), -- MP Increase (1x)
-(30594, 4410, 11), -- Average P. Atk.
-(30594, 4411, 11), -- Average M. Atk.
-(30594, 4412, 11), -- Average P. Def.
-(30594, 4413, 11), -- Average M. Def.
-(30594, 4414, 2), -- Standard Type
-(30594, 4415, 3), -- One-handed Sword
-(30594, 4416, 18), -- Dwarves
+(30594, 4408, 1), -- HP Modifiers
+(30594, 4409, 1), -- MP Modifiers
+(30594, 4410, 11), -- P. Atk. Modifiers
+(30594, 4411, 11), -- M. Atk. Modifiers
+(30594, 4412, 11), -- P. Def. Modifiers
+(30594, 4413, 11), -- M. Def. Modifiers
+(30594, 4414, 2), -- Armor Type
+(30594, 4415, 3), -- Weapon Type
+(30594, 4416, 18), -- Races
 -- Opix
 (30595, 4045, 1), -- Resist Full Magic Attack
-(30595, 4408, 1), -- HP Increase (1x)
-(30595, 4409, 1), -- MP Increase (1x)
-(30595, 4410, 11), -- Average P. Atk.
-(30595, 4411, 11), -- Average M. Atk.
-(30595, 4412, 11), -- Average P. Def.
-(30595, 4413, 11), -- Average M. Def.
-(30595, 4414, 2), -- Standard Type
-(30595, 4415, 3), -- One-handed Sword
-(30595, 4416, 18), -- Dwarves
+(30595, 4408, 1), -- HP Modifiers
+(30595, 4409, 1), -- MP Modifiers
+(30595, 4410, 11), -- P. Atk. Modifiers
+(30595, 4411, 11), -- M. Atk. Modifiers
+(30595, 4412, 11), -- P. Def. Modifiers
+(30595, 4413, 11), -- M. Def. Modifiers
+(30595, 4414, 2), -- Armor Type
+(30595, 4415, 3), -- Weapon Type
+(30595, 4416, 18), -- Races
 -- Harkel
 (30596, 4045, 1), -- Resist Full Magic Attack
-(30596, 4408, 1), -- HP Increase (1x)
-(30596, 4409, 1), -- MP Increase (1x)
-(30596, 4410, 11), -- Average P. Atk.
-(30596, 4411, 11), -- Average M. Atk.
-(30596, 4412, 11), -- Average P. Def.
-(30596, 4413, 11), -- Average M. Def.
-(30596, 4414, 2), -- Standard Type
-(30596, 4415, 3), -- One-handed Sword
-(30596, 4416, 6), -- Humanoids
+(30596, 4408, 1), -- HP Modifiers
+(30596, 4409, 1), -- MP Modifiers
+(30596, 4410, 11), -- P. Atk. Modifiers
+(30596, 4411, 11), -- M. Atk. Modifiers
+(30596, 4412, 11), -- P. Def. Modifiers
+(30596, 4413, 11), -- M. Def. Modifiers
+(30596, 4414, 2), -- Armor Type
+(30596, 4415, 3), -- Weapon Type
+(30596, 4416, 6), -- Races
 -- Piotur
 (30597, 4045, 1), -- Resist Full Magic Attack
-(30597, 4408, 1), -- HP Increase (1x)
-(30597, 4409, 1), -- MP Increase (1x)
-(30597, 4410, 11), -- Average P. Atk.
-(30597, 4411, 11), -- Average M. Atk.
-(30597, 4412, 11), -- Average P. Def.
-(30597, 4413, 11), -- Average M. Def.
-(30597, 4414, 2), -- Standard Type
-(30597, 4415, 3), -- One-handed Sword
-(30597, 4416, 14), -- Humans
+(30597, 4408, 1), -- HP Modifiers
+(30597, 4409, 1), -- MP Modifiers
+(30597, 4410, 11), -- P. Atk. Modifiers
+(30597, 4411, 11), -- M. Atk. Modifiers
+(30597, 4412, 11), -- P. Def. Modifiers
+(30597, 4413, 11), -- M. Def. Modifiers
+(30597, 4414, 2), -- Armor Type
+(30597, 4415, 3), -- Weapon Type
+(30597, 4416, 14), -- Races
 -- Newbie Helper
 (30598, 4045, 1), -- Resist Full Magic Attack
-(30598, 4408, 1), -- HP Increase (1x)
-(30598, 4409, 1), -- MP Increase (1x)
-(30598, 4410, 11), -- Average P. Atk.
-(30598, 4411, 11), -- Average M. Atk.
-(30598, 4412, 11), -- Average P. Def.
-(30598, 4413, 11), -- Average M. Def.
-(30598, 4414, 2), -- Standard Type
-(30598, 4415, 3), -- One-handed Sword
-(30598, 4416, 14), -- Humans
+(30598, 4408, 1), -- HP Modifiers
+(30598, 4409, 1), -- MP Modifiers
+(30598, 4410, 11), -- P. Atk. Modifiers
+(30598, 4411, 11), -- M. Atk. Modifiers
+(30598, 4412, 11), -- P. Def. Modifiers
+(30598, 4413, 11), -- M. Def. Modifiers
+(30598, 4414, 2), -- Armor Type
+(30598, 4415, 3), -- Weapon Type
+(30598, 4416, 14), -- Races
 -- Newbie Helper
 (30599, 4045, 1), -- Resist Full Magic Attack
-(30599, 4408, 1), -- HP Increase (1x)
-(30599, 4409, 1), -- MP Increase (1x)
-(30599, 4410, 11), -- Average P. Atk.
-(30599, 4411, 11), -- Average M. Atk.
-(30599, 4412, 11), -- Average P. Def.
-(30599, 4413, 11), -- Average M. Def.
-(30599, 4414, 2), -- Standard Type
-(30599, 4415, 3), -- One-handed Sword
-(30599, 4416, 15), -- Elves
+(30599, 4408, 1), -- HP Modifiers
+(30599, 4409, 1), -- MP Modifiers
+(30599, 4410, 11), -- P. Atk. Modifiers
+(30599, 4411, 11), -- M. Atk. Modifiers
+(30599, 4412, 11), -- P. Def. Modifiers
+(30599, 4413, 11), -- M. Def. Modifiers
+(30599, 4414, 2), -- Armor Type
+(30599, 4415, 3), -- Weapon Type
+(30599, 4416, 15), -- Races
 -- Newbie Helper
 (30600, 4045, 1), -- Resist Full Magic Attack
-(30600, 4408, 1), -- HP Increase (1x)
-(30600, 4409, 1), -- MP Increase (1x)
-(30600, 4410, 11), -- Average P. Atk.
-(30600, 4411, 11), -- Average M. Atk.
-(30600, 4412, 11), -- Average P. Def.
-(30600, 4413, 11), -- Average M. Def.
-(30600, 4414, 2), -- Standard Type
-(30600, 4415, 3), -- One-handed Sword
-(30600, 4416, 16), -- Dark Elves
+(30600, 4408, 1), -- HP Modifiers
+(30600, 4409, 1), -- MP Modifiers
+(30600, 4410, 11), -- P. Atk. Modifiers
+(30600, 4411, 11), -- M. Atk. Modifiers
+(30600, 4412, 11), -- P. Def. Modifiers
+(30600, 4413, 11), -- M. Def. Modifiers
+(30600, 4414, 2), -- Armor Type
+(30600, 4415, 3), -- Weapon Type
+(30600, 4416, 16), -- Races
 -- Newbie Helper
 (30601, 4045, 1), -- Resist Full Magic Attack
-(30601, 4408, 1), -- HP Increase (1x)
-(30601, 4409, 1), -- MP Increase (1x)
-(30601, 4410, 11), -- Average P. Atk.
-(30601, 4411, 11), -- Average M. Atk.
-(30601, 4412, 11), -- Average P. Def.
-(30601, 4413, 11), -- Average M. Def.
-(30601, 4414, 2), -- Standard Type
-(30601, 4415, 3), -- One-handed Sword
-(30601, 4416, 18), -- Dwarves
+(30601, 4408, 1), -- HP Modifiers
+(30601, 4409, 1), -- MP Modifiers
+(30601, 4410, 11), -- P. Atk. Modifiers
+(30601, 4411, 11), -- M. Atk. Modifiers
+(30601, 4412, 11), -- P. Def. Modifiers
+(30601, 4413, 11), -- M. Def. Modifiers
+(30601, 4414, 2), -- Armor Type
+(30601, 4415, 3), -- Weapon Type
+(30601, 4416, 18), -- Races
 -- Newbie Helper
 (30602, 4045, 1), -- Resist Full Magic Attack
-(30602, 4408, 1), -- HP Increase (1x)
-(30602, 4409, 1), -- MP Increase (1x)
-(30602, 4410, 11), -- Average P. Atk.
-(30602, 4411, 11), -- Average M. Atk.
-(30602, 4412, 11), -- Average P. Def.
-(30602, 4413, 11), -- Average M. Def.
-(30602, 4414, 2), -- Standard Type
-(30602, 4415, 3), -- One-handed Sword
-(30602, 4416, 17), -- Orcs
+(30602, 4408, 1), -- HP Modifiers
+(30602, 4409, 1), -- MP Modifiers
+(30602, 4410, 11), -- P. Atk. Modifiers
+(30602, 4411, 11), -- M. Atk. Modifiers
+(30602, 4412, 11), -- P. Def. Modifiers
+(30602, 4413, 11), -- M. Def. Modifiers
+(30602, 4414, 2), -- Armor Type
+(30602, 4415, 3), -- Weapon Type
+(30602, 4416, 17), -- Races
 -- Maria
 (30608, 4045, 1), -- Resist Full Magic Attack
-(30608, 4408, 1), -- HP Increase (1x)
-(30608, 4409, 1), -- MP Increase (1x)
-(30608, 4410, 11), -- Average P. Atk.
-(30608, 4411, 11), -- Average M. Atk.
-(30608, 4412, 11), -- Average P. Def.
-(30608, 4413, 11), -- Average M. Def.
-(30608, 4414, 2), -- Standard Type
-(30608, 4415, 3), -- One-handed Sword
-(30608, 4416, 14), -- Humans
+(30608, 4408, 1), -- HP Modifiers
+(30608, 4409, 1), -- MP Modifiers
+(30608, 4410, 11), -- P. Atk. Modifiers
+(30608, 4411, 11), -- M. Atk. Modifiers
+(30608, 4412, 11), -- P. Def. Modifiers
+(30608, 4413, 11), -- M. Def. Modifiers
+(30608, 4414, 2), -- Armor Type
+(30608, 4415, 3), -- Weapon Type
+(30608, 4416, 14), -- Races
 -- Creta
 (30609, 4045, 1), -- Resist Full Magic Attack
-(30609, 4408, 1), -- HP Increase (1x)
-(30609, 4409, 1), -- MP Increase (1x)
-(30609, 4410, 11), -- Average P. Atk.
-(30609, 4411, 11), -- Average M. Atk.
-(30609, 4412, 11), -- Average P. Def.
-(30609, 4413, 11), -- Average M. Def.
-(30609, 4414, 2), -- Standard Type
-(30609, 4415, 3), -- One-handed Sword
-(30609, 4416, 14), -- Humans
+(30609, 4408, 1), -- HP Modifiers
+(30609, 4409, 1), -- MP Modifiers
+(30609, 4410, 11), -- P. Atk. Modifiers
+(30609, 4411, 11), -- M. Atk. Modifiers
+(30609, 4412, 11), -- P. Def. Modifiers
+(30609, 4413, 11), -- M. Def. Modifiers
+(30609, 4414, 2), -- Armor Type
+(30609, 4415, 3), -- Weapon Type
+(30609, 4416, 14), -- Races
 -- Cronos
 (30610, 4045, 1), -- Resist Full Magic Attack
-(30610, 4408, 1), -- HP Increase (1x)
-(30610, 4409, 1), -- MP Increase (1x)
-(30610, 4410, 11), -- Average P. Atk.
-(30610, 4411, 11), -- Average M. Atk.
-(30610, 4412, 11), -- Average P. Def.
-(30610, 4413, 11), -- Average M. Def.
-(30610, 4414, 2), -- Standard Type
-(30610, 4415, 3), -- One-handed Sword
-(30610, 4416, 14), -- Humans
+(30610, 4408, 1), -- HP Modifiers
+(30610, 4409, 1), -- MP Modifiers
+(30610, 4410, 11), -- P. Atk. Modifiers
+(30610, 4411, 11), -- M. Atk. Modifiers
+(30610, 4412, 11), -- P. Def. Modifiers
+(30610, 4413, 11), -- M. Def. Modifiers
+(30610, 4414, 2), -- Armor Type
+(30610, 4415, 3), -- Weapon Type
+(30610, 4416, 14), -- Races
 -- Triff
 (30611, 4045, 1), -- Resist Full Magic Attack
-(30611, 4408, 1), -- HP Increase (1x)
-(30611, 4409, 1), -- MP Increase (1x)
-(30611, 4410, 11), -- Average P. Atk.
-(30611, 4411, 11), -- Average M. Atk.
-(30611, 4412, 11), -- Average P. Def.
-(30611, 4413, 11), -- Average M. Def.
-(30611, 4414, 2), -- Standard Type
-(30611, 4415, 3), -- One-handed Sword
-(30611, 4416, 18), -- Dwarves
+(30611, 4408, 1), -- HP Modifiers
+(30611, 4409, 1), -- MP Modifiers
+(30611, 4410, 11), -- P. Atk. Modifiers
+(30611, 4411, 11), -- M. Atk. Modifiers
+(30611, 4412, 11), -- P. Def. Modifiers
+(30611, 4413, 11), -- M. Def. Modifiers
+(30611, 4414, 2), -- Armor Type
+(30611, 4415, 3), -- Weapon Type
+(30611, 4416, 18), -- Races
 -- Casian
 (30612, 4045, 1), -- Resist Full Magic Attack
-(30612, 4408, 1), -- HP Increase (1x)
-(30612, 4409, 1), -- MP Increase (1x)
-(30612, 4410, 11), -- Average P. Atk.
-(30612, 4411, 11), -- Average M. Atk.
-(30612, 4412, 11), -- Average P. Def.
-(30612, 4413, 11), -- Average M. Def.
-(30612, 4414, 2), -- Standard Type
-(30612, 4415, 3), -- One-handed Sword
-(30612, 4416, 14), -- Humans
+(30612, 4408, 1), -- HP Modifiers
+(30612, 4409, 1), -- MP Modifiers
+(30612, 4410, 11), -- P. Atk. Modifiers
+(30612, 4411, 11), -- M. Atk. Modifiers
+(30612, 4412, 11), -- P. Def. Modifiers
+(30612, 4413, 11), -- M. Def. Modifiers
+(30612, 4414, 2), -- Armor Type
+(30612, 4415, 3), -- Weapon Type
+(30612, 4416, 14), -- Races
 -- Alders Spirit
 (30613, 4045, 1), -- Resist Full Magic Attack
-(30613, 4408, 1), -- HP Increase (1x)
-(30613, 4409, 1), -- MP Increase (1x)
-(30613, 4410, 11), -- Average P. Atk.
-(30613, 4411, 11), -- Average M. Atk.
-(30613, 4412, 11), -- Average P. Def.
-(30613, 4413, 11), -- Average M. Def.
-(30613, 4414, 2), -- Standard Type
-(30613, 4415, 3), -- One-handed Sword
-(30613, 4416, 1), -- Undead
+(30613, 4408, 1), -- HP Modifiers
+(30613, 4409, 1), -- MP Modifiers
+(30613, 4410, 11), -- P. Atk. Modifiers
+(30613, 4411, 11), -- M. Atk. Modifiers
+(30613, 4412, 11), -- P. Def. Modifiers
+(30613, 4413, 11), -- M. Def. Modifiers
+(30613, 4414, 2), -- Armor Type
+(30613, 4415, 3), -- Weapon Type
+(30613, 4416, 1), -- Races
 -- Metheus
 (30614, 4045, 1), -- Resist Full Magic Attack
-(30614, 4408, 1), -- HP Increase (1x)
-(30614, 4409, 1), -- MP Increase (1x)
-(30614, 4410, 11), -- Average P. Atk.
-(30614, 4411, 11), -- Average M. Atk.
-(30614, 4412, 11), -- Average P. Def.
-(30614, 4413, 11), -- Average M. Def.
-(30614, 4414, 2), -- Standard Type
-(30614, 4415, 3), -- One-handed Sword
-(30614, 4416, 14), -- Humans
+(30614, 4408, 1), -- HP Modifiers
+(30614, 4409, 1), -- MP Modifiers
+(30614, 4410, 11), -- P. Atk. Modifiers
+(30614, 4411, 11), -- M. Atk. Modifiers
+(30614, 4412, 11), -- P. Def. Modifiers
+(30614, 4413, 11), -- M. Def. Modifiers
+(30614, 4414, 2), -- Armor Type
+(30614, 4415, 3), -- Weapon Type
+(30614, 4416, 14), -- Races
 -- Voltar
 (30615, 4045, 1), -- Resist Full Magic Attack
-(30615, 4408, 1), -- HP Increase (1x)
-(30615, 4409, 1), -- MP Increase (1x)
-(30615, 4410, 11), -- Average P. Atk.
-(30615, 4411, 11), -- Average M. Atk.
-(30615, 4412, 11), -- Average P. Def.
-(30615, 4413, 11), -- Average M. Def.
-(30615, 4414, 2), -- Standard Type
-(30615, 4415, 3), -- One-handed Sword
-(30615, 4416, 6), -- Humanoids
+(30615, 4408, 1), -- HP Modifiers
+(30615, 4409, 1), -- MP Modifiers
+(30615, 4410, 11), -- P. Atk. Modifiers
+(30615, 4411, 11), -- M. Atk. Modifiers
+(30615, 4412, 11), -- P. Def. Modifiers
+(30615, 4413, 11), -- M. Def. Modifiers
+(30615, 4414, 2), -- Armor Type
+(30615, 4415, 3), -- Weapon Type
+(30615, 4416, 6), -- Races
 -- Kepra
 (30616, 4045, 1), -- Resist Full Magic Attack
-(30616, 4408, 1), -- HP Increase (1x)
-(30616, 4409, 1), -- MP Increase (1x)
-(30616, 4410, 11), -- Average P. Atk.
-(30616, 4411, 11), -- Average M. Atk.
-(30616, 4412, 11), -- Average P. Def.
-(30616, 4413, 11), -- Average M. Def.
-(30616, 4414, 2), -- Standard Type
-(30616, 4415, 3), -- One-handed Sword
-(30616, 4416, 6), -- Humanoids
+(30616, 4408, 1), -- HP Modifiers
+(30616, 4409, 1), -- MP Modifiers
+(30616, 4410, 11), -- P. Atk. Modifiers
+(30616, 4411, 11), -- M. Atk. Modifiers
+(30616, 4412, 11), -- P. Def. Modifiers
+(30616, 4413, 11), -- M. Def. Modifiers
+(30616, 4414, 2), -- Armor Type
+(30616, 4415, 3), -- Weapon Type
+(30616, 4416, 6), -- Races
 -- Burai
 (30617, 4045, 1), -- Resist Full Magic Attack
-(30617, 4408, 1), -- HP Increase (1x)
-(30617, 4409, 1), -- MP Increase (1x)
-(30617, 4410, 11), -- Average P. Atk.
-(30617, 4411, 11), -- Average M. Atk.
-(30617, 4412, 11), -- Average P. Def.
-(30617, 4413, 11), -- Average M. Def.
-(30617, 4414, 2), -- Standard Type
-(30617, 4415, 3), -- One-handed Sword
-(30617, 4416, 6), -- Humanoids
+(30617, 4408, 1), -- HP Modifiers
+(30617, 4409, 1), -- MP Modifiers
+(30617, 4410, 11), -- P. Atk. Modifiers
+(30617, 4411, 11), -- M. Atk. Modifiers
+(30617, 4412, 11), -- P. Def. Modifiers
+(30617, 4413, 11), -- M. Def. Modifiers
+(30617, 4414, 2), -- Armor Type
+(30617, 4415, 3), -- Weapon Type
+(30617, 4416, 6), -- Races
 -- Harak
 (30618, 4045, 1), -- Resist Full Magic Attack
-(30618, 4408, 1), -- HP Increase (1x)
-(30618, 4409, 1), -- MP Increase (1x)
-(30618, 4410, 11), -- Average P. Atk.
-(30618, 4411, 11), -- Average M. Atk.
-(30618, 4412, 11), -- Average P. Def.
-(30618, 4413, 11), -- Average M. Def.
-(30618, 4414, 2), -- Standard Type
-(30618, 4415, 3), -- One-handed Sword
-(30618, 4416, 6), -- Humanoids
+(30618, 4408, 1), -- HP Modifiers
+(30618, 4409, 1), -- MP Modifiers
+(30618, 4410, 11), -- P. Atk. Modifiers
+(30618, 4411, 11), -- M. Atk. Modifiers
+(30618, 4412, 11), -- P. Def. Modifiers
+(30618, 4413, 11), -- M. Def. Modifiers
+(30618, 4414, 2), -- Armor Type
+(30618, 4415, 3), -- Weapon Type
+(30618, 4416, 6), -- Races
 -- Driko
 (30619, 4045, 1), -- Resist Full Magic Attack
-(30619, 4408, 1), -- HP Increase (1x)
-(30619, 4409, 1), -- MP Increase (1x)
-(30619, 4410, 11), -- Average P. Atk.
-(30619, 4411, 11), -- Average M. Atk.
-(30619, 4412, 11), -- Average P. Def.
-(30619, 4413, 11), -- Average M. Def.
-(30619, 4414, 2), -- Standard Type
-(30619, 4415, 3), -- One-handed Sword
-(30619, 4416, 6), -- Humanoids
+(30619, 4408, 1), -- HP Modifiers
+(30619, 4409, 1), -- MP Modifiers
+(30619, 4410, 11), -- P. Atk. Modifiers
+(30619, 4411, 11), -- M. Atk. Modifiers
+(30619, 4412, 11), -- P. Def. Modifiers
+(30619, 4413, 11), -- M. Def. Modifiers
+(30619, 4414, 2), -- Armor Type
+(30619, 4415, 3), -- Weapon Type
+(30619, 4416, 6), -- Races
 -- Emily
 (30620, 4045, 1), -- Resist Full Magic Attack
-(30620, 4408, 1), -- HP Increase (1x)
-(30620, 4409, 1), -- MP Increase (1x)
-(30620, 4410, 11), -- Average P. Atk.
-(30620, 4411, 11), -- Average M. Atk.
-(30620, 4412, 11), -- Average P. Def.
-(30620, 4413, 11), -- Average M. Def.
-(30620, 4414, 2), -- Standard Type
-(30620, 4415, 3), -- One-handed Sword
-(30620, 4416, 14), -- Humans
+(30620, 4408, 1), -- HP Modifiers
+(30620, 4409, 1), -- MP Modifiers
+(30620, 4410, 11), -- P. Atk. Modifiers
+(30620, 4411, 11), -- M. Atk. Modifiers
+(30620, 4412, 11), -- P. Def. Modifiers
+(30620, 4413, 11), -- M. Def. Modifiers
+(30620, 4414, 2), -- Armor Type
+(30620, 4415, 3), -- Weapon Type
+(30620, 4416, 14), -- Races
 -- Nikola
 (30621, 4045, 1), -- Resist Full Magic Attack
-(30621, 4408, 1), -- HP Increase (1x)
-(30621, 4409, 1), -- MP Increase (1x)
-(30621, 4410, 11), -- Average P. Atk.
-(30621, 4411, 11), -- Average M. Atk.
-(30621, 4412, 11), -- Average P. Def.
-(30621, 4413, 11), -- Average M. Def.
-(30621, 4414, 2), -- Standard Type
-(30621, 4415, 3), -- One-handed Sword
-(30621, 4416, 18), -- Dwarves
+(30621, 4408, 1), -- HP Modifiers
+(30621, 4409, 1), -- MP Modifiers
+(30621, 4410, 11), -- P. Atk. Modifiers
+(30621, 4411, 11), -- M. Atk. Modifiers
+(30621, 4412, 11), -- P. Def. Modifiers
+(30621, 4413, 11), -- M. Def. Modifiers
+(30621, 4414, 2), -- Armor Type
+(30621, 4415, 3), -- Weapon Type
+(30621, 4416, 18), -- Races
 -- Box Of Titan
 (30622, 4045, 1), -- Resist Full Magic Attack
-(30622, 4390, 1), -- Mystic Immunity
-(30622, 4408, 1), -- HP Increase (1x)
-(30622, 4409, 1), -- MP Increase (1x)
-(30622, 4410, 11), -- Average P. Atk.
-(30622, 4411, 11), -- Average M. Atk.
-(30622, 4412, 11), -- Average P. Def.
-(30622, 4413, 11), -- Average M. Def.
-(30622, 4414, 2), -- Standard Type
-(30622, 4415, 3), -- One-handed Sword
-(30622, 4416, 19), -- Others
+(30622, 4390, 1), -- NPC Abnormal Immunity
+(30622, 4408, 1), -- HP Modifiers
+(30622, 4409, 1), -- MP Modifiers
+(30622, 4410, 11), -- P. Atk. Modifiers
+(30622, 4411, 11), -- M. Atk. Modifiers
+(30622, 4412, 11), -- P. Def. Modifiers
+(30622, 4413, 11), -- M. Def. Modifiers
+(30622, 4414, 2), -- Armor Type
+(30622, 4415, 3), -- Weapon Type
+(30622, 4416, 19), -- Races
 -- Kaien
 (30623, 4045, 1), -- Resist Full Magic Attack
-(30623, 4408, 1), -- HP Increase (1x)
-(30623, 4409, 1), -- MP Increase (1x)
-(30623, 4410, 11), -- Average P. Atk.
-(30623, 4411, 11), -- Average M. Atk.
-(30623, 4412, 11), -- Average P. Def.
-(30623, 4413, 11), -- Average M. Def.
-(30623, 4414, 2), -- Standard Type
-(30623, 4415, 3), -- One-handed Sword
-(30623, 4416, 14), -- Humans
+(30623, 4408, 1), -- HP Modifiers
+(30623, 4409, 1), -- MP Modifiers
+(30623, 4410, 11), -- P. Atk. Modifiers
+(30623, 4411, 11), -- M. Atk. Modifiers
+(30623, 4412, 11), -- P. Def. Modifiers
+(30623, 4413, 11), -- M. Def. Modifiers
+(30623, 4414, 2), -- Armor Type
+(30623, 4415, 3), -- Weapon Type
+(30623, 4416, 14), -- Races
 -- Ascalon
 (30624, 4045, 1), -- Resist Full Magic Attack
-(30624, 4408, 1), -- HP Increase (1x)
-(30624, 4409, 1), -- MP Increase (1x)
-(30624, 4410, 11), -- Average P. Atk.
-(30624, 4411, 11), -- Average M. Atk.
-(30624, 4412, 11), -- Average P. Def.
-(30624, 4413, 11), -- Average M. Def.
-(30624, 4414, 2), -- Standard Type
-(30624, 4415, 3), -- One-handed Sword
-(30624, 4416, 14), -- Humans
+(30624, 4408, 1), -- HP Modifiers
+(30624, 4409, 1), -- MP Modifiers
+(30624, 4410, 11), -- P. Atk. Modifiers
+(30624, 4411, 11), -- M. Atk. Modifiers
+(30624, 4412, 11), -- P. Def. Modifiers
+(30624, 4413, 11), -- M. Def. Modifiers
+(30624, 4414, 2), -- Armor Type
+(30624, 4415, 3), -- Weapon Type
+(30624, 4416, 14), -- Races
 -- Mason
 (30625, 4045, 1), -- Resist Full Magic Attack
-(30625, 4408, 1), -- HP Increase (1x)
-(30625, 4409, 1), -- MP Increase (1x)
-(30625, 4410, 11), -- Average P. Atk.
-(30625, 4411, 11), -- Average M. Atk.
-(30625, 4412, 11), -- Average P. Def.
-(30625, 4413, 11), -- Average M. Def.
-(30625, 4414, 2), -- Standard Type
-(30625, 4415, 3), -- One-handed Sword
-(30625, 4416, 14), -- Humans
+(30625, 4408, 1), -- HP Modifiers
+(30625, 4409, 1), -- MP Modifiers
+(30625, 4410, 11), -- P. Atk. Modifiers
+(30625, 4411, 11), -- M. Atk. Modifiers
+(30625, 4412, 11), -- P. Def. Modifiers
+(30625, 4413, 11), -- M. Def. Modifiers
+(30625, 4414, 2), -- Armor Type
+(30625, 4415, 3), -- Weapon Type
+(30625, 4416, 14), -- Races
 -- Hamil
 (30626, 4045, 1), -- Resist Full Magic Attack
-(30626, 4408, 1), -- HP Increase (1x)
-(30626, 4409, 1), -- MP Increase (1x)
-(30626, 4410, 11), -- Average P. Atk.
-(30626, 4411, 11), -- Average M. Atk.
-(30626, 4412, 11), -- Average P. Def.
-(30626, 4413, 11), -- Average M. Def.
-(30626, 4414, 2), -- Standard Type
-(30626, 4415, 3), -- One-handed Sword
-(30626, 4416, 14), -- Humans
+(30626, 4408, 1), -- HP Modifiers
+(30626, 4409, 1), -- MP Modifiers
+(30626, 4410, 11), -- P. Atk. Modifiers
+(30626, 4411, 11), -- M. Atk. Modifiers
+(30626, 4412, 11), -- P. Def. Modifiers
+(30626, 4413, 11), -- M. Def. Modifiers
+(30626, 4414, 2), -- Armor Type
+(30626, 4415, 3), -- Weapon Type
+(30626, 4416, 14), -- Races
 -- Tree
 (30627, 4045, 1), -- Resist Full Magic Attack
-(30627, 4408, 1), -- HP Increase (1x)
-(30627, 4409, 1), -- MP Increase (1x)
-(30627, 4410, 11), -- Average P. Atk.
-(30627, 4411, 11), -- Average M. Atk.
-(30627, 4412, 11), -- Average P. Def.
-(30627, 4413, 11), -- Average M. Def.
-(30627, 4414, 2), -- Standard Type
-(30627, 4415, 3), -- One-handed Sword
-(30627, 4416, 5), -- Plants
+(30627, 4408, 1), -- HP Modifiers
+(30627, 4409, 1), -- MP Modifiers
+(30627, 4410, 11), -- P. Atk. Modifiers
+(30627, 4411, 11), -- M. Atk. Modifiers
+(30627, 4412, 11), -- P. Def. Modifiers
+(30627, 4413, 11), -- M. Def. Modifiers
+(30627, 4414, 2), -- Armor Type
+(30627, 4415, 3), -- Weapon Type
+(30627, 4416, 5), -- Races
 -- Strong Wooden Chest
 (30628, 4045, 1), -- Resist Full Magic Attack
-(30628, 4390, 1), -- Mystic Immunity
-(30628, 4408, 1), -- HP Increase (1x)
-(30628, 4409, 1), -- MP Increase (1x)
-(30628, 4410, 11), -- Average P. Atk.
-(30628, 4411, 11), -- Average M. Atk.
-(30628, 4412, 11), -- Average P. Def.
-(30628, 4413, 11), -- Average M. Def.
-(30628, 4414, 2), -- Standard Type
-(30628, 4415, 3), -- One-handed Sword
-(30628, 4416, 19), -- Others
+(30628, 4390, 1), -- NPC Abnormal Immunity
+(30628, 4408, 1), -- HP Modifiers
+(30628, 4409, 1), -- MP Modifiers
+(30628, 4410, 11), -- P. Atk. Modifiers
+(30628, 4411, 11), -- M. Atk. Modifiers
+(30628, 4412, 11), -- P. Def. Modifiers
+(30628, 4413, 11), -- M. Def. Modifiers
+(30628, 4414, 2), -- Armor Type
+(30628, 4415, 3), -- Weapon Type
+(30628, 4416, 19), -- Races
 -- Rukal
 (30629, 4045, 1), -- Resist Full Magic Attack
-(30629, 4408, 1), -- HP Increase (1x)
-(30629, 4409, 1), -- MP Increase (1x)
-(30629, 4410, 11), -- Average P. Atk.
-(30629, 4411, 11), -- Average M. Atk.
-(30629, 4412, 11), -- Average P. Def.
-(30629, 4413, 11), -- Average M. Def.
-(30629, 4414, 2), -- Standard Type
-(30629, 4415, 3), -- One-handed Sword
-(30629, 4416, 15), -- Elves
+(30629, 4408, 1), -- HP Modifiers
+(30629, 4409, 1), -- MP Modifiers
+(30629, 4410, 11), -- P. Atk. Modifiers
+(30629, 4411, 11), -- M. Atk. Modifiers
+(30629, 4412, 11), -- P. Def. Modifiers
+(30629, 4413, 11), -- M. Def. Modifiers
+(30629, 4414, 2), -- Armor Type
+(30629, 4415, 3), -- Weapon Type
+(30629, 4416, 15), -- Races
 -- Orim
 (30630, 4045, 1), -- Resist Full Magic Attack
-(30630, 4408, 1), -- HP Increase (1x)
-(30630, 4409, 1), -- MP Increase (1x)
-(30630, 4410, 11), -- Average P. Atk.
-(30630, 4411, 11), -- Average M. Atk.
-(30630, 4412, 11), -- Average P. Def.
-(30630, 4413, 11), -- Average M. Def.
-(30630, 4414, 2), -- Standard Type
-(30630, 4415, 3), -- One-handed Sword
-(30630, 4416, 14), -- Humans
+(30630, 4408, 1), -- HP Modifiers
+(30630, 4409, 1), -- MP Modifiers
+(30630, 4410, 11), -- P. Atk. Modifiers
+(30630, 4411, 11), -- M. Atk. Modifiers
+(30630, 4412, 11), -- P. Def. Modifiers
+(30630, 4413, 11), -- M. Def. Modifiers
+(30630, 4414, 2), -- Armor Type
+(30630, 4415, 3), -- Weapon Type
+(30630, 4416, 14), -- Races
 -- Roderik
 (30631, 4045, 1), -- Resist Full Magic Attack
-(30631, 4408, 1), -- HP Increase (1x)
-(30631, 4409, 1), -- MP Increase (1x)
-(30631, 4410, 11), -- Average P. Atk.
-(30631, 4411, 11), -- Average M. Atk.
-(30631, 4412, 11), -- Average P. Def.
-(30631, 4413, 11), -- Average M. Def.
-(30631, 4414, 2), -- Standard Type
-(30631, 4415, 3), -- One-handed Sword
-(30631, 4416, 14), -- Humans
+(30631, 4408, 1), -- HP Modifiers
+(30631, 4409, 1), -- MP Modifiers
+(30631, 4410, 11), -- P. Atk. Modifiers
+(30631, 4411, 11), -- M. Atk. Modifiers
+(30631, 4412, 11), -- P. Def. Modifiers
+(30631, 4413, 11), -- M. Def. Modifiers
+(30631, 4414, 2), -- Armor Type
+(30631, 4415, 3), -- Weapon Type
+(30631, 4416, 14), -- Races
 -- Endrigo
 (30632, 4045, 1), -- Resist Full Magic Attack
-(30632, 4408, 1), -- HP Increase (1x)
-(30632, 4409, 1), -- MP Increase (1x)
-(30632, 4410, 11), -- Average P. Atk.
-(30632, 4411, 11), -- Average M. Atk.
-(30632, 4412, 11), -- Average P. Def.
-(30632, 4413, 11), -- Average M. Def.
-(30632, 4414, 2), -- Standard Type
-(30632, 4415, 3), -- One-handed Sword
-(30632, 4416, 14), -- Humans
+(30632, 4408, 1), -- HP Modifiers
+(30632, 4409, 1), -- MP Modifiers
+(30632, 4410, 11), -- P. Atk. Modifiers
+(30632, 4411, 11), -- M. Atk. Modifiers
+(30632, 4412, 11), -- P. Def. Modifiers
+(30632, 4413, 11), -- M. Def. Modifiers
+(30632, 4414, 2), -- Armor Type
+(30632, 4415, 3), -- Weapon Type
+(30632, 4416, 14), -- Races
 -- Evert
 (30633, 4045, 1), -- Resist Full Magic Attack
-(30633, 4408, 1), -- HP Increase (1x)
-(30633, 4409, 1), -- MP Increase (1x)
-(30633, 4410, 11), -- Average P. Atk.
-(30633, 4411, 11), -- Average M. Atk.
-(30633, 4412, 11), -- Average P. Def.
-(30633, 4413, 11), -- Average M. Def.
-(30633, 4414, 2), -- Standard Type
-(30633, 4415, 3), -- One-handed Sword
-(30633, 4416, 14), -- Humans
+(30633, 4408, 1), -- HP Modifiers
+(30633, 4409, 1), -- MP Modifiers
+(30633, 4410, 11), -- P. Atk. Modifiers
+(30633, 4411, 11), -- M. Atk. Modifiers
+(30633, 4412, 11), -- P. Def. Modifiers
+(30633, 4413, 11), -- M. Def. Modifiers
+(30633, 4414, 2), -- Armor Type
+(30633, 4415, 3), -- Weapon Type
+(30633, 4416, 14), -- Races
 -- Galatea
 (30634, 4045, 1), -- Resist Full Magic Attack
-(30634, 4408, 1), -- HP Increase (1x)
-(30634, 4409, 1), -- MP Increase (1x)
-(30634, 4410, 11), -- Average P. Atk.
-(30634, 4411, 11), -- Average M. Atk.
-(30634, 4412, 11), -- Average P. Def.
-(30634, 4413, 11), -- Average M. Def.
-(30634, 4414, 2), -- Standard Type
-(30634, 4415, 3), -- One-handed Sword
-(30634, 4416, 14), -- Humans
+(30634, 4408, 1), -- HP Modifiers
+(30634, 4409, 1), -- MP Modifiers
+(30634, 4410, 11), -- P. Atk. Modifiers
+(30634, 4411, 11), -- M. Atk. Modifiers
+(30634, 4412, 11), -- P. Def. Modifiers
+(30634, 4413, 11), -- M. Def. Modifiers
+(30634, 4414, 2), -- Armor Type
+(30634, 4415, 3), -- Weapon Type
+(30634, 4416, 14), -- Races
 -- Almors
 (30635, 4045, 1), -- Resist Full Magic Attack
-(30635, 4408, 1), -- HP Increase (1x)
-(30635, 4409, 1), -- MP Increase (1x)
-(30635, 4410, 11), -- Average P. Atk.
-(30635, 4411, 11), -- Average M. Atk.
-(30635, 4412, 11), -- Average P. Def.
-(30635, 4413, 11), -- Average M. Def.
-(30635, 4414, 2), -- Standard Type
-(30635, 4415, 3), -- One-handed Sword
-(30635, 4416, 14), -- Humans
+(30635, 4408, 1), -- HP Modifiers
+(30635, 4409, 1), -- MP Modifiers
+(30635, 4410, 11), -- P. Atk. Modifiers
+(30635, 4411, 11), -- M. Atk. Modifiers
+(30635, 4412, 11), -- P. Def. Modifiers
+(30635, 4413, 11), -- M. Def. Modifiers
+(30635, 4414, 2), -- Armor Type
+(30635, 4415, 3), -- Weapon Type
+(30635, 4416, 14), -- Races
 -- Camoniell
 (30636, 4045, 1), -- Resist Full Magic Attack
-(30636, 4408, 1), -- HP Increase (1x)
-(30636, 4409, 1), -- MP Increase (1x)
-(30636, 4410, 11), -- Average P. Atk.
-(30636, 4411, 11), -- Average M. Atk.
-(30636, 4412, 11), -- Average P. Def.
-(30636, 4413, 11), -- Average M. Def.
-(30636, 4414, 2), -- Standard Type
-(30636, 4415, 3), -- One-handed Sword
-(30636, 4416, 15), -- Elves
+(30636, 4408, 1), -- HP Modifiers
+(30636, 4409, 1), -- MP Modifiers
+(30636, 4410, 11), -- P. Atk. Modifiers
+(30636, 4411, 11), -- M. Atk. Modifiers
+(30636, 4412, 11), -- P. Def. Modifiers
+(30636, 4413, 11), -- M. Def. Modifiers
+(30636, 4414, 2), -- Armor Type
+(30636, 4415, 3), -- Weapon Type
+(30636, 4416, 15), -- Races
 -- Belthus
 (30637, 4045, 1), -- Resist Full Magic Attack
-(30637, 4408, 1), -- HP Increase (1x)
-(30637, 4409, 1), -- MP Increase (1x)
-(30637, 4410, 11), -- Average P. Atk.
-(30637, 4411, 11), -- Average M. Atk.
-(30637, 4412, 11), -- Average P. Def.
-(30637, 4413, 11), -- Average M. Def.
-(30637, 4414, 2), -- Standard Type
-(30637, 4415, 3), -- One-handed Sword
-(30637, 4416, 16), -- Dark Elves
+(30637, 4408, 1), -- HP Modifiers
+(30637, 4409, 1), -- MP Modifiers
+(30637, 4410, 11), -- P. Atk. Modifiers
+(30637, 4411, 11), -- M. Atk. Modifiers
+(30637, 4412, 11), -- P. Def. Modifiers
+(30637, 4413, 11), -- M. Def. Modifiers
+(30637, 4414, 2), -- Armor Type
+(30637, 4415, 3), -- Weapon Type
+(30637, 4416, 16), -- Races
 -- Basilla
 (30638, 4045, 1), -- Resist Full Magic Attack
-(30638, 4408, 1), -- HP Increase (1x)
-(30638, 4409, 1), -- MP Increase (1x)
-(30638, 4410, 11), -- Average P. Atk.
-(30638, 4411, 11), -- Average M. Atk.
-(30638, 4412, 11), -- Average P. Def.
-(30638, 4413, 11), -- Average M. Def.
-(30638, 4414, 2), -- Standard Type
-(30638, 4415, 3), -- One-handed Sword
-(30638, 4416, 14), -- Humans
+(30638, 4408, 1), -- HP Modifiers
+(30638, 4409, 1), -- MP Modifiers
+(30638, 4410, 11), -- P. Atk. Modifiers
+(30638, 4411, 11), -- M. Atk. Modifiers
+(30638, 4412, 11), -- P. Def. Modifiers
+(30638, 4413, 11), -- M. Def. Modifiers
+(30638, 4414, 2), -- Armor Type
+(30638, 4415, 3), -- Weapon Type
+(30638, 4416, 14), -- Races
 -- Celestiel
 (30639, 4045, 1), -- Resist Full Magic Attack
-(30639, 4408, 1), -- HP Increase (1x)
-(30639, 4409, 1), -- MP Increase (1x)
-(30639, 4410, 11), -- Average P. Atk.
-(30639, 4411, 11), -- Average M. Atk.
-(30639, 4412, 11), -- Average P. Def.
-(30639, 4413, 11), -- Average M. Def.
-(30639, 4414, 2), -- Standard Type
-(30639, 4415, 3), -- One-handed Sword
-(30639, 4416, 15), -- Elves
+(30639, 4408, 1), -- HP Modifiers
+(30639, 4409, 1), -- MP Modifiers
+(30639, 4410, 11), -- P. Atk. Modifiers
+(30639, 4411, 11), -- M. Atk. Modifiers
+(30639, 4412, 11), -- P. Def. Modifiers
+(30639, 4413, 11), -- M. Def. Modifiers
+(30639, 4414, 2), -- Armor Type
+(30639, 4415, 3), -- Weapon Type
+(30639, 4416, 15), -- Races
 -- Brynthea
 (30640, 4045, 1), -- Resist Full Magic Attack
-(30640, 4408, 1), -- HP Increase (1x)
-(30640, 4409, 1), -- MP Increase (1x)
-(30640, 4410, 11), -- Average P. Atk.
-(30640, 4411, 11), -- Average M. Atk.
-(30640, 4412, 11), -- Average P. Def.
-(30640, 4413, 11), -- Average M. Def.
-(30640, 4414, 2), -- Standard Type
-(30640, 4415, 3), -- One-handed Sword
-(30640, 4416, 16), -- Dark Elves
+(30640, 4408, 1), -- HP Modifiers
+(30640, 4409, 1), -- MP Modifiers
+(30640, 4410, 11), -- P. Atk. Modifiers
+(30640, 4411, 11), -- M. Atk. Modifiers
+(30640, 4412, 11), -- P. Def. Modifiers
+(30640, 4413, 11), -- M. Def. Modifiers
+(30640, 4414, 2), -- Armor Type
+(30640, 4415, 3), -- Weapon Type
+(30640, 4416, 16), -- Races
 -- Takuna
 (30641, 4045, 1), -- Resist Full Magic Attack
-(30641, 4408, 1), -- HP Increase (1x)
-(30641, 4409, 1), -- MP Increase (1x)
-(30641, 4410, 11), -- Average P. Atk.
-(30641, 4411, 11), -- Average M. Atk.
-(30641, 4412, 11), -- Average P. Def.
-(30641, 4413, 11), -- Average M. Def.
-(30641, 4414, 2), -- Standard Type
-(30641, 4415, 3), -- One-handed Sword
-(30641, 4416, 17), -- Orcs
+(30641, 4408, 1), -- HP Modifiers
+(30641, 4409, 1), -- MP Modifiers
+(30641, 4410, 11), -- P. Atk. Modifiers
+(30641, 4411, 11), -- M. Atk. Modifiers
+(30641, 4412, 11), -- P. Def. Modifiers
+(30641, 4413, 11), -- M. Def. Modifiers
+(30641, 4414, 2), -- Armor Type
+(30641, 4415, 3), -- Weapon Type
+(30641, 4416, 17), -- Races
 -- Chianta
 (30642, 4045, 1), -- Resist Full Magic Attack
-(30642, 4408, 1), -- HP Increase (1x)
-(30642, 4409, 1), -- MP Increase (1x)
-(30642, 4410, 11), -- Average P. Atk.
-(30642, 4411, 11), -- Average M. Atk.
-(30642, 4412, 11), -- Average P. Def.
-(30642, 4413, 11), -- Average M. Def.
-(30642, 4414, 2), -- Standard Type
-(30642, 4415, 3), -- One-handed Sword
-(30642, 4416, 17), -- Orcs
+(30642, 4408, 1), -- HP Modifiers
+(30642, 4409, 1), -- MP Modifiers
+(30642, 4410, 11), -- P. Atk. Modifiers
+(30642, 4411, 11), -- M. Atk. Modifiers
+(30642, 4412, 11), -- P. Def. Modifiers
+(30642, 4413, 11), -- M. Def. Modifiers
+(30642, 4414, 2), -- Armor Type
+(30642, 4415, 3), -- Weapon Type
+(30642, 4416, 17), -- Races
 -- First Orc
 (30643, 4045, 1), -- Resist Full Magic Attack
-(30643, 4408, 1), -- HP Increase (1x)
-(30643, 4409, 1), -- MP Increase (1x)
-(30643, 4410, 11), -- Average P. Atk.
-(30643, 4411, 11), -- Average M. Atk.
-(30643, 4412, 11), -- Average P. Def.
-(30643, 4413, 11), -- Average M. Def.
-(30643, 4414, 2), -- Standard Type
-(30643, 4415, 3), -- One-handed Sword
-(30643, 4416, 17), -- Orcs
+(30643, 4408, 1), -- HP Modifiers
+(30643, 4409, 1), -- MP Modifiers
+(30643, 4410, 11), -- P. Atk. Modifiers
+(30643, 4411, 11), -- M. Atk. Modifiers
+(30643, 4412, 11), -- P. Def. Modifiers
+(30643, 4413, 11), -- M. Def. Modifiers
+(30643, 4414, 2), -- Armor Type
+(30643, 4415, 3), -- Weapon Type
+(30643, 4416, 17), -- Races
 -- Kash
 (30644, 4045, 1), -- Resist Full Magic Attack
-(30644, 4408, 1), -- HP Increase (1x)
-(30644, 4409, 1), -- MP Increase (1x)
-(30644, 4410, 11), -- Average P. Atk.
-(30644, 4411, 11), -- Average M. Atk.
-(30644, 4412, 11), -- Average P. Def.
-(30644, 4413, 11), -- Average M. Def.
-(30644, 4414, 2), -- Standard Type
-(30644, 4415, 3), -- One-handed Sword
-(30644, 4416, 14), -- Humans
+(30644, 4408, 1), -- HP Modifiers
+(30644, 4409, 1), -- MP Modifiers
+(30644, 4410, 11), -- P. Atk. Modifiers
+(30644, 4411, 11), -- M. Atk. Modifiers
+(30644, 4412, 11), -- P. Def. Modifiers
+(30644, 4413, 11), -- M. Def. Modifiers
+(30644, 4414, 2), -- Armor Type
+(30644, 4415, 3), -- Weapon Type
+(30644, 4416, 14), -- Races
 -- Martien
 (30645, 4045, 1), -- Resist Full Magic Attack
-(30645, 4408, 1), -- HP Increase (1x)
-(30645, 4409, 1), -- MP Increase (1x)
-(30645, 4410, 11), -- Average P. Atk.
-(30645, 4411, 11), -- Average M. Atk.
-(30645, 4412, 11), -- Average P. Def.
-(30645, 4413, 11), -- Average M. Def.
-(30645, 4414, 2), -- Standard Type
-(30645, 4415, 3), -- One-handed Sword
-(30645, 4416, 14), -- Humans
+(30645, 4408, 1), -- HP Modifiers
+(30645, 4409, 1), -- MP Modifiers
+(30645, 4410, 11), -- P. Atk. Modifiers
+(30645, 4411, 11), -- M. Atk. Modifiers
+(30645, 4412, 11), -- P. Def. Modifiers
+(30645, 4413, 11), -- M. Def. Modifiers
+(30645, 4414, 2), -- Armor Type
+(30645, 4415, 3), -- Weapon Type
+(30645, 4416, 14), -- Races
 -- Raldo
 (30646, 4045, 1), -- Resist Full Magic Attack
-(30646, 4408, 1), -- HP Increase (1x)
-(30646, 4409, 1), -- MP Increase (1x)
-(30646, 4410, 11), -- Average P. Atk.
-(30646, 4411, 11), -- Average M. Atk.
-(30646, 4412, 11), -- Average P. Def.
-(30646, 4413, 11), -- Average M. Def.
-(30646, 4414, 2), -- Standard Type
-(30646, 4415, 3), -- One-handed Sword
-(30646, 4416, 14), -- Humans
+(30646, 4408, 1), -- HP Modifiers
+(30646, 4409, 1), -- MP Modifiers
+(30646, 4410, 11), -- P. Atk. Modifiers
+(30646, 4411, 11), -- M. Atk. Modifiers
+(30646, 4412, 11), -- P. Def. Modifiers
+(30646, 4413, 11), -- M. Def. Modifiers
+(30646, 4414, 2), -- Armor Type
+(30646, 4415, 3), -- Weapon Type
+(30646, 4416, 14), -- Races
 -- Chest Of Shyslassys
 (30647, 4045, 1), -- Resist Full Magic Attack
-(30647, 4390, 1), -- Mystic Immunity
-(30647, 4408, 1), -- HP Increase (1x)
-(30647, 4409, 1), -- MP Increase (1x)
-(30647, 4410, 11), -- Average P. Atk.
-(30647, 4411, 11), -- Average M. Atk.
-(30647, 4412, 11), -- Average P. Def.
-(30647, 4413, 11), -- Average M. Def.
-(30647, 4414, 2), -- Standard Type
-(30647, 4415, 3), -- One-handed Sword
-(30647, 4416, 19), -- Others
+(30647, 4390, 1), -- NPC Abnormal Immunity
+(30647, 4408, 1), -- HP Modifiers
+(30647, 4409, 1), -- MP Modifiers
+(30647, 4410, 11), -- P. Atk. Modifiers
+(30647, 4411, 11), -- M. Atk. Modifiers
+(30647, 4412, 11), -- P. Def. Modifiers
+(30647, 4413, 11), -- M. Def. Modifiers
+(30647, 4414, 2), -- Armor Type
+(30647, 4415, 3), -- Weapon Type
+(30647, 4416, 19), -- Races
 -- Santiago
 (30648, 4045, 1), -- Resist Full Magic Attack
-(30648, 4408, 1), -- HP Increase (1x)
-(30648, 4409, 1), -- MP Increase (1x)
-(30648, 4410, 11), -- Average P. Atk.
-(30648, 4411, 11), -- Average M. Atk.
-(30648, 4412, 11), -- Average P. Def.
-(30648, 4413, 11), -- Average M. Def.
-(30648, 4414, 2), -- Standard Type
-(30648, 4415, 3), -- One-handed Sword
-(30648, 4416, 14), -- Humans
+(30648, 4408, 1), -- HP Modifiers
+(30648, 4409, 1), -- MP Modifiers
+(30648, 4410, 11), -- P. Atk. Modifiers
+(30648, 4411, 11), -- M. Atk. Modifiers
+(30648, 4412, 11), -- P. Def. Modifiers
+(30648, 4413, 11), -- M. Def. Modifiers
+(30648, 4414, 2), -- Armor Type
+(30648, 4415, 3), -- Weapon Type
+(30648, 4416, 14), -- Races
 -- Ancestor Martankus
 (30649, 4045, 1), -- Resist Full Magic Attack
-(30649, 4408, 1), -- HP Increase (1x)
-(30649, 4409, 1), -- MP Increase (1x)
-(30649, 4410, 11), -- Average P. Atk.
-(30649, 4411, 11), -- Average M. Atk.
-(30649, 4412, 11), -- Average P. Def.
-(30649, 4413, 11), -- Average M. Def.
-(30649, 4414, 2), -- Standard Type
-(30649, 4415, 3), -- One-handed Sword
-(30649, 4416, 17), -- Orcs
+(30649, 4408, 1), -- HP Modifiers
+(30649, 4409, 1), -- MP Modifiers
+(30649, 4410, 11), -- P. Atk. Modifiers
+(30649, 4411, 11), -- M. Atk. Modifiers
+(30649, 4412, 11), -- P. Def. Modifiers
+(30649, 4413, 11), -- M. Def. Modifiers
+(30649, 4414, 2), -- Armor Type
+(30649, 4415, 3), -- Weapon Type
+(30649, 4416, 17), -- Races
 -- Gerald
 (30650, 4045, 1), -- Resist Full Magic Attack
-(30650, 4408, 1), -- HP Increase (1x)
-(30650, 4409, 1), -- MP Increase (1x)
-(30650, 4410, 11), -- Average P. Atk.
-(30650, 4411, 11), -- Average M. Atk.
-(30650, 4412, 11), -- Average P. Def.
-(30650, 4413, 11), -- Average M. Def.
-(30650, 4414, 2), -- Standard Type
-(30650, 4415, 3), -- One-handed Sword
-(30650, 4416, 18), -- Dwarves
+(30650, 4408, 1), -- HP Modifiers
+(30650, 4409, 1), -- MP Modifiers
+(30650, 4410, 11), -- P. Atk. Modifiers
+(30650, 4411, 11), -- M. Atk. Modifiers
+(30650, 4412, 11), -- P. Def. Modifiers
+(30650, 4413, 11), -- M. Def. Modifiers
+(30650, 4414, 2), -- Armor Type
+(30650, 4415, 3), -- Weapon Type
+(30650, 4416, 18), -- Races
 -- Dorf
 (30651, 4045, 1), -- Resist Full Magic Attack
-(30651, 4408, 1), -- HP Increase (1x)
-(30651, 4409, 1), -- MP Increase (1x)
-(30651, 4410, 11), -- Average P. Atk.
-(30651, 4411, 11), -- Average M. Atk.
-(30651, 4412, 11), -- Average P. Def.
-(30651, 4413, 11), -- Average M. Def.
-(30651, 4414, 2), -- Standard Type
-(30651, 4415, 3), -- One-handed Sword
-(30651, 4416, 18), -- Dwarves
+(30651, 4408, 1), -- HP Modifiers
+(30651, 4409, 1), -- MP Modifiers
+(30651, 4410, 11), -- P. Atk. Modifiers
+(30651, 4411, 11), -- M. Atk. Modifiers
+(30651, 4412, 11), -- P. Def. Modifiers
+(30651, 4413, 11), -- M. Def. Modifiers
+(30651, 4414, 2), -- Armor Type
+(30651, 4415, 3), -- Weapon Type
+(30651, 4416, 18), -- Races
 -- Uruha
 (30652, 4045, 1), -- Resist Full Magic Attack
-(30652, 4408, 1), -- HP Increase (1x)
-(30652, 4409, 1), -- MP Increase (1x)
-(30652, 4410, 11), -- Average P. Atk.
-(30652, 4411, 11), -- Average M. Atk.
-(30652, 4412, 11), -- Average P. Def.
-(30652, 4413, 11), -- Average M. Def.
-(30652, 4414, 2), -- Standard Type
-(30652, 4415, 3), -- One-handed Sword
-(30652, 4416, 16), -- Dark Elves
+(30652, 4408, 1), -- HP Modifiers
+(30652, 4409, 1), -- MP Modifiers
+(30652, 4410, 11), -- P. Atk. Modifiers
+(30652, 4411, 11), -- M. Atk. Modifiers
+(30652, 4412, 11), -- P. Def. Modifiers
+(30652, 4413, 11), -- M. Def. Modifiers
+(30652, 4414, 2), -- Armor Type
+(30652, 4415, 3), -- Weapon Type
+(30652, 4416, 16), -- Races
 -- Sir Aron Tanford
 (30653, 4045, 1), -- Resist Full Magic Attack
-(30653, 4408, 1), -- HP Increase (1x)
-(30653, 4409, 1), -- MP Increase (1x)
-(30653, 4410, 11), -- Average P. Atk.
-(30653, 4411, 11), -- Average M. Atk.
-(30653, 4412, 11), -- Average P. Def.
-(30653, 4413, 11), -- Average M. Def.
-(30653, 4414, 2), -- Standard Type
-(30653, 4415, 3), -- One-handed Sword
-(30653, 4416, 14), -- Humans
+(30653, 4408, 1), -- HP Modifiers
+(30653, 4409, 1), -- MP Modifiers
+(30653, 4410, 11), -- P. Atk. Modifiers
+(30653, 4411, 11), -- M. Atk. Modifiers
+(30653, 4412, 11), -- P. Def. Modifiers
+(30653, 4413, 11), -- M. Def. Modifiers
+(30653, 4414, 2), -- Armor Type
+(30653, 4415, 3), -- Weapon Type
+(30653, 4416, 14), -- Races
 -- Sir Kiel Nighthawk
 (30654, 4045, 1), -- Resist Full Magic Attack
-(30654, 4408, 1), -- HP Increase (1x)
-(30654, 4409, 1), -- MP Increase (1x)
-(30654, 4410, 11), -- Average P. Atk.
-(30654, 4411, 11), -- Average M. Atk.
-(30654, 4412, 11), -- Average P. Def.
-(30654, 4413, 11), -- Average M. Def.
-(30654, 4414, 2), -- Standard Type
-(30654, 4415, 3), -- One-handed Sword
-(30654, 4416, 16), -- Dark Elves
+(30654, 4408, 1), -- HP Modifiers
+(30654, 4409, 1), -- MP Modifiers
+(30654, 4410, 11), -- P. Atk. Modifiers
+(30654, 4411, 11), -- M. Atk. Modifiers
+(30654, 4412, 11), -- P. Def. Modifiers
+(30654, 4413, 11), -- M. Def. Modifiers
+(30654, 4414, 2), -- Armor Type
+(30654, 4415, 3), -- Weapon Type
+(30654, 4416, 16), -- Races
 -- Isael Silvershadow
 (30655, 4045, 1), -- Resist Full Magic Attack
-(30655, 4408, 1), -- HP Increase (1x)
-(30655, 4409, 1), -- MP Increase (1x)
-(30655, 4410, 11), -- Average P. Atk.
-(30655, 4411, 11), -- Average M. Atk.
-(30655, 4412, 11), -- Average P. Def.
-(30655, 4413, 11), -- Average M. Def.
-(30655, 4414, 2), -- Standard Type
-(30655, 4415, 3), -- One-handed Sword
-(30655, 4416, 14), -- Humans
+(30655, 4408, 1), -- HP Modifiers
+(30655, 4409, 1), -- MP Modifiers
+(30655, 4410, 11), -- P. Atk. Modifiers
+(30655, 4411, 11), -- M. Atk. Modifiers
+(30655, 4412, 11), -- P. Def. Modifiers
+(30655, 4413, 11), -- M. Def. Modifiers
+(30655, 4414, 2), -- Armor Type
+(30655, 4415, 3), -- Weapon Type
+(30655, 4416, 14), -- Races
 -- Spirit Of Sir Talianus
 (30656, 4045, 1), -- Resist Full Magic Attack
-(30656, 4408, 1), -- HP Increase (1x)
-(30656, 4409, 1), -- MP Increase (1x)
-(30656, 4410, 11), -- Average P. Atk.
-(30656, 4411, 11), -- Average M. Atk.
-(30656, 4412, 11), -- Average P. Def.
-(30656, 4413, 11), -- Average M. Def.
-(30656, 4414, 2), -- Standard Type
-(30656, 4415, 3), -- One-handed Sword
-(30656, 4416, 1), -- Undead
+(30656, 4408, 1), -- HP Modifiers
+(30656, 4409, 1), -- MP Modifiers
+(30656, 4410, 11), -- P. Atk. Modifiers
+(30656, 4411, 11), -- M. Atk. Modifiers
+(30656, 4412, 11), -- P. Def. Modifiers
+(30656, 4413, 11), -- M. Def. Modifiers
+(30656, 4414, 2), -- Armor Type
+(30656, 4415, 3), -- Weapon Type
+(30656, 4416, 1), -- Races
 -- Seresin
 (30657, 4045, 1), -- Resist Full Magic Attack
-(30657, 4408, 1), -- HP Increase (1x)
-(30657, 4409, 1), -- MP Increase (1x)
-(30657, 4410, 11), -- Average P. Atk.
-(30657, 4411, 11), -- Average M. Atk.
-(30657, 4412, 11), -- Average P. Def.
-(30657, 4413, 11), -- Average M. Def.
-(30657, 4414, 2), -- Standard Type
-(30657, 4415, 3), -- One-handed Sword
-(30657, 4416, 14), -- Humans
+(30657, 4408, 1), -- HP Modifiers
+(30657, 4409, 1), -- MP Modifiers
+(30657, 4410, 11), -- P. Atk. Modifiers
+(30657, 4411, 11), -- M. Atk. Modifiers
+(30657, 4412, 11), -- P. Def. Modifiers
+(30657, 4413, 11), -- M. Def. Modifiers
+(30657, 4414, 2), -- Armor Type
+(30657, 4415, 3), -- Weapon Type
+(30657, 4416, 14), -- Races
 -- Gupu
 (30658, 4045, 1), -- Resist Full Magic Attack
-(30658, 4408, 1), -- HP Increase (1x)
-(30658, 4409, 1), -- MP Increase (1x)
-(30658, 4410, 11), -- Average P. Atk.
-(30658, 4411, 11), -- Average M. Atk.
-(30658, 4412, 11), -- Average P. Def.
-(30658, 4413, 11), -- Average M. Def.
-(30658, 4414, 2), -- Standard Type
-(30658, 4415, 3), -- One-handed Sword
-(30658, 4416, 18), -- Dwarves
+(30658, 4408, 1), -- HP Modifiers
+(30658, 4409, 1), -- MP Modifiers
+(30658, 4410, 11), -- P. Atk. Modifiers
+(30658, 4411, 11), -- M. Atk. Modifiers
+(30658, 4412, 11), -- P. Def. Modifiers
+(30658, 4413, 11), -- M. Def. Modifiers
+(30658, 4414, 2), -- Armor Type
+(30658, 4415, 3), -- Weapon Type
+(30658, 4416, 18), -- Races
 -- Orphan Girl
 (30659, 4045, 1), -- Resist Full Magic Attack
-(30659, 4408, 1), -- HP Increase (1x)
-(30659, 4409, 1), -- MP Increase (1x)
-(30659, 4410, 11), -- Average P. Atk.
-(30659, 4411, 11), -- Average M. Atk.
-(30659, 4412, 11), -- Average P. Def.
-(30659, 4413, 11), -- Average M. Def.
-(30659, 4414, 2), -- Standard Type
-(30659, 4415, 3), -- One-handed Sword
-(30659, 4416, 18), -- Dwarves
+(30659, 4408, 1), -- HP Modifiers
+(30659, 4409, 1), -- MP Modifiers
+(30659, 4410, 11), -- P. Atk. Modifiers
+(30659, 4411, 11), -- M. Atk. Modifiers
+(30659, 4412, 11), -- P. Def. Modifiers
+(30659, 4413, 11), -- M. Def. Modifiers
+(30659, 4414, 2), -- Armor Type
+(30659, 4415, 3), -- Weapon Type
+(30659, 4416, 18), -- Races
 -- Windy Shaoring
 (30660, 4045, 1), -- Resist Full Magic Attack
-(30660, 4408, 1), -- HP Increase (1x)
-(30660, 4409, 1), -- MP Increase (1x)
-(30660, 4410, 11), -- Average P. Atk.
-(30660, 4411, 11), -- Average M. Atk.
-(30660, 4412, 11), -- Average P. Def.
-(30660, 4413, 11), -- Average M. Def.
-(30660, 4414, 2), -- Standard Type
-(30660, 4415, 3), -- One-handed Sword
-(30660, 4416, 18), -- Dwarves
+(30660, 4408, 1), -- HP Modifiers
+(30660, 4409, 1), -- MP Modifiers
+(30660, 4410, 11), -- P. Atk. Modifiers
+(30660, 4411, 11), -- M. Atk. Modifiers
+(30660, 4412, 11), -- P. Def. Modifiers
+(30660, 4413, 11), -- M. Def. Modifiers
+(30660, 4414, 2), -- Armor Type
+(30660, 4415, 3), -- Weapon Type
+(30660, 4416, 18), -- Races
 -- Mysterious Dark Elf
 (30661, 4045, 1), -- Resist Full Magic Attack
-(30661, 4408, 1), -- HP Increase (1x)
-(30661, 4409, 1), -- MP Increase (1x)
-(30661, 4410, 11), -- Average P. Atk.
-(30661, 4411, 11), -- Average M. Atk.
-(30661, 4412, 11), -- Average P. Def.
-(30661, 4413, 11), -- Average M. Def.
-(30661, 4414, 2), -- Standard Type
-(30661, 4415, 3), -- One-handed Sword
-(30661, 4416, 16), -- Dark Elves
+(30661, 4408, 1), -- HP Modifiers
+(30661, 4409, 1), -- MP Modifiers
+(30661, 4410, 11), -- P. Atk. Modifiers
+(30661, 4411, 11), -- M. Atk. Modifiers
+(30661, 4412, 11), -- P. Def. Modifiers
+(30661, 4413, 11), -- M. Def. Modifiers
+(30661, 4414, 2), -- Armor Type
+(30661, 4415, 3), -- Weapon Type
+(30661, 4416, 16), -- Races
 -- Piper Longbow
 (30662, 4045, 1), -- Resist Full Magic Attack
-(30662, 4408, 1), -- HP Increase (1x)
-(30662, 4409, 1), -- MP Increase (1x)
-(30662, 4410, 11), -- Average P. Atk.
-(30662, 4411, 11), -- Average M. Atk.
-(30662, 4412, 11), -- Average P. Def.
-(30662, 4413, 11), -- Average M. Def.
-(30662, 4414, 2), -- Standard Type
-(30662, 4415, 3), -- One-handed Sword
-(30662, 4416, 15), -- Elves
+(30662, 4408, 1), -- HP Modifiers
+(30662, 4409, 1), -- MP Modifiers
+(30662, 4410, 11), -- P. Atk. Modifiers
+(30662, 4411, 11), -- M. Atk. Modifiers
+(30662, 4412, 11), -- P. Def. Modifiers
+(30662, 4413, 11), -- M. Def. Modifiers
+(30662, 4414, 2), -- Armor Type
+(30662, 4415, 3), -- Weapon Type
+(30662, 4416, 15), -- Races
 -- Slein Shining Blade
 (30663, 4045, 1), -- Resist Full Magic Attack
-(30663, 4408, 1), -- HP Increase (1x)
-(30663, 4409, 1), -- MP Increase (1x)
-(30663, 4410, 11), -- Average P. Atk.
-(30663, 4411, 11), -- Average M. Atk.
-(30663, 4412, 11), -- Average P. Def.
-(30663, 4413, 11), -- Average M. Def.
-(30663, 4414, 2), -- Standard Type
-(30663, 4415, 3), -- One-handed Sword
-(30663, 4416, 15), -- Elves
+(30663, 4408, 1), -- HP Modifiers
+(30663, 4409, 1), -- MP Modifiers
+(30663, 4410, 11), -- P. Atk. Modifiers
+(30663, 4411, 11), -- M. Atk. Modifiers
+(30663, 4412, 11), -- P. Def. Modifiers
+(30663, 4413, 11), -- M. Def. Modifiers
+(30663, 4414, 2), -- Armor Type
+(30663, 4415, 3), -- Weapon Type
+(30663, 4416, 15), -- Races
 -- Cain Flying Knife
 (30664, 4045, 1), -- Resist Full Magic Attack
-(30664, 4408, 1), -- HP Increase (1x)
-(30664, 4409, 1), -- MP Increase (1x)
-(30664, 4410, 11), -- Average P. Atk.
-(30664, 4411, 11), -- Average M. Atk.
-(30664, 4412, 11), -- Average P. Def.
-(30664, 4413, 11), -- Average M. Def.
-(30664, 4414, 2), -- Standard Type
-(30664, 4415, 3), -- One-handed Sword
-(30664, 4416, 15), -- Elves
+(30664, 4408, 1), -- HP Modifiers
+(30664, 4409, 1), -- MP Modifiers
+(30664, 4410, 11), -- P. Atk. Modifiers
+(30664, 4411, 11), -- M. Atk. Modifiers
+(30664, 4412, 11), -- P. Def. Modifiers
+(30664, 4413, 11), -- M. Def. Modifiers
+(30664, 4414, 2), -- Armor Type
+(30664, 4415, 3), -- Weapon Type
+(30664, 4416, 15), -- Races
 -- Kristina
 (30665, 4045, 1), -- Resist Full Magic Attack
-(30665, 4408, 1), -- HP Increase (1x)
-(30665, 4409, 1), -- MP Increase (1x)
-(30665, 4410, 11), -- Average P. Atk.
-(30665, 4411, 11), -- Average M. Atk.
-(30665, 4412, 11), -- Average P. Def.
-(30665, 4413, 11), -- Average M. Def.
-(30665, 4414, 2), -- Standard Type
-(30665, 4415, 3), -- One-handed Sword
-(30665, 4416, 14), -- Humans
+(30665, 4408, 1), -- HP Modifiers
+(30665, 4409, 1), -- MP Modifiers
+(30665, 4410, 11), -- P. Atk. Modifiers
+(30665, 4411, 11), -- M. Atk. Modifiers
+(30665, 4412, 11), -- P. Def. Modifiers
+(30665, 4413, 11), -- M. Def. Modifiers
+(30665, 4414, 2), -- Armor Type
+(30665, 4415, 3), -- Weapon Type
+(30665, 4416, 14), -- Races
 -- Sla
 (30666, 4045, 1), -- Resist Full Magic Attack
-(30666, 4408, 1), -- HP Increase (1x)
-(30666, 4409, 1), -- MP Increase (1x)
-(30666, 4410, 11), -- Average P. Atk.
-(30666, 4411, 11), -- Average M. Atk.
-(30666, 4412, 11), -- Average P. Def.
-(30666, 4413, 11), -- Average M. Def.
-(30666, 4414, 2), -- Standard Type
-(30666, 4415, 3), -- One-handed Sword
-(30666, 4416, 14), -- Humans
+(30666, 4408, 1), -- HP Modifiers
+(30666, 4409, 1), -- MP Modifiers
+(30666, 4410, 11), -- P. Atk. Modifiers
+(30666, 4411, 11), -- M. Atk. Modifiers
+(30666, 4412, 11), -- P. Def. Modifiers
+(30666, 4413, 11), -- M. Def. Modifiers
+(30666, 4414, 2), -- Armor Type
+(30666, 4415, 3), -- Weapon Type
+(30666, 4416, 14), -- Races
 -- Ramus
 (30667, 4045, 1), -- Resist Full Magic Attack
-(30667, 4408, 1), -- HP Increase (1x)
-(30667, 4409, 1), -- MP Increase (1x)
-(30667, 4410, 11), -- Average P. Atk.
-(30667, 4411, 11), -- Average M. Atk.
-(30667, 4412, 11), -- Average P. Def.
-(30667, 4413, 11), -- Average M. Def.
-(30667, 4414, 2), -- Standard Type
-(30667, 4415, 3), -- One-handed Sword
-(30667, 4416, 14), -- Humans
+(30667, 4408, 1), -- HP Modifiers
+(30667, 4409, 1), -- MP Modifiers
+(30667, 4410, 11), -- P. Atk. Modifiers
+(30667, 4411, 11), -- M. Atk. Modifiers
+(30667, 4412, 11), -- P. Def. Modifiers
+(30667, 4413, 11), -- M. Def. Modifiers
+(30667, 4414, 2), -- Armor Type
+(30667, 4415, 3), -- Weapon Type
+(30667, 4416, 14), -- Races
 -- Katari
 (30668, 4045, 1), -- Resist Full Magic Attack
-(30668, 4408, 1), -- HP Increase (1x)
-(30668, 4409, 1), -- MP Increase (1x)
-(30668, 4410, 11), -- Average P. Atk.
-(30668, 4411, 11), -- Average M. Atk.
-(30668, 4412, 11), -- Average P. Def.
-(30668, 4413, 11), -- Average M. Def.
-(30668, 4414, 2), -- Standard Type
-(30668, 4415, 3), -- One-handed Sword
-(30668, 4416, 16), -- Dark Elves
+(30668, 4408, 1), -- HP Modifiers
+(30668, 4409, 1), -- MP Modifiers
+(30668, 4410, 11), -- P. Atk. Modifiers
+(30668, 4411, 11), -- M. Atk. Modifiers
+(30668, 4412, 11), -- P. Def. Modifiers
+(30668, 4413, 11), -- M. Def. Modifiers
+(30668, 4414, 2), -- Armor Type
+(30668, 4415, 3), -- Weapon Type
+(30668, 4416, 16), -- Races
 -- Kakan
 (30669, 4045, 1), -- Resist Full Magic Attack
-(30669, 4408, 1), -- HP Increase (1x)
-(30669, 4409, 1), -- MP Increase (1x)
-(30669, 4410, 11), -- Average P. Atk.
-(30669, 4411, 11), -- Average M. Atk.
-(30669, 4412, 11), -- Average P. Def.
-(30669, 4413, 11), -- Average M. Def.
-(30669, 4414, 2), -- Standard Type
-(30669, 4415, 3), -- One-handed Sword
-(30669, 4416, 17), -- Orcs
+(30669, 4408, 1), -- HP Modifiers
+(30669, 4409, 1), -- MP Modifiers
+(30669, 4410, 11), -- P. Atk. Modifiers
+(30669, 4411, 11), -- M. Atk. Modifiers
+(30669, 4412, 11), -- P. Def. Modifiers
+(30669, 4413, 11), -- M. Def. Modifiers
+(30669, 4414, 2), -- Armor Type
+(30669, 4415, 3), -- Weapon Type
+(30669, 4416, 17), -- Races
 -- Nyakuri
 (30670, 4045, 1), -- Resist Full Magic Attack
-(30670, 4408, 1), -- HP Increase (1x)
-(30670, 4409, 1), -- MP Increase (1x)
-(30670, 4410, 11), -- Average P. Atk.
-(30670, 4411, 11), -- Average M. Atk.
-(30670, 4412, 11), -- Average P. Def.
-(30670, 4413, 11), -- Average M. Def.
-(30670, 4414, 2), -- Standard Type
-(30670, 4415, 3), -- One-handed Sword
-(30670, 4416, 18), -- Dwarves
+(30670, 4408, 1), -- HP Modifiers
+(30670, 4409, 1), -- MP Modifiers
+(30670, 4410, 11), -- P. Atk. Modifiers
+(30670, 4411, 11), -- M. Atk. Modifiers
+(30670, 4412, 11), -- P. Def. Modifiers
+(30670, 4413, 11), -- M. Def. Modifiers
+(30670, 4414, 2), -- Armor Type
+(30670, 4415, 3), -- Weapon Type
+(30670, 4416, 18), -- Races
 -- Croto
 (30671, 4045, 1), -- Resist Full Magic Attack
-(30671, 4408, 1), -- HP Increase (1x)
-(30671, 4409, 1), -- MP Increase (1x)
-(30671, 4410, 11), -- Average P. Atk.
-(30671, 4411, 11), -- Average M. Atk.
-(30671, 4412, 11), -- Average P. Def.
-(30671, 4413, 11), -- Average M. Def.
-(30671, 4414, 2), -- Standard Type
-(30671, 4415, 3), -- One-handed Sword
-(30671, 4416, 17), -- Orcs
+(30671, 4408, 1), -- HP Modifiers
+(30671, 4409, 1), -- MP Modifiers
+(30671, 4410, 11), -- P. Atk. Modifiers
+(30671, 4411, 11), -- M. Atk. Modifiers
+(30671, 4412, 11), -- P. Def. Modifiers
+(30671, 4413, 11), -- M. Def. Modifiers
+(30671, 4414, 2), -- Armor Type
+(30671, 4415, 3), -- Weapon Type
+(30671, 4416, 17), -- Races
 -- Dubabah
 (30672, 4045, 1), -- Resist Full Magic Attack
-(30672, 4408, 1), -- HP Increase (1x)
-(30672, 4409, 1), -- MP Increase (1x)
-(30672, 4410, 11), -- Average P. Atk.
-(30672, 4411, 11), -- Average M. Atk.
-(30672, 4412, 11), -- Average P. Def.
-(30672, 4413, 11), -- Average M. Def.
-(30672, 4414, 2), -- Standard Type
-(30672, 4415, 3), -- One-handed Sword
-(30672, 4416, 17), -- Orcs
+(30672, 4408, 1), -- HP Modifiers
+(30672, 4409, 1), -- MP Modifiers
+(30672, 4410, 11), -- P. Atk. Modifiers
+(30672, 4411, 11), -- M. Atk. Modifiers
+(30672, 4412, 11), -- P. Def. Modifiers
+(30672, 4413, 11), -- M. Def. Modifiers
+(30672, 4414, 2), -- Armor Type
+(30672, 4415, 3), -- Weapon Type
+(30672, 4416, 17), -- Races
 -- Lorain
 (30673, 4045, 1), -- Resist Full Magic Attack
-(30673, 4408, 1), -- HP Increase (1x)
-(30673, 4409, 1), -- MP Increase (1x)
-(30673, 4410, 11), -- Average P. Atk.
-(30673, 4411, 11), -- Average M. Atk.
-(30673, 4412, 11), -- Average P. Def.
-(30673, 4413, 11), -- Average M. Def.
-(30673, 4414, 2), -- Standard Type
-(30673, 4415, 3), -- One-handed Sword
-(30673, 4416, 18), -- Dwarves
+(30673, 4408, 1), -- HP Modifiers
+(30673, 4409, 1), -- MP Modifiers
+(30673, 4410, 11), -- P. Atk. Modifiers
+(30673, 4411, 11), -- M. Atk. Modifiers
+(30673, 4412, 11), -- P. Def. Modifiers
+(30673, 4413, 11), -- M. Def. Modifiers
+(30673, 4414, 2), -- Armor Type
+(30673, 4415, 3), -- Weapon Type
+(30673, 4416, 18), -- Races
 -- Daurin Hammercrush
 (30674, 4045, 1), -- Resist Full Magic Attack
-(30674, 4408, 1), -- HP Increase (1x)
-(30674, 4409, 1), -- MP Increase (1x)
-(30674, 4410, 11), -- Average P. Atk.
-(30674, 4411, 11), -- Average M. Atk.
-(30674, 4412, 11), -- Average P. Def.
-(30674, 4413, 11), -- Average M. Def.
-(30674, 4414, 2), -- Standard Type
-(30674, 4415, 3), -- One-handed Sword
-(30674, 4416, 18), -- Dwarves
+(30674, 4408, 1), -- HP Modifiers
+(30674, 4409, 1), -- MP Modifiers
+(30674, 4410, 11), -- P. Atk. Modifiers
+(30674, 4411, 11), -- M. Atk. Modifiers
+(30674, 4412, 11), -- P. Def. Modifiers
+(30674, 4413, 11), -- M. Def. Modifiers
+(30674, 4414, 2), -- Armor Type
+(30674, 4415, 3), -- Weapon Type
+(30674, 4416, 18), -- Races
 -- Corpse Of Kamur
 (30675, 4045, 1), -- Resist Full Magic Attack
-(30675, 4408, 1), -- HP Increase (1x)
-(30675, 4409, 1), -- MP Increase (1x)
-(30675, 4410, 11), -- Average P. Atk.
-(30675, 4411, 11), -- Average M. Atk.
-(30675, 4412, 11), -- Average P. Def.
-(30675, 4413, 11), -- Average M. Def.
-(30675, 4414, 2), -- Standard Type
-(30675, 4415, 3), -- One-handed Sword
-(30675, 4416, 17), -- Orcs
+(30675, 4408, 1), -- HP Modifiers
+(30675, 4409, 1), -- MP Modifiers
+(30675, 4410, 11), -- P. Atk. Modifiers
+(30675, 4411, 11), -- M. Atk. Modifiers
+(30675, 4412, 11), -- P. Def. Modifiers
+(30675, 4413, 11), -- M. Def. Modifiers
+(30675, 4414, 2), -- Armor Type
+(30675, 4415, 3), -- Weapon Type
+(30675, 4416, 17), -- Races
 -- Croop
 (30676, 4045, 1), -- Resist Full Magic Attack
-(30676, 4408, 1), -- HP Increase (1x)
-(30676, 4409, 1), -- MP Increase (1x)
-(30676, 4410, 11), -- Average P. Atk.
-(30676, 4411, 11), -- Average M. Atk.
-(30676, 4412, 11), -- Average P. Def.
-(30676, 4413, 11), -- Average M. Def.
-(30676, 4414, 2), -- Standard Type
-(30676, 4415, 3), -- One-handed Sword
-(30676, 4416, 18), -- Dwarves
+(30676, 4408, 1), -- HP Modifiers
+(30676, 4409, 1), -- MP Modifiers
+(30676, 4410, 11), -- P. Atk. Modifiers
+(30676, 4411, 11), -- M. Atk. Modifiers
+(30676, 4412, 11), -- P. Def. Modifiers
+(30676, 4413, 11), -- M. Def. Modifiers
+(30676, 4414, 2), -- Armor Type
+(30676, 4415, 3), -- Weapon Type
+(30676, 4416, 18), -- Races
 -- Flutter
 (30677, 4045, 1), -- Resist Full Magic Attack
-(30677, 4408, 1), -- HP Increase (1x)
-(30677, 4409, 1), -- MP Increase (1x)
-(30677, 4410, 11), -- Average P. Atk.
-(30677, 4411, 11), -- Average M. Atk.
-(30677, 4412, 11), -- Average P. Def.
-(30677, 4413, 11), -- Average M. Def.
-(30677, 4414, 2), -- Standard Type
-(30677, 4415, 3), -- One-handed Sword
-(30677, 4416, 18), -- Dwarves
+(30677, 4408, 1), -- HP Modifiers
+(30677, 4409, 1), -- MP Modifiers
+(30677, 4410, 11), -- P. Atk. Modifiers
+(30677, 4411, 11), -- M. Atk. Modifiers
+(30677, 4412, 11), -- P. Def. Modifiers
+(30677, 4413, 11), -- M. Def. Modifiers
+(30677, 4414, 2), -- Armor Type
+(30677, 4415, 3), -- Weapon Type
+(30677, 4416, 18), -- Races
 -- Helton
 (30678, 4045, 1), -- Resist Full Magic Attack
-(30678, 4408, 1), -- HP Increase (1x)
-(30678, 4409, 1), -- MP Increase (1x)
-(30678, 4410, 11), -- Average P. Atk.
-(30678, 4411, 11), -- Average M. Atk.
-(30678, 4412, 11), -- Average P. Def.
-(30678, 4413, 11), -- Average M. Def.
-(30678, 4414, 2), -- Standard Type
-(30678, 4415, 3), -- One-handed Sword
-(30678, 4416, 18), -- Dwarves
+(30678, 4408, 1), -- HP Modifiers
+(30678, 4409, 1), -- MP Modifiers
+(30678, 4410, 11), -- P. Atk. Modifiers
+(30678, 4411, 11), -- M. Atk. Modifiers
+(30678, 4412, 11), -- P. Def. Modifiers
+(30678, 4413, 11), -- M. Def. Modifiers
+(30678, 4414, 2), -- Armor Type
+(30678, 4415, 3), -- Weapon Type
+(30678, 4416, 18), -- Races
 -- Roameria
 (30679, 4045, 1), -- Resist Full Magic Attack
-(30679, 4408, 1), -- HP Increase (1x)
-(30679, 4409, 1), -- MP Increase (1x)
-(30679, 4410, 11), -- Average P. Atk.
-(30679, 4411, 11), -- Average M. Atk.
-(30679, 4412, 11), -- Average P. Def.
-(30679, 4413, 11), -- Average M. Def.
-(30679, 4414, 2), -- Standard Type
-(30679, 4415, 3), -- One-handed Sword
-(30679, 4416, 15), -- Elves
+(30679, 4408, 1), -- HP Modifiers
+(30679, 4409, 1), -- MP Modifiers
+(30679, 4410, 11), -- P. Atk. Modifiers
+(30679, 4411, 11), -- M. Atk. Modifiers
+(30679, 4412, 11), -- P. Def. Modifiers
+(30679, 4413, 11), -- M. Def. Modifiers
+(30679, 4414, 2), -- Armor Type
+(30679, 4415, 3), -- Weapon Type
+(30679, 4416, 15), -- Races
 -- Egnos
 (30680, 4045, 1), -- Resist Full Magic Attack
-(30680, 4408, 1), -- HP Increase (1x)
-(30680, 4409, 1), -- MP Increase (1x)
-(30680, 4410, 11), -- Average P. Atk.
-(30680, 4411, 11), -- Average M. Atk.
-(30680, 4412, 11), -- Average P. Def.
-(30680, 4413, 11), -- Average M. Def.
-(30680, 4414, 2), -- Standard Type
-(30680, 4415, 3), -- One-handed Sword
-(30680, 4416, 15), -- Elves
+(30680, 4408, 1), -- HP Modifiers
+(30680, 4409, 1), -- MP Modifiers
+(30680, 4410, 11), -- P. Atk. Modifiers
+(30680, 4411, 11), -- M. Atk. Modifiers
+(30680, 4412, 11), -- P. Def. Modifiers
+(30680, 4413, 11), -- M. Def. Modifiers
+(30680, 4414, 2), -- Armor Type
+(30680, 4415, 3), -- Weapon Type
+(30680, 4416, 15), -- Races
 -- Karia
 (30681, 4045, 1), -- Resist Full Magic Attack
-(30681, 4408, 1), -- HP Increase (1x)
-(30681, 4409, 1), -- MP Increase (1x)
-(30681, 4410, 11), -- Average P. Atk.
-(30681, 4411, 11), -- Average M. Atk.
-(30681, 4412, 11), -- Average P. Def.
-(30681, 4413, 11), -- Average M. Def.
-(30681, 4414, 2), -- Standard Type
-(30681, 4415, 3), -- One-handed Sword
-(30681, 4416, 17), -- Orcs
+(30681, 4408, 1), -- HP Modifiers
+(30681, 4409, 1), -- MP Modifiers
+(30681, 4410, 11), -- P. Atk. Modifiers
+(30681, 4411, 11), -- M. Atk. Modifiers
+(30681, 4412, 11), -- P. Def. Modifiers
+(30681, 4413, 11), -- M. Def. Modifiers
+(30681, 4414, 2), -- Armor Type
+(30681, 4415, 3), -- Weapon Type
+(30681, 4416, 17), -- Races
 -- Pekiron
 (30682, 4045, 1), -- Resist Full Magic Attack
-(30682, 4408, 1), -- HP Increase (1x)
-(30682, 4409, 1), -- MP Increase (1x)
-(30682, 4410, 11), -- Average P. Atk.
-(30682, 4411, 11), -- Average M. Atk.
-(30682, 4412, 11), -- Average P. Def.
-(30682, 4413, 11), -- Average M. Def.
-(30682, 4414, 2), -- Standard Type
-(30682, 4415, 3), -- One-handed Sword
-(30682, 4416, 17), -- Orcs
+(30682, 4408, 1), -- HP Modifiers
+(30682, 4409, 1), -- MP Modifiers
+(30682, 4410, 11), -- P. Atk. Modifiers
+(30682, 4411, 11), -- M. Atk. Modifiers
+(30682, 4412, 11), -- P. Def. Modifiers
+(30682, 4413, 11), -- M. Def. Modifiers
+(30682, 4414, 2), -- Armor Type
+(30682, 4415, 3), -- Weapon Type
+(30682, 4416, 17), -- Races
 -- Daunt
 (30683, 4045, 1), -- Resist Full Magic Attack
-(30683, 4408, 1), -- HP Increase (1x)
-(30683, 4409, 1), -- MP Increase (1x)
-(30683, 4410, 11), -- Average P. Atk.
-(30683, 4411, 11), -- Average M. Atk.
-(30683, 4412, 11), -- Average P. Def.
-(30683, 4413, 11), -- Average M. Def.
-(30683, 4414, 2), -- Standard Type
-(30683, 4415, 3), -- One-handed Sword
-(30683, 4416, 17), -- Orcs
+(30683, 4408, 1), -- HP Modifiers
+(30683, 4409, 1), -- MP Modifiers
+(30683, 4410, 11), -- P. Atk. Modifiers
+(30683, 4411, 11), -- M. Atk. Modifiers
+(30683, 4412, 11), -- P. Def. Modifiers
+(30683, 4413, 11), -- M. Def. Modifiers
+(30683, 4414, 2), -- Armor Type
+(30683, 4415, 3), -- Weapon Type
+(30683, 4416, 17), -- Races
 -- Viktor
 (30684, 4045, 1), -- Resist Full Magic Attack
-(30684, 4408, 1), -- HP Increase (1x)
-(30684, 4409, 1), -- MP Increase (1x)
-(30684, 4410, 11), -- Average P. Atk.
-(30684, 4411, 11), -- Average M. Atk.
-(30684, 4412, 11), -- Average P. Def.
-(30684, 4413, 11), -- Average M. Def.
-(30684, 4414, 2), -- Standard Type
-(30684, 4415, 3), -- One-handed Sword
-(30684, 4416, 14), -- Humans
+(30684, 4408, 1), -- HP Modifiers
+(30684, 4409, 1), -- MP Modifiers
+(30684, 4410, 11), -- P. Atk. Modifiers
+(30684, 4411, 11), -- M. Atk. Modifiers
+(30684, 4412, 11), -- P. Def. Modifiers
+(30684, 4413, 11), -- M. Def. Modifiers
+(30684, 4414, 2), -- Armor Type
+(30684, 4415, 3), -- Weapon Type
+(30684, 4416, 14), -- Races
 -- Baxt
 (30685, 4045, 1), -- Resist Full Magic Attack
-(30685, 4408, 1), -- HP Increase (1x)
-(30685, 4409, 1), -- MP Increase (1x)
-(30685, 4410, 11), -- Average P. Atk.
-(30685, 4411, 11), -- Average M. Atk.
-(30685, 4412, 11), -- Average P. Def.
-(30685, 4413, 11), -- Average M. Def.
-(30685, 4414, 2), -- Standard Type
-(30685, 4415, 3), -- One-handed Sword
-(30685, 4416, 18), -- Dwarves
+(30685, 4408, 1), -- HP Modifiers
+(30685, 4409, 1), -- MP Modifiers
+(30685, 4410, 11), -- P. Atk. Modifiers
+(30685, 4411, 11), -- M. Atk. Modifiers
+(30685, 4412, 11), -- P. Def. Modifiers
+(30685, 4413, 11), -- M. Def. Modifiers
+(30685, 4414, 2), -- Armor Type
+(30685, 4415, 3), -- Weapon Type
+(30685, 4416, 18), -- Races
 -- Silva
 (30686, 4045, 1), -- Resist Full Magic Attack
-(30686, 4408, 1), -- HP Increase (1x)
-(30686, 4409, 1), -- MP Increase (1x)
-(30686, 4410, 11), -- Average P. Atk.
-(30686, 4411, 11), -- Average M. Atk.
-(30686, 4412, 11), -- Average P. Def.
-(30686, 4413, 11), -- Average M. Def.
-(30686, 4414, 2), -- Standard Type
-(30686, 4415, 3), -- One-handed Sword
-(30686, 4416, 18), -- Dwarves
+(30686, 4408, 1), -- HP Modifiers
+(30686, 4409, 1), -- MP Modifiers
+(30686, 4410, 11), -- P. Atk. Modifiers
+(30686, 4411, 11), -- M. Atk. Modifiers
+(30686, 4412, 11), -- P. Def. Modifiers
+(30686, 4413, 11), -- M. Def. Modifiers
+(30686, 4414, 2), -- Armor Type
+(30686, 4415, 3), -- Weapon Type
+(30686, 4416, 18), -- Races
 -- Vergara
 (30687, 4045, 1), -- Resist Full Magic Attack
-(30687, 4408, 1), -- HP Increase (1x)
-(30687, 4409, 1), -- MP Increase (1x)
-(30687, 4410, 11), -- Average P. Atk.
-(30687, 4411, 11), -- Average M. Atk.
-(30687, 4412, 11), -- Average P. Def.
-(30687, 4413, 11), -- Average M. Def.
-(30687, 4414, 2), -- Standard Type
-(30687, 4415, 3), -- One-handed Sword
-(30687, 4416, 18), -- Dwarves
+(30687, 4408, 1), -- HP Modifiers
+(30687, 4409, 1), -- MP Modifiers
+(30687, 4410, 11), -- P. Atk. Modifiers
+(30687, 4411, 11), -- M. Atk. Modifiers
+(30687, 4412, 11), -- P. Def. Modifiers
+(30687, 4413, 11), -- M. Def. Modifiers
+(30687, 4414, 2), -- Armor Type
+(30687, 4415, 3), -- Weapon Type
+(30687, 4416, 18), -- Races
 -- Duning
 (30688, 4045, 1), -- Resist Full Magic Attack
-(30688, 4408, 1), -- HP Increase (1x)
-(30688, 4409, 1), -- MP Increase (1x)
-(30688, 4410, 11), -- Average P. Atk.
-(30688, 4411, 11), -- Average M. Atk.
-(30688, 4412, 11), -- Average P. Def.
-(30688, 4413, 11), -- Average M. Def.
-(30688, 4414, 2), -- Standard Type
-(30688, 4415, 3), -- One-handed Sword
-(30688, 4416, 18), -- Dwarves
+(30688, 4408, 1), -- HP Modifiers
+(30688, 4409, 1), -- MP Modifiers
+(30688, 4410, 11), -- P. Atk. Modifiers
+(30688, 4411, 11), -- M. Atk. Modifiers
+(30688, 4412, 11), -- P. Def. Modifiers
+(30688, 4413, 11), -- M. Def. Modifiers
+(30688, 4414, 2), -- Armor Type
+(30688, 4415, 3), -- Weapon Type
+(30688, 4416, 18), -- Races
 -- Siria
 (30689, 4045, 1), -- Resist Full Magic Attack
-(30689, 4408, 1), -- HP Increase (1x)
-(30689, 4409, 1), -- MP Increase (1x)
-(30689, 4410, 11), -- Average P. Atk.
-(30689, 4411, 11), -- Average M. Atk.
-(30689, 4412, 11), -- Average P. Def.
-(30689, 4413, 11), -- Average M. Def.
-(30689, 4414, 2), -- Standard Type
-(30689, 4415, 3), -- One-handed Sword
-(30689, 4416, 14), -- Humans
+(30689, 4408, 1), -- HP Modifiers
+(30689, 4409, 1), -- MP Modifiers
+(30689, 4410, 11), -- P. Atk. Modifiers
+(30689, 4411, 11), -- M. Atk. Modifiers
+(30689, 4412, 11), -- P. Def. Modifiers
+(30689, 4413, 11), -- M. Def. Modifiers
+(30689, 4414, 2), -- Armor Type
+(30689, 4415, 3), -- Weapon Type
+(30689, 4416, 14), -- Races
 -- Luther
 (30690, 4045, 1), -- Resist Full Magic Attack
-(30690, 4408, 1), -- HP Increase (1x)
-(30690, 4409, 1), -- MP Increase (1x)
-(30690, 4410, 11), -- Average P. Atk.
-(30690, 4411, 11), -- Average M. Atk.
-(30690, 4412, 11), -- Average P. Def.
-(30690, 4413, 11), -- Average M. Def.
-(30690, 4414, 2), -- Standard Type
-(30690, 4415, 3), -- One-handed Sword
-(30690, 4416, 14), -- Humans
+(30690, 4408, 1), -- HP Modifiers
+(30690, 4409, 1), -- MP Modifiers
+(30690, 4410, 11), -- P. Atk. Modifiers
+(30690, 4411, 11), -- M. Atk. Modifiers
+(30690, 4412, 11), -- P. Def. Modifiers
+(30690, 4413, 11), -- M. Def. Modifiers
+(30690, 4414, 2), -- Armor Type
+(30690, 4415, 3), -- Weapon Type
+(30690, 4416, 14), -- Races
 -- Aren Athebaldt
 (30691, 4045, 1), -- Resist Full Magic Attack
-(30691, 4408, 1), -- HP Increase (1x)
-(30691, 4409, 1), -- MP Increase (1x)
-(30691, 4410, 11), -- Average P. Atk.
-(30691, 4411, 11), -- Average M. Atk.
-(30691, 4412, 11), -- Average P. Def.
-(30691, 4413, 11), -- Average M. Def.
-(30691, 4414, 2), -- Standard Type
-(30691, 4415, 3), -- One-handed Sword
-(30691, 4416, 14), -- Humans
+(30691, 4408, 1), -- HP Modifiers
+(30691, 4409, 1), -- MP Modifiers
+(30691, 4410, 11), -- P. Atk. Modifiers
+(30691, 4411, 11), -- M. Atk. Modifiers
+(30691, 4412, 11), -- P. Def. Modifiers
+(30691, 4413, 11), -- M. Def. Modifiers
+(30691, 4414, 2), -- Armor Type
+(30691, 4415, 3), -- Weapon Type
+(30691, 4416, 14), -- Races
 -- Stedmiel
 (30692, 4045, 1), -- Resist Full Magic Attack
-(30692, 4408, 1), -- HP Increase (1x)
-(30692, 4409, 1), -- MP Increase (1x)
-(30692, 4410, 11), -- Average P. Atk.
-(30692, 4411, 11), -- Average M. Atk.
-(30692, 4412, 11), -- Average P. Def.
-(30692, 4413, 11), -- Average M. Def.
-(30692, 4414, 2), -- Standard Type
-(30692, 4415, 3), -- One-handed Sword
-(30692, 4416, 15), -- Elves
+(30692, 4408, 1), -- HP Modifiers
+(30692, 4409, 1), -- MP Modifiers
+(30692, 4410, 11), -- P. Atk. Modifiers
+(30692, 4411, 11), -- M. Atk. Modifiers
+(30692, 4412, 11), -- P. Def. Modifiers
+(30692, 4413, 11), -- M. Def. Modifiers
+(30692, 4414, 2), -- Armor Type
+(30692, 4415, 3), -- Weapon Type
+(30692, 4416, 15), -- Races
 -- Queenien
 (30693, 4045, 1), -- Resist Full Magic Attack
-(30693, 4408, 1), -- HP Increase (1x)
-(30693, 4409, 1), -- MP Increase (1x)
-(30693, 4410, 11), -- Average P. Atk.
-(30693, 4411, 11), -- Average M. Atk.
-(30693, 4412, 11), -- Average P. Def.
-(30693, 4413, 11), -- Average M. Def.
-(30693, 4414, 2), -- Standard Type
-(30693, 4415, 3), -- One-handed Sword
-(30693, 4416, 15), -- Elves
+(30693, 4408, 1), -- HP Modifiers
+(30693, 4409, 1), -- MP Modifiers
+(30693, 4410, 11), -- P. Atk. Modifiers
+(30693, 4411, 11), -- M. Atk. Modifiers
+(30693, 4412, 11), -- P. Def. Modifiers
+(30693, 4413, 11), -- M. Def. Modifiers
+(30693, 4414, 2), -- Armor Type
+(30693, 4415, 3), -- Weapon Type
+(30693, 4416, 15), -- Races
 -- Scraide
 (30694, 4045, 1), -- Resist Full Magic Attack
-(30694, 4408, 1), -- HP Increase (1x)
-(30694, 4409, 1), -- MP Increase (1x)
-(30694, 4410, 11), -- Average P. Atk.
-(30694, 4411, 11), -- Average M. Atk.
-(30694, 4412, 11), -- Average P. Def.
-(30694, 4413, 11), -- Average M. Def.
-(30694, 4414, 2), -- Standard Type
-(30694, 4415, 3), -- One-handed Sword
-(30694, 4416, 14), -- Humans
+(30694, 4408, 1), -- HP Modifiers
+(30694, 4409, 1), -- MP Modifiers
+(30694, 4410, 11), -- P. Atk. Modifiers
+(30694, 4411, 11), -- M. Atk. Modifiers
+(30694, 4412, 11), -- P. Def. Modifiers
+(30694, 4413, 11), -- M. Def. Modifiers
+(30694, 4414, 2), -- Armor Type
+(30694, 4415, 3), -- Weapon Type
+(30694, 4416, 14), -- Races
 -- Moses
 (30695, 4045, 1), -- Resist Full Magic Attack
-(30695, 4408, 1), -- HP Increase (1x)
-(30695, 4409, 1), -- MP Increase (1x)
-(30695, 4410, 11), -- Average P. Atk.
-(30695, 4411, 11), -- Average M. Atk.
-(30695, 4412, 11), -- Average P. Def.
-(30695, 4413, 11), -- Average M. Def.
-(30695, 4414, 2), -- Standard Type
-(30695, 4415, 3), -- One-handed Sword
-(30695, 4416, 14), -- Humans
+(30695, 4408, 1), -- HP Modifiers
+(30695, 4409, 1), -- MP Modifiers
+(30695, 4410, 11), -- P. Atk. Modifiers
+(30695, 4411, 11), -- M. Atk. Modifiers
+(30695, 4412, 11), -- P. Def. Modifiers
+(30695, 4413, 11), -- M. Def. Modifiers
+(30695, 4414, 2), -- Armor Type
+(30695, 4415, 3), -- Weapon Type
+(30695, 4416, 14), -- Races
 -- Page
 (30696, 4045, 1), -- Resist Full Magic Attack
-(30696, 4408, 1), -- HP Increase (1x)
-(30696, 4409, 1), -- MP Increase (1x)
-(30696, 4410, 11), -- Average P. Atk.
-(30696, 4411, 11), -- Average M. Atk.
-(30696, 4412, 11), -- Average P. Def.
-(30696, 4413, 11), -- Average M. Def.
-(30696, 4414, 2), -- Standard Type
-(30696, 4415, 3), -- One-handed Sword
-(30696, 4416, 14), -- Humans
+(30696, 4408, 1), -- HP Modifiers
+(30696, 4409, 1), -- MP Modifiers
+(30696, 4410, 11), -- P. Atk. Modifiers
+(30696, 4411, 11), -- M. Atk. Modifiers
+(30696, 4412, 11), -- P. Def. Modifiers
+(30696, 4413, 11), -- M. Def. Modifiers
+(30696, 4414, 2), -- Armor Type
+(30696, 4415, 3), -- Weapon Type
+(30696, 4416, 14), -- Races
 -- Videlrien
 (30697, 4045, 1), -- Resist Full Magic Attack
-(30697, 4408, 1), -- HP Increase (1x)
-(30697, 4409, 1), -- MP Increase (1x)
-(30697, 4410, 11), -- Average P. Atk.
-(30697, 4411, 11), -- Average M. Atk.
-(30697, 4412, 11), -- Average P. Def.
-(30697, 4413, 11), -- Average M. Def.
-(30697, 4414, 2), -- Standard Type
-(30697, 4415, 3), -- One-handed Sword
-(30697, 4416, 15), -- Elves
+(30697, 4408, 1), -- HP Modifiers
+(30697, 4409, 1), -- MP Modifiers
+(30697, 4410, 11), -- P. Atk. Modifiers
+(30697, 4411, 11), -- M. Atk. Modifiers
+(30697, 4412, 11), -- P. Def. Modifiers
+(30697, 4413, 11), -- M. Def. Modifiers
+(30697, 4414, 2), -- Armor Type
+(30697, 4415, 3), -- Weapon Type
+(30697, 4416, 15), -- Races
 -- Evelyn
 (30698, 4045, 1), -- Resist Full Magic Attack
-(30698, 4408, 1), -- HP Increase (1x)
-(30698, 4409, 1), -- MP Increase (1x)
-(30698, 4410, 11), -- Average P. Atk.
-(30698, 4411, 11), -- Average M. Atk.
-(30698, 4412, 11), -- Average P. Def.
-(30698, 4413, 11), -- Average M. Def.
-(30698, 4414, 2), -- Standard Type
-(30698, 4415, 3), -- One-handed Sword
-(30698, 4416, 15), -- Elves
+(30698, 4408, 1), -- HP Modifiers
+(30698, 4409, 1), -- MP Modifiers
+(30698, 4410, 11), -- P. Atk. Modifiers
+(30698, 4411, 11), -- M. Atk. Modifiers
+(30698, 4412, 11), -- P. Def. Modifiers
+(30698, 4413, 11), -- M. Def. Modifiers
+(30698, 4414, 2), -- Armor Type
+(30698, 4415, 3), -- Weapon Type
+(30698, 4416, 15), -- Races
 -- Medown
 (30699, 4045, 1), -- Resist Full Magic Attack
-(30699, 4408, 1), -- HP Increase (1x)
-(30699, 4409, 1), -- MP Increase (1x)
-(30699, 4410, 11), -- Average P. Atk.
-(30699, 4411, 11), -- Average M. Atk.
-(30699, 4412, 11), -- Average P. Def.
-(30699, 4413, 11), -- Average M. Def.
-(30699, 4414, 2), -- Standard Type
-(30699, 4415, 3), -- One-handed Sword
-(30699, 4416, 16), -- Dark Elves
+(30699, 4408, 1), -- HP Modifiers
+(30699, 4409, 1), -- MP Modifiers
+(30699, 4410, 11), -- P. Atk. Modifiers
+(30699, 4411, 11), -- M. Atk. Modifiers
+(30699, 4412, 11), -- P. Def. Modifiers
+(30699, 4413, 11), -- M. Def. Modifiers
+(30699, 4414, 2), -- Armor Type
+(30699, 4415, 3), -- Weapon Type
+(30699, 4416, 16), -- Races
 -- Prestan
 (30700, 4045, 1), -- Resist Full Magic Attack
-(30700, 4408, 1), -- HP Increase (1x)
-(30700, 4409, 1), -- MP Increase (1x)
-(30700, 4410, 11), -- Average P. Atk.
-(30700, 4411, 11), -- Average M. Atk.
-(30700, 4412, 11), -- Average P. Def.
-(30700, 4413, 11), -- Average M. Def.
-(30700, 4414, 2), -- Standard Type
-(30700, 4415, 3), -- One-handed Sword
-(30700, 4416, 16), -- Dark Elves
+(30700, 4408, 1), -- HP Modifiers
+(30700, 4409, 1), -- MP Modifiers
+(30700, 4410, 11), -- P. Atk. Modifiers
+(30700, 4411, 11), -- M. Atk. Modifiers
+(30700, 4412, 11), -- P. Def. Modifiers
+(30700, 4413, 11), -- M. Def. Modifiers
+(30700, 4414, 2), -- Armor Type
+(30700, 4415, 3), -- Weapon Type
+(30700, 4416, 16), -- Races
 -- Errickin
 (30701, 4045, 1), -- Resist Full Magic Attack
-(30701, 4408, 1), -- HP Increase (1x)
-(30701, 4409, 1), -- MP Increase (1x)
-(30701, 4410, 11), -- Average P. Atk.
-(30701, 4411, 11), -- Average M. Atk.
-(30701, 4412, 11), -- Average P. Def.
-(30701, 4413, 11), -- Average M. Def.
-(30701, 4414, 2), -- Standard Type
-(30701, 4415, 3), -- One-handed Sword
-(30701, 4416, 16), -- Dark Elves
+(30701, 4408, 1), -- HP Modifiers
+(30701, 4409, 1), -- MP Modifiers
+(30701, 4410, 11), -- P. Atk. Modifiers
+(30701, 4411, 11), -- M. Atk. Modifiers
+(30701, 4412, 11), -- P. Def. Modifiers
+(30701, 4413, 11), -- M. Def. Modifiers
+(30701, 4414, 2), -- Armor Type
+(30701, 4415, 3), -- Weapon Type
+(30701, 4416, 16), -- Races
 -- Bernard
 (30702, 4045, 1), -- Resist Full Magic Attack
-(30702, 4408, 1), -- HP Increase (1x)
-(30702, 4409, 1), -- MP Increase (1x)
-(30702, 4410, 11), -- Average P. Atk.
-(30702, 4411, 11), -- Average M. Atk.
-(30702, 4412, 11), -- Average P. Def.
-(30702, 4413, 11), -- Average M. Def.
-(30702, 4414, 2), -- Standard Type
-(30702, 4415, 3), -- One-handed Sword
-(30702, 4416, 14), -- Humans
+(30702, 4408, 1), -- HP Modifiers
+(30702, 4409, 1), -- MP Modifiers
+(30702, 4410, 11), -- P. Atk. Modifiers
+(30702, 4411, 11), -- M. Atk. Modifiers
+(30702, 4412, 11), -- P. Def. Modifiers
+(30702, 4413, 11), -- M. Def. Modifiers
+(30702, 4414, 2), -- Armor Type
+(30702, 4415, 3), -- Weapon Type
+(30702, 4416, 14), -- Races
 -- Colin
 (30703, 4045, 1), -- Resist Full Magic Attack
-(30703, 4408, 1), -- HP Increase (1x)
-(30703, 4409, 1), -- MP Increase (1x)
-(30703, 4410, 11), -- Average P. Atk.
-(30703, 4411, 11), -- Average M. Atk.
-(30703, 4412, 11), -- Average P. Def.
-(30703, 4413, 11), -- Average M. Def.
-(30703, 4414, 2), -- Standard Type
-(30703, 4415, 3), -- One-handed Sword
-(30703, 4416, 14), -- Humans
+(30703, 4408, 1), -- HP Modifiers
+(30703, 4409, 1), -- MP Modifiers
+(30703, 4410, 11), -- P. Atk. Modifiers
+(30703, 4411, 11), -- M. Atk. Modifiers
+(30703, 4412, 11), -- P. Def. Modifiers
+(30703, 4413, 11), -- M. Def. Modifiers
+(30703, 4414, 2), -- Armor Type
+(30703, 4415, 3), -- Weapon Type
+(30703, 4416, 14), -- Races
 -- Garvarentz
 (30704, 4045, 1), -- Resist Full Magic Attack
-(30704, 4408, 1), -- HP Increase (1x)
-(30704, 4409, 1), -- MP Increase (1x)
-(30704, 4410, 11), -- Average P. Atk.
-(30704, 4411, 11), -- Average M. Atk.
-(30704, 4412, 11), -- Average P. Def.
-(30704, 4413, 11), -- Average M. Def.
-(30704, 4414, 2), -- Standard Type
-(30704, 4415, 3), -- One-handed Sword
-(30704, 4416, 17), -- Orcs
+(30704, 4408, 1), -- HP Modifiers
+(30704, 4409, 1), -- MP Modifiers
+(30704, 4410, 11), -- P. Atk. Modifiers
+(30704, 4411, 11), -- M. Atk. Modifiers
+(30704, 4412, 11), -- P. Def. Modifiers
+(30704, 4413, 11), -- M. Def. Modifiers
+(30704, 4414, 2), -- Armor Type
+(30704, 4415, 3), -- Weapon Type
+(30704, 4416, 17), -- Races
 -- Chakiris
 (30705, 4045, 1), -- Resist Full Magic Attack
-(30705, 4408, 1), -- HP Increase (1x)
-(30705, 4409, 1), -- MP Increase (1x)
-(30705, 4410, 11), -- Average P. Atk.
-(30705, 4411, 11), -- Average M. Atk.
-(30705, 4412, 11), -- Average P. Def.
-(30705, 4413, 11), -- Average M. Def.
-(30705, 4414, 2), -- Standard Type
-(30705, 4415, 3), -- One-handed Sword
-(30705, 4416, 17), -- Orcs
+(30705, 4408, 1), -- HP Modifiers
+(30705, 4409, 1), -- MP Modifiers
+(30705, 4410, 11); -- P. Atk. Modifiers
+
+INSERT INTO `npcskills` VALUES
+(30705, 4411, 11), -- M. Atk. Modifiers
+(30705, 4412, 11), -- P. Def. Modifiers
+(30705, 4413, 11), -- M. Def. Modifiers
+(30705, 4414, 2), -- Armor Type
+(30705, 4415, 3), -- Weapon Type
+(30705, 4416, 17), -- Races
 -- Lazenby
 (30706, 4045, 1), -- Resist Full Magic Attack
-(30706, 4408, 1), -- HP Increase (1x)
-(30706, 4409, 1), -- MP Increase (1x)
-(30706, 4410, 11), -- Average P. Atk.
-(30706, 4411, 11), -- Average M. Atk.
-(30706, 4412, 11), -- Average P. Def.
-(30706, 4413, 11), -- Average M. Def.
-(30706, 4414, 2), -- Standard Type
-(30706, 4415, 3), -- One-handed Sword
-(30706, 4416, 17), -- Orcs
+(30706, 4408, 1), -- HP Modifiers
+(30706, 4409, 1), -- MP Modifiers
+(30706, 4410, 11), -- P. Atk. Modifiers
+(30706, 4411, 11), -- M. Atk. Modifiers
+(30706, 4412, 11), -- P. Def. Modifiers
+(30706, 4413, 11), -- M. Def. Modifiers
+(30706, 4414, 2), -- Armor Type
+(30706, 4415, 3), -- Weapon Type
+(30706, 4416, 17), -- Races
 -- Raigen
 (30707, 4045, 1), -- Resist Full Magic Attack
-(30707, 4408, 1), -- HP Increase (1x)
-(30707, 4409, 1), -- MP Increase (1x)
-(30707, 4410, 16), -- Very Strong P. Atk.
-(30707, 4411, 16), -- Very Strong M. Atk.
-(30707, 4412, 16), -- Very Strong P. Def.
-(30707, 4413, 16), -- Very Strong M. Def.
-(30707, 4414, 2), -- Standard Type
-(30707, 4415, 3), -- One-handed Sword
-(30707, 4416, 14), -- Humans
+(30707, 4408, 1), -- HP Modifiers
+(30707, 4409, 1), -- MP Modifiers
+(30707, 4410, 16), -- P. Atk. Modifiers
+(30707, 4411, 16), -- M. Atk. Modifiers
+(30707, 4412, 16), -- P. Def. Modifiers
+(30707, 4413, 16), -- M. Def. Modifiers
+(30707, 4414, 2), -- Armor Type
+(30707, 4415, 3), -- Weapon Type
+(30707, 4416, 14), -- Races
 -- Nasign
 (30708, 4045, 1), -- Resist Full Magic Attack
-(30708, 4408, 1), -- HP Increase (1x)
-(30708, 4409, 1), -- MP Increase (1x)
-(30708, 4410, 16), -- Very Strong P. Atk.
-(30708, 4411, 16), -- Very Strong M. Atk.
-(30708, 4412, 16), -- Very Strong P. Def.
-(30708, 4413, 16), -- Very Strong M. Def.
-(30708, 4414, 2), -- Standard Type
-(30708, 4415, 3), -- One-handed Sword
-(30708, 4416, 14), -- Humans
+(30708, 4408, 1), -- HP Modifiers
+(30708, 4409, 1), -- MP Modifiers
+(30708, 4410, 16), -- P. Atk. Modifiers
+(30708, 4411, 16), -- M. Atk. Modifiers
+(30708, 4412, 16), -- P. Def. Modifiers
+(30708, 4413, 16), -- M. Def. Modifiers
+(30708, 4414, 2), -- Armor Type
+(30708, 4415, 3), -- Weapon Type
+(30708, 4416, 14), -- Races
 -- Norton
 (30709, 4045, 1), -- Resist Full Magic Attack
-(30709, 4408, 1), -- HP Increase (1x)
-(30709, 4409, 1), -- MP Increase (1x)
-(30709, 4410, 16), -- Very Strong P. Atk.
-(30709, 4411, 16), -- Very Strong M. Atk.
-(30709, 4412, 16), -- Very Strong P. Def.
-(30709, 4413, 16), -- Very Strong M. Def.
-(30709, 4414, 2), -- Standard Type
-(30709, 4415, 9), -- Bows
-(30709, 4416, 14), -- Humans
+(30709, 4408, 1), -- HP Modifiers
+(30709, 4409, 1), -- MP Modifiers
+(30709, 4410, 16), -- P. Atk. Modifiers
+(30709, 4411, 16), -- M. Atk. Modifiers
+(30709, 4412, 16), -- P. Def. Modifiers
+(30709, 4413, 16), -- M. Def. Modifiers
+(30709, 4414, 2), -- Armor Type
+(30709, 4415, 9), -- Weapon Type
+(30709, 4416, 14), -- Races
 -- Weston
 (30710, 4045, 1), -- Resist Full Magic Attack
-(30710, 4408, 1), -- HP Increase (1x)
-(30710, 4409, 1), -- MP Increase (1x)
-(30710, 4410, 16), -- Very Strong P. Atk.
-(30710, 4411, 16), -- Very Strong M. Atk.
-(30710, 4412, 16), -- Very Strong P. Def.
-(30710, 4413, 16), -- Very Strong M. Def.
-(30710, 4414, 2), -- Standard Type
-(30710, 4415, 3), -- One-handed Sword
-(30710, 4416, 14), -- Humans
+(30710, 4408, 1), -- HP Modifiers
+(30710, 4409, 1), -- MP Modifiers
+(30710, 4410, 16), -- P. Atk. Modifiers
+(30710, 4411, 16), -- M. Atk. Modifiers
+(30710, 4412, 16), -- P. Def. Modifiers
+(30710, 4413, 16), -- M. Def. Modifiers
+(30710, 4414, 2), -- Armor Type
+(30710, 4415, 3), -- Weapon Type
+(30710, 4416, 14), -- Races
 -- Byron
 (30711, 4045, 1), -- Resist Full Magic Attack
-(30711, 4408, 1), -- HP Increase (1x)
-(30711, 4409, 1), -- MP Increase (1x)
-(30711, 4410, 16), -- Very Strong P. Atk.
-(30711, 4411, 16), -- Very Strong M. Atk.
-(30711, 4412, 16), -- Very Strong P. Def.
-(30711, 4413, 16), -- Very Strong M. Def.
-(30711, 4414, 2), -- Standard Type
-(30711, 4415, 3), -- One-handed Sword
-(30711, 4416, 14), -- Humans
+(30711, 4408, 1), -- HP Modifiers
+(30711, 4409, 1), -- MP Modifiers
+(30711, 4410, 16), -- P. Atk. Modifiers
+(30711, 4411, 16), -- M. Atk. Modifiers
+(30711, 4412, 16), -- P. Def. Modifiers
+(30711, 4413, 16), -- M. Def. Modifiers
+(30711, 4414, 2), -- Armor Type
+(30711, 4415, 3), -- Weapon Type
+(30711, 4416, 14), -- Races
 -- Makhis
 (30712, 4045, 1), -- Resist Full Magic Attack
-(30712, 4408, 1), -- HP Increase (1x)
-(30712, 4409, 1), -- MP Increase (1x)
-(30712, 4410, 16), -- Very Strong P. Atk.
-(30712, 4411, 16), -- Very Strong M. Atk.
-(30712, 4412, 16), -- Very Strong P. Def.
-(30712, 4413, 16), -- Very Strong M. Def.
-(30712, 4414, 2), -- Standard Type
-(30712, 4415, 3), -- One-handed Sword
-(30712, 4416, 14), -- Humans
+(30712, 4408, 1), -- HP Modifiers
+(30712, 4409, 1), -- MP Modifiers
+(30712, 4410, 16), -- P. Atk. Modifiers
+(30712, 4411, 16), -- M. Atk. Modifiers
+(30712, 4412, 16), -- P. Def. Modifiers
+(30712, 4413, 16), -- M. Def. Modifiers
+(30712, 4414, 2), -- Armor Type
+(30712, 4415, 3), -- Weapon Type
+(30712, 4416, 14), -- Races
 -- Gardner
 (30713, 4045, 1), -- Resist Full Magic Attack
-(30713, 4408, 1), -- HP Increase (1x)
-(30713, 4409, 1), -- MP Increase (1x)
-(30713, 4410, 16), -- Very Strong P. Atk.
-(30713, 4411, 16), -- Very Strong M. Atk.
-(30713, 4412, 16), -- Very Strong P. Def.
-(30713, 4413, 16), -- Very Strong M. Def.
-(30713, 4414, 2), -- Standard Type
-(30713, 4415, 9), -- Bows
-(30713, 4416, 14), -- Humans
+(30713, 4408, 1), -- HP Modifiers
+(30713, 4409, 1), -- MP Modifiers
+(30713, 4410, 16), -- P. Atk. Modifiers
+(30713, 4411, 16), -- M. Atk. Modifiers
+(30713, 4412, 16), -- P. Def. Modifiers
+(30713, 4413, 16), -- M. Def. Modifiers
+(30713, 4414, 2), -- Armor Type
+(30713, 4415, 9), -- Weapon Type
+(30713, 4416, 14), -- Races
 -- Paros
 (30714, 4045, 1), -- Resist Full Magic Attack
-(30714, 4408, 1), -- HP Increase (1x)
-(30714, 4409, 1), -- MP Increase (1x)
-(30714, 4410, 16), -- Very Strong P. Atk.
-(30714, 4411, 16), -- Very Strong M. Atk.
-(30714, 4412, 16), -- Very Strong P. Def.
-(30714, 4413, 16), -- Very Strong M. Def.
-(30714, 4414, 2), -- Standard Type
-(30714, 4415, 3), -- One-handed Sword
-(30714, 4416, 14), -- Humans
+(30714, 4408, 1), -- HP Modifiers
+(30714, 4409, 1), -- MP Modifiers
+(30714, 4410, 16), -- P. Atk. Modifiers
+(30714, 4411, 16), -- M. Atk. Modifiers
+(30714, 4412, 16), -- P. Def. Modifiers
+(30714, 4413, 16), -- M. Def. Modifiers
+(30714, 4414, 2), -- Armor Type
+(30714, 4415, 3), -- Weapon Type
+(30714, 4416, 14), -- Races
 -- Marina
 (30715, 4045, 1), -- Resist Full Magic Attack
-(30715, 4408, 1), -- HP Increase (1x)
-(30715, 4409, 1), -- MP Increase (1x)
-(30715, 4410, 11), -- Average P. Atk.
-(30715, 4411, 11), -- Average M. Atk.
-(30715, 4412, 11), -- Average P. Def.
-(30715, 4413, 11), -- Average M. Def.
-(30715, 4414, 2), -- Standard Type
-(30715, 4415, 3), -- One-handed Sword
-(30715, 4416, 14), -- Humans
+(30715, 4408, 1), -- HP Modifiers
+(30715, 4409, 1), -- MP Modifiers
+(30715, 4410, 11), -- P. Atk. Modifiers
+(30715, 4411, 11), -- M. Atk. Modifiers
+(30715, 4412, 11), -- P. Def. Modifiers
+(30715, 4413, 11), -- M. Def. Modifiers
+(30715, 4414, 2), -- Armor Type
+(30715, 4415, 3), -- Weapon Type
+(30715, 4416, 14), -- Races
 -- Cecile
 (30716, 4045, 1), -- Resist Full Magic Attack
-(30716, 4408, 1), -- HP Increase (1x)
-(30716, 4409, 1), -- MP Increase (1x)
-(30716, 4410, 11), -- Average P. Atk.
-(30716, 4411, 11), -- Average M. Atk.
-(30716, 4412, 11), -- Average P. Def.
-(30716, 4413, 11), -- Average M. Def.
-(30716, 4414, 2), -- Standard Type
-(30716, 4415, 3), -- One-handed Sword
-(30716, 4416, 14), -- Humans
+(30716, 4408, 1), -- HP Modifiers
+(30716, 4409, 1), -- MP Modifiers
+(30716, 4410, 11), -- P. Atk. Modifiers
+(30716, 4411, 11), -- M. Atk. Modifiers
+(30716, 4412, 11), -- P. Def. Modifiers
+(30716, 4413, 11), -- M. Def. Modifiers
+(30716, 4414, 2), -- Armor Type
+(30716, 4415, 3), -- Weapon Type
+(30716, 4416, 14), -- Races
 -- Gauen
 (30717, 4045, 1), -- Resist Full Magic Attack
-(30717, 4408, 1), -- HP Increase (1x)
-(30717, 4409, 1), -- MP Increase (1x)
-(30717, 4410, 11), -- Average P. Atk.
-(30717, 4411, 11), -- Average M. Atk.
-(30717, 4412, 11), -- Average P. Def.
-(30717, 4413, 11), -- Average M. Def.
-(30717, 4414, 2), -- Standard Type
-(30717, 4415, 3), -- One-handed Sword
-(30717, 4416, 15), -- Elves
+(30717, 4408, 1), -- HP Modifiers
+(30717, 4409, 1), -- MP Modifiers
+(30717, 4410, 11), -- P. Atk. Modifiers
+(30717, 4411, 11), -- M. Atk. Modifiers
+(30717, 4412, 11), -- P. Def. Modifiers
+(30717, 4413, 11), -- M. Def. Modifiers
+(30717, 4414, 2), -- Armor Type
+(30717, 4415, 3), -- Weapon Type
+(30717, 4416, 15), -- Races
 -- Joan
 (30718, 4045, 1), -- Resist Full Magic Attack
-(30718, 4408, 1), -- HP Increase (1x)
-(30718, 4409, 1), -- MP Increase (1x)
-(30718, 4410, 11), -- Average P. Atk.
-(30718, 4411, 11), -- Average M. Atk.
-(30718, 4412, 11), -- Average P. Def.
-(30718, 4413, 11), -- Average M. Def.
-(30718, 4414, 2), -- Standard Type
-(30718, 4415, 3), -- One-handed Sword
-(30718, 4416, 15), -- Elves
+(30718, 4408, 1), -- HP Modifiers
+(30718, 4409, 1), -- MP Modifiers
+(30718, 4410, 11), -- P. Atk. Modifiers
+(30718, 4411, 11), -- M. Atk. Modifiers
+(30718, 4412, 11), -- P. Def. Modifiers
+(30718, 4413, 11), -- M. Def. Modifiers
+(30718, 4414, 2), -- Armor Type
+(30718, 4415, 3), -- Weapon Type
+(30718, 4416, 15), -- Races
 -- Mariell
 (30719, 4045, 1), -- Resist Full Magic Attack
-(30719, 4408, 1), -- HP Increase (1x)
-(30719, 4409, 1), -- MP Increase (1x)
-(30719, 4410, 11), -- Average P. Atk.
-(30719, 4411, 11), -- Average M. Atk.
-(30719, 4412, 11), -- Average P. Def.
-(30719, 4413, 11), -- Average M. Def.
-(30719, 4414, 2), -- Standard Type
-(30719, 4415, 3), -- One-handed Sword
-(30719, 4416, 15), -- Elves
+(30719, 4408, 1), -- HP Modifiers
+(30719, 4409, 1), -- MP Modifiers
+(30719, 4410, 11), -- P. Atk. Modifiers
+(30719, 4411, 11), -- M. Atk. Modifiers
+(30719, 4412, 11), -- P. Def. Modifiers
+(30719, 4413, 11), -- M. Def. Modifiers
+(30719, 4414, 2), -- Armor Type
+(30719, 4415, 3), -- Weapon Type
+(30719, 4416, 15), -- Races
 -- Kaiena
 (30720, 4045, 1), -- Resist Full Magic Attack
-(30720, 4408, 1), -- HP Increase (1x)
-(30720, 4409, 1), -- MP Increase (1x)
-(30720, 4410, 11), -- Average P. Atk.
-(30720, 4411, 11), -- Average M. Atk.
-(30720, 4412, 11), -- Average P. Def.
-(30720, 4413, 11), -- Average M. Def.
-(30720, 4414, 2), -- Standard Type
-(30720, 4415, 3), -- One-handed Sword
-(30720, 4416, 16), -- Dark Elves
+(30720, 4408, 1), -- HP Modifiers
+(30720, 4409, 1), -- MP Modifiers
+(30720, 4410, 11), -- P. Atk. Modifiers
+(30720, 4411, 11), -- M. Atk. Modifiers
+(30720, 4412, 11), -- P. Def. Modifiers
+(30720, 4413, 11), -- M. Def. Modifiers
+(30720, 4414, 2), -- Armor Type
+(30720, 4415, 3), -- Weapon Type
+(30720, 4416, 16), -- Races
 -- Ladd
 (30721, 4045, 1), -- Resist Full Magic Attack
-(30721, 4408, 1), -- HP Increase (1x)
-(30721, 4409, 1), -- MP Increase (1x)
-(30721, 4410, 11), -- Average P. Atk.
-(30721, 4411, 11), -- Average M. Atk.
-(30721, 4412, 11), -- Average P. Def.
-(30721, 4413, 11), -- Average M. Def.
-(30721, 4414, 2), -- Standard Type
-(30721, 4415, 3), -- One-handed Sword
-(30721, 4416, 16), -- Dark Elves
+(30721, 4408, 1), -- HP Modifiers
+(30721, 4409, 1), -- MP Modifiers
+(30721, 4410, 11), -- P. Atk. Modifiers
+(30721, 4411, 11), -- M. Atk. Modifiers
+(30721, 4412, 11), -- P. Def. Modifiers
+(30721, 4413, 11), -- M. Def. Modifiers
+(30721, 4414, 2), -- Armor Type
+(30721, 4415, 3), -- Weapon Type
+(30721, 4416, 16), -- Races
 -- Merian
 (30722, 4045, 1), -- Resist Full Magic Attack
-(30722, 4408, 1), -- HP Increase (1x)
-(30722, 4409, 1), -- MP Increase (1x)
-(30722, 4410, 11), -- Average P. Atk.
-(30722, 4411, 11), -- Average M. Atk.
-(30722, 4412, 11), -- Average P. Def.
-(30722, 4413, 11), -- Average M. Def.
-(30722, 4414, 2), -- Standard Type
-(30722, 4415, 3), -- One-handed Sword
-(30722, 4416, 16), -- Dark Elves
+(30722, 4408, 1), -- HP Modifiers
+(30722, 4409, 1), -- MP Modifiers
+(30722, 4410, 11), -- P. Atk. Modifiers
+(30722, 4411, 11), -- M. Atk. Modifiers
+(30722, 4412, 11), -- P. Def. Modifiers
+(30722, 4413, 11), -- M. Def. Modifiers
+(30722, 4414, 2), -- Armor Type
+(30722, 4415, 3), -- Weapon Type
+(30722, 4416, 16), -- Races
 -- Roy
 (30723, 4045, 1), -- Resist Full Magic Attack
-(30723, 4408, 1), -- HP Increase (1x)
-(30723, 4409, 1), -- MP Increase (1x)
-(30723, 4410, 16), -- Very Strong P. Atk.
-(30723, 4411, 16), -- Very Strong M. Atk.
-(30723, 4412, 16), -- Very Strong P. Def.
-(30723, 4413, 16), -- Very Strong M. Def.
-(30723, 4414, 2), -- Standard Type
-(30723, 4415, 3), -- One-handed Sword
-(30723, 4416, 14), -- Humans
+(30723, 4408, 1), -- HP Modifiers
+(30723, 4409, 1), -- MP Modifiers
+(30723, 4410, 16), -- P. Atk. Modifiers
+(30723, 4411, 16), -- M. Atk. Modifiers
+(30723, 4412, 16), -- P. Def. Modifiers
+(30723, 4413, 16), -- M. Def. Modifiers
+(30723, 4414, 2), -- Armor Type
+(30723, 4415, 3), -- Weapon Type
+(30723, 4416, 14), -- Races
 -- Tavillian
 (30724, 4045, 1), -- Resist Full Magic Attack
-(30724, 4408, 1), -- HP Increase (1x)
-(30724, 4409, 1), -- MP Increase (1x)
-(30724, 4410, 16), -- Very Strong P. Atk.
-(30724, 4411, 16), -- Very Strong M. Atk.
-(30724, 4412, 16), -- Very Strong P. Def.
-(30724, 4413, 16), -- Very Strong M. Def.
-(30724, 4414, 2), -- Standard Type
-(30724, 4415, 3), -- One-handed Sword
-(30724, 4416, 14), -- Humans
+(30724, 4408, 1), -- HP Modifiers
+(30724, 4409, 1), -- MP Modifiers
+(30724, 4410, 16), -- P. Atk. Modifiers
+(30724, 4411, 16), -- M. Atk. Modifiers
+(30724, 4412, 16), -- P. Def. Modifiers
+(30724, 4413, 16), -- M. Def. Modifiers
+(30724, 4414, 2), -- Armor Type
+(30724, 4415, 3), -- Weapon Type
+(30724, 4416, 14), -- Races
 -- Yening
 (30725, 4045, 1), -- Resist Full Magic Attack
-(30725, 4408, 1), -- HP Increase (1x)
-(30725, 4409, 1), -- MP Increase (1x)
-(30725, 4410, 16), -- Very Strong P. Atk.
-(30725, 4411, 16), -- Very Strong M. Atk.
-(30725, 4412, 16), -- Very Strong P. Def.
-(30725, 4413, 16), -- Very Strong M. Def.
-(30725, 4414, 2), -- Standard Type
-(30725, 4415, 3), -- One-handed Sword
-(30725, 4416, 14), -- Humans
+(30725, 4408, 1), -- HP Modifiers
+(30725, 4409, 1), -- MP Modifiers
+(30725, 4410, 16), -- P. Atk. Modifiers
+(30725, 4411, 16), -- M. Atk. Modifiers
+(30725, 4412, 16), -- P. Def. Modifiers
+(30725, 4413, 16), -- M. Def. Modifiers
+(30725, 4414, 2), -- Armor Type
+(30725, 4415, 3), -- Weapon Type
+(30725, 4416, 14), -- Races
 -- Tebose
 (30726, 4045, 1), -- Resist Full Magic Attack
-(30726, 4408, 1), -- HP Increase (1x)
-(30726, 4409, 1), -- MP Increase (1x)
-(30726, 4410, 16), -- Very Strong P. Atk.
-(30726, 4411, 16), -- Very Strong M. Atk.
-(30726, 4412, 16), -- Very Strong P. Def.
-(30726, 4413, 16), -- Very Strong M. Def.
-(30726, 4414, 2), -- Standard Type
-(30726, 4415, 3), -- One-handed Sword
-(30726, 4416, 14), -- Humans
+(30726, 4408, 1), -- HP Modifiers
+(30726, 4409, 1), -- MP Modifiers
+(30726, 4410, 16), -- P. Atk. Modifiers
+(30726, 4411, 16), -- M. Atk. Modifiers
+(30726, 4412, 16), -- P. Def. Modifiers
+(30726, 4413, 16), -- M. Def. Modifiers
+(30726, 4414, 2), -- Armor Type
+(30726, 4415, 3), -- Weapon Type
+(30726, 4416, 14), -- Races
 -- Verona
 (30727, 4045, 1), -- Resist Full Magic Attack
-(30727, 4408, 1), -- HP Increase (1x)
-(30727, 4409, 1), -- MP Increase (1x)
-(30727, 4410, 11), -- Average P. Atk.
-(30727, 4411, 11), -- Average M. Atk.
-(30727, 4412, 11), -- Average P. Def.
-(30727, 4413, 11), -- Average M. Def.
-(30727, 4414, 2), -- Standard Type
-(30727, 4415, 3), -- One-handed Sword
-(30727, 4416, 14), -- Humans
+(30727, 4408, 1), -- HP Modifiers
+(30727, 4409, 1), -- MP Modifiers
+(30727, 4410, 11), -- P. Atk. Modifiers
+(30727, 4411, 11), -- M. Atk. Modifiers
+(30727, 4412, 11), -- P. Def. Modifiers
+(30727, 4413, 11), -- M. Def. Modifiers
+(30727, 4414, 2), -- Armor Type
+(30727, 4415, 3), -- Weapon Type
+(30727, 4416, 14), -- Races
 -- Leirynn
 (30728, 4045, 1), -- Resist Full Magic Attack
-(30728, 4408, 1), -- HP Increase (1x)
-(30728, 4409, 1), -- MP Increase (1x)
-(30728, 4410, 11), -- Average P. Atk.
-(30728, 4411, 11), -- Average M. Atk.
-(30728, 4412, 11), -- Average P. Def.
-(30728, 4413, 11), -- Average M. Def.
-(30728, 4414, 2), -- Standard Type
-(30728, 4415, 3), -- One-handed Sword
-(30728, 4416, 14), -- Humans
+(30728, 4408, 1), -- HP Modifiers
+(30728, 4409, 1), -- MP Modifiers
+(30728, 4410, 11), -- P. Atk. Modifiers
+(30728, 4411, 11), -- M. Atk. Modifiers
+(30728, 4412, 11), -- P. Def. Modifiers
+(30728, 4413, 11), -- M. Def. Modifiers
+(30728, 4414, 2), -- Armor Type
+(30728, 4415, 3), -- Weapon Type
+(30728, 4416, 14), -- Races
 -- Borys
 (30729, 4045, 1), -- Resist Full Magic Attack
-(30729, 4408, 1), -- HP Increase (1x)
-(30729, 4409, 1), -- MP Increase (1x)
-(30729, 4410, 11), -- Average P. Atk.
-(30729, 4411, 11), -- Average M. Atk.
-(30729, 4412, 11), -- Average P. Def.
-(30729, 4413, 11), -- Average M. Def.
-(30729, 4414, 2), -- Standard Type
-(30729, 4415, 3), -- One-handed Sword
-(30729, 4416, 14), -- Humans
+(30729, 4408, 1), -- HP Modifiers
+(30729, 4409, 1), -- MP Modifiers
+(30729, 4410, 11), -- P. Atk. Modifiers
+(30729, 4411, 11), -- M. Atk. Modifiers
+(30729, 4412, 11), -- P. Def. Modifiers
+(30729, 4413, 11), -- M. Def. Modifiers
+(30729, 4414, 2), -- Armor Type
+(30729, 4415, 3), -- Weapon Type
+(30729, 4416, 14), -- Races
 -- Jax
 (30730, 4045, 1), -- Resist Full Magic Attack
-(30730, 4408, 1), -- HP Increase (1x)
-(30730, 4409, 1), -- MP Increase (1x)
-(30730, 4410, 11), -- Average P. Atk.
-(30730, 4411, 11), -- Average M. Atk.
-(30730, 4412, 11), -- Average P. Def.
-(30730, 4413, 11), -- Average M. Def.
-(30730, 4414, 2), -- Standard Type
-(30730, 4415, 3), -- One-handed Sword
-(30730, 4416, 14), -- Humans
+(30730, 4408, 1), -- HP Modifiers
+(30730, 4409, 1), -- MP Modifiers
+(30730, 4410, 11), -- P. Atk. Modifiers
+(30730, 4411, 11), -- M. Atk. Modifiers
+(30730, 4412, 11), -- P. Def. Modifiers
+(30730, 4413, 11), -- M. Def. Modifiers
+(30730, 4414, 2), -- Armor Type
+(30730, 4415, 3), -- Weapon Type
+(30730, 4416, 14), -- Races
 -- Martin
 (30731, 4045, 1), -- Resist Full Magic Attack
-(30731, 4408, 1), -- HP Increase (1x)
-(30731, 4409, 1), -- MP Increase (1x)
-(30731, 4410, 11), -- Average P. Atk.
-(30731, 4411, 11), -- Average M. Atk.
-(30731, 4412, 11), -- Average P. Def.
-(30731, 4413, 11), -- Average M. Def.
-(30731, 4414, 2), -- Standard Type
-(30731, 4415, 3), -- One-handed Sword
-(30731, 4416, 14), -- Humans
+(30731, 4408, 1), -- HP Modifiers
+(30731, 4409, 1), -- MP Modifiers
+(30731, 4410, 11), -- P. Atk. Modifiers
+(30731, 4411, 11), -- M. Atk. Modifiers
+(30731, 4412, 11), -- P. Def. Modifiers
+(30731, 4413, 11), -- M. Def. Modifiers
+(30731, 4414, 2), -- Armor Type
+(30731, 4415, 3), -- Weapon Type
+(30731, 4416, 14), -- Races
 -- Ol Mahum Pilgrim
-(30732, 4408, 1), -- HP Increase (1x)
-(30732, 4409, 1), -- MP Increase (1x)
-(30732, 4410, 11), -- Average P. Atk.
-(30732, 4411, 11), -- Average M. Atk.
-(30732, 4412, 11), -- Average P. Def.
-(30732, 4413, 11), -- Average M. Def.
-(30732, 4414, 2), -- Standard Type
-(30732, 4415, 3), -- One-handed Sword
-(30732, 4416, 6), -- Humanoids
+(30732, 4408, 1), -- HP Modifiers
+(30732, 4409, 1), -- MP Modifiers
+(30732, 4410, 11), -- P. Atk. Modifiers
+(30732, 4411, 11), -- M. Atk. Modifiers
+(30732, 4412, 11), -- P. Def. Modifiers
+(30732, 4413, 11), -- M. Def. Modifiers
+(30732, 4414, 2), -- Armor Type
+(30732, 4415, 3), -- Weapon Type
+(30732, 4416, 6), -- Races
 -- Guard
 (30733, 4045, 1), -- Resist Full Magic Attack
-(30733, 4408, 1), -- HP Increase (1x)
-(30733, 4409, 1), -- MP Increase (1x)
-(30733, 4410, 16), -- Very Strong P. Atk.
-(30733, 4411, 16), -- Very Strong M. Atk.
-(30733, 4412, 16), -- Very Strong P. Def.
-(30733, 4413, 16), -- Very Strong M. Def.
-(30733, 4414, 2), -- Standard Type
-(30733, 4415, 9), -- Bows
-(30733, 4416, 14), -- Humans
+(30733, 4408, 1), -- HP Modifiers
+(30733, 4409, 1), -- MP Modifiers
+(30733, 4410, 16), -- P. Atk. Modifiers
+(30733, 4411, 16), -- M. Atk. Modifiers
+(30733, 4412, 16), -- P. Def. Modifiers
+(30733, 4413, 16), -- M. Def. Modifiers
+(30733, 4414, 2), -- Armor Type
+(30733, 4415, 9), -- Weapon Type
+(30733, 4416, 14), -- Races
 -- Supply Box On Wharf
 (30734, 4045, 1), -- Resist Full Magic Attack
-(30734, 4390, 1), -- Mystic Immunity
-(30734, 4408, 1), -- HP Increase (1x)
-(30734, 4409, 1), -- MP Increase (1x)
-(30734, 4410, 11), -- Average P. Atk.
-(30734, 4411, 11), -- Average M. Atk.
-(30734, 4412, 11), -- Average P. Def.
-(30734, 4413, 11), -- Average M. Def.
-(30734, 4414, 2), -- Standard Type
-(30734, 4415, 3), -- One-handed Sword
-(30734, 4416, 19), -- Others
+(30734, 4390, 1), -- NPC Abnormal Immunity
+(30734, 4408, 1), -- HP Modifiers
+(30734, 4409, 1), -- MP Modifiers
+(30734, 4410, 11), -- P. Atk. Modifiers
+(30734, 4411, 11), -- M. Atk. Modifiers
+(30734, 4412, 11), -- P. Def. Modifiers
+(30734, 4413, 11), -- M. Def. Modifiers
+(30734, 4414, 2), -- Armor Type
+(30734, 4415, 3), -- Weapon Type
+(30734, 4416, 19), -- Races
 -- Sophya
 (30735, 4045, 1), -- Resist Full Magic Attack
-(30735, 4408, 1), -- HP Increase (1x)
-(30735, 4409, 1), -- MP Increase (1x)
-(30735, 4410, 11), -- Average P. Atk.
-(30735, 4411, 11), -- Average M. Atk.
-(30735, 4412, 11), -- Average P. Def.
-(30735, 4413, 11), -- Average M. Def.
-(30735, 4414, 2), -- Standard Type
-(30735, 4415, 3), -- One-handed Sword
-(30735, 4416, 14), -- Humans
+(30735, 4408, 1), -- HP Modifiers
+(30735, 4409, 1), -- MP Modifiers
+(30735, 4410, 11), -- P. Atk. Modifiers
+(30735, 4411, 11), -- M. Atk. Modifiers
+(30735, 4412, 11), -- P. Def. Modifiers
+(30735, 4413, 11), -- M. Def. Modifiers
+(30735, 4414, 2), -- Armor Type
+(30735, 4415, 3), -- Weapon Type
+(30735, 4416, 14), -- Races
 -- Redfoot
 (30736, 4045, 1), -- Resist Full Magic Attack
-(30736, 4408, 1), -- HP Increase (1x)
-(30736, 4409, 1), -- MP Increase (1x)
-(30736, 4410, 11), -- Average P. Atk.
-(30736, 4411, 11), -- Average M. Atk.
-(30736, 4412, 11), -- Average P. Def.
-(30736, 4413, 11), -- Average M. Def.
-(30736, 4414, 2), -- Standard Type
-(30736, 4415, 3), -- One-handed Sword
-(30736, 4416, 14), -- Humans
+(30736, 4408, 1), -- HP Modifiers
+(30736, 4409, 1), -- MP Modifiers
+(30736, 4410, 11), -- P. Atk. Modifiers
+(30736, 4411, 11), -- M. Atk. Modifiers
+(30736, 4412, 11), -- P. Def. Modifiers
+(30736, 4413, 11), -- M. Def. Modifiers
+(30736, 4414, 2), -- Armor Type
+(30736, 4415, 3), -- Weapon Type
+(30736, 4416, 14), -- Races
 -- Morgan
 (30737, 4045, 1), -- Resist Full Magic Attack
-(30737, 4408, 1), -- HP Increase (1x)
-(30737, 4409, 1), -- MP Increase (1x)
-(30737, 4410, 11), -- Average P. Atk.
-(30737, 4411, 11), -- Average M. Atk.
-(30737, 4412, 11), -- Average P. Def.
-(30737, 4413, 11), -- Average M. Def.
-(30737, 4414, 2), -- Standard Type
-(30737, 4415, 3), -- One-handed Sword
-(30737, 4416, 14), -- Humans
+(30737, 4408, 1), -- HP Modifiers
+(30737, 4409, 1), -- MP Modifiers
+(30737, 4410, 11), -- P. Atk. Modifiers
+(30737, 4411, 11), -- M. Atk. Modifiers
+(30737, 4412, 11), -- P. Def. Modifiers
+(30737, 4413, 11), -- M. Def. Modifiers
+(30737, 4414, 2), -- Armor Type
+(30737, 4415, 3), -- Weapon Type
+(30737, 4416, 14), -- Races
 -- Matild
 (30738, 4045, 1), -- Resist Full Magic Attack
-(30738, 4408, 1), -- HP Increase (1x)
-(30738, 4409, 1), -- MP Increase (1x)
-(30738, 4410, 11), -- Average P. Atk.
-(30738, 4411, 11), -- Average M. Atk.
-(30738, 4412, 11), -- Average P. Def.
-(30738, 4413, 11), -- Average M. Def.
-(30738, 4414, 2), -- Standard Type
-(30738, 4415, 3), -- One-handed Sword
-(30738, 4416, 18), -- Dwarves
+(30738, 4408, 1), -- HP Modifiers
+(30738, 4409, 1), -- MP Modifiers
+(30738, 4410, 11), -- P. Atk. Modifiers
+(30738, 4411, 11), -- M. Atk. Modifiers
+(30738, 4412, 11), -- P. Def. Modifiers
+(30738, 4413, 11), -- M. Def. Modifiers
+(30738, 4414, 2), -- Armor Type
+(30738, 4415, 3), -- Weapon Type
+(30738, 4416, 18), -- Races
 -- Keltir
 (30739, 4045, 1), -- Resist Full Magic Attack
-(30739, 4408, 1), -- HP Increase (1x)
-(30739, 4409, 1), -- MP Increase (1x)
-(30739, 4410, 11), -- Average P. Atk.
-(30739, 4411, 11), -- Average M. Atk.
-(30739, 4412, 11), -- Average P. Def.
-(30739, 4413, 11), -- Average M. Def.
-(30739, 4414, 2), -- Standard Type
-(30739, 4415, 3), -- One-handed Sword
-(30739, 4416, 4), -- Animals
+(30739, 4408, 1), -- HP Modifiers
+(30739, 4409, 1), -- MP Modifiers
+(30739, 4410, 11), -- P. Atk. Modifiers
+(30739, 4411, 11), -- M. Atk. Modifiers
+(30739, 4412, 11), -- P. Def. Modifiers
+(30739, 4413, 11), -- M. Def. Modifiers
+(30739, 4414, 2), -- Armor Type
+(30739, 4415, 3), -- Weapon Type
+(30739, 4416, 4), -- Races
 -- Toad
 (30740, 4045, 1), -- Resist Full Magic Attack
-(30740, 4408, 1), -- HP Increase (1x)
-(30740, 4409, 1), -- MP Increase (1x)
-(30740, 4410, 11), -- Average P. Atk.
-(30740, 4411, 11), -- Average M. Atk.
-(30740, 4412, 11), -- Average P. Def.
-(30740, 4413, 11), -- Average M. Def.
-(30740, 4414, 2), -- Standard Type
-(30740, 4415, 3), -- One-handed Sword
-(30740, 4416, 4), -- Animals
+(30740, 4408, 1), -- HP Modifiers
+(30740, 4409, 1), -- MP Modifiers
+(30740, 4410, 11), -- P. Atk. Modifiers
+(30740, 4411, 11), -- M. Atk. Modifiers
+(30740, 4412, 11), -- P. Def. Modifiers
+(30740, 4413, 11), -- M. Def. Modifiers
+(30740, 4414, 2), -- Armor Type
+(30740, 4415, 3), -- Weapon Type
+(30740, 4416, 4), -- Races
 -- Rabbit
 (30741, 4045, 1), -- Resist Full Magic Attack
-(30741, 4408, 1), -- HP Increase (1x)
-(30741, 4409, 1), -- MP Increase (1x)
-(30741, 4410, 11), -- Average P. Atk.
-(30741, 4411, 11), -- Average M. Atk.
-(30741, 4412, 11), -- Average P. Def.
-(30741, 4413, 11); -- Average M. Def.
-
-INSERT INTO `npcskills` VALUES
-(30741, 4414, 2), -- Standard Type
-(30741, 4415, 3), -- One-handed Sword
-(30741, 4416, 4), -- Animals
+(30741, 4408, 1), -- HP Modifiers
+(30741, 4409, 1), -- MP Modifiers
+(30741, 4410, 11), -- P. Atk. Modifiers
+(30741, 4411, 11), -- M. Atk. Modifiers
+(30741, 4412, 11), -- P. Def. Modifiers
+(30741, 4413, 11), -- M. Def. Modifiers
+(30741, 4414, 2), -- Armor Type
+(30741, 4415, 3), -- Weapon Type
+(30741, 4416, 4), -- Races
 -- Rupina
 (30742, 4045, 1), -- Resist Full Magic Attack
-(30742, 4408, 1), -- HP Increase (1x)
-(30742, 4409, 1), -- MP Increase (1x)
-(30742, 4410, 11), -- Average P. Atk.
-(30742, 4411, 11), -- Average M. Atk.
-(30742, 4412, 11), -- Average P. Def.
-(30742, 4413, 11), -- Average M. Def.
-(30742, 4414, 2), -- Standard Type
-(30742, 4415, 3), -- One-handed Sword
-(30742, 4416, 13), -- Fairies
+(30742, 4408, 1), -- HP Modifiers
+(30742, 4409, 1), -- MP Modifiers
+(30742, 4410, 11), -- P. Atk. Modifiers
+(30742, 4411, 11), -- M. Atk. Modifiers
+(30742, 4412, 11), -- P. Def. Modifiers
+(30742, 4413, 11), -- M. Def. Modifiers
+(30742, 4414, 2), -- Armor Type
+(30742, 4415, 3), -- Weapon Type
+(30742, 4416, 13), -- Races
 -- Wisdom Chest
 (30743, 4045, 1), -- Resist Full Magic Attack
-(30743, 4390, 1), -- Mystic Immunity
-(30743, 4408, 1), -- HP Increase (1x)
-(30743, 4409, 1), -- MP Increase (1x)
-(30743, 4410, 11), -- Average P. Atk.
-(30743, 4411, 11), -- Average M. Atk.
-(30743, 4412, 11), -- Average P. Def.
-(30743, 4413, 11), -- Average M. Def.
-(30743, 4414, 2), -- Standard Type
-(30743, 4415, 3), -- One-handed Sword
-(30743, 4416, 19), -- Others
+(30743, 4390, 1), -- NPC Abnormal Immunity
+(30743, 4408, 1), -- HP Modifiers
+(30743, 4409, 1), -- MP Modifiers
+(30743, 4410, 11), -- P. Atk. Modifiers
+(30743, 4411, 11), -- M. Atk. Modifiers
+(30743, 4412, 11), -- P. Def. Modifiers
+(30743, 4413, 11), -- M. Def. Modifiers
+(30743, 4414, 2), -- Armor Type
+(30743, 4415, 3), -- Weapon Type
+(30743, 4416, 19), -- Races
 -- Grey
 (30744, 4045, 1), -- Resist Full Magic Attack
-(30744, 4408, 1), -- HP Increase (1x)
-(30744, 4409, 1), -- MP Increase (1x)
-(30744, 4410, 11), -- Average P. Atk.
-(30744, 4411, 11), -- Average M. Atk.
-(30744, 4412, 11), -- Average P. Def.
-(30744, 4413, 11), -- Average M. Def.
-(30744, 4414, 2), -- Standard Type
-(30744, 4415, 3), -- One-handed Sword
-(30744, 4416, 14), -- Humans
+(30744, 4408, 1), -- HP Modifiers
+(30744, 4409, 1), -- MP Modifiers
+(30744, 4410, 11), -- P. Atk. Modifiers
+(30744, 4411, 11), -- M. Atk. Modifiers
+(30744, 4412, 11), -- P. Def. Modifiers
+(30744, 4413, 11), -- M. Def. Modifiers
+(30744, 4414, 2), -- Armor Type
+(30744, 4415, 3), -- Weapon Type
+(30744, 4416, 14), -- Races
 -- Tor
 (30745, 4045, 1), -- Resist Full Magic Attack
-(30745, 4408, 1), -- HP Increase (1x)
-(30745, 4409, 1), -- MP Increase (1x)
-(30745, 4410, 11), -- Average P. Atk.
-(30745, 4411, 11), -- Average M. Atk.
-(30745, 4412, 11), -- Average P. Def.
-(30745, 4413, 11), -- Average M. Def.
-(30745, 4414, 2), -- Standard Type
-(30745, 4415, 3), -- One-handed Sword
-(30745, 4416, 14), -- Humans
+(30745, 4408, 1), -- HP Modifiers
+(30745, 4409, 1), -- MP Modifiers
+(30745, 4410, 11), -- P. Atk. Modifiers
+(30745, 4411, 11), -- M. Atk. Modifiers
+(30745, 4412, 11), -- P. Def. Modifiers
+(30745, 4413, 11), -- M. Def. Modifiers
+(30745, 4414, 2), -- Armor Type
+(30745, 4415, 3), -- Weapon Type
+(30745, 4416, 14), -- Races
 -- Cybellin
 (30746, 4045, 1), -- Resist Full Magic Attack
-(30746, 4408, 1), -- HP Increase (1x)
-(30746, 4409, 1), -- MP Increase (1x)
-(30746, 4410, 11), -- Average P. Atk.
-(30746, 4411, 11), -- Average M. Atk.
-(30746, 4412, 11), -- Average P. Def.
-(30746, 4413, 11), -- Average M. Def.
-(30746, 4414, 2), -- Standard Type
-(30746, 4415, 3), -- One-handed Sword
-(30746, 4416, 16), -- Dark Elves
+(30746, 4408, 1), -- HP Modifiers
+(30746, 4409, 1), -- MP Modifiers
+(30746, 4410, 11), -- P. Atk. Modifiers
+(30746, 4411, 11), -- M. Atk. Modifiers
+(30746, 4412, 11), -- P. Def. Modifiers
+(30746, 4413, 11), -- M. Def. Modifiers
+(30746, 4414, 2), -- Armor Type
+(30746, 4415, 3), -- Weapon Type
+(30746, 4416, 16), -- Races
 -- Mimyu
 (30747, 4045, 1), -- Resist Full Magic Attack
-(30747, 4408, 1), -- HP Increase (1x)
-(30747, 4409, 1), -- MP Increase (1x)
-(30747, 4410, 11), -- Average P. Atk.
-(30747, 4411, 11), -- Average M. Atk.
-(30747, 4412, 11), -- Average P. Def.
-(30747, 4413, 11), -- Average M. Def.
-(30747, 4414, 2), -- Standard Type
-(30747, 4415, 3), -- One-handed Sword
-(30747, 4416, 13), -- Fairies
+(30747, 4408, 1), -- HP Modifiers
+(30747, 4409, 1), -- MP Modifiers
+(30747, 4410, 11), -- P. Atk. Modifiers
+(30747, 4411, 11), -- M. Atk. Modifiers
+(30747, 4412, 11), -- P. Def. Modifiers
+(30747, 4413, 11), -- M. Def. Modifiers
+(30747, 4414, 2), -- Armor Type
+(30747, 4415, 3), -- Weapon Type
+(30747, 4416, 13), -- Races
 -- Exarion
 (30748, 4045, 1), -- Resist Full Magic Attack
-(30748, 4408, 1), -- HP Increase (1x)
-(30748, 4409, 1), -- MP Increase (1x)
-(30748, 4410, 11), -- Average P. Atk.
-(30748, 4411, 11), -- Average M. Atk.
-(30748, 4412, 11), -- Average P. Def.
-(30748, 4413, 11), -- Average M. Def.
-(30748, 4414, 2), -- Standard Type
-(30748, 4415, 3), -- One-handed Sword
-(30748, 4416, 10), -- Dragons
+(30748, 4408, 1), -- HP Modifiers
+(30748, 4409, 1), -- MP Modifiers
+(30748, 4410, 11), -- P. Atk. Modifiers
+(30748, 4411, 11), -- M. Atk. Modifiers
+(30748, 4412, 11), -- P. Def. Modifiers
+(30748, 4413, 11), -- M. Def. Modifiers
+(30748, 4414, 2), -- Armor Type
+(30748, 4415, 3), -- Weapon Type
+(30748, 4416, 10), -- Races
 -- Zwov
 (30749, 4045, 1), -- Resist Full Magic Attack
-(30749, 4408, 1), -- HP Increase (1x)
-(30749, 4409, 1), -- MP Increase (1x)
-(30749, 4410, 11), -- Average P. Atk.
-(30749, 4411, 11), -- Average M. Atk.
-(30749, 4412, 11), -- Average P. Def.
-(30749, 4413, 11), -- Average M. Def.
-(30749, 4414, 2), -- Standard Type
-(30749, 4415, 3), -- One-handed Sword
-(30749, 4416, 10), -- Dragons
+(30749, 4408, 1), -- HP Modifiers
+(30749, 4409, 1), -- MP Modifiers
+(30749, 4410, 11), -- P. Atk. Modifiers
+(30749, 4411, 11), -- M. Atk. Modifiers
+(30749, 4412, 11), -- P. Def. Modifiers
+(30749, 4413, 11), -- M. Def. Modifiers
+(30749, 4414, 2), -- Armor Type
+(30749, 4415, 3), -- Weapon Type
+(30749, 4416, 10), -- Races
 -- Kalibran
 (30750, 4045, 1), -- Resist Full Magic Attack
-(30750, 4408, 1), -- HP Increase (1x)
-(30750, 4409, 1), -- MP Increase (1x)
-(30750, 4410, 11), -- Average P. Atk.
-(30750, 4411, 11), -- Average M. Atk.
-(30750, 4412, 11), -- Average P. Def.
-(30750, 4413, 11), -- Average M. Def.
-(30750, 4414, 2), -- Standard Type
-(30750, 4415, 3), -- One-handed Sword
-(30750, 4416, 10), -- Dragons
+(30750, 4408, 1), -- HP Modifiers
+(30750, 4409, 1), -- MP Modifiers
+(30750, 4410, 11), -- P. Atk. Modifiers
+(30750, 4411, 11), -- M. Atk. Modifiers
+(30750, 4412, 11), -- P. Def. Modifiers
+(30750, 4413, 11), -- M. Def. Modifiers
+(30750, 4414, 2), -- Armor Type
+(30750, 4415, 3), -- Weapon Type
+(30750, 4416, 10), -- Races
 -- Suzet
 (30751, 4045, 1), -- Resist Full Magic Attack
-(30751, 4408, 1), -- HP Increase (1x)
-(30751, 4409, 1), -- MP Increase (1x)
-(30751, 4410, 11), -- Average P. Atk.
-(30751, 4411, 11), -- Average M. Atk.
-(30751, 4412, 11), -- Average P. Def.
-(30751, 4413, 11), -- Average M. Def.
-(30751, 4414, 2), -- Standard Type
-(30751, 4415, 3), -- One-handed Sword
-(30751, 4416, 10), -- Dragons
+(30751, 4408, 1), -- HP Modifiers
+(30751, 4409, 1), -- MP Modifiers
+(30751, 4410, 11), -- P. Atk. Modifiers
+(30751, 4411, 11), -- M. Atk. Modifiers
+(30751, 4412, 11), -- P. Def. Modifiers
+(30751, 4413, 11), -- M. Def. Modifiers
+(30751, 4414, 2), -- Armor Type
+(30751, 4415, 3), -- Weapon Type
+(30751, 4416, 10), -- Races
 -- Shamhai
 (30752, 4045, 1), -- Resist Full Magic Attack
-(30752, 4408, 1), -- HP Increase (1x)
-(30752, 4409, 1), -- MP Increase (1x)
-(30752, 4410, 11), -- Average P. Atk.
-(30752, 4411, 11), -- Average M. Atk.
-(30752, 4412, 11), -- Average P. Def.
-(30752, 4413, 11), -- Average M. Def.
-(30752, 4414, 2), -- Standard Type
-(30752, 4415, 3), -- One-handed Sword
-(30752, 4416, 10), -- Dragons
+(30752, 4408, 1), -- HP Modifiers
+(30752, 4409, 1), -- MP Modifiers
+(30752, 4410, 11), -- P. Atk. Modifiers
+(30752, 4411, 11), -- M. Atk. Modifiers
+(30752, 4412, 11), -- P. Def. Modifiers
+(30752, 4413, 11), -- M. Def. Modifiers
+(30752, 4414, 2), -- Armor Type
+(30752, 4415, 3), -- Weapon Type
+(30752, 4416, 10), -- Races
 -- Gabrielle
 (30753, 4045, 1), -- Resist Full Magic Attack
-(30753, 4408, 1), -- HP Increase (1x)
-(30753, 4409, 1), -- MP Increase (1x)
-(30753, 4410, 11), -- Average P. Atk.
-(30753, 4411, 11), -- Average M. Atk.
-(30753, 4412, 11), -- Average P. Def.
-(30753, 4413, 11), -- Average M. Def.
-(30753, 4414, 2), -- Standard Type
-(30753, 4415, 3), -- One-handed Sword
-(30753, 4416, 14), -- Humans
+(30753, 4408, 1), -- HP Modifiers
+(30753, 4409, 1), -- MP Modifiers
+(30753, 4410, 11), -- P. Atk. Modifiers
+(30753, 4411, 11), -- M. Atk. Modifiers
+(30753, 4412, 11), -- P. Def. Modifiers
+(30753, 4413, 11), -- M. Def. Modifiers
+(30753, 4414, 2), -- Armor Type
+(30753, 4415, 3), -- Weapon Type
+(30753, 4416, 14), -- Races
 -- Gilmore
 (30754, 4045, 1), -- Resist Full Magic Attack
-(30754, 4408, 1), -- HP Increase (1x)
-(30754, 4409, 1), -- MP Increase (1x)
-(30754, 4410, 11), -- Average P. Atk.
-(30754, 4411, 11), -- Average M. Atk.
-(30754, 4412, 11), -- Average P. Def.
-(30754, 4413, 11), -- Average M. Def.
-(30754, 4414, 2), -- Standard Type
-(30754, 4415, 3), -- One-handed Sword
-(30754, 4416, 1), -- Undead
+(30754, 4408, 1), -- HP Modifiers
+(30754, 4409, 1), -- MP Modifiers
+(30754, 4410, 11), -- P. Atk. Modifiers
+(30754, 4411, 11), -- M. Atk. Modifiers
+(30754, 4412, 11), -- P. Def. Modifiers
+(30754, 4413, 11), -- M. Def. Modifiers
+(30754, 4414, 2), -- Armor Type
+(30754, 4415, 3), -- Weapon Type
+(30754, 4416, 1), -- Races
 -- Theodric
 (30755, 4045, 1), -- Resist Full Magic Attack
-(30755, 4408, 1), -- HP Increase (1x)
-(30755, 4409, 1), -- MP Increase (1x)
-(30755, 4410, 11), -- Average P. Atk.
-(30755, 4411, 11), -- Average M. Atk.
-(30755, 4412, 11), -- Average P. Def.
-(30755, 4413, 11), -- Average M. Def.
-(30755, 4414, 2), -- Standard Type
-(30755, 4415, 3), -- One-handed Sword
-(30755, 4416, 1), -- Undead
+(30755, 4408, 1), -- HP Modifiers
+(30755, 4409, 1), -- MP Modifiers
+(30755, 4410, 11), -- P. Atk. Modifiers
+(30755, 4411, 11), -- M. Atk. Modifiers
+(30755, 4412, 11), -- P. Def. Modifiers
+(30755, 4413, 11), -- M. Def. Modifiers
+(30755, 4414, 2), -- Armor Type
+(30755, 4415, 3), -- Weapon Type
+(30755, 4416, 1), -- Races
 -- Sir Kristof Rodemai
 (30756, 4045, 1), -- Resist Full Magic Attack
-(30756, 4408, 1), -- HP Increase (1x)
-(30756, 4409, 1), -- MP Increase (1x)
-(30756, 4410, 11), -- Average P. Atk.
-(30756, 4411, 11), -- Average M. Atk.
-(30756, 4412, 11), -- Average P. Def.
-(30756, 4413, 11), -- Average M. Def.
-(30756, 4414, 2), -- Standard Type
-(30756, 4415, 3), -- One-handed Sword
-(30756, 4416, 14), -- Humans
+(30756, 4408, 1), -- HP Modifiers
+(30756, 4409, 1), -- MP Modifiers
+(30756, 4410, 11), -- P. Atk. Modifiers
+(30756, 4411, 11), -- M. Atk. Modifiers
+(30756, 4412, 11), -- P. Def. Modifiers
+(30756, 4413, 11), -- M. Def. Modifiers
+(30756, 4414, 2), -- Armor Type
+(30756, 4415, 3), -- Weapon Type
+(30756, 4416, 14), -- Races
 -- Statue Of Offering
 (30757, 4045, 1), -- Resist Full Magic Attack
-(30757, 4390, 1), -- Mystic Immunity
-(30757, 4408, 1), -- HP Increase (1x)
-(30757, 4409, 1), -- MP Increase (1x)
-(30757, 4410, 11), -- Average P. Atk.
-(30757, 4411, 11), -- Average M. Atk.
-(30757, 4412, 11), -- Average P. Def.
-(30757, 4413, 11), -- Average M. Def.
-(30757, 4414, 2), -- Standard Type
-(30757, 4415, 3), -- One-handed Sword
-(30757, 4416, 19), -- Others
+(30757, 4390, 1), -- NPC Abnormal Immunity
+(30757, 4408, 1), -- HP Modifiers
+(30757, 4409, 1), -- MP Modifiers
+(30757, 4410, 11), -- P. Atk. Modifiers
+(30757, 4411, 11), -- M. Atk. Modifiers
+(30757, 4412, 11), -- P. Def. Modifiers
+(30757, 4413, 11), -- M. Def. Modifiers
+(30757, 4414, 2), -- Armor Type
+(30757, 4415, 3), -- Weapon Type
+(30757, 4416, 19), -- Races
 -- Athrea
 (30758, 4045, 1), -- Resist Full Magic Attack
-(30758, 4408, 1), -- HP Increase (1x)
-(30758, 4409, 1), -- MP Increase (1x)
-(30758, 4410, 11), -- Average P. Atk.
-(30758, 4411, 11), -- Average M. Atk.
-(30758, 4412, 11), -- Average P. Def.
-(30758, 4413, 11), -- Average M. Def.
-(30758, 4414, 2), -- Standard Type
-(30758, 4415, 3), -- One-handed Sword
-(30758, 4416, 14), -- Humans
+(30758, 4408, 1), -- HP Modifiers
+(30758, 4409, 1), -- MP Modifiers
+(30758, 4410, 11), -- P. Atk. Modifiers
+(30758, 4411, 11), -- M. Atk. Modifiers
+(30758, 4412, 11), -- P. Def. Modifiers
+(30758, 4413, 11), -- M. Def. Modifiers
+(30758, 4414, 2), -- Armor Type
+(30758, 4415, 3), -- Weapon Type
+(30758, 4416, 14), -- Races
 -- Kalis
 (30759, 4045, 1), -- Resist Full Magic Attack
-(30759, 4408, 1), -- HP Increase (1x)
-(30759, 4409, 1), -- MP Increase (1x)
-(30759, 4410, 11), -- Average P. Atk.
-(30759, 4411, 11), -- Average M. Atk.
-(30759, 4412, 11), -- Average P. Def.
-(30759, 4413, 11), -- Average M. Def.
-(30759, 4414, 2), -- Standard Type
-(30759, 4415, 3), -- One-handed Sword
-(30759, 4416, 14), -- Humans
+(30759, 4408, 1), -- HP Modifiers
+(30759, 4409, 1), -- MP Modifiers
+(30759, 4410, 11), -- P. Atk. Modifiers
+(30759, 4411, 11), -- M. Atk. Modifiers
+(30759, 4412, 11), -- P. Def. Modifiers
+(30759, 4413, 11), -- M. Def. Modifiers
+(30759, 4414, 2), -- Armor Type
+(30759, 4415, 3), -- Weapon Type
+(30759, 4416, 14), -- Races
 -- Sir Gustav Athebaldt
 (30760, 4045, 1), -- Resist Full Magic Attack
-(30760, 4408, 1), -- HP Increase (1x)
-(30760, 4409, 1), -- MP Increase (1x)
-(30760, 4410, 11), -- Average P. Atk.
-(30760, 4411, 11), -- Average M. Atk.
-(30760, 4412, 11), -- Average P. Def.
-(30760, 4413, 11), -- Average M. Def.
-(30760, 4414, 2), -- Standard Type
-(30760, 4415, 3), -- One-handed Sword
-(30760, 4416, 14), -- Humans
+(30760, 4408, 1), -- HP Modifiers
+(30760, 4409, 1), -- MP Modifiers
+(30760, 4410, 11), -- P. Atk. Modifiers
+(30760, 4411, 11), -- M. Atk. Modifiers
+(30760, 4412, 11), -- P. Def. Modifiers
+(30760, 4413, 11), -- M. Def. Modifiers
+(30760, 4414, 2), -- Armor Type
+(30760, 4415, 3), -- Weapon Type
+(30760, 4416, 14), -- Races
 -- Corpse Of Fritz
 (30761, 4045, 1), -- Resist Full Magic Attack
-(30761, 4408, 1), -- HP Increase (1x)
-(30761, 4409, 1), -- MP Increase (1x)
-(30761, 4410, 11), -- Average P. Atk.
-(30761, 4411, 11), -- Average M. Atk.
-(30761, 4412, 11), -- Average P. Def.
-(30761, 4413, 11), -- Average M. Def.
-(30761, 4414, 2), -- Standard Type
-(30761, 4415, 3), -- One-handed Sword
-(30761, 4416, 18), -- Dwarves
+(30761, 4408, 1), -- HP Modifiers
+(30761, 4409, 1), -- MP Modifiers
+(30761, 4410, 11), -- P. Atk. Modifiers
+(30761, 4411, 11), -- M. Atk. Modifiers
+(30761, 4412, 11), -- P. Def. Modifiers
+(30761, 4413, 11), -- M. Def. Modifiers
+(30761, 4414, 2), -- Armor Type
+(30761, 4415, 3), -- Weapon Type
+(30761, 4416, 18), -- Races
 -- Corpse Of Lutz
 (30762, 4045, 1), -- Resist Full Magic Attack
-(30762, 4408, 1), -- HP Increase (1x)
-(30762, 4409, 1), -- MP Increase (1x)
-(30762, 4410, 11), -- Average P. Atk.
-(30762, 4411, 11), -- Average M. Atk.
-(30762, 4412, 11), -- Average P. Def.
-(30762, 4413, 11), -- Average M. Def.
-(30762, 4414, 2), -- Standard Type
-(30762, 4415, 3), -- One-handed Sword
-(30762, 4416, 18), -- Dwarves
+(30762, 4408, 1), -- HP Modifiers
+(30762, 4409, 1), -- MP Modifiers
+(30762, 4410, 11), -- P. Atk. Modifiers
+(30762, 4411, 11), -- M. Atk. Modifiers
+(30762, 4412, 11), -- P. Def. Modifiers
+(30762, 4413, 11), -- M. Def. Modifiers
+(30762, 4414, 2), -- Armor Type
+(30762, 4415, 3), -- Weapon Type
+(30762, 4416, 18), -- Races
 -- Corpse Of Kurtz
 (30763, 4045, 1), -- Resist Full Magic Attack
-(30763, 4408, 1), -- HP Increase (1x)
-(30763, 4409, 1), -- MP Increase (1x)
-(30763, 4410, 11), -- Average P. Atk.
-(30763, 4411, 11), -- Average M. Atk.
-(30763, 4412, 11), -- Average P. Def.
-(30763, 4413, 11), -- Average M. Def.
-(30763, 4414, 2), -- Standard Type
-(30763, 4415, 3), -- One-handed Sword
-(30763, 4416, 18), -- Dwarves
+(30763, 4408, 1), -- HP Modifiers
+(30763, 4409, 1), -- MP Modifiers
+(30763, 4410, 11), -- P. Atk. Modifiers
+(30763, 4411, 11), -- M. Atk. Modifiers
+(30763, 4412, 11), -- P. Def. Modifiers
+(30763, 4413, 11), -- M. Def. Modifiers
+(30763, 4414, 2), -- Armor Type
+(30763, 4415, 3), -- Weapon Type
+(30763, 4416, 18), -- Races
 -- Balthazar
 (30764, 4045, 1), -- Resist Full Magic Attack
-(30764, 4408, 1), -- HP Increase (1x)
-(30764, 4409, 1), -- MP Increase (1x)
-(30764, 4410, 11), -- Average P. Atk.
-(30764, 4411, 11), -- Average M. Atk.
-(30764, 4412, 11), -- Average P. Def.
-(30764, 4413, 11), -- Average M. Def.
-(30764, 4414, 2), -- Standard Type
-(30764, 4415, 3), -- One-handed Sword
-(30764, 4416, 18), -- Dwarves
+(30764, 4408, 1), -- HP Modifiers
+(30764, 4409, 1), -- MP Modifiers
+(30764, 4410, 11), -- P. Atk. Modifiers
+(30764, 4411, 11), -- M. Atk. Modifiers
+(30764, 4412, 11), -- P. Def. Modifiers
+(30764, 4413, 11), -- M. Def. Modifiers
+(30764, 4414, 2), -- Armor Type
+(30764, 4415, 3), -- Weapon Type
+(30764, 4416, 18), -- Races
 -- Imperial Coffer
 (30765, 4045, 1), -- Resist Full Magic Attack
-(30765, 4390, 1), -- Mystic Immunity
-(30765, 4408, 1), -- HP Increase (1x)
-(30765, 4409, 1), -- MP Increase (1x)
-(30765, 4410, 11), -- Average P. Atk.
-(30765, 4411, 11), -- Average M. Atk.
-(30765, 4412, 11), -- Average P. Def.
-(30765, 4413, 11), -- Average M. Def.
-(30765, 4414, 2), -- Standard Type
-(30765, 4415, 3), -- One-handed Sword
-(30765, 4416, 19), -- Others
+(30765, 4390, 1), -- NPC Abnormal Immunity
+(30765, 4408, 1), -- HP Modifiers
+(30765, 4409, 1), -- MP Modifiers
+(30765, 4410, 11), -- P. Atk. Modifiers
+(30765, 4411, 11), -- M. Atk. Modifiers
+(30765, 4412, 11), -- P. Def. Modifiers
+(30765, 4413, 11), -- M. Def. Modifiers
+(30765, 4414, 2), -- Armor Type
+(30765, 4415, 3), -- Weapon Type
+(30765, 4416, 19), -- Races
 -- Cleo
 (30766, 4045, 1), -- Resist Full Magic Attack
-(30766, 4408, 1), -- HP Increase (1x)
-(30766, 4409, 1), -- MP Increase (1x)
-(30766, 4410, 11), -- Average P. Atk.
-(30766, 4411, 11), -- Average M. Atk.
-(30766, 4412, 11), -- Average P. Def.
-(30766, 4413, 11), -- Average M. Def.
-(30766, 4414, 2), -- Standard Type
-(30766, 4415, 3), -- One-handed Sword
-(30766, 4416, 14), -- Humans
+(30766, 4408, 1), -- HP Modifiers
+(30766, 4409, 1), -- MP Modifiers
+(30766, 4410, 11), -- P. Atk. Modifiers
+(30766, 4411, 11), -- M. Atk. Modifiers
+(30766, 4412, 11), -- P. Def. Modifiers
+(30766, 4413, 11), -- M. Def. Modifiers
+(30766, 4414, 2), -- Armor Type
+(30766, 4415, 3), -- Weapon Type
+(30766, 4416, 14), -- Races
 -- Auctioneer
 (30767, 4045, 1), -- Resist Full Magic Attack
-(30767, 4408, 1), -- HP Increase (1x)
-(30767, 4409, 1), -- MP Increase (1x)
-(30767, 4410, 11), -- Average P. Atk.
-(30767, 4411, 11), -- Average M. Atk.
-(30767, 4412, 11), -- Average P. Def.
-(30767, 4413, 11), -- Average M. Def.
-(30767, 4414, 2), -- Standard Type
-(30767, 4415, 3), -- One-handed Sword
-(30767, 4416, 14), -- Humans
+(30767, 4408, 1), -- HP Modifiers
+(30767, 4409, 1), -- MP Modifiers
+(30767, 4410, 11), -- P. Atk. Modifiers
+(30767, 4411, 11), -- M. Atk. Modifiers
+(30767, 4412, 11), -- P. Def. Modifiers
+(30767, 4413, 11), -- M. Def. Modifiers
+(30767, 4414, 2), -- Armor Type
+(30767, 4415, 3), -- Weapon Type
+(30767, 4416, 14), -- Races
 -- Auctioneer
 (30768, 4045, 1), -- Resist Full Magic Attack
-(30768, 4408, 1), -- HP Increase (1x)
-(30768, 4409, 1), -- MP Increase (1x)
-(30768, 4410, 11), -- Average P. Atk.
-(30768, 4411, 11), -- Average M. Atk.
-(30768, 4412, 11), -- Average P. Def.
-(30768, 4413, 11), -- Average M. Def.
-(30768, 4414, 2), -- Standard Type
-(30768, 4415, 3), -- One-handed Sword
-(30768, 4416, 15), -- Elves
+(30768, 4408, 1), -- HP Modifiers
+(30768, 4409, 1), -- MP Modifiers
+(30768, 4410, 11), -- P. Atk. Modifiers
+(30768, 4411, 11), -- M. Atk. Modifiers
+(30768, 4412, 11), -- P. Def. Modifiers
+(30768, 4413, 11), -- M. Def. Modifiers
+(30768, 4414, 2), -- Armor Type
+(30768, 4415, 3), -- Weapon Type
+(30768, 4416, 15), -- Races
 -- Auctioneer
 (30769, 4045, 1), -- Resist Full Magic Attack
-(30769, 4408, 1), -- HP Increase (1x)
-(30769, 4409, 1), -- MP Increase (1x)
-(30769, 4410, 11), -- Average P. Atk.
-(30769, 4411, 11), -- Average M. Atk.
-(30769, 4412, 11), -- Average P. Def.
-(30769, 4413, 11), -- Average M. Def.
-(30769, 4414, 2), -- Standard Type
-(30769, 4415, 3), -- One-handed Sword
-(30769, 4416, 16), -- Dark Elves
+(30769, 4408, 1), -- HP Modifiers
+(30769, 4409, 1), -- MP Modifiers
+(30769, 4410, 11), -- P. Atk. Modifiers
+(30769, 4411, 11), -- M. Atk. Modifiers
+(30769, 4412, 11), -- P. Def. Modifiers
+(30769, 4413, 11), -- M. Def. Modifiers
+(30769, 4414, 2), -- Armor Type
+(30769, 4415, 3), -- Weapon Type
+(30769, 4416, 16), -- Races
 -- Auctioneer
 (30770, 4045, 1), -- Resist Full Magic Attack
-(30770, 4408, 1), -- HP Increase (1x)
-(30770, 4409, 1), -- MP Increase (1x)
-(30770, 4410, 11), -- Average P. Atk.
-(30770, 4411, 11), -- Average M. Atk.
-(30770, 4412, 11), -- Average P. Def.
-(30770, 4413, 11), -- Average M. Def.
-(30770, 4414, 2), -- Standard Type
-(30770, 4415, 3), -- One-handed Sword
-(30770, 4416, 18), -- Dwarves
+(30770, 4408, 1), -- HP Modifiers
+(30770, 4409, 1), -- MP Modifiers
+(30770, 4410, 11), -- P. Atk. Modifiers
+(30770, 4411, 11), -- M. Atk. Modifiers
+(30770, 4412, 11), -- P. Def. Modifiers
+(30770, 4413, 11), -- M. Def. Modifiers
+(30770, 4414, 2), -- Armor Type
+(30770, 4415, 3), -- Weapon Type
+(30770, 4416, 18), -- Races
 -- Auctioneer
 (30771, 4045, 1), -- Resist Full Magic Attack
-(30771, 4408, 1), -- HP Increase (1x)
-(30771, 4409, 1), -- MP Increase (1x)
-(30771, 4410, 11), -- Average P. Atk.
-(30771, 4411, 11), -- Average M. Atk.
-(30771, 4412, 11), -- Average P. Def.
-(30771, 4413, 11), -- Average M. Def.
-(30771, 4414, 2), -- Standard Type
-(30771, 4415, 3), -- One-handed Sword
-(30771, 4416, 17), -- Orcs
+(30771, 4408, 1), -- HP Modifiers
+(30771, 4409, 1), -- MP Modifiers
+(30771, 4410, 11), -- P. Atk. Modifiers
+(30771, 4411, 11), -- M. Atk. Modifiers
+(30771, 4412, 11), -- P. Def. Modifiers
+(30771, 4413, 11), -- M. Def. Modifiers
+(30771, 4414, 2), -- Armor Type
+(30771, 4415, 3), -- Weapon Type
+(30771, 4416, 17), -- Races
 -- Wilson
 (30772, 4045, 1), -- Resist Full Magic Attack
-(30772, 4408, 1), -- HP Increase (1x)
-(30772, 4409, 1), -- MP Increase (1x)
-(30772, 4410, 11), -- Average P. Atk.
-(30772, 4411, 11), -- Average M. Atk.
-(30772, 4412, 11), -- Average P. Def.
-(30772, 4413, 11), -- Average M. Def.
-(30772, 4414, 2), -- Standard Type
-(30772, 4415, 3), -- One-handed Sword
-(30772, 4416, 14), -- Humans
+(30772, 4408, 1), -- HP Modifiers
+(30772, 4409, 1), -- MP Modifiers
+(30772, 4410, 11), -- P. Atk. Modifiers
+(30772, 4411, 11), -- M. Atk. Modifiers
+(30772, 4412, 11), -- P. Def. Modifiers
+(30772, 4413, 11), -- M. Def. Modifiers
+(30772, 4414, 2), -- Armor Type
+(30772, 4415, 3), -- Weapon Type
+(30772, 4416, 14), -- Races
 -- Todd
 (30773, 4045, 1), -- Resist Full Magic Attack
-(30773, 4408, 1), -- HP Increase (1x)
-(30773, 4409, 1), -- MP Increase (1x)
-(30773, 4410, 11), -- Average P. Atk.
-(30773, 4411, 11), -- Average M. Atk.
-(30773, 4412, 11), -- Average P. Def.
-(30773, 4413, 11), -- Average M. Def.
-(30773, 4414, 2), -- Standard Type
-(30773, 4415, 3), -- One-handed Sword
-(30773, 4416, 14), -- Humans
+(30773, 4408, 1), -- HP Modifiers
+(30773, 4409, 1), -- MP Modifiers
+(30773, 4410, 11), -- P. Atk. Modifiers
+(30773, 4411, 11), -- M. Atk. Modifiers
+(30773, 4412, 11), -- P. Def. Modifiers
+(30773, 4413, 11), -- M. Def. Modifiers
+(30773, 4414, 2), -- Armor Type
+(30773, 4415, 3), -- Weapon Type
+(30773, 4416, 14), -- Races
 -- Lundy
 (30827, 4045, 1), -- Resist Full Magic Attack
-(30827, 4408, 1), -- HP Increase (1x)
-(30827, 4409, 1), -- MP Increase (1x)
-(30827, 4410, 11), -- Average P. Atk.
-(30827, 4411, 11), -- Average M. Atk.
-(30827, 4412, 11), -- Average P. Def.
-(30827, 4413, 11), -- Average M. Def.
-(30827, 4414, 2), -- Standard Type
-(30827, 4415, 3), -- One-handed Sword
-(30827, 4416, 14), -- Humans
+(30827, 4408, 1), -- HP Modifiers
+(30827, 4409, 1), -- MP Modifiers
+(30827, 4410, 11), -- P. Atk. Modifiers
+(30827, 4411, 11), -- M. Atk. Modifiers
+(30827, 4412, 11), -- P. Def. Modifiers
+(30827, 4413, 11), -- M. Def. Modifiers
+(30827, 4414, 2), -- Armor Type
+(30827, 4415, 3), -- Weapon Type
+(30827, 4416, 14), -- Races
 -- Waters
 (30828, 4045, 1), -- Resist Full Magic Attack
-(30828, 4408, 1), -- HP Increase (1x)
-(30828, 4409, 1), -- MP Increase (1x)
-(30828, 4410, 11), -- Average P. Atk.
-(30828, 4411, 11), -- Average M. Atk.
-(30828, 4412, 11), -- Average P. Def.
-(30828, 4413, 11), -- Average M. Def.
-(30828, 4414, 2), -- Standard Type
-(30828, 4415, 3), -- One-handed Sword
-(30828, 4416, 14), -- Humans
+(30828, 4408, 1), -- HP Modifiers
+(30828, 4409, 1), -- MP Modifiers
+(30828, 4410, 11), -- P. Atk. Modifiers
+(30828, 4411, 11), -- M. Atk. Modifiers
+(30828, 4412, 11), -- P. Def. Modifiers
+(30828, 4413, 11), -- M. Def. Modifiers
+(30828, 4414, 2), -- Armor Type
+(30828, 4415, 3), -- Weapon Type
+(30828, 4416, 14), -- Races
 -- Cooper
 (30829, 4045, 1), -- Resist Full Magic Attack
-(30829, 4408, 1), -- HP Increase (1x)
-(30829, 4409, 1), -- MP Increase (1x)
-(30829, 4410, 11), -- Average P. Atk.
-(30829, 4411, 11), -- Average M. Atk.
-(30829, 4412, 11), -- Average P. Def.
-(30829, 4413, 11), -- Average M. Def.
-(30829, 4414, 2), -- Standard Type
-(30829, 4415, 3), -- One-handed Sword
-(30829, 4416, 14), -- Humans
+(30829, 4408, 1), -- HP Modifiers
+(30829, 4409, 1), -- MP Modifiers
+(30829, 4410, 11), -- P. Atk. Modifiers
+(30829, 4411, 11), -- M. Atk. Modifiers
+(30829, 4412, 11), -- P. Def. Modifiers
+(30829, 4413, 11), -- M. Def. Modifiers
+(30829, 4414, 2), -- Armor Type
+(30829, 4415, 3), -- Weapon Type
+(30829, 4416, 14), -- Races
 -- Joey
 (30830, 4045, 1), -- Resist Full Magic Attack
-(30830, 4408, 1), -- HP Increase (1x)
-(30830, 4409, 1), -- MP Increase (1x)
-(30830, 4410, 11), -- Average P. Atk.
-(30830, 4411, 11), -- Average M. Atk.
-(30830, 4412, 11), -- Average P. Def.
-(30830, 4413, 11), -- Average M. Def.
-(30830, 4414, 2), -- Standard Type
-(30830, 4415, 3), -- One-handed Sword
-(30830, 4416, 14), -- Humans
+(30830, 4408, 1), -- HP Modifiers
+(30830, 4409, 1), -- MP Modifiers
+(30830, 4410, 11), -- P. Atk. Modifiers
+(30830, 4411, 11), -- M. Atk. Modifiers
+(30830, 4412, 11), -- P. Def. Modifiers
+(30830, 4413, 11), -- M. Def. Modifiers
+(30830, 4414, 2), -- Armor Type
+(30830, 4415, 3), -- Weapon Type
+(30830, 4416, 14), -- Races
 -- Nelson
 (30831, 4045, 1), -- Resist Full Magic Attack
-(30831, 4408, 1), -- HP Increase (1x)
-(30831, 4409, 1), -- MP Increase (1x)
-(30831, 4410, 11), -- Average P. Atk.
-(30831, 4411, 11), -- Average M. Atk.
-(30831, 4412, 11), -- Average P. Def.
-(30831, 4413, 11), -- Average M. Def.
-(30831, 4414, 2), -- Standard Type
-(30831, 4415, 3), -- One-handed Sword
-(30831, 4416, 14), -- Humans
+(30831, 4408, 1), -- HP Modifiers
+(30831, 4409, 1), -- MP Modifiers
+(30831, 4410, 11), -- P. Atk. Modifiers
+(30831, 4411, 11), -- M. Atk. Modifiers
+(30831, 4412, 11), -- P. Def. Modifiers
+(30831, 4413, 11), -- M. Def. Modifiers
+(30831, 4414, 2), -- Armor Type
+(30831, 4415, 3), -- Weapon Type
+(30831, 4416, 14), -- Races
 -- Hardin
 (30832, 4045, 1), -- Resist Full Magic Attack
-(30832, 4408, 1), -- HP Increase (1x)
-(30832, 4409, 1), -- MP Increase (1x)
-(30832, 4410, 11), -- Average P. Atk.
-(30832, 4411, 11), -- Average M. Atk.
-(30832, 4412, 11), -- Average P. Def.
-(30832, 4413, 11), -- Average M. Def.
-(30832, 4414, 2), -- Standard Type
-(30832, 4415, 3), -- One-handed Sword
-(30832, 4416, 14), -- Humans
+(30832, 4408, 1), -- HP Modifiers
+(30832, 4409, 1), -- MP Modifiers
+(30832, 4410, 11), -- P. Atk. Modifiers
+(30832, 4411, 11), -- M. Atk. Modifiers
+(30832, 4412, 11), -- P. Def. Modifiers
+(30832, 4413, 11), -- M. Def. Modifiers
+(30832, 4414, 2), -- Armor Type
+(30832, 4415, 3), -- Weapon Type
+(30832, 4416, 14), -- Races
 -- Kaspar
 (30833, 4045, 1), -- Resist Full Magic Attack
-(30833, 4408, 1), -- HP Increase (1x)
-(30833, 4409, 1), -- MP Increase (1x)
-(30833, 4410, 11), -- Average P. Atk.
-(30833, 4411, 11), -- Average M. Atk.
-(30833, 4412, 11), -- Average P. Def.
-(30833, 4413, 11), -- Average M. Def.
-(30833, 4414, 2), -- Standard Type
-(30833, 4415, 3), -- One-handed Sword
-(30833, 4416, 14), -- Humans
+(30833, 4408, 1), -- HP Modifiers
+(30833, 4409, 1), -- MP Modifiers
+(30833, 4410, 11), -- P. Atk. Modifiers
+(30833, 4411, 11), -- M. Atk. Modifiers
+(30833, 4412, 11), -- P. Def. Modifiers
+(30833, 4413, 11), -- M. Def. Modifiers
+(30833, 4414, 2), -- Armor Type
+(30833, 4415, 3), -- Weapon Type
+(30833, 4416, 14), -- Races
 -- Cema
 (30834, 4045, 1), -- Resist Full Magic Attack
-(30834, 4408, 1), -- HP Increase (1x)
-(30834, 4409, 1), -- MP Increase (1x)
-(30834, 4410, 11), -- Average P. Atk.
-(30834, 4411, 11), -- Average M. Atk.
-(30834, 4412, 11), -- Average P. Def.
-(30834, 4413, 11), -- Average M. Def.
-(30834, 4414, 2), -- Standard Type
-(30834, 4415, 3), -- One-handed Sword
-(30834, 4416, 14), -- Humans
+(30834, 4408, 1), -- HP Modifiers
+(30834, 4409, 1), -- MP Modifiers
+(30834, 4410, 11), -- P. Atk. Modifiers
+(30834, 4411, 11), -- M. Atk. Modifiers
+(30834, 4412, 11), -- P. Def. Modifiers
+(30834, 4413, 11), -- M. Def. Modifiers
+(30834, 4414, 2), -- Armor Type
+(30834, 4415, 3), -- Weapon Type
+(30834, 4416, 14), -- Races
 -- Icarus
 (30835, 4045, 1), -- Resist Full Magic Attack
-(30835, 4408, 1), -- HP Increase (1x)
-(30835, 4409, 1), -- MP Increase (1x)
-(30835, 4410, 11), -- Average P. Atk.
-(30835, 4411, 11), -- Average M. Atk.
-(30835, 4412, 11), -- Average P. Def.
-(30835, 4413, 11), -- Average M. Def.
-(30835, 4414, 2), -- Standard Type
-(30835, 4415, 3), -- One-handed Sword
-(30835, 4416, 14), -- Humans
+(30835, 4408, 1), -- HP Modifiers
+(30835, 4409, 1), -- MP Modifiers
+(30835, 4410, 11), -- P. Atk. Modifiers
+(30835, 4411, 11), -- M. Atk. Modifiers
+(30835, 4412, 11), -- P. Def. Modifiers
+(30835, 4413, 11), -- M. Def. Modifiers
+(30835, 4414, 2), -- Armor Type
+(30835, 4415, 3), -- Weapon Type
+(30835, 4416, 14), -- Races
 -- Minerva
 (30836, 4045, 1), -- Resist Full Magic Attack
-(30836, 4408, 1), -- HP Increase (1x)
-(30836, 4409, 1), -- MP Increase (1x)
-(30836, 4410, 11), -- Average P. Atk.
-(30836, 4411, 11), -- Average M. Atk.
-(30836, 4412, 11), -- Average P. Def.
-(30836, 4413, 11), -- Average M. Def.
-(30836, 4414, 2), -- Standard Type
-(30836, 4415, 3), -- One-handed Sword
-(30836, 4416, 16), -- Dark Elves
+(30836, 4408, 1), -- HP Modifiers
+(30836, 4409, 1), -- MP Modifiers
+(30836, 4410, 11), -- P. Atk. Modifiers
+(30836, 4411, 11), -- M. Atk. Modifiers
+(30836, 4412, 11), -- P. Def. Modifiers
+(30836, 4413, 11), -- M. Def. Modifiers
+(30836, 4414, 2), -- Armor Type
+(30836, 4415, 3), -- Weapon Type
+(30836, 4416, 16), -- Races
 -- Woodrow
 (30837, 4045, 1), -- Resist Full Magic Attack
-(30837, 4408, 1), -- HP Increase (1x)
-(30837, 4409, 1), -- MP Increase (1x)
-(30837, 4410, 11), -- Average P. Atk.
-(30837, 4411, 11), -- Average M. Atk.
-(30837, 4412, 11), -- Average P. Def.
-(30837, 4413, 11), -- Average M. Def.
-(30837, 4414, 2), -- Standard Type
-(30837, 4415, 3), -- One-handed Sword
-(30837, 4416, 14), -- Humans
+(30837, 4408, 1), -- HP Modifiers
+(30837, 4409, 1), -- MP Modifiers
+(30837, 4410, 11), -- P. Atk. Modifiers
+(30837, 4411, 11), -- M. Atk. Modifiers
+(30837, 4412, 11), -- P. Def. Modifiers
+(30837, 4413, 11), -- M. Def. Modifiers
+(30837, 4414, 2), -- Armor Type
+(30837, 4415, 3), -- Weapon Type
+(30837, 4416, 14), -- Races
 -- Woodley
 (30838, 4045, 1), -- Resist Full Magic Attack
-(30838, 4408, 1), -- HP Increase (1x)
-(30838, 4409, 1), -- MP Increase (1x)
-(30838, 4410, 11), -- Average P. Atk.
-(30838, 4411, 11), -- Average M. Atk.
-(30838, 4412, 11), -- Average P. Def.
-(30838, 4413, 11), -- Average M. Def.
-(30838, 4414, 2), -- Standard Type
-(30838, 4415, 3), -- One-handed Sword
-(30838, 4416, 14), -- Humans
+(30838, 4408, 1), -- HP Modifiers
+(30838, 4409, 1), -- MP Modifiers
+(30838, 4410, 11), -- P. Atk. Modifiers
+(30838, 4411, 11), -- M. Atk. Modifiers
+(30838, 4412, 11), -- P. Def. Modifiers
+(30838, 4413, 11), -- M. Def. Modifiers
+(30838, 4414, 2), -- Armor Type
+(30838, 4415, 3), -- Weapon Type
+(30838, 4416, 14), -- Races
 -- Holly
 (30839, 4045, 1), -- Resist Full Magic Attack
-(30839, 4408, 1), -- HP Increase (1x)
-(30839, 4409, 1), -- MP Increase (1x)
-(30839, 4410, 11), -- Average P. Atk.
-(30839, 4411, 11), -- Average M. Atk.
-(30839, 4412, 11), -- Average P. Def.
-(30839, 4413, 11), -- Average M. Def.
-(30839, 4414, 2), -- Standard Type
-(30839, 4415, 3), -- One-handed Sword
-(30839, 4416, 14), -- Humans
+(30839, 4408, 1), -- HP Modifiers
+(30839, 4409, 1), -- MP Modifiers
+(30839, 4410, 11), -- P. Atk. Modifiers
+(30839, 4411, 11), -- M. Atk. Modifiers
+(30839, 4412, 11), -- P. Def. Modifiers
+(30839, 4413, 11), -- M. Def. Modifiers
+(30839, 4414, 2), -- Armor Type
+(30839, 4415, 3), -- Weapon Type
+(30839, 4416, 14), -- Races
 -- Lorenzo
 (30840, 4045, 1), -- Resist Full Magic Attack
-(30840, 4408, 1), -- HP Increase (1x)
-(30840, 4409, 1), -- MP Increase (1x)
-(30840, 4410, 11), -- Average P. Atk.
-(30840, 4411, 11), -- Average M. Atk.
-(30840, 4412, 11), -- Average P. Def.
-(30840, 4413, 11), -- Average M. Def.
-(30840, 4414, 2), -- Standard Type
-(30840, 4415, 3), -- One-handed Sword
-(30840, 4416, 14), -- Humans
+(30840, 4408, 1), -- HP Modifiers
+(30840, 4409, 1), -- MP Modifiers
+(30840, 4410, 11), -- P. Atk. Modifiers
+(30840, 4411, 11), -- M. Atk. Modifiers
+(30840, 4412, 11), -- P. Def. Modifiers
+(30840, 4413, 11), -- M. Def. Modifiers
+(30840, 4414, 2), -- Armor Type
+(30840, 4415, 3), -- Weapon Type
+(30840, 4416, 14), -- Races
 -- Carson
 (30841, 4045, 1), -- Resist Full Magic Attack
-(30841, 4408, 1), -- HP Increase (1x)
-(30841, 4409, 1), -- MP Increase (1x)
-(30841, 4410, 11), -- Average P. Atk.
-(30841, 4411, 11), -- Average M. Atk.
-(30841, 4412, 11), -- Average P. Def.
-(30841, 4413, 11), -- Average M. Def.
-(30841, 4414, 2), -- Standard Type
-(30841, 4415, 3), -- One-handed Sword
-(30841, 4416, 14), -- Humans
+(30841, 4408, 1), -- HP Modifiers
+(30841, 4409, 1), -- MP Modifiers
+(30841, 4410, 11), -- P. Atk. Modifiers
+(30841, 4411, 11), -- M. Atk. Modifiers
+(30841, 4412, 11), -- P. Def. Modifiers
+(30841, 4413, 11), -- M. Def. Modifiers
+(30841, 4414, 2), -- Armor Type
+(30841, 4415, 3), -- Weapon Type
+(30841, 4416, 14), -- Races
 -- Alexis
 (30842, 4045, 1), -- Resist Full Magic Attack
-(30842, 4408, 1), -- HP Increase (1x)
-(30842, 4409, 1), -- MP Increase (1x)
-(30842, 4410, 11), -- Average P. Atk.
-(30842, 4411, 11), -- Average M. Atk.
-(30842, 4412, 11), -- Average P. Def.
-(30842, 4413, 11), -- Average M. Def.
-(30842, 4414, 2), -- Standard Type
-(30842, 4415, 3), -- One-handed Sword
-(30842, 4416, 15), -- Elves
+(30842, 4408, 1), -- HP Modifiers
+(30842, 4409, 1), -- MP Modifiers
+(30842, 4410, 11), -- P. Atk. Modifiers
+(30842, 4411, 11), -- M. Atk. Modifiers
+(30842, 4412, 11), -- P. Def. Modifiers
+(30842, 4413, 11), -- M. Def. Modifiers
+(30842, 4414, 2), -- Armor Type
+(30842, 4415, 3), -- Weapon Type
+(30842, 4416, 15), -- Races
 -- Romp
 (30843, 4045, 1), -- Resist Full Magic Attack
-(30843, 4408, 1), -- HP Increase (1x)
-(30843, 4409, 1), -- MP Increase (1x)
-(30843, 4410, 11), -- Average P. Atk.
-(30843, 4411, 11), -- Average M. Atk.
-(30843, 4412, 11), -- Average P. Def.
-(30843, 4413, 11), -- Average M. Def.
-(30843, 4414, 2), -- Standard Type
-(30843, 4415, 3), -- One-handed Sword
-(30843, 4416, 18), -- Dwarves
+(30843, 4408, 1), -- HP Modifiers
+(30843, 4409, 1), -- MP Modifiers
+(30843, 4410, 11), -- P. Atk. Modifiers
+(30843, 4411, 11), -- M. Atk. Modifiers
+(30843, 4412, 11), -- P. Def. Modifiers
+(30843, 4413, 11), -- M. Def. Modifiers
+(30843, 4414, 2), -- Armor Type
+(30843, 4415, 3), -- Weapon Type
+(30843, 4416, 18), -- Races
 -- Walderal
 (30844, 4045, 1), -- Resist Full Magic Attack
-(30844, 4408, 1), -- HP Increase (1x)
-(30844, 4409, 1), -- MP Increase (1x)
-(30844, 4410, 11), -- Average P. Atk.
-(30844, 4411, 11), -- Average M. Atk.
-(30844, 4412, 11), -- Average P. Def.
-(30844, 4413, 11), -- Average M. Def.
-(30844, 4414, 2), -- Standard Type
-(30844, 4415, 3), -- One-handed Sword
-(30844, 4416, 18), -- Dwarves
+(30844, 4408, 1), -- HP Modifiers
+(30844, 4409, 1), -- MP Modifiers
+(30844, 4410, 11), -- P. Atk. Modifiers
+(30844, 4411, 11), -- M. Atk. Modifiers
+(30844, 4412, 11), -- P. Def. Modifiers
+(30844, 4413, 11), -- M. Def. Modifiers
+(30844, 4414, 2), -- Armor Type
+(30844, 4415, 3), -- Weapon Type
+(30844, 4416, 18), -- Races
 -- Klump
 (30845, 4045, 1), -- Resist Full Magic Attack
-(30845, 4408, 1), -- HP Increase (1x)
-(30845, 4409, 1), -- MP Increase (1x)
-(30845, 4410, 11), -- Average P. Atk.
-(30845, 4411, 11), -- Average M. Atk.
-(30845, 4412, 11), -- Average P. Def.
-(30845, 4413, 11), -- Average M. Def.
-(30845, 4414, 2), -- Standard Type
-(30845, 4415, 3), -- One-handed Sword
-(30845, 4416, 18), -- Dwarves
+(30845, 4408, 1), -- HP Modifiers
+(30845, 4409, 1), -- MP Modifiers
+(30845, 4410, 11), -- P. Atk. Modifiers
+(30845, 4411, 11), -- M. Atk. Modifiers
+(30845, 4412, 11), -- P. Def. Modifiers
+(30845, 4413, 11), -- M. Def. Modifiers
+(30845, 4414, 2), -- Armor Type
+(30845, 4415, 3), -- Weapon Type
+(30845, 4416, 18), -- Races
 -- Wilbert
 (30846, 4045, 1), -- Resist Full Magic Attack
-(30846, 4408, 1), -- HP Increase (1x)
-(30846, 4409, 1), -- MP Increase (1x)
-(30846, 4410, 11), -- Average P. Atk.
-(30846, 4411, 11), -- Average M. Atk.
-(30846, 4412, 11), -- Average P. Def.
-(30846, 4413, 11), -- Average M. Def.
-(30846, 4414, 2), -- Standard Type
-(30846, 4415, 3), -- One-handed Sword
-(30846, 4416, 18), -- Dwarves
+(30846, 4408, 1), -- HP Modifiers
+(30846, 4409, 1), -- MP Modifiers
+(30846, 4410, 11), -- P. Atk. Modifiers
+(30846, 4411, 11), -- M. Atk. Modifiers
+(30846, 4412, 11), -- P. Def. Modifiers
+(30846, 4413, 11), -- M. Def. Modifiers
+(30846, 4414, 2), -- Armor Type
+(30846, 4415, 3), -- Weapon Type
+(30846, 4416, 18), -- Races
 -- Ferris
 (30847, 4045, 1), -- Resist Full Magic Attack
-(30847, 4408, 1), -- HP Increase (1x)
-(30847, 4409, 1), -- MP Increase (1x)
-(30847, 4410, 11), -- Average P. Atk.
-(30847, 4411, 11), -- Average M. Atk.
-(30847, 4412, 11), -- Average P. Def.
-(30847, 4413, 11), -- Average M. Def.
-(30847, 4414, 2), -- Standard Type
-(30847, 4415, 3), -- One-handed Sword
-(30847, 4416, 18), -- Dwarves
+(30847, 4408, 1), -- HP Modifiers
+(30847, 4409, 1), -- MP Modifiers
+(30847, 4410, 11), -- P. Atk. Modifiers
+(30847, 4411, 11), -- M. Atk. Modifiers
+(30847, 4412, 11), -- P. Def. Modifiers
+(30847, 4413, 11), -- M. Def. Modifiers
+(30847, 4414, 2), -- Armor Type
+(30847, 4415, 3), -- Weapon Type
+(30847, 4416, 18), -- Races
 -- Elisa
 (30848, 4045, 1), -- Resist Full Magic Attack
-(30848, 4408, 1), -- HP Increase (1x)
-(30848, 4409, 1), -- MP Increase (1x)
-(30848, 4410, 11), -- Average P. Atk.
-(30848, 4411, 11), -- Average M. Atk.
-(30848, 4412, 11), -- Average P. Def.
-(30848, 4413, 11), -- Average M. Def.
-(30848, 4414, 2), -- Standard Type
-(30848, 4415, 3), -- One-handed Sword
-(30848, 4416, 14), -- Humans
+(30848, 4408, 1), -- HP Modifiers
+(30848, 4409, 1), -- MP Modifiers
+(30848, 4410, 11), -- P. Atk. Modifiers
+(30848, 4411, 11), -- M. Atk. Modifiers
+(30848, 4412, 11), -- P. Def. Modifiers
+(30848, 4413, 11), -- M. Def. Modifiers
+(30848, 4414, 2), -- Armor Type
+(30848, 4415, 3), -- Weapon Type
+(30848, 4416, 14), -- Races
 -- Sedrick
 (30849, 4045, 1), -- Resist Full Magic Attack
-(30849, 4408, 1), -- HP Increase (1x)
-(30849, 4409, 1), -- MP Increase (1x)
-(30849, 4410, 11), -- Average P. Atk.
-(30849, 4411, 11), -- Average M. Atk.
-(30849, 4412, 11), -- Average P. Def.
-(30849, 4413, 11), -- Average M. Def.
-(30849, 4414, 2), -- Standard Type
-(30849, 4415, 3), -- One-handed Sword
-(30849, 4416, 14), -- Humans
+(30849, 4408, 1), -- HP Modifiers
+(30849, 4409, 1), -- MP Modifiers
+(30849, 4410, 11), -- P. Atk. Modifiers
+(30849, 4411, 11), -- M. Atk. Modifiers
+(30849, 4412, 11), -- P. Def. Modifiers
+(30849, 4413, 11), -- M. Def. Modifiers
+(30849, 4414, 2), -- Armor Type
+(30849, 4415, 3), -- Weapon Type
+(30849, 4416, 14), -- Races
 -- Aiken
 (30850, 4045, 1), -- Resist Full Magic Attack
-(30850, 4408, 1), -- HP Increase (1x)
-(30850, 4409, 1), -- MP Increase (1x)
-(30850, 4410, 11), -- Average P. Atk.
-(30850, 4411, 11), -- Average M. Atk.
-(30850, 4412, 11), -- Average P. Def.
-(30850, 4413, 11), -- Average M. Def.
-(30850, 4414, 2), -- Standard Type
-(30850, 4415, 3), -- One-handed Sword
-(30850, 4416, 14), -- Humans
+(30850, 4408, 1), -- HP Modifiers
+(30850, 4409, 1), -- MP Modifiers
+(30850, 4410, 11), -- P. Atk. Modifiers
+(30850, 4411, 11), -- M. Atk. Modifiers
+(30850, 4412, 11), -- P. Def. Modifiers
+(30850, 4413, 11), -- M. Def. Modifiers
+(30850, 4414, 2), -- Armor Type
+(30850, 4415, 3), -- Weapon Type
+(30850, 4416, 14), -- Races
 -- Kendra
 (30851, 4045, 1), -- Resist Full Magic Attack
-(30851, 4408, 1), -- HP Increase (1x)
-(30851, 4409, 1), -- MP Increase (1x)
-(30851, 4410, 11), -- Average P. Atk.
-(30851, 4411, 11), -- Average M. Atk.
-(30851, 4412, 11), -- Average P. Def.
-(30851, 4413, 11), -- Average M. Def.
-(30851, 4414, 2), -- Standard Type
-(30851, 4415, 3), -- One-handed Sword
-(30851, 4416, 14), -- Humans
+(30851, 4408, 1), -- HP Modifiers
+(30851, 4409, 1), -- MP Modifiers
+(30851, 4410, 11), -- P. Atk. Modifiers
+(30851, 4411, 11), -- M. Atk. Modifiers
+(30851, 4412, 11), -- P. Def. Modifiers
+(30851, 4413, 11), -- M. Def. Modifiers
+(30851, 4414, 2), -- Armor Type
+(30851, 4415, 3), -- Weapon Type
+(30851, 4416, 14), -- Races
 -- Sinden
 (30852, 4045, 1), -- Resist Full Magic Attack
-(30852, 4408, 1), -- HP Increase (1x)
-(30852, 4409, 1), -- MP Increase (1x)
-(30852, 4410, 11), -- Average P. Atk.
-(30852, 4411, 11), -- Average M. Atk.
-(30852, 4412, 11), -- Average P. Def.
-(30852, 4413, 11), -- Average M. Def.
-(30852, 4414, 2), -- Standard Type
-(30852, 4415, 3), -- One-handed Sword
-(30852, 4416, 15), -- Elves
+(30852, 4408, 1), -- HP Modifiers
+(30852, 4409, 1), -- MP Modifiers
+(30852, 4410, 11), -- P. Atk. Modifiers
+(30852, 4411, 11), -- M. Atk. Modifiers
+(30852, 4412, 11), -- P. Def. Modifiers
+(30852, 4413, 11), -- M. Def. Modifiers
+(30852, 4414, 2), -- Armor Type
+(30852, 4415, 3), -- Weapon Type
+(30852, 4416, 15), -- Races
 -- Raien
 (30853, 4045, 1), -- Resist Full Magic Attack
-(30853, 4408, 1), -- HP Increase (1x)
-(30853, 4409, 1), -- MP Increase (1x)
-(30853, 4410, 11), -- Average P. Atk.
-(30853, 4411, 11), -- Average M. Atk.
-(30853, 4412, 11), -- Average P. Def.
-(30853, 4413, 11), -- Average M. Def.
-(30853, 4414, 2), -- Standard Type
-(30853, 4415, 3), -- One-handed Sword
-(30853, 4416, 15), -- Elves
+(30853, 4408, 1), -- HP Modifiers
+(30853, 4409, 1), -- MP Modifiers
+(30853, 4410, 11), -- P. Atk. Modifiers
+(30853, 4411, 11), -- M. Atk. Modifiers
+(30853, 4412, 11), -- P. Def. Modifiers
+(30853, 4413, 11), -- M. Def. Modifiers
+(30853, 4414, 2), -- Armor Type
+(30853, 4415, 3), -- Weapon Type
+(30853, 4416, 15), -- Races
 -- Drikiyan
 (30854, 4045, 1), -- Resist Full Magic Attack
-(30854, 4408, 1), -- HP Increase (1x)
-(30854, 4409, 1), -- MP Increase (1x)
-(30854, 4410, 11), -- Average P. Atk.
-(30854, 4411, 11), -- Average M. Atk.
-(30854, 4412, 11), -- Average P. Def.
-(30854, 4413, 11), -- Average M. Def.
-(30854, 4414, 2), -- Standard Type
-(30854, 4415, 3), -- One-handed Sword
-(30854, 4416, 14), -- Humans
+(30854, 4408, 1), -- HP Modifiers
+(30854, 4409, 1), -- MP Modifiers
+(30854, 4410, 11), -- P. Atk. Modifiers
+(30854, 4411, 11), -- M. Atk. Modifiers
+(30854, 4412, 11), -- P. Def. Modifiers
+(30854, 4413, 11), -- M. Def. Modifiers
+(30854, 4414, 2), -- Armor Type
+(30854, 4415, 3), -- Weapon Type
+(30854, 4416, 14), -- Races
 -- Desmond
 (30855, 4045, 1), -- Resist Full Magic Attack
-(30855, 4408, 1), -- HP Increase (1x)
-(30855, 4409, 1), -- MP Increase (1x)
-(30855, 4410, 11), -- Average P. Atk.
-(30855, 4411, 11), -- Average M. Atk.
-(30855, 4412, 11), -- Average P. Def.
-(30855, 4413, 11), -- Average M. Def.
-(30855, 4414, 2), -- Standard Type
-(30855, 4415, 3), -- One-handed Sword
-(30855, 4416, 14), -- Humans
+(30855, 4408, 1), -- HP Modifiers
+(30855, 4409, 1), -- MP Modifiers
+(30855, 4410, 11), -- P. Atk. Modifiers
+(30855, 4411, 11), -- M. Atk. Modifiers
+(30855, 4412, 11), -- P. Def. Modifiers
+(30855, 4413, 11), -- M. Def. Modifiers
+(30855, 4414, 2), -- Armor Type
+(30855, 4415, 3), -- Weapon Type
+(30855, 4416, 14), -- Races
 -- Winonin
 (30856, 4045, 1), -- Resist Full Magic Attack
-(30856, 4408, 1), -- HP Increase (1x)
-(30856, 4409, 1), -- MP Increase (1x)
-(30856, 4410, 11), -- Average P. Atk.
-(30856, 4411, 11), -- Average M. Atk.
-(30856, 4412, 11), -- Average P. Def.
-(30856, 4413, 11), -- Average M. Def.
-(30856, 4414, 2), -- Standard Type
-(30856, 4415, 3), -- One-handed Sword
-(30856, 4416, 15), -- Elves
+(30856, 4408, 1), -- HP Modifiers
+(30856, 4409, 1), -- MP Modifiers
+(30856, 4410, 11), -- P. Atk. Modifiers
+(30856, 4411, 11), -- M. Atk. Modifiers
+(30856, 4412, 11), -- P. Def. Modifiers
+(30856, 4413, 11), -- M. Def. Modifiers
+(30856, 4414, 2), -- Armor Type
+(30856, 4415, 3), -- Weapon Type
+(30856, 4416, 15), -- Races
 -- Orven
 (30857, 4045, 1), -- Resist Full Magic Attack
-(30857, 4408, 1), -- HP Increase (1x)
-(30857, 4409, 1), -- MP Increase (1x)
-(30857, 4410, 11), -- Average P. Atk.
-(30857, 4411, 11), -- Average M. Atk.
-(30857, 4412, 11), -- Average P. Def.
-(30857, 4413, 11), -- Average M. Def.
-(30857, 4414, 2), -- Standard Type
-(30857, 4415, 3), -- One-handed Sword
-(30857, 4416, 14), -- Humans
+(30857, 4408, 1), -- HP Modifiers
+(30857, 4409, 1), -- MP Modifiers
+(30857, 4410, 11), -- P. Atk. Modifiers
+(30857, 4411, 11), -- M. Atk. Modifiers
+(30857, 4412, 11), -- P. Def. Modifiers
+(30857, 4413, 11), -- M. Def. Modifiers
+(30857, 4414, 2), -- Armor Type
+(30857, 4415, 3), -- Weapon Type
+(30857, 4416, 14), -- Races
 -- Ross
 (30858, 4045, 1), -- Resist Full Magic Attack
-(30858, 4408, 1), -- HP Increase (1x)
-(30858, 4409, 1), -- MP Increase (1x)
-(30858, 4410, 11), -- Average P. Atk.
-(30858, 4411, 11), -- Average M. Atk.
-(30858, 4412, 11), -- Average P. Def.
-(30858, 4413, 11), -- Average M. Def.
-(30858, 4414, 2), -- Standard Type
-(30858, 4415, 3), -- One-handed Sword
-(30858, 4416, 14), -- Humans
+(30858, 4408, 1), -- HP Modifiers
+(30858, 4409, 1), -- MP Modifiers
+(30858, 4410, 11), -- P. Atk. Modifiers
+(30858, 4411, 11), -- M. Atk. Modifiers
+(30858, 4412, 11), -- P. Def. Modifiers
+(30858, 4413, 11), -- M. Def. Modifiers
+(30858, 4414, 2), -- Armor Type
+(30858, 4415, 3), -- Weapon Type
+(30858, 4416, 14), -- Races
 -- Vivyan
 (30859, 4045, 1), -- Resist Full Magic Attack
-(30859, 4408, 1), -- HP Increase (1x)
-(30859, 4409, 1), -- MP Increase (1x)
-(30859, 4410, 11), -- Average P. Atk.
-(30859, 4411, 11), -- Average M. Atk.
-(30859, 4412, 11), -- Average P. Def.
-(30859, 4413, 11), -- Average M. Def.
-(30859, 4414, 2), -- Standard Type
-(30859, 4415, 3), -- One-handed Sword
-(30859, 4416, 14), -- Humans
+(30859, 4408, 1), -- HP Modifiers
+(30859, 4409, 1), -- MP Modifiers
+(30859, 4410, 11), -- P. Atk. Modifiers
+(30859, 4411, 11), -- M. Atk. Modifiers
+(30859, 4412, 11), -- P. Def. Modifiers
+(30859, 4413, 11), -- M. Def. Modifiers
+(30859, 4414, 2), -- Armor Type
+(30859, 4415, 3), -- Weapon Type
+(30859, 4416, 14), -- Races
 -- Flownia
 (30860, 4045, 1), -- Resist Full Magic Attack
-(30860, 4408, 1), -- HP Increase (1x)
-(30860, 4409, 1), -- MP Increase (1x)
-(30860, 4410, 11), -- Average P. Atk.
-(30860, 4411, 11), -- Average M. Atk.
-(30860, 4412, 11), -- Average P. Def.
-(30860, 4413, 11), -- Average M. Def.
-(30860, 4414, 2), -- Standard Type
-(30860, 4415, 3), -- One-handed Sword
-(30860, 4416, 15), -- Elves
+(30860, 4408, 1), -- HP Modifiers
+(30860, 4409, 1), -- MP Modifiers
+(30860, 4410, 11), -- P. Atk. Modifiers
+(30860, 4411, 11), -- M. Atk. Modifiers
+(30860, 4412, 11), -- P. Def. Modifiers
+(30860, 4413, 11), -- M. Def. Modifiers
+(30860, 4414, 2), -- Armor Type
+(30860, 4415, 3), -- Weapon Type
+(30860, 4416, 15), -- Races
 -- Leonard
 (30861, 4045, 1), -- Resist Full Magic Attack
-(30861, 4408, 1), -- HP Increase (1x)
-(30861, 4409, 1), -- MP Increase (1x)
-(30861, 4410, 11), -- Average P. Atk.
-(30861, 4411, 11), -- Average M. Atk.
-(30861, 4412, 11), -- Average P. Def.
-(30861, 4413, 11), -- Average M. Def.
-(30861, 4414, 2), -- Standard Type
-(30861, 4415, 3), -- One-handed Sword
-(30861, 4416, 15), -- Elves
+(30861, 4408, 1), -- HP Modifiers
+(30861, 4409, 1), -- MP Modifiers
+(30861, 4410, 11), -- P. Atk. Modifiers
+(30861, 4411, 11), -- M. Atk. Modifiers
+(30861, 4412, 11), -- P. Def. Modifiers
+(30861, 4413, 11), -- M. Def. Modifiers
+(30861, 4414, 2), -- Armor Type
+(30861, 4415, 3), -- Weapon Type
+(30861, 4416, 15), -- Races
 -- Oltran
 (30862, 4045, 1), -- Resist Full Magic Attack
-(30862, 4408, 1), -- HP Increase (1x)
-(30862, 4409, 1), -- MP Increase (1x)
-(30862, 4410, 11), -- Average P. Atk.
-(30862, 4411, 11), -- Average M. Atk.
-(30862, 4412, 11), -- Average P. Def.
-(30862, 4413, 11), -- Average M. Def.
-(30862, 4414, 2), -- Standard Type
-(30862, 4415, 3), -- One-handed Sword
-(30862, 4416, 16), -- Dark Elves
+(30862, 4408, 1), -- HP Modifiers
+(30862, 4409, 1), -- MP Modifiers
+(30862, 4410, 11), -- P. Atk. Modifiers
+(30862, 4411, 11), -- M. Atk. Modifiers
+(30862, 4412, 11), -- P. Def. Modifiers
+(30862, 4413, 11), -- M. Def. Modifiers
+(30862, 4414, 2), -- Armor Type
+(30862, 4415, 3), -- Weapon Type
+(30862, 4416, 16), -- Races
 -- Ghest
 (30863, 4045, 1), -- Resist Full Magic Attack
-(30863, 4408, 1), -- HP Increase (1x)
-(30863, 4409, 1), -- MP Increase (1x)
-(30863, 4410, 11), -- Average P. Atk.
-(30863, 4411, 11), -- Average M. Atk.
-(30863, 4412, 11), -- Average P. Def.
-(30863, 4413, 11), -- Average M. Def.
-(30863, 4414, 2), -- Standard Type
-(30863, 4415, 3), -- One-handed Sword
-(30863, 4416, 16), -- Dark Elves
+(30863, 4408, 1), -- HP Modifiers
+(30863, 4409, 1), -- MP Modifiers
+(30863, 4410, 11), -- P. Atk. Modifiers
+(30863, 4411, 11), -- M. Atk. Modifiers
+(30863, 4412, 11), -- P. Def. Modifiers
+(30863, 4413, 11), -- M. Def. Modifiers
+(30863, 4414, 2), -- Armor Type
+(30863, 4415, 3), -- Weapon Type
+(30863, 4416, 16), -- Races
 -- Hanellin
 (30864, 4045, 1), -- Resist Full Magic Attack
-(30864, 4408, 1), -- HP Increase (1x)
-(30864, 4409, 1), -- MP Increase (1x)
-(30864, 4410, 11), -- Average P. Atk.
-(30864, 4411, 11), -- Average M. Atk.
-(30864, 4412, 11), -- Average P. Def.
-(30864, 4413, 11), -- Average M. Def.
-(30864, 4414, 2), -- Standard Type
-(30864, 4415, 3), -- One-handed Sword
-(30864, 4416, 16), -- Dark Elves
+(30864, 4408, 1), -- HP Modifiers
+(30864, 4409, 1), -- MP Modifiers
+(30864, 4410, 11), -- P. Atk. Modifiers
+(30864, 4411, 11), -- M. Atk. Modifiers
+(30864, 4412, 11), -- P. Def. Modifiers
+(30864, 4413, 11), -- M. Def. Modifiers
+(30864, 4414, 2), -- Armor Type
+(30864, 4415, 3), -- Weapon Type
+(30864, 4416, 16), -- Races
 -- Ladanza
 (30865, 4045, 1), -- Resist Full Magic Attack
-(30865, 4408, 1), -- HP Increase (1x)
-(30865, 4409, 1), -- MP Increase (1x)
-(30865, 4410, 11), -- Average P. Atk.
-(30865, 4411, 11), -- Average M. Atk.
-(30865, 4412, 11), -- Average P. Def.
-(30865, 4413, 11), -- Average M. Def.
-(30865, 4414, 2), -- Standard Type
-(30865, 4415, 3), -- One-handed Sword
-(30865, 4416, 17), -- Orcs
+(30865, 4408, 1), -- HP Modifiers
+(30865, 4409, 1), -- MP Modifiers
+(30865, 4410, 11), -- P. Atk. Modifiers
+(30865, 4411, 11), -- M. Atk. Modifiers
+(30865, 4412, 11), -- P. Def. Modifiers
+(30865, 4413, 11), -- M. Def. Modifiers
+(30865, 4414, 2), -- Armor Type
+(30865, 4415, 3), -- Weapon Type
+(30865, 4416, 17), -- Races
 -- Marestella
 (30866, 4045, 1), -- Resist Full Magic Attack
-(30866, 4408, 1), -- HP Increase (1x)
-(30866, 4409, 1), -- MP Increase (1x)
-(30866, 4410, 11), -- Average P. Atk.
-(30866, 4411, 11), -- Average M. Atk.
-(30866, 4412, 11), -- Average P. Def.
-(30866, 4413, 11), -- Average M. Def.
-(30866, 4414, 2), -- Standard Type
-(30866, 4415, 3), -- One-handed Sword
-(30866, 4416, 17), -- Orcs
+(30866, 4408, 1), -- HP Modifiers
+(30866, 4409, 1), -- MP Modifiers
+(30866, 4410, 11), -- P. Atk. Modifiers
+(30866, 4411, 11), -- M. Atk. Modifiers
+(30866, 4412, 11), -- P. Def. Modifiers
+(30866, 4413, 11), -- M. Def. Modifiers
+(30866, 4414, 2), -- Armor Type
+(30866, 4415, 3), -- Weapon Type
+(30866, 4416, 17), -- Races
 -- Reva
 (30867, 4045, 1), -- Resist Full Magic Attack
-(30867, 4408, 1), -- HP Increase (1x)
-(30867, 4409, 1), -- MP Increase (1x)
-(30867, 4410, 11), -- Average P. Atk.
-(30867, 4411, 11), -- Average M. Atk.
-(30867, 4412, 11), -- Average P. Def.
-(30867, 4413, 11), -- Average M. Def.
-(30867, 4414, 2), -- Standard Type
-(30867, 4415, 3), -- One-handed Sword
-(30867, 4416, 17), -- Orcs
+(30867, 4408, 1), -- HP Modifiers
+(30867, 4409, 1), -- MP Modifiers
+(30867, 4410, 11), -- P. Atk. Modifiers
+(30867, 4411, 11), -- M. Atk. Modifiers
+(30867, 4412, 11), -- P. Def. Modifiers
+(30867, 4413, 11), -- M. Def. Modifiers
+(30867, 4414, 2), -- Armor Type
+(30867, 4415, 3), -- Weapon Type
+(30867, 4416, 17), -- Races
 -- Sir Eric Rodemai
 (30868, 4045, 1), -- Resist Full Magic Attack
-(30868, 4408, 1), -- HP Increase (1x)
-(30868, 4409, 1), -- MP Increase (1x)
-(30868, 4410, 11), -- Average P. Atk.
-(30868, 4411, 11), -- Average M. Atk.
-(30868, 4412, 11), -- Average P. Def.
-(30868, 4413, 11), -- Average M. Def.
-(30868, 4414, 2), -- Standard Type
-(30868, 4415, 3), -- One-handed Sword
-(30868, 4416, 14), -- Humans
+(30868, 4408, 1), -- HP Modifiers
+(30868, 4409, 1), -- MP Modifiers
+(30868, 4410, 11), -- P. Atk. Modifiers
+(30868, 4411, 11), -- M. Atk. Modifiers
+(30868, 4412, 11), -- P. Def. Modifiers
+(30868, 4413, 11), -- M. Def. Modifiers
+(30868, 4414, 2), -- Armor Type
+(30868, 4415, 3), -- Weapon Type
+(30868, 4416, 14), -- Races
 -- Lemper
 (30869, 4045, 1), -- Resist Full Magic Attack
-(30869, 4408, 1), -- HP Increase (1x)
-(30869, 4409, 1), -- MP Increase (1x)
-(30869, 4410, 11), -- Average P. Atk.
-(30869, 4411, 11), -- Average M. Atk.
-(30869, 4412, 11), -- Average P. Def.
-(30869, 4413, 11), -- Average M. Def.
-(30869, 4414, 2), -- Standard Type
-(30869, 4415, 3), -- One-handed Sword
-(30869, 4416, 14), -- Humans
+(30869, 4408, 1), -- HP Modifiers
+(30869, 4409, 1), -- MP Modifiers
+(30869, 4410, 11), -- P. Atk. Modifiers
+(30869, 4411, 11), -- M. Atk. Modifiers
+(30869, 4412, 11), -- P. Def. Modifiers
+(30869, 4413, 11), -- M. Def. Modifiers
+(30869, 4414, 2), -- Armor Type
+(30869, 4415, 3), -- Weapon Type
+(30869, 4416, 14), -- Races
 -- Kurtiz
 (30870, 4045, 1), -- Resist Full Magic Attack
-(30870, 4408, 1), -- HP Increase (1x)
-(30870, 4409, 1), -- MP Increase (1x)
-(30870, 4410, 16), -- Very Strong P. Atk.
-(30870, 4411, 16), -- Very Strong M. Atk.
-(30870, 4412, 16), -- Very Strong P. Def.
-(30870, 4413, 16), -- Very Strong M. Def.
-(30870, 4414, 2), -- Standard Type
-(30870, 4415, 3), -- One-handed Sword
-(30870, 4416, 14), -- Humans
+(30870, 4408, 1), -- HP Modifiers
+(30870, 4409, 1), -- MP Modifiers
+(30870, 4410, 16), -- P. Atk. Modifiers
+(30870, 4411, 16), -- M. Atk. Modifiers
+(30870, 4412, 16), -- P. Def. Modifiers
+(30870, 4413, 16), -- M. Def. Modifiers
+(30870, 4414, 2), -- Armor Type
+(30870, 4415, 3), -- Weapon Type
+(30870, 4416, 14), -- Races
 -- Bret
 (30871, 4045, 1), -- Resist Full Magic Attack
-(30871, 4408, 1), -- HP Increase (1x)
-(30871, 4409, 1), -- MP Increase (1x)
-(30871, 4410, 16), -- Very Strong P. Atk.
-(30871, 4411, 16), -- Very Strong M. Atk.
-(30871, 4412, 16), -- Very Strong P. Def.
-(30871, 4413, 16), -- Very Strong M. Def.
-(30871, 4414, 2), -- Standard Type
-(30871, 4415, 9), -- Bows
-(30871, 4416, 14), -- Humans
+(30871, 4408, 1), -- HP Modifiers
+(30871, 4409, 1), -- MP Modifiers
+(30871, 4410, 16), -- P. Atk. Modifiers
+(30871, 4411, 16), -- M. Atk. Modifiers
+(30871, 4412, 16), -- P. Def. Modifiers
+(30871, 4413, 16), -- M. Def. Modifiers
+(30871, 4414, 2), -- Armor Type
+(30871, 4415, 9), -- Weapon Type
+(30871, 4416, 14), -- Races
 -- Conroy
 (30872, 4045, 1), -- Resist Full Magic Attack
-(30872, 4408, 1), -- HP Increase (1x)
-(30872, 4409, 1), -- MP Increase (1x)
-(30872, 4410, 16), -- Very Strong P. Atk.
-(30872, 4411, 16), -- Very Strong M. Atk.
-(30872, 4412, 16), -- Very Strong P. Def.
-(30872, 4413, 16), -- Very Strong M. Def.
-(30872, 4414, 2), -- Standard Type
-(30872, 4415, 3), -- One-handed Sword
-(30872, 4416, 14), -- Humans
+(30872, 4408, 1), -- HP Modifiers
+(30872, 4409, 1), -- MP Modifiers
+(30872, 4410, 16), -- P. Atk. Modifiers
+(30872, 4411, 16), -- M. Atk. Modifiers
+(30872, 4412, 16), -- P. Def. Modifiers
+(30872, 4413, 16), -- M. Def. Modifiers
+(30872, 4414, 2), -- Armor Type
+(30872, 4415, 3), -- Weapon Type
+(30872, 4416, 14), -- Races
 -- Coleman
 (30873, 4045, 1), -- Resist Full Magic Attack
-(30873, 4408, 1), -- HP Increase (1x)
-(30873, 4409, 1), -- MP Increase (1x)
-(30873, 4410, 16), -- Very Strong P. Atk.
-(30873, 4411, 16), -- Very Strong M. Atk.
-(30873, 4412, 16), -- Very Strong P. Def.
-(30873, 4413, 16), -- Very Strong M. Def.
-(30873, 4414, 2), -- Standard Type
-(30873, 4415, 9), -- Bows
-(30873, 4416, 14), -- Humans
+(30873, 4408, 1), -- HP Modifiers
+(30873, 4409, 1), -- MP Modifiers
+(30873, 4410, 16), -- P. Atk. Modifiers
+(30873, 4411, 16), -- M. Atk. Modifiers
+(30873, 4412, 16), -- P. Def. Modifiers
+(30873, 4413, 16), -- M. Def. Modifiers
+(30873, 4414, 2), -- Armor Type
+(30873, 4415, 9), -- Weapon Type
+(30873, 4416, 14), -- Races
 -- Aldis
 (30874, 4045, 1), -- Resist Full Magic Attack
-(30874, 4408, 1), -- HP Increase (1x)
-(30874, 4409, 1), -- MP Increase (1x)
-(30874, 4410, 16), -- Very Strong P. Atk.
-(30874, 4411, 16), -- Very Strong M. Atk.
-(30874, 4412, 16), -- Very Strong P. Def.
-(30874, 4413, 16), -- Very Strong M. Def.
-(30874, 4414, 2), -- Standard Type
-(30874, 4415, 3), -- One-handed Sword
-(30874, 4416, 14), -- Humans
+(30874, 4408, 1), -- HP Modifiers
+(30874, 4409, 1), -- MP Modifiers
+(30874, 4410, 16), -- P. Atk. Modifiers
+(30874, 4411, 16), -- M. Atk. Modifiers
+(30874, 4412, 16), -- P. Def. Modifiers
+(30874, 4413, 16), -- M. Def. Modifiers
+(30874, 4414, 2), -- Armor Type
+(30874, 4415, 3), -- Weapon Type
+(30874, 4416, 14), -- Races
 -- Carlton
 (30875, 4045, 1), -- Resist Full Magic Attack
-(30875, 4408, 1), -- HP Increase (1x)
-(30875, 4409, 1), -- MP Increase (1x)
-(30875, 4410, 16), -- Very Strong P. Atk.
-(30875, 4411, 16), -- Very Strong M. Atk.
-(30875, 4412, 16), -- Very Strong P. Def.
-(30875, 4413, 16), -- Very Strong M. Def.
-(30875, 4414, 2), -- Standard Type
-(30875, 4415, 9), -- Bows
-(30875, 4416, 14), -- Humans
+(30875, 4408, 1), -- HP Modifiers
+(30875, 4409, 1), -- MP Modifiers
+(30875, 4410, 16), -- P. Atk. Modifiers
+(30875, 4411, 16), -- M. Atk. Modifiers
+(30875, 4412, 16), -- P. Def. Modifiers
+(30875, 4413, 16), -- M. Def. Modifiers
+(30875, 4414, 2), -- Armor Type
+(30875, 4415, 9), -- Weapon Type
+(30875, 4416, 14), -- Races
 -- Eastan
 (30876, 4045, 1), -- Resist Full Magic Attack
-(30876, 4408, 1), -- HP Increase (1x)
-(30876, 4409, 1), -- MP Increase (1x)
-(30876, 4410, 16), -- Very Strong P. Atk.
-(30876, 4411, 16), -- Very Strong M. Atk.
-(30876, 4412, 16), -- Very Strong P. Def.
-(30876, 4413, 16), -- Very Strong M. Def.
-(30876, 4414, 2), -- Standard Type
-(30876, 4415, 3), -- One-handed Sword
-(30876, 4416, 14), -- Humans
+(30876, 4408, 1), -- HP Modifiers
+(30876, 4409, 1), -- MP Modifiers
+(30876, 4410, 16), -- P. Atk. Modifiers
+(30876, 4411, 16), -- M. Atk. Modifiers
+(30876, 4412, 16), -- P. Def. Modifiers
+(30876, 4413, 16), -- M. Def. Modifiers
+(30876, 4414, 2), -- Armor Type
+(30876, 4415, 3), -- Weapon Type
+(30876, 4416, 14), -- Races
 -- Grayson
 (30877, 4045, 1), -- Resist Full Magic Attack
-(30877, 4408, 1), -- HP Increase (1x)
-(30877, 4409, 1), -- MP Increase (1x)
-(30877, 4410, 16), -- Very Strong P. Atk.
-(30877, 4411, 16), -- Very Strong M. Atk.
-(30877, 4412, 16), -- Very Strong P. Def.
-(30877, 4413, 16), -- Very Strong M. Def.
-(30877, 4414, 2), -- Standard Type
-(30877, 4415, 9), -- Bows
-(30877, 4416, 14), -- Humans
+(30877, 4408, 1), -- HP Modifiers
+(30877, 4409, 1), -- MP Modifiers
+(30877, 4410, 16), -- P. Atk. Modifiers
+(30877, 4411, 16), -- M. Atk. Modifiers
+(30877, 4412, 16), -- P. Def. Modifiers
+(30877, 4413, 16), -- M. Def. Modifiers
+(30877, 4414, 2), -- Armor Type
+(30877, 4415, 9), -- Weapon Type
+(30877, 4416, 14), -- Races
 -- Angelina
 (30878, 4045, 1), -- Resist Full Magic Attack
-(30878, 4408, 1), -- HP Increase (1x)
-(30878, 4409, 1), -- MP Increase (1x)
-(30878, 4410, 11), -- Average P. Atk.
-(30878, 4411, 11), -- Average M. Atk.
-(30878, 4412, 11), -- Average P. Def.
-(30878, 4413, 11), -- Average M. Def.
-(30878, 4414, 2), -- Standard Type
-(30878, 4415, 3), -- One-handed Sword
-(30878, 4416, 14), -- Humans
+(30878, 4408, 1), -- HP Modifiers
+(30878, 4409, 1), -- MP Modifiers
+(30878, 4410, 11), -- P. Atk. Modifiers
+(30878, 4411, 11), -- M. Atk. Modifiers
+(30878, 4412, 11), -- P. Def. Modifiers
+(30878, 4413, 11), -- M. Def. Modifiers
+(30878, 4414, 2), -- Armor Type
+(30878, 4415, 3), -- Weapon Type
+(30878, 4416, 14), -- Races
 -- Felton
 (30879, 4045, 1), -- Resist Full Magic Attack
-(30879, 4408, 1), -- HP Increase (1x)
-(30879, 4409, 1), -- MP Increase (1x)
-(30879, 4410, 11), -- Average P. Atk.
-(30879, 4411, 11), -- Average M. Atk.
-(30879, 4412, 11), -- Average P. Def.
-(30879, 4413, 11), -- Average M. Def.
-(30879, 4414, 2), -- Standard Type
-(30879, 4415, 3), -- One-handed Sword
-(30879, 4416, 14), -- Humans
+(30879, 4408, 1), -- HP Modifiers
+(30879, 4409, 1), -- MP Modifiers
+(30879, 4410, 11), -- P. Atk. Modifiers
+(30879, 4411, 11), -- M. Atk. Modifiers
+(30879, 4412, 11), -- P. Def. Modifiers
+(30879, 4413, 11), -- M. Def. Modifiers
+(30879, 4414, 2), -- Armor Type
+(30879, 4415, 3), -- Weapon Type
+(30879, 4416, 14), -- Races
 -- Viktor Van Dake
 (30880, 4045, 1), -- Resist Full Magic Attack
-(30880, 4408, 1), -- HP Increase (1x)
-(30880, 4409, 1), -- MP Increase (1x)
-(30880, 4410, 16), -- Very Strong P. Atk.
-(30880, 4411, 16), -- Very Strong M. Atk.
-(30880, 4412, 16), -- Very Strong P. Def.
-(30880, 4413, 16), -- Very Strong M. Def.
-(30880, 4414, 2), -- Standard Type
-(30880, 4415, 3), -- One-handed Sword
-(30880, 4416, 14), -- Humans
+(30880, 4408, 1), -- HP Modifiers
+(30880, 4409, 1), -- MP Modifiers
+(30880, 4410, 16), -- P. Atk. Modifiers
+(30880, 4411, 16), -- M. Atk. Modifiers
+(30880, 4412, 16), -- P. Def. Modifiers
+(30880, 4413, 16), -- M. Def. Modifiers
+(30880, 4414, 2), -- Armor Type
+(30880, 4415, 3), -- Weapon Type
+(30880, 4416, 14), -- Races
 -- Sanders
 (30881, 4045, 1), -- Resist Full Magic Attack
-(30881, 4408, 1), -- HP Increase (1x)
-(30881, 4409, 1), -- MP Increase (1x)
-(30881, 4410, 11), -- Average P. Atk.
-(30881, 4411, 11), -- Average M. Atk.
-(30881, 4412, 11), -- Average P. Def.
-(30881, 4413, 11), -- Average M. Def.
-(30881, 4414, 2), -- Standard Type
-(30881, 4415, 3), -- One-handed Sword
-(30881, 4416, 14), -- Humans
+(30881, 4408, 1), -- HP Modifiers
+(30881, 4409, 1), -- MP Modifiers
+(30881, 4410, 11), -- P. Atk. Modifiers
+(30881, 4411, 11), -- M. Atk. Modifiers
+(30881, 4412, 11), -- P. Def. Modifiers
+(30881, 4413, 11), -- M. Def. Modifiers
+(30881, 4414, 2), -- Armor Type
+(30881, 4415, 3), -- Weapon Type
+(30881, 4416, 14), -- Races
 -- Frontier Guard
 (30882, 4045, 1), -- Resist Full Magic Attack
-(30882, 4408, 1), -- HP Increase (1x)
-(30882, 4409, 1), -- MP Increase (1x)
-(30882, 4410, 11), -- Average P. Atk.
-(30882, 4411, 11), -- Average M. Atk.
-(30882, 4412, 11), -- Average P. Def.
-(30882, 4413, 11), -- Average M. Def.
-(30882, 4414, 2), -- Standard Type
-(30882, 4415, 3), -- One-handed Sword
-(30882, 4416, 14), -- Humans
+(30882, 4408, 1), -- HP Modifiers
+(30882, 4409, 1), -- MP Modifiers
+(30882, 4410, 11), -- P. Atk. Modifiers
+(30882, 4411, 11), -- M. Atk. Modifiers
+(30882, 4412, 11), -- P. Def. Modifiers
+(30882, 4413, 11), -- M. Def. Modifiers
+(30882, 4414, 2), -- Armor Type
+(30882, 4415, 3), -- Weapon Type
+(30882, 4416, 14), -- Races
 -- Frontier Guard
 (30883, 4045, 1), -- Resist Full Magic Attack
-(30883, 4408, 1), -- HP Increase (1x)
-(30883, 4409, 1), -- MP Increase (1x)
-(30883, 4410, 11), -- Average P. Atk.
-(30883, 4411, 11), -- Average M. Atk.
-(30883, 4412, 11), -- Average P. Def.
-(30883, 4413, 11), -- Average M. Def.
-(30883, 4414, 2), -- Standard Type
-(30883, 4415, 9), -- Bows
-(30883, 4416, 14), -- Humans
+(30883, 4408, 1), -- HP Modifiers
+(30883, 4409, 1), -- MP Modifiers
+(30883, 4410, 11), -- P. Atk. Modifiers
+(30883, 4411, 11), -- M. Atk. Modifiers
+(30883, 4412, 11), -- P. Def. Modifiers
+(30883, 4413, 11), -- M. Def. Modifiers
+(30883, 4414, 2), -- Armor Type
+(30883, 4415, 9), -- Weapon Type
+(30883, 4416, 14), -- Races
 -- Frontier Guard
 (30884, 4045, 1), -- Resist Full Magic Attack
-(30884, 4408, 1), -- HP Increase (1x)
-(30884, 4409, 1), -- MP Increase (1x)
-(30884, 4410, 11), -- Average P. Atk.
-(30884, 4411, 11), -- Average M. Atk.
-(30884, 4412, 11), -- Average P. Def.
-(30884, 4413, 11), -- Average M. Def.
-(30884, 4414, 2), -- Standard Type
-(30884, 4415, 3), -- One-handed Sword
-(30884, 4416, 14), -- Humans
+(30884, 4408, 1), -- HP Modifiers
+(30884, 4409, 1), -- MP Modifiers
+(30884, 4410, 11), -- P. Atk. Modifiers
+(30884, 4411, 11), -- M. Atk. Modifiers
+(30884, 4412, 11), -- P. Def. Modifiers
+(30884, 4413, 11), -- M. Def. Modifiers
+(30884, 4414, 2), -- Armor Type
+(30884, 4415, 3), -- Weapon Type
+(30884, 4416, 14), -- Races
 -- Frontier Guard
 (30885, 4045, 1), -- Resist Full Magic Attack
-(30885, 4408, 1), -- HP Increase (1x)
-(30885, 4409, 1), -- MP Increase (1x)
-(30885, 4410, 11), -- Average P. Atk.
-(30885, 4411, 11), -- Average M. Atk.
-(30885, 4412, 11), -- Average P. Def.
-(30885, 4413, 11), -- Average M. Def.
-(30885, 4414, 2), -- Standard Type
-(30885, 4415, 9), -- Bows
-(30885, 4416, 14), -- Humans
+(30885, 4408, 1), -- HP Modifiers
+(30885, 4409, 1), -- MP Modifiers
+(30885, 4410, 11), -- P. Atk. Modifiers
+(30885, 4411, 11), -- M. Atk. Modifiers
+(30885, 4412, 11), -- P. Def. Modifiers
+(30885, 4413, 11), -- M. Def. Modifiers
+(30885, 4414, 2), -- Armor Type
+(30885, 4415, 9), -- Weapon Type
+(30885, 4416, 14), -- Races
 -- Frontier Guard
 (30886, 4045, 1), -- Resist Full Magic Attack
-(30886, 4408, 1), -- HP Increase (1x)
-(30886, 4409, 1), -- MP Increase (1x)
-(30886, 4410, 11), -- Average P. Atk.
-(30886, 4411, 11), -- Average M. Atk.
-(30886, 4412, 11), -- Average P. Def.
-(30886, 4413, 11), -- Average M. Def.
-(30886, 4414, 2), -- Standard Type
-(30886, 4415, 3), -- One-handed Sword
-(30886, 4416, 14), -- Humans
+(30886, 4408, 1), -- HP Modifiers
+(30886, 4409, 1), -- MP Modifiers
+(30886, 4410, 11), -- P. Atk. Modifiers
+(30886, 4411, 11), -- M. Atk. Modifiers
+(30886, 4412, 11), -- P. Def. Modifiers
+(30886, 4413, 11), -- M. Def. Modifiers
+(30886, 4414, 2), -- Armor Type
+(30886, 4415, 3), -- Weapon Type
+(30886, 4416, 14), -- Races
 -- Frontier Guard
 (30887, 4045, 1), -- Resist Full Magic Attack
-(30887, 4408, 1), -- HP Increase (1x)
-(30887, 4409, 1), -- MP Increase (1x)
-(30887, 4410, 11), -- Average P. Atk.
-(30887, 4411, 11), -- Average M. Atk.
-(30887, 4412, 11), -- Average P. Def.
-(30887, 4413, 11), -- Average M. Def.
-(30887, 4414, 2), -- Standard Type
-(30887, 4415, 9), -- Bows
-(30887, 4416, 14), -- Humans
+(30887, 4408, 1), -- HP Modifiers
+(30887, 4409, 1), -- MP Modifiers
+(30887, 4410, 11), -- P. Atk. Modifiers
+(30887, 4411, 11), -- M. Atk. Modifiers
+(30887, 4412, 11), -- P. Def. Modifiers
+(30887, 4413, 11), -- M. Def. Modifiers
+(30887, 4414, 2), -- Armor Type
+(30887, 4415, 9), -- Weapon Type
+(30887, 4416, 14), -- Races
 -- Frontier Guard
 (30888, 4045, 1), -- Resist Full Magic Attack
-(30888, 4408, 1), -- HP Increase (1x)
-(30888, 4409, 1), -- MP Increase (1x)
-(30888, 4410, 11), -- Average P. Atk.
-(30888, 4411, 11), -- Average M. Atk.
-(30888, 4412, 11), -- Average P. Def.
-(30888, 4413, 11), -- Average M. Def.
-(30888, 4414, 2), -- Standard Type
-(30888, 4415, 3), -- One-handed Sword
-(30888, 4416, 14), -- Humans
+(30888, 4408, 1), -- HP Modifiers
+(30888, 4409, 1), -- MP Modifiers
+(30888, 4410, 11), -- P. Atk. Modifiers
+(30888, 4411, 11), -- M. Atk. Modifiers
+(30888, 4412, 11), -- P. Def. Modifiers
+(30888, 4413, 11), -- M. Def. Modifiers
+(30888, 4414, 2), -- Armor Type
+(30888, 4415, 3), -- Weapon Type
+(30888, 4416, 14), -- Races
 -- Frontier Guard
 (30889, 4045, 1), -- Resist Full Magic Attack
-(30889, 4408, 1), -- HP Increase (1x)
-(30889, 4409, 1), -- MP Increase (1x)
-(30889, 4410, 11), -- Average P. Atk.
-(30889, 4411, 11), -- Average M. Atk.
-(30889, 4412, 11), -- Average P. Def.
-(30889, 4413, 11), -- Average M. Def.
-(30889, 4414, 2), -- Standard Type
-(30889, 4415, 9), -- Bows
-(30889, 4416, 14), -- Humans
+(30889, 4408, 1), -- HP Modifiers
+(30889, 4409, 1), -- MP Modifiers
+(30889, 4410, 11), -- P. Atk. Modifiers
+(30889, 4411, 11), -- M. Atk. Modifiers
+(30889, 4412, 11), -- P. Def. Modifiers
+(30889, 4413, 11), -- M. Def. Modifiers
+(30889, 4414, 2), -- Armor Type
+(30889, 4415, 9), -- Weapon Type
+(30889, 4416, 14), -- Races
 -- Espen
 (30890, 4045, 1), -- Resist Full Magic Attack
-(30890, 4408, 1), -- HP Increase (1x)
-(30890, 4409, 1), -- MP Increase (1x)
-(30890, 4410, 11), -- Average P. Atk.
-(30890, 4411, 11), -- Average M. Atk.
-(30890, 4412, 11), -- Average P. Def.
-(30890, 4413, 11), -- Average M. Def.
-(30890, 4414, 2), -- Standard Type
-(30890, 4415, 3), -- One-handed Sword
-(30890, 4416, 15), -- Elves
+(30890, 4408, 1), -- HP Modifiers
+(30890, 4409, 1), -- MP Modifiers
+(30890, 4410, 11), -- P. Atk. Modifiers
+(30890, 4411, 11), -- M. Atk. Modifiers
+(30890, 4412, 11), -- P. Def. Modifiers
+(30890, 4413, 11), -- M. Def. Modifiers
+(30890, 4414, 2), -- Armor Type
+(30890, 4415, 3), -- Weapon Type
+(30890, 4416, 15), -- Races
 -- Verona
 (30891, 4045, 1), -- Resist Full Magic Attack
-(30891, 4408, 1), -- HP Increase (1x)
-(30891, 4409, 1), -- MP Increase (1x)
-(30891, 4410, 11), -- Average P. Atk.
-(30891, 4411, 11), -- Average M. Atk.
-(30891, 4412, 11), -- Average P. Def.
-(30891, 4413, 11), -- Average M. Def.
-(30891, 4414, 2), -- Standard Type
-(30891, 4415, 3), -- One-handed Sword
-(30891, 4416, 14), -- Humans
+(30891, 4408, 1), -- HP Modifiers
+(30891, 4409, 1), -- MP Modifiers
+(30891, 4410, 11), -- P. Atk. Modifiers
+(30891, 4411, 11), -- M. Atk. Modifiers
+(30891, 4412, 11), -- P. Def. Modifiers
+(30891, 4413, 11), -- M. Def. Modifiers
+(30891, 4414, 2), -- Armor Type
+(30891, 4415, 3), -- Weapon Type
+(30891, 4416, 14), -- Races
 -- Enverun
 (30892, 4045, 1), -- Resist Full Magic Attack
-(30892, 4408, 1), -- HP Increase (1x)
-(30892, 4409, 1), -- MP Increase (1x)
-(30892, 4410, 11), -- Average P. Atk.
-(30892, 4411, 11), -- Average M. Atk.
-(30892, 4412, 11), -- Average P. Def.
-(30892, 4413, 11), -- Average M. Def.
-(30892, 4414, 2), -- Standard Type
-(30892, 4415, 3), -- One-handed Sword
-(30892, 4416, 14), -- Humans
+(30892, 4408, 1), -- HP Modifiers
+(30892, 4409, 1), -- MP Modifiers
+(30892, 4410, 11), -- P. Atk. Modifiers
+(30892, 4411, 11), -- M. Atk. Modifiers
+(30892, 4412, 11), -- P. Def. Modifiers
+(30892, 4413, 11), -- M. Def. Modifiers
+(30892, 4414, 2), -- Armor Type
+(30892, 4415, 3), -- Weapon Type
+(30892, 4416, 14), -- Races
 -- Payel
 (30893, 4045, 1), -- Resist Full Magic Attack
-(30893, 4408, 1), -- HP Increase (1x)
-(30893, 4409, 1), -- MP Increase (1x)
-(30893, 4410, 11), -- Average P. Atk.
-(30893, 4411, 11), -- Average M. Atk.
-(30893, 4412, 11), -- Average P. Def.
-(30893, 4413, 11), -- Average M. Def.
-(30893, 4414, 2), -- Standard Type
-(30893, 4415, 3), -- One-handed Sword
-(30893, 4416, 15), -- Elves
+(30893, 4408, 1), -- HP Modifiers
+(30893, 4409, 1), -- MP Modifiers
+(30893, 4410, 11), -- P. Atk. Modifiers
+(30893, 4411, 11), -- M. Atk. Modifiers
+(30893, 4412, 11), -- P. Def. Modifiers
+(30893, 4413, 11), -- M. Def. Modifiers
+(30893, 4414, 2), -- Armor Type
+(30893, 4415, 3), -- Weapon Type
+(30893, 4416, 15), -- Races
 -- Natools
 (30894, 4045, 1), -- Resist Full Magic Attack
-(30894, 4408, 1), -- HP Increase (1x)
-(30894, 4409, 1), -- MP Increase (1x)
-(30894, 4410, 11), -- Average P. Atk.
-(30894, 4411, 11), -- Average M. Atk.
-(30894, 4412, 11), -- Average P. Def.
-(30894, 4413, 11), -- Average M. Def.
-(30894, 4414, 2), -- Standard Type
-(30894, 4415, 3), -- One-handed Sword
-(30894, 4416, 18), -- Dwarves
+(30894, 4408, 1), -- HP Modifiers
+(30894, 4409, 1), -- MP Modifiers
+(30894, 4410, 11), -- P. Atk. Modifiers
+(30894, 4411, 11), -- M. Atk. Modifiers
+(30894, 4412, 11), -- P. Def. Modifiers
+(30894, 4413, 11), -- M. Def. Modifiers
+(30894, 4414, 2), -- Armor Type
+(30894, 4415, 3), -- Weapon Type
+(30894, 4416, 18), -- Races
 -- Kluck
 (30895, 4045, 1), -- Resist Full Magic Attack
-(30895, 4408, 1), -- HP Increase (1x)
-(30895, 4409, 1), -- MP Increase (1x)
-(30895, 4410, 11), -- Average P. Atk.
-(30895, 4411, 11), -- Average M. Atk.
-(30895, 4412, 11), -- Average P. Def.
-(30895, 4413, 11), -- Average M. Def.
-(30895, 4414, 2), -- Standard Type
-(30895, 4415, 3), -- One-handed Sword
-(30895, 4416, 18), -- Dwarves
+(30895, 4408, 1), -- HP Modifiers
+(30895, 4409, 1), -- MP Modifiers
+(30895, 4410, 11), -- P. Atk. Modifiers
+(30895, 4411, 11), -- M. Atk. Modifiers
+(30895, 4412, 11), -- P. Def. Modifiers
+(30895, 4413, 11), -- M. Def. Modifiers
+(30895, 4414, 2), -- Armor Type
+(30895, 4415, 3), -- Weapon Type
+(30895, 4416, 18), -- Races
 -- Mia
 (30896, 4045, 1), -- Resist Full Magic Attack
-(30896, 4408, 1), -- HP Increase (1x)
-(30896, 4409, 1), -- MP Increase (1x)
-(30896, 4410, 11), -- Average P. Atk.
-(30896, 4411, 11), -- Average M. Atk.
-(30896, 4412, 11), -- Average P. Def.
-(30896, 4413, 11), -- Average M. Def.
-(30896, 4414, 2), -- Standard Type
-(30896, 4415, 3), -- One-handed Sword
-(30896, 4416, 18), -- Dwarves
+(30896, 4408, 1), -- HP Modifiers
+(30896, 4409, 1), -- MP Modifiers
+(30896, 4410, 11), -- P. Atk. Modifiers
+(30896, 4411, 11), -- M. Atk. Modifiers
+(30896, 4412, 11), -- P. Def. Modifiers
+(30896, 4413, 11), -- M. Def. Modifiers
+(30896, 4414, 2), -- Armor Type
+(30896, 4415, 3), -- Weapon Type
+(30896, 4416, 18), -- Races
 -- Roman
 (30897, 4045, 1), -- Resist Full Magic Attack
-(30897, 4408, 1), -- HP Increase (1x)
-(30897, 4409, 1), -- MP Increase (1x)
-(30897, 4410, 11), -- Average P. Atk.
-(30897, 4411, 11), -- Average M. Atk.
-(30897, 4412, 11), -- Average P. Def.
-(30897, 4413, 11), -- Average M. Def.
-(30897, 4414, 2), -- Standard Type
-(30897, 4415, 3), -- One-handed Sword
-(30897, 4416, 18), -- Dwarves
+(30897, 4408, 1), -- HP Modifiers
+(30897, 4409, 1), -- MP Modifiers
+(30897, 4410, 11), -- P. Atk. Modifiers
+(30897, 4411, 11), -- M. Atk. Modifiers
+(30897, 4412, 11), -- P. Def. Modifiers
+(30897, 4413, 11), -- M. Def. Modifiers
+(30897, 4414, 2), -- Armor Type
+(30897, 4415, 3), -- Weapon Type
+(30897, 4416, 18), -- Races
 -- Morning
 (30898, 4045, 1), -- Resist Full Magic Attack
-(30898, 4408, 1), -- HP Increase (1x)
-(30898, 4409, 1), -- MP Increase (1x)
-(30898, 4410, 11), -- Average P. Atk.
-(30898, 4411, 11), -- Average M. Atk.
-(30898, 4412, 11), -- Average P. Def.
-(30898, 4413, 11), -- Average M. Def.
-(30898, 4414, 2), -- Standard Type
-(30898, 4415, 3), -- One-handed Sword
-(30898, 4416, 18), -- Dwarves
+(30898, 4408, 1), -- HP Modifiers
+(30898, 4409, 1), -- MP Modifiers
+(30898, 4410, 11), -- P. Atk. Modifiers
+(30898, 4411, 11), -- M. Atk. Modifiers
+(30898, 4412, 11), -- P. Def. Modifiers
+(30898, 4413, 11), -- M. Def. Modifiers
+(30898, 4414, 2), -- Armor Type
+(30898, 4415, 3), -- Weapon Type
+(30898, 4416, 18), -- Races
 -- Flauen
 (30899, 4045, 1), -- Resist Full Magic Attack
-(30899, 4408, 1), -- HP Increase (1x)
-(30899, 4409, 1), -- MP Increase (1x)
-(30899, 4410, 11), -- Average P. Atk.
-(30899, 4411, 11), -- Average M. Atk.
-(30899, 4412, 11), -- Average P. Def.
-(30899, 4413, 11), -- Average M. Def.
-(30899, 4414, 2), -- Standard Type
-(30899, 4415, 3), -- One-handed Sword
-(30899, 4416, 15), -- Elves
+(30899, 4408, 1), -- HP Modifiers
+(30899, 4409, 1), -- MP Modifiers
+(30899, 4410, 11), -- P. Atk. Modifiers
+(30899, 4411, 11), -- M. Atk. Modifiers
+(30899, 4412, 11), -- P. Def. Modifiers
+(30899, 4413, 11), -- M. Def. Modifiers
+(30899, 4414, 2), -- Armor Type
+(30899, 4415, 3), -- Weapon Type
+(30899, 4416, 15), -- Races
 -- Marcus
 (30900, 4045, 1), -- Resist Full Magic Attack
-(30900, 4408, 1), -- HP Increase (1x)
-(30900, 4409, 1), -- MP Increase (1x)
-(30900, 4410, 11), -- Average P. Atk.
-(30900, 4411, 11), -- Average M. Atk.
-(30900, 4412, 11), -- Average P. Def.
-(30900, 4413, 11), -- Average M. Def.
-(30900, 4414, 2), -- Standard Type
-(30900, 4415, 3), -- One-handed Sword
-(30900, 4416, 14), -- Humans
+(30900, 4408, 1), -- HP Modifiers
+(30900, 4409, 1), -- MP Modifiers
+(30900, 4410, 11), -- P. Atk. Modifiers
+(30900, 4411, 11), -- M. Atk. Modifiers
+(30900, 4412, 11), -- P. Def. Modifiers
+(30900, 4413, 11), -- M. Def. Modifiers
+(30900, 4414, 2), -- Armor Type
+(30900, 4415, 3), -- Weapon Type
+(30900, 4416, 14), -- Races
 -- Arti
 (30901, 4045, 1), -- Resist Full Magic Attack
-(30901, 4408, 1), -- HP Increase (1x)
-(30901, 4409, 1), -- MP Increase (1x)
-(30901, 4410, 11), -- Average P. Atk.
-(30901, 4411, 11), -- Average M. Atk.
-(30901, 4412, 11), -- Average P. Def.
-(30901, 4413, 11), -- Average M. Def.
-(30901, 4414, 2), -- Standard Type
-(30901, 4415, 3), -- One-handed Sword
-(30901, 4416, 14), -- Humans
+(30901, 4408, 1), -- HP Modifiers
+(30901, 4409, 1), -- MP Modifiers
+(30901, 4410, 11), -- P. Atk. Modifiers
+(30901, 4411, 11), -- M. Atk. Modifiers
+(30901, 4412, 11), -- P. Def. Modifiers
+(30901, 4413, 11), -- M. Def. Modifiers
+(30901, 4414, 2), -- Armor Type
+(30901, 4415, 3), -- Weapon Type
+(30901, 4416, 14), -- Races
 -- Karuna
 (30902, 4045, 1), -- Resist Full Magic Attack
-(30902, 4408, 1), -- HP Increase (1x)
-(30902, 4409, 1), -- MP Increase (1x)
-(30902, 4410, 11), -- Average P. Atk.
-(30902, 4411, 11), -- Average M. Atk.
-(30902, 4412, 11), -- Average P. Def.
-(30902, 4413, 11), -- Average M. Def.
-(30902, 4414, 2), -- Standard Type
-(30902, 4415, 3), -- One-handed Sword
-(30902, 4416, 14), -- Humans
+(30902, 4408, 1), -- HP Modifiers
+(30902, 4409, 1), -- MP Modifiers
+(30902, 4410, 11), -- P. Atk. Modifiers
+(30902, 4411, 11), -- M. Atk. Modifiers
+(30902, 4412, 11), -- P. Def. Modifiers
+(30902, 4413, 11), -- M. Def. Modifiers
+(30902, 4414, 2), -- Armor Type
+(30902, 4415, 3), -- Weapon Type
+(30902, 4416, 14), -- Races
 -- Traus
 (30903, 4045, 1), -- Resist Full Magic Attack
-(30903, 4408, 1), -- HP Increase (1x)
-(30903, 4409, 1), -- MP Increase (1x)
-(30903, 4410, 11), -- Average P. Atk.
-(30903, 4411, 11), -- Average M. Atk.
-(30903, 4412, 11), -- Average P. Def.
-(30903, 4413, 11), -- Average M. Def.
-(30903, 4414, 2), -- Standard Type
-(30903, 4415, 3), -- One-handed Sword
-(30903, 4416, 15), -- Elves
+(30903, 4408, 1), -- HP Modifiers
+(30903, 4409, 1), -- MP Modifiers
+(30903, 4410, 11), -- P. Atk. Modifiers
+(30903, 4411, 11), -- M. Atk. Modifiers
+(30903, 4412, 11), -- P. Def. Modifiers
+(30903, 4413, 11), -- M. Def. Modifiers
+(30903, 4414, 2), -- Armor Type
+(30903, 4415, 3), -- Weapon Type
+(30903, 4416, 15), -- Races
 -- Naiel
 (30904, 4045, 1), -- Resist Full Magic Attack
-(30904, 4408, 1), -- HP Increase (1x)
-(30904, 4409, 1), -- MP Increase (1x)
-(30904, 4410, 11), -- Average P. Atk.
-(30904, 4411, 11), -- Average M. Atk.
-(30904, 4412, 11), -- Average P. Def.
-(30904, 4413, 11), -- Average M. Def.
-(30904, 4414, 2), -- Standard Type
-(30904, 4415, 3), -- One-handed Sword
-(30904, 4416, 15), -- Elves
+(30904, 4408, 1), -- HP Modifiers
+(30904, 4409, 1), -- MP Modifiers
+(30904, 4410, 11), -- P. Atk. Modifiers
+(30904, 4411, 11), -- M. Atk. Modifiers
+(30904, 4412, 11), -- P. Def. Modifiers
+(30904, 4413, 11), -- M. Def. Modifiers
+(30904, 4414, 2), -- Armor Type
+(30904, 4415, 3), -- Weapon Type
+(30904, 4416, 15), -- Races
 -- Squillari
 (30905, 4045, 1), -- Resist Full Magic Attack
-(30905, 4408, 1), -- HP Increase (1x)
-(30905, 4409, 1), -- MP Increase (1x)
-(30905, 4410, 11), -- Average P. Atk.
-(30905, 4411, 11), -- Average M. Atk.
-(30905, 4412, 11), -- Average P. Def.
-(30905, 4413, 11), -- Average M. Def.
-(30905, 4414, 2), -- Standard Type
-(30905, 4415, 3), -- One-handed Sword
-(30905, 4416, 14), -- Humans
+(30905, 4408, 1), -- HP Modifiers
+(30905, 4409, 1), -- MP Modifiers
+(30905, 4410, 11), -- P. Atk. Modifiers
+(30905, 4411, 11), -- M. Atk. Modifiers
+(30905, 4412, 11), -- P. Def. Modifiers
+(30905, 4413, 11), -- M. Def. Modifiers
+(30905, 4414, 2), -- Armor Type
+(30905, 4415, 3), -- Weapon Type
+(30905, 4416, 14), -- Races
 -- Ranton
 (30906, 4045, 1), -- Resist Full Magic Attack
-(30906, 4408, 1), -- HP Increase (1x)
-(30906, 4409, 1), -- MP Increase (1x)
-(30906, 4410, 11), -- Average P. Atk.
-(30906, 4411, 11), -- Average M. Atk.
-(30906, 4412, 11), -- Average P. Def.
-(30906, 4413, 11), -- Average M. Def.
-(30906, 4414, 2), -- Standard Type
-(30906, 4415, 3), -- One-handed Sword
-(30906, 4416, 14), -- Humans
+(30906, 4408, 1), -- HP Modifiers
+(30906, 4409, 1), -- MP Modifiers
+(30906, 4410, 11), -- P. Atk. Modifiers
+(30906, 4411, 11), -- M. Atk. Modifiers
+(30906, 4412, 11), -- P. Def. Modifiers
+(30906, 4413, 11), -- M. Def. Modifiers
+(30906, 4414, 2), -- Armor Type
+(30906, 4415, 3), -- Weapon Type
+(30906, 4416, 14), -- Races
 -- Minevia
 (30907, 4045, 1), -- Resist Full Magic Attack
-(30907, 4408, 1), -- HP Increase (1x)
-(30907, 4409, 1), -- MP Increase (1x)
-(30907, 4410, 11), -- Average P. Atk.
-(30907, 4411, 11), -- Average M. Atk.
-(30907, 4412, 11), -- Average P. Def.
-(30907, 4413, 11), -- Average M. Def.
-(30907, 4414, 2), -- Standard Type
-(30907, 4415, 3), -- One-handed Sword
-(30907, 4416, 14), -- Humans
+(30907, 4408, 1), -- HP Modifiers
+(30907, 4409, 1), -- MP Modifiers
+(30907, 4410, 11), -- P. Atk. Modifiers
+(30907, 4411, 11), -- M. Atk. Modifiers
+(30907, 4412, 11), -- P. Def. Modifiers
+(30907, 4413, 11), -- M. Def. Modifiers
+(30907, 4414, 2), -- Armor Type
+(30907, 4415, 3), -- Weapon Type
+(30907, 4416, 14), -- Races
 -- Tanios
 (30908, 4045, 1), -- Resist Full Magic Attack
-(30908, 4408, 1), -- HP Increase (1x)
-(30908, 4409, 1), -- MP Increase (1x)
-(30908, 4410, 11), -- Average P. Atk.
-(30908, 4411, 11), -- Average M. Atk.
-(30908, 4412, 11), -- Average P. Def.
-(30908, 4413, 11), -- Average M. Def.
-(30908, 4414, 2), -- Standard Type
-(30908, 4415, 3), -- One-handed Sword
-(30908, 4416, 15), -- Elves
+(30908, 4408, 1), -- HP Modifiers
+(30908, 4409, 1), -- MP Modifiers
+(30908, 4410, 11), -- P. Atk. Modifiers
+(30908, 4411, 11), -- M. Atk. Modifiers
+(30908, 4412, 11), -- P. Def. Modifiers
+(30908, 4413, 11), -- M. Def. Modifiers
+(30908, 4414, 2), -- Armor Type
+(30908, 4415, 3), -- Weapon Type
+(30908, 4416, 15), -- Races
 -- Anabel
 (30909, 4045, 1), -- Resist Full Magic Attack
-(30909, 4408, 1), -- HP Increase (1x)
-(30909, 4409, 1), -- MP Increase (1x)
-(30909, 4410, 11), -- Average P. Atk.
-(30909, 4411, 11), -- Average M. Atk.
-(30909, 4412, 11), -- Average P. Def.
-(30909, 4413, 11), -- Average M. Def.
-(30909, 4414, 2), -- Standard Type
-(30909, 4415, 3), -- One-handed Sword
-(30909, 4416, 15), -- Elves
+(30909, 4408, 1), -- HP Modifiers
+(30909, 4409, 1), -- MP Modifiers
+(30909, 4410, 11), -- P. Atk. Modifiers
+(30909, 4411, 11), -- M. Atk. Modifiers
+(30909, 4412, 11), -- P. Def. Modifiers
+(30909, 4413, 11), -- M. Def. Modifiers
+(30909, 4414, 2), -- Armor Type
+(30909, 4415, 3), -- Weapon Type
+(30909, 4416, 15), -- Races
 -- Xairakin
 (30910, 4045, 1), -- Resist Full Magic Attack
-(30910, 4408, 1), -- HP Increase (1x)
-(30910, 4409, 1), -- MP Increase (1x)
-(30910, 4410, 11), -- Average P. Atk.
-(30910, 4411, 11), -- Average M. Atk.
-(30910, 4412, 11), -- Average P. Def.
-(30910, 4413, 11), -- Average M. Def.
-(30910, 4414, 2), -- Standard Type
-(30910, 4415, 3), -- One-handed Sword
-(30910, 4416, 16), -- Dark Elves
+(30910, 4408, 1), -- HP Modifiers
+(30910, 4409, 1), -- MP Modifiers
+(30910, 4410, 11), -- P. Atk. Modifiers
+(30910, 4411, 11), -- M. Atk. Modifiers
+(30910, 4412, 11), -- P. Def. Modifiers
+(30910, 4413, 11), -- M. Def. Modifiers
+(30910, 4414, 2), -- Armor Type
+(30910, 4415, 3), -- Weapon Type
+(30910, 4416, 16), -- Races
 -- Brikus
 (30911, 4045, 1), -- Resist Full Magic Attack
-(30911, 4408, 1), -- HP Increase (1x)
-(30911, 4409, 1), -- MP Increase (1x)
-(30911, 4410, 11), -- Average P. Atk.
-(30911, 4411, 11), -- Average M. Atk.
-(30911, 4412, 11), -- Average P. Def.
-(30911, 4413, 11), -- Average M. Def.
-(30911, 4414, 2), -- Standard Type
-(30911, 4415, 3), -- One-handed Sword
-(30911, 4416, 16), -- Dark Elves
+(30911, 4408, 1), -- HP Modifiers
+(30911, 4409, 1), -- MP Modifiers
+(30911, 4410, 11), -- P. Atk. Modifiers
+(30911, 4411, 11), -- M. Atk. Modifiers
+(30911, 4412, 11), -- P. Def. Modifiers
+(30911, 4413, 11), -- M. Def. Modifiers
+(30911, 4414, 2), -- Armor Type
+(30911, 4415, 3), -- Weapon Type
+(30911, 4416, 16), -- Races
 -- Xenovia
 (30912, 4045, 1), -- Resist Full Magic Attack
-(30912, 4408, 1), -- HP Increase (1x)
-(30912, 4409, 1), -- MP Increase (1x)
-(30912, 4410, 11), -- Average P. Atk.
-(30912, 4411, 11), -- Average M. Atk.
-(30912, 4412, 11), -- Average P. Def.
-(30912, 4413, 11), -- Average M. Def.
-(30912, 4414, 2), -- Standard Type
-(30912, 4415, 3), -- One-handed Sword
-(30912, 4416, 16), -- Dark Elves
+(30912, 4408, 1), -- HP Modifiers
+(30912, 4409, 1), -- MP Modifiers
+(30912, 4410, 11), -- P. Atk. Modifiers
+(30912, 4411, 11), -- M. Atk. Modifiers
+(30912, 4412, 11), -- P. Def. Modifiers
+(30912, 4413, 11), -- M. Def. Modifiers
+(30912, 4414, 2), -- Armor Type
+(30912, 4415, 3), -- Weapon Type
+(30912, 4416, 16), -- Races
 -- Tushku
 (30913, 4045, 1), -- Resist Full Magic Attack
-(30913, 4408, 1), -- HP Increase (1x)
-(30913, 4409, 1), -- MP Increase (1x)
-(30913, 4410, 11), -- Average P. Atk.
-(30913, 4411, 11), -- Average M. Atk.
-(30913, 4412, 11), -- Average P. Def.
-(30913, 4413, 11), -- Average M. Def.
-(30913, 4414, 2), -- Standard Type
-(30913, 4415, 3), -- One-handed Sword
-(30913, 4416, 17), -- Orcs
+(30913, 4408, 1), -- HP Modifiers
+(30913, 4409, 1), -- MP Modifiers
+(30913, 4410, 11), -- P. Atk. Modifiers
+(30913, 4411, 11), -- M. Atk. Modifiers
+(30913, 4412, 11), -- P. Def. Modifiers
+(30913, 4413, 11), -- M. Def. Modifiers
+(30913, 4414, 2), -- Armor Type
+(30913, 4415, 3), -- Weapon Type
+(30913, 4416, 17), -- Races
 -- Sorbo
 (30914, 4045, 1), -- Resist Full Magic Attack
-(30914, 4408, 1), -- HP Increase (1x)
-(30914, 4409, 1), -- MP Increase (1x)
-(30914, 4410, 11), -- Average P. Atk.
-(30914, 4411, 11), -- Average M. Atk.
-(30914, 4412, 11), -- Average P. Def.
-(30914, 4413, 11), -- Average M. Def.
-(30914, 4414, 2), -- Standard Type
-(30914, 4415, 3), -- One-handed Sword
-(30914, 4416, 17), -- Orcs
+(30914, 4408, 1), -- HP Modifiers
+(30914, 4409, 1), -- MP Modifiers
+(30914, 4410, 11), -- P. Atk. Modifiers
+(30914, 4411, 11), -- M. Atk. Modifiers
+(30914, 4412, 11), -- P. Def. Modifiers
+(30914, 4413, 11), -- M. Def. Modifiers
+(30914, 4414, 2), -- Armor Type
+(30914, 4415, 3), -- Weapon Type
+(30914, 4416, 17), -- Races
 -- Takina
 (30915, 4045, 1), -- Resist Full Magic Attack
-(30915, 4408, 1), -- HP Increase (1x)
-(30915, 4409, 1), -- MP Increase (1x)
-(30915, 4410, 11), -- Average P. Atk.
-(30915, 4411, 11), -- Average M. Atk.
-(30915, 4412, 11), -- Average P. Def.
-(30915, 4413, 11), -- Average M. Def.
-(30915, 4414, 2), -- Standard Type
-(30915, 4415, 3), -- One-handed Sword
-(30915, 4416, 17), -- Orcs
+(30915, 4408, 1), -- HP Modifiers
+(30915, 4409, 1), -- MP Modifiers
+(30915, 4410, 11), -- P. Atk. Modifiers
+(30915, 4411, 11), -- M. Atk. Modifiers
+(30915, 4412, 11), -- P. Def. Modifiers
+(30915, 4413, 11), -- M. Def. Modifiers
+(30915, 4414, 2), -- Armor Type
+(30915, 4415, 3), -- Weapon Type
+(30915, 4416, 17), -- Races
 -- Gosta
 (30916, 4045, 1), -- Resist Full Magic Attack
-(30916, 4408, 1), -- HP Increase (1x)
-(30916, 4409, 1), -- MP Increase (1x)
-(30916, 4410, 16), -- Very Strong P. Atk.
-(30916, 4411, 16), -- Very Strong M. Atk.
-(30916, 4412, 16), -- Very Strong P. Def.
-(30916, 4413, 16), -- Very Strong M. Def.
-(30916, 4414, 2), -- Standard Type
-(30916, 4415, 3), -- One-handed Sword
-(30916, 4416, 14), -- Humans
+(30916, 4408, 1), -- HP Modifiers
+(30916, 4409, 1), -- MP Modifiers
+(30916, 4410, 16), -- P. Atk. Modifiers
+(30916, 4411, 16), -- M. Atk. Modifiers
+(30916, 4412, 16), -- P. Def. Modifiers
+(30916, 4413, 16), -- M. Def. Modifiers
+(30916, 4414, 2), -- Armor Type
+(30916, 4415, 3), -- Weapon Type
+(30916, 4416, 14), -- Races
 -- Dupuis
 (30917, 4045, 1), -- Resist Full Magic Attack
-(30917, 4408, 1), -- HP Increase (1x)
-(30917, 4409, 1), -- MP Increase (1x)
-(30917, 4410, 16), -- Very Strong P. Atk.
-(30917, 4411, 16), -- Very Strong M. Atk.
-(30917, 4412, 16), -- Very Strong P. Def.
-(30917, 4413, 16), -- Very Strong M. Def.
-(30917, 4414, 2), -- Standard Type
-(30917, 4415, 9), -- Bows
-(30917, 4416, 14), -- Humans
+(30917, 4408, 1), -- HP Modifiers
+(30917, 4409, 1), -- MP Modifiers
+(30917, 4410, 16), -- P. Atk. Modifiers
+(30917, 4411, 16), -- M. Atk. Modifiers
+(30917, 4412, 16), -- P. Def. Modifiers
+(30917, 4413, 16), -- M. Def. Modifiers
+(30917, 4414, 2), -- Armor Type
+(30917, 4415, 9), -- Weapon Type
+(30917, 4416, 14), -- Races
 -- Kent
 (30918, 4045, 1), -- Resist Full Magic Attack
-(30918, 4408, 1), -- HP Increase (1x)
-(30918, 4409, 1), -- MP Increase (1x)
-(30918, 4410, 16), -- Very Strong P. Atk.
-(30918, 4411, 16), -- Very Strong M. Atk.
-(30918, 4412, 16), -- Very Strong P. Def.
-(30918, 4413, 16), -- Very Strong M. Def.
-(30918, 4414, 2), -- Standard Type
-(30918, 4415, 3), -- One-handed Sword
-(30918, 4416, 14), -- Humans
+(30918, 4408, 1), -- HP Modifiers
+(30918, 4409, 1), -- MP Modifiers
+(30918, 4410, 16), -- P. Atk. Modifiers
+(30918, 4411, 16), -- M. Atk. Modifiers
+(30918, 4412, 16), -- P. Def. Modifiers
+(30918, 4413, 16), -- M. Def. Modifiers
+(30918, 4414, 2), -- Armor Type
+(30918, 4415, 3), -- Weapon Type
+(30918, 4416, 14), -- Races
 -- Rodic
 (30919, 4045, 1), -- Resist Full Magic Attack
-(30919, 4408, 1), -- HP Increase (1x)
-(30919, 4409, 1), -- MP Increase (1x)
-(30919, 4410, 16), -- Very Strong P. Atk.
-(30919, 4411, 16), -- Very Strong M. Atk.
-(30919, 4412, 16), -- Very Strong P. Def.
-(30919, 4413, 16), -- Very Strong M. Def.
-(30919, 4414, 2), -- Standard Type
-(30919, 4415, 9), -- Bows
-(30919, 4416, 14), -- Humans
+(30919, 4408, 1), -- HP Modifiers
+(30919, 4409, 1), -- MP Modifiers
+(30919, 4410, 16), -- P. Atk. Modifiers
+(30919, 4411, 16), -- M. Atk. Modifiers
+(30919, 4412, 16), -- P. Def. Modifiers
+(30919, 4413, 16), -- M. Def. Modifiers
+(30919, 4414, 2), -- Armor Type
+(30919, 4415, 9), -- Weapon Type
+(30919, 4416, 14), -- Races
 -- Kraisen
 (30920, 4045, 1), -- Resist Full Magic Attack
-(30920, 4408, 1), -- HP Increase (1x)
-(30920, 4409, 1), -- MP Increase (1x)
-(30920, 4410, 16), -- Very Strong P. Atk.
-(30920, 4411, 16), -- Very Strong M. Atk.
-(30920, 4412, 16), -- Very Strong P. Def.
-(30920, 4413, 16), -- Very Strong M. Def.
-(30920, 4414, 2), -- Standard Type
-(30920, 4415, 3), -- One-handed Sword
-(30920, 4416, 14), -- Humans
+(30920, 4408, 1), -- HP Modifiers
+(30920, 4409, 1), -- MP Modifiers
+(30920, 4410, 16), -- P. Atk. Modifiers
+(30920, 4411, 16), -- M. Atk. Modifiers
+(30920, 4412, 16), -- P. Def. Modifiers
+(30920, 4413, 16), -- M. Def. Modifiers
+(30920, 4414, 2), -- Armor Type
+(30920, 4415, 3), -- Weapon Type
+(30920, 4416, 14), -- Races
 -- Timos
 (30921, 4045, 1), -- Resist Full Magic Attack
-(30921, 4408, 1), -- HP Increase (1x)
-(30921, 4409, 1), -- MP Increase (1x)
-(30921, 4410, 16), -- Very Strong P. Atk.
-(30921, 4411, 16), -- Very Strong M. Atk.
-(30921, 4412, 16), -- Very Strong P. Def.
-(30921, 4413, 16), -- Very Strong M. Def.
-(30921, 4414, 2), -- Standard Type
-(30921, 4415, 9), -- Bows
-(30921, 4416, 14), -- Humans
+(30921, 4408, 1), -- HP Modifiers
+(30921, 4409, 1), -- MP Modifiers
+(30921, 4410, 16), -- P. Atk. Modifiers
+(30921, 4411, 16), -- M. Atk. Modifiers
+(30921, 4412, 16), -- P. Def. Modifiers
+(30921, 4413, 16), -- M. Def. Modifiers
+(30921, 4414, 2), -- Armor Type
+(30921, 4415, 9), -- Weapon Type
+(30921, 4416, 14), -- Races
 -- Cage
 (30922, 4045, 1), -- Resist Full Magic Attack
-(30922, 4408, 1), -- HP Increase (1x)
-(30922, 4409, 1), -- MP Increase (1x)
-(30922, 4410, 16), -- Very Strong P. Atk.
-(30922, 4411, 16), -- Very Strong M. Atk.
-(30922, 4412, 16), -- Very Strong P. Def.
-(30922, 4413, 16), -- Very Strong M. Def.
-(30922, 4414, 2), -- Standard Type
-(30922, 4415, 3), -- One-handed Sword
-(30922, 4416, 14), -- Humans
+(30922, 4408, 1), -- HP Modifiers
+(30922, 4409, 1), -- MP Modifiers
+(30922, 4410, 16), -- P. Atk. Modifiers
+(30922, 4411, 16), -- M. Atk. Modifiers
+(30922, 4412, 16), -- P. Def. Modifiers
+(30922, 4413, 16), -- M. Def. Modifiers
+(30922, 4414, 2), -- Armor Type
+(30922, 4415, 3), -- Weapon Type
+(30922, 4416, 14), -- Races
 -- Dunst
 (30923, 4045, 1), -- Resist Full Magic Attack
-(30923, 4408, 1), -- HP Increase (1x)
-(30923, 4409, 1), -- MP Increase (1x)
-(30923, 4410, 16), -- Very Strong P. Atk.
-(30923, 4411, 16), -- Very Strong M. Atk.
-(30923, 4412, 16), -- Very Strong P. Def.
-(30923, 4413, 16), -- Very Strong M. Def.
-(30923, 4414, 2), -- Standard Type
-(30923, 4415, 9), -- Bows
-(30923, 4416, 14), -- Humans
+(30923, 4408, 1), -- HP Modifiers
+(30923, 4409, 1), -- MP Modifiers
+(30923, 4410, 16), -- P. Atk. Modifiers
+(30923, 4411, 16), -- M. Atk. Modifiers
+(30923, 4412, 16), -- P. Def. Modifiers
+(30923, 4413, 16), -- M. Def. Modifiers
+(30923, 4414, 2), -- Armor Type
+(30923, 4415, 9), -- Weapon Type
+(30923, 4416, 14), -- Races
 -- Nedy
 (30924, 4045, 1), -- Resist Full Magic Attack
-(30924, 4408, 1), -- HP Increase (1x)
-(30924, 4409, 1), -- MP Increase (1x)
-(30924, 4410, 11), -- Average P. Atk.
-(30924, 4411, 11), -- Average M. Atk.
-(30924, 4412, 11), -- Average P. Def.
-(30924, 4413, 11), -- Average M. Def.
-(30924, 4414, 2), -- Standard Type
-(30924, 4415, 3), -- One-handed Sword
-(30924, 4416, 14), -- Humans
+(30924, 4408, 1), -- HP Modifiers
+(30924, 4409, 1), -- MP Modifiers
+(30924, 4410, 11), -- P. Atk. Modifiers
+(30924, 4411, 11), -- M. Atk. Modifiers
+(30924, 4412, 11), -- P. Def. Modifiers
+(30924, 4413, 11), -- M. Def. Modifiers
+(30924, 4414, 2), -- Armor Type
+(30924, 4415, 3), -- Weapon Type
+(30924, 4416, 14), -- Races
 -- Morelyn
 (30925, 4045, 1), -- Resist Full Magic Attack
-(30925, 4408, 1), -- HP Increase (1x)
-(30925, 4409, 1), -- MP Increase (1x)
-(30925, 4410, 11), -- Average P. Atk.
-(30925, 4411, 11), -- Average M. Atk.
-(30925, 4412, 11), -- Average P. Def.
-(30925, 4413, 11), -- Average M. Def.
-(30925, 4414, 2), -- Standard Type
-(30925, 4415, 3), -- One-handed Sword
-(30925, 4416, 15), -- Elves
+(30925, 4408, 1), -- HP Modifiers
+(30925, 4409, 1), -- MP Modifiers
+(30925, 4410, 11), -- P. Atk. Modifiers
+(30925, 4411, 11), -- M. Atk. Modifiers
+(30925, 4412, 11), -- P. Def. Modifiers
+(30925, 4413, 11), -- M. Def. Modifiers
+(30925, 4414, 2), -- Armor Type
+(30925, 4415, 3), -- Weapon Type
+(30925, 4416, 15), -- Races
 -- Restina
 (30926, 4045, 1), -- Resist Full Magic Attack
-(30926, 4408, 1), -- HP Increase (1x)
-(30926, 4409, 1), -- MP Increase (1x)
-(30926, 4410, 11), -- Average P. Atk.
-(30926, 4411, 11), -- Average M. Atk.
-(30926, 4412, 11), -- Average P. Def.
-(30926, 4413, 11), -- Average M. Def.
-(30926, 4414, 2), -- Standard Type
-(30926, 4415, 3), -- One-handed Sword
-(30926, 4416, 15), -- Elves
+(30926, 4408, 1), -- HP Modifiers
+(30926, 4409, 1), -- MP Modifiers
+(30926, 4410, 11), -- P. Atk. Modifiers
+(30926, 4411, 11), -- M. Atk. Modifiers
+(30926, 4412, 11), -- P. Def. Modifiers
+(30926, 4413, 11), -- M. Def. Modifiers
+(30926, 4414, 2), -- Armor Type
+(30926, 4415, 3), -- Weapon Type
+(30926, 4416, 15), -- Races
 -- Alicia
 (30927, 4045, 1), -- Resist Full Magic Attack
-(30927, 4408, 1), -- HP Increase (1x)
-(30927, 4409, 1), -- MP Increase (1x)
-(30927, 4410, 11), -- Average P. Atk.
-(30927, 4411, 11), -- Average M. Atk.
-(30927, 4412, 11), -- Average P. Def.
-(30927, 4413, 11), -- Average M. Def.
-(30927, 4414, 2), -- Standard Type
-(30927, 4415, 3), -- One-handed Sword
-(30927, 4416, 14), -- Humans
+(30927, 4408, 1), -- HP Modifiers
+(30927, 4409, 1), -- MP Modifiers
+(30927, 4410, 11), -- P. Atk. Modifiers
+(30927, 4411, 11), -- M. Atk. Modifiers
+(30927, 4412, 11), -- P. Def. Modifiers
+(30927, 4413, 11), -- M. Def. Modifiers
+(30927, 4414, 2), -- Armor Type
+(30927, 4415, 3), -- Weapon Type
+(30927, 4416, 14), -- Races
 -- Fenster
 (30928, 4045, 1), -- Resist Full Magic Attack
-(30928, 4408, 1), -- HP Increase (1x)
-(30928, 4409, 1), -- MP Increase (1x)
-(30928, 4410, 11), -- Average P. Atk.
-(30928, 4411, 11), -- Average M. Atk.
-(30928, 4412, 11), -- Average P. Def.
-(30928, 4413, 11), -- Average M. Def.
-(30928, 4414, 2), -- Standard Type
-(30928, 4415, 3), -- One-handed Sword
-(30928, 4416, 18), -- Dwarves
+(30928, 4408, 1), -- HP Modifiers
+(30928, 4409, 1), -- MP Modifiers
+(30928, 4410, 11), -- P. Atk. Modifiers
+(30928, 4411, 11), -- M. Atk. Modifiers
+(30928, 4412, 11), -- P. Def. Modifiers
+(30928, 4413, 11), -- M. Def. Modifiers
+(30928, 4414, 2), -- Armor Type
+(30928, 4415, 3), -- Weapon Type
+(30928, 4416, 18), -- Races
 -- Patrin
 (30929, 4045, 1), -- Resist Full Magic Attack
-(30929, 4408, 1), -- HP Increase (1x)
-(30929, 4409, 1), -- MP Increase (1x)
-(30929, 4410, 11), -- Average P. Atk.
-(30929, 4411, 11), -- Average M. Atk.
-(30929, 4412, 11), -- Average P. Def.
-(30929, 4413, 11), -- Average M. Def.
-(30929, 4414, 2), -- Standard Type
-(30929, 4415, 3), -- One-handed Sword
-(30929, 4416, 18), -- Dwarves
+(30929, 4408, 1), -- HP Modifiers
+(30929, 4409, 1), -- MP Modifiers
+(30929, 4410, 11), -- P. Atk. Modifiers
+(30929, 4411, 11), -- M. Atk. Modifiers
+(30929, 4412, 11), -- P. Def. Modifiers
+(30929, 4413, 11), -- M. Def. Modifiers
+(30929, 4414, 2), -- Armor Type
+(30929, 4415, 3), -- Weapon Type
+(30929, 4416, 18), -- Races
 -- Rogent
 (30930, 4045, 1), -- Resist Full Magic Attack
-(30930, 4408, 1), -- HP Increase (1x)
-(30930, 4409, 1), -- MP Increase (1x)
-(30930, 4410, 11), -- Average P. Atk.
-(30930, 4411, 11), -- Average M. Atk.
-(30930, 4412, 11), -- Average P. Def.
-(30930, 4413, 11), -- Average M. Def.
-(30930, 4414, 2), -- Standard Type
-(30930, 4415, 3), -- One-handed Sword
-(30930, 4416, 18), -- Dwarves
+(30930, 4408, 1), -- HP Modifiers
+(30930, 4409, 1), -- MP Modifiers
+(30930, 4410, 11), -- P. Atk. Modifiers
+(30930, 4411, 11), -- M. Atk. Modifiers
+(30930, 4412, 11), -- P. Def. Modifiers
+(30930, 4413, 11), -- M. Def. Modifiers
+(30930, 4414, 2), -- Armor Type
+(30930, 4415, 3), -- Weapon Type
+(30930, 4416, 18), -- Races
 -- Bentley
 (30931, 4045, 1), -- Resist Full Magic Attack
-(30931, 4408, 1), -- HP Increase (1x)
-(30931, 4409, 1), -- MP Increase (1x)
-(30931, 4410, 11), -- Average P. Atk.
-(30931, 4411, 11), -- Average M. Atk.
-(30931, 4412, 11), -- Average P. Def.
-(30931, 4413, 11), -- Average M. Def.
-(30931, 4414, 2), -- Standard Type
-(30931, 4415, 3), -- One-handed Sword
-(30931, 4416, 18), -- Dwarves
+(30931, 4408, 1), -- HP Modifiers
+(30931, 4409, 1), -- MP Modifiers
+(30931, 4410, 11), -- P. Atk. Modifiers
+(30931, 4411, 11), -- M. Atk. Modifiers
+(30931, 4412, 11), -- P. Def. Modifiers
+(30931, 4413, 11), -- M. Def. Modifiers
+(30931, 4414, 2), -- Armor Type
+(30931, 4415, 3), -- Weapon Type
+(30931, 4416, 18), -- Races
 -- Benica
 (30932, 4045, 1), -- Resist Full Magic Attack
-(30932, 4408, 1), -- HP Increase (1x)
-(30932, 4409, 1), -- MP Increase (1x)
-(30932, 4410, 11), -- Average P. Atk.
-(30932, 4411, 11), -- Average M. Atk.
-(30932, 4412, 11), -- Average P. Def.
-(30932, 4413, 11), -- Average M. Def.
-(30932, 4414, 2), -- Standard Type
-(30932, 4415, 3), -- One-handed Sword
-(30932, 4416, 18), -- Dwarves
+(30932, 4408, 1), -- HP Modifiers
+(30932, 4409, 1), -- MP Modifiers
+(30932, 4410, 11), -- P. Atk. Modifiers
+(30932, 4411, 11), -- M. Atk. Modifiers
+(30932, 4412, 11), -- P. Def. Modifiers
+(30932, 4413, 11), -- M. Def. Modifiers
+(30932, 4414, 2), -- Armor Type
+(30932, 4415, 3), -- Weapon Type
+(30932, 4416, 18), -- Races
 -- Braki
 (30933, 4045, 1), -- Resist Full Magic Attack
-(30933, 4408, 1), -- HP Increase (1x)
-(30933, 4409, 1), -- MP Increase (1x)
-(30933, 4410, 11), -- Average P. Atk.
-(30933, 4411, 11), -- Average M. Atk.
-(30933, 4412, 11), -- Average P. Def.
-(30933, 4413, 11), -- Average M. Def.
-(30933, 4414, 2), -- Standard Type
-(30933, 4415, 3), -- One-handed Sword
-(30933, 4416, 18), -- Dwarves
+(30933, 4408, 1), -- HP Modifiers
+(30933, 4409, 1), -- MP Modifiers
+(30933, 4410, 11), -- P. Atk. Modifiers
+(30933, 4411, 11), -- M. Atk. Modifiers
+(30933, 4412, 11), -- P. Def. Modifiers
+(30933, 4413, 11), -- M. Def. Modifiers
+(30933, 4414, 2), -- Armor Type
+(30933, 4415, 3), -- Weapon Type
+(30933, 4416, 18), -- Races
 -- Marsha
 (30934, 4045, 1), -- Resist Full Magic Attack
-(30934, 4408, 1), -- HP Increase (1x)
-(30934, 4409, 1), -- MP Increase (1x)
-(30934, 4410, 11), -- Average P. Atk.
-(30934, 4411, 11), -- Average M. Atk.
-(30934, 4412, 11), -- Average P. Def.
-(30934, 4413, 11), -- Average M. Def.
-(30934, 4414, 2), -- Standard Type
-(30934, 4415, 3), -- One-handed Sword
-(30934, 4416, 18), -- Dwarves
+(30934, 4408, 1), -- HP Modifiers
+(30934, 4409, 1), -- MP Modifiers
+(30934, 4410, 11), -- P. Atk. Modifiers
+(30934, 4411, 11), -- M. Atk. Modifiers
+(30934, 4412, 11), -- P. Def. Modifiers
+(30934, 4413, 11), -- M. Def. Modifiers
+(30934, 4414, 2), -- Armor Type
+(30934, 4415, 3), -- Weapon Type
+(30934, 4416, 18), -- Races
 -- Trumpin
 (30935, 4045, 1), -- Resist Full Magic Attack
-(30935, 4408, 1), -- HP Increase (1x)
-(30935, 4409, 1), -- MP Increase (1x)
-(30935, 4410, 11), -- Average P. Atk.
-(30935, 4411, 11), -- Average M. Atk.
-(30935, 4412, 11), -- Average P. Def.
-(30935, 4413, 11), -- Average M. Def.
-(30935, 4414, 2), -- Standard Type
-(30935, 4415, 3), -- One-handed Sword
-(30935, 4416, 18), -- Dwarves
+(30935, 4408, 1), -- HP Modifiers
+(30935, 4409, 1), -- MP Modifiers
+(30935, 4410, 11), -- P. Atk. Modifiers
+(30935, 4411, 11), -- M. Atk. Modifiers
+(30935, 4412, 11), -- P. Def. Modifiers
+(30935, 4413, 11), -- M. Def. Modifiers
+(30935, 4414, 2), -- Armor Type
+(30935, 4415, 3), -- Weapon Type
+(30935, 4416, 18), -- Races
 -- Malcom1
 (30936, 4045, 1), -- Resist Full Magic Attack
-(30936, 4408, 1), -- HP Increase (1x)
-(30936, 4409, 1), -- MP Increase (1x)
-(30936, 4410, 11), -- Average P. Atk.
-(30936, 4411, 11), -- Average M. Atk.
-(30936, 4412, 11), -- Average P. Def.
-(30936, 4413, 11), -- Average M. Def.
-(30936, 4414, 2), -- Standard Type
-(30936, 4415, 3), -- One-handed Sword
-(30936, 4416, 4), -- Animals
+(30936, 4408, 1), -- HP Modifiers
+(30936, 4409, 1), -- MP Modifiers
+(30936, 4410, 11), -- P. Atk. Modifiers
+(30936, 4411, 11), -- M. Atk. Modifiers
+(30936, 4412, 11), -- P. Def. Modifiers
+(30936, 4413, 11), -- M. Def. Modifiers
+(30936, 4414, 2), -- Armor Type
+(30936, 4415, 3), -- Weapon Type
+(30936, 4416, 4), -- Races
 -- Malcom2
 (30937, 4045, 1), -- Resist Full Magic Attack
-(30937, 4408, 1), -- HP Increase (1x)
-(30937, 4409, 1), -- MP Increase (1x)
-(30937, 4410, 11), -- Average P. Atk.
-(30937, 4411, 11), -- Average M. Atk.
-(30937, 4412, 11), -- Average P. Def.
-(30937, 4413, 11), -- Average M. Def.
-(30937, 4414, 2), -- Standard Type
-(30937, 4415, 3), -- One-handed Sword
-(30937, 4416, 4), -- Animals
+(30937, 4408, 1), -- HP Modifiers
+(30937, 4409, 1), -- MP Modifiers
+(30937, 4410, 11), -- P. Atk. Modifiers
+(30937, 4411, 11), -- M. Atk. Modifiers
+(30937, 4412, 11), -- P. Def. Modifiers
+(30937, 4413, 11), -- M. Def. Modifiers
+(30937, 4414, 2), -- Armor Type
+(30937, 4415, 3), -- Weapon Type
+(30937, 4416, 4), -- Races
 -- Malcom3
 (30938, 4045, 1), -- Resist Full Magic Attack
-(30938, 4408, 1), -- HP Increase (1x)
-(30938, 4409, 1), -- MP Increase (1x)
-(30938, 4410, 11), -- Average P. Atk.
-(30938, 4411, 11), -- Average M. Atk.
-(30938, 4412, 11), -- Average P. Def.
-(30938, 4413, 11), -- Average M. Def.
-(30938, 4414, 2), -- Standard Type
-(30938, 4415, 3), -- One-handed Sword
-(30938, 4416, 6), -- Humanoids
+(30938, 4408, 1), -- HP Modifiers
+(30938, 4409, 1), -- MP Modifiers
+(30938, 4410, 11), -- P. Atk. Modifiers
+(30938, 4411, 11), -- M. Atk. Modifiers
+(30938, 4412, 11), -- P. Def. Modifiers
+(30938, 4413, 11), -- M. Def. Modifiers
+(30938, 4414, 2), -- Armor Type
+(30938, 4415, 3), -- Weapon Type
+(30938, 4416, 6), -- Races
 -- Malcom4
 (30939, 4045, 1), -- Resist Full Magic Attack
-(30939, 4408, 1), -- HP Increase (1x)
-(30939, 4409, 1), -- MP Increase (1x)
-(30939, 4410, 11), -- Average P. Atk.
-(30939, 4411, 11), -- Average M. Atk.
-(30939, 4412, 11), -- Average P. Def.
-(30939, 4413, 11), -- Average M. Def.
-(30939, 4414, 2), -- Standard Type
-(30939, 4415, 3), -- One-handed Sword
-(30939, 4416, 1), -- Undead
+(30939, 4408, 1), -- HP Modifiers
+(30939, 4409, 1), -- MP Modifiers
+(30939, 4410, 11), -- P. Atk. Modifiers
+(30939, 4411, 11), -- M. Atk. Modifiers
+(30939, 4412, 11), -- P. Def. Modifiers
+(30939, 4413, 11), -- M. Def. Modifiers
+(30939, 4414, 2), -- Armor Type
+(30939, 4415, 3), -- Weapon Type
+(30939, 4416, 1), -- Races
 -- Malcom5
 (30940, 4045, 1), -- Resist Full Magic Attack
-(30940, 4408, 1), -- HP Increase (1x)
-(30940, 4409, 1), -- MP Increase (1x)
-(30940, 4410, 11), -- Average P. Atk.
-(30940, 4411, 11), -- Average M. Atk.
-(30940, 4412, 11), -- Average P. Def.
-(30940, 4413, 11), -- Average M. Def.
-(30940, 4414, 2), -- Standard Type
-(30940, 4415, 3), -- One-handed Sword
-(30940, 4416, 13), -- Fairies
+(30940, 4408, 1), -- HP Modifiers
+(30940, 4409, 1), -- MP Modifiers
+(30940, 4410, 11), -- P. Atk. Modifiers
+(30940, 4411, 11), -- M. Atk. Modifiers
+(30940, 4412, 11), -- P. Def. Modifiers
+(30940, 4413, 11), -- M. Def. Modifiers
+(30940, 4414, 2), -- Armor Type
+(30940, 4415, 3), -- Weapon Type
+(30940, 4416, 13), -- Races
 -- Malcom6
 (30941, 4045, 1), -- Resist Full Magic Attack
-(30941, 4408, 1), -- HP Increase (1x)
-(30941, 4409, 1), -- MP Increase (1x)
-(30941, 4410, 11), -- Average P. Atk.
-(30941, 4411, 11), -- Average M. Atk.
-(30941, 4412, 11), -- Average P. Def.
-(30941, 4413, 11), -- Average M. Def.
-(30941, 4414, 2), -- Standard Type
-(30941, 4415, 3), -- One-handed Sword
-(30941, 4416, 3), -- Beasts
+(30941, 4408, 1), -- HP Modifiers
+(30941, 4409, 1), -- MP Modifiers
+(30941, 4410, 11), -- P. Atk. Modifiers
+(30941, 4411, 11), -- M. Atk. Modifiers
+(30941, 4412, 11), -- P. Def. Modifiers
+(30941, 4413, 11), -- M. Def. Modifiers
+(30941, 4414, 2), -- Armor Type
+(30941, 4415, 3), -- Weapon Type
+(30941, 4416, 3), -- Races
 -- Malcom7
 (30942, 4045, 1), -- Resist Full Magic Attack
-(30942, 4390, 1), -- Mystic Immunity
-(30942, 4408, 1), -- HP Increase (1x)
-(30942, 4409, 1), -- MP Increase (1x)
-(30942, 4410, 11), -- Average P. Atk.
-(30942, 4411, 11), -- Average M. Atk.
-(30942, 4412, 11), -- Average P. Def.
-(30942, 4413, 11), -- Average M. Def.
-(30942, 4414, 2), -- Standard Type
-(30942, 4415, 3), -- One-handed Sword
-(30942, 4416, 2), -- Magic Creatures
+(30942, 4390, 1), -- NPC Abnormal Immunity
+(30942, 4408, 1), -- HP Modifiers
+(30942, 4409, 1), -- MP Modifiers
+(30942, 4410, 11), -- P. Atk. Modifiers
+(30942, 4411, 11), -- M. Atk. Modifiers
+(30942, 4412, 11), -- P. Def. Modifiers
+(30942, 4413, 11), -- M. Def. Modifiers
+(30942, 4414, 2), -- Armor Type
+(30942, 4415, 3), -- Weapon Type
+(30942, 4416, 2), -- Races
 -- Malcom8
 (30943, 4045, 1), -- Resist Full Magic Attack
-(30943, 4408, 1), -- HP Increase (1x)
-(30943, 4409, 1), -- MP Increase (1x)
-(30943, 4410, 11), -- Average P. Atk.
-(30943, 4411, 11), -- Average M. Atk.
-(30943, 4412, 11), -- Average P. Def.
-(30943, 4413, 11), -- Average M. Def.
-(30943, 4414, 2), -- Standard Type
-(30943, 4415, 3), -- One-handed Sword
-(30943, 4416, 4), -- Animals
+(30943, 4408, 1), -- HP Modifiers
+(30943, 4409, 1), -- MP Modifiers
+(30943, 4410, 11), -- P. Atk. Modifiers
+(30943, 4411, 11), -- M. Atk. Modifiers
+(30943, 4412, 11), -- P. Def. Modifiers
+(30943, 4413, 11), -- M. Def. Modifiers
+(30943, 4414, 2), -- Armor Type
+(30943, 4415, 3), -- Weapon Type
+(30943, 4416, 4), -- Races
 -- Malcom9
 (30944, 4045, 1), -- Resist Full Magic Attack
-(30944, 4408, 1), -- HP Increase (1x)
-(30944, 4409, 1), -- MP Increase (1x)
-(30944, 4410, 11), -- Average P. Atk.
-(30944, 4411, 11), -- Average M. Atk.
-(30944, 4412, 11), -- Average P. Def.
-(30944, 4413, 11), -- Average M. Def.
-(30944, 4414, 2), -- Standard Type
-(30944, 4415, 3), -- One-handed Sword
-(30944, 4416, 14), -- Humans
+(30944, 4408, 1), -- HP Modifiers
+(30944, 4409, 1), -- MP Modifiers
+(30944, 4410, 11), -- P. Atk. Modifiers
+(30944, 4411, 11), -- M. Atk. Modifiers
+(30944, 4412, 11), -- P. Def. Modifiers
+(30944, 4413, 11), -- M. Def. Modifiers
+(30944, 4414, 2), -- Armor Type
+(30944, 4415, 3), -- Weapon Type
+(30944, 4416, 14), -- Races
 -- Malcom10
 (30945, 4045, 1), -- Resist Full Magic Attack
-(30945, 4408, 1), -- HP Increase (1x)
-(30945, 4409, 1), -- MP Increase (1x)
-(30945, 4410, 11), -- Average P. Atk.
-(30945, 4411, 11), -- Average M. Atk.
-(30945, 4412, 11), -- Average P. Def.
-(30945, 4413, 11), -- Average M. Def.
-(30945, 4414, 2), -- Standard Type
-(30945, 4415, 3), -- One-handed Sword
-(30945, 4416, 18), -- Dwarves
+(30945, 4408, 1), -- HP Modifiers
+(30945, 4409, 1), -- MP Modifiers
+(30945, 4410, 11), -- P. Atk. Modifiers
+(30945, 4411, 11), -- M. Atk. Modifiers
+(30945, 4412, 11), -- P. Def. Modifiers
+(30945, 4413, 11), -- M. Def. Modifiers
+(30945, 4414, 2), -- Armor Type
+(30945, 4415, 3), -- Weapon Type
+(30945, 4416, 18), -- Races
 -- Lucianne Tanford
 (30946, 4045, 1), -- Resist Full Magic Attack
-(30946, 4408, 1), -- HP Increase (1x)
-(30946, 4409, 1), -- MP Increase (1x)
-(30946, 4410, 11), -- Average P. Atk.
-(30946, 4411, 11), -- Average M. Atk.
-(30946, 4412, 11), -- Average P. Def.
-(30946, 4413, 11), -- Average M. Def.
-(30946, 4414, 2), -- Standard Type
-(30946, 4415, 3), -- One-handed Sword
-(30946, 4416, 14), -- Humans
+(30946, 4408, 1), -- HP Modifiers
+(30946, 4409, 1), -- MP Modifiers
+(30946, 4410, 11), -- P. Atk. Modifiers
+(30946, 4411, 11), -- M. Atk. Modifiers
+(30946, 4412, 11), -- P. Def. Modifiers
+(30946, 4413, 11), -- M. Def. Modifiers
+(30946, 4414, 2), -- Armor Type
+(30946, 4415, 3), -- Weapon Type
+(30946, 4416, 14), -- Races
 -- Rerikya
 (30947, 4045, 1), -- Resist Full Magic Attack
-(30947, 4408, 1), -- HP Increase (1x)
-(30947, 4409, 1), -- MP Increase (1x)
-(30947, 4410, 11), -- Average P. Atk.
-(30947, 4411, 11), -- Average M. Atk.
-(30947, 4412, 11), -- Average P. Def.
-(30947, 4413, 11), -- Average M. Def.
-(30947, 4414, 2), -- Standard Type
-(30947, 4415, 3), -- One-handed Sword
-(30947, 4416, 17), -- Orcs
+(30947, 4408, 1), -- HP Modifiers
+(30947, 4409, 1), -- MP Modifiers
+(30947, 4410, 11), -- P. Atk. Modifiers
+(30947, 4411, 11), -- M. Atk. Modifiers
+(30947, 4412, 11), -- P. Def. Modifiers
+(30947, 4413, 11), -- M. Def. Modifiers
+(30947, 4414, 2), -- Armor Type
+(30947, 4415, 3), -- Weapon Type
+(30947, 4416, 17), -- Races
 -- Meridien
 (30948, 4045, 1), -- Resist Full Magic Attack
-(30948, 4408, 1), -- HP Increase (1x)
-(30948, 4409, 1), -- MP Increase (1x)
-(30948, 4410, 11), -- Average P. Atk.
-(30948, 4411, 11), -- Average M. Atk.
-(30948, 4412, 11), -- Average P. Def.
-(30948, 4413, 11), -- Average M. Def.
-(30948, 4414, 2), -- Standard Type
-(30948, 4415, 3), -- One-handed Sword
-(30948, 4416, 15), -- Elves
+(30948, 4408, 1), -- HP Modifiers
+(30948, 4409, 1), -- MP Modifiers
+(30948, 4410, 11), -- P. Atk. Modifiers
+(30948, 4411, 11), -- M. Atk. Modifiers
+(30948, 4412, 11), -- P. Def. Modifiers
+(30948, 4413, 11), -- M. Def. Modifiers
+(30948, 4414, 2), -- Armor Type
+(30948, 4415, 3), -- Weapon Type
+(30948, 4416, 15), -- Races
 -- Keplon
 (30949, 4045, 1), -- Resist Full Magic Attack
-(30949, 4408, 1), -- HP Increase (1x)
-(30949, 4409, 1), -- MP Increase (1x)
-(30949, 4410, 11), -- Average P. Atk.
-(30949, 4411, 11), -- Average M. Atk.
-(30949, 4412, 11), -- Average P. Def.
-(30949, 4413, 11), -- Average M. Def.
-(30949, 4414, 2), -- Standard Type
-(30949, 4415, 3), -- One-handed Sword
-(30949, 4416, 18), -- Dwarves
+(30949, 4408, 1), -- HP Modifiers
+(30949, 4409, 1), -- MP Modifiers
+(30949, 4410, 11), -- P. Atk. Modifiers
+(30949, 4411, 11), -- M. Atk. Modifiers
+(30949, 4412, 11), -- P. Def. Modifiers
+(30949, 4413, 11), -- M. Def. Modifiers
+(30949, 4414, 2), -- Armor Type
+(30949, 4415, 3), -- Weapon Type
+(30949, 4416, 18), -- Races
 -- Euclie
 (30950, 4045, 1), -- Resist Full Magic Attack
-(30950, 4408, 1), -- HP Increase (1x)
-(30950, 4409, 1), -- MP Increase (1x)
-(30950, 4410, 11), -- Average P. Atk.
-(30950, 4411, 11), -- Average M. Atk.
-(30950, 4412, 11), -- Average P. Def.
-(30950, 4413, 11), -- Average M. Def.
-(30950, 4414, 2), -- Standard Type
-(30950, 4415, 3), -- One-handed Sword
-(30950, 4416, 18), -- Dwarves
+(30950, 4408, 1), -- HP Modifiers
+(30950, 4409, 1), -- MP Modifiers
+(30950, 4410, 11), -- P. Atk. Modifiers
+(30950, 4411, 11), -- M. Atk. Modifiers
+(30950, 4412, 11), -- P. Def. Modifiers
+(30950, 4413, 11), -- M. Def. Modifiers
+(30950, 4414, 2), -- Armor Type
+(30950, 4415, 3), -- Weapon Type
+(30950, 4416, 18), -- Races
 -- Pithgon
 (30951, 4045, 1), -- Resist Full Magic Attack
-(30951, 4408, 1), -- HP Increase (1x)
-(30951, 4409, 1), -- MP Increase (1x)
-(30951, 4410, 11), -- Average P. Atk.
-(30951, 4411, 11), -- Average M. Atk.
-(30951, 4412, 11), -- Average P. Def.
-(30951, 4413, 11), -- Average M. Def.
-(30951, 4414, 2), -- Standard Type
-(30951, 4415, 3), -- One-handed Sword
-(30951, 4416, 18), -- Dwarves
+(30951, 4408, 1), -- HP Modifiers
+(30951, 4409, 1), -- MP Modifiers
+(30951, 4410, 11), -- P. Atk. Modifiers
+(30951, 4411, 11), -- M. Atk. Modifiers
+(30951, 4412, 11), -- P. Def. Modifiers
+(30951, 4413, 11), -- M. Def. Modifiers
+(30951, 4414, 2), -- Armor Type
+(30951, 4415, 3), -- Weapon Type
+(30951, 4416, 18), -- Races
 -- Dimensional Vortex 1
 (30952, 4045, 1), -- Resist Full Magic Attack
-(30952, 4390, 1), -- Mystic Immunity
-(30952, 4408, 1), -- HP Increase (1x)
-(30952, 4409, 1), -- MP Increase (1x)
-(30952, 4410, 11), -- Average P. Atk.
-(30952, 4411, 11), -- Average M. Atk.
-(30952, 4412, 11), -- Average P. Def.
-(30952, 4413, 11), -- Average M. Def.
-(30952, 4414, 2), -- Standard Type
-(30952, 4415, 3), -- One-handed Sword
-(30952, 4416, 19), -- Others
+(30952, 4390, 1), -- NPC Abnormal Immunity
+(30952, 4408, 1), -- HP Modifiers
+(30952, 4409, 1), -- MP Modifiers
+(30952, 4410, 11), -- P. Atk. Modifiers
+(30952, 4411, 11), -- M. Atk. Modifiers
+(30952, 4412, 11), -- P. Def. Modifiers
+(30952, 4413, 11), -- M. Def. Modifiers
+(30952, 4414, 2), -- Armor Type
+(30952, 4415, 3), -- Weapon Type
+(30952, 4416, 19), -- Races
 -- Dimensional Vortex 2
 (30953, 4045, 1), -- Resist Full Magic Attack
-(30953, 4390, 1), -- Mystic Immunity
-(30953, 4408, 1), -- HP Increase (1x)
-(30953, 4409, 1), -- MP Increase (1x)
-(30953, 4410, 11), -- Average P. Atk.
-(30953, 4411, 11), -- Average M. Atk.
-(30953, 4412, 11), -- Average P. Def.
-(30953, 4413, 11), -- Average M. Def.
-(30953, 4414, 2), -- Standard Type
-(30953, 4415, 3), -- One-handed Sword
-(30953, 4416, 19), -- Others
+(30953, 4390, 1), -- NPC Abnormal Immunity
+(30953, 4408, 1), -- HP Modifiers
+(30953, 4409, 1), -- MP Modifiers
+(30953, 4410, 11), -- P. Atk. Modifiers
+(30953, 4411, 11), -- M. Atk. Modifiers
+(30953, 4412, 11), -- P. Def. Modifiers
+(30953, 4413, 11), -- M. Def. Modifiers
+(30953, 4414, 2), -- Armor Type
+(30953, 4415, 3), -- Weapon Type
+(30953, 4416, 19), -- Races
 -- Dimensional Vortex 3
 (30954, 4045, 1), -- Resist Full Magic Attack
-(30954, 4390, 1), -- Mystic Immunity
-(30954, 4408, 1), -- HP Increase (1x)
-(30954, 4409, 1), -- MP Increase (1x)
-(30954, 4410, 11), -- Average P. Atk.
-(30954, 4411, 11), -- Average M. Atk.
-(30954, 4412, 11), -- Average P. Def.
-(30954, 4413, 11), -- Average M. Def.
-(30954, 4414, 2), -- Standard Type
-(30954, 4415, 3), -- One-handed Sword
-(30954, 4416, 19), -- Others
+(30954, 4390, 1), -- NPC Abnormal Immunity
+(30954, 4408, 1), -- HP Modifiers
+(30954, 4409, 1), -- MP Modifiers
+(30954, 4410, 11), -- P. Atk. Modifiers
+(30954, 4411, 11), -- M. Atk. Modifiers
+(30954, 4412, 11), -- P. Def. Modifiers
+(30954, 4413, 11), -- M. Def. Modifiers
+(30954, 4414, 2), -- Armor Type
+(30954, 4415, 3), -- Weapon Type
+(30954, 4416, 19), -- Races
 -- Gillian's Revenant
 (30955, 4045, 1), -- Resist Full Magic Attack
-(30955, 4408, 1), -- HP Increase (1x)
-(30955, 4409, 1), -- MP Increase (1x)
-(30955, 4410, 11), -- Average P. Atk.
-(30955, 4411, 11), -- Average M. Atk.
-(30955, 4412, 11), -- Average P. Def.
-(30955, 4413, 11), -- Average M. Def.
-(30955, 4414, 2), -- Standard Type
-(30955, 4415, 3), -- One-handed Sword
-(30955, 4416, 1), -- Undead
+(30955, 4408, 1), -- HP Modifiers
+(30955, 4409, 1), -- MP Modifiers
+(30955, 4410, 11), -- P. Atk. Modifiers
+(30955, 4411, 11), -- M. Atk. Modifiers
+(30955, 4412, 11), -- P. Def. Modifiers
+(30955, 4413, 11), -- M. Def. Modifiers
+(30955, 4414, 2), -- Armor Type
+(30955, 4415, 3), -- Weapon Type
+(30955, 4416, 1), -- Races
 -- Nanarin
 (30956, 4045, 1), -- Resist Full Magic Attack
-(30956, 4408, 1), -- HP Increase (1x)
-(30956, 4409, 1), -- MP Increase (1x)
-(30956, 4410, 11), -- Average P. Atk.
-(30956, 4411, 11), -- Average M. Atk.
-(30956, 4412, 11), -- Average P. Def.
-(30956, 4413, 11), -- Average M. Def.
-(30956, 4414, 2), -- Standard Type
-(30956, 4415, 3), -- One-handed Sword
-(30956, 4416, 16), -- Dark Elves
+(30956, 4408, 1), -- HP Modifiers
+(30956, 4409, 1), -- MP Modifiers
+(30956, 4410, 11), -- P. Atk. Modifiers
+(30956, 4411, 11), -- M. Atk. Modifiers
+(30956, 4412, 11), -- P. Def. Modifiers
+(30956, 4413, 11), -- M. Def. Modifiers
+(30956, 4414, 2), -- Armor Type
+(30956, 4415, 3), -- Weapon Type
+(30956, 4416, 16), -- Races
 -- Swan
 (30957, 4045, 1), -- Resist Full Magic Attack
-(30957, 4408, 1), -- HP Increase (1x)
-(30957, 4409, 1), -- MP Increase (1x)
-(30957, 4410, 11), -- Average P. Atk.
-(30957, 4411, 11), -- Average M. Atk.
-(30957, 4412, 11), -- Average P. Def.
-(30957, 4413, 11), -- Average M. Def.
-(30957, 4414, 2), -- Standard Type
-(30957, 4415, 3), -- One-handed Sword
-(30957, 4416, 14), -- Humans
+(30957, 4408, 1), -- HP Modifiers
+(30957, 4409, 1), -- MP Modifiers
+(30957, 4410, 11), -- P. Atk. Modifiers
+(30957, 4411, 11), -- M. Atk. Modifiers
+(30957, 4412, 11), -- P. Def. Modifiers
+(30957, 4413, 11), -- M. Def. Modifiers
+(30957, 4414, 2), -- Armor Type
+(30957, 4415, 3); -- Weapon Type
+
+INSERT INTO `npcskills` VALUES
+(30957, 4416, 14), -- Races
 -- Galion
 (30958, 4045, 1), -- Resist Full Magic Attack
-(30958, 4408, 1), -- HP Increase (1x)
-(30958, 4409, 1), -- MP Increase (1x)
-(30958, 4410, 11), -- Average P. Atk.
-(30958, 4411, 11), -- Average M. Atk.
-(30958, 4412, 11), -- Average P. Def.
-(30958, 4413, 11), -- Average M. Def.
-(30958, 4414, 2), -- Standard Type
-(30958, 4415, 3), -- One-handed Sword
-(30958, 4416, 18), -- Dwarves
+(30958, 4408, 1), -- HP Modifiers
+(30958, 4409, 1), -- MP Modifiers
+(30958, 4410, 11), -- P. Atk. Modifiers
+(30958, 4411, 11), -- M. Atk. Modifiers
+(30958, 4412, 11), -- P. Def. Modifiers
+(30958, 4413, 11), -- M. Def. Modifiers
+(30958, 4414, 2), -- Armor Type
+(30958, 4415, 3), -- Weapon Type
+(30958, 4416, 18), -- Races
 -- Barbado
 (30959, 4045, 1), -- Resist Full Magic Attack
-(30959, 4408, 1), -- HP Increase (1x)
-(30959, 4409, 1), -- MP Increase (1x)
-(30959, 4410, 11), -- Average P. Atk.
-(30959, 4411, 11), -- Average M. Atk.
-(30959, 4412, 11), -- Average P. Def.
-(30959, 4413, 11), -- Average M. Def.
-(30959, 4414, 2), -- Standard Type
-(30959, 4415, 3), -- One-handed Sword
-(30959, 4416, 18), -- Dwarves
+(30959, 4408, 1), -- HP Modifiers
+(30959, 4409, 1), -- MP Modifiers
+(30959, 4410, 11), -- P. Atk. Modifiers
+(30959, 4411, 11), -- M. Atk. Modifiers
+(30959, 4412, 11), -- P. Def. Modifiers
+(30959, 4413, 11), -- M. Def. Modifiers
+(30959, 4414, 2), -- Armor Type
+(30959, 4415, 3), -- Weapon Type
+(30959, 4416, 18), -- Races
 -- Beer Chest
 (30960, 4045, 1), -- Resist Full Magic Attack
-(30960, 4390, 1), -- Mystic Immunity
-(30960, 4408, 1), -- HP Increase (1x)
-(30960, 4409, 1), -- MP Increase (1x)
-(30960, 4410, 11), -- Average P. Atk.
-(30960, 4411, 11), -- Average M. Atk.
-(30960, 4412, 11), -- Average P. Def.
-(30960, 4413, 11), -- Average M. Def.
-(30960, 4414, 2), -- Standard Type
-(30960, 4415, 3), -- One-handed Sword
-(30960, 4416, 19), -- Others
+(30960, 4390, 1), -- NPC Abnormal Immunity
+(30960, 4408, 1), -- HP Modifiers
+(30960, 4409, 1), -- MP Modifiers
+(30960, 4410, 11), -- P. Atk. Modifiers
+(30960, 4411, 11), -- M. Atk. Modifiers
+(30960, 4412, 11), -- P. Def. Modifiers
+(30960, 4413, 11), -- M. Def. Modifiers
+(30960, 4414, 2), -- Armor Type
+(30960, 4415, 3), -- Weapon Type
+(30960, 4416, 19), -- Races
 -- Cloth Chest
 (30961, 4045, 1), -- Resist Full Magic Attack
-(30961, 4390, 1), -- Mystic Immunity
-(30961, 4408, 1), -- HP Increase (1x)
-(30961, 4409, 1), -- MP Increase (1x)
-(30961, 4410, 11), -- Average P. Atk.
-(30961, 4411, 11), -- Average M. Atk.
-(30961, 4412, 11), -- Average P. Def.
-(30961, 4413, 11), -- Average M. Def.
-(30961, 4414, 2), -- Standard Type
-(30961, 4415, 3), -- One-handed Sword
-(30961, 4416, 19), -- Others
+(30961, 4390, 1), -- NPC Abnormal Immunity
+(30961, 4408, 1), -- HP Modifiers
+(30961, 4409, 1), -- MP Modifiers
+(30961, 4410, 11), -- P. Atk. Modifiers
+(30961, 4411, 11), -- M. Atk. Modifiers
+(30961, 4412, 11), -- P. Def. Modifiers
+(30961, 4413, 11), -- M. Def. Modifiers
+(30961, 4414, 2), -- Armor Type
+(30961, 4415, 3), -- Weapon Type
+(30961, 4416, 19), -- Races
 -- Statue of Water
 (30962, 4045, 1), -- Resist Full Magic Attack
-(30962, 4390, 1), -- Mystic Immunity
-(30962, 4408, 1), -- HP Increase (1x)
-(30962, 4409, 1), -- MP Increase (1x)
-(30962, 4410, 11), -- Average P. Atk.
-(30962, 4411, 11), -- Average M. Atk.
-(30962, 4412, 11), -- Average P. Def.
-(30962, 4413, 11), -- Average M. Def.
-(30962, 4414, 2), -- Standard Type
-(30962, 4415, 3), -- One-handed Sword
-(30962, 4416, 19), -- Others
+(30962, 4390, 1), -- NPC Abnormal Immunity
+(30962, 4408, 1), -- HP Modifiers
+(30962, 4409, 1), -- MP Modifiers
+(30962, 4410, 11), -- P. Atk. Modifiers
+(30962, 4411, 11), -- M. Atk. Modifiers
+(30962, 4412, 11), -- P. Def. Modifiers
+(30962, 4413, 11), -- M. Def. Modifiers
+(30962, 4414, 2), -- Armor Type
+(30962, 4415, 3), -- Weapon Type
+(30962, 4416, 19), -- Races
 -- Statue of Fire
 (30963, 4045, 1), -- Resist Full Magic Attack
-(30963, 4390, 1), -- Mystic Immunity
-(30963, 4408, 1), -- HP Increase (1x)
-(30963, 4409, 1), -- MP Increase (1x)
-(30963, 4410, 11), -- Average P. Atk.
-(30963, 4411, 11), -- Average M. Atk.
-(30963, 4412, 11), -- Average P. Def.
-(30963, 4413, 11), -- Average M. Def.
-(30963, 4414, 2), -- Standard Type
-(30963, 4415, 3), -- One-handed Sword
-(30963, 4416, 19), -- Others
+(30963, 4390, 1), -- NPC Abnormal Immunity
+(30963, 4408, 1), -- HP Modifiers
+(30963, 4409, 1), -- MP Modifiers
+(30963, 4410, 11), -- P. Atk. Modifiers
+(30963, 4411, 11), -- M. Atk. Modifiers
+(30963, 4412, 11), -- P. Def. Modifiers
+(30963, 4413, 11), -- M. Def. Modifiers
+(30963, 4414, 2), -- Armor Type
+(30963, 4415, 3), -- Weapon Type
+(30963, 4416, 19), -- Races
 -- Statue of Wind
 (30964, 4045, 1), -- Resist Full Magic Attack
-(30964, 4390, 1), -- Mystic Immunity
-(30964, 4408, 1), -- HP Increase (1x)
-(30964, 4409, 1), -- MP Increase (1x)
-(30964, 4410, 11), -- Average P. Atk.
-(30964, 4411, 11), -- Average M. Atk.
-(30964, 4412, 11), -- Average P. Def.
-(30964, 4413, 11), -- Average M. Def.
-(30964, 4414, 2), -- Standard Type
-(30964, 4415, 3), -- One-handed Sword
-(30964, 4416, 19), -- Others
+(30964, 4390, 1), -- NPC Abnormal Immunity
+(30964, 4408, 1), -- HP Modifiers
+(30964, 4409, 1), -- MP Modifiers
+(30964, 4410, 11), -- P. Atk. Modifiers
+(30964, 4411, 11), -- M. Atk. Modifiers
+(30964, 4412, 11), -- P. Def. Modifiers
+(30964, 4413, 11), -- M. Def. Modifiers
+(30964, 4414, 2), -- Armor Type
+(30964, 4415, 3), -- Weapon Type
+(30964, 4416, 19), -- Races
 -- Statue of Earth
 (30965, 4045, 1), -- Resist Full Magic Attack
-(30965, 4390, 1), -- Mystic Immunity
-(30965, 4408, 1), -- HP Increase (1x)
-(30965, 4409, 1), -- MP Increase (1x)
-(30965, 4410, 11), -- Average P. Atk.
-(30965, 4411, 11), -- Average M. Atk.
-(30965, 4412, 11), -- Average P. Def.
-(30965, 4413, 11), -- Average M. Def.
-(30965, 4414, 2), -- Standard Type
-(30965, 4415, 3), -- One-handed Sword
-(30965, 4416, 19), -- Others
+(30965, 4390, 1), -- NPC Abnormal Immunity
+(30965, 4408, 1), -- HP Modifiers
+(30965, 4409, 1), -- MP Modifiers
+(30965, 4410, 11), -- P. Atk. Modifiers
+(30965, 4411, 11), -- M. Atk. Modifiers
+(30965, 4412, 11), -- P. Def. Modifiers
+(30965, 4413, 11), -- M. Def. Modifiers
+(30965, 4414, 2), -- Armor Type
+(30965, 4415, 3), -- Weapon Type
+(30965, 4416, 19), -- Races
 -- Statue of Darkness
 (30966, 4045, 1), -- Resist Full Magic Attack
-(30966, 4390, 1), -- Mystic Immunity
-(30966, 4408, 1), -- HP Increase (1x)
-(30966, 4409, 1), -- MP Increase (1x)
-(30966, 4410, 11), -- Average P. Atk.
-(30966, 4411, 11), -- Average M. Atk.
-(30966, 4412, 11), -- Average P. Def.
-(30966, 4413, 11), -- Average M. Def.
-(30966, 4414, 2), -- Standard Type
-(30966, 4415, 3), -- One-handed Sword
-(30966, 4416, 19), -- Others
+(30966, 4390, 1), -- NPC Abnormal Immunity
+(30966, 4408, 1), -- HP Modifiers
+(30966, 4409, 1), -- MP Modifiers
+(30966, 4410, 11), -- P. Atk. Modifiers
+(30966, 4411, 11), -- M. Atk. Modifiers
+(30966, 4412, 11), -- P. Def. Modifiers
+(30966, 4413, 11), -- M. Def. Modifiers
+(30966, 4414, 2), -- Armor Type
+(30966, 4415, 3), -- Weapon Type
+(30966, 4416, 19), -- Races
 -- Statue of Light
 (30967, 4045, 1), -- Resist Full Magic Attack
-(30967, 4390, 1), -- Mystic Immunity
-(30967, 4408, 1), -- HP Increase (1x)
-(30967, 4409, 1), -- MP Increase (1x)
-(30967, 4410, 11), -- Average P. Atk.
-(30967, 4411, 11), -- Average M. Atk.
-(30967, 4412, 11), -- Average P. Def.
-(30967, 4413, 11), -- Average M. Def.
-(30967, 4414, 2), -- Standard Type
-(30967, 4415, 3), -- One-handed Sword
-(30967, 4416, 19), -- Others
+(30967, 4390, 1), -- NPC Abnormal Immunity
+(30967, 4408, 1), -- HP Modifiers
+(30967, 4409, 1), -- MP Modifiers
+(30967, 4410, 11), -- P. Atk. Modifiers
+(30967, 4411, 11), -- M. Atk. Modifiers
+(30967, 4412, 11), -- P. Def. Modifiers
+(30967, 4413, 11), -- M. Def. Modifiers
+(30967, 4414, 2), -- Armor Type
+(30967, 4415, 3), -- Weapon Type
+(30967, 4416, 19), -- Races
 -- Jennifer
 (30968, 4045, 1), -- Resist Full Magic Attack
-(30968, 4408, 1), -- HP Increase (1x)
-(30968, 4409, 1), -- MP Increase (1x)
-(30968, 4410, 11), -- Average P. Atk.
-(30968, 4411, 11), -- Average M. Atk.
-(30968, 4412, 11), -- Average P. Def.
-(30968, 4413, 11), -- Average M. Def.
-(30968, 4414, 2), -- Standard Type
-(30968, 4415, 3), -- One-handed Sword
-(30968, 4416, 17), -- Orcs
+(30968, 4408, 1), -- HP Modifiers
+(30968, 4409, 1), -- MP Modifiers
+(30968, 4410, 11), -- P. Atk. Modifiers
+(30968, 4411, 11), -- M. Atk. Modifiers
+(30968, 4412, 11), -- P. Def. Modifiers
+(30968, 4413, 11), -- M. Def. Modifiers
+(30968, 4414, 2), -- Armor Type
+(30968, 4415, 3), -- Weapon Type
+(30968, 4416, 17), -- Races
 -- Iason Heine
 (30969, 4045, 1), -- Resist Full Magic Attack
-(30969, 4408, 1), -- HP Increase (1x)
-(30969, 4409, 1), -- MP Increase (1x)
-(30969, 4410, 11), -- Average P. Atk.
-(30969, 4411, 11), -- Average M. Atk.
-(30969, 4412, 11), -- Average P. Def.
-(30969, 4413, 11), -- Average M. Def.
-(30969, 4414, 2), -- Standard Type
-(30969, 4415, 3), -- One-handed Sword
-(30969, 4416, 14), -- Humans
+(30969, 4408, 1), -- HP Modifiers
+(30969, 4409, 1), -- MP Modifiers
+(30969, 4410, 11), -- P. Atk. Modifiers
+(30969, 4411, 11), -- M. Atk. Modifiers
+(30969, 4412, 11), -- P. Def. Modifiers
+(30969, 4413, 11), -- M. Def. Modifiers
+(30969, 4414, 2), -- Armor Type
+(30969, 4415, 3), -- Weapon Type
+(30969, 4416, 14), -- Races
 -- Dorothy
 (30970, 4045, 1), -- Resist Full Magic Attack
-(30970, 4408, 1), -- HP Increase (1x)
-(30970, 4409, 1), -- MP Increase (1x)
-(30970, 4410, 11), -- Average P. Atk.
-(30970, 4411, 11), -- Average M. Atk.
-(30970, 4412, 11), -- Average P. Def.
-(30970, 4413, 11), -- Average M. Def.
-(30970, 4414, 2), -- Standard Type
-(30970, 4415, 3), -- One-handed Sword
-(30970, 4416, 14), -- Humans
+(30970, 4408, 1), -- HP Modifiers
+(30970, 4409, 1), -- MP Modifiers
+(30970, 4410, 11), -- P. Atk. Modifiers
+(30970, 4411, 11), -- M. Atk. Modifiers
+(30970, 4412, 11), -- P. Def. Modifiers
+(30970, 4413, 11), -- M. Def. Modifiers
+(30970, 4414, 2), -- Armor Type
+(30970, 4415, 3), -- Weapon Type
+(30970, 4416, 14), -- Races
 -- Orpheus
 (30971, 4045, 1), -- Resist Full Magic Attack
-(30971, 4408, 1), -- HP Increase (1x)
-(30971, 4409, 1), -- MP Increase (1x)
-(30971, 4410, 11), -- Average P. Atk.
-(30971, 4411, 11), -- Average M. Atk.
-(30971, 4412, 11), -- Average P. Def.
-(30971, 4413, 11), -- Average M. Def.
-(30971, 4414, 2), -- Standard Type
-(30971, 4415, 3), -- One-handed Sword
-(30971, 4416, 18), -- Dwarves
+(30971, 4408, 1), -- HP Modifiers
+(30971, 4409, 1), -- MP Modifiers
+(30971, 4410, 11), -- P. Atk. Modifiers
+(30971, 4411, 11), -- M. Atk. Modifiers
+(30971, 4412, 11), -- P. Def. Modifiers
+(30971, 4413, 11), -- M. Def. Modifiers
+(30971, 4414, 2), -- Armor Type
+(30971, 4415, 3), -- Weapon Type
+(30971, 4416, 18), -- Races
 -- Orpheus Resurrector
 (30972, 4045, 1), -- Resist Full Magic Attack
-(30972, 4390, 1), -- Mystic Immunity
-(30972, 4408, 1), -- HP Increase (1x)
-(30972, 4409, 1), -- MP Increase (1x)
-(30972, 4410, 11), -- Average P. Atk.
-(30972, 4411, 11), -- Average M. Atk.
-(30972, 4412, 11), -- Average P. Def.
-(30972, 4413, 11), -- Average M. Def.
-(30972, 4414, 2), -- Standard Type
-(30972, 4415, 3), -- One-handed Sword
-(30972, 4416, 2), -- Magic Creatures
+(30972, 4390, 1), -- NPC Abnormal Immunity
+(30972, 4408, 1), -- HP Modifiers
+(30972, 4409, 1), -- MP Modifiers
+(30972, 4410, 11), -- P. Atk. Modifiers
+(30972, 4411, 11), -- M. Atk. Modifiers
+(30972, 4412, 11), -- P. Def. Modifiers
+(30972, 4413, 11), -- M. Def. Modifiers
+(30972, 4414, 2), -- Armor Type
+(30972, 4415, 3), -- Weapon Type
+(30972, 4416, 2), -- Races
 -- Medium Jar
 (30973, 4045, 1), -- Resist Full Magic Attack
-(30973, 4390, 1), -- Mystic Immunity
-(30973, 4408, 1), -- HP Increase (1x)
-(30973, 4409, 1), -- MP Increase (1x)
-(30973, 4410, 11), -- Average P. Atk.
-(30973, 4411, 11), -- Average M. Atk.
-(30973, 4412, 11), -- Average P. Def.
-(30973, 4413, 11), -- Average M. Def.
-(30973, 4414, 2), -- Standard Type
-(30973, 4415, 3), -- One-handed Sword
-(30973, 4416, 19), -- Others
+(30973, 4390, 1), -- NPC Abnormal Immunity
+(30973, 4408, 1), -- HP Modifiers
+(30973, 4409, 1), -- MP Modifiers
+(30973, 4410, 11), -- P. Atk. Modifiers
+(30973, 4411, 11), -- M. Atk. Modifiers
+(30973, 4412, 11), -- P. Def. Modifiers
+(30973, 4413, 11), -- M. Def. Modifiers
+(30973, 4414, 2), -- Armor Type
+(30973, 4415, 3), -- Weapon Type
+(30973, 4416, 19), -- Races
 -- Oliver
 (30974, 4045, 1), -- Resist Full Magic Attack
-(30974, 4408, 1), -- HP Increase (1x)
-(30974, 4409, 1), -- MP Increase (1x)
-(30974, 4410, 11), -- Average P. Atk.
-(30974, 4411, 11), -- Average M. Atk.
-(30974, 4412, 11), -- Average P. Def.
-(30974, 4413, 11), -- Average M. Def.
-(30974, 4414, 2), -- Standard Type
-(30974, 4415, 3), -- One-handed Sword
-(30974, 4416, 14), -- Humans
+(30974, 4408, 1), -- HP Modifiers
+(30974, 4409, 1), -- MP Modifiers
+(30974, 4410, 11), -- P. Atk. Modifiers
+(30974, 4411, 11), -- M. Atk. Modifiers
+(30974, 4412, 11), -- P. Def. Modifiers
+(30974, 4413, 11), -- M. Def. Modifiers
+(30974, 4414, 2), -- Armor Type
+(30974, 4415, 3), -- Weapon Type
+(30974, 4416, 14), -- Races
 -- Clarine
 (30975, 4045, 1), -- Resist Full Magic Attack
-(30975, 4408, 1), -- HP Increase (1x)
-(30975, 4409, 1), -- MP Increase (1x)
-(30975, 4410, 11), -- Average P. Atk.
-(30975, 4411, 11), -- Average M. Atk.
-(30975, 4412, 11), -- Average P. Def.
-(30975, 4413, 11), -- Average M. Def.
-(30975, 4414, 2), -- Standard Type
-(30975, 4415, 3), -- One-handed Sword
-(30975, 4416, 18), -- Dwarves
+(30975, 4408, 1), -- HP Modifiers
+(30975, 4409, 1), -- MP Modifiers
+(30975, 4410, 11), -- P. Atk. Modifiers
+(30975, 4411, 11), -- M. Atk. Modifiers
+(30975, 4412, 11), -- P. Def. Modifiers
+(30975, 4413, 11), -- M. Def. Modifiers
+(30975, 4414, 2), -- Armor Type
+(30975, 4415, 3), -- Weapon Type
+(30975, 4416, 18), -- Races
 -- Resurrected Town Maiden
 (30976, 4045, 1), -- Resist Full Magic Attack
-(30976, 4408, 1), -- HP Increase (1x)
-(30976, 4409, 1), -- MP Increase (1x)
-(30976, 4410, 11), -- Average P. Atk.
-(30976, 4411, 11), -- Average M. Atk.
-(30976, 4412, 11), -- Average P. Def.
-(30976, 4413, 11), -- Average M. Def.
-(30976, 4414, 2), -- Standard Type
-(30976, 4415, 3), -- One-handed Sword
-(30976, 4416, 14), -- Humans
+(30976, 4408, 1), -- HP Modifiers
+(30976, 4409, 1), -- MP Modifiers
+(30976, 4410, 11), -- P. Atk. Modifiers
+(30976, 4411, 11), -- M. Atk. Modifiers
+(30976, 4412, 11), -- P. Def. Modifiers
+(30976, 4413, 11), -- M. Def. Modifiers
+(30976, 4414, 2), -- Armor Type
+(30976, 4415, 3), -- Weapon Type
+(30976, 4416, 14), -- Races
 -- Holy Ark of Secrecy 1
 (30977, 4045, 1), -- Resist Full Magic Attack
-(30977, 4390, 1), -- Mystic Immunity
-(30977, 4408, 1), -- HP Increase (1x)
-(30977, 4409, 1), -- MP Increase (1x)
-(30977, 4410, 11), -- Average P. Atk.
-(30977, 4411, 11), -- Average M. Atk.
-(30977, 4412, 11), -- Average P. Def.
-(30977, 4413, 11), -- Average M. Def.
-(30977, 4414, 2), -- Standard Type
-(30977, 4415, 3), -- One-handed Sword
-(30977, 4416, 19), -- Others
+(30977, 4390, 1), -- NPC Abnormal Immunity
+(30977, 4408, 1), -- HP Modifiers
+(30977, 4409, 1), -- MP Modifiers
+(30977, 4410, 11), -- P. Atk. Modifiers
+(30977, 4411, 11), -- M. Atk. Modifiers
+(30977, 4412, 11), -- P. Def. Modifiers
+(30977, 4413, 11), -- M. Def. Modifiers
+(30977, 4414, 2), -- Armor Type
+(30977, 4415, 3), -- Weapon Type
+(30977, 4416, 19), -- Races
 -- Holy Ark of Secrecy 2
 (30978, 4045, 1), -- Resist Full Magic Attack
-(30978, 4390, 1), -- Mystic Immunity
-(30978, 4408, 1), -- HP Increase (1x)
-(30978, 4409, 1), -- MP Increase (1x)
-(30978, 4410, 11), -- Average P. Atk.
-(30978, 4411, 11), -- Average M. Atk.
-(30978, 4412, 11), -- Average P. Def.
-(30978, 4413, 11), -- Average M. Def.
-(30978, 4414, 2), -- Standard Type
-(30978, 4415, 3), -- One-handed Sword
-(30978, 4416, 19), -- Others
+(30978, 4390, 1), -- NPC Abnormal Immunity
+(30978, 4408, 1), -- HP Modifiers
+(30978, 4409, 1), -- MP Modifiers
+(30978, 4410, 11), -- P. Atk. Modifiers
+(30978, 4411, 11), -- M. Atk. Modifiers
+(30978, 4412, 11), -- P. Def. Modifiers
+(30978, 4413, 11), -- M. Def. Modifiers
+(30978, 4414, 2), -- Armor Type
+(30978, 4415, 3), -- Weapon Type
+(30978, 4416, 19), -- Races
 -- Holy Ark of Secrecy 3
 (30979, 4045, 1), -- Resist Full Magic Attack
-(30979, 4390, 1), -- Mystic Immunity
-(30979, 4408, 1), -- HP Increase (1x)
-(30979, 4409, 1), -- MP Increase (1x)
-(30979, 4410, 11), -- Average P. Atk.
-(30979, 4411, 11), -- Average M. Atk.
-(30979, 4412, 11), -- Average P. Def.
-(30979, 4413, 11), -- Average M. Def.
-(30979, 4414, 2), -- Standard Type
-(30979, 4415, 3), -- One-handed Sword
-(30979, 4416, 19), -- Others
+(30979, 4390, 1), -- NPC Abnormal Immunity
+(30979, 4408, 1), -- HP Modifiers
+(30979, 4409, 1), -- MP Modifiers
+(30979, 4410, 11), -- P. Atk. Modifiers
+(30979, 4411, 11), -- M. Atk. Modifiers
+(30979, 4412, 11), -- P. Def. Modifiers
+(30979, 4413, 11), -- M. Def. Modifiers
+(30979, 4414, 2), -- Armor Type
+(30979, 4415, 3), -- Weapon Type
+(30979, 4416, 19), -- Races
 -- Ark Guardian's Corpse
 (30980, 4045, 1), -- Resist Full Magic Attack
-(30980, 4408, 1), -- HP Increase (1x)
-(30980, 4409, 1), -- MP Increase (1x)
-(30980, 4410, 11), -- Average P. Atk.
-(30980, 4411, 11), -- Average M. Atk.
-(30980, 4412, 11), -- Average P. Def.
-(30980, 4413, 11), -- Average M. Def.
-(30980, 4414, 2), -- Standard Type
-(30980, 4415, 3), -- One-handed Sword
-(30980, 4416, 8), -- Angels
+(30980, 4408, 1), -- HP Modifiers
+(30980, 4409, 1), -- MP Modifiers
+(30980, 4410, 11), -- P. Atk. Modifiers
+(30980, 4411, 11), -- M. Atk. Modifiers
+(30980, 4412, 11), -- P. Def. Modifiers
+(30980, 4413, 11), -- M. Def. Modifiers
+(30980, 4414, 2), -- Armor Type
+(30980, 4415, 3), -- Weapon Type
+(30980, 4416, 8), -- Races
 -- Black Judge
 (30981, 4045, 1), -- Resist Full Magic Attack
-(30981, 4408, 1), -- HP Increase (1x)
-(30981, 4409, 1), -- MP Increase (1x)
-(30981, 4410, 11), -- Average P. Atk.
-(30981, 4411, 11), -- Average M. Atk.
-(30981, 4412, 11), -- Average P. Def.
-(30981, 4413, 11), -- Average M. Def.
-(30981, 4414, 2), -- Standard Type
-(30981, 4415, 3), -- One-handed Sword
-(30981, 4416, 16), -- Dark Elves
-(30981, 5077, 1), -- Remove Death Penalty
+(30981, 4408, 1), -- HP Modifiers
+(30981, 4409, 1), -- MP Modifiers
+(30981, 4410, 11), -- P. Atk. Modifiers
+(30981, 4411, 11), -- M. Atk. Modifiers
+(30981, 4412, 11), -- P. Def. Modifiers
+(30981, 4413, 11), -- M. Def. Modifiers
+(30981, 4414, 2), -- Armor Type
+(30981, 4415, 3), -- Weapon Type
+(30981, 4416, 16), -- Races
+(30981, 5077, 1), -- NPC Remove Death Penalty
 -- Sleeping Ant Larva1
 (30982, 4045, 1), -- Resist Full Magic Attack
-(30982, 4408, 1), -- HP Increase (1x)
-(30982, 4409, 1), -- MP Increase (1x)
-(30982, 4410, 11), -- Average P. Atk.
-(30982, 4411, 11), -- Average M. Atk.
-(30982, 4412, 11), -- Average P. Def.
-(30982, 4413, 11), -- Average M. Def.
-(30982, 4414, 2), -- Standard Type
-(30982, 4415, 3), -- One-handed Sword
-(30982, 4416, 12), -- Bugs
+(30982, 4408, 1), -- HP Modifiers
+(30982, 4409, 1), -- MP Modifiers
+(30982, 4410, 11), -- P. Atk. Modifiers
+(30982, 4411, 11), -- M. Atk. Modifiers
+(30982, 4412, 11), -- P. Def. Modifiers
+(30982, 4413, 11), -- M. Def. Modifiers
+(30982, 4414, 2), -- Armor Type
+(30982, 4415, 3), -- Weapon Type
+(30982, 4416, 12), -- Races
 -- Sleeping Ant Larva2
 (30983, 4045, 1), -- Resist Full Magic Attack
-(30983, 4408, 1), -- HP Increase (1x)
-(30983, 4409, 1), -- MP Increase (1x)
-(30983, 4410, 11), -- Average P. Atk.
-(30983, 4411, 11), -- Average M. Atk.
-(30983, 4412, 11), -- Average P. Def.
-(30983, 4413, 11), -- Average M. Def.
-(30983, 4414, 2), -- Standard Type
-(30983, 4415, 3), -- One-handed Sword
-(30983, 4416, 12), -- Bugs
+(30983, 4408, 1), -- HP Modifiers
+(30983, 4409, 1), -- MP Modifiers
+(30983, 4410, 11), -- P. Atk. Modifiers
+(30983, 4411, 11), -- M. Atk. Modifiers
+(30983, 4412, 11), -- P. Def. Modifiers
+(30983, 4413, 11), -- M. Def. Modifiers
+(30983, 4414, 2), -- Armor Type
+(30983, 4415, 3), -- Weapon Type
+(30983, 4416, 12), -- Races
 -- Sleeping Ant Larva3
 (30984, 4045, 1), -- Resist Full Magic Attack
-(30984, 4408, 1), -- HP Increase (1x)
-(30984, 4409, 1), -- MP Increase (1x)
-(30984, 4410, 11), -- Average P. Atk.
-(30984, 4411, 11), -- Average M. Atk.
-(30984, 4412, 11), -- Average P. Def.
-(30984, 4413, 11), -- Average M. Def.
-(30984, 4414, 2), -- Standard Type
-(30984, 4415, 3), -- One-handed Sword
-(30984, 4416, 12), -- Bugs
+(30984, 4408, 1), -- HP Modifiers
+(30984, 4409, 1), -- MP Modifiers
+(30984, 4410, 11), -- P. Atk. Modifiers
+(30984, 4411, 11), -- M. Atk. Modifiers
+(30984, 4412, 11), -- P. Def. Modifiers
+(30984, 4413, 11), -- M. Def. Modifiers
+(30984, 4414, 2), -- Armor Type
+(30984, 4415, 3), -- Weapon Type
+(30984, 4416, 12), -- Races
 -- Sleeping Ant Larva4
 (30985, 4045, 1), -- Resist Full Magic Attack
-(30985, 4408, 1), -- HP Increase (1x)
-(30985, 4409, 1), -- MP Increase (1x)
-(30985, 4410, 11), -- Average P. Atk.
-(30985, 4411, 11), -- Average M. Atk.
-(30985, 4412, 11), -- Average P. Def.
-(30985, 4413, 11), -- Average M. Def.
-(30985, 4414, 2), -- Standard Type
-(30985, 4415, 3), -- One-handed Sword
-(30985, 4416, 12), -- Bugs
+(30985, 4408, 1), -- HP Modifiers
+(30985, 4409, 1), -- MP Modifiers
+(30985, 4410, 11), -- P. Atk. Modifiers
+(30985, 4411, 11), -- M. Atk. Modifiers
+(30985, 4412, 11), -- P. Def. Modifiers
+(30985, 4413, 11), -- M. Def. Modifiers
+(30985, 4414, 2), -- Armor Type
+(30985, 4415, 3), -- Weapon Type
+(30985, 4416, 12), -- Races
 -- Sleeping Ant Larva5
 (30986, 4045, 1), -- Resist Full Magic Attack
-(30986, 4408, 1), -- HP Increase (1x)
-(30986, 4409, 1), -- MP Increase (1x)
-(30986, 4410, 11), -- Average P. Atk.
-(30986, 4411, 11), -- Average M. Atk.
-(30986, 4412, 11), -- Average P. Def.
-(30986, 4413, 11), -- Average M. Def.
-(30986, 4414, 2), -- Standard Type
-(30986, 4415, 3), -- One-handed Sword
-(30986, 4416, 12), -- Bugs
+(30986, 4408, 1), -- HP Modifiers
+(30986, 4409, 1), -- MP Modifiers
+(30986, 4410, 11), -- P. Atk. Modifiers
+(30986, 4411, 11), -- M. Atk. Modifiers
+(30986, 4412, 11), -- P. Def. Modifiers
+(30986, 4413, 11), -- M. Def. Modifiers
+(30986, 4414, 2), -- Armor Type
+(30986, 4415, 3), -- Weapon Type
+(30986, 4416, 12), -- Races
 -- Sleeping Ant Larva6
 (30987, 4045, 1), -- Resist Full Magic Attack
-(30987, 4408, 1), -- HP Increase (1x)
-(30987, 4409, 1), -- MP Increase (1x)
-(30987, 4410, 11), -- Average P. Atk.
-(30987, 4411, 11), -- Average M. Atk.
-(30987, 4412, 11), -- Average P. Def.
-(30987, 4413, 11), -- Average M. Def.
-(30987, 4414, 2), -- Standard Type
-(30987, 4415, 3), -- One-handed Sword
-(30987, 4416, 12), -- Bugs
+(30987, 4408, 1), -- HP Modifiers
+(30987, 4409, 1), -- MP Modifiers
+(30987, 4410, 11), -- P. Atk. Modifiers
+(30987, 4411, 11), -- M. Atk. Modifiers
+(30987, 4412, 11), -- P. Def. Modifiers
+(30987, 4413, 11), -- M. Def. Modifiers
+(30987, 4414, 2), -- Armor Type
+(30987, 4415, 3), -- Weapon Type
+(30987, 4416, 12), -- Races
 -- Verce
 (30988, 4045, 1), -- Resist Full Magic Attack
-(30988, 4408, 1), -- HP Increase (1x)
-(30988, 4409, 1), -- MP Increase (1x)
-(30988, 4410, 11), -- Average P. Atk.
-(30988, 4411, 11), -- Average M. Atk.
-(30988, 4412, 11), -- Average P. Def.
-(30988, 4413, 11), -- Average M. Def.
-(30988, 4414, 2), -- Standard Type
-(30988, 4415, 3), -- One-handed Sword
-(30988, 4416, 15), -- Elves
+(30988, 4408, 1), -- HP Modifiers
+(30988, 4409, 1), -- MP Modifiers
+(30988, 4410, 11), -- P. Atk. Modifiers
+(30988, 4411, 11), -- M. Atk. Modifiers
+(30988, 4412, 11), -- P. Def. Modifiers
+(30988, 4413, 11), -- M. Def. Modifiers
+(30988, 4414, 2), -- Armor Type
+(30988, 4415, 3), -- Weapon Type
+(30988, 4416, 15), -- Races
 -- Chest of Bifrons
 (30989, 4045, 1), -- Resist Full Magic Attack
-(30989, 4390, 1), -- Mystic Immunity
-(30989, 4408, 1), -- HP Increase (1x)
-(30989, 4409, 1), -- MP Increase (1x)
-(30989, 4410, 11), -- Average P. Atk.
-(30989, 4411, 11), -- Average M. Atk.
-(30989, 4412, 11), -- Average P. Def.
-(30989, 4413, 11), -- Average M. Def.
-(30989, 4414, 2), -- Standard Type
-(30989, 4415, 3), -- One-handed Sword
-(30989, 4416, 19), -- Others
+(30989, 4390, 1), -- NPC Abnormal Immunity
+(30989, 4408, 1), -- HP Modifiers
+(30989, 4409, 1), -- MP Modifiers
+(30989, 4410, 11), -- P. Atk. Modifiers
+(30989, 4411, 11), -- M. Atk. Modifiers
+(30989, 4412, 11), -- P. Def. Modifiers
+(30989, 4413, 11), -- M. Def. Modifiers
+(30989, 4414, 2), -- Armor Type
+(30989, 4415, 3), -- Weapon Type
+(30989, 4416, 19), -- Races
 -- Lottery Ticket Seller
 (30990, 4045, 1), -- Resist Full Magic Attack
-(30990, 4408, 1), -- HP Increase (1x)
-(30990, 4409, 1), -- MP Increase (1x)
-(30990, 4410, 11), -- Average P. Atk.
-(30990, 4411, 11), -- Average M. Atk.
-(30990, 4412, 11), -- Average P. Def.
-(30990, 4413, 11), -- Average M. Def.
-(30990, 4414, 2), -- Standard Type
-(30990, 4415, 3), -- One-handed Sword
-(30990, 4416, 14), -- Humans
+(30990, 4408, 1), -- HP Modifiers
+(30990, 4409, 1), -- MP Modifiers
+(30990, 4410, 11), -- P. Atk. Modifiers
+(30990, 4411, 11), -- M. Atk. Modifiers
+(30990, 4412, 11), -- P. Def. Modifiers
+(30990, 4413, 11), -- M. Def. Modifiers
+(30990, 4414, 2), -- Armor Type
+(30990, 4415, 3), -- Weapon Type
+(30990, 4416, 14), -- Races
 -- Lottery Ticket Seller
 (30991, 4045, 1), -- Resist Full Magic Attack
-(30991, 4408, 1), -- HP Increase (1x)
-(30991, 4409, 1), -- MP Increase (1x)
-(30991, 4410, 11), -- Average P. Atk.
-(30991, 4411, 11), -- Average M. Atk.
-(30991, 4412, 11), -- Average P. Def.
-(30991, 4413, 11), -- Average M. Def.
-(30991, 4414, 2), -- Standard Type
-(30991, 4415, 3), -- One-handed Sword
-(30991, 4416, 15), -- Elves
+(30991, 4408, 1), -- HP Modifiers
+(30991, 4409, 1), -- MP Modifiers
+(30991, 4410, 11), -- P. Atk. Modifiers
+(30991, 4411, 11), -- M. Atk. Modifiers
+(30991, 4412, 11), -- P. Def. Modifiers
+(30991, 4413, 11), -- M. Def. Modifiers
+(30991, 4414, 2), -- Armor Type
+(30991, 4415, 3), -- Weapon Type
+(30991, 4416, 15), -- Races
 -- Lottery Ticket Seller
 (30992, 4045, 1), -- Resist Full Magic Attack
-(30992, 4408, 1), -- HP Increase (1x)
-(30992, 4409, 1), -- MP Increase (1x)
-(30992, 4410, 11), -- Average P. Atk.
-(30992, 4411, 11), -- Average M. Atk.
-(30992, 4412, 11), -- Average P. Def.
-(30992, 4413, 11); -- Average M. Def.
-
-INSERT INTO `npcskills` VALUES
-(30992, 4414, 2), -- Standard Type
-(30992, 4415, 3), -- One-handed Sword
-(30992, 4416, 16), -- Dark Elves
+(30992, 4408, 1), -- HP Modifiers
+(30992, 4409, 1), -- MP Modifiers
+(30992, 4410, 11), -- P. Atk. Modifiers
+(30992, 4411, 11), -- M. Atk. Modifiers
+(30992, 4412, 11), -- P. Def. Modifiers
+(30992, 4413, 11), -- M. Def. Modifiers
+(30992, 4414, 2), -- Armor Type
+(30992, 4415, 3), -- Weapon Type
+(30992, 4416, 16), -- Races
 -- Lottery Ticket Seller
 (30993, 4045, 1), -- Resist Full Magic Attack
-(30993, 4408, 1), -- HP Increase (1x)
-(30993, 4409, 1), -- MP Increase (1x)
-(30993, 4410, 11), -- Average P. Atk.
-(30993, 4411, 11), -- Average M. Atk.
-(30993, 4412, 11), -- Average P. Def.
-(30993, 4413, 11), -- Average M. Def.
-(30993, 4414, 2), -- Standard Type
-(30993, 4415, 3), -- One-handed Sword
-(30993, 4416, 18), -- Dwarves
+(30993, 4408, 1), -- HP Modifiers
+(30993, 4409, 1), -- MP Modifiers
+(30993, 4410, 11), -- P. Atk. Modifiers
+(30993, 4411, 11), -- M. Atk. Modifiers
+(30993, 4412, 11), -- P. Def. Modifiers
+(30993, 4413, 11), -- M. Def. Modifiers
+(30993, 4414, 2), -- Armor Type
+(30993, 4415, 3), -- Weapon Type
+(30993, 4416, 18), -- Races
 -- Lottery Ticket Seller
 (30994, 4045, 1), -- Resist Full Magic Attack
-(30994, 4408, 1), -- HP Increase (1x)
-(30994, 4409, 1), -- MP Increase (1x)
-(30994, 4410, 11), -- Average P. Atk.
-(30994, 4411, 11), -- Average M. Atk.
-(30994, 4412, 11), -- Average P. Def.
-(30994, 4413, 11), -- Average M. Def.
-(30994, 4414, 2), -- Standard Type
-(30994, 4415, 3), -- One-handed Sword
-(30994, 4416, 17), -- Orcs
+(30994, 4408, 1), -- HP Modifiers
+(30994, 4409, 1), -- MP Modifiers
+(30994, 4410, 11), -- P. Atk. Modifiers
+(30994, 4411, 11), -- M. Atk. Modifiers
+(30994, 4412, 11), -- P. Def. Modifiers
+(30994, 4413, 11), -- M. Def. Modifiers
+(30994, 4414, 2), -- Armor Type
+(30994, 4415, 3), -- Weapon Type
+(30994, 4416, 17), -- Races
 -- Race Manager
 (30995, 4045, 1), -- Resist Full Magic Attack
-(30995, 4408, 1), -- HP Increase (1x)
-(30995, 4409, 1), -- MP Increase (1x)
-(30995, 4410, 11), -- Average P. Atk.
-(30995, 4411, 11), -- Average M. Atk.
-(30995, 4412, 11), -- Average P. Def.
-(30995, 4413, 11), -- Average M. Def.
-(30995, 4414, 2), -- Standard Type
-(30995, 4415, 3), -- One-handed Sword
-(30995, 4416, 18), -- Dwarves
+(30995, 4408, 1), -- HP Modifiers
+(30995, 4409, 1), -- MP Modifiers
+(30995, 4410, 11), -- P. Atk. Modifiers
+(30995, 4411, 11), -- M. Atk. Modifiers
+(30995, 4412, 11), -- P. Def. Modifiers
+(30995, 4413, 11), -- M. Def. Modifiers
+(30995, 4414, 2), -- Armor Type
+(30995, 4415, 3), -- Weapon Type
+(30995, 4416, 18), -- Races
 -- Claudia Athebaldt
 (31001, 4045, 1), -- Resist Full Magic Attack
-(31001, 4408, 1), -- HP Increase (1x)
-(31001, 4409, 1), -- MP Increase (1x)
-(31001, 4410, 11), -- Average P. Atk.
-(31001, 4411, 11), -- Average M. Atk.
-(31001, 4412, 11), -- Average P. Def.
-(31001, 4413, 11), -- Average M. Def.
-(31001, 4414, 2), -- Standard Type
-(31001, 4415, 3), -- One-handed Sword
-(31001, 4416, 14), -- Humans
+(31001, 4408, 1), -- HP Modifiers
+(31001, 4409, 1), -- MP Modifiers
+(31001, 4410, 11), -- P. Atk. Modifiers
+(31001, 4411, 11), -- M. Atk. Modifiers
+(31001, 4412, 11), -- P. Def. Modifiers
+(31001, 4413, 11), -- M. Def. Modifiers
+(31001, 4414, 2), -- Armor Type
+(31001, 4415, 3), -- Weapon Type
+(31001, 4416, 14), -- Races
 -- Reorin
 (31002, 4045, 1), -- Resist Full Magic Attack
-(31002, 4408, 1), -- HP Increase (1x)
-(31002, 4409, 1), -- MP Increase (1x)
-(31002, 4410, 11), -- Average P. Atk.
-(31002, 4411, 11), -- Average M. Atk.
-(31002, 4412, 11), -- Average P. Def.
-(31002, 4413, 11), -- Average M. Def.
-(31002, 4414, 2), -- Standard Type
-(31002, 4415, 3), -- One-handed Sword
-(31002, 4416, 18), -- Dwarves
+(31002, 4408, 1), -- HP Modifiers
+(31002, 4409, 1), -- MP Modifiers
+(31002, 4410, 11), -- P. Atk. Modifiers
+(31002, 4411, 11), -- M. Atk. Modifiers
+(31002, 4412, 11), -- P. Def. Modifiers
+(31002, 4413, 11), -- M. Def. Modifiers
+(31002, 4414, 2), -- Armor Type
+(31002, 4415, 3), -- Weapon Type
+(31002, 4416, 18), -- Races
 -- Here I Come
 (31003, 4045, 1), -- Resist Full Magic Attack
-(31003, 4408, 1), -- HP Increase (1x)
-(31003, 4409, 1), -- MP Increase (1x)
-(31003, 4410, 11), -- Average P. Atk.
-(31003, 4411, 11), -- Average M. Atk.
-(31003, 4412, 11), -- Average P. Def.
-(31003, 4413, 11), -- Average M. Def.
-(31003, 4414, 2), -- Standard Type
-(31003, 4415, 3), -- One-handed Sword
-(31003, 4416, 7), -- Spirits
+(31003, 4408, 1), -- HP Modifiers
+(31003, 4409, 1), -- MP Modifiers
+(31003, 4410, 11), -- P. Atk. Modifiers
+(31003, 4411, 11), -- M. Atk. Modifiers
+(31003, 4412, 11), -- P. Def. Modifiers
+(31003, 4413, 11), -- M. Def. Modifiers
+(31003, 4414, 2), -- Armor Type
+(31003, 4415, 3), -- Weapon Type
+(31003, 4416, 7), -- Races
 -- Half Moon Love
 (31004, 4045, 1), -- Resist Full Magic Attack
-(31004, 4408, 1), -- HP Increase (1x)
-(31004, 4409, 1), -- MP Increase (1x)
-(31004, 4410, 11), -- Average P. Atk.
-(31004, 4411, 11), -- Average M. Atk.
-(31004, 4412, 11), -- Average P. Def.
-(31004, 4413, 11), -- Average M. Def.
-(31004, 4414, 2), -- Standard Type
-(31004, 4415, 3), -- One-handed Sword
-(31004, 4416, 7), -- Spirits
+(31004, 4408, 1), -- HP Modifiers
+(31004, 4409, 1), -- MP Modifiers
+(31004, 4410, 11), -- P. Atk. Modifiers
+(31004, 4411, 11), -- M. Atk. Modifiers
+(31004, 4412, 11), -- P. Def. Modifiers
+(31004, 4413, 11), -- M. Def. Modifiers
+(31004, 4414, 2), -- Armor Type
+(31004, 4415, 3), -- Weapon Type
+(31004, 4416, 7), -- Races
 -- Everlasting
 (31005, 4045, 1), -- Resist Full Magic Attack
-(31005, 4390, 1), -- Mystic Immunity
-(31005, 4408, 1), -- HP Increase (1x)
-(31005, 4409, 1), -- MP Increase (1x)
-(31005, 4410, 11), -- Average P. Atk.
-(31005, 4411, 11), -- Average M. Atk.
-(31005, 4412, 11), -- Average P. Def.
-(31005, 4413, 11), -- Average M. Def.
-(31005, 4414, 2), -- Standard Type
-(31005, 4415, 3), -- One-handed Sword
-(31005, 4416, 2), -- Magic Creatures
+(31005, 4390, 1), -- NPC Abnormal Immunity
+(31005, 4408, 1), -- HP Modifiers
+(31005, 4409, 1), -- MP Modifiers
+(31005, 4410, 11), -- P. Atk. Modifiers
+(31005, 4411, 11), -- M. Atk. Modifiers
+(31005, 4412, 11), -- P. Def. Modifiers
+(31005, 4413, 11), -- M. Def. Modifiers
+(31005, 4414, 2), -- Armor Type
+(31005, 4415, 3), -- Weapon Type
+(31005, 4416, 2), -- Races
 -- Dark Side of the Moon
 (31006, 4045, 1), -- Resist Full Magic Attack
-(31006, 4408, 1), -- HP Increase (1x)
-(31006, 4409, 1), -- MP Increase (1x)
-(31006, 4410, 11), -- Average P. Atk.
-(31006, 4411, 11), -- Average M. Atk.
-(31006, 4412, 11), -- Average P. Def.
-(31006, 4413, 11), -- Average M. Def.
-(31006, 4414, 2), -- Standard Type
-(31006, 4415, 3), -- One-handed Sword
-(31006, 4416, 9), -- Demons
+(31006, 4408, 1), -- HP Modifiers
+(31006, 4409, 1), -- MP Modifiers
+(31006, 4410, 11), -- P. Atk. Modifiers
+(31006, 4411, 11), -- M. Atk. Modifiers
+(31006, 4412, 11), -- P. Def. Modifiers
+(31006, 4413, 11), -- M. Def. Modifiers
+(31006, 4414, 2), -- Armor Type
+(31006, 4415, 3), -- Weapon Type
+(31006, 4416, 9), -- Races
 -- Wind Rider
 (31007, 4045, 1), -- Resist Full Magic Attack
-(31007, 4408, 1), -- HP Increase (1x)
-(31007, 4409, 1), -- MP Increase (1x)
-(31007, 4410, 11), -- Average P. Atk.
-(31007, 4411, 11), -- Average M. Atk.
-(31007, 4412, 11), -- Average P. Def.
-(31007, 4413, 11), -- Average M. Def.
-(31007, 4414, 2), -- Standard Type
-(31007, 4415, 3), -- One-handed Sword
-(31007, 4416, 7), -- Spirits
+(31007, 4408, 1), -- HP Modifiers
+(31007, 4409, 1), -- MP Modifiers
+(31007, 4410, 11), -- P. Atk. Modifiers
+(31007, 4411, 11), -- M. Atk. Modifiers
+(31007, 4412, 11), -- P. Def. Modifiers
+(31007, 4413, 11), -- M. Def. Modifiers
+(31007, 4414, 2), -- Armor Type
+(31007, 4415, 3), -- Weapon Type
+(31007, 4416, 7), -- Races
 -- Shooting Star
 (31008, 4045, 1), -- Resist Full Magic Attack
-(31008, 4408, 1), -- HP Increase (1x)
-(31008, 4409, 1), -- MP Increase (1x)
-(31008, 4410, 11), -- Average P. Atk.
-(31008, 4411, 11), -- Average M. Atk.
-(31008, 4412, 11), -- Average P. Def.
-(31008, 4413, 11), -- Average M. Def.
-(31008, 4414, 2), -- Standard Type
-(31008, 4415, 3), -- One-handed Sword
-(31008, 4416, 7), -- Spirits
+(31008, 4408, 1), -- HP Modifiers
+(31008, 4409, 1), -- MP Modifiers
+(31008, 4410, 11), -- P. Atk. Modifiers
+(31008, 4411, 11), -- M. Atk. Modifiers
+(31008, 4412, 11), -- P. Def. Modifiers
+(31008, 4413, 11), -- M. Def. Modifiers
+(31008, 4414, 2), -- Armor Type
+(31008, 4415, 3), -- Weapon Type
+(31008, 4416, 7), -- Races
 -- Cyclone Thunder
 (31009, 4045, 1), -- Resist Full Magic Attack
-(31009, 4408, 1), -- HP Increase (1x)
-(31009, 4409, 1), -- MP Increase (1x)
-(31009, 4410, 11), -- Average P. Atk.
-(31009, 4411, 11), -- Average M. Atk.
-(31009, 4412, 11), -- Average P. Def.
-(31009, 4413, 11), -- Average M. Def.
-(31009, 4414, 2), -- Standard Type
-(31009, 4415, 3), -- One-handed Sword
-(31009, 4416, 4), -- Animals
+(31009, 4408, 1), -- HP Modifiers
+(31009, 4409, 1), -- MP Modifiers
+(31009, 4410, 11), -- P. Atk. Modifiers
+(31009, 4411, 11), -- M. Atk. Modifiers
+(31009, 4412, 11), -- P. Def. Modifiers
+(31009, 4413, 11), -- M. Def. Modifiers
+(31009, 4414, 2), -- Armor Type
+(31009, 4415, 3), -- Weapon Type
+(31009, 4416, 4), -- Races
 -- Hungry Baby
 (31010, 4045, 1), -- Resist Full Magic Attack
-(31010, 4408, 1), -- HP Increase (1x)
-(31010, 4409, 1), -- MP Increase (1x)
-(31010, 4410, 11), -- Average P. Atk.
-(31010, 4411, 11), -- Average M. Atk.
-(31010, 4412, 11), -- Average P. Def.
-(31010, 4413, 11), -- Average M. Def.
-(31010, 4414, 2), -- Standard Type
-(31010, 4415, 3), -- One-handed Sword
-(31010, 4416, 10), -- Dragons
+(31010, 4408, 1), -- HP Modifiers
+(31010, 4409, 1), -- MP Modifiers
+(31010, 4410, 11), -- P. Atk. Modifiers
+(31010, 4411, 11), -- M. Atk. Modifiers
+(31010, 4412, 11), -- P. Def. Modifiers
+(31010, 4413, 11), -- M. Def. Modifiers
+(31010, 4414, 2), -- Armor Type
+(31010, 4415, 3), -- Weapon Type
+(31010, 4416, 10), -- Races
 -- Salty Dog
 (31011, 4045, 1), -- Resist Full Magic Attack
-(31011, 4408, 1), -- HP Increase (1x)
-(31011, 4409, 1), -- MP Increase (1x)
-(31011, 4410, 11), -- Average P. Atk.
-(31011, 4411, 11), -- Average M. Atk.
-(31011, 4412, 11), -- Average P. Def.
-(31011, 4413, 11), -- Average M. Def.
-(31011, 4414, 2), -- Standard Type
-(31011, 4415, 3), -- One-handed Sword
-(31011, 4416, 4), -- Animals
+(31011, 4408, 1), -- HP Modifiers
+(31011, 4409, 1), -- MP Modifiers
+(31011, 4410, 11), -- P. Atk. Modifiers
+(31011, 4411, 11), -- M. Atk. Modifiers
+(31011, 4412, 11), -- P. Def. Modifiers
+(31011, 4413, 11), -- M. Def. Modifiers
+(31011, 4414, 2), -- Armor Type
+(31011, 4415, 3), -- Weapon Type
+(31011, 4416, 4), -- Races
 -- Raging Revolution
 (31012, 4045, 1), -- Resist Full Magic Attack
-(31012, 4408, 1), -- HP Increase (1x)
-(31012, 4409, 1), -- MP Increase (1x)
-(31012, 4410, 11), -- Average P. Atk.
-(31012, 4411, 11), -- Average M. Atk.
-(31012, 4412, 11), -- Average P. Def.
-(31012, 4413, 11), -- Average M. Def.
-(31012, 4414, 2), -- Standard Type
-(31012, 4415, 3), -- One-handed Sword
-(31012, 4416, 7), -- Spirits
+(31012, 4408, 1), -- HP Modifiers
+(31012, 4409, 1), -- MP Modifiers
+(31012, 4410, 11), -- P. Atk. Modifiers
+(31012, 4411, 11), -- M. Atk. Modifiers
+(31012, 4412, 11), -- P. Def. Modifiers
+(31012, 4413, 11), -- M. Def. Modifiers
+(31012, 4414, 2), -- Armor Type
+(31012, 4415, 3), -- Weapon Type
+(31012, 4416, 7), -- Races
 -- Valentine Blue
 (31013, 4045, 1), -- Resist Full Magic Attack
-(31013, 4408, 1), -- HP Increase (1x)
-(31013, 4409, 1), -- MP Increase (1x)
-(31013, 4410, 11), -- Average P. Atk.
-(31013, 4411, 11), -- Average M. Atk.
-(31013, 4412, 11), -- Average P. Def.
-(31013, 4413, 11), -- Average M. Def.
-(31013, 4414, 2), -- Standard Type
-(31013, 4415, 3), -- One-handed Sword
-(31013, 4416, 7), -- Spirits
+(31013, 4408, 1), -- HP Modifiers
+(31013, 4409, 1), -- MP Modifiers
+(31013, 4410, 11), -- P. Atk. Modifiers
+(31013, 4411, 11), -- M. Atk. Modifiers
+(31013, 4412, 11), -- P. Def. Modifiers
+(31013, 4413, 11), -- M. Def. Modifiers
+(31013, 4414, 2), -- Armor Type
+(31013, 4415, 3), -- Weapon Type
+(31013, 4416, 7), -- Races
 -- Light My Fire
 (31014, 4045, 1), -- Resist Full Magic Attack
-(31014, 4390, 1), -- Mystic Immunity
-(31014, 4408, 1), -- HP Increase (1x)
-(31014, 4409, 1), -- MP Increase (1x)
-(31014, 4410, 11), -- Average P. Atk.
-(31014, 4411, 11), -- Average M. Atk.
-(31014, 4412, 11), -- Average P. Def.
-(31014, 4413, 11), -- Average M. Def.
-(31014, 4414, 2), -- Standard Type
-(31014, 4415, 3), -- One-handed Sword
-(31014, 4416, 2), -- Magic Creatures
+(31014, 4390, 1), -- NPC Abnormal Immunity
+(31014, 4408, 1), -- HP Modifiers
+(31014, 4409, 1), -- MP Modifiers
+(31014, 4410, 11), -- P. Atk. Modifiers
+(31014, 4411, 11), -- M. Atk. Modifiers
+(31014, 4412, 11), -- P. Def. Modifiers
+(31014, 4413, 11), -- M. Def. Modifiers
+(31014, 4414, 2), -- Armor Type
+(31014, 4415, 3), -- Weapon Type
+(31014, 4416, 2), -- Races
 -- Red Bullet
 (31015, 4045, 1), -- Resist Full Magic Attack
-(31015, 4408, 1), -- HP Increase (1x)
-(31015, 4409, 1), -- MP Increase (1x)
-(31015, 4410, 11), -- Average P. Atk.
-(31015, 4411, 11), -- Average M. Atk.
-(31015, 4412, 11), -- Average P. Def.
-(31015, 4413, 11), -- Average M. Def.
-(31015, 4414, 2), -- Standard Type
-(31015, 4415, 3), -- One-handed Sword
-(31015, 4416, 4), -- Animals
+(31015, 4408, 1), -- HP Modifiers
+(31015, 4409, 1), -- MP Modifiers
+(31015, 4410, 11), -- P. Atk. Modifiers
+(31015, 4411, 11), -- M. Atk. Modifiers
+(31015, 4412, 11), -- P. Def. Modifiers
+(31015, 4413, 11), -- M. Def. Modifiers
+(31015, 4414, 2), -- Armor Type
+(31015, 4415, 3), -- Weapon Type
+(31015, 4416, 4), -- Races
 -- Shining Silver
 (31016, 4045, 1), -- Resist Full Magic Attack
-(31016, 4408, 1), -- HP Increase (1x)
-(31016, 4409, 1), -- MP Increase (1x)
-(31016, 4410, 11), -- Average P. Atk.
-(31016, 4411, 11), -- Average M. Atk.
-(31016, 4412, 11), -- Average P. Def.
-(31016, 4413, 11), -- Average M. Def.
-(31016, 4414, 2), -- Standard Type
-(31016, 4415, 3), -- One-handed Sword
-(31016, 4416, 4), -- Animals
+(31016, 4408, 1), -- HP Modifiers
+(31016, 4409, 1), -- MP Modifiers
+(31016, 4410, 11), -- P. Atk. Modifiers
+(31016, 4411, 11), -- M. Atk. Modifiers
+(31016, 4412, 11), -- P. Def. Modifiers
+(31016, 4413, 11), -- M. Def. Modifiers
+(31016, 4414, 2), -- Armor Type
+(31016, 4415, 3), -- Weapon Type
+(31016, 4416, 4), -- Races
 -- Over the top
 (31017, 4045, 1), -- Resist Full Magic Attack
-(31017, 4408, 1), -- HP Increase (1x)
-(31017, 4409, 1), -- MP Increase (1x)
-(31017, 4410, 11), -- Average P. Atk.
-(31017, 4411, 11), -- Average M. Atk.
-(31017, 4412, 11), -- Average P. Def.
-(31017, 4413, 11), -- Average M. Def.
-(31017, 4414, 2), -- Standard Type
-(31017, 4415, 3), -- One-handed Sword
-(31017, 4416, 12), -- Bugs
+(31017, 4408, 1), -- HP Modifiers
+(31017, 4409, 1), -- MP Modifiers
+(31017, 4410, 11), -- P. Atk. Modifiers
+(31017, 4411, 11), -- M. Atk. Modifiers
+(31017, 4412, 11), -- P. Def. Modifiers
+(31017, 4413, 11), -- M. Def. Modifiers
+(31017, 4414, 2), -- Armor Type
+(31017, 4415, 3), -- Weapon Type
+(31017, 4416, 12), -- Races
 -- Royal Straight
 (31018, 4045, 1), -- Resist Full Magic Attack
-(31018, 4390, 1), -- Mystic Immunity
-(31018, 4408, 1), -- HP Increase (1x)
-(31018, 4409, 1), -- MP Increase (1x)
-(31018, 4410, 11), -- Average P. Atk.
-(31018, 4411, 11), -- Average M. Atk.
-(31018, 4412, 11), -- Average P. Def.
-(31018, 4413, 11), -- Average M. Def.
-(31018, 4414, 2), -- Standard Type
-(31018, 4415, 3), -- One-handed Sword
-(31018, 4416, 2), -- Magic Creatures
+(31018, 4390, 1), -- NPC Abnormal Immunity
+(31018, 4408, 1), -- HP Modifiers
+(31018, 4409, 1), -- MP Modifiers
+(31018, 4410, 11), -- P. Atk. Modifiers
+(31018, 4411, 11), -- M. Atk. Modifiers
+(31018, 4412, 11), -- P. Def. Modifiers
+(31018, 4413, 11), -- M. Def. Modifiers
+(31018, 4414, 2), -- Armor Type
+(31018, 4415, 3), -- Weapon Type
+(31018, 4416, 2), -- Races
 -- All Seven
 (31019, 4045, 1), -- Resist Full Magic Attack
-(31019, 4408, 1), -- HP Increase (1x)
-(31019, 4409, 1), -- MP Increase (1x)
-(31019, 4410, 11), -- Average P. Atk.
-(31019, 4411, 11), -- Average M. Atk.
-(31019, 4412, 11), -- Average P. Def.
-(31019, 4413, 11), -- Average M. Def.
-(31019, 4414, 2), -- Standard Type
-(31019, 4415, 3), -- One-handed Sword
-(31019, 4416, 6), -- Humanoids
+(31019, 4408, 1), -- HP Modifiers
+(31019, 4409, 1), -- MP Modifiers
+(31019, 4410, 11), -- P. Atk. Modifiers
+(31019, 4411, 11), -- M. Atk. Modifiers
+(31019, 4412, 11), -- P. Def. Modifiers
+(31019, 4413, 11), -- M. Def. Modifiers
+(31019, 4414, 2), -- Armor Type
+(31019, 4415, 3), -- Weapon Type
+(31019, 4416, 6), -- Races
 -- Nasty Green
 (31020, 4045, 1), -- Resist Full Magic Attack
-(31020, 4408, 1), -- HP Increase (1x)
-(31020, 4409, 1), -- MP Increase (1x)
-(31020, 4410, 11), -- Average P. Atk.
-(31020, 4411, 11), -- Average M. Atk.
-(31020, 4412, 11), -- Average P. Def.
-(31020, 4413, 11), -- Average M. Def.
-(31020, 4414, 2), -- Standard Type
-(31020, 4415, 3), -- One-handed Sword
-(31020, 4416, 13), -- Fairies
+(31020, 4408, 1), -- HP Modifiers
+(31020, 4409, 1), -- MP Modifiers
+(31020, 4410, 11), -- P. Atk. Modifiers
+(31020, 4411, 11), -- M. Atk. Modifiers
+(31020, 4412, 11), -- P. Def. Modifiers
+(31020, 4413, 11), -- M. Def. Modifiers
+(31020, 4414, 2), -- Armor Type
+(31020, 4415, 3), -- Weapon Type
+(31020, 4416, 13), -- Races
 -- Shortcut
 (31021, 4045, 1), -- Resist Full Magic Attack
-(31021, 4408, 1), -- HP Increase (1x)
-(31021, 4409, 1), -- MP Increase (1x)
-(31021, 4410, 11), -- Average P. Atk.
-(31021, 4411, 11), -- Average M. Atk.
-(31021, 4412, 11), -- Average P. Def.
-(31021, 4413, 11), -- Average M. Def.
-(31021, 4414, 2), -- Standard Type
-(31021, 4415, 3), -- One-handed Sword
-(31021, 4416, 6), -- Humanoids
+(31021, 4408, 1), -- HP Modifiers
+(31021, 4409, 1), -- MP Modifiers
+(31021, 4410, 11), -- P. Atk. Modifiers
+(31021, 4411, 11), -- M. Atk. Modifiers
+(31021, 4412, 11), -- P. Def. Modifiers
+(31021, 4413, 11), -- M. Def. Modifiers
+(31021, 4414, 2), -- Armor Type
+(31021, 4415, 3), -- Weapon Type
+(31021, 4416, 6), -- Races
 -- Typhoon Tiger
 (31022, 4045, 1), -- Resist Full Magic Attack
-(31022, 4408, 1), -- HP Increase (1x)
-(31022, 4409, 1), -- MP Increase (1x)
-(31022, 4410, 11), -- Average P. Atk.
-(31022, 4411, 11), -- Average M. Atk.
-(31022, 4412, 11), -- Average P. Def.
-(31022, 4413, 11), -- Average M. Def.
-(31022, 4414, 2), -- Standard Type
-(31022, 4415, 3), -- One-handed Sword
-(31022, 4416, 12), -- Bugs
+(31022, 4408, 1), -- HP Modifiers
+(31022, 4409, 1), -- MP Modifiers
+(31022, 4410, 11), -- P. Atk. Modifiers
+(31022, 4411, 11), -- M. Atk. Modifiers
+(31022, 4412, 11), -- P. Def. Modifiers
+(31022, 4413, 11), -- M. Def. Modifiers
+(31022, 4414, 2), -- Armor Type
+(31022, 4415, 3), -- Weapon Type
+(31022, 4416, 12), -- Races
 -- Red Hot
 (31023, 4045, 1), -- Resist Full Magic Attack
-(31023, 4408, 1), -- HP Increase (1x)
-(31023, 4409, 1), -- MP Increase (1x)
-(31023, 4410, 11), -- Average P. Atk.
-(31023, 4411, 11), -- Average M. Atk.
-(31023, 4412, 11), -- Average P. Def.
-(31023, 4413, 11), -- Average M. Def.
-(31023, 4414, 2), -- Standard Type
-(31023, 4415, 3), -- One-handed Sword
-(31023, 4416, 7), -- Spirits
+(31023, 4408, 1), -- HP Modifiers
+(31023, 4409, 1), -- MP Modifiers
+(31023, 4410, 11), -- P. Atk. Modifiers
+(31023, 4411, 11), -- M. Atk. Modifiers
+(31023, 4412, 11), -- P. Def. Modifiers
+(31023, 4413, 11), -- M. Def. Modifiers
+(31023, 4414, 2), -- Armor Type
+(31023, 4415, 3), -- Weapon Type
+(31023, 4416, 7), -- Races
 -- Galaxy Express
 (31024, 4045, 1), -- Resist Full Magic Attack
-(31024, 4408, 1), -- HP Increase (1x)
-(31024, 4409, 1), -- MP Increase (1x)
-(31024, 4410, 11), -- Average P. Atk.
-(31024, 4411, 11), -- Average M. Atk.
-(31024, 4412, 11), -- Average P. Def.
-(31024, 4413, 11), -- Average M. Def.
-(31024, 4414, 2), -- Standard Type
-(31024, 4415, 3), -- One-handed Sword
-(31024, 4416, 3), -- Beasts
+(31024, 4408, 1), -- HP Modifiers
+(31024, 4409, 1), -- MP Modifiers
+(31024, 4410, 11), -- P. Atk. Modifiers
+(31024, 4411, 11), -- M. Atk. Modifiers
+(31024, 4412, 11), -- P. Def. Modifiers
+(31024, 4413, 11), -- M. Def. Modifiers
+(31024, 4414, 2), -- Armor Type
+(31024, 4415, 3), -- Weapon Type
+(31024, 4416, 3), -- Races
 -- Best Condition
 (31025, 4045, 1), -- Resist Full Magic Attack
-(31025, 4408, 1), -- HP Increase (1x)
-(31025, 4409, 1), -- MP Increase (1x)
-(31025, 4410, 11), -- Average P. Atk.
-(31025, 4411, 11), -- Average M. Atk.
-(31025, 4412, 11), -- Average P. Def.
-(31025, 4413, 11), -- Average M. Def.
-(31025, 4414, 2), -- Standard Type
-(31025, 4415, 3), -- One-handed Sword
-(31025, 4416, 5), -- Plants
+(31025, 4408, 1), -- HP Modifiers
+(31025, 4409, 1), -- MP Modifiers
+(31025, 4410, 11), -- P. Atk. Modifiers
+(31025, 4411, 11), -- M. Atk. Modifiers
+(31025, 4412, 11), -- P. Def. Modifiers
+(31025, 4413, 11), -- M. Def. Modifiers
+(31025, 4414, 2), -- Armor Type
+(31025, 4415, 3), -- Weapon Type
+(31025, 4416, 5), -- Races
 -- Albatross
 (31026, 4045, 1), -- Resist Full Magic Attack
-(31026, 4408, 1), -- HP Increase (1x)
-(31026, 4409, 1), -- MP Increase (1x)
-(31026, 4410, 11), -- Average P. Atk.
-(31026, 4411, 11), -- Average M. Atk.
-(31026, 4412, 11), -- Average P. Def.
-(31026, 4413, 11), -- Average M. Def.
-(31026, 4414, 2), -- Standard Type
-(31026, 4415, 3), -- One-handed Sword
-(31026, 4416, 6), -- Humanoids
+(31026, 4408, 1), -- HP Modifiers
+(31026, 4409, 1), -- MP Modifiers
+(31026, 4410, 11), -- P. Atk. Modifiers
+(31026, 4411, 11), -- M. Atk. Modifiers
+(31026, 4412, 11), -- P. Def. Modifiers
+(31026, 4413, 11), -- M. Def. Modifiers
+(31026, 4414, 2), -- Armor Type
+(31026, 4415, 3), -- Weapon Type
+(31026, 4416, 6), -- Races
 -- Coffer of the Dead
 (31027, 4045, 1), -- Resist Full Magic Attack
-(31027, 4390, 1), -- Mystic Immunity
-(31027, 4408, 1), -- HP Increase (1x)
-(31027, 4409, 1), -- MP Increase (1x)
-(31027, 4410, 11), -- Average P. Atk.
-(31027, 4411, 11), -- Average M. Atk.
-(31027, 4412, 11), -- Average P. Def.
-(31027, 4413, 11), -- Average M. Def.
-(31027, 4414, 2), -- Standard Type
-(31027, 4415, 3), -- One-handed Sword
-(31027, 4416, 19), -- Others
+(31027, 4390, 1), -- NPC Abnormal Immunity
+(31027, 4408, 1), -- HP Modifiers
+(31027, 4409, 1), -- MP Modifiers
+(31027, 4410, 11), -- P. Atk. Modifiers
+(31027, 4411, 11), -- M. Atk. Modifiers
+(31027, 4412, 11), -- P. Def. Modifiers
+(31027, 4413, 11), -- M. Def. Modifiers
+(31027, 4414, 2), -- Armor Type
+(31027, 4415, 3), -- Weapon Type
+(31027, 4416, 19), -- Races
 -- Chest of Kernon
 (31028, 4045, 1), -- Resist Full Magic Attack
-(31028, 4390, 1), -- Mystic Immunity
-(31028, 4408, 1), -- HP Increase (1x)
-(31028, 4409, 1), -- MP Increase (1x)
-(31028, 4410, 11), -- Average P. Atk.
-(31028, 4411, 11), -- Average M. Atk.
-(31028, 4412, 11), -- Average P. Def.
-(31028, 4413, 11), -- Average M. Def.
-(31028, 4414, 2), -- Standard Type
-(31028, 4415, 3), -- One-handed Sword
-(31028, 4416, 19), -- Others
+(31028, 4390, 1), -- NPC Abnormal Immunity
+(31028, 4408, 1), -- HP Modifiers
+(31028, 4409, 1), -- MP Modifiers
+(31028, 4410, 11), -- P. Atk. Modifiers
+(31028, 4411, 11), -- M. Atk. Modifiers
+(31028, 4412, 11), -- P. Def. Modifiers
+(31028, 4413, 11), -- M. Def. Modifiers
+(31028, 4414, 2), -- Armor Type
+(31028, 4415, 3), -- Weapon Type
+(31028, 4416, 19), -- Races
 -- Chest of Golkonda
 (31029, 4045, 1), -- Resist Full Magic Attack
-(31029, 4390, 1), -- Mystic Immunity
-(31029, 4408, 1), -- HP Increase (1x)
-(31029, 4409, 1), -- MP Increase (1x)
-(31029, 4410, 11), -- Average P. Atk.
-(31029, 4411, 11), -- Average M. Atk.
-(31029, 4412, 11), -- Average P. Def.
-(31029, 4413, 11), -- Average M. Def.
-(31029, 4414, 2), -- Standard Type
-(31029, 4415, 3), -- One-handed Sword
-(31029, 4416, 19), -- Others
+(31029, 4390, 1), -- NPC Abnormal Immunity
+(31029, 4408, 1), -- HP Modifiers
+(31029, 4409, 1), -- MP Modifiers
+(31029, 4410, 11), -- P. Atk. Modifiers
+(31029, 4411, 11), -- M. Atk. Modifiers
+(31029, 4412, 11), -- P. Def. Modifiers
+(31029, 4413, 11), -- M. Def. Modifiers
+(31029, 4414, 2), -- Armor Type
+(31029, 4415, 3), -- Weapon Type
+(31029, 4416, 19), -- Races
 -- Hallate's Chest
 (31030, 4045, 1), -- Resist Full Magic Attack
-(31030, 4390, 1), -- Mystic Immunity
-(31030, 4408, 1), -- HP Increase (1x)
-(31030, 4409, 1), -- MP Increase (1x)
-(31030, 4410, 11), -- Average P. Atk.
-(31030, 4411, 11), -- Average M. Atk.
-(31030, 4412, 11), -- Average P. Def.
-(31030, 4413, 11), -- Average M. Def.
-(31030, 4414, 2), -- Standard Type
-(31030, 4415, 3), -- One-handed Sword
-(31030, 4416, 19), -- Others
+(31030, 4390, 1), -- NPC Abnormal Immunity
+(31030, 4408, 1), -- HP Modifiers
+(31030, 4409, 1), -- MP Modifiers
+(31030, 4410, 11), -- P. Atk. Modifiers
+(31030, 4411, 11), -- M. Atk. Modifiers
+(31030, 4412, 11), -- P. Def. Modifiers
+(31030, 4413, 11), -- M. Def. Modifiers
+(31030, 4414, 2), -- Armor Type
+(31030, 4415, 3), -- Weapon Type
+(31030, 4416, 19), -- Races
 -- Broadcasting Tower
 (31031, 4045, 1), -- Resist Full Magic Attack
-(31031, 4390, 1), -- Mystic Immunity
-(31031, 4408, 1), -- HP Increase (1x)
-(31031, 4409, 1), -- MP Increase (1x)
-(31031, 4410, 11), -- Average P. Atk.
-(31031, 4411, 11), -- Average M. Atk.
-(31031, 4412, 11), -- Average P. Def.
-(31031, 4413, 11), -- Average M. Def.
-(31031, 4414, 2), -- Standard Type
-(31031, 4415, 3), -- One-handed Sword
-(31031, 4416, 19), -- Others
+(31031, 4390, 1), -- NPC Abnormal Immunity
+(31031, 4408, 1), -- HP Modifiers
+(31031, 4409, 1), -- MP Modifiers
+(31031, 4410, 11), -- P. Atk. Modifiers
+(31031, 4411, 11), -- M. Atk. Modifiers
+(31031, 4412, 11), -- P. Def. Modifiers
+(31031, 4413, 11), -- M. Def. Modifiers
+(31031, 4414, 2), -- Armor Type
+(31031, 4415, 3), -- Weapon Type
+(31031, 4416, 19), -- Races
 -- Guard
 (31032, 4045, 1), -- Resist Full Magic Attack
-(31032, 4408, 1), -- HP Increase (1x)
-(31032, 4409, 1), -- MP Increase (1x)
-(31032, 4410, 16), -- Very Strong P. Atk.
-(31032, 4411, 16), -- Very Strong M. Atk.
-(31032, 4412, 16), -- Very Strong P. Def.
-(31032, 4413, 16), -- Very Strong M. Def.
-(31032, 4414, 2), -- Standard Type
-(31032, 4415, 9), -- Bows
-(31032, 4416, 14), -- Humans
+(31032, 4408, 1), -- HP Modifiers
+(31032, 4409, 1), -- MP Modifiers
+(31032, 4410, 16), -- P. Atk. Modifiers
+(31032, 4411, 16), -- M. Atk. Modifiers
+(31032, 4412, 16), -- P. Def. Modifiers
+(31032, 4413, 16), -- M. Def. Modifiers
+(31032, 4414, 2), -- Armor Type
+(31032, 4415, 9), -- Weapon Type
+(31032, 4416, 14), -- Races
 -- Sentinel
 (31033, 4045, 1), -- Resist Full Magic Attack
-(31033, 4408, 1), -- HP Increase (1x)
-(31033, 4409, 1), -- MP Increase (1x)
-(31033, 4410, 16), -- Very Strong P. Atk.
-(31033, 4411, 16), -- Very Strong M. Atk.
-(31033, 4412, 16), -- Very Strong P. Def.
-(31033, 4413, 16), -- Very Strong M. Def.
-(31033, 4414, 2), -- Standard Type
-(31033, 4415, 9), -- Bows
-(31033, 4416, 15), -- Elves
+(31033, 4408, 1), -- HP Modifiers
+(31033, 4409, 1), -- MP Modifiers
+(31033, 4410, 16), -- P. Atk. Modifiers
+(31033, 4411, 16), -- M. Atk. Modifiers
+(31033, 4412, 16), -- P. Def. Modifiers
+(31033, 4413, 16), -- M. Def. Modifiers
+(31033, 4414, 2), -- Armor Type
+(31033, 4415, 9), -- Weapon Type
+(31033, 4416, 15), -- Races
 -- Sentry
 (31034, 4045, 1), -- Resist Full Magic Attack
-(31034, 4408, 1), -- HP Increase (1x)
-(31034, 4409, 1), -- MP Increase (1x)
-(31034, 4410, 16), -- Very Strong P. Atk.
-(31034, 4411, 16), -- Very Strong M. Atk.
-(31034, 4412, 16), -- Very Strong P. Def.
-(31034, 4413, 16), -- Very Strong M. Def.
-(31034, 4414, 2), -- Standard Type
-(31034, 4415, 9), -- Bows
-(31034, 4416, 16), -- Dark Elves
+(31034, 4408, 1), -- HP Modifiers
+(31034, 4409, 1), -- MP Modifiers
+(31034, 4410, 16), -- P. Atk. Modifiers
+(31034, 4411, 16), -- M. Atk. Modifiers
+(31034, 4412, 16), -- P. Def. Modifiers
+(31034, 4413, 16), -- M. Def. Modifiers
+(31034, 4414, 2), -- Armor Type
+(31034, 4415, 9), -- Weapon Type
+(31034, 4416, 16), -- Races
 -- Defender
 (31035, 4045, 1), -- Resist Full Magic Attack
-(31035, 4408, 1), -- HP Increase (1x)
-(31035, 4409, 1), -- MP Increase (1x)
-(31035, 4410, 16), -- Very Strong P. Atk.
-(31035, 4411, 16), -- Very Strong M. Atk.
-(31035, 4412, 16), -- Very Strong P. Def.
-(31035, 4413, 16), -- Very Strong M. Def.
-(31035, 4414, 2), -- Standard Type
-(31035, 4415, 9), -- Bows
-(31035, 4416, 18), -- Dwarves
+(31035, 4408, 1), -- HP Modifiers
+(31035, 4409, 1), -- MP Modifiers
+(31035, 4410, 16), -- P. Atk. Modifiers
+(31035, 4411, 16), -- M. Atk. Modifiers
+(31035, 4412, 16), -- P. Def. Modifiers
+(31035, 4413, 16), -- M. Def. Modifiers
+(31035, 4414, 2), -- Armor Type
+(31035, 4415, 9), -- Weapon Type
+(31035, 4416, 18), -- Races
 -- Centurion
 (31036, 4045, 1), -- Resist Full Magic Attack
-(31036, 4408, 1), -- HP Increase (1x)
-(31036, 4409, 1), -- MP Increase (1x)
-(31036, 4410, 16), -- Very Strong P. Atk.
-(31036, 4411, 16), -- Very Strong M. Atk.
-(31036, 4412, 16), -- Very Strong P. Def.
-(31036, 4413, 16), -- Very Strong M. Def.
-(31036, 4414, 2), -- Standard Type
-(31036, 4415, 9), -- Bows
-(31036, 4416, 17), -- Orcs
+(31036, 4408, 1), -- HP Modifiers
+(31036, 4409, 1), -- MP Modifiers
+(31036, 4410, 16), -- P. Atk. Modifiers
+(31036, 4411, 16), -- M. Atk. Modifiers
+(31036, 4412, 16), -- P. Def. Modifiers
+(31036, 4413, 16), -- M. Def. Modifiers
+(31036, 4414, 2), -- Armor Type
+(31036, 4415, 9), -- Weapon Type
+(31036, 4416, 17), -- Races
 -- Kantabilon
 (31042, 4045, 1), -- Resist Full Magic Attack
-(31042, 4408, 1), -- HP Increase (1x)
-(31042, 4409, 1), -- MP Increase (1x)
-(31042, 4410, 11), -- Average P. Atk.
-(31042, 4411, 11), -- Average M. Atk.
-(31042, 4412, 11), -- Average P. Def.
-(31042, 4413, 11), -- Average M. Def.
-(31042, 4414, 2), -- Standard Type
-(31042, 4415, 3), -- One-handed Sword
-(31042, 4416, 18), -- Dwarves
+(31042, 4408, 1), -- HP Modifiers
+(31042, 4409, 1), -- MP Modifiers
+(31042, 4410, 11), -- P. Atk. Modifiers
+(31042, 4411, 11), -- M. Atk. Modifiers
+(31042, 4412, 11), -- P. Def. Modifiers
+(31042, 4413, 11), -- M. Def. Modifiers
+(31042, 4414, 2), -- Armor Type
+(31042, 4415, 3), -- Weapon Type
+(31042, 4416, 18), -- Races
 -- Octavis
 (31043, 4045, 1), -- Resist Full Magic Attack
-(31043, 4408, 1), -- HP Increase (1x)
-(31043, 4409, 1), -- MP Increase (1x)
-(31043, 4410, 11), -- Average P. Atk.
-(31043, 4411, 11), -- Average M. Atk.
-(31043, 4412, 11), -- Average P. Def.
-(31043, 4413, 11), -- Average M. Def.
-(31043, 4414, 2), -- Standard Type
-(31043, 4415, 3), -- One-handed Sword
-(31043, 4416, 18), -- Dwarves
+(31043, 4408, 1), -- HP Modifiers
+(31043, 4409, 1), -- MP Modifiers
+(31043, 4410, 11), -- P. Atk. Modifiers
+(31043, 4411, 11), -- M. Atk. Modifiers
+(31043, 4412, 11), -- P. Def. Modifiers
+(31043, 4413, 11), -- M. Def. Modifiers
+(31043, 4414, 2), -- Armor Type
+(31043, 4415, 3), -- Weapon Type
+(31043, 4416, 18), -- Races
 -- Galman
 (31044, 4045, 1), -- Resist Full Magic Attack
-(31044, 4408, 1), -- HP Increase (1x)
-(31044, 4409, 1), -- MP Increase (1x)
-(31044, 4410, 11), -- Average P. Atk.
-(31044, 4411, 11), -- Average M. Atk.
-(31044, 4412, 11), -- Average P. Def.
-(31044, 4413, 11), -- Average M. Def.
-(31044, 4414, 2), -- Standard Type
-(31044, 4415, 3), -- One-handed Sword
-(31044, 4416, 18), -- Dwarves
+(31044, 4408, 1), -- HP Modifiers
+(31044, 4409, 1), -- MP Modifiers
+(31044, 4410, 11), -- P. Atk. Modifiers
+(31044, 4411, 11), -- M. Atk. Modifiers
+(31044, 4412, 11), -- P. Def. Modifiers
+(31044, 4413, 11), -- M. Def. Modifiers
+(31044, 4414, 2), -- Armor Type
+(31044, 4415, 3), -- Weapon Type
+(31044, 4416, 18), -- Races
 -- Kitzka
 (31045, 4045, 1), -- Resist Full Magic Attack
-(31045, 4408, 1), -- HP Increase (1x)
-(31045, 4409, 1), -- MP Increase (1x)
-(31045, 4410, 11), -- Average P. Atk.
-(31045, 4411, 11), -- Average M. Atk.
-(31045, 4412, 11), -- Average P. Def.
-(31045, 4413, 11), -- Average M. Def.
-(31045, 4414, 2), -- Standard Type
-(31045, 4415, 3), -- One-handed Sword
-(31045, 4416, 18), -- Dwarves
+(31045, 4408, 1), -- HP Modifiers
+(31045, 4409, 1), -- MP Modifiers
+(31045, 4410, 11), -- P. Atk. Modifiers
+(31045, 4411, 11), -- M. Atk. Modifiers
+(31045, 4412, 11), -- P. Def. Modifiers
+(31045, 4413, 11), -- M. Def. Modifiers
+(31045, 4414, 2), -- Armor Type
+(31045, 4415, 3), -- Weapon Type
+(31045, 4416, 18), -- Races
 -- Marsden
 (31046, 4045, 1), -- Resist Full Magic Attack
-(31046, 4408, 1), -- HP Increase (1x)
-(31046, 4409, 1), -- MP Increase (1x)
-(31046, 4410, 11), -- Average P. Atk.
-(31046, 4411, 11), -- Average M. Atk.
-(31046, 4412, 11), -- Average P. Def.
-(31046, 4413, 11), -- Average M. Def.
-(31046, 4414, 2), -- Standard Type
-(31046, 4415, 3), -- One-handed Sword
-(31046, 4416, 14), -- Humans
+(31046, 4408, 1), -- HP Modifiers
+(31046, 4409, 1), -- MP Modifiers
+(31046, 4410, 11), -- P. Atk. Modifiers
+(31046, 4411, 11), -- M. Atk. Modifiers
+(31046, 4412, 11), -- P. Def. Modifiers
+(31046, 4413, 11), -- M. Def. Modifiers
+(31046, 4414, 2), -- Armor Type
+(31046, 4415, 3), -- Weapon Type
+(31046, 4416, 14), -- Races
 -- Kell
 (31047, 4045, 1), -- Resist Full Magic Attack
-(31047, 4408, 1), -- HP Increase (1x)
-(31047, 4409, 1), -- MP Increase (1x)
-(31047, 4410, 11), -- Average P. Atk.
-(31047, 4411, 11), -- Average M. Atk.
-(31047, 4412, 11), -- Average P. Def.
-(31047, 4413, 11), -- Average M. Def.
-(31047, 4414, 2), -- Standard Type
-(31047, 4415, 3), -- One-handed Sword
-(31047, 4416, 14), -- Humans
+(31047, 4408, 1), -- HP Modifiers
+(31047, 4409, 1), -- MP Modifiers
+(31047, 4410, 11), -- P. Atk. Modifiers
+(31047, 4411, 11), -- M. Atk. Modifiers
+(31047, 4412, 11), -- P. Def. Modifiers
+(31047, 4413, 11), -- M. Def. Modifiers
+(31047, 4414, 2), -- Armor Type
+(31047, 4415, 3), -- Weapon Type
+(31047, 4416, 14), -- Races
 -- McDermott
 (31048, 4045, 1), -- Resist Full Magic Attack
-(31048, 4408, 1), -- HP Increase (1x)
-(31048, 4409, 1), -- MP Increase (1x)
-(31048, 4410, 11), -- Average P. Atk.
-(31048, 4411, 11), -- Average M. Atk.
-(31048, 4412, 11), -- Average P. Def.
-(31048, 4413, 11), -- Average M. Def.
-(31048, 4414, 2), -- Standard Type
-(31048, 4415, 3), -- One-handed Sword
-(31048, 4416, 14), -- Humans
+(31048, 4408, 1), -- HP Modifiers
+(31048, 4409, 1), -- MP Modifiers
+(31048, 4410, 11), -- P. Atk. Modifiers
+(31048, 4411, 11), -- M. Atk. Modifiers
+(31048, 4412, 11), -- P. Def. Modifiers
+(31048, 4413, 11), -- M. Def. Modifiers
+(31048, 4414, 2), -- Armor Type
+(31048, 4415, 3), -- Weapon Type
+(31048, 4416, 14), -- Races
 -- Pepper
 (31049, 4045, 1), -- Resist Full Magic Attack
-(31049, 4408, 1), -- HP Increase (1x)
-(31049, 4409, 1), -- MP Increase (1x)
-(31049, 4410, 11), -- Average P. Atk.
-(31049, 4411, 11), -- Average M. Atk.
-(31049, 4412, 11), -- Average P. Def.
-(31049, 4413, 11), -- Average M. Def.
-(31049, 4414, 2), -- Standard Type
-(31049, 4415, 3), -- One-handed Sword
-(31049, 4416, 14), -- Humans
+(31049, 4408, 1), -- HP Modifiers
+(31049, 4409, 1), -- MP Modifiers
+(31049, 4410, 11), -- P. Atk. Modifiers
+(31049, 4411, 11), -- M. Atk. Modifiers
+(31049, 4412, 11), -- P. Def. Modifiers
+(31049, 4413, 11), -- M. Def. Modifiers
+(31049, 4414, 2), -- Armor Type
+(31049, 4415, 3), -- Weapon Type
+(31049, 4416, 14), -- Races
 -- Thora
 (31050, 4045, 1), -- Resist Full Magic Attack
-(31050, 4408, 1), -- HP Increase (1x)
-(31050, 4409, 1), -- MP Increase (1x)
-(31050, 4410, 11), -- Average P. Atk.
-(31050, 4411, 11), -- Average M. Atk.
-(31050, 4412, 11), -- Average P. Def.
-(31050, 4413, 11), -- Average M. Def.
-(31050, 4414, 2), -- Standard Type
-(31050, 4415, 3), -- One-handed Sword
-(31050, 4416, 14), -- Humans
+(31050, 4408, 1), -- HP Modifiers
+(31050, 4409, 1), -- MP Modifiers
+(31050, 4410, 11), -- P. Atk. Modifiers
+(31050, 4411, 11), -- M. Atk. Modifiers
+(31050, 4412, 11), -- P. Def. Modifiers
+(31050, 4413, 11), -- M. Def. Modifiers
+(31050, 4414, 2), -- Armor Type
+(31050, 4415, 3), -- Weapon Type
+(31050, 4416, 14), -- Races
 -- Keach
 (31051, 4045, 1), -- Resist Full Magic Attack
-(31051, 4408, 1), -- HP Increase (1x)
-(31051, 4409, 1), -- MP Increase (1x)
-(31051, 4410, 11), -- Average P. Atk.
-(31051, 4411, 11), -- Average M. Atk.
-(31051, 4412, 11), -- Average P. Def.
-(31051, 4413, 11), -- Average M. Def.
-(31051, 4414, 2), -- Standard Type
-(31051, 4415, 3), -- One-handed Sword
-(31051, 4416, 14), -- Humans
+(31051, 4408, 1), -- HP Modifiers
+(31051, 4409, 1), -- MP Modifiers
+(31051, 4410, 11), -- P. Atk. Modifiers
+(31051, 4411, 11), -- M. Atk. Modifiers
+(31051, 4412, 11), -- P. Def. Modifiers
+(31051, 4413, 11), -- M. Def. Modifiers
+(31051, 4414, 2), -- Armor Type
+(31051, 4415, 3), -- Weapon Type
+(31051, 4416, 14), -- Races
 -- Heid
 (31052, 4045, 1), -- Resist Full Magic Attack
-(31052, 4408, 1), -- HP Increase (1x)
-(31052, 4409, 1), -- MP Increase (1x)
-(31052, 4410, 11), -- Average P. Atk.
-(31052, 4411, 11), -- Average M. Atk.
-(31052, 4412, 11), -- Average P. Def.
-(31052, 4413, 11), -- Average M. Def.
-(31052, 4414, 2), -- Standard Type
-(31052, 4415, 3), -- One-handed Sword
-(31052, 4416, 14), -- Humans
+(31052, 4408, 1), -- HP Modifiers
+(31052, 4409, 1), -- MP Modifiers
+(31052, 4410, 11), -- P. Atk. Modifiers
+(31052, 4411, 11), -- M. Atk. Modifiers
+(31052, 4412, 11), -- P. Def. Modifiers
+(31052, 4413, 11), -- M. Def. Modifiers
+(31052, 4414, 2), -- Armor Type
+(31052, 4415, 3), -- Weapon Type
+(31052, 4416, 14), -- Races
 -- Kidder
 (31053, 4045, 1), -- Resist Full Magic Attack
-(31053, 4408, 1), -- HP Increase (1x)
-(31053, 4409, 1), -- MP Increase (1x)
-(31053, 4410, 11), -- Average P. Atk.
-(31053, 4411, 11), -- Average M. Atk.
-(31053, 4412, 11), -- Average P. Def.
-(31053, 4413, 11), -- Average M. Def.
-(31053, 4414, 2), -- Standard Type
-(31053, 4415, 3), -- One-handed Sword
-(31053, 4416, 14), -- Humans
+(31053, 4408, 1), -- HP Modifiers
+(31053, 4409, 1), -- MP Modifiers
+(31053, 4410, 11), -- P. Atk. Modifiers
+(31053, 4411, 11), -- M. Atk. Modifiers
+(31053, 4412, 11), -- P. Def. Modifiers
+(31053, 4413, 11), -- M. Def. Modifiers
+(31053, 4414, 2), -- Armor Type
+(31053, 4415, 3), -- Weapon Type
+(31053, 4416, 14), -- Races
 -- Rood
 (31067, 4045, 1), -- Resist Full Magic Attack
-(31067, 4408, 1), -- HP Increase (1x)
-(31067, 4409, 1), -- MP Increase (1x)
-(31067, 4410, 11), -- Average P. Atk.
-(31067, 4411, 11), -- Average M. Atk.
-(31067, 4412, 11), -- Average P. Def.
-(31067, 4413, 11), -- Average M. Def.
-(31067, 4414, 2), -- Standard Type
-(31067, 4415, 3), -- One-handed Sword
-(31067, 4416, 14), -- Humans
+(31067, 4408, 1), -- HP Modifiers
+(31067, 4409, 1), -- MP Modifiers
+(31067, 4410, 11), -- P. Atk. Modifiers
+(31067, 4411, 11), -- M. Atk. Modifiers
+(31067, 4412, 11), -- P. Def. Modifiers
+(31067, 4413, 11), -- M. Def. Modifiers
+(31067, 4414, 2), -- Armor Type
+(31067, 4415, 3), -- Weapon Type
+(31067, 4416, 14), -- Races
 -- Corpse of Hutaku
 (31074, 4045, 1), -- Resist Full Magic Attack
-(31074, 4408, 1), -- HP Increase (1x)
-(31074, 4409, 1), -- MP Increase (1x)
-(31074, 4410, 11), -- Average P. Atk.
-(31074, 4411, 11), -- Average M. Atk.
-(31074, 4412, 11), -- Average P. Def.
-(31074, 4413, 11), -- Average M. Def.
-(31074, 4414, 2), -- Standard Type
-(31074, 4415, 3), -- One-handed Sword
-(31074, 4416, 17), -- Orcs
+(31074, 4408, 1), -- HP Modifiers
+(31074, 4409, 1), -- MP Modifiers
+(31074, 4410, 11), -- P. Atk. Modifiers
+(31074, 4411, 11), -- M. Atk. Modifiers
+(31074, 4412, 11), -- P. Def. Modifiers
+(31074, 4413, 11), -- M. Def. Modifiers
+(31074, 4414, 2), -- Armor Type
+(31074, 4415, 3), -- Weapon Type
+(31074, 4416, 17), -- Races
 -- Sales Cat of Ivory Tower
 (31075, 4045, 1), -- Resist Full Magic Attack
-(31075, 4408, 1), -- HP Increase (1x)
-(31075, 4409, 1), -- MP Increase (1x)
-(31075, 4410, 11), -- Average P. Atk.
-(31075, 4411, 11), -- Average M. Atk.
-(31075, 4412, 11), -- Average P. Def.
-(31075, 4413, 11), -- Average M. Def.
-(31075, 4414, 2), -- Standard Type
-(31075, 4415, 3), -- One-handed Sword
-(31075, 4416, 7), -- Spirits
+(31075, 4408, 1), -- HP Modifiers
+(31075, 4409, 1), -- MP Modifiers
+(31075, 4410, 11), -- P. Atk. Modifiers
+(31075, 4411, 11), -- M. Atk. Modifiers
+(31075, 4412, 11), -- P. Def. Modifiers
+(31075, 4413, 11), -- M. Def. Modifiers
+(31075, 4414, 2), -- Armor Type
+(31075, 4415, 3), -- Weapon Type
+(31075, 4416, 7), -- Races
 -- Newbie Helper
 (31076, 4045, 1), -- Resist Full Magic Attack
-(31076, 4408, 1), -- HP Increase (1x)
-(31076, 4409, 1), -- MP Increase (1x)
-(31076, 4410, 11), -- Average P. Atk.
-(31076, 4411, 11), -- Average M. Atk.
-(31076, 4412, 11), -- Average P. Def.
-(31076, 4413, 11), -- Average M. Def.
-(31076, 4414, 2), -- Standard Type
-(31076, 4415, 3), -- One-handed Sword
-(31076, 4416, 14), -- Humans
+(31076, 4408, 1), -- HP Modifiers
+(31076, 4409, 1), -- MP Modifiers
+(31076, 4410, 11), -- P. Atk. Modifiers
+(31076, 4411, 11), -- M. Atk. Modifiers
+(31076, 4412, 11), -- P. Def. Modifiers
+(31076, 4413, 11), -- M. Def. Modifiers
+(31076, 4414, 2), -- Armor Type
+(31076, 4415, 3), -- Weapon Type
+(31076, 4416, 14), -- Races
 -- Newbie Helper
 (31077, 4045, 1), -- Resist Full Magic Attack
-(31077, 4408, 1), -- HP Increase (1x)
-(31077, 4409, 1), -- MP Increase (1x)
-(31077, 4410, 11), -- Average P. Atk.
-(31077, 4411, 11), -- Average M. Atk.
-(31077, 4412, 11), -- Average P. Def.
-(31077, 4413, 11), -- Average M. Def.
-(31077, 4414, 2), -- Standard Type
-(31077, 4415, 3), -- One-handed Sword
-(31077, 4416, 14), -- Humans
+(31077, 4408, 1), -- HP Modifiers
+(31077, 4409, 1), -- MP Modifiers
+(31077, 4410, 11), -- P. Atk. Modifiers
+(31077, 4411, 11), -- M. Atk. Modifiers
+(31077, 4412, 11), -- P. Def. Modifiers
+(31077, 4413, 11), -- M. Def. Modifiers
+(31077, 4414, 2), -- Armor Type
+(31077, 4415, 3), -- Weapon Type
+(31077, 4416, 14), -- Races
 -- Priest of Dawn
 (31078, 4045, 1), -- Resist Full Magic Attack
-(31078, 4408, 1), -- HP Increase (1x)
-(31078, 4409, 1), -- MP Increase (1x)
-(31078, 4410, 11), -- Average P. Atk.
-(31078, 4411, 11), -- Average M. Atk.
-(31078, 4412, 11), -- Average P. Def.
-(31078, 4413, 11), -- Average M. Def.
-(31078, 4414, 2), -- Standard Type
-(31078, 4415, 1), -- Bare Hands
-(31078, 4416, 14), -- Humans
+(31078, 4408, 1), -- HP Modifiers
+(31078, 4409, 1), -- MP Modifiers
+(31078, 4410, 11), -- P. Atk. Modifiers
+(31078, 4411, 11), -- M. Atk. Modifiers
+(31078, 4412, 11), -- P. Def. Modifiers
+(31078, 4413, 11), -- M. Def. Modifiers
+(31078, 4414, 2), -- Armor Type
+(31078, 4415, 1), -- Weapon Type
+(31078, 4416, 14), -- Races
 -- Priest of Dawn
 (31079, 4045, 1), -- Resist Full Magic Attack
-(31079, 4408, 1), -- HP Increase (1x)
-(31079, 4409, 1), -- MP Increase (1x)
-(31079, 4410, 11), -- Average P. Atk.
-(31079, 4411, 11), -- Average M. Atk.
-(31079, 4412, 11), -- Average P. Def.
-(31079, 4413, 11), -- Average M. Def.
-(31079, 4414, 2), -- Standard Type
-(31079, 4415, 1), -- Bare Hands
-(31079, 4416, 14), -- Humans
+(31079, 4408, 1), -- HP Modifiers
+(31079, 4409, 1), -- MP Modifiers
+(31079, 4410, 11), -- P. Atk. Modifiers
+(31079, 4411, 11), -- M. Atk. Modifiers
+(31079, 4412, 11), -- P. Def. Modifiers
+(31079, 4413, 11), -- M. Def. Modifiers
+(31079, 4414, 2), -- Armor Type
+(31079, 4415, 1), -- Weapon Type
+(31079, 4416, 14), -- Races
 -- Priest of Dawn
 (31080, 4045, 1), -- Resist Full Magic Attack
-(31080, 4408, 1), -- HP Increase (1x)
-(31080, 4409, 1), -- MP Increase (1x)
-(31080, 4410, 11), -- Average P. Atk.
-(31080, 4411, 11), -- Average M. Atk.
-(31080, 4412, 11), -- Average P. Def.
-(31080, 4413, 11), -- Average M. Def.
-(31080, 4414, 2), -- Standard Type
-(31080, 4415, 1), -- Bare Hands
-(31080, 4416, 14), -- Humans
+(31080, 4408, 1), -- HP Modifiers
+(31080, 4409, 1), -- MP Modifiers
+(31080, 4410, 11), -- P. Atk. Modifiers
+(31080, 4411, 11), -- M. Atk. Modifiers
+(31080, 4412, 11), -- P. Def. Modifiers
+(31080, 4413, 11), -- M. Def. Modifiers
+(31080, 4414, 2), -- Armor Type
+(31080, 4415, 1), -- Weapon Type
+(31080, 4416, 14), -- Races
 -- Priest of Dawn
 (31081, 4045, 1), -- Resist Full Magic Attack
-(31081, 4408, 1), -- HP Increase (1x)
-(31081, 4409, 1), -- MP Increase (1x)
-(31081, 4410, 11), -- Average P. Atk.
-(31081, 4411, 11), -- Average M. Atk.
-(31081, 4412, 11), -- Average P. Def.
-(31081, 4413, 11), -- Average M. Def.
-(31081, 4414, 2), -- Standard Type
-(31081, 4415, 1), -- Bare Hands
-(31081, 4416, 14), -- Humans
+(31081, 4408, 1), -- HP Modifiers
+(31081, 4409, 1), -- MP Modifiers
+(31081, 4410, 11), -- P. Atk. Modifiers
+(31081, 4411, 11), -- M. Atk. Modifiers
+(31081, 4412, 11), -- P. Def. Modifiers
+(31081, 4413, 11), -- M. Def. Modifiers
+(31081, 4414, 2), -- Armor Type
+(31081, 4415, 1), -- Weapon Type
+(31081, 4416, 14), -- Races
 -- Priest of Dawn
 (31082, 4045, 1), -- Resist Full Magic Attack
-(31082, 4408, 1), -- HP Increase (1x)
-(31082, 4409, 1), -- MP Increase (1x)
-(31082, 4410, 11), -- Average P. Atk.
-(31082, 4411, 11), -- Average M. Atk.
-(31082, 4412, 11), -- Average P. Def.
-(31082, 4413, 11), -- Average M. Def.
-(31082, 4414, 2), -- Standard Type
-(31082, 4415, 1), -- Bare Hands
-(31082, 4416, 14), -- Humans
+(31082, 4408, 1), -- HP Modifiers
+(31082, 4409, 1), -- MP Modifiers
+(31082, 4410, 11), -- P. Atk. Modifiers
+(31082, 4411, 11), -- M. Atk. Modifiers
+(31082, 4412, 11), -- P. Def. Modifiers
+(31082, 4413, 11), -- M. Def. Modifiers
+(31082, 4414, 2), -- Armor Type
+(31082, 4415, 1), -- Weapon Type
+(31082, 4416, 14), -- Races
 -- Priest of Dawn
 (31083, 4045, 1), -- Resist Full Magic Attack
-(31083, 4408, 1), -- HP Increase (1x)
-(31083, 4409, 1), -- MP Increase (1x)
-(31083, 4410, 11), -- Average P. Atk.
-(31083, 4411, 11), -- Average M. Atk.
-(31083, 4412, 11), -- Average P. Def.
-(31083, 4413, 11), -- Average M. Def.
-(31083, 4414, 2), -- Standard Type
-(31083, 4415, 1), -- Bare Hands
-(31083, 4416, 14), -- Humans
+(31083, 4408, 1), -- HP Modifiers
+(31083, 4409, 1), -- MP Modifiers
+(31083, 4410, 11), -- P. Atk. Modifiers
+(31083, 4411, 11), -- M. Atk. Modifiers
+(31083, 4412, 11), -- P. Def. Modifiers
+(31083, 4413, 11), -- M. Def. Modifiers
+(31083, 4414, 2), -- Armor Type
+(31083, 4415, 1), -- Weapon Type
+(31083, 4416, 14), -- Races
 -- Priest of Dawn
 (31084, 4045, 1), -- Resist Full Magic Attack
-(31084, 4408, 1), -- HP Increase (1x)
-(31084, 4409, 1), -- MP Increase (1x)
-(31084, 4410, 11), -- Average P. Atk.
-(31084, 4411, 11), -- Average M. Atk.
-(31084, 4412, 11), -- Average P. Def.
-(31084, 4413, 11), -- Average M. Def.
-(31084, 4414, 2), -- Standard Type
-(31084, 4415, 1), -- Bare Hands
-(31084, 4416, 14), -- Humans
+(31084, 4408, 1), -- HP Modifiers
+(31084, 4409, 1), -- MP Modifiers
+(31084, 4410, 11), -- P. Atk. Modifiers
+(31084, 4411, 11), -- M. Atk. Modifiers
+(31084, 4412, 11), -- P. Def. Modifiers
+(31084, 4413, 11), -- M. Def. Modifiers
+(31084, 4414, 2), -- Armor Type
+(31084, 4415, 1), -- Weapon Type
+(31084, 4416, 14), -- Races
 -- Dusk Priestess
 (31085, 4045, 1), -- Resist Full Magic Attack
-(31085, 4408, 1), -- HP Increase (1x)
-(31085, 4409, 1), -- MP Increase (1x)
-(31085, 4410, 11), -- Average P. Atk.
-(31085, 4411, 11), -- Average M. Atk.
-(31085, 4412, 11), -- Average P. Def.
-(31085, 4413, 11), -- Average M. Def.
-(31085, 4414, 2), -- Standard Type
-(31085, 4415, 1), -- Bare Hands
-(31085, 4416, 16), -- Dark Elves
+(31085, 4408, 1), -- HP Modifiers
+(31085, 4409, 1), -- MP Modifiers
+(31085, 4410, 11), -- P. Atk. Modifiers
+(31085, 4411, 11), -- M. Atk. Modifiers
+(31085, 4412, 11), -- P. Def. Modifiers
+(31085, 4413, 11), -- M. Def. Modifiers
+(31085, 4414, 2), -- Armor Type
+(31085, 4415, 1), -- Weapon Type
+(31085, 4416, 16), -- Races
 -- Dusk Priestess
 (31086, 4045, 1), -- Resist Full Magic Attack
-(31086, 4408, 1), -- HP Increase (1x)
-(31086, 4409, 1), -- MP Increase (1x)
-(31086, 4410, 11), -- Average P. Atk.
-(31086, 4411, 11), -- Average M. Atk.
-(31086, 4412, 11), -- Average P. Def.
-(31086, 4413, 11), -- Average M. Def.
-(31086, 4414, 2), -- Standard Type
-(31086, 4415, 1), -- Bare Hands
-(31086, 4416, 16), -- Dark Elves
+(31086, 4408, 1), -- HP Modifiers
+(31086, 4409, 1), -- MP Modifiers
+(31086, 4410, 11), -- P. Atk. Modifiers
+(31086, 4411, 11), -- M. Atk. Modifiers
+(31086, 4412, 11), -- P. Def. Modifiers
+(31086, 4413, 11), -- M. Def. Modifiers
+(31086, 4414, 2), -- Armor Type
+(31086, 4415, 1), -- Weapon Type
+(31086, 4416, 16), -- Races
 -- Dusk Priestess
 (31087, 4045, 1), -- Resist Full Magic Attack
-(31087, 4408, 1), -- HP Increase (1x)
-(31087, 4409, 1), -- MP Increase (1x)
-(31087, 4410, 11), -- Average P. Atk.
-(31087, 4411, 11), -- Average M. Atk.
-(31087, 4412, 11), -- Average P. Def.
-(31087, 4413, 11), -- Average M. Def.
-(31087, 4414, 2), -- Standard Type
-(31087, 4415, 1), -- Bare Hands
-(31087, 4416, 16), -- Dark Elves
+(31087, 4408, 1), -- HP Modifiers
+(31087, 4409, 1), -- MP Modifiers
+(31087, 4410, 11), -- P. Atk. Modifiers
+(31087, 4411, 11), -- M. Atk. Modifiers
+(31087, 4412, 11), -- P. Def. Modifiers
+(31087, 4413, 11), -- M. Def. Modifiers
+(31087, 4414, 2), -- Armor Type
+(31087, 4415, 1), -- Weapon Type
+(31087, 4416, 16), -- Races
 -- Dusk Priestess
 (31088, 4045, 1), -- Resist Full Magic Attack
-(31088, 4408, 1), -- HP Increase (1x)
-(31088, 4409, 1), -- MP Increase (1x)
-(31088, 4410, 11), -- Average P. Atk.
-(31088, 4411, 11), -- Average M. Atk.
-(31088, 4412, 11), -- Average P. Def.
-(31088, 4413, 11), -- Average M. Def.
-(31088, 4414, 2), -- Standard Type
-(31088, 4415, 1), -- Bare Hands
-(31088, 4416, 16), -- Dark Elves
+(31088, 4408, 1), -- HP Modifiers
+(31088, 4409, 1), -- MP Modifiers
+(31088, 4410, 11), -- P. Atk. Modifiers
+(31088, 4411, 11), -- M. Atk. Modifiers
+(31088, 4412, 11), -- P. Def. Modifiers
+(31088, 4413, 11), -- M. Def. Modifiers
+(31088, 4414, 2), -- Armor Type
+(31088, 4415, 1), -- Weapon Type
+(31088, 4416, 16), -- Races
 -- Dusk Priestess
 (31089, 4045, 1), -- Resist Full Magic Attack
-(31089, 4408, 1), -- HP Increase (1x)
-(31089, 4409, 1), -- MP Increase (1x)
-(31089, 4410, 11), -- Average P. Atk.
-(31089, 4411, 11), -- Average M. Atk.
-(31089, 4412, 11), -- Average P. Def.
-(31089, 4413, 11), -- Average M. Def.
-(31089, 4414, 2), -- Standard Type
-(31089, 4415, 1), -- Bare Hands
-(31089, 4416, 16), -- Dark Elves
+(31089, 4408, 1), -- HP Modifiers
+(31089, 4409, 1), -- MP Modifiers
+(31089, 4410, 11), -- P. Atk. Modifiers
+(31089, 4411, 11), -- M. Atk. Modifiers
+(31089, 4412, 11), -- P. Def. Modifiers
+(31089, 4413, 11), -- M. Def. Modifiers
+(31089, 4414, 2), -- Armor Type
+(31089, 4415, 1), -- Weapon Type
+(31089, 4416, 16), -- Races
 -- Dusk Priestess
 (31090, 4045, 1), -- Resist Full Magic Attack
-(31090, 4408, 1), -- HP Increase (1x)
-(31090, 4409, 1), -- MP Increase (1x)
-(31090, 4410, 11), -- Average P. Atk.
-(31090, 4411, 11), -- Average M. Atk.
-(31090, 4412, 11), -- Average P. Def.
-(31090, 4413, 11), -- Average M. Def.
-(31090, 4414, 2), -- Standard Type
-(31090, 4415, 1), -- Bare Hands
-(31090, 4416, 16), -- Dark Elves
+(31090, 4408, 1), -- HP Modifiers
+(31090, 4409, 1), -- MP Modifiers
+(31090, 4410, 11), -- P. Atk. Modifiers
+(31090, 4411, 11), -- M. Atk. Modifiers
+(31090, 4412, 11), -- P. Def. Modifiers
+(31090, 4413, 11), -- M. Def. Modifiers
+(31090, 4414, 2), -- Armor Type
+(31090, 4415, 1), -- Weapon Type
+(31090, 4416, 16), -- Races
 -- Dusk Priestess
 (31091, 4045, 1), -- Resist Full Magic Attack
-(31091, 4408, 1), -- HP Increase (1x)
-(31091, 4409, 1), -- MP Increase (1x)
-(31091, 4410, 11), -- Average P. Atk.
-(31091, 4411, 11), -- Average M. Atk.
-(31091, 4412, 11), -- Average P. Def.
-(31091, 4413, 11), -- Average M. Def.
-(31091, 4414, 2), -- Standard Type
-(31091, 4415, 1), -- Bare Hands
-(31091, 4416, 16), -- Dark Elves
+(31091, 4408, 1), -- HP Modifiers
+(31091, 4409, 1), -- MP Modifiers
+(31091, 4410, 11), -- P. Atk. Modifiers
+(31091, 4411, 11), -- M. Atk. Modifiers
+(31091, 4412, 11), -- P. Def. Modifiers
+(31091, 4413, 11), -- M. Def. Modifiers
+(31091, 4414, 2), -- Armor Type
+(31091, 4415, 1), -- Weapon Type
+(31091, 4416, 16), -- Races
 -- Black Marketeer of Mammon
 (31092, 4045, 1), -- Resist Full Magic Attack
-(31092, 4408, 1), -- HP Increase (1x)
-(31092, 4409, 1), -- MP Increase (1x)
-(31092, 4410, 11), -- Average P. Atk.
-(31092, 4411, 11), -- Average M. Atk.
-(31092, 4412, 11), -- Average P. Def.
-(31092, 4413, 11), -- Average M. Def.
-(31092, 4414, 2), -- Standard Type
-(31092, 4415, 3), -- One-handed Sword
-(31092, 4416, 18), -- Dwarves
+(31092, 4408, 1), -- HP Modifiers
+(31092, 4409, 1), -- MP Modifiers
+(31092, 4410, 11), -- P. Atk. Modifiers
+(31092, 4411, 11), -- M. Atk. Modifiers
+(31092, 4412, 11), -- P. Def. Modifiers
+(31092, 4413, 11), -- M. Def. Modifiers
+(31092, 4414, 2), -- Armor Type
+(31092, 4415, 3), -- Weapon Type
+(31092, 4416, 18), -- Races
 -- Preacher of Doom
 (31093, 4045, 1), -- Resist Full Magic Attack
-(31093, 4408, 1), -- HP Increase (1x)
-(31093, 4409, 1), -- MP Increase (1x)
-(31093, 4410, 11), -- Average P. Atk.
-(31093, 4411, 11), -- Average M. Atk.
-(31093, 4412, 11), -- Average P. Def.
-(31093, 4413, 11), -- Average M. Def.
-(31093, 4414, 2), -- Standard Type
-(31093, 4415, 3), -- One-handed Sword
-(31093, 4416, 1), -- Undead
+(31093, 4408, 1), -- HP Modifiers
+(31093, 4409, 1), -- MP Modifiers
+(31093, 4410, 11), -- P. Atk. Modifiers
+(31093, 4411, 11), -- M. Atk. Modifiers
+(31093, 4412, 11), -- P. Def. Modifiers
+(31093, 4413, 11), -- M. Def. Modifiers
+(31093, 4414, 2), -- Armor Type
+(31093, 4415, 3), -- Weapon Type
+(31093, 4416, 1), -- Races
 -- Orator of Revelations
 (31094, 4045, 1), -- Resist Full Magic Attack
-(31094, 4390, 1), -- Mystic Immunity
-(31094, 4408, 1), -- HP Increase (1x)
-(31094, 4409, 1), -- MP Increase (1x)
-(31094, 4410, 11), -- Average P. Atk.
-(31094, 4411, 11), -- Average M. Atk.
-(31094, 4412, 11), -- Average P. Def.
-(31094, 4413, 11), -- Average M. Def.
-(31094, 4414, 2), -- Standard Type
-(31094, 4415, 3), -- One-handed Sword
-(31094, 4416, 2), -- Magic Creatures
+(31094, 4390, 1), -- NPC Abnormal Immunity
+(31094, 4408, 1), -- HP Modifiers
+(31094, 4409, 1), -- MP Modifiers
+(31094, 4410, 11), -- P. Atk. Modifiers
+(31094, 4411, 11), -- M. Atk. Modifiers
+(31094, 4412, 11), -- P. Def. Modifiers
+(31094, 4413, 11), -- M. Def. Modifiers
+(31094, 4414, 2), -- Armor Type
+(31094, 4415, 3), -- Weapon Type
+(31094, 4416, 2), -- Races
 -- Gatekeeper Ziggurat
 (31095, 4045, 1), -- Resist Full Magic Attack
-(31095, 4390, 1), -- Mystic Immunity
-(31095, 4408, 1), -- HP Increase (1x)
-(31095, 4409, 1), -- MP Increase (1x)
-(31095, 4410, 11), -- Average P. Atk.
-(31095, 4411, 11), -- Average M. Atk.
-(31095, 4412, 11), -- Average P. Def.
-(31095, 4413, 11), -- Average M. Def.
-(31095, 4414, 2), -- Standard Type
-(31095, 4415, 3), -- One-handed Sword
-(31095, 4416, 19), -- Others
+(31095, 4390, 1), -- NPC Abnormal Immunity
+(31095, 4408, 1), -- HP Modifiers
+(31095, 4409, 1), -- MP Modifiers
+(31095, 4410, 11), -- P. Atk. Modifiers
+(31095, 4411, 11), -- M. Atk. Modifiers
+(31095, 4412, 11), -- P. Def. Modifiers
+(31095, 4413, 11), -- M. Def. Modifiers
+(31095, 4414, 2), -- Armor Type
+(31095, 4415, 3), -- Weapon Type
+(31095, 4416, 19), -- Races
 -- Gatekeeper Ziggurat
 (31096, 4045, 1), -- Resist Full Magic Attack
-(31096, 4390, 1), -- Mystic Immunity
-(31096, 4408, 1), -- HP Increase (1x)
-(31096, 4409, 1), -- MP Increase (1x)
-(31096, 4410, 11), -- Average P. Atk.
-(31096, 4411, 11), -- Average M. Atk.
-(31096, 4412, 11), -- Average P. Def.
-(31096, 4413, 11), -- Average M. Def.
-(31096, 4414, 2), -- Standard Type
-(31096, 4415, 3), -- One-handed Sword
-(31096, 4416, 19), -- Others
+(31096, 4390, 1), -- NPC Abnormal Immunity
+(31096, 4408, 1), -- HP Modifiers
+(31096, 4409, 1), -- MP Modifiers
+(31096, 4410, 11), -- P. Atk. Modifiers
+(31096, 4411, 11), -- M. Atk. Modifiers
+(31096, 4412, 11), -- P. Def. Modifiers
+(31096, 4413, 11), -- M. Def. Modifiers
+(31096, 4414, 2), -- Armor Type
+(31096, 4415, 3), -- Weapon Type
+(31096, 4416, 19), -- Races
 -- Gatekeeper Ziggurat
 (31097, 4045, 1), -- Resist Full Magic Attack
-(31097, 4390, 1), -- Mystic Immunity
-(31097, 4408, 1), -- HP Increase (1x)
-(31097, 4409, 1), -- MP Increase (1x)
-(31097, 4410, 11), -- Average P. Atk.
-(31097, 4411, 11), -- Average M. Atk.
-(31097, 4412, 11), -- Average P. Def.
-(31097, 4413, 11), -- Average M. Def.
-(31097, 4414, 2), -- Standard Type
-(31097, 4415, 3), -- One-handed Sword
-(31097, 4416, 19), -- Others
+(31097, 4390, 1), -- NPC Abnormal Immunity
+(31097, 4408, 1), -- HP Modifiers
+(31097, 4409, 1), -- MP Modifiers
+(31097, 4410, 11), -- P. Atk. Modifiers
+(31097, 4411, 11), -- M. Atk. Modifiers
+(31097, 4412, 11), -- P. Def. Modifiers
+(31097, 4413, 11), -- M. Def. Modifiers
+(31097, 4414, 2), -- Armor Type
+(31097, 4415, 3), -- Weapon Type
+(31097, 4416, 19), -- Races
 -- Gatekeeper Ziggurat
 (31098, 4045, 1), -- Resist Full Magic Attack
-(31098, 4390, 1), -- Mystic Immunity
-(31098, 4408, 1), -- HP Increase (1x)
-(31098, 4409, 1), -- MP Increase (1x)
-(31098, 4410, 11), -- Average P. Atk.
-(31098, 4411, 11), -- Average M. Atk.
-(31098, 4412, 11), -- Average P. Def.
-(31098, 4413, 11), -- Average M. Def.
-(31098, 4414, 2), -- Standard Type
-(31098, 4415, 3), -- One-handed Sword
-(31098, 4416, 19), -- Others
+(31098, 4390, 1), -- NPC Abnormal Immunity
+(31098, 4408, 1), -- HP Modifiers
+(31098, 4409, 1), -- MP Modifiers
+(31098, 4410, 11), -- P. Atk. Modifiers
+(31098, 4411, 11), -- M. Atk. Modifiers
+(31098, 4412, 11), -- P. Def. Modifiers
+(31098, 4413, 11), -- M. Def. Modifiers
+(31098, 4414, 2), -- Armor Type
+(31098, 4415, 3), -- Weapon Type
+(31098, 4416, 19), -- Races
 -- Gatekeeper Ziggurat
 (31099, 4045, 1), -- Resist Full Magic Attack
-(31099, 4390, 1), -- Mystic Immunity
-(31099, 4408, 1), -- HP Increase (1x)
-(31099, 4409, 1), -- MP Increase (1x)
-(31099, 4410, 11), -- Average P. Atk.
-(31099, 4411, 11), -- Average M. Atk.
-(31099, 4412, 11), -- Average P. Def.
-(31099, 4413, 11), -- Average M. Def.
-(31099, 4414, 2), -- Standard Type
-(31099, 4415, 3), -- One-handed Sword
-(31099, 4416, 19), -- Others
+(31099, 4390, 1), -- NPC Abnormal Immunity
+(31099, 4408, 1), -- HP Modifiers
+(31099, 4409, 1), -- MP Modifiers
+(31099, 4410, 11), -- P. Atk. Modifiers
+(31099, 4411, 11), -- M. Atk. Modifiers
+(31099, 4412, 11), -- P. Def. Modifiers
+(31099, 4413, 11), -- M. Def. Modifiers
+(31099, 4414, 2), -- Armor Type
+(31099, 4415, 3), -- Weapon Type
+(31099, 4416, 19), -- Races
 -- Gatekeeper Ziggurat
 (31100, 4045, 1), -- Resist Full Magic Attack
-(31100, 4390, 1), -- Mystic Immunity
-(31100, 4408, 1), -- HP Increase (1x)
-(31100, 4409, 1), -- MP Increase (1x)
-(31100, 4410, 11), -- Average P. Atk.
-(31100, 4411, 11), -- Average M. Atk.
-(31100, 4412, 11), -- Average P. Def.
-(31100, 4413, 11), -- Average M. Def.
-(31100, 4414, 2), -- Standard Type
-(31100, 4415, 3), -- One-handed Sword
-(31100, 4416, 19), -- Others
+(31100, 4390, 1), -- NPC Abnormal Immunity
+(31100, 4408, 1), -- HP Modifiers
+(31100, 4409, 1), -- MP Modifiers
+(31100, 4410, 11), -- P. Atk. Modifiers
+(31100, 4411, 11), -- M. Atk. Modifiers
+(31100, 4412, 11), -- P. Def. Modifiers
+(31100, 4413, 11), -- M. Def. Modifiers
+(31100, 4414, 2), -- Armor Type
+(31100, 4415, 3), -- Weapon Type
+(31100, 4416, 19), -- Races
 -- Gatekeeper Ziggurat
 (31101, 4045, 1), -- Resist Full Magic Attack
-(31101, 4390, 1), -- Mystic Immunity
-(31101, 4408, 1), -- HP Increase (1x)
-(31101, 4409, 1), -- MP Increase (1x)
-(31101, 4410, 11), -- Average P. Atk.
-(31101, 4411, 11), -- Average M. Atk.
-(31101, 4412, 11), -- Average P. Def.
-(31101, 4413, 11), -- Average M. Def.
-(31101, 4414, 2), -- Standard Type
-(31101, 4415, 3), -- One-handed Sword
-(31101, 4416, 19), -- Others
+(31101, 4390, 1), -- NPC Abnormal Immunity
+(31101, 4408, 1), -- HP Modifiers
+(31101, 4409, 1), -- MP Modifiers
+(31101, 4410, 11), -- P. Atk. Modifiers
+(31101, 4411, 11), -- M. Atk. Modifiers
+(31101, 4412, 11), -- P. Def. Modifiers
+(31101, 4413, 11), -- M. Def. Modifiers
+(31101, 4414, 2), -- Armor Type
+(31101, 4415, 3), -- Weapon Type
+(31101, 4416, 19), -- Races
 -- Gatekeeper Ziggurat
 (31102, 4045, 1), -- Resist Full Magic Attack
-(31102, 4390, 1), -- Mystic Immunity
-(31102, 4408, 1), -- HP Increase (1x)
-(31102, 4409, 1), -- MP Increase (1x)
-(31102, 4410, 11), -- Average P. Atk.
-(31102, 4411, 11), -- Average M. Atk.
-(31102, 4412, 11), -- Average P. Def.
-(31102, 4413, 11), -- Average M. Def.
-(31102, 4414, 2), -- Standard Type
-(31102, 4415, 3), -- One-handed Sword
-(31102, 4416, 19), -- Others
+(31102, 4390, 1), -- NPC Abnormal Immunity
+(31102, 4408, 1), -- HP Modifiers
+(31102, 4409, 1), -- MP Modifiers
+(31102, 4410, 11), -- P. Atk. Modifiers
+(31102, 4411, 11), -- M. Atk. Modifiers
+(31102, 4412, 11), -- P. Def. Modifiers
+(31102, 4413, 11), -- M. Def. Modifiers
+(31102, 4414, 2), -- Armor Type
+(31102, 4415, 3), -- Weapon Type
+(31102, 4416, 19), -- Races
 -- Gatekeeper Ziggurat
 (31103, 4045, 1), -- Resist Full Magic Attack
-(31103, 4390, 1), -- Mystic Immunity
-(31103, 4408, 1), -- HP Increase (1x)
-(31103, 4409, 1), -- MP Increase (1x)
-(31103, 4410, 11), -- Average P. Atk.
-(31103, 4411, 11), -- Average M. Atk.
-(31103, 4412, 11), -- Average P. Def.
-(31103, 4413, 11), -- Average M. Def.
-(31103, 4414, 2), -- Standard Type
-(31103, 4415, 3), -- One-handed Sword
-(31103, 4416, 19), -- Others
+(31103, 4390, 1), -- NPC Abnormal Immunity
+(31103, 4408, 1), -- HP Modifiers
+(31103, 4409, 1), -- MP Modifiers
+(31103, 4410, 11), -- P. Atk. Modifiers
+(31103, 4411, 11), -- M. Atk. Modifiers
+(31103, 4412, 11), -- P. Def. Modifiers
+(31103, 4413, 11), -- M. Def. Modifiers
+(31103, 4414, 2), -- Armor Type
+(31103, 4415, 3), -- Weapon Type
+(31103, 4416, 19), -- Races
 -- Gatekeeper Ziggurat
 (31104, 4045, 1), -- Resist Full Magic Attack
-(31104, 4390, 1), -- Mystic Immunity
-(31104, 4408, 1), -- HP Increase (1x)
-(31104, 4409, 1), -- MP Increase (1x)
-(31104, 4410, 11), -- Average P. Atk.
-(31104, 4411, 11), -- Average M. Atk.
-(31104, 4412, 11), -- Average P. Def.
-(31104, 4413, 11), -- Average M. Def.
-(31104, 4414, 2), -- Standard Type
-(31104, 4415, 3), -- One-handed Sword
-(31104, 4416, 19), -- Others
+(31104, 4390, 1), -- NPC Abnormal Immunity
+(31104, 4408, 1), -- HP Modifiers
+(31104, 4409, 1), -- MP Modifiers
+(31104, 4410, 11), -- P. Atk. Modifiers
+(31104, 4411, 11), -- M. Atk. Modifiers
+(31104, 4412, 11), -- P. Def. Modifiers
+(31104, 4413, 11), -- M. Def. Modifiers
+(31104, 4414, 2), -- Armor Type
+(31104, 4415, 3), -- Weapon Type
+(31104, 4416, 19), -- Races
 -- Gatekeeper Ziggurat
 (31105, 4045, 1), -- Resist Full Magic Attack
-(31105, 4390, 1), -- Mystic Immunity
-(31105, 4408, 1), -- HP Increase (1x)
-(31105, 4409, 1), -- MP Increase (1x)
-(31105, 4410, 11), -- Average P. Atk.
-(31105, 4411, 11), -- Average M. Atk.
-(31105, 4412, 11), -- Average P. Def.
-(31105, 4413, 11), -- Average M. Def.
-(31105, 4414, 2), -- Standard Type
-(31105, 4415, 3), -- One-handed Sword
-(31105, 4416, 19), -- Others
+(31105, 4390, 1), -- NPC Abnormal Immunity
+(31105, 4408, 1), -- HP Modifiers
+(31105, 4409, 1), -- MP Modifiers
+(31105, 4410, 11), -- P. Atk. Modifiers
+(31105, 4411, 11), -- M. Atk. Modifiers
+(31105, 4412, 11), -- P. Def. Modifiers
+(31105, 4413, 11), -- M. Def. Modifiers
+(31105, 4414, 2), -- Armor Type
+(31105, 4415, 3), -- Weapon Type
+(31105, 4416, 19), -- Races
 -- Gatekeeper Ziggurat
 (31106, 4045, 1), -- Resist Full Magic Attack
-(31106, 4390, 1), -- Mystic Immunity
-(31106, 4408, 1), -- HP Increase (1x)
-(31106, 4409, 1), -- MP Increase (1x)
-(31106, 4410, 11), -- Average P. Atk.
-(31106, 4411, 11), -- Average M. Atk.
-(31106, 4412, 11), -- Average P. Def.
-(31106, 4413, 11), -- Average M. Def.
-(31106, 4414, 2), -- Standard Type
-(31106, 4415, 3), -- One-handed Sword
-(31106, 4416, 19), -- Others
+(31106, 4390, 1), -- NPC Abnormal Immunity
+(31106, 4408, 1), -- HP Modifiers
+(31106, 4409, 1), -- MP Modifiers
+(31106, 4410, 11), -- P. Atk. Modifiers
+(31106, 4411, 11), -- M. Atk. Modifiers
+(31106, 4412, 11), -- P. Def. Modifiers
+(31106, 4413, 11), -- M. Def. Modifiers
+(31106, 4414, 2), -- Armor Type
+(31106, 4415, 3), -- Weapon Type
+(31106, 4416, 19), -- Races
 -- Gatekeeper Ziggurat
 (31107, 4045, 1), -- Resist Full Magic Attack
-(31107, 4390, 1), -- Mystic Immunity
-(31107, 4408, 1), -- HP Increase (1x)
-(31107, 4409, 1), -- MP Increase (1x)
-(31107, 4410, 11), -- Average P. Atk.
-(31107, 4411, 11), -- Average M. Atk.
-(31107, 4412, 11), -- Average P. Def.
-(31107, 4413, 11), -- Average M. Def.
-(31107, 4414, 2), -- Standard Type
-(31107, 4415, 3), -- One-handed Sword
-(31107, 4416, 19), -- Others
+(31107, 4390, 1), -- NPC Abnormal Immunity
+(31107, 4408, 1), -- HP Modifiers
+(31107, 4409, 1), -- MP Modifiers
+(31107, 4410, 11), -- P. Atk. Modifiers
+(31107, 4411, 11), -- M. Atk. Modifiers
+(31107, 4412, 11), -- P. Def. Modifiers
+(31107, 4413, 11), -- M. Def. Modifiers
+(31107, 4414, 2), -- Armor Type
+(31107, 4415, 3), -- Weapon Type
+(31107, 4416, 19), -- Races
 -- Gatekeeper Ziggurat
 (31108, 4045, 1), -- Resist Full Magic Attack
-(31108, 4390, 1), -- Mystic Immunity
-(31108, 4408, 1), -- HP Increase (1x)
-(31108, 4409, 1), -- MP Increase (1x)
-(31108, 4410, 11), -- Average P. Atk.
-(31108, 4411, 11), -- Average M. Atk.
-(31108, 4412, 11), -- Average P. Def.
-(31108, 4413, 11), -- Average M. Def.
-(31108, 4414, 2), -- Standard Type
-(31108, 4415, 3), -- One-handed Sword
-(31108, 4416, 19), -- Others
+(31108, 4390, 1), -- NPC Abnormal Immunity
+(31108, 4408, 1), -- HP Modifiers
+(31108, 4409, 1), -- MP Modifiers
+(31108, 4410, 11), -- P. Atk. Modifiers
+(31108, 4411, 11), -- M. Atk. Modifiers
+(31108, 4412, 11), -- P. Def. Modifiers
+(31108, 4413, 11), -- M. Def. Modifiers
+(31108, 4414, 2), -- Armor Type
+(31108, 4415, 3), -- Weapon Type
+(31108, 4416, 19), -- Races
 -- Gatekeeper Ziggurat
 (31109, 4045, 1), -- Resist Full Magic Attack
-(31109, 4390, 1), -- Mystic Immunity
-(31109, 4408, 1), -- HP Increase (1x)
-(31109, 4409, 1), -- MP Increase (1x)
-(31109, 4410, 11), -- Average P. Atk.
-(31109, 4411, 11), -- Average M. Atk.
-(31109, 4412, 11), -- Average P. Def.
-(31109, 4413, 11), -- Average M. Def.
-(31109, 4414, 2), -- Standard Type
-(31109, 4415, 3), -- One-handed Sword
-(31109, 4416, 19), -- Others
+(31109, 4390, 1), -- NPC Abnormal Immunity
+(31109, 4408, 1), -- HP Modifiers
+(31109, 4409, 1), -- MP Modifiers
+(31109, 4410, 11), -- P. Atk. Modifiers
+(31109, 4411, 11), -- M. Atk. Modifiers
+(31109, 4412, 11), -- P. Def. Modifiers
+(31109, 4413, 11), -- M. Def. Modifiers
+(31109, 4414, 2), -- Armor Type
+(31109, 4415, 3), -- Weapon Type
+(31109, 4416, 19), -- Races
 -- Gatekeeper Ziggurat
 (31110, 4045, 1), -- Resist Full Magic Attack
-(31110, 4390, 1), -- Mystic Immunity
-(31110, 4408, 1), -- HP Increase (1x)
-(31110, 4409, 1), -- MP Increase (1x)
-(31110, 4410, 11), -- Average P. Atk.
-(31110, 4411, 11), -- Average M. Atk.
-(31110, 4412, 11), -- Average P. Def.
-(31110, 4413, 11), -- Average M. Def.
-(31110, 4414, 2), -- Standard Type
-(31110, 4415, 3), -- One-handed Sword
-(31110, 4416, 19), -- Others
+(31110, 4390, 1), -- NPC Abnormal Immunity
+(31110, 4408, 1), -- HP Modifiers
+(31110, 4409, 1), -- MP Modifiers
+(31110, 4410, 11), -- P. Atk. Modifiers
+(31110, 4411, 11), -- M. Atk. Modifiers
+(31110, 4412, 11), -- P. Def. Modifiers
+(31110, 4413, 11), -- M. Def. Modifiers
+(31110, 4414, 2), -- Armor Type
+(31110, 4415, 3), -- Weapon Type
+(31110, 4416, 19), -- Races
 -- Gatekeeper Spirit
 (31111, 4045, 1), -- Resist Full Magic Attack
-(31111, 4390, 1), -- Mystic Immunity
-(31111, 4408, 1), -- HP Increase (1x)
-(31111, 4409, 1), -- MP Increase (1x)
-(31111, 4410, 11), -- Average P. Atk.
-(31111, 4411, 11), -- Average M. Atk.
-(31111, 4412, 11), -- Average P. Def.
-(31111, 4413, 11), -- Average M. Def.
-(31111, 4414, 2), -- Standard Type
-(31111, 4415, 3), -- One-handed Sword
-(31111, 4416, 19), -- Others
+(31111, 4390, 1), -- NPC Abnormal Immunity
+(31111, 4408, 1), -- HP Modifiers
+(31111, 4409, 1), -- MP Modifiers
+(31111, 4410, 11), -- P. Atk. Modifiers
+(31111, 4411, 11), -- M. Atk. Modifiers
+(31111, 4412, 11), -- P. Def. Modifiers
+(31111, 4413, 11), -- M. Def. Modifiers
+(31111, 4414, 2), -- Armor Type
+(31111, 4415, 3), -- Weapon Type
+(31111, 4416, 19), -- Races
 -- Gatekeeper Spirit
 (31112, 4045, 1), -- Resist Full Magic Attack
-(31112, 4390, 1), -- Mystic Immunity
-(31112, 4408, 1), -- HP Increase (1x)
-(31112, 4409, 1), -- MP Increase (1x)
-(31112, 4410, 11), -- Average P. Atk.
-(31112, 4411, 11), -- Average M. Atk.
-(31112, 4412, 11), -- Average P. Def.
-(31112, 4413, 11), -- Average M. Def.
-(31112, 4414, 2), -- Standard Type
-(31112, 4415, 3), -- One-handed Sword
-(31112, 4416, 19), -- Others
+(31112, 4390, 1), -- NPC Abnormal Immunity
+(31112, 4408, 1), -- HP Modifiers
+(31112, 4409, 1), -- MP Modifiers
+(31112, 4410, 11), -- P. Atk. Modifiers
+(31112, 4411, 11), -- M. Atk. Modifiers
+(31112, 4412, 11), -- P. Def. Modifiers
+(31112, 4413, 11), -- M. Def. Modifiers
+(31112, 4414, 2), -- Armor Type
+(31112, 4415, 3), -- Weapon Type
+(31112, 4416, 19), -- Races
 -- Merchant of Mammon
 (31113, 4045, 1), -- Resist Full Magic Attack
-(31113, 4408, 1), -- HP Increase (1x)
-(31113, 4409, 1), -- MP Increase (1x)
-(31113, 4410, 11), -- Average P. Atk.
-(31113, 4411, 11), -- Average M. Atk.
-(31113, 4412, 11), -- Average P. Def.
-(31113, 4413, 11), -- Average M. Def.
-(31113, 4414, 2), -- Standard Type
-(31113, 4415, 3), -- One-handed Sword
-(31113, 4416, 18), -- Dwarves
+(31113, 4408, 1), -- HP Modifiers
+(31113, 4409, 1), -- MP Modifiers
+(31113, 4410, 11), -- P. Atk. Modifiers
+(31113, 4411, 11), -- M. Atk. Modifiers
+(31113, 4412, 11), -- P. Def. Modifiers
+(31113, 4413, 11), -- M. Def. Modifiers
+(31113, 4414, 2), -- Armor Type
+(31113, 4415, 3), -- Weapon Type
+(31113, 4416, 18), -- Races
 -- Gatekeeper Ziggurat
 (31114, 4045, 1), -- Resist Full Magic Attack
-(31114, 4390, 1), -- Mystic Immunity
-(31114, 4408, 1), -- HP Increase (1x)
-(31114, 4409, 1), -- MP Increase (1x)
-(31114, 4410, 11), -- Average P. Atk.
-(31114, 4411, 11), -- Average M. Atk.
-(31114, 4412, 11), -- Average P. Def.
-(31114, 4413, 11), -- Average M. Def.
-(31114, 4414, 2), -- Standard Type
-(31114, 4415, 3), -- One-handed Sword
-(31114, 4416, 19), -- Others
+(31114, 4390, 1), -- NPC Abnormal Immunity
+(31114, 4408, 1), -- HP Modifiers
+(31114, 4409, 1), -- MP Modifiers
+(31114, 4410, 11), -- P. Atk. Modifiers
+(31114, 4411, 11), -- M. Atk. Modifiers
+(31114, 4412, 11), -- P. Def. Modifiers
+(31114, 4413, 11), -- M. Def. Modifiers
+(31114, 4414, 2), -- Armor Type
+(31114, 4415, 3), -- Weapon Type
+(31114, 4416, 19), -- Races
 -- Gatekeeper Ziggurat
 (31115, 4045, 1), -- Resist Full Magic Attack
-(31115, 4390, 1), -- Mystic Immunity
-(31115, 4408, 1), -- HP Increase (1x)
-(31115, 4409, 1), -- MP Increase (1x)
-(31115, 4410, 11), -- Average P. Atk.
-(31115, 4411, 11), -- Average M. Atk.
-(31115, 4412, 11), -- Average P. Def.
-(31115, 4413, 11), -- Average M. Def.
-(31115, 4414, 2), -- Standard Type
-(31115, 4415, 3), -- One-handed Sword
-(31115, 4416, 19), -- Others
+(31115, 4390, 1), -- NPC Abnormal Immunity
+(31115, 4408, 1), -- HP Modifiers
+(31115, 4409, 1), -- MP Modifiers
+(31115, 4410, 11), -- P. Atk. Modifiers
+(31115, 4411, 11), -- M. Atk. Modifiers
+(31115, 4412, 11), -- P. Def. Modifiers
+(31115, 4413, 11), -- M. Def. Modifiers
+(31115, 4414, 2), -- Armor Type
+(31115, 4415, 3), -- Weapon Type
+(31115, 4416, 19), -- Races
 -- Gatekeeper Ziggurat
 (31116, 4045, 1), -- Resist Full Magic Attack
-(31116, 4390, 1), -- Mystic Immunity
-(31116, 4408, 1), -- HP Increase (1x)
-(31116, 4409, 1), -- MP Increase (1x)
-(31116, 4410, 11), -- Average P. Atk.
-(31116, 4411, 11), -- Average M. Atk.
-(31116, 4412, 11), -- Average P. Def.
-(31116, 4413, 11), -- Average M. Def.
-(31116, 4414, 2), -- Standard Type
-(31116, 4415, 3), -- One-handed Sword
-(31116, 4416, 19), -- Others
+(31116, 4390, 1), -- NPC Abnormal Immunity
+(31116, 4408, 1), -- HP Modifiers
+(31116, 4409, 1), -- MP Modifiers
+(31116, 4410, 11), -- P. Atk. Modifiers
+(31116, 4411, 11), -- M. Atk. Modifiers
+(31116, 4412, 11), -- P. Def. Modifiers
+(31116, 4413, 11), -- M. Def. Modifiers
+(31116, 4414, 2), -- Armor Type
+(31116, 4415, 3), -- Weapon Type
+(31116, 4416, 19), -- Races
 -- Gatekeeper Ziggurat
 (31117, 4045, 1), -- Resist Full Magic Attack
-(31117, 4390, 1), -- Mystic Immunity
-(31117, 4408, 1), -- HP Increase (1x)
-(31117, 4409, 1), -- MP Increase (1x)
-(31117, 4410, 11), -- Average P. Atk.
-(31117, 4411, 11), -- Average M. Atk.
-(31117, 4412, 11), -- Average P. Def.
-(31117, 4413, 11), -- Average M. Def.
-(31117, 4414, 2), -- Standard Type
-(31117, 4415, 3), -- One-handed Sword
-(31117, 4416, 19), -- Others
+(31117, 4390, 1), -- NPC Abnormal Immunity
+(31117, 4408, 1), -- HP Modifiers
+(31117, 4409, 1), -- MP Modifiers
+(31117, 4410, 11), -- P. Atk. Modifiers
+(31117, 4411, 11), -- M. Atk. Modifiers
+(31117, 4412, 11), -- P. Def. Modifiers
+(31117, 4413, 11), -- M. Def. Modifiers
+(31117, 4414, 2), -- Armor Type
+(31117, 4415, 3), -- Weapon Type
+(31117, 4416, 19), -- Races
 -- Gatekeeper Ziggurat
 (31118, 4045, 1), -- Resist Full Magic Attack
-(31118, 4390, 1), -- Mystic Immunity
-(31118, 4408, 1), -- HP Increase (1x)
-(31118, 4409, 1), -- MP Increase (1x)
-(31118, 4410, 11), -- Average P. Atk.
-(31118, 4411, 11), -- Average M. Atk.
-(31118, 4412, 11), -- Average P. Def.
-(31118, 4413, 11), -- Average M. Def.
-(31118, 4414, 2), -- Standard Type
-(31118, 4415, 3), -- One-handed Sword
-(31118, 4416, 19), -- Others
+(31118, 4390, 1), -- NPC Abnormal Immunity
+(31118, 4408, 1), -- HP Modifiers
+(31118, 4409, 1), -- MP Modifiers
+(31118, 4410, 11), -- P. Atk. Modifiers
+(31118, 4411, 11), -- M. Atk. Modifiers
+(31118, 4412, 11), -- P. Def. Modifiers
+(31118, 4413, 11), -- M. Def. Modifiers
+(31118, 4414, 2), -- Armor Type
+(31118, 4415, 3), -- Weapon Type
+(31118, 4416, 19), -- Races
 -- Gatekeeper Ziggurat
 (31119, 4045, 1), -- Resist Full Magic Attack
-(31119, 4390, 1), -- Mystic Immunity
-(31119, 4408, 1), -- HP Increase (1x)
-(31119, 4409, 1), -- MP Increase (1x)
-(31119, 4410, 11), -- Average P. Atk.
-(31119, 4411, 11), -- Average M. Atk.
-(31119, 4412, 11), -- Average P. Def.
-(31119, 4413, 11), -- Average M. Def.
-(31119, 4414, 2), -- Standard Type
-(31119, 4415, 3), -- One-handed Sword
-(31119, 4416, 19), -- Others
+(31119, 4390, 1), -- NPC Abnormal Immunity
+(31119, 4408, 1), -- HP Modifiers
+(31119, 4409, 1), -- MP Modifiers
+(31119, 4410, 11), -- P. Atk. Modifiers
+(31119, 4411, 11), -- M. Atk. Modifiers
+(31119, 4412, 11), -- P. Def. Modifiers
+(31119, 4413, 11), -- M. Def. Modifiers
+(31119, 4414, 2), -- Armor Type
+(31119, 4415, 3), -- Weapon Type
+(31119, 4416, 19), -- Races
 -- Gatekeeper Ziggurat
 (31120, 4045, 1), -- Resist Full Magic Attack
-(31120, 4390, 1), -- Mystic Immunity
-(31120, 4408, 1), -- HP Increase (1x)
-(31120, 4409, 1), -- MP Increase (1x)
-(31120, 4410, 11), -- Average P. Atk.
-(31120, 4411, 11), -- Average M. Atk.
-(31120, 4412, 11), -- Average P. Def.
-(31120, 4413, 11), -- Average M. Def.
-(31120, 4414, 2), -- Standard Type
-(31120, 4415, 3), -- One-handed Sword
-(31120, 4416, 19), -- Others
+(31120, 4390, 1), -- NPC Abnormal Immunity
+(31120, 4408, 1), -- HP Modifiers
+(31120, 4409, 1), -- MP Modifiers
+(31120, 4410, 11), -- P. Atk. Modifiers
+(31120, 4411, 11), -- M. Atk. Modifiers
+(31120, 4412, 11), -- P. Def. Modifiers
+(31120, 4413, 11), -- M. Def. Modifiers
+(31120, 4414, 2), -- Armor Type
+(31120, 4415, 3), -- Weapon Type
+(31120, 4416, 19), -- Races
 -- Gatekeeper Ziggurat
 (31121, 4045, 1), -- Resist Full Magic Attack
-(31121, 4390, 1), -- Mystic Immunity
-(31121, 4408, 1), -- HP Increase (1x)
-(31121, 4409, 1), -- MP Increase (1x)
-(31121, 4410, 11), -- Average P. Atk.
-(31121, 4411, 11), -- Average M. Atk.
-(31121, 4412, 11), -- Average P. Def.
-(31121, 4413, 11), -- Average M. Def.
-(31121, 4414, 2), -- Standard Type
-(31121, 4415, 3), -- One-handed Sword
-(31121, 4416, 19), -- Others
+(31121, 4390, 1), -- NPC Abnormal Immunity
+(31121, 4408, 1), -- HP Modifiers
+(31121, 4409, 1), -- MP Modifiers
+(31121, 4410, 11), -- P. Atk. Modifiers
+(31121, 4411, 11), -- M. Atk. Modifiers
+(31121, 4412, 11), -- P. Def. Modifiers
+(31121, 4413, 11), -- M. Def. Modifiers
+(31121, 4414, 2), -- Armor Type
+(31121, 4415, 3), -- Weapon Type
+(31121, 4416, 19), -- Races
 -- Gatekeeper Ziggurat
 (31122, 4045, 1), -- Resist Full Magic Attack
-(31122, 4390, 1), -- Mystic Immunity
-(31122, 4408, 1), -- HP Increase (1x)
-(31122, 4409, 1), -- MP Increase (1x)
-(31122, 4410, 11), -- Average P. Atk.
-(31122, 4411, 11), -- Average M. Atk.
-(31122, 4412, 11), -- Average P. Def.
-(31122, 4413, 11), -- Average M. Def.
-(31122, 4414, 2), -- Standard Type
-(31122, 4415, 3), -- One-handed Sword
-(31122, 4416, 19), -- Others
+(31122, 4390, 1), -- NPC Abnormal Immunity
+(31122, 4408, 1), -- HP Modifiers
+(31122, 4409, 1), -- MP Modifiers
+(31122, 4410, 11), -- P. Atk. Modifiers
+(31122, 4411, 11), -- M. Atk. Modifiers
+(31122, 4412, 11), -- P. Def. Modifiers
+(31122, 4413, 11), -- M. Def. Modifiers
+(31122, 4414, 2), -- Armor Type
+(31122, 4415, 3), -- Weapon Type
+(31122, 4416, 19), -- Races
 -- Gatekeeper Ziggurat
 (31123, 4045, 1), -- Resist Full Magic Attack
-(31123, 4390, 1), -- Mystic Immunity
-(31123, 4408, 1), -- HP Increase (1x)
-(31123, 4409, 1), -- MP Increase (1x)
-(31123, 4410, 11), -- Average P. Atk.
-(31123, 4411, 11), -- Average M. Atk.
-(31123, 4412, 11), -- Average P. Def.
-(31123, 4413, 11), -- Average M. Def.
-(31123, 4414, 2), -- Standard Type
-(31123, 4415, 3), -- One-handed Sword
-(31123, 4416, 19), -- Others
+(31123, 4390, 1), -- NPC Abnormal Immunity
+(31123, 4408, 1), -- HP Modifiers
+(31123, 4409, 1), -- MP Modifiers
+(31123, 4410, 11), -- P. Atk. Modifiers
+(31123, 4411, 11), -- M. Atk. Modifiers
+(31123, 4412, 11), -- P. Def. Modifiers
+(31123, 4413, 11), -- M. Def. Modifiers
+(31123, 4414, 2), -- Armor Type
+(31123, 4415, 3), -- Weapon Type
+(31123, 4416, 19), -- Races
 -- Gatekeeper Ziggurat
 (31124, 4045, 1), -- Resist Full Magic Attack
-(31124, 4390, 1), -- Mystic Immunity
-(31124, 4408, 1), -- HP Increase (1x)
-(31124, 4409, 1), -- MP Increase (1x)
-(31124, 4410, 11), -- Average P. Atk.
-(31124, 4411, 11), -- Average M. Atk.
-(31124, 4412, 11), -- Average P. Def.
-(31124, 4413, 11), -- Average M. Def.
-(31124, 4414, 2), -- Standard Type
-(31124, 4415, 3), -- One-handed Sword
-(31124, 4416, 19), -- Others
+(31124, 4390, 1), -- NPC Abnormal Immunity
+(31124, 4408, 1), -- HP Modifiers
+(31124, 4409, 1), -- MP Modifiers
+(31124, 4410, 11), -- P. Atk. Modifiers
+(31124, 4411, 11), -- M. Atk. Modifiers
+(31124, 4412, 11), -- P. Def. Modifiers
+(31124, 4413, 11), -- M. Def. Modifiers
+(31124, 4414, 2), -- Armor Type
+(31124, 4415, 3), -- Weapon Type
+(31124, 4416, 19), -- Races
 -- Gatekeeper Ziggurat
 (31125, 4045, 1), -- Resist Full Magic Attack
-(31125, 4390, 1), -- Mystic Immunity
-(31125, 4408, 1), -- HP Increase (1x)
-(31125, 4409, 1), -- MP Increase (1x)
-(31125, 4410, 11), -- Average P. Atk.
-(31125, 4411, 11), -- Average M. Atk.
-(31125, 4412, 11), -- Average P. Def.
-(31125, 4413, 11), -- Average M. Def.
-(31125, 4414, 2), -- Standard Type
-(31125, 4415, 3), -- One-handed Sword
-(31125, 4416, 19), -- Others
+(31125, 4390, 1), -- NPC Abnormal Immunity
+(31125, 4408, 1), -- HP Modifiers
+(31125, 4409, 1), -- MP Modifiers
+(31125, 4410, 11), -- P. Atk. Modifiers
+(31125, 4411, 11), -- M. Atk. Modifiers
+(31125, 4412, 11), -- P. Def. Modifiers
+(31125, 4413, 11), -- M. Def. Modifiers
+(31125, 4414, 2), -- Armor Type
+(31125, 4415, 3), -- Weapon Type
+(31125, 4416, 19), -- Races
 -- Blacksmith of Mammon
 (31126, 4045, 1), -- Resist Full Magic Attack
-(31126, 4408, 1), -- HP Increase (1x)
-(31126, 4409, 1), -- MP Increase (1x)
-(31126, 4410, 11), -- Average P. Atk.
-(31126, 4411, 11), -- Average M. Atk.
-(31126, 4412, 11), -- Average P. Def.
-(31126, 4413, 11), -- Average M. Def.
-(31126, 4414, 2), -- Standard Type
-(31126, 4415, 3), -- One-handed Sword
-(31126, 4416, 18), -- Dwarves
+(31126, 4408, 1), -- HP Modifiers
+(31126, 4409, 1), -- MP Modifiers
+(31126, 4410, 11), -- P. Atk. Modifiers
+(31126, 4411, 11), -- M. Atk. Modifiers
+(31126, 4412, 11), -- P. Def. Modifiers
+(31126, 4413, 11), -- M. Def. Modifiers
+(31126, 4414, 2), -- Armor Type
+(31126, 4415, 3), -- Weapon Type
+(31126, 4416, 18), -- Races
 -- Festival Guide
 (31127, 4045, 1), -- Resist Full Magic Attack
-(31127, 4408, 1), -- HP Increase (1x)
-(31127, 4409, 1), -- MP Increase (1x)
-(31127, 4410, 11), -- Average P. Atk.
-(31127, 4411, 11), -- Average M. Atk.
-(31127, 4412, 11), -- Average P. Def.
-(31127, 4413, 11), -- Average M. Def.
-(31127, 4414, 2), -- Standard Type
-(31127, 4415, 1), -- Bare Hands
-(31127, 4416, 14), -- Humans
+(31127, 4408, 1), -- HP Modifiers
+(31127, 4409, 1), -- MP Modifiers
+(31127, 4410, 11), -- P. Atk. Modifiers
+(31127, 4411, 11), -- M. Atk. Modifiers
+(31127, 4412, 11), -- P. Def. Modifiers
+(31127, 4413, 11), -- M. Def. Modifiers
+(31127, 4414, 2), -- Armor Type
+(31127, 4415, 1), -- Weapon Type
+(31127, 4416, 14), -- Races
 -- Festival Guide
 (31128, 4045, 1), -- Resist Full Magic Attack
-(31128, 4408, 1), -- HP Increase (1x)
-(31128, 4409, 1), -- MP Increase (1x)
-(31128, 4410, 11), -- Average P. Atk.
-(31128, 4411, 11), -- Average M. Atk.
-(31128, 4412, 11), -- Average P. Def.
-(31128, 4413, 11), -- Average M. Def.
-(31128, 4414, 2), -- Standard Type
-(31128, 4415, 1), -- Bare Hands
-(31128, 4416, 14), -- Humans
+(31128, 4408, 1), -- HP Modifiers
+(31128, 4409, 1), -- MP Modifiers
+(31128, 4410, 11), -- P. Atk. Modifiers
+(31128, 4411, 11), -- M. Atk. Modifiers
+(31128, 4412, 11), -- P. Def. Modifiers
+(31128, 4413, 11), -- M. Def. Modifiers
+(31128, 4414, 2), -- Armor Type
+(31128, 4415, 1), -- Weapon Type
+(31128, 4416, 14), -- Races
 -- Festival Guide
 (31129, 4045, 1), -- Resist Full Magic Attack
-(31129, 4408, 1), -- HP Increase (1x)
-(31129, 4409, 1), -- MP Increase (1x)
-(31129, 4410, 11), -- Average P. Atk.
-(31129, 4411, 11), -- Average M. Atk.
-(31129, 4412, 11), -- Average P. Def.
-(31129, 4413, 11), -- Average M. Def.
-(31129, 4414, 2), -- Standard Type
-(31129, 4415, 1), -- Bare Hands
-(31129, 4416, 14), -- Humans
+(31129, 4408, 1), -- HP Modifiers
+(31129, 4409, 1), -- MP Modifiers
+(31129, 4410, 11), -- P. Atk. Modifiers
+(31129, 4411, 11), -- M. Atk. Modifiers
+(31129, 4412, 11), -- P. Def. Modifiers
+(31129, 4413, 11), -- M. Def. Modifiers
+(31129, 4414, 2), -- Armor Type
+(31129, 4415, 1), -- Weapon Type
+(31129, 4416, 14), -- Races
 -- Festival Guide
 (31130, 4045, 1), -- Resist Full Magic Attack
-(31130, 4408, 1), -- HP Increase (1x)
-(31130, 4409, 1), -- MP Increase (1x)
-(31130, 4410, 11), -- Average P. Atk.
-(31130, 4411, 11), -- Average M. Atk.
-(31130, 4412, 11), -- Average P. Def.
-(31130, 4413, 11), -- Average M. Def.
-(31130, 4414, 2), -- Standard Type
-(31130, 4415, 1), -- Bare Hands
-(31130, 4416, 14), -- Humans
+(31130, 4408, 1), -- HP Modifiers
+(31130, 4409, 1), -- MP Modifiers
+(31130, 4410, 11), -- P. Atk. Modifiers
+(31130, 4411, 11), -- M. Atk. Modifiers
+(31130, 4412, 11), -- P. Def. Modifiers
+(31130, 4413, 11), -- M. Def. Modifiers
+(31130, 4414, 2), -- Armor Type
+(31130, 4415, 1), -- Weapon Type
+(31130, 4416, 14), -- Races
 -- Festival Guide
 (31131, 4045, 1), -- Resist Full Magic Attack
-(31131, 4408, 1), -- HP Increase (1x)
-(31131, 4409, 1), -- MP Increase (1x)
-(31131, 4410, 11), -- Average P. Atk.
-(31131, 4411, 11), -- Average M. Atk.
-(31131, 4412, 11), -- Average P. Def.
-(31131, 4413, 11), -- Average M. Def.
-(31131, 4414, 2), -- Standard Type
-(31131, 4415, 1), -- Bare Hands
-(31131, 4416, 14), -- Humans
+(31131, 4408, 1), -- HP Modifiers
+(31131, 4409, 1), -- MP Modifiers
+(31131, 4410, 11), -- P. Atk. Modifiers
+(31131, 4411, 11), -- M. Atk. Modifiers
+(31131, 4412, 11), -- P. Def. Modifiers
+(31131, 4413, 11), -- M. Def. Modifiers
+(31131, 4414, 2), -- Armor Type
+(31131, 4415, 1), -- Weapon Type
+(31131, 4416, 14), -- Races
 -- Festival Witch
 (31132, 4045, 1), -- Resist Full Magic Attack
-(31132, 4408, 1), -- HP Increase (1x)
-(31132, 4409, 1), -- MP Increase (1x)
-(31132, 4410, 11), -- Average P. Atk.
-(31132, 4411, 11), -- Average M. Atk.
-(31132, 4412, 11), -- Average P. Def.
-(31132, 4413, 11), -- Average M. Def.
-(31132, 4414, 2), -- Standard Type
-(31132, 4415, 3), -- One-handed Sword
-(31132, 4416, 16), -- Dark Elves
+(31132, 4408, 1), -- HP Modifiers
+(31132, 4409, 1), -- MP Modifiers
+(31132, 4410, 11), -- P. Atk. Modifiers
+(31132, 4411, 11), -- M. Atk. Modifiers
+(31132, 4412, 11), -- P. Def. Modifiers
+(31132, 4413, 11), -- M. Def. Modifiers
+(31132, 4414, 2), -- Armor Type
+(31132, 4415, 3), -- Weapon Type
+(31132, 4416, 16), -- Races
 -- Festival Witch
 (31133, 4045, 1), -- Resist Full Magic Attack
-(31133, 4408, 1), -- HP Increase (1x)
-(31133, 4409, 1), -- MP Increase (1x)
-(31133, 4410, 11), -- Average P. Atk.
-(31133, 4411, 11), -- Average M. Atk.
-(31133, 4412, 11), -- Average P. Def.
-(31133, 4413, 11), -- Average M. Def.
-(31133, 4414, 2), -- Standard Type
-(31133, 4415, 3), -- One-handed Sword
-(31133, 4416, 16), -- Dark Elves
+(31133, 4408, 1), -- HP Modifiers
+(31133, 4409, 1), -- MP Modifiers
+(31133, 4410, 11), -- P. Atk. Modifiers
+(31133, 4411, 11), -- M. Atk. Modifiers
+(31133, 4412, 11), -- P. Def. Modifiers
+(31133, 4413, 11), -- M. Def. Modifiers
+(31133, 4414, 2), -- Armor Type
+(31133, 4415, 3), -- Weapon Type
+(31133, 4416, 16), -- Races
 -- Festival Witch
 (31134, 4045, 1), -- Resist Full Magic Attack
-(31134, 4408, 1), -- HP Increase (1x)
-(31134, 4409, 1), -- MP Increase (1x)
-(31134, 4410, 11), -- Average P. Atk.
-(31134, 4411, 11), -- Average M. Atk.
-(31134, 4412, 11), -- Average P. Def.
-(31134, 4413, 11), -- Average M. Def.
-(31134, 4414, 2), -- Standard Type
-(31134, 4415, 3), -- One-handed Sword
-(31134, 4416, 16), -- Dark Elves
+(31134, 4408, 1), -- HP Modifiers
+(31134, 4409, 1), -- MP Modifiers
+(31134, 4410, 11), -- P. Atk. Modifiers
+(31134, 4411, 11), -- M. Atk. Modifiers
+(31134, 4412, 11), -- P. Def. Modifiers
+(31134, 4413, 11), -- M. Def. Modifiers
+(31134, 4414, 2), -- Armor Type
+(31134, 4415, 3), -- Weapon Type
+(31134, 4416, 16), -- Races
 -- Festival Witch
 (31135, 4045, 1), -- Resist Full Magic Attack
-(31135, 4408, 1), -- HP Increase (1x)
-(31135, 4409, 1), -- MP Increase (1x)
-(31135, 4410, 11), -- Average P. Atk.
-(31135, 4411, 11), -- Average M. Atk.
-(31135, 4412, 11), -- Average P. Def.
-(31135, 4413, 11), -- Average M. Def.
-(31135, 4414, 2), -- Standard Type
-(31135, 4415, 3), -- One-handed Sword
-(31135, 4416, 16), -- Dark Elves
+(31135, 4408, 1), -- HP Modifiers
+(31135, 4409, 1), -- MP Modifiers
+(31135, 4410, 11), -- P. Atk. Modifiers
+(31135, 4411, 11), -- M. Atk. Modifiers
+(31135, 4412, 11), -- P. Def. Modifiers
+(31135, 4413, 11), -- M. Def. Modifiers
+(31135, 4414, 2), -- Armor Type
+(31135, 4415, 3), -- Weapon Type
+(31135, 4416, 16), -- Races
 -- Festival Witch
 (31136, 4045, 1), -- Resist Full Magic Attack
-(31136, 4408, 1), -- HP Increase (1x)
-(31136, 4409, 1), -- MP Increase (1x)
-(31136, 4410, 11), -- Average P. Atk.
-(31136, 4411, 11), -- Average M. Atk.
-(31136, 4412, 11), -- Average P. Def.
-(31136, 4413, 11), -- Average M. Def.
-(31136, 4414, 2), -- Standard Type
-(31136, 4415, 3), -- One-handed Sword
-(31136, 4416, 16), -- Dark Elves
+(31136, 4408, 1), -- HP Modifiers
+(31136, 4409, 1), -- MP Modifiers
+(31136, 4410, 11), -- P. Atk. Modifiers
+(31136, 4411, 11), -- M. Atk. Modifiers
+(31136, 4412, 11), -- P. Def. Modifiers
+(31136, 4413, 11), -- M. Def. Modifiers
+(31136, 4414, 2), -- Armor Type
+(31136, 4415, 3), -- Weapon Type
+(31136, 4416, 16), -- Races
 -- Festival Guide
 (31137, 4045, 1), -- Resist Full Magic Attack
-(31137, 4408, 1), -- HP Increase (1x)
-(31137, 4409, 1), -- MP Increase (1x)
-(31137, 4410, 11), -- Average P. Atk.
-(31137, 4411, 11), -- Average M. Atk.
-(31137, 4412, 11), -- Average P. Def.
-(31137, 4413, 11), -- Average M. Def.
-(31137, 4414, 2), -- Standard Type
-(31137, 4415, 1), -- Bare Hands
-(31137, 4416, 16), -- Dark Elves
+(31137, 4408, 1), -- HP Modifiers
+(31137, 4409, 1), -- MP Modifiers
+(31137, 4410, 11), -- P. Atk. Modifiers
+(31137, 4411, 11), -- M. Atk. Modifiers
+(31137, 4412, 11), -- P. Def. Modifiers
+(31137, 4413, 11), -- M. Def. Modifiers
+(31137, 4414, 2), -- Armor Type
+(31137, 4415, 1), -- Weapon Type
+(31137, 4416, 16), -- Races
 -- Festival Guide
 (31138, 4045, 1), -- Resist Full Magic Attack
-(31138, 4408, 1), -- HP Increase (1x)
-(31138, 4409, 1), -- MP Increase (1x)
-(31138, 4410, 11), -- Average P. Atk.
-(31138, 4411, 11), -- Average M. Atk.
-(31138, 4412, 11), -- Average P. Def.
-(31138, 4413, 11), -- Average M. Def.
-(31138, 4414, 2), -- Standard Type
-(31138, 4415, 1), -- Bare Hands
-(31138, 4416, 16), -- Dark Elves
+(31138, 4408, 1), -- HP Modifiers
+(31138, 4409, 1), -- MP Modifiers
+(31138, 4410, 11), -- P. Atk. Modifiers
+(31138, 4411, 11), -- M. Atk. Modifiers
+(31138, 4412, 11), -- P. Def. Modifiers
+(31138, 4413, 11), -- M. Def. Modifiers
+(31138, 4414, 2), -- Armor Type
+(31138, 4415, 1), -- Weapon Type
+(31138, 4416, 16), -- Races
 -- Festival Guide
 (31139, 4045, 1), -- Resist Full Magic Attack
-(31139, 4408, 1), -- HP Increase (1x)
-(31139, 4409, 1), -- MP Increase (1x)
-(31139, 4410, 11), -- Average P. Atk.
-(31139, 4411, 11), -- Average M. Atk.
-(31139, 4412, 11), -- Average P. Def.
-(31139, 4413, 11), -- Average M. Def.
-(31139, 4414, 2), -- Standard Type
-(31139, 4415, 1), -- Bare Hands
-(31139, 4416, 16), -- Dark Elves
+(31139, 4408, 1), -- HP Modifiers
+(31139, 4409, 1), -- MP Modifiers
+(31139, 4410, 11), -- P. Atk. Modifiers
+(31139, 4411, 11), -- M. Atk. Modifiers
+(31139, 4412, 11), -- P. Def. Modifiers
+(31139, 4413, 11), -- M. Def. Modifiers
+(31139, 4414, 2), -- Armor Type
+(31139, 4415, 1), -- Weapon Type
+(31139, 4416, 16), -- Races
 -- Festival Guide
 (31140, 4045, 1), -- Resist Full Magic Attack
-(31140, 4408, 1), -- HP Increase (1x)
-(31140, 4409, 1), -- MP Increase (1x)
-(31140, 4410, 11), -- Average P. Atk.
-(31140, 4411, 11), -- Average M. Atk.
-(31140, 4412, 11), -- Average P. Def.
-(31140, 4413, 11), -- Average M. Def.
-(31140, 4414, 2), -- Standard Type
-(31140, 4415, 1), -- Bare Hands
-(31140, 4416, 16), -- Dark Elves
+(31140, 4408, 1), -- HP Modifiers
+(31140, 4409, 1), -- MP Modifiers
+(31140, 4410, 11), -- P. Atk. Modifiers
+(31140, 4411, 11), -- M. Atk. Modifiers
+(31140, 4412, 11), -- P. Def. Modifiers
+(31140, 4413, 11), -- M. Def. Modifiers
+(31140, 4414, 2), -- Armor Type
+(31140, 4415, 1), -- Weapon Type
+(31140, 4416, 16), -- Races
 -- Festival Guide
 (31141, 4045, 1), -- Resist Full Magic Attack
-(31141, 4408, 1), -- HP Increase (1x)
-(31141, 4409, 1), -- MP Increase (1x)
-(31141, 4410, 11), -- Average P. Atk.
-(31141, 4411, 11), -- Average M. Atk.
-(31141, 4412, 11), -- Average P. Def.
-(31141, 4413, 11), -- Average M. Def.
-(31141, 4414, 2), -- Standard Type
-(31141, 4415, 1), -- Bare Hands
-(31141, 4416, 16), -- Dark Elves
+(31141, 4408, 1), -- HP Modifiers
+(31141, 4409, 1), -- MP Modifiers
+(31141, 4410, 11), -- P. Atk. Modifiers
+(31141, 4411, 11), -- M. Atk. Modifiers
+(31141, 4412, 11), -- P. Def. Modifiers
+(31141, 4413, 11), -- M. Def. Modifiers
+(31141, 4414, 2), -- Armor Type
+(31141, 4415, 1), -- Weapon Type
+(31141, 4416, 16), -- Races
 -- Festival Witch
 (31142, 4045, 1), -- Resist Full Magic Attack
-(31142, 4408, 1), -- HP Increase (1x)
-(31142, 4409, 1), -- MP Increase (1x)
-(31142, 4410, 11), -- Average P. Atk.
-(31142, 4411, 11), -- Average M. Atk.
-(31142, 4412, 11), -- Average P. Def.
-(31142, 4413, 11), -- Average M. Def.
-(31142, 4414, 2), -- Standard Type
-(31142, 4415, 3), -- One-handed Sword
-(31142, 4416, 16), -- Dark Elves
+(31142, 4408, 1), -- HP Modifiers
+(31142, 4409, 1), -- MP Modifiers
+(31142, 4410, 11), -- P. Atk. Modifiers
+(31142, 4411, 11), -- M. Atk. Modifiers
+(31142, 4412, 11), -- P. Def. Modifiers
+(31142, 4413, 11), -- M. Def. Modifiers
+(31142, 4414, 2), -- Armor Type
+(31142, 4415, 3), -- Weapon Type
+(31142, 4416, 16), -- Races
 -- Festival Witch
 (31143, 4045, 1), -- Resist Full Magic Attack
-(31143, 4408, 1), -- HP Increase (1x)
-(31143, 4409, 1), -- MP Increase (1x)
-(31143, 4410, 11), -- Average P. Atk.
-(31143, 4411, 11), -- Average M. Atk.
-(31143, 4412, 11), -- Average P. Def.
-(31143, 4413, 11), -- Average M. Def.
-(31143, 4414, 2), -- Standard Type
-(31143, 4415, 3), -- One-handed Sword
-(31143, 4416, 16), -- Dark Elves
+(31143, 4408, 1), -- HP Modifiers
+(31143, 4409, 1), -- MP Modifiers
+(31143, 4410, 11), -- P. Atk. Modifiers
+(31143, 4411, 11), -- M. Atk. Modifiers
+(31143, 4412, 11), -- P. Def. Modifiers
+(31143, 4413, 11), -- M. Def. Modifiers
+(31143, 4414, 2), -- Armor Type
+(31143, 4415, 3), -- Weapon Type
+(31143, 4416, 16), -- Races
 -- Festival Witch
 (31144, 4045, 1), -- Resist Full Magic Attack
-(31144, 4408, 1), -- HP Increase (1x)
-(31144, 4409, 1), -- MP Increase (1x)
-(31144, 4410, 11), -- Average P. Atk.
-(31144, 4411, 11), -- Average M. Atk.
-(31144, 4412, 11), -- Average P. Def.
-(31144, 4413, 11), -- Average M. Def.
-(31144, 4414, 2), -- Standard Type
-(31144, 4415, 3), -- One-handed Sword
-(31144, 4416, 16), -- Dark Elves
+(31144, 4408, 1), -- HP Modifiers
+(31144, 4409, 1), -- MP Modifiers
+(31144, 4410, 11), -- P. Atk. Modifiers
+(31144, 4411, 11), -- M. Atk. Modifiers
+(31144, 4412, 11), -- P. Def. Modifiers
+(31144, 4413, 11), -- M. Def. Modifiers
+(31144, 4414, 2), -- Armor Type
+(31144, 4415, 3), -- Weapon Type
+(31144, 4416, 16), -- Races
 -- Festival Witch
 (31145, 4045, 1), -- Resist Full Magic Attack
-(31145, 4408, 1), -- HP Increase (1x)
-(31145, 4409, 1), -- MP Increase (1x)
-(31145, 4410, 11), -- Average P. Atk.
-(31145, 4411, 11), -- Average M. Atk.
-(31145, 4412, 11), -- Average P. Def.
-(31145, 4413, 11), -- Average M. Def.
-(31145, 4414, 2), -- Standard Type
-(31145, 4415, 3), -- One-handed Sword
-(31145, 4416, 16), -- Dark Elves
+(31145, 4408, 1), -- HP Modifiers
+(31145, 4409, 1), -- MP Modifiers
+(31145, 4410, 11), -- P. Atk. Modifiers
+(31145, 4411, 11), -- M. Atk. Modifiers
+(31145, 4412, 11), -- P. Def. Modifiers
+(31145, 4413, 11), -- M. Def. Modifiers
+(31145, 4414, 2), -- Armor Type
+(31145, 4415, 3), -- Weapon Type
+(31145, 4416, 16), -- Races
 -- Festival Witch
 (31146, 4045, 1), -- Resist Full Magic Attack
-(31146, 4408, 1), -- HP Increase (1x)
-(31146, 4409, 1), -- MP Increase (1x)
-(31146, 4410, 11), -- Average P. Atk.
-(31146, 4411, 11), -- Average M. Atk.
-(31146, 4412, 11), -- Average P. Def.
-(31146, 4413, 11), -- Average M. Def.
-(31146, 4414, 2), -- Standard Type
-(31146, 4415, 3), -- One-handed Sword
-(31146, 4416, 16), -- Dark Elves
+(31146, 4408, 1), -- HP Modifiers
+(31146, 4409, 1), -- MP Modifiers
+(31146, 4410, 11), -- P. Atk. Modifiers
+(31146, 4411, 11), -- M. Atk. Modifiers
+(31146, 4412, 11), -- P. Def. Modifiers
+(31146, 4413, 11), -- M. Def. Modifiers
+(31146, 4414, 2), -- Armor Type
+(31146, 4415, 3), -- Weapon Type
+(31146, 4416, 16), -- Races
 -- Sobling
 (31147, 4045, 1), -- Resist Full Magic Attack
-(31147, 4408, 1), -- HP Increase (1x)
-(31147, 4409, 1), -- MP Increase (1x)
-(31147, 4410, 11), -- Average P. Atk.
-(31147, 4411, 11), -- Average M. Atk.
-(31147, 4412, 11), -- Average P. Def.
-(31147, 4413, 11), -- Average M. Def.
-(31147, 4414, 2), -- Standard Type
-(31147, 4415, 3), -- One-handed Sword
-(31147, 4416, 18), -- Dwarves
+(31147, 4408, 1), -- HP Modifiers
+(31147, 4409, 1), -- MP Modifiers
+(31147, 4410, 11), -- P. Atk. Modifiers
+(31147, 4411, 11), -- M. Atk. Modifiers
+(31147, 4412, 11), -- P. Def. Modifiers
+(31147, 4413, 11), -- M. Def. Modifiers
+(31147, 4414, 2), -- Armor Type
+(31147, 4415, 3), -- Weapon Type
+(31147, 4416, 18), -- Races
 -- Pirate's Chest
 (31148, 4045, 1), -- Resist Full Magic Attack
-(31148, 4390, 1), -- Mystic Immunity
-(31148, 4408, 1), -- HP Increase (1x)
-(31148, 4409, 1), -- MP Increase (1x)
-(31148, 4410, 11), -- Average P. Atk.
-(31148, 4411, 11), -- Average M. Atk.
-(31148, 4412, 11), -- Average P. Def.
-(31148, 4413, 11), -- Average M. Def.
-(31148, 4414, 2), -- Standard Type
-(31148, 4415, 3), -- One-handed Sword
-(31148, 4416, 19), -- Others
+(31148, 4390, 1), -- NPC Abnormal Immunity
+(31148, 4408, 1), -- HP Modifiers
+(31148, 4409, 1), -- MP Modifiers
+(31148, 4410, 11), -- P. Atk. Modifiers
+(31148, 4411, 11), -- M. Atk. Modifiers
+(31148, 4412, 11), -- P. Def. Modifiers
+(31148, 4413, 11), -- M. Def. Modifiers
+(31148, 4414, 2), -- Armor Type
+(31148, 4415, 3), -- Weapon Type
+(31148, 4416, 19), -- Races
 -- Alchemist's Mixing Urn
 (31149, 4045, 1), -- Resist Full Magic Attack
-(31149, 4390, 1), -- Mystic Immunity
-(31149, 4408, 1), -- HP Increase (1x)
-(31149, 4409, 1), -- MP Increase (1x)
-(31149, 4410, 11), -- Average P. Atk.
-(31149, 4411, 11), -- Average M. Atk.
-(31149, 4412, 11), -- Average P. Def.
-(31149, 4413, 11), -- Average M. Def.
-(31149, 4414, 2), -- Standard Type
-(31149, 4415, 3), -- One-handed Sword
-(31149, 4416, 19), -- Others
+(31149, 4390, 1), -- NPC Abnormal Immunity
+(31149, 4408, 1), -- HP Modifiers
+(31149, 4409, 1), -- MP Modifiers
+(31149, 4410, 11), -- P. Atk. Modifiers
+(31149, 4411, 11), -- M. Atk. Modifiers
+(31149, 4412, 11), -- P. Def. Modifiers
+(31149, 4413, 11), -- M. Def. Modifiers
+(31149, 4414, 2), -- Armor Type
+(31149, 4415, 3), -- Weapon Type
+(31149, 4416, 19), -- Races
 -- Priest of Dawn
 (31168, 4045, 1), -- Resist Full Magic Attack
-(31168, 4408, 1), -- HP Increase (1x)
-(31168, 4409, 1), -- MP Increase (1x)
-(31168, 4410, 11), -- Average P. Atk.
-(31168, 4411, 11), -- Average M. Atk.
-(31168, 4412, 11), -- Average P. Def.
-(31168, 4413, 11), -- Average M. Def.
-(31168, 4414, 2), -- Standard Type
-(31168, 4415, 1), -- Bare Hands
-(31168, 4416, 14), -- Humans
+(31168, 4408, 1), -- HP Modifiers
+(31168, 4409, 1), -- MP Modifiers
+(31168, 4410, 11), -- P. Atk. Modifiers
+(31168, 4411, 11), -- M. Atk. Modifiers
+(31168, 4412, 11), -- P. Def. Modifiers
+(31168, 4413, 11), -- M. Def. Modifiers
+(31168, 4414, 2), -- Armor Type
+(31168, 4415, 1), -- Weapon Type
+(31168, 4416, 14), -- Races
 -- Dusk Priestess
 (31169, 4045, 1), -- Resist Full Magic Attack
-(31169, 4408, 1), -- HP Increase (1x)
-(31169, 4409, 1), -- MP Increase (1x)
-(31169, 4410, 11), -- Average P. Atk.
-(31169, 4411, 11), -- Average M. Atk.
-(31169, 4412, 11), -- Average P. Def.
-(31169, 4413, 11), -- Average M. Def.
-(31169, 4414, 2), -- Standard Type
-(31169, 4415, 1), -- Bare Hands
-(31169, 4416, 16), -- Dark Elves
+(31169, 4408, 1), -- HP Modifiers
+(31169, 4409, 1), -- MP Modifiers
+(31169, 4410, 11), -- P. Atk. Modifiers
+(31169, 4411, 11), -- M. Atk. Modifiers
+(31169, 4412, 11), -- P. Def. Modifiers
+(31169, 4413, 11), -- M. Def. Modifiers
+(31169, 4414, 2), -- Armor Type
+(31169, 4415, 1), -- Weapon Type
+(31169, 4416, 16), -- Races
 -- Crest of Dawn
 (31170, 4045, 1), -- Resist Full Magic Attack
-(31170, 4390, 1), -- Mystic Immunity
-(31170, 4408, 1), -- HP Increase (1x)
-(31170, 4409, 1), -- MP Increase (1x)
-(31170, 4410, 11), -- Average P. Atk.
-(31170, 4411, 11), -- Average M. Atk.
-(31170, 4412, 11), -- Average P. Def.
-(31170, 4413, 11), -- Average M. Def.
-(31170, 4414, 2), -- Standard Type
-(31170, 4415, 3), -- One-handed Sword
-(31170, 4416, 19), -- Others
+(31170, 4390, 1), -- NPC Abnormal Immunity
+(31170, 4408, 1), -- HP Modifiers
+(31170, 4409, 1), -- MP Modifiers
+(31170, 4410, 11), -- P. Atk. Modifiers
+(31170, 4411, 11), -- M. Atk. Modifiers
+(31170, 4412, 11), -- P. Def. Modifiers
+(31170, 4413, 11), -- M. Def. Modifiers
+(31170, 4414, 2), -- Armor Type
+(31170, 4415, 3), -- Weapon Type
+(31170, 4416, 19), -- Races
 -- Crest of Dusk
 (31171, 4045, 1), -- Resist Full Magic Attack
-(31171, 4390, 1), -- Mystic Immunity
-(31171, 4408, 1), -- HP Increase (1x)
-(31171, 4409, 1), -- MP Increase (1x)
-(31171, 4410, 11), -- Average P. Atk.
-(31171, 4411, 11), -- Average M. Atk.
-(31171, 4412, 11), -- Average P. Def.
-(31171, 4413, 11), -- Average M. Def.
-(31171, 4414, 2), -- Standard Type
-(31171, 4415, 3), -- One-handed Sword
-(31171, 4416, 19), -- Others
+(31171, 4390, 1), -- NPC Abnormal Immunity
+(31171, 4408, 1), -- HP Modifiers
+(31171, 4409, 1), -- MP Modifiers
+(31171, 4410, 11), -- P. Atk. Modifiers
+(31171, 4411, 11), -- M. Atk. Modifiers
+(31171, 4412, 11), -- P. Def. Modifiers
+(31171, 4413, 11), -- M. Def. Modifiers
+(31171, 4414, 2), -- Armor Type
+(31171, 4415, 3), -- Weapon Type
+(31171, 4416, 19), -- Races
 -- Preacher of Doom
 (31172, 4045, 1), -- Resist Full Magic Attack
-(31172, 4408, 1), -- HP Increase (1x)
-(31172, 4409, 1), -- MP Increase (1x)
-(31172, 4410, 11), -- Average P. Atk.
-(31172, 4411, 11), -- Average M. Atk.
-(31172, 4412, 11), -- Average P. Def.
-(31172, 4413, 11), -- Average M. Def.
-(31172, 4414, 2), -- Standard Type
-(31172, 4415, 3), -- One-handed Sword
-(31172, 4416, 1), -- Undead
+(31172, 4408, 1), -- HP Modifiers
+(31172, 4409, 1), -- MP Modifiers
+(31172, 4410, 11), -- P. Atk. Modifiers
+(31172, 4411, 11), -- M. Atk. Modifiers
+(31172, 4412, 11), -- P. Def. Modifiers
+(31172, 4413, 11), -- M. Def. Modifiers
+(31172, 4414, 2), -- Armor Type
+(31172, 4415, 3), -- Weapon Type
+(31172, 4416, 1), -- Races
 -- Orator of Revelations
 (31173, 4045, 1), -- Resist Full Magic Attack
-(31173, 4390, 1), -- Mystic Immunity
-(31173, 4408, 1), -- HP Increase (1x)
-(31173, 4409, 1), -- MP Increase (1x)
-(31173, 4410, 11), -- Average P. Atk.
-(31173, 4411, 11), -- Average M. Atk.
-(31173, 4412, 11), -- Average P. Def.
-(31173, 4413, 11), -- Average M. Def.
-(31173, 4414, 2), -- Standard Type
-(31173, 4415, 3), -- One-handed Sword
-(31173, 4416, 2), -- Magic Creatures
+(31173, 4390, 1), -- NPC Abnormal Immunity
+(31173, 4408, 1), -- HP Modifiers
+(31173, 4409, 1), -- MP Modifiers
+(31173, 4410, 11), -- P. Atk. Modifiers
+(31173, 4411, 11), -- M. Atk. Modifiers
+(31173, 4412, 11), -- P. Def. Modifiers
+(31173, 4413, 11), -- M. Def. Modifiers
+(31173, 4414, 2), -- Armor Type
+(31173, 4415, 3), -- Weapon Type
+(31173, 4416, 2), -- Races
 -- Preacher of Doom
 (31174, 4045, 1), -- Resist Full Magic Attack
-(31174, 4408, 1), -- HP Increase (1x)
-(31174, 4409, 1), -- MP Increase (1x)
-(31174, 4410, 11), -- Average P. Atk.
-(31174, 4411, 11), -- Average M. Atk.
-(31174, 4412, 11), -- Average P. Def.
-(31174, 4413, 11), -- Average M. Def.
-(31174, 4414, 2), -- Standard Type
-(31174, 4415, 3), -- One-handed Sword
-(31174, 4416, 1), -- Undead
+(31174, 4408, 1), -- HP Modifiers
+(31174, 4409, 1), -- MP Modifiers
+(31174, 4410, 11), -- P. Atk. Modifiers
+(31174, 4411, 11), -- M. Atk. Modifiers
+(31174, 4412, 11), -- P. Def. Modifiers
+(31174, 4413, 11), -- M. Def. Modifiers
+(31174, 4414, 2), -- Armor Type
+(31174, 4415, 3), -- Weapon Type
+(31174, 4416, 1), -- Races
 -- Orator of Revelations
 (31175, 4045, 1), -- Resist Full Magic Attack
-(31175, 4390, 1), -- Mystic Immunity
-(31175, 4408, 1), -- HP Increase (1x)
-(31175, 4409, 1), -- MP Increase (1x)
-(31175, 4410, 11), -- Average P. Atk.
-(31175, 4411, 11), -- Average M. Atk.
-(31175, 4412, 11), -- Average P. Def.
-(31175, 4413, 11), -- Average M. Def.
-(31175, 4414, 2), -- Standard Type
-(31175, 4415, 3), -- One-handed Sword
-(31175, 4416, 2), -- Magic Creatures
+(31175, 4390, 1), -- NPC Abnormal Immunity
+(31175, 4408, 1), -- HP Modifiers
+(31175, 4409, 1), -- MP Modifiers
+(31175, 4410, 11), -- P. Atk. Modifiers
+(31175, 4411, 11), -- M. Atk. Modifiers
+(31175, 4412, 11), -- P. Def. Modifiers
+(31175, 4413, 11), -- M. Def. Modifiers
+(31175, 4414, 2), -- Armor Type
+(31175, 4415, 3), -- Weapon Type
+(31175, 4416, 2), -- Races
 -- Preacher of Doom
 (31176, 4045, 1), -- Resist Full Magic Attack
-(31176, 4408, 1), -- HP Increase (1x)
-(31176, 4409, 1), -- MP Increase (1x)
-(31176, 4410, 11), -- Average P. Atk.
-(31176, 4411, 11), -- Average M. Atk.
-(31176, 4412, 11), -- Average P. Def.
-(31176, 4413, 11), -- Average M. Def.
-(31176, 4414, 2), -- Standard Type
-(31176, 4415, 3), -- One-handed Sword
-(31176, 4416, 1), -- Undead
+(31176, 4408, 1), -- HP Modifiers
+(31176, 4409, 1), -- MP Modifiers
+(31176, 4410, 11), -- P. Atk. Modifiers
+(31176, 4411, 11), -- M. Atk. Modifiers
+(31176, 4412, 11), -- P. Def. Modifiers
+(31176, 4413, 11), -- M. Def. Modifiers
+(31176, 4414, 2), -- Armor Type
+(31176, 4415, 3), -- Weapon Type
+(31176, 4416, 1), -- Races
 -- Orator of Revelations
 (31177, 4045, 1), -- Resist Full Magic Attack
-(31177, 4390, 1), -- Mystic Immunity
-(31177, 4408, 1), -- HP Increase (1x)
-(31177, 4409, 1), -- MP Increase (1x)
-(31177, 4410, 11), -- Average P. Atk.
-(31177, 4411, 11), -- Average M. Atk.
-(31177, 4412, 11), -- Average P. Def.
-(31177, 4413, 11), -- Average M. Def.
-(31177, 4414, 2), -- Standard Type
-(31177, 4415, 3), -- One-handed Sword
-(31177, 4416, 2), -- Magic Creatures
+(31177, 4390, 1), -- NPC Abnormal Immunity
+(31177, 4408, 1), -- HP Modifiers
+(31177, 4409, 1), -- MP Modifiers
+(31177, 4410, 11), -- P. Atk. Modifiers
+(31177, 4411, 11), -- M. Atk. Modifiers
+(31177, 4412, 11), -- P. Def. Modifiers
+(31177, 4413, 11), -- M. Def. Modifiers
+(31177, 4414, 2), -- Armor Type
+(31177, 4415, 3), -- Weapon Type
+(31177, 4416, 2), -- Races
 -- Preacher of Doom
 (31178, 4045, 1), -- Resist Full Magic Attack
-(31178, 4408, 1), -- HP Increase (1x)
-(31178, 4409, 1), -- MP Increase (1x)
-(31178, 4410, 11), -- Average P. Atk.
-(31178, 4411, 11), -- Average M. Atk.
-(31178, 4412, 11), -- Average P. Def.
-(31178, 4413, 11), -- Average M. Def.
-(31178, 4414, 2), -- Standard Type
-(31178, 4415, 3), -- One-handed Sword
-(31178, 4416, 1), -- Undead
+(31178, 4408, 1), -- HP Modifiers
+(31178, 4409, 1), -- MP Modifiers
+(31178, 4410, 11), -- P. Atk. Modifiers
+(31178, 4411, 11), -- M. Atk. Modifiers
+(31178, 4412, 11), -- P. Def. Modifiers
+(31178, 4413, 11), -- M. Def. Modifiers
+(31178, 4414, 2), -- Armor Type
+(31178, 4415, 3), -- Weapon Type
+(31178, 4416, 1), -- Races
 -- Orator of Revelations
 (31179, 4045, 1), -- Resist Full Magic Attack
-(31179, 4390, 1), -- Mystic Immunity
-(31179, 4408, 1), -- HP Increase (1x)
-(31179, 4409, 1), -- MP Increase (1x)
-(31179, 4410, 11), -- Average P. Atk.
-(31179, 4411, 11), -- Average M. Atk.
-(31179, 4412, 11), -- Average P. Def.
-(31179, 4413, 11), -- Average M. Def.
-(31179, 4414, 2), -- Standard Type
-(31179, 4415, 3), -- One-handed Sword
-(31179, 4416, 2), -- Magic Creatures
+(31179, 4390, 1), -- NPC Abnormal Immunity
+(31179, 4408, 1), -- HP Modifiers
+(31179, 4409, 1), -- MP Modifiers
+(31179, 4410, 11), -- P. Atk. Modifiers
+(31179, 4411, 11), -- M. Atk. Modifiers
+(31179, 4412, 11), -- P. Def. Modifiers
+(31179, 4413, 11), -- M. Def. Modifiers
+(31179, 4414, 2), -- Armor Type
+(31179, 4415, 3), -- Weapon Type
+(31179, 4416, 2), -- Races
 -- Preacher of Doom
 (31180, 4045, 1), -- Resist Full Magic Attack
-(31180, 4408, 1), -- HP Increase (1x)
-(31180, 4409, 1), -- MP Increase (1x)
-(31180, 4410, 11), -- Average P. Atk.
-(31180, 4411, 11), -- Average M. Atk.
-(31180, 4412, 11), -- Average P. Def.
-(31180, 4413, 11), -- Average M. Def.
-(31180, 4414, 2), -- Standard Type
-(31180, 4415, 3), -- One-handed Sword
-(31180, 4416, 1), -- Undead
+(31180, 4408, 1), -- HP Modifiers
+(31180, 4409, 1), -- MP Modifiers
+(31180, 4410, 11), -- P. Atk. Modifiers
+(31180, 4411, 11), -- M. Atk. Modifiers
+(31180, 4412, 11), -- P. Def. Modifiers
+(31180, 4413, 11), -- M. Def. Modifiers
+(31180, 4414, 2), -- Armor Type
+(31180, 4415, 3), -- Weapon Type
+(31180, 4416, 1), -- Races
 -- Orator of Revelations
 (31181, 4045, 1), -- Resist Full Magic Attack
-(31181, 4390, 1), -- Mystic Immunity
-(31181, 4408, 1), -- HP Increase (1x)
-(31181, 4409, 1), -- MP Increase (1x)
-(31181, 4410, 11), -- Average P. Atk.
-(31181, 4411, 11), -- Average M. Atk.
-(31181, 4412, 11), -- Average P. Def.
-(31181, 4413, 11), -- Average M. Def.
-(31181, 4414, 2), -- Standard Type
-(31181, 4415, 3), -- One-handed Sword
-(31181, 4416, 2), -- Magic Creatures
+(31181, 4390, 1), -- NPC Abnormal Immunity
+(31181, 4408, 1), -- HP Modifiers
+(31181, 4409, 1), -- MP Modifiers
+(31181, 4410, 11), -- P. Atk. Modifiers
+(31181, 4411, 11), -- M. Atk. Modifiers
+(31181, 4412, 11), -- P. Def. Modifiers
+(31181, 4413, 11), -- M. Def. Modifiers
+(31181, 4414, 2), -- Armor Type
+(31181, 4415, 3), -- Weapon Type
+(31181, 4416, 2), -- Races
 -- Preacher of Doom
 (31182, 4045, 1), -- Resist Full Magic Attack
-(31182, 4408, 1), -- HP Increase (1x)
-(31182, 4409, 1), -- MP Increase (1x)
-(31182, 4410, 11), -- Average P. Atk.
-(31182, 4411, 11), -- Average M. Atk.
-(31182, 4412, 11), -- Average P. Def.
-(31182, 4413, 11), -- Average M. Def.
-(31182, 4414, 2), -- Standard Type
-(31182, 4415, 3), -- One-handed Sword
-(31182, 4416, 1), -- Undead
+(31182, 4408, 1), -- HP Modifiers
+(31182, 4409, 1), -- MP Modifiers
+(31182, 4410, 11), -- P. Atk. Modifiers
+(31182, 4411, 11), -- M. Atk. Modifiers
+(31182, 4412, 11), -- P. Def. Modifiers
+(31182, 4413, 11), -- M. Def. Modifiers
+(31182, 4414, 2), -- Armor Type
+(31182, 4415, 3), -- Weapon Type
+(31182, 4416, 1), -- Races
 -- Orator of Revelations
 (31183, 4045, 1), -- Resist Full Magic Attack
-(31183, 4390, 1), -- Mystic Immunity
-(31183, 4408, 1), -- HP Increase (1x)
-(31183, 4409, 1), -- MP Increase (1x)
-(31183, 4410, 11), -- Average P. Atk.
-(31183, 4411, 11), -- Average M. Atk.
-(31183, 4412, 11), -- Average P. Def.
-(31183, 4413, 11), -- Average M. Def.
-(31183, 4414, 2), -- Standard Type
-(31183, 4415, 3), -- One-handed Sword
-(31183, 4416, 2), -- Magic Creatures
+(31183, 4390, 1), -- NPC Abnormal Immunity
+(31183, 4408, 1), -- HP Modifiers
+(31183, 4409, 1), -- MP Modifiers
+(31183, 4410, 11), -- P. Atk. Modifiers
+(31183, 4411, 11), -- M. Atk. Modifiers
+(31183, 4412, 11), -- P. Def. Modifiers
+(31183, 4413, 11), -- M. Def. Modifiers
+(31183, 4414, 2), -- Armor Type
+(31183, 4415, 3), -- Weapon Type
+(31183, 4416, 2), -- Races
 -- Preacher of Doom
 (31184, 4045, 1), -- Resist Full Magic Attack
-(31184, 4408, 1), -- HP Increase (1x)
-(31184, 4409, 1), -- MP Increase (1x)
-(31184, 4410, 11), -- Average P. Atk.
-(31184, 4411, 11), -- Average M. Atk.
-(31184, 4412, 11), -- Average P. Def.
-(31184, 4413, 11), -- Average M. Def.
-(31184, 4414, 2), -- Standard Type
-(31184, 4415, 3), -- One-handed Sword
-(31184, 4416, 1), -- Undead
+(31184, 4408, 1), -- HP Modifiers
+(31184, 4409, 1), -- MP Modifiers
+(31184, 4410, 11), -- P. Atk. Modifiers
+(31184, 4411, 11), -- M. Atk. Modifiers
+(31184, 4412, 11), -- P. Def. Modifiers
+(31184, 4413, 11), -- M. Def. Modifiers
+(31184, 4414, 2), -- Armor Type
+(31184, 4415, 3), -- Weapon Type
+(31184, 4416, 1), -- Races
 -- Orator of Revelations
 (31185, 4045, 1), -- Resist Full Magic Attack
-(31185, 4390, 1), -- Mystic Immunity
-(31185, 4408, 1), -- HP Increase (1x)
-(31185, 4409, 1), -- MP Increase (1x)
-(31185, 4410, 11), -- Average P. Atk.
-(31185, 4411, 11), -- Average M. Atk.
-(31185, 4412, 11), -- Average P. Def.
-(31185, 4413, 11), -- Average M. Def.
-(31185, 4414, 2), -- Standard Type
-(31185, 4415, 3), -- One-handed Sword
-(31185, 4416, 2), -- Magic Creatures
+(31185, 4390, 1), -- NPC Abnormal Immunity
+(31185, 4408, 1), -- HP Modifiers
+(31185, 4409, 1), -- MP Modifiers
+(31185, 4410, 11), -- P. Atk. Modifiers
+(31185, 4411, 11), -- M. Atk. Modifiers
+(31185, 4412, 11), -- P. Def. Modifiers
+(31185, 4413, 11), -- M. Def. Modifiers
+(31185, 4414, 2), -- Armor Type
+(31185, 4415, 3), -- Weapon Type
+(31185, 4416, 2), -- Races
 -- Preacher of Doom
 (31186, 4045, 1), -- Resist Full Magic Attack
-(31186, 4408, 1), -- HP Increase (1x)
-(31186, 4409, 1), -- MP Increase (1x)
-(31186, 4410, 11), -- Average P. Atk.
-(31186, 4411, 11), -- Average M. Atk.
-(31186, 4412, 11), -- Average P. Def.
-(31186, 4413, 11), -- Average M. Def.
-(31186, 4414, 2), -- Standard Type
-(31186, 4415, 3), -- One-handed Sword
-(31186, 4416, 1), -- Undead
+(31186, 4408, 1), -- HP Modifiers
+(31186, 4409, 1), -- MP Modifiers
+(31186, 4410, 11), -- P. Atk. Modifiers
+(31186, 4411, 11), -- M. Atk. Modifiers
+(31186, 4412, 11), -- P. Def. Modifiers
+(31186, 4413, 11), -- M. Def. Modifiers
+(31186, 4414, 2), -- Armor Type
+(31186, 4415, 3), -- Weapon Type
+(31186, 4416, 1), -- Races
 -- Orator of Revelations
 (31187, 4045, 1), -- Resist Full Magic Attack
-(31187, 4390, 1), -- Mystic Immunity
-(31187, 4408, 1), -- HP Increase (1x)
-(31187, 4409, 1), -- MP Increase (1x)
-(31187, 4410, 11), -- Average P. Atk.
-(31187, 4411, 11), -- Average M. Atk.
-(31187, 4412, 11), -- Average P. Def.
-(31187, 4413, 11), -- Average M. Def.
-(31187, 4414, 2), -- Standard Type
-(31187, 4415, 3), -- One-handed Sword
-(31187, 4416, 2), -- Magic Creatures
+(31187, 4390, 1), -- NPC Abnormal Immunity
+(31187, 4408, 1), -- HP Modifiers
+(31187, 4409, 1), -- MP Modifiers
+(31187, 4410, 11), -- P. Atk. Modifiers
+(31187, 4411, 11), -- M. Atk. Modifiers
+(31187, 4412, 11), -- P. Def. Modifiers
+(31187, 4413, 11), -- M. Def. Modifiers
+(31187, 4414, 2), -- Armor Type
+(31187, 4415, 3), -- Weapon Type
+(31187, 4416, 2), -- Races
 -- Preacher of Doom
 (31188, 4045, 1), -- Resist Full Magic Attack
-(31188, 4408, 1), -- HP Increase (1x)
-(31188, 4409, 1), -- MP Increase (1x)
-(31188, 4410, 11), -- Average P. Atk.
-(31188, 4411, 11), -- Average M. Atk.
-(31188, 4412, 11), -- Average P. Def.
-(31188, 4413, 11), -- Average M. Def.
-(31188, 4414, 2), -- Standard Type
-(31188, 4415, 3), -- One-handed Sword
-(31188, 4416, 1), -- Undead
+(31188, 4408, 1), -- HP Modifiers
+(31188, 4409, 1), -- MP Modifiers
+(31188, 4410, 11), -- P. Atk. Modifiers
+(31188, 4411, 11), -- M. Atk. Modifiers
+(31188, 4412, 11), -- P. Def. Modifiers
+(31188, 4413, 11), -- M. Def. Modifiers
+(31188, 4414, 2), -- Armor Type
+(31188, 4415, 3), -- Weapon Type
+(31188, 4416, 1), -- Races
 -- Orator of Revelations
 (31189, 4045, 1), -- Resist Full Magic Attack
-(31189, 4390, 1), -- Mystic Immunity
-(31189, 4408, 1), -- HP Increase (1x)
-(31189, 4409, 1), -- MP Increase (1x)
-(31189, 4410, 11), -- Average P. Atk.
-(31189, 4411, 11), -- Average M. Atk.
-(31189, 4412, 11), -- Average P. Def.
-(31189, 4413, 11), -- Average M. Def.
-(31189, 4414, 2), -- Standard Type
-(31189, 4415, 3), -- One-handed Sword
-(31189, 4416, 2), -- Magic Creatures
+(31189, 4390, 1), -- NPC Abnormal Immunity
+(31189, 4408, 1), -- HP Modifiers
+(31189, 4409, 1), -- MP Modifiers
+(31189, 4410, 11), -- P. Atk. Modifiers
+(31189, 4411, 11), -- M. Atk. Modifiers
+(31189, 4412, 11), -- P. Def. Modifiers
+(31189, 4413, 11), -- M. Def. Modifiers
+(31189, 4414, 2), -- Armor Type
+(31189, 4415, 3), -- Weapon Type
+(31189, 4416, 2), -- Races
 -- Preacher of Doom
 (31190, 4045, 1), -- Resist Full Magic Attack
-(31190, 4408, 1), -- HP Increase (1x)
-(31190, 4409, 1), -- MP Increase (1x)
-(31190, 4410, 11), -- Average P. Atk.
-(31190, 4411, 11), -- Average M. Atk.
-(31190, 4412, 11), -- Average P. Def.
-(31190, 4413, 11), -- Average M. Def.
-(31190, 4414, 2), -- Standard Type
-(31190, 4415, 3), -- One-handed Sword
-(31190, 4416, 1), -- Undead
+(31190, 4408, 1), -- HP Modifiers
+(31190, 4409, 1), -- MP Modifiers
+(31190, 4410, 11), -- P. Atk. Modifiers
+(31190, 4411, 11), -- M. Atk. Modifiers
+(31190, 4412, 11), -- P. Def. Modifiers
+(31190, 4413, 11), -- M. Def. Modifiers
+(31190, 4414, 2), -- Armor Type
+(31190, 4415, 3), -- Weapon Type
+(31190, 4416, 1), -- Races
 -- Orator of Revelations
 (31191, 4045, 1), -- Resist Full Magic Attack
-(31191, 4390, 1), -- Mystic Immunity
-(31191, 4408, 1), -- HP Increase (1x)
-(31191, 4409, 1), -- MP Increase (1x)
-(31191, 4410, 11), -- Average P. Atk.
-(31191, 4411, 11), -- Average M. Atk.
-(31191, 4412, 11), -- Average P. Def.
-(31191, 4413, 11), -- Average M. Def.
-(31191, 4414, 2), -- Standard Type
-(31191, 4415, 3), -- One-handed Sword
-(31191, 4416, 2), -- Magic Creatures
+(31191, 4390, 1), -- NPC Abnormal Immunity
+(31191, 4408, 1), -- HP Modifiers
+(31191, 4409, 1), -- MP Modifiers
+(31191, 4410, 11), -- P. Atk. Modifiers
+(31191, 4411, 11), -- M. Atk. Modifiers
+(31191, 4412, 11), -- P. Def. Modifiers
+(31191, 4413, 11), -- M. Def. Modifiers
+(31191, 4414, 2), -- Armor Type
+(31191, 4415, 3), -- Weapon Type
+(31191, 4416, 2), -- Races
 -- Preacher of Doom
 (31192, 4045, 1), -- Resist Full Magic Attack
-(31192, 4408, 1), -- HP Increase (1x)
-(31192, 4409, 1), -- MP Increase (1x)
-(31192, 4410, 11), -- Average P. Atk.
-(31192, 4411, 11), -- Average M. Atk.
-(31192, 4412, 11), -- Average P. Def.
-(31192, 4413, 11), -- Average M. Def.
-(31192, 4414, 2), -- Standard Type
-(31192, 4415, 3), -- One-handed Sword
-(31192, 4416, 1), -- Undead
+(31192, 4408, 1), -- HP Modifiers
+(31192, 4409, 1), -- MP Modifiers
+(31192, 4410, 11), -- P. Atk. Modifiers
+(31192, 4411, 11), -- M. Atk. Modifiers
+(31192, 4412, 11), -- P. Def. Modifiers
+(31192, 4413, 11), -- M. Def. Modifiers
+(31192, 4414, 2), -- Armor Type
+(31192, 4415, 3), -- Weapon Type
+(31192, 4416, 1), -- Races
 -- Orator of Revelations
 (31193, 4045, 1), -- Resist Full Magic Attack
-(31193, 4390, 1), -- Mystic Immunity
-(31193, 4408, 1), -- HP Increase (1x)
-(31193, 4409, 1), -- MP Increase (1x)
-(31193, 4410, 11), -- Average P. Atk.
-(31193, 4411, 11), -- Average M. Atk.
-(31193, 4412, 11), -- Average P. Def.
-(31193, 4413, 11), -- Average M. Def.
-(31193, 4414, 2), -- Standard Type
-(31193, 4415, 3), -- One-handed Sword
-(31193, 4416, 2), -- Magic Creatures
+(31193, 4390, 1), -- NPC Abnormal Immunity
+(31193, 4408, 1), -- HP Modifiers
+(31193, 4409, 1), -- MP Modifiers
+(31193, 4410, 11), -- P. Atk. Modifiers
+(31193, 4411, 11), -- M. Atk. Modifiers
+(31193, 4412, 11), -- P. Def. Modifiers
+(31193, 4413, 11), -- M. Def. Modifiers
+(31193, 4414, 2), -- Armor Type
+(31193, 4415, 3), -- Weapon Type
+(31193, 4416, 2), -- Races
 -- Preacher of Doom
 (31194, 4045, 1), -- Resist Full Magic Attack
-(31194, 4408, 1), -- HP Increase (1x)
-(31194, 4409, 1), -- MP Increase (1x)
-(31194, 4410, 11), -- Average P. Atk.
-(31194, 4411, 11), -- Average M. Atk.
-(31194, 4412, 11), -- Average P. Def.
-(31194, 4413, 11), -- Average M. Def.
-(31194, 4414, 2), -- Standard Type
-(31194, 4415, 3), -- One-handed Sword
-(31194, 4416, 1), -- Undead
+(31194, 4408, 1), -- HP Modifiers
+(31194, 4409, 1), -- MP Modifiers
+(31194, 4410, 11), -- P. Atk. Modifiers
+(31194, 4411, 11), -- M. Atk. Modifiers
+(31194, 4412, 11), -- P. Def. Modifiers
+(31194, 4413, 11), -- M. Def. Modifiers
+(31194, 4414, 2), -- Armor Type
+(31194, 4415, 3), -- Weapon Type
+(31194, 4416, 1), -- Races
 -- Orator of Revelations
 (31195, 4045, 1), -- Resist Full Magic Attack
-(31195, 4390, 1), -- Mystic Immunity
-(31195, 4408, 1), -- HP Increase (1x)
-(31195, 4409, 1), -- MP Increase (1x)
-(31195, 4410, 11), -- Average P. Atk.
-(31195, 4411, 11), -- Average M. Atk.
-(31195, 4412, 11), -- Average P. Def.
-(31195, 4413, 11), -- Average M. Def.
-(31195, 4414, 2), -- Standard Type
-(31195, 4415, 3), -- One-handed Sword
-(31195, 4416, 2), -- Magic Creatures
+(31195, 4390, 1), -- NPC Abnormal Immunity
+(31195, 4408, 1), -- HP Modifiers
+(31195, 4409, 1), -- MP Modifiers
+(31195, 4410, 11), -- P. Atk. Modifiers
+(31195, 4411, 11), -- M. Atk. Modifiers
+(31195, 4412, 11), -- P. Def. Modifiers
+(31195, 4413, 11), -- M. Def. Modifiers
+(31195, 4414, 2), -- Armor Type
+(31195, 4415, 3), -- Weapon Type
+(31195, 4416, 2), -- Races
 -- Preacher of Doom
 (31196, 4045, 1), -- Resist Full Magic Attack
-(31196, 4408, 1), -- HP Increase (1x)
-(31196, 4409, 1), -- MP Increase (1x)
-(31196, 4410, 11), -- Average P. Atk.
-(31196, 4411, 11), -- Average M. Atk.
-(31196, 4412, 11), -- Average P. Def.
-(31196, 4413, 11), -- Average M. Def.
-(31196, 4414, 2), -- Standard Type
-(31196, 4415, 3), -- One-handed Sword
-(31196, 4416, 1), -- Undead
+(31196, 4408, 1), -- HP Modifiers
+(31196, 4409, 1), -- MP Modifiers
+(31196, 4410, 11), -- P. Atk. Modifiers
+(31196, 4411, 11), -- M. Atk. Modifiers
+(31196, 4412, 11), -- P. Def. Modifiers
+(31196, 4413, 11), -- M. Def. Modifiers
+(31196, 4414, 2), -- Armor Type
+(31196, 4415, 3), -- Weapon Type
+(31196, 4416, 1), -- Races
 -- Orator of Revelations
 (31197, 4045, 1), -- Resist Full Magic Attack
-(31197, 4390, 1), -- Mystic Immunity
-(31197, 4408, 1), -- HP Increase (1x)
-(31197, 4409, 1), -- MP Increase (1x)
-(31197, 4410, 11), -- Average P. Atk.
-(31197, 4411, 11), -- Average M. Atk.
-(31197, 4412, 11), -- Average P. Def.
-(31197, 4413, 11), -- Average M. Def.
-(31197, 4414, 2), -- Standard Type
-(31197, 4415, 3), -- One-handed Sword
-(31197, 4416, 2), -- Magic Creatures
+(31197, 4390, 1), -- NPC Abnormal Immunity
+(31197, 4408, 1), -- HP Modifiers
+(31197, 4409, 1), -- MP Modifiers
+(31197, 4410, 11), -- P. Atk. Modifiers
+(31197, 4411, 11), -- M. Atk. Modifiers
+(31197, 4412, 11), -- P. Def. Modifiers
+(31197, 4413, 11), -- M. Def. Modifiers
+(31197, 4414, 2), -- Armor Type
+(31197, 4415, 3), -- Weapon Type
+(31197, 4416, 2); -- Races
+
+INSERT INTO `npcskills` VALUES
 -- Preacher of Doom
 (31198, 4045, 1), -- Resist Full Magic Attack
-(31198, 4408, 1), -- HP Increase (1x)
-(31198, 4409, 1), -- MP Increase (1x)
-(31198, 4410, 11), -- Average P. Atk.
-(31198, 4411, 11), -- Average M. Atk.
-(31198, 4412, 11), -- Average P. Def.
-(31198, 4413, 11), -- Average M. Def.
-(31198, 4414, 2), -- Standard Type
-(31198, 4415, 3), -- One-handed Sword
-(31198, 4416, 1), -- Undead
+(31198, 4408, 1), -- HP Modifiers
+(31198, 4409, 1), -- MP Modifiers
+(31198, 4410, 11), -- P. Atk. Modifiers
+(31198, 4411, 11), -- M. Atk. Modifiers
+(31198, 4412, 11), -- P. Def. Modifiers
+(31198, 4413, 11), -- M. Def. Modifiers
+(31198, 4414, 2), -- Armor Type
+(31198, 4415, 3), -- Weapon Type
+(31198, 4416, 1), -- Races
 -- Orator of Revelations
 (31199, 4045, 1), -- Resist Full Magic Attack
-(31199, 4390, 1), -- Mystic Immunity
-(31199, 4408, 1), -- HP Increase (1x)
-(31199, 4409, 1), -- MP Increase (1x)
-(31199, 4410, 11), -- Average P. Atk.
-(31199, 4411, 11), -- Average M. Atk.
-(31199, 4412, 11), -- Average P. Def.
-(31199, 4413, 11), -- Average M. Def.
-(31199, 4414, 2), -- Standard Type
-(31199, 4415, 3), -- One-handed Sword
-(31199, 4416, 2), -- Magic Creatures
+(31199, 4390, 1), -- NPC Abnormal Immunity
+(31199, 4408, 1), -- HP Modifiers
+(31199, 4409, 1), -- MP Modifiers
+(31199, 4410, 11), -- P. Atk. Modifiers
+(31199, 4411, 11), -- M. Atk. Modifiers
+(31199, 4412, 11), -- P. Def. Modifiers
+(31199, 4413, 11), -- M. Def. Modifiers
+(31199, 4414, 2), -- Armor Type
+(31199, 4415, 3), -- Weapon Type
+(31199, 4416, 2), -- Races
 -- Preacher of Doom
 (31200, 4045, 1), -- Resist Full Magic Attack
-(31200, 4408, 1), -- HP Increase (1x)
-(31200, 4409, 1), -- MP Increase (1x)
-(31200, 4410, 11), -- Average P. Atk.
-(31200, 4411, 11), -- Average M. Atk.
-(31200, 4412, 11), -- Average P. Def.
-(31200, 4413, 11), -- Average M. Def.
-(31200, 4414, 2), -- Standard Type
-(31200, 4415, 3), -- One-handed Sword
-(31200, 4416, 1), -- Undead
+(31200, 4408, 1), -- HP Modifiers
+(31200, 4409, 1), -- MP Modifiers
+(31200, 4410, 11), -- P. Atk. Modifiers
+(31200, 4411, 11), -- M. Atk. Modifiers
+(31200, 4412, 11), -- P. Def. Modifiers
+(31200, 4413, 11), -- M. Def. Modifiers
+(31200, 4414, 2), -- Armor Type
+(31200, 4415, 3), -- Weapon Type
+(31200, 4416, 1), -- Races
 -- Orator of Revelations
 (31201, 4045, 1), -- Resist Full Magic Attack
-(31201, 4390, 1), -- Mystic Immunity
-(31201, 4408, 1), -- HP Increase (1x)
-(31201, 4409, 1), -- MP Increase (1x)
-(31201, 4410, 11), -- Average P. Atk.
-(31201, 4411, 11), -- Average M. Atk.
-(31201, 4412, 11), -- Average P. Def.
-(31201, 4413, 11), -- Average M. Def.
-(31201, 4414, 2), -- Standard Type
-(31201, 4415, 3), -- One-handed Sword
-(31201, 4416, 2), -- Magic Creatures
+(31201, 4390, 1), -- NPC Abnormal Immunity
+(31201, 4408, 1), -- HP Modifiers
+(31201, 4409, 1), -- MP Modifiers
+(31201, 4410, 11), -- P. Atk. Modifiers
+(31201, 4411, 11), -- M. Atk. Modifiers
+(31201, 4412, 11), -- P. Def. Modifiers
+(31201, 4413, 11), -- M. Def. Modifiers
+(31201, 4414, 2), -- Armor Type
+(31201, 4415, 3), -- Weapon Type
+(31201, 4416, 2), -- Races
 -- Maximus
 (31202, 4045, 1), -- Resist Full Magic Attack
-(31202, 4408, 1), -- HP Increase (1x)
-(31202, 4409, 1), -- MP Increase (1x)
-(31202, 4410, 11), -- Average P. Atk.
-(31202, 4411, 11), -- Average M. Atk.
-(31202, 4412, 11), -- Average P. Def.
-(31202, 4413, 11), -- Average M. Def.
-(31202, 4414, 2), -- Standard Type
-(31202, 4415, 3), -- One-handed Sword
-(31202, 4416, 4), -- Animals
+(31202, 4408, 1), -- HP Modifiers
+(31202, 4409, 1), -- MP Modifiers
+(31202, 4410, 11), -- P. Atk. Modifiers
+(31202, 4411, 11), -- M. Atk. Modifiers
+(31202, 4412, 11), -- P. Def. Modifiers
+(31202, 4413, 11), -- M. Def. Modifiers
+(31202, 4414, 2), -- Armor Type
+(31202, 4415, 3), -- Weapon Type
+(31202, 4416, 4), -- Races
 -- Moon Dancer
 (31203, 4045, 1), -- Resist Full Magic Attack
-(31203, 4408, 1), -- HP Increase (1x)
-(31203, 4409, 1), -- MP Increase (1x)
-(31203, 4410, 11), -- Average P. Atk.
-(31203, 4411, 11), -- Average M. Atk.
-(31203, 4412, 11), -- Average P. Def.
-(31203, 4413, 11), -- Average M. Def.
-(31203, 4414, 2), -- Standard Type
-(31203, 4415, 3), -- One-handed Sword
-(31203, 4416, 4), -- Animals
+(31203, 4408, 1), -- HP Modifiers
+(31203, 4409, 1), -- MP Modifiers
+(31203, 4410, 11), -- P. Atk. Modifiers
+(31203, 4411, 11), -- M. Atk. Modifiers
+(31203, 4412, 11), -- P. Def. Modifiers
+(31203, 4413, 11), -- M. Def. Modifiers
+(31203, 4414, 2), -- Armor Type
+(31203, 4415, 3), -- Weapon Type
+(31203, 4416, 4), -- Races
 -- Georgio
 (31204, 4045, 1), -- Resist Full Magic Attack
-(31204, 4408, 1), -- HP Increase (1x)
-(31204, 4409, 1), -- MP Increase (1x)
-(31204, 4410, 11), -- Average P. Atk.
-(31204, 4411, 11), -- Average M. Atk.
-(31204, 4412, 11), -- Average P. Def.
-(31204, 4413, 11), -- Average M. Def.
-(31204, 4414, 2), -- Standard Type
-(31204, 4415, 3), -- One-handed Sword
-(31204, 4416, 4), -- Animals
+(31204, 4408, 1), -- HP Modifiers
+(31204, 4409, 1), -- MP Modifiers
+(31204, 4410, 11), -- P. Atk. Modifiers
+(31204, 4411, 11), -- M. Atk. Modifiers
+(31204, 4412, 11), -- P. Def. Modifiers
+(31204, 4413, 11), -- M. Def. Modifiers
+(31204, 4414, 2), -- Armor Type
+(31204, 4415, 3), -- Weapon Type
+(31204, 4416, 4), -- Races
 -- Katz
 (31205, 4045, 1), -- Resist Full Magic Attack
-(31205, 4408, 1), -- HP Increase (1x)
-(31205, 4409, 1), -- MP Increase (1x)
-(31205, 4410, 11), -- Average P. Atk.
-(31205, 4411, 11), -- Average M. Atk.
-(31205, 4412, 11), -- Average P. Def.
-(31205, 4413, 11), -- Average M. Def.
-(31205, 4414, 2), -- Standard Type
-(31205, 4415, 3), -- One-handed Sword
-(31205, 4416, 10), -- Dragons
+(31205, 4408, 1), -- HP Modifiers
+(31205, 4409, 1), -- MP Modifiers
+(31205, 4410, 11), -- P. Atk. Modifiers
+(31205, 4411, 11), -- M. Atk. Modifiers
+(31205, 4412, 11), -- P. Def. Modifiers
+(31205, 4413, 11), -- M. Def. Modifiers
+(31205, 4414, 2), -- Armor Type
+(31205, 4415, 3), -- Weapon Type
+(31205, 4416, 10), -- Races
 -- Ten Ten
 (31206, 4045, 1), -- Resist Full Magic Attack
-(31206, 4408, 1), -- HP Increase (1x)
-(31206, 4409, 1), -- MP Increase (1x)
-(31206, 4410, 11), -- Average P. Atk.
-(31206, 4411, 11), -- Average M. Atk.
-(31206, 4412, 11), -- Average P. Def.
-(31206, 4413, 11), -- Average M. Def.
-(31206, 4414, 2), -- Standard Type
-(31206, 4415, 3), -- One-handed Sword
-(31206, 4416, 10), -- Dragons
+(31206, 4408, 1), -- HP Modifiers
+(31206, 4409, 1), -- MP Modifiers
+(31206, 4410, 11), -- P. Atk. Modifiers
+(31206, 4411, 11), -- M. Atk. Modifiers
+(31206, 4412, 11), -- P. Def. Modifiers
+(31206, 4413, 11), -- M. Def. Modifiers
+(31206, 4414, 2), -- Armor Type
+(31206, 4415, 3), -- Weapon Type
+(31206, 4416, 10), -- Races
 -- Sardinia
 (31207, 4045, 1), -- Resist Full Magic Attack
-(31207, 4408, 1), -- HP Increase (1x)
-(31207, 4409, 1), -- MP Increase (1x)
-(31207, 4410, 11), -- Average P. Atk.
-(31207, 4411, 11), -- Average M. Atk.
-(31207, 4412, 11), -- Average P. Def.
-(31207, 4413, 11), -- Average M. Def.
-(31207, 4414, 2), -- Standard Type
-(31207, 4415, 3), -- One-handed Sword
-(31207, 4416, 10), -- Dragons
+(31207, 4408, 1), -- HP Modifiers
+(31207, 4409, 1), -- MP Modifiers
+(31207, 4410, 11), -- P. Atk. Modifiers
+(31207, 4411, 11), -- M. Atk. Modifiers
+(31207, 4412, 11), -- P. Def. Modifiers
+(31207, 4413, 11), -- M. Def. Modifiers
+(31207, 4414, 2), -- Armor Type
+(31207, 4415, 3), -- Weapon Type
+(31207, 4416, 10), -- Races
 -- La Grange
 (31208, 4045, 1), -- Resist Full Magic Attack
-(31208, 4408, 1), -- HP Increase (1x)
-(31208, 4409, 1), -- MP Increase (1x)
-(31208, 4410, 11), -- Average P. Atk.
-(31208, 4411, 11), -- Average M. Atk.
-(31208, 4412, 11), -- Average P. Def.
-(31208, 4413, 11), -- Average M. Def.
-(31208, 4414, 2), -- Standard Type
-(31208, 4415, 3), -- One-handed Sword
-(31208, 4416, 10), -- Dragons
+(31208, 4408, 1), -- HP Modifiers
+(31208, 4409, 1), -- MP Modifiers
+(31208, 4410, 11), -- P. Atk. Modifiers
+(31208, 4411, 11), -- M. Atk. Modifiers
+(31208, 4412, 11), -- P. Def. Modifiers
+(31208, 4413, 11), -- M. Def. Modifiers
+(31208, 4414, 2), -- Armor Type
+(31208, 4415, 3), -- Weapon Type
+(31208, 4416, 10), -- Races
 -- Misty Rain
 (31209, 4045, 1), -- Resist Full Magic Attack
-(31209, 4408, 1), -- HP Increase (1x)
-(31209, 4409, 1), -- MP Increase (1x)
-(31209, 4410, 11), -- Average P. Atk.
-(31209, 4411, 11), -- Average M. Atk.
-(31209, 4412, 11), -- Average P. Def.
-(31209, 4413, 11), -- Average M. Def.
-(31209, 4414, 2), -- Standard Type
-(31209, 4415, 3), -- One-handed Sword
-(31209, 4416, 4), -- Animals
+(31209, 4408, 1), -- HP Modifiers
+(31209, 4409, 1), -- MP Modifiers
+(31209, 4410, 11), -- P. Atk. Modifiers
+(31209, 4411, 11), -- M. Atk. Modifiers
+(31209, 4412, 11), -- P. Def. Modifiers
+(31209, 4413, 11), -- M. Def. Modifiers
+(31209, 4414, 2), -- Armor Type
+(31209, 4415, 3), -- Weapon Type
+(31209, 4416, 4), -- Races
 -- Race Track Gatekeeper
 (31210, 4045, 1), -- Resist Full Magic Attack
-(31210, 4408, 1), -- HP Increase (1x)
-(31210, 4409, 1), -- MP Increase (1x)
-(31210, 4410, 11), -- Average P. Atk.
-(31210, 4411, 11), -- Average M. Atk.
-(31210, 4412, 11), -- Average P. Def.
-(31210, 4413, 11), -- Average M. Def.
-(31210, 4414, 2), -- Standard Type
-(31210, 4415, 3), -- One-handed Sword
-(31210, 4416, 18), -- Dwarves
+(31210, 4408, 1), -- HP Modifiers
+(31210, 4409, 1), -- MP Modifiers
+(31210, 4410, 11), -- P. Atk. Modifiers
+(31210, 4411, 11), -- M. Atk. Modifiers
+(31210, 4412, 11), -- P. Def. Modifiers
+(31210, 4413, 11), -- M. Def. Modifiers
+(31210, 4414, 2), -- Armor Type
+(31210, 4415, 3), -- Weapon Type
+(31210, 4416, 18), -- Races
 -- Race Track Guide
 (31211, 4045, 1), -- Resist Full Magic Attack
-(31211, 4408, 1), -- HP Increase (1x)
-(31211, 4409, 1), -- MP Increase (1x)
-(31211, 4410, 11), -- Average P. Atk.
-(31211, 4411, 11), -- Average M. Atk.
-(31211, 4412, 11), -- Average P. Def.
-(31211, 4413, 11), -- Average M. Def.
-(31211, 4414, 2), -- Standard Type
-(31211, 4415, 3), -- One-handed Sword
-(31211, 4416, 18), -- Dwarves
+(31211, 4408, 1), -- HP Modifiers
+(31211, 4409, 1), -- MP Modifiers
+(31211, 4410, 11), -- P. Atk. Modifiers
+(31211, 4411, 11), -- M. Atk. Modifiers
+(31211, 4412, 11), -- P. Def. Modifiers
+(31211, 4413, 11), -- M. Def. Modifiers
+(31211, 4414, 2), -- Armor Type
+(31211, 4415, 3), -- Weapon Type
+(31211, 4416, 18), -- Races
 -- Event Gatekeeper
 (31212, 4045, 1), -- Resist Full Magic Attack
-(31212, 4408, 1), -- HP Increase (1x)
-(31212, 4409, 1), -- MP Increase (1x)
-(31212, 4410, 11), -- Average P. Atk.
-(31212, 4411, 11), -- Average M. Atk.
-(31212, 4412, 11), -- Average P. Def.
-(31212, 4413, 11), -- Average M. Def.
-(31212, 4414, 2), -- Standard Type
-(31212, 4415, 3), -- One-handed Sword
-(31212, 4416, 7), -- Spirits
+(31212, 4408, 1), -- HP Modifiers
+(31212, 4409, 1), -- MP Modifiers
+(31212, 4410, 11), -- P. Atk. Modifiers
+(31212, 4411, 11), -- M. Atk. Modifiers
+(31212, 4412, 11), -- P. Def. Modifiers
+(31212, 4413, 11), -- M. Def. Modifiers
+(31212, 4414, 2), -- Armor Type
+(31212, 4415, 3), -- Weapon Type
+(31212, 4416, 7), -- Races
 -- Event Gatekeeper
 (31213, 4045, 1), -- Resist Full Magic Attack
-(31213, 4408, 1), -- HP Increase (1x)
-(31213, 4409, 1), -- MP Increase (1x)
-(31213, 4410, 11), -- Average P. Atk.
-(31213, 4411, 11), -- Average M. Atk.
-(31213, 4412, 11), -- Average P. Def.
-(31213, 4413, 11), -- Average M. Def.
-(31213, 4414, 2), -- Standard Type
-(31213, 4415, 3), -- One-handed Sword
-(31213, 4416, 7), -- Spirits
+(31213, 4408, 1), -- HP Modifiers
+(31213, 4409, 1), -- MP Modifiers
+(31213, 4410, 11), -- P. Atk. Modifiers
+(31213, 4411, 11), -- M. Atk. Modifiers
+(31213, 4412, 11), -- P. Def. Modifiers
+(31213, 4413, 11), -- M. Def. Modifiers
+(31213, 4414, 2), -- Armor Type
+(31213, 4415, 3), -- Weapon Type
+(31213, 4416, 7), -- Races
 -- Event Gatekeeper
 (31214, 4045, 1), -- Resist Full Magic Attack
-(31214, 4408, 1), -- HP Increase (1x)
-(31214, 4409, 1), -- MP Increase (1x)
-(31214, 4410, 11), -- Average P. Atk.
-(31214, 4411, 11), -- Average M. Atk.
-(31214, 4412, 11), -- Average P. Def.
-(31214, 4413, 11), -- Average M. Def.
-(31214, 4414, 2), -- Standard Type
-(31214, 4415, 3), -- One-handed Sword
-(31214, 4416, 7), -- Spirits
+(31214, 4408, 1), -- HP Modifiers
+(31214, 4409, 1), -- MP Modifiers
+(31214, 4410, 11), -- P. Atk. Modifiers
+(31214, 4411, 11), -- M. Atk. Modifiers
+(31214, 4412, 11), -- P. Def. Modifiers
+(31214, 4413, 11), -- M. Def. Modifiers
+(31214, 4414, 2), -- Armor Type
+(31214, 4415, 3), -- Weapon Type
+(31214, 4416, 7), -- Races
 -- Event Gatekeeper
 (31215, 4045, 1), -- Resist Full Magic Attack
-(31215, 4408, 1), -- HP Increase (1x)
-(31215, 4409, 1), -- MP Increase (1x)
-(31215, 4410, 11), -- Average P. Atk.
-(31215, 4411, 11), -- Average M. Atk.
-(31215, 4412, 11), -- Average P. Def.
-(31215, 4413, 11), -- Average M. Def.
-(31215, 4414, 2), -- Standard Type
-(31215, 4415, 3), -- One-handed Sword
-(31215, 4416, 7), -- Spirits
+(31215, 4408, 1), -- HP Modifiers
+(31215, 4409, 1), -- MP Modifiers
+(31215, 4410, 11), -- P. Atk. Modifiers
+(31215, 4411, 11), -- M. Atk. Modifiers
+(31215, 4412, 11), -- P. Def. Modifiers
+(31215, 4413, 11), -- M. Def. Modifiers
+(31215, 4414, 2), -- Armor Type
+(31215, 4415, 3), -- Weapon Type
+(31215, 4416, 7), -- Races
 -- Event Gatekeeper
 (31216, 4045, 1), -- Resist Full Magic Attack
-(31216, 4408, 1), -- HP Increase (1x)
-(31216, 4409, 1), -- MP Increase (1x)
-(31216, 4410, 11), -- Average P. Atk.
-(31216, 4411, 11), -- Average M. Atk.
-(31216, 4412, 11), -- Average P. Def.
-(31216, 4413, 11), -- Average M. Def.
-(31216, 4414, 2), -- Standard Type
-(31216, 4415, 3), -- One-handed Sword
-(31216, 4416, 7), -- Spirits
+(31216, 4408, 1), -- HP Modifiers
+(31216, 4409, 1), -- MP Modifiers
+(31216, 4410, 11), -- P. Atk. Modifiers
+(31216, 4411, 11), -- M. Atk. Modifiers
+(31216, 4412, 11), -- P. Def. Modifiers
+(31216, 4413, 11), -- M. Def. Modifiers
+(31216, 4414, 2), -- Armor Type
+(31216, 4415, 3), -- Weapon Type
+(31216, 4416, 7), -- Races
 -- Event Gatekeeper
 (31217, 4045, 1), -- Resist Full Magic Attack
-(31217, 4408, 1), -- HP Increase (1x)
-(31217, 4409, 1), -- MP Increase (1x)
-(31217, 4410, 11), -- Average P. Atk.
-(31217, 4411, 11), -- Average M. Atk.
-(31217, 4412, 11), -- Average P. Def.
-(31217, 4413, 11), -- Average M. Def.
-(31217, 4414, 2), -- Standard Type
-(31217, 4415, 3), -- One-handed Sword
-(31217, 4416, 7), -- Spirits
+(31217, 4408, 1), -- HP Modifiers
+(31217, 4409, 1), -- MP Modifiers
+(31217, 4410, 11), -- P. Atk. Modifiers
+(31217, 4411, 11), -- M. Atk. Modifiers
+(31217, 4412, 11), -- P. Def. Modifiers
+(31217, 4413, 11), -- M. Def. Modifiers
+(31217, 4414, 2), -- Armor Type
+(31217, 4415, 3), -- Weapon Type
+(31217, 4416, 7), -- Races
 -- Event Gatekeeper
 (31218, 4045, 1), -- Resist Full Magic Attack
-(31218, 4408, 1), -- HP Increase (1x)
-(31218, 4409, 1), -- MP Increase (1x)
-(31218, 4410, 11), -- Average P. Atk.
-(31218, 4411, 11), -- Average M. Atk.
-(31218, 4412, 11), -- Average P. Def.
-(31218, 4413, 11), -- Average M. Def.
-(31218, 4414, 2), -- Standard Type
-(31218, 4415, 3), -- One-handed Sword
-(31218, 4416, 7), -- Spirits
+(31218, 4408, 1), -- HP Modifiers
+(31218, 4409, 1), -- MP Modifiers
+(31218, 4410, 11), -- P. Atk. Modifiers
+(31218, 4411, 11), -- M. Atk. Modifiers
+(31218, 4412, 11), -- P. Def. Modifiers
+(31218, 4413, 11), -- M. Def. Modifiers
+(31218, 4414, 2), -- Armor Type
+(31218, 4415, 3), -- Weapon Type
+(31218, 4416, 7), -- Races
 -- Event Gatekeeper
 (31219, 4045, 1), -- Resist Full Magic Attack
-(31219, 4408, 1), -- HP Increase (1x)
-(31219, 4409, 1), -- MP Increase (1x)
-(31219, 4410, 11), -- Average P. Atk.
-(31219, 4411, 11), -- Average M. Atk.
-(31219, 4412, 11), -- Average P. Def.
-(31219, 4413, 11), -- Average M. Def.
-(31219, 4414, 2), -- Standard Type
-(31219, 4415, 3), -- One-handed Sword
-(31219, 4416, 7), -- Spirits
+(31219, 4408, 1), -- HP Modifiers
+(31219, 4409, 1), -- MP Modifiers
+(31219, 4410, 11), -- P. Atk. Modifiers
+(31219, 4411, 11), -- M. Atk. Modifiers
+(31219, 4412, 11), -- P. Def. Modifiers
+(31219, 4413, 11), -- M. Def. Modifiers
+(31219, 4414, 2), -- Armor Type
+(31219, 4415, 3), -- Weapon Type
+(31219, 4416, 7), -- Races
 -- Event Gatekeeper
 (31220, 4045, 1), -- Resist Full Magic Attack
-(31220, 4408, 1), -- HP Increase (1x)
-(31220, 4409, 1), -- MP Increase (1x)
-(31220, 4410, 11), -- Average P. Atk.
-(31220, 4411, 11), -- Average M. Atk.
-(31220, 4412, 11), -- Average P. Def.
-(31220, 4413, 11), -- Average M. Def.
-(31220, 4414, 2), -- Standard Type
-(31220, 4415, 3), -- One-handed Sword
-(31220, 4416, 7), -- Spirits
+(31220, 4408, 1), -- HP Modifiers
+(31220, 4409, 1), -- MP Modifiers
+(31220, 4410, 11), -- P. Atk. Modifiers
+(31220, 4411, 11), -- M. Atk. Modifiers
+(31220, 4412, 11), -- P. Def. Modifiers
+(31220, 4413, 11), -- M. Def. Modifiers
+(31220, 4414, 2), -- Armor Type
+(31220, 4415, 3), -- Weapon Type
+(31220, 4416, 7), -- Races
 -- Event Gatekeeper
 (31221, 4045, 1), -- Resist Full Magic Attack
-(31221, 4408, 1), -- HP Increase (1x)
-(31221, 4409, 1), -- MP Increase (1x)
-(31221, 4410, 11), -- Average P. Atk.
-(31221, 4411, 11), -- Average M. Atk.
-(31221, 4412, 11), -- Average P. Def.
-(31221, 4413, 11), -- Average M. Def.
-(31221, 4414, 2), -- Standard Type
-(31221, 4415, 3), -- One-handed Sword
-(31221, 4416, 7), -- Spirits
+(31221, 4408, 1), -- HP Modifiers
+(31221, 4409, 1), -- MP Modifiers
+(31221, 4410, 11), -- P. Atk. Modifiers
+(31221, 4411, 11), -- M. Atk. Modifiers
+(31221, 4412, 11), -- P. Def. Modifiers
+(31221, 4413, 11), -- M. Def. Modifiers
+(31221, 4414, 2), -- Armor Type
+(31221, 4415, 3), -- Weapon Type
+(31221, 4416, 7), -- Races
 -- Event Gatekeeper
 (31222, 4045, 1), -- Resist Full Magic Attack
-(31222, 4408, 1), -- HP Increase (1x)
-(31222, 4409, 1), -- MP Increase (1x)
-(31222, 4410, 11), -- Average P. Atk.
-(31222, 4411, 11), -- Average M. Atk.
-(31222, 4412, 11), -- Average P. Def.
-(31222, 4413, 11), -- Average M. Def.
-(31222, 4414, 2), -- Standard Type
-(31222, 4415, 3), -- One-handed Sword
-(31222, 4416, 7), -- Spirits
+(31222, 4408, 1), -- HP Modifiers
+(31222, 4409, 1), -- MP Modifiers
+(31222, 4410, 11), -- P. Atk. Modifiers
+(31222, 4411, 11), -- M. Atk. Modifiers
+(31222, 4412, 11), -- P. Def. Modifiers
+(31222, 4413, 11), -- M. Def. Modifiers
+(31222, 4414, 2), -- Armor Type
+(31222, 4415, 3), -- Weapon Type
+(31222, 4416, 7), -- Races
 -- Event Gatekeeper
 (31223, 4045, 1), -- Resist Full Magic Attack
-(31223, 4408, 1), -- HP Increase (1x)
-(31223, 4409, 1), -- MP Increase (1x)
-(31223, 4410, 11), -- Average P. Atk.
-(31223, 4411, 11), -- Average M. Atk.
-(31223, 4412, 11), -- Average P. Def.
-(31223, 4413, 11), -- Average M. Def.
-(31223, 4414, 2), -- Standard Type
-(31223, 4415, 3), -- One-handed Sword
-(31223, 4416, 7), -- Spirits
+(31223, 4408, 1), -- HP Modifiers
+(31223, 4409, 1), -- MP Modifiers
+(31223, 4410, 11), -- P. Atk. Modifiers
+(31223, 4411, 11), -- M. Atk. Modifiers
+(31223, 4412, 11), -- P. Def. Modifiers
+(31223, 4413, 11), -- M. Def. Modifiers
+(31223, 4414, 2), -- Armor Type
+(31223, 4415, 3), -- Weapon Type
+(31223, 4416, 7), -- Races
 -- Event Gatekeeper
 (31224, 4045, 1), -- Resist Full Magic Attack
-(31224, 4408, 1), -- HP Increase (1x)
-(31224, 4409, 1), -- MP Increase (1x)
-(31224, 4410, 11), -- Average P. Atk.
-(31224, 4411, 11), -- Average M. Atk.
-(31224, 4412, 11), -- Average P. Def.
-(31224, 4413, 11), -- Average M. Def.
-(31224, 4414, 2), -- Standard Type
-(31224, 4415, 3), -- One-handed Sword
-(31224, 4416, 7), -- Spirits
+(31224, 4408, 1), -- HP Modifiers
+(31224, 4409, 1), -- MP Modifiers
+(31224, 4410, 11), -- P. Atk. Modifiers
+(31224, 4411, 11), -- M. Atk. Modifiers
+(31224, 4412, 11), -- P. Def. Modifiers
+(31224, 4413, 11), -- M. Def. Modifiers
+(31224, 4414, 2), -- Armor Type
+(31224, 4415, 3), -- Weapon Type
+(31224, 4416, 7), -- Races
 -- Arena Manager
 (31225, 4045, 1), -- Resist Full Magic Attack
-(31225, 4408, 1), -- HP Increase (1x)
-(31225, 4409, 1), -- MP Increase (1x)
-(31225, 4410, 11), -- Average P. Atk.
-(31225, 4411, 11), -- Average M. Atk.
-(31225, 4412, 11), -- Average P. Def.
-(31225, 4413, 11), -- Average M. Def.
-(31225, 4414, 2), -- Standard Type
-(31225, 4415, 3), -- One-handed Sword
-(31225, 4416, 18), -- Dwarves
+(31225, 4408, 1), -- HP Modifiers
+(31225, 4409, 1), -- MP Modifiers
+(31225, 4410, 11), -- P. Atk. Modifiers
+(31225, 4411, 11), -- M. Atk. Modifiers
+(31225, 4412, 11), -- P. Def. Modifiers
+(31225, 4413, 11), -- M. Def. Modifiers
+(31225, 4414, 2), -- Armor Type
+(31225, 4415, 3), -- Weapon Type
+(31225, 4416, 18), -- Races
 -- Arena Director
 (31226, 4045, 1), -- Resist Full Magic Attack
-(31226, 4408, 1), -- HP Increase (1x)
-(31226, 4409, 1), -- MP Increase (1x)
-(31226, 4410, 11), -- Average P. Atk.
-(31226, 4411, 11), -- Average M. Atk.
-(31226, 4412, 11), -- Average P. Def.
-(31226, 4413, 11), -- Average M. Def.
-(31226, 4414, 2), -- Standard Type
-(31226, 4415, 3), -- One-handed Sword
-(31226, 4416, 14), -- Humans
+(31226, 4408, 1), -- HP Modifiers
+(31226, 4409, 1), -- MP Modifiers
+(31226, 4410, 11), -- P. Atk. Modifiers
+(31226, 4411, 11), -- M. Atk. Modifiers
+(31226, 4412, 11), -- P. Def. Modifiers
+(31226, 4413, 11), -- M. Def. Modifiers
+(31226, 4414, 2), -- Armor Type
+(31226, 4415, 3), -- Weapon Type
+(31226, 4416, 14), -- Races
 -- Buzz the Cat
 (31227, 4045, 1), -- Resist Full Magic Attack
-(31227, 4408, 1), -- HP Increase (1x)
-(31227, 4409, 1), -- MP Increase (1x)
-(31227, 4410, 11), -- Average P. Atk.
-(31227, 4411, 11), -- Average M. Atk.
-(31227, 4412, 11), -- Average P. Def.
-(31227, 4413, 11), -- Average M. Def.
-(31227, 4414, 2), -- Standard Type
-(31227, 4415, 3), -- One-handed Sword
-(31227, 4416, 7), -- Spirits
+(31227, 4408, 1), -- HP Modifiers
+(31227, 4409, 1), -- MP Modifiers
+(31227, 4410, 11), -- P. Atk. Modifiers
+(31227, 4411, 11), -- M. Atk. Modifiers
+(31227, 4412, 11), -- P. Def. Modifiers
+(31227, 4413, 11), -- M. Def. Modifiers
+(31227, 4414, 2), -- Armor Type
+(31227, 4415, 3), -- Weapon Type
+(31227, 4416, 7), -- Races
 -- Roy the Cat
 (31228, 4045, 1), -- Resist Full Magic Attack
-(31228, 4408, 1), -- HP Increase (1x)
-(31228, 4409, 1), -- MP Increase (1x)
-(31228, 4410, 11), -- Average P. Atk.
-(31228, 4411, 11), -- Average M. Atk.
-(31228, 4412, 11), -- Average P. Def.
-(31228, 4413, 11), -- Average M. Def.
-(31228, 4414, 2), -- Standard Type
-(31228, 4415, 3), -- One-handed Sword
-(31228, 4416, 7), -- Spirits
+(31228, 4408, 1), -- HP Modifiers
+(31228, 4409, 1), -- MP Modifiers
+(31228, 4410, 11), -- P. Atk. Modifiers
+(31228, 4411, 11), -- M. Atk. Modifiers
+(31228, 4412, 11), -- P. Def. Modifiers
+(31228, 4413, 11), -- M. Def. Modifiers
+(31228, 4414, 2), -- Armor Type
+(31228, 4415, 3), -- Weapon Type
+(31228, 4416, 7), -- Races
 -- Winnie the Cat
 (31229, 4045, 1), -- Resist Full Magic Attack
-(31229, 4408, 1), -- HP Increase (1x)
-(31229, 4409, 1), -- MP Increase (1x)
-(31229, 4410, 11), -- Average P. Atk.
-(31229, 4411, 11), -- Average M. Atk.
-(31229, 4412, 11), -- Average P. Def.
-(31229, 4413, 11), -- Average M. Def.
-(31229, 4414, 2), -- Standard Type
-(31229, 4415, 3), -- One-handed Sword
-(31229, 4416, 7), -- Spirits
+(31229, 4408, 1), -- HP Modifiers
+(31229, 4409, 1), -- MP Modifiers
+(31229, 4410, 11), -- P. Atk. Modifiers
+(31229, 4411, 11), -- M. Atk. Modifiers
+(31229, 4412, 11), -- P. Def. Modifiers
+(31229, 4413, 11), -- M. Def. Modifiers
+(31229, 4414, 2), -- Armor Type
+(31229, 4415, 3), -- Weapon Type
+(31229, 4416, 7), -- Races
 -- Louie the Cat
 (31230, 4045, 1), -- Resist Full Magic Attack
-(31230, 4408, 1), -- HP Increase (1x)
-(31230, 4409, 1), -- MP Increase (1x)
-(31230, 4410, 11), -- Average P. Atk.
-(31230, 4411, 11), -- Average M. Atk.
-(31230, 4412, 11), -- Average P. Def.
-(31230, 4413, 11), -- Average M. Def.
-(31230, 4414, 2), -- Standard Type
-(31230, 4415, 3), -- One-handed Sword
-(31230, 4416, 7), -- Spirits
+(31230, 4408, 1), -- HP Modifiers
+(31230, 4409, 1), -- MP Modifiers
+(31230, 4410, 11), -- P. Atk. Modifiers
+(31230, 4411, 11), -- M. Atk. Modifiers
+(31230, 4412, 11), -- P. Def. Modifiers
+(31230, 4413, 11), -- M. Def. Modifiers
+(31230, 4414, 2), -- Armor Type
+(31230, 4415, 3), -- Weapon Type
+(31230, 4416, 7), -- Races
 -- Preacher of Doom
 (31231, 4045, 1), -- Resist Full Magic Attack
-(31231, 4408, 1), -- HP Increase (1x)
-(31231, 4409, 1), -- MP Increase (1x)
-(31231, 4410, 11), -- Average P. Atk.
-(31231, 4411, 11), -- Average M. Atk.
-(31231, 4412, 11), -- Average P. Def.
-(31231, 4413, 11), -- Average M. Def.
-(31231, 4414, 2), -- Standard Type
-(31231, 4415, 3), -- One-handed Sword
-(31231, 4416, 1), -- Undead
+(31231, 4408, 1), -- HP Modifiers
+(31231, 4409, 1), -- MP Modifiers
+(31231, 4410, 11), -- P. Atk. Modifiers
+(31231, 4411, 11), -- M. Atk. Modifiers
+(31231, 4412, 11), -- P. Def. Modifiers
+(31231, 4413, 11), -- M. Def. Modifiers
+(31231, 4414, 2), -- Armor Type
+(31231, 4415, 3), -- Weapon Type
+(31231, 4416, 1), -- Races
 -- Preacher of Doom
 (31232, 4045, 1), -- Resist Full Magic Attack
-(31232, 4408, 1), -- HP Increase (1x)
-(31232, 4409, 1), -- MP Increase (1x)
-(31232, 4410, 11), -- Average P. Atk.
-(31232, 4411, 11), -- Average M. Atk.
-(31232, 4412, 11), -- Average P. Def.
-(31232, 4413, 11), -- Average M. Def.
-(31232, 4414, 2), -- Standard Type
-(31232, 4415, 3), -- One-handed Sword
-(31232, 4416, 1), -- Undead
+(31232, 4408, 1), -- HP Modifiers
+(31232, 4409, 1), -- MP Modifiers
+(31232, 4410, 11), -- P. Atk. Modifiers
+(31232, 4411, 11), -- M. Atk. Modifiers
+(31232, 4412, 11), -- P. Def. Modifiers
+(31232, 4413, 11), -- M. Def. Modifiers
+(31232, 4414, 2), -- Armor Type
+(31232, 4415, 3), -- Weapon Type
+(31232, 4416, 1), -- Races
 -- Preacher of Doom
 (31233, 4045, 1), -- Resist Full Magic Attack
-(31233, 4408, 1), -- HP Increase (1x)
-(31233, 4409, 1), -- MP Increase (1x)
-(31233, 4410, 11), -- Average P. Atk.
-(31233, 4411, 11), -- Average M. Atk.
-(31233, 4412, 11), -- Average P. Def.
-(31233, 4413, 11), -- Average M. Def.
-(31233, 4414, 2), -- Standard Type
-(31233, 4415, 3), -- One-handed Sword
-(31233, 4416, 1), -- Undead
+(31233, 4408, 1), -- HP Modifiers
+(31233, 4409, 1), -- MP Modifiers
+(31233, 4410, 11), -- P. Atk. Modifiers
+(31233, 4411, 11), -- M. Atk. Modifiers
+(31233, 4412, 11), -- P. Def. Modifiers
+(31233, 4413, 11), -- M. Def. Modifiers
+(31233, 4414, 2), -- Armor Type
+(31233, 4415, 3), -- Weapon Type
+(31233, 4416, 1), -- Races
 -- Preacher of Doom
-(31234, 4045, 1); -- Resist Full Magic Attack
-
-INSERT INTO `npcskills` VALUES
-(31234, 4408, 1), -- HP Increase (1x)
-(31234, 4409, 1), -- MP Increase (1x)
-(31234, 4410, 11), -- Average P. Atk.
-(31234, 4411, 11), -- Average M. Atk.
-(31234, 4412, 11), -- Average P. Def.
-(31234, 4413, 11), -- Average M. Def.
-(31234, 4414, 2), -- Standard Type
-(31234, 4415, 3), -- One-handed Sword
-(31234, 4416, 1), -- Undead
+(31234, 4045, 1), -- Resist Full Magic Attack
+(31234, 4408, 1), -- HP Modifiers
+(31234, 4409, 1), -- MP Modifiers
+(31234, 4410, 11), -- P. Atk. Modifiers
+(31234, 4411, 11), -- M. Atk. Modifiers
+(31234, 4412, 11), -- P. Def. Modifiers
+(31234, 4413, 11), -- M. Def. Modifiers
+(31234, 4414, 2), -- Armor Type
+(31234, 4415, 3), -- Weapon Type
+(31234, 4416, 1), -- Races
 -- Preacher of Doom
 (31235, 4045, 1), -- Resist Full Magic Attack
-(31235, 4408, 1), -- HP Increase (1x)
-(31235, 4409, 1), -- MP Increase (1x)
-(31235, 4410, 11), -- Average P. Atk.
-(31235, 4411, 11), -- Average M. Atk.
-(31235, 4412, 11), -- Average P. Def.
-(31235, 4413, 11), -- Average M. Def.
-(31235, 4414, 2), -- Standard Type
-(31235, 4415, 3), -- One-handed Sword
-(31235, 4416, 1), -- Undead
+(31235, 4408, 1), -- HP Modifiers
+(31235, 4409, 1), -- MP Modifiers
+(31235, 4410, 11), -- P. Atk. Modifiers
+(31235, 4411, 11), -- M. Atk. Modifiers
+(31235, 4412, 11), -- P. Def. Modifiers
+(31235, 4413, 11), -- M. Def. Modifiers
+(31235, 4414, 2), -- Armor Type
+(31235, 4415, 3), -- Weapon Type
+(31235, 4416, 1), -- Races
 -- Preacher of Doom
 (31236, 4045, 1), -- Resist Full Magic Attack
-(31236, 4408, 1), -- HP Increase (1x)
-(31236, 4409, 1), -- MP Increase (1x)
-(31236, 4410, 11), -- Average P. Atk.
-(31236, 4411, 11), -- Average M. Atk.
-(31236, 4412, 11), -- Average P. Def.
-(31236, 4413, 11), -- Average M. Def.
-(31236, 4414, 2), -- Standard Type
-(31236, 4415, 3), -- One-handed Sword
-(31236, 4416, 1), -- Undead
+(31236, 4408, 1), -- HP Modifiers
+(31236, 4409, 1), -- MP Modifiers
+(31236, 4410, 11), -- P. Atk. Modifiers
+(31236, 4411, 11), -- M. Atk. Modifiers
+(31236, 4412, 11), -- P. Def. Modifiers
+(31236, 4413, 11), -- M. Def. Modifiers
+(31236, 4414, 2), -- Armor Type
+(31236, 4415, 3), -- Weapon Type
+(31236, 4416, 1), -- Races
 -- Preacher of Doom
 (31237, 4045, 1), -- Resist Full Magic Attack
-(31237, 4408, 1), -- HP Increase (1x)
-(31237, 4409, 1), -- MP Increase (1x)
-(31237, 4410, 11), -- Average P. Atk.
-(31237, 4411, 11), -- Average M. Atk.
-(31237, 4412, 11), -- Average P. Def.
-(31237, 4413, 11), -- Average M. Def.
-(31237, 4414, 2), -- Standard Type
-(31237, 4415, 3), -- One-handed Sword
-(31237, 4416, 1), -- Undead
+(31237, 4408, 1), -- HP Modifiers
+(31237, 4409, 1), -- MP Modifiers
+(31237, 4410, 11), -- P. Atk. Modifiers
+(31237, 4411, 11), -- M. Atk. Modifiers
+(31237, 4412, 11), -- P. Def. Modifiers
+(31237, 4413, 11), -- M. Def. Modifiers
+(31237, 4414, 2), -- Armor Type
+(31237, 4415, 3), -- Weapon Type
+(31237, 4416, 1), -- Races
 -- Preacher of Doom
 (31238, 4045, 1), -- Resist Full Magic Attack
-(31238, 4408, 1), -- HP Increase (1x)
-(31238, 4409, 1), -- MP Increase (1x)
-(31238, 4410, 11), -- Average P. Atk.
-(31238, 4411, 11), -- Average M. Atk.
-(31238, 4412, 11), -- Average P. Def.
-(31238, 4413, 11), -- Average M. Def.
-(31238, 4414, 2), -- Standard Type
-(31238, 4415, 3), -- One-handed Sword
-(31238, 4416, 1), -- Undead
+(31238, 4408, 1), -- HP Modifiers
+(31238, 4409, 1), -- MP Modifiers
+(31238, 4410, 11), -- P. Atk. Modifiers
+(31238, 4411, 11), -- M. Atk. Modifiers
+(31238, 4412, 11), -- P. Def. Modifiers
+(31238, 4413, 11), -- M. Def. Modifiers
+(31238, 4414, 2), -- Armor Type
+(31238, 4415, 3), -- Weapon Type
+(31238, 4416, 1), -- Races
 -- Preacher of Doom
 (31239, 4045, 1), -- Resist Full Magic Attack
-(31239, 4408, 1), -- HP Increase (1x)
-(31239, 4409, 1), -- MP Increase (1x)
-(31239, 4410, 11), -- Average P. Atk.
-(31239, 4411, 11), -- Average M. Atk.
-(31239, 4412, 11), -- Average P. Def.
-(31239, 4413, 11), -- Average M. Def.
-(31239, 4414, 2), -- Standard Type
-(31239, 4415, 3), -- One-handed Sword
-(31239, 4416, 1), -- Undead
+(31239, 4408, 1), -- HP Modifiers
+(31239, 4409, 1), -- MP Modifiers
+(31239, 4410, 11), -- P. Atk. Modifiers
+(31239, 4411, 11), -- M. Atk. Modifiers
+(31239, 4412, 11), -- P. Def. Modifiers
+(31239, 4413, 11), -- M. Def. Modifiers
+(31239, 4414, 2), -- Armor Type
+(31239, 4415, 3), -- Weapon Type
+(31239, 4416, 1), -- Races
 -- Preacher of Doom
 (31240, 4045, 1), -- Resist Full Magic Attack
-(31240, 4408, 1), -- HP Increase (1x)
-(31240, 4409, 1), -- MP Increase (1x)
-(31240, 4410, 11), -- Average P. Atk.
-(31240, 4411, 11), -- Average M. Atk.
-(31240, 4412, 11), -- Average P. Def.
-(31240, 4413, 11), -- Average M. Def.
-(31240, 4414, 2), -- Standard Type
-(31240, 4415, 3), -- One-handed Sword
-(31240, 4416, 1), -- Undead
+(31240, 4408, 1), -- HP Modifiers
+(31240, 4409, 1), -- MP Modifiers
+(31240, 4410, 11), -- P. Atk. Modifiers
+(31240, 4411, 11), -- M. Atk. Modifiers
+(31240, 4412, 11), -- P. Def. Modifiers
+(31240, 4413, 11), -- M. Def. Modifiers
+(31240, 4414, 2), -- Armor Type
+(31240, 4415, 3), -- Weapon Type
+(31240, 4416, 1), -- Races
 -- Preacher of Doom
 (31241, 4045, 1), -- Resist Full Magic Attack
-(31241, 4408, 1), -- HP Increase (1x)
-(31241, 4409, 1), -- MP Increase (1x)
-(31241, 4410, 11), -- Average P. Atk.
-(31241, 4411, 11), -- Average M. Atk.
-(31241, 4412, 11), -- Average P. Def.
-(31241, 4413, 11), -- Average M. Def.
-(31241, 4414, 2), -- Standard Type
-(31241, 4415, 3), -- One-handed Sword
-(31241, 4416, 1), -- Undead
+(31241, 4408, 1), -- HP Modifiers
+(31241, 4409, 1), -- MP Modifiers
+(31241, 4410, 11), -- P. Atk. Modifiers
+(31241, 4411, 11), -- M. Atk. Modifiers
+(31241, 4412, 11), -- P. Def. Modifiers
+(31241, 4413, 11), -- M. Def. Modifiers
+(31241, 4414, 2), -- Armor Type
+(31241, 4415, 3), -- Weapon Type
+(31241, 4416, 1), -- Races
 -- Preacher of Doom
 (31242, 4045, 1), -- Resist Full Magic Attack
-(31242, 4408, 1), -- HP Increase (1x)
-(31242, 4409, 1), -- MP Increase (1x)
-(31242, 4410, 11), -- Average P. Atk.
-(31242, 4411, 11), -- Average M. Atk.
-(31242, 4412, 11), -- Average P. Def.
-(31242, 4413, 11), -- Average M. Def.
-(31242, 4414, 2), -- Standard Type
-(31242, 4415, 3), -- One-handed Sword
-(31242, 4416, 1), -- Undead
+(31242, 4408, 1), -- HP Modifiers
+(31242, 4409, 1), -- MP Modifiers
+(31242, 4410, 11), -- P. Atk. Modifiers
+(31242, 4411, 11), -- M. Atk. Modifiers
+(31242, 4412, 11), -- P. Def. Modifiers
+(31242, 4413, 11), -- M. Def. Modifiers
+(31242, 4414, 2), -- Armor Type
+(31242, 4415, 3), -- Weapon Type
+(31242, 4416, 1), -- Races
 -- Preacher of Doom
 (31243, 4045, 1), -- Resist Full Magic Attack
-(31243, 4408, 1), -- HP Increase (1x)
-(31243, 4409, 1), -- MP Increase (1x)
-(31243, 4410, 11), -- Average P. Atk.
-(31243, 4411, 11), -- Average M. Atk.
-(31243, 4412, 11), -- Average P. Def.
-(31243, 4413, 11), -- Average M. Def.
-(31243, 4414, 2), -- Standard Type
-(31243, 4415, 3), -- One-handed Sword
-(31243, 4416, 1), -- Undead
+(31243, 4408, 1), -- HP Modifiers
+(31243, 4409, 1), -- MP Modifiers
+(31243, 4410, 11), -- P. Atk. Modifiers
+(31243, 4411, 11), -- M. Atk. Modifiers
+(31243, 4412, 11), -- P. Def. Modifiers
+(31243, 4413, 11), -- M. Def. Modifiers
+(31243, 4414, 2), -- Armor Type
+(31243, 4415, 3), -- Weapon Type
+(31243, 4416, 1), -- Races
 -- Preacher of Doom
 (31244, 4045, 1), -- Resist Full Magic Attack
-(31244, 4408, 1), -- HP Increase (1x)
-(31244, 4409, 1), -- MP Increase (1x)
-(31244, 4410, 11), -- Average P. Atk.
-(31244, 4411, 11), -- Average M. Atk.
-(31244, 4412, 11), -- Average P. Def.
-(31244, 4413, 11), -- Average M. Def.
-(31244, 4414, 2), -- Standard Type
-(31244, 4415, 3), -- One-handed Sword
-(31244, 4416, 1), -- Undead
+(31244, 4408, 1), -- HP Modifiers
+(31244, 4409, 1), -- MP Modifiers
+(31244, 4410, 11), -- P. Atk. Modifiers
+(31244, 4411, 11), -- M. Atk. Modifiers
+(31244, 4412, 11), -- P. Def. Modifiers
+(31244, 4413, 11), -- M. Def. Modifiers
+(31244, 4414, 2), -- Armor Type
+(31244, 4415, 3), -- Weapon Type
+(31244, 4416, 1), -- Races
 -- Preacher of Doom
 (31245, 4045, 1), -- Resist Full Magic Attack
-(31245, 4408, 1), -- HP Increase (1x)
-(31245, 4409, 1), -- MP Increase (1x)
-(31245, 4410, 11), -- Average P. Atk.
-(31245, 4411, 11), -- Average M. Atk.
-(31245, 4412, 11), -- Average P. Def.
-(31245, 4413, 11), -- Average M. Def.
-(31245, 4414, 2), -- Standard Type
-(31245, 4415, 3), -- One-handed Sword
-(31245, 4416, 1), -- Undead
+(31245, 4408, 1), -- HP Modifiers
+(31245, 4409, 1), -- MP Modifiers
+(31245, 4410, 11), -- P. Atk. Modifiers
+(31245, 4411, 11), -- M. Atk. Modifiers
+(31245, 4412, 11), -- P. Def. Modifiers
+(31245, 4413, 11), -- M. Def. Modifiers
+(31245, 4414, 2), -- Armor Type
+(31245, 4415, 3), -- Weapon Type
+(31245, 4416, 1), -- Races
 -- Preacher of Doom
 (31246, 4045, 1), -- Resist Full Magic Attack
-(31246, 4408, 1), -- HP Increase (1x)
-(31246, 4409, 1), -- MP Increase (1x)
-(31246, 4410, 11), -- Average P. Atk.
-(31246, 4411, 11), -- Average M. Atk.
-(31246, 4412, 11), -- Average P. Def.
-(31246, 4413, 11), -- Average M. Def.
-(31246, 4414, 2), -- Standard Type
-(31246, 4415, 3), -- One-handed Sword
-(31246, 4416, 1), -- Undead
+(31246, 4408, 1), -- HP Modifiers
+(31246, 4409, 1), -- MP Modifiers
+(31246, 4410, 11), -- P. Atk. Modifiers
+(31246, 4411, 11), -- M. Atk. Modifiers
+(31246, 4412, 11), -- P. Def. Modifiers
+(31246, 4413, 11), -- M. Def. Modifiers
+(31246, 4414, 2), -- Armor Type
+(31246, 4415, 3), -- Weapon Type
+(31246, 4416, 1), -- Races
 -- Orator of Revelations
 (31247, 4045, 1), -- Resist Full Magic Attack
-(31247, 4390, 1), -- Mystic Immunity
-(31247, 4408, 1), -- HP Increase (1x)
-(31247, 4409, 1), -- MP Increase (1x)
-(31247, 4410, 11), -- Average P. Atk.
-(31247, 4411, 11), -- Average M. Atk.
-(31247, 4412, 11), -- Average P. Def.
-(31247, 4413, 11), -- Average M. Def.
-(31247, 4414, 2), -- Standard Type
-(31247, 4415, 3), -- One-handed Sword
-(31247, 4416, 2), -- Magic Creatures
+(31247, 4390, 1), -- NPC Abnormal Immunity
+(31247, 4408, 1), -- HP Modifiers
+(31247, 4409, 1), -- MP Modifiers
+(31247, 4410, 11), -- P. Atk. Modifiers
+(31247, 4411, 11), -- M. Atk. Modifiers
+(31247, 4412, 11), -- P. Def. Modifiers
+(31247, 4413, 11), -- M. Def. Modifiers
+(31247, 4414, 2), -- Armor Type
+(31247, 4415, 3), -- Weapon Type
+(31247, 4416, 2), -- Races
 -- Orator of Revelations
 (31248, 4045, 1), -- Resist Full Magic Attack
-(31248, 4390, 1), -- Mystic Immunity
-(31248, 4408, 1), -- HP Increase (1x)
-(31248, 4409, 1), -- MP Increase (1x)
-(31248, 4410, 11), -- Average P. Atk.
-(31248, 4411, 11), -- Average M. Atk.
-(31248, 4412, 11), -- Average P. Def.
-(31248, 4413, 11), -- Average M. Def.
-(31248, 4414, 2), -- Standard Type
-(31248, 4415, 3), -- One-handed Sword
-(31248, 4416, 2), -- Magic Creatures
+(31248, 4390, 1), -- NPC Abnormal Immunity
+(31248, 4408, 1), -- HP Modifiers
+(31248, 4409, 1), -- MP Modifiers
+(31248, 4410, 11), -- P. Atk. Modifiers
+(31248, 4411, 11), -- M. Atk. Modifiers
+(31248, 4412, 11), -- P. Def. Modifiers
+(31248, 4413, 11), -- M. Def. Modifiers
+(31248, 4414, 2), -- Armor Type
+(31248, 4415, 3), -- Weapon Type
+(31248, 4416, 2), -- Races
 -- Orator of Revelations
 (31249, 4045, 1), -- Resist Full Magic Attack
-(31249, 4390, 1), -- Mystic Immunity
-(31249, 4408, 1), -- HP Increase (1x)
-(31249, 4409, 1), -- MP Increase (1x)
-(31249, 4410, 11), -- Average P. Atk.
-(31249, 4411, 11), -- Average M. Atk.
-(31249, 4412, 11), -- Average P. Def.
-(31249, 4413, 11), -- Average M. Def.
-(31249, 4414, 2), -- Standard Type
-(31249, 4415, 3), -- One-handed Sword
-(31249, 4416, 2), -- Magic Creatures
+(31249, 4390, 1), -- NPC Abnormal Immunity
+(31249, 4408, 1), -- HP Modifiers
+(31249, 4409, 1), -- MP Modifiers
+(31249, 4410, 11), -- P. Atk. Modifiers
+(31249, 4411, 11), -- M. Atk. Modifiers
+(31249, 4412, 11), -- P. Def. Modifiers
+(31249, 4413, 11), -- M. Def. Modifiers
+(31249, 4414, 2), -- Armor Type
+(31249, 4415, 3), -- Weapon Type
+(31249, 4416, 2), -- Races
 -- Orator of Revelations
 (31250, 4045, 1), -- Resist Full Magic Attack
-(31250, 4390, 1), -- Mystic Immunity
-(31250, 4408, 1), -- HP Increase (1x)
-(31250, 4409, 1), -- MP Increase (1x)
-(31250, 4410, 11), -- Average P. Atk.
-(31250, 4411, 11), -- Average M. Atk.
-(31250, 4412, 11), -- Average P. Def.
-(31250, 4413, 11), -- Average M. Def.
-(31250, 4414, 2), -- Standard Type
-(31250, 4415, 3), -- One-handed Sword
-(31250, 4416, 2), -- Magic Creatures
+(31250, 4390, 1), -- NPC Abnormal Immunity
+(31250, 4408, 1), -- HP Modifiers
+(31250, 4409, 1), -- MP Modifiers
+(31250, 4410, 11), -- P. Atk. Modifiers
+(31250, 4411, 11), -- M. Atk. Modifiers
+(31250, 4412, 11), -- P. Def. Modifiers
+(31250, 4413, 11), -- M. Def. Modifiers
+(31250, 4414, 2), -- Armor Type
+(31250, 4415, 3), -- Weapon Type
+(31250, 4416, 2), -- Races
 -- Orator of Revelations
 (31251, 4045, 1), -- Resist Full Magic Attack
-(31251, 4390, 1), -- Mystic Immunity
-(31251, 4408, 1), -- HP Increase (1x)
-(31251, 4409, 1), -- MP Increase (1x)
-(31251, 4410, 11), -- Average P. Atk.
-(31251, 4411, 11), -- Average M. Atk.
-(31251, 4412, 11), -- Average P. Def.
-(31251, 4413, 11), -- Average M. Def.
-(31251, 4414, 2), -- Standard Type
-(31251, 4415, 3), -- One-handed Sword
-(31251, 4416, 2), -- Magic Creatures
+(31251, 4390, 1), -- NPC Abnormal Immunity
+(31251, 4408, 1), -- HP Modifiers
+(31251, 4409, 1), -- MP Modifiers
+(31251, 4410, 11), -- P. Atk. Modifiers
+(31251, 4411, 11), -- M. Atk. Modifiers
+(31251, 4412, 11), -- P. Def. Modifiers
+(31251, 4413, 11), -- M. Def. Modifiers
+(31251, 4414, 2), -- Armor Type
+(31251, 4415, 3), -- Weapon Type
+(31251, 4416, 2), -- Races
 -- Orator of Revelations
 (31252, 4045, 1), -- Resist Full Magic Attack
-(31252, 4390, 1), -- Mystic Immunity
-(31252, 4408, 1), -- HP Increase (1x)
-(31252, 4409, 1), -- MP Increase (1x)
-(31252, 4410, 11), -- Average P. Atk.
-(31252, 4411, 11), -- Average M. Atk.
-(31252, 4412, 11), -- Average P. Def.
-(31252, 4413, 11), -- Average M. Def.
-(31252, 4414, 2), -- Standard Type
-(31252, 4415, 3), -- One-handed Sword
-(31252, 4416, 2), -- Magic Creatures
+(31252, 4390, 1), -- NPC Abnormal Immunity
+(31252, 4408, 1), -- HP Modifiers
+(31252, 4409, 1), -- MP Modifiers
+(31252, 4410, 11), -- P. Atk. Modifiers
+(31252, 4411, 11), -- M. Atk. Modifiers
+(31252, 4412, 11), -- P. Def. Modifiers
+(31252, 4413, 11), -- M. Def. Modifiers
+(31252, 4414, 2), -- Armor Type
+(31252, 4415, 3), -- Weapon Type
+(31252, 4416, 2), -- Races
 -- Orator of Revelations
 (31253, 4045, 1), -- Resist Full Magic Attack
-(31253, 4390, 1), -- Mystic Immunity
-(31253, 4408, 1), -- HP Increase (1x)
-(31253, 4409, 1), -- MP Increase (1x)
-(31253, 4410, 11), -- Average P. Atk.
-(31253, 4411, 11), -- Average M. Atk.
-(31253, 4412, 11), -- Average P. Def.
-(31253, 4413, 11), -- Average M. Def.
-(31253, 4414, 2), -- Standard Type
-(31253, 4415, 3), -- One-handed Sword
-(31253, 4416, 2), -- Magic Creatures
+(31253, 4390, 1), -- NPC Abnormal Immunity
+(31253, 4408, 1), -- HP Modifiers
+(31253, 4409, 1), -- MP Modifiers
+(31253, 4410, 11), -- P. Atk. Modifiers
+(31253, 4411, 11), -- M. Atk. Modifiers
+(31253, 4412, 11), -- P. Def. Modifiers
+(31253, 4413, 11), -- M. Def. Modifiers
+(31253, 4414, 2), -- Armor Type
+(31253, 4415, 3), -- Weapon Type
+(31253, 4416, 2), -- Races
 -- Orator of Revelations
 (31254, 4045, 1), -- Resist Full Magic Attack
-(31254, 4390, 1), -- Mystic Immunity
-(31254, 4408, 1), -- HP Increase (1x)
-(31254, 4409, 1), -- MP Increase (1x)
-(31254, 4410, 11), -- Average P. Atk.
-(31254, 4411, 11), -- Average M. Atk.
-(31254, 4412, 11), -- Average P. Def.
-(31254, 4413, 11), -- Average M. Def.
-(31254, 4414, 2), -- Standard Type
-(31254, 4415, 3), -- One-handed Sword
-(31254, 4416, 2), -- Magic Creatures
+(31254, 4390, 1), -- NPC Abnormal Immunity
+(31254, 4408, 1), -- HP Modifiers
+(31254, 4409, 1), -- MP Modifiers
+(31254, 4410, 11), -- P. Atk. Modifiers
+(31254, 4411, 11), -- M. Atk. Modifiers
+(31254, 4412, 11), -- P. Def. Modifiers
+(31254, 4413, 11), -- M. Def. Modifiers
+(31254, 4414, 2), -- Armor Type
+(31254, 4415, 3), -- Weapon Type
+(31254, 4416, 2), -- Races
 -- Buzz the Cat
 (31255, 4045, 1), -- Resist Full Magic Attack
-(31255, 4408, 1), -- HP Increase (1x)
-(31255, 4409, 1), -- MP Increase (1x)
-(31255, 4410, 11), -- Average P. Atk.
-(31255, 4411, 11), -- Average M. Atk.
-(31255, 4412, 11), -- Average P. Def.
-(31255, 4413, 11), -- Average M. Def.
-(31255, 4414, 2), -- Standard Type
-(31255, 4415, 3), -- One-handed Sword
-(31255, 4416, 7), -- Spirits
+(31255, 4408, 1), -- HP Modifiers
+(31255, 4409, 1), -- MP Modifiers
+(31255, 4410, 11), -- P. Atk. Modifiers
+(31255, 4411, 11), -- M. Atk. Modifiers
+(31255, 4412, 11), -- P. Def. Modifiers
+(31255, 4413, 11), -- M. Def. Modifiers
+(31255, 4414, 2), -- Armor Type
+(31255, 4415, 3), -- Weapon Type
+(31255, 4416, 7), -- Races
 -- Leon
 (31256, 4045, 1), -- Resist Full Magic Attack
-(31256, 4408, 1), -- HP Increase (1x)
-(31256, 4409, 1), -- MP Increase (1x)
-(31256, 4410, 11), -- Average P. Atk.
-(31256, 4411, 11), -- Average M. Atk.
-(31256, 4412, 11), -- Average P. Def.
-(31256, 4413, 11), -- Average M. Def.
-(31256, 4414, 2), -- Standard Type
-(31256, 4415, 3), -- One-handed Sword
-(31256, 4416, 14), -- Humans
+(31256, 4408, 1), -- HP Modifiers
+(31256, 4409, 1), -- MP Modifiers
+(31256, 4410, 11), -- P. Atk. Modifiers
+(31256, 4411, 11), -- M. Atk. Modifiers
+(31256, 4412, 11), -- P. Def. Modifiers
+(31256, 4413, 11), -- M. Def. Modifiers
+(31256, 4414, 2), -- Armor Type
+(31256, 4415, 3), -- Weapon Type
+(31256, 4416, 14), -- Races
 -- Veronica
 (31257, 4045, 1), -- Resist Full Magic Attack
-(31257, 4408, 1), -- HP Increase (1x)
-(31257, 4409, 1), -- MP Increase (1x)
-(31257, 4410, 11), -- Average P. Atk.
-(31257, 4411, 11), -- Average M. Atk.
-(31257, 4412, 11), -- Average P. Def.
-(31257, 4413, 11), -- Average M. Def.
-(31257, 4414, 2), -- Standard Type
-(31257, 4415, 3), -- One-handed Sword
-(31257, 4416, 14), -- Humans
+(31257, 4408, 1), -- HP Modifiers
+(31257, 4409, 1), -- MP Modifiers
+(31257, 4410, 11), -- P. Atk. Modifiers
+(31257, 4411, 11), -- M. Atk. Modifiers
+(31257, 4412, 11), -- P. Def. Modifiers
+(31257, 4413, 11), -- M. Def. Modifiers
+(31257, 4414, 2), -- Armor Type
+(31257, 4415, 3), -- Weapon Type
+(31257, 4416, 14), -- Races
 -- Helmut
 (31258, 4045, 1), -- Resist Full Magic Attack
-(31258, 4408, 1), -- HP Increase (1x)
-(31258, 4409, 1), -- MP Increase (1x)
-(31258, 4410, 11), -- Average P. Atk.
-(31258, 4411, 11), -- Average M. Atk.
-(31258, 4412, 11), -- Average P. Def.
-(31258, 4413, 11), -- Average M. Def.
-(31258, 4414, 2), -- Standard Type
-(31258, 4415, 3), -- One-handed Sword
-(31258, 4416, 14), -- Humans
+(31258, 4408, 1), -- HP Modifiers
+(31258, 4409, 1), -- MP Modifiers
+(31258, 4410, 11), -- P. Atk. Modifiers
+(31258, 4411, 11), -- M. Atk. Modifiers
+(31258, 4412, 11), -- P. Def. Modifiers
+(31258, 4413, 11), -- M. Def. Modifiers
+(31258, 4414, 2), -- Armor Type
+(31258, 4415, 3), -- Weapon Type
+(31258, 4416, 14), -- Races
 -- Janne
 (31259, 4045, 1), -- Resist Full Magic Attack
-(31259, 4408, 1), -- HP Increase (1x)
-(31259, 4409, 1), -- MP Increase (1x)
-(31259, 4410, 11), -- Average P. Atk.
-(31259, 4411, 11), -- Average M. Atk.
-(31259, 4412, 11), -- Average P. Def.
-(31259, 4413, 11), -- Average M. Def.
-(31259, 4414, 2), -- Standard Type
-(31259, 4415, 3), -- One-handed Sword
-(31259, 4416, 14), -- Humans
+(31259, 4408, 1), -- HP Modifiers
+(31259, 4409, 1), -- MP Modifiers
+(31259, 4410, 11), -- P. Atk. Modifiers
+(31259, 4411, 11), -- M. Atk. Modifiers
+(31259, 4412, 11), -- P. Def. Modifiers
+(31259, 4413, 11), -- M. Def. Modifiers
+(31259, 4414, 2), -- Armor Type
+(31259, 4415, 3), -- Weapon Type
+(31259, 4416, 14), -- Races
 -- Judith
 (31260, 4045, 1), -- Resist Full Magic Attack
-(31260, 4408, 1), -- HP Increase (1x)
-(31260, 4409, 1), -- MP Increase (1x)
-(31260, 4410, 11), -- Average P. Atk.
-(31260, 4411, 11), -- Average M. Atk.
-(31260, 4412, 11), -- Average P. Def.
-(31260, 4413, 11), -- Average M. Def.
-(31260, 4414, 2), -- Standard Type
-(31260, 4415, 3), -- One-handed Sword
-(31260, 4416, 14), -- Humans
+(31260, 4408, 1), -- HP Modifiers
+(31260, 4409, 1), -- MP Modifiers
+(31260, 4410, 11), -- P. Atk. Modifiers
+(31260, 4411, 11), -- M. Atk. Modifiers
+(31260, 4412, 11), -- P. Def. Modifiers
+(31260, 4413, 11), -- M. Def. Modifiers
+(31260, 4414, 2), -- Armor Type
+(31260, 4415, 3), -- Weapon Type
+(31260, 4416, 14), -- Races
 -- Renee
 (31261, 4045, 1), -- Resist Full Magic Attack
-(31261, 4408, 1), -- HP Increase (1x)
-(31261, 4409, 1), -- MP Increase (1x)
-(31261, 4410, 11), -- Average P. Atk.
-(31261, 4411, 11), -- Average M. Atk.
-(31261, 4412, 11), -- Average P. Def.
-(31261, 4413, 11), -- Average M. Def.
-(31261, 4414, 2), -- Standard Type
-(31261, 4415, 3), -- One-handed Sword
-(31261, 4416, 18), -- Dwarves
+(31261, 4408, 1), -- HP Modifiers
+(31261, 4409, 1), -- MP Modifiers
+(31261, 4410, 11), -- P. Atk. Modifiers
+(31261, 4411, 11), -- M. Atk. Modifiers
+(31261, 4412, 11), -- P. Def. Modifiers
+(31261, 4413, 11), -- M. Def. Modifiers
+(31261, 4414, 2), -- Armor Type
+(31261, 4415, 3), -- Weapon Type
+(31261, 4416, 18), -- Races
 -- Rupert
 (31262, 4045, 1), -- Resist Full Magic Attack
-(31262, 4408, 1), -- HP Increase (1x)
-(31262, 4409, 1), -- MP Increase (1x)
-(31262, 4410, 11), -- Average P. Atk.
-(31262, 4411, 11), -- Average M. Atk.
-(31262, 4412, 11), -- Average P. Def.
-(31262, 4413, 11), -- Average M. Def.
-(31262, 4414, 2), -- Standard Type
-(31262, 4415, 3), -- One-handed Sword
-(31262, 4416, 14), -- Humans
+(31262, 4408, 1), -- HP Modifiers
+(31262, 4409, 1), -- MP Modifiers
+(31262, 4410, 11), -- P. Atk. Modifiers
+(31262, 4411, 11), -- M. Atk. Modifiers
+(31262, 4412, 11), -- P. Def. Modifiers
+(31262, 4413, 11), -- M. Def. Modifiers
+(31262, 4414, 2), -- Armor Type
+(31262, 4415, 3), -- Weapon Type
+(31262, 4416, 14), -- Races
 -- Liesel
 (31263, 4045, 1), -- Resist Full Magic Attack
-(31263, 4408, 1), -- HP Increase (1x)
-(31263, 4409, 1), -- MP Increase (1x)
-(31263, 4410, 11), -- Average P. Atk.
-(31263, 4411, 11), -- Average M. Atk.
-(31263, 4412, 11), -- Average P. Def.
-(31263, 4413, 11), -- Average M. Def.
-(31263, 4414, 2), -- Standard Type
-(31263, 4415, 3), -- One-handed Sword
-(31263, 4416, 14), -- Humans
+(31263, 4408, 1), -- HP Modifiers
+(31263, 4409, 1), -- MP Modifiers
+(31263, 4410, 11), -- P. Atk. Modifiers
+(31263, 4411, 11), -- M. Atk. Modifiers
+(31263, 4412, 11), -- P. Def. Modifiers
+(31263, 4413, 11), -- M. Def. Modifiers
+(31263, 4414, 2), -- Armor Type
+(31263, 4415, 3), -- Weapon Type
+(31263, 4416, 14), -- Races
 -- Olsun
 (31264, 4045, 1), -- Resist Full Magic Attack
-(31264, 4408, 1), -- HP Increase (1x)
-(31264, 4409, 1), -- MP Increase (1x)
-(31264, 4410, 11), -- Average P. Atk.
-(31264, 4411, 11), -- Average M. Atk.
-(31264, 4412, 11), -- Average P. Def.
-(31264, 4413, 11), -- Average M. Def.
-(31264, 4414, 2), -- Standard Type
-(31264, 4415, 3), -- One-handed Sword
-(31264, 4416, 14), -- Humans
+(31264, 4408, 1), -- HP Modifiers
+(31264, 4409, 1), -- MP Modifiers
+(31264, 4410, 11), -- P. Atk. Modifiers
+(31264, 4411, 11), -- M. Atk. Modifiers
+(31264, 4412, 11), -- P. Def. Modifiers
+(31264, 4413, 11), -- M. Def. Modifiers
+(31264, 4414, 2), -- Armor Type
+(31264, 4415, 3), -- Weapon Type
+(31264, 4416, 14), -- Races
 -- Annette
 (31265, 4045, 1), -- Resist Full Magic Attack
-(31265, 4408, 1), -- HP Increase (1x)
-(31265, 4409, 1), -- MP Increase (1x)
-(31265, 4410, 11), -- Average P. Atk.
-(31265, 4411, 11), -- Average M. Atk.
-(31265, 4412, 11), -- Average P. Def.
-(31265, 4413, 11), -- Average M. Def.
-(31265, 4414, 2), -- Standard Type
-(31265, 4415, 3), -- One-handed Sword
-(31265, 4416, 14), -- Humans
+(31265, 4408, 1), -- HP Modifiers
+(31265, 4409, 1), -- MP Modifiers
+(31265, 4410, 11), -- P. Atk. Modifiers
+(31265, 4411, 11), -- M. Atk. Modifiers
+(31265, 4412, 11), -- P. Def. Modifiers
+(31265, 4413, 11), -- M. Def. Modifiers
+(31265, 4414, 2), -- Armor Type
+(31265, 4415, 3), -- Weapon Type
+(31265, 4416, 14), -- Races
 -- Kaiser
 (31266, 4045, 1), -- Resist Full Magic Attack
-(31266, 4408, 1), -- HP Increase (1x)
-(31266, 4409, 1), -- MP Increase (1x)
-(31266, 4410, 11), -- Average P. Atk.
-(31266, 4411, 11), -- Average M. Atk.
-(31266, 4412, 11), -- Average P. Def.
-(31266, 4413, 11), -- Average M. Def.
-(31266, 4414, 2), -- Standard Type
-(31266, 4415, 3), -- One-handed Sword
-(31266, 4416, 3), -- Beasts
+(31266, 4408, 1), -- HP Modifiers
+(31266, 4409, 1), -- MP Modifiers
+(31266, 4410, 11), -- P. Atk. Modifiers
+(31266, 4411, 11), -- M. Atk. Modifiers
+(31266, 4412, 11), -- P. Def. Modifiers
+(31266, 4413, 11), -- M. Def. Modifiers
+(31266, 4414, 2), -- Armor Type
+(31266, 4415, 3), -- Weapon Type
+(31266, 4416, 3), -- Races
 -- Lietta
 (31267, 4045, 1), -- Resist Full Magic Attack
-(31267, 4408, 1), -- HP Increase (1x)
-(31267, 4409, 1), -- MP Increase (1x)
-(31267, 4410, 11), -- Average P. Atk.
-(31267, 4411, 11), -- Average M. Atk.
-(31267, 4412, 11), -- Average P. Def.
-(31267, 4413, 11), -- Average M. Def.
-(31267, 4414, 2), -- Standard Type
-(31267, 4415, 3), -- One-handed Sword
-(31267, 4416, 18), -- Dwarves
+(31267, 4408, 1), -- HP Modifiers
+(31267, 4409, 1), -- MP Modifiers
+(31267, 4410, 11), -- P. Atk. Modifiers
+(31267, 4411, 11), -- M. Atk. Modifiers
+(31267, 4412, 11), -- P. Def. Modifiers
+(31267, 4413, 11), -- M. Def. Modifiers
+(31267, 4414, 2), -- Armor Type
+(31267, 4415, 3), -- Weapon Type
+(31267, 4416, 18), -- Races
 -- Hakon
 (31268, 4045, 1), -- Resist Full Magic Attack
-(31268, 4408, 1), -- HP Increase (1x)
-(31268, 4409, 1), -- MP Increase (1x)
-(31268, 4410, 11), -- Average P. Atk.
-(31268, 4411, 11), -- Average M. Atk.
-(31268, 4412, 11), -- Average P. Def.
-(31268, 4413, 11), -- Average M. Def.
-(31268, 4414, 2), -- Standard Type
-(31268, 4415, 3), -- One-handed Sword
-(31268, 4416, 18), -- Dwarves
+(31268, 4408, 1), -- HP Modifiers
+(31268, 4409, 1), -- MP Modifiers
+(31268, 4410, 11), -- P. Atk. Modifiers
+(31268, 4411, 11), -- M. Atk. Modifiers
+(31268, 4412, 11), -- P. Def. Modifiers
+(31268, 4413, 11), -- M. Def. Modifiers
+(31268, 4414, 2), -- Armor Type
+(31268, 4415, 3), -- Weapon Type
+(31268, 4416, 18), -- Races
 -- Mona
 (31269, 4045, 1), -- Resist Full Magic Attack
-(31269, 4408, 1), -- HP Increase (1x)
-(31269, 4409, 1), -- MP Increase (1x)
-(31269, 4410, 11), -- Average P. Atk.
-(31269, 4411, 11), -- Average M. Atk.
-(31269, 4412, 11), -- Average P. Def.
-(31269, 4413, 11), -- Average M. Def.
-(31269, 4414, 2), -- Standard Type
-(31269, 4415, 3), -- One-handed Sword
-(31269, 4416, 18), -- Dwarves
+(31269, 4408, 1), -- HP Modifiers
+(31269, 4409, 1), -- MP Modifiers
+(31269, 4410, 11), -- P. Atk. Modifiers
+(31269, 4411, 11), -- M. Atk. Modifiers
+(31269, 4412, 11), -- P. Def. Modifiers
+(31269, 4413, 11), -- M. Def. Modifiers
+(31269, 4414, 2), -- Armor Type
+(31269, 4415, 3), -- Weapon Type
+(31269, 4416, 18), -- Races
 -- Stefano
 (31270, 4045, 1), -- Resist Full Magic Attack
-(31270, 4408, 1), -- HP Increase (1x)
-(31270, 4409, 1), -- MP Increase (1x)
-(31270, 4410, 11), -- Average P. Atk.
-(31270, 4411, 11), -- Average M. Atk.
-(31270, 4412, 11), -- Average P. Def.
-(31270, 4413, 11), -- Average M. Def.
-(31270, 4414, 2), -- Standard Type
-(31270, 4415, 3), -- One-handed Sword
-(31270, 4416, 18), -- Dwarves
+(31270, 4408, 1), -- HP Modifiers
+(31270, 4409, 1), -- MP Modifiers
+(31270, 4410, 11), -- P. Atk. Modifiers
+(31270, 4411, 11), -- M. Atk. Modifiers
+(31270, 4412, 11), -- P. Def. Modifiers
+(31270, 4413, 11), -- M. Def. Modifiers
+(31270, 4414, 2), -- Armor Type
+(31270, 4415, 3), -- Weapon Type
+(31270, 4416, 18), -- Races
 -- Hilda
 (31271, 4045, 1), -- Resist Full Magic Attack
-(31271, 4408, 1), -- HP Increase (1x)
-(31271, 4409, 1), -- MP Increase (1x)
-(31271, 4410, 11), -- Average P. Atk.
-(31271, 4411, 11), -- Average M. Atk.
-(31271, 4412, 11), -- Average P. Def.
-(31271, 4413, 11), -- Average M. Def.
-(31271, 4414, 2), -- Standard Type
-(31271, 4415, 3), -- One-handed Sword
-(31271, 4416, 18), -- Dwarves
+(31271, 4408, 1), -- HP Modifiers
+(31271, 4409, 1), -- MP Modifiers
+(31271, 4410, 11), -- P. Atk. Modifiers
+(31271, 4411, 11), -- M. Atk. Modifiers
+(31271, 4412, 11), -- P. Def. Modifiers
+(31271, 4413, 11), -- M. Def. Modifiers
+(31271, 4414, 2), -- Armor Type
+(31271, 4415, 3), -- Weapon Type
+(31271, 4416, 18), -- Races
 -- Noel
 (31272, 4045, 1), -- Resist Full Magic Attack
-(31272, 4408, 1), -- HP Increase (1x)
-(31272, 4409, 1), -- MP Increase (1x)
-(31272, 4410, 11), -- Average P. Atk.
-(31272, 4411, 11), -- Average M. Atk.
-(31272, 4412, 11), -- Average P. Def.
-(31272, 4413, 11), -- Average M. Def.
-(31272, 4414, 2), -- Standard Type
-(31272, 4415, 3), -- One-handed Sword
-(31272, 4416, 18), -- Dwarves
+(31272, 4408, 1), -- HP Modifiers
+(31272, 4409, 1), -- MP Modifiers
+(31272, 4410, 11), -- P. Atk. Modifiers
+(31272, 4411, 11), -- M. Atk. Modifiers
+(31272, 4412, 11), -- P. Def. Modifiers
+(31272, 4413, 11), -- M. Def. Modifiers
+(31272, 4414, 2), -- Armor Type
+(31272, 4415, 3), -- Weapon Type
+(31272, 4416, 18), -- Races
 -- Borodin
 (31273, 4045, 1), -- Resist Full Magic Attack
-(31273, 4408, 1), -- HP Increase (1x)
-(31273, 4409, 1), -- MP Increase (1x)
-(31273, 4410, 11), -- Average P. Atk.
-(31273, 4411, 11), -- Average M. Atk.
-(31273, 4412, 11), -- Average P. Def.
-(31273, 4413, 11), -- Average M. Def.
-(31273, 4414, 2), -- Standard Type
-(31273, 4415, 3), -- One-handed Sword
-(31273, 4416, 18), -- Dwarves
+(31273, 4408, 1), -- HP Modifiers
+(31273, 4409, 1), -- MP Modifiers
+(31273, 4410, 11), -- P. Atk. Modifiers
+(31273, 4411, 11), -- M. Atk. Modifiers
+(31273, 4412, 11), -- P. Def. Modifiers
+(31273, 4413, 11), -- M. Def. Modifiers
+(31273, 4414, 2), -- Armor Type
+(31273, 4415, 3), -- Weapon Type
+(31273, 4416, 18), -- Races
 -- Fundin
 (31274, 4045, 1), -- Resist Full Magic Attack
-(31274, 4408, 1), -- HP Increase (1x)
-(31274, 4409, 1), -- MP Increase (1x)
-(31274, 4410, 11), -- Average P. Atk.
-(31274, 4411, 11), -- Average M. Atk.
-(31274, 4412, 11), -- Average P. Def.
-(31274, 4413, 11), -- Average M. Def.
-(31274, 4414, 2), -- Standard Type
-(31274, 4415, 3), -- One-handed Sword
-(31274, 4416, 18), -- Dwarves
+(31274, 4408, 1), -- HP Modifiers
+(31274, 4409, 1), -- MP Modifiers
+(31274, 4410, 11), -- P. Atk. Modifiers
+(31274, 4411, 11), -- M. Atk. Modifiers
+(31274, 4412, 11), -- P. Def. Modifiers
+(31274, 4413, 11), -- M. Def. Modifiers
+(31274, 4414, 2), -- Armor Type
+(31274, 4415, 3), -- Weapon Type
+(31274, 4416, 18), -- Races
 -- Tatiana
 (31275, 4045, 1), -- Resist Full Magic Attack
-(31275, 4408, 1), -- HP Increase (1x)
-(31275, 4409, 1), -- MP Increase (1x)
-(31275, 4410, 11), -- Average P. Atk.
-(31275, 4411, 11), -- Average M. Atk.
-(31275, 4412, 11), -- Average P. Def.
-(31275, 4413, 11), -- Average M. Def.
-(31275, 4414, 2), -- Standard Type
-(31275, 4415, 3), -- One-handed Sword
-(31275, 4416, 14), -- Humans
+(31275, 4408, 1), -- HP Modifiers
+(31275, 4409, 1), -- MP Modifiers
+(31275, 4410, 11), -- P. Atk. Modifiers
+(31275, 4411, 11), -- M. Atk. Modifiers
+(31275, 4412, 11), -- P. Def. Modifiers
+(31275, 4413, 11), -- M. Def. Modifiers
+(31275, 4414, 2), -- Armor Type
+(31275, 4415, 3), -- Weapon Type
+(31275, 4416, 14), -- Races
 -- Bernhard
 (31276, 4045, 1), -- Resist Full Magic Attack
-(31276, 4408, 1), -- HP Increase (1x)
-(31276, 4409, 1), -- MP Increase (1x)
-(31276, 4410, 11), -- Average P. Atk.
-(31276, 4411, 11), -- Average M. Atk.
-(31276, 4412, 11), -- Average P. Def.
-(31276, 4413, 11), -- Average M. Def.
-(31276, 4414, 2), -- Standard Type
-(31276, 4415, 3), -- One-handed Sword
-(31276, 4416, 14), -- Humans
+(31276, 4408, 1), -- HP Modifiers
+(31276, 4409, 1), -- MP Modifiers
+(31276, 4410, 11), -- P. Atk. Modifiers
+(31276, 4411, 11), -- M. Atk. Modifiers
+(31276, 4412, 11), -- P. Def. Modifiers
+(31276, 4413, 11), -- M. Def. Modifiers
+(31276, 4414, 2), -- Armor Type
+(31276, 4415, 3), -- Weapon Type
+(31276, 4416, 14), -- Races
 -- Felix
 (31277, 4045, 1), -- Resist Full Magic Attack
-(31277, 4408, 1), -- HP Increase (1x)
-(31277, 4409, 1), -- MP Increase (1x)
-(31277, 4410, 11), -- Average P. Atk.
-(31277, 4411, 11), -- Average M. Atk.
-(31277, 4412, 11), -- Average P. Def.
-(31277, 4413, 11), -- Average M. Def.
-(31277, 4414, 2), -- Standard Type
-(31277, 4415, 3), -- One-handed Sword
-(31277, 4416, 14), -- Humans
+(31277, 4408, 1), -- HP Modifiers
+(31277, 4409, 1), -- MP Modifiers
+(31277, 4410, 11), -- P. Atk. Modifiers
+(31277, 4411, 11), -- M. Atk. Modifiers
+(31277, 4412, 11), -- P. Def. Modifiers
+(31277, 4413, 11), -- M. Def. Modifiers
+(31277, 4414, 2), -- Armor Type
+(31277, 4415, 3), -- Weapon Type
+(31277, 4416, 14), -- Races
 -- Bronwyn
 (31278, 4045, 1), -- Resist Full Magic Attack
-(31278, 4408, 1), -- HP Increase (1x)
-(31278, 4409, 1), -- MP Increase (1x)
-(31278, 4410, 11), -- Average P. Atk.
-(31278, 4411, 11), -- Average M. Atk.
-(31278, 4412, 11), -- Average P. Def.
-(31278, 4413, 11), -- Average M. Def.
-(31278, 4414, 2), -- Standard Type
-(31278, 4415, 3), -- One-handed Sword
-(31278, 4416, 15), -- Elves
+(31278, 4408, 1), -- HP Modifiers
+(31278, 4409, 1), -- MP Modifiers
+(31278, 4410, 11), -- P. Atk. Modifiers
+(31278, 4411, 11), -- M. Atk. Modifiers
+(31278, 4412, 11), -- P. Def. Modifiers
+(31278, 4413, 11), -- M. Def. Modifiers
+(31278, 4414, 2), -- Armor Type
+(31278, 4415, 3), -- Weapon Type
+(31278, 4416, 15), -- Races
 -- Gregory
 (31279, 4045, 1), -- Resist Full Magic Attack
-(31279, 4408, 1), -- HP Increase (1x)
-(31279, 4409, 1), -- MP Increase (1x)
-(31279, 4410, 11), -- Average P. Atk.
-(31279, 4411, 11), -- Average M. Atk.
-(31279, 4412, 11), -- Average P. Def.
-(31279, 4413, 11), -- Average M. Def.
-(31279, 4414, 2), -- Standard Type
-(31279, 4415, 3), -- One-handed Sword
-(31279, 4416, 14), -- Humans
+(31279, 4408, 1), -- HP Modifiers
+(31279, 4409, 1), -- MP Modifiers
+(31279, 4410, 11), -- P. Atk. Modifiers
+(31279, 4411, 11), -- M. Atk. Modifiers
+(31279, 4412, 11), -- P. Def. Modifiers
+(31279, 4413, 11), -- M. Def. Modifiers
+(31279, 4414, 2), -- Armor Type
+(31279, 4415, 3), -- Weapon Type
+(31279, 4416, 14), -- Races
 -- Bastian
 (31280, 4045, 1), -- Resist Full Magic Attack
-(31280, 4408, 1), -- HP Increase (1x)
-(31280, 4409, 1), -- MP Increase (1x)
-(31280, 4410, 11), -- Average P. Atk.
-(31280, 4411, 11), -- Average M. Atk.
-(31280, 4412, 11), -- Average P. Def.
-(31280, 4413, 11), -- Average M. Def.
-(31280, 4414, 2), -- Standard Type
-(31280, 4415, 3), -- One-handed Sword
-(31280, 4416, 14), -- Humans
+(31280, 4408, 1), -- HP Modifiers
+(31280, 4409, 1), -- MP Modifiers
+(31280, 4410, 11), -- P. Atk. Modifiers
+(31280, 4411, 11), -- M. Atk. Modifiers
+(31280, 4412, 11), -- P. Def. Modifiers
+(31280, 4413, 11), -- M. Def. Modifiers
+(31280, 4414, 2), -- Armor Type
+(31280, 4415, 3), -- Weapon Type
+(31280, 4416, 14), -- Races
 -- Cerenas
 (31281, 4045, 1), -- Resist Full Magic Attack
-(31281, 4408, 1), -- HP Increase (1x)
-(31281, 4409, 1), -- MP Increase (1x)
-(31281, 4410, 11), -- Average P. Atk.
-(31281, 4411, 11), -- Average M. Atk.
-(31281, 4412, 11), -- Average P. Def.
-(31281, 4413, 11), -- Average M. Def.
-(31281, 4414, 2), -- Standard Type
-(31281, 4415, 3), -- One-handed Sword
-(31281, 4416, 15), -- Elves
+(31281, 4408, 1), -- HP Modifiers
+(31281, 4409, 1), -- MP Modifiers
+(31281, 4410, 11), -- P. Atk. Modifiers
+(31281, 4411, 11), -- M. Atk. Modifiers
+(31281, 4412, 11), -- P. Def. Modifiers
+(31281, 4413, 11), -- M. Def. Modifiers
+(31281, 4414, 2), -- Armor Type
+(31281, 4415, 3), -- Weapon Type
+(31281, 4416, 15), -- Races
 -- Justin
 (31282, 4045, 1), -- Resist Full Magic Attack
-(31282, 4408, 1), -- HP Increase (1x)
-(31282, 4409, 1), -- MP Increase (1x)
-(31282, 4410, 11), -- Average P. Atk.
-(31282, 4411, 11), -- Average M. Atk.
-(31282, 4412, 11), -- Average P. Def.
-(31282, 4413, 11), -- Average M. Def.
-(31282, 4414, 2), -- Standard Type
-(31282, 4415, 3), -- One-handed Sword
-(31282, 4416, 14), -- Humans
+(31282, 4408, 1), -- HP Modifiers
+(31282, 4409, 1), -- MP Modifiers
+(31282, 4410, 11), -- P. Atk. Modifiers
+(31282, 4411, 11), -- M. Atk. Modifiers
+(31282, 4412, 11), -- P. Def. Modifiers
+(31282, 4413, 11), -- M. Def. Modifiers
+(31282, 4414, 2), -- Armor Type
+(31282, 4415, 3), -- Weapon Type
+(31282, 4416, 14), -- Races
 -- Alminas
 (31283, 4045, 1), -- Resist Full Magic Attack
-(31283, 4408, 1), -- HP Increase (1x)
-(31283, 4409, 1), -- MP Increase (1x)
-(31283, 4410, 11), -- Average P. Atk.
-(31283, 4411, 11), -- Average M. Atk.
-(31283, 4412, 11), -- Average P. Def.
-(31283, 4413, 11), -- Average M. Def.
-(31283, 4414, 2), -- Standard Type
-(31283, 4415, 3), -- One-handed Sword
-(31283, 4416, 15), -- Elves
+(31283, 4408, 1), -- HP Modifiers
+(31283, 4409, 1), -- MP Modifiers
+(31283, 4410, 11), -- P. Atk. Modifiers
+(31283, 4411, 11), -- M. Atk. Modifiers
+(31283, 4412, 11), -- P. Def. Modifiers
+(31283, 4413, 11), -- M. Def. Modifiers
+(31283, 4414, 2), -- Armor Type
+(31283, 4415, 3), -- Weapon Type
+(31283, 4416, 15), -- Races
 -- Elena
 (31284, 4045, 1), -- Resist Full Magic Attack
-(31284, 4408, 1), -- HP Increase (1x)
-(31284, 4409, 1), -- MP Increase (1x)
-(31284, 4410, 11), -- Average P. Atk.
-(31284, 4411, 11), -- Average M. Atk.
-(31284, 4412, 11), -- Average P. Def.
-(31284, 4413, 11), -- Average M. Def.
-(31284, 4414, 2), -- Standard Type
-(31284, 4415, 3), -- One-handed Sword
-(31284, 4416, 14), -- Humans
+(31284, 4408, 1), -- HP Modifiers
+(31284, 4409, 1), -- MP Modifiers
+(31284, 4410, 11), -- P. Atk. Modifiers
+(31284, 4411, 11), -- M. Atk. Modifiers
+(31284, 4412, 11), -- P. Def. Modifiers
+(31284, 4413, 11), -- M. Def. Modifiers
+(31284, 4414, 2), -- Armor Type
+(31284, 4415, 3), -- Weapon Type
+(31284, 4416, 14), -- Races
 -- Samael
 (31285, 4045, 1), -- Resist Full Magic Attack
-(31285, 4408, 1), -- HP Increase (1x)
-(31285, 4409, 1), -- MP Increase (1x)
-(31285, 4410, 11), -- Average P. Atk.
-(31285, 4411, 11), -- Average M. Atk.
-(31285, 4412, 11), -- Average P. Def.
-(31285, 4413, 11), -- Average M. Def.
-(31285, 4414, 2), -- Standard Type
-(31285, 4415, 3), -- One-handed Sword
-(31285, 4416, 16), -- Dark Elves
+(31285, 4408, 1), -- HP Modifiers
+(31285, 4409, 1), -- MP Modifiers
+(31285, 4410, 11), -- P. Atk. Modifiers
+(31285, 4411, 11), -- M. Atk. Modifiers
+(31285, 4412, 11), -- P. Def. Modifiers
+(31285, 4413, 11), -- M. Def. Modifiers
+(31285, 4414, 2), -- Armor Type
+(31285, 4415, 3), -- Weapon Type
+(31285, 4416, 16), -- Races
 -- Drakon
 (31286, 4045, 1), -- Resist Full Magic Attack
-(31286, 4408, 1), -- HP Increase (1x)
-(31286, 4409, 1), -- MP Increase (1x)
-(31286, 4410, 11), -- Average P. Atk.
-(31286, 4411, 11), -- Average M. Atk.
-(31286, 4412, 11), -- Average P. Def.
-(31286, 4413, 11), -- Average M. Def.
-(31286, 4414, 2), -- Standard Type
-(31286, 4415, 3), -- One-handed Sword
-(31286, 4416, 16), -- Dark Elves
+(31286, 4408, 1), -- HP Modifiers
+(31286, 4409, 1), -- MP Modifiers
+(31286, 4410, 11), -- P. Atk. Modifiers
+(31286, 4411, 11), -- M. Atk. Modifiers
+(31286, 4412, 11), -- P. Def. Modifiers
+(31286, 4413, 11), -- M. Def. Modifiers
+(31286, 4414, 2), -- Armor Type
+(31286, 4415, 3), -- Weapon Type
+(31286, 4416, 16), -- Races
 -- Kamilen
 (31287, 4045, 1), -- Resist Full Magic Attack
-(31287, 4408, 1), -- HP Increase (1x)
-(31287, 4409, 1), -- MP Increase (1x)
-(31287, 4410, 11), -- Average P. Atk.
-(31287, 4411, 11), -- Average M. Atk.
-(31287, 4412, 11), -- Average P. Def.
-(31287, 4413, 11), -- Average M. Def.
-(31287, 4414, 2), -- Standard Type
-(31287, 4415, 3), -- One-handed Sword
-(31287, 4416, 16), -- Dark Elves
+(31287, 4408, 1), -- HP Modifiers
+(31287, 4409, 1), -- MP Modifiers
+(31287, 4410, 11), -- P. Atk. Modifiers
+(31287, 4411, 11), -- M. Atk. Modifiers
+(31287, 4412, 11), -- P. Def. Modifiers
+(31287, 4413, 11), -- M. Def. Modifiers
+(31287, 4414, 2), -- Armor Type
+(31287, 4415, 3), -- Weapon Type
+(31287, 4416, 16), -- Races
 -- Aklan
 (31288, 4045, 1), -- Resist Full Magic Attack
-(31288, 4408, 1), -- HP Increase (1x)
-(31288, 4409, 1), -- MP Increase (1x)
-(31288, 4410, 11), -- Average P. Atk.
-(31288, 4411, 11), -- Average M. Atk.
-(31288, 4412, 11), -- Average P. Def.
-(31288, 4413, 11), -- Average M. Def.
-(31288, 4414, 2), -- Standard Type
-(31288, 4415, 3), -- One-handed Sword
-(31288, 4416, 17), -- Orcs
+(31288, 4408, 1), -- HP Modifiers
+(31288, 4409, 1), -- MP Modifiers
+(31288, 4410, 11), -- P. Atk. Modifiers
+(31288, 4411, 11), -- M. Atk. Modifiers
+(31288, 4412, 11), -- P. Def. Modifiers
+(31288, 4413, 11), -- M. Def. Modifiers
+(31288, 4414, 2), -- Armor Type
+(31288, 4415, 3), -- Weapon Type
+(31288, 4416, 17), -- Races
 -- Lakan
 (31289, 4045, 1), -- Resist Full Magic Attack
-(31289, 4408, 1), -- HP Increase (1x)
-(31289, 4409, 1), -- MP Increase (1x)
-(31289, 4410, 11), -- Average P. Atk.
-(31289, 4411, 11), -- Average M. Atk.
-(31289, 4412, 11), -- Average P. Def.
-(31289, 4413, 11), -- Average M. Def.
-(31289, 4414, 2), -- Standard Type
-(31289, 4415, 3), -- One-handed Sword
-(31289, 4416, 17), -- Orcs
+(31289, 4408, 1), -- HP Modifiers
+(31289, 4409, 1), -- MP Modifiers
+(31289, 4410, 11), -- P. Atk. Modifiers
+(31289, 4411, 11), -- M. Atk. Modifiers
+(31289, 4412, 11), -- P. Def. Modifiers
+(31289, 4413, 11), -- M. Def. Modifiers
+(31289, 4414, 2), -- Armor Type
+(31289, 4415, 3), -- Weapon Type
+(31289, 4416, 17), -- Races
 -- Skahi
 (31290, 4045, 1), -- Resist Full Magic Attack
-(31290, 4408, 1), -- HP Increase (1x)
-(31290, 4409, 1), -- MP Increase (1x)
-(31290, 4410, 11), -- Average P. Atk.
-(31290, 4411, 11), -- Average M. Atk.
-(31290, 4412, 11), -- Average P. Def.
-(31290, 4413, 11), -- Average M. Def.
-(31290, 4414, 2), -- Standard Type
-(31290, 4415, 3), -- One-handed Sword
-(31290, 4416, 17), -- Orcs
+(31290, 4408, 1), -- HP Modifiers
+(31290, 4409, 1), -- MP Modifiers
+(31290, 4410, 11), -- P. Atk. Modifiers
+(31290, 4411, 11), -- M. Atk. Modifiers
+(31290, 4412, 11), -- P. Def. Modifiers
+(31290, 4413, 11), -- M. Def. Modifiers
+(31290, 4414, 2), -- Armor Type
+(31290, 4415, 3), -- Weapon Type
+(31290, 4416, 17), -- Races
 -- Terava
 (31291, 4045, 1), -- Resist Full Magic Attack
-(31291, 4408, 1), -- HP Increase (1x)
-(31291, 4409, 1), -- MP Increase (1x)
-(31291, 4410, 11), -- Average P. Atk.
-(31291, 4411, 11), -- Average M. Atk.
-(31291, 4412, 11), -- Average P. Def.
-(31291, 4413, 11), -- Average M. Def.
-(31291, 4414, 2), -- Standard Type
-(31291, 4415, 3), -- One-handed Sword
-(31291, 4416, 17), -- Orcs
+(31291, 4408, 1), -- HP Modifiers
+(31291, 4409, 1), -- MP Modifiers
+(31291, 4410, 11), -- P. Atk. Modifiers
+(31291, 4411, 11), -- M. Atk. Modifiers
+(31291, 4412, 11), -- P. Def. Modifiers
+(31291, 4413, 11), -- M. Def. Modifiers
+(31291, 4414, 2), -- Armor Type
+(31291, 4415, 3), -- Weapon Type
+(31291, 4416, 17), -- Races
 -- Andrei
 (31292, 4045, 1), -- Resist Full Magic Attack
-(31292, 4408, 1), -- HP Increase (1x)
-(31292, 4409, 1), -- MP Increase (1x)
-(31292, 4410, 16), -- Very Strong P. Atk.
-(31292, 4411, 16), -- Very Strong M. Atk.
-(31292, 4412, 16), -- Very Strong P. Def.
-(31292, 4413, 16), -- Very Strong M. Def.
-(31292, 4414, 2), -- Standard Type
-(31292, 4415, 3), -- One-handed Sword
-(31292, 4416, 14), -- Humans
+(31292, 4408, 1), -- HP Modifiers
+(31292, 4409, 1), -- MP Modifiers
+(31292, 4410, 16), -- P. Atk. Modifiers
+(31292, 4411, 16), -- M. Atk. Modifiers
+(31292, 4412, 16), -- P. Def. Modifiers
+(31292, 4413, 16), -- M. Def. Modifiers
+(31292, 4414, 2), -- Armor Type
+(31292, 4415, 3), -- Weapon Type
+(31292, 4416, 14), -- Races
 -- Gunter
 (31293, 4045, 1), -- Resist Full Magic Attack
-(31293, 4408, 1), -- HP Increase (1x)
-(31293, 4409, 1), -- MP Increase (1x)
-(31293, 4410, 16), -- Very Strong P. Atk.
-(31293, 4411, 16), -- Very Strong M. Atk.
-(31293, 4412, 16), -- Very Strong P. Def.
-(31293, 4413, 16), -- Very Strong M. Def.
-(31293, 4414, 2), -- Standard Type
-(31293, 4415, 3), -- One-handed Sword
-(31293, 4416, 14), -- Humans
+(31293, 4408, 1), -- HP Modifiers
+(31293, 4409, 1), -- MP Modifiers
+(31293, 4410, 16), -- P. Atk. Modifiers
+(31293, 4411, 16), -- M. Atk. Modifiers
+(31293, 4412, 16), -- P. Def. Modifiers
+(31293, 4413, 16), -- M. Def. Modifiers
+(31293, 4414, 2), -- Armor Type
+(31293, 4415, 3), -- Weapon Type
+(31293, 4416, 14), -- Races
 -- Sven
 (31294, 4045, 1), -- Resist Full Magic Attack
-(31294, 4408, 1), -- HP Increase (1x)
-(31294, 4409, 1), -- MP Increase (1x)
-(31294, 4410, 16), -- Very Strong P. Atk.
-(31294, 4411, 16), -- Very Strong M. Atk.
-(31294, 4412, 16), -- Very Strong P. Def.
-(31294, 4413, 16), -- Very Strong M. Def.
-(31294, 4414, 2), -- Standard Type
-(31294, 4415, 3), -- One-handed Sword
-(31294, 4416, 14), -- Humans
+(31294, 4408, 1), -- HP Modifiers
+(31294, 4409, 1), -- MP Modifiers
+(31294, 4410, 16), -- P. Atk. Modifiers
+(31294, 4411, 16), -- M. Atk. Modifiers
+(31294, 4412, 16), -- P. Def. Modifiers
+(31294, 4413, 16), -- M. Def. Modifiers
+(31294, 4414, 2), -- Armor Type
+(31294, 4415, 3), -- Weapon Type
+(31294, 4416, 14), -- Races
 -- Henrik
 (31295, 4045, 1), -- Resist Full Magic Attack
-(31295, 4408, 1), -- HP Increase (1x)
-(31295, 4409, 1), -- MP Increase (1x)
-(31295, 4410, 16), -- Very Strong P. Atk.
-(31295, 4411, 16), -- Very Strong M. Atk.
-(31295, 4412, 16), -- Very Strong P. Def.
-(31295, 4413, 16), -- Very Strong M. Def.
-(31295, 4414, 2), -- Standard Type
-(31295, 4415, 3), -- One-handed Sword
-(31295, 4416, 14), -- Humans
+(31295, 4408, 1), -- HP Modifiers
+(31295, 4409, 1), -- MP Modifiers
+(31295, 4410, 16), -- P. Atk. Modifiers
+(31295, 4411, 16), -- M. Atk. Modifiers
+(31295, 4412, 16), -- P. Def. Modifiers
+(31295, 4413, 16), -- M. Def. Modifiers
+(31295, 4414, 2), -- Armor Type
+(31295, 4415, 3), -- Weapon Type
+(31295, 4416, 14), -- Races
 -- Cadmon
 (31296, 4045, 1), -- Resist Full Magic Attack
-(31296, 4408, 1), -- HP Increase (1x)
-(31296, 4409, 1), -- MP Increase (1x)
-(31296, 4410, 16), -- Very Strong P. Atk.
-(31296, 4411, 16), -- Very Strong M. Atk.
-(31296, 4412, 16), -- Very Strong P. Def.
-(31296, 4413, 16), -- Very Strong M. Def.
-(31296, 4414, 2), -- Standard Type
-(31296, 4415, 3), -- One-handed Sword
-(31296, 4416, 14), -- Humans
+(31296, 4408, 1), -- HP Modifiers
+(31296, 4409, 1), -- MP Modifiers
+(31296, 4410, 16), -- P. Atk. Modifiers
+(31296, 4411, 16), -- M. Atk. Modifiers
+(31296, 4412, 16), -- P. Def. Modifiers
+(31296, 4413, 16), -- M. Def. Modifiers
+(31296, 4414, 2), -- Armor Type
+(31296, 4415, 3), -- Weapon Type
+(31296, 4416, 14), -- Races
 -- Bayard
 (31297, 4045, 1), -- Resist Full Magic Attack
-(31297, 4408, 1), -- HP Increase (1x)
-(31297, 4409, 1), -- MP Increase (1x)
-(31297, 4410, 16), -- Very Strong P. Atk.
-(31297, 4411, 16), -- Very Strong M. Atk.
-(31297, 4412, 16), -- Very Strong P. Def.
-(31297, 4413, 16), -- Very Strong M. Def.
-(31297, 4414, 2), -- Standard Type
-(31297, 4415, 3), -- One-handed Sword
-(31297, 4416, 14), -- Humans
+(31297, 4408, 1), -- HP Modifiers
+(31297, 4409, 1), -- MP Modifiers
+(31297, 4410, 16), -- P. Atk. Modifiers
+(31297, 4411, 16), -- M. Atk. Modifiers
+(31297, 4412, 16), -- P. Def. Modifiers
+(31297, 4413, 16), -- M. Def. Modifiers
+(31297, 4414, 2), -- Armor Type
+(31297, 4415, 3), -- Weapon Type
+(31297, 4416, 14), -- Races
 -- Ulrich
 (31298, 4045, 1), -- Resist Full Magic Attack
-(31298, 4408, 1), -- HP Increase (1x)
-(31298, 4409, 1), -- MP Increase (1x)
-(31298, 4410, 16), -- Very Strong P. Atk.
-(31298, 4411, 16), -- Very Strong M. Atk.
-(31298, 4412, 16), -- Very Strong P. Def.
-(31298, 4413, 16), -- Very Strong M. Def.
-(31298, 4414, 2), -- Standard Type
-(31298, 4415, 3), -- One-handed Sword
-(31298, 4416, 14), -- Humans
+(31298, 4408, 1), -- HP Modifiers
+(31298, 4409, 1), -- MP Modifiers
+(31298, 4410, 16), -- P. Atk. Modifiers
+(31298, 4411, 16), -- M. Atk. Modifiers
+(31298, 4412, 16), -- P. Def. Modifiers
+(31298, 4413, 16), -- M. Def. Modifiers
+(31298, 4414, 2), -- Armor Type
+(31298, 4415, 3), -- Weapon Type
+(31298, 4416, 14), -- Races
 -- Eugen
 (31299, 4045, 1), -- Resist Full Magic Attack
-(31299, 4408, 1), -- HP Increase (1x)
-(31299, 4409, 1), -- MP Increase (1x)
-(31299, 4410, 16), -- Very Strong P. Atk.
-(31299, 4411, 16), -- Very Strong M. Atk.
-(31299, 4412, 16), -- Very Strong P. Def.
-(31299, 4413, 16), -- Very Strong M. Def.
-(31299, 4414, 2), -- Standard Type
-(31299, 4415, 3), -- One-handed Sword
-(31299, 4416, 14), -- Humans
+(31299, 4408, 1), -- HP Modifiers
+(31299, 4409, 1), -- MP Modifiers
+(31299, 4410, 16), -- P. Atk. Modifiers
+(31299, 4411, 16), -- M. Atk. Modifiers
+(31299, 4412, 16), -- P. Def. Modifiers
+(31299, 4413, 16), -- M. Def. Modifiers
+(31299, 4414, 2), -- Armor Type
+(31299, 4415, 3), -- Weapon Type
+(31299, 4416, 14), -- Races
 -- Drumond
 (31300, 4045, 1), -- Resist Full Magic Attack
-(31300, 4408, 1), -- HP Increase (1x)
-(31300, 4409, 1), -- MP Increase (1x)
-(31300, 4410, 11), -- Average P. Atk.
-(31300, 4411, 11), -- Average M. Atk.
-(31300, 4412, 11), -- Average P. Def.
-(31300, 4413, 11), -- Average M. Def.
-(31300, 4414, 2), -- Standard Type
-(31300, 4415, 3), -- One-handed Sword
-(31300, 4416, 18), -- Dwarves
+(31300, 4408, 1), -- HP Modifiers
+(31300, 4409, 1), -- MP Modifiers
+(31300, 4410, 11), -- P. Atk. Modifiers
+(31300, 4411, 11), -- M. Atk. Modifiers
+(31300, 4412, 11), -- P. Def. Modifiers
+(31300, 4413, 11), -- M. Def. Modifiers
+(31300, 4414, 2), -- Armor Type
+(31300, 4415, 3), -- Weapon Type
+(31300, 4416, 18), -- Races
 -- Nils
 (31301, 4045, 1), -- Resist Full Magic Attack
-(31301, 4408, 1), -- HP Increase (1x)
-(31301, 4409, 1), -- MP Increase (1x)
-(31301, 4410, 11), -- Average P. Atk.
-(31301, 4411, 11), -- Average M. Atk.
-(31301, 4412, 11), -- Average P. Def.
-(31301, 4413, 11), -- Average M. Def.
-(31301, 4414, 2), -- Standard Type
-(31301, 4415, 3), -- One-handed Sword
-(31301, 4416, 14), -- Humans
+(31301, 4408, 1), -- HP Modifiers
+(31301, 4409, 1), -- MP Modifiers
+(31301, 4410, 11), -- P. Atk. Modifiers
+(31301, 4411, 11), -- M. Atk. Modifiers
+(31301, 4412, 11), -- P. Def. Modifiers
+(31301, 4413, 11), -- M. Def. Modifiers
+(31301, 4414, 2), -- Armor Type
+(31301, 4415, 3), -- Weapon Type
+(31301, 4416, 14), -- Races
 -- Vladimir
 (31302, 4045, 1), -- Resist Full Magic Attack
-(31302, 4408, 1), -- HP Increase (1x)
-(31302, 4409, 1), -- MP Increase (1x)
-(31302, 4410, 11), -- Average P. Atk.
-(31302, 4411, 11), -- Average M. Atk.
-(31302, 4412, 11), -- Average P. Def.
-(31302, 4413, 11), -- Average M. Def.
-(31302, 4414, 2), -- Standard Type
-(31302, 4415, 3), -- One-handed Sword
-(31302, 4416, 14), -- Humans
+(31302, 4408, 1), -- HP Modifiers
+(31302, 4409, 1), -- MP Modifiers
+(31302, 4410, 11), -- P. Atk. Modifiers
+(31302, 4411, 11), -- M. Atk. Modifiers
+(31302, 4412, 11), -- P. Def. Modifiers
+(31302, 4413, 11), -- M. Def. Modifiers
+(31302, 4414, 2), -- Armor Type
+(31302, 4415, 3), -- Weapon Type
+(31302, 4416, 14), -- Races
 -- Alisha
 (31303, 4045, 1), -- Resist Full Magic Attack
-(31303, 4408, 1), -- HP Increase (1x)
-(31303, 4409, 1), -- MP Increase (1x)
-(31303, 4410, 11), -- Average P. Atk.
-(31303, 4411, 11), -- Average M. Atk.
-(31303, 4412, 11), -- Average P. Def.
-(31303, 4413, 11), -- Average M. Def.
-(31303, 4414, 2), -- Standard Type
-(31303, 4415, 3), -- One-handed Sword
-(31303, 4416, 14), -- Humans
+(31303, 4408, 1), -- HP Modifiers
+(31303, 4409, 1), -- MP Modifiers
+(31303, 4410, 11), -- P. Atk. Modifiers
+(31303, 4411, 11), -- M. Atk. Modifiers
+(31303, 4412, 11), -- P. Def. Modifiers
+(31303, 4413, 11), -- M. Def. Modifiers
+(31303, 4414, 2), -- Armor Type
+(31303, 4415, 3), -- Weapon Type
+(31303, 4416, 14), -- Races
 -- Astrid
 (31304, 4045, 1), -- Resist Full Magic Attack
-(31304, 4408, 1), -- HP Increase (1x)
-(31304, 4409, 1), -- MP Increase (1x)
-(31304, 4410, 11), -- Average P. Atk.
-(31304, 4411, 11), -- Average M. Atk.
-(31304, 4412, 11), -- Average P. Def.
-(31304, 4413, 11), -- Average M. Def.
-(31304, 4414, 2), -- Standard Type
-(31304, 4415, 3), -- One-handed Sword
-(31304, 4416, 14), -- Humans
+(31304, 4408, 1), -- HP Modifiers
+(31304, 4409, 1), -- MP Modifiers
+(31304, 4410, 11), -- P. Atk. Modifiers
+(31304, 4411, 11), -- M. Atk. Modifiers
+(31304, 4412, 11), -- P. Def. Modifiers
+(31304, 4413, 11), -- M. Def. Modifiers
+(31304, 4414, 2), -- Armor Type
+(31304, 4415, 3), -- Weapon Type
+(31304, 4416, 14), -- Races
 -- Candice
 (31305, 4045, 1), -- Resist Full Magic Attack
-(31305, 4408, 1), -- HP Increase (1x)
-(31305, 4409, 1), -- MP Increase (1x)
-(31305, 4410, 11), -- Average P. Atk.
-(31305, 4411, 11), -- Average M. Atk.
-(31305, 4412, 11), -- Average P. Def.
-(31305, 4413, 11), -- Average M. Def.
-(31305, 4414, 2), -- Standard Type
-(31305, 4415, 3), -- One-handed Sword
-(31305, 4416, 18), -- Dwarves
+(31305, 4408, 1), -- HP Modifiers
+(31305, 4409, 1), -- MP Modifiers
+(31305, 4410, 11), -- P. Atk. Modifiers
+(31305, 4411, 11), -- M. Atk. Modifiers
+(31305, 4412, 11), -- P. Def. Modifiers
+(31305, 4413, 11), -- M. Def. Modifiers
+(31305, 4414, 2), -- Armor Type
+(31305, 4415, 3), -- Weapon Type
+(31305, 4416, 18), -- Races
 -- Natasha
 (31306, 4045, 1), -- Resist Full Magic Attack
-(31306, 4408, 1), -- HP Increase (1x)
-(31306, 4409, 1), -- MP Increase (1x)
-(31306, 4410, 11), -- Average P. Atk.
-(31306, 4411, 11), -- Average M. Atk.
-(31306, 4412, 11), -- Average P. Def.
-(31306, 4413, 11), -- Average M. Def.
-(31306, 4414, 2), -- Standard Type
-(31306, 4415, 3), -- One-handed Sword
-(31306, 4416, 14), -- Humans
+(31306, 4408, 1), -- HP Modifiers
+(31306, 4409, 1), -- MP Modifiers
+(31306, 4410, 11), -- P. Atk. Modifiers
+(31306, 4411, 11), -- M. Atk. Modifiers
+(31306, 4412, 11), -- P. Def. Modifiers
+(31306, 4413, 11), -- M. Def. Modifiers
+(31306, 4414, 2), -- Armor Type
+(31306, 4415, 3), -- Weapon Type
+(31306, 4416, 14), -- Races
 -- Weber
 (31307, 4045, 1), -- Resist Full Magic Attack
-(31307, 4408, 1), -- HP Increase (1x)
-(31307, 4409, 1), -- MP Increase (1x)
-(31307, 4410, 11), -- Average P. Atk.
-(31307, 4411, 11), -- Average M. Atk.
-(31307, 4412, 11), -- Average P. Def.
-(31307, 4413, 11), -- Average M. Def.
-(31307, 4414, 2), -- Standard Type
-(31307, 4415, 3), -- One-handed Sword
-(31307, 4416, 14), -- Humans
+(31307, 4408, 1), -- HP Modifiers
+(31307, 4409, 1), -- MP Modifiers
+(31307, 4410, 11), -- P. Atk. Modifiers
+(31307, 4411, 11), -- M. Atk. Modifiers
+(31307, 4412, 11), -- P. Def. Modifiers
+(31307, 4413, 11), -- M. Def. Modifiers
+(31307, 4414, 2), -- Armor Type
+(31307, 4415, 3), -- Weapon Type
+(31307, 4416, 14), -- Races
 -- Achim
 (31308, 4045, 1), -- Resist Full Magic Attack
-(31308, 4408, 1), -- HP Increase (1x)
-(31308, 4409, 1), -- MP Increase (1x)
-(31308, 4410, 11), -- Average P. Atk.
-(31308, 4411, 11), -- Average M. Atk.
-(31308, 4412, 11), -- Average P. Def.
-(31308, 4413, 11), -- Average M. Def.
-(31308, 4414, 2), -- Standard Type
-(31308, 4415, 3), -- One-handed Sword
-(31308, 4416, 14), -- Humans
+(31308, 4408, 1), -- HP Modifiers
+(31308, 4409, 1), -- MP Modifiers
+(31308, 4410, 11), -- P. Atk. Modifiers
+(31308, 4411, 11), -- M. Atk. Modifiers
+(31308, 4412, 11), -- P. Def. Modifiers
+(31308, 4413, 11), -- M. Def. Modifiers
+(31308, 4414, 2), -- Armor Type
+(31308, 4415, 3), -- Weapon Type
+(31308, 4416, 14), -- Races
 -- Woods
 (31309, 4045, 1), -- Resist Full Magic Attack
-(31309, 4408, 1), -- HP Increase (1x)
-(31309, 4409, 1), -- MP Increase (1x)
-(31309, 4410, 11), -- Average P. Atk.
-(31309, 4411, 11), -- Average M. Atk.
-(31309, 4412, 11), -- Average P. Def.
-(31309, 4413, 11), -- Average M. Def.
-(31309, 4414, 2), -- Standard Type
-(31309, 4415, 3), -- One-handed Sword
-(31309, 4416, 14), -- Humans
+(31309, 4408, 1), -- HP Modifiers
+(31309, 4409, 1), -- MP Modifiers
+(31309, 4410, 11), -- P. Atk. Modifiers
+(31309, 4411, 11), -- M. Atk. Modifiers
+(31309, 4412, 11), -- P. Def. Modifiers
+(31309, 4413, 11), -- M. Def. Modifiers
+(31309, 4414, 2), -- Armor Type
+(31309, 4415, 3), -- Weapon Type
+(31309, 4416, 14), -- Races
 -- Rafael
 (31310, 4045, 1), -- Resist Full Magic Attack
-(31310, 4408, 1), -- HP Increase (1x)
-(31310, 4409, 1), -- MP Increase (1x)
-(31310, 4410, 11), -- Average P. Atk.
-(31310, 4411, 11), -- Average M. Atk.
-(31310, 4412, 11), -- Average P. Def.
-(31310, 4413, 11), -- Average M. Def.
-(31310, 4414, 2), -- Standard Type
-(31310, 4415, 3), -- One-handed Sword
-(31310, 4416, 10), -- Dragons
+(31310, 4408, 1), -- HP Modifiers
+(31310, 4409, 1), -- MP Modifiers
+(31310, 4410, 11), -- P. Atk. Modifiers
+(31310, 4411, 11), -- M. Atk. Modifiers
+(31310, 4412, 11), -- P. Def. Modifiers
+(31310, 4413, 11), -- M. Def. Modifiers
+(31310, 4414, 2), -- Armor Type
+(31310, 4415, 3), -- Weapon Type
+(31310, 4416, 10), -- Races
 -- Hugin
 (31311, 4045, 1), -- Resist Full Magic Attack
-(31311, 4408, 1), -- HP Increase (1x)
-(31311, 4409, 1), -- MP Increase (1x)
-(31311, 4410, 11), -- Average P. Atk.
-(31311, 4411, 11), -- Average M. Atk.
-(31311, 4412, 11), -- Average P. Def.
-(31311, 4413, 11), -- Average M. Def.
-(31311, 4414, 2), -- Standard Type
-(31311, 4415, 3), -- One-handed Sword
-(31311, 4416, 18), -- Dwarves
+(31311, 4408, 1), -- HP Modifiers
+(31311, 4409, 1), -- MP Modifiers
+(31311, 4410, 11), -- P. Atk. Modifiers
+(31311, 4411, 11), -- M. Atk. Modifiers
+(31311, 4412, 11), -- P. Def. Modifiers
+(31311, 4413, 11), -- M. Def. Modifiers
+(31311, 4414, 2), -- Armor Type
+(31311, 4415, 3), -- Weapon Type
+(31311, 4416, 18), -- Races
 -- Durin
 (31312, 4045, 1), -- Resist Full Magic Attack
-(31312, 4408, 1), -- HP Increase (1x)
-(31312, 4409, 1), -- MP Increase (1x)
-(31312, 4410, 11), -- Average P. Atk.
-(31312, 4411, 11), -- Average M. Atk.
-(31312, 4412, 11), -- Average P. Def.
-(31312, 4413, 11), -- Average M. Def.
-(31312, 4414, 2), -- Standard Type
-(31312, 4415, 3), -- One-handed Sword
-(31312, 4416, 18), -- Dwarves
+(31312, 4408, 1), -- HP Modifiers
+(31312, 4409, 1), -- MP Modifiers
+(31312, 4410, 11), -- P. Atk. Modifiers
+(31312, 4411, 11), -- M. Atk. Modifiers
+(31312, 4412, 11), -- P. Def. Modifiers
+(31312, 4413, 11), -- M. Def. Modifiers
+(31312, 4414, 2), -- Armor Type
+(31312, 4415, 3), -- Weapon Type
+(31312, 4416, 18), -- Races
 -- Lunin
 (31313, 4045, 1), -- Resist Full Magic Attack
-(31313, 4408, 1), -- HP Increase (1x)
-(31313, 4409, 1), -- MP Increase (1x)
-(31313, 4410, 11), -- Average P. Atk.
-(31313, 4411, 11), -- Average M. Atk.
-(31313, 4412, 11), -- Average P. Def.
-(31313, 4413, 11), -- Average M. Def.
-(31313, 4414, 2), -- Standard Type
-(31313, 4415, 3), -- One-handed Sword
-(31313, 4416, 18), -- Dwarves
+(31313, 4408, 1), -- HP Modifiers
+(31313, 4409, 1), -- MP Modifiers
+(31313, 4410, 11), -- P. Atk. Modifiers
+(31313, 4411, 11), -- M. Atk. Modifiers
+(31313, 4412, 11), -- P. Def. Modifiers
+(31313, 4413, 11), -- M. Def. Modifiers
+(31313, 4414, 2), -- Armor Type
+(31313, 4415, 3), -- Weapon Type
+(31313, 4416, 18), -- Races
 -- Donal
 (31314, 4045, 1), -- Resist Full Magic Attack
-(31314, 4408, 1), -- HP Increase (1x)
-(31314, 4409, 1), -- MP Increase (1x)
-(31314, 4410, 11), -- Average P. Atk.
-(31314, 4411, 11), -- Average M. Atk.
-(31314, 4412, 11), -- Average P. Def.
-(31314, 4413, 11), -- Average M. Def.
-(31314, 4414, 2), -- Standard Type
-(31314, 4415, 3), -- One-handed Sword
-(31314, 4416, 18), -- Dwarves
+(31314, 4408, 1), -- HP Modifiers
+(31314, 4409, 1), -- MP Modifiers
+(31314, 4410, 11), -- P. Atk. Modifiers
+(31314, 4411, 11), -- M. Atk. Modifiers
+(31314, 4412, 11), -- P. Def. Modifiers
+(31314, 4413, 11), -- M. Def. Modifiers
+(31314, 4414, 2), -- Armor Type
+(31314, 4415, 3), -- Weapon Type
+(31314, 4416, 18), -- Races
 -- Daisy
 (31315, 4045, 1), -- Resist Full Magic Attack
-(31315, 4408, 1), -- HP Increase (1x)
-(31315, 4409, 1), -- MP Increase (1x)
-(31315, 4410, 11), -- Average P. Atk.
-(31315, 4411, 11), -- Average M. Atk.
-(31315, 4412, 11), -- Average P. Def.
-(31315, 4413, 11), -- Average M. Def.
-(31315, 4414, 2), -- Standard Type
-(31315, 4415, 3), -- One-handed Sword
-(31315, 4416, 18), -- Dwarves
+(31315, 4408, 1), -- HP Modifiers
+(31315, 4409, 1), -- MP Modifiers
+(31315, 4410, 11), -- P. Atk. Modifiers
+(31315, 4411, 11), -- M. Atk. Modifiers
+(31315, 4412, 11), -- P. Def. Modifiers
+(31315, 4413, 11), -- M. Def. Modifiers
+(31315, 4414, 2), -- Armor Type
+(31315, 4415, 3), -- Weapon Type
+(31315, 4416, 18), -- Races
 -- Vincenz
 (31316, 4045, 1), -- Resist Full Magic Attack
-(31316, 4408, 1), -- HP Increase (1x)
-(31316, 4409, 1), -- MP Increase (1x)
-(31316, 4410, 11), -- Average P. Atk.
-(31316, 4411, 11), -- Average M. Atk.
-(31316, 4412, 11), -- Average P. Def.
-(31316, 4413, 11), -- Average M. Def.
-(31316, 4414, 2), -- Standard Type
-(31316, 4415, 3), -- One-handed Sword
-(31316, 4416, 18), -- Dwarves
+(31316, 4408, 1), -- HP Modifiers
+(31316, 4409, 1), -- MP Modifiers
+(31316, 4410, 11), -- P. Atk. Modifiers
+(31316, 4411, 11), -- M. Atk. Modifiers
+(31316, 4412, 11), -- P. Def. Modifiers
+(31316, 4413, 11), -- M. Def. Modifiers
+(31316, 4414, 2), -- Armor Type
+(31316, 4415, 3), -- Weapon Type
+(31316, 4416, 18), -- Races
 -- Lombert
 (31317, 4045, 1), -- Resist Full Magic Attack
-(31317, 4408, 1), -- HP Increase (1x)
-(31317, 4409, 1), -- MP Increase (1x)
-(31317, 4410, 11), -- Average P. Atk.
-(31317, 4411, 11), -- Average M. Atk.
-(31317, 4412, 11), -- Average P. Def.
-(31317, 4413, 11), -- Average M. Def.
-(31317, 4414, 2), -- Standard Type
-(31317, 4415, 3), -- One-handed Sword
-(31317, 4416, 18), -- Dwarves
+(31317, 4408, 1), -- HP Modifiers
+(31317, 4409, 1), -- MP Modifiers
+(31317, 4410, 11), -- P. Atk. Modifiers
+(31317, 4411, 11), -- M. Atk. Modifiers
+(31317, 4412, 11), -- P. Def. Modifiers
+(31317, 4413, 11), -- M. Def. Modifiers
+(31317, 4414, 2), -- Armor Type
+(31317, 4415, 3), -- Weapon Type
+(31317, 4416, 18), -- Races
 -- Greta
 (31318, 4045, 1), -- Resist Full Magic Attack
-(31318, 4408, 1), -- HP Increase (1x)
-(31318, 4409, 1), -- MP Increase (1x)
-(31318, 4410, 11), -- Average P. Atk.
-(31318, 4411, 11), -- Average M. Atk.
-(31318, 4412, 11), -- Average P. Def.
-(31318, 4413, 11), -- Average M. Def.
-(31318, 4414, 2), -- Standard Type
-(31318, 4415, 3), -- One-handed Sword
-(31318, 4416, 18), -- Dwarves
+(31318, 4408, 1), -- HP Modifiers
+(31318, 4409, 1), -- MP Modifiers
+(31318, 4410, 11), -- P. Atk. Modifiers
+(31318, 4411, 11), -- M. Atk. Modifiers
+(31318, 4412, 11), -- P. Def. Modifiers
+(31318, 4413, 11), -- M. Def. Modifiers
+(31318, 4414, 2), -- Armor Type
+(31318, 4415, 3), -- Weapon Type
+(31318, 4416, 18), -- Races
 -- Hans
 (31319, 4045, 1), -- Resist Full Magic Attack
-(31319, 4408, 1), -- HP Increase (1x)
-(31319, 4409, 1), -- MP Increase (1x)
-(31319, 4410, 11), -- Average P. Atk.
-(31319, 4411, 11), -- Average M. Atk.
-(31319, 4412, 11), -- Average P. Def.
-(31319, 4413, 11), -- Average M. Def.
-(31319, 4414, 2), -- Standard Type
-(31319, 4415, 3), -- One-handed Sword
-(31319, 4416, 18), -- Dwarves
+(31319, 4408, 1), -- HP Modifiers
+(31319, 4409, 1), -- MP Modifiers
+(31319, 4410, 11), -- P. Atk. Modifiers
+(31319, 4411, 11), -- M. Atk. Modifiers
+(31319, 4412, 11), -- P. Def. Modifiers
+(31319, 4413, 11), -- M. Def. Modifiers
+(31319, 4414, 2), -- Armor Type
+(31319, 4415, 3), -- Weapon Type
+(31319, 4416, 18), -- Races
 -- Ilyana
 (31320, 4045, 1), -- Resist Full Magic Attack
-(31320, 4408, 1), -- HP Increase (1x)
-(31320, 4409, 1), -- MP Increase (1x)
-(31320, 4410, 11), -- Average P. Atk.
-(31320, 4411, 11), -- Average M. Atk.
-(31320, 4412, 11), -- Average P. Def.
-(31320, 4413, 11), -- Average M. Def.
-(31320, 4414, 2), -- Standard Type
-(31320, 4415, 3), -- One-handed Sword
-(31320, 4416, 14), -- Humans
+(31320, 4408, 1), -- HP Modifiers
+(31320, 4409, 1), -- MP Modifiers
+(31320, 4410, 11), -- P. Atk. Modifiers
+(31320, 4411, 11), -- M. Atk. Modifiers
+(31320, 4412, 11), -- P. Def. Modifiers
+(31320, 4413, 11), -- M. Def. Modifiers
+(31320, 4414, 2), -- Armor Type
+(31320, 4415, 3), -- Weapon Type
+(31320, 4416, 14), -- Races
 -- Siegmund
 (31321, 4045, 1), -- Resist Full Magic Attack
-(31321, 4408, 1), -- HP Increase (1x)
-(31321, 4409, 1), -- MP Increase (1x)
-(31321, 4410, 11), -- Average P. Atk.
-(31321, 4411, 11), -- Average M. Atk.
-(31321, 4412, 11), -- Average P. Def.
-(31321, 4413, 11), -- Average M. Def.
-(31321, 4414, 2), -- Standard Type
-(31321, 4415, 3), -- One-handed Sword
-(31321, 4416, 14), -- Humans
+(31321, 4408, 1), -- HP Modifiers
+(31321, 4409, 1), -- MP Modifiers
+(31321, 4410, 11), -- P. Atk. Modifiers
+(31321, 4411, 11), -- M. Atk. Modifiers
+(31321, 4412, 11), -- P. Def. Modifiers
+(31321, 4413, 11), -- M. Def. Modifiers
+(31321, 4414, 2), -- Armor Type
+(31321, 4415, 3), -- Weapon Type
+(31321, 4416, 14), -- Races
 -- Erian
 (31322, 4045, 1), -- Resist Full Magic Attack
-(31322, 4408, 1), -- HP Increase (1x)
-(31322, 4409, 1), -- MP Increase (1x)
-(31322, 4410, 11), -- Average P. Atk.
-(31322, 4411, 11), -- Average M. Atk.
-(31322, 4412, 11), -- Average P. Def.
-(31322, 4413, 11), -- Average M. Def.
-(31322, 4414, 2), -- Standard Type
-(31322, 4415, 3), -- One-handed Sword
-(31322, 4416, 14), -- Humans
+(31322, 4408, 1), -- HP Modifiers
+(31322, 4409, 1), -- MP Modifiers
+(31322, 4410, 11), -- P. Atk. Modifiers
+(31322, 4411, 11), -- M. Atk. Modifiers
+(31322, 4412, 11), -- P. Def. Modifiers
+(31322, 4413, 11), -- M. Def. Modifiers
+(31322, 4414, 2), -- Armor Type
+(31322, 4415, 3), -- Weapon Type
+(31322, 4416, 14), -- Races
 -- Beryl
 (31323, 4045, 1), -- Resist Full Magic Attack
-(31323, 4408, 1), -- HP Increase (1x)
-(31323, 4409, 1), -- MP Increase (1x)
-(31323, 4410, 11), -- Average P. Atk.
-(31323, 4411, 11), -- Average M. Atk.
-(31323, 4412, 11), -- Average P. Def.
-(31323, 4413, 11), -- Average M. Def.
-(31323, 4414, 2), -- Standard Type
-(31323, 4415, 3), -- One-handed Sword
-(31323, 4416, 15), -- Elves
+(31323, 4408, 1), -- HP Modifiers
+(31323, 4409, 1), -- MP Modifiers
+(31323, 4410, 11), -- P. Atk. Modifiers
+(31323, 4411, 11), -- M. Atk. Modifiers
+(31323, 4412, 11), -- P. Def. Modifiers
+(31323, 4413, 11), -- M. Def. Modifiers
+(31323, 4414, 2), -- Armor Type
+(31323, 4415, 3), -- Weapon Type
+(31323, 4416, 15), -- Races
 -- Andromeda
 (31324, 4045, 1), -- Resist Full Magic Attack
-(31324, 4408, 1), -- HP Increase (1x)
-(31324, 4409, 1), -- MP Increase (1x)
-(31324, 4410, 11), -- Average P. Atk.
-(31324, 4411, 11), -- Average M. Atk.
-(31324, 4412, 11), -- Average P. Def.
-(31324, 4413, 11), -- Average M. Def.
-(31324, 4414, 2), -- Standard Type
-(31324, 4415, 3), -- One-handed Sword
-(31324, 4416, 16), -- Dark Elves
+(31324, 4408, 1), -- HP Modifiers
+(31324, 4409, 1), -- MP Modifiers
+(31324, 4410, 11), -- P. Atk. Modifiers
+(31324, 4411, 11), -- M. Atk. Modifiers
+(31324, 4412, 11), -- P. Def. Modifiers
+(31324, 4413, 11), -- M. Def. Modifiers
+(31324, 4414, 2), -- Armor Type
+(31324, 4415, 3), -- Weapon Type
+(31324, 4416, 16), -- Races
 -- Themis
 (31325, 4045, 1), -- Resist Full Magic Attack
-(31325, 4408, 1), -- HP Increase (1x)
-(31325, 4409, 1), -- MP Increase (1x)
-(31325, 4410, 11), -- Average P. Atk.
-(31325, 4411, 11), -- Average M. Atk.
-(31325, 4412, 11), -- Average P. Def.
-(31325, 4413, 11), -- Average M. Def.
-(31325, 4414, 2), -- Standard Type
-(31325, 4415, 3), -- One-handed Sword
-(31325, 4416, 16), -- Dark Elves
+(31325, 4408, 1), -- HP Modifiers
+(31325, 4409, 1), -- MP Modifiers
+(31325, 4410, 11), -- P. Atk. Modifiers
+(31325, 4411, 11), -- M. Atk. Modifiers
+(31325, 4412, 11), -- P. Def. Modifiers
+(31325, 4413, 11), -- M. Def. Modifiers
+(31325, 4414, 2), -- Armor Type
+(31325, 4415, 3), -- Weapon Type
+(31325, 4416, 16), -- Races
 -- Lambac
 (31326, 4045, 1), -- Resist Full Magic Attack
-(31326, 4408, 1), -- HP Increase (1x)
-(31326, 4409, 1), -- MP Increase (1x)
-(31326, 4410, 11), -- Average P. Atk.
-(31326, 4411, 11), -- Average M. Atk.
-(31326, 4412, 11), -- Average P. Def.
-(31326, 4413, 11), -- Average M. Def.
-(31326, 4414, 2), -- Standard Type
-(31326, 4415, 3), -- One-handed Sword
-(31326, 4416, 17), -- Orcs
+(31326, 4408, 1), -- HP Modifiers
+(31326, 4409, 1), -- MP Modifiers
+(31326, 4410, 11), -- P. Atk. Modifiers
+(31326, 4411, 11), -- M. Atk. Modifiers
+(31326, 4412, 11), -- P. Def. Modifiers
+(31326, 4413, 11), -- M. Def. Modifiers
+(31326, 4414, 2), -- Armor Type
+(31326, 4415, 3), -- Weapon Type
+(31326, 4416, 17), -- Races
 -- Tazki
 (31327, 4045, 1), -- Resist Full Magic Attack
-(31327, 4408, 1), -- HP Increase (1x)
-(31327, 4409, 1), -- MP Increase (1x)
-(31327, 4410, 11), -- Average P. Atk.
-(31327, 4411, 11), -- Average M. Atk.
-(31327, 4412, 11), -- Average P. Def.
-(31327, 4413, 11), -- Average M. Def.
-(31327, 4414, 2), -- Standard Type
-(31327, 4415, 3), -- One-handed Sword
-(31327, 4416, 17), -- Orcs
+(31327, 4408, 1), -- HP Modifiers
+(31327, 4409, 1), -- MP Modifiers
+(31327, 4410, 11), -- P. Atk. Modifiers
+(31327, 4411, 11), -- M. Atk. Modifiers
+(31327, 4412, 11), -- P. Def. Modifiers
+(31327, 4413, 11), -- M. Def. Modifiers
+(31327, 4414, 2), -- Armor Type
+(31327, 4415, 3), -- Weapon Type
+(31327, 4416, 17), -- Races
 -- Innocentin
 (31328, 4045, 1), -- Resist Full Magic Attack
-(31328, 4408, 1), -- HP Increase (1x)
-(31328, 4409, 1), -- MP Increase (1x)
-(31328, 4410, 11), -- Average P. Atk.
-(31328, 4411, 11), -- Average M. Atk.
-(31328, 4412, 11), -- Average P. Def.
-(31328, 4413, 11), -- Average M. Def.
-(31328, 4414, 2), -- Standard Type
-(31328, 4415, 3), -- One-handed Sword
-(31328, 4416, 14), -- Humans
+(31328, 4408, 1), -- HP Modifiers
+(31328, 4409, 1), -- MP Modifiers
+(31328, 4410, 11), -- P. Atk. Modifiers
+(31328, 4411, 11), -- M. Atk. Modifiers
+(31328, 4412, 11), -- P. Def. Modifiers
+(31328, 4413, 11), -- M. Def. Modifiers
+(31328, 4414, 2), -- Armor Type
+(31328, 4415, 3), -- Weapon Type
+(31328, 4416, 14), -- Races
 -- Eliyah
 (31329, 4045, 1), -- Resist Full Magic Attack
-(31329, 4408, 1), -- HP Increase (1x)
-(31329, 4409, 1), -- MP Increase (1x)
-(31329, 4410, 11), -- Average P. Atk.
-(31329, 4411, 11), -- Average M. Atk.
-(31329, 4412, 11), -- Average P. Def.
-(31329, 4413, 11), -- Average M. Def.
-(31329, 4414, 2), -- Standard Type
-(31329, 4415, 3), -- One-handed Sword
-(31329, 4416, 14), -- Humans
+(31329, 4408, 1), -- HP Modifiers
+(31329, 4409, 1), -- MP Modifiers
+(31329, 4410, 11), -- P. Atk. Modifiers
+(31329, 4411, 11), -- M. Atk. Modifiers
+(31329, 4412, 11), -- P. Def. Modifiers
+(31329, 4413, 11), -- M. Def. Modifiers
+(31329, 4414, 2), -- Armor Type
+(31329, 4415, 3), -- Weapon Type
+(31329, 4416, 14), -- Races
 -- Wagner
 (31330, 4045, 1), -- Resist Full Magic Attack
-(31330, 4408, 1), -- HP Increase (1x)
-(31330, 4409, 1), -- MP Increase (1x)
-(31330, 4410, 11), -- Average P. Atk.
-(31330, 4411, 11), -- Average M. Atk.
-(31330, 4412, 11), -- Average P. Def.
-(31330, 4413, 11), -- Average M. Def.
-(31330, 4414, 2), -- Standard Type
-(31330, 4415, 3), -- One-handed Sword
-(31330, 4416, 15), -- Elves
+(31330, 4408, 1), -- HP Modifiers
+(31330, 4409, 1), -- MP Modifiers
+(31330, 4410, 11), -- P. Atk. Modifiers
+(31330, 4411, 11), -- M. Atk. Modifiers
+(31330, 4412, 11), -- P. Def. Modifiers
+(31330, 4413, 11), -- M. Def. Modifiers
+(31330, 4414, 2), -- Armor Type
+(31330, 4415, 3), -- Weapon Type
+(31330, 4416, 15), -- Races
 -- Valdis
 (31331, 4045, 1), -- Resist Full Magic Attack
-(31331, 4408, 1), -- HP Increase (1x)
-(31331, 4409, 1), -- MP Increase (1x)
-(31331, 4410, 11), -- Average P. Atk.
-(31331, 4411, 11), -- Average M. Atk.
-(31331, 4412, 11), -- Average P. Def.
-(31331, 4413, 11), -- Average M. Def.
-(31331, 4414, 2), -- Standard Type
-(31331, 4415, 3), -- One-handed Sword
-(31331, 4416, 14), -- Humans
+(31331, 4408, 1), -- HP Modifiers
+(31331, 4409, 1), -- MP Modifiers
+(31331, 4410, 11), -- P. Atk. Modifiers
+(31331, 4411, 11), -- M. Atk. Modifiers
+(31331, 4412, 11), -- P. Def. Modifiers
+(31331, 4413, 11), -- M. Def. Modifiers
+(31331, 4414, 2), -- Armor Type
+(31331, 4415, 3), -- Weapon Type
+(31331, 4416, 14), -- Races
 -- Amelia
 (31332, 4045, 1), -- Resist Full Magic Attack
-(31332, 4408, 1), -- HP Increase (1x)
-(31332, 4409, 1), -- MP Increase (1x)
-(31332, 4410, 11), -- Average P. Atk.
-(31332, 4411, 11), -- Average M. Atk.
-(31332, 4412, 11), -- Average P. Def.
-(31332, 4413, 11), -- Average M. Def.
-(31332, 4414, 2), -- Standard Type
-(31332, 4415, 3), -- One-handed Sword
-(31332, 4416, 14), -- Humans
+(31332, 4408, 1), -- HP Modifiers
+(31332, 4409, 1), -- MP Modifiers
+(31332, 4410, 11), -- P. Atk. Modifiers
+(31332, 4411, 11), -- M. Atk. Modifiers
+(31332, 4412, 11), -- P. Def. Modifiers
+(31332, 4413, 11), -- M. Def. Modifiers
+(31332, 4414, 2), -- Armor Type
+(31332, 4415, 3), -- Weapon Type
+(31332, 4416, 14), -- Races
 -- Rumiel
 (31333, 4045, 1), -- Resist Full Magic Attack
-(31333, 4408, 1), -- HP Increase (1x)
-(31333, 4409, 1), -- MP Increase (1x)
-(31333, 4410, 11), -- Average P. Atk.
-(31333, 4411, 11), -- Average M. Atk.
-(31333, 4412, 11), -- Average P. Def.
-(31333, 4413, 11), -- Average M. Def.
-(31333, 4414, 2), -- Standard Type
-(31333, 4415, 3), -- One-handed Sword
-(31333, 4416, 15), -- Elves
+(31333, 4408, 1), -- HP Modifiers
+(31333, 4409, 1), -- MP Modifiers
+(31333, 4410, 11), -- P. Atk. Modifiers
+(31333, 4411, 11), -- M. Atk. Modifiers
+(31333, 4412, 11), -- P. Def. Modifiers
+(31333, 4413, 11), -- M. Def. Modifiers
+(31333, 4414, 2), -- Armor Type
+(31333, 4415, 3), -- Weapon Type
+(31333, 4416, 15), -- Races
 -- Tifaren
 (31334, 4045, 1), -- Resist Full Magic Attack
-(31334, 4408, 1), -- HP Increase (1x)
-(31334, 4409, 1), -- MP Increase (1x)
-(31334, 4410, 11), -- Average P. Atk.
-(31334, 4411, 11), -- Average M. Atk.
-(31334, 4412, 11), -- Average P. Def.
-(31334, 4413, 11), -- Average M. Def.
-(31334, 4414, 2), -- Standard Type
-(31334, 4415, 3), -- One-handed Sword
-(31334, 4416, 16), -- Dark Elves
+(31334, 4408, 1), -- HP Modifiers
+(31334, 4409, 1), -- MP Modifiers
+(31334, 4410, 11), -- P. Atk. Modifiers
+(31334, 4411, 11), -- M. Atk. Modifiers
+(31334, 4412, 11), -- P. Def. Modifiers
+(31334, 4413, 11), -- M. Def. Modifiers
+(31334, 4414, 2), -- Armor Type
+(31334, 4415, 3), -- Weapon Type
+(31334, 4416, 16), -- Races
 -- Kayan
 (31335, 4045, 1), -- Resist Full Magic Attack
-(31335, 4408, 1), -- HP Increase (1x)
-(31335, 4409, 1), -- MP Increase (1x)
-(31335, 4410, 11), -- Average P. Atk.
-(31335, 4411, 11), -- Average M. Atk.
-(31335, 4412, 11), -- Average P. Def.
-(31335, 4413, 11), -- Average M. Def.
-(31335, 4414, 2), -- Standard Type
-(31335, 4415, 3), -- One-handed Sword
-(31335, 4416, 16), -- Dark Elves
+(31335, 4408, 1), -- HP Modifiers
+(31335, 4409, 1), -- MP Modifiers
+(31335, 4410, 11), -- P. Atk. Modifiers
+(31335, 4411, 11), -- M. Atk. Modifiers
+(31335, 4412, 11), -- P. Def. Modifiers
+(31335, 4413, 11), -- M. Def. Modifiers
+(31335, 4414, 2), -- Armor Type
+(31335, 4415, 3), -- Weapon Type
+(31335, 4416, 16), -- Races
 -- Rahorakti
 (31336, 4045, 1), -- Resist Full Magic Attack
-(31336, 4408, 1), -- HP Increase (1x)
-(31336, 4409, 1), -- MP Increase (1x)
-(31336, 4410, 11), -- Average P. Atk.
-(31336, 4411, 11), -- Average M. Atk.
-(31336, 4412, 11), -- Average P. Def.
-(31336, 4413, 11), -- Average M. Def.
-(31336, 4414, 2), -- Standard Type
-(31336, 4415, 3), -- One-handed Sword
-(31336, 4416, 17), -- Orcs
+(31336, 4408, 1), -- HP Modifiers
+(31336, 4409, 1), -- MP Modifiers
+(31336, 4410, 11), -- P. Atk. Modifiers
+(31336, 4411, 11), -- M. Atk. Modifiers
+(31336, 4412, 11), -- P. Def. Modifiers
+(31336, 4413, 11), -- M. Def. Modifiers
+(31336, 4414, 2), -- Armor Type
+(31336, 4415, 3), -- Weapon Type
+(31336, 4416, 17), -- Races
 -- Mekara
 (31337, 4045, 1), -- Resist Full Magic Attack
-(31337, 4408, 1), -- HP Increase (1x)
-(31337, 4409, 1), -- MP Increase (1x)
-(31337, 4410, 11), -- Average P. Atk.
-(31337, 4411, 11), -- Average M. Atk.
-(31337, 4412, 11), -- Average P. Def.
-(31337, 4413, 11), -- Average M. Def.
-(31337, 4414, 2), -- Standard Type
-(31337, 4415, 3), -- One-handed Sword
-(31337, 4416, 17), -- Orcs
+(31337, 4408, 1), -- HP Modifiers
+(31337, 4409, 1), -- MP Modifiers
+(31337, 4410, 11), -- P. Atk. Modifiers
+(31337, 4411, 11), -- M. Atk. Modifiers
+(31337, 4412, 11), -- P. Def. Modifiers
+(31337, 4413, 11), -- M. Def. Modifiers
+(31337, 4414, 2), -- Armor Type
+(31337, 4415, 3), -- Weapon Type
+(31337, 4416, 17), -- Races
 -- Anton
 (31338, 4045, 1), -- Resist Full Magic Attack
-(31338, 4408, 1), -- HP Increase (1x)
-(31338, 4409, 1), -- MP Increase (1x)
-(31338, 4410, 11), -- Average P. Atk.
-(31338, 4411, 11), -- Average M. Atk.
-(31338, 4412, 11), -- Average P. Def.
-(31338, 4413, 11), -- Average M. Def.
-(31338, 4414, 2), -- Standard Type
-(31338, 4415, 3), -- One-handed Sword
-(31338, 4416, 14), -- Humans
+(31338, 4408, 1), -- HP Modifiers
+(31338, 4409, 1), -- MP Modifiers
+(31338, 4410, 11), -- P. Atk. Modifiers
+(31338, 4411, 11), -- M. Atk. Modifiers
+(31338, 4412, 11), -- P. Def. Modifiers
+(31338, 4413, 11), -- M. Def. Modifiers
+(31338, 4414, 2), -- Armor Type
+(31338, 4415, 3), -- Weapon Type
+(31338, 4416, 14), -- Races
 -- Hakran
 (31339, 4045, 1), -- Resist Full Magic Attack
-(31339, 4408, 1), -- HP Increase (1x)
-(31339, 4409, 1), -- MP Increase (1x)
-(31339, 4410, 11), -- Average P. Atk.
-(31339, 4411, 11), -- Average M. Atk.
-(31339, 4412, 11), -- Average P. Def.
-(31339, 4413, 11), -- Average M. Def.
-(31339, 4414, 2), -- Standard Type
-(31339, 4415, 3), -- One-handed Sword
-(31339, 4416, 17), -- Orcs
+(31339, 4408, 1), -- HP Modifiers
+(31339, 4409, 1), -- MP Modifiers
+(31339, 4410, 11), -- P. Atk. Modifiers
+(31339, 4411, 11), -- M. Atk. Modifiers
+(31339, 4412, 11), -- P. Def. Modifiers
+(31339, 4413, 11), -- M. Def. Modifiers
+(31339, 4414, 2), -- Armor Type
+(31339, 4415, 3), -- Weapon Type
+(31339, 4416, 17), -- Races
 -- Mathias
 (31340, 4045, 1), -- Resist Full Magic Attack
-(31340, 4408, 1), -- HP Increase (1x)
-(31340, 4409, 1), -- MP Increase (1x)
-(31340, 4410, 16), -- Very Strong P. Atk.
-(31340, 4411, 16), -- Very Strong M. Atk.
-(31340, 4412, 16), -- Very Strong P. Def.
-(31340, 4413, 16), -- Very Strong M. Def.
-(31340, 4414, 2), -- Standard Type
-(31340, 4415, 3), -- One-handed Sword
-(31340, 4416, 14), -- Humans
+(31340, 4408, 1), -- HP Modifiers
+(31340, 4409, 1), -- MP Modifiers
+(31340, 4410, 16), -- P. Atk. Modifiers
+(31340, 4411, 16), -- M. Atk. Modifiers
+(31340, 4412, 16), -- P. Def. Modifiers
+(31340, 4413, 16), -- M. Def. Modifiers
+(31340, 4414, 2), -- Armor Type
+(31340, 4415, 3), -- Weapon Type
+(31340, 4416, 14), -- Races
 -- Richtor
 (31341, 4045, 1), -- Resist Full Magic Attack
-(31341, 4408, 1), -- HP Increase (1x)
-(31341, 4409, 1), -- MP Increase (1x)
-(31341, 4410, 16), -- Very Strong P. Atk.
-(31341, 4411, 16), -- Very Strong M. Atk.
-(31341, 4412, 16), -- Very Strong P. Def.
-(31341, 4413, 16), -- Very Strong M. Def.
-(31341, 4414, 2), -- Standard Type
-(31341, 4415, 3), -- One-handed Sword
-(31341, 4416, 14), -- Humans
+(31341, 4408, 1), -- HP Modifiers
+(31341, 4409, 1), -- MP Modifiers
+(31341, 4410, 16), -- P. Atk. Modifiers
+(31341, 4411, 16), -- M. Atk. Modifiers
+(31341, 4412, 16), -- P. Def. Modifiers
+(31341, 4413, 16), -- M. Def. Modifiers
+(31341, 4414, 2), -- Armor Type
+(31341, 4415, 3), -- Weapon Type
+(31341, 4416, 14), -- Races
 -- Dimitri
 (31342, 4045, 1), -- Resist Full Magic Attack
-(31342, 4408, 1), -- HP Increase (1x)
-(31342, 4409, 1), -- MP Increase (1x)
-(31342, 4410, 16), -- Very Strong P. Atk.
-(31342, 4411, 16), -- Very Strong M. Atk.
-(31342, 4412, 16), -- Very Strong P. Def.
-(31342, 4413, 16), -- Very Strong M. Def.
-(31342, 4414, 2), -- Standard Type
-(31342, 4415, 3), -- One-handed Sword
-(31342, 4416, 14), -- Humans
+(31342, 4408, 1), -- HP Modifiers
+(31342, 4409, 1), -- MP Modifiers
+(31342, 4410, 16), -- P. Atk. Modifiers
+(31342, 4411, 16), -- M. Atk. Modifiers
+(31342, 4412, 16), -- P. Def. Modifiers
+(31342, 4413, 16), -- M. Def. Modifiers
+(31342, 4414, 2), -- Armor Type
+(31342, 4415, 3), -- Weapon Type
+(31342, 4416, 14), -- Races
 -- Bellard
 (31343, 4045, 1), -- Resist Full Magic Attack
-(31343, 4408, 1), -- HP Increase (1x)
-(31343, 4409, 1), -- MP Increase (1x)
-(31343, 4410, 16), -- Very Strong P. Atk.
-(31343, 4411, 16), -- Very Strong M. Atk.
-(31343, 4412, 16), -- Very Strong P. Def.
-(31343, 4413, 16), -- Very Strong M. Def.
-(31343, 4414, 2), -- Standard Type
-(31343, 4415, 3), -- One-handed Sword
-(31343, 4416, 14), -- Humans
+(31343, 4408, 1), -- HP Modifiers
+(31343, 4409, 1), -- MP Modifiers
+(31343, 4410, 16), -- P. Atk. Modifiers
+(31343, 4411, 16), -- M. Atk. Modifiers
+(31343, 4412, 16), -- P. Def. Modifiers
+(31343, 4413, 16), -- M. Def. Modifiers
+(31343, 4414, 2), -- Armor Type
+(31343, 4415, 3), -- Weapon Type
+(31343, 4416, 14), -- Races
 -- Schmidt
 (31344, 4045, 1), -- Resist Full Magic Attack
-(31344, 4408, 1), -- HP Increase (1x)
-(31344, 4409, 1), -- MP Increase (1x)
-(31344, 4410, 16), -- Very Strong P. Atk.
-(31344, 4411, 16), -- Very Strong M. Atk.
-(31344, 4412, 16), -- Very Strong P. Def.
-(31344, 4413, 16), -- Very Strong M. Def.
-(31344, 4414, 2), -- Standard Type
-(31344, 4415, 3), -- One-handed Sword
-(31344, 4416, 14), -- Humans
+(31344, 4408, 1), -- HP Modifiers
+(31344, 4409, 1), -- MP Modifiers
+(31344, 4410, 16), -- P. Atk. Modifiers
+(31344, 4411, 16), -- M. Atk. Modifiers
+(31344, 4412, 16), -- P. Def. Modifiers
+(31344, 4413, 16), -- M. Def. Modifiers
+(31344, 4414, 2), -- Armor Type
+(31344, 4415, 3), -- Weapon Type
+(31344, 4416, 14), -- Races
 -- Ian
 (31345, 4045, 1), -- Resist Full Magic Attack
-(31345, 4408, 1), -- HP Increase (1x)
-(31345, 4409, 1), -- MP Increase (1x)
-(31345, 4410, 16), -- Very Strong P. Atk.
-(31345, 4411, 16), -- Very Strong M. Atk.
-(31345, 4412, 16), -- Very Strong P. Def.
-(31345, 4413, 16), -- Very Strong M. Def.
-(31345, 4414, 2), -- Standard Type
-(31345, 4415, 3), -- One-handed Sword
-(31345, 4416, 14), -- Humans
+(31345, 4408, 1), -- HP Modifiers
+(31345, 4409, 1), -- MP Modifiers
+(31345, 4410, 16), -- P. Atk. Modifiers
+(31345, 4411, 16), -- M. Atk. Modifiers
+(31345, 4412, 16), -- P. Def. Modifiers
+(31345, 4413, 16), -- M. Def. Modifiers
+(31345, 4414, 2), -- Armor Type
+(31345, 4415, 3), -- Weapon Type
+(31345, 4416, 14), -- Races
 -- Sirius
 (31346, 4045, 1), -- Resist Full Magic Attack
-(31346, 4408, 1), -- HP Increase (1x)
-(31346, 4409, 1), -- MP Increase (1x)
-(31346, 4410, 16), -- Very Strong P. Atk.
-(31346, 4411, 16), -- Very Strong M. Atk.
-(31346, 4412, 16), -- Very Strong P. Def.
-(31346, 4413, 16), -- Very Strong M. Def.
-(31346, 4414, 2), -- Standard Type
-(31346, 4415, 3), -- One-handed Sword
-(31346, 4416, 14), -- Humans
+(31346, 4408, 1), -- HP Modifiers
+(31346, 4409, 1), -- MP Modifiers
+(31346, 4410, 16), -- P. Atk. Modifiers
+(31346, 4411, 16), -- M. Atk. Modifiers
+(31346, 4412, 16), -- P. Def. Modifiers
+(31346, 4413, 16), -- M. Def. Modifiers
+(31346, 4414, 2), -- Armor Type
+(31346, 4415, 3), -- Weapon Type
+(31346, 4416, 14), -- Races
 -- Burke
 (31347, 4045, 1), -- Resist Full Magic Attack
-(31347, 4408, 1), -- HP Increase (1x)
-(31347, 4409, 1), -- MP Increase (1x)
-(31347, 4410, 16), -- Very Strong P. Atk.
-(31347, 4411, 16), -- Very Strong M. Atk.
-(31347, 4412, 16), -- Very Strong P. Def.
-(31347, 4413, 16), -- Very Strong M. Def.
-(31347, 4414, 2), -- Standard Type
-(31347, 4415, 3), -- One-handed Sword
-(31347, 4416, 14), -- Humans
+(31347, 4408, 1), -- HP Modifiers
+(31347, 4409, 1), -- MP Modifiers
+(31347, 4410, 16), -- P. Atk. Modifiers
+(31347, 4411, 16), -- M. Atk. Modifiers
+(31347, 4412, 16), -- P. Def. Modifiers
+(31347, 4413, 16), -- M. Def. Modifiers
+(31347, 4414, 2), -- Armor Type
+(31347, 4415, 3), -- Weapon Type
+(31347, 4416, 14), -- Races
 -- Agripel
 (31348, 4045, 1), -- Resist Full Magic Attack
-(31348, 4408, 1), -- HP Increase (1x)
-(31348, 4409, 1), -- MP Increase (1x)
-(31348, 4410, 11), -- Average P. Atk.
-(31348, 4411, 11), -- Average M. Atk.
-(31348, 4412, 11), -- Average P. Def.
-(31348, 4413, 11), -- Average M. Def.
-(31348, 4414, 2), -- Standard Type
-(31348, 4415, 3), -- One-handed Sword
-(31348, 4416, 14), -- Humans
+(31348, 4408, 1), -- HP Modifiers
+(31348, 4409, 1), -- MP Modifiers
+(31348, 4410, 11), -- P. Atk. Modifiers
+(31348, 4411, 11), -- M. Atk. Modifiers
+(31348, 4412, 11), -- P. Def. Modifiers
+(31348, 4413, 11), -- M. Def. Modifiers
+(31348, 4414, 2), -- Armor Type
+(31348, 4415, 3), -- Weapon Type
+(31348, 4416, 14), -- Races
 -- Benedict
 (31349, 4045, 1), -- Resist Full Magic Attack
-(31349, 4408, 1), -- HP Increase (1x)
-(31349, 4409, 1), -- MP Increase (1x)
-(31349, 4410, 11), -- Average P. Atk.
-(31349, 4411, 11), -- Average M. Atk.
-(31349, 4412, 11), -- Average P. Def.
-(31349, 4413, 11), -- Average M. Def.
-(31349, 4414, 2), -- Standard Type
-(31349, 4415, 3), -- One-handed Sword
-(31349, 4416, 14), -- Humans
+(31349, 4408, 1), -- HP Modifiers
+(31349, 4409, 1), -- MP Modifiers
+(31349, 4410, 11), -- P. Atk. Modifiers
+(31349, 4411, 11), -- M. Atk. Modifiers
+(31349, 4412, 11), -- P. Def. Modifiers
+(31349, 4413, 11), -- M. Def. Modifiers
+(31349, 4414, 2), -- Armor Type
+(31349, 4415, 3), -- Weapon Type
+(31349, 4416, 14), -- Races
 -- Dominic
 (31350, 4045, 1), -- Resist Full Magic Attack
-(31350, 4408, 1), -- HP Increase (1x)
-(31350, 4409, 1), -- MP Increase (1x)
-(31350, 4410, 11), -- Average P. Atk.
-(31350, 4411, 11), -- Average M. Atk.
-(31350, 4412, 11), -- Average P. Def.
-(31350, 4413, 11), -- Average M. Def.
-(31350, 4414, 2), -- Standard Type
-(31350, 4415, 3), -- One-handed Sword
-(31350, 4416, 14), -- Humans
+(31350, 4408, 1), -- HP Modifiers
+(31350, 4409, 1), -- MP Modifiers
+(31350, 4410, 11), -- P. Atk. Modifiers
+(31350, 4411, 11), -- M. Atk. Modifiers
+(31350, 4412, 11), -- P. Def. Modifiers
+(31350, 4413, 11), -- M. Def. Modifiers
+(31350, 4414, 2), -- Armor Type
+(31350, 4415, 3), -- Weapon Type
+(31350, 4416, 14), -- Races
 -- Volker
 (31351, 4045, 1), -- Resist Full Magic Attack
-(31351, 4408, 1), -- HP Increase (1x)
-(31351, 4409, 1), -- MP Increase (1x)
-(31351, 4410, 11), -- Average P. Atk.
-(31351, 4411, 11), -- Average M. Atk.
-(31351, 4412, 11), -- Average P. Def.
-(31351, 4413, 11), -- Average M. Def.
-(31351, 4414, 2), -- Standard Type
-(31351, 4415, 3), -- One-handed Sword
-(31351, 4416, 14), -- Humans
+(31351, 4408, 1), -- HP Modifiers
+(31351, 4409, 1), -- MP Modifiers
+(31351, 4410, 11), -- P. Atk. Modifiers
+(31351, 4411, 11), -- M. Atk. Modifiers
+(31351, 4412, 11), -- P. Def. Modifiers
+(31351, 4413, 11), -- M. Def. Modifiers
+(31351, 4414, 2), -- Armor Type
+(31351, 4415, 3), -- Weapon Type
+(31351, 4416, 14), -- Races
 -- Remy
 (31356, 4045, 1), -- Resist Full Magic Attack
-(31356, 4408, 1), -- HP Increase (1x)
-(31356, 4409, 1), -- MP Increase (1x)
-(31356, 4410, 11), -- Average P. Atk.
-(31356, 4411, 11), -- Average M. Atk.
-(31356, 4412, 11), -- Average P. Def.
-(31356, 4413, 11), -- Average M. Def.
-(31356, 4414, 2), -- Standard Type
-(31356, 4415, 3), -- One-handed Sword
-(31356, 4416, 14), -- Humans
+(31356, 4408, 1), -- HP Modifiers
+(31356, 4409, 1), -- MP Modifiers
+(31356, 4410, 11), -- P. Atk. Modifiers
+(31356, 4411, 11), -- M. Atk. Modifiers
+(31356, 4412, 11), -- P. Def. Modifiers
+(31356, 4413, 11), -- M. Def. Modifiers
+(31356, 4414, 2), -- Armor Type
+(31356, 4415, 3), -- Weapon Type
+(31356, 4416, 14), -- Races
 -- Leandro
 (31357, 4045, 1), -- Resist Full Magic Attack
-(31357, 4408, 1), -- HP Increase (1x)
-(31357, 4409, 1), -- MP Increase (1x)
-(31357, 4410, 11), -- Average P. Atk.
-(31357, 4411, 11), -- Average M. Atk.
-(31357, 4412, 11), -- Average P. Def.
-(31357, 4413, 11), -- Average M. Def.
-(31357, 4414, 2), -- Standard Type
-(31357, 4415, 3), -- One-handed Sword
-(31357, 4416, 14), -- Humans
+(31357, 4408, 1), -- HP Modifiers
+(31357, 4409, 1), -- MP Modifiers
+(31357, 4410, 11), -- P. Atk. Modifiers
+(31357, 4411, 11), -- M. Atk. Modifiers
+(31357, 4412, 11), -- P. Def. Modifiers
+(31357, 4413, 11), -- M. Def. Modifiers
+(31357, 4414, 2), -- Armor Type
+(31357, 4415, 3), -- Weapon Type
+(31357, 4416, 14), -- Races
 -- Kasiel
 (31358, 4045, 1), -- Resist Full Magic Attack
-(31358, 4408, 1), -- HP Increase (1x)
-(31358, 4409, 1), -- MP Increase (1x)
-(31358, 4410, 11), -- Average P. Atk.
-(31358, 4411, 11), -- Average M. Atk.
-(31358, 4412, 11), -- Average P. Def.
-(31358, 4413, 11), -- Average M. Def.
-(31358, 4414, 2), -- Standard Type
-(31358, 4415, 3), -- One-handed Sword
-(31358, 4416, 15), -- Elves
+(31358, 4408, 1), -- HP Modifiers
+(31358, 4409, 1), -- MP Modifiers
+(31358, 4410, 11), -- P. Atk. Modifiers
+(31358, 4411, 11), -- M. Atk. Modifiers
+(31358, 4412, 11), -- P. Def. Modifiers
+(31358, 4413, 11), -- M. Def. Modifiers
+(31358, 4414, 2), -- Armor Type
+(31358, 4415, 3), -- Weapon Type
+(31358, 4416, 15), -- Races
 -- Jaradine
 (31359, 4045, 1), -- Resist Full Magic Attack
-(31359, 4408, 1), -- HP Increase (1x)
-(31359, 4409, 1), -- MP Increase (1x)
-(31359, 4410, 11), -- Average P. Atk.
-(31359, 4411, 11), -- Average M. Atk.
-(31359, 4412, 11), -- Average P. Def.
-(31359, 4413, 11), -- Average M. Def.
-(31359, 4414, 2), -- Standard Type
-(31359, 4415, 3), -- One-handed Sword
-(31359, 4416, 15), -- Elves
+(31359, 4408, 1), -- HP Modifiers
+(31359, 4409, 1), -- MP Modifiers
+(31359, 4410, 11), -- P. Atk. Modifiers
+(31359, 4411, 11), -- M. Atk. Modifiers
+(31359, 4412, 11), -- P. Def. Modifiers
+(31359, 4413, 11), -- M. Def. Modifiers
+(31359, 4414, 2), -- Armor Type
+(31359, 4415, 3), -- Weapon Type
+(31359, 4416, 15), -- Races
 -- Alhena
 (31360, 4045, 1), -- Resist Full Magic Attack
-(31360, 4408, 1), -- HP Increase (1x)
-(31360, 4409, 1), -- MP Increase (1x)
-(31360, 4410, 11), -- Average P. Atk.
-(31360, 4411, 11), -- Average M. Atk.
-(31360, 4412, 11), -- Average P. Def.
-(31360, 4413, 11), -- Average M. Def.
-(31360, 4414, 2), -- Standard Type
-(31360, 4415, 3), -- One-handed Sword
-(31360, 4416, 16), -- Dark Elves
+(31360, 4408, 1), -- HP Modifiers
+(31360, 4409, 1), -- MP Modifiers
+(31360, 4410, 11), -- P. Atk. Modifiers
+(31360, 4411, 11), -- M. Atk. Modifiers
+(31360, 4412, 11), -- P. Def. Modifiers
+(31360, 4413, 11), -- M. Def. Modifiers
+(31360, 4414, 2), -- Armor Type
+(31360, 4415, 3), -- Weapon Type
+(31360, 4416, 16), -- Races
 -- Kreed
 (31361, 4045, 1), -- Resist Full Magic Attack
-(31361, 4408, 1), -- HP Increase (1x)
-(31361, 4409, 1), -- MP Increase (1x)
-(31361, 4410, 11), -- Average P. Atk.
-(31361, 4411, 11), -- Average M. Atk.
-(31361, 4412, 11), -- Average P. Def.
-(31361, 4413, 11), -- Average M. Def.
-(31361, 4414, 2), -- Standard Type
-(31361, 4415, 3), -- One-handed Sword
-(31361, 4416, 16), -- Dark Elves
+(31361, 4408, 1), -- HP Modifiers
+(31361, 4409, 1), -- MP Modifiers
+(31361, 4410, 11), -- P. Atk. Modifiers
+(31361, 4411, 11), -- M. Atk. Modifiers
+(31361, 4412, 11), -- P. Def. Modifiers
+(31361, 4413, 11), -- M. Def. Modifiers
+(31361, 4414, 2), -- Armor Type
+(31361, 4415, 3), -- Weapon Type
+(31361, 4416, 16), -- Races
 -- Tate
 (31362, 4045, 1), -- Resist Full Magic Attack
-(31362, 4408, 1), -- HP Increase (1x)
-(31362, 4409, 1), -- MP Increase (1x)
-(31362, 4410, 11), -- Average P. Atk.
-(31362, 4411, 11), -- Average M. Atk.
-(31362, 4412, 11), -- Average P. Def.
-(31362, 4413, 11), -- Average M. Def.
-(31362, 4414, 2), -- Standard Type
-(31362, 4415, 3), -- One-handed Sword
-(31362, 4416, 18), -- Dwarves
+(31362, 4408, 1), -- HP Modifiers
+(31362, 4409, 1), -- MP Modifiers
+(31362, 4410, 11), -- P. Atk. Modifiers
+(31362, 4411, 11), -- M. Atk. Modifiers
+(31362, 4412, 11), -- P. Def. Modifiers
+(31362, 4413, 11), -- M. Def. Modifiers
+(31362, 4414, 2), -- Armor Type
+(31362, 4415, 3), -- Weapon Type
+(31362, 4416, 18), -- Races
 -- Rogin
 (31363, 4045, 1), -- Resist Full Magic Attack
-(31363, 4408, 1), -- HP Increase (1x)
-(31363, 4409, 1), -- MP Increase (1x)
-(31363, 4410, 11), -- Average P. Atk.
-(31363, 4411, 11), -- Average M. Atk.
-(31363, 4412, 11), -- Average P. Def.
-(31363, 4413, 11), -- Average M. Def.
-(31363, 4414, 2), -- Standard Type
-(31363, 4415, 3), -- One-handed Sword
-(31363, 4416, 18), -- Dwarves
+(31363, 4408, 1), -- HP Modifiers
+(31363, 4409, 1), -- MP Modifiers
+(31363, 4410, 11), -- P. Atk. Modifiers
+(31363, 4411, 11), -- M. Atk. Modifiers
+(31363, 4412, 11), -- P. Def. Modifiers
+(31363, 4413, 11), -- M. Def. Modifiers
+(31363, 4414, 2), -- Armor Type
+(31363, 4415, 3), -- Weapon Type
+(31363, 4416, 18), -- Races
 -- Rokar
 (31364, 4045, 1), -- Resist Full Magic Attack
-(31364, 4408, 1), -- HP Increase (1x)
-(31364, 4409, 1), -- MP Increase (1x)
-(31364, 4410, 11), -- Average P. Atk.
-(31364, 4411, 11), -- Average M. Atk.
-(31364, 4412, 11), -- Average P. Def.
-(31364, 4413, 11), -- Average M. Def.
-(31364, 4414, 2), -- Standard Type
-(31364, 4415, 3), -- One-handed Sword
-(31364, 4416, 17), -- Orcs
+(31364, 4408, 1), -- HP Modifiers
+(31364, 4409, 1), -- MP Modifiers
+(31364, 4410, 11), -- P. Atk. Modifiers
+(31364, 4411, 11), -- M. Atk. Modifiers
+(31364, 4412, 11), -- P. Def. Modifiers
+(31364, 4413, 11), -- M. Def. Modifiers
+(31364, 4414, 2), -- Armor Type
+(31364, 4415, 3), -- Weapon Type
+(31364, 4416, 17), -- Races
 -- Yakand
 (31365, 4045, 1), -- Resist Full Magic Attack
-(31365, 4408, 1), -- HP Increase (1x)
-(31365, 4409, 1), -- MP Increase (1x)
-(31365, 4410, 11), -- Average P. Atk.
-(31365, 4411, 11), -- Average M. Atk.
-(31365, 4412, 11), -- Average P. Def.
-(31365, 4413, 11), -- Average M. Def.
-(31365, 4414, 2), -- Standard Type
-(31365, 4415, 3), -- One-handed Sword
-(31365, 4416, 17), -- Orcs
+(31365, 4408, 1), -- HP Modifiers
+(31365, 4409, 1), -- MP Modifiers
+(31365, 4410, 11), -- P. Atk. Modifiers
+(31365, 4411, 11), -- M. Atk. Modifiers
+(31365, 4412, 11), -- P. Def. Modifiers
+(31365, 4413, 11), -- M. Def. Modifiers
+(31365, 4414, 2), -- Armor Type
+(31365, 4415, 3), -- Weapon Type
+(31365, 4416, 17), -- Races
 -- Feed Seller
 (31366, 4045, 1), -- Resist Full Magic Attack
-(31366, 4408, 1), -- HP Increase (1x)
-(31366, 4409, 1), -- MP Increase (1x)
-(31366, 4410, 11), -- Average P. Atk.
-(31366, 4411, 11), -- Average M. Atk.
-(31366, 4412, 11), -- Average P. Def.
-(31366, 4413, 11), -- Average M. Def.
-(31366, 4414, 2), -- Standard Type
-(31366, 4415, 3), -- One-handed Sword
-(31366, 4416, 14), -- Humans
+(31366, 4408, 1), -- HP Modifiers
+(31366, 4409, 1), -- MP Modifiers
+(31366, 4410, 11), -- P. Atk. Modifiers
+(31366, 4411, 11), -- M. Atk. Modifiers
+(31366, 4412, 11), -- P. Def. Modifiers
+(31366, 4413, 11), -- M. Def. Modifiers
+(31366, 4414, 2), -- Armor Type
+(31366, 4415, 3), -- Weapon Type
+(31366, 4416, 14), -- Races
 -- Voice of Glory
 (31367, 4045, 1), -- Resist Full Magic Attack
-(31367, 4408, 1), -- HP Increase (1x)
-(31367, 4409, 1), -- MP Increase (1x)
-(31367, 4410, 11), -- Average P. Atk.
-(31367, 4411, 11), -- Average M. Atk.
-(31367, 4412, 11), -- Average P. Def.
-(31367, 4413, 11), -- Average M. Def.
-(31367, 4414, 2), -- Standard Type
-(31367, 4415, 3), -- One-handed Sword
-(31367, 4416, 8), -- Angels
+(31367, 4408, 1), -- HP Modifiers
+(31367, 4409, 1), -- MP Modifiers
+(31367, 4410, 11), -- P. Atk. Modifiers
+(31367, 4411, 11), -- M. Atk. Modifiers
+(31367, 4412, 11), -- P. Def. Modifiers
+(31367, 4413, 11), -- M. Def. Modifiers
+(31367, 4414, 2), -- Armor Type
+(31367, 4415, 3), -- Weapon Type
+(31367, 4416, 8), -- Races
 -- Mikellan
 (31368, 4045, 1), -- Resist Full Magic Attack
-(31368, 4408, 1), -- HP Increase (1x)
-(31368, 4409, 1), -- MP Increase (1x)
-(31368, 4410, 11), -- Average P. Atk.
-(31368, 4411, 11), -- Average M. Atk.
-(31368, 4412, 11), -- Average P. Def.
-(31368, 4413, 11), -- Average M. Def.
-(31368, 4414, 2), -- Standard Type
-(31368, 4415, 3), -- One-handed Sword
-(31368, 4416, 14), -- Humans
+(31368, 4408, 1), -- HP Modifiers
+(31368, 4409, 1), -- MP Modifiers
+(31368, 4410, 11), -- P. Atk. Modifiers
+(31368, 4411, 11), -- M. Atk. Modifiers
+(31368, 4412, 11), -- P. Def. Modifiers
+(31368, 4413, 11), -- M. Def. Modifiers
+(31368, 4414, 2), -- Armor Type
+(31368, 4415, 3), -- Weapon Type
+(31368, 4416, 14), -- Races
 -- Mennon
 (31369, 4045, 1), -- Resist Full Magic Attack
-(31369, 4408, 1), -- HP Increase (1x)
-(31369, 4409, 1), -- MP Increase (1x)
-(31369, 4410, 11), -- Average P. Atk.
-(31369, 4411, 11), -- Average M. Atk.
-(31369, 4412, 11), -- Average P. Def.
-(31369, 4413, 11), -- Average M. Def.
-(31369, 4414, 2), -- Standard Type
-(31369, 4415, 3), -- One-handed Sword
-(31369, 4416, 14), -- Humans
+(31369, 4408, 1), -- HP Modifiers
+(31369, 4409, 1), -- MP Modifiers
+(31369, 4410, 11), -- P. Atk. Modifiers
+(31369, 4411, 11), -- M. Atk. Modifiers
+(31369, 4412, 11), -- P. Def. Modifiers
+(31369, 4413, 11), -- M. Def. Modifiers
+(31369, 4414, 2), -- Armor Type
+(31369, 4415, 3), -- Weapon Type
+(31369, 4416, 14), -- Races
 -- Kadun Zu Ketra
 (31370, 4045, 1), -- Resist Full Magic Attack
-(31370, 4408, 1), -- HP Increase (1x)
-(31370, 4409, 1), -- MP Increase (1x)
-(31370, 4410, 11), -- Average P. Atk.
-(31370, 4411, 11), -- Average M. Atk.
-(31370, 4412, 11), -- Average P. Def.
-(31370, 4413, 11), -- Average M. Def.
-(31370, 4414, 2), -- Standard Type
-(31370, 4415, 3), -- One-handed Sword
-(31370, 4416, 6), -- Humanoids
+(31370, 4408, 1), -- HP Modifiers
+(31370, 4409, 1), -- MP Modifiers
+(31370, 4410, 11), -- P. Atk. Modifiers
+(31370, 4411, 11), -- M. Atk. Modifiers
+(31370, 4412, 11), -- P. Def. Modifiers
+(31370, 4413, 11), -- M. Def. Modifiers
+(31370, 4414, 2), -- Armor Type
+(31370, 4415, 3), -- Weapon Type
+(31370, 4416, 6), -- Races
 -- Wahkan
 (31371, 4045, 1), -- Resist Full Magic Attack
-(31371, 4408, 1), -- HP Increase (1x)
-(31371, 4409, 1), -- MP Increase (1x)
-(31371, 4410, 11), -- Average P. Atk.
-(31371, 4411, 11), -- Average M. Atk.
-(31371, 4412, 11), -- Average P. Def.
-(31371, 4413, 11), -- Average M. Def.
-(31371, 4414, 2), -- Standard Type
-(31371, 4415, 3), -- One-handed Sword
-(31371, 4416, 6), -- Humanoids
+(31371, 4408, 1), -- HP Modifiers
+(31371, 4409, 1), -- MP Modifiers
+(31371, 4410, 11), -- P. Atk. Modifiers
+(31371, 4411, 11), -- M. Atk. Modifiers
+(31371, 4412, 11), -- P. Def. Modifiers
+(31371, 4413, 11), -- M. Def. Modifiers
+(31371, 4414, 2), -- Armor Type
+(31371, 4415, 3), -- Weapon Type
+(31371, 4416, 6), -- Races
 -- Asefa
 (31372, 4045, 1), -- Resist Full Magic Attack
-(31372, 4345, 3), -- Might
-(31372, 4352, 1), -- Berserker Spirit
-(31372, 4354, 2), -- Vampiric Rage
-(31372, 4355, 2), -- Acumen
-(31372, 4356, 1), -- Empower
-(31372, 4357, 2), -- Haste
-(31372, 4359, 2), -- Focus
-(31372, 4360, 2), -- Death Whisper
-(31372, 4408, 1), -- HP Increase (1x)
-(31372, 4409, 1), -- MP Increase (1x)
-(31372, 4410, 11), -- Average P. Atk.
-(31372, 4411, 11), -- Average M. Atk.
-(31372, 4412, 11), -- Average P. Def.
-(31372, 4413, 11), -- Average M. Def.
-(31372, 4414, 2), -- Standard Type
-(31372, 4415, 3), -- One-handed Sword
-(31372, 4416, 6), -- Humanoids
+(31372, 4345, 3), -- Clan Hall: Might
+(31372, 4352, 1), -- Clan Hall: Berserker Spirit
+(31372, 4354, 2), -- Clan Hall: Vampiric Rage
+(31372, 4355, 2), -- Clan Hall: Acumen
+(31372, 4356, 1), -- Clan Hall: Empower
+(31372, 4357, 2), -- Clan Hall: Haste
+(31372, 4359, 2), -- Clan Hall: Focus
+(31372, 4360, 2), -- Clan Hall: Death Whisper
+(31372, 4408, 1), -- HP Modifiers
+(31372, 4409, 1), -- MP Modifiers
+(31372, 4410, 11), -- P. Atk. Modifiers
+(31372, 4411, 11), -- M. Atk. Modifiers
+(31372, 4412, 11), -- P. Def. Modifiers
+(31372, 4413, 11), -- M. Def. Modifiers
+(31372, 4414, 2), -- Armor Type
+(31372, 4415, 3), -- Weapon Type
+(31372, 4416, 6), -- Races
 -- Atan
 (31373, 4045, 1), -- Resist Full Magic Attack
-(31373, 4408, 1), -- HP Increase (1x)
-(31373, 4409, 1), -- MP Increase (1x)
-(31373, 4410, 11), -- Average P. Atk.
-(31373, 4411, 11), -- Average M. Atk.
-(31373, 4412, 11), -- Average P. Def.
-(31373, 4413, 11), -- Average M. Def.
-(31373, 4414, 2), -- Standard Type
-(31373, 4415, 3), -- One-handed Sword
-(31373, 4416, 6), -- Humanoids
+(31373, 4408, 1), -- HP Modifiers
+(31373, 4409, 1), -- MP Modifiers
+(31373, 4410, 11), -- P. Atk. Modifiers
+(31373, 4411, 11), -- M. Atk. Modifiers
+(31373, 4412, 11), -- P. Def. Modifiers
+(31373, 4413, 11), -- M. Def. Modifiers
+(31373, 4414, 2), -- Armor Type
+(31373, 4415, 3), -- Weapon Type
+(31373, 4416, 6), -- Races
 -- Jaff
 (31374, 4045, 1), -- Resist Full Magic Attack
-(31374, 4408, 1), -- HP Increase (1x)
-(31374, 4409, 1), -- MP Increase (1x)
-(31374, 4410, 11), -- Average P. Atk.
-(31374, 4411, 11), -- Average M. Atk.
-(31374, 4412, 11), -- Average P. Def.
-(31374, 4413, 11), -- Average M. Def.
-(31374, 4414, 2), -- Standard Type
-(31374, 4415, 3), -- One-handed Sword
-(31374, 4416, 6), -- Humanoids
+(31374, 4408, 1), -- HP Modifiers
+(31374, 4409, 1), -- MP Modifiers
+(31374, 4410, 11), -- P. Atk. Modifiers
+(31374, 4411, 11), -- M. Atk. Modifiers
+(31374, 4412, 11), -- P. Def. Modifiers
+(31374, 4413, 11), -- M. Def. Modifiers
+(31374, 4414, 2), -- Armor Type
+(31374, 4415, 3), -- Weapon Type
+(31374, 4416, 6), -- Races
 -- Jumara
 (31375, 4045, 1), -- Resist Full Magic Attack
-(31375, 4408, 1), -- HP Increase (1x)
-(31375, 4409, 1), -- MP Increase (1x)
-(31375, 4410, 11), -- Average P. Atk.
-(31375, 4411, 11), -- Average M. Atk.
-(31375, 4412, 11), -- Average P. Def.
-(31375, 4413, 11), -- Average M. Def.
-(31375, 4414, 2), -- Standard Type
-(31375, 4415, 3), -- One-handed Sword
-(31375, 4416, 6), -- Humanoids
+(31375, 4408, 1), -- HP Modifiers
+(31375, 4409, 1), -- MP Modifiers
+(31375, 4410, 11), -- P. Atk. Modifiers
+(31375, 4411, 11), -- M. Atk. Modifiers
+(31375, 4412, 11), -- P. Def. Modifiers
+(31375, 4413, 11), -- M. Def. Modifiers
+(31375, 4414, 2), -- Armor Type
+(31375, 4415, 3), -- Weapon Type
+(31375, 4416, 6), -- Races
 -- Kurfa
 (31376, 4045, 1), -- Resist Full Magic Attack
-(31376, 4408, 1), -- HP Increase (1x)
-(31376, 4409, 1), -- MP Increase (1x)
-(31376, 4410, 11), -- Average P. Atk.
-(31376, 4411, 11), -- Average M. Atk.
-(31376, 4412, 11), -- Average P. Def.
-(31376, 4413, 11), -- Average M. Def.
-(31376, 4414, 2), -- Standard Type
-(31376, 4415, 3), -- One-handed Sword
-(31376, 4416, 6), -- Humanoids
+(31376, 4408, 1), -- HP Modifiers
+(31376, 4409, 1), -- MP Modifiers
+(31376, 4410, 11), -- P. Atk. Modifiers
+(31376, 4411, 11), -- M. Atk. Modifiers
+(31376, 4412, 11), -- P. Def. Modifiers
+(31376, 4413, 11), -- M. Def. Modifiers
+(31376, 4414, 2), -- Armor Type
+(31376, 4415, 3), -- Weapon Type
+(31376, 4416, 6), -- Races
 -- Ashas Varka Durai
 (31377, 4045, 1), -- Resist Full Magic Attack
-(31377, 4408, 1), -- HP Increase (1x)
-(31377, 4409, 1), -- MP Increase (1x)
-(31377, 4410, 11), -- Average P. Atk.
-(31377, 4411, 11), -- Average M. Atk.
-(31377, 4412, 11), -- Average P. Def.
-(31377, 4413, 11), -- Average M. Def.
-(31377, 4414, 2), -- Standard Type
-(31377, 4415, 3), -- One-handed Sword
-(31377, 4416, 6), -- Humanoids
+(31377, 4408, 1), -- HP Modifiers
+(31377, 4409, 1), -- MP Modifiers
+(31377, 4410, 11), -- P. Atk. Modifiers
+(31377, 4411, 11), -- M. Atk. Modifiers
+(31377, 4412, 11), -- P. Def. Modifiers
+(31377, 4413, 11), -- M. Def. Modifiers
+(31377, 4414, 2), -- Armor Type
+(31377, 4415, 3), -- Weapon Type
+(31377, 4416, 6), -- Races
 -- Naran Ashanuk
 (31378, 4045, 1), -- Resist Full Magic Attack
-(31378, 4408, 1), -- HP Increase (1x)
-(31378, 4409, 1), -- MP Increase (1x)
-(31378, 4410, 11), -- Average P. Atk.
-(31378, 4411, 11), -- Average M. Atk.
-(31378, 4412, 11), -- Average P. Def.
-(31378, 4413, 11), -- Average M. Def.
-(31378, 4414, 2), -- Standard Type
-(31378, 4415, 3), -- One-handed Sword
-(31378, 4416, 6), -- Humanoids
+(31378, 4408, 1), -- HP Modifiers
+(31378, 4409, 1), -- MP Modifiers
+(31378, 4410, 11), -- P. Atk. Modifiers
+(31378, 4411, 11), -- M. Atk. Modifiers
+(31378, 4412, 11), -- P. Def. Modifiers
+(31378, 4413, 11), -- M. Def. Modifiers
+(31378, 4414, 2), -- Armor Type
+(31378, 4415, 3), -- Weapon Type
+(31378, 4416, 6), -- Races
 -- Udan Mardui
 (31379, 4045, 1), -- Resist Full Magic Attack
-(31379, 4345, 3), -- Might
-(31379, 4352, 1), -- Berserker Spirit
-(31379, 4354, 2), -- Vampiric Rage
-(31379, 4355, 2), -- Acumen
-(31379, 4356, 1), -- Empower
-(31379, 4357, 2), -- Haste
-(31379, 4359, 2), -- Focus
-(31379, 4360, 2), -- Death Whisper
-(31379, 4408, 1), -- HP Increase (1x)
-(31379, 4409, 1), -- MP Increase (1x)
-(31379, 4410, 11), -- Average P. Atk.
-(31379, 4411, 11), -- Average M. Atk.
-(31379, 4412, 11), -- Average P. Def.
-(31379, 4413, 11), -- Average M. Def.
-(31379, 4414, 2), -- Standard Type
-(31379, 4415, 3), -- One-handed Sword
-(31379, 4416, 6), -- Humanoids
+(31379, 4345, 3), -- Clan Hall: Might
+(31379, 4352, 1), -- Clan Hall: Berserker Spirit
+(31379, 4354, 2), -- Clan Hall: Vampiric Rage
+(31379, 4355, 2), -- Clan Hall: Acumen
+(31379, 4356, 1), -- Clan Hall: Empower
+(31379, 4357, 2), -- Clan Hall: Haste
+(31379, 4359, 2), -- Clan Hall: Focus
+(31379, 4360, 2), -- Clan Hall: Death Whisper
+(31379, 4408, 1), -- HP Modifiers
+(31379, 4409, 1), -- MP Modifiers
+(31379, 4410, 11), -- P. Atk. Modifiers
+(31379, 4411, 11), -- M. Atk. Modifiers
+(31379, 4412, 11), -- P. Def. Modifiers
+(31379, 4413, 11), -- M. Def. Modifiers
+(31379, 4414, 2), -- Armor Type
+(31379, 4415, 3), -- Weapon Type
+(31379, 4416, 6), -- Races
 -- Diyabu
 (31380, 4045, 1), -- Resist Full Magic Attack
-(31380, 4408, 1), -- HP Increase (1x)
-(31380, 4409, 1), -- MP Increase (1x)
-(31380, 4410, 11), -- Average P. Atk.
-(31380, 4411, 11), -- Average M. Atk.
-(31380, 4412, 11), -- Average P. Def.
-(31380, 4413, 11), -- Average M. Def.
-(31380, 4414, 2), -- Standard Type
-(31380, 4415, 3), -- One-handed Sword
-(31380, 4416, 6), -- Humanoids
+(31380, 4408, 1), -- HP Modifiers
+(31380, 4409, 1), -- MP Modifiers
+(31380, 4410, 11), -- P. Atk. Modifiers
+(31380, 4411, 11), -- M. Atk. Modifiers
+(31380, 4412, 11), -- P. Def. Modifiers
+(31380, 4413, 11), -- M. Def. Modifiers
+(31380, 4414, 2), -- Armor Type
+(31380, 4415, 3), -- Weapon Type
+(31380, 4416, 6), -- Races
 -- Hagos
 (31381, 4045, 1), -- Resist Full Magic Attack
-(31381, 4408, 1), -- HP Increase (1x)
-(31381, 4409, 1), -- MP Increase (1x)
-(31381, 4410, 11), -- Average P. Atk.
-(31381, 4411, 11), -- Average M. Atk.
-(31381, 4412, 11), -- Average P. Def.
-(31381, 4413, 11), -- Average M. Def.
-(31381, 4414, 2), -- Standard Type
-(31381, 4415, 3), -- One-handed Sword
-(31381, 4416, 6), -- Humanoids
+(31381, 4408, 1), -- HP Modifiers
+(31381, 4409, 1), -- MP Modifiers
+(31381, 4410, 11), -- P. Atk. Modifiers
+(31381, 4411, 11), -- M. Atk. Modifiers
+(31381, 4412, 11), -- P. Def. Modifiers
+(31381, 4413, 11), -- M. Def. Modifiers
+(31381, 4414, 2), -- Armor Type
+(31381, 4415, 3), -- Weapon Type
+(31381, 4416, 6), -- Races
 -- Shikon
 (31382, 4045, 1), -- Resist Full Magic Attack
-(31382, 4408, 1), -- HP Increase (1x)
-(31382, 4409, 1), -- MP Increase (1x)
-(31382, 4410, 11), -- Average P. Atk.
-(31382, 4411, 11), -- Average M. Atk.
-(31382, 4412, 11), -- Average P. Def.
-(31382, 4413, 11), -- Average M. Def.
-(31382, 4414, 2), -- Standard Type
-(31382, 4415, 3), -- One-handed Sword
-(31382, 4416, 6), -- Humanoids
+(31382, 4408, 1), -- HP Modifiers
+(31382, 4409, 1), -- MP Modifiers
+(31382, 4410, 11), -- P. Atk. Modifiers
+(31382, 4411, 11), -- M. Atk. Modifiers
+(31382, 4412, 11), -- P. Def. Modifiers
+(31382, 4413, 11), -- M. Def. Modifiers
+(31382, 4414, 2), -- Armor Type
+(31382, 4415, 3), -- Weapon Type
+(31382, 4416, 6), -- Races
 -- Teranu Mardui
 (31383, 4045, 1), -- Resist Full Magic Attack
-(31383, 4408, 1), -- HP Increase (1x)
-(31383, 4409, 1), -- MP Increase (1x)
-(31383, 4410, 11), -- Average P. Atk.
-(31383, 4411, 11), -- Average M. Atk.
-(31383, 4412, 11), -- Average P. Def.
-(31383, 4413, 11), -- Average M. Def.
-(31383, 4414, 2), -- Standard Type
-(31383, 4415, 3), -- One-handed Sword
-(31383, 4416, 6), -- Humanoids
+(31383, 4408, 1), -- HP Modifiers
+(31383, 4409, 1), -- MP Modifiers
+(31383, 4410, 11), -- P. Atk. Modifiers
+(31383, 4411, 11), -- M. Atk. Modifiers
+(31383, 4412, 11), -- P. Def. Modifiers
+(31383, 4413, 11), -- M. Def. Modifiers
+(31383, 4414, 2), -- Armor Type
+(31383, 4415, 3), -- Weapon Type
+(31383, 4416, 6), -- Races
 -- Gatekeeper of Fire Dragon
 (31384, 4045, 1), -- Resist Full Magic Attack
-(31384, 4408, 1), -- HP Increase (1x)
-(31384, 4409, 1), -- MP Increase (1x)
-(31384, 4410, 11), -- Average P. Atk.
-(31384, 4411, 11), -- Average M. Atk.
-(31384, 4412, 11), -- Average P. Def.
-(31384, 4413, 11), -- Average M. Def.
-(31384, 4414, 2), -- Standard Type
-(31384, 4415, 3), -- One-handed Sword
-(31384, 4416, 1), -- Undead
+(31384, 4408, 1), -- HP Modifiers
+(31384, 4409, 1), -- MP Modifiers
+(31384, 4410, 11), -- P. Atk. Modifiers
+(31384, 4411, 11), -- M. Atk. Modifiers
+(31384, 4412, 11), -- P. Def. Modifiers
+(31384, 4413, 11), -- M. Def. Modifiers
+(31384, 4414, 2), -- Armor Type
+(31384, 4415, 3), -- Weapon Type
+(31384, 4416, 1), -- Races
 -- Heart of Volcano
 (31385, 4045, 1), -- Resist Full Magic Attack
-(31385, 4390, 1), -- Mystic Immunity
-(31385, 4408, 1), -- HP Increase (1x)
-(31385, 4409, 1), -- MP Increase (1x)
-(31385, 4410, 11), -- Average P. Atk.
-(31385, 4411, 11), -- Average M. Atk.
-(31385, 4412, 11), -- Average P. Def.
-(31385, 4413, 11), -- Average M. Def.
-(31385, 4414, 2), -- Standard Type
-(31385, 4415, 3), -- One-handed Sword
-(31385, 4416, 19), -- Others
+(31385, 4390, 1), -- NPC Abnormal Immunity
+(31385, 4408, 1), -- HP Modifiers
+(31385, 4409, 1), -- MP Modifiers
+(31385, 4410, 11), -- P. Atk. Modifiers
+(31385, 4411, 11), -- M. Atk. Modifiers
+(31385, 4412, 11), -- P. Def. Modifiers
+(31385, 4413, 11), -- M. Def. Modifiers
+(31385, 4414, 2), -- Armor Type
+(31385, 4415, 3), -- Weapon Type
+(31385, 4416, 19), -- Races
 -- Violet
 (31386, 4045, 1), -- Resist Full Magic Attack
-(31386, 4408, 1), -- HP Increase (1x)
-(31386, 4409, 1), -- MP Increase (1x)
-(31386, 4410, 11), -- Average P. Atk.
-(31386, 4411, 11), -- Average M. Atk.
-(31386, 4412, 11), -- Average P. Def.
-(31386, 4413, 11), -- Average M. Def.
-(31386, 4414, 2), -- Standard Type
-(31386, 4415, 3), -- One-handed Sword
-(31386, 4416, 14), -- Humans
+(31386, 4408, 1), -- HP Modifiers
+(31386, 4409, 1), -- MP Modifiers
+(31386, 4410, 11), -- P. Atk. Modifiers
+(31386, 4411, 11), -- M. Atk. Modifiers
+(31386, 4412, 11), -- P. Def. Modifiers
+(31386, 4413, 11), -- M. Def. Modifiers
+(31386, 4414, 2), -- Armor Type
+(31386, 4415, 3), -- Weapon Type
+(31386, 4416, 14), -- Races
 -- Kurstin
 (31387, 4045, 1), -- Resist Full Magic Attack
-(31387, 4408, 1), -- HP Increase (1x)
-(31387, 4409, 1), -- MP Increase (1x)
-(31387, 4410, 11), -- Average P. Atk.
-(31387, 4411, 11), -- Average M. Atk.
-(31387, 4412, 11), -- Average P. Def.
-(31387, 4413, 11), -- Average M. Def.
-(31387, 4414, 2), -- Standard Type
-(31387, 4415, 3), -- One-handed Sword
-(31387, 4416, 14), -- Humans
+(31387, 4408, 1), -- HP Modifiers
+(31387, 4409, 1), -- MP Modifiers
+(31387, 4410, 11), -- P. Atk. Modifiers
+(31387, 4411, 11), -- M. Atk. Modifiers
+(31387, 4412, 11), -- P. Def. Modifiers
+(31387, 4413, 11), -- M. Def. Modifiers
+(31387, 4414, 2), -- Armor Type
+(31387, 4415, 3), -- Weapon Type
+(31387, 4416, 14), -- Races
 -- Mina
 (31388, 4045, 1), -- Resist Full Magic Attack
-(31388, 4408, 1), -- HP Increase (1x)
-(31388, 4409, 1), -- MP Increase (1x)
-(31388, 4410, 11), -- Average P. Atk.
-(31388, 4411, 11), -- Average M. Atk.
-(31388, 4412, 11), -- Average P. Def.
-(31388, 4413, 11), -- Average M. Def.
-(31388, 4414, 2), -- Standard Type
-(31388, 4415, 3), -- One-handed Sword
-(31388, 4416, 14), -- Humans
+(31388, 4408, 1), -- HP Modifiers
+(31388, 4409, 1), -- MP Modifiers
+(31388, 4410, 11), -- P. Atk. Modifiers
+(31388, 4411, 11), -- M. Atk. Modifiers
+(31388, 4412, 11), -- P. Def. Modifiers
+(31388, 4413, 11), -- M. Def. Modifiers
+(31388, 4414, 2), -- Armor Type
+(31388, 4415, 3), -- Weapon Type
+(31388, 4416, 14), -- Races
 -- Dorian
 (31389, 4045, 1), -- Resist Full Magic Attack
-(31389, 4408, 1), -- HP Increase (1x)
-(31389, 4409, 1), -- MP Increase (1x)
-(31389, 4410, 11), -- Average P. Atk.
-(31389, 4411, 11), -- Average M. Atk.
-(31389, 4412, 11), -- Average P. Def.
-(31389, 4413, 11), -- Average M. Def.
-(31389, 4414, 2), -- Standard Type
-(31389, 4415, 3), -- One-handed Sword
-(31389, 4416, 14), -- Humans
+(31389, 4408, 1), -- HP Modifiers
+(31389, 4409, 1), -- MP Modifiers
+(31389, 4410, 11), -- P. Atk. Modifiers
+(31389, 4411, 11), -- M. Atk. Modifiers
+(31389, 4412, 11), -- P. Def. Modifiers
+(31389, 4413, 11), -- M. Def. Modifiers
+(31389, 4414, 2), -- Armor Type
+(31389, 4415, 3), -- Weapon Type
+(31389, 4416, 14), -- Races
 -- Dummy - Boy A
 (31390, 4045, 1), -- Resist Full Magic Attack
-(31390, 4408, 1), -- HP Increase (1x)
-(31390, 4409, 1), -- MP Increase (1x)
-(31390, 4410, 11), -- Average P. Atk.
-(31390, 4411, 11), -- Average M. Atk.
-(31390, 4412, 11), -- Average P. Def.
-(31390, 4413, 11), -- Average M. Def.
-(31390, 4414, 2), -- Standard Type
-(31390, 4415, 3), -- One-handed Sword
-(31390, 4416, 14), -- Humans
+(31390, 4408, 1), -- HP Modifiers
+(31390, 4409, 1), -- MP Modifiers
+(31390, 4410, 11), -- P. Atk. Modifiers
+(31390, 4411, 11), -- M. Atk. Modifiers
+(31390, 4412, 11), -- P. Def. Modifiers
+(31390, 4413, 11), -- M. Def. Modifiers
+(31390, 4414, 2), -- Armor Type
+(31390, 4415, 3), -- Weapon Type
+(31390, 4416, 14), -- Races
 -- Dummy - Boy B
 (31391, 4045, 1), -- Resist Full Magic Attack
-(31391, 4408, 1), -- HP Increase (1x)
-(31391, 4409, 1), -- MP Increase (1x)
-(31391, 4410, 11), -- Average P. Atk.
-(31391, 4411, 11), -- Average M. Atk.
-(31391, 4412, 11), -- Average P. Def.
-(31391, 4413, 11), -- Average M. Def.
-(31391, 4414, 2), -- Standard Type
-(31391, 4415, 3), -- One-handed Sword
-(31391, 4416, 14), -- Humans
+(31391, 4408, 1), -- HP Modifiers
+(31391, 4409, 1), -- MP Modifiers
+(31391, 4410, 11), -- P. Atk. Modifiers
+(31391, 4411, 11), -- M. Atk. Modifiers
+(31391, 4412, 11), -- P. Def. Modifiers
+(31391, 4413, 11), -- M. Def. Modifiers
+(31391, 4414, 2), -- Armor Type
+(31391, 4415, 3), -- Weapon Type
+(31391, 4416, 14), -- Races
 -- Dummy - Boy C
 (31392, 4045, 1), -- Resist Full Magic Attack
-(31392, 4408, 1), -- HP Increase (1x)
-(31392, 4409, 1), -- MP Increase (1x)
-(31392, 4410, 11), -- Average P. Atk.
-(31392, 4411, 11), -- Average M. Atk.
-(31392, 4412, 11), -- Average P. Def.
-(31392, 4413, 11), -- Average M. Def.
-(31392, 4414, 2), -- Standard Type
-(31392, 4415, 3), -- One-handed Sword
-(31392, 4416, 14), -- Humans
+(31392, 4408, 1), -- HP Modifiers
+(31392, 4409, 1), -- MP Modifiers
+(31392, 4410, 11), -- P. Atk. Modifiers
+(31392, 4411, 11), -- M. Atk. Modifiers
+(31392, 4412, 11), -- P. Def. Modifiers
+(31392, 4413, 11), -- M. Def. Modifiers
+(31392, 4414, 2), -- Armor Type
+(31392, 4415, 3), -- Weapon Type
+(31392, 4416, 14), -- Races
 -- Dummy - Boy D
 (31393, 4045, 1), -- Resist Full Magic Attack
-(31393, 4408, 1), -- HP Increase (1x)
-(31393, 4409, 1), -- MP Increase (1x)
-(31393, 4410, 11), -- Average P. Atk.
-(31393, 4411, 11), -- Average M. Atk.
-(31393, 4412, 11), -- Average P. Def.
-(31393, 4413, 11), -- Average M. Def.
-(31393, 4414, 2), -- Standard Type
-(31393, 4415, 3), -- One-handed Sword
-(31393, 4416, 14), -- Humans
+(31393, 4408, 1), -- HP Modifiers
+(31393, 4409, 1), -- MP Modifiers
+(31393, 4410, 11), -- P. Atk. Modifiers
+(31393, 4411, 11), -- M. Atk. Modifiers
+(31393, 4412, 11), -- P. Def. Modifiers
+(31393, 4413, 11), -- M. Def. Modifiers
+(31393, 4414, 2), -- Armor Type
+(31393, 4415, 3), -- Weapon Type
+(31393, 4416, 14), -- Races
 -- Dummy - Boy E
 (31394, 4045, 1), -- Resist Full Magic Attack
-(31394, 4408, 1), -- HP Increase (1x)
-(31394, 4409, 1), -- MP Increase (1x)
-(31394, 4410, 11), -- Average P. Atk.
-(31394, 4411, 11), -- Average M. Atk.
-(31394, 4412, 11), -- Average P. Def.
-(31394, 4413, 11), -- Average M. Def.
-(31394, 4414, 2), -- Standard Type
-(31394, 4415, 3), -- One-handed Sword
-(31394, 4416, 14), -- Humans
+(31394, 4408, 1), -- HP Modifiers
+(31394, 4409, 1), -- MP Modifiers
+(31394, 4410, 11), -- P. Atk. Modifiers
+(31394, 4411, 11), -- M. Atk. Modifiers
+(31394, 4412, 11), -- P. Def. Modifiers
+(31394, 4413, 11), -- M. Def. Modifiers
+(31394, 4414, 2), -- Armor Type
+(31394, 4415, 3), -- Weapon Type
+(31394, 4416, 14), -- Races
 -- Dummy - Lady F
 (31395, 4045, 1), -- Resist Full Magic Attack
-(31395, 4408, 1), -- HP Increase (1x)
-(31395, 4409, 1), -- MP Increase (1x)
-(31395, 4410, 11), -- Average P. Atk.
-(31395, 4411, 11), -- Average M. Atk.
-(31395, 4412, 11), -- Average P. Def.
-(31395, 4413, 11), -- Average M. Def.
-(31395, 4414, 2), -- Standard Type
-(31395, 4415, 3), -- One-handed Sword
-(31395, 4416, 14), -- Humans
+(31395, 4408, 1), -- HP Modifiers
+(31395, 4409, 1), -- MP Modifiers
+(31395, 4410, 11), -- P. Atk. Modifiers
+(31395, 4411, 11), -- M. Atk. Modifiers
+(31395, 4412, 11), -- P. Def. Modifiers
+(31395, 4413, 11), -- M. Def. Modifiers
+(31395, 4414, 2), -- Armor Type
+(31395, 4415, 3), -- Weapon Type
+(31395, 4416, 14), -- Races
 -- Dummy - Lady G
 (31396, 4045, 1), -- Resist Full Magic Attack
-(31396, 4408, 1), -- HP Increase (1x)
-(31396, 4409, 1), -- MP Increase (1x)
-(31396, 4410, 11), -- Average P. Atk.
-(31396, 4411, 11), -- Average M. Atk.
-(31396, 4412, 11), -- Average P. Def.
-(31396, 4413, 11), -- Average M. Def.
-(31396, 4414, 2), -- Standard Type
-(31396, 4415, 3), -- One-handed Sword
-(31396, 4416, 14), -- Humans
+(31396, 4408, 1), -- HP Modifiers
+(31396, 4409, 1), -- MP Modifiers
+(31396, 4410, 11), -- P. Atk. Modifiers
+(31396, 4411, 11), -- M. Atk. Modifiers
+(31396, 4412, 11), -- P. Def. Modifiers
+(31396, 4413, 11), -- M. Def. Modifiers
+(31396, 4414, 2), -- Armor Type
+(31396, 4415, 3), -- Weapon Type
+(31396, 4416, 14), -- Races
 -- Dummy - Lady H
 (31397, 4045, 1), -- Resist Full Magic Attack
-(31397, 4408, 1), -- HP Increase (1x)
-(31397, 4409, 1), -- MP Increase (1x)
-(31397, 4410, 11), -- Average P. Atk.
-(31397, 4411, 11), -- Average M. Atk.
-(31397, 4412, 11), -- Average P. Def.
-(31397, 4413, 11), -- Average M. Def.
-(31397, 4414, 2), -- Standard Type
-(31397, 4415, 3), -- One-handed Sword
-(31397, 4416, 14), -- Humans
+(31397, 4408, 1), -- HP Modifiers
+(31397, 4409, 1), -- MP Modifiers
+(31397, 4410, 11), -- P. Atk. Modifiers
+(31397, 4411, 11), -- M. Atk. Modifiers
+(31397, 4412, 11), -- P. Def. Modifiers
+(31397, 4413, 11), -- M. Def. Modifiers
+(31397, 4414, 2), -- Armor Type
+(31397, 4415, 3), -- Weapon Type
+(31397, 4416, 14), -- Races
 -- Dummy - Lady I
 (31398, 4045, 1), -- Resist Full Magic Attack
-(31398, 4408, 1), -- HP Increase (1x)
-(31398, 4409, 1), -- MP Increase (1x)
-(31398, 4410, 11), -- Average P. Atk.
-(31398, 4411, 11), -- Average M. Atk.
-(31398, 4412, 11), -- Average P. Def.
-(31398, 4413, 11), -- Average M. Def.
-(31398, 4414, 2), -- Standard Type
-(31398, 4415, 3), -- One-handed Sword
-(31398, 4416, 14), -- Humans
+(31398, 4408, 1), -- HP Modifiers
+(31398, 4409, 1), -- MP Modifiers
+(31398, 4410, 11), -- P. Atk. Modifiers
+(31398, 4411, 11), -- M. Atk. Modifiers
+(31398, 4412, 11), -- P. Def. Modifiers
+(31398, 4413, 11), -- M. Def. Modifiers
+(31398, 4414, 2), -- Armor Type
+(31398, 4415, 3), -- Weapon Type
+(31398, 4416, 14), -- Races
 -- Dummy - Lady J
 (31399, 4045, 1), -- Resist Full Magic Attack
-(31399, 4408, 1), -- HP Increase (1x)
-(31399, 4409, 1), -- MP Increase (1x)
-(31399, 4410, 11), -- Average P. Atk.
-(31399, 4411, 11), -- Average M. Atk.
-(31399, 4412, 11), -- Average P. Def.
-(31399, 4413, 11), -- Average M. Def.
-(31399, 4414, 2), -- Standard Type
-(31399, 4415, 3), -- One-handed Sword
-(31399, 4416, 14), -- Humans
+(31399, 4408, 1), -- HP Modifiers
+(31399, 4409, 1), -- MP Modifiers
+(31399, 4410, 11), -- P. Atk. Modifiers
+(31399, 4411, 11); -- M. Atk. Modifiers
+
+INSERT INTO `npcskills` VALUES
+(31399, 4412, 11), -- P. Def. Modifiers
+(31399, 4413, 11), -- M. Def. Modifiers
+(31399, 4414, 2), -- Armor Type
+(31399, 4415, 3), -- Weapon Type
+(31399, 4416, 14), -- Races
 -- Dummy - Sword Guard
 (31400, 4045, 1), -- Resist Full Magic Attack
-(31400, 4408, 1), -- HP Increase (1x)
-(31400, 4409, 1), -- MP Increase (1x)
-(31400, 4410, 16), -- Very Strong P. Atk.
-(31400, 4411, 16), -- Very Strong M. Atk.
-(31400, 4412, 16), -- Very Strong P. Def.
-(31400, 4413, 16), -- Very Strong M. Def.
-(31400, 4414, 2), -- Standard Type
-(31400, 4415, 3), -- One-handed Sword
-(31400, 4416, 14), -- Humans
+(31400, 4408, 1), -- HP Modifiers
+(31400, 4409, 1), -- MP Modifiers
+(31400, 4410, 16), -- P. Atk. Modifiers
+(31400, 4411, 16), -- M. Atk. Modifiers
+(31400, 4412, 16), -- P. Def. Modifiers
+(31400, 4413, 16), -- M. Def. Modifiers
+(31400, 4414, 2), -- Armor Type
+(31400, 4415, 3), -- Weapon Type
+(31400, 4416, 14), -- Races
 -- Dummy - Bow Guard
 (31401, 4045, 1), -- Resist Full Magic Attack
-(31401, 4408, 1), -- HP Increase (1x)
-(31401, 4409, 1), -- MP Increase (1x)
-(31401, 4410, 16), -- Very Strong P. Atk.
-(31401, 4411, 16), -- Very Strong M. Atk.
-(31401, 4412, 16), -- Very Strong P. Def.
-(31401, 4413, 16), -- Very Strong M. Def.
-(31401, 4414, 2), -- Standard Type
-(31401, 4415, 3), -- One-handed Sword
-(31401, 4416, 14), -- Humans
+(31401, 4408, 1), -- HP Modifiers
+(31401, 4409, 1), -- MP Modifiers
+(31401, 4410, 16), -- P. Atk. Modifiers
+(31401, 4411, 16), -- M. Atk. Modifiers
+(31401, 4412, 16), -- P. Def. Modifiers
+(31401, 4413, 16), -- M. Def. Modifiers
+(31401, 4414, 2), -- Armor Type
+(31401, 4415, 3), -- Weapon Type
+(31401, 4416, 14), -- Races
 -- Monster Race Guide
 (31404, 4045, 1), -- Resist Full Magic Attack
-(31404, 4408, 1), -- HP Increase (1x)
-(31404, 4409, 1), -- MP Increase (1x)
-(31404, 4410, 11), -- Average P. Atk.
-(31404, 4411, 11), -- Average M. Atk.
-(31404, 4412, 11), -- Average P. Def.
-(31404, 4413, 11), -- Average M. Def.
-(31404, 4414, 2), -- Standard Type
-(31404, 4415, 3), -- One-handed Sword
-(31404, 4416, 18), -- Dwarves
+(31404, 4408, 1), -- HP Modifiers
+(31404, 4409, 1), -- MP Modifiers
+(31404, 4410, 11), -- P. Atk. Modifiers
+(31404, 4411, 11), -- M. Atk. Modifiers
+(31404, 4412, 11), -- P. Def. Modifiers
+(31404, 4413, 11), -- M. Def. Modifiers
+(31404, 4414, 2), -- Armor Type
+(31404, 4415, 3), -- Weapon Type
+(31404, 4416, 18), -- Races
 -- Monster Race Guide
 (31405, 4045, 1), -- Resist Full Magic Attack
-(31405, 4408, 1), -- HP Increase (1x)
-(31405, 4409, 1), -- MP Increase (1x)
-(31405, 4410, 11), -- Average P. Atk.
-(31405, 4411, 11), -- Average M. Atk.
-(31405, 4412, 11), -- Average P. Def.
-(31405, 4413, 11), -- Average M. Def.
-(31405, 4414, 2), -- Standard Type
-(31405, 4415, 3), -- One-handed Sword
-(31405, 4416, 18), -- Dwarves
+(31405, 4408, 1), -- HP Modifiers
+(31405, 4409, 1), -- MP Modifiers
+(31405, 4410, 11), -- P. Atk. Modifiers
+(31405, 4411, 11), -- M. Atk. Modifiers
+(31405, 4412, 11), -- P. Def. Modifiers
+(31405, 4413, 11), -- M. Def. Modifiers
+(31405, 4414, 2), -- Armor Type
+(31405, 4415, 3), -- Weapon Type
+(31405, 4416, 18), -- Races
 -- Monster Race Guide
 (31406, 4045, 1), -- Resist Full Magic Attack
-(31406, 4408, 1), -- HP Increase (1x)
-(31406, 4409, 1), -- MP Increase (1x)
-(31406, 4410, 11), -- Average P. Atk.
-(31406, 4411, 11), -- Average M. Atk.
-(31406, 4412, 11), -- Average P. Def.
-(31406, 4413, 11), -- Average M. Def.
-(31406, 4414, 2), -- Standard Type
-(31406, 4415, 3), -- One-handed Sword
-(31406, 4416, 18), -- Dwarves
+(31406, 4408, 1), -- HP Modifiers
+(31406, 4409, 1), -- MP Modifiers
+(31406, 4410, 11), -- P. Atk. Modifiers
+(31406, 4411, 11), -- M. Atk. Modifiers
+(31406, 4412, 11), -- P. Def. Modifiers
+(31406, 4413, 11), -- M. Def. Modifiers
+(31406, 4414, 2), -- Armor Type
+(31406, 4415, 3), -- Weapon Type
+(31406, 4416, 18), -- Races
 -- Monster Race Guide
 (31407, 4045, 1), -- Resist Full Magic Attack
-(31407, 4408, 1), -- HP Increase (1x)
-(31407, 4409, 1), -- MP Increase (1x)
-(31407, 4410, 11), -- Average P. Atk.
-(31407, 4411, 11), -- Average M. Atk.
-(31407, 4412, 11), -- Average P. Def.
-(31407, 4413, 11), -- Average M. Def.
-(31407, 4414, 2), -- Standard Type
-(31407, 4415, 3), -- One-handed Sword
-(31407, 4416, 18), -- Dwarves
+(31407, 4408, 1), -- HP Modifiers
+(31407, 4409, 1), -- MP Modifiers
+(31407, 4410, 11), -- P. Atk. Modifiers
+(31407, 4411, 11), -- M. Atk. Modifiers
+(31407, 4412, 11), -- P. Def. Modifiers
+(31407, 4413, 11), -- M. Def. Modifiers
+(31407, 4414, 2), -- Armor Type
+(31407, 4415, 3), -- Weapon Type
+(31407, 4416, 18), -- Races
 -- Monster Race Guide
 (31408, 4045, 1), -- Resist Full Magic Attack
-(31408, 4408, 1), -- HP Increase (1x)
-(31408, 4409, 1), -- MP Increase (1x)
-(31408, 4410, 11), -- Average P. Atk.
-(31408, 4411, 11), -- Average M. Atk.
-(31408, 4412, 11), -- Average P. Def.
-(31408, 4413, 11), -- Average M. Def.
-(31408, 4414, 2), -- Standard Type
-(31408, 4415, 3), -- One-handed Sword
-(31408, 4416, 18), -- Dwarves
+(31408, 4408, 1), -- HP Modifiers
+(31408, 4409, 1), -- MP Modifiers
+(31408, 4410, 11), -- P. Atk. Modifiers
+(31408, 4411, 11), -- M. Atk. Modifiers
+(31408, 4412, 11), -- P. Def. Modifiers
+(31408, 4413, 11), -- M. Def. Modifiers
+(31408, 4414, 2), -- Armor Type
+(31408, 4415, 3), -- Weapon Type
+(31408, 4416, 18), -- Races
 -- Monster Race Guide
 (31409, 4045, 1), -- Resist Full Magic Attack
-(31409, 4408, 1), -- HP Increase (1x)
-(31409, 4409, 1), -- MP Increase (1x)
-(31409, 4410, 11), -- Average P. Atk.
-(31409, 4411, 11), -- Average M. Atk.
-(31409, 4412, 11), -- Average P. Def.
-(31409, 4413, 11), -- Average M. Def.
-(31409, 4414, 2), -- Standard Type
-(31409, 4415, 3), -- One-handed Sword
-(31409, 4416, 18), -- Dwarves
+(31409, 4408, 1), -- HP Modifiers
+(31409, 4409, 1), -- MP Modifiers
+(31409, 4410, 11), -- P. Atk. Modifiers
+(31409, 4411, 11), -- M. Atk. Modifiers
+(31409, 4412, 11), -- P. Def. Modifiers
+(31409, 4413, 11), -- M. Def. Modifiers
+(31409, 4414, 2), -- Armor Type
+(31409, 4415, 3), -- Weapon Type
+(31409, 4416, 18), -- Races
 -- Monster Race Guide
 (31410, 4045, 1), -- Resist Full Magic Attack
-(31410, 4408, 1), -- HP Increase (1x)
-(31410, 4409, 1), -- MP Increase (1x)
-(31410, 4410, 11), -- Average P. Atk.
-(31410, 4411, 11), -- Average M. Atk.
-(31410, 4412, 11), -- Average P. Def.
-(31410, 4413, 11), -- Average M. Def.
-(31410, 4414, 2), -- Standard Type
-(31410, 4415, 3), -- One-handed Sword
-(31410, 4416, 18), -- Dwarves
+(31410, 4408, 1), -- HP Modifiers
+(31410, 4409, 1), -- MP Modifiers
+(31410, 4410, 11), -- P. Atk. Modifiers
+(31410, 4411, 11), -- M. Atk. Modifiers
+(31410, 4412, 11), -- P. Def. Modifiers
+(31410, 4413, 11), -- M. Def. Modifiers
+(31410, 4414, 2), -- Armor Type
+(31410, 4415, 3), -- Weapon Type
+(31410, 4416, 18), -- Races
 -- Monster Race Guide
 (31411, 4045, 1), -- Resist Full Magic Attack
-(31411, 4408, 1), -- HP Increase (1x)
-(31411, 4409, 1), -- MP Increase (1x)
-(31411, 4410, 11), -- Average P. Atk.
-(31411, 4411, 11), -- Average M. Atk.
-(31411, 4412, 11), -- Average P. Def.
-(31411, 4413, 11), -- Average M. Def.
-(31411, 4414, 2), -- Standard Type
-(31411, 4415, 3), -- One-handed Sword
-(31411, 4416, 18), -- Dwarves
+(31411, 4408, 1), -- HP Modifiers
+(31411, 4409, 1), -- MP Modifiers
+(31411, 4410, 11), -- P. Atk. Modifiers
+(31411, 4411, 11), -- M. Atk. Modifiers
+(31411, 4412, 11), -- P. Def. Modifiers
+(31411, 4413, 11), -- M. Def. Modifiers
+(31411, 4414, 2), -- Armor Type
+(31411, 4415, 3), -- Weapon Type
+(31411, 4416, 18), -- Races
 -- Monster Race Guide
 (31412, 4045, 1), -- Resist Full Magic Attack
-(31412, 4408, 1), -- HP Increase (1x)
-(31412, 4409, 1), -- MP Increase (1x)
-(31412, 4410, 11), -- Average P. Atk.
-(31412, 4411, 11), -- Average M. Atk.
-(31412, 4412, 11), -- Average P. Def.
-(31412, 4413, 11), -- Average M. Def.
-(31412, 4414, 2), -- Standard Type
-(31412, 4415, 3), -- One-handed Sword
-(31412, 4416, 18), -- Dwarves
+(31412, 4408, 1), -- HP Modifiers
+(31412, 4409, 1), -- MP Modifiers
+(31412, 4410, 11), -- P. Atk. Modifiers
+(31412, 4411, 11), -- M. Atk. Modifiers
+(31412, 4412, 11), -- P. Def. Modifiers
+(31412, 4413, 11), -- M. Def. Modifiers
+(31412, 4414, 2), -- Armor Type
+(31412, 4415, 3), -- Weapon Type
+(31412, 4416, 18), -- Races
 -- Antonio
 (31413, 4045, 1), -- Resist Full Magic Attack
-(31413, 4408, 1), -- HP Increase (1x)
-(31413, 4409, 1), -- MP Increase (1x)
-(31413, 4410, 11), -- Average P. Atk.
-(31413, 4411, 11), -- Average M. Atk.
-(31413, 4412, 11), -- Average P. Def.
-(31413, 4413, 11), -- Average M. Def.
-(31413, 4414, 2), -- Standard Type
-(31413, 4415, 3), -- One-handed Sword
-(31413, 4416, 14), -- Humans
+(31413, 4408, 1), -- HP Modifiers
+(31413, 4409, 1), -- MP Modifiers
+(31413, 4410, 11), -- P. Atk. Modifiers
+(31413, 4411, 11), -- M. Atk. Modifiers
+(31413, 4412, 11), -- P. Def. Modifiers
+(31413, 4413, 11), -- M. Def. Modifiers
+(31413, 4414, 2), -- Armor Type
+(31413, 4415, 3), -- Weapon Type
+(31413, 4416, 14), -- Races
 -- Lynn
 (31414, 4045, 1), -- Resist Full Magic Attack
-(31414, 4408, 1), -- HP Increase (1x)
-(31414, 4409, 1), -- MP Increase (1x)
-(31414, 4410, 11), -- Average P. Atk.
-(31414, 4411, 11), -- Average M. Atk.
-(31414, 4412, 11), -- Average P. Def.
-(31414, 4413, 11), -- Average M. Def.
-(31414, 4414, 2), -- Standard Type
-(31414, 4415, 3), -- One-handed Sword
-(31414, 4416, 15), -- Elves
+(31414, 4408, 1), -- HP Modifiers
+(31414, 4409, 1), -- MP Modifiers
+(31414, 4410, 11), -- P. Atk. Modifiers
+(31414, 4411, 11), -- M. Atk. Modifiers
+(31414, 4412, 11), -- P. Def. Modifiers
+(31414, 4413, 11), -- M. Def. Modifiers
+(31414, 4414, 2), -- Armor Type
+(31414, 4415, 3), -- Weapon Type
+(31414, 4416, 15), -- Races
 -- Triya
 (31415, 4045, 1), -- Resist Full Magic Attack
-(31415, 4408, 1), -- HP Increase (1x)
-(31415, 4409, 1), -- MP Increase (1x)
-(31415, 4410, 11), -- Average P. Atk.
-(31415, 4411, 11), -- Average M. Atk.
-(31415, 4412, 11), -- Average P. Def.
-(31415, 4413, 11), -- Average M. Def.
-(31415, 4414, 2), -- Standard Type
-(31415, 4415, 3), -- One-handed Sword
-(31415, 4416, 16), -- Dark Elves
+(31415, 4408, 1), -- HP Modifiers
+(31415, 4409, 1), -- MP Modifiers
+(31415, 4410, 11), -- P. Atk. Modifiers
+(31415, 4411, 11), -- M. Atk. Modifiers
+(31415, 4412, 11), -- P. Def. Modifiers
+(31415, 4413, 11), -- M. Def. Modifiers
+(31415, 4414, 2), -- Armor Type
+(31415, 4415, 3), -- Weapon Type
+(31415, 4416, 16), -- Races
 -- Aren
 (31416, 4045, 1), -- Resist Full Magic Attack
-(31416, 4408, 1), -- HP Increase (1x)
-(31416, 4409, 1), -- MP Increase (1x)
-(31416, 4410, 11), -- Average P. Atk.
-(31416, 4411, 11), -- Average M. Atk.
-(31416, 4412, 11), -- Average P. Def.
-(31416, 4413, 11), -- Average M. Def.
-(31416, 4414, 2), -- Standard Type
-(31416, 4415, 3), -- One-handed Sword
-(31416, 4416, 14), -- Humans
+(31416, 4408, 1), -- HP Modifiers
+(31416, 4409, 1), -- MP Modifiers
+(31416, 4410, 11), -- P. Atk. Modifiers
+(31416, 4411, 11), -- M. Atk. Modifiers
+(31416, 4412, 11), -- P. Def. Modifiers
+(31416, 4413, 11), -- M. Def. Modifiers
+(31416, 4414, 2), -- Armor Type
+(31416, 4415, 3), -- Weapon Type
+(31416, 4416, 14), -- Races
 -- Berynel
 (31417, 4045, 1), -- Resist Full Magic Attack
-(31417, 4408, 1), -- HP Increase (1x)
-(31417, 4409, 1), -- MP Increase (1x)
-(31417, 4410, 11), -- Average P. Atk.
-(31417, 4411, 11), -- Average M. Atk.
-(31417, 4412, 11), -- Average P. Def.
-(31417, 4413, 11), -- Average M. Def.
-(31417, 4414, 2), -- Standard Type
-(31417, 4415, 3), -- One-handed Sword
-(31417, 4416, 15), -- Elves
+(31417, 4408, 1), -- HP Modifiers
+(31417, 4409, 1), -- MP Modifiers
+(31417, 4410, 11), -- P. Atk. Modifiers
+(31417, 4411, 11), -- M. Atk. Modifiers
+(31417, 4412, 11), -- P. Def. Modifiers
+(31417, 4413, 11), -- M. Def. Modifiers
+(31417, 4414, 2), -- Armor Type
+(31417, 4415, 3), -- Weapon Type
+(31417, 4416, 15), -- Races
 -- Rouke
 (31418, 4045, 1), -- Resist Full Magic Attack
-(31418, 4408, 1), -- HP Increase (1x)
-(31418, 4409, 1), -- MP Increase (1x)
-(31418, 4410, 11), -- Average P. Atk.
-(31418, 4411, 11), -- Average M. Atk.
-(31418, 4412, 11), -- Average P. Def.
-(31418, 4413, 11), -- Average M. Def.
-(31418, 4414, 2), -- Standard Type
-(31418, 4415, 3), -- One-handed Sword
-(31418, 4416, 14), -- Humans
+(31418, 4408, 1), -- HP Modifiers
+(31418, 4409, 1), -- MP Modifiers
+(31418, 4410, 11), -- P. Atk. Modifiers
+(31418, 4411, 11), -- M. Atk. Modifiers
+(31418, 4412, 11), -- P. Def. Modifiers
+(31418, 4413, 11), -- M. Def. Modifiers
+(31418, 4414, 2), -- Armor Type
+(31418, 4415, 3), -- Weapon Type
+(31418, 4416, 14), -- Races
 -- Lorel
 (31419, 4045, 1), -- Resist Full Magic Attack
-(31419, 4408, 1), -- HP Increase (1x)
-(31419, 4409, 1), -- MP Increase (1x)
-(31419, 4410, 11), -- Average P. Atk.
-(31419, 4411, 11), -- Average M. Atk.
-(31419, 4412, 11), -- Average P. Def.
-(31419, 4413, 11), -- Average M. Def.
-(31419, 4414, 2), -- Standard Type
-(31419, 4415, 3), -- One-handed Sword
-(31419, 4416, 15), -- Elves
+(31419, 4408, 1), -- HP Modifiers
+(31419, 4409, 1), -- MP Modifiers
+(31419, 4410, 11), -- P. Atk. Modifiers
+(31419, 4411, 11), -- M. Atk. Modifiers
+(31419, 4412, 11), -- P. Def. Modifiers
+(31419, 4413, 11), -- M. Def. Modifiers
+(31419, 4414, 2), -- Armor Type
+(31419, 4415, 3), -- Weapon Type
+(31419, 4416, 15), -- Races
 -- Tomanel
 (31420, 4045, 1), -- Resist Full Magic Attack
-(31420, 4408, 1), -- HP Increase (1x)
-(31420, 4409, 1), -- MP Increase (1x)
-(31420, 4410, 11), -- Average P. Atk.
-(31420, 4411, 11), -- Average M. Atk.
-(31420, 4412, 11), -- Average P. Def.
-(31420, 4413, 11), -- Average M. Def.
-(31420, 4414, 2), -- Standard Type
-(31420, 4415, 3), -- One-handed Sword
-(31420, 4416, 14), -- Humans
+(31420, 4408, 1), -- HP Modifiers
+(31420, 4409, 1), -- MP Modifiers
+(31420, 4410, 11), -- P. Atk. Modifiers
+(31420, 4411, 11), -- M. Atk. Modifiers
+(31420, 4412, 11), -- P. Def. Modifiers
+(31420, 4413, 11), -- M. Def. Modifiers
+(31420, 4414, 2), -- Armor Type
+(31420, 4415, 3), -- Weapon Type
+(31420, 4416, 14), -- Races
 -- Ratriya
 (31421, 4045, 1), -- Resist Full Magic Attack
-(31421, 4408, 1), -- HP Increase (1x)
-(31421, 4409, 1), -- MP Increase (1x)
-(31421, 4410, 11), -- Average P. Atk.
-(31421, 4411, 11), -- Average M. Atk.
-(31421, 4412, 11), -- Average P. Def.
-(31421, 4413, 11), -- Average M. Def.
-(31421, 4414, 2), -- Standard Type
-(31421, 4415, 3), -- One-handed Sword
-(31421, 4416, 15), -- Elves
+(31421, 4408, 1), -- HP Modifiers
+(31421, 4409, 1), -- MP Modifiers
+(31421, 4410, 11), -- P. Atk. Modifiers
+(31421, 4411, 11), -- M. Atk. Modifiers
+(31421, 4412, 11), -- P. Def. Modifiers
+(31421, 4413, 11), -- M. Def. Modifiers
+(31421, 4414, 2), -- Armor Type
+(31421, 4415, 3), -- Weapon Type
+(31421, 4416, 15), -- Races
 -- Migel
 (31422, 4045, 1), -- Resist Full Magic Attack
-(31422, 4408, 1), -- HP Increase (1x)
-(31422, 4409, 1), -- MP Increase (1x)
-(31422, 4410, 11), -- Average P. Atk.
-(31422, 4411, 11), -- Average M. Atk.
-(31422, 4412, 11), -- Average P. Def.
-(31422, 4413, 11), -- Average M. Def.
-(31422, 4414, 2), -- Standard Type
-(31422, 4415, 3), -- One-handed Sword
-(31422, 4416, 14), -- Humans
+(31422, 4408, 1), -- HP Modifiers
+(31422, 4409, 1), -- MP Modifiers
+(31422, 4410, 11), -- P. Atk. Modifiers
+(31422, 4411, 11), -- M. Atk. Modifiers
+(31422, 4412, 11), -- P. Def. Modifiers
+(31422, 4413, 11), -- M. Def. Modifiers
+(31422, 4414, 2), -- Armor Type
+(31422, 4415, 3), -- Weapon Type
+(31422, 4416, 14), -- Races
 -- Romas
 (31423, 4045, 1), -- Resist Full Magic Attack
-(31423, 4408, 1), -- HP Increase (1x)
-(31423, 4409, 1), -- MP Increase (1x)
-(31423, 4410, 11), -- Average P. Atk.
-(31423, 4411, 11), -- Average M. Atk.
-(31423, 4412, 11), -- Average P. Def.
-(31423, 4413, 11), -- Average M. Def.
-(31423, 4414, 2), -- Standard Type
-(31423, 4415, 3), -- One-handed Sword
-(31423, 4416, 14), -- Humans
+(31423, 4408, 1), -- HP Modifiers
+(31423, 4409, 1), -- MP Modifiers
+(31423, 4410, 11), -- P. Atk. Modifiers
+(31423, 4411, 11), -- M. Atk. Modifiers
+(31423, 4412, 11), -- P. Def. Modifiers
+(31423, 4413, 11), -- M. Def. Modifiers
+(31423, 4414, 2), -- Armor Type
+(31423, 4415, 3), -- Weapon Type
+(31423, 4416, 14), -- Races
 -- Shantra
 (31424, 4045, 1), -- Resist Full Magic Attack
-(31424, 4408, 1), -- HP Increase (1x)
-(31424, 4409, 1), -- MP Increase (1x)
-(31424, 4410, 11), -- Average P. Atk.
-(31424, 4411, 11), -- Average M. Atk.
-(31424, 4412, 11), -- Average P. Def.
-(31424, 4413, 11), -- Average M. Def.
-(31424, 4414, 2), -- Standard Type
-(31424, 4415, 3), -- One-handed Sword
-(31424, 4416, 17), -- Orcs
+(31424, 4408, 1), -- HP Modifiers
+(31424, 4409, 1), -- MP Modifiers
+(31424, 4410, 11), -- P. Atk. Modifiers
+(31424, 4411, 11), -- M. Atk. Modifiers
+(31424, 4412, 11), -- P. Def. Modifiers
+(31424, 4413, 11), -- M. Def. Modifiers
+(31424, 4414, 2), -- Armor Type
+(31424, 4415, 3), -- Weapon Type
+(31424, 4416, 17), -- Races
 -- Koram
 (31425, 4045, 1), -- Resist Full Magic Attack
-(31425, 4408, 1), -- HP Increase (1x)
-(31425, 4409, 1), -- MP Increase (1x)
-(31425, 4410, 11), -- Average P. Atk.
-(31425, 4411, 11), -- Average M. Atk.
-(31425, 4412, 11), -- Average P. Def.
-(31425, 4413, 11), -- Average M. Def.
-(31425, 4414, 2), -- Standard Type
-(31425, 4415, 3), -- One-handed Sword
-(31425, 4416, 17), -- Orcs
+(31425, 4408, 1), -- HP Modifiers
+(31425, 4409, 1), -- MP Modifiers
+(31425, 4410, 11), -- P. Atk. Modifiers
+(31425, 4411, 11), -- M. Atk. Modifiers
+(31425, 4412, 11), -- P. Def. Modifiers
+(31425, 4413, 11), -- M. Def. Modifiers
+(31425, 4414, 2), -- Armor Type
+(31425, 4415, 3), -- Weapon Type
+(31425, 4416, 17), -- Races
 -- Jaka
 (31426, 4045, 1), -- Resist Full Magic Attack
-(31426, 4408, 1), -- HP Increase (1x)
-(31426, 4409, 1), -- MP Increase (1x)
-(31426, 4410, 11), -- Average P. Atk.
-(31426, 4411, 11), -- Average M. Atk.
-(31426, 4412, 11), -- Average P. Def.
-(31426, 4413, 11), -- Average M. Def.
-(31426, 4414, 2), -- Standard Type
-(31426, 4415, 3), -- One-handed Sword
-(31426, 4416, 17), -- Orcs
+(31426, 4408, 1), -- HP Modifiers
+(31426, 4409, 1), -- MP Modifiers
+(31426, 4410, 11), -- P. Atk. Modifiers
+(31426, 4411, 11), -- M. Atk. Modifiers
+(31426, 4412, 11), -- P. Def. Modifiers
+(31426, 4413, 11), -- M. Def. Modifiers
+(31426, 4414, 2), -- Armor Type
+(31426, 4415, 3), -- Weapon Type
+(31426, 4416, 17), -- Races
 -- Urgal
 (31427, 4045, 1), -- Resist Full Magic Attack
-(31427, 4408, 1), -- HP Increase (1x)
-(31427, 4409, 1), -- MP Increase (1x)
-(31427, 4410, 11), -- Average P. Atk.
-(31427, 4411, 11), -- Average M. Atk.
-(31427, 4412, 11), -- Average P. Def.
-(31427, 4413, 11), -- Average M. Def.
-(31427, 4414, 2), -- Standard Type
-(31427, 4415, 3), -- One-handed Sword
-(31427, 4416, 17), -- Orcs
+(31427, 4408, 1), -- HP Modifiers
+(31427, 4409, 1), -- MP Modifiers
+(31427, 4410, 11), -- P. Atk. Modifiers
+(31427, 4411, 11), -- M. Atk. Modifiers
+(31427, 4412, 11), -- P. Def. Modifiers
+(31427, 4413, 11), -- M. Def. Modifiers
+(31427, 4414, 2), -- Armor Type
+(31427, 4415, 3), -- Weapon Type
+(31427, 4416, 17), -- Races
 -- Shafa
 (31428, 4045, 1), -- Resist Full Magic Attack
-(31428, 4408, 1), -- HP Increase (1x)
-(31428, 4409, 1), -- MP Increase (1x)
-(31428, 4410, 11), -- Average P. Atk.
-(31428, 4411, 11), -- Average M. Atk.
-(31428, 4412, 11), -- Average P. Def.
-(31428, 4413, 11), -- Average M. Def.
-(31428, 4414, 2), -- Standard Type
-(31428, 4415, 3), -- One-handed Sword
-(31428, 4416, 17), -- Orcs
+(31428, 4408, 1), -- HP Modifiers
+(31428, 4409, 1), -- MP Modifiers
+(31428, 4410, 11), -- P. Atk. Modifiers
+(31428, 4411, 11), -- M. Atk. Modifiers
+(31428, 4412, 11), -- P. Def. Modifiers
+(31428, 4413, 11), -- M. Def. Modifiers
+(31428, 4414, 2), -- Armor Type
+(31428, 4415, 3), -- Weapon Type
+(31428, 4416, 17), -- Races
 -- Shitara
 (31429, 4045, 1), -- Resist Full Magic Attack
-(31429, 4408, 1), -- HP Increase (1x)
-(31429, 4409, 1), -- MP Increase (1x)
-(31429, 4410, 11), -- Average P. Atk.
-(31429, 4411, 11), -- Average M. Atk.
-(31429, 4412, 11), -- Average P. Def.
-(31429, 4413, 11), -- Average M. Def.
-(31429, 4414, 2), -- Standard Type
-(31429, 4415, 3), -- One-handed Sword
-(31429, 4416, 17), -- Orcs
+(31429, 4408, 1), -- HP Modifiers
+(31429, 4409, 1), -- MP Modifiers
+(31429, 4410, 11), -- P. Atk. Modifiers
+(31429, 4411, 11), -- M. Atk. Modifiers
+(31429, 4412, 11), -- P. Def. Modifiers
+(31429, 4413, 11), -- M. Def. Modifiers
+(31429, 4414, 2), -- Armor Type
+(31429, 4415, 3), -- Weapon Type
+(31429, 4416, 17), -- Races
 -- Donai
 (31430, 4045, 1), -- Resist Full Magic Attack
-(31430, 4408, 1), -- HP Increase (1x)
-(31430, 4409, 1), -- MP Increase (1x)
-(31430, 4410, 11), -- Average P. Atk.
-(31430, 4411, 11), -- Average M. Atk.
-(31430, 4412, 11), -- Average P. Def.
-(31430, 4413, 11), -- Average M. Def.
-(31430, 4414, 2), -- Standard Type
-(31430, 4415, 3), -- One-handed Sword
-(31430, 4416, 17), -- Orcs
+(31430, 4408, 1), -- HP Modifiers
+(31430, 4409, 1), -- MP Modifiers
+(31430, 4410, 11), -- P. Atk. Modifiers
+(31430, 4411, 11), -- M. Atk. Modifiers
+(31430, 4412, 11), -- P. Def. Modifiers
+(31430, 4413, 11), -- M. Def. Modifiers
+(31430, 4414, 2), -- Armor Type
+(31430, 4415, 3), -- Weapon Type
+(31430, 4416, 17), -- Races
 -- Karai
 (31431, 4045, 1), -- Resist Full Magic Attack
-(31431, 4408, 1), -- HP Increase (1x)
-(31431, 4409, 1), -- MP Increase (1x)
-(31431, 4410, 11), -- Average P. Atk.
-(31431, 4411, 11), -- Average M. Atk.
-(31431, 4412, 11), -- Average P. Def.
-(31431, 4413, 11), -- Average M. Def.
-(31431, 4414, 2), -- Standard Type
-(31431, 4415, 3), -- One-handed Sword
-(31431, 4416, 17), -- Orcs
+(31431, 4408, 1), -- HP Modifiers
+(31431, 4409, 1), -- MP Modifiers
+(31431, 4410, 11), -- P. Atk. Modifiers
+(31431, 4411, 11), -- M. Atk. Modifiers
+(31431, 4412, 11), -- P. Def. Modifiers
+(31431, 4413, 11), -- M. Def. Modifiers
+(31431, 4414, 2), -- Armor Type
+(31431, 4415, 3), -- Weapon Type
+(31431, 4416, 17), -- Races
 -- Reeya
 (31432, 4045, 1), -- Resist Full Magic Attack
-(31432, 4408, 1), -- HP Increase (1x)
-(31432, 4409, 1), -- MP Increase (1x)
-(31432, 4410, 11), -- Average P. Atk.
-(31432, 4411, 11), -- Average M. Atk.
-(31432, 4412, 11), -- Average P. Def.
-(31432, 4413, 11), -- Average M. Def.
-(31432, 4414, 2), -- Standard Type
-(31432, 4415, 3), -- One-handed Sword
-(31432, 4416, 18), -- Dwarves
+(31432, 4408, 1), -- HP Modifiers
+(31432, 4409, 1), -- MP Modifiers
+(31432, 4410, 11), -- P. Atk. Modifiers
+(31432, 4411, 11), -- M. Atk. Modifiers
+(31432, 4412, 11), -- P. Def. Modifiers
+(31432, 4413, 11), -- M. Def. Modifiers
+(31432, 4414, 2), -- Armor Type
+(31432, 4415, 3), -- Weapon Type
+(31432, 4416, 18), -- Races
 -- Ronaldo
 (31433, 4045, 1), -- Resist Full Magic Attack
-(31433, 4408, 1), -- HP Increase (1x)
-(31433, 4409, 1), -- MP Increase (1x)
-(31433, 4410, 11), -- Average P. Atk.
-(31433, 4411, 11), -- Average M. Atk.
-(31433, 4412, 11), -- Average P. Def.
-(31433, 4413, 11), -- Average M. Def.
-(31433, 4414, 2), -- Standard Type
-(31433, 4415, 3), -- One-handed Sword
-(31433, 4416, 18), -- Dwarves
+(31433, 4408, 1), -- HP Modifiers
+(31433, 4409, 1), -- MP Modifiers
+(31433, 4410, 11), -- P. Atk. Modifiers
+(31433, 4411, 11), -- M. Atk. Modifiers
+(31433, 4412, 11), -- P. Def. Modifiers
+(31433, 4413, 11), -- M. Def. Modifiers
+(31433, 4414, 2), -- Armor Type
+(31433, 4415, 3), -- Weapon Type
+(31433, 4416, 18), -- Races
 -- Shaling
 (31434, 4045, 1), -- Resist Full Magic Attack
-(31434, 4408, 1), -- HP Increase (1x)
-(31434, 4409, 1), -- MP Increase (1x)
-(31434, 4410, 11), -- Average P. Atk.
-(31434, 4411, 11), -- Average M. Atk.
-(31434, 4412, 11), -- Average P. Def.
-(31434, 4413, 11), -- Average M. Def.
-(31434, 4414, 2), -- Standard Type
-(31434, 4415, 3), -- One-handed Sword
-(31434, 4416, 18), -- Dwarves
+(31434, 4408, 1), -- HP Modifiers
+(31434, 4409, 1), -- MP Modifiers
+(31434, 4410, 11), -- P. Atk. Modifiers
+(31434, 4411, 11), -- M. Atk. Modifiers
+(31434, 4412, 11), -- P. Def. Modifiers
+(31434, 4413, 11), -- M. Def. Modifiers
+(31434, 4414, 2), -- Armor Type
+(31434, 4415, 3), -- Weapon Type
+(31434, 4416, 18), -- Races
 -- Daeger
 (31435, 4045, 1), -- Resist Full Magic Attack
-(31435, 4408, 1), -- HP Increase (1x)
-(31435, 4409, 1), -- MP Increase (1x)
-(31435, 4410, 11), -- Average P. Atk.
-(31435, 4411, 11), -- Average M. Atk.
-(31435, 4412, 11), -- Average P. Def.
-(31435, 4413, 11), -- Average M. Def.
-(31435, 4414, 2), -- Standard Type
-(31435, 4415, 3), -- One-handed Sword
-(31435, 4416, 18), -- Dwarves
+(31435, 4408, 1), -- HP Modifiers
+(31435, 4409, 1), -- MP Modifiers
+(31435, 4410, 11), -- P. Atk. Modifiers
+(31435, 4411, 11), -- M. Atk. Modifiers
+(31435, 4412, 11), -- P. Def. Modifiers
+(31435, 4413, 11), -- M. Def. Modifiers
+(31435, 4414, 2), -- Armor Type
+(31435, 4415, 3), -- Weapon Type
+(31435, 4416, 18), -- Races
 -- Dani
 (31436, 4045, 1), -- Resist Full Magic Attack
-(31436, 4408, 1), -- HP Increase (1x)
-(31436, 4409, 1), -- MP Increase (1x)
-(31436, 4410, 11), -- Average P. Atk.
-(31436, 4411, 11), -- Average M. Atk.
-(31436, 4412, 11), -- Average P. Def.
-(31436, 4413, 11), -- Average M. Def.
-(31436, 4414, 2), -- Standard Type
-(31436, 4415, 3), -- One-handed Sword
-(31436, 4416, 18), -- Dwarves
+(31436, 4408, 1), -- HP Modifiers
+(31436, 4409, 1), -- MP Modifiers
+(31436, 4410, 11), -- P. Atk. Modifiers
+(31436, 4411, 11), -- M. Atk. Modifiers
+(31436, 4412, 11), -- P. Def. Modifiers
+(31436, 4413, 11), -- M. Def. Modifiers
+(31436, 4414, 2), -- Armor Type
+(31436, 4415, 3), -- Weapon Type
+(31436, 4416, 18), -- Races
 -- Luka
 (31437, 4045, 1), -- Resist Full Magic Attack
-(31437, 4408, 1), -- HP Increase (1x)
-(31437, 4409, 1), -- MP Increase (1x)
-(31437, 4410, 11), -- Average P. Atk.
-(31437, 4411, 11), -- Average M. Atk.
-(31437, 4412, 11), -- Average P. Def.
-(31437, 4413, 11), -- Average M. Def.
-(31437, 4414, 2); -- Standard Type
-
-INSERT INTO `npcskills` VALUES
-(31437, 4415, 3), -- One-handed Sword
-(31437, 4416, 18), -- Dwarves
+(31437, 4408, 1), -- HP Modifiers
+(31437, 4409, 1), -- MP Modifiers
+(31437, 4410, 11), -- P. Atk. Modifiers
+(31437, 4411, 11), -- M. Atk. Modifiers
+(31437, 4412, 11), -- P. Def. Modifiers
+(31437, 4413, 11), -- M. Def. Modifiers
+(31437, 4414, 2), -- Armor Type
+(31437, 4415, 3), -- Weapon Type
+(31437, 4416, 18), -- Races
 -- Lara
 (31438, 4045, 1), -- Resist Full Magic Attack
-(31438, 4408, 1), -- HP Increase (1x)
-(31438, 4409, 1), -- MP Increase (1x)
-(31438, 4410, 11), -- Average P. Atk.
-(31438, 4411, 11), -- Average M. Atk.
-(31438, 4412, 11), -- Average P. Def.
-(31438, 4413, 11), -- Average M. Def.
-(31438, 4414, 2), -- Standard Type
-(31438, 4415, 3), -- One-handed Sword
-(31438, 4416, 18), -- Dwarves
+(31438, 4408, 1), -- HP Modifiers
+(31438, 4409, 1), -- MP Modifiers
+(31438, 4410, 11), -- P. Atk. Modifiers
+(31438, 4411, 11), -- M. Atk. Modifiers
+(31438, 4412, 11), -- P. Def. Modifiers
+(31438, 4413, 11), -- M. Def. Modifiers
+(31438, 4414, 2), -- Armor Type
+(31438, 4415, 3), -- Weapon Type
+(31438, 4416, 18), -- Races
 -- Rogen
 (31439, 4045, 1), -- Resist Full Magic Attack
-(31439, 4408, 1), -- HP Increase (1x)
-(31439, 4409, 1), -- MP Increase (1x)
-(31439, 4410, 11), -- Average P. Atk.
-(31439, 4411, 11), -- Average M. Atk.
-(31439, 4412, 11), -- Average P. Def.
-(31439, 4413, 11), -- Average M. Def.
-(31439, 4414, 2), -- Standard Type
-(31439, 4415, 3), -- One-handed Sword
-(31439, 4416, 18), -- Dwarves
+(31439, 4408, 1), -- HP Modifiers
+(31439, 4409, 1), -- MP Modifiers
+(31439, 4410, 11), -- P. Atk. Modifiers
+(31439, 4411, 11), -- M. Atk. Modifiers
+(31439, 4412, 11), -- P. Def. Modifiers
+(31439, 4413, 11), -- M. Def. Modifiers
+(31439, 4414, 2), -- Armor Type
+(31439, 4415, 3), -- Weapon Type
+(31439, 4416, 18), -- Races
 -- Lanna
 (31440, 4045, 1), -- Resist Full Magic Attack
-(31440, 4408, 1), -- HP Increase (1x)
-(31440, 4409, 1), -- MP Increase (1x)
-(31440, 4410, 11), -- Average P. Atk.
-(31440, 4411, 11), -- Average M. Atk.
-(31440, 4412, 11), -- Average P. Def.
-(31440, 4413, 11), -- Average M. Def.
-(31440, 4414, 2), -- Standard Type
-(31440, 4415, 3), -- One-handed Sword
-(31440, 4416, 18), -- Dwarves
+(31440, 4408, 1), -- HP Modifiers
+(31440, 4409, 1), -- MP Modifiers
+(31440, 4410, 11), -- P. Atk. Modifiers
+(31440, 4411, 11), -- M. Atk. Modifiers
+(31440, 4412, 11), -- P. Def. Modifiers
+(31440, 4413, 11), -- M. Def. Modifiers
+(31440, 4414, 2), -- Armor Type
+(31440, 4415, 3), -- Weapon Type
+(31440, 4416, 18), -- Races
 -- Gordo
 (31441, 4045, 1), -- Resist Full Magic Attack
-(31441, 4408, 1), -- HP Increase (1x)
-(31441, 4409, 1), -- MP Increase (1x)
-(31441, 4410, 11), -- Average P. Atk.
-(31441, 4411, 11), -- Average M. Atk.
-(31441, 4412, 11), -- Average P. Def.
-(31441, 4413, 11), -- Average M. Def.
-(31441, 4414, 2), -- Standard Type
-(31441, 4415, 3), -- One-handed Sword
-(31441, 4416, 18), -- Dwarves
+(31441, 4408, 1), -- HP Modifiers
+(31441, 4409, 1), -- MP Modifiers
+(31441, 4410, 11), -- P. Atk. Modifiers
+(31441, 4411, 11), -- M. Atk. Modifiers
+(31441, 4412, 11), -- P. Def. Modifiers
+(31441, 4413, 11), -- M. Def. Modifiers
+(31441, 4414, 2), -- Armor Type
+(31441, 4415, 3), -- Weapon Type
+(31441, 4416, 18), -- Races
 -- Kiki
 (31442, 4045, 1), -- Resist Full Magic Attack
-(31442, 4408, 1), -- HP Increase (1x)
-(31442, 4409, 1), -- MP Increase (1x)
-(31442, 4410, 11), -- Average P. Atk.
-(31442, 4411, 11), -- Average M. Atk.
-(31442, 4412, 11), -- Average P. Def.
-(31442, 4413, 11), -- Average M. Def.
-(31442, 4414, 2), -- Standard Type
-(31442, 4415, 3), -- One-handed Sword
-(31442, 4416, 18), -- Dwarves
+(31442, 4408, 1), -- HP Modifiers
+(31442, 4409, 1), -- MP Modifiers
+(31442, 4410, 11), -- P. Atk. Modifiers
+(31442, 4411, 11), -- M. Atk. Modifiers
+(31442, 4412, 11), -- P. Def. Modifiers
+(31442, 4413, 11), -- M. Def. Modifiers
+(31442, 4414, 2), -- Armor Type
+(31442, 4415, 3), -- Weapon Type
+(31442, 4416, 18), -- Races
 -- Raban
 (31443, 4045, 1), -- Resist Full Magic Attack
-(31443, 4408, 1), -- HP Increase (1x)
-(31443, 4409, 1), -- MP Increase (1x)
-(31443, 4410, 11), -- Average P. Atk.
-(31443, 4411, 11), -- Average M. Atk.
-(31443, 4412, 11), -- Average P. Def.
-(31443, 4413, 11), -- Average M. Def.
-(31443, 4414, 2), -- Standard Type
-(31443, 4415, 3), -- One-handed Sword
-(31443, 4416, 18), -- Dwarves
+(31443, 4408, 1), -- HP Modifiers
+(31443, 4409, 1), -- MP Modifiers
+(31443, 4410, 11), -- P. Atk. Modifiers
+(31443, 4411, 11), -- M. Atk. Modifiers
+(31443, 4412, 11), -- P. Def. Modifiers
+(31443, 4413, 11), -- M. Def. Modifiers
+(31443, 4414, 2), -- Armor Type
+(31443, 4415, 3), -- Weapon Type
+(31443, 4416, 18), -- Races
 -- Cona
 (31444, 4045, 1), -- Resist Full Magic Attack
-(31444, 4408, 1), -- HP Increase (1x)
-(31444, 4409, 1), -- MP Increase (1x)
-(31444, 4410, 11), -- Average P. Atk.
-(31444, 4411, 11), -- Average M. Atk.
-(31444, 4412, 11), -- Average P. Def.
-(31444, 4413, 11), -- Average M. Def.
-(31444, 4414, 2), -- Standard Type
-(31444, 4415, 3), -- One-handed Sword
-(31444, 4416, 18), -- Dwarves
+(31444, 4408, 1), -- HP Modifiers
+(31444, 4409, 1), -- MP Modifiers
+(31444, 4410, 11), -- P. Atk. Modifiers
+(31444, 4411, 11), -- M. Atk. Modifiers
+(31444, 4412, 11), -- P. Def. Modifiers
+(31444, 4413, 11), -- M. Def. Modifiers
+(31444, 4414, 2), -- Armor Type
+(31444, 4415, 3), -- Weapon Type
+(31444, 4416, 18), -- Races
 -- Shutner
 (31445, 4045, 1), -- Resist Full Magic Attack
-(31445, 4408, 1), -- HP Increase (1x)
-(31445, 4409, 1), -- MP Increase (1x)
-(31445, 4410, 11), -- Average P. Atk.
-(31445, 4411, 11), -- Average M. Atk.
-(31445, 4412, 11), -- Average P. Def.
-(31445, 4413, 11), -- Average M. Def.
-(31445, 4414, 2), -- Standard Type
-(31445, 4415, 3), -- One-handed Sword
-(31445, 4416, 18), -- Dwarves
+(31445, 4408, 1), -- HP Modifiers
+(31445, 4409, 1), -- MP Modifiers
+(31445, 4410, 11), -- P. Atk. Modifiers
+(31445, 4411, 11), -- M. Atk. Modifiers
+(31445, 4412, 11), -- P. Def. Modifiers
+(31445, 4413, 11), -- M. Def. Modifiers
+(31445, 4414, 2), -- Armor Type
+(31445, 4415, 3), -- Weapon Type
+(31445, 4416, 18), -- Races
 -- Ghost of Wigoth
 (31452, 4045, 1), -- Resist Full Magic Attack
-(31452, 4408, 1), -- HP Increase (1x)
-(31452, 4409, 1), -- MP Increase (1x)
-(31452, 4410, 11), -- Average P. Atk.
-(31452, 4411, 11), -- Average M. Atk.
-(31452, 4412, 11), -- Average P. Def.
-(31452, 4413, 11), -- Average M. Def.
-(31452, 4414, 2), -- Standard Type
-(31452, 4415, 3), -- One-handed Sword
-(31452, 4416, 1), -- Undead
+(31452, 4408, 1), -- HP Modifiers
+(31452, 4409, 1), -- MP Modifiers
+(31452, 4410, 11), -- P. Atk. Modifiers
+(31452, 4411, 11), -- M. Atk. Modifiers
+(31452, 4412, 11), -- P. Def. Modifiers
+(31452, 4413, 11), -- M. Def. Modifiers
+(31452, 4414, 2), -- Armor Type
+(31452, 4415, 3), -- Weapon Type
+(31452, 4416, 1), -- Races
 -- Nameless Spirit
 (31453, 4045, 1), -- Resist Full Magic Attack
-(31453, 4408, 1), -- HP Increase (1x)
-(31453, 4409, 1), -- MP Increase (1x)
-(31453, 4410, 11), -- Average P. Atk.
-(31453, 4411, 11), -- Average M. Atk.
-(31453, 4412, 11), -- Average P. Def.
-(31453, 4413, 11), -- Average M. Def.
-(31453, 4414, 2), -- Standard Type
-(31453, 4415, 3), -- One-handed Sword
-(31453, 4416, 1), -- Undead
+(31453, 4408, 1), -- HP Modifiers
+(31453, 4409, 1), -- MP Modifiers
+(31453, 4410, 11), -- P. Atk. Modifiers
+(31453, 4411, 11), -- M. Atk. Modifiers
+(31453, 4412, 11), -- P. Def. Modifiers
+(31453, 4413, 11), -- M. Def. Modifiers
+(31453, 4414, 2), -- Armor Type
+(31453, 4415, 3), -- Weapon Type
+(31453, 4416, 1), -- Races
 -- Ghost of Wigoth
 (31454, 4045, 1), -- Resist Full Magic Attack
-(31454, 4408, 1), -- HP Increase (1x)
-(31454, 4409, 1), -- MP Increase (1x)
-(31454, 4410, 11), -- Average P. Atk.
-(31454, 4411, 11), -- Average M. Atk.
-(31454, 4412, 11), -- Average P. Def.
-(31454, 4413, 11), -- Average M. Def.
-(31454, 4414, 2), -- Standard Type
-(31454, 4415, 3), -- One-handed Sword
-(31454, 4416, 1), -- Undead
+(31454, 4408, 1), -- HP Modifiers
+(31454, 4409, 1), -- MP Modifiers
+(31454, 4410, 11), -- P. Atk. Modifiers
+(31454, 4411, 11), -- M. Atk. Modifiers
+(31454, 4412, 11), -- P. Def. Modifiers
+(31454, 4413, 11), -- M. Def. Modifiers
+(31454, 4414, 2), -- Armor Type
+(31454, 4415, 3), -- Weapon Type
+(31454, 4416, 1), -- Races
 -- Key Box
 (31455, 4045, 1), -- Resist Full Magic Attack
-(31455, 4390, 1), -- Mystic Immunity
-(31455, 4408, 1), -- HP Increase (1x)
-(31455, 4409, 1), -- MP Increase (1x)
-(31455, 4410, 11), -- Average P. Atk.
-(31455, 4411, 11), -- Average M. Atk.
-(31455, 4412, 11), -- Average P. Def.
-(31455, 4413, 11), -- Average M. Def.
-(31455, 4414, 2), -- Standard Type
-(31455, 4415, 3), -- One-handed Sword
-(31455, 4416, 2), -- Magic Creatures
+(31455, 4390, 1), -- NPC Abnormal Immunity
+(31455, 4408, 1), -- HP Modifiers
+(31455, 4409, 1), -- MP Modifiers
+(31455, 4410, 11), -- P. Atk. Modifiers
+(31455, 4411, 11), -- M. Atk. Modifiers
+(31455, 4412, 11), -- P. Def. Modifiers
+(31455, 4413, 11), -- M. Def. Modifiers
+(31455, 4414, 2), -- Armor Type
+(31455, 4415, 3), -- Weapon Type
+(31455, 4416, 2), -- Races
 -- Key Box
 (31456, 4045, 1), -- Resist Full Magic Attack
-(31456, 4390, 1), -- Mystic Immunity
-(31456, 4408, 1), -- HP Increase (1x)
-(31456, 4409, 1), -- MP Increase (1x)
-(31456, 4410, 11), -- Average P. Atk.
-(31456, 4411, 11), -- Average M. Atk.
-(31456, 4412, 11), -- Average P. Def.
-(31456, 4413, 11), -- Average M. Def.
-(31456, 4414, 2), -- Standard Type
-(31456, 4415, 3), -- One-handed Sword
-(31456, 4416, 2), -- Magic Creatures
+(31456, 4390, 1), -- NPC Abnormal Immunity
+(31456, 4408, 1), -- HP Modifiers
+(31456, 4409, 1), -- MP Modifiers
+(31456, 4410, 11), -- P. Atk. Modifiers
+(31456, 4411, 11), -- M. Atk. Modifiers
+(31456, 4412, 11), -- P. Def. Modifiers
+(31456, 4413, 11), -- M. Def. Modifiers
+(31456, 4414, 2), -- Armor Type
+(31456, 4415, 3), -- Weapon Type
+(31456, 4416, 2), -- Races
 -- Key Box
 (31457, 4045, 1), -- Resist Full Magic Attack
-(31457, 4390, 1), -- Mystic Immunity
-(31457, 4408, 1), -- HP Increase (1x)
-(31457, 4409, 1), -- MP Increase (1x)
-(31457, 4410, 11), -- Average P. Atk.
-(31457, 4411, 11), -- Average M. Atk.
-(31457, 4412, 11), -- Average P. Def.
-(31457, 4413, 11), -- Average M. Def.
-(31457, 4414, 2), -- Standard Type
-(31457, 4415, 3), -- One-handed Sword
-(31457, 4416, 2), -- Magic Creatures
+(31457, 4390, 1), -- NPC Abnormal Immunity
+(31457, 4408, 1), -- HP Modifiers
+(31457, 4409, 1), -- MP Modifiers
+(31457, 4410, 11), -- P. Atk. Modifiers
+(31457, 4411, 11), -- M. Atk. Modifiers
+(31457, 4412, 11), -- P. Def. Modifiers
+(31457, 4413, 11), -- M. Def. Modifiers
+(31457, 4414, 2), -- Armor Type
+(31457, 4415, 3), -- Weapon Type
+(31457, 4416, 2), -- Races
 -- Key Box
 (31458, 4045, 1), -- Resist Full Magic Attack
-(31458, 4390, 1), -- Mystic Immunity
-(31458, 4408, 1), -- HP Increase (1x)
-(31458, 4409, 1), -- MP Increase (1x)
-(31458, 4410, 11), -- Average P. Atk.
-(31458, 4411, 11), -- Average M. Atk.
-(31458, 4412, 11), -- Average P. Def.
-(31458, 4413, 11), -- Average M. Def.
-(31458, 4414, 2), -- Standard Type
-(31458, 4415, 3), -- One-handed Sword
-(31458, 4416, 2), -- Magic Creatures
+(31458, 4390, 1), -- NPC Abnormal Immunity
+(31458, 4408, 1), -- HP Modifiers
+(31458, 4409, 1), -- MP Modifiers
+(31458, 4410, 11), -- P. Atk. Modifiers
+(31458, 4411, 11), -- M. Atk. Modifiers
+(31458, 4412, 11), -- P. Def. Modifiers
+(31458, 4413, 11), -- M. Def. Modifiers
+(31458, 4414, 2), -- Armor Type
+(31458, 4415, 3), -- Weapon Type
+(31458, 4416, 2), -- Races
 -- Key Box
 (31459, 4045, 1), -- Resist Full Magic Attack
-(31459, 4390, 1), -- Mystic Immunity
-(31459, 4408, 1), -- HP Increase (1x)
-(31459, 4409, 1), -- MP Increase (1x)
-(31459, 4410, 11), -- Average P. Atk.
-(31459, 4411, 11), -- Average M. Atk.
-(31459, 4412, 11), -- Average P. Def.
-(31459, 4413, 11), -- Average M. Def.
-(31459, 4414, 2), -- Standard Type
-(31459, 4415, 3), -- One-handed Sword
-(31459, 4416, 2), -- Magic Creatures
+(31459, 4390, 1), -- NPC Abnormal Immunity
+(31459, 4408, 1), -- HP Modifiers
+(31459, 4409, 1), -- MP Modifiers
+(31459, 4410, 11), -- P. Atk. Modifiers
+(31459, 4411, 11), -- M. Atk. Modifiers
+(31459, 4412, 11), -- P. Def. Modifiers
+(31459, 4413, 11), -- M. Def. Modifiers
+(31459, 4414, 2), -- Armor Type
+(31459, 4415, 3), -- Weapon Type
+(31459, 4416, 2), -- Races
 -- Key Box
 (31460, 4045, 1), -- Resist Full Magic Attack
-(31460, 4390, 1), -- Mystic Immunity
-(31460, 4408, 1), -- HP Increase (1x)
-(31460, 4409, 1), -- MP Increase (1x)
-(31460, 4410, 11), -- Average P. Atk.
-(31460, 4411, 11), -- Average M. Atk.
-(31460, 4412, 11), -- Average P. Def.
-(31460, 4413, 11), -- Average M. Def.
-(31460, 4414, 2), -- Standard Type
-(31460, 4415, 3), -- One-handed Sword
-(31460, 4416, 2), -- Magic Creatures
+(31460, 4390, 1), -- NPC Abnormal Immunity
+(31460, 4408, 1), -- HP Modifiers
+(31460, 4409, 1), -- MP Modifiers
+(31460, 4410, 11), -- P. Atk. Modifiers
+(31460, 4411, 11), -- M. Atk. Modifiers
+(31460, 4412, 11), -- P. Def. Modifiers
+(31460, 4413, 11), -- M. Def. Modifiers
+(31460, 4414, 2), -- Armor Type
+(31460, 4415, 3), -- Weapon Type
+(31460, 4416, 2), -- Races
 -- Key Box
 (31461, 4045, 1), -- Resist Full Magic Attack
-(31461, 4390, 1), -- Mystic Immunity
-(31461, 4408, 1), -- HP Increase (1x)
-(31461, 4409, 1), -- MP Increase (1x)
-(31461, 4410, 11), -- Average P. Atk.
-(31461, 4411, 11), -- Average M. Atk.
-(31461, 4412, 11), -- Average P. Def.
-(31461, 4413, 11), -- Average M. Def.
-(31461, 4414, 2), -- Standard Type
-(31461, 4415, 3), -- One-handed Sword
-(31461, 4416, 2), -- Magic Creatures
+(31461, 4390, 1), -- NPC Abnormal Immunity
+(31461, 4408, 1), -- HP Modifiers
+(31461, 4409, 1), -- MP Modifiers
+(31461, 4410, 11), -- P. Atk. Modifiers
+(31461, 4411, 11), -- M. Atk. Modifiers
+(31461, 4412, 11), -- P. Def. Modifiers
+(31461, 4413, 11), -- M. Def. Modifiers
+(31461, 4414, 2), -- Armor Type
+(31461, 4415, 3), -- Weapon Type
+(31461, 4416, 2), -- Races
 -- Key Box
 (31462, 4045, 1), -- Resist Full Magic Attack
-(31462, 4390, 1), -- Mystic Immunity
-(31462, 4408, 1), -- HP Increase (1x)
-(31462, 4409, 1), -- MP Increase (1x)
-(31462, 4410, 11), -- Average P. Atk.
-(31462, 4411, 11), -- Average M. Atk.
-(31462, 4412, 11), -- Average P. Def.
-(31462, 4413, 11), -- Average M. Def.
-(31462, 4414, 2), -- Standard Type
-(31462, 4415, 3), -- One-handed Sword
-(31462, 4416, 2), -- Magic Creatures
+(31462, 4390, 1), -- NPC Abnormal Immunity
+(31462, 4408, 1), -- HP Modifiers
+(31462, 4409, 1), -- MP Modifiers
+(31462, 4410, 11), -- P. Atk. Modifiers
+(31462, 4411, 11), -- M. Atk. Modifiers
+(31462, 4412, 11), -- P. Def. Modifiers
+(31462, 4413, 11), -- M. Def. Modifiers
+(31462, 4414, 2), -- Armor Type
+(31462, 4415, 3), -- Weapon Type
+(31462, 4416, 2), -- Races
 -- Key Box
 (31463, 4045, 1), -- Resist Full Magic Attack
-(31463, 4390, 1), -- Mystic Immunity
-(31463, 4408, 1), -- HP Increase (1x)
-(31463, 4409, 1), -- MP Increase (1x)
-(31463, 4410, 11), -- Average P. Atk.
-(31463, 4411, 11), -- Average M. Atk.
-(31463, 4412, 11), -- Average P. Def.
-(31463, 4413, 11), -- Average M. Def.
-(31463, 4414, 2), -- Standard Type
-(31463, 4415, 3), -- One-handed Sword
-(31463, 4416, 2), -- Magic Creatures
+(31463, 4390, 1), -- NPC Abnormal Immunity
+(31463, 4408, 1), -- HP Modifiers
+(31463, 4409, 1), -- MP Modifiers
+(31463, 4410, 11), -- P. Atk. Modifiers
+(31463, 4411, 11), -- M. Atk. Modifiers
+(31463, 4412, 11), -- P. Def. Modifiers
+(31463, 4413, 11), -- M. Def. Modifiers
+(31463, 4414, 2), -- Armor Type
+(31463, 4415, 3), -- Weapon Type
+(31463, 4416, 2), -- Races
 -- Key Box
 (31464, 4045, 1), -- Resist Full Magic Attack
-(31464, 4390, 1), -- Mystic Immunity
-(31464, 4408, 1), -- HP Increase (1x)
-(31464, 4409, 1), -- MP Increase (1x)
-(31464, 4410, 11), -- Average P. Atk.
-(31464, 4411, 11), -- Average M. Atk.
-(31464, 4412, 11), -- Average P. Def.
-(31464, 4413, 11), -- Average M. Def.
-(31464, 4414, 2), -- Standard Type
-(31464, 4415, 3), -- One-handed Sword
-(31464, 4416, 2), -- Magic Creatures
+(31464, 4390, 1), -- NPC Abnormal Immunity
+(31464, 4408, 1), -- HP Modifiers
+(31464, 4409, 1), -- MP Modifiers
+(31464, 4410, 11), -- P. Atk. Modifiers
+(31464, 4411, 11), -- M. Atk. Modifiers
+(31464, 4412, 11), -- P. Def. Modifiers
+(31464, 4413, 11), -- M. Def. Modifiers
+(31464, 4414, 2), -- Armor Type
+(31464, 4415, 3), -- Weapon Type
+(31464, 4416, 2), -- Races
 -- Key Box
 (31465, 4045, 1), -- Resist Full Magic Attack
-(31465, 4390, 1), -- Mystic Immunity
-(31465, 4408, 1), -- HP Increase (1x)
-(31465, 4409, 1), -- MP Increase (1x)
-(31465, 4410, 11), -- Average P. Atk.
-(31465, 4411, 11), -- Average M. Atk.
-(31465, 4412, 11), -- Average P. Def.
-(31465, 4413, 11), -- Average M. Def.
-(31465, 4414, 2), -- Standard Type
-(31465, 4415, 3), -- One-handed Sword
-(31465, 4416, 2), -- Magic Creatures
+(31465, 4390, 1), -- NPC Abnormal Immunity
+(31465, 4408, 1), -- HP Modifiers
+(31465, 4409, 1), -- MP Modifiers
+(31465, 4410, 11), -- P. Atk. Modifiers
+(31465, 4411, 11), -- M. Atk. Modifiers
+(31465, 4412, 11), -- P. Def. Modifiers
+(31465, 4413, 11), -- M. Def. Modifiers
+(31465, 4414, 2), -- Armor Type
+(31465, 4415, 3), -- Weapon Type
+(31465, 4416, 2), -- Races
 -- Key Box
 (31466, 4045, 1), -- Resist Full Magic Attack
-(31466, 4390, 1), -- Mystic Immunity
-(31466, 4408, 1), -- HP Increase (1x)
-(31466, 4409, 1), -- MP Increase (1x)
-(31466, 4410, 11), -- Average P. Atk.
-(31466, 4411, 11), -- Average M. Atk.
-(31466, 4412, 11), -- Average P. Def.
-(31466, 4413, 11), -- Average M. Def.
-(31466, 4414, 2), -- Standard Type
-(31466, 4415, 3), -- One-handed Sword
-(31466, 4416, 2), -- Magic Creatures
+(31466, 4390, 1), -- NPC Abnormal Immunity
+(31466, 4408, 1), -- HP Modifiers
+(31466, 4409, 1), -- MP Modifiers
+(31466, 4410, 11), -- P. Atk. Modifiers
+(31466, 4411, 11), -- M. Atk. Modifiers
+(31466, 4412, 11), -- P. Def. Modifiers
+(31466, 4413, 11), -- M. Def. Modifiers
+(31466, 4414, 2), -- Armor Type
+(31466, 4415, 3), -- Weapon Type
+(31466, 4416, 2), -- Races
 -- Key Box
 (31467, 4045, 1), -- Resist Full Magic Attack
-(31467, 4390, 1), -- Mystic Immunity
-(31467, 4408, 1), -- HP Increase (1x)
-(31467, 4409, 1), -- MP Increase (1x)
-(31467, 4410, 11), -- Average P. Atk.
-(31467, 4411, 11), -- Average M. Atk.
-(31467, 4412, 11), -- Average P. Def.
-(31467, 4413, 11), -- Average M. Def.
-(31467, 4414, 2), -- Standard Type
-(31467, 4415, 3), -- One-handed Sword
-(31467, 4416, 2), -- Magic Creatures
+(31467, 4390, 1), -- NPC Abnormal Immunity
+(31467, 4408, 1), -- HP Modifiers
+(31467, 4409, 1), -- MP Modifiers
+(31467, 4410, 11), -- P. Atk. Modifiers
+(31467, 4411, 11), -- M. Atk. Modifiers
+(31467, 4412, 11), -- P. Def. Modifiers
+(31467, 4413, 11), -- M. Def. Modifiers
+(31467, 4414, 2), -- Armor Type
+(31467, 4415, 3), -- Weapon Type
+(31467, 4416, 2), -- Races
 -- Mysterious Box
 (31468, 4045, 1), -- Resist Full Magic Attack
-(31468, 4390, 1), -- Mystic Immunity
-(31468, 4408, 1), -- HP Increase (1x)
-(31468, 4409, 1), -- MP Increase (1x)
-(31468, 4410, 11), -- Average P. Atk.
-(31468, 4411, 11), -- Average M. Atk.
-(31468, 4412, 11), -- Average P. Def.
-(31468, 4413, 11), -- Average M. Def.
-(31468, 4414, 2), -- Standard Type
-(31468, 4415, 3), -- One-handed Sword
-(31468, 4416, 2), -- Magic Creatures
+(31468, 4390, 1), -- NPC Abnormal Immunity
+(31468, 4408, 1), -- HP Modifiers
+(31468, 4409, 1), -- MP Modifiers
+(31468, 4410, 11), -- P. Atk. Modifiers
+(31468, 4411, 11), -- M. Atk. Modifiers
+(31468, 4412, 11), -- P. Def. Modifiers
+(31468, 4413, 11), -- M. Def. Modifiers
+(31468, 4414, 2), -- Armor Type
+(31468, 4415, 3), -- Weapon Type
+(31468, 4416, 2), -- Races
 -- Mysterious Box
 (31469, 4045, 1), -- Resist Full Magic Attack
-(31469, 4390, 1), -- Mystic Immunity
-(31469, 4408, 1), -- HP Increase (1x)
-(31469, 4409, 1), -- MP Increase (1x)
-(31469, 4410, 11), -- Average P. Atk.
-(31469, 4411, 11), -- Average M. Atk.
-(31469, 4412, 11), -- Average P. Def.
-(31469, 4413, 11), -- Average M. Def.
-(31469, 4414, 2), -- Standard Type
-(31469, 4415, 3), -- One-handed Sword
-(31469, 4416, 2), -- Magic Creatures
+(31469, 4390, 1), -- NPC Abnormal Immunity
+(31469, 4408, 1), -- HP Modifiers
+(31469, 4409, 1), -- MP Modifiers
+(31469, 4410, 11), -- P. Atk. Modifiers
+(31469, 4411, 11), -- M. Atk. Modifiers
+(31469, 4412, 11), -- P. Def. Modifiers
+(31469, 4413, 11), -- M. Def. Modifiers
+(31469, 4414, 2), -- Armor Type
+(31469, 4415, 3), -- Weapon Type
+(31469, 4416, 2), -- Races
 -- Mysterious Box
 (31470, 4045, 1), -- Resist Full Magic Attack
-(31470, 4390, 1), -- Mystic Immunity
-(31470, 4408, 1), -- HP Increase (1x)
-(31470, 4409, 1), -- MP Increase (1x)
-(31470, 4410, 11), -- Average P. Atk.
-(31470, 4411, 11), -- Average M. Atk.
-(31470, 4412, 11), -- Average P. Def.
-(31470, 4413, 11), -- Average M. Def.
-(31470, 4414, 2), -- Standard Type
-(31470, 4415, 3), -- One-handed Sword
-(31470, 4416, 2), -- Magic Creatures
+(31470, 4390, 1), -- NPC Abnormal Immunity
+(31470, 4408, 1), -- HP Modifiers
+(31470, 4409, 1), -- MP Modifiers
+(31470, 4410, 11), -- P. Atk. Modifiers
+(31470, 4411, 11), -- M. Atk. Modifiers
+(31470, 4412, 11), -- P. Def. Modifiers
+(31470, 4413, 11), -- M. Def. Modifiers
+(31470, 4414, 2), -- Armor Type
+(31470, 4415, 3), -- Weapon Type
+(31470, 4416, 2), -- Races
 -- Mysterious Box
 (31471, 4045, 1), -- Resist Full Magic Attack
-(31471, 4390, 1), -- Mystic Immunity
-(31471, 4408, 1), -- HP Increase (1x)
-(31471, 4409, 1), -- MP Increase (1x)
-(31471, 4410, 11), -- Average P. Atk.
-(31471, 4411, 11), -- Average M. Atk.
-(31471, 4412, 11), -- Average P. Def.
-(31471, 4413, 11), -- Average M. Def.
-(31471, 4414, 2), -- Standard Type
-(31471, 4415, 3), -- One-handed Sword
-(31471, 4416, 2), -- Magic Creatures
+(31471, 4390, 1), -- NPC Abnormal Immunity
+(31471, 4408, 1), -- HP Modifiers
+(31471, 4409, 1), -- MP Modifiers
+(31471, 4410, 11), -- P. Atk. Modifiers
+(31471, 4411, 11), -- M. Atk. Modifiers
+(31471, 4412, 11), -- P. Def. Modifiers
+(31471, 4413, 11), -- M. Def. Modifiers
+(31471, 4414, 2), -- Armor Type
+(31471, 4415, 3), -- Weapon Type
+(31471, 4416, 2), -- Races
 -- Mysterious Box
 (31472, 4045, 1), -- Resist Full Magic Attack
-(31472, 4390, 1), -- Mystic Immunity
-(31472, 4408, 1), -- HP Increase (1x)
-(31472, 4409, 1), -- MP Increase (1x)
-(31472, 4410, 11), -- Average P. Atk.
-(31472, 4411, 11), -- Average M. Atk.
-(31472, 4412, 11), -- Average P. Def.
-(31472, 4413, 11), -- Average M. Def.
-(31472, 4414, 2), -- Standard Type
-(31472, 4415, 3), -- One-handed Sword
-(31472, 4416, 2), -- Magic Creatures
+(31472, 4390, 1), -- NPC Abnormal Immunity
+(31472, 4408, 1), -- HP Modifiers
+(31472, 4409, 1), -- MP Modifiers
+(31472, 4410, 11), -- P. Atk. Modifiers
+(31472, 4411, 11), -- M. Atk. Modifiers
+(31472, 4412, 11), -- P. Def. Modifiers
+(31472, 4413, 11), -- M. Def. Modifiers
+(31472, 4414, 2), -- Armor Type
+(31472, 4415, 3), -- Weapon Type
+(31472, 4416, 2), -- Races
 -- Mysterious Box
 (31473, 4045, 1), -- Resist Full Magic Attack
-(31473, 4390, 1), -- Mystic Immunity
-(31473, 4408, 1), -- HP Increase (1x)
-(31473, 4409, 1), -- MP Increase (1x)
-(31473, 4410, 11), -- Average P. Atk.
-(31473, 4411, 11), -- Average M. Atk.
-(31473, 4412, 11), -- Average P. Def.
-(31473, 4413, 11), -- Average M. Def.
-(31473, 4414, 2), -- Standard Type
-(31473, 4415, 3), -- One-handed Sword
-(31473, 4416, 2), -- Magic Creatures
+(31473, 4390, 1), -- NPC Abnormal Immunity
+(31473, 4408, 1), -- HP Modifiers
+(31473, 4409, 1), -- MP Modifiers
+(31473, 4410, 11), -- P. Atk. Modifiers
+(31473, 4411, 11), -- M. Atk. Modifiers
+(31473, 4412, 11), -- P. Def. Modifiers
+(31473, 4413, 11), -- M. Def. Modifiers
+(31473, 4414, 2), -- Armor Type
+(31473, 4415, 3), -- Weapon Type
+(31473, 4416, 2), -- Races
 -- Mysterious Box
 (31474, 4045, 1), -- Resist Full Magic Attack
-(31474, 4390, 1), -- Mystic Immunity
-(31474, 4408, 1), -- HP Increase (1x)
-(31474, 4409, 1), -- MP Increase (1x)
-(31474, 4410, 11), -- Average P. Atk.
-(31474, 4411, 11), -- Average M. Atk.
-(31474, 4412, 11), -- Average P. Def.
-(31474, 4413, 11), -- Average M. Def.
-(31474, 4414, 2), -- Standard Type
-(31474, 4415, 3), -- One-handed Sword
-(31474, 4416, 2), -- Magic Creatures
+(31474, 4390, 1), -- NPC Abnormal Immunity
+(31474, 4408, 1), -- HP Modifiers
+(31474, 4409, 1), -- MP Modifiers
+(31474, 4410, 11), -- P. Atk. Modifiers
+(31474, 4411, 11), -- M. Atk. Modifiers
+(31474, 4412, 11), -- P. Def. Modifiers
+(31474, 4413, 11), -- M. Def. Modifiers
+(31474, 4414, 2), -- Armor Type
+(31474, 4415, 3), -- Weapon Type
+(31474, 4416, 2), -- Races
 -- Mysterious Box
 (31475, 4045, 1), -- Resist Full Magic Attack
-(31475, 4390, 1), -- Mystic Immunity
-(31475, 4408, 1), -- HP Increase (1x)
-(31475, 4409, 1), -- MP Increase (1x)
-(31475, 4410, 11), -- Average P. Atk.
-(31475, 4411, 11), -- Average M. Atk.
-(31475, 4412, 11), -- Average P. Def.
-(31475, 4413, 11), -- Average M. Def.
-(31475, 4414, 2), -- Standard Type
-(31475, 4415, 3), -- One-handed Sword
-(31475, 4416, 2), -- Magic Creatures
+(31475, 4390, 1), -- NPC Abnormal Immunity
+(31475, 4408, 1), -- HP Modifiers
+(31475, 4409, 1), -- MP Modifiers
+(31475, 4410, 11), -- P. Atk. Modifiers
+(31475, 4411, 11), -- M. Atk. Modifiers
+(31475, 4412, 11), -- P. Def. Modifiers
+(31475, 4413, 11), -- M. Def. Modifiers
+(31475, 4414, 2), -- Armor Type
+(31475, 4415, 3), -- Weapon Type
+(31475, 4416, 2), -- Races
 -- Mysterious Box
 (31476, 4045, 1), -- Resist Full Magic Attack
-(31476, 4390, 1), -- Mystic Immunity
-(31476, 4408, 1), -- HP Increase (1x)
-(31476, 4409, 1), -- MP Increase (1x)
-(31476, 4410, 11), -- Average P. Atk.
-(31476, 4411, 11), -- Average M. Atk.
-(31476, 4412, 11), -- Average P. Def.
-(31476, 4413, 11), -- Average M. Def.
-(31476, 4414, 2), -- Standard Type
-(31476, 4415, 3), -- One-handed Sword
-(31476, 4416, 2), -- Magic Creatures
+(31476, 4390, 1), -- NPC Abnormal Immunity
+(31476, 4408, 1), -- HP Modifiers
+(31476, 4409, 1), -- MP Modifiers
+(31476, 4410, 11), -- P. Atk. Modifiers
+(31476, 4411, 11), -- M. Atk. Modifiers
+(31476, 4412, 11), -- P. Def. Modifiers
+(31476, 4413, 11), -- M. Def. Modifiers
+(31476, 4414, 2), -- Armor Type
+(31476, 4415, 3), -- Weapon Type
+(31476, 4416, 2), -- Races
 -- Mysterious Box
 (31477, 4045, 1), -- Resist Full Magic Attack
-(31477, 4390, 1), -- Mystic Immunity
-(31477, 4408, 1), -- HP Increase (1x)
-(31477, 4409, 1), -- MP Increase (1x)
-(31477, 4410, 11), -- Average P. Atk.
-(31477, 4411, 11), -- Average M. Atk.
-(31477, 4412, 11), -- Average P. Def.
-(31477, 4413, 11), -- Average M. Def.
-(31477, 4414, 2), -- Standard Type
-(31477, 4415, 3), -- One-handed Sword
-(31477, 4416, 2), -- Magic Creatures
+(31477, 4390, 1), -- NPC Abnormal Immunity
+(31477, 4408, 1), -- HP Modifiers
+(31477, 4409, 1), -- MP Modifiers
+(31477, 4410, 11), -- P. Atk. Modifiers
+(31477, 4411, 11), -- M. Atk. Modifiers
+(31477, 4412, 11), -- P. Def. Modifiers
+(31477, 4413, 11), -- M. Def. Modifiers
+(31477, 4414, 2), -- Armor Type
+(31477, 4415, 3), -- Weapon Type
+(31477, 4416, 2), -- Races
 -- Mysterious Box
 (31478, 4045, 1), -- Resist Full Magic Attack
-(31478, 4390, 1), -- Mystic Immunity
-(31478, 4408, 1), -- HP Increase (1x)
-(31478, 4409, 1), -- MP Increase (1x)
-(31478, 4410, 11), -- Average P. Atk.
-(31478, 4411, 11), -- Average M. Atk.
-(31478, 4412, 11), -- Average P. Def.
-(31478, 4413, 11), -- Average M. Def.
-(31478, 4414, 2), -- Standard Type
-(31478, 4415, 3), -- One-handed Sword
-(31478, 4416, 2), -- Magic Creatures
+(31478, 4390, 1), -- NPC Abnormal Immunity
+(31478, 4408, 1), -- HP Modifiers
+(31478, 4409, 1), -- MP Modifiers
+(31478, 4410, 11), -- P. Atk. Modifiers
+(31478, 4411, 11), -- M. Atk. Modifiers
+(31478, 4412, 11), -- P. Def. Modifiers
+(31478, 4413, 11), -- M. Def. Modifiers
+(31478, 4414, 2), -- Armor Type
+(31478, 4415, 3), -- Weapon Type
+(31478, 4416, 2), -- Races
 -- Mysterious Box
 (31479, 4045, 1), -- Resist Full Magic Attack
-(31479, 4390, 1), -- Mystic Immunity
-(31479, 4408, 1), -- HP Increase (1x)
-(31479, 4409, 1), -- MP Increase (1x)
-(31479, 4410, 11), -- Average P. Atk.
-(31479, 4411, 11), -- Average M. Atk.
-(31479, 4412, 11), -- Average P. Def.
-(31479, 4413, 11), -- Average M. Def.
-(31479, 4414, 2), -- Standard Type
-(31479, 4415, 3), -- One-handed Sword
-(31479, 4416, 2), -- Magic Creatures
+(31479, 4390, 1), -- NPC Abnormal Immunity
+(31479, 4408, 1), -- HP Modifiers
+(31479, 4409, 1), -- MP Modifiers
+(31479, 4410, 11), -- P. Atk. Modifiers
+(31479, 4411, 11), -- M. Atk. Modifiers
+(31479, 4412, 11), -- P. Def. Modifiers
+(31479, 4413, 11), -- M. Def. Modifiers
+(31479, 4414, 2), -- Armor Type
+(31479, 4415, 3), -- Weapon Type
+(31479, 4416, 2), -- Races
 -- Mysterious Box
 (31480, 4045, 1), -- Resist Full Magic Attack
-(31480, 4390, 1), -- Mystic Immunity
-(31480, 4408, 1), -- HP Increase (1x)
-(31480, 4409, 1), -- MP Increase (1x)
-(31480, 4410, 11), -- Average P. Atk.
-(31480, 4411, 11), -- Average M. Atk.
-(31480, 4412, 11), -- Average P. Def.
-(31480, 4413, 11), -- Average M. Def.
-(31480, 4414, 2), -- Standard Type
-(31480, 4415, 3), -- One-handed Sword
-(31480, 4416, 2), -- Magic Creatures
+(31480, 4390, 1), -- NPC Abnormal Immunity
+(31480, 4408, 1), -- HP Modifiers
+(31480, 4409, 1), -- MP Modifiers
+(31480, 4410, 11), -- P. Atk. Modifiers
+(31480, 4411, 11), -- M. Atk. Modifiers
+(31480, 4412, 11), -- P. Def. Modifiers
+(31480, 4413, 11), -- M. Def. Modifiers
+(31480, 4414, 2), -- Armor Type
+(31480, 4415, 3), -- Weapon Type
+(31480, 4416, 2), -- Races
 -- Mysterious Box
 (31481, 4045, 1), -- Resist Full Magic Attack
-(31481, 4390, 1), -- Mystic Immunity
-(31481, 4408, 1), -- HP Increase (1x)
-(31481, 4409, 1), -- MP Increase (1x)
-(31481, 4410, 11), -- Average P. Atk.
-(31481, 4411, 11), -- Average M. Atk.
-(31481, 4412, 11), -- Average P. Def.
-(31481, 4413, 11), -- Average M. Def.
-(31481, 4414, 2), -- Standard Type
-(31481, 4415, 3), -- One-handed Sword
-(31481, 4416, 2), -- Magic Creatures
+(31481, 4390, 1), -- NPC Abnormal Immunity
+(31481, 4408, 1), -- HP Modifiers
+(31481, 4409, 1), -- MP Modifiers
+(31481, 4410, 11), -- P. Atk. Modifiers
+(31481, 4411, 11), -- M. Atk. Modifiers
+(31481, 4412, 11), -- P. Def. Modifiers
+(31481, 4413, 11), -- M. Def. Modifiers
+(31481, 4414, 2), -- Armor Type
+(31481, 4415, 3), -- Weapon Type
+(31481, 4416, 2), -- Races
 -- Mysterious Box
 (31482, 4045, 1), -- Resist Full Magic Attack
-(31482, 4390, 1), -- Mystic Immunity
-(31482, 4408, 1), -- HP Increase (1x)
-(31482, 4409, 1), -- MP Increase (1x)
-(31482, 4410, 11), -- Average P. Atk.
-(31482, 4411, 11), -- Average M. Atk.
-(31482, 4412, 11), -- Average P. Def.
-(31482, 4413, 11), -- Average M. Def.
-(31482, 4414, 2), -- Standard Type
-(31482, 4415, 3), -- One-handed Sword
-(31482, 4416, 2), -- Magic Creatures
+(31482, 4390, 1), -- NPC Abnormal Immunity
+(31482, 4408, 1), -- HP Modifiers
+(31482, 4409, 1), -- MP Modifiers
+(31482, 4410, 11), -- P. Atk. Modifiers
+(31482, 4411, 11), -- M. Atk. Modifiers
+(31482, 4412, 11), -- P. Def. Modifiers
+(31482, 4413, 11), -- M. Def. Modifiers
+(31482, 4414, 2), -- Armor Type
+(31482, 4415, 3), -- Weapon Type
+(31482, 4416, 2), -- Races
 -- Mysterious Box
 (31483, 4045, 1), -- Resist Full Magic Attack
-(31483, 4390, 1), -- Mystic Immunity
-(31483, 4408, 1), -- HP Increase (1x)
-(31483, 4409, 1), -- MP Increase (1x)
-(31483, 4410, 11), -- Average P. Atk.
-(31483, 4411, 11), -- Average M. Atk.
-(31483, 4412, 11), -- Average P. Def.
-(31483, 4413, 11), -- Average M. Def.
-(31483, 4414, 2), -- Standard Type
-(31483, 4415, 3), -- One-handed Sword
-(31483, 4416, 2), -- Magic Creatures
+(31483, 4390, 1), -- NPC Abnormal Immunity
+(31483, 4408, 1), -- HP Modifiers
+(31483, 4409, 1), -- MP Modifiers
+(31483, 4410, 11), -- P. Atk. Modifiers
+(31483, 4411, 11), -- M. Atk. Modifiers
+(31483, 4412, 11), -- P. Def. Modifiers
+(31483, 4413, 11), -- M. Def. Modifiers
+(31483, 4414, 2), -- Armor Type
+(31483, 4415, 3), -- Weapon Type
+(31483, 4416, 2), -- Races
 -- Mysterious Box
 (31484, 4045, 1), -- Resist Full Magic Attack
-(31484, 4390, 1), -- Mystic Immunity
-(31484, 4408, 1), -- HP Increase (1x)
-(31484, 4409, 1), -- MP Increase (1x)
-(31484, 4410, 11), -- Average P. Atk.
-(31484, 4411, 11), -- Average M. Atk.
-(31484, 4412, 11), -- Average P. Def.
-(31484, 4413, 11), -- Average M. Def.
-(31484, 4414, 2), -- Standard Type
-(31484, 4415, 3), -- One-handed Sword
-(31484, 4416, 2), -- Magic Creatures
+(31484, 4390, 1), -- NPC Abnormal Immunity
+(31484, 4408, 1), -- HP Modifiers
+(31484, 4409, 1), -- MP Modifiers
+(31484, 4410, 11), -- P. Atk. Modifiers
+(31484, 4411, 11), -- M. Atk. Modifiers
+(31484, 4412, 11), -- P. Def. Modifiers
+(31484, 4413, 11), -- M. Def. Modifiers
+(31484, 4414, 2), -- Armor Type
+(31484, 4415, 3), -- Weapon Type
+(31484, 4416, 2), -- Races
 -- Mysterious Box
 (31485, 4045, 1), -- Resist Full Magic Attack
-(31485, 4390, 1), -- Mystic Immunity
-(31485, 4408, 1), -- HP Increase (1x)
-(31485, 4409, 1), -- MP Increase (1x)
-(31485, 4410, 11), -- Average P. Atk.
-(31485, 4411, 11), -- Average M. Atk.
-(31485, 4412, 11), -- Average P. Def.
-(31485, 4413, 11), -- Average M. Def.
-(31485, 4414, 2), -- Standard Type
-(31485, 4415, 3), -- One-handed Sword
-(31485, 4416, 2), -- Magic Creatures
+(31485, 4390, 1), -- NPC Abnormal Immunity
+(31485, 4408, 1), -- HP Modifiers
+(31485, 4409, 1), -- MP Modifiers
+(31485, 4410, 11), -- P. Atk. Modifiers
+(31485, 4411, 11), -- M. Atk. Modifiers
+(31485, 4412, 11), -- P. Def. Modifiers
+(31485, 4413, 11), -- M. Def. Modifiers
+(31485, 4414, 2), -- Armor Type
+(31485, 4415, 3), -- Weapon Type
+(31485, 4416, 2), -- Races
 -- Mysterious Box
 (31486, 4045, 1), -- Resist Full Magic Attack
-(31486, 4390, 1), -- Mystic Immunity
-(31486, 4408, 1), -- HP Increase (1x)
-(31486, 4409, 1), -- MP Increase (1x)
-(31486, 4410, 11), -- Average P. Atk.
-(31486, 4411, 11), -- Average M. Atk.
-(31486, 4412, 11), -- Average P. Def.
-(31486, 4413, 11), -- Average M. Def.
-(31486, 4414, 2), -- Standard Type
-(31486, 4415, 3), -- One-handed Sword
-(31486, 4416, 2), -- Magic Creatures
+(31486, 4390, 1), -- NPC Abnormal Immunity
+(31486, 4408, 1), -- HP Modifiers
+(31486, 4409, 1), -- MP Modifiers
+(31486, 4410, 11), -- P. Atk. Modifiers
+(31486, 4411, 11), -- M. Atk. Modifiers
+(31486, 4412, 11), -- P. Def. Modifiers
+(31486, 4413, 11), -- M. Def. Modifiers
+(31486, 4414, 2), -- Armor Type
+(31486, 4415, 3), -- Weapon Type
+(31486, 4416, 2), -- Races
 -- Mysterious Box
 (31487, 4045, 1), -- Resist Full Magic Attack
-(31487, 4390, 1), -- Mystic Immunity
-(31487, 4408, 1), -- HP Increase (1x)
-(31487, 4409, 1), -- MP Increase (1x)
-(31487, 4410, 11), -- Average P. Atk.
-(31487, 4411, 11), -- Average M. Atk.
-(31487, 4412, 11), -- Average P. Def.
-(31487, 4413, 11), -- Average M. Def.
-(31487, 4414, 2), -- Standard Type
-(31487, 4415, 3), -- One-handed Sword
-(31487, 4416, 2), -- Magic Creatures
+(31487, 4390, 1), -- NPC Abnormal Immunity
+(31487, 4408, 1), -- HP Modifiers
+(31487, 4409, 1), -- MP Modifiers
+(31487, 4410, 11), -- P. Atk. Modifiers
+(31487, 4411, 11), -- M. Atk. Modifiers
+(31487, 4412, 11), -- P. Def. Modifiers
+(31487, 4413, 11), -- M. Def. Modifiers
+(31487, 4414, 2), -- Armor Type
+(31487, 4415, 3), -- Weapon Type
+(31487, 4416, 2), -- Races
 -- Rift Post Recruit
 (31488, 4045, 1), -- Resist Full Magic Attack
-(31488, 4408, 1), -- HP Increase (1x)
-(31488, 4409, 1), -- MP Increase (1x)
-(31488, 4410, 11), -- Average P. Atk.
-(31488, 4411, 11), -- Average M. Atk.
-(31488, 4412, 11), -- Average P. Def.
-(31488, 4413, 11), -- Average M. Def.
-(31488, 4414, 2), -- Standard Type
-(31488, 4415, 3), -- One-handed Sword
-(31488, 4416, 14), -- Humans
+(31488, 4408, 1), -- HP Modifiers
+(31488, 4409, 1), -- MP Modifiers
+(31488, 4410, 11), -- P. Atk. Modifiers
+(31488, 4411, 11), -- M. Atk. Modifiers
+(31488, 4412, 11), -- P. Def. Modifiers
+(31488, 4413, 11), -- M. Def. Modifiers
+(31488, 4414, 2), -- Armor Type
+(31488, 4415, 3), -- Weapon Type
+(31488, 4416, 14), -- Races
 -- Rift Post Private
 (31489, 4045, 1), -- Resist Full Magic Attack
-(31489, 4408, 1), -- HP Increase (1x)
-(31489, 4409, 1), -- MP Increase (1x)
-(31489, 4410, 11), -- Average P. Atk.
-(31489, 4411, 11), -- Average M. Atk.
-(31489, 4412, 11), -- Average P. Def.
-(31489, 4413, 11), -- Average M. Def.
-(31489, 4414, 2), -- Standard Type
-(31489, 4415, 3), -- One-handed Sword
-(31489, 4416, 14), -- Humans
+(31489, 4408, 1), -- HP Modifiers
+(31489, 4409, 1), -- MP Modifiers
+(31489, 4410, 11), -- P. Atk. Modifiers
+(31489, 4411, 11), -- M. Atk. Modifiers
+(31489, 4412, 11), -- P. Def. Modifiers
+(31489, 4413, 11), -- M. Def. Modifiers
+(31489, 4414, 2), -- Armor Type
+(31489, 4415, 3), -- Weapon Type
+(31489, 4416, 14), -- Races
 -- Rift Post Officer
 (31490, 4045, 1), -- Resist Full Magic Attack
-(31490, 4408, 1), -- HP Increase (1x)
-(31490, 4409, 1), -- MP Increase (1x)
-(31490, 4410, 11), -- Average P. Atk.
-(31490, 4411, 11), -- Average M. Atk.
-(31490, 4412, 11), -- Average P. Def.
-(31490, 4413, 11), -- Average M. Def.
-(31490, 4414, 2), -- Standard Type
-(31490, 4415, 3), -- One-handed Sword
-(31490, 4416, 14), -- Humans
+(31490, 4408, 1), -- HP Modifiers
+(31490, 4409, 1), -- MP Modifiers
+(31490, 4410, 11), -- P. Atk. Modifiers
+(31490, 4411, 11), -- M. Atk. Modifiers
+(31490, 4412, 11), -- P. Def. Modifiers
+(31490, 4413, 11), -- M. Def. Modifiers
+(31490, 4414, 2), -- Armor Type
+(31490, 4415, 3), -- Weapon Type
+(31490, 4416, 14), -- Races
 -- Rift Post Captain
 (31491, 4045, 1), -- Resist Full Magic Attack
-(31491, 4408, 1), -- HP Increase (1x)
-(31491, 4409, 1), -- MP Increase (1x)
-(31491, 4410, 11), -- Average P. Atk.
-(31491, 4411, 11), -- Average M. Atk.
-(31491, 4412, 11), -- Average P. Def.
-(31491, 4413, 11), -- Average M. Def.
-(31491, 4414, 2), -- Standard Type
-(31491, 4415, 3), -- One-handed Sword
-(31491, 4416, 14), -- Humans
+(31491, 4408, 1), -- HP Modifiers
+(31491, 4409, 1), -- MP Modifiers
+(31491, 4410, 11), -- P. Atk. Modifiers
+(31491, 4411, 11), -- M. Atk. Modifiers
+(31491, 4412, 11), -- P. Def. Modifiers
+(31491, 4413, 11), -- M. Def. Modifiers
+(31491, 4414, 2), -- Armor Type
+(31491, 4415, 3), -- Weapon Type
+(31491, 4416, 14), -- Races
 -- Rift Post Commander
 (31492, 4045, 1), -- Resist Full Magic Attack
-(31492, 4408, 1), -- HP Increase (1x)
-(31492, 4409, 1), -- MP Increase (1x)
-(31492, 4410, 11), -- Average P. Atk.
-(31492, 4411, 11), -- Average M. Atk.
-(31492, 4412, 11), -- Average P. Def.
-(31492, 4413, 11), -- Average M. Def.
-(31492, 4414, 2), -- Standard Type
-(31492, 4415, 3), -- One-handed Sword
-(31492, 4416, 14), -- Humans
+(31492, 4408, 1), -- HP Modifiers
+(31492, 4409, 1), -- MP Modifiers
+(31492, 4410, 11), -- P. Atk. Modifiers
+(31492, 4411, 11), -- M. Atk. Modifiers
+(31492, 4412, 11), -- P. Def. Modifiers
+(31492, 4413, 11), -- M. Def. Modifiers
+(31492, 4414, 2), -- Armor Type
+(31492, 4415, 3), -- Weapon Type
+(31492, 4416, 14), -- Races
 -- Rift Post Hero
 (31493, 4045, 1), -- Resist Full Magic Attack
-(31493, 4408, 1), -- HP Increase (1x)
-(31493, 4409, 1), -- MP Increase (1x)
-(31493, 4410, 11), -- Average P. Atk.
-(31493, 4411, 11), -- Average M. Atk.
-(31493, 4412, 11), -- Average P. Def.
-(31493, 4413, 11), -- Average M. Def.
-(31493, 4414, 2), -- Standard Type
-(31493, 4415, 3), -- One-handed Sword
-(31493, 4416, 14), -- Humans
+(31493, 4408, 1), -- HP Modifiers
+(31493, 4409, 1), -- MP Modifiers
+(31493, 4410, 11), -- P. Atk. Modifiers
+(31493, 4411, 11), -- M. Atk. Modifiers
+(31493, 4412, 11), -- P. Def. Modifiers
+(31493, 4413, 11), -- M. Def. Modifiers
+(31493, 4414, 2), -- Armor Type
+(31493, 4415, 3), -- Weapon Type
+(31493, 4416, 14), -- Races
 -- Dimensional Gate Keeper
 (31494, 4045, 1), -- Resist Full Magic Attack
-(31494, 4390, 1), -- Mystic Immunity
-(31494, 4408, 1), -- HP Increase (1x)
-(31494, 4409, 1), -- MP Increase (1x)
-(31494, 4410, 11), -- Average P. Atk.
-(31494, 4411, 11), -- Average M. Atk.
-(31494, 4412, 11), -- Average P. Def.
-(31494, 4413, 11), -- Average M. Def.
-(31494, 4414, 2), -- Standard Type
-(31494, 4415, 3), -- One-handed Sword
-(31494, 4416, 2), -- Magic Creatures
+(31494, 4390, 1), -- NPC Abnormal Immunity
+(31494, 4408, 1), -- HP Modifiers
+(31494, 4409, 1), -- MP Modifiers
+(31494, 4410, 11), -- P. Atk. Modifiers
+(31494, 4411, 11), -- M. Atk. Modifiers
+(31494, 4412, 11), -- P. Def. Modifiers
+(31494, 4413, 11), -- M. Def. Modifiers
+(31494, 4414, 2), -- Armor Type
+(31494, 4415, 3), -- Weapon Type
+(31494, 4416, 2), -- Races
 -- Dimensional Gate Keeper
 (31495, 4045, 1), -- Resist Full Magic Attack
-(31495, 4390, 1), -- Mystic Immunity
-(31495, 4408, 1), -- HP Increase (1x)
-(31495, 4409, 1), -- MP Increase (1x)
-(31495, 4410, 11), -- Average P. Atk.
-(31495, 4411, 11), -- Average M. Atk.
-(31495, 4412, 11), -- Average P. Def.
-(31495, 4413, 11), -- Average M. Def.
-(31495, 4414, 2), -- Standard Type
-(31495, 4415, 3), -- One-handed Sword
-(31495, 4416, 2), -- Magic Creatures
+(31495, 4390, 1), -- NPC Abnormal Immunity
+(31495, 4408, 1), -- HP Modifiers
+(31495, 4409, 1), -- MP Modifiers
+(31495, 4410, 11), -- P. Atk. Modifiers
+(31495, 4411, 11), -- M. Atk. Modifiers
+(31495, 4412, 11), -- P. Def. Modifiers
+(31495, 4413, 11), -- M. Def. Modifiers
+(31495, 4414, 2), -- Armor Type
+(31495, 4415, 3), -- Weapon Type
+(31495, 4416, 2), -- Races
 -- Dimensional Gate Keeper
 (31496, 4045, 1), -- Resist Full Magic Attack
-(31496, 4390, 1), -- Mystic Immunity
-(31496, 4408, 1), -- HP Increase (1x)
-(31496, 4409, 1), -- MP Increase (1x)
-(31496, 4410, 11), -- Average P. Atk.
-(31496, 4411, 11), -- Average M. Atk.
-(31496, 4412, 11), -- Average P. Def.
-(31496, 4413, 11), -- Average M. Def.
-(31496, 4414, 2), -- Standard Type
-(31496, 4415, 3), -- One-handed Sword
-(31496, 4416, 2), -- Magic Creatures
+(31496, 4390, 1), -- NPC Abnormal Immunity
+(31496, 4408, 1), -- HP Modifiers
+(31496, 4409, 1), -- MP Modifiers
+(31496, 4410, 11), -- P. Atk. Modifiers
+(31496, 4411, 11), -- M. Atk. Modifiers
+(31496, 4412, 11), -- P. Def. Modifiers
+(31496, 4413, 11), -- M. Def. Modifiers
+(31496, 4414, 2), -- Armor Type
+(31496, 4415, 3), -- Weapon Type
+(31496, 4416, 2), -- Races
 -- Dimensional Gate Keeper
 (31497, 4045, 1), -- Resist Full Magic Attack
-(31497, 4390, 1), -- Mystic Immunity
-(31497, 4408, 1), -- HP Increase (1x)
-(31497, 4409, 1), -- MP Increase (1x)
-(31497, 4410, 11), -- Average P. Atk.
-(31497, 4411, 11), -- Average M. Atk.
-(31497, 4412, 11), -- Average P. Def.
-(31497, 4413, 11), -- Average M. Def.
-(31497, 4414, 2), -- Standard Type
-(31497, 4415, 3), -- One-handed Sword
-(31497, 4416, 2), -- Magic Creatures
+(31497, 4390, 1), -- NPC Abnormal Immunity
+(31497, 4408, 1), -- HP Modifiers
+(31497, 4409, 1), -- MP Modifiers
+(31497, 4410, 11), -- P. Atk. Modifiers
+(31497, 4411, 11), -- M. Atk. Modifiers
+(31497, 4412, 11), -- P. Def. Modifiers
+(31497, 4413, 11), -- M. Def. Modifiers
+(31497, 4414, 2), -- Armor Type
+(31497, 4415, 3), -- Weapon Type
+(31497, 4416, 2), -- Races
 -- Dimensional Gate Keeper
 (31498, 4045, 1), -- Resist Full Magic Attack
-(31498, 4390, 1), -- Mystic Immunity
-(31498, 4408, 1), -- HP Increase (1x)
-(31498, 4409, 1), -- MP Increase (1x)
-(31498, 4410, 11), -- Average P. Atk.
-(31498, 4411, 11), -- Average M. Atk.
-(31498, 4412, 11), -- Average P. Def.
-(31498, 4413, 11), -- Average M. Def.
-(31498, 4414, 2), -- Standard Type
-(31498, 4415, 3), -- One-handed Sword
-(31498, 4416, 2), -- Magic Creatures
+(31498, 4390, 1), -- NPC Abnormal Immunity
+(31498, 4408, 1), -- HP Modifiers
+(31498, 4409, 1), -- MP Modifiers
+(31498, 4410, 11), -- P. Atk. Modifiers
+(31498, 4411, 11), -- M. Atk. Modifiers
+(31498, 4412, 11), -- P. Def. Modifiers
+(31498, 4413, 11), -- M. Def. Modifiers
+(31498, 4414, 2), -- Armor Type
+(31498, 4415, 3), -- Weapon Type
+(31498, 4416, 2), -- Races
 -- Dimensional Gate Keeper
 (31499, 4045, 1), -- Resist Full Magic Attack
-(31499, 4390, 1), -- Mystic Immunity
-(31499, 4408, 1), -- HP Increase (1x)
-(31499, 4409, 1), -- MP Increase (1x)
-(31499, 4410, 11), -- Average P. Atk.
-(31499, 4411, 11), -- Average M. Atk.
-(31499, 4412, 11), -- Average P. Def.
-(31499, 4413, 11), -- Average M. Def.
-(31499, 4414, 2), -- Standard Type
-(31499, 4415, 3), -- One-handed Sword
-(31499, 4416, 2), -- Magic Creatures
+(31499, 4390, 1), -- NPC Abnormal Immunity
+(31499, 4408, 1), -- HP Modifiers
+(31499, 4409, 1), -- MP Modifiers
+(31499, 4410, 11), -- P. Atk. Modifiers
+(31499, 4411, 11), -- M. Atk. Modifiers
+(31499, 4412, 11), -- P. Def. Modifiers
+(31499, 4413, 11), -- M. Def. Modifiers
+(31499, 4414, 2), -- Armor Type
+(31499, 4415, 3), -- Weapon Type
+(31499, 4416, 2), -- Races
 -- Dimensional Gate Keeper
 (31500, 4045, 1), -- Resist Full Magic Attack
-(31500, 4390, 1), -- Mystic Immunity
-(31500, 4408, 1), -- HP Increase (1x)
-(31500, 4409, 1), -- MP Increase (1x)
-(31500, 4410, 11), -- Average P. Atk.
-(31500, 4411, 11), -- Average M. Atk.
-(31500, 4412, 11), -- Average P. Def.
-(31500, 4413, 11), -- Average M. Def.
-(31500, 4414, 2), -- Standard Type
-(31500, 4415, 3), -- One-handed Sword
-(31500, 4416, 2), -- Magic Creatures
+(31500, 4390, 1), -- NPC Abnormal Immunity
+(31500, 4408, 1), -- HP Modifiers
+(31500, 4409, 1), -- MP Modifiers
+(31500, 4410, 11), -- P. Atk. Modifiers
+(31500, 4411, 11), -- M. Atk. Modifiers
+(31500, 4412, 11), -- P. Def. Modifiers
+(31500, 4413, 11), -- M. Def. Modifiers
+(31500, 4414, 2), -- Armor Type
+(31500, 4415, 3), -- Weapon Type
+(31500, 4416, 2), -- Races
 -- Dimensional Gate Keeper
 (31501, 4045, 1), -- Resist Full Magic Attack
-(31501, 4390, 1), -- Mystic Immunity
-(31501, 4408, 1), -- HP Increase (1x)
-(31501, 4409, 1), -- MP Increase (1x)
-(31501, 4410, 11), -- Average P. Atk.
-(31501, 4411, 11), -- Average M. Atk.
-(31501, 4412, 11), -- Average P. Def.
-(31501, 4413, 11), -- Average M. Def.
-(31501, 4414, 2), -- Standard Type
-(31501, 4415, 3), -- One-handed Sword
-(31501, 4416, 2), -- Magic Creatures
+(31501, 4390, 1), -- NPC Abnormal Immunity
+(31501, 4408, 1), -- HP Modifiers
+(31501, 4409, 1), -- MP Modifiers
+(31501, 4410, 11), -- P. Atk. Modifiers
+(31501, 4411, 11), -- M. Atk. Modifiers
+(31501, 4412, 11), -- P. Def. Modifiers
+(31501, 4413, 11), -- M. Def. Modifiers
+(31501, 4414, 2), -- Armor Type
+(31501, 4415, 3), -- Weapon Type
+(31501, 4416, 2), -- Races
 -- Dimensional Gate Keeper
 (31502, 4045, 1), -- Resist Full Magic Attack
-(31502, 4390, 1), -- Mystic Immunity
-(31502, 4408, 1), -- HP Increase (1x)
-(31502, 4409, 1), -- MP Increase (1x)
-(31502, 4410, 11), -- Average P. Atk.
-(31502, 4411, 11), -- Average M. Atk.
-(31502, 4412, 11), -- Average P. Def.
-(31502, 4413, 11), -- Average M. Def.
-(31502, 4414, 2), -- Standard Type
-(31502, 4415, 3), -- One-handed Sword
-(31502, 4416, 2), -- Magic Creatures
+(31502, 4390, 1), -- NPC Abnormal Immunity
+(31502, 4408, 1), -- HP Modifiers
+(31502, 4409, 1), -- MP Modifiers
+(31502, 4410, 11), -- P. Atk. Modifiers
+(31502, 4411, 11), -- M. Atk. Modifiers
+(31502, 4412, 11), -- P. Def. Modifiers
+(31502, 4413, 11), -- M. Def. Modifiers
+(31502, 4414, 2), -- Armor Type
+(31502, 4415, 3), -- Weapon Type
+(31502, 4416, 2), -- Races
 -- Dimensional Gate Keeper
 (31503, 4045, 1), -- Resist Full Magic Attack
-(31503, 4390, 1), -- Mystic Immunity
-(31503, 4408, 1), -- HP Increase (1x)
-(31503, 4409, 1), -- MP Increase (1x)
-(31503, 4410, 11), -- Average P. Atk.
-(31503, 4411, 11), -- Average M. Atk.
-(31503, 4412, 11), -- Average P. Def.
-(31503, 4413, 11), -- Average M. Def.
-(31503, 4414, 2), -- Standard Type
-(31503, 4415, 3), -- One-handed Sword
-(31503, 4416, 2), -- Magic Creatures
+(31503, 4390, 1), -- NPC Abnormal Immunity
+(31503, 4408, 1), -- HP Modifiers
+(31503, 4409, 1), -- MP Modifiers
+(31503, 4410, 11), -- P. Atk. Modifiers
+(31503, 4411, 11), -- M. Atk. Modifiers
+(31503, 4412, 11), -- P. Def. Modifiers
+(31503, 4413, 11), -- M. Def. Modifiers
+(31503, 4414, 2), -- Armor Type
+(31503, 4415, 3), -- Weapon Type
+(31503, 4416, 2), -- Races
 -- Dimensional Gate Keeper
 (31504, 4045, 1), -- Resist Full Magic Attack
-(31504, 4390, 1), -- Mystic Immunity
-(31504, 4408, 1), -- HP Increase (1x)
-(31504, 4409, 1), -- MP Increase (1x)
-(31504, 4410, 11), -- Average P. Atk.
-(31504, 4411, 11), -- Average M. Atk.
-(31504, 4412, 11), -- Average P. Def.
-(31504, 4413, 11), -- Average M. Def.
-(31504, 4414, 2), -- Standard Type
-(31504, 4415, 3), -- One-handed Sword
-(31504, 4416, 2), -- Magic Creatures
+(31504, 4390, 1), -- NPC Abnormal Immunity
+(31504, 4408, 1), -- HP Modifiers
+(31504, 4409, 1), -- MP Modifiers
+(31504, 4410, 11), -- P. Atk. Modifiers
+(31504, 4411, 11), -- M. Atk. Modifiers
+(31504, 4412, 11), -- P. Def. Modifiers
+(31504, 4413, 11), -- M. Def. Modifiers
+(31504, 4414, 2), -- Armor Type
+(31504, 4415, 3), -- Weapon Type
+(31504, 4416, 2), -- Races
 -- Dimensional Gate Keeper
 (31505, 4045, 1), -- Resist Full Magic Attack
-(31505, 4390, 1), -- Mystic Immunity
-(31505, 4408, 1), -- HP Increase (1x)
-(31505, 4409, 1), -- MP Increase (1x)
-(31505, 4410, 11), -- Average P. Atk.
-(31505, 4411, 11), -- Average M. Atk.
-(31505, 4412, 11), -- Average P. Def.
-(31505, 4413, 11), -- Average M. Def.
-(31505, 4414, 2), -- Standard Type
-(31505, 4415, 3), -- One-handed Sword
-(31505, 4416, 2), -- Magic Creatures
+(31505, 4390, 1), -- NPC Abnormal Immunity
+(31505, 4408, 1), -- HP Modifiers
+(31505, 4409, 1), -- MP Modifiers
+(31505, 4410, 11), -- P. Atk. Modifiers
+(31505, 4411, 11), -- M. Atk. Modifiers
+(31505, 4412, 11), -- P. Def. Modifiers
+(31505, 4413, 11), -- M. Def. Modifiers
+(31505, 4414, 2), -- Armor Type
+(31505, 4415, 3), -- Weapon Type
+(31505, 4416, 2), -- Races
 -- Dimensional Gate Keeper
 (31506, 4045, 1), -- Resist Full Magic Attack
-(31506, 4390, 1), -- Mystic Immunity
-(31506, 4408, 1), -- HP Increase (1x)
-(31506, 4409, 1), -- MP Increase (1x)
-(31506, 4410, 11), -- Average P. Atk.
-(31506, 4411, 11), -- Average M. Atk.
-(31506, 4412, 11), -- Average P. Def.
-(31506, 4413, 11), -- Average M. Def.
-(31506, 4414, 2), -- Standard Type
-(31506, 4415, 3), -- One-handed Sword
-(31506, 4416, 2), -- Magic Creatures
+(31506, 4390, 1), -- NPC Abnormal Immunity
+(31506, 4408, 1), -- HP Modifiers
+(31506, 4409, 1), -- MP Modifiers
+(31506, 4410, 11), -- P. Atk. Modifiers
+(31506, 4411, 11), -- M. Atk. Modifiers
+(31506, 4412, 11), -- P. Def. Modifiers
+(31506, 4413, 11), -- M. Def. Modifiers
+(31506, 4414, 2), -- Armor Type
+(31506, 4415, 3), -- Weapon Type
+(31506, 4416, 2), -- Races
 -- Dimensional Gate Keeper
 (31507, 4045, 1), -- Resist Full Magic Attack
-(31507, 4390, 1), -- Mystic Immunity
-(31507, 4408, 1), -- HP Increase (1x)
-(31507, 4409, 1), -- MP Increase (1x)
-(31507, 4410, 11), -- Average P. Atk.
-(31507, 4411, 11), -- Average M. Atk.
-(31507, 4412, 11), -- Average P. Def.
-(31507, 4413, 11), -- Average M. Def.
-(31507, 4414, 2), -- Standard Type
-(31507, 4415, 3), -- One-handed Sword
-(31507, 4416, 2), -- Magic Creatures
+(31507, 4390, 1), -- NPC Abnormal Immunity
+(31507, 4408, 1), -- HP Modifiers
+(31507, 4409, 1), -- MP Modifiers
+(31507, 4410, 11), -- P. Atk. Modifiers
+(31507, 4411, 11), -- M. Atk. Modifiers
+(31507, 4412, 11), -- P. Def. Modifiers
+(31507, 4413, 11), -- M. Def. Modifiers
+(31507, 4414, 2), -- Armor Type
+(31507, 4415, 3), -- Weapon Type
+(31507, 4416, 2), -- Races
 -- Altar of Saints
 (31508, 4045, 1), -- Resist Full Magic Attack
-(31508, 4390, 1), -- Mystic Immunity
-(31508, 4408, 1), -- HP Increase (1x)
-(31508, 4409, 1), -- MP Increase (1x)
-(31508, 4410, 11), -- Average P. Atk.
-(31508, 4411, 11), -- Average M. Atk.
-(31508, 4412, 11), -- Average P. Def.
-(31508, 4413, 11), -- Average M. Def.
-(31508, 4414, 2), -- Standard Type
-(31508, 4415, 3), -- One-handed Sword
-(31508, 4416, 19), -- Others
+(31508, 4390, 1), -- NPC Abnormal Immunity
+(31508, 4408, 1), -- HP Modifiers
+(31508, 4409, 1), -- MP Modifiers
+(31508, 4410, 11), -- P. Atk. Modifiers
+(31508, 4411, 11), -- M. Atk. Modifiers
+(31508, 4412, 11), -- P. Def. Modifiers
+(31508, 4413, 11), -- M. Def. Modifiers
+(31508, 4414, 2), -- Armor Type
+(31508, 4415, 3), -- Weapon Type
+(31508, 4416, 19), -- Races
 -- Altar of Saints
 (31509, 4045, 1), -- Resist Full Magic Attack
-(31509, 4390, 1), -- Mystic Immunity
-(31509, 4408, 1), -- HP Increase (1x)
-(31509, 4409, 1), -- MP Increase (1x)
-(31509, 4410, 11), -- Average P. Atk.
-(31509, 4411, 11), -- Average M. Atk.
-(31509, 4412, 11), -- Average P. Def.
-(31509, 4413, 11), -- Average M. Def.
-(31509, 4414, 2), -- Standard Type
-(31509, 4415, 3), -- One-handed Sword
-(31509, 4416, 19), -- Others
+(31509, 4390, 1), -- NPC Abnormal Immunity
+(31509, 4408, 1), -- HP Modifiers
+(31509, 4409, 1), -- MP Modifiers
+(31509, 4410, 11), -- P. Atk. Modifiers
+(31509, 4411, 11), -- M. Atk. Modifiers
+(31509, 4412, 11), -- P. Def. Modifiers
+(31509, 4413, 11), -- M. Def. Modifiers
+(31509, 4414, 2), -- Armor Type
+(31509, 4415, 3), -- Weapon Type
+(31509, 4416, 19), -- Races
 -- Altar of Saints
 (31510, 4045, 1), -- Resist Full Magic Attack
-(31510, 4390, 1), -- Mystic Immunity
-(31510, 4408, 1), -- HP Increase (1x)
-(31510, 4409, 1), -- MP Increase (1x)
-(31510, 4410, 11), -- Average P. Atk.
-(31510, 4411, 11), -- Average M. Atk.
-(31510, 4412, 11), -- Average P. Def.
-(31510, 4413, 11), -- Average M. Def.
-(31510, 4414, 2), -- Standard Type
-(31510, 4415, 3), -- One-handed Sword
-(31510, 4416, 19), -- Others
+(31510, 4390, 1), -- NPC Abnormal Immunity
+(31510, 4408, 1), -- HP Modifiers
+(31510, 4409, 1), -- MP Modifiers
+(31510, 4410, 11), -- P. Atk. Modifiers
+(31510, 4411, 11), -- M. Atk. Modifiers
+(31510, 4412, 11), -- P. Def. Modifiers
+(31510, 4413, 11), -- M. Def. Modifiers
+(31510, 4414, 2), -- Armor Type
+(31510, 4415, 3), -- Weapon Type
+(31510, 4416, 19), -- Races
 -- Altar of Saints
 (31511, 4045, 1), -- Resist Full Magic Attack
-(31511, 4390, 1), -- Mystic Immunity
-(31511, 4408, 1), -- HP Increase (1x)
-(31511, 4409, 1), -- MP Increase (1x)
-(31511, 4410, 11), -- Average P. Atk.
-(31511, 4411, 11), -- Average M. Atk.
-(31511, 4412, 11), -- Average P. Def.
-(31511, 4413, 11), -- Average M. Def.
-(31511, 4414, 2), -- Standard Type
-(31511, 4415, 3), -- One-handed Sword
-(31511, 4416, 19), -- Others
+(31511, 4390, 1), -- NPC Abnormal Immunity
+(31511, 4408, 1), -- HP Modifiers
+(31511, 4409, 1), -- MP Modifiers
+(31511, 4410, 11), -- P. Atk. Modifiers
+(31511, 4411, 11), -- M. Atk. Modifiers
+(31511, 4412, 11), -- P. Def. Modifiers
+(31511, 4413, 11), -- M. Def. Modifiers
+(31511, 4414, 2), -- Armor Type
+(31511, 4415, 3), -- Weapon Type
+(31511, 4416, 19), -- Races
 -- Evil Altar
 (31512, 4045, 1), -- Resist Full Magic Attack
-(31512, 4390, 1), -- Mystic Immunity
-(31512, 4408, 1), -- HP Increase (1x)
-(31512, 4409, 1), -- MP Increase (1x)
-(31512, 4410, 11), -- Average P. Atk.
-(31512, 4411, 11), -- Average M. Atk.
-(31512, 4412, 11), -- Average P. Def.
-(31512, 4413, 11), -- Average M. Def.
-(31512, 4414, 2), -- Standard Type
-(31512, 4415, 3), -- One-handed Sword
-(31512, 4416, 19), -- Others
+(31512, 4390, 1), -- NPC Abnormal Immunity
+(31512, 4408, 1), -- HP Modifiers
+(31512, 4409, 1), -- MP Modifiers
+(31512, 4410, 11), -- P. Atk. Modifiers
+(31512, 4411, 11), -- M. Atk. Modifiers
+(31512, 4412, 11), -- P. Def. Modifiers
+(31512, 4413, 11), -- M. Def. Modifiers
+(31512, 4414, 2), -- Armor Type
+(31512, 4415, 3), -- Weapon Type
+(31512, 4416, 19), -- Races
 -- Evil Altar
 (31513, 4045, 1), -- Resist Full Magic Attack
-(31513, 4390, 1), -- Mystic Immunity
-(31513, 4408, 1), -- HP Increase (1x)
-(31513, 4409, 1), -- MP Increase (1x)
-(31513, 4410, 11), -- Average P. Atk.
-(31513, 4411, 11), -- Average M. Atk.
-(31513, 4412, 11), -- Average P. Def.
-(31513, 4413, 11), -- Average M. Def.
-(31513, 4414, 2), -- Standard Type
-(31513, 4415, 3), -- One-handed Sword
-(31513, 4416, 19), -- Others
+(31513, 4390, 1), -- NPC Abnormal Immunity
+(31513, 4408, 1), -- HP Modifiers
+(31513, 4409, 1), -- MP Modifiers
+(31513, 4410, 11), -- P. Atk. Modifiers
+(31513, 4411, 11), -- M. Atk. Modifiers
+(31513, 4412, 11), -- P. Def. Modifiers
+(31513, 4413, 11), -- M. Def. Modifiers
+(31513, 4414, 2), -- Armor Type
+(31513, 4415, 3), -- Weapon Type
+(31513, 4416, 19), -- Races
 -- Evil Altar
 (31514, 4045, 1), -- Resist Full Magic Attack
-(31514, 4390, 1), -- Mystic Immunity
-(31514, 4408, 1), -- HP Increase (1x)
-(31514, 4409, 1), -- MP Increase (1x)
-(31514, 4410, 11), -- Average P. Atk.
-(31514, 4411, 11), -- Average M. Atk.
-(31514, 4412, 11), -- Average P. Def.
-(31514, 4413, 11), -- Average M. Def.
-(31514, 4414, 2), -- Standard Type
-(31514, 4415, 3), -- One-handed Sword
-(31514, 4416, 19), -- Others
+(31514, 4390, 1), -- NPC Abnormal Immunity
+(31514, 4408, 1), -- HP Modifiers
+(31514, 4409, 1), -- MP Modifiers
+(31514, 4410, 11), -- P. Atk. Modifiers
+(31514, 4411, 11), -- M. Atk. Modifiers
+(31514, 4412, 11), -- P. Def. Modifiers
+(31514, 4413, 11), -- M. Def. Modifiers
+(31514, 4414, 2), -- Armor Type
+(31514, 4415, 3), -- Weapon Type
+(31514, 4416, 19), -- Races
 -- Evil Altar
 (31515, 4045, 1), -- Resist Full Magic Attack
-(31515, 4390, 1), -- Mystic Immunity
-(31515, 4408, 1), -- HP Increase (1x)
-(31515, 4409, 1), -- MP Increase (1x)
-(31515, 4410, 11), -- Average P. Atk.
-(31515, 4411, 11), -- Average M. Atk.
-(31515, 4412, 11), -- Average P. Def.
-(31515, 4413, 11), -- Average M. Def.
-(31515, 4414, 2), -- Standard Type
-(31515, 4415, 3), -- One-handed Sword
-(31515, 4416, 19), -- Others
+(31515, 4390, 1), -- NPC Abnormal Immunity
+(31515, 4408, 1), -- HP Modifiers
+(31515, 4409, 1), -- MP Modifiers
+(31515, 4410, 11), -- P. Atk. Modifiers
+(31515, 4411, 11), -- M. Atk. Modifiers
+(31515, 4412, 11), -- P. Def. Modifiers
+(31515, 4413, 11), -- M. Def. Modifiers
+(31515, 4414, 2), -- Armor Type
+(31515, 4415, 3), -- Weapon Type
+(31515, 4416, 19), -- Races
 -- Evil Altar
 (31516, 4045, 1), -- Resist Full Magic Attack
-(31516, 4390, 1), -- Mystic Immunity
-(31516, 4408, 1), -- HP Increase (1x)
-(31516, 4409, 1), -- MP Increase (1x)
-(31516, 4410, 11), -- Average P. Atk.
-(31516, 4411, 11), -- Average M. Atk.
-(31516, 4412, 11), -- Average P. Def.
-(31516, 4413, 11), -- Average M. Def.
-(31516, 4414, 2), -- Standard Type
-(31516, 4415, 3), -- One-handed Sword
-(31516, 4416, 19), -- Others
+(31516, 4390, 1), -- NPC Abnormal Immunity
+(31516, 4408, 1), -- HP Modifiers
+(31516, 4409, 1), -- MP Modifiers
+(31516, 4410, 11), -- P. Atk. Modifiers
+(31516, 4411, 11), -- M. Atk. Modifiers
+(31516, 4412, 11), -- P. Def. Modifiers
+(31516, 4413, 11), -- M. Def. Modifiers
+(31516, 4414, 2), -- Armor Type
+(31516, 4415, 3), -- Weapon Type
+(31516, 4416, 19), -- Races
 -- Hierarch
 (31517, 4045, 1), -- Resist Full Magic Attack
-(31517, 4408, 1), -- HP Increase (1x)
-(31517, 4409, 1), -- MP Increase (1x)
-(31517, 4410, 11), -- Average P. Atk.
-(31517, 4411, 11), -- Average M. Atk.
-(31517, 4412, 11), -- Average P. Def.
-(31517, 4413, 11), -- Average M. Def.
-(31517, 4414, 2), -- Standard Type
-(31517, 4415, 3), -- One-handed Sword
-(31517, 4416, 14), -- Humans
+(31517, 4408, 1), -- HP Modifiers
+(31517, 4409, 1), -- MP Modifiers
+(31517, 4410, 11), -- P. Atk. Modifiers
+(31517, 4411, 11), -- M. Atk. Modifiers
+(31517, 4412, 11), -- P. Def. Modifiers
+(31517, 4413, 11), -- M. Def. Modifiers
+(31517, 4414, 2), -- Armor Type
+(31517, 4415, 3), -- Weapon Type
+(31517, 4416, 14), -- Races
 -- Mysterious Necromancer
 (31518, 4045, 1), -- Resist Full Magic Attack
-(31518, 4408, 1), -- HP Increase (1x)
-(31518, 4409, 1), -- MP Increase (1x)
-(31518, 4410, 11), -- Average P. Atk.
-(31518, 4411, 11), -- Average M. Atk.
-(31518, 4412, 11), -- Average P. Def.
-(31518, 4413, 11), -- Average M. Def.
-(31518, 4414, 2), -- Standard Type
-(31518, 4415, 3), -- One-handed Sword
-(31518, 4416, 14), -- Humans
+(31518, 4408, 1), -- HP Modifiers
+(31518, 4409, 1), -- MP Modifiers
+(31518, 4410, 11), -- P. Atk. Modifiers
+(31518, 4411, 11), -- M. Atk. Modifiers
+(31518, 4412, 11), -- P. Def. Modifiers
+(31518, 4413, 11), -- M. Def. Modifiers
+(31518, 4414, 2), -- Armor Type
+(31518, 4415, 3), -- Weapon Type
+(31518, 4416, 14), -- Races
 -- Enfeux
 (31519, 4045, 1), -- Resist Full Magic Attack
-(31519, 4390, 1), -- Mystic Immunity
-(31519, 4408, 1), -- HP Increase (1x)
-(31519, 4409, 1), -- MP Increase (1x)
-(31519, 4410, 11), -- Average P. Atk.
-(31519, 4411, 11), -- Average M. Atk.
-(31519, 4412, 11), -- Average P. Def.
-(31519, 4413, 11), -- Average M. Def.
-(31519, 4414, 2), -- Standard Type
-(31519, 4415, 3), -- One-handed Sword
-(31519, 4416, 19), -- Others
+(31519, 4390, 1), -- NPC Abnormal Immunity
+(31519, 4408, 1), -- HP Modifiers
+(31519, 4409, 1), -- MP Modifiers
+(31519, 4410, 11), -- P. Atk. Modifiers
+(31519, 4411, 11), -- M. Atk. Modifiers
+(31519, 4412, 11), -- P. Def. Modifiers
+(31519, 4413, 11), -- M. Def. Modifiers
+(31519, 4414, 2), -- Armor Type
+(31519, 4415, 3), -- Weapon Type
+(31519, 4416, 19), -- Races
 -- Leikar
 (31520, 4045, 1), -- Resist Full Magic Attack
-(31520, 4408, 1), -- HP Increase (1x)
-(31520, 4409, 1), -- MP Increase (1x)
-(31520, 4410, 11), -- Average P. Atk.
-(31520, 4411, 11), -- Average M. Atk.
-(31520, 4412, 11), -- Average P. Def.
-(31520, 4413, 11), -- Average M. Def.
-(31520, 4414, 2), -- Standard Type
-(31520, 4415, 3), -- One-handed Sword
-(31520, 4416, 14), -- Humans
+(31520, 4408, 1), -- HP Modifiers
+(31520, 4409, 1), -- MP Modifiers
+(31520, 4410, 11), -- P. Atk. Modifiers
+(31520, 4411, 11), -- M. Atk. Modifiers
+(31520, 4412, 11), -- P. Def. Modifiers
+(31520, 4413, 11), -- M. Def. Modifiers
+(31520, 4414, 2), -- Armor Type
+(31520, 4415, 3), -- Weapon Type
+(31520, 4416, 14), -- Races
 -- Jeremy
 (31521, 4045, 1), -- Resist Full Magic Attack
-(31521, 4408, 1), -- HP Increase (1x)
-(31521, 4409, 1), -- MP Increase (1x)
-(31521, 4410, 11), -- Average P. Atk.
-(31521, 4411, 11), -- Average M. Atk.
-(31521, 4412, 11), -- Average P. Def.
-(31521, 4413, 11), -- Average M. Def.
-(31521, 4414, 2), -- Standard Type
-(31521, 4415, 3), -- One-handed Sword
-(31521, 4416, 14), -- Humans
+(31521, 4408, 1), -- HP Modifiers
+(31521, 4409, 1), -- MP Modifiers
+(31521, 4410, 11), -- P. Atk. Modifiers
+(31521, 4411, 11), -- M. Atk. Modifiers
+(31521, 4412, 11), -- P. Def. Modifiers
+(31521, 4413, 11), -- M. Def. Modifiers
+(31521, 4414, 2), -- Armor Type
+(31521, 4415, 3), -- Weapon Type
+(31521, 4416, 14), -- Races
 -- Mysterious Wizard
 (31522, 4045, 1), -- Resist Full Magic Attack
-(31522, 4408, 1), -- HP Increase (1x)
-(31522, 4409, 1), -- MP Increase (1x)
-(31522, 4410, 11), -- Average P. Atk.
-(31522, 4411, 11), -- Average M. Atk.
-(31522, 4412, 11), -- Average P. Def.
-(31522, 4413, 11), -- Average M. Def.
-(31522, 4414, 2), -- Standard Type
-(31522, 4415, 3), -- One-handed Sword
-(31522, 4416, 14), -- Humans
+(31522, 4408, 1), -- HP Modifiers
+(31522, 4409, 1), -- MP Modifiers
+(31522, 4410, 11), -- P. Atk. Modifiers
+(31522, 4411, 11), -- M. Atk. Modifiers
+(31522, 4412, 11), -- P. Def. Modifiers
+(31522, 4413, 11), -- M. Def. Modifiers
+(31522, 4414, 2), -- Armor Type
+(31522, 4415, 3), -- Weapon Type
+(31522, 4416, 14), -- Races
 -- Tombstone
 (31523, 4045, 1), -- Resist Full Magic Attack
-(31523, 4390, 1), -- Mystic Immunity
-(31523, 4408, 1), -- HP Increase (1x)
-(31523, 4409, 1), -- MP Increase (1x)
-(31523, 4410, 11), -- Average P. Atk.
-(31523, 4411, 11), -- Average M. Atk.
-(31523, 4412, 11), -- Average P. Def.
-(31523, 4413, 11), -- Average M. Def.
-(31523, 4414, 2), -- Standard Type
-(31523, 4415, 3), -- One-handed Sword
-(31523, 4416, 19), -- Others
+(31523, 4390, 1), -- NPC Abnormal Immunity
+(31523, 4408, 1), -- HP Modifiers
+(31523, 4409, 1), -- MP Modifiers
+(31523, 4410, 11), -- P. Atk. Modifiers
+(31523, 4411, 11), -- M. Atk. Modifiers
+(31523, 4412, 11), -- P. Def. Modifiers
+(31523, 4413, 11), -- M. Def. Modifiers
+(31523, 4414, 2), -- Armor Type
+(31523, 4415, 3), -- Weapon Type
+(31523, 4416, 19), -- Races
 -- Ghost of von Hellmann
 (31524, 4045, 1), -- Resist Full Magic Attack
-(31524, 4408, 1), -- HP Increase (1x)
-(31524, 4409, 1), -- MP Increase (1x)
-(31524, 4410, 11), -- Average P. Atk.
-(31524, 4411, 11), -- Average M. Atk.
-(31524, 4412, 11), -- Average P. Def.
-(31524, 4413, 11), -- Average M. Def.
-(31524, 4414, 2), -- Standard Type
-(31524, 4415, 3), -- One-handed Sword
-(31524, 4416, 1), -- Undead
+(31524, 4408, 1), -- HP Modifiers
+(31524, 4409, 1), -- MP Modifiers
+(31524, 4410, 11), -- P. Atk. Modifiers
+(31524, 4411, 11), -- M. Atk. Modifiers
+(31524, 4412, 11), -- P. Def. Modifiers
+(31524, 4413, 11), -- M. Def. Modifiers
+(31524, 4414, 2), -- Armor Type
+(31524, 4415, 3), -- Weapon Type
+(31524, 4416, 1), -- Races
 -- Ghost of von Hellmann's Page
 (31525, 4045, 1), -- Resist Full Magic Attack
-(31525, 4408, 1), -- HP Increase (1x)
-(31525, 4409, 1), -- MP Increase (1x)
-(31525, 4410, 11), -- Average P. Atk.
-(31525, 4411, 11), -- Average M. Atk.
-(31525, 4412, 11), -- Average P. Def.
-(31525, 4413, 11), -- Average M. Def.
-(31525, 4414, 2), -- Standard Type
-(31525, 4415, 3), -- One-handed Sword
-(31525, 4416, 1), -- Undead
+(31525, 4408, 1), -- HP Modifiers
+(31525, 4409, 1), -- MP Modifiers
+(31525, 4410, 11), -- P. Atk. Modifiers
+(31525, 4411, 11), -- M. Atk. Modifiers
+(31525, 4412, 11), -- P. Def. Modifiers
+(31525, 4413, 11), -- M. Def. Modifiers
+(31525, 4414, 2), -- Armor Type
+(31525, 4415, 3), -- Weapon Type
+(31525, 4416, 1), -- Races
 -- Broken Bookshelf
 (31526, 4045, 1), -- Resist Full Magic Attack
-(31526, 4390, 1), -- Mystic Immunity
-(31526, 4408, 1), -- HP Increase (1x)
-(31526, 4409, 1), -- MP Increase (1x)
-(31526, 4410, 11), -- Average P. Atk.
-(31526, 4411, 11), -- Average M. Atk.
-(31526, 4412, 11), -- Average P. Def.
-(31526, 4413, 11), -- Average M. Def.
-(31526, 4414, 2), -- Standard Type
-(31526, 4415, 3), -- One-handed Sword
-(31526, 4416, 19), -- Others
+(31526, 4390, 1), -- NPC Abnormal Immunity
+(31526, 4408, 1), -- HP Modifiers
+(31526, 4409, 1), -- MP Modifiers
+(31526, 4410, 11), -- P. Atk. Modifiers
+(31526, 4411, 11), -- M. Atk. Modifiers
+(31526, 4412, 11), -- P. Def. Modifiers
+(31526, 4413, 11), -- M. Def. Modifiers
+(31526, 4414, 2), -- Armor Type
+(31526, 4415, 3), -- Weapon Type
+(31526, 4416, 19), -- Races
 -- Well
 (31527, 4045, 1), -- Resist Full Magic Attack
-(31527, 4390, 1), -- Mystic Immunity
-(31527, 4408, 1), -- HP Increase (1x)
-(31527, 4409, 1), -- MP Increase (1x)
-(31527, 4410, 11), -- Average P. Atk.
-(31527, 4411, 11), -- Average M. Atk.
-(31527, 4412, 11), -- Average P. Def.
-(31527, 4413, 11), -- Average M. Def.
-(31527, 4414, 2), -- Standard Type
-(31527, 4415, 3), -- One-handed Sword
-(31527, 4416, 19), -- Others
+(31527, 4390, 1), -- NPC Abnormal Immunity
+(31527, 4408, 1), -- HP Modifiers
+(31527, 4409, 1), -- MP Modifiers
+(31527, 4410, 11), -- P. Atk. Modifiers
+(31527, 4411, 11), -- M. Atk. Modifiers
+(31527, 4412, 11), -- P. Def. Modifiers
+(31527, 4413, 11), -- M. Def. Modifiers
+(31527, 4414, 2), -- Armor Type
+(31527, 4415, 3), -- Weapon Type
+(31527, 4416, 19), -- Races
 -- Ghost of Priest
 (31528, 4045, 1), -- Resist Full Magic Attack
-(31528, 4408, 1), -- HP Increase (1x)
-(31528, 4409, 1), -- MP Increase (1x)
-(31528, 4410, 11), -- Average P. Atk.
-(31528, 4411, 11), -- Average M. Atk.
-(31528, 4412, 11), -- Average P. Def.
-(31528, 4413, 11), -- Average M. Def.
-(31528, 4414, 2), -- Standard Type
-(31528, 4415, 3), -- One-handed Sword
-(31528, 4416, 1), -- Undead
+(31528, 4408, 1), -- HP Modifiers
+(31528, 4409, 1), -- MP Modifiers
+(31528, 4410, 11), -- P. Atk. Modifiers
+(31528, 4411, 11), -- M. Atk. Modifiers
+(31528, 4412, 11), -- P. Def. Modifiers
+(31528, 4413, 11), -- M. Def. Modifiers
+(31528, 4414, 2), -- Armor Type
+(31528, 4415, 3), -- Weapon Type
+(31528, 4416, 1), -- Races
 -- Ghost of Adventurer
 (31529, 4045, 1), -- Resist Full Magic Attack
-(31529, 4408, 1), -- HP Increase (1x)
-(31529, 4409, 1), -- MP Increase (1x)
-(31529, 4410, 11), -- Average P. Atk.
-(31529, 4411, 11), -- Average M. Atk.
-(31529, 4412, 11), -- Average P. Def.
-(31529, 4413, 11), -- Average M. Def.
-(31529, 4414, 2), -- Standard Type
-(31529, 4415, 3), -- One-handed Sword
-(31529, 4416, 1), -- Undead
+(31529, 4408, 1), -- HP Modifiers
+(31529, 4409, 1), -- MP Modifiers
+(31529, 4410, 11), -- P. Atk. Modifiers
+(31529, 4411, 11), -- M. Atk. Modifiers
+(31529, 4412, 11), -- P. Def. Modifiers
+(31529, 4413, 11), -- M. Def. Modifiers
+(31529, 4414, 2), -- Armor Type
+(31529, 4415, 3), -- Weapon Type
+(31529, 4416, 1), -- Races
 -- Box
 (31530, 4045, 1), -- Resist Full Magic Attack
-(31530, 4390, 1), -- Mystic Immunity
-(31530, 4408, 1), -- HP Increase (1x)
-(31530, 4409, 1), -- MP Increase (1x)
-(31530, 4410, 11), -- Average P. Atk.
-(31530, 4411, 11), -- Average M. Atk.
-(31530, 4412, 11), -- Average P. Def.
-(31530, 4413, 11), -- Average M. Def.
-(31530, 4414, 2), -- Standard Type
-(31530, 4415, 3), -- One-handed Sword
-(31530, 4416, 2), -- Magic Creatures
+(31530, 4390, 1), -- NPC Abnormal Immunity
+(31530, 4408, 1), -- HP Modifiers
+(31530, 4409, 1), -- MP Modifiers
+(31530, 4410, 11), -- P. Atk. Modifiers
+(31530, 4411, 11), -- M. Atk. Modifiers
+(31530, 4412, 11), -- P. Def. Modifiers
+(31530, 4413, 11), -- M. Def. Modifiers
+(31530, 4414, 2), -- Armor Type
+(31530, 4415, 3), -- Weapon Type
+(31530, 4416, 2), -- Races
 -- Tombstone
 (31531, 4045, 1), -- Resist Full Magic Attack
-(31531, 4390, 1), -- Mystic Immunity
-(31531, 4408, 1), -- HP Increase (1x)
-(31531, 4409, 1), -- MP Increase (1x)
-(31531, 4410, 11), -- Average P. Atk.
-(31531, 4411, 11), -- Average M. Atk.
-(31531, 4412, 11), -- Average P. Def.
-(31531, 4413, 11), -- Average M. Def.
-(31531, 4414, 2), -- Standard Type
-(31531, 4415, 3), -- One-handed Sword
-(31531, 4416, 19), -- Others
+(31531, 4390, 1), -- NPC Abnormal Immunity
+(31531, 4408, 1), -- HP Modifiers
+(31531, 4409, 1), -- MP Modifiers
+(31531, 4410, 11), -- P. Atk. Modifiers
+(31531, 4411, 11), -- M. Atk. Modifiers
+(31531, 4412, 11), -- P. Def. Modifiers
+(31531, 4413, 11), -- M. Def. Modifiers
+(31531, 4414, 2), -- Armor Type
+(31531, 4415, 3), -- Weapon Type
+(31531, 4416, 19), -- Races
 -- Lidia's Maid
 (31532, 4045, 1), -- Resist Full Magic Attack
-(31532, 4408, 1), -- HP Increase (1x)
-(31532, 4409, 1), -- MP Increase (1x)
-(31532, 4410, 11), -- Average P. Atk.
-(31532, 4411, 11), -- Average M. Atk.
-(31532, 4412, 11), -- Average P. Def.
-(31532, 4413, 11), -- Average M. Def.
-(31532, 4414, 2), -- Standard Type
-(31532, 4415, 3), -- One-handed Sword
-(31532, 4416, 9), -- Demons
+(31532, 4408, 1), -- HP Modifiers
+(31532, 4409, 1), -- MP Modifiers
+(31532, 4410, 11), -- P. Atk. Modifiers
+(31532, 4411, 11), -- M. Atk. Modifiers
+(31532, 4412, 11), -- P. Def. Modifiers
+(31532, 4413, 11), -- M. Def. Modifiers
+(31532, 4414, 2), -- Armor Type
+(31532, 4415, 3), -- Weapon Type
+(31532, 4416, 9), -- Races
 -- Broken Bookshelf
 (31533, 4045, 1), -- Resist Full Magic Attack
-(31533, 4390, 1), -- Mystic Immunity
-(31533, 4408, 1), -- HP Increase (1x)
-(31533, 4409, 1), -- MP Increase (1x)
-(31533, 4410, 11), -- Average P. Atk.
-(31533, 4411, 11), -- Average M. Atk.
-(31533, 4412, 11), -- Average P. Def.
-(31533, 4413, 11), -- Average M. Def.
-(31533, 4414, 2), -- Standard Type
-(31533, 4415, 3), -- One-handed Sword
-(31533, 4416, 19), -- Others
+(31533, 4390, 1), -- NPC Abnormal Immunity
+(31533, 4408, 1), -- HP Modifiers
+(31533, 4409, 1), -- MP Modifiers
+(31533, 4410, 11), -- P. Atk. Modifiers
+(31533, 4411, 11), -- M. Atk. Modifiers
+(31533, 4412, 11), -- P. Def. Modifiers
+(31533, 4413, 11), -- M. Def. Modifiers
+(31533, 4414, 2), -- Armor Type
+(31533, 4415, 3), -- Weapon Type
+(31533, 4416, 19), -- Races
 -- Broken Bookshelf
 (31534, 4045, 1), -- Resist Full Magic Attack
-(31534, 4390, 1), -- Mystic Immunity
-(31534, 4408, 1), -- HP Increase (1x)
-(31534, 4409, 1), -- MP Increase (1x)
-(31534, 4410, 11), -- Average P. Atk.
-(31534, 4411, 11), -- Average M. Atk.
-(31534, 4412, 11), -- Average P. Def.
-(31534, 4413, 11), -- Average M. Def.
-(31534, 4414, 2), -- Standard Type
-(31534, 4415, 3), -- One-handed Sword
-(31534, 4416, 19), -- Others
+(31534, 4390, 1), -- NPC Abnormal Immunity
+(31534, 4408, 1), -- HP Modifiers
+(31534, 4409, 1), -- MP Modifiers
+(31534, 4410, 11), -- P. Atk. Modifiers
+(31534, 4411, 11), -- M. Atk. Modifiers
+(31534, 4412, 11), -- P. Def. Modifiers
+(31534, 4413, 11), -- M. Def. Modifiers
+(31534, 4414, 2), -- Armor Type
+(31534, 4415, 3), -- Weapon Type
+(31534, 4416, 19), -- Races
 -- Broken Bookshelf
 (31535, 4045, 1), -- Resist Full Magic Attack
-(31535, 4390, 1), -- Mystic Immunity
-(31535, 4408, 1), -- HP Increase (1x)
-(31535, 4409, 1), -- MP Increase (1x)
-(31535, 4410, 11), -- Average P. Atk.
-(31535, 4411, 11), -- Average M. Atk.
-(31535, 4412, 11), -- Average P. Def.
-(31535, 4413, 11), -- Average M. Def.
-(31535, 4414, 2), -- Standard Type
-(31535, 4415, 3), -- One-handed Sword
-(31535, 4416, 19), -- Others
+(31535, 4390, 1), -- NPC Abnormal Immunity
+(31535, 4408, 1), -- HP Modifiers
+(31535, 4409, 1), -- MP Modifiers
+(31535, 4410, 11), -- P. Atk. Modifiers
+(31535, 4411, 11), -- M. Atk. Modifiers
+(31535, 4412, 11), -- P. Def. Modifiers
+(31535, 4413, 11), -- M. Def. Modifiers
+(31535, 4414, 2), -- Armor Type
+(31535, 4415, 3), -- Weapon Type
+(31535, 4416, 19), -- Races
 -- Coffin
 (31536, 4045, 1), -- Resist Full Magic Attack
-(31536, 4390, 1), -- Mystic Immunity
-(31536, 4408, 1), -- HP Increase (1x)
-(31536, 4409, 1), -- MP Increase (1x)
-(31536, 4410, 11), -- Average P. Atk.
-(31536, 4411, 11), -- Average M. Atk.
-(31536, 4412, 11), -- Average P. Def.
-(31536, 4413, 11), -- Average M. Def.
-(31536, 4414, 2), -- Standard Type
-(31536, 4415, 3), -- One-handed Sword
-(31536, 4416, 2), -- Magic Creatures
+(31536, 4390, 1), -- NPC Abnormal Immunity
+(31536, 4408, 1), -- HP Modifiers
+(31536, 4409, 1), -- MP Modifiers
+(31536, 4410, 11), -- P. Atk. Modifiers
+(31536, 4411, 11), -- M. Atk. Modifiers
+(31536, 4412, 11), -- P. Def. Modifiers
+(31536, 4413, 11), -- M. Def. Modifiers
+(31536, 4414, 2), -- Armor Type
+(31536, 4415, 3), -- Weapon Type
+(31536, 4416, 2), -- Races
 -- Tunatun
 (31537, 4045, 1), -- Resist Full Magic Attack
-(31537, 4408, 1), -- HP Increase (1x)
-(31537, 4409, 1), -- MP Increase (1x)
-(31537, 4410, 11), -- Average P. Atk.
-(31537, 4411, 11), -- Average M. Atk.
-(31537, 4412, 11), -- Average P. Def.
-(31537, 4413, 11), -- Average M. Def.
-(31537, 4414, 2), -- Standard Type
-(31537, 4415, 3), -- One-handed Sword
-(31537, 4416, 14), -- Humans
+(31537, 4408, 1), -- HP Modifiers
+(31537, 4409, 1), -- MP Modifiers
+(31537, 4410, 11), -- P. Atk. Modifiers
+(31537, 4411, 11), -- M. Atk. Modifiers
+(31537, 4412, 11), -- P. Def. Modifiers
+(31537, 4413, 11), -- M. Def. Modifiers
+(31537, 4414, 2), -- Armor Type
+(31537, 4415, 3), -- Weapon Type
+(31537, 4416, 14), -- Races
 -- Ghost of Adventurer
 (31538, 4045, 1), -- Resist Full Magic Attack
-(31538, 4408, 1), -- HP Increase (1x)
-(31538, 4409, 1), -- MP Increase (1x)
-(31538, 4410, 11), -- Average P. Atk.
-(31538, 4411, 11), -- Average M. Atk.
-(31538, 4412, 11), -- Average P. Def.
-(31538, 4413, 11), -- Average M. Def.
-(31538, 4414, 2), -- Standard Type
-(31538, 4415, 3), -- One-handed Sword
-(31538, 4416, 1), -- Undead
+(31538, 4408, 1), -- HP Modifiers
+(31538, 4409, 1), -- MP Modifiers
+(31538, 4410, 11), -- P. Atk. Modifiers
+(31538, 4411, 11), -- M. Atk. Modifiers
+(31538, 4412, 11), -- P. Def. Modifiers
+(31538, 4413, 11), -- M. Def. Modifiers
+(31538, 4414, 2), -- Armor Type
+(31538, 4415, 3), -- Weapon Type
+(31538, 4416, 1), -- Races
 -- Vulcan
 (31539, 4045, 1), -- Resist Full Magic Attack
-(31539, 4408, 1), -- HP Increase (1x)
-(31539, 4409, 1), -- MP Increase (1x)
-(31539, 4410, 11), -- Average P. Atk.
-(31539, 4411, 11), -- Average M. Atk.
-(31539, 4412, 11), -- Average P. Def.
-(31539, 4413, 11), -- Average M. Def.
-(31539, 4414, 2), -- Standard Type
-(31539, 4415, 3), -- One-handed Sword
-(31539, 4416, 18), -- Dwarves
+(31539, 4408, 1), -- HP Modifiers
+(31539, 4409, 1), -- MP Modifiers
+(31539, 4410, 11), -- P. Atk. Modifiers
+(31539, 4411, 11), -- M. Atk. Modifiers
+(31539, 4412, 11), -- P. Def. Modifiers
+(31539, 4413, 11), -- M. Def. Modifiers
+(31539, 4414, 2), -- Armor Type
+(31539, 4415, 3), -- Weapon Type
+(31539, 4416, 18), -- Races
 -- Klein
 (31540, 4045, 1), -- Resist Full Magic Attack
-(31540, 4408, 1), -- HP Increase (1x)
-(31540, 4409, 1), -- MP Increase (1x)
-(31540, 4410, 11), -- Average P. Atk.
-(31540, 4411, 11), -- Average M. Atk.
-(31540, 4412, 11), -- Average P. Def.
-(31540, 4413, 11), -- Average M. Def.
-(31540, 4414, 2), -- Standard Type
-(31540, 4415, 3), -- One-handed Sword
-(31540, 4416, 1), -- Undead
+(31540, 4408, 1), -- HP Modifiers
+(31540, 4409, 1), -- MP Modifiers
+(31540, 4410, 11), -- P. Atk. Modifiers
+(31540, 4411, 11), -- M. Atk. Modifiers
+(31540, 4412, 11), -- P. Def. Modifiers
+(31540, 4413, 11), -- M. Def. Modifiers
+(31540, 4414, 2), -- Armor Type
+(31540, 4415, 3), -- Weapon Type
+(31540, 4416, 1), -- Races
 -- Daimon's Altar
 (31541, 4045, 1), -- Resist Full Magic Attack
-(31541, 4390, 1), -- Mystic Immunity
-(31541, 4408, 1), -- HP Increase (1x)
-(31541, 4409, 1), -- MP Increase (1x)
-(31541, 4410, 11), -- Average P. Atk.
-(31541, 4411, 11), -- Average M. Atk.
-(31541, 4412, 11), -- Average P. Def.
-(31541, 4413, 11), -- Average M. Def.
-(31541, 4414, 2), -- Standard Type
-(31541, 4415, 3), -- One-handed Sword
-(31541, 4416, 19), -- Others
+(31541, 4390, 1), -- NPC Abnormal Immunity
+(31541, 4408, 1), -- HP Modifiers
+(31541, 4409, 1), -- MP Modifiers
+(31541, 4410, 11), -- P. Atk. Modifiers
+(31541, 4411, 11), -- M. Atk. Modifiers
+(31541, 4412, 11), -- P. Def. Modifiers
+(31541, 4413, 11), -- M. Def. Modifiers
+(31541, 4414, 2), -- Armor Type
+(31541, 4415, 3), -- Weapon Type
+(31541, 4416, 19), -- Races
 -- Yeti's Table
 (31542, 4045, 1), -- Resist Full Magic Attack
-(31542, 4390, 1), -- Mystic Immunity
-(31542, 4408, 1), -- HP Increase (1x)
-(31542, 4409, 1), -- MP Increase (1x)
-(31542, 4410, 11), -- Average P. Atk.
-(31542, 4411, 11), -- Average M. Atk.
-(31542, 4412, 11), -- Average P. Def.
-(31542, 4413, 11), -- Average M. Def.
-(31542, 4414, 2), -- Standard Type
-(31542, 4415, 3), -- One-handed Sword
-(31542, 4416, 19), -- Others
+(31542, 4390, 1), -- NPC Abnormal Immunity
+(31542, 4408, 1), -- HP Modifiers
+(31542, 4409, 1), -- MP Modifiers
+(31542, 4410, 11), -- P. Atk. Modifiers
+(31542, 4411, 11), -- M. Atk. Modifiers
+(31542, 4412, 11), -- P. Def. Modifiers
+(31542, 4413, 11), -- M. Def. Modifiers
+(31542, 4414, 2), -- Armor Type
+(31542, 4415, 3), -- Weapon Type
+(31542, 4416, 19), -- Races
 -- Pulin
 (31543, 4045, 1), -- Resist Full Magic Attack
-(31543, 4408, 1), -- HP Increase (1x)
-(31543, 4409, 1), -- MP Increase (1x)
-(31543, 4410, 11), -- Average P. Atk.
-(31543, 4411, 11), -- Average M. Atk.
-(31543, 4412, 11), -- Average P. Def.
-(31543, 4413, 11), -- Average M. Def.
-(31543, 4414, 2), -- Standard Type
-(31543, 4415, 3), -- One-handed Sword
-(31543, 4416, 18), -- Dwarves
+(31543, 4408, 1), -- HP Modifiers
+(31543, 4409, 1), -- MP Modifiers
+(31543, 4410, 11), -- P. Atk. Modifiers
+(31543, 4411, 11), -- M. Atk. Modifiers
+(31543, 4412, 11), -- P. Def. Modifiers
+(31543, 4413, 11), -- M. Def. Modifiers
+(31543, 4414, 2), -- Armor Type
+(31543, 4415, 3), -- Weapon Type
+(31543, 4416, 18), -- Races
 -- Naff
 (31544, 4045, 1), -- Resist Full Magic Attack
-(31544, 4408, 1), -- HP Increase (1x)
-(31544, 4409, 1), -- MP Increase (1x)
-(31544, 4410, 11), -- Average P. Atk.
-(31544, 4411, 11), -- Average M. Atk.
-(31544, 4412, 11), -- Average P. Def.
-(31544, 4413, 11), -- Average M. Def.
-(31544, 4414, 2), -- Standard Type
-(31544, 4415, 3), -- One-handed Sword
-(31544, 4416, 18), -- Dwarves
+(31544, 4408, 1), -- HP Modifiers
+(31544, 4409, 1), -- MP Modifiers
+(31544, 4410, 11), -- P. Atk. Modifiers
+(31544, 4411, 11), -- M. Atk. Modifiers
+(31544, 4412, 11), -- P. Def. Modifiers
+(31544, 4413, 11), -- M. Def. Modifiers
+(31544, 4414, 2), -- Armor Type
+(31544, 4415, 3), -- Weapon Type
+(31544, 4416, 18), -- Races
 -- Crocus
 (31545, 4045, 1), -- Resist Full Magic Attack
-(31545, 4408, 1), -- HP Increase (1x)
-(31545, 4409, 1), -- MP Increase (1x)
-(31545, 4410, 11), -- Average P. Atk.
-(31545, 4411, 11), -- Average M. Atk.
-(31545, 4412, 11), -- Average P. Def.
-(31545, 4413, 11), -- Average M. Def.
-(31545, 4414, 2), -- Standard Type
-(31545, 4415, 3), -- One-handed Sword
-(31545, 4416, 18), -- Dwarves
+(31545, 4408, 1), -- HP Modifiers
+(31545, 4409, 1), -- MP Modifiers
+(31545, 4410, 11), -- P. Atk. Modifiers
+(31545, 4411, 11), -- M. Atk. Modifiers
+(31545, 4412, 11), -- P. Def. Modifiers
+(31545, 4413, 11), -- M. Def. Modifiers
+(31545, 4414, 2), -- Armor Type
+(31545, 4415, 3), -- Weapon Type
+(31545, 4416, 18), -- Races
 -- Kuber
 (31546, 4045, 1), -- Resist Full Magic Attack
-(31546, 4408, 1), -- HP Increase (1x)
-(31546, 4409, 1), -- MP Increase (1x)
-(31546, 4410, 11), -- Average P. Atk.
-(31546, 4411, 11), -- Average M. Atk.
-(31546, 4412, 11), -- Average P. Def.
-(31546, 4413, 11), -- Average M. Def.
-(31546, 4414, 2), -- Standard Type
-(31546, 4415, 3), -- One-handed Sword
-(31546, 4416, 18), -- Dwarves
+(31546, 4408, 1), -- HP Modifiers
+(31546, 4409, 1), -- MP Modifiers
+(31546, 4410, 11), -- P. Atk. Modifiers
+(31546, 4411, 11), -- M. Atk. Modifiers
+(31546, 4412, 11), -- P. Def. Modifiers
+(31546, 4413, 11), -- M. Def. Modifiers
+(31546, 4414, 2), -- Armor Type
+(31546, 4415, 3), -- Weapon Type
+(31546, 4416, 18), -- Races
 -- Beolin
 (31547, 4045, 1), -- Resist Full Magic Attack
-(31547, 4408, 1), -- HP Increase (1x)
-(31547, 4409, 1), -- MP Increase (1x)
-(31547, 4410, 11), -- Average P. Atk.
-(31547, 4411, 11), -- Average M. Atk.
-(31547, 4412, 11), -- Average P. Def.
-(31547, 4413, 11), -- Average M. Def.
-(31547, 4414, 2), -- Standard Type
-(31547, 4415, 3), -- One-handed Sword
-(31547, 4416, 18), -- Dwarves
+(31547, 4408, 1), -- HP Modifiers
+(31547, 4409, 1), -- MP Modifiers
+(31547, 4410, 11), -- P. Atk. Modifiers
+(31547, 4411, 11), -- M. Atk. Modifiers
+(31547, 4412, 11), -- P. Def. Modifiers
+(31547, 4413, 11), -- M. Def. Modifiers
+(31547, 4414, 2), -- Armor Type
+(31547, 4415, 3), -- Weapon Type
+(31547, 4416, 18), -- Races
 -- Mysterious Ancient Tablet
 (31548, 4045, 1), -- Resist Full Magic Attack
-(31548, 4390, 1), -- Mystic Immunity
-(31548, 4408, 1), -- HP Increase (1x)
-(31548, 4409, 1), -- MP Increase (1x)
-(31548, 4410, 11), -- Average P. Atk.
-(31548, 4411, 11), -- Average M. Atk.
-(31548, 4412, 11), -- Average P. Def.
-(31548, 4413, 11), -- Average M. Def.
-(31548, 4414, 2), -- Standard Type
-(31548, 4415, 3), -- One-handed Sword
-(31548, 4416, 19), -- Others
+(31548, 4390, 1), -- NPC Abnormal Immunity
+(31548, 4408, 1), -- HP Modifiers
+(31548, 4409, 1), -- MP Modifiers
+(31548, 4410, 11), -- P. Atk. Modifiers
+(31548, 4411, 11), -- M. Atk. Modifiers
+(31548, 4412, 11), -- P. Def. Modifiers
+(31548, 4413, 11), -- M. Def. Modifiers
+(31548, 4414, 2), -- Armor Type
+(31548, 4415, 3), -- Weapon Type
+(31548, 4416, 19), -- Races
 -- Mysterious Ancient Tablet
 (31549, 4045, 1), -- Resist Full Magic Attack
-(31549, 4390, 1), -- Mystic Immunity
-(31549, 4408, 1), -- HP Increase (1x)
-(31549, 4409, 1), -- MP Increase (1x)
-(31549, 4410, 11), -- Average P. Atk.
-(31549, 4411, 11), -- Average M. Atk.
-(31549, 4412, 11), -- Average P. Def.
-(31549, 4413, 11), -- Average M. Def.
-(31549, 4414, 2), -- Standard Type
-(31549, 4415, 3), -- One-handed Sword
-(31549, 4416, 19), -- Others
+(31549, 4390, 1), -- NPC Abnormal Immunity
+(31549, 4408, 1), -- HP Modifiers
+(31549, 4409, 1), -- MP Modifiers
+(31549, 4410, 11), -- P. Atk. Modifiers
+(31549, 4411, 11), -- M. Atk. Modifiers
+(31549, 4412, 11), -- P. Def. Modifiers
+(31549, 4413, 11), -- M. Def. Modifiers
+(31549, 4414, 2), -- Armor Type
+(31549, 4415, 3), -- Weapon Type
+(31549, 4416, 19), -- Races
 -- Mysterious Ancient Tablet
 (31550, 4045, 1), -- Resist Full Magic Attack
-(31550, 4390, 1), -- Mystic Immunity
-(31550, 4408, 1), -- HP Increase (1x)
-(31550, 4409, 1), -- MP Increase (1x)
-(31550, 4410, 11), -- Average P. Atk.
-(31550, 4411, 11), -- Average M. Atk.
-(31550, 4412, 11), -- Average P. Def.
-(31550, 4413, 11), -- Average M. Def.
-(31550, 4414, 2), -- Standard Type
-(31550, 4415, 3), -- One-handed Sword
-(31550, 4416, 19), -- Others
+(31550, 4390, 1), -- NPC Abnormal Immunity
+(31550, 4408, 1), -- HP Modifiers
+(31550, 4409, 1), -- MP Modifiers
+(31550, 4410, 11), -- P. Atk. Modifiers
+(31550, 4411, 11), -- M. Atk. Modifiers
+(31550, 4412, 11), -- P. Def. Modifiers
+(31550, 4413, 11), -- M. Def. Modifiers
+(31550, 4414, 2), -- Armor Type
+(31550, 4415, 3), -- Weapon Type
+(31550, 4416, 19), -- Races
 -- Mysterious Ancient Tablet
 (31551, 4045, 1), -- Resist Full Magic Attack
-(31551, 4390, 1), -- Mystic Immunity
-(31551, 4408, 1), -- HP Increase (1x)
-(31551, 4409, 1), -- MP Increase (1x)
-(31551, 4410, 11), -- Average P. Atk.
-(31551, 4411, 11), -- Average M. Atk.
-(31551, 4412, 11), -- Average P. Def.
-(31551, 4413, 11), -- Average M. Def.
-(31551, 4414, 2), -- Standard Type
-(31551, 4415, 3), -- One-handed Sword
-(31551, 4416, 19), -- Others
+(31551, 4390, 1), -- NPC Abnormal Immunity
+(31551, 4408, 1), -- HP Modifiers
+(31551, 4409, 1), -- MP Modifiers
+(31551, 4410, 11), -- P. Atk. Modifiers
+(31551, 4411, 11), -- M. Atk. Modifiers
+(31551, 4412, 11), -- P. Def. Modifiers
+(31551, 4413, 11), -- M. Def. Modifiers
+(31551, 4414, 2), -- Armor Type
+(31551, 4415, 3), -- Weapon Type
+(31551, 4416, 19), -- Races
 -- Mysterious Ancient Tablet
 (31552, 4045, 1), -- Resist Full Magic Attack
-(31552, 4390, 1), -- Mystic Immunity
-(31552, 4408, 1), -- HP Increase (1x)
-(31552, 4409, 1), -- MP Increase (1x)
-(31552, 4410, 11), -- Average P. Atk.
-(31552, 4411, 11), -- Average M. Atk.
-(31552, 4412, 11), -- Average P. Def.
-(31552, 4413, 11), -- Average M. Def.
-(31552, 4414, 2), -- Standard Type
-(31552, 4415, 3), -- One-handed Sword
-(31552, 4416, 19), -- Others
+(31552, 4390, 1), -- NPC Abnormal Immunity
+(31552, 4408, 1), -- HP Modifiers
+(31552, 4409, 1), -- MP Modifiers
+(31552, 4410, 11), -- P. Atk. Modifiers
+(31552, 4411, 11), -- M. Atk. Modifiers
+(31552, 4412, 11), -- P. Def. Modifiers
+(31552, 4413, 11), -- M. Def. Modifiers
+(31552, 4414, 2), -- Armor Type
+(31552, 4415, 3), -- Weapon Type
+(31552, 4416, 19), -- Races
 -- Pierce
 (31553, 4045, 1), -- Resist Full Magic Attack
-(31553, 4408, 1), -- HP Increase (1x)
-(31553, 4409, 1), -- MP Increase (1x)
-(31553, 4410, 11), -- Average P. Atk.
-(31553, 4411, 11), -- Average M. Atk.
-(31553, 4412, 11), -- Average P. Def.
-(31553, 4413, 11), -- Average M. Def.
-(31553, 4414, 2), -- Standard Type
-(31553, 4415, 3), -- One-handed Sword
-(31553, 4416, 14), -- Humans
+(31553, 4408, 1), -- HP Modifiers
+(31553, 4409, 1), -- MP Modifiers
+(31553, 4410, 11), -- P. Atk. Modifiers
+(31553, 4411, 11), -- M. Atk. Modifiers
+(31553, 4412, 11), -- P. Def. Modifiers
+(31553, 4413, 11), -- M. Def. Modifiers
+(31553, 4414, 2), -- Armor Type
+(31553, 4415, 3), -- Weapon Type
+(31553, 4416, 14), -- Races
 -- Kahman
 (31554, 4045, 1), -- Resist Full Magic Attack
-(31554, 4408, 1), -- HP Increase (1x)
-(31554, 4409, 1), -- MP Increase (1x)
-(31554, 4410, 11), -- Average P. Atk.
-(31554, 4411, 11), -- Average M. Atk.
-(31554, 4412, 11), -- Average P. Def.
-(31554, 4413, 11), -- Average M. Def.
-(31554, 4414, 2), -- Standard Type
-(31554, 4415, 3), -- One-handed Sword
-(31554, 4416, 17), -- Orcs
+(31554, 4408, 1), -- HP Modifiers
+(31554, 4409, 1), -- MP Modifiers
+(31554, 4410, 11), -- P. Atk. Modifiers
+(31554, 4411, 11), -- M. Atk. Modifiers
+(31554, 4412, 11), -- P. Def. Modifiers
+(31554, 4413, 11), -- M. Def. Modifiers
+(31554, 4414, 2), -- Armor Type
+(31554, 4415, 3), -- Weapon Type
+(31554, 4416, 17), -- Races
 -- Abercrombie
 (31555, 4045, 1), -- Resist Full Magic Attack
-(31555, 4408, 1), -- HP Increase (1x)
-(31555, 4409, 1), -- MP Increase (1x)
-(31555, 4410, 11), -- Average P. Atk.
-(31555, 4411, 11), -- Average M. Atk.
-(31555, 4412, 11), -- Average P. Def.
-(31555, 4413, 11), -- Average M. Def.
-(31555, 4414, 2), -- Standard Type
-(31555, 4415, 3), -- One-handed Sword
-(31555, 4416, 18), -- Dwarves
+(31555, 4408, 1), -- HP Modifiers
+(31555, 4409, 1), -- MP Modifiers
+(31555, 4410, 11), -- P. Atk. Modifiers
+(31555, 4411, 11), -- M. Atk. Modifiers
+(31555, 4412, 11), -- P. Def. Modifiers
+(31555, 4413, 11), -- M. Def. Modifiers
+(31555, 4414, 2), -- Armor Type
+(31555, 4415, 3), -- Weapon Type
+(31555, 4416, 18), -- Races
 -- Selina
 (31556, 4045, 1), -- Resist Full Magic Attack
-(31556, 4345, 3), -- Might
-(31556, 4352, 1), -- Berserker Spirit
-(31556, 4354, 2), -- Vampiric Rage
-(31556, 4355, 2), -- Acumen
-(31556, 4356, 1), -- Empower
-(31556, 4357, 2), -- Haste
-(31556, 4359, 2), -- Focus
-(31556, 4360, 2), -- Death Whisper
-(31556, 4408, 1), -- HP Increase (1x)
-(31556, 4409, 1), -- MP Increase (1x)
-(31556, 4410, 11), -- Average P. Atk.
-(31556, 4411, 11), -- Average M. Atk.
-(31556, 4412, 11), -- Average P. Def.
-(31556, 4413, 11), -- Average M. Def.
-(31556, 4414, 2), -- Standard Type
-(31556, 4415, 3), -- One-handed Sword
-(31556, 4416, 14), -- Humans
+(31556, 4345, 3), -- Clan Hall: Might
+(31556, 4352, 1), -- Clan Hall: Berserker Spirit
+(31556, 4354, 2), -- Clan Hall: Vampiric Rage
+(31556, 4355, 2), -- Clan Hall: Acumen
+(31556, 4356, 1), -- Clan Hall: Empower
+(31556, 4357, 2), -- Clan Hall: Haste
+(31556, 4359, 2), -- Clan Hall: Focus
+(31556, 4360, 2), -- Clan Hall: Death Whisper
+(31556, 4408, 1), -- HP Modifiers
+(31556, 4409, 1), -- MP Modifiers
+(31556, 4410, 11), -- P. Atk. Modifiers
+(31556, 4411, 11), -- M. Atk. Modifiers
+(31556, 4412, 11), -- P. Def. Modifiers
+(31556, 4413, 11), -- M. Def. Modifiers
+(31556, 4414, 2), -- Armor Type
+(31556, 4415, 3), -- Weapon Type
+(31556, 4416, 14), -- Races
 -- Mercenary Sentry
 (31557, 4045, 1), -- Resist Full Magic Attack
-(31557, 4408, 1), -- HP Increase (1x)
-(31557, 4409, 1), -- MP Increase (1x)
-(31557, 4410, 11), -- Average P. Atk.
-(31557, 4411, 11), -- Average M. Atk.
-(31557, 4412, 11), -- Average P. Def.
-(31557, 4413, 11), -- Average M. Def.
-(31557, 4414, 2), -- Standard Type
-(31557, 4415, 3), -- One-handed Sword
-(31557, 4416, 14), -- Humans
+(31557, 4408, 1), -- HP Modifiers
+(31557, 4409, 1), -- MP Modifiers
+(31557, 4410, 11), -- P. Atk. Modifiers
+(31557, 4411, 11), -- M. Atk. Modifiers
+(31557, 4412, 11), -- P. Def. Modifiers
+(31557, 4413, 11), -- M. Def. Modifiers
+(31557, 4414, 2), -- Armor Type
+(31557, 4415, 3), -- Weapon Type
+(31557, 4416, 14), -- Races
 -- Ketra's Holy Altar
 (31558, 4045, 1), -- Resist Full Magic Attack
-(31558, 4390, 1), -- Mystic Immunity
-(31558, 4408, 1), -- HP Increase (1x)
-(31558, 4409, 1), -- MP Increase (1x)
-(31558, 4410, 11), -- Average P. Atk.
-(31558, 4411, 11), -- Average M. Atk.
-(31558, 4412, 11), -- Average P. Def.
-(31558, 4413, 11), -- Average M. Def.
-(31558, 4414, 2), -- Standard Type
-(31558, 4415, 3), -- One-handed Sword
-(31558, 4416, 19), -- Others
+(31558, 4390, 1), -- NPC Abnormal Immunity
+(31558, 4408, 1), -- HP Modifiers
+(31558, 4409, 1), -- MP Modifiers
+(31558, 4410, 11), -- P. Atk. Modifiers
+(31558, 4411, 11), -- M. Atk. Modifiers
+(31558, 4412, 11), -- P. Def. Modifiers
+(31558, 4413, 11), -- M. Def. Modifiers
+(31558, 4414, 2), -- Armor Type
+(31558, 4415, 3), -- Weapon Type
+(31558, 4416, 19), -- Races
 -- Box of Asefa
 (31559, 4045, 1), -- Resist Full Magic Attack
-(31559, 4390, 1), -- Mystic Immunity
-(31559, 4408, 1), -- HP Increase (1x)
-(31559, 4409, 1), -- MP Increase (1x)
-(31559, 4410, 11), -- Average P. Atk.
-(31559, 4411, 11), -- Average M. Atk.
-(31559, 4412, 11), -- Average P. Def.
-(31559, 4413, 11), -- Average M. Def.
-(31559, 4414, 2), -- Standard Type
-(31559, 4415, 3), -- One-handed Sword
-(31559, 4416, 19), -- Others
+(31559, 4390, 1), -- NPC Abnormal Immunity
+(31559, 4408, 1), -- HP Modifiers
+(31559, 4409, 1), -- MP Modifiers
+(31559, 4410, 11), -- P. Atk. Modifiers
+(31559, 4411, 11), -- M. Atk. Modifiers
+(31559, 4412, 11), -- P. Def. Modifiers
+(31559, 4413, 11), -- M. Def. Modifiers
+(31559, 4414, 2), -- Armor Type
+(31559, 4415, 3), -- Weapon Type
+(31559, 4416, 19), -- Races
 -- Varka's Holy Altar
 (31560, 4045, 1), -- Resist Full Magic Attack
-(31560, 4390, 1), -- Mystic Immunity
-(31560, 4408, 1), -- HP Increase (1x)
-(31560, 4409, 1), -- MP Increase (1x)
-(31560, 4410, 11), -- Average P. Atk.
-(31560, 4411, 11), -- Average M. Atk.
-(31560, 4412, 11), -- Average P. Def.
-(31560, 4413, 11), -- Average M. Def.
-(31560, 4414, 2), -- Standard Type
-(31560, 4415, 3), -- One-handed Sword
-(31560, 4416, 19), -- Others
+(31560, 4390, 1), -- NPC Abnormal Immunity
+(31560, 4408, 1), -- HP Modifiers
+(31560, 4409, 1), -- MP Modifiers
+(31560, 4410, 11), -- P. Atk. Modifiers
+(31560, 4411, 11), -- M. Atk. Modifiers
+(31560, 4412, 11), -- P. Def. Modifiers
+(31560, 4413, 11), -- M. Def. Modifiers
+(31560, 4414, 2), -- Armor Type
+(31560, 4415, 3), -- Weapon Type
+(31560, 4416, 19), -- Races
 -- Udan Mardui's Box
 (31561, 4045, 1), -- Resist Full Magic Attack
-(31561, 4390, 1), -- Mystic Immunity
-(31561, 4408, 1), -- HP Increase (1x)
-(31561, 4409, 1), -- MP Increase (1x)
-(31561, 4410, 11), -- Average P. Atk.
-(31561, 4411, 11), -- Average M. Atk.
-(31561, 4412, 11), -- Average P. Def.
-(31561, 4413, 11), -- Average M. Def.
-(31561, 4414, 2), -- Standard Type
-(31561, 4415, 3), -- One-handed Sword
-(31561, 4416, 19), -- Others
+(31561, 4390, 1), -- NPC Abnormal Immunity
+(31561, 4408, 1), -- HP Modifiers
+(31561, 4409, 1), -- MP Modifiers
+(31561, 4410, 11), -- P. Atk. Modifiers
+(31561, 4411, 11), -- M. Atk. Modifiers
+(31561, 4412, 11), -- P. Def. Modifiers
+(31561, 4413, 11), -- M. Def. Modifiers
+(31561, 4414, 2), -- Armor Type
+(31561, 4415, 3), -- Weapon Type
+(31561, 4416, 19), -- Races
 -- Klufe
 (31562, 4045, 1), -- Resist Full Magic Attack
-(31562, 4408, 1), -- HP Increase (1x)
-(31562, 4409, 1), -- MP Increase (1x)
-(31562, 4410, 11), -- Average P. Atk.
-(31562, 4411, 11), -- Average M. Atk.
-(31562, 4412, 11), -- Average P. Def.
-(31562, 4413, 11), -- Average M. Def.
-(31562, 4414, 2), -- Standard Type
-(31562, 4415, 3), -- One-handed Sword
-(31562, 4416, 14), -- Humans
+(31562, 4408, 1), -- HP Modifiers
+(31562, 4409, 1), -- MP Modifiers
+(31562, 4410, 11), -- P. Atk. Modifiers
+(31562, 4411, 11), -- M. Atk. Modifiers
+(31562, 4412, 11), -- P. Def. Modifiers
+(31562, 4413, 11), -- M. Def. Modifiers
+(31562, 4414, 2), -- Armor Type
+(31562, 4415, 3), -- Weapon Type
+(31562, 4416, 14), -- Races
 -- Perelin
 (31563, 4045, 1), -- Resist Full Magic Attack
-(31563, 4408, 1), -- HP Increase (1x)
-(31563, 4409, 1), -- MP Increase (1x)
-(31563, 4410, 11), -- Average P. Atk.
-(31563, 4411, 11), -- Average M. Atk.
-(31563, 4412, 11), -- Average P. Def.
-(31563, 4413, 11), -- Average M. Def.
-(31563, 4414, 2), -- Standard Type
-(31563, 4415, 3), -- One-handed Sword
-(31563, 4416, 14), -- Humans
+(31563, 4408, 1), -- HP Modifiers
+(31563, 4409, 1), -- MP Modifiers
+(31563, 4410, 11), -- P. Atk. Modifiers
+(31563, 4411, 11), -- M. Atk. Modifiers
+(31563, 4412, 11), -- P. Def. Modifiers
+(31563, 4413, 11), -- M. Def. Modifiers
+(31563, 4414, 2), -- Armor Type
+(31563, 4415, 3), -- Weapon Type
+(31563, 4416, 14), -- Races
 -- Mishini
 (31564, 4045, 1), -- Resist Full Magic Attack
-(31564, 4408, 1), -- HP Increase (1x)
-(31564, 4409, 1), -- MP Increase (1x)
-(31564, 4410, 11), -- Average P. Atk.
-(31564, 4411, 11), -- Average M. Atk.
-(31564, 4412, 11), -- Average P. Def.
-(31564, 4413, 11), -- Average M. Def.
-(31564, 4414, 2), -- Standard Type
-(31564, 4415, 3), -- One-handed Sword
-(31564, 4416, 14), -- Humans
+(31564, 4408, 1), -- HP Modifiers
+(31564, 4409, 1), -- MP Modifiers
+(31564, 4410, 11), -- P. Atk. Modifiers
+(31564, 4411, 11), -- M. Atk. Modifiers
+(31564, 4412, 11), -- P. Def. Modifiers
+(31564, 4413, 11), -- M. Def. Modifiers
+(31564, 4414, 2), -- Armor Type
+(31564, 4415, 3), -- Weapon Type
+(31564, 4416, 14), -- Races
 -- Ogord
 (31565, 4045, 1), -- Resist Full Magic Attack
-(31565, 4408, 1), -- HP Increase (1x)
-(31565, 4409, 1), -- MP Increase (1x)
-(31565, 4410, 11), -- Average P. Atk.
-(31565, 4411, 11), -- Average M. Atk.
-(31565, 4412, 11), -- Average P. Def.
-(31565, 4413, 11), -- Average M. Def.
-(31565, 4414, 2), -- Standard Type
-(31565, 4415, 3), -- One-handed Sword
-(31565, 4416, 14), -- Humans
+(31565, 4408, 1), -- HP Modifiers
+(31565, 4409, 1), -- MP Modifiers
+(31565, 4410, 11), -- P. Atk. Modifiers
+(31565, 4411, 11), -- M. Atk. Modifiers
+(31565, 4412, 11), -- P. Def. Modifiers
+(31565, 4413, 11), -- M. Def. Modifiers
+(31565, 4414, 2), -- Armor Type
+(31565, 4415, 3), -- Weapon Type
+(31565, 4416, 14), -- Races
 -- Ropfi
 (31566, 4045, 1), -- Resist Full Magic Attack
-(31566, 4408, 1), -- HP Increase (1x)
-(31566, 4409, 1), -- MP Increase (1x)
-(31566, 4410, 11), -- Average P. Atk.
-(31566, 4411, 11), -- Average M. Atk.
-(31566, 4412, 11), -- Average P. Def.
-(31566, 4413, 11), -- Average M. Def.
-(31566, 4414, 2), -- Standard Type
-(31566, 4415, 3), -- One-handed Sword
-(31566, 4416, 14), -- Humans
+(31566, 4408, 1), -- HP Modifiers
+(31566, 4409, 1), -- MP Modifiers
+(31566, 4410, 11), -- P. Atk. Modifiers
+(31566, 4411, 11), -- M. Atk. Modifiers
+(31566, 4412, 11), -- P. Def. Modifiers
+(31566, 4413, 11), -- M. Def. Modifiers
+(31566, 4414, 2), -- Armor Type
+(31566, 4415, 3), -- Weapon Type
+(31566, 4416, 14), -- Races
 -- Bleaker
 (31567, 4045, 1), -- Resist Full Magic Attack
-(31567, 4408, 1), -- HP Increase (1x)
-(31567, 4409, 1), -- MP Increase (1x)
-(31567, 4410, 11), -- Average P. Atk.
-(31567, 4411, 11), -- Average M. Atk.
-(31567, 4412, 11), -- Average P. Def.
-(31567, 4413, 11), -- Average M. Def.
-(31567, 4414, 2), -- Standard Type
-(31567, 4415, 3), -- One-handed Sword
-(31567, 4416, 14), -- Humans
+(31567, 4408, 1), -- HP Modifiers
+(31567, 4409, 1), -- MP Modifiers
+(31567, 4410, 11), -- P. Atk. Modifiers
+(31567, 4411, 11), -- M. Atk. Modifiers
+(31567, 4412, 11), -- P. Def. Modifiers
+(31567, 4413, 11), -- M. Def. Modifiers
+(31567, 4414, 2), -- Armor Type
+(31567, 4415, 3), -- Weapon Type
+(31567, 4416, 14), -- Races
 -- Pamfus
 (31568, 4045, 1), -- Resist Full Magic Attack
-(31568, 4408, 1), -- HP Increase (1x)
-(31568, 4409, 1), -- MP Increase (1x)
-(31568, 4410, 11), -- Average P. Atk.
-(31568, 4411, 11), -- Average M. Atk.
-(31568, 4412, 11), -- Average P. Def.
-(31568, 4413, 11), -- Average M. Def.
-(31568, 4414, 2), -- Standard Type
-(31568, 4415, 3), -- One-handed Sword
-(31568, 4416, 14), -- Humans
+(31568, 4408, 1), -- HP Modifiers
+(31568, 4409, 1), -- MP Modifiers
+(31568, 4410, 11), -- P. Atk. Modifiers
+(31568, 4411, 11), -- M. Atk. Modifiers
+(31568, 4412, 11), -- P. Def. Modifiers
+(31568, 4413, 11), -- M. Def. Modifiers
+(31568, 4414, 2), -- Armor Type
+(31568, 4415, 3), -- Weapon Type
+(31568, 4416, 14), -- Races
 -- Cyano
 (31569, 4045, 1), -- Resist Full Magic Attack
-(31569, 4408, 1), -- HP Increase (1x)
-(31569, 4409, 1), -- MP Increase (1x)
-(31569, 4410, 11), -- Average P. Atk.
-(31569, 4411, 11), -- Average M. Atk.
-(31569, 4412, 11), -- Average P. Def.
-(31569, 4413, 11), -- Average M. Def.
-(31569, 4414, 2), -- Standard Type
-(31569, 4415, 3), -- One-handed Sword
-(31569, 4416, 14), -- Humans
+(31569, 4408, 1), -- HP Modifiers
+(31569, 4409, 1), -- MP Modifiers
+(31569, 4410, 11), -- P. Atk. Modifiers
+(31569, 4411, 11), -- M. Atk. Modifiers
+(31569, 4412, 11), -- P. Def. Modifiers
+(31569, 4413, 11), -- M. Def. Modifiers
+(31569, 4414, 2), -- Armor Type
+(31569, 4415, 3), -- Weapon Type
+(31569, 4416, 14), -- Races
 -- Lanosco
 (31570, 4045, 1), -- Resist Full Magic Attack
-(31570, 4408, 1), -- HP Increase (1x)
-(31570, 4409, 1), -- MP Increase (1x)
-(31570, 4410, 11), -- Average P. Atk.
-(31570, 4411, 11), -- Average M. Atk.
-(31570, 4412, 11), -- Average P. Def.
-(31570, 4413, 11), -- Average M. Def.
-(31570, 4414, 2), -- Standard Type
-(31570, 4415, 3), -- One-handed Sword
-(31570, 4416, 14), -- Humans
+(31570, 4408, 1), -- HP Modifiers
+(31570, 4409, 1), -- MP Modifiers
+(31570, 4410, 11), -- P. Atk. Modifiers
+(31570, 4411, 11), -- M. Atk. Modifiers
+(31570, 4412, 11), -- P. Def. Modifiers
+(31570, 4413, 11), -- M. Def. Modifiers
+(31570, 4414, 2), -- Armor Type
+(31570, 4415, 3), -- Weapon Type
+(31570, 4416, 14), -- Races
 -- Hufs
 (31571, 4045, 1), -- Resist Full Magic Attack
-(31571, 4408, 1), -- HP Increase (1x)
-(31571, 4409, 1), -- MP Increase (1x)
-(31571, 4410, 11), -- Average P. Atk.
-(31571, 4411, 11), -- Average M. Atk.
-(31571, 4412, 11), -- Average P. Def.
-(31571, 4413, 11), -- Average M. Def.
-(31571, 4414, 2), -- Standard Type
-(31571, 4415, 3), -- One-handed Sword
-(31571, 4416, 14), -- Humans
+(31571, 4408, 1), -- HP Modifiers
+(31571, 4409, 1), -- MP Modifiers
+(31571, 4410, 11), -- P. Atk. Modifiers
+(31571, 4411, 11), -- M. Atk. Modifiers
+(31571, 4412, 11), -- P. Def. Modifiers
+(31571, 4413, 11), -- M. Def. Modifiers
+(31571, 4414, 2), -- Armor Type
+(31571, 4415, 3), -- Weapon Type
+(31571, 4416, 14), -- Races
 -- O'Fulle
 (31572, 4045, 1), -- Resist Full Magic Attack
-(31572, 4408, 1), -- HP Increase (1x)
-(31572, 4409, 1), -- MP Increase (1x)
-(31572, 4410, 11), -- Average P. Atk.
-(31572, 4411, 11), -- Average M. Atk.
-(31572, 4412, 11), -- Average P. Def.
-(31572, 4413, 11), -- Average M. Def.
-(31572, 4414, 2), -- Standard Type
-(31572, 4415, 3), -- One-handed Sword
-(31572, 4416, 14), -- Humans
+(31572, 4408, 1), -- HP Modifiers
+(31572, 4409, 1), -- MP Modifiers
+(31572, 4410, 11), -- P. Atk. Modifiers
+(31572, 4411, 11), -- M. Atk. Modifiers
+(31572, 4412, 11), -- P. Def. Modifiers
+(31572, 4413, 11), -- M. Def. Modifiers
+(31572, 4414, 2), -- Armor Type
+(31572, 4415, 3), -- Weapon Type
+(31572, 4416, 14), -- Races
 -- Monakan
 (31573, 4045, 1), -- Resist Full Magic Attack
-(31573, 4408, 1), -- HP Increase (1x)
-(31573, 4409, 1), -- MP Increase (1x)
-(31573, 4410, 11), -- Average P. Atk.
-(31573, 4411, 11), -- Average M. Atk.
-(31573, 4412, 11), -- Average P. Def.
-(31573, 4413, 11), -- Average M. Def.
-(31573, 4414, 2), -- Standard Type
-(31573, 4415, 3), -- One-handed Sword
-(31573, 4416, 14), -- Humans
+(31573, 4408, 1), -- HP Modifiers
+(31573, 4409, 1), -- MP Modifiers
+(31573, 4410, 11), -- P. Atk. Modifiers
+(31573, 4411, 11), -- M. Atk. Modifiers
+(31573, 4412, 11), -- P. Def. Modifiers
+(31573, 4413, 11), -- M. Def. Modifiers
+(31573, 4414, 2), -- Armor Type
+(31573, 4415, 3), -- Weapon Type
+(31573, 4416, 14), -- Races
 -- Willie
 (31574, 4045, 1), -- Resist Full Magic Attack
-(31574, 4408, 1), -- HP Increase (1x)
-(31574, 4409, 1), -- MP Increase (1x)
-(31574, 4410, 11), -- Average P. Atk.
-(31574, 4411, 11), -- Average M. Atk.
-(31574, 4412, 11), -- Average P. Def.
-(31574, 4413, 11), -- Average M. Def.
-(31574, 4414, 2), -- Standard Type
-(31574, 4415, 3), -- One-handed Sword
-(31574, 4416, 14), -- Humans
+(31574, 4408, 1), -- HP Modifiers
+(31574, 4409, 1), -- MP Modifiers
+(31574, 4410, 11), -- P. Atk. Modifiers
+(31574, 4411, 11), -- M. Atk. Modifiers
+(31574, 4412, 11), -- P. Def. Modifiers
+(31574, 4413, 11), -- M. Def. Modifiers
+(31574, 4414, 2), -- Armor Type
+(31574, 4415, 3), -- Weapon Type
+(31574, 4416, 14), -- Races
 -- Litulon
 (31575, 4045, 1), -- Resist Full Magic Attack
-(31575, 4408, 1), -- HP Increase (1x)
-(31575, 4409, 1), -- MP Increase (1x)
-(31575, 4410, 11), -- Average P. Atk.
-(31575, 4411, 11), -- Average M. Atk.
-(31575, 4412, 11), -- Average P. Def.
-(31575, 4413, 11), -- Average M. Def.
-(31575, 4414, 2), -- Standard Type
-(31575, 4415, 3), -- One-handed Sword
-(31575, 4416, 14), -- Humans
+(31575, 4408, 1), -- HP Modifiers
+(31575, 4409, 1), -- MP Modifiers
+(31575, 4410, 11), -- P. Atk. Modifiers
+(31575, 4411, 11), -- M. Atk. Modifiers
+(31575, 4412, 11), -- P. Def. Modifiers
+(31575, 4413, 11), -- M. Def. Modifiers
+(31575, 4414, 2), -- Armor Type
+(31575, 4415, 3), -- Weapon Type
+(31575, 4416, 14), -- Races
 -- Berix
 (31576, 4045, 1), -- Resist Full Magic Attack
-(31576, 4408, 1), -- HP Increase (1x)
-(31576, 4409, 1), -- MP Increase (1x)
-(31576, 4410, 11), -- Average P. Atk.
-(31576, 4411, 11), -- Average M. Atk.
-(31576, 4412, 11), -- Average P. Def.
-(31576, 4413, 11), -- Average M. Def.
-(31576, 4414, 2), -- Standard Type
-(31576, 4415, 3), -- One-handed Sword
-(31576, 4416, 14), -- Humans
+(31576, 4408, 1), -- HP Modifiers
+(31576, 4409, 1), -- MP Modifiers
+(31576, 4410, 11), -- P. Atk. Modifiers
+(31576, 4411, 11), -- M. Atk. Modifiers
+(31576, 4412, 11), -- P. Def. Modifiers
+(31576, 4413, 11), -- M. Def. Modifiers
+(31576, 4414, 2), -- Armor Type
+(31576, 4415, 3), -- Weapon Type
+(31576, 4416, 14), -- Races
 -- Linnaeus
 (31577, 4045, 1), -- Resist Full Magic Attack
-(31577, 4408, 1), -- HP Increase (1x)
-(31577, 4409, 1), -- MP Increase (1x)
-(31577, 4410, 11), -- Average P. Atk.
-(31577, 4411, 11), -- Average M. Atk.
-(31577, 4412, 11), -- Average P. Def.
-(31577, 4413, 11), -- Average M. Def.
-(31577, 4414, 2), -- Standard Type
-(31577, 4415, 3), -- One-handed Sword
-(31577, 4416, 14), -- Humans
+(31577, 4408, 1), -- HP Modifiers
+(31577, 4409, 1), -- MP Modifiers
+(31577, 4410, 11), -- P. Atk. Modifiers
+(31577, 4411, 11), -- M. Atk. Modifiers
+(31577, 4412, 11), -- P. Def. Modifiers
+(31577, 4413, 11), -- M. Def. Modifiers
+(31577, 4414, 2), -- Armor Type
+(31577, 4415, 3), -- Weapon Type
+(31577, 4416, 14), -- Races
 -- Hilgendorf
 (31578, 4045, 1), -- Resist Full Magic Attack
-(31578, 4408, 1), -- HP Increase (1x)
-(31578, 4409, 1), -- MP Increase (1x)
-(31578, 4410, 11), -- Average P. Atk.
-(31578, 4411, 11), -- Average M. Atk.
-(31578, 4412, 11), -- Average P. Def.
-(31578, 4413, 11), -- Average M. Def.
-(31578, 4414, 2), -- Standard Type
-(31578, 4415, 3), -- One-handed Sword
-(31578, 4416, 14), -- Humans
+(31578, 4408, 1), -- HP Modifiers
+(31578, 4409, 1), -- MP Modifiers
+(31578, 4410, 11), -- P. Atk. Modifiers
+(31578, 4411, 11), -- M. Atk. Modifiers
+(31578, 4412, 11), -- P. Def. Modifiers
+(31578, 4413, 11), -- M. Def. Modifiers
+(31578, 4414, 2), -- Armor Type
+(31578, 4415, 3), -- Weapon Type
+(31578, 4416, 14), -- Races
 -- Klaus
 (31579, 4045, 1), -- Resist Full Magic Attack
-(31579, 4408, 1), -- HP Increase (1x)
-(31579, 4409, 1), -- MP Increase (1x)
-(31579, 4410, 11), -- Average P. Atk.
-(31579, 4411, 11), -- Average M. Atk.
-(31579, 4412, 11), -- Average P. Def.
-(31579, 4413, 11), -- Average M. Def.
-(31579, 4414, 2), -- Standard Type
-(31579, 4415, 3), -- One-handed Sword
-(31579, 4416, 14), -- Humans
+(31579, 4408, 1), -- HP Modifiers
+(31579, 4409, 1), -- MP Modifiers
+(31579, 4410, 11), -- P. Atk. Modifiers
+(31579, 4411, 11), -- M. Atk. Modifiers
+(31579, 4412, 11), -- P. Def. Modifiers
+(31579, 4413, 11), -- M. Def. Modifiers
+(31579, 4414, 2), -- Armor Type
+(31579, 4415, 3), -- Weapon Type
+(31579, 4416, 14), -- Races
 -- Galadrid
 (31580, 4045, 1), -- Resist Full Magic Attack
-(31580, 4408, 1), -- HP Increase (1x)
-(31580, 4409, 1), -- MP Increase (1x)
-(31580, 4410, 11), -- Average P. Atk.
-(31580, 4411, 11), -- Average M. Atk.
-(31580, 4412, 11), -- Average P. Def.
-(31580, 4413, 11), -- Average M. Def.
-(31580, 4414, 2), -- Standard Type
-(31580, 4415, 3), -- One-handed Sword
-(31580, 4416, 16), -- Dark Elves
+(31580, 4408, 1), -- HP Modifiers
+(31580, 4409, 1), -- MP Modifiers
+(31580, 4410, 11), -- P. Atk. Modifiers
+(31580, 4411, 11), -- M. Atk. Modifiers
+(31580, 4412, 11), -- P. Def. Modifiers
+(31580, 4413, 11), -- M. Def. Modifiers
+(31580, 4414, 2), -- Armor Type
+(31580, 4415, 3), -- Weapon Type
+(31580, 4416, 16), -- Races
 -- Anastia
 (31581, 4045, 1), -- Resist Full Magic Attack
-(31581, 4408, 1), -- HP Increase (1x)
-(31581, 4409, 1), -- MP Increase (1x)
-(31581, 4410, 11), -- Average P. Atk.
-(31581, 4411, 11), -- Average M. Atk.
-(31581, 4412, 11), -- Average P. Def.
-(31581, 4413, 11), -- Average M. Def.
-(31581, 4414, 2), -- Standard Type
-(31581, 4415, 3), -- One-handed Sword
-(31581, 4416, 16), -- Dark Elves
+(31581, 4408, 1), -- HP Modifiers
+(31581, 4409, 1), -- MP Modifiers
+(31581, 4410, 11), -- P. Atk. Modifiers
+(31581, 4411, 11), -- M. Atk. Modifiers
+(31581, 4412, 11), -- P. Def. Modifiers
+(31581, 4413, 11), -- M. Def. Modifiers
+(31581, 4414, 2), -- Armor Type
+(31581, 4415, 3), -- Weapon Type
+(31581, 4416, 16), -- Races
 -- Mordred
 (31582, 4045, 1), -- Resist Full Magic Attack
-(31582, 4408, 1), -- HP Increase (1x)
-(31582, 4409, 1), -- MP Increase (1x)
-(31582, 4410, 11), -- Average P. Atk.
-(31582, 4411, 11), -- Average M. Atk.
-(31582, 4412, 11), -- Average P. Def.
-(31582, 4413, 11), -- Average M. Def.
-(31582, 4414, 2), -- Standard Type
-(31582, 4415, 3), -- One-handed Sword
-(31582, 4416, 9), -- Demons
+(31582, 4408, 1), -- HP Modifiers
+(31582, 4409, 1), -- MP Modifiers
+(31582, 4410, 11), -- P. Atk. Modifiers
+(31582, 4411, 11), -- M. Atk. Modifiers
+(31582, 4412, 11), -- P. Def. Modifiers
+(31582, 4413, 11), -- M. Def. Modifiers
+(31582, 4414, 2), -- Armor Type
+(31582, 4415, 3), -- Weapon Type
+(31582, 4416, 9), -- Races
 -- Feynn
 (31583, 4045, 1), -- Resist Full Magic Attack
-(31583, 4408, 1), -- HP Increase (1x)
-(31583, 4409, 1), -- MP Increase (1x)
-(31583, 4410, 11), -- Average P. Atk.
-(31583, 4411, 11), -- Average M. Atk.
-(31583, 4412, 11), -- Average P. Def.
-(31583, 4413, 11), -- Average M. Def.
-(31583, 4414, 2), -- Standard Type
-(31583, 4415, 3), -- One-handed Sword
-(31583, 4416, 18), -- Dwarves
+(31583, 4408, 1), -- HP Modifiers
+(31583, 4409, 1), -- MP Modifiers
+(31583, 4410, 11), -- P. Atk. Modifiers
+(31583, 4411, 11), -- M. Atk. Modifiers
+(31583, 4412, 11), -- P. Def. Modifiers
+(31583, 4413, 11), -- M. Def. Modifiers
+(31583, 4414, 2), -- Armor Type
+(31583, 4415, 3), -- Weapon Type
+(31583, 4416, 18), -- Races
 -- Valentine
 (31584, 4045, 1), -- Resist Full Magic Attack
-(31584, 4408, 1), -- HP Increase (1x)
-(31584, 4409, 1), -- MP Increase (1x)
-(31584, 4410, 11), -- Average P. Atk.
-(31584, 4411, 11), -- Average M. Atk.
-(31584, 4412, 11), -- Average P. Def.
-(31584, 4413, 11), -- Average M. Def.
-(31584, 4414, 2), -- Standard Type
-(31584, 4415, 3), -- One-handed Sword
-(31584, 4416, 18), -- Dwarves
+(31584, 4408, 1), -- HP Modifiers
+(31584, 4409, 1), -- MP Modifiers
+(31584, 4410, 11), -- P. Atk. Modifiers
+(31584, 4411, 11), -- M. Atk. Modifiers
+(31584, 4412, 11), -- P. Def. Modifiers
+(31584, 4413, 11), -- M. Def. Modifiers
+(31584, 4414, 2), -- Armor Type
+(31584, 4415, 3), -- Weapon Type
+(31584, 4416, 18), -- Races
 -- Sparky the Cat
 (31585, 4045, 1), -- Resist Full Magic Attack
-(31585, 4408, 1), -- HP Increase (1x)
-(31585, 4409, 1), -- MP Increase (1x)
-(31585, 4410, 11), -- Average P. Atk.
-(31585, 4411, 11), -- Average M. Atk.
-(31585, 4412, 11), -- Average P. Def.
-(31585, 4413, 11), -- Average M. Def.
-(31585, 4414, 2), -- Standard Type
-(31585, 4415, 3), -- One-handed Sword
-(31585, 4416, 7), -- Spirits
+(31585, 4408, 1), -- HP Modifiers
+(31585, 4409, 1), -- MP Modifiers
+(31585, 4410, 11), -- P. Atk. Modifiers
+(31585, 4411, 11), -- M. Atk. Modifiers
+(31585, 4412, 11), -- P. Def. Modifiers
+(31585, 4413, 11), -- M. Def. Modifiers
+(31585, 4414, 2), -- Armor Type
+(31585, 4415, 3), -- Weapon Type
+(31585, 4416, 7), -- Races
 -- Sparky the Cat
 (31586, 4045, 1), -- Resist Full Magic Attack
-(31586, 4408, 1), -- HP Increase (1x)
-(31586, 4409, 1), -- MP Increase (1x)
-(31586, 4410, 11), -- Average P. Atk.
-(31586, 4411, 11), -- Average M. Atk.
-(31586, 4412, 11), -- Average P. Def.
-(31586, 4413, 11), -- Average M. Def.
-(31586, 4414, 2), -- Standard Type
-(31586, 4415, 3), -- One-handed Sword
-(31586, 4416, 7), -- Spirits
+(31586, 4408, 1), -- HP Modifiers
+(31586, 4409, 1), -- MP Modifiers
+(31586, 4410, 11), -- P. Atk. Modifiers
+(31586, 4411, 11), -- M. Atk. Modifiers
+(31586, 4412, 11), -- P. Def. Modifiers
+(31586, 4413, 11), -- M. Def. Modifiers
+(31586, 4414, 2), -- Armor Type
+(31586, 4415, 3), -- Weapon Type
+(31586, 4416, 7), -- Races
 -- Gedrik
 (31587, 4045, 1), -- Resist Full Magic Attack
-(31587, 4408, 1), -- HP Increase (1x)
-(31587, 4409, 1), -- MP Increase (1x)
-(31587, 4410, 11), -- Average P. Atk.
-(31587, 4411, 11), -- Average M. Atk.
-(31587, 4412, 11), -- Average P. Def.
-(31587, 4413, 11), -- Average M. Def.
-(31587, 4414, 2), -- Standard Type
-(31587, 4415, 3), -- One-handed Sword
-(31587, 4416, 18), -- Dwarves
+(31587, 4408, 1), -- HP Modifiers
+(31587, 4409, 1), -- MP Modifiers
+(31587, 4410, 11), -- P. Atk. Modifiers
+(31587, 4411, 11), -- M. Atk. Modifiers
+(31587, 4412, 11), -- P. Def. Modifiers
+(31587, 4413, 11), -- M. Def. Modifiers
+(31587, 4414, 2), -- Armor Type
+(31587, 4415, 3), -- Weapon Type
+(31587, 4416, 18), -- Races
 -- Agnes
 (31588, 4045, 1), -- Resist Full Magic Attack
-(31588, 4408, 1), -- HP Increase (1x)
-(31588, 4409, 1), -- MP Increase (1x)
-(31588, 4410, 11), -- Average P. Atk.
-(31588, 4411, 11), -- Average M. Atk.
-(31588, 4412, 11), -- Average P. Def.
-(31588, 4413, 11), -- Average M. Def.
-(31588, 4414, 2), -- Standard Type
-(31588, 4415, 3), -- One-handed Sword
-(31588, 4416, 15), -- Elves
+(31588, 4408, 1), -- HP Modifiers
+(31588, 4409, 1), -- MP Modifiers
+(31588, 4410, 11), -- P. Atk. Modifiers
+(31588, 4411, 11), -- M. Atk. Modifiers
+(31588, 4412, 11), -- P. Def. Modifiers
+(31588, 4413, 11), -- M. Def. Modifiers
+(31588, 4414, 2), -- Armor Type
+(31588, 4415, 3), -- Weapon Type
+(31588, 4416, 15), -- Races
 -- Duda-Mara Totem Spirit 
 (31589, 4045, 1), -- Resist Full Magic Attack
-(31589, 4408, 1), -- HP Increase (1x)
-(31589, 4409, 1), -- MP Increase (1x)
-(31589, 4410, 11), -- Average P. Atk.
-(31589, 4411, 11), -- Average M. Atk.
-(31589, 4412, 11), -- Average P. Def.
-(31589, 4413, 11), -- Average M. Def.
-(31589, 4414, 2), -- Standard Type
-(31589, 4415, 3), -- One-handed Sword
-(31589, 4416, 12), -- Bugs
+(31589, 4408, 1), -- HP Modifiers
+(31589, 4409, 1), -- MP Modifiers
+(31589, 4410, 11), -- P. Atk. Modifiers
+(31589, 4411, 11), -- M. Atk. Modifiers
+(31589, 4412, 11), -- P. Def. Modifiers
+(31589, 4413, 11), -- M. Def. Modifiers
+(31589, 4414, 2), -- Armor Type
+(31589, 4415, 3), -- Weapon Type
+(31589, 4416, 12), -- Races
 -- Truth Scholar Devianne
 (31590, 4045, 1), -- Resist Full Magic Attack
-(31590, 4408, 1), -- HP Increase (1x)
-(31590, 4409, 1), -- MP Increase (1x)
-(31590, 4410, 11), -- Average P. Atk.
-(31590, 4411, 11), -- Average M. Atk.
-(31590, 4412, 11), -- Average P. Def.
-(31590, 4413, 11), -- Average M. Def.
-(31590, 4414, 2), -- Standard Type
-(31590, 4415, 3), -- One-handed Sword
-(31590, 4416, 14), -- Humans
+(31590, 4408, 1), -- HP Modifiers
+(31590, 4409, 1), -- MP Modifiers
+(31590, 4410, 11), -- P. Atk. Modifiers
+(31590, 4411, 11), -- M. Atk. Modifiers
+(31590, 4412, 11), -- P. Def. Modifiers
+(31590, 4413, 11), -- M. Def. Modifiers
+(31590, 4414, 2), -- Armor Type
+(31590, 4415, 3), -- Weapon Type
+(31590, 4416, 14), -- Races
 -- Sunset Guide Luna
 (31591, 4045, 1), -- Resist Full Magic Attack
-(31591, 4408, 1), -- HP Increase (1x)
-(31591, 4409, 1), -- MP Increase (1x)
-(31591, 4410, 11), -- Average P. Atk.
-(31591, 4411, 11), -- Average M. Atk.
-(31591, 4412, 11), -- Average P. Def.
-(31591, 4413, 11), -- Average M. Def.
-(31591, 4414, 2), -- Standard Type
-(31591, 4415, 3), -- One-handed Sword
-(31591, 4416, 14), -- Humans
+(31591, 4408, 1), -- HP Modifiers
+(31591, 4409, 1), -- MP Modifiers
+(31591, 4410, 11), -- P. Atk. Modifiers
+(31591, 4411, 11), -- M. Atk. Modifiers
+(31591, 4412, 11), -- P. Def. Modifiers
+(31591, 4413, 11), -- M. Def. Modifiers
+(31591, 4414, 2), -- Armor Type
+(31591, 4415, 3), -- Weapon Type
+(31591, 4416, 14), -- Races
 -- Telson
 (31592, 4045, 1), -- Resist Full Magic Attack
-(31592, 4408, 1), -- HP Increase (1x)
-(31592, 4409, 1), -- MP Increase (1x)
-(31592, 4410, 11), -- Average P. Atk.
-(31592, 4411, 11), -- Average M. Atk.
-(31592, 4412, 11), -- Average P. Def.
-(31592, 4413, 11), -- Average M. Def.
-(31592, 4414, 2), -- Standard Type
-(31592, 4415, 3), -- One-handed Sword
-(31592, 4416, 18), -- Dwarves
+(31592, 4408, 1), -- HP Modifiers
+(31592, 4409, 1), -- MP Modifiers
+(31592, 4410, 11), -- P. Atk. Modifiers
+(31592, 4411, 11), -- M. Atk. Modifiers
+(31592, 4412, 11), -- P. Def. Modifiers
+(31592, 4413, 11), -- M. Def. Modifiers
+(31592, 4414, 2), -- Armor Type
+(31592, 4415, 3), -- Weapon Type
+(31592, 4416, 18), -- Races
 -- Dorothy
 (31593, 4045, 1), -- Resist Full Magic Attack
-(31593, 4390, 1), -- Mystic Immunity
-(31593, 4408, 1), -- HP Increase (1x)
-(31593, 4409, 1), -- MP Increase (1x)
-(31593, 4410, 11), -- Average P. Atk.
-(31593, 4411, 11), -- Average M. Atk.
-(31593, 4412, 11), -- Average P. Def.
-(31593, 4413, 11), -- Average M. Def.
-(31593, 4414, 2), -- Standard Type
-(31593, 4415, 3), -- One-handed Sword
-(31593, 4416, 2), -- Magic Creatures
+(31593, 4390, 1), -- NPC Abnormal Immunity
+(31593, 4408, 1), -- HP Modifiers
+(31593, 4409, 1), -- MP Modifiers
+(31593, 4410, 11), -- P. Atk. Modifiers
+(31593, 4411, 11), -- M. Atk. Modifiers
+(31593, 4412, 11), -- P. Def. Modifiers
+(31593, 4413, 11), -- M. Def. Modifiers
+(31593, 4414, 2), -- Armor Type
+(31593, 4415, 3), -- Weapon Type
+(31593, 4416, 2), -- Races
 -- Mond
 (31594, 4045, 1), -- Resist Full Magic Attack
-(31594, 4408, 1), -- HP Increase (1x)
-(31594, 4409, 1), -- MP Increase (1x)
-(31594, 4410, 11), -- Average P. Atk.
-(31594, 4411, 11), -- Average M. Atk.
-(31594, 4412, 11), -- Average P. Def.
-(31594, 4413, 11), -- Average M. Def.
-(31594, 4414, 2), -- Standard Type
-(31594, 4415, 3), -- One-handed Sword
-(31594, 4416, 18), -- Dwarves
+(31594, 4408, 1), -- HP Modifiers
+(31594, 4409, 1), -- MP Modifiers
+(31594, 4410, 11), -- P. Atk. Modifiers
+(31594, 4411, 11), -- M. Atk. Modifiers
+(31594, 4412, 11), -- P. Def. Modifiers
+(31594, 4413, 11), -- M. Def. Modifiers
+(31594, 4414, 2), -- Armor Type
+(31594, 4415, 3), -- Weapon Type
+(31594, 4416, 18), -- Races
 -- Leona Blackbird
 (31595, 4045, 1), -- Resist Full Magic Attack
-(31595, 4408, 1), -- HP Increase (1x)
-(31595, 4409, 1), -- MP Increase (1x)
-(31595, 4410, 11), -- Average P. Atk.
-(31595, 4411, 11), -- Average M. Atk.
-(31595, 4412, 11), -- Average P. Def.
-(31595, 4413, 11), -- Average M. Def.
-(31595, 4414, 2), -- Standard Type
-(31595, 4415, 3), -- One-handed Sword
-(31595, 4416, 14), -- Humans
+(31595, 4408, 1), -- HP Modifiers
+(31595, 4409, 1), -- MP Modifiers
+(31595, 4410, 11), -- P. Atk. Modifiers
+(31595, 4411, 11), -- M. Atk. Modifiers
+(31595, 4412, 11), -- P. Def. Modifiers
+(31595, 4413, 11), -- M. Def. Modifiers
+(31595, 4414, 2), -- Armor Type
+(31595, 4415, 3), -- Weapon Type
+(31595, 4416, 14), -- Races
 -- Tobald
 (31596, 4045, 1), -- Resist Full Magic Attack
-(31596, 4408, 1), -- HP Increase (1x)
-(31596, 4409, 1), -- MP Increase (1x)
-(31596, 4410, 11), -- Average P. Atk.
-(31596, 4411, 11), -- Average M. Atk.
-(31596, 4412, 11), -- Average P. Def.
-(31596, 4413, 11), -- Average M. Def.
-(31596, 4414, 2), -- Standard Type
-(31596, 4415, 3), -- One-handed Sword
-(31596, 4416, 18), -- Dwarves
+(31596, 4408, 1), -- HP Modifiers
+(31596, 4409, 1), -- MP Modifiers
+(31596, 4410, 11), -- P. Atk. Modifiers
+(31596, 4411, 11), -- M. Atk. Modifiers
+(31596, 4412, 11), -- P. Def. Modifiers
+(31596, 4413, 11), -- M. Def. Modifiers
+(31596, 4414, 2), -- Armor Type
+(31596, 4415, 3), -- Weapon Type
+(31596, 4416, 18), -- Races
 -- Tobald
 (31597, 4045, 1), -- Resist Full Magic Attack
-(31597, 4408, 1), -- HP Increase (1x)
-(31597, 4409, 1), -- MP Increase (1x)
-(31597, 4410, 11), -- Average P. Atk.
-(31597, 4411, 11), -- Average M. Atk.
-(31597, 4412, 11), -- Average P. Def.
-(31597, 4413, 11), -- Average M. Def.
-(31597, 4414, 2), -- Standard Type
-(31597, 4415, 3), -- One-handed Sword
-(31597, 4416, 18), -- Dwarves
+(31597, 4408, 1), -- HP Modifiers
+(31597, 4409, 1), -- MP Modifiers
+(31597, 4410, 11), -- P. Atk. Modifiers
+(31597, 4411, 11), -- M. Atk. Modifiers
+(31597, 4412, 11), -- P. Def. Modifiers
+(31597, 4413, 11), -- M. Def. Modifiers
+(31597, 4414, 2), -- Armor Type
+(31597, 4415, 3), -- Weapon Type
+(31597, 4416, 18), -- Races
 -- Medina Blackheart
 (31598, 4045, 1), -- Resist Full Magic Attack
-(31598, 4408, 1), -- HP Increase (1x)
-(31598, 4409, 1), -- MP Increase (1x)
-(31598, 4410, 11), -- Average P. Atk.
-(31598, 4411, 11), -- Average M. Atk.
-(31598, 4412, 11), -- Average P. Def.
-(31598, 4413, 11), -- Average M. Def.
-(31598, 4414, 2), -- Standard Type
-(31598, 4415, 3), -- One-handed Sword
-(31598, 4416, 16), -- Dark Elves
+(31598, 4408, 1), -- HP Modifiers
+(31598, 4409, 1), -- MP Modifiers
+(31598, 4410, 11), -- P. Atk. Modifiers
+(31598, 4411, 11), -- M. Atk. Modifiers
+(31598, 4412, 11), -- P. Def. Modifiers
+(31598, 4413, 11), -- M. Def. Modifiers
+(31598, 4414, 2), -- Armor Type
+(31598, 4415, 3), -- Weapon Type
+(31598, 4416, 16), -- Races
 -- Disgraced Knight Waldstein
-(31599, 4045, 1), -- Resist Full Magic Attack
-(31599, 4408, 1), -- HP Increase (1x)
-(31599, 4409, 1), -- MP Increase (1x)
-(31599, 4410, 11), -- Average P. Atk.
-(31599, 4411, 11), -- Average M. Atk.
-(31599, 4412, 11), -- Average P. Def.
-(31599, 4413, 11), -- Average M. Def.
-(31599, 4414, 2), -- Standard Type
-(31599, 4415, 3), -- One-handed Sword
-(31599, 4416, 14), -- Humans
+(31599, 4045, 1); -- Resist Full Magic Attack
+
+INSERT INTO `npcskills` VALUES
+(31599, 4408, 1), -- HP Modifiers
+(31599, 4409, 1), -- MP Modifiers
+(31599, 4410, 11), -- P. Atk. Modifiers
+(31599, 4411, 11), -- M. Atk. Modifiers
+(31599, 4412, 11), -- P. Def. Modifiers
+(31599, 4413, 11), -- M. Def. Modifiers
+(31599, 4414, 2), -- Armor Type
+(31599, 4415, 3), -- Weapon Type
+(31599, 4416, 14), -- Races
 -- Pamela Aprodia
 (31600, 4045, 1), -- Resist Full Magic Attack
-(31600, 4408, 1), -- HP Increase (1x)
-(31600, 4409, 1), -- MP Increase (1x)
-(31600, 4410, 11), -- Average P. Atk.
-(31600, 4411, 11), -- Average M. Atk.
-(31600, 4412, 11), -- Average P. Def.
-(31600, 4413, 11), -- Average M. Def.
-(31600, 4414, 2), -- Standard Type
-(31600, 4415, 3), -- One-handed Sword
-(31600, 4416, 16), -- Dark Elves
+(31600, 4408, 1), -- HP Modifiers
+(31600, 4409, 1), -- MP Modifiers
+(31600, 4410, 11), -- P. Atk. Modifiers
+(31600, 4411, 11), -- M. Atk. Modifiers
+(31600, 4412, 11), -- P. Def. Modifiers
+(31600, 4413, 11), -- M. Def. Modifiers
+(31600, 4414, 2), -- Armor Type
+(31600, 4415, 3), -- Weapon Type
+(31600, 4416, 16), -- Races
 -- Pamela Aprodia
 (31601, 4045, 1), -- Resist Full Magic Attack
-(31601, 4408, 1), -- HP Increase (1x)
-(31601, 4409, 1), -- MP Increase (1x)
-(31601, 4410, 11), -- Average P. Atk.
-(31601, 4411, 11), -- Average M. Atk.
-(31601, 4412, 11), -- Average P. Def.
-(31601, 4413, 11), -- Average M. Def.
-(31601, 4414, 2), -- Standard Type
-(31601, 4415, 3), -- One-handed Sword
-(31601, 4416, 16), -- Dark Elves
+(31601, 4408, 1), -- HP Modifiers
+(31601, 4409, 1), -- MP Modifiers
+(31601, 4410, 11), -- P. Atk. Modifiers
+(31601, 4411, 11), -- M. Atk. Modifiers
+(31601, 4412, 11), -- P. Def. Modifiers
+(31601, 4413, 11), -- M. Def. Modifiers
+(31601, 4414, 2), -- Armor Type
+(31601, 4415, 3), -- Weapon Type
+(31601, 4416, 16), -- Races
 -- Sharona Artemia
 (31602, 4045, 1), -- Resist Full Magic Attack
-(31602, 4408, 1), -- HP Increase (1x)
-(31602, 4409, 1), -- MP Increase (1x)
-(31602, 4410, 11), -- Average P. Atk.
-(31602, 4411, 11), -- Average M. Atk.
-(31602, 4412, 11), -- Average P. Def.
-(31602, 4413, 11), -- Average M. Def.
-(31602, 4414, 2), -- Standard Type
-(31602, 4415, 3), -- One-handed Sword
-(31602, 4416, 16), -- Dark Elves
+(31602, 4408, 1), -- HP Modifiers
+(31602, 4409, 1), -- MP Modifiers
+(31602, 4410, 11), -- P. Atk. Modifiers
+(31602, 4411, 11), -- M. Atk. Modifiers
+(31602, 4412, 11), -- P. Def. Modifiers
+(31602, 4413, 11), -- M. Def. Modifiers
+(31602, 4414, 2), -- Armor Type
+(31602, 4415, 3), -- Weapon Type
+(31602, 4416, 16), -- Races
 -- Black Cat
 (31603, 4045, 1), -- Resist Full Magic Attack
-(31603, 4408, 1), -- HP Increase (1x)
-(31603, 4409, 1), -- MP Increase (1x)
-(31603, 4410, 11), -- Average P. Atk.
-(31603, 4411, 11), -- Average M. Atk.
-(31603, 4412, 11), -- Average P. Def.
-(31603, 4413, 11), -- Average M. Def.
-(31603, 4414, 2), -- Standard Type
-(31603, 4415, 3), -- One-handed Sword
-(31603, 4416, 16), -- Dark Elves
+(31603, 4408, 1), -- HP Modifiers
+(31603, 4409, 1), -- MP Modifiers
+(31603, 4410, 11), -- P. Atk. Modifiers
+(31603, 4411, 11), -- M. Atk. Modifiers
+(31603, 4412, 11), -- P. Def. Modifiers
+(31603, 4413, 11), -- M. Def. Modifiers
+(31603, 4414, 2), -- Armor Type
+(31603, 4415, 3), -- Weapon Type
+(31603, 4416, 16), -- Races
 -- Grimst
 (31604, 4045, 1), -- Resist Full Magic Attack
-(31604, 4408, 1), -- HP Increase (1x)
-(31604, 4409, 1), -- MP Increase (1x)
-(31604, 4410, 11), -- Average P. Atk.
-(31604, 4411, 11), -- Average M. Atk.
-(31604, 4412, 11), -- Average P. Def.
-(31604, 4413, 11), -- Average M. Def.
-(31604, 4414, 2), -- Standard Type
-(31604, 4415, 3), -- One-handed Sword
-(31604, 4416, 14), -- Humans
+(31604, 4408, 1), -- HP Modifiers
+(31604, 4409, 1), -- MP Modifiers
+(31604, 4410, 11), -- P. Atk. Modifiers
+(31604, 4411, 11), -- M. Atk. Modifiers
+(31604, 4412, 11), -- P. Def. Modifiers
+(31604, 4413, 11), -- M. Def. Modifiers
+(31604, 4414, 2), -- Armor Type
+(31604, 4415, 3), -- Weapon Type
+(31604, 4416, 14), -- Races
 -- Kinsley
 (31605, 4045, 1), -- Resist Full Magic Attack
-(31605, 4408, 1), -- HP Increase (1x)
-(31605, 4409, 1), -- MP Increase (1x)
-(31605, 4410, 11), -- Average P. Atk.
-(31605, 4411, 11), -- Average M. Atk.
-(31605, 4412, 11), -- Average P. Def.
-(31605, 4413, 11), -- Average M. Def.
-(31605, 4414, 2), -- Standard Type
-(31605, 4415, 3), -- One-handed Sword
-(31605, 4416, 14), -- Humans
+(31605, 4408, 1), -- HP Modifiers
+(31605, 4409, 1), -- MP Modifiers
+(31605, 4410, 11), -- P. Atk. Modifiers
+(31605, 4411, 11), -- M. Atk. Modifiers
+(31605, 4412, 11), -- P. Def. Modifiers
+(31605, 4413, 11), -- M. Def. Modifiers
+(31605, 4414, 2), -- Armor Type
+(31605, 4415, 3), -- Weapon Type
+(31605, 4416, 14), -- Races
 -- Alice de Catrina
 (31606, 4045, 1), -- Resist Full Magic Attack
-(31606, 4408, 1), -- HP Increase (1x)
-(31606, 4409, 1), -- MP Increase (1x)
-(31606, 4410, 11), -- Average P. Atk.
-(31606, 4411, 11), -- Average M. Atk.
-(31606, 4412, 11), -- Average P. Def.
-(31606, 4413, 11), -- Average M. Def.
-(31606, 4414, 2), -- Standard Type
-(31606, 4415, 3), -- One-handed Sword
-(31606, 4416, 7), -- Spirits
+(31606, 4408, 1), -- HP Modifiers
+(31606, 4409, 1), -- MP Modifiers
+(31606, 4410, 11), -- P. Atk. Modifiers
+(31606, 4411, 11), -- M. Atk. Modifiers
+(31606, 4412, 11), -- P. Def. Modifiers
+(31606, 4413, 11), -- M. Def. Modifiers
+(31606, 4414, 2), -- Armor Type
+(31606, 4415, 3), -- Weapon Type
+(31606, 4416, 7), -- Races
 -- Sake Dun Zu Hestui
 (31607, 4045, 1), -- Resist Full Magic Attack
-(31607, 4408, 1), -- HP Increase (1x)
-(31607, 4409, 1), -- MP Increase (1x)
-(31607, 4410, 11), -- Average P. Atk.
-(31607, 4411, 11), -- Average M. Atk.
-(31607, 4412, 11), -- Average P. Def.
-(31607, 4413, 11), -- Average M. Def.
-(31607, 4414, 2), -- Standard Type
-(31607, 4415, 3), -- One-handed Sword
-(31607, 4416, 17), -- Orcs
+(31607, 4408, 1), -- HP Modifiers
+(31607, 4409, 1), -- MP Modifiers
+(31607, 4410, 11), -- P. Atk. Modifiers
+(31607, 4411, 11), -- M. Atk. Modifiers
+(31607, 4412, 11), -- P. Def. Modifiers
+(31607, 4413, 11), -- M. Def. Modifiers
+(31607, 4414, 2), -- Armor Type
+(31607, 4415, 3), -- Weapon Type
+(31607, 4416, 17), -- Races
 -- Belinda
 (31608, 4045, 1), -- Resist Full Magic Attack
-(31608, 4408, 1), -- HP Increase (1x)
-(31608, 4409, 1), -- MP Increase (1x)
-(31608, 4410, 11), -- Average P. Atk.
-(31608, 4411, 11), -- Average M. Atk.
-(31608, 4412, 11), -- Average P. Def.
-(31608, 4413, 11), -- Average M. Def.
-(31608, 4414, 2), -- Standard Type
-(31608, 4415, 3), -- One-handed Sword
-(31608, 4416, 15), -- Elves
+(31608, 4408, 1), -- HP Modifiers
+(31608, 4409, 1), -- MP Modifiers
+(31608, 4410, 11), -- P. Atk. Modifiers
+(31608, 4411, 11), -- M. Atk. Modifiers
+(31608, 4412, 11), -- P. Def. Modifiers
+(31608, 4413, 11), -- M. Def. Modifiers
+(31608, 4414, 2), -- Armor Type
+(31608, 4415, 3), -- Weapon Type
+(31608, 4416, 15), -- Races
 -- Aurora the Unicorn
 (31609, 4045, 1), -- Resist Full Magic Attack
-(31609, 4408, 1), -- HP Increase (1x)
-(31609, 4409, 1), -- MP Increase (1x)
-(31609, 4410, 11), -- Average P. Atk.
-(31609, 4411, 11), -- Average M. Atk.
-(31609, 4412, 11), -- Average P. Def.
-(31609, 4413, 11), -- Average M. Def.
-(31609, 4414, 2), -- Standard Type
-(31609, 4415, 3), -- One-handed Sword
-(31609, 4416, 7), -- Spirits
+(31609, 4408, 1), -- HP Modifiers
+(31609, 4409, 1), -- MP Modifiers
+(31609, 4410, 11), -- P. Atk. Modifiers
+(31609, 4411, 11), -- M. Atk. Modifiers
+(31609, 4412, 11), -- P. Def. Modifiers
+(31609, 4413, 11), -- M. Def. Modifiers
+(31609, 4414, 2), -- Armor Type
+(31609, 4415, 3), -- Weapon Type
+(31609, 4416, 7), -- Races
 -- Shiken Gloomdrake
 (31610, 4045, 1), -- Resist Full Magic Attack
-(31610, 4408, 1), -- HP Increase (1x)
-(31610, 4409, 1), -- MP Increase (1x)
-(31610, 4410, 11), -- Average P. Atk.
-(31610, 4411, 11), -- Average M. Atk.
-(31610, 4412, 11), -- Average P. Def.
-(31610, 4413, 11), -- Average M. Def.
-(31610, 4414, 2), -- Standard Type
-(31610, 4415, 3), -- One-handed Sword
-(31610, 4416, 16), -- Dark Elves
+(31610, 4408, 1), -- HP Modifiers
+(31610, 4409, 1), -- MP Modifiers
+(31610, 4410, 11), -- P. Atk. Modifiers
+(31610, 4411, 11), -- M. Atk. Modifiers
+(31610, 4412, 11), -- P. Def. Modifiers
+(31610, 4413, 11), -- M. Def. Modifiers
+(31610, 4414, 2), -- Armor Type
+(31610, 4415, 3), -- Weapon Type
+(31610, 4416, 16), -- Races
 -- Scryde Heartseeker
 (31611, 4045, 1), -- Resist Full Magic Attack
-(31611, 4408, 1), -- HP Increase (1x)
-(31611, 4409, 1), -- MP Increase (1x)
-(31611, 4410, 11), -- Average P. Atk.
-(31611, 4411, 11), -- Average M. Atk.
-(31611, 4412, 11), -- Average P. Def.
-(31611, 4413, 11), -- Average M. Def.
-(31611, 4414, 2), -- Standard Type
-(31611, 4415, 3), -- One-handed Sword
-(31611, 4416, 16), -- Dark Elves
+(31611, 4408, 1), -- HP Modifiers
+(31611, 4409, 1), -- MP Modifiers
+(31611, 4410, 11), -- P. Atk. Modifiers
+(31611, 4411, 11), -- M. Atk. Modifiers
+(31611, 4412, 11), -- P. Def. Modifiers
+(31611, 4413, 11), -- M. Def. Modifiers
+(31611, 4414, 2), -- Armor Type
+(31611, 4415, 3), -- Weapon Type
+(31611, 4416, 16), -- Races
 -- Eternity Wanderer Staris
 (31612, 4045, 1), -- Resist Full Magic Attack
-(31612, 4408, 1), -- HP Increase (1x)
-(31612, 4409, 1), -- MP Increase (1x)
-(31612, 4410, 11), -- Average P. Atk.
-(31612, 4411, 11), -- Average M. Atk.
-(31612, 4412, 11), -- Average P. Def.
-(31612, 4413, 11), -- Average M. Def.
-(31612, 4414, 2), -- Standard Type
-(31612, 4415, 3), -- One-handed Sword
-(31612, 4416, 15), -- Elves
+(31612, 4408, 1), -- HP Modifiers
+(31612, 4409, 1), -- MP Modifiers
+(31612, 4410, 11), -- P. Atk. Modifiers
+(31612, 4411, 11), -- M. Atk. Modifiers
+(31612, 4412, 11), -- P. Def. Modifiers
+(31612, 4413, 11), -- M. Def. Modifiers
+(31612, 4414, 2), -- Armor Type
+(31612, 4415, 3), -- Weapon Type
+(31612, 4416, 15), -- Races
 -- Noctisse
 (31613, 4045, 1), -- Resist Full Magic Attack
-(31613, 4408, 1), -- HP Increase (1x)
-(31613, 4409, 1), -- MP Increase (1x)
-(31613, 4410, 11), -- Average P. Atk.
-(31613, 4411, 11), -- Average M. Atk.
-(31613, 4412, 11), -- Average P. Def.
-(31613, 4413, 11), -- Average M. Def.
-(31613, 4414, 2), -- Standard Type
-(31613, 4415, 3), -- One-handed Sword
-(31613, 4416, 16), -- Dark Elves
+(31613, 4408, 1), -- HP Modifiers
+(31613, 4409, 1), -- MP Modifiers
+(31613, 4410, 11), -- P. Atk. Modifiers
+(31613, 4411, 11), -- M. Atk. Modifiers
+(31613, 4412, 11), -- P. Def. Modifiers
+(31613, 4413, 11), -- M. Def. Modifiers
+(31613, 4414, 2), -- Armor Type
+(31613, 4415, 3), -- Weapon Type
+(31613, 4416, 16), -- Races
 -- Radyss
 (31614, 4045, 1), -- Resist Full Magic Attack
-(31614, 4408, 1), -- HP Increase (1x)
-(31614, 4409, 1), -- MP Increase (1x)
-(31614, 4410, 11), -- Average P. Atk.
-(31614, 4411, 11), -- Average M. Atk.
-(31614, 4412, 11), -- Average P. Def.
-(31614, 4413, 11), -- Average M. Def.
-(31614, 4414, 2), -- Standard Type
-(31614, 4415, 3), -- One-handed Sword
-(31614, 4416, 15), -- Elves
+(31614, 4408, 1), -- HP Modifiers
+(31614, 4409, 1), -- MP Modifiers
+(31614, 4410, 11), -- P. Atk. Modifiers
+(31614, 4411, 11), -- M. Atk. Modifiers
+(31614, 4412, 11), -- P. Def. Modifiers
+(31614, 4413, 11), -- M. Def. Modifiers
+(31614, 4414, 2), -- Armor Type
+(31614, 4415, 3), -- Weapon Type
+(31614, 4416, 15), -- Races
 -- Hermit
 (31615, 4045, 1), -- Resist Full Magic Attack
-(31615, 4408, 1), -- HP Increase (1x)
-(31615, 4409, 1), -- MP Increase (1x)
-(31615, 4410, 11), -- Average P. Atk.
-(31615, 4411, 11), -- Average M. Atk.
-(31615, 4412, 11), -- Average P. Def.
-(31615, 4413, 11), -- Average M. Def.
-(31615, 4414, 2), -- Standard Type
-(31615, 4415, 3), -- One-handed Sword
-(31615, 4416, 14), -- Humans
+(31615, 4408, 1), -- HP Modifiers
+(31615, 4409, 1), -- MP Modifiers
+(31615, 4410, 11), -- P. Atk. Modifiers
+(31615, 4411, 11), -- M. Atk. Modifiers
+(31615, 4412, 11), -- P. Def. Modifiers
+(31615, 4413, 11), -- M. Def. Modifiers
+(31615, 4414, 2), -- Armor Type
+(31615, 4415, 3), -- Weapon Type
+(31615, 4416, 14), -- Races
 -- Hermit
 (31616, 4045, 1), -- Resist Full Magic Attack
-(31616, 4408, 1), -- HP Increase (1x)
-(31616, 4409, 1), -- MP Increase (1x)
-(31616, 4410, 11), -- Average P. Atk.
-(31616, 4411, 11), -- Average M. Atk.
-(31616, 4412, 11), -- Average P. Def.
-(31616, 4413, 11), -- Average M. Def.
-(31616, 4414, 2), -- Standard Type
-(31616, 4415, 3), -- One-handed Sword
-(31616, 4416, 14), -- Humans
+(31616, 4408, 1), -- HP Modifiers
+(31616, 4409, 1), -- MP Modifiers
+(31616, 4410, 11), -- P. Atk. Modifiers
+(31616, 4411, 11), -- M. Atk. Modifiers
+(31616, 4412, 11), -- P. Def. Modifiers
+(31616, 4413, 11), -- M. Def. Modifiers
+(31616, 4414, 2), -- Armor Type
+(31616, 4415, 3), -- Weapon Type
+(31616, 4416, 14), -- Races
 -- Aria Firstmatter
 (31617, 4045, 1), -- Resist Full Magic Attack
-(31617, 4408, 1), -- HP Increase (1x)
-(31617, 4409, 1), -- MP Increase (1x)
-(31617, 4410, 11), -- Average P. Atk.
-(31617, 4411, 11), -- Average M. Atk.
-(31617, 4412, 11), -- Average P. Def.
-(31617, 4413, 11), -- Average M. Def.
-(31617, 4414, 2), -- Standard Type
-(31617, 4415, 3), -- One-handed Sword
-(31617, 4416, 16), -- Dark Elves
+(31617, 4408, 1), -- HP Modifiers
+(31617, 4409, 1), -- MP Modifiers
+(31617, 4410, 11), -- P. Atk. Modifiers
+(31617, 4411, 11), -- M. Atk. Modifiers
+(31617, 4412, 11), -- P. Def. Modifiers
+(31617, 4413, 11), -- M. Def. Modifiers
+(31617, 4414, 2), -- Armor Type
+(31617, 4415, 3), -- Weapon Type
+(31617, 4416, 16), -- Races
 -- Moon Voice Irene
 (31618, 4045, 1), -- Resist Full Magic Attack
-(31618, 4408, 1), -- HP Increase (1x)
-(31618, 4409, 1), -- MP Increase (1x)
-(31618, 4410, 11), -- Average P. Atk.
-(31618, 4411, 11), -- Average M. Atk.
-(31618, 4412, 11), -- Average P. Def.
-(31618, 4413, 11), -- Average M. Def.
-(31618, 4414, 2), -- Standard Type
-(31618, 4415, 3), -- One-handed Sword
-(31618, 4416, 15), -- Elves
+(31618, 4408, 1), -- HP Modifiers
+(31618, 4409, 1), -- MP Modifiers
+(31618, 4410, 11), -- P. Atk. Modifiers
+(31618, 4411, 11), -- M. Atk. Modifiers
+(31618, 4412, 11), -- P. Def. Modifiers
+(31618, 4413, 11), -- M. Def. Modifiers
+(31618, 4414, 2), -- Armor Type
+(31618, 4415, 3), -- Weapon Type
+(31618, 4416, 15), -- Races
 -- Erica Ken Weber
 (31619, 4045, 1), -- Resist Full Magic Attack
-(31619, 4408, 1), -- HP Increase (1x)
-(31619, 4409, 1), -- MP Increase (1x)
-(31619, 4410, 11), -- Average P. Atk.
-(31619, 4411, 11), -- Average M. Atk.
-(31619, 4412, 11), -- Average P. Def.
-(31619, 4413, 11), -- Average M. Def.
-(31619, 4414, 2), -- Standard Type
-(31619, 4415, 3), -- One-handed Sword
-(31619, 4416, 14), -- Humans
+(31619, 4408, 1), -- HP Modifiers
+(31619, 4409, 1), -- MP Modifiers
+(31619, 4410, 11), -- P. Atk. Modifiers
+(31619, 4411, 11), -- M. Atk. Modifiers
+(31619, 4412, 11), -- P. Def. Modifiers
+(31619, 4413, 11), -- M. Def. Modifiers
+(31619, 4414, 2), -- Armor Type
+(31619, 4415, 3), -- Weapon Type
+(31619, 4416, 14), -- Races
 -- Verdure Elder Elikia
 (31620, 4045, 1), -- Resist Full Magic Attack
-(31620, 4408, 1), -- HP Increase (1x)
-(31620, 4409, 1), -- MP Increase (1x)
-(31620, 4410, 11), -- Average P. Atk.
-(31620, 4411, 11), -- Average M. Atk.
-(31620, 4412, 11), -- Average P. Def.
-(31620, 4413, 11), -- Average M. Def.
-(31620, 4414, 2), -- Standard Type
-(31620, 4415, 3), -- One-handed Sword
-(31620, 4416, 15), -- Elves
+(31620, 4408, 1), -- HP Modifiers
+(31620, 4409, 1), -- MP Modifiers
+(31620, 4410, 11), -- P. Atk. Modifiers
+(31620, 4411, 11), -- M. Atk. Modifiers
+(31620, 4412, 11), -- P. Def. Modifiers
+(31620, 4413, 11), -- M. Def. Modifiers
+(31620, 4414, 2), -- Armor Type
+(31620, 4415, 3), -- Weapon Type
+(31620, 4416, 15), -- Races
 -- Abyssal Saintess Elcadia
 (31621, 4045, 1), -- Resist Full Magic Attack
-(31621, 4408, 1), -- HP Increase (1x)
-(31621, 4409, 1), -- MP Increase (1x)
-(31621, 4410, 11), -- Average P. Atk.
-(31621, 4411, 11), -- Average M. Atk.
-(31621, 4412, 11), -- Average P. Def.
-(31621, 4413, 11), -- Average M. Def.
-(31621, 4414, 2), -- Standard Type
-(31621, 4415, 3), -- One-handed Sword
-(31621, 4416, 16), -- Dark Elves
+(31621, 4408, 1), -- HP Modifiers
+(31621, 4409, 1), -- MP Modifiers
+(31621, 4410, 11), -- P. Atk. Modifiers
+(31621, 4411, 11), -- M. Atk. Modifiers
+(31621, 4412, 11), -- P. Def. Modifiers
+(31621, 4413, 11), -- M. Def. Modifiers
+(31621, 4414, 2), -- Armor Type
+(31621, 4415, 3), -- Weapon Type
+(31621, 4416, 16), -- Races
 -- Keats
 (31622, 4045, 1), -- Resist Full Magic Attack
-(31622, 4408, 1), -- HP Increase (1x)
-(31622, 4409, 1), -- MP Increase (1x)
-(31622, 4410, 11), -- Average P. Atk.
-(31622, 4411, 11), -- Average M. Atk.
-(31622, 4412, 11), -- Average P. Def.
-(31622, 4413, 11), -- Average M. Def.
-(31622, 4414, 2), -- Standard Type
-(31622, 4415, 3), -- One-handed Sword
-(31622, 4416, 4), -- Animals
+(31622, 4408, 1), -- HP Modifiers
+(31622, 4409, 1), -- MP Modifiers
+(31622, 4410, 11), -- P. Atk. Modifiers
+(31622, 4411, 11), -- M. Atk. Modifiers
+(31622, 4412, 11), -- P. Def. Modifiers
+(31622, 4413, 11), -- M. Def. Modifiers
+(31622, 4414, 2), -- Armor Type
+(31622, 4415, 3), -- Weapon Type
+(31622, 4416, 4), -- Races
 -- Bavarin
 (31623, 4045, 1), -- Resist Full Magic Attack
-(31623, 4408, 1), -- HP Increase (1x)
-(31623, 4409, 1), -- MP Increase (1x)
-(31623, 4410, 11), -- Average P. Atk.
-(31623, 4411, 11), -- Average M. Atk.
-(31623, 4412, 11), -- Average P. Def.
-(31623, 4413, 11), -- Average M. Def.
-(31623, 4414, 2), -- Standard Type
-(31623, 4415, 3), -- One-handed Sword
-(31623, 4416, 18), -- Dwarves
+(31623, 4408, 1), -- HP Modifiers
+(31623, 4409, 1), -- MP Modifiers
+(31623, 4410, 11), -- P. Atk. Modifiers
+(31623, 4411, 11), -- M. Atk. Modifiers
+(31623, 4412, 11), -- P. Def. Modifiers
+(31623, 4413, 11), -- M. Def. Modifiers
+(31623, 4414, 2), -- Armor Type
+(31623, 4415, 3), -- Weapon Type
+(31623, 4416, 18), -- Races
 -- Donath
 (31624, 4045, 1), -- Resist Full Magic Attack
-(31624, 4408, 1), -- HP Increase (1x)
-(31624, 4409, 1), -- MP Increase (1x)
-(31624, 4410, 11), -- Average P. Atk.
-(31624, 4411, 11), -- Average M. Atk.
-(31624, 4412, 11), -- Average P. Def.
-(31624, 4413, 11), -- Average M. Def.
-(31624, 4414, 2), -- Standard Type
-(31624, 4415, 3), -- One-handed Sword
-(31624, 4416, 14), -- Humans
+(31624, 4408, 1), -- HP Modifiers
+(31624, 4409, 1), -- MP Modifiers
+(31624, 4410, 11), -- P. Atk. Modifiers
+(31624, 4411, 11), -- M. Atk. Modifiers
+(31624, 4412, 11), -- P. Def. Modifiers
+(31624, 4413, 11), -- M. Def. Modifiers
+(31624, 4414, 2), -- Armor Type
+(31624, 4415, 3), -- Weapon Type
+(31624, 4416, 14), -- Races
 -- Yeti
 (31625, 4045, 1), -- Resist Full Magic Attack
-(31625, 4408, 1), -- HP Increase (1x)
-(31625, 4409, 1), -- MP Increase (1x)
-(31625, 4410, 11), -- Average P. Atk.
-(31625, 4411, 11), -- Average M. Atk.
-(31625, 4412, 11), -- Average P. Def.
-(31625, 4413, 11), -- Average M. Def.
-(31625, 4414, 2), -- Standard Type
-(31625, 4415, 3), -- One-handed Sword
-(31625, 4416, 6), -- Humanoids
+(31625, 4408, 1), -- HP Modifiers
+(31625, 4409, 1), -- MP Modifiers
+(31625, 4410, 11), -- P. Atk. Modifiers
+(31625, 4411, 11), -- M. Atk. Modifiers
+(31625, 4412, 11), -- P. Def. Modifiers
+(31625, 4413, 11), -- M. Def. Modifiers
+(31625, 4414, 2), -- Armor Type
+(31625, 4415, 3), -- Weapon Type
+(31625, 4416, 6), -- Races
 -- Duncan
 (31626, 4045, 1), -- Resist Full Magic Attack
-(31626, 4408, 1), -- HP Increase (1x)
-(31626, 4409, 1), -- MP Increase (1x)
-(31626, 4410, 11), -- Average P. Atk.
-(31626, 4411, 11), -- Average M. Atk.
-(31626, 4412, 11), -- Average P. Def.
-(31626, 4413, 11), -- Average M. Def.
-(31626, 4414, 2), -- Standard Type
-(31626, 4415, 3), -- One-handed Sword
-(31626, 4416, 18), -- Dwarves
+(31626, 4408, 1), -- HP Modifiers
+(31626, 4409, 1), -- MP Modifiers
+(31626, 4410, 11), -- P. Atk. Modifiers
+(31626, 4411, 11), -- M. Atk. Modifiers
+(31626, 4412, 11), -- P. Def. Modifiers
+(31626, 4413, 11), -- M. Def. Modifiers
+(31626, 4414, 2), -- Armor Type
+(31626, 4415, 3), -- Weapon Type
+(31626, 4416, 18), -- Races
 -- Mist
 (31627, 4045, 1), -- Resist Full Magic Attack
-(31627, 4408, 1), -- HP Increase (1x)
-(31627, 4409, 1), -- MP Increase (1x)
-(31627, 4410, 11), -- Average P. Atk.
-(31627, 4411, 11), -- Average M. Atk.
-(31627, 4412, 11), -- Average P. Def.
-(31627, 4413, 11), -- Average M. Def.
-(31627, 4414, 2), -- Standard Type
-(31627, 4415, 3), -- One-handed Sword
-(31627, 4416, 18), -- Dwarves
+(31627, 4408, 1), -- HP Modifiers
+(31627, 4409, 1), -- MP Modifiers
+(31627, 4410, 11), -- P. Atk. Modifiers
+(31627, 4411, 11), -- M. Atk. Modifiers
+(31627, 4412, 11), -- P. Def. Modifiers
+(31627, 4413, 11), -- M. Def. Modifiers
+(31627, 4414, 2), -- Armor Type
+(31627, 4415, 3), -- Weapon Type
+(31627, 4416, 18), -- Races
 -- Lilly
 (31628, 4045, 1), -- Resist Full Magic Attack
-(31628, 4408, 1), -- HP Increase (1x)
-(31628, 4409, 1), -- MP Increase (1x)
-(31628, 4410, 11), -- Average P. Atk.
-(31628, 4411, 11), -- Average M. Atk.
-(31628, 4412, 11), -- Average P. Def.
-(31628, 4413, 11), -- Average M. Def.
-(31628, 4414, 2), -- Standard Type
-(31628, 4415, 3), -- One-handed Sword
-(31628, 4416, 18), -- Dwarves
+(31628, 4408, 1), -- HP Modifiers
+(31628, 4409, 1), -- MP Modifiers
+(31628, 4410, 11), -- P. Atk. Modifiers
+(31628, 4411, 11), -- M. Atk. Modifiers
+(31628, 4412, 11), -- P. Def. Modifiers
+(31628, 4413, 11), -- M. Def. Modifiers
+(31628, 4414, 2), -- Armor Type
+(31628, 4415, 3), -- Weapon Type
+(31628, 4416, 18), -- Races
 -- Kaleidos the Unicorn
 (31629, 4045, 1), -- Resist Full Magic Attack
-(31629, 4408, 1), -- HP Increase (1x)
-(31629, 4409, 1), -- MP Increase (1x)
-(31629, 4410, 11), -- Average P. Atk.
-(31629, 4411, 11), -- Average M. Atk.
-(31629, 4412, 11), -- Average P. Def.
-(31629, 4413, 11), -- Average M. Def.
-(31629, 4414, 2), -- Standard Type
-(31629, 4415, 3), -- One-handed Sword
-(31629, 4416, 7), -- Spirits
+(31629, 4408, 1), -- HP Modifiers
+(31629, 4409, 1), -- MP Modifiers
+(31629, 4410, 11), -- P. Atk. Modifiers
+(31629, 4411, 11), -- M. Atk. Modifiers
+(31629, 4412, 11), -- P. Def. Modifiers
+(31629, 4413, 11), -- M. Def. Modifiers
+(31629, 4414, 2), -- Armor Type
+(31629, 4415, 3), -- Weapon Type
+(31629, 4416, 7), -- Races
 -- Kaleidos the Unicorn
 (31630, 4045, 1), -- Resist Full Magic Attack
-(31630, 4408, 1), -- HP Increase (1x)
-(31630, 4409, 1), -- MP Increase (1x)
-(31630, 4410, 11), -- Average P. Atk.
-(31630, 4411, 11), -- Average M. Atk.
-(31630, 4412, 11), -- Average P. Def.
-(31630, 4413, 11), -- Average M. Def.
-(31630, 4414, 2), -- Standard Type
-(31630, 4415, 3), -- One-handed Sword
-(31630, 4416, 7), -- Spirits
+(31630, 4408, 1), -- HP Modifiers
+(31630, 4409, 1), -- MP Modifiers
+(31630, 4410, 11), -- P. Atk. Modifiers
+(31630, 4411, 11), -- M. Atk. Modifiers
+(31630, 4412, 11), -- P. Def. Modifiers
+(31630, 4413, 11), -- M. Def. Modifiers
+(31630, 4414, 2), -- Armor Type
+(31630, 4415, 3), -- Weapon Type
+(31630, 4416, 7), -- Races
 -- Eric Ramsheart
 (31631, 4045, 1), -- Resist Full Magic Attack
-(31631, 4408, 1), -- HP Increase (1x)
-(31631, 4409, 1), -- MP Increase (1x)
-(31631, 4410, 11), -- Average P. Atk.
-(31631, 4411, 11), -- Average M. Atk.
-(31631, 4412, 11), -- Average P. Def.
-(31631, 4413, 11), -- Average M. Def.
-(31631, 4414, 2), -- Standard Type
-(31631, 4415, 3), -- One-handed Sword
-(31631, 4416, 14), -- Humans
+(31631, 4408, 1), -- HP Modifiers
+(31631, 4409, 1), -- MP Modifiers
+(31631, 4410, 11), -- P. Atk. Modifiers
+(31631, 4411, 11), -- M. Atk. Modifiers
+(31631, 4412, 11), -- P. Def. Modifiers
+(31631, 4413, 11), -- M. Def. Modifiers
+(31631, 4414, 2), -- Armor Type
+(31631, 4415, 3), -- Weapon Type
+(31631, 4416, 14), -- Races
 -- Mysterious Servitor
 (31632, 4045, 1), -- Resist Full Magic Attack
-(31632, 4408, 1), -- HP Increase (1x)
-(31632, 4409, 1), -- MP Increase (1x)
-(31632, 4410, 11), -- Average P. Atk.
-(31632, 4411, 11), -- Average M. Atk.
-(31632, 4412, 11), -- Average P. Def.
-(31632, 4413, 11), -- Average M. Def.
-(31632, 4414, 2), -- Standard Type
-(31632, 4415, 3), -- One-handed Sword
-(31632, 4416, 9), -- Demons
+(31632, 4408, 1), -- HP Modifiers
+(31632, 4409, 1), -- MP Modifiers
+(31632, 4410, 11), -- P. Atk. Modifiers
+(31632, 4411, 11), -- M. Atk. Modifiers
+(31632, 4412, 11), -- P. Def. Modifiers
+(31632, 4413, 11), -- M. Def. Modifiers
+(31632, 4414, 2), -- Armor Type
+(31632, 4415, 3), -- Weapon Type
+(31632, 4416, 9), -- Races
 -- Winter Hunter Kadyth
 (31633, 4045, 1), -- Resist Full Magic Attack
-(31633, 4408, 1), -- HP Increase (1x)
-(31633, 4409, 1), -- MP Increase (1x)
-(31633, 4410, 11), -- Average P. Atk.
-(31633, 4411, 11), -- Average M. Atk.
-(31633, 4412, 11), -- Average P. Def.
-(31633, 4413, 11), -- Average M. Def.
-(31633, 4414, 2), -- Standard Type
-(31633, 4415, 3), -- One-handed Sword
-(31633, 4416, 15), -- Elves
+(31633, 4408, 1), -- HP Modifiers
+(31633, 4409, 1), -- MP Modifiers
+(31633, 4410, 11), -- P. Atk. Modifiers
+(31633, 4411, 11), -- M. Atk. Modifiers
+(31633, 4412, 11), -- P. Def. Modifiers
+(31633, 4413, 11), -- M. Def. Modifiers
+(31633, 4414, 2), -- Armor Type
+(31633, 4415, 3), -- Weapon Type
+(31633, 4416, 15), -- Races
 -- Winter Hunter Kadyth
 (31634, 4045, 1), -- Resist Full Magic Attack
-(31634, 4408, 1), -- HP Increase (1x)
-(31634, 4409, 1), -- MP Increase (1x)
-(31634, 4410, 11), -- Average P. Atk.
-(31634, 4411, 11), -- Average M. Atk.
-(31634, 4412, 11), -- Average P. Def.
-(31634, 4413, 11), -- Average M. Def.
-(31634, 4414, 2), -- Standard Type
-(31634, 4415, 3), -- One-handed Sword
-(31634, 4416, 15), -- Elves
+(31634, 4408, 1), -- HP Modifiers
+(31634, 4409, 1), -- MP Modifiers
+(31634, 4410, 11), -- P. Atk. Modifiers
+(31634, 4411, 11), -- M. Atk. Modifiers
+(31634, 4412, 11), -- P. Def. Modifiers
+(31634, 4413, 11), -- M. Def. Modifiers
+(31634, 4414, 2), -- Armor Type
+(31634, 4415, 3), -- Weapon Type
+(31634, 4416, 15), -- Races
 -- Winter Hunter Kadyth
 (31635, 4045, 1), -- Resist Full Magic Attack
-(31635, 4408, 1), -- HP Increase (1x)
-(31635, 4409, 1), -- MP Increase (1x)
-(31635, 4410, 11); -- Average P. Atk.
-
-INSERT INTO `npcskills` VALUES
-(31635, 4411, 11), -- Average M. Atk.
-(31635, 4412, 11), -- Average P. Def.
-(31635, 4413, 11), -- Average M. Def.
-(31635, 4414, 2), -- Standard Type
-(31635, 4415, 3), -- One-handed Sword
-(31635, 4416, 15), -- Elves
+(31635, 4408, 1), -- HP Modifiers
+(31635, 4409, 1), -- MP Modifiers
+(31635, 4410, 11), -- P. Atk. Modifiers
+(31635, 4411, 11), -- M. Atk. Modifiers
+(31635, 4412, 11), -- P. Def. Modifiers
+(31635, 4413, 11), -- M. Def. Modifiers
+(31635, 4414, 2), -- Armor Type
+(31635, 4415, 3), -- Weapon Type
+(31635, 4416, 15), -- Races
 -- Flame Successor Akkan
 (31636, 4045, 1), -- Resist Full Magic Attack
-(31636, 4408, 1), -- HP Increase (1x)
-(31636, 4409, 1), -- MP Increase (1x)
-(31636, 4410, 11), -- Average P. Atk.
-(31636, 4411, 11), -- Average M. Atk.
-(31636, 4412, 11), -- Average P. Def.
-(31636, 4413, 11), -- Average M. Def.
-(31636, 4414, 2), -- Standard Type
-(31636, 4415, 3), -- One-handed Sword
-(31636, 4416, 17), -- Orcs
+(31636, 4408, 1), -- HP Modifiers
+(31636, 4409, 1), -- MP Modifiers
+(31636, 4410, 11), -- P. Atk. Modifiers
+(31636, 4411, 11), -- M. Atk. Modifiers
+(31636, 4412, 11), -- P. Def. Modifiers
+(31636, 4413, 11), -- M. Def. Modifiers
+(31636, 4414, 2), -- Armor Type
+(31636, 4415, 3), -- Weapon Type
+(31636, 4416, 17), -- Races
 -- Khavatari Kashu
 (31637, 4045, 1), -- Resist Full Magic Attack
-(31637, 4408, 1), -- HP Increase (1x)
-(31637, 4409, 1), -- MP Increase (1x)
-(31637, 4410, 11), -- Average P. Atk.
-(31637, 4411, 11), -- Average M. Atk.
-(31637, 4412, 11), -- Average P. Def.
-(31637, 4413, 11), -- Average M. Def.
-(31637, 4414, 2), -- Standard Type
-(31637, 4415, 3), -- One-handed Sword
-(31637, 4416, 17), -- Orcs
+(31637, 4408, 1), -- HP Modifiers
+(31637, 4409, 1), -- MP Modifiers
+(31637, 4410, 11), -- P. Atk. Modifiers
+(31637, 4411, 11), -- M. Atk. Modifiers
+(31637, 4412, 11), -- P. Def. Modifiers
+(31637, 4413, 11), -- M. Def. Modifiers
+(31637, 4414, 2), -- Armor Type
+(31637, 4415, 3), -- Weapon Type
+(31637, 4416, 17), -- Races
 -- Starling Knight Kastien
 (31638, 4045, 1), -- Resist Full Magic Attack
-(31638, 4408, 1), -- HP Increase (1x)
-(31638, 4409, 1), -- MP Increase (1x)
-(31638, 4410, 11), -- Average P. Atk.
-(31638, 4411, 11), -- Average M. Atk.
-(31638, 4412, 11), -- Average P. Def.
-(31638, 4413, 11), -- Average M. Def.
-(31638, 4414, 2), -- Standard Type
-(31638, 4415, 3), -- One-handed Sword
-(31638, 4416, 15), -- Elves
+(31638, 4408, 1), -- HP Modifiers
+(31638, 4409, 1), -- MP Modifiers
+(31638, 4410, 11), -- P. Atk. Modifiers
+(31638, 4411, 11), -- M. Atk. Modifiers
+(31638, 4412, 11), -- P. Def. Modifiers
+(31638, 4413, 11), -- M. Def. Modifiers
+(31638, 4414, 2), -- Armor Type
+(31638, 4415, 3), -- Weapon Type
+(31638, 4416, 15), -- Races
 -- Kain Van Halter
 (31639, 4045, 1), -- Resist Full Magic Attack
-(31639, 4408, 1), -- HP Increase (1x)
-(31639, 4409, 1), -- MP Increase (1x)
-(31639, 4410, 11), -- Average P. Atk.
-(31639, 4411, 11), -- Average M. Atk.
-(31639, 4412, 11), -- Average P. Def.
-(31639, 4413, 11), -- Average M. Def.
-(31639, 4414, 2), -- Standard Type
-(31639, 4415, 3), -- One-handed Sword
-(31639, 4416, 14), -- Humans
+(31639, 4408, 1), -- HP Modifiers
+(31639, 4409, 1), -- MP Modifiers
+(31639, 4410, 11), -- P. Atk. Modifiers
+(31639, 4411, 11), -- M. Atk. Modifiers
+(31639, 4412, 11), -- P. Def. Modifiers
+(31639, 4413, 11), -- M. Def. Modifiers
+(31639, 4414, 2), -- Armor Type
+(31639, 4415, 3), -- Weapon Type
+(31639, 4416, 14), -- Races
 -- Pilgrim of Darkness
 (31640, 4045, 1), -- Resist Full Magic Attack
-(31640, 4408, 1), -- HP Increase (1x)
-(31640, 4409, 1), -- MP Increase (1x)
-(31640, 4410, 11), -- Average P. Atk.
-(31640, 4411, 11), -- Average M. Atk.
-(31640, 4412, 11), -- Average P. Def.
-(31640, 4413, 11), -- Average M. Def.
-(31640, 4414, 2), -- Standard Type
-(31640, 4415, 3), -- One-handed Sword
-(31640, 4416, 14), -- Humans
+(31640, 4408, 1), -- HP Modifiers
+(31640, 4409, 1), -- MP Modifiers
+(31640, 4410, 11), -- P. Atk. Modifiers
+(31640, 4411, 11), -- M. Atk. Modifiers
+(31640, 4412, 11), -- P. Def. Modifiers
+(31640, 4413, 11), -- M. Def. Modifiers
+(31640, 4414, 2), -- Armor Type
+(31640, 4415, 3), -- Weapon Type
+(31640, 4416, 14), -- Races
 -- Pilgrim of Darkness
 (31641, 4045, 1), -- Resist Full Magic Attack
-(31641, 4408, 1), -- HP Increase (1x)
-(31641, 4409, 1), -- MP Increase (1x)
-(31641, 4410, 11), -- Average P. Atk.
-(31641, 4411, 11), -- Average M. Atk.
-(31641, 4412, 11), -- Average P. Def.
-(31641, 4413, 11), -- Average M. Def.
-(31641, 4414, 2), -- Standard Type
-(31641, 4415, 3), -- One-handed Sword
-(31641, 4416, 14), -- Humans
+(31641, 4408, 1), -- HP Modifiers
+(31641, 4409, 1), -- MP Modifiers
+(31641, 4410, 11), -- P. Atk. Modifiers
+(31641, 4411, 11), -- M. Atk. Modifiers
+(31641, 4412, 11), -- P. Def. Modifiers
+(31641, 4413, 11), -- M. Def. Modifiers
+(31641, 4414, 2), -- Armor Type
+(31641, 4415, 3), -- Weapon Type
+(31641, 4416, 14), -- Races
 -- Tarkai Zu Duda-Mara
 (31642, 4045, 1), -- Resist Full Magic Attack
-(31642, 4408, 1), -- HP Increase (1x)
-(31642, 4409, 1), -- MP Increase (1x)
-(31642, 4410, 11), -- Average P. Atk.
-(31642, 4411, 11), -- Average M. Atk.
-(31642, 4412, 11), -- Average P. Def.
-(31642, 4413, 11), -- Average M. Def.
-(31642, 4414, 2), -- Standard Type
-(31642, 4415, 3), -- One-handed Sword
-(31642, 4416, 17), -- Orcs
+(31642, 4408, 1), -- HP Modifiers
+(31642, 4409, 1), -- MP Modifiers
+(31642, 4410, 11), -- P. Atk. Modifiers
+(31642, 4411, 11), -- M. Atk. Modifiers
+(31642, 4412, 11), -- P. Def. Modifiers
+(31642, 4413, 11), -- M. Def. Modifiers
+(31642, 4414, 2), -- Armor Type
+(31642, 4415, 3), -- Weapon Type
+(31642, 4416, 17), -- Races
 -- Silver Feyshar
 (31643, 4045, 1), -- Resist Full Magic Attack
-(31643, 4408, 1), -- HP Increase (1x)
-(31643, 4409, 1), -- MP Increase (1x)
-(31643, 4410, 11), -- Average P. Atk.
-(31643, 4411, 11), -- Average M. Atk.
-(31643, 4412, 11), -- Average P. Def.
-(31643, 4413, 11), -- Average M. Def.
-(31643, 4414, 2), -- Standard Type
-(31643, 4415, 3), -- One-handed Sword
-(31643, 4416, 15), -- Elves
+(31643, 4408, 1), -- HP Modifiers
+(31643, 4409, 1), -- MP Modifiers
+(31643, 4410, 11), -- P. Atk. Modifiers
+(31643, 4411, 11), -- M. Atk. Modifiers
+(31643, 4412, 11), -- P. Def. Modifiers
+(31643, 4413, 11), -- M. Def. Modifiers
+(31643, 4414, 2), -- Armor Type
+(31643, 4415, 3), -- Weapon Type
+(31643, 4416, 15), -- Races
 -- Dawn Witness Franz
 (31644, 4045, 1), -- Resist Full Magic Attack
-(31644, 4408, 1), -- HP Increase (1x)
-(31644, 4409, 1), -- MP Increase (1x)
-(31644, 4410, 11), -- Average P. Atk.
-(31644, 4411, 11), -- Average M. Atk.
-(31644, 4412, 11), -- Average P. Def.
-(31644, 4413, 11), -- Average M. Def.
-(31644, 4414, 2), -- Standard Type
-(31644, 4415, 3), -- One-handed Sword
-(31644, 4416, 14), -- Humans
+(31644, 4408, 1), -- HP Modifiers
+(31644, 4409, 1), -- MP Modifiers
+(31644, 4410, 11), -- P. Atk. Modifiers
+(31644, 4411, 11), -- M. Atk. Modifiers
+(31644, 4412, 11), -- P. Def. Modifiers
+(31644, 4413, 11), -- M. Def. Modifiers
+(31644, 4414, 2), -- Armor Type
+(31644, 4415, 3), -- Weapon Type
+(31644, 4416, 14), -- Races
 -- Hindemith Truevoice
 (31645, 4045, 1), -- Resist Full Magic Attack
-(31645, 4408, 1), -- HP Increase (1x)
-(31645, 4409, 1), -- MP Increase (1x)
-(31645, 4410, 11), -- Average P. Atk.
-(31645, 4411, 11), -- Average M. Atk.
-(31645, 4412, 11), -- Average P. Def.
-(31645, 4413, 11), -- Average M. Def.
-(31645, 4414, 2), -- Standard Type
-(31645, 4415, 3), -- One-handed Sword
-(31645, 4416, 14), -- Humans
+(31645, 4408, 1), -- HP Modifiers
+(31645, 4409, 1), -- MP Modifiers
+(31645, 4410, 11), -- P. Atk. Modifiers
+(31645, 4411, 11), -- M. Atk. Modifiers
+(31645, 4412, 11), -- P. Def. Modifiers
+(31645, 4413, 11), -- M. Def. Modifiers
+(31645, 4414, 2), -- Armor Type
+(31645, 4415, 3), -- Weapon Type
+(31645, 4416, 14), -- Races
 -- Tablet of Vision
 (31646, 4045, 1), -- Resist Full Magic Attack
-(31646, 4390, 1), -- Mystic Immunity
-(31646, 4408, 1), -- HP Increase (1x)
-(31646, 4409, 1), -- MP Increase (1x)
-(31646, 4410, 11), -- Average P. Atk.
-(31646, 4411, 11), -- Average M. Atk.
-(31646, 4412, 11), -- Average P. Def.
-(31646, 4413, 11), -- Average M. Def.
-(31646, 4414, 2), -- Standard Type
-(31646, 4415, 3), -- One-handed Sword
-(31646, 4416, 19), -- Others
+(31646, 4390, 1), -- NPC Abnormal Immunity
+(31646, 4408, 1), -- HP Modifiers
+(31646, 4409, 1), -- MP Modifiers
+(31646, 4410, 11), -- P. Atk. Modifiers
+(31646, 4411, 11), -- M. Atk. Modifiers
+(31646, 4412, 11), -- P. Def. Modifiers
+(31646, 4413, 11), -- M. Def. Modifiers
+(31646, 4414, 2), -- Armor Type
+(31646, 4415, 3), -- Weapon Type
+(31646, 4416, 19), -- Races
 -- Tablet of Vision
 (31647, 4045, 1), -- Resist Full Magic Attack
-(31647, 4390, 1), -- Mystic Immunity
-(31647, 4408, 1), -- HP Increase (1x)
-(31647, 4409, 1), -- MP Increase (1x)
-(31647, 4410, 11), -- Average P. Atk.
-(31647, 4411, 11), -- Average M. Atk.
-(31647, 4412, 11), -- Average P. Def.
-(31647, 4413, 11), -- Average M. Def.
-(31647, 4414, 2), -- Standard Type
-(31647, 4415, 3), -- One-handed Sword
-(31647, 4416, 19), -- Others
+(31647, 4390, 1), -- NPC Abnormal Immunity
+(31647, 4408, 1), -- HP Modifiers
+(31647, 4409, 1), -- MP Modifiers
+(31647, 4410, 11), -- P. Atk. Modifiers
+(31647, 4411, 11), -- M. Atk. Modifiers
+(31647, 4412, 11), -- P. Def. Modifiers
+(31647, 4413, 11), -- M. Def. Modifiers
+(31647, 4414, 2), -- Armor Type
+(31647, 4415, 3), -- Weapon Type
+(31647, 4416, 19), -- Races
 -- Tablet of Vision
 (31648, 4045, 1), -- Resist Full Magic Attack
-(31648, 4390, 1), -- Mystic Immunity
-(31648, 4408, 1), -- HP Increase (1x)
-(31648, 4409, 1), -- MP Increase (1x)
-(31648, 4410, 11), -- Average P. Atk.
-(31648, 4411, 11), -- Average M. Atk.
-(31648, 4412, 11), -- Average P. Def.
-(31648, 4413, 11), -- Average M. Def.
-(31648, 4414, 2), -- Standard Type
-(31648, 4415, 3), -- One-handed Sword
-(31648, 4416, 19), -- Others
+(31648, 4390, 1), -- NPC Abnormal Immunity
+(31648, 4408, 1), -- HP Modifiers
+(31648, 4409, 1), -- MP Modifiers
+(31648, 4410, 11), -- P. Atk. Modifiers
+(31648, 4411, 11), -- M. Atk. Modifiers
+(31648, 4412, 11), -- P. Def. Modifiers
+(31648, 4413, 11), -- M. Def. Modifiers
+(31648, 4414, 2), -- Armor Type
+(31648, 4415, 3), -- Weapon Type
+(31648, 4416, 19), -- Races
 -- Tablet of Vision
 (31649, 4045, 1), -- Resist Full Magic Attack
-(31649, 4390, 1), -- Mystic Immunity
-(31649, 4408, 1), -- HP Increase (1x)
-(31649, 4409, 1), -- MP Increase (1x)
-(31649, 4410, 11), -- Average P. Atk.
-(31649, 4411, 11), -- Average M. Atk.
-(31649, 4412, 11), -- Average P. Def.
-(31649, 4413, 11), -- Average M. Def.
-(31649, 4414, 2), -- Standard Type
-(31649, 4415, 3), -- One-handed Sword
-(31649, 4416, 19), -- Others
+(31649, 4390, 1), -- NPC Abnormal Immunity
+(31649, 4408, 1), -- HP Modifiers
+(31649, 4409, 1), -- MP Modifiers
+(31649, 4410, 11), -- P. Atk. Modifiers
+(31649, 4411, 11), -- M. Atk. Modifiers
+(31649, 4412, 11), -- P. Def. Modifiers
+(31649, 4413, 11), -- M. Def. Modifiers
+(31649, 4414, 2), -- Armor Type
+(31649, 4415, 3), -- Weapon Type
+(31649, 4416, 19), -- Races
 -- Tablet of Vision
 (31650, 4045, 1), -- Resist Full Magic Attack
-(31650, 4390, 1), -- Mystic Immunity
-(31650, 4408, 1), -- HP Increase (1x)
-(31650, 4409, 1), -- MP Increase (1x)
-(31650, 4410, 11), -- Average P. Atk.
-(31650, 4411, 11), -- Average M. Atk.
-(31650, 4412, 11), -- Average P. Def.
-(31650, 4413, 11), -- Average M. Def.
-(31650, 4414, 2), -- Standard Type
-(31650, 4415, 3), -- One-handed Sword
-(31650, 4416, 19), -- Others
+(31650, 4390, 1), -- NPC Abnormal Immunity
+(31650, 4408, 1), -- HP Modifiers
+(31650, 4409, 1), -- MP Modifiers
+(31650, 4410, 11), -- P. Atk. Modifiers
+(31650, 4411, 11), -- M. Atk. Modifiers
+(31650, 4412, 11), -- P. Def. Modifiers
+(31650, 4413, 11), -- M. Def. Modifiers
+(31650, 4414, 2), -- Armor Type
+(31650, 4415, 3), -- Weapon Type
+(31650, 4416, 19), -- Races
 -- Tablet of Vision
 (31651, 4045, 1), -- Resist Full Magic Attack
-(31651, 4390, 1), -- Mystic Immunity
-(31651, 4408, 1), -- HP Increase (1x)
-(31651, 4409, 1), -- MP Increase (1x)
-(31651, 4410, 11), -- Average P. Atk.
-(31651, 4411, 11), -- Average M. Atk.
-(31651, 4412, 11), -- Average P. Def.
-(31651, 4413, 11), -- Average M. Def.
-(31651, 4414, 2), -- Standard Type
-(31651, 4415, 3), -- One-handed Sword
-(31651, 4416, 19), -- Others
+(31651, 4390, 1), -- NPC Abnormal Immunity
+(31651, 4408, 1), -- HP Modifiers
+(31651, 4409, 1), -- MP Modifiers
+(31651, 4410, 11), -- P. Atk. Modifiers
+(31651, 4411, 11), -- M. Atk. Modifiers
+(31651, 4412, 11), -- P. Def. Modifiers
+(31651, 4413, 11), -- M. Def. Modifiers
+(31651, 4414, 2), -- Armor Type
+(31651, 4415, 3), -- Weapon Type
+(31651, 4416, 19), -- Races
 -- Tablet of Vision
 (31652, 4045, 1), -- Resist Full Magic Attack
-(31652, 4390, 1), -- Mystic Immunity
-(31652, 4408, 1), -- HP Increase (1x)
-(31652, 4409, 1), -- MP Increase (1x)
-(31652, 4410, 11), -- Average P. Atk.
-(31652, 4411, 11), -- Average M. Atk.
-(31652, 4412, 11), -- Average P. Def.
-(31652, 4413, 11), -- Average M. Def.
-(31652, 4414, 2), -- Standard Type
-(31652, 4415, 3), -- One-handed Sword
-(31652, 4416, 19), -- Others
+(31652, 4390, 1), -- NPC Abnormal Immunity
+(31652, 4408, 1), -- HP Modifiers
+(31652, 4409, 1), -- MP Modifiers
+(31652, 4410, 11), -- P. Atk. Modifiers
+(31652, 4411, 11), -- M. Atk. Modifiers
+(31652, 4412, 11), -- P. Def. Modifiers
+(31652, 4413, 11), -- M. Def. Modifiers
+(31652, 4414, 2), -- Armor Type
+(31652, 4415, 3), -- Weapon Type
+(31652, 4416, 19), -- Races
 -- Tablet of Vision
 (31653, 4045, 1), -- Resist Full Magic Attack
-(31653, 4390, 1), -- Mystic Immunity
-(31653, 4408, 1), -- HP Increase (1x)
-(31653, 4409, 1), -- MP Increase (1x)
-(31653, 4410, 11), -- Average P. Atk.
-(31653, 4411, 11), -- Average M. Atk.
-(31653, 4412, 11), -- Average P. Def.
-(31653, 4413, 11), -- Average M. Def.
-(31653, 4414, 2), -- Standard Type
-(31653, 4415, 3), -- One-handed Sword
-(31653, 4416, 19), -- Others
+(31653, 4390, 1), -- NPC Abnormal Immunity
+(31653, 4408, 1), -- HP Modifiers
+(31653, 4409, 1), -- MP Modifiers
+(31653, 4410, 11), -- P. Atk. Modifiers
+(31653, 4411, 11), -- M. Atk. Modifiers
+(31653, 4412, 11), -- P. Def. Modifiers
+(31653, 4413, 11), -- M. Def. Modifiers
+(31653, 4414, 2), -- Armor Type
+(31653, 4415, 3), -- Weapon Type
+(31653, 4416, 19), -- Races
 -- Tablet of Vision
 (31654, 4045, 1), -- Resist Full Magic Attack
-(31654, 4390, 1), -- Mystic Immunity
-(31654, 4408, 1), -- HP Increase (1x)
-(31654, 4409, 1), -- MP Increase (1x)
-(31654, 4410, 11), -- Average P. Atk.
-(31654, 4411, 11), -- Average M. Atk.
-(31654, 4412, 11), -- Average P. Def.
-(31654, 4413, 11), -- Average M. Def.
-(31654, 4414, 2), -- Standard Type
-(31654, 4415, 3), -- One-handed Sword
-(31654, 4416, 19), -- Others
+(31654, 4390, 1), -- NPC Abnormal Immunity
+(31654, 4408, 1), -- HP Modifiers
+(31654, 4409, 1), -- MP Modifiers
+(31654, 4410, 11), -- P. Atk. Modifiers
+(31654, 4411, 11), -- M. Atk. Modifiers
+(31654, 4412, 11), -- P. Def. Modifiers
+(31654, 4413, 11), -- M. Def. Modifiers
+(31654, 4414, 2), -- Armor Type
+(31654, 4415, 3), -- Weapon Type
+(31654, 4416, 19), -- Races
 -- Tablet of Vision
 (31655, 4045, 1), -- Resist Full Magic Attack
-(31655, 4390, 1), -- Mystic Immunity
-(31655, 4408, 1), -- HP Increase (1x)
-(31655, 4409, 1), -- MP Increase (1x)
-(31655, 4410, 11), -- Average P. Atk.
-(31655, 4411, 11), -- Average M. Atk.
-(31655, 4412, 11), -- Average P. Def.
-(31655, 4413, 11), -- Average M. Def.
-(31655, 4414, 2), -- Standard Type
-(31655, 4415, 3), -- One-handed Sword
-(31655, 4416, 19), -- Others
+(31655, 4390, 1), -- NPC Abnormal Immunity
+(31655, 4408, 1), -- HP Modifiers
+(31655, 4409, 1), -- MP Modifiers
+(31655, 4410, 11), -- P. Atk. Modifiers
+(31655, 4411, 11), -- M. Atk. Modifiers
+(31655, 4412, 11), -- P. Def. Modifiers
+(31655, 4413, 11), -- M. Def. Modifiers
+(31655, 4414, 2), -- Armor Type
+(31655, 4415, 3), -- Weapon Type
+(31655, 4416, 19), -- Races
 -- Tablet of Vision
 (31656, 4045, 1), -- Resist Full Magic Attack
-(31656, 4390, 1), -- Mystic Immunity
-(31656, 4408, 1), -- HP Increase (1x)
-(31656, 4409, 1), -- MP Increase (1x)
-(31656, 4410, 11), -- Average P. Atk.
-(31656, 4411, 11), -- Average M. Atk.
-(31656, 4412, 11), -- Average P. Def.
-(31656, 4413, 11), -- Average M. Def.
-(31656, 4414, 2), -- Standard Type
-(31656, 4415, 3), -- One-handed Sword
-(31656, 4416, 19), -- Others
+(31656, 4390, 1), -- NPC Abnormal Immunity
+(31656, 4408, 1), -- HP Modifiers
+(31656, 4409, 1), -- MP Modifiers
+(31656, 4410, 11), -- P. Atk. Modifiers
+(31656, 4411, 11), -- M. Atk. Modifiers
+(31656, 4412, 11), -- P. Def. Modifiers
+(31656, 4413, 11), -- M. Def. Modifiers
+(31656, 4414, 2), -- Armor Type
+(31656, 4415, 3), -- Weapon Type
+(31656, 4416, 19), -- Races
 -- Tablet of Vision
 (31657, 4045, 1), -- Resist Full Magic Attack
-(31657, 4390, 1), -- Mystic Immunity
-(31657, 4408, 1), -- HP Increase (1x)
-(31657, 4409, 1), -- MP Increase (1x)
-(31657, 4410, 11), -- Average P. Atk.
-(31657, 4411, 11), -- Average M. Atk.
-(31657, 4412, 11), -- Average P. Def.
-(31657, 4413, 11), -- Average M. Def.
-(31657, 4414, 2), -- Standard Type
-(31657, 4415, 3), -- One-handed Sword
-(31657, 4416, 19), -- Others
+(31657, 4390, 1), -- NPC Abnormal Immunity
+(31657, 4408, 1), -- HP Modifiers
+(31657, 4409, 1), -- MP Modifiers
+(31657, 4410, 11), -- P. Atk. Modifiers
+(31657, 4411, 11), -- M. Atk. Modifiers
+(31657, 4412, 11), -- P. Def. Modifiers
+(31657, 4413, 11), -- M. Def. Modifiers
+(31657, 4414, 2), -- Armor Type
+(31657, 4415, 3), -- Weapon Type
+(31657, 4416, 19), -- Races
 -- Tablet of Vision
 (31658, 4045, 1), -- Resist Full Magic Attack
-(31658, 4390, 1), -- Mystic Immunity
-(31658, 4408, 1), -- HP Increase (1x)
-(31658, 4409, 1), -- MP Increase (1x)
-(31658, 4410, 11), -- Average P. Atk.
-(31658, 4411, 11), -- Average M. Atk.
-(31658, 4412, 11), -- Average P. Def.
-(31658, 4413, 11), -- Average M. Def.
-(31658, 4414, 2), -- Standard Type
-(31658, 4415, 3), -- One-handed Sword
-(31658, 4416, 19), -- Others
+(31658, 4390, 1), -- NPC Abnormal Immunity
+(31658, 4408, 1), -- HP Modifiers
+(31658, 4409, 1), -- MP Modifiers
+(31658, 4410, 11), -- P. Atk. Modifiers
+(31658, 4411, 11), -- M. Atk. Modifiers
+(31658, 4412, 11), -- P. Def. Modifiers
+(31658, 4413, 11), -- M. Def. Modifiers
+(31658, 4414, 2), -- Armor Type
+(31658, 4415, 3), -- Weapon Type
+(31658, 4416, 19), -- Races
 -- Tablet of Vision
 (31659, 4045, 1), -- Resist Full Magic Attack
-(31659, 4390, 1), -- Mystic Immunity
-(31659, 4408, 1), -- HP Increase (1x)
-(31659, 4409, 1), -- MP Increase (1x)
-(31659, 4410, 11), -- Average P. Atk.
-(31659, 4411, 11), -- Average M. Atk.
-(31659, 4412, 11), -- Average P. Def.
-(31659, 4413, 11), -- Average M. Def.
-(31659, 4414, 2), -- Standard Type
-(31659, 4415, 3), -- One-handed Sword
-(31659, 4416, 19), -- Others
+(31659, 4390, 1), -- NPC Abnormal Immunity
+(31659, 4408, 1), -- HP Modifiers
+(31659, 4409, 1), -- MP Modifiers
+(31659, 4410, 11), -- P. Atk. Modifiers
+(31659, 4411, 11), -- M. Atk. Modifiers
+(31659, 4412, 11), -- P. Def. Modifiers
+(31659, 4413, 11), -- M. Def. Modifiers
+(31659, 4414, 2), -- Armor Type
+(31659, 4415, 3), -- Weapon Type
+(31659, 4416, 19), -- Races
 -- Tablet of Vision
 (31660, 4045, 1), -- Resist Full Magic Attack
-(31660, 4390, 1), -- Mystic Immunity
-(31660, 4408, 1), -- HP Increase (1x)
-(31660, 4409, 1), -- MP Increase (1x)
-(31660, 4410, 11), -- Average P. Atk.
-(31660, 4411, 11), -- Average M. Atk.
-(31660, 4412, 11), -- Average P. Def.
-(31660, 4413, 11), -- Average M. Def.
-(31660, 4414, 2), -- Standard Type
-(31660, 4415, 3), -- One-handed Sword
-(31660, 4416, 19), -- Others
+(31660, 4390, 1), -- NPC Abnormal Immunity
+(31660, 4408, 1), -- HP Modifiers
+(31660, 4409, 1), -- MP Modifiers
+(31660, 4410, 11), -- P. Atk. Modifiers
+(31660, 4411, 11), -- M. Atk. Modifiers
+(31660, 4412, 11), -- P. Def. Modifiers
+(31660, 4413, 11), -- M. Def. Modifiers
+(31660, 4414, 2), -- Armor Type
+(31660, 4415, 3), -- Weapon Type
+(31660, 4416, 19), -- Races
 -- Forgotten Monument
 (31661, 4045, 1), -- Resist Full Magic Attack
-(31661, 4390, 1), -- Mystic Immunity
-(31661, 4408, 1), -- HP Increase (1x)
-(31661, 4409, 1), -- MP Increase (1x)
-(31661, 4410, 11), -- Average P. Atk.
-(31661, 4411, 11), -- Average M. Atk.
-(31661, 4412, 11), -- Average P. Def.
-(31661, 4413, 11), -- Average M. Def.
-(31661, 4414, 2), -- Standard Type
-(31661, 4415, 3), -- One-handed Sword
-(31661, 4416, 19), -- Others
+(31661, 4390, 1), -- NPC Abnormal Immunity
+(31661, 4408, 1), -- HP Modifiers
+(31661, 4409, 1), -- MP Modifiers
+(31661, 4410, 11), -- P. Atk. Modifiers
+(31661, 4411, 11), -- M. Atk. Modifiers
+(31661, 4412, 11), -- P. Def. Modifiers
+(31661, 4413, 11), -- M. Def. Modifiers
+(31661, 4414, 2), -- Armor Type
+(31661, 4415, 3), -- Weapon Type
+(31661, 4416, 19), -- Races
 -- Forgotten Monument
 (31662, 4045, 1), -- Resist Full Magic Attack
-(31662, 4390, 1), -- Mystic Immunity
-(31662, 4408, 1), -- HP Increase (1x)
-(31662, 4409, 1), -- MP Increase (1x)
-(31662, 4410, 11), -- Average P. Atk.
-(31662, 4411, 11), -- Average M. Atk.
-(31662, 4412, 11), -- Average P. Def.
-(31662, 4413, 11), -- Average M. Def.
-(31662, 4414, 2), -- Standard Type
-(31662, 4415, 3), -- One-handed Sword
-(31662, 4416, 19), -- Others
+(31662, 4390, 1), -- NPC Abnormal Immunity
+(31662, 4408, 1), -- HP Modifiers
+(31662, 4409, 1), -- MP Modifiers
+(31662, 4410, 11), -- P. Atk. Modifiers
+(31662, 4411, 11), -- M. Atk. Modifiers
+(31662, 4412, 11), -- P. Def. Modifiers
+(31662, 4413, 11), -- M. Def. Modifiers
+(31662, 4414, 2), -- Armor Type
+(31662, 4415, 3), -- Weapon Type
+(31662, 4416, 19), -- Races
 -- Forgotten Monument
 (31663, 4045, 1), -- Resist Full Magic Attack
-(31663, 4390, 1), -- Mystic Immunity
-(31663, 4408, 1), -- HP Increase (1x)
-(31663, 4409, 1), -- MP Increase (1x)
-(31663, 4410, 11), -- Average P. Atk.
-(31663, 4411, 11), -- Average M. Atk.
-(31663, 4412, 11), -- Average P. Def.
-(31663, 4413, 11), -- Average M. Def.
-(31663, 4414, 2), -- Standard Type
-(31663, 4415, 3), -- One-handed Sword
-(31663, 4416, 19), -- Others
+(31663, 4390, 1), -- NPC Abnormal Immunity
+(31663, 4408, 1), -- HP Modifiers
+(31663, 4409, 1), -- MP Modifiers
+(31663, 4410, 11), -- P. Atk. Modifiers
+(31663, 4411, 11), -- M. Atk. Modifiers
+(31663, 4412, 11), -- P. Def. Modifiers
+(31663, 4413, 11), -- M. Def. Modifiers
+(31663, 4414, 2), -- Armor Type
+(31663, 4415, 3), -- Weapon Type
+(31663, 4416, 19), -- Races
 -- Forgotten Monument
 (31664, 4045, 1), -- Resist Full Magic Attack
-(31664, 4390, 1), -- Mystic Immunity
-(31664, 4408, 1), -- HP Increase (1x)
-(31664, 4409, 1), -- MP Increase (1x)
-(31664, 4410, 11), -- Average P. Atk.
-(31664, 4411, 11), -- Average M. Atk.
-(31664, 4412, 11), -- Average P. Def.
-(31664, 4413, 11), -- Average M. Def.
-(31664, 4414, 2), -- Standard Type
-(31664, 4415, 3), -- One-handed Sword
-(31664, 4416, 19), -- Others
+(31664, 4390, 1), -- NPC Abnormal Immunity
+(31664, 4408, 1), -- HP Modifiers
+(31664, 4409, 1), -- MP Modifiers
+(31664, 4410, 11), -- P. Atk. Modifiers
+(31664, 4411, 11), -- M. Atk. Modifiers
+(31664, 4412, 11), -- P. Def. Modifiers
+(31664, 4413, 11), -- M. Def. Modifiers
+(31664, 4414, 2), -- Armor Type
+(31664, 4415, 3), -- Weapon Type
+(31664, 4416, 19), -- Races
 -- Corpse of Dwarf
 (31665, 4045, 1), -- Resist Full Magic Attack
-(31665, 4408, 1), -- HP Increase (1x)
-(31665, 4409, 1), -- MP Increase (1x)
-(31665, 4410, 11), -- Average P. Atk.
-(31665, 4411, 11), -- Average M. Atk.
-(31665, 4412, 11), -- Average P. Def.
-(31665, 4413, 11), -- Average M. Def.
-(31665, 4414, 2), -- Standard Type
-(31665, 4415, 3), -- One-handed Sword
-(31665, 4416, 18), -- Dwarves
+(31665, 4408, 1), -- HP Modifiers
+(31665, 4409, 1), -- MP Modifiers
+(31665, 4410, 11), -- P. Atk. Modifiers
+(31665, 4411, 11), -- M. Atk. Modifiers
+(31665, 4412, 11), -- P. Def. Modifiers
+(31665, 4413, 11), -- M. Def. Modifiers
+(31665, 4414, 2), -- Armor Type
+(31665, 4415, 3), -- Weapon Type
+(31665, 4416, 18), -- Races
 -- Lumen
 (31666, 4045, 1), -- Resist Full Magic Attack
-(31666, 4408, 1), -- HP Increase (1x)
-(31666, 4409, 1), -- MP Increase (1x)
-(31666, 4410, 11), -- Average P. Atk.
-(31666, 4411, 11), -- Average M. Atk.
-(31666, 4412, 11), -- Average P. Def.
-(31666, 4413, 11), -- Average M. Def.
-(31666, 4414, 2), -- Standard Type
-(31666, 4415, 3), -- One-handed Sword
-(31666, 4416, 14), -- Humans
+(31666, 4408, 1), -- HP Modifiers
+(31666, 4409, 1), -- MP Modifiers
+(31666, 4410, 11), -- P. Atk. Modifiers
+(31666, 4411, 11), -- M. Atk. Modifiers
+(31666, 4412, 11), -- P. Def. Modifiers
+(31666, 4413, 11), -- M. Def. Modifiers
+(31666, 4414, 2), -- Armor Type
+(31666, 4415, 3), -- Weapon Type
+(31666, 4416, 14), -- Races
 -- Raik
 (31667, 4045, 1), -- Resist Full Magic Attack
-(31667, 4408, 1), -- HP Increase (1x)
-(31667, 4409, 1), -- MP Increase (1x)
-(31667, 4410, 11), -- Average P. Atk.
-(31667, 4411, 11), -- Average M. Atk.
-(31667, 4412, 11), -- Average P. Def.
-(31667, 4413, 11), -- Average M. Def.
-(31667, 4414, 2), -- Standard Type
-(31667, 4415, 3), -- One-handed Sword
-(31667, 4416, 17), -- Orcs
+(31667, 4408, 1), -- HP Modifiers
+(31667, 4409, 1), -- MP Modifiers
+(31667, 4410, 11), -- P. Atk. Modifiers
+(31667, 4411, 11), -- M. Atk. Modifiers
+(31667, 4412, 11), -- P. Def. Modifiers
+(31667, 4413, 11), -- M. Def. Modifiers
+(31667, 4414, 2), -- Armor Type
+(31667, 4415, 3), -- Weapon Type
+(31667, 4416, 17), -- Races
 -- Tangen
 (31668, 4045, 1), -- Resist Full Magic Attack
-(31668, 4408, 1), -- HP Increase (1x)
-(31668, 4409, 1), -- MP Increase (1x)
-(31668, 4410, 11), -- Average P. Atk.
-(31668, 4411, 11), -- Average M. Atk.
-(31668, 4412, 11), -- Average P. Def.
-(31668, 4413, 11), -- Average M. Def.
-(31668, 4414, 2), -- Standard Type
-(31668, 4415, 3), -- One-handed Sword
-(31668, 4416, 18), -- Dwarves
+(31668, 4408, 1), -- HP Modifiers
+(31668, 4409, 1), -- MP Modifiers
+(31668, 4410, 11), -- P. Atk. Modifiers
+(31668, 4411, 11), -- M. Atk. Modifiers
+(31668, 4412, 11), -- P. Def. Modifiers
+(31668, 4413, 11), -- M. Def. Modifiers
+(31668, 4414, 2), -- Armor Type
+(31668, 4415, 3), -- Weapon Type
+(31668, 4416, 18), -- Races
 -- Onyx
 (31669, 4045, 1), -- Resist Full Magic Attack
-(31669, 4408, 1), -- HP Increase (1x)
-(31669, 4409, 1), -- MP Increase (1x)
-(31669, 4410, 11), -- Average P. Atk.
-(31669, 4411, 11), -- Average M. Atk.
-(31669, 4412, 11), -- Average P. Def.
-(31669, 4413, 11), -- Average M. Def.
-(31669, 4414, 2), -- Standard Type
-(31669, 4415, 3), -- One-handed Sword
-(31669, 4416, 18), -- Dwarves
+(31669, 4408, 1), -- HP Modifiers
+(31669, 4409, 1), -- MP Modifiers
+(31669, 4410, 11), -- P. Atk. Modifiers
+(31669, 4411, 11), -- M. Atk. Modifiers
+(31669, 4412, 11), -- P. Def. Modifiers
+(31669, 4413, 11), -- M. Def. Modifiers
+(31669, 4414, 2), -- Armor Type
+(31669, 4415, 3), -- Weapon Type
+(31669, 4416, 18), -- Races
 -- Burns
 (31670, 4045, 1), -- Resist Full Magic Attack
-(31670, 4408, 1), -- HP Increase (1x)
-(31670, 4409, 1), -- MP Increase (1x)
-(31670, 4410, 11), -- Average P. Atk.
-(31670, 4411, 11), -- Average M. Atk.
-(31670, 4412, 11), -- Average P. Def.
-(31670, 4413, 11), -- Average M. Def.
-(31670, 4414, 2), -- Standard Type
-(31670, 4415, 3), -- One-handed Sword
-(31670, 4416, 14), -- Humans
+(31670, 4408, 1), -- HP Modifiers
+(31670, 4409, 1), -- MP Modifiers
+(31670, 4410, 11), -- P. Atk. Modifiers
+(31670, 4411, 11), -- M. Atk. Modifiers
+(31670, 4412, 11), -- P. Def. Modifiers
+(31670, 4413, 11), -- M. Def. Modifiers
+(31670, 4414, 2), -- Armor Type
+(31670, 4415, 3), -- Weapon Type
+(31670, 4416, 14), -- Races
 -- Patrol
 (31671, 4045, 1), -- Resist Full Magic Attack
-(31671, 4408, 1), -- HP Increase (1x)
-(31671, 4409, 1), -- MP Increase (1x)
-(31671, 4410, 16), -- Very Strong P. Atk.
-(31671, 4411, 16), -- Very Strong M. Atk.
-(31671, 4412, 16), -- Very Strong P. Def.
-(31671, 4413, 16), -- Very Strong M. Def.
-(31671, 4414, 2), -- Standard Type
-(31671, 4415, 9), -- Bows
-(31671, 4416, 14), -- Humans
+(31671, 4408, 1), -- HP Modifiers
+(31671, 4409, 1), -- MP Modifiers
+(31671, 4410, 16), -- P. Atk. Modifiers
+(31671, 4411, 16), -- M. Atk. Modifiers
+(31671, 4412, 16), -- P. Def. Modifiers
+(31671, 4413, 16), -- M. Def. Modifiers
+(31671, 4414, 2), -- Armor Type
+(31671, 4415, 9), -- Weapon Type
+(31671, 4416, 14), -- Races
 -- Patrol
 (31672, 4045, 1), -- Resist Full Magic Attack
-(31672, 4408, 1), -- HP Increase (1x)
-(31672, 4409, 1), -- MP Increase (1x)
-(31672, 4410, 16), -- Very Strong P. Atk.
-(31672, 4411, 16), -- Very Strong M. Atk.
-(31672, 4412, 16), -- Very Strong P. Def.
-(31672, 4413, 16), -- Very Strong M. Def.
-(31672, 4414, 2), -- Standard Type
-(31672, 4415, 3), -- One-handed Sword
-(31672, 4416, 14), -- Humans
+(31672, 4408, 1), -- HP Modifiers
+(31672, 4409, 1), -- MP Modifiers
+(31672, 4410, 16), -- P. Atk. Modifiers
+(31672, 4411, 16), -- M. Atk. Modifiers
+(31672, 4412, 16), -- P. Def. Modifiers
+(31672, 4413, 16), -- M. Def. Modifiers
+(31672, 4414, 2), -- Armor Type
+(31672, 4415, 3), -- Weapon Type
+(31672, 4416, 14), -- Races
 -- Patrol
 (31673, 4045, 1), -- Resist Full Magic Attack
-(31673, 4408, 1), -- HP Increase (1x)
-(31673, 4409, 1), -- MP Increase (1x)
-(31673, 4410, 16), -- Very Strong P. Atk.
-(31673, 4411, 16), -- Very Strong M. Atk.
-(31673, 4412, 16), -- Very Strong P. Def.
-(31673, 4413, 16), -- Very Strong M. Def.
-(31673, 4414, 2), -- Standard Type
-(31673, 4415, 9), -- Bows
-(31673, 4416, 14), -- Humans
+(31673, 4408, 1), -- HP Modifiers
+(31673, 4409, 1), -- MP Modifiers
+(31673, 4410, 16), -- P. Atk. Modifiers
+(31673, 4411, 16), -- M. Atk. Modifiers
+(31673, 4412, 16), -- P. Def. Modifiers
+(31673, 4413, 16), -- M. Def. Modifiers
+(31673, 4414, 2), -- Armor Type
+(31673, 4415, 9), -- Weapon Type
+(31673, 4416, 14), -- Races
 -- Patrol
 (31674, 4045, 1), -- Resist Full Magic Attack
-(31674, 4408, 1), -- HP Increase (1x)
-(31674, 4409, 1), -- MP Increase (1x)
-(31674, 4410, 16), -- Very Strong P. Atk.
-(31674, 4411, 16), -- Very Strong M. Atk.
-(31674, 4412, 16), -- Very Strong P. Def.
-(31674, 4413, 16), -- Very Strong M. Def.
-(31674, 4414, 2), -- Standard Type
-(31674, 4415, 3), -- One-handed Sword
-(31674, 4416, 14), -- Humans
+(31674, 4408, 1), -- HP Modifiers
+(31674, 4409, 1), -- MP Modifiers
+(31674, 4410, 16), -- P. Atk. Modifiers
+(31674, 4411, 16), -- M. Atk. Modifiers
+(31674, 4412, 16), -- P. Def. Modifiers
+(31674, 4413, 16), -- M. Def. Modifiers
+(31674, 4414, 2), -- Armor Type
+(31674, 4415, 3), -- Weapon Type
+(31674, 4416, 14), -- Races
 -- Viktor Van Deik
 (31675, 4045, 1), -- Resist Full Magic Attack
-(31675, 4408, 1), -- HP Increase (1x)
-(31675, 4409, 1), -- MP Increase (1x)
-(31675, 4410, 11), -- Average P. Atk.
-(31675, 4411, 11), -- Average M. Atk.
-(31675, 4412, 11), -- Average P. Def.
-(31675, 4413, 11), -- Average M. Def.
-(31675, 4414, 2), -- Standard Type
-(31675, 4415, 3), -- One-handed Sword
-(31675, 4416, 14), -- Humans
+(31675, 4408, 1), -- HP Modifiers
+(31675, 4409, 1), -- MP Modifiers
+(31675, 4410, 11), -- P. Atk. Modifiers
+(31675, 4411, 11), -- M. Atk. Modifiers
+(31675, 4412, 11), -- P. Def. Modifiers
+(31675, 4413, 11), -- M. Def. Modifiers
+(31675, 4414, 2), -- Armor Type
+(31675, 4415, 3), -- Weapon Type
+(31675, 4416, 14), -- Races
 -- Gregory Athebaldt
 (31676, 4045, 1), -- Resist Full Magic Attack
-(31676, 4408, 1), -- HP Increase (1x)
-(31676, 4409, 1), -- MP Increase (1x)
-(31676, 4410, 11), -- Average P. Atk.
-(31676, 4411, 11), -- Average M. Atk.
-(31676, 4412, 11), -- Average P. Def.
-(31676, 4413, 11), -- Average M. Def.
-(31676, 4414, 2), -- Standard Type
-(31676, 4415, 3), -- One-handed Sword
-(31676, 4416, 14), -- Humans
+(31676, 4408, 1), -- HP Modifiers
+(31676, 4409, 1), -- MP Modifiers
+(31676, 4410, 11), -- P. Atk. Modifiers
+(31676, 4411, 11), -- M. Atk. Modifiers
+(31676, 4412, 11), -- P. Def. Modifiers
+(31676, 4413, 11), -- M. Def. Modifiers
+(31676, 4414, 2), -- Armor Type
+(31676, 4415, 3), -- Weapon Type
+(31676, 4416, 14), -- Races
 -- Border Patrol
 (31677, 4045, 1), -- Resist Full Magic Attack
-(31677, 4408, 1), -- HP Increase (1x)
-(31677, 4409, 1), -- MP Increase (1x)
-(31677, 4410, 16), -- Very Strong P. Atk.
-(31677, 4411, 16), -- Very Strong M. Atk.
-(31677, 4412, 16), -- Very Strong P. Def.
-(31677, 4413, 16), -- Very Strong M. Def.
-(31677, 4414, 2), -- Standard Type
-(31677, 4415, 3), -- One-handed Sword
-(31677, 4416, 14), -- Humans
+(31677, 4408, 1), -- HP Modifiers
+(31677, 4409, 1), -- MP Modifiers
+(31677, 4410, 16), -- P. Atk. Modifiers
+(31677, 4411, 16), -- M. Atk. Modifiers
+(31677, 4412, 16), -- P. Def. Modifiers
+(31677, 4413, 16), -- M. Def. Modifiers
+(31677, 4414, 2), -- Armor Type
+(31677, 4415, 3), -- Weapon Type
+(31677, 4416, 14), -- Races
 -- Border Patrol
 (31678, 4045, 1), -- Resist Full Magic Attack
-(31678, 4408, 1), -- HP Increase (1x)
-(31678, 4409, 1), -- MP Increase (1x)
-(31678, 4410, 16), -- Very Strong P. Atk.
-(31678, 4411, 16), -- Very Strong M. Atk.
-(31678, 4412, 16), -- Very Strong P. Def.
-(31678, 4413, 16), -- Very Strong M. Def.
-(31678, 4414, 2), -- Standard Type
-(31678, 4415, 3), -- One-handed Sword
-(31678, 4416, 14), -- Humans
+(31678, 4408, 1), -- HP Modifiers
+(31678, 4409, 1), -- MP Modifiers
+(31678, 4410, 16), -- P. Atk. Modifiers
+(31678, 4411, 16), -- M. Atk. Modifiers
+(31678, 4412, 16), -- P. Def. Modifiers
+(31678, 4413, 16), -- M. Def. Modifiers
+(31678, 4414, 2), -- Armor Type
+(31678, 4415, 3), -- Weapon Type
+(31678, 4416, 14), -- Races
 -- Eustace Van Essen
 (31679, 4045, 1), -- Resist Full Magic Attack
-(31679, 4408, 1), -- HP Increase (1x)
-(31679, 4409, 1), -- MP Increase (1x)
-(31679, 4410, 11), -- Average P. Atk.
-(31679, 4411, 11), -- Average M. Atk.
-(31679, 4412, 11), -- Average P. Def.
-(31679, 4413, 11), -- Average M. Def.
-(31679, 4414, 2), -- Standard Type
-(31679, 4415, 3), -- One-handed Sword
-(31679, 4416, 14), -- Humans
+(31679, 4408, 1), -- HP Modifiers
+(31679, 4409, 1), -- MP Modifiers
+(31679, 4410, 11), -- P. Atk. Modifiers
+(31679, 4411, 11), -- M. Atk. Modifiers
+(31679, 4412, 11), -- P. Def. Modifiers
+(31679, 4413, 11), -- M. Def. Modifiers
+(31679, 4414, 2), -- Armor Type
+(31679, 4415, 3), -- Weapon Type
+(31679, 4416, 14), -- Races
 -- Fleming Van Issen
 (31680, 4045, 1), -- Resist Full Magic Attack
-(31680, 4408, 1), -- HP Increase (1x)
-(31680, 4409, 1), -- MP Increase (1x)
-(31680, 4410, 11), -- Average P. Atk.
-(31680, 4411, 11), -- Average M. Atk.
-(31680, 4412, 11), -- Average P. Def.
-(31680, 4413, 11), -- Average M. Def.
-(31680, 4414, 2), -- Standard Type
-(31680, 4415, 3), -- One-handed Sword
-(31680, 4416, 14), -- Humans
+(31680, 4408, 1), -- HP Modifiers
+(31680, 4409, 1), -- MP Modifiers
+(31680, 4410, 11), -- P. Atk. Modifiers
+(31680, 4411, 11), -- M. Atk. Modifiers
+(31680, 4412, 11), -- P. Def. Modifiers
+(31680, 4413, 11), -- M. Def. Modifiers
+(31680, 4414, 2), -- Armor Type
+(31680, 4415, 3), -- Weapon Type
+(31680, 4416, 14), -- Races
 -- Frontier Guard
 (31681, 4045, 1), -- Resist Full Magic Attack
-(31681, 4408, 1), -- HP Increase (1x)
-(31681, 4409, 1), -- MP Increase (1x)
-(31681, 4410, 16), -- Very Strong P. Atk.
-(31681, 4411, 16), -- Very Strong M. Atk.
-(31681, 4412, 16), -- Very Strong P. Def.
-(31681, 4413, 16), -- Very Strong M. Def.
-(31681, 4414, 2), -- Standard Type
-(31681, 4415, 3), -- One-handed Sword
-(31681, 4416, 14), -- Humans
+(31681, 4408, 1), -- HP Modifiers
+(31681, 4409, 1), -- MP Modifiers
+(31681, 4410, 16), -- P. Atk. Modifiers
+(31681, 4411, 16), -- M. Atk. Modifiers
+(31681, 4412, 16), -- P. Def. Modifiers
+(31681, 4413, 16), -- M. Def. Modifiers
+(31681, 4414, 2), -- Armor Type
+(31681, 4415, 3), -- Weapon Type
+(31681, 4416, 14), -- Races
 -- Frontier Guard
 (31682, 4045, 1), -- Resist Full Magic Attack
-(31682, 4408, 1), -- HP Increase (1x)
-(31682, 4409, 1), -- MP Increase (1x)
-(31682, 4410, 16), -- Very Strong P. Atk.
-(31682, 4411, 16), -- Very Strong M. Atk.
-(31682, 4412, 16), -- Very Strong P. Def.
-(31682, 4413, 16), -- Very Strong M. Def.
-(31682, 4414, 2), -- Standard Type
-(31682, 4415, 3), -- One-handed Sword
-(31682, 4416, 14), -- Humans
+(31682, 4408, 1), -- HP Modifiers
+(31682, 4409, 1), -- MP Modifiers
+(31682, 4410, 16), -- P. Atk. Modifiers
+(31682, 4411, 16), -- M. Atk. Modifiers
+(31682, 4412, 16), -- P. Def. Modifiers
+(31682, 4413, 16), -- M. Def. Modifiers
+(31682, 4414, 2), -- Armor Type
+(31682, 4415, 3), -- Weapon Type
+(31682, 4416, 14), -- Races
 -- Eye of Argos
 (31683, 4045, 1), -- Resist Full Magic Attack
-(31683, 4390, 1), -- Mystic Immunity
-(31683, 4408, 1), -- HP Increase (1x)
-(31683, 4409, 1), -- MP Increase (1x)
-(31683, 4410, 11), -- Average P. Atk.
-(31683, 4411, 11), -- Average M. Atk.
-(31683, 4412, 11), -- Average P. Def.
-(31683, 4413, 11), -- Average M. Def.
-(31683, 4414, 2), -- Standard Type
-(31683, 4415, 3), -- One-handed Sword
-(31683, 4416, 19), -- Others
+(31683, 4390, 1), -- NPC Abnormal Immunity
+(31683, 4408, 1), -- HP Modifiers
+(31683, 4409, 1), -- MP Modifiers
+(31683, 4410, 11), -- P. Atk. Modifiers
+(31683, 4411, 11), -- M. Atk. Modifiers
+(31683, 4412, 11), -- P. Def. Modifiers
+(31683, 4413, 11), -- M. Def. Modifiers
+(31683, 4414, 2), -- Armor Type
+(31683, 4415, 3), -- Weapon Type
+(31683, 4416, 19), -- Races
 -- Eye of Udan Mardui
 (31684, 4045, 1), -- Resist Full Magic Attack
-(31684, 4390, 1), -- Mystic Immunity
-(31684, 4408, 1), -- HP Increase (1x)
-(31684, 4409, 1), -- MP Increase (1x)
-(31684, 4410, 11), -- Average P. Atk.
-(31684, 4411, 11), -- Average M. Atk.
-(31684, 4412, 11), -- Average P. Def.
-(31684, 4413, 11), -- Average M. Def.
-(31684, 4414, 2), -- Standard Type
-(31684, 4415, 3), -- One-handed Sword
-(31684, 4416, 2), -- Magic Creatures
+(31684, 4390, 1), -- NPC Abnormal Immunity
+(31684, 4408, 1), -- HP Modifiers
+(31684, 4409, 1), -- MP Modifiers
+(31684, 4410, 11), -- P. Atk. Modifiers
+(31684, 4411, 11), -- M. Atk. Modifiers
+(31684, 4412, 11), -- P. Def. Modifiers
+(31684, 4413, 11), -- M. Def. Modifiers
+(31684, 4414, 2), -- Armor Type
+(31684, 4415, 3), -- Weapon Type
+(31684, 4416, 2), -- Races
 -- Asefa's Eye
 (31685, 4045, 1), -- Resist Full Magic Attack
-(31685, 4390, 1), -- Mystic Immunity
-(31685, 4408, 1), -- HP Increase (1x)
-(31685, 4409, 1), -- MP Increase (1x)
-(31685, 4410, 11), -- Average P. Atk.
-(31685, 4411, 11), -- Average M. Atk.
-(31685, 4412, 11), -- Average P. Def.
-(31685, 4413, 11), -- Average M. Def.
-(31685, 4414, 2), -- Standard Type
-(31685, 4415, 3), -- One-handed Sword
-(31685, 4416, 2), -- Magic Creatures
+(31685, 4390, 1), -- NPC Abnormal Immunity
+(31685, 4408, 1), -- HP Modifiers
+(31685, 4409, 1), -- MP Modifiers
+(31685, 4410, 11), -- P. Atk. Modifiers
+(31685, 4411, 11), -- M. Atk. Modifiers
+(31685, 4412, 11), -- P. Def. Modifiers
+(31685, 4413, 11), -- M. Def. Modifiers
+(31685, 4414, 2), -- Armor Type
+(31685, 4415, 3), -- Weapon Type
+(31685, 4416, 2), -- Races
 -- Gatekeeper of Fire Dragon
 (31686, 4045, 1), -- Resist Full Magic Attack
-(31686, 4408, 1), -- HP Increase (1x)
-(31686, 4409, 1), -- MP Increase (1x)
-(31686, 4410, 11), -- Average P. Atk.
-(31686, 4411, 11), -- Average M. Atk.
-(31686, 4412, 11), -- Average P. Def.
-(31686, 4413, 11), -- Average M. Def.
-(31686, 4414, 2), -- Standard Type
-(31686, 4415, 3), -- One-handed Sword
-(31686, 4416, 1), -- Undead
+(31686, 4408, 1), -- HP Modifiers
+(31686, 4409, 1), -- MP Modifiers
+(31686, 4410, 11), -- P. Atk. Modifiers
+(31686, 4411, 11), -- M. Atk. Modifiers
+(31686, 4412, 11), -- P. Def. Modifiers
+(31686, 4413, 11), -- M. Def. Modifiers
+(31686, 4414, 2), -- Armor Type
+(31686, 4415, 3), -- Weapon Type
+(31686, 4416, 1), -- Races
 -- Gatekeeper of Fire Dragon
 (31687, 4045, 1), -- Resist Full Magic Attack
-(31687, 4408, 1), -- HP Increase (1x)
-(31687, 4409, 1), -- MP Increase (1x)
-(31687, 4410, 11), -- Average P. Atk.
-(31687, 4411, 11), -- Average M. Atk.
-(31687, 4412, 11), -- Average P. Def.
-(31687, 4413, 11), -- Average M. Def.
-(31687, 4414, 2), -- Standard Type
-(31687, 4415, 3), -- One-handed Sword
-(31687, 4416, 1), -- Undead
+(31687, 4408, 1), -- HP Modifiers
+(31687, 4409, 1), -- MP Modifiers
+(31687, 4410, 11), -- P. Atk. Modifiers
+(31687, 4411, 11), -- M. Atk. Modifiers
+(31687, 4412, 11), -- P. Def. Modifiers
+(31687, 4413, 11), -- M. Def. Modifiers
+(31687, 4414, 2), -- Armor Type
+(31687, 4415, 3), -- Weapon Type
+(31687, 4416, 1), -- Races
 -- Grand Olympiad Manager
 (31688, 4045, 1), -- Resist Full Magic Attack
-(31688, 4408, 1), -- HP Increase (1x)
-(31688, 4409, 1), -- MP Increase (1x)
-(31688, 4410, 11), -- Average P. Atk.
-(31688, 4411, 11), -- Average M. Atk.
-(31688, 4412, 11), -- Average P. Def.
-(31688, 4413, 11), -- Average M. Def.
-(31688, 4414, 2), -- Standard Type
-(31688, 4415, 3), -- One-handed Sword
-(31688, 4416, 14), -- Humans
+(31688, 4408, 1), -- HP Modifiers
+(31688, 4409, 1), -- MP Modifiers
+(31688, 4410, 11), -- P. Atk. Modifiers
+(31688, 4411, 11), -- M. Atk. Modifiers
+(31688, 4412, 11), -- P. Def. Modifiers
+(31688, 4413, 11), -- M. Def. Modifiers
+(31688, 4414, 2), -- Armor Type
+(31688, 4415, 3), -- Weapon Type
+(31688, 4416, 14), -- Races
 -- Olympiad Finisher
 (31689, 4045, 1), -- Resist Full Magic Attack
-(31689, 4408, 1), -- HP Increase (1x)
-(31689, 4409, 1), -- MP Increase (1x)
-(31689, 4410, 11), -- Average P. Atk.
-(31689, 4411, 11), -- Average M. Atk.
-(31689, 4412, 11), -- Average P. Def.
-(31689, 4413, 11), -- Average M. Def.
-(31689, 4414, 2), -- Standard Type
-(31689, 4415, 3), -- One-handed Sword
-(31689, 4416, 14), -- Humans
+(31689, 4408, 1), -- HP Modifiers
+(31689, 4409, 1), -- MP Modifiers
+(31689, 4410, 11), -- P. Atk. Modifiers
+(31689, 4411, 11), -- M. Atk. Modifiers
+(31689, 4412, 11), -- P. Def. Modifiers
+(31689, 4413, 11), -- M. Def. Modifiers
+(31689, 4414, 2), -- Armor Type
+(31689, 4415, 3), -- Weapon Type
+(31689, 4416, 14), -- Races
 -- Monument of Heroes 
 (31690, 4045, 1), -- Resist Full Magic Attack
-(31690, 4390, 1), -- Mystic Immunity
-(31690, 4408, 1), -- HP Increase (1x)
-(31690, 4409, 1), -- MP Increase (1x)
-(31690, 4410, 11), -- Average P. Atk.
-(31690, 4411, 11), -- Average M. Atk.
-(31690, 4412, 11), -- Average P. Def.
-(31690, 4413, 11), -- Average M. Def.
-(31690, 4414, 2), -- Standard Type
-(31690, 4415, 3), -- One-handed Sword
-(31690, 4416, 19), -- Others
+(31690, 4390, 1), -- NPC Abnormal Immunity
+(31690, 4408, 1), -- HP Modifiers
+(31690, 4409, 1), -- MP Modifiers
+(31690, 4410, 11), -- P. Atk. Modifiers
+(31690, 4411, 11), -- M. Atk. Modifiers
+(31690, 4412, 11), -- P. Def. Modifiers
+(31690, 4413, 11), -- M. Def. Modifiers
+(31690, 4414, 2), -- Armor Type
+(31690, 4415, 3), -- Weapon Type
+(31690, 4416, 19), -- Races
 -- Training Dummy
 (31691, 4045, 1), -- Resist Full Magic Attack
-(31691, 4390, 1), -- Mystic Immunity
-(31691, 4408, 1), -- HP Increase (1x)
-(31691, 4409, 1), -- MP Increase (1x)
-(31691, 4410, 11), -- Average P. Atk.
-(31691, 4411, 11), -- Average M. Atk.
-(31691, 4412, 11), -- Average P. Def.
-(31691, 4413, 11), -- Average M. Def.
-(31691, 4414, 2), -- Standard Type
-(31691, 4415, 3), -- One-handed Sword
-(31691, 4416, 19), -- Others
+(31691, 4390, 1), -- NPC Abnormal Immunity
+(31691, 4408, 1), -- HP Modifiers
+(31691, 4409, 1), -- MP Modifiers
+(31691, 4410, 11), -- P. Atk. Modifiers
+(31691, 4411, 11), -- M. Atk. Modifiers
+(31691, 4412, 11), -- P. Def. Modifiers
+(31691, 4413, 11), -- M. Def. Modifiers
+(31691, 4414, 2), -- Armor Type
+(31691, 4415, 3), -- Weapon Type
+(31691, 4416, 19), -- Races
 -- Priest of Dawn
 (31692, 4045, 1), -- Resist Full Magic Attack
-(31692, 4408, 1), -- HP Increase (1x)
-(31692, 4409, 1), -- MP Increase (1x)
-(31692, 4410, 11), -- Average P. Atk.
-(31692, 4411, 11), -- Average M. Atk.
-(31692, 4412, 11), -- Average P. Def.
-(31692, 4413, 11), -- Average M. Def.
-(31692, 4414, 2), -- Standard Type
-(31692, 4415, 1), -- Bare Hands
-(31692, 4416, 14), -- Humans
+(31692, 4408, 1), -- HP Modifiers
+(31692, 4409, 1), -- MP Modifiers
+(31692, 4410, 11), -- P. Atk. Modifiers
+(31692, 4411, 11), -- M. Atk. Modifiers
+(31692, 4412, 11), -- P. Def. Modifiers
+(31692, 4413, 11), -- M. Def. Modifiers
+(31692, 4414, 2), -- Armor Type
+(31692, 4415, 1), -- Weapon Type
+(31692, 4416, 14), -- Races
 -- Priest of Dusk
 (31693, 4045, 1), -- Resist Full Magic Attack
-(31693, 4408, 1), -- HP Increase (1x)
-(31693, 4409, 1), -- MP Increase (1x)
-(31693, 4410, 11), -- Average P. Atk.
-(31693, 4411, 11), -- Average M. Atk.
-(31693, 4412, 11), -- Average P. Def.
-(31693, 4413, 11), -- Average M. Def.
-(31693, 4414, 2), -- Standard Type
-(31693, 4415, 1), -- Bare Hands
-(31693, 4416, 16), -- Dark Elves
+(31693, 4408, 1), -- HP Modifiers
+(31693, 4409, 1), -- MP Modifiers
+(31693, 4410, 11), -- P. Atk. Modifiers
+(31693, 4411, 11), -- M. Atk. Modifiers
+(31693, 4412, 11), -- P. Def. Modifiers
+(31693, 4413, 11), -- M. Def. Modifiers
+(31693, 4414, 2), -- Armor Type
+(31693, 4415, 1), -- Weapon Type
+(31693, 4416, 16), -- Races
 -- Priest of Dawn
 (31694, 4045, 1), -- Resist Full Magic Attack
-(31694, 4408, 1), -- HP Increase (1x)
-(31694, 4409, 1), -- MP Increase (1x)
-(31694, 4410, 11), -- Average P. Atk.
-(31694, 4411, 11), -- Average M. Atk.
-(31694, 4412, 11), -- Average P. Def.
-(31694, 4413, 11), -- Average M. Def.
-(31694, 4414, 2), -- Standard Type
-(31694, 4415, 1), -- Bare Hands
-(31694, 4416, 14), -- Humans
+(31694, 4408, 1), -- HP Modifiers
+(31694, 4409, 1), -- MP Modifiers
+(31694, 4410, 11), -- P. Atk. Modifiers
+(31694, 4411, 11), -- M. Atk. Modifiers
+(31694, 4412, 11), -- P. Def. Modifiers
+(31694, 4413, 11), -- M. Def. Modifiers
+(31694, 4414, 2), -- Armor Type
+(31694, 4415, 1), -- Weapon Type
+(31694, 4416, 14), -- Races
 -- Priest of Dusk
 (31695, 4045, 1), -- Resist Full Magic Attack
-(31695, 4408, 1), -- HP Increase (1x)
-(31695, 4409, 1), -- MP Increase (1x)
-(31695, 4410, 11), -- Average P. Atk.
-(31695, 4411, 11), -- Average M. Atk.
-(31695, 4412, 11), -- Average P. Def.
-(31695, 4413, 11), -- Average M. Def.
-(31695, 4414, 2), -- Standard Type
-(31695, 4415, 1), -- Bare Hands
-(31695, 4416, 16), -- Dark Elves
+(31695, 4408, 1), -- HP Modifiers
+(31695, 4409, 1), -- MP Modifiers
+(31695, 4410, 11), -- P. Atk. Modifiers
+(31695, 4411, 11), -- M. Atk. Modifiers
+(31695, 4412, 11), -- P. Def. Modifiers
+(31695, 4413, 11), -- M. Def. Modifiers
+(31695, 4414, 2), -- Armor Type
+(31695, 4415, 1), -- Weapon Type
+(31695, 4416, 16), -- Races
 -- Platis
 (31696, 4045, 1), -- Resist Full Magic Attack
-(31696, 4408, 1), -- HP Increase (1x)
-(31696, 4409, 1), -- MP Increase (1x)
-(31696, 4410, 11), -- Average P. Atk.
-(31696, 4411, 11), -- Average M. Atk.
-(31696, 4412, 11), -- Average P. Def.
-(31696, 4413, 11), -- Average M. Def.
-(31696, 4414, 2), -- Standard Type
-(31696, 4415, 3), -- One-handed Sword
-(31696, 4416, 14), -- Humans
+(31696, 4408, 1), -- HP Modifiers
+(31696, 4409, 1), -- MP Modifiers
+(31696, 4410, 11), -- P. Atk. Modifiers
+(31696, 4411, 11), -- M. Atk. Modifiers
+(31696, 4412, 11), -- P. Def. Modifiers
+(31696, 4413, 11), -- M. Def. Modifiers
+(31696, 4414, 2), -- Armor Type
+(31696, 4415, 3), -- Weapon Type
+(31696, 4416, 14), -- Races
 -- Eindarkner
 (31697, 4045, 1), -- Resist Full Magic Attack
-(31697, 4408, 1), -- HP Increase (1x)
-(31697, 4409, 1), -- MP Increase (1x)
-(31697, 4410, 11), -- Average P. Atk.
-(31697, 4411, 11), -- Average M. Atk.
-(31697, 4412, 11), -- Average P. Def.
-(31697, 4413, 11), -- Average M. Def.
-(31697, 4414, 2), -- Standard Type
-(31697, 4415, 3), -- One-handed Sword
-(31697, 4416, 14), -- Humans
+(31697, 4408, 1), -- HP Modifiers
+(31697, 4409, 1), -- MP Modifiers
+(31697, 4410, 11), -- P. Atk. Modifiers
+(31697, 4411, 11), -- M. Atk. Modifiers
+(31697, 4412, 11), -- P. Def. Modifiers
+(31697, 4413, 11), -- M. Def. Modifiers
+(31697, 4414, 2), -- Armor Type
+(31697, 4415, 3), -- Weapon Type
+(31697, 4416, 14), -- Races
 -- Arisha
 (31698, 4045, 1), -- Resist Full Magic Attack
-(31698, 4408, 1), -- HP Increase (1x)
-(31698, 4409, 1), -- MP Increase (1x)
-(31698, 4410, 11), -- Average P. Atk.
-(31698, 4411, 11), -- Average M. Atk.
-(31698, 4412, 11), -- Average P. Def.
-(31698, 4413, 11), -- Average M. Def.
-(31698, 4414, 2), -- Standard Type
-(31698, 4415, 3), -- One-handed Sword
-(31698, 4416, 14), -- Humans
+(31698, 4408, 1), -- HP Modifiers
+(31698, 4409, 1), -- MP Modifiers
+(31698, 4410, 11), -- P. Atk. Modifiers
+(31698, 4411, 11), -- M. Atk. Modifiers
+(31698, 4412, 11), -- P. Def. Modifiers
+(31698, 4413, 11), -- M. Def. Modifiers
+(31698, 4414, 2), -- Armor Type
+(31698, 4415, 3), -- Weapon Type
+(31698, 4416, 14), -- Races
 -- Stanislava
 (31699, 4045, 1), -- Resist Full Magic Attack
-(31699, 4408, 1), -- HP Increase (1x)
-(31699, 4409, 1), -- MP Increase (1x)
-(31699, 4410, 11), -- Average P. Atk.
-(31699, 4411, 11), -- Average M. Atk.
-(31699, 4412, 11), -- Average P. Def.
-(31699, 4413, 11), -- Average M. Def.
-(31699, 4414, 2), -- Standard Type
-(31699, 4415, 3), -- One-handed Sword
-(31699, 4416, 14), -- Humans
+(31699, 4408, 1), -- HP Modifiers
+(31699, 4409, 1), -- MP Modifiers
+(31699, 4410, 11), -- P. Atk. Modifiers
+(31699, 4411, 11), -- M. Atk. Modifiers
+(31699, 4412, 11), -- P. Def. Modifiers
+(31699, 4413, 11), -- M. Def. Modifiers
+(31699, 4414, 2), -- Armor Type
+(31699, 4415, 3), -- Weapon Type
+(31699, 4416, 14), -- Races
 -- Saint's Follower
 (31700, 4045, 1), -- Resist Full Magic Attack
-(31700, 4408, 1), -- HP Increase (1x)
-(31700, 4409, 1), -- MP Increase (1x)
-(31700, 4410, 11), -- Average P. Atk.
-(31700, 4411, 11), -- Average M. Atk.
-(31700, 4412, 11), -- Average P. Def.
-(31700, 4413, 11), -- Average M. Def.
-(31700, 4414, 2), -- Standard Type
-(31700, 4415, 3), -- One-handed Sword
-(31700, 4416, 18), -- Dwarves
+(31700, 4408, 1), -- HP Modifiers
+(31700, 4409, 1), -- MP Modifiers
+(31700, 4410, 11), -- P. Atk. Modifiers
+(31700, 4411, 11), -- M. Atk. Modifiers
+(31700, 4412, 11), -- P. Def. Modifiers
+(31700, 4413, 11), -- M. Def. Modifiers
+(31700, 4414, 2), -- Armor Type
+(31700, 4415, 3), -- Weapon Type
+(31700, 4416, 18), -- Races
 -- Saint's Follower
 (31701, 4045, 1), -- Resist Full Magic Attack
-(31701, 4408, 1), -- HP Increase (1x)
-(31701, 4409, 1), -- MP Increase (1x)
-(31701, 4410, 11), -- Average P. Atk.
-(31701, 4411, 11), -- Average M. Atk.
-(31701, 4412, 11), -- Average P. Def.
-(31701, 4413, 11), -- Average M. Def.
-(31701, 4414, 2), -- Standard Type
-(31701, 4415, 3), -- One-handed Sword
-(31701, 4416, 15), -- Elves
+(31701, 4408, 1), -- HP Modifiers
+(31701, 4409, 1), -- MP Modifiers
+(31701, 4410, 11), -- P. Atk. Modifiers
+(31701, 4411, 11), -- M. Atk. Modifiers
+(31701, 4412, 11), -- P. Def. Modifiers
+(31701, 4413, 11), -- M. Def. Modifiers
+(31701, 4414, 2), -- Armor Type
+(31701, 4415, 3), -- Weapon Type
+(31701, 4416, 15), -- Races
 -- Saint's Follower
 (31702, 4045, 1), -- Resist Full Magic Attack
-(31702, 4408, 1), -- HP Increase (1x)
-(31702, 4409, 1), -- MP Increase (1x)
-(31702, 4410, 11), -- Average P. Atk.
-(31702, 4411, 11), -- Average M. Atk.
-(31702, 4412, 11), -- Average P. Def.
-(31702, 4413, 11), -- Average M. Def.
-(31702, 4414, 2), -- Standard Type
-(31702, 4415, 3), -- One-handed Sword
-(31702, 4416, 18), -- Dwarves
+(31702, 4408, 1), -- HP Modifiers
+(31702, 4409, 1), -- MP Modifiers
+(31702, 4410, 11), -- P. Atk. Modifiers
+(31702, 4411, 11), -- M. Atk. Modifiers
+(31702, 4412, 11), -- P. Def. Modifiers
+(31702, 4413, 11), -- M. Def. Modifiers
+(31702, 4414, 2), -- Armor Type
+(31702, 4415, 3), -- Weapon Type
+(31702, 4416, 18), -- Races
 -- Saint's Follower
 (31703, 4045, 1), -- Resist Full Magic Attack
-(31703, 4408, 1), -- HP Increase (1x)
-(31703, 4409, 1), -- MP Increase (1x)
-(31703, 4410, 11), -- Average P. Atk.
-(31703, 4411, 11), -- Average M. Atk.
-(31703, 4412, 11), -- Average P. Def.
-(31703, 4413, 11), -- Average M. Def.
-(31703, 4414, 2), -- Standard Type
-(31703, 4415, 3), -- One-handed Sword
-(31703, 4416, 14), -- Humans
+(31703, 4408, 1), -- HP Modifiers
+(31703, 4409, 1), -- MP Modifiers
+(31703, 4410, 11), -- P. Atk. Modifiers
+(31703, 4411, 11), -- M. Atk. Modifiers
+(31703, 4412, 11), -- P. Def. Modifiers
+(31703, 4413, 11), -- M. Def. Modifiers
+(31703, 4414, 2), -- Armor Type
+(31703, 4415, 3), -- Weapon Type
+(31703, 4416, 14), -- Races
 -- Saint's Follower
 (31704, 4045, 1), -- Resist Full Magic Attack
-(31704, 4408, 1), -- HP Increase (1x)
-(31704, 4409, 1), -- MP Increase (1x)
-(31704, 4410, 11), -- Average P. Atk.
-(31704, 4411, 11), -- Average M. Atk.
-(31704, 4412, 11), -- Average P. Def.
-(31704, 4413, 11), -- Average M. Def.
-(31704, 4414, 2), -- Standard Type
-(31704, 4415, 3), -- One-handed Sword
-(31704, 4416, 14), -- Humans
+(31704, 4408, 1), -- HP Modifiers
+(31704, 4409, 1), -- MP Modifiers
+(31704, 4410, 11), -- P. Atk. Modifiers
+(31704, 4411, 11), -- M. Atk. Modifiers
+(31704, 4412, 11), -- P. Def. Modifiers
+(31704, 4413, 11), -- M. Def. Modifiers
+(31704, 4414, 2), -- Armor Type
+(31704, 4415, 3), -- Weapon Type
+(31704, 4416, 14), -- Races
 -- Daimon the White-Eyed
 (31705, 4045, 1), -- Resist Full Magic Attack
-(31705, 4390, 1), -- Mystic Immunity
-(31705, 4408, 1), -- HP Increase (1x)
-(31705, 4409, 1), -- MP Increase (1x)
-(31705, 4410, 11), -- Average P. Atk.
-(31705, 4411, 11), -- Average M. Atk.
-(31705, 4412, 11), -- Average P. Def.
-(31705, 4413, 11), -- Average M. Def.
-(31705, 4414, 2), -- Standard Type
-(31705, 4415, 3), -- One-handed Sword
-(31705, 4416, 2), -- Magic Creatures
+(31705, 4390, 1), -- NPC Abnormal Immunity
+(31705, 4408, 1), -- HP Modifiers
+(31705, 4409, 1), -- MP Modifiers
+(31705, 4410, 11), -- P. Atk. Modifiers
+(31705, 4411, 11), -- M. Atk. Modifiers
+(31705, 4412, 11), -- P. Def. Modifiers
+(31705, 4413, 11), -- M. Def. Modifiers
+(31705, 4414, 2), -- Armor Type
+(31705, 4415, 3), -- Weapon Type
+(31705, 4416, 2), -- Races
 -- Miki the Cat
 (31706, 4045, 1), -- Resist Full Magic Attack
-(31706, 4408, 1), -- HP Increase (1x)
-(31706, 4409, 1), -- MP Increase (1x)
-(31706, 4410, 11), -- Average P. Atk.
-(31706, 4411, 11), -- Average M. Atk.
-(31706, 4412, 11), -- Average P. Def.
-(31706, 4413, 11), -- Average M. Def.
-(31706, 4414, 2), -- Standard Type
-(31706, 4415, 3), -- One-handed Sword
-(31706, 4416, 7), -- Spirits
+(31706, 4408, 1), -- HP Modifiers
+(31706, 4409, 1), -- MP Modifiers
+(31706, 4410, 11), -- P. Atk. Modifiers
+(31706, 4411, 11), -- M. Atk. Modifiers
+(31706, 4412, 11), -- P. Def. Modifiers
+(31706, 4413, 11), -- M. Def. Modifiers
+(31706, 4414, 2), -- Armor Type
+(31706, 4415, 3), -- Weapon Type
+(31706, 4416, 7), -- Races
 -- Ketra Van Grunt
 (31707, 4045, 1), -- Resist Full Magic Attack
-(31707, 4408, 1), -- HP Increase (1x)
-(31707, 4409, 1), -- MP Increase (1x)
-(31707, 4410, 11), -- Average P. Atk.
-(31707, 4411, 11), -- Average M. Atk.
-(31707, 4412, 11), -- Average P. Def.
-(31707, 4413, 11), -- Average M. Def.
-(31707, 4414, 2), -- Standard Type
-(31707, 4415, 3), -- One-handed Sword
-(31707, 4416, 6), -- Humanoids
+(31707, 4408, 1), -- HP Modifiers
+(31707, 4409, 1), -- MP Modifiers
+(31707, 4410, 11), -- P. Atk. Modifiers
+(31707, 4411, 11), -- M. Atk. Modifiers
+(31707, 4412, 11), -- P. Def. Modifiers
+(31707, 4413, 11), -- M. Def. Modifiers
+(31707, 4414, 2), -- Armor Type
+(31707, 4415, 3), -- Weapon Type
+(31707, 4416, 6), -- Races
 -- Ketra Van Shaman
 (31708, 4045, 1), -- Resist Full Magic Attack
-(31708, 4408, 1), -- HP Increase (1x)
-(31708, 4409, 1), -- MP Increase (1x)
-(31708, 4410, 11), -- Average P. Atk.
-(31708, 4411, 11), -- Average M. Atk.
-(31708, 4412, 11), -- Average P. Def.
-(31708, 4413, 11), -- Average M. Def.
-(31708, 4414, 2), -- Standard Type
-(31708, 4415, 3), -- One-handed Sword
-(31708, 4416, 6), -- Humanoids
+(31708, 4408, 1), -- HP Modifiers
+(31708, 4409, 1), -- MP Modifiers
+(31708, 4410, 11), -- P. Atk. Modifiers
+(31708, 4411, 11), -- M. Atk. Modifiers
+(31708, 4412, 11), -- P. Def. Modifiers
+(31708, 4413, 11), -- M. Def. Modifiers
+(31708, 4414, 2), -- Armor Type
+(31708, 4415, 3), -- Weapon Type
+(31708, 4416, 6), -- Races
 -- Ketra Van Captain 
 (31709, 4045, 1), -- Resist Full Magic Attack
-(31709, 4408, 1), -- HP Increase (1x)
-(31709, 4409, 1), -- MP Increase (1x)
-(31709, 4410, 11), -- Average P. Atk.
-(31709, 4411, 11), -- Average M. Atk.
-(31709, 4412, 11), -- Average P. Def.
-(31709, 4413, 11), -- Average M. Def.
-(31709, 4414, 2), -- Standard Type
-(31709, 4415, 3), -- One-handed Sword
-(31709, 4416, 6), -- Humanoids
+(31709, 4408, 1), -- HP Modifiers
+(31709, 4409, 1), -- MP Modifiers
+(31709, 4410, 11), -- P. Atk. Modifiers
+(31709, 4411, 11), -- M. Atk. Modifiers
+(31709, 4412, 11), -- P. Def. Modifiers
+(31709, 4413, 11), -- M. Def. Modifiers
+(31709, 4414, 2), -- Armor Type
+(31709, 4415, 3), -- Weapon Type
+(31709, 4416, 6), -- Races
 -- Varka Van Commander
 (31710, 4045, 1), -- Resist Full Magic Attack
-(31710, 4408, 1), -- HP Increase (1x)
-(31710, 4409, 1), -- MP Increase (1x)
-(31710, 4410, 11), -- Average P. Atk.
-(31710, 4411, 11), -- Average M. Atk.
-(31710, 4412, 11), -- Average P. Def.
-(31710, 4413, 11), -- Average M. Def.
-(31710, 4414, 2), -- Standard Type
-(31710, 4415, 3), -- One-handed Sword
-(31710, 4416, 6), -- Humanoids
+(31710, 4408, 1), -- HP Modifiers
+(31710, 4409, 1), -- MP Modifiers
+(31710, 4410, 11), -- P. Atk. Modifiers
+(31710, 4411, 11), -- M. Atk. Modifiers
+(31710, 4412, 11), -- P. Def. Modifiers
+(31710, 4413, 11), -- M. Def. Modifiers
+(31710, 4414, 2), -- Armor Type
+(31710, 4415, 3), -- Weapon Type
+(31710, 4416, 6), -- Races
 -- Varka Van Shaman
 (31711, 4045, 1), -- Resist Full Magic Attack
-(31711, 4408, 1), -- HP Increase (1x)
-(31711, 4409, 1), -- MP Increase (1x)
-(31711, 4410, 11), -- Average P. Atk.
-(31711, 4411, 11), -- Average M. Atk.
-(31711, 4412, 11), -- Average P. Def.
-(31711, 4413, 11), -- Average M. Def.
-(31711, 4414, 2), -- Standard Type
-(31711, 4415, 3), -- One-handed Sword
-(31711, 4416, 6), -- Humanoids
+(31711, 4408, 1), -- HP Modifiers
+(31711, 4409, 1), -- MP Modifiers
+(31711, 4410, 11), -- P. Atk. Modifiers
+(31711, 4411, 11), -- M. Atk. Modifiers
+(31711, 4412, 11), -- P. Def. Modifiers
+(31711, 4413, 11), -- M. Def. Modifiers
+(31711, 4414, 2), -- Armor Type
+(31711, 4415, 3), -- Weapon Type
+(31711, 4416, 6), -- Races
 -- Varka Raider
 (31712, 4045, 1), -- Resist Full Magic Attack
-(31712, 4408, 1), -- HP Increase (1x)
-(31712, 4409, 1), -- MP Increase (1x)
-(31712, 4410, 11), -- Average P. Atk.
-(31712, 4411, 11), -- Average M. Atk.
-(31712, 4412, 11), -- Average P. Def.
-(31712, 4413, 11), -- Average M. Def.
-(31712, 4414, 2), -- Standard Type
-(31712, 4415, 3), -- One-handed Sword
-(31712, 4416, 6), -- Humanoids
+(31712, 4408, 1), -- HP Modifiers
+(31712, 4409, 1), -- MP Modifiers
+(31712, 4410, 11), -- P. Atk. Modifiers
+(31712, 4411, 11), -- M. Atk. Modifiers
+(31712, 4412, 11), -- P. Def. Modifiers
+(31712, 4413, 11), -- M. Def. Modifiers
+(31712, 4414, 2), -- Armor Type
+(31712, 4415, 3), -- Weapon Type
+(31712, 4416, 6), -- Races
 -- Preacher of Doom
 (31713, 4045, 1), -- Resist Full Magic Attack
-(31713, 4408, 1), -- HP Increase (1x)
-(31713, 4409, 1), -- MP Increase (1x)
-(31713, 4410, 11), -- Average P. Atk.
-(31713, 4411, 11), -- Average M. Atk.
-(31713, 4412, 11), -- Average P. Def.
-(31713, 4413, 11), -- Average M. Def.
-(31713, 4414, 2), -- Standard Type
-(31713, 4415, 3), -- One-handed Sword
-(31713, 4416, 1), -- Undead
+(31713, 4408, 1), -- HP Modifiers
+(31713, 4409, 1), -- MP Modifiers
+(31713, 4410, 11), -- P. Atk. Modifiers
+(31713, 4411, 11), -- M. Atk. Modifiers
+(31713, 4412, 11), -- P. Def. Modifiers
+(31713, 4413, 11), -- M. Def. Modifiers
+(31713, 4414, 2), -- Armor Type
+(31713, 4415, 3), -- Weapon Type
+(31713, 4416, 1), -- Races
 -- Preacher of Doom
 (31714, 4045, 1), -- Resist Full Magic Attack
-(31714, 4408, 1), -- HP Increase (1x)
-(31714, 4409, 1), -- MP Increase (1x)
-(31714, 4410, 11), -- Average P. Atk.
-(31714, 4411, 11), -- Average M. Atk.
-(31714, 4412, 11), -- Average P. Def.
-(31714, 4413, 11), -- Average M. Def.
-(31714, 4414, 2), -- Standard Type
-(31714, 4415, 3), -- One-handed Sword
-(31714, 4416, 1), -- Undead
+(31714, 4408, 1), -- HP Modifiers
+(31714, 4409, 1), -- MP Modifiers
+(31714, 4410, 11), -- P. Atk. Modifiers
+(31714, 4411, 11), -- M. Atk. Modifiers
+(31714, 4412, 11), -- P. Def. Modifiers
+(31714, 4413, 11), -- M. Def. Modifiers
+(31714, 4414, 2), -- Armor Type
+(31714, 4415, 3), -- Weapon Type
+(31714, 4416, 1), -- Races
 -- Preacher of Doom
 (31715, 4045, 1), -- Resist Full Magic Attack
-(31715, 4408, 1), -- HP Increase (1x)
-(31715, 4409, 1), -- MP Increase (1x)
-(31715, 4410, 11), -- Average P. Atk.
-(31715, 4411, 11), -- Average M. Atk.
-(31715, 4412, 11), -- Average P. Def.
-(31715, 4413, 11), -- Average M. Def.
-(31715, 4414, 2), -- Standard Type
-(31715, 4415, 3), -- One-handed Sword
-(31715, 4416, 1), -- Undead
+(31715, 4408, 1), -- HP Modifiers
+(31715, 4409, 1), -- MP Modifiers
+(31715, 4410, 11), -- P. Atk. Modifiers
+(31715, 4411, 11), -- M. Atk. Modifiers
+(31715, 4412, 11), -- P. Def. Modifiers
+(31715, 4413, 11), -- M. Def. Modifiers
+(31715, 4414, 2), -- Armor Type
+(31715, 4415, 3), -- Weapon Type
+(31715, 4416, 1), -- Races
 -- Preacher of Doom
 (31716, 4045, 1), -- Resist Full Magic Attack
-(31716, 4408, 1), -- HP Increase (1x)
-(31716, 4409, 1), -- MP Increase (1x)
-(31716, 4410, 11), -- Average P. Atk.
-(31716, 4411, 11), -- Average M. Atk.
-(31716, 4412, 11), -- Average P. Def.
-(31716, 4413, 11), -- Average M. Def.
-(31716, 4414, 2), -- Standard Type
-(31716, 4415, 3), -- One-handed Sword
-(31716, 4416, 1), -- Undead
+(31716, 4408, 1), -- HP Modifiers
+(31716, 4409, 1), -- MP Modifiers
+(31716, 4410, 11), -- P. Atk. Modifiers
+(31716, 4411, 11), -- M. Atk. Modifiers
+(31716, 4412, 11), -- P. Def. Modifiers
+(31716, 4413, 11), -- M. Def. Modifiers
+(31716, 4414, 2), -- Armor Type
+(31716, 4415, 3), -- Weapon Type
+(31716, 4416, 1), -- Races
 -- Preacher of Doom
 (31717, 4045, 1), -- Resist Full Magic Attack
-(31717, 4408, 1), -- HP Increase (1x)
-(31717, 4409, 1), -- MP Increase (1x)
-(31717, 4410, 11), -- Average P. Atk.
-(31717, 4411, 11), -- Average M. Atk.
-(31717, 4412, 11), -- Average P. Def.
-(31717, 4413, 11), -- Average M. Def.
-(31717, 4414, 2), -- Standard Type
-(31717, 4415, 3), -- One-handed Sword
-(31717, 4416, 1), -- Undead
+(31717, 4408, 1), -- HP Modifiers
+(31717, 4409, 1), -- MP Modifiers
+(31717, 4410, 11), -- P. Atk. Modifiers
+(31717, 4411, 11), -- M. Atk. Modifiers
+(31717, 4412, 11), -- P. Def. Modifiers
+(31717, 4413, 11), -- M. Def. Modifiers
+(31717, 4414, 2), -- Armor Type
+(31717, 4415, 3), -- Weapon Type
+(31717, 4416, 1), -- Races
 -- Preacher of Doom
 (31718, 4045, 1), -- Resist Full Magic Attack
-(31718, 4408, 1), -- HP Increase (1x)
-(31718, 4409, 1), -- MP Increase (1x)
-(31718, 4410, 11), -- Average P. Atk.
-(31718, 4411, 11), -- Average M. Atk.
-(31718, 4412, 11), -- Average P. Def.
-(31718, 4413, 11), -- Average M. Def.
-(31718, 4414, 2), -- Standard Type
-(31718, 4415, 3), -- One-handed Sword
-(31718, 4416, 1), -- Undead
+(31718, 4408, 1), -- HP Modifiers
+(31718, 4409, 1), -- MP Modifiers
+(31718, 4410, 11), -- P. Atk. Modifiers
+(31718, 4411, 11), -- M. Atk. Modifiers
+(31718, 4412, 11), -- P. Def. Modifiers
+(31718, 4413, 11), -- M. Def. Modifiers
+(31718, 4414, 2), -- Armor Type
+(31718, 4415, 3), -- Weapon Type
+(31718, 4416, 1), -- Races
 -- Preacher of Doom
 (31719, 4045, 1), -- Resist Full Magic Attack
-(31719, 4408, 1), -- HP Increase (1x)
-(31719, 4409, 1), -- MP Increase (1x)
-(31719, 4410, 11), -- Average P. Atk.
-(31719, 4411, 11), -- Average M. Atk.
-(31719, 4412, 11), -- Average P. Def.
-(31719, 4413, 11), -- Average M. Def.
-(31719, 4414, 2), -- Standard Type
-(31719, 4415, 3), -- One-handed Sword
-(31719, 4416, 1), -- Undead
+(31719, 4408, 1), -- HP Modifiers
+(31719, 4409, 1), -- MP Modifiers
+(31719, 4410, 11), -- P. Atk. Modifiers
+(31719, 4411, 11), -- M. Atk. Modifiers
+(31719, 4412, 11), -- P. Def. Modifiers
+(31719, 4413, 11), -- M. Def. Modifiers
+(31719, 4414, 2), -- Armor Type
+(31719, 4415, 3), -- Weapon Type
+(31719, 4416, 1), -- Races
 -- Preacher of Doom
 (31720, 4045, 1), -- Resist Full Magic Attack
-(31720, 4408, 1), -- HP Increase (1x)
-(31720, 4409, 1), -- MP Increase (1x)
-(31720, 4410, 11), -- Average P. Atk.
-(31720, 4411, 11), -- Average M. Atk.
-(31720, 4412, 11), -- Average P. Def.
-(31720, 4413, 11), -- Average M. Def.
-(31720, 4414, 2), -- Standard Type
-(31720, 4415, 3), -- One-handed Sword
-(31720, 4416, 1), -- Undead
+(31720, 4408, 1), -- HP Modifiers
+(31720, 4409, 1), -- MP Modifiers
+(31720, 4410, 11), -- P. Atk. Modifiers
+(31720, 4411, 11), -- M. Atk. Modifiers
+(31720, 4412, 11), -- P. Def. Modifiers
+(31720, 4413, 11), -- M. Def. Modifiers
+(31720, 4414, 2), -- Armor Type
+(31720, 4415, 3), -- Weapon Type
+(31720, 4416, 1), -- Races
 -- Orator of Revelations
 (31721, 4045, 1), -- Resist Full Magic Attack
-(31721, 4390, 1), -- Mystic Immunity
-(31721, 4408, 1), -- HP Increase (1x)
-(31721, 4409, 1), -- MP Increase (1x)
-(31721, 4410, 11), -- Average P. Atk.
-(31721, 4411, 11), -- Average M. Atk.
-(31721, 4412, 11), -- Average P. Def.
-(31721, 4413, 11), -- Average M. Def.
-(31721, 4414, 2), -- Standard Type
-(31721, 4415, 3), -- One-handed Sword
-(31721, 4416, 2), -- Magic Creatures
+(31721, 4390, 1), -- NPC Abnormal Immunity
+(31721, 4408, 1), -- HP Modifiers
+(31721, 4409, 1), -- MP Modifiers
+(31721, 4410, 11), -- P. Atk. Modifiers
+(31721, 4411, 11), -- M. Atk. Modifiers
+(31721, 4412, 11), -- P. Def. Modifiers
+(31721, 4413, 11), -- M. Def. Modifiers
+(31721, 4414, 2), -- Armor Type
+(31721, 4415, 3), -- Weapon Type
+(31721, 4416, 2), -- Races
 -- Orator of Revelations
 (31722, 4045, 1), -- Resist Full Magic Attack
-(31722, 4390, 1), -- Mystic Immunity
-(31722, 4408, 1), -- HP Increase (1x)
-(31722, 4409, 1), -- MP Increase (1x)
-(31722, 4410, 11), -- Average P. Atk.
-(31722, 4411, 11), -- Average M. Atk.
-(31722, 4412, 11), -- Average P. Def.
-(31722, 4413, 11), -- Average M. Def.
-(31722, 4414, 2), -- Standard Type
-(31722, 4415, 3), -- One-handed Sword
-(31722, 4416, 2), -- Magic Creatures
+(31722, 4390, 1), -- NPC Abnormal Immunity
+(31722, 4408, 1), -- HP Modifiers
+(31722, 4409, 1), -- MP Modifiers
+(31722, 4410, 11), -- P. Atk. Modifiers
+(31722, 4411, 11), -- M. Atk. Modifiers
+(31722, 4412, 11), -- P. Def. Modifiers
+(31722, 4413, 11), -- M. Def. Modifiers
+(31722, 4414, 2), -- Armor Type
+(31722, 4415, 3), -- Weapon Type
+(31722, 4416, 2), -- Races
 -- Orator of Revelations
 (31723, 4045, 1), -- Resist Full Magic Attack
-(31723, 4390, 1), -- Mystic Immunity
-(31723, 4408, 1), -- HP Increase (1x)
-(31723, 4409, 1), -- MP Increase (1x)
-(31723, 4410, 11), -- Average P. Atk.
-(31723, 4411, 11), -- Average M. Atk.
-(31723, 4412, 11), -- Average P. Def.
-(31723, 4413, 11), -- Average M. Def.
-(31723, 4414, 2), -- Standard Type
-(31723, 4415, 3), -- One-handed Sword
-(31723, 4416, 2), -- Magic Creatures
+(31723, 4390, 1), -- NPC Abnormal Immunity
+(31723, 4408, 1), -- HP Modifiers
+(31723, 4409, 1), -- MP Modifiers
+(31723, 4410, 11), -- P. Atk. Modifiers
+(31723, 4411, 11), -- M. Atk. Modifiers
+(31723, 4412, 11), -- P. Def. Modifiers
+(31723, 4413, 11), -- M. Def. Modifiers
+(31723, 4414, 2), -- Armor Type
+(31723, 4415, 3), -- Weapon Type
+(31723, 4416, 2), -- Races
 -- Orator of Revelations
 (31724, 4045, 1), -- Resist Full Magic Attack
-(31724, 4390, 1), -- Mystic Immunity
-(31724, 4408, 1), -- HP Increase (1x)
-(31724, 4409, 1), -- MP Increase (1x)
-(31724, 4410, 11), -- Average P. Atk.
-(31724, 4411, 11), -- Average M. Atk.
-(31724, 4412, 11), -- Average P. Def.
-(31724, 4413, 11), -- Average M. Def.
-(31724, 4414, 2), -- Standard Type
-(31724, 4415, 3), -- One-handed Sword
-(31724, 4416, 2), -- Magic Creatures
+(31724, 4390, 1), -- NPC Abnormal Immunity
+(31724, 4408, 1), -- HP Modifiers
+(31724, 4409, 1), -- MP Modifiers
+(31724, 4410, 11), -- P. Atk. Modifiers
+(31724, 4411, 11), -- M. Atk. Modifiers
+(31724, 4412, 11), -- P. Def. Modifiers
+(31724, 4413, 11), -- M. Def. Modifiers
+(31724, 4414, 2), -- Armor Type
+(31724, 4415, 3), -- Weapon Type
+(31724, 4416, 2), -- Races
 -- Orator of Revelations
 (31725, 4045, 1), -- Resist Full Magic Attack
-(31725, 4390, 1), -- Mystic Immunity
-(31725, 4408, 1), -- HP Increase (1x)
-(31725, 4409, 1), -- MP Increase (1x)
-(31725, 4410, 11), -- Average P. Atk.
-(31725, 4411, 11), -- Average M. Atk.
-(31725, 4412, 11), -- Average P. Def.
-(31725, 4413, 11), -- Average M. Def.
-(31725, 4414, 2), -- Standard Type
-(31725, 4415, 3), -- One-handed Sword
-(31725, 4416, 2), -- Magic Creatures
+(31725, 4390, 1), -- NPC Abnormal Immunity
+(31725, 4408, 1), -- HP Modifiers
+(31725, 4409, 1), -- MP Modifiers
+(31725, 4410, 11), -- P. Atk. Modifiers
+(31725, 4411, 11), -- M. Atk. Modifiers
+(31725, 4412, 11), -- P. Def. Modifiers
+(31725, 4413, 11), -- M. Def. Modifiers
+(31725, 4414, 2), -- Armor Type
+(31725, 4415, 3), -- Weapon Type
+(31725, 4416, 2), -- Races
 -- Orator of Revelations
 (31726, 4045, 1), -- Resist Full Magic Attack
-(31726, 4390, 1), -- Mystic Immunity
-(31726, 4408, 1), -- HP Increase (1x)
-(31726, 4409, 1), -- MP Increase (1x)
-(31726, 4410, 11), -- Average P. Atk.
-(31726, 4411, 11), -- Average M. Atk.
-(31726, 4412, 11), -- Average P. Def.
-(31726, 4413, 11), -- Average M. Def.
-(31726, 4414, 2), -- Standard Type
-(31726, 4415, 3), -- One-handed Sword
-(31726, 4416, 2), -- Magic Creatures
+(31726, 4390, 1), -- NPC Abnormal Immunity
+(31726, 4408, 1), -- HP Modifiers
+(31726, 4409, 1), -- MP Modifiers
+(31726, 4410, 11), -- P. Atk. Modifiers
+(31726, 4411, 11), -- M. Atk. Modifiers
+(31726, 4412, 11), -- P. Def. Modifiers
+(31726, 4413, 11), -- M. Def. Modifiers
+(31726, 4414, 2), -- Armor Type
+(31726, 4415, 3), -- Weapon Type
+(31726, 4416, 2), -- Races
 -- Orator of Revelations
 (31727, 4045, 1), -- Resist Full Magic Attack
-(31727, 4390, 1), -- Mystic Immunity
-(31727, 4408, 1), -- HP Increase (1x)
-(31727, 4409, 1), -- MP Increase (1x)
-(31727, 4410, 11), -- Average P. Atk.
-(31727, 4411, 11), -- Average M. Atk.
-(31727, 4412, 11), -- Average P. Def.
-(31727, 4413, 11), -- Average M. Def.
-(31727, 4414, 2), -- Standard Type
-(31727, 4415, 3), -- One-handed Sword
-(31727, 4416, 2), -- Magic Creatures
+(31727, 4390, 1), -- NPC Abnormal Immunity
+(31727, 4408, 1), -- HP Modifiers
+(31727, 4409, 1), -- MP Modifiers
+(31727, 4410, 11), -- P. Atk. Modifiers
+(31727, 4411, 11), -- M. Atk. Modifiers
+(31727, 4412, 11), -- P. Def. Modifiers
+(31727, 4413, 11), -- M. Def. Modifiers
+(31727, 4414, 2), -- Armor Type
+(31727, 4415, 3), -- Weapon Type
+(31727, 4416, 2), -- Races
 -- Orator of Revelations
 (31728, 4045, 1), -- Resist Full Magic Attack
-(31728, 4390, 1), -- Mystic Immunity
-(31728, 4408, 1), -- HP Increase (1x)
-(31728, 4409, 1), -- MP Increase (1x)
-(31728, 4410, 11), -- Average P. Atk.
-(31728, 4411, 11), -- Average M. Atk.
-(31728, 4412, 11), -- Average P. Def.
-(31728, 4413, 11), -- Average M. Def.
-(31728, 4414, 2), -- Standard Type
-(31728, 4415, 3), -- One-handed Sword
-(31728, 4416, 2), -- Magic Creatures
+(31728, 4390, 1), -- NPC Abnormal Immunity
+(31728, 4408, 1), -- HP Modifiers
+(31728, 4409, 1), -- MP Modifiers
+(31728, 4410, 11), -- P. Atk. Modifiers
+(31728, 4411, 11), -- M. Atk. Modifiers
+(31728, 4412, 11), -- P. Def. Modifiers
+(31728, 4413, 11), -- M. Def. Modifiers
+(31728, 4414, 2), -- Armor Type
+(31728, 4415, 3), -- Weapon Type
+(31728, 4416, 2), -- Races
 -- Adventure Guildsman
 (31729, 4045, 1), -- Resist Full Magic Attack
-(31729, 4408, 1), -- HP Increase (1x)
-(31729, 4409, 1), -- MP Increase (1x)
-(31729, 4410, 11), -- Average P. Atk.
-(31729, 4411, 11), -- Average M. Atk.
-(31729, 4412, 11), -- Average P. Def.
-(31729, 4413, 11), -- Average M. Def.
-(31729, 4414, 2), -- Standard Type
-(31729, 4415, 3), -- One-handed Sword
-(31729, 4416, 14), -- Humans
+(31729, 4408, 1), -- HP Modifiers
+(31729, 4409, 1), -- MP Modifiers
+(31729, 4410, 11), -- P. Atk. Modifiers
+(31729, 4411, 11), -- M. Atk. Modifiers
+(31729, 4412, 11), -- P. Def. Modifiers
+(31729, 4413, 11), -- M. Def. Modifiers
+(31729, 4414, 2), -- Armor Type
+(31729, 4415, 3), -- Weapon Type
+(31729, 4416, 14), -- Races
 -- Adventure Guildsman
 (31730, 4045, 1), -- Resist Full Magic Attack
-(31730, 4408, 1), -- HP Increase (1x)
-(31730, 4409, 1), -- MP Increase (1x)
-(31730, 4410, 11), -- Average P. Atk.
-(31730, 4411, 11), -- Average M. Atk.
-(31730, 4412, 11), -- Average P. Def.
-(31730, 4413, 11), -- Average M. Def.
-(31730, 4414, 2), -- Standard Type
-(31730, 4415, 3), -- One-handed Sword
-(31730, 4416, 15), -- Elves
+(31730, 4408, 1), -- HP Modifiers
+(31730, 4409, 1), -- MP Modifiers
+(31730, 4410, 11), -- P. Atk. Modifiers
+(31730, 4411, 11), -- M. Atk. Modifiers
+(31730, 4412, 11), -- P. Def. Modifiers
+(31730, 4413, 11), -- M. Def. Modifiers
+(31730, 4414, 2), -- Armor Type
+(31730, 4415, 3), -- Weapon Type
+(31730, 4416, 15), -- Races
 -- Adventure Guildsman
 (31731, 4045, 1), -- Resist Full Magic Attack
-(31731, 4408, 1), -- HP Increase (1x)
-(31731, 4409, 1), -- MP Increase (1x)
-(31731, 4410, 11), -- Average P. Atk.
-(31731, 4411, 11), -- Average M. Atk.
-(31731, 4412, 11), -- Average P. Def.
-(31731, 4413, 11), -- Average M. Def.
-(31731, 4414, 2), -- Standard Type
-(31731, 4415, 3), -- One-handed Sword
-(31731, 4416, 16), -- Dark Elves
+(31731, 4408, 1), -- HP Modifiers
+(31731, 4409, 1), -- MP Modifiers
+(31731, 4410, 11), -- P. Atk. Modifiers
+(31731, 4411, 11), -- M. Atk. Modifiers
+(31731, 4412, 11), -- P. Def. Modifiers
+(31731, 4413, 11), -- M. Def. Modifiers
+(31731, 4414, 2), -- Armor Type
+(31731, 4415, 3), -- Weapon Type
+(31731, 4416, 16), -- Races
 -- Adventure Guildsman
 (31732, 4045, 1), -- Resist Full Magic Attack
-(31732, 4408, 1), -- HP Increase (1x)
-(31732, 4409, 1), -- MP Increase (1x)
-(31732, 4410, 11), -- Average P. Atk.
-(31732, 4411, 11), -- Average M. Atk.
-(31732, 4412, 11), -- Average P. Def.
-(31732, 4413, 11), -- Average M. Def.
-(31732, 4414, 2), -- Standard Type
-(31732, 4415, 3), -- One-handed Sword
-(31732, 4416, 17), -- Orcs
+(31732, 4408, 1), -- HP Modifiers
+(31732, 4409, 1), -- MP Modifiers
+(31732, 4410, 11), -- P. Atk. Modifiers
+(31732, 4411, 11), -- M. Atk. Modifiers
+(31732, 4412, 11), -- P. Def. Modifiers
+(31732, 4413, 11), -- M. Def. Modifiers
+(31732, 4414, 2), -- Armor Type
+(31732, 4415, 3), -- Weapon Type
+(31732, 4416, 17), -- Races
 -- Adventure Guildsman
 (31733, 4045, 1), -- Resist Full Magic Attack
-(31733, 4408, 1), -- HP Increase (1x)
-(31733, 4409, 1), -- MP Increase (1x)
-(31733, 4410, 11), -- Average P. Atk.
-(31733, 4411, 11), -- Average M. Atk.
-(31733, 4412, 11), -- Average P. Def.
-(31733, 4413, 11), -- Average M. Def.
-(31733, 4414, 2), -- Standard Type
-(31733, 4415, 3), -- One-handed Sword
-(31733, 4416, 18), -- Dwarves
+(31733, 4408, 1), -- HP Modifiers
+(31733, 4409, 1), -- MP Modifiers
+(31733, 4410, 11), -- P. Atk. Modifiers
+(31733, 4411, 11), -- M. Atk. Modifiers
+(31733, 4412, 11), -- P. Def. Modifiers
+(31733, 4413, 11), -- M. Def. Modifiers
+(31733, 4414, 2), -- Armor Type
+(31733, 4415, 3), -- Weapon Type
+(31733, 4416, 18), -- Races
 -- Adventure Guildsman
 (31734, 4045, 1), -- Resist Full Magic Attack
-(31734, 4408, 1), -- HP Increase (1x)
-(31734, 4409, 1), -- MP Increase (1x)
-(31734, 4410, 11), -- Average P. Atk.
-(31734, 4411, 11), -- Average M. Atk.
-(31734, 4412, 11), -- Average P. Def.
-(31734, 4413, 11), -- Average M. Def.
-(31734, 4414, 2), -- Standard Type
-(31734, 4415, 3), -- One-handed Sword
-(31734, 4416, 14), -- Humans
+(31734, 4408, 1), -- HP Modifiers
+(31734, 4409, 1), -- MP Modifiers
+(31734, 4410, 11), -- P. Atk. Modifiers
+(31734, 4411, 11), -- M. Atk. Modifiers
+(31734, 4412, 11), -- P. Def. Modifiers
+(31734, 4413, 11), -- M. Def. Modifiers
+(31734, 4414, 2), -- Armor Type
+(31734, 4415, 3), -- Weapon Type
+(31734, 4416, 14), -- Races
 -- Adventure Guildsman
 (31735, 4045, 1), -- Resist Full Magic Attack
-(31735, 4408, 1), -- HP Increase (1x)
-(31735, 4409, 1), -- MP Increase (1x)
-(31735, 4410, 11), -- Average P. Atk.
-(31735, 4411, 11), -- Average M. Atk.
-(31735, 4412, 11), -- Average P. Def.
-(31735, 4413, 11), -- Average M. Def.
-(31735, 4414, 2), -- Standard Type
-(31735, 4415, 3), -- One-handed Sword
-(31735, 4416, 15), -- Elves
+(31735, 4408, 1), -- HP Modifiers
+(31735, 4409, 1), -- MP Modifiers
+(31735, 4410, 11), -- P. Atk. Modifiers
+(31735, 4411, 11), -- M. Atk. Modifiers
+(31735, 4412, 11), -- P. Def. Modifiers
+(31735, 4413, 11), -- M. Def. Modifiers
+(31735, 4414, 2), -- Armor Type
+(31735, 4415, 3), -- Weapon Type
+(31735, 4416, 15), -- Races
 -- Adventure Guildsman
 (31736, 4045, 1), -- Resist Full Magic Attack
-(31736, 4408, 1), -- HP Increase (1x)
-(31736, 4409, 1), -- MP Increase (1x)
-(31736, 4410, 11), -- Average P. Atk.
-(31736, 4411, 11), -- Average M. Atk.
-(31736, 4412, 11), -- Average P. Def.
-(31736, 4413, 11), -- Average M. Def.
-(31736, 4414, 2), -- Standard Type
-(31736, 4415, 3), -- One-handed Sword
-(31736, 4416, 16), -- Dark Elves
+(31736, 4408, 1), -- HP Modifiers
+(31736, 4409, 1), -- MP Modifiers
+(31736, 4410, 11), -- P. Atk. Modifiers
+(31736, 4411, 11), -- M. Atk. Modifiers
+(31736, 4412, 11), -- P. Def. Modifiers
+(31736, 4413, 11), -- M. Def. Modifiers
+(31736, 4414, 2), -- Armor Type
+(31736, 4415, 3), -- Weapon Type
+(31736, 4416, 16), -- Races
 -- Adventure Guildsman
 (31737, 4045, 1), -- Resist Full Magic Attack
-(31737, 4408, 1), -- HP Increase (1x)
-(31737, 4409, 1), -- MP Increase (1x)
-(31737, 4410, 11), -- Average P. Atk.
-(31737, 4411, 11), -- Average M. Atk.
-(31737, 4412, 11), -- Average P. Def.
-(31737, 4413, 11), -- Average M. Def.
-(31737, 4414, 2), -- Standard Type
-(31737, 4415, 3), -- One-handed Sword
-(31737, 4416, 17), -- Orcs
+(31737, 4408, 1), -- HP Modifiers
+(31737, 4409, 1), -- MP Modifiers
+(31737, 4410, 11), -- P. Atk. Modifiers
+(31737, 4411, 11), -- M. Atk. Modifiers
+(31737, 4412, 11), -- P. Def. Modifiers
+(31737, 4413, 11), -- M. Def. Modifiers
+(31737, 4414, 2), -- Armor Type
+(31737, 4415, 3), -- Weapon Type
+(31737, 4416, 17), -- Races
 -- Adventure Guildsman
 (31738, 4045, 1), -- Resist Full Magic Attack
-(31738, 4408, 1), -- HP Increase (1x)
-(31738, 4409, 1), -- MP Increase (1x)
-(31738, 4410, 11), -- Average P. Atk.
-(31738, 4411, 11), -- Average M. Atk.
-(31738, 4412, 11), -- Average P. Def.
-(31738, 4413, 11), -- Average M. Def.
-(31738, 4414, 2), -- Standard Type
-(31738, 4415, 3), -- One-handed Sword
-(31738, 4416, 18), -- Dwarves
+(31738, 4408, 1), -- HP Modifiers
+(31738, 4409, 1), -- MP Modifiers
+(31738, 4410, 11), -- P. Atk. Modifiers
+(31738, 4411, 11), -- M. Atk. Modifiers
+(31738, 4412, 11), -- P. Def. Modifiers
+(31738, 4413, 11), -- M. Def. Modifiers
+(31738, 4414, 2), -- Armor Type
+(31738, 4415, 3), -- Weapon Type
+(31738, 4416, 18), -- Races
 -- Talien
 (31739, 4045, 1), -- Resist Full Magic Attack
-(31739, 4408, 1), -- HP Increase (1x)
-(31739, 4409, 1), -- MP Increase (1x)
-(31739, 4410, 11), -- Average P. Atk.
-(31739, 4411, 11), -- Average M. Atk.
-(31739, 4412, 11), -- Average P. Def.
-(31739, 4413, 11), -- Average M. Def.
-(31739, 4414, 2), -- Standard Type
-(31739, 4415, 3), -- One-handed Sword
-(31739, 4416, 14), -- Humans
+(31739, 4408, 1), -- HP Modifiers
+(31739, 4409, 1), -- MP Modifiers
+(31739, 4410, 11), -- P. Atk. Modifiers
+(31739, 4411, 11), -- M. Atk. Modifiers
+(31739, 4412, 11), -- P. Def. Modifiers
+(31739, 4413, 11), -- M. Def. Modifiers
+(31739, 4414, 2), -- Armor Type
+(31739, 4415, 3), -- Weapon Type
+(31739, 4416, 14), -- Races
 -- Caradine
 (31740, 4045, 1), -- Resist Full Magic Attack
-(31740, 4408, 1), -- HP Increase (1x)
-(31740, 4409, 1), -- MP Increase (1x)
-(31740, 4410, 11), -- Average P. Atk.
-(31740, 4411, 11), -- Average M. Atk.
-(31740, 4412, 11), -- Average P. Def.
-(31740, 4413, 11), -- Average M. Def.
-(31740, 4414, 2), -- Standard Type
-(31740, 4415, 3), -- One-handed Sword
-(31740, 4416, 15), -- Elves
+(31740, 4408, 1), -- HP Modifiers
+(31740, 4409, 1), -- MP Modifiers
+(31740, 4410, 11), -- P. Atk. Modifiers
+(31740, 4411, 11), -- M. Atk. Modifiers
+(31740, 4412, 11), -- P. Def. Modifiers
+(31740, 4413, 11), -- M. Def. Modifiers
+(31740, 4414, 2), -- Armor Type
+(31740, 4415, 3), -- Weapon Type
+(31740, 4416, 15), -- Races
 -- Ossian
 (31741, 4045, 1), -- Resist Full Magic Attack
-(31741, 4408, 1), -- HP Increase (1x)
-(31741, 4409, 1), -- MP Increase (1x)
-(31741, 4410, 11), -- Average P. Atk.
-(31741, 4411, 11), -- Average M. Atk.
-(31741, 4412, 11), -- Average P. Def.
-(31741, 4413, 11), -- Average M. Def.
-(31741, 4414, 2), -- Standard Type
-(31741, 4415, 3), -- One-handed Sword
-(31741, 4416, 14), -- Humans
+(31741, 4408, 1), -- HP Modifiers
+(31741, 4409, 1), -- MP Modifiers
+(31741, 4410, 11), -- P. Atk. Modifiers
+(31741, 4411, 11), -- M. Atk. Modifiers
+(31741, 4412, 11), -- P. Def. Modifiers
+(31741, 4413, 11), -- M. Def. Modifiers
+(31741, 4414, 2), -- Armor Type
+(31741, 4415, 3), -- Weapon Type
+(31741, 4416, 14), -- Races
 -- Virgil
 (31742, 4045, 1), -- Resist Full Magic Attack
-(31742, 4408, 1), -- HP Increase (1x)
-(31742, 4409, 1), -- MP Increase (1x)
-(31742, 4410, 11), -- Average P. Atk.
-(31742, 4411, 11), -- Average M. Atk.
-(31742, 4412, 11), -- Average P. Def.
-(31742, 4413, 11), -- Average M. Def.
-(31742, 4414, 2), -- Standard Type
-(31742, 4415, 3), -- One-handed Sword
-(31742, 4416, 18), -- Dwarves
+(31742, 4408, 1), -- HP Modifiers
+(31742, 4409, 1), -- MP Modifiers
+(31742, 4410, 11), -- P. Atk. Modifiers
+(31742, 4411, 11), -- M. Atk. Modifiers
+(31742, 4412, 11), -- P. Def. Modifiers
+(31742, 4413, 11), -- M. Def. Modifiers
+(31742, 4414, 2), -- Armor Type
+(31742, 4415, 3), -- Weapon Type
+(31742, 4416, 18), -- Races
 -- Kassandra
 (31743, 4045, 1), -- Resist Full Magic Attack
-(31743, 4408, 1), -- HP Increase (1x)
-(31743, 4409, 1), -- MP Increase (1x)
-(31743, 4410, 11), -- Average P. Atk.
-(31743, 4411, 11), -- Average M. Atk.
-(31743, 4412, 11), -- Average P. Def.
-(31743, 4413, 11), -- Average M. Def.
-(31743, 4414, 2), -- Standard Type
-(31743, 4415, 3), -- One-handed Sword
-(31743, 4416, 18), -- Dwarves
+(31743, 4408, 1), -- HP Modifiers
+(31743, 4409, 1), -- MP Modifiers
+(31743, 4410, 11), -- P. Atk. Modifiers
+(31743, 4411, 11), -- M. Atk. Modifiers
+(31743, 4412, 11), -- P. Def. Modifiers
+(31743, 4413, 11), -- M. Def. Modifiers
+(31743, 4414, 2), -- Armor Type
+(31743, 4415, 3), -- Weapon Type
+(31743, 4416, 18), -- Races
 -- Ogmar
 (31744, 4045, 1), -- Resist Full Magic Attack
-(31744, 4408, 1), -- HP Increase (1x)
-(31744, 4409, 1), -- MP Increase (1x)
-(31744, 4410, 11), -- Average P. Atk.
-(31744, 4411, 11), -- Average M. Atk.
-(31744, 4412, 11), -- Average P. Def.
-(31744, 4413, 11), -- Average M. Def.
-(31744, 4414, 2), -- Standard Type
-(31744, 4415, 3), -- One-handed Sword
-(31744, 4416, 17), -- Orcs
+(31744, 4408, 1), -- HP Modifiers
+(31744, 4409, 1), -- MP Modifiers
+(31744, 4410, 11), -- P. Atk. Modifiers
+(31744, 4411, 11), -- M. Atk. Modifiers
+(31744, 4412, 11), -- P. Def. Modifiers
+(31744, 4413, 11), -- M. Def. Modifiers
+(31744, 4414, 2), -- Armor Type
+(31744, 4415, 3), -- Weapon Type
+(31744, 4416, 17), -- Races
 -- Lady of the Lake
 (31745, 4045, 1), -- Resist Full Magic Attack
-(31745, 4408, 1), -- HP Increase (1x)
-(31745, 4409, 1), -- MP Increase (1x)
-(31745, 4410, 11), -- Average P. Atk.
-(31745, 4411, 11), -- Average M. Atk.
-(31745, 4412, 11), -- Average P. Def.
-(31745, 4413, 11), -- Average M. Def.
-(31745, 4414, 2), -- Standard Type
-(31745, 4415, 3), -- One-handed Sword
-(31745, 4416, 15), -- Elves
+(31745, 4408, 1), -- HP Modifiers
+(31745, 4409, 1), -- MP Modifiers
+(31745, 4410, 11), -- P. Atk. Modifiers
+(31745, 4411, 11), -- M. Atk. Modifiers
+(31745, 4412, 11), -- P. Def. Modifiers
+(31745, 4413, 11), -- M. Def. Modifiers
+(31745, 4414, 2), -- Armor Type
+(31745, 4415, 3), -- Weapon Type
+(31745, 4416, 15), -- Races
 -- Fallen Unicorn
 (31746, 4045, 1), -- Resist Full Magic Attack
-(31746, 4408, 1), -- HP Increase (1x)
-(31746, 4409, 1), -- MP Increase (1x)
-(31746, 4410, 11), -- Average P. Atk.
-(31746, 4411, 11), -- Average M. Atk.
-(31746, 4412, 11), -- Average P. Def.
-(31746, 4413, 11), -- Average M. Def.
-(31746, 4414, 2), -- Standard Type
-(31746, 4415, 3), -- One-handed Sword
-(31746, 4416, 7), -- Spirits
+(31746, 4408, 1), -- HP Modifiers
+(31746, 4409, 1), -- MP Modifiers
+(31746, 4410, 11), -- P. Atk. Modifiers
+(31746, 4411, 11), -- M. Atk. Modifiers
+(31746, 4412, 11), -- P. Def. Modifiers
+(31746, 4413, 11), -- M. Def. Modifiers
+(31746, 4414, 2), -- Armor Type
+(31746, 4415, 3), -- Weapon Type
+(31746, 4416, 7), -- Races
 -- Pure White Unicorn
 (31747, 4045, 1), -- Resist Full Magic Attack
-(31747, 4408, 1), -- HP Increase (1x)
-(31747, 4409, 1), -- MP Increase (1x)
-(31747, 4410, 11), -- Average P. Atk.
-(31747, 4411, 11), -- Average M. Atk.
-(31747, 4412, 11), -- Average P. Def.
-(31747, 4413, 11), -- Average M. Def.
-(31747, 4414, 2), -- Standard Type
-(31747, 4415, 3), -- One-handed Sword
-(31747, 4416, 7), -- Spirits
+(31747, 4408, 1), -- HP Modifiers
+(31747, 4409, 1), -- MP Modifiers
+(31747, 4410, 11), -- P. Atk. Modifiers
+(31747, 4411, 11), -- M. Atk. Modifiers
+(31747, 4412, 11), -- P. Def. Modifiers
+(31747, 4413, 11), -- M. Def. Modifiers
+(31747, 4414, 2), -- Armor Type
+(31747, 4415, 3), -- Weapon Type
+(31747, 4416, 7), -- Races
 -- Cornerstone of Restraining
 (31748, 4045, 1), -- Resist Full Magic Attack
-(31748, 4390, 1), -- Mystic Immunity
-(31748, 4408, 1), -- HP Increase (1x)
-(31748, 4409, 1), -- MP Increase (1x)
-(31748, 4410, 11), -- Average P. Atk.
-(31748, 4411, 11), -- Average M. Atk.
-(31748, 4412, 11), -- Average P. Def.
-(31748, 4413, 11), -- Average M. Def.
-(31748, 4414, 2), -- Standard Type
-(31748, 4415, 3), -- One-handed Sword
-(31748, 4416, 2), -- Magic Creatures
+(31748, 4390, 1), -- NPC Abnormal Immunity
+(31748, 4408, 1), -- HP Modifiers
+(31748, 4409, 1), -- MP Modifiers
+(31748, 4410, 11), -- P. Atk. Modifiers
+(31748, 4411, 11), -- M. Atk. Modifiers
+(31748, 4412, 11), -- P. Def. Modifiers
+(31748, 4413, 11), -- M. Def. Modifiers
+(31748, 4414, 2), -- Armor Type
+(31748, 4415, 3), -- Weapon Type
+(31748, 4416, 2), -- Races
 -- Mysterious Woman
 (31750, 4045, 1), -- Resist Full Magic Attack
-(31750, 4408, 1), -- HP Increase (1x)
-(31750, 4409, 1), -- MP Increase (1x)
-(31750, 4410, 11), -- Average P. Atk.
-(31750, 4411, 11), -- Average M. Atk.
-(31750, 4412, 11), -- Average P. Def.
-(31750, 4413, 11), -- Average M. Def.
-(31750, 4414, 2), -- Standard Type
-(31750, 4415, 3), -- One-handed Sword
-(31750, 4416, 15), -- Elves
+(31750, 4408, 1), -- HP Modifiers
+(31750, 4409, 1), -- MP Modifiers
+(31750, 4410, 11), -- P. Atk. Modifiers
+(31750, 4411, 11), -- M. Atk. Modifiers
+(31750, 4412, 11), -- P. Def. Modifiers
+(31750, 4413, 11), -- M. Def. Modifiers
+(31750, 4414, 2), -- Armor Type
+(31750, 4415, 3), -- Weapon Type
+(31750, 4416, 15), -- Races
 -- Mysterious Dark Knight
 (31751, 4045, 1), -- Resist Full Magic Attack
-(31751, 4408, 1), -- HP Increase (1x)
-(31751, 4409, 1), -- MP Increase (1x)
-(31751, 4410, 11), -- Average P. Atk.
-(31751, 4411, 11), -- Average M. Atk.
-(31751, 4412, 11), -- Average P. Def.
-(31751, 4413, 11), -- Average M. Def.
-(31751, 4414, 2), -- Standard Type
-(31751, 4415, 3), -- One-handed Sword
-(31751, 4416, 1), -- Undead
+(31751, 4408, 1), -- HP Modifiers
+(31751, 4409, 1), -- MP Modifiers
+(31751, 4410, 11), -- P. Atk. Modifiers
+(31751, 4411, 11), -- M. Atk. Modifiers
+(31751, 4412, 11), -- P. Def. Modifiers
+(31751, 4413, 11), -- M. Def. Modifiers
+(31751, 4414, 2), -- Armor Type
+(31751, 4415, 3), -- Weapon Type
+(31751, 4416, 1), -- Races
 -- Corpse of Angel
 (31752, 4045, 1), -- Resist Full Magic Attack
-(31752, 4408, 1), -- HP Increase (1x)
-(31752, 4409, 1), -- MP Increase (1x)
-(31752, 4410, 11), -- Average P. Atk.
-(31752, 4411, 11), -- Average M. Atk.
-(31752, 4412, 11), -- Average P. Def.
-(31752, 4413, 11), -- Average M. Def.
-(31752, 4414, 2), -- Standard Type
-(31752, 4415, 3), -- One-handed Sword
-(31752, 4416, 8), -- Angels
+(31752, 4408, 1), -- HP Modifiers
+(31752, 4409, 1), -- MP Modifiers
+(31752, 4410, 11), -- P. Atk. Modifiers
+(31752, 4411, 11), -- M. Atk. Modifiers
+(31752, 4412, 11), -- P. Def. Modifiers
+(31752, 4413, 11), -- M. Def. Modifiers
+(31752, 4414, 2), -- Armor Type
+(31752, 4415, 3), -- Weapon Type
+(31752, 4416, 8), -- Races
 -- Halaster
 (31755, 4045, 1), -- Resist Full Magic Attack
-(31755, 4408, 1), -- HP Increase (1x)
-(31755, 4409, 1), -- MP Increase (1x)
-(31755, 4410, 11), -- Average P. Atk.
-(31755, 4411, 11), -- Average M. Atk.
-(31755, 4412, 11), -- Average P. Def.
-(31755, 4413, 11), -- Average M. Def.
-(31755, 4414, 2), -- Standard Type
-(31755, 4415, 3), -- One-handed Sword
-(31755, 4416, 14), -- Humans
+(31755, 4408, 1), -- HP Modifiers
+(31755, 4409, 1), -- MP Modifiers
+(31755, 4410, 11), -- P. Atk. Modifiers
+(31755, 4411, 11), -- M. Atk. Modifiers
+(31755, 4412, 11), -- P. Def. Modifiers
+(31755, 4413, 11), -- M. Def. Modifiers
+(31755, 4414, 2), -- Armor Type
+(31755, 4415, 3), -- Weapon Type
+(31755, 4416, 14), -- Races
 -- Mr. Cat
 (31756, 4045, 1), -- Resist Full Magic Attack
-(31756, 4408, 1), -- HP Increase (1x)
-(31756, 4409, 1), -- MP Increase (1x)
-(31756, 4410, 11), -- Average P. Atk.
-(31756, 4411, 11), -- Average M. Atk.
-(31756, 4412, 11), -- Average P. Def.
-(31756, 4413, 11), -- Average M. Def.
-(31756, 4414, 2), -- Standard Type
-(31756, 4415, 3), -- One-handed Sword
-(31756, 4416, 7), -- Spirits
+(31756, 4408, 1), -- HP Modifiers
+(31756, 4409, 1), -- MP Modifiers
+(31756, 4410, 11), -- P. Atk. Modifiers
+(31756, 4411, 11), -- M. Atk. Modifiers
+(31756, 4412, 11), -- P. Def. Modifiers
+(31756, 4413, 11), -- M. Def. Modifiers
+(31756, 4414, 2), -- Armor Type
+(31756, 4415, 3), -- Weapon Type
+(31756, 4416, 7), -- Races
 -- Miss Queen
 (31757, 4045, 1), -- Resist Full Magic Attack
-(31757, 4408, 1), -- HP Increase (1x)
-(31757, 4409, 1), -- MP Increase (1x)
-(31757, 4410, 11), -- Average P. Atk.
-(31757, 4411, 11), -- Average M. Atk.
-(31757, 4412, 11), -- Average P. Def.
-(31757, 4413, 11), -- Average M. Def.
-(31757, 4414, 2), -- Standard Type
-(31757, 4415, 3), -- One-handed Sword
-(31757, 4416, 7), -- Spirits
+(31757, 4408, 1), -- HP Modifiers
+(31757, 4409, 1), -- MP Modifiers
+(31757, 4410, 11), -- P. Atk. Modifiers
+(31757, 4411, 11), -- M. Atk. Modifiers
+(31757, 4412, 11), -- P. Def. Modifiers
+(31757, 4413, 11), -- M. Def. Modifiers
+(31757, 4414, 2), -- Armor Type
+(31757, 4415, 3), -- Weapon Type
+(31757, 4416, 7), -- Races
 -- Rafi
 (31758, 4045, 1), -- Resist Full Magic Attack
-(31758, 4408, 1), -- HP Increase (1x)
-(31758, 4409, 1), -- MP Increase (1x)
-(31758, 4410, 11), -- Average P. Atk.
-(31758, 4411, 11), -- Average M. Atk.
-(31758, 4412, 11), -- Average P. Def.
-(31758, 4413, 11), -- Average M. Def.
-(31758, 4414, 2), -- Standard Type
-(31758, 4415, 3), -- One-handed Sword
-(31758, 4416, 10), -- Dragons
+(31758, 4408, 1), -- HP Modifiers
+(31758, 4409, 1), -- MP Modifiers
+(31758, 4410, 11), -- P. Atk. Modifiers
+(31758, 4411, 11), -- M. Atk. Modifiers
+(31758, 4412, 11), -- P. Def. Modifiers
+(31758, 4413, 11), -- M. Def. Modifiers
+(31758, 4414, 2), -- Armor Type
+(31758, 4415, 3), -- Weapon Type
+(31758, 4416, 10), -- Races
 -- Teleportation Cubic
 (31759, 4045, 1), -- Resist Full Magic Attack
-(31759, 4390, 1), -- Mystic Immunity
-(31759, 4408, 1), -- HP Increase (1x)
-(31759, 4409, 1), -- MP Increase (1x)
-(31759, 4410, 11), -- Average P. Atk.
-(31759, 4411, 11), -- Average M. Atk.
-(31759, 4412, 11), -- Average P. Def.
-(31759, 4413, 11), -- Average M. Def.
-(31759, 4414, 2), -- Standard Type
-(31759, 4415, 3), -- One-handed Sword
-(31759, 4416, 19), -- Others
+(31759, 4390, 1), -- NPC Abnormal Immunity
+(31759, 4408, 1), -- HP Modifiers
+(31759, 4409, 1), -- MP Modifiers
+(31759, 4410, 11), -- P. Atk. Modifiers
+(31759, 4411, 11), -- M. Atk. Modifiers
+(31759, 4412, 11), -- P. Def. Modifiers
+(31759, 4413, 11), -- M. Def. Modifiers
+(31759, 4414, 2), -- Armor Type
+(31759, 4415, 3), -- Weapon Type
+(31759, 4416, 19), -- Races
 -- Miss Queen
 (31760, 4045, 1), -- Resist Full Magic Attack
-(31760, 4408, 1), -- HP Increase (1x)
-(31760, 4409, 1), -- MP Increase (1x)
-(31760, 4410, 11), -- Average P. Atk.
-(31760, 4411, 11), -- Average M. Atk.
-(31760, 4412, 11), -- Average P. Def.
-(31760, 4413, 11), -- Average M. Def.
-(31760, 4414, 2), -- Standard Type
-(31760, 4415, 3), -- One-handed Sword
-(31760, 4416, 7), -- Spirits
+(31760, 4408, 1), -- HP Modifiers
+(31760, 4409, 1), -- MP Modifiers
+(31760, 4410, 11), -- P. Atk. Modifiers
+(31760, 4411, 11), -- M. Atk. Modifiers
+(31760, 4412, 11), -- P. Def. Modifiers
+(31760, 4413, 11), -- M. Def. Modifiers
+(31760, 4414, 2), -- Armor Type
+(31760, 4415, 3), -- Weapon Type
+(31760, 4416, 7), -- Races
 -- Miss Queen
 (31761, 4045, 1), -- Resist Full Magic Attack
-(31761, 4408, 1), -- HP Increase (1x)
-(31761, 4409, 1), -- MP Increase (1x)
-(31761, 4410, 11), -- Average P. Atk.
-(31761, 4411, 11), -- Average M. Atk.
-(31761, 4412, 11), -- Average P. Def.
-(31761, 4413, 11), -- Average M. Def.
-(31761, 4414, 2), -- Standard Type
-(31761, 4415, 3), -- One-handed Sword
-(31761, 4416, 7), -- Spirits
+(31761, 4408, 1), -- HP Modifiers
+(31761, 4409, 1), -- MP Modifiers
+(31761, 4410, 11), -- P. Atk. Modifiers
+(31761, 4411, 11), -- M. Atk. Modifiers
+(31761, 4412, 11), -- P. Def. Modifiers
+(31761, 4413, 11), -- M. Def. Modifiers
+(31761, 4414, 2), -- Armor Type
+(31761, 4415, 3), -- Weapon Type
+(31761, 4416, 7), -- Races
 -- Miss Queen
 (31762, 4045, 1), -- Resist Full Magic Attack
-(31762, 4408, 1), -- HP Increase (1x)
-(31762, 4409, 1), -- MP Increase (1x)
-(31762, 4410, 11), -- Average P. Atk.
-(31762, 4411, 11), -- Average M. Atk.
-(31762, 4412, 11), -- Average P. Def.
-(31762, 4413, 11), -- Average M. Def.
-(31762, 4414, 2), -- Standard Type
-(31762, 4415, 3), -- One-handed Sword
-(31762, 4416, 7), -- Spirits
+(31762, 4408, 1), -- HP Modifiers
+(31762, 4409, 1), -- MP Modifiers
+(31762, 4410, 11), -- P. Atk. Modifiers
+(31762, 4411, 11), -- M. Atk. Modifiers
+(31762, 4412, 11), -- P. Def. Modifiers
+(31762, 4413, 11), -- M. Def. Modifiers
+(31762, 4414, 2), -- Armor Type
+(31762, 4415, 3), -- Weapon Type
+(31762, 4416, 7), -- Races
 -- Miss Queen
 (31763, 4045, 1), -- Resist Full Magic Attack
-(31763, 4408, 1), -- HP Increase (1x)
-(31763, 4409, 1), -- MP Increase (1x)
-(31763, 4410, 11), -- Average P. Atk.
-(31763, 4411, 11), -- Average M. Atk.
-(31763, 4412, 11), -- Average P. Def.
-(31763, 4413, 11), -- Average M. Def.
-(31763, 4414, 2), -- Standard Type
-(31763, 4415, 3), -- One-handed Sword
-(31763, 4416, 7), -- Spirits
+(31763, 4408, 1), -- HP Modifiers
+(31763, 4409, 1), -- MP Modifiers
+(31763, 4410, 11), -- P. Atk. Modifiers
+(31763, 4411, 11), -- M. Atk. Modifiers
+(31763, 4412, 11), -- P. Def. Modifiers
+(31763, 4413, 11), -- M. Def. Modifiers
+(31763, 4414, 2), -- Armor Type
+(31763, 4415, 3), -- Weapon Type
+(31763, 4416, 7), -- Races
 -- Miss Queen
 (31764, 4045, 1), -- Resist Full Magic Attack
-(31764, 4408, 1), -- HP Increase (1x)
-(31764, 4409, 1), -- MP Increase (1x)
-(31764, 4410, 11), -- Average P. Atk.
-(31764, 4411, 11), -- Average M. Atk.
-(31764, 4412, 11), -- Average P. Def.
-(31764, 4413, 11), -- Average M. Def.
-(31764, 4414, 2), -- Standard Type
-(31764, 4415, 3), -- One-handed Sword
-(31764, 4416, 7), -- Spirits
+(31764, 4408, 1), -- HP Modifiers
+(31764, 4409, 1), -- MP Modifiers
+(31764, 4410, 11), -- P. Atk. Modifiers
+(31764, 4411, 11), -- M. Atk. Modifiers
+(31764, 4412, 11), -- P. Def. Modifiers
+(31764, 4413, 11), -- M. Def. Modifiers
+(31764, 4414, 2), -- Armor Type
+(31764, 4415, 3), -- Weapon Type
+(31764, 4416, 7), -- Races
 -- Miss Queen
 (31765, 4045, 1), -- Resist Full Magic Attack
-(31765, 4408, 1), -- HP Increase (1x)
-(31765, 4409, 1), -- MP Increase (1x)
-(31765, 4410, 11), -- Average P. Atk.
-(31765, 4411, 11), -- Average M. Atk.
-(31765, 4412, 11), -- Average P. Def.
-(31765, 4413, 11), -- Average M. Def.
-(31765, 4414, 2), -- Standard Type
-(31765, 4415, 3), -- One-handed Sword
-(31765, 4416, 7), -- Spirits
+(31765, 4408, 1), -- HP Modifiers
+(31765, 4409, 1), -- MP Modifiers
+(31765, 4410, 11), -- P. Atk. Modifiers
+(31765, 4411, 11), -- M. Atk. Modifiers
+(31765, 4412, 11), -- P. Def. Modifiers
+(31765, 4413, 11), -- M. Def. Modifiers
+(31765, 4414, 2), -- Armor Type
+(31765, 4415, 3), -- Weapon Type
+(31765, 4416, 7), -- Races
 -- Miss Queen
 (31766, 4045, 1), -- Resist Full Magic Attack
-(31766, 4408, 1), -- HP Increase (1x)
-(31766, 4409, 1), -- MP Increase (1x)
-(31766, 4410, 11), -- Average P. Atk.
-(31766, 4411, 11), -- Average M. Atk.
-(31766, 4412, 11), -- Average P. Def.
-(31766, 4413, 11), -- Average M. Def.
-(31766, 4414, 2), -- Standard Type
-(31766, 4415, 3), -- One-handed Sword
-(31766, 4416, 7), -- Spirits
+(31766, 4408, 1), -- HP Modifiers
+(31766, 4409, 1), -- MP Modifiers
+(31766, 4410, 11), -- P. Atk. Modifiers
+(31766, 4411, 11), -- M. Atk. Modifiers
+(31766, 4412, 11), -- P. Def. Modifiers
+(31766, 4413, 11), -- M. Def. Modifiers
+(31766, 4414, 2), -- Armor Type
+(31766, 4415, 3), -- Weapon Type
+(31766, 4416, 7), -- Races
 -- Event Gatekeeper
 (31767, 4045, 1), -- Resist Full Magic Attack
-(31767, 4408, 1), -- HP Increase (1x)
-(31767, 4409, 1), -- MP Increase (1x)
-(31767, 4410, 11), -- Average P. Atk.
-(31767, 4411, 11), -- Average M. Atk.
-(31767, 4412, 11), -- Average P. Def.
-(31767, 4413, 11), -- Average M. Def.
-(31767, 4414, 2), -- Standard Type
-(31767, 4415, 3), -- One-handed Sword
-(31767, 4416, 7), -- Spirits
+(31767, 4408, 1), -- HP Modifiers
+(31767, 4409, 1), -- MP Modifiers
+(31767, 4410, 11), -- P. Atk. Modifiers
+(31767, 4411, 11), -- M. Atk. Modifiers
+(31767, 4412, 11), -- P. Def. Modifiers
+(31767, 4413, 11), -- M. Def. Modifiers
+(31767, 4414, 2), -- Armor Type
+(31767, 4415, 3), -- Weapon Type
+(31767, 4416, 7), -- Races
 -- Event Gatekeeper
 (31768, 4045, 1), -- Resist Full Magic Attack
-(31768, 4408, 1), -- HP Increase (1x)
-(31768, 4409, 1), -- MP Increase (1x)
-(31768, 4410, 11), -- Average P. Atk.
-(31768, 4411, 11), -- Average M. Atk.
-(31768, 4412, 11), -- Average P. Def.
-(31768, 4413, 11), -- Average M. Def.
-(31768, 4414, 2), -- Standard Type
-(31768, 4415, 3), -- One-handed Sword
-(31768, 4416, 7), -- Spirits
+(31768, 4408, 1), -- HP Modifiers
+(31768, 4409, 1), -- MP Modifiers
+(31768, 4410, 11), -- P. Atk. Modifiers
+(31768, 4411, 11), -- M. Atk. Modifiers
+(31768, 4412, 11), -- P. Def. Modifiers
+(31768, 4413, 11), -- M. Def. Modifiers
+(31768, 4414, 2), -- Armor Type
+(31768, 4415, 3), -- Weapon Type
+(31768, 4416, 7), -- Races
 -- Monument of Heroes
 (31769, 4045, 1), -- Resist Full Magic Attack
-(31769, 4390, 1), -- Mystic Immunity
-(31769, 4408, 1), -- HP Increase (1x)
-(31769, 4409, 1), -- MP Increase (1x)
-(31769, 4410, 11), -- Average P. Atk.
-(31769, 4411, 11), -- Average M. Atk.
-(31769, 4412, 11), -- Average P. Def.
-(31769, 4413, 11), -- Average M. Def.
-(31769, 4414, 2), -- Standard Type
-(31769, 4415, 3), -- One-handed Sword
-(31769, 4416, 19), -- Others
+(31769, 4390, 1), -- NPC Abnormal Immunity
+(31769, 4408, 1), -- HP Modifiers
+(31769, 4409, 1), -- MP Modifiers
+(31769, 4410, 11), -- P. Atk. Modifiers
+(31769, 4411, 11), -- M. Atk. Modifiers
+(31769, 4412, 11), -- P. Def. Modifiers
+(31769, 4413, 11), -- M. Def. Modifiers
+(31769, 4414, 2), -- Armor Type
+(31769, 4415, 3), -- Weapon Type
+(31769, 4416, 19), -- Races
 -- Monument of Heroes
 (31770, 4045, 1), -- Resist Full Magic Attack
-(31770, 4390, 1), -- Mystic Immunity
-(31770, 4408, 1), -- HP Increase (1x)
-(31770, 4409, 1), -- MP Increase (1x)
-(31770, 4410, 11), -- Average P. Atk.
-(31770, 4411, 11), -- Average M. Atk.
-(31770, 4412, 11), -- Average P. Def.
-(31770, 4413, 11), -- Average M. Def.
-(31770, 4414, 2), -- Standard Type
-(31770, 4415, 3), -- One-handed Sword
-(31770, 4416, 19), -- Others
+(31770, 4390, 1), -- NPC Abnormal Immunity
+(31770, 4408, 1), -- HP Modifiers
+(31770, 4409, 1), -- MP Modifiers
+(31770, 4410, 11), -- P. Atk. Modifiers
+(31770, 4411, 11), -- M. Atk. Modifiers
+(31770, 4412, 11), -- P. Def. Modifiers
+(31770, 4413, 11), -- M. Def. Modifiers
+(31770, 4414, 2), -- Armor Type
+(31770, 4415, 3), -- Weapon Type
+(31770, 4416, 19), -- Races
 -- Monument of Heroes
 (31771, 4045, 1), -- Resist Full Magic Attack
-(31771, 4390, 1), -- Mystic Immunity
-(31771, 4408, 1), -- HP Increase (1x)
-(31771, 4409, 1), -- MP Increase (1x)
-(31771, 4410, 11), -- Average P. Atk.
-(31771, 4411, 11), -- Average M. Atk.
-(31771, 4412, 11), -- Average P. Def.
-(31771, 4413, 11), -- Average M. Def.
-(31771, 4414, 2), -- Standard Type
-(31771, 4415, 3), -- One-handed Sword
-(31771, 4416, 19), -- Others
+(31771, 4390, 1), -- NPC Abnormal Immunity
+(31771, 4408, 1), -- HP Modifiers
+(31771, 4409, 1), -- MP Modifiers
+(31771, 4410, 11), -- P. Atk. Modifiers
+(31771, 4411, 11), -- M. Atk. Modifiers
+(31771, 4412, 11), -- P. Def. Modifiers
+(31771, 4413, 11), -- M. Def. Modifiers
+(31771, 4414, 2), -- Armor Type
+(31771, 4415, 3), -- Weapon Type
+(31771, 4416, 19), -- Races
 -- Monument of Heroes
 (31772, 4045, 1), -- Resist Full Magic Attack
-(31772, 4390, 1), -- Mystic Immunity
-(31772, 4408, 1), -- HP Increase (1x)
-(31772, 4409, 1), -- MP Increase (1x)
-(31772, 4410, 11), -- Average P. Atk.
-(31772, 4411, 11), -- Average M. Atk.
-(31772, 4412, 11), -- Average P. Def.
-(31772, 4413, 11), -- Average M. Def.
-(31772, 4414, 2), -- Standard Type
-(31772, 4415, 3), -- One-handed Sword
-(31772, 4416, 19), -- Others
+(31772, 4390, 1), -- NPC Abnormal Immunity
+(31772, 4408, 1), -- HP Modifiers
+(31772, 4409, 1), -- MP Modifiers
+(31772, 4410, 11), -- P. Atk. Modifiers
+(31772, 4411, 11), -- M. Atk. Modifiers
+(31772, 4412, 11), -- P. Def. Modifiers
+(31772, 4413, 11), -- M. Def. Modifiers
+(31772, 4414, 2), -- Armor Type
+(31772, 4415, 3), -- Weapon Type
+(31772, 4416, 19), -- Races
 -- Sonin
 (31773, 4045, 1), -- Resist Full Magic Attack
-(31773, 4408, 1), -- HP Increase (1x)
-(31773, 4409, 1), -- MP Increase (1x)
-(31773, 4410, 11), -- Average P. Atk.
-(31773, 4411, 11), -- Average M. Atk.
-(31773, 4412, 11), -- Average P. Def.
-(31773, 4413, 11), -- Average M. Def.
-(31773, 4414, 2), -- Standard Type
-(31773, 4415, 3), -- One-handed Sword
-(31773, 4416, 18), -- Dwarves
+(31773, 4408, 1), -- HP Modifiers
+(31773, 4409, 1), -- MP Modifiers
+(31773, 4410, 11), -- P. Atk. Modifiers
+(31773, 4411, 11), -- M. Atk. Modifiers
+(31773, 4412, 11), -- P. Def. Modifiers
+(31773, 4413, 11), -- M. Def. Modifiers
+(31773, 4414, 2), -- Armor Type
+(31773, 4415, 3), -- Weapon Type
+(31773, 4416, 18), -- Races
 -- Beryl the Cat
 (31774, 4045, 1), -- Resist Full Magic Attack
-(31774, 4408, 1), -- HP Increase (1x)
-(31774, 4409, 1), -- MP Increase (1x)
-(31774, 4410, 11), -- Average P. Atk.
-(31774, 4411, 11), -- Average M. Atk.
-(31774, 4412, 11), -- Average P. Def.
-(31774, 4413, 11), -- Average M. Def.
-(31774, 4414, 2), -- Standard Type
-(31774, 4415, 3), -- One-handed Sword
-(31774, 4416, 7), -- Spirits
+(31774, 4408, 1), -- HP Modifiers
+(31774, 4409, 1), -- MP Modifiers
+(31774, 4410, 11), -- P. Atk. Modifiers
+(31774, 4411, 11), -- M. Atk. Modifiers
+(31774, 4412, 11), -- P. Def. Modifiers
+(31774, 4413, 11), -- M. Def. Modifiers
+(31774, 4414, 2), -- Armor Type
+(31774, 4415, 3), -- Weapon Type
+(31774, 4416, 7), -- Races
 -- Adventure Guildsman
 (31775, 4045, 1), -- Resist Full Magic Attack
-(31775, 4408, 1), -- HP Increase (1x)
-(31775, 4409, 1), -- MP Increase (1x)
-(31775, 4410, 11), -- Average P. Atk.
-(31775, 4411, 11), -- Average M. Atk.
-(31775, 4412, 11), -- Average P. Def.
-(31775, 4413, 11), -- Average M. Def.
-(31775, 4414, 2), -- Standard Type
-(31775, 4415, 3), -- One-handed Sword
-(31775, 4416, 14), -- Humans
+(31775, 4408, 1), -- HP Modifiers
+(31775, 4409, 1), -- MP Modifiers
+(31775, 4410, 11), -- P. Atk. Modifiers
+(31775, 4411, 11), -- M. Atk. Modifiers
+(31775, 4412, 11), -- P. Def. Modifiers
+(31775, 4413, 11), -- M. Def. Modifiers
+(31775, 4414, 2), -- Armor Type
+(31775, 4415, 3), -- Weapon Type
+(31775, 4416, 14), -- Races
 -- Adventure Guildsman
 (31776, 4045, 1), -- Resist Full Magic Attack
-(31776, 4408, 1), -- HP Increase (1x)
-(31776, 4409, 1), -- MP Increase (1x)
-(31776, 4410, 11), -- Average P. Atk.
-(31776, 4411, 11), -- Average M. Atk.
-(31776, 4412, 11), -- Average P. Def.
-(31776, 4413, 11), -- Average M. Def.
-(31776, 4414, 2), -- Standard Type
-(31776, 4415, 3), -- One-handed Sword
-(31776, 4416, 14), -- Humans
+(31776, 4408, 1), -- HP Modifiers
+(31776, 4409, 1), -- MP Modifiers
+(31776, 4410, 11), -- P. Atk. Modifiers
+(31776, 4411, 11), -- M. Atk. Modifiers
+(31776, 4412, 11), -- P. Def. Modifiers
+(31776, 4413, 11), -- M. Def. Modifiers
+(31776, 4414, 2), -- Armor Type
+(31776, 4415, 3), -- Weapon Type
+(31776, 4416, 14), -- Races
 -- Adventure Guildsman
 (31777, 4045, 1), -- Resist Full Magic Attack
-(31777, 4408, 1), -- HP Increase (1x)
-(31777, 4409, 1), -- MP Increase (1x)
-(31777, 4410, 11), -- Average P. Atk.
-(31777, 4411, 11), -- Average M. Atk.
-(31777, 4412, 11), -- Average P. Def.
-(31777, 4413, 11), -- Average M. Def.
-(31777, 4414, 2), -- Standard Type
-(31777, 4415, 3), -- One-handed Sword
-(31777, 4416, 16), -- Dark Elves
+(31777, 4408, 1), -- HP Modifiers
+(31777, 4409, 1), -- MP Modifiers
+(31777, 4410, 11), -- P. Atk. Modifiers
+(31777, 4411, 11), -- M. Atk. Modifiers
+(31777, 4412, 11), -- P. Def. Modifiers
+(31777, 4413, 11), -- M. Def. Modifiers
+(31777, 4414, 2), -- Armor Type
+(31777, 4415, 3), -- Weapon Type
+(31777, 4416, 16), -- Races
 -- Adventure Guildsman
 (31778, 4045, 1), -- Resist Full Magic Attack
-(31778, 4408, 1), -- HP Increase (1x)
-(31778, 4409, 1), -- MP Increase (1x)
-(31778, 4410, 11), -- Average P. Atk.
-(31778, 4411, 11), -- Average M. Atk.
-(31778, 4412, 11), -- Average P. Def.
-(31778, 4413, 11), -- Average M. Def.
-(31778, 4414, 2), -- Standard Type
-(31778, 4415, 3), -- One-handed Sword
-(31778, 4416, 16), -- Dark Elves
+(31778, 4408, 1), -- HP Modifiers
+(31778, 4409, 1), -- MP Modifiers
+(31778, 4410, 11), -- P. Atk. Modifiers
+(31778, 4411, 11), -- M. Atk. Modifiers
+(31778, 4412, 11), -- P. Def. Modifiers
+(31778, 4413, 11), -- M. Def. Modifiers
+(31778, 4414, 2), -- Armor Type
+(31778, 4415, 3), -- Weapon Type
+(31778, 4416, 16), -- Races
 -- Adventure Guildsman
 (31779, 4045, 1), -- Resist Full Magic Attack
-(31779, 4408, 1), -- HP Increase (1x)
-(31779, 4409, 1), -- MP Increase (1x)
-(31779, 4410, 11), -- Average P. Atk.
-(31779, 4411, 11), -- Average M. Atk.
-(31779, 4412, 11), -- Average P. Def.
-(31779, 4413, 11), -- Average M. Def.
-(31779, 4414, 2), -- Standard Type
-(31779, 4415, 3), -- One-handed Sword
-(31779, 4416, 16), -- Dark Elves
+(31779, 4408, 1), -- HP Modifiers
+(31779, 4409, 1), -- MP Modifiers
+(31779, 4410, 11), -- P. Atk. Modifiers
+(31779, 4411, 11), -- M. Atk. Modifiers
+(31779, 4412, 11), -- P. Def. Modifiers
+(31779, 4413, 11), -- M. Def. Modifiers
+(31779, 4414, 2), -- Armor Type
+(31779, 4415, 3), -- Weapon Type
+(31779, 4416, 16), -- Races
 -- Adventure Guildsman
 (31780, 4045, 1), -- Resist Full Magic Attack
-(31780, 4408, 1), -- HP Increase (1x)
-(31780, 4409, 1), -- MP Increase (1x)
-(31780, 4410, 11), -- Average P. Atk.
-(31780, 4411, 11), -- Average M. Atk.
-(31780, 4412, 11), -- Average P. Def.
-(31780, 4413, 11), -- Average M. Def.
-(31780, 4414, 2), -- Standard Type
-(31780, 4415, 3), -- One-handed Sword
-(31780, 4416, 15), -- Elves
+(31780, 4408, 1), -- HP Modifiers
+(31780, 4409, 1), -- MP Modifiers
+(31780, 4410, 11), -- P. Atk. Modifiers
+(31780, 4411, 11), -- M. Atk. Modifiers
+(31780, 4412, 11), -- P. Def. Modifiers
+(31780, 4413, 11), -- M. Def. Modifiers
+(31780, 4414, 2), -- Armor Type
+(31780, 4415, 3), -- Weapon Type
+(31780, 4416, 15), -- Races
 -- Adventure Guildsman
 (31781, 4045, 1), -- Resist Full Magic Attack
-(31781, 4408, 1), -- HP Increase (1x)
-(31781, 4409, 1), -- MP Increase (1x)
-(31781, 4410, 11), -- Average P. Atk.
-(31781, 4411, 11), -- Average M. Atk.
-(31781, 4412, 11), -- Average P. Def.
-(31781, 4413, 11), -- Average M. Def.
-(31781, 4414, 2), -- Standard Type
-(31781, 4415, 3), -- One-handed Sword
-(31781, 4416, 15), -- Elves
+(31781, 4408, 1), -- HP Modifiers
+(31781, 4409, 1), -- MP Modifiers
+(31781, 4410, 11), -- P. Atk. Modifiers
+(31781, 4411, 11), -- M. Atk. Modifiers
+(31781, 4412, 11), -- P. Def. Modifiers
+(31781, 4413, 11), -- M. Def. Modifiers
+(31781, 4414, 2), -- Armor Type
+(31781, 4415, 3), -- Weapon Type
+(31781, 4416, 15), -- Races
 -- Adventure Guildsman
 (31782, 4045, 1), -- Resist Full Magic Attack
-(31782, 4408, 1), -- HP Increase (1x)
-(31782, 4409, 1), -- MP Increase (1x)
-(31782, 4410, 11), -- Average P. Atk.
-(31782, 4411, 11), -- Average M. Atk.
-(31782, 4412, 11), -- Average P. Def.
-(31782, 4413, 11), -- Average M. Def.
-(31782, 4414, 2), -- Standard Type
-(31782, 4415, 3), -- One-handed Sword
-(31782, 4416, 18), -- Dwarves
+(31782, 4408, 1), -- HP Modifiers
+(31782, 4409, 1), -- MP Modifiers
+(31782, 4410, 11), -- P. Atk. Modifiers
+(31782, 4411, 11), -- M. Atk. Modifiers
+(31782, 4412, 11), -- P. Def. Modifiers
+(31782, 4413, 11), -- M. Def. Modifiers
+(31782, 4414, 2), -- Armor Type
+(31782, 4415, 3), -- Weapon Type
+(31782, 4416, 18), -- Races
 -- Adventure Guildsman
 (31783, 4045, 1), -- Resist Full Magic Attack
-(31783, 4408, 1), -- HP Increase (1x)
-(31783, 4409, 1), -- MP Increase (1x)
-(31783, 4410, 11), -- Average P. Atk.
-(31783, 4411, 11), -- Average M. Atk.
-(31783, 4412, 11), -- Average P. Def.
-(31783, 4413, 11), -- Average M. Def.
-(31783, 4414, 2), -- Standard Type
-(31783, 4415, 3), -- One-handed Sword
-(31783, 4416, 18), -- Dwarves
+(31783, 4408, 1), -- HP Modifiers
+(31783, 4409, 1), -- MP Modifiers
+(31783, 4410, 11), -- P. Atk. Modifiers
+(31783, 4411, 11), -- M. Atk. Modifiers
+(31783, 4412, 11), -- P. Def. Modifiers
+(31783, 4413, 11), -- M. Def. Modifiers
+(31783, 4414, 2), -- Armor Type
+(31783, 4415, 3), -- Weapon Type
+(31783, 4416, 18), -- Races
 -- Adventure Guildsman
 (31784, 4045, 1), -- Resist Full Magic Attack
-(31784, 4408, 1), -- HP Increase (1x)
-(31784, 4409, 1), -- MP Increase (1x)
-(31784, 4410, 11), -- Average P. Atk.
-(31784, 4411, 11), -- Average M. Atk.
-(31784, 4412, 11), -- Average P. Def.
-(31784, 4413, 11), -- Average M. Def.
-(31784, 4414, 2), -- Standard Type
-(31784, 4415, 3), -- One-handed Sword
-(31784, 4416, 17), -- Orcs
+(31784, 4408, 1), -- HP Modifiers
+(31784, 4409, 1), -- MP Modifiers
+(31784, 4410, 11), -- P. Atk. Modifiers
+(31784, 4411, 11), -- M. Atk. Modifiers
+(31784, 4412, 11), -- P. Def. Modifiers
+(31784, 4413, 11), -- M. Def. Modifiers
+(31784, 4414, 2), -- Armor Type
+(31784, 4415, 3), -- Weapon Type
+(31784, 4416, 17), -- Races
 -- Adventure Guildsman
 (31785, 4045, 1), -- Resist Full Magic Attack
-(31785, 4408, 1), -- HP Increase (1x)
-(31785, 4409, 1), -- MP Increase (1x)
-(31785, 4410, 11), -- Average P. Atk.
-(31785, 4411, 11), -- Average M. Atk.
-(31785, 4412, 11), -- Average P. Def.
-(31785, 4413, 11), -- Average M. Def.
-(31785, 4414, 2), -- Standard Type
-(31785, 4415, 3), -- One-handed Sword
-(31785, 4416, 17), -- Orcs
+(31785, 4408, 1), -- HP Modifiers
+(31785, 4409, 1), -- MP Modifiers
+(31785, 4410, 11), -- P. Atk. Modifiers
+(31785, 4411, 11), -- M. Atk. Modifiers
+(31785, 4412, 11), -- P. Def. Modifiers
+(31785, 4413, 11), -- M. Def. Modifiers
+(31785, 4414, 2), -- Armor Type
+(31785, 4415, 3), -- Weapon Type
+(31785, 4416, 17), -- Races
 -- Adventure Guildsman
 (31786, 4045, 1), -- Resist Full Magic Attack
-(31786, 4408, 1), -- HP Increase (1x)
-(31786, 4409, 1), -- MP Increase (1x)
-(31786, 4410, 11), -- Average P. Atk.
-(31786, 4411, 11), -- Average M. Atk.
-(31786, 4412, 11), -- Average P. Def.
-(31786, 4413, 11), -- Average M. Def.
-(31786, 4414, 2), -- Standard Type
-(31786, 4415, 3), -- One-handed Sword
-(31786, 4416, 17), -- Orcs
+(31786, 4408, 1), -- HP Modifiers
+(31786, 4409, 1), -- MP Modifiers
+(31786, 4410, 11), -- P. Atk. Modifiers
+(31786, 4411, 11), -- M. Atk. Modifiers
+(31786, 4412, 11), -- P. Def. Modifiers
+(31786, 4413, 11), -- M. Def. Modifiers
+(31786, 4414, 2), -- Armor Type
+(31786, 4415, 3), -- Weapon Type
+(31786, 4416, 17), -- Races
 -- Adventure Guildsman
 (31787, 4045, 1), -- Resist Full Magic Attack
-(31787, 4408, 1), -- HP Increase (1x)
-(31787, 4409, 1), -- MP Increase (1x)
-(31787, 4410, 11), -- Average P. Atk.
-(31787, 4411, 11), -- Average M. Atk.
-(31787, 4412, 11), -- Average P. Def.
-(31787, 4413, 11), -- Average M. Def.
-(31787, 4414, 2), -- Standard Type
-(31787, 4415, 3), -- One-handed Sword
-(31787, 4416, 14), -- Humans
+(31787, 4408, 1), -- HP Modifiers
+(31787, 4409, 1), -- MP Modifiers
+(31787, 4410, 11), -- P. Atk. Modifiers
+(31787, 4411, 11), -- M. Atk. Modifiers
+(31787, 4412, 11), -- P. Def. Modifiers
+(31787, 4413, 11), -- M. Def. Modifiers
+(31787, 4414, 2), -- Armor Type
+(31787, 4415, 3), -- Weapon Type
+(31787, 4416, 14), -- Races
 -- Adventure Guildsman
 (31788, 4045, 1), -- Resist Full Magic Attack
-(31788, 4408, 1), -- HP Increase (1x)
-(31788, 4409, 1), -- MP Increase (1x)
-(31788, 4410, 11), -- Average P. Atk.
-(31788, 4411, 11), -- Average M. Atk.
-(31788, 4412, 11), -- Average P. Def.
-(31788, 4413, 11), -- Average M. Def.
-(31788, 4414, 2), -- Standard Type
-(31788, 4415, 3), -- One-handed Sword
-(31788, 4416, 17), -- Orcs
+(31788, 4408, 1), -- HP Modifiers
+(31788, 4409, 1), -- MP Modifiers
+(31788, 4410, 11), -- P. Atk. Modifiers
+(31788, 4411, 11), -- M. Atk. Modifiers
+(31788, 4412, 11), -- P. Def. Modifiers
+(31788, 4413, 11), -- M. Def. Modifiers
+(31788, 4414, 2), -- Armor Type
+(31788, 4415, 3), -- Weapon Type
+(31788, 4416, 17), -- Races
 -- Adventure Guildsman
 (31789, 4045, 1), -- Resist Full Magic Attack
-(31789, 4408, 1), -- HP Increase (1x)
-(31789, 4409, 1), -- MP Increase (1x)
-(31789, 4410, 11), -- Average P. Atk.
-(31789, 4411, 11), -- Average M. Atk.
-(31789, 4412, 11), -- Average P. Def.
-(31789, 4413, 11), -- Average M. Def.
-(31789, 4414, 2), -- Standard Type
-(31789, 4415, 3), -- One-handed Sword
-(31789, 4416, 18), -- Dwarves
+(31789, 4408, 1), -- HP Modifiers
+(31789, 4409, 1), -- MP Modifiers
+(31789, 4410, 11), -- P. Atk. Modifiers
+(31789, 4411, 11), -- M. Atk. Modifiers
+(31789, 4412, 11), -- P. Def. Modifiers
+(31789, 4413, 11), -- M. Def. Modifiers
+(31789, 4414, 2), -- Armor Type
+(31789, 4415, 3), -- Weapon Type
+(31789, 4416, 18), -- Races
 -- Adventure Guildsman
 (31790, 4045, 1), -- Resist Full Magic Attack
-(31790, 4408, 1), -- HP Increase (1x)
-(31790, 4409, 1), -- MP Increase (1x)
-(31790, 4410, 11), -- Average P. Atk.
-(31790, 4411, 11), -- Average M. Atk.
-(31790, 4412, 11), -- Average P. Def.
-(31790, 4413, 11), -- Average M. Def.
-(31790, 4414, 2), -- Standard Type
-(31790, 4415, 3), -- One-handed Sword
-(31790, 4416, 15), -- Elves
+(31790, 4408, 1), -- HP Modifiers
+(31790, 4409, 1), -- MP Modifiers
+(31790, 4410, 11), -- P. Atk. Modifiers
+(31790, 4411, 11), -- M. Atk. Modifiers
+(31790, 4412, 11), -- P. Def. Modifiers
+(31790, 4413, 11), -- M. Def. Modifiers
+(31790, 4414, 2), -- Armor Type
+(31790, 4415, 3), -- Weapon Type
+(31790, 4416, 15), -- Races
 -- Adventure Guildsman
 (31791, 4045, 1), -- Resist Full Magic Attack
-(31791, 4408, 1), -- HP Increase (1x)
-(31791, 4409, 1), -- MP Increase (1x)
-(31791, 4410, 11), -- Average P. Atk.
-(31791, 4411, 11), -- Average M. Atk.
-(31791, 4412, 11), -- Average P. Def.
-(31791, 4413, 11), -- Average M. Def.
-(31791, 4414, 2), -- Standard Type
-(31791, 4415, 3), -- One-handed Sword
-(31791, 4416, 16), -- Dark Elves
+(31791, 4408, 1), -- HP Modifiers
+(31791, 4409, 1), -- MP Modifiers
+(31791, 4410, 11), -- P. Atk. Modifiers
+(31791, 4411, 11), -- M. Atk. Modifiers
+(31791, 4412, 11), -- P. Def. Modifiers
+(31791, 4413, 11), -- M. Def. Modifiers
+(31791, 4414, 2), -- Armor Type
+(31791, 4415, 3), -- Weapon Type
+(31791, 4416, 16), -- Races
 -- Adventure Guildsman
 (31792, 4045, 1), -- Resist Full Magic Attack
-(31792, 4408, 1), -- HP Increase (1x)
-(31792, 4409, 1), -- MP Increase (1x)
-(31792, 4410, 11), -- Average P. Atk.
-(31792, 4411, 11), -- Average M. Atk.
-(31792, 4412, 11), -- Average P. Def.
-(31792, 4413, 11), -- Average M. Def.
-(31792, 4414, 2), -- Standard Type
-(31792, 4415, 3), -- One-handed Sword
-(31792, 4416, 15), -- Elves
+(31792, 4408, 1), -- HP Modifiers
+(31792, 4409, 1), -- MP Modifiers
+(31792, 4410, 11), -- P. Atk. Modifiers
+(31792, 4411, 11), -- M. Atk. Modifiers
+(31792, 4412, 11), -- P. Def. Modifiers
+(31792, 4413, 11), -- M. Def. Modifiers
+(31792, 4414, 2), -- Armor Type
+(31792, 4415, 3), -- Weapon Type
+(31792, 4416, 15), -- Races
 -- Adventure Guildsman
 (31793, 4045, 1), -- Resist Full Magic Attack
-(31793, 4408, 1), -- HP Increase (1x)
-(31793, 4409, 1), -- MP Increase (1x)
-(31793, 4410, 11), -- Average P. Atk.
-(31793, 4411, 11), -- Average M. Atk.
-(31793, 4412, 11), -- Average P. Def.
-(31793, 4413, 11), -- Average M. Def.
-(31793, 4414, 2), -- Standard Type
-(31793, 4415, 3), -- One-handed Sword
-(31793, 4416, 16), -- Dark Elves
+(31793, 4408, 1), -- HP Modifiers
+(31793, 4409, 1), -- MP Modifiers
+(31793, 4410, 11), -- P. Atk. Modifiers
+(31793, 4411, 11), -- M. Atk. Modifiers
+(31793, 4412, 11), -- P. Def. Modifiers
+(31793, 4413, 11), -- M. Def. Modifiers
+(31793, 4414, 2), -- Armor Type
+(31793, 4415, 3), -- Weapon Type
+(31793, 4416, 16), -- Races
 -- Adventure Guildsman
 (31794, 4045, 1), -- Resist Full Magic Attack
-(31794, 4408, 1), -- HP Increase (1x)
-(31794, 4409, 1), -- MP Increase (1x)
-(31794, 4410, 11), -- Average P. Atk.
-(31794, 4411, 11), -- Average M. Atk.
-(31794, 4412, 11), -- Average P. Def.
-(31794, 4413, 11), -- Average M. Def.
-(31794, 4414, 2), -- Standard Type
-(31794, 4415, 3), -- One-handed Sword
-(31794, 4416, 15), -- Elves
+(31794, 4408, 1), -- HP Modifiers
+(31794, 4409, 1), -- MP Modifiers
+(31794, 4410, 11), -- P. Atk. Modifiers
+(31794, 4411, 11), -- M. Atk. Modifiers
+(31794, 4412, 11), -- P. Def. Modifiers
+(31794, 4413, 11), -- M. Def. Modifiers
+(31794, 4414, 2), -- Armor Type
+(31794, 4415, 3), -- Weapon Type
+(31794, 4416, 15), -- Races
 -- Adventure Guildsman
 (31795, 4045, 1), -- Resist Full Magic Attack
-(31795, 4408, 1), -- HP Increase (1x)
-(31795, 4409, 1), -- MP Increase (1x)
-(31795, 4410, 11), -- Average P. Atk.
-(31795, 4411, 11), -- Average M. Atk.
-(31795, 4412, 11), -- Average P. Def.
-(31795, 4413, 11), -- Average M. Def.
-(31795, 4414, 2), -- Standard Type
-(31795, 4415, 3), -- One-handed Sword
-(31795, 4416, 17), -- Orcs
+(31795, 4408, 1), -- HP Modifiers
+(31795, 4409, 1), -- MP Modifiers
+(31795, 4410, 11), -- P. Atk. Modifiers
+(31795, 4411, 11), -- M. Atk. Modifiers
+(31795, 4412, 11), -- P. Def. Modifiers
+(31795, 4413, 11), -- M. Def. Modifiers
+(31795, 4414, 2), -- Armor Type
+(31795, 4415, 3), -- Weapon Type
+(31795, 4416, 17), -- Races
 -- Adventure Guildsman
 (31796, 4045, 1), -- Resist Full Magic Attack
-(31796, 4408, 1), -- HP Increase (1x)
-(31796, 4409, 1), -- MP Increase (1x)
-(31796, 4410, 11), -- Average P. Atk.
-(31796, 4411, 11), -- Average M. Atk.
-(31796, 4412, 11), -- Average P. Def.
-(31796, 4413, 11), -- Average M. Def.
-(31796, 4414, 2), -- Standard Type
-(31796, 4415, 3), -- One-handed Sword
-(31796, 4416, 18), -- Dwarves
+(31796, 4408, 1), -- HP Modifiers
+(31796, 4409, 1), -- MP Modifiers
+(31796, 4410, 11), -- P. Atk. Modifiers
+(31796, 4411, 11), -- M. Atk. Modifiers
+(31796, 4412, 11), -- P. Def. Modifiers
+(31796, 4413, 11), -- M. Def. Modifiers
+(31796, 4414, 2), -- Armor Type
+(31796, 4415, 3), -- Weapon Type
+(31796, 4416, 18), -- Races
 -- Adventure Guildsman
 (31797, 4045, 1), -- Resist Full Magic Attack
-(31797, 4408, 1), -- HP Increase (1x)
-(31797, 4409, 1), -- MP Increase (1x)
-(31797, 4410, 11), -- Average P. Atk.
-(31797, 4411, 11), -- Average M. Atk.
-(31797, 4412, 11), -- Average P. Def.
-(31797, 4413, 11), -- Average M. Def.
-(31797, 4414, 2), -- Standard Type
-(31797, 4415, 3), -- One-handed Sword
-(31797, 4416, 18), -- Dwarves
+(31797, 4408, 1), -- HP Modifiers
+(31797, 4409, 1), -- MP Modifiers
+(31797, 4410, 11), -- P. Atk. Modifiers
+(31797, 4411, 11), -- M. Atk. Modifiers
+(31797, 4412, 11), -- P. Def. Modifiers
+(31797, 4413, 11), -- M. Def. Modifiers
+(31797, 4414, 2), -- Armor Type
+(31797, 4415, 3), -- Weapon Type
+(31797, 4416, 18), -- Races
 -- Adventure Guildsman
 (31798, 4045, 1), -- Resist Full Magic Attack
-(31798, 4408, 1), -- HP Increase (1x)
-(31798, 4409, 1), -- MP Increase (1x)
-(31798, 4410, 11), -- Average P. Atk.
-(31798, 4411, 11), -- Average M. Atk.
-(31798, 4412, 11), -- Average P. Def.
-(31798, 4413, 11), -- Average M. Def.
-(31798, 4414, 2), -- Standard Type
-(31798, 4415, 3), -- One-handed Sword
-(31798, 4416, 14), -- Humans
+(31798, 4408, 1), -- HP Modifiers
+(31798, 4409, 1), -- MP Modifiers
+(31798, 4410, 11); -- P. Atk. Modifiers
+
+INSERT INTO `npcskills` VALUES
+(31798, 4411, 11), -- M. Atk. Modifiers
+(31798, 4412, 11), -- P. Def. Modifiers
+(31798, 4413, 11), -- M. Def. Modifiers
+(31798, 4414, 2), -- Armor Type
+(31798, 4415, 3), -- Weapon Type
+(31798, 4416, 14), -- Races
 -- Adventure Guildsman
 (31799, 4045, 1), -- Resist Full Magic Attack
-(31799, 4408, 1), -- HP Increase (1x)
-(31799, 4409, 1), -- MP Increase (1x)
-(31799, 4410, 11), -- Average P. Atk.
-(31799, 4411, 11), -- Average M. Atk.
-(31799, 4412, 11), -- Average P. Def.
-(31799, 4413, 11), -- Average M. Def.
-(31799, 4414, 2), -- Standard Type
-(31799, 4415, 3), -- One-handed Sword
-(31799, 4416, 17), -- Orcs
+(31799, 4408, 1), -- HP Modifiers
+(31799, 4409, 1), -- MP Modifiers
+(31799, 4410, 11), -- P. Atk. Modifiers
+(31799, 4411, 11), -- M. Atk. Modifiers
+(31799, 4412, 11), -- P. Def. Modifiers
+(31799, 4413, 11), -- M. Def. Modifiers
+(31799, 4414, 2), -- Armor Type
+(31799, 4415, 3), -- Weapon Type
+(31799, 4416, 17), -- Races
 -- Adventure Guildsman
 (31800, 4045, 1), -- Resist Full Magic Attack
-(31800, 4408, 1), -- HP Increase (1x)
-(31800, 4409, 1), -- MP Increase (1x)
-(31800, 4410, 11), -- Average P. Atk.
-(31800, 4411, 11), -- Average M. Atk.
-(31800, 4412, 11), -- Average P. Def.
-(31800, 4413, 11), -- Average M. Def.
-(31800, 4414, 2), -- Standard Type
-(31800, 4415, 3), -- One-handed Sword
-(31800, 4416, 14), -- Humans
+(31800, 4408, 1), -- HP Modifiers
+(31800, 4409, 1), -- MP Modifiers
+(31800, 4410, 11), -- P. Atk. Modifiers
+(31800, 4411, 11), -- M. Atk. Modifiers
+(31800, 4412, 11), -- P. Def. Modifiers
+(31800, 4413, 11), -- M. Def. Modifiers
+(31800, 4414, 2), -- Armor Type
+(31800, 4415, 3), -- Weapon Type
+(31800, 4416, 14), -- Races
 -- Adventure Guildsman
 (31801, 4045, 1), -- Resist Full Magic Attack
-(31801, 4408, 1), -- HP Increase (1x)
-(31801, 4409, 1), -- MP Increase (1x)
-(31801, 4410, 11), -- Average P. Atk.
-(31801, 4411, 11), -- Average M. Atk.
-(31801, 4412, 11), -- Average P. Def.
-(31801, 4413, 11), -- Average M. Def.
-(31801, 4414, 2), -- Standard Type
-(31801, 4415, 3), -- One-handed Sword
-(31801, 4416, 14), -- Humans
+(31801, 4408, 1), -- HP Modifiers
+(31801, 4409, 1), -- MP Modifiers
+(31801, 4410, 11), -- P. Atk. Modifiers
+(31801, 4411, 11), -- M. Atk. Modifiers
+(31801, 4412, 11), -- P. Def. Modifiers
+(31801, 4413, 11), -- M. Def. Modifiers
+(31801, 4414, 2), -- Armor Type
+(31801, 4415, 3), -- Weapon Type
+(31801, 4416, 14), -- Races
 -- Adventure Guildsman
 (31802, 4045, 1), -- Resist Full Magic Attack
-(31802, 4408, 1), -- HP Increase (1x)
-(31802, 4409, 1), -- MP Increase (1x)
-(31802, 4410, 11), -- Average P. Atk.
-(31802, 4411, 11), -- Average M. Atk.
-(31802, 4412, 11), -- Average P. Def.
-(31802, 4413, 11), -- Average M. Def.
-(31802, 4414, 2), -- Standard Type
-(31802, 4415, 3), -- One-handed Sword
-(31802, 4416, 14), -- Humans
+(31802, 4408, 1), -- HP Modifiers
+(31802, 4409, 1), -- MP Modifiers
+(31802, 4410, 11), -- P. Atk. Modifiers
+(31802, 4411, 11), -- M. Atk. Modifiers
+(31802, 4412, 11), -- P. Def. Modifiers
+(31802, 4413, 11), -- M. Def. Modifiers
+(31802, 4414, 2), -- Armor Type
+(31802, 4415, 3), -- Weapon Type
+(31802, 4416, 14), -- Races
 -- Adventure Guildsman
 (31803, 4045, 1), -- Resist Full Magic Attack
-(31803, 4408, 1), -- HP Increase (1x)
-(31803, 4409, 1), -- MP Increase (1x)
-(31803, 4410, 11), -- Average P. Atk.
-(31803, 4411, 11), -- Average M. Atk.
-(31803, 4412, 11), -- Average P. Def.
-(31803, 4413, 11), -- Average M. Def.
-(31803, 4414, 2), -- Standard Type
-(31803, 4415, 3), -- One-handed Sword
-(31803, 4416, 17), -- Orcs
+(31803, 4408, 1), -- HP Modifiers
+(31803, 4409, 1), -- MP Modifiers
+(31803, 4410, 11), -- P. Atk. Modifiers
+(31803, 4411, 11), -- M. Atk. Modifiers
+(31803, 4412, 11), -- P. Def. Modifiers
+(31803, 4413, 11), -- M. Def. Modifiers
+(31803, 4414, 2), -- Armor Type
+(31803, 4415, 3), -- Weapon Type
+(31803, 4416, 17), -- Races
 -- Adventure Guildsman
 (31804, 4045, 1), -- Resist Full Magic Attack
-(31804, 4408, 1), -- HP Increase (1x)
-(31804, 4409, 1), -- MP Increase (1x)
-(31804, 4410, 11), -- Average P. Atk.
-(31804, 4411, 11), -- Average M. Atk.
-(31804, 4412, 11), -- Average P. Def.
-(31804, 4413, 11), -- Average M. Def.
-(31804, 4414, 2), -- Standard Type
-(31804, 4415, 3), -- One-handed Sword
-(31804, 4416, 16), -- Dark Elves
+(31804, 4408, 1), -- HP Modifiers
+(31804, 4409, 1), -- MP Modifiers
+(31804, 4410, 11), -- P. Atk. Modifiers
+(31804, 4411, 11), -- M. Atk. Modifiers
+(31804, 4412, 11), -- P. Def. Modifiers
+(31804, 4413, 11), -- M. Def. Modifiers
+(31804, 4414, 2), -- Armor Type
+(31804, 4415, 3), -- Weapon Type
+(31804, 4416, 16), -- Races
 -- Adventure Guildsman
 (31805, 4045, 1), -- Resist Full Magic Attack
-(31805, 4408, 1), -- HP Increase (1x)
-(31805, 4409, 1), -- MP Increase (1x)
-(31805, 4410, 11), -- Average P. Atk.
-(31805, 4411, 11), -- Average M. Atk.
-(31805, 4412, 11), -- Average P. Def.
-(31805, 4413, 11), -- Average M. Def.
-(31805, 4414, 2), -- Standard Type
-(31805, 4415, 3), -- One-handed Sword
-(31805, 4416, 15), -- Elves
+(31805, 4408, 1), -- HP Modifiers
+(31805, 4409, 1), -- MP Modifiers
+(31805, 4410, 11), -- P. Atk. Modifiers
+(31805, 4411, 11), -- M. Atk. Modifiers
+(31805, 4412, 11), -- P. Def. Modifiers
+(31805, 4413, 11), -- M. Def. Modifiers
+(31805, 4414, 2), -- Armor Type
+(31805, 4415, 3), -- Weapon Type
+(31805, 4416, 15), -- Races
 -- Adventure Guildsman
 (31806, 4045, 1), -- Resist Full Magic Attack
-(31806, 4408, 1), -- HP Increase (1x)
-(31806, 4409, 1), -- MP Increase (1x)
-(31806, 4410, 11), -- Average P. Atk.
-(31806, 4411, 11), -- Average M. Atk.
-(31806, 4412, 11), -- Average P. Def.
-(31806, 4413, 11), -- Average M. Def.
-(31806, 4414, 2), -- Standard Type
-(31806, 4415, 3), -- One-handed Sword
-(31806, 4416, 15), -- Elves
+(31806, 4408, 1), -- HP Modifiers
+(31806, 4409, 1), -- MP Modifiers
+(31806, 4410, 11), -- P. Atk. Modifiers
+(31806, 4411, 11), -- M. Atk. Modifiers
+(31806, 4412, 11), -- P. Def. Modifiers
+(31806, 4413, 11), -- M. Def. Modifiers
+(31806, 4414, 2), -- Armor Type
+(31806, 4415, 3), -- Weapon Type
+(31806, 4416, 15), -- Races
 -- Adventure Guildsman
 (31807, 4045, 1), -- Resist Full Magic Attack
-(31807, 4408, 1), -- HP Increase (1x)
-(31807, 4409, 1), -- MP Increase (1x)
-(31807, 4410, 11), -- Average P. Atk.
-(31807, 4411, 11), -- Average M. Atk.
-(31807, 4412, 11), -- Average P. Def.
-(31807, 4413, 11), -- Average M. Def.
-(31807, 4414, 2), -- Standard Type
-(31807, 4415, 3), -- One-handed Sword
-(31807, 4416, 18), -- Dwarves
+(31807, 4408, 1), -- HP Modifiers
+(31807, 4409, 1), -- MP Modifiers
+(31807, 4410, 11), -- P. Atk. Modifiers
+(31807, 4411, 11), -- M. Atk. Modifiers
+(31807, 4412, 11), -- P. Def. Modifiers
+(31807, 4413, 11), -- M. Def. Modifiers
+(31807, 4414, 2), -- Armor Type
+(31807, 4415, 3), -- Weapon Type
+(31807, 4416, 18), -- Races
 -- Adventure Guildsman
 (31808, 4045, 1), -- Resist Full Magic Attack
-(31808, 4408, 1), -- HP Increase (1x)
-(31808, 4409, 1), -- MP Increase (1x)
-(31808, 4410, 11), -- Average P. Atk.
-(31808, 4411, 11), -- Average M. Atk.
-(31808, 4412, 11), -- Average P. Def.
-(31808, 4413, 11), -- Average M. Def.
-(31808, 4414, 2), -- Standard Type
-(31808, 4415, 3), -- One-handed Sword
-(31808, 4416, 14), -- Humans
+(31808, 4408, 1), -- HP Modifiers
+(31808, 4409, 1), -- MP Modifiers
+(31808, 4410, 11), -- P. Atk. Modifiers
+(31808, 4411, 11), -- M. Atk. Modifiers
+(31808, 4412, 11), -- P. Def. Modifiers
+(31808, 4413, 11), -- M. Def. Modifiers
+(31808, 4414, 2), -- Armor Type
+(31808, 4415, 3), -- Weapon Type
+(31808, 4416, 14), -- Races
 -- Adventure Guildsman
 (31809, 4045, 1), -- Resist Full Magic Attack
-(31809, 4408, 1), -- HP Increase (1x)
-(31809, 4409, 1), -- MP Increase (1x)
-(31809, 4410, 11), -- Average P. Atk.
-(31809, 4411, 11), -- Average M. Atk.
-(31809, 4412, 11), -- Average P. Def.
-(31809, 4413, 11), -- Average M. Def.
-(31809, 4414, 2), -- Standard Type
-(31809, 4415, 3), -- One-handed Sword
-(31809, 4416, 17), -- Orcs
+(31809, 4408, 1), -- HP Modifiers
+(31809, 4409, 1), -- MP Modifiers
+(31809, 4410, 11), -- P. Atk. Modifiers
+(31809, 4411, 11), -- M. Atk. Modifiers
+(31809, 4412, 11), -- P. Def. Modifiers
+(31809, 4413, 11), -- M. Def. Modifiers
+(31809, 4414, 2), -- Armor Type
+(31809, 4415, 3), -- Weapon Type
+(31809, 4416, 17), -- Races
 -- Adventure Guildsman
 (31810, 4045, 1), -- Resist Full Magic Attack
-(31810, 4408, 1), -- HP Increase (1x)
-(31810, 4409, 1), -- MP Increase (1x)
-(31810, 4410, 11), -- Average P. Atk.
-(31810, 4411, 11), -- Average M. Atk.
-(31810, 4412, 11), -- Average P. Def.
-(31810, 4413, 11), -- Average M. Def.
-(31810, 4414, 2), -- Standard Type
-(31810, 4415, 3), -- One-handed Sword
-(31810, 4416, 16), -- Dark Elves
+(31810, 4408, 1), -- HP Modifiers
+(31810, 4409, 1), -- MP Modifiers
+(31810, 4410, 11), -- P. Atk. Modifiers
+(31810, 4411, 11), -- M. Atk. Modifiers
+(31810, 4412, 11), -- P. Def. Modifiers
+(31810, 4413, 11), -- M. Def. Modifiers
+(31810, 4414, 2), -- Armor Type
+(31810, 4415, 3), -- Weapon Type
+(31810, 4416, 16), -- Races
 -- Adventure Guildsman
 (31811, 4045, 1), -- Resist Full Magic Attack
-(31811, 4408, 1), -- HP Increase (1x)
-(31811, 4409, 1), -- MP Increase (1x)
-(31811, 4410, 11), -- Average P. Atk.
-(31811, 4411, 11), -- Average M. Atk.
-(31811, 4412, 11), -- Average P. Def.
-(31811, 4413, 11), -- Average M. Def.
-(31811, 4414, 2), -- Standard Type
-(31811, 4415, 3), -- One-handed Sword
-(31811, 4416, 15), -- Elves
+(31811, 4408, 1), -- HP Modifiers
+(31811, 4409, 1), -- MP Modifiers
+(31811, 4410, 11), -- P. Atk. Modifiers
+(31811, 4411, 11), -- M. Atk. Modifiers
+(31811, 4412, 11), -- P. Def. Modifiers
+(31811, 4413, 11), -- M. Def. Modifiers
+(31811, 4414, 2), -- Armor Type
+(31811, 4415, 3), -- Weapon Type
+(31811, 4416, 15), -- Races
 -- Adventure Guildsman
 (31812, 4045, 1), -- Resist Full Magic Attack
-(31812, 4408, 1), -- HP Increase (1x)
-(31812, 4409, 1), -- MP Increase (1x)
-(31812, 4410, 11), -- Average P. Atk.
-(31812, 4411, 11), -- Average M. Atk.
-(31812, 4412, 11), -- Average P. Def.
-(31812, 4413, 11), -- Average M. Def.
-(31812, 4414, 2), -- Standard Type
-(31812, 4415, 3), -- One-handed Sword
-(31812, 4416, 16), -- Dark Elves
+(31812, 4408, 1), -- HP Modifiers
+(31812, 4409, 1), -- MP Modifiers
+(31812, 4410, 11), -- P. Atk. Modifiers
+(31812, 4411, 11), -- M. Atk. Modifiers
+(31812, 4412, 11), -- P. Def. Modifiers
+(31812, 4413, 11), -- M. Def. Modifiers
+(31812, 4414, 2), -- Armor Type
+(31812, 4415, 3), -- Weapon Type
+(31812, 4416, 16), -- Races
 -- Adventure Guildsman
 (31813, 4045, 1), -- Resist Full Magic Attack
-(31813, 4408, 1), -- HP Increase (1x)
-(31813, 4409, 1), -- MP Increase (1x)
-(31813, 4410, 11), -- Average P. Atk.
-(31813, 4411, 11), -- Average M. Atk.
-(31813, 4412, 11), -- Average P. Def.
-(31813, 4413, 11), -- Average M. Def.
-(31813, 4414, 2), -- Standard Type
-(31813, 4415, 3), -- One-handed Sword
-(31813, 4416, 15), -- Elves
+(31813, 4408, 1), -- HP Modifiers
+(31813, 4409, 1), -- MP Modifiers
+(31813, 4410, 11), -- P. Atk. Modifiers
+(31813, 4411, 11), -- M. Atk. Modifiers
+(31813, 4412, 11), -- P. Def. Modifiers
+(31813, 4413, 11), -- M. Def. Modifiers
+(31813, 4414, 2), -- Armor Type
+(31813, 4415, 3), -- Weapon Type
+(31813, 4416, 15), -- Races
 -- Adventure Guildsman
 (31814, 4045, 1), -- Resist Full Magic Attack
-(31814, 4408, 1), -- HP Increase (1x)
-(31814, 4409, 1), -- MP Increase (1x)
-(31814, 4410, 11), -- Average P. Atk.
-(31814, 4411, 11), -- Average M. Atk.
-(31814, 4412, 11), -- Average P. Def.
-(31814, 4413, 11), -- Average M. Def.
-(31814, 4414, 2), -- Standard Type
-(31814, 4415, 3), -- One-handed Sword
-(31814, 4416, 18), -- Dwarves
+(31814, 4408, 1), -- HP Modifiers
+(31814, 4409, 1), -- MP Modifiers
+(31814, 4410, 11), -- P. Atk. Modifiers
+(31814, 4411, 11), -- M. Atk. Modifiers
+(31814, 4412, 11), -- P. Def. Modifiers
+(31814, 4413, 11), -- M. Def. Modifiers
+(31814, 4414, 2), -- Armor Type
+(31814, 4415, 3), -- Weapon Type
+(31814, 4416, 18), -- Races
 -- Adventure Guildsman
 (31815, 4045, 1), -- Resist Full Magic Attack
-(31815, 4408, 1), -- HP Increase (1x)
-(31815, 4409, 1), -- MP Increase (1x)
-(31815, 4410, 11), -- Average P. Atk.
-(31815, 4411, 11), -- Average M. Atk.
-(31815, 4412, 11), -- Average P. Def.
-(31815, 4413, 11), -- Average M. Def.
-(31815, 4414, 2), -- Standard Type
-(31815, 4415, 3), -- One-handed Sword
-(31815, 4416, 17), -- Orcs
+(31815, 4408, 1), -- HP Modifiers
+(31815, 4409, 1), -- MP Modifiers
+(31815, 4410, 11), -- P. Atk. Modifiers
+(31815, 4411, 11), -- M. Atk. Modifiers
+(31815, 4412, 11), -- P. Def. Modifiers
+(31815, 4413, 11), -- M. Def. Modifiers
+(31815, 4414, 2), -- Armor Type
+(31815, 4415, 3), -- Weapon Type
+(31815, 4416, 17), -- Races
 -- Adventure Guildsman
 (31816, 4045, 1), -- Resist Full Magic Attack
-(31816, 4408, 1), -- HP Increase (1x)
-(31816, 4409, 1), -- MP Increase (1x)
-(31816, 4410, 11), -- Average P. Atk.
-(31816, 4411, 11), -- Average M. Atk.
-(31816, 4412, 11), -- Average P. Def.
-(31816, 4413, 11), -- Average M. Def.
-(31816, 4414, 2), -- Standard Type
-(31816, 4415, 3), -- One-handed Sword
-(31816, 4416, 16), -- Dark Elves
+(31816, 4408, 1), -- HP Modifiers
+(31816, 4409, 1), -- MP Modifiers
+(31816, 4410, 11), -- P. Atk. Modifiers
+(31816, 4411, 11), -- M. Atk. Modifiers
+(31816, 4412, 11), -- P. Def. Modifiers
+(31816, 4413, 11), -- M. Def. Modifiers
+(31816, 4414, 2), -- Armor Type
+(31816, 4415, 3), -- Weapon Type
+(31816, 4416, 16), -- Races
 -- Adventure Guildsman
 (31817, 4045, 1), -- Resist Full Magic Attack
-(31817, 4408, 1), -- HP Increase (1x)
-(31817, 4409, 1), -- MP Increase (1x)
-(31817, 4410, 11), -- Average P. Atk.
-(31817, 4411, 11), -- Average M. Atk.
-(31817, 4412, 11), -- Average P. Def.
-(31817, 4413, 11), -- Average M. Def.
-(31817, 4414, 2), -- Standard Type
-(31817, 4415, 3), -- One-handed Sword
-(31817, 4416, 15), -- Elves
+(31817, 4408, 1), -- HP Modifiers
+(31817, 4409, 1), -- MP Modifiers
+(31817, 4410, 11), -- P. Atk. Modifiers
+(31817, 4411, 11), -- M. Atk. Modifiers
+(31817, 4412, 11), -- P. Def. Modifiers
+(31817, 4413, 11), -- M. Def. Modifiers
+(31817, 4414, 2), -- Armor Type
+(31817, 4415, 3), -- Weapon Type
+(31817, 4416, 15), -- Races
 -- Adventure Guildsman
 (31818, 4045, 1), -- Resist Full Magic Attack
-(31818, 4408, 1), -- HP Increase (1x)
-(31818, 4409, 1), -- MP Increase (1x)
-(31818, 4410, 11), -- Average P. Atk.
-(31818, 4411, 11), -- Average M. Atk.
-(31818, 4412, 11), -- Average P. Def.
-(31818, 4413, 11), -- Average M. Def.
-(31818, 4414, 2), -- Standard Type
-(31818, 4415, 3), -- One-handed Sword
-(31818, 4416, 14), -- Humans
+(31818, 4408, 1), -- HP Modifiers
+(31818, 4409, 1), -- MP Modifiers
+(31818, 4410, 11), -- P. Atk. Modifiers
+(31818, 4411, 11), -- M. Atk. Modifiers
+(31818, 4412, 11), -- P. Def. Modifiers
+(31818, 4413, 11), -- M. Def. Modifiers
+(31818, 4414, 2), -- Armor Type
+(31818, 4415, 3), -- Weapon Type
+(31818, 4416, 14), -- Races
 -- Adventure Guildsman
 (31819, 4045, 1), -- Resist Full Magic Attack
-(31819, 4408, 1), -- HP Increase (1x)
-(31819, 4409, 1), -- MP Increase (1x)
-(31819, 4410, 11), -- Average P. Atk.
-(31819, 4411, 11), -- Average M. Atk.
-(31819, 4412, 11), -- Average P. Def.
-(31819, 4413, 11), -- Average M. Def.
-(31819, 4414, 2), -- Standard Type
-(31819, 4415, 3), -- One-handed Sword
-(31819, 4416, 18), -- Dwarves
+(31819, 4408, 1), -- HP Modifiers
+(31819, 4409, 1), -- MP Modifiers
+(31819, 4410, 11), -- P. Atk. Modifiers
+(31819, 4411, 11), -- M. Atk. Modifiers
+(31819, 4412, 11), -- P. Def. Modifiers
+(31819, 4413, 11), -- M. Def. Modifiers
+(31819, 4414, 2), -- Armor Type
+(31819, 4415, 3), -- Weapon Type
+(31819, 4416, 18), -- Races
 -- Adventure Guildsman
 (31820, 4045, 1), -- Resist Full Magic Attack
-(31820, 4408, 1), -- HP Increase (1x)
-(31820, 4409, 1), -- MP Increase (1x)
-(31820, 4410, 11), -- Average P. Atk.
-(31820, 4411, 11), -- Average M. Atk.
-(31820, 4412, 11), -- Average P. Def.
-(31820, 4413, 11), -- Average M. Def.
-(31820, 4414, 2), -- Standard Type
-(31820, 4415, 3), -- One-handed Sword
-(31820, 4416, 15), -- Elves
+(31820, 4408, 1), -- HP Modifiers
+(31820, 4409, 1), -- MP Modifiers
+(31820, 4410, 11), -- P. Atk. Modifiers
+(31820, 4411, 11), -- M. Atk. Modifiers
+(31820, 4412, 11), -- P. Def. Modifiers
+(31820, 4413, 11), -- M. Def. Modifiers
+(31820, 4414, 2), -- Armor Type
+(31820, 4415, 3), -- Weapon Type
+(31820, 4416, 15), -- Races
 -- Adventure Guildsman
 (31821, 4045, 1), -- Resist Full Magic Attack
-(31821, 4408, 1), -- HP Increase (1x)
-(31821, 4409, 1), -- MP Increase (1x)
-(31821, 4410, 11), -- Average P. Atk.
-(31821, 4411, 11), -- Average M. Atk.
-(31821, 4412, 11), -- Average P. Def.
-(31821, 4413, 11), -- Average M. Def.
-(31821, 4414, 2), -- Standard Type
-(31821, 4415, 3), -- One-handed Sword
-(31821, 4416, 16), -- Dark Elves
+(31821, 4408, 1), -- HP Modifiers
+(31821, 4409, 1), -- MP Modifiers
+(31821, 4410, 11), -- P. Atk. Modifiers
+(31821, 4411, 11), -- M. Atk. Modifiers
+(31821, 4412, 11), -- P. Def. Modifiers
+(31821, 4413, 11), -- M. Def. Modifiers
+(31821, 4414, 2), -- Armor Type
+(31821, 4415, 3), -- Weapon Type
+(31821, 4416, 16), -- Races
 -- Adventure Guildsman
 (31822, 4045, 1), -- Resist Full Magic Attack
-(31822, 4408, 1), -- HP Increase (1x)
-(31822, 4409, 1), -- MP Increase (1x)
-(31822, 4410, 11), -- Average P. Atk.
-(31822, 4411, 11), -- Average M. Atk.
-(31822, 4412, 11), -- Average P. Def.
-(31822, 4413, 11), -- Average M. Def.
-(31822, 4414, 2), -- Standard Type
-(31822, 4415, 3), -- One-handed Sword
-(31822, 4416, 14), -- Humans
+(31822, 4408, 1), -- HP Modifiers
+(31822, 4409, 1), -- MP Modifiers
+(31822, 4410, 11), -- P. Atk. Modifiers
+(31822, 4411, 11), -- M. Atk. Modifiers
+(31822, 4412, 11), -- P. Def. Modifiers
+(31822, 4413, 11), -- M. Def. Modifiers
+(31822, 4414, 2), -- Armor Type
+(31822, 4415, 3), -- Weapon Type
+(31822, 4416, 14), -- Races
 -- Adventure Guildsman
 (31823, 4045, 1), -- Resist Full Magic Attack
-(31823, 4408, 1), -- HP Increase (1x)
-(31823, 4409, 1), -- MP Increase (1x)
-(31823, 4410, 11), -- Average P. Atk.
-(31823, 4411, 11), -- Average M. Atk.
-(31823, 4412, 11), -- Average P. Def.
-(31823, 4413, 11), -- Average M. Def.
-(31823, 4414, 2), -- Standard Type
-(31823, 4415, 3), -- One-handed Sword
-(31823, 4416, 15), -- Elves
+(31823, 4408, 1), -- HP Modifiers
+(31823, 4409, 1), -- MP Modifiers
+(31823, 4410, 11), -- P. Atk. Modifiers
+(31823, 4411, 11), -- M. Atk. Modifiers
+(31823, 4412, 11), -- P. Def. Modifiers
+(31823, 4413, 11), -- M. Def. Modifiers
+(31823, 4414, 2), -- Armor Type
+(31823, 4415, 3), -- Weapon Type
+(31823, 4416, 15), -- Races
 -- Adventure Guildsman
 (31824, 4045, 1), -- Resist Full Magic Attack
-(31824, 4408, 1), -- HP Increase (1x)
-(31824, 4409, 1), -- MP Increase (1x)
-(31824, 4410, 11), -- Average P. Atk.
-(31824, 4411, 11), -- Average M. Atk.
-(31824, 4412, 11), -- Average P. Def.
-(31824, 4413, 11), -- Average M. Def.
-(31824, 4414, 2), -- Standard Type
-(31824, 4415, 3), -- One-handed Sword
-(31824, 4416, 18), -- Dwarves
+(31824, 4408, 1), -- HP Modifiers
+(31824, 4409, 1), -- MP Modifiers
+(31824, 4410, 11), -- P. Atk. Modifiers
+(31824, 4411, 11), -- M. Atk. Modifiers
+(31824, 4412, 11), -- P. Def. Modifiers
+(31824, 4413, 11), -- M. Def. Modifiers
+(31824, 4414, 2), -- Armor Type
+(31824, 4415, 3), -- Weapon Type
+(31824, 4416, 18), -- Races
 -- Adventure Guildsman
 (31825, 4045, 1), -- Resist Full Magic Attack
-(31825, 4408, 1), -- HP Increase (1x)
-(31825, 4409, 1), -- MP Increase (1x)
-(31825, 4410, 11), -- Average P. Atk.
-(31825, 4411, 11), -- Average M. Atk.
-(31825, 4412, 11), -- Average P. Def.
-(31825, 4413, 11), -- Average M. Def.
-(31825, 4414, 2), -- Standard Type
-(31825, 4415, 3), -- One-handed Sword
-(31825, 4416, 16), -- Dark Elves
+(31825, 4408, 1), -- HP Modifiers
+(31825, 4409, 1), -- MP Modifiers
+(31825, 4410, 11), -- P. Atk. Modifiers
+(31825, 4411, 11), -- M. Atk. Modifiers
+(31825, 4412, 11), -- P. Def. Modifiers
+(31825, 4413, 11), -- M. Def. Modifiers
+(31825, 4414, 2), -- Armor Type
+(31825, 4415, 3), -- Weapon Type
+(31825, 4416, 16), -- Races
 -- Adventure Guildsman
 (31826, 4045, 1), -- Resist Full Magic Attack
-(31826, 4408, 1), -- HP Increase (1x)
-(31826, 4409, 1), -- MP Increase (1x)
-(31826, 4410, 11), -- Average P. Atk.
-(31826, 4411, 11), -- Average M. Atk.
-(31826, 4412, 11), -- Average P. Def.
-(31826, 4413, 11), -- Average M. Def.
-(31826, 4414, 2), -- Standard Type
-(31826, 4415, 3), -- One-handed Sword
-(31826, 4416, 15), -- Elves
+(31826, 4408, 1), -- HP Modifiers
+(31826, 4409, 1), -- MP Modifiers
+(31826, 4410, 11), -- P. Atk. Modifiers
+(31826, 4411, 11), -- M. Atk. Modifiers
+(31826, 4412, 11), -- P. Def. Modifiers
+(31826, 4413, 11), -- M. Def. Modifiers
+(31826, 4414, 2), -- Armor Type
+(31826, 4415, 3), -- Weapon Type
+(31826, 4416, 15), -- Races
 -- Adventure Guildsman
 (31827, 4045, 1), -- Resist Full Magic Attack
-(31827, 4408, 1), -- HP Increase (1x)
-(31827, 4409, 1), -- MP Increase (1x)
-(31827, 4410, 11), -- Average P. Atk.
-(31827, 4411, 11), -- Average M. Atk.
-(31827, 4412, 11), -- Average P. Def.
-(31827, 4413, 11), -- Average M. Def.
-(31827, 4414, 2), -- Standard Type
-(31827, 4415, 3), -- One-handed Sword
-(31827, 4416, 15), -- Elves
+(31827, 4408, 1), -- HP Modifiers
+(31827, 4409, 1), -- MP Modifiers
+(31827, 4410, 11), -- P. Atk. Modifiers
+(31827, 4411, 11), -- M. Atk. Modifiers
+(31827, 4412, 11), -- P. Def. Modifiers
+(31827, 4413, 11), -- M. Def. Modifiers
+(31827, 4414, 2), -- Armor Type
+(31827, 4415, 3), -- Weapon Type
+(31827, 4416, 15), -- Races
 -- Adventure Guildsman
 (31828, 4045, 1), -- Resist Full Magic Attack
-(31828, 4408, 1), -- HP Increase (1x)
-(31828, 4409, 1), -- MP Increase (1x)
-(31828, 4410, 11), -- Average P. Atk.
-(31828, 4411, 11), -- Average M. Atk.
-(31828, 4412, 11), -- Average P. Def.
-(31828, 4413, 11), -- Average M. Def.
-(31828, 4414, 2), -- Standard Type
-(31828, 4415, 3), -- One-handed Sword
-(31828, 4416, 15), -- Elves
+(31828, 4408, 1), -- HP Modifiers
+(31828, 4409, 1), -- MP Modifiers
+(31828, 4410, 11), -- P. Atk. Modifiers
+(31828, 4411, 11), -- M. Atk. Modifiers
+(31828, 4412, 11), -- P. Def. Modifiers
+(31828, 4413, 11), -- M. Def. Modifiers
+(31828, 4414, 2), -- Armor Type
+(31828, 4415, 3), -- Weapon Type
+(31828, 4416, 15), -- Races
 -- Adventure Guildsman
 (31829, 4045, 1), -- Resist Full Magic Attack
-(31829, 4408, 1), -- HP Increase (1x)
-(31829, 4409, 1), -- MP Increase (1x)
-(31829, 4410, 11), -- Average P. Atk.
-(31829, 4411, 11), -- Average M. Atk.
-(31829, 4412, 11), -- Average P. Def.
-(31829, 4413, 11), -- Average M. Def.
-(31829, 4414, 2), -- Standard Type
-(31829, 4415, 3), -- One-handed Sword
-(31829, 4416, 16), -- Dark Elves
+(31829, 4408, 1), -- HP Modifiers
+(31829, 4409, 1), -- MP Modifiers
+(31829, 4410, 11), -- P. Atk. Modifiers
+(31829, 4411, 11), -- M. Atk. Modifiers
+(31829, 4412, 11), -- P. Def. Modifiers
+(31829, 4413, 11), -- M. Def. Modifiers
+(31829, 4414, 2), -- Armor Type
+(31829, 4415, 3), -- Weapon Type
+(31829, 4416, 16), -- Races
 -- Adventure Guildsman
 (31830, 4045, 1), -- Resist Full Magic Attack
-(31830, 4408, 1), -- HP Increase (1x)
-(31830, 4409, 1), -- MP Increase (1x)
-(31830, 4410, 11), -- Average P. Atk.
-(31830, 4411, 11), -- Average M. Atk.
-(31830, 4412, 11), -- Average P. Def.
-(31830, 4413, 11), -- Average M. Def.
-(31830, 4414, 2), -- Standard Type
-(31830, 4415, 3), -- One-handed Sword
-(31830, 4416, 16), -- Dark Elves
+(31830, 4408, 1), -- HP Modifiers
+(31830, 4409, 1), -- MP Modifiers
+(31830, 4410, 11), -- P. Atk. Modifiers
+(31830, 4411, 11), -- M. Atk. Modifiers
+(31830, 4412, 11), -- P. Def. Modifiers
+(31830, 4413, 11), -- M. Def. Modifiers
+(31830, 4414, 2), -- Armor Type
+(31830, 4415, 3), -- Weapon Type
+(31830, 4416, 16), -- Races
 -- Adventure Guildsman
 (31831, 4045, 1), -- Resist Full Magic Attack
-(31831, 4408, 1), -- HP Increase (1x)
-(31831, 4409, 1), -- MP Increase (1x)
-(31831, 4410, 11), -- Average P. Atk.
-(31831, 4411, 11), -- Average M. Atk.
-(31831, 4412, 11), -- Average P. Def.
-(31831, 4413, 11), -- Average M. Def.
-(31831, 4414, 2), -- Standard Type
-(31831, 4415, 3), -- One-handed Sword
-(31831, 4416, 14), -- Humans
+(31831, 4408, 1), -- HP Modifiers
+(31831, 4409, 1), -- MP Modifiers
+(31831, 4410, 11), -- P. Atk. Modifiers
+(31831, 4411, 11), -- M. Atk. Modifiers
+(31831, 4412, 11), -- P. Def. Modifiers
+(31831, 4413, 11), -- M. Def. Modifiers
+(31831, 4414, 2), -- Armor Type
+(31831, 4415, 3), -- Weapon Type
+(31831, 4416, 14), -- Races
 -- Adventure Guildsman
 (31832, 4045, 1), -- Resist Full Magic Attack
-(31832, 4408, 1), -- HP Increase (1x)
-(31832, 4409, 1), -- MP Increase (1x)
-(31832, 4410, 11), -- Average P. Atk.
-(31832, 4411, 11), -- Average M. Atk.
-(31832, 4412, 11), -- Average P. Def.
-(31832, 4413, 11), -- Average M. Def.
-(31832, 4414, 2), -- Standard Type
-(31832, 4415, 3), -- One-handed Sword
-(31832, 4416, 17), -- Orcs
+(31832, 4408, 1), -- HP Modifiers
+(31832, 4409, 1), -- MP Modifiers
+(31832, 4410, 11), -- P. Atk. Modifiers
+(31832, 4411, 11), -- M. Atk. Modifiers
+(31832, 4412, 11), -- P. Def. Modifiers
+(31832, 4413, 11), -- M. Def. Modifiers
+(31832, 4414, 2), -- Armor Type
+(31832, 4415, 3), -- Weapon Type
+(31832, 4416, 17), -- Races
 -- Adventure Guildsman
 (31833, 4045, 1), -- Resist Full Magic Attack
-(31833, 4408, 1), -- HP Increase (1x)
-(31833, 4409, 1), -- MP Increase (1x)
-(31833, 4410, 11), -- Average P. Atk.
-(31833, 4411, 11), -- Average M. Atk.
-(31833, 4412, 11), -- Average P. Def.
-(31833, 4413, 11), -- Average M. Def.
-(31833, 4414, 2), -- Standard Type
-(31833, 4415, 3), -- One-handed Sword
-(31833, 4416, 15), -- Elves
+(31833, 4408, 1), -- HP Modifiers
+(31833, 4409, 1), -- MP Modifiers
+(31833, 4410, 11), -- P. Atk. Modifiers
+(31833, 4411, 11), -- M. Atk. Modifiers
+(31833, 4412, 11), -- P. Def. Modifiers
+(31833, 4413, 11), -- M. Def. Modifiers
+(31833, 4414, 2), -- Armor Type
+(31833, 4415, 3), -- Weapon Type
+(31833, 4416, 15), -- Races
 -- Adventure Guildsman
 (31834, 4045, 1), -- Resist Full Magic Attack
-(31834, 4408, 1), -- HP Increase (1x)
-(31834, 4409, 1), -- MP Increase (1x)
-(31834, 4410, 11), -- Average P. Atk.
-(31834, 4411, 11), -- Average M. Atk.
-(31834, 4412, 11), -- Average P. Def.
-(31834, 4413, 11); -- Average M. Def.
-
-INSERT INTO `npcskills` VALUES
-(31834, 4414, 2), -- Standard Type
-(31834, 4415, 3), -- One-handed Sword
-(31834, 4416, 14), -- Humans
+(31834, 4408, 1), -- HP Modifiers
+(31834, 4409, 1), -- MP Modifiers
+(31834, 4410, 11), -- P. Atk. Modifiers
+(31834, 4411, 11), -- M. Atk. Modifiers
+(31834, 4412, 11), -- P. Def. Modifiers
+(31834, 4413, 11), -- M. Def. Modifiers
+(31834, 4414, 2), -- Armor Type
+(31834, 4415, 3), -- Weapon Type
+(31834, 4416, 14), -- Races
 -- Adventure Guildsman
 (31835, 4045, 1), -- Resist Full Magic Attack
-(31835, 4408, 1), -- HP Increase (1x)
-(31835, 4409, 1), -- MP Increase (1x)
-(31835, 4410, 11), -- Average P. Atk.
-(31835, 4411, 11), -- Average M. Atk.
-(31835, 4412, 11), -- Average P. Def.
-(31835, 4413, 11), -- Average M. Def.
-(31835, 4414, 2), -- Standard Type
-(31835, 4415, 3), -- One-handed Sword
-(31835, 4416, 18), -- Dwarves
+(31835, 4408, 1), -- HP Modifiers
+(31835, 4409, 1), -- MP Modifiers
+(31835, 4410, 11), -- P. Atk. Modifiers
+(31835, 4411, 11), -- M. Atk. Modifiers
+(31835, 4412, 11), -- P. Def. Modifiers
+(31835, 4413, 11), -- M. Def. Modifiers
+(31835, 4414, 2), -- Armor Type
+(31835, 4415, 3), -- Weapon Type
+(31835, 4416, 18), -- Races
 -- Adventure Guildsman
 (31836, 4045, 1), -- Resist Full Magic Attack
-(31836, 4408, 1), -- HP Increase (1x)
-(31836, 4409, 1), -- MP Increase (1x)
-(31836, 4410, 11), -- Average P. Atk.
-(31836, 4411, 11), -- Average M. Atk.
-(31836, 4412, 11), -- Average P. Def.
-(31836, 4413, 11), -- Average M. Def.
-(31836, 4414, 2), -- Standard Type
-(31836, 4415, 3), -- One-handed Sword
-(31836, 4416, 15), -- Elves
+(31836, 4408, 1), -- HP Modifiers
+(31836, 4409, 1), -- MP Modifiers
+(31836, 4410, 11), -- P. Atk. Modifiers
+(31836, 4411, 11), -- M. Atk. Modifiers
+(31836, 4412, 11), -- P. Def. Modifiers
+(31836, 4413, 11), -- M. Def. Modifiers
+(31836, 4414, 2), -- Armor Type
+(31836, 4415, 3), -- Weapon Type
+(31836, 4416, 15), -- Races
 -- Adventure Guildsman
 (31837, 4045, 1), -- Resist Full Magic Attack
-(31837, 4408, 1), -- HP Increase (1x)
-(31837, 4409, 1), -- MP Increase (1x)
-(31837, 4410, 11), -- Average P. Atk.
-(31837, 4411, 11), -- Average M. Atk.
-(31837, 4412, 11), -- Average P. Def.
-(31837, 4413, 11), -- Average M. Def.
-(31837, 4414, 2), -- Standard Type
-(31837, 4415, 3), -- One-handed Sword
-(31837, 4416, 16), -- Dark Elves
+(31837, 4408, 1), -- HP Modifiers
+(31837, 4409, 1), -- MP Modifiers
+(31837, 4410, 11), -- P. Atk. Modifiers
+(31837, 4411, 11), -- M. Atk. Modifiers
+(31837, 4412, 11), -- P. Def. Modifiers
+(31837, 4413, 11), -- M. Def. Modifiers
+(31837, 4414, 2), -- Armor Type
+(31837, 4415, 3), -- Weapon Type
+(31837, 4416, 16), -- Races
 -- Adventure Guildsman
 (31838, 4045, 1), -- Resist Full Magic Attack
-(31838, 4408, 1), -- HP Increase (1x)
-(31838, 4409, 1), -- MP Increase (1x)
-(31838, 4410, 11), -- Average P. Atk.
-(31838, 4411, 11), -- Average M. Atk.
-(31838, 4412, 11), -- Average P. Def.
-(31838, 4413, 11), -- Average M. Def.
-(31838, 4414, 2), -- Standard Type
-(31838, 4415, 3), -- One-handed Sword
-(31838, 4416, 18), -- Dwarves
+(31838, 4408, 1), -- HP Modifiers
+(31838, 4409, 1), -- MP Modifiers
+(31838, 4410, 11), -- P. Atk. Modifiers
+(31838, 4411, 11), -- M. Atk. Modifiers
+(31838, 4412, 11), -- P. Def. Modifiers
+(31838, 4413, 11), -- M. Def. Modifiers
+(31838, 4414, 2), -- Armor Type
+(31838, 4415, 3), -- Weapon Type
+(31838, 4416, 18), -- Races
 -- Adventure Guildsman
 (31839, 4045, 1), -- Resist Full Magic Attack
-(31839, 4408, 1), -- HP Increase (1x)
-(31839, 4409, 1), -- MP Increase (1x)
-(31839, 4410, 11), -- Average P. Atk.
-(31839, 4411, 11), -- Average M. Atk.
-(31839, 4412, 11), -- Average P. Def.
-(31839, 4413, 11), -- Average M. Def.
-(31839, 4414, 2), -- Standard Type
-(31839, 4415, 3), -- One-handed Sword
-(31839, 4416, 15), -- Elves
+(31839, 4408, 1), -- HP Modifiers
+(31839, 4409, 1), -- MP Modifiers
+(31839, 4410, 11), -- P. Atk. Modifiers
+(31839, 4411, 11), -- M. Atk. Modifiers
+(31839, 4412, 11), -- P. Def. Modifiers
+(31839, 4413, 11), -- M. Def. Modifiers
+(31839, 4414, 2), -- Armor Type
+(31839, 4415, 3), -- Weapon Type
+(31839, 4416, 15), -- Races
 -- Adventure Guildsman
 (31840, 4045, 1), -- Resist Full Magic Attack
-(31840, 4408, 1), -- HP Increase (1x)
-(31840, 4409, 1), -- MP Increase (1x)
-(31840, 4410, 11), -- Average P. Atk.
-(31840, 4411, 11), -- Average M. Atk.
-(31840, 4412, 11), -- Average P. Def.
-(31840, 4413, 11), -- Average M. Def.
-(31840, 4414, 2), -- Standard Type
-(31840, 4415, 3), -- One-handed Sword
-(31840, 4416, 17), -- Orcs
+(31840, 4408, 1), -- HP Modifiers
+(31840, 4409, 1), -- MP Modifiers
+(31840, 4410, 11), -- P. Atk. Modifiers
+(31840, 4411, 11), -- M. Atk. Modifiers
+(31840, 4412, 11), -- P. Def. Modifiers
+(31840, 4413, 11), -- M. Def. Modifiers
+(31840, 4414, 2), -- Armor Type
+(31840, 4415, 3), -- Weapon Type
+(31840, 4416, 17), -- Races
 -- Adventure Guildsman
 (31841, 4045, 1), -- Resist Full Magic Attack
-(31841, 4408, 1), -- HP Increase (1x)
-(31841, 4409, 1), -- MP Increase (1x)
-(31841, 4410, 11), -- Average P. Atk.
-(31841, 4411, 11), -- Average M. Atk.
-(31841, 4412, 11), -- Average P. Def.
-(31841, 4413, 11), -- Average M. Def.
-(31841, 4414, 2), -- Standard Type
-(31841, 4415, 3), -- One-handed Sword
-(31841, 4416, 14), -- Humans
+(31841, 4408, 1), -- HP Modifiers
+(31841, 4409, 1), -- MP Modifiers
+(31841, 4410, 11), -- P. Atk. Modifiers
+(31841, 4411, 11), -- M. Atk. Modifiers
+(31841, 4412, 11), -- P. Def. Modifiers
+(31841, 4413, 11), -- M. Def. Modifiers
+(31841, 4414, 2), -- Armor Type
+(31841, 4415, 3), -- Weapon Type
+(31841, 4416, 14), -- Races
 -- Teleportation Cubic
 (31842, 4045, 1), -- Resist Full Magic Attack
-(31842, 4390, 1), -- Mystic Immunity
-(31842, 4408, 1), -- HP Increase (1x)
-(31842, 4409, 1), -- MP Increase (1x)
-(31842, 4410, 11), -- Average P. Atk.
-(31842, 4411, 11), -- Average M. Atk.
-(31842, 4412, 11), -- Average P. Def.
-(31842, 4413, 11), -- Average M. Def.
-(31842, 4414, 2), -- Standard Type
-(31842, 4415, 3), -- One-handed Sword
-(31842, 4416, 19), -- Others
+(31842, 4390, 1), -- NPC Abnormal Immunity
+(31842, 4408, 1), -- HP Modifiers
+(31842, 4409, 1), -- MP Modifiers
+(31842, 4410, 11), -- P. Atk. Modifiers
+(31842, 4411, 11), -- M. Atk. Modifiers
+(31842, 4412, 11), -- P. Def. Modifiers
+(31842, 4413, 11), -- M. Def. Modifiers
+(31842, 4414, 2), -- Armor Type
+(31842, 4415, 3), -- Weapon Type
+(31842, 4416, 19), -- Races
 -- Teleportation Cubic
 (31843, 4045, 1), -- Resist Full Magic Attack
-(31843, 4390, 1), -- Mystic Immunity
-(31843, 4408, 1), -- HP Increase (1x)
-(31843, 4409, 1), -- MP Increase (1x)
-(31843, 4410, 11), -- Average P. Atk.
-(31843, 4411, 11), -- Average M. Atk.
-(31843, 4412, 11), -- Average P. Def.
-(31843, 4413, 11), -- Average M. Def.
-(31843, 4414, 2), -- Standard Type
-(31843, 4415, 3), -- One-handed Sword
-(31843, 4416, 19), -- Others
+(31843, 4390, 1), -- NPC Abnormal Immunity
+(31843, 4408, 1), -- HP Modifiers
+(31843, 4409, 1), -- MP Modifiers
+(31843, 4410, 11), -- P. Atk. Modifiers
+(31843, 4411, 11), -- M. Atk. Modifiers
+(31843, 4412, 11), -- P. Def. Modifiers
+(31843, 4413, 11), -- M. Def. Modifiers
+(31843, 4414, 2), -- Armor Type
+(31843, 4415, 3), -- Weapon Type
+(31843, 4416, 19), -- Races
 -- Aracna
-(31844, 4408, 1), -- HP Increase (1x)
-(31844, 4409, 1), -- MP Increase (1x)
-(31844, 4410, 11), -- Average P. Atk.
-(31844, 4411, 11), -- Average M. Atk.
-(31844, 4412, 11), -- Average P. Def.
-(31844, 4413, 11), -- Average M. Def.
-(31844, 4414, 2), -- Standard Type
-(31844, 4415, 3), -- One-handed Sword
-(31844, 4416, 13), -- Fairies
+(31844, 4408, 1), -- HP Modifiers
+(31844, 4409, 1), -- MP Modifiers
+(31844, 4410, 11), -- P. Atk. Modifiers
+(31844, 4411, 11), -- M. Atk. Modifiers
+(31844, 4412, 11), -- P. Def. Modifiers
+(31844, 4413, 11), -- M. Def. Modifiers
+(31844, 4414, 2), -- Armor Type
+(31844, 4415, 3), -- Weapon Type
+(31844, 4416, 13), -- Races
 -- Bloody Pixy
-(31845, 4408, 1), -- HP Increase (1x)
-(31845, 4409, 1), -- MP Increase (1x)
-(31845, 4410, 16), -- Very Strong P. Atk.
-(31845, 4411, 16), -- Very Strong M. Atk.
-(31845, 4412, 16), -- Very Strong P. Def.
-(31845, 4413, 16), -- Very Strong M. Def.
-(31845, 4414, 2), -- Standard Type
-(31845, 4415, 3), -- One-handed Sword
-(31845, 4416, 13), -- Fairies
+(31845, 4408, 1), -- HP Modifiers
+(31845, 4409, 1), -- MP Modifiers
+(31845, 4410, 16), -- P. Atk. Modifiers
+(31845, 4411, 16), -- M. Atk. Modifiers
+(31845, 4412, 16), -- P. Def. Modifiers
+(31845, 4413, 16), -- M. Def. Modifiers
+(31845, 4414, 2), -- Armor Type
+(31845, 4415, 3), -- Weapon Type
+(31845, 4416, 13), -- Races
 -- Satyros
-(31846, 4408, 1), -- HP Increase (1x)
-(31846, 4409, 1), -- MP Increase (1x)
-(31846, 4410, 16), -- Very Strong P. Atk.
-(31846, 4411, 16), -- Very Strong M. Atk.
-(31846, 4412, 16), -- Very Strong P. Def.
-(31846, 4413, 16), -- Very Strong M. Def.
-(31846, 4414, 2), -- Standard Type
-(31846, 4415, 11), -- Spears
-(31846, 4416, 13), -- Fairies
+(31846, 4408, 1), -- HP Modifiers
+(31846, 4409, 1), -- MP Modifiers
+(31846, 4410, 16), -- P. Atk. Modifiers
+(31846, 4411, 16), -- M. Atk. Modifiers
+(31846, 4412, 16), -- P. Def. Modifiers
+(31846, 4413, 16), -- M. Def. Modifiers
+(31846, 4414, 2), -- Armor Type
+(31846, 4415, 11), -- Weapon Type
+(31846, 4416, 13), -- Races
 -- Pan
-(31847, 4408, 1), -- HP Increase (1x)
-(31847, 4409, 1), -- MP Increase (1x)
-(31847, 4410, 16), -- Very Strong P. Atk.
-(31847, 4411, 16), -- Very Strong M. Atk.
-(31847, 4412, 16), -- Very Strong P. Def.
-(31847, 4413, 16), -- Very Strong M. Def.
-(31847, 4414, 2), -- Standard Type
-(31847, 4415, 11), -- Spears
-(31847, 4416, 13), -- Fairies
+(31847, 4408, 1), -- HP Modifiers
+(31847, 4409, 1), -- MP Modifiers
+(31847, 4410, 16), -- P. Atk. Modifiers
+(31847, 4411, 16), -- M. Atk. Modifiers
+(31847, 4412, 16), -- P. Def. Modifiers
+(31847, 4413, 16), -- M. Def. Modifiers
+(31847, 4414, 2), -- Armor Type
+(31847, 4415, 11), -- Weapon Type
+(31847, 4416, 13), -- Races
 -- Pixy
-(31848, 4408, 1), -- HP Increase (1x)
-(31848, 4409, 1), -- MP Increase (1x)
-(31848, 4410, 16), -- Very Strong P. Atk.
-(31848, 4411, 16), -- Very Strong M. Atk.
-(31848, 4412, 16), -- Very Strong P. Def.
-(31848, 4413, 16), -- Very Strong M. Def.
-(31848, 4414, 2), -- Standard Type
-(31848, 4415, 3), -- One-handed Sword
-(31848, 4416, 13), -- Fairies
+(31848, 4408, 1), -- HP Modifiers
+(31848, 4409, 1), -- MP Modifiers
+(31848, 4410, 16), -- P. Atk. Modifiers
+(31848, 4411, 16), -- M. Atk. Modifiers
+(31848, 4412, 16), -- P. Def. Modifiers
+(31848, 4413, 16), -- M. Def. Modifiers
+(31848, 4414, 2), -- Armor Type
+(31848, 4415, 3), -- Weapon Type
+(31848, 4416, 13), -- Races
 -- Red Arachne
-(31849, 4408, 1), -- HP Increase (1x)
-(31849, 4409, 1), -- MP Increase (1x)
-(31849, 4410, 16), -- Very Strong P. Atk.
-(31849, 4411, 16), -- Very Strong M. Atk.
-(31849, 4412, 16), -- Very Strong P. Def.
-(31849, 4413, 16), -- Very Strong M. Def.
-(31849, 4414, 2), -- Standard Type
-(31849, 4415, 3), -- One-handed Sword
-(31849, 4416, 13), -- Fairies
+(31849, 4408, 1), -- HP Modifiers
+(31849, 4409, 1), -- MP Modifiers
+(31849, 4410, 16), -- P. Atk. Modifiers
+(31849, 4411, 16), -- M. Atk. Modifiers
+(31849, 4412, 16), -- P. Def. Modifiers
+(31849, 4413, 16), -- M. Def. Modifiers
+(31849, 4414, 2), -- Armor Type
+(31849, 4415, 3), -- Weapon Type
+(31849, 4416, 13), -- Races
 -- Blight Treant
-(31850, 4277, 3), -- Resist Poison Attacks
-(31850, 4408, 1), -- HP Increase (1x)
-(31850, 4409, 1), -- MP Increase (1x)
-(31850, 4410, 16), -- Very Strong P. Atk.
-(31850, 4411, 16), -- Very Strong M. Atk.
-(31850, 4412, 16), -- Very Strong P. Def.
-(31850, 4413, 16), -- Very Strong M. Def.
-(31850, 4414, 2), -- Standard Type
-(31850, 4415, 3), -- One-handed Sword
-(31850, 4416, 7), -- Spirits
+(31850, 4277, 3), -- Resist Poison
+(31850, 4408, 1), -- HP Modifiers
+(31850, 4409, 1), -- MP Modifiers
+(31850, 4410, 16), -- P. Atk. Modifiers
+(31850, 4411, 16), -- M. Atk. Modifiers
+(31850, 4412, 16), -- P. Def. Modifiers
+(31850, 4413, 16), -- M. Def. Modifiers
+(31850, 4414, 2), -- Armor Type
+(31850, 4415, 3), -- Weapon Type
+(31850, 4416, 7), -- Races
 -- Treant
-(31851, 4277, 3), -- Resist Poison Attacks
-(31851, 4408, 1), -- HP Increase (1x)
-(31851, 4409, 1), -- MP Increase (1x)
-(31851, 4410, 16), -- Very Strong P. Atk.
-(31851, 4411, 16), -- Very Strong M. Atk.
-(31851, 4412, 16), -- Very Strong P. Def.
-(31851, 4413, 16), -- Very Strong M. Def.
-(31851, 4414, 2), -- Standard Type
-(31851, 4415, 3), -- One-handed Sword
-(31851, 4416, 7), -- Spirits
+(31851, 4277, 3), -- Resist Poison
+(31851, 4408, 1), -- HP Modifiers
+(31851, 4409, 1), -- MP Modifiers
+(31851, 4410, 16), -- P. Atk. Modifiers
+(31851, 4411, 16), -- M. Atk. Modifiers
+(31851, 4412, 16), -- P. Def. Modifiers
+(31851, 4413, 16), -- M. Def. Modifiers
+(31851, 4414, 2), -- Armor Type
+(31851, 4415, 3), -- Weapon Type
+(31851, 4416, 7), -- Races
 -- Pixy Murika
-(31852, 4408, 1), -- HP Increase (1x)
-(31852, 4409, 1), -- MP Increase (1x)
-(31852, 4410, 11), -- Average P. Atk.
-(31852, 4411, 11), -- Average M. Atk.
-(31852, 4412, 11), -- Average P. Def.
-(31852, 4413, 11), -- Average M. Def.
-(31852, 4414, 2), -- Standard Type
-(31852, 4415, 3), -- One-handed Sword
-(31852, 4416, 13), -- Fairies
+(31852, 4408, 1), -- HP Modifiers
+(31852, 4409, 1), -- MP Modifiers
+(31852, 4410, 11), -- P. Atk. Modifiers
+(31852, 4411, 11), -- M. Atk. Modifiers
+(31852, 4412, 11), -- P. Def. Modifiers
+(31852, 4413, 11), -- M. Def. Modifiers
+(31852, 4414, 2), -- Armor Type
+(31852, 4415, 3), -- Weapon Type
+(31852, 4416, 13), -- Races
 -- Treant Bremec
-(31853, 4408, 1), -- HP Increase (1x)
-(31853, 4409, 1), -- MP Increase (1x)
-(31853, 4410, 16), -- Very Strong P. Atk.
-(31853, 4411, 16), -- Very Strong M. Atk.
-(31853, 4412, 16), -- Very Strong P. Def.
-(31853, 4413, 16), -- Very Strong M. Def.
-(31853, 4414, 2), -- Standard Type
-(31853, 4415, 3), -- One-handed Sword
-(31853, 4416, 7), -- Spirits
+(31853, 4408, 1), -- HP Modifiers
+(31853, 4409, 1), -- MP Modifiers
+(31853, 4410, 16), -- P. Atk. Modifiers
+(31853, 4411, 16), -- M. Atk. Modifiers
+(31853, 4412, 16), -- P. Def. Modifiers
+(31853, 4413, 16), -- M. Def. Modifiers
+(31853, 4414, 2), -- Armor Type
+(31853, 4415, 3), -- Weapon Type
+(31853, 4416, 7), -- Races
 -- Event Manager
 (31854, 4045, 1), -- Resist Full Magic Attack
-(31854, 4408, 1), -- HP Increase (1x)
-(31854, 4409, 1), -- MP Increase (1x)
-(31854, 4410, 11), -- Average P. Atk.
-(31854, 4411, 11), -- Average M. Atk.
-(31854, 4412, 11), -- Average P. Def.
-(31854, 4413, 11), -- Average M. Def.
-(31854, 4414, 2), -- Standard Type
-(31854, 4415, 3), -- One-handed Sword
-(31854, 4416, 14), -- Humans
+(31854, 4408, 1), -- HP Modifiers
+(31854, 4409, 1), -- MP Modifiers
+(31854, 4410, 11), -- P. Atk. Modifiers
+(31854, 4411, 11), -- M. Atk. Modifiers
+(31854, 4412, 11), -- P. Def. Modifiers
+(31854, 4413, 11), -- M. Def. Modifiers
+(31854, 4414, 2), -- Armor Type
+(31854, 4415, 3), -- Weapon Type
+(31854, 4416, 14), -- Races
 -- Event Manager
 (31855, 4045, 1), -- Resist Full Magic Attack
-(31855, 4408, 1), -- HP Increase (1x)
-(31855, 4409, 1), -- MP Increase (1x)
-(31855, 4410, 11), -- Average P. Atk.
-(31855, 4411, 11), -- Average M. Atk.
-(31855, 4412, 11), -- Average P. Def.
-(31855, 4413, 11), -- Average M. Def.
-(31855, 4414, 2), -- Standard Type
-(31855, 4415, 3), -- One-handed Sword
-(31855, 4416, 15), -- Elves
+(31855, 4408, 1), -- HP Modifiers
+(31855, 4409, 1), -- MP Modifiers
+(31855, 4410, 11), -- P. Atk. Modifiers
+(31855, 4411, 11), -- M. Atk. Modifiers
+(31855, 4412, 11), -- P. Def. Modifiers
+(31855, 4413, 11), -- M. Def. Modifiers
+(31855, 4414, 2), -- Armor Type
+(31855, 4415, 3), -- Weapon Type
+(31855, 4416, 15), -- Races
 -- Event Manager
 (31856, 4045, 1), -- Resist Full Magic Attack
-(31856, 4408, 1), -- HP Increase (1x)
-(31856, 4409, 1), -- MP Increase (1x)
-(31856, 4410, 11), -- Average P. Atk.
-(31856, 4411, 11), -- Average M. Atk.
-(31856, 4412, 11), -- Average P. Def.
-(31856, 4413, 11), -- Average M. Def.
-(31856, 4414, 2), -- Standard Type
-(31856, 4415, 3), -- One-handed Sword
-(31856, 4416, 16), -- Dark Elves
+(31856, 4408, 1), -- HP Modifiers
+(31856, 4409, 1), -- MP Modifiers
+(31856, 4410, 11), -- P. Atk. Modifiers
+(31856, 4411, 11), -- M. Atk. Modifiers
+(31856, 4412, 11), -- P. Def. Modifiers
+(31856, 4413, 11), -- M. Def. Modifiers
+(31856, 4414, 2), -- Armor Type
+(31856, 4415, 3), -- Weapon Type
+(31856, 4416, 16), -- Races
 -- Event Manager
 (31857, 4045, 1), -- Resist Full Magic Attack
-(31857, 4408, 1), -- HP Increase (1x)
-(31857, 4409, 1), -- MP Increase (1x)
-(31857, 4410, 11), -- Average P. Atk.
-(31857, 4411, 11), -- Average M. Atk.
-(31857, 4412, 11), -- Average P. Def.
-(31857, 4413, 11), -- Average M. Def.
-(31857, 4414, 2), -- Standard Type
-(31857, 4415, 3), -- One-handed Sword
-(31857, 4416, 18), -- Dwarves
+(31857, 4408, 1), -- HP Modifiers
+(31857, 4409, 1), -- MP Modifiers
+(31857, 4410, 11), -- P. Atk. Modifiers
+(31857, 4411, 11), -- M. Atk. Modifiers
+(31857, 4412, 11), -- P. Def. Modifiers
+(31857, 4413, 11), -- M. Def. Modifiers
+(31857, 4414, 2), -- Armor Type
+(31857, 4415, 3), -- Weapon Type
+(31857, 4416, 18), -- Races
 -- Event Manager
 (31858, 4045, 1), -- Resist Full Magic Attack
-(31858, 4408, 1), -- HP Increase (1x)
-(31858, 4409, 1), -- MP Increase (1x)
-(31858, 4410, 11), -- Average P. Atk.
-(31858, 4411, 11), -- Average M. Atk.
-(31858, 4412, 11), -- Average P. Def.
-(31858, 4413, 11), -- Average M. Def.
-(31858, 4414, 2), -- Standard Type
-(31858, 4415, 3), -- One-handed Sword
-(31858, 4416, 17), -- Orcs
+(31858, 4408, 1), -- HP Modifiers
+(31858, 4409, 1), -- MP Modifiers
+(31858, 4410, 11), -- P. Atk. Modifiers
+(31858, 4411, 11), -- M. Atk. Modifiers
+(31858, 4412, 11), -- P. Def. Modifiers
+(31858, 4413, 11), -- M. Def. Modifiers
+(31858, 4414, 2), -- Armor Type
+(31858, 4415, 3), -- Weapon Type
+(31858, 4416, 17), -- Races
 -- Teleportation Cubic
 (31859, 4045, 1), -- Resist Full Magic Attack
-(31859, 4390, 1), -- Mystic Immunity
-(31859, 4408, 1), -- HP Increase (1x)
-(31859, 4409, 1), -- MP Increase (1x)
-(31859, 4410, 11), -- Average P. Atk.
-(31859, 4411, 11), -- Average M. Atk.
-(31859, 4412, 11), -- Average P. Def.
-(31859, 4413, 11), -- Average M. Def.
-(31859, 4414, 2), -- Standard Type
-(31859, 4415, 3), -- One-handed Sword
-(31859, 4416, 19), -- Others
+(31859, 4390, 1), -- NPC Abnormal Immunity
+(31859, 4408, 1), -- HP Modifiers
+(31859, 4409, 1), -- MP Modifiers
+(31859, 4410, 11), -- P. Atk. Modifiers
+(31859, 4411, 11), -- M. Atk. Modifiers
+(31859, 4412, 11), -- P. Def. Modifiers
+(31859, 4413, 11), -- M. Def. Modifiers
+(31859, 4414, 2), -- Armor Type
+(31859, 4415, 3), -- Weapon Type
+(31859, 4416, 19), -- Races
 -- Buzz the Cat
 (31860, 4045, 1), -- Resist Full Magic Attack
-(31860, 4408, 1), -- HP Increase (1x)
-(31860, 4409, 1), -- MP Increase (1x)
-(31860, 4410, 11), -- Average P. Atk.
-(31860, 4411, 11), -- Average M. Atk.
-(31860, 4412, 11), -- Average P. Def.
-(31860, 4413, 11), -- Average M. Def.
-(31860, 4414, 2), -- Standard Type
-(31860, 4415, 3), -- One-handed Sword
-(31860, 4416, 7), -- Spirits
+(31860, 4408, 1), -- HP Modifiers
+(31860, 4409, 1), -- MP Modifiers
+(31860, 4410, 11), -- P. Atk. Modifiers
+(31860, 4411, 11), -- M. Atk. Modifiers
+(31860, 4412, 11), -- P. Def. Modifiers
+(31860, 4413, 11), -- M. Def. Modifiers
+(31860, 4414, 2), -- Armor Type
+(31860, 4415, 3), -- Weapon Type
+(31860, 4416, 7), -- Races
 -- Gatekeeper
 (31861, 4045, 1), -- Resist Full Magic Attack
-(31861, 4408, 1), -- HP Increase (1x)
-(31861, 4409, 1), -- MP Increase (1x)
-(31861, 4410, 11), -- Average P. Atk.
-(31861, 4411, 11), -- Average M. Atk.
-(31861, 4412, 11), -- Average P. Def.
-(31861, 4413, 11), -- Average M. Def.
-(31861, 4414, 2), -- Standard Type
-(31861, 4415, 3), -- One-handed Sword
-(31861, 4416, 14), -- Humans
+(31861, 4408, 1), -- HP Modifiers
+(31861, 4409, 1), -- MP Modifiers
+(31861, 4410, 11), -- P. Atk. Modifiers
+(31861, 4411, 11), -- M. Atk. Modifiers
+(31861, 4412, 11), -- P. Def. Modifiers
+(31861, 4413, 11), -- M. Def. Modifiers
+(31861, 4414, 2), -- Armor Type
+(31861, 4415, 3), -- Weapon Type
+(31861, 4416, 14), -- Races
 -- Angelic Vortex
 (31862, 4045, 1), -- Resist Full Magic Attack
-(31862, 4390, 1), -- Mystic Immunity
-(31862, 4408, 1), -- HP Increase (1x)
-(31862, 4409, 1), -- MP Increase (1x)
-(31862, 4410, 11), -- Average P. Atk.
-(31862, 4411, 11), -- Average M. Atk.
-(31862, 4412, 11), -- Average P. Def.
-(31862, 4413, 11), -- Average M. Def.
-(31862, 4414, 2), -- Standard Type
-(31862, 4415, 3), -- One-handed Sword
-(31862, 4416, 19), -- Others
+(31862, 4390, 1), -- NPC Abnormal Immunity
+(31862, 4408, 1), -- HP Modifiers
+(31862, 4409, 1), -- MP Modifiers
+(31862, 4410, 11), -- P. Atk. Modifiers
+(31862, 4411, 11), -- M. Atk. Modifiers
+(31862, 4412, 11), -- P. Def. Modifiers
+(31862, 4413, 11), -- M. Def. Modifiers
+(31862, 4414, 2), -- Armor Type
+(31862, 4415, 3), -- Weapon Type
+(31862, 4416, 19), -- Races
 -- Santa Trainee
 (31863, 4045, 1), -- Resist Full Magic Attack
-(31863, 4408, 1), -- HP Increase (1x)
-(31863, 4409, 1), -- MP Increase (1x)
-(31863, 4410, 11), -- Average P. Atk.
-(31863, 4411, 11), -- Average M. Atk.
-(31863, 4412, 11), -- Average P. Def.
-(31863, 4413, 11), -- Average M. Def.
-(31863, 4414, 2), -- Standard Type
-(31863, 4415, 3), -- One-handed Sword
-(31863, 4416, 18), -- Dwarves
+(31863, 4408, 1), -- HP Modifiers
+(31863, 4409, 1), -- MP Modifiers
+(31863, 4410, 11), -- P. Atk. Modifiers
+(31863, 4411, 11), -- M. Atk. Modifiers
+(31863, 4412, 11), -- P. Def. Modifiers
+(31863, 4413, 11), -- M. Def. Modifiers
+(31863, 4414, 2), -- Armor Type
+(31863, 4415, 3), -- Weapon Type
+(31863, 4416, 18), -- Races
 -- Santa Trainee
 (31864, 4045, 1), -- Resist Full Magic Attack
-(31864, 4408, 1), -- HP Increase (1x)
-(31864, 4409, 1), -- MP Increase (1x)
-(31864, 4410, 11), -- Average P. Atk.
-(31864, 4411, 11), -- Average M. Atk.
-(31864, 4412, 11), -- Average P. Def.
-(31864, 4413, 11), -- Average M. Def.
-(31864, 4414, 2), -- Standard Type
-(31864, 4415, 3), -- One-handed Sword
-(31864, 4416, 18), -- Dwarves
+(31864, 4408, 1), -- HP Modifiers
+(31864, 4409, 1), -- MP Modifiers
+(31864, 4410, 11), -- P. Atk. Modifiers
+(31864, 4411, 11), -- M. Atk. Modifiers
+(31864, 4412, 11), -- P. Def. Modifiers
+(31864, 4413, 11), -- M. Def. Modifiers
+(31864, 4414, 2), -- Armor Type
+(31864, 4415, 3), -- Weapon Type
+(31864, 4416, 18), -- Races
 -- Guardian of Border
-(31865, 4390, 1), -- Mystic Immunity
-(31865, 4408, 1), -- HP Increase (1x)
-(31865, 4409, 1), -- MP Increase (1x)
-(31865, 4410, 11), -- Average P. Atk.
-(31865, 4411, 11), -- Average M. Atk.
-(31865, 4412, 11), -- Average P. Def.
-(31865, 4413, 11), -- Average M. Def.
-(31865, 4414, 2), -- Standard Type
-(31865, 4415, 3), -- One-handed Sword
-(31865, 4416, 19), -- Others
+(31865, 4390, 1), -- NPC Abnormal Immunity
+(31865, 4408, 1), -- HP Modifiers
+(31865, 4409, 1), -- MP Modifiers
+(31865, 4410, 11), -- P. Atk. Modifiers
+(31865, 4411, 11), -- M. Atk. Modifiers
+(31865, 4412, 11), -- P. Def. Modifiers
+(31865, 4413, 11), -- M. Def. Modifiers
+(31865, 4414, 2), -- Armor Type
+(31865, 4415, 3), -- Weapon Type
+(31865, 4416, 19), -- Races
 -- Guardian of Border
-(31866, 4390, 1), -- Mystic Immunity
-(31866, 4408, 1), -- HP Increase (1x)
-(31866, 4409, 1), -- MP Increase (1x)
-(31866, 4410, 11), -- Average P. Atk.
-(31866, 4411, 11), -- Average M. Atk.
-(31866, 4412, 11), -- Average P. Def.
-(31866, 4413, 11), -- Average M. Def.
-(31866, 4414, 2), -- Standard Type
-(31866, 4415, 3), -- One-handed Sword
-(31866, 4416, 19), -- Others
+(31866, 4390, 1), -- NPC Abnormal Immunity
+(31866, 4408, 1), -- HP Modifiers
+(31866, 4409, 1), -- MP Modifiers
+(31866, 4410, 11), -- P. Atk. Modifiers
+(31866, 4411, 11), -- M. Atk. Modifiers
+(31866, 4412, 11), -- P. Def. Modifiers
+(31866, 4413, 11), -- M. Def. Modifiers
+(31866, 4414, 2), -- Armor Type
+(31866, 4415, 3), -- Weapon Type
+(31866, 4416, 19), -- Races
 -- Guardian of Border
-(31867, 4390, 1), -- Mystic Immunity
-(31867, 4408, 1), -- HP Increase (1x)
-(31867, 4409, 1), -- MP Increase (1x)
-(31867, 4410, 11), -- Average P. Atk.
-(31867, 4411, 11), -- Average M. Atk.
-(31867, 4412, 11), -- Average P. Def.
-(31867, 4413, 11), -- Average M. Def.
-(31867, 4414, 2), -- Standard Type
-(31867, 4415, 3), -- One-handed Sword
-(31867, 4416, 19), -- Others
+(31867, 4390, 1), -- NPC Abnormal Immunity
+(31867, 4408, 1), -- HP Modifiers
+(31867, 4409, 1), -- MP Modifiers
+(31867, 4410, 11), -- P. Atk. Modifiers
+(31867, 4411, 11), -- M. Atk. Modifiers
+(31867, 4412, 11), -- P. Def. Modifiers
+(31867, 4413, 11), -- M. Def. Modifiers
+(31867, 4414, 2), -- Armor Type
+(31867, 4415, 3), -- Weapon Type
+(31867, 4416, 19), -- Races
 -- Guardian of Border
-(31868, 4390, 1), -- Mystic Immunity
-(31868, 4408, 1), -- HP Increase (1x)
-(31868, 4409, 1), -- MP Increase (1x)
-(31868, 4410, 11), -- Average P. Atk.
-(31868, 4411, 11), -- Average M. Atk.
-(31868, 4412, 11), -- Average P. Def.
-(31868, 4413, 11), -- Average M. Def.
-(31868, 4414, 2), -- Standard Type
-(31868, 4415, 3), -- One-handed Sword
-(31868, 4416, 19), -- Others
+(31868, 4390, 1), -- NPC Abnormal Immunity
+(31868, 4408, 1), -- HP Modifiers
+(31868, 4409, 1), -- MP Modifiers
+(31868, 4410, 11), -- P. Atk. Modifiers
+(31868, 4411, 11), -- M. Atk. Modifiers
+(31868, 4412, 11), -- P. Def. Modifiers
+(31868, 4413, 11), -- M. Def. Modifiers
+(31868, 4414, 2), -- Armor Type
+(31868, 4415, 3), -- Weapon Type
+(31868, 4416, 19), -- Races
 -- Guardian of Border
-(31869, 4390, 1), -- Mystic Immunity
-(31869, 4408, 1), -- HP Increase (1x)
-(31869, 4409, 1), -- MP Increase (1x)
-(31869, 4410, 11), -- Average P. Atk.
-(31869, 4411, 11), -- Average M. Atk.
-(31869, 4412, 11), -- Average P. Def.
-(31869, 4413, 11), -- Average M. Def.
-(31869, 4414, 2), -- Standard Type
-(31869, 4415, 3), -- One-handed Sword
-(31869, 4416, 19), -- Others
+(31869, 4390, 1), -- NPC Abnormal Immunity
+(31869, 4408, 1), -- HP Modifiers
+(31869, 4409, 1), -- MP Modifiers
+(31869, 4410, 11), -- P. Atk. Modifiers
+(31869, 4411, 11), -- M. Atk. Modifiers
+(31869, 4412, 11), -- P. Def. Modifiers
+(31869, 4413, 11), -- M. Def. Modifiers
+(31869, 4414, 2), -- Armor Type
+(31869, 4415, 3), -- Weapon Type
+(31869, 4416, 19), -- Races
 -- Guardian of Border
-(31870, 4390, 1), -- Mystic Immunity
-(31870, 4408, 1), -- HP Increase (1x)
-(31870, 4409, 1), -- MP Increase (1x)
-(31870, 4410, 11), -- Average P. Atk.
-(31870, 4411, 11), -- Average M. Atk.
-(31870, 4412, 11), -- Average P. Def.
-(31870, 4413, 11), -- Average M. Def.
-(31870, 4414, 2), -- Standard Type
-(31870, 4415, 3), -- One-handed Sword
-(31870, 4416, 19), -- Others
+(31870, 4390, 1), -- NPC Abnormal Immunity
+(31870, 4408, 1), -- HP Modifiers
+(31870, 4409, 1), -- MP Modifiers
+(31870, 4410, 11), -- P. Atk. Modifiers
+(31870, 4411, 11), -- M. Atk. Modifiers
+(31870, 4412, 11), -- P. Def. Modifiers
+(31870, 4413, 11), -- M. Def. Modifiers
+(31870, 4414, 2), -- Armor Type
+(31870, 4415, 3), -- Weapon Type
+(31870, 4416, 19), -- Races
 -- Guardian of Border
-(31871, 4390, 1), -- Mystic Immunity
-(31871, 4408, 1), -- HP Increase (1x)
-(31871, 4409, 1), -- MP Increase (1x)
-(31871, 4410, 11), -- Average P. Atk.
-(31871, 4411, 11), -- Average M. Atk.
-(31871, 4412, 11), -- Average P. Def.
-(31871, 4413, 11), -- Average M. Def.
-(31871, 4414, 2), -- Standard Type
-(31871, 4415, 3), -- One-handed Sword
-(31871, 4416, 19), -- Others
+(31871, 4390, 1), -- NPC Abnormal Immunity
+(31871, 4408, 1), -- HP Modifiers
+(31871, 4409, 1), -- MP Modifiers
+(31871, 4410, 11), -- P. Atk. Modifiers
+(31871, 4411, 11), -- M. Atk. Modifiers
+(31871, 4412, 11), -- P. Def. Modifiers
+(31871, 4413, 11), -- M. Def. Modifiers
+(31871, 4414, 2), -- Armor Type
+(31871, 4415, 3), -- Weapon Type
+(31871, 4416, 19), -- Races
 -- Guardian of Border
-(31872, 4390, 1), -- Mystic Immunity
-(31872, 4408, 1), -- HP Increase (1x)
-(31872, 4409, 1), -- MP Increase (1x)
-(31872, 4410, 11), -- Average P. Atk.
-(31872, 4411, 11), -- Average M. Atk.
-(31872, 4412, 11), -- Average P. Def.
-(31872, 4413, 11), -- Average M. Def.
-(31872, 4414, 2), -- Standard Type
-(31872, 4415, 3), -- One-handed Sword
-(31872, 4416, 19), -- Others
+(31872, 4390, 1), -- NPC Abnormal Immunity
+(31872, 4408, 1), -- HP Modifiers
+(31872, 4409, 1), -- MP Modifiers
+(31872, 4410, 11), -- P. Atk. Modifiers
+(31872, 4411, 11), -- M. Atk. Modifiers
+(31872, 4412, 11), -- P. Def. Modifiers
+(31872, 4413, 11), -- M. Def. Modifiers
+(31872, 4414, 2), -- Armor Type
+(31872, 4415, 3), -- Weapon Type
+(31872, 4416, 19), -- Races
 -- Guardian of Border
-(31873, 4390, 1), -- Mystic Immunity
-(31873, 4408, 1), -- HP Increase (1x)
-(31873, 4409, 1), -- MP Increase (1x)
-(31873, 4410, 11), -- Average P. Atk.
-(31873, 4411, 11), -- Average M. Atk.
-(31873, 4412, 11), -- Average P. Def.
-(31873, 4413, 11), -- Average M. Def.
-(31873, 4414, 2), -- Standard Type
-(31873, 4415, 3), -- One-handed Sword
-(31873, 4416, 19), -- Others
+(31873, 4390, 1), -- NPC Abnormal Immunity
+(31873, 4408, 1), -- HP Modifiers
+(31873, 4409, 1), -- MP Modifiers
+(31873, 4410, 11), -- P. Atk. Modifiers
+(31873, 4411, 11), -- M. Atk. Modifiers
+(31873, 4412, 11), -- P. Def. Modifiers
+(31873, 4413, 11), -- M. Def. Modifiers
+(31873, 4414, 2), -- Armor Type
+(31873, 4415, 3), -- Weapon Type
+(31873, 4416, 19), -- Races
 -- Guardian of Border
-(31874, 4390, 1), -- Mystic Immunity
-(31874, 4408, 1), -- HP Increase (1x)
-(31874, 4409, 1), -- MP Increase (1x)
-(31874, 4410, 11), -- Average P. Atk.
-(31874, 4411, 11), -- Average M. Atk.
-(31874, 4412, 11), -- Average P. Def.
-(31874, 4413, 11), -- Average M. Def.
-(31874, 4414, 2), -- Standard Type
-(31874, 4415, 3), -- One-handed Sword
-(31874, 4416, 19), -- Others
+(31874, 4390, 1), -- NPC Abnormal Immunity
+(31874, 4408, 1), -- HP Modifiers
+(31874, 4409, 1), -- MP Modifiers
+(31874, 4410, 11), -- P. Atk. Modifiers
+(31874, 4411, 11), -- M. Atk. Modifiers
+(31874, 4412, 11), -- P. Def. Modifiers
+(31874, 4413, 11), -- M. Def. Modifiers
+(31874, 4414, 2), -- Armor Type
+(31874, 4415, 3), -- Weapon Type
+(31874, 4416, 19), -- Races
 -- Guardian of Border
-(31875, 4390, 1), -- Mystic Immunity
-(31875, 4408, 1), -- HP Increase (1x)
-(31875, 4409, 1), -- MP Increase (1x)
-(31875, 4410, 11), -- Average P. Atk.
-(31875, 4411, 11), -- Average M. Atk.
-(31875, 4412, 11), -- Average P. Def.
-(31875, 4413, 11), -- Average M. Def.
-(31875, 4414, 2), -- Standard Type
-(31875, 4415, 3), -- One-handed Sword
-(31875, 4416, 19), -- Others
+(31875, 4390, 1), -- NPC Abnormal Immunity
+(31875, 4408, 1), -- HP Modifiers
+(31875, 4409, 1), -- MP Modifiers
+(31875, 4410, 11), -- P. Atk. Modifiers
+(31875, 4411, 11), -- M. Atk. Modifiers
+(31875, 4412, 11), -- P. Def. Modifiers
+(31875, 4413, 11), -- M. Def. Modifiers
+(31875, 4414, 2), -- Armor Type
+(31875, 4415, 3), -- Weapon Type
+(31875, 4416, 19), -- Races
 -- Guardian of Border
-(31876, 4390, 1), -- Mystic Immunity
-(31876, 4408, 1), -- HP Increase (1x)
-(31876, 4409, 1), -- MP Increase (1x)
-(31876, 4410, 11), -- Average P. Atk.
-(31876, 4411, 11), -- Average M. Atk.
-(31876, 4412, 11), -- Average P. Def.
-(31876, 4413, 11), -- Average M. Def.
-(31876, 4414, 2), -- Standard Type
-(31876, 4415, 3), -- One-handed Sword
-(31876, 4416, 19), -- Others
+(31876, 4390, 1), -- NPC Abnormal Immunity
+(31876, 4408, 1), -- HP Modifiers
+(31876, 4409, 1), -- MP Modifiers
+(31876, 4410, 11), -- P. Atk. Modifiers
+(31876, 4411, 11), -- M. Atk. Modifiers
+(31876, 4412, 11), -- P. Def. Modifiers
+(31876, 4413, 11), -- M. Def. Modifiers
+(31876, 4414, 2), -- Armor Type
+(31876, 4415, 3), -- Weapon Type
+(31876, 4416, 19), -- Races
 -- Guardian of Border
-(31877, 4390, 1), -- Mystic Immunity
-(31877, 4408, 1), -- HP Increase (1x)
-(31877, 4409, 1), -- MP Increase (1x)
-(31877, 4410, 11), -- Average P. Atk.
-(31877, 4411, 11), -- Average M. Atk.
-(31877, 4412, 11), -- Average P. Def.
-(31877, 4413, 11), -- Average M. Def.
-(31877, 4414, 2), -- Standard Type
-(31877, 4415, 3), -- One-handed Sword
-(31877, 4416, 19), -- Others
+(31877, 4390, 1), -- NPC Abnormal Immunity
+(31877, 4408, 1), -- HP Modifiers
+(31877, 4409, 1), -- MP Modifiers
+(31877, 4410, 11), -- P. Atk. Modifiers
+(31877, 4411, 11), -- M. Atk. Modifiers
+(31877, 4412, 11), -- P. Def. Modifiers
+(31877, 4413, 11), -- M. Def. Modifiers
+(31877, 4414, 2), -- Armor Type
+(31877, 4415, 3), -- Weapon Type
+(31877, 4416, 19), -- Races
 -- Guardian of Border
-(31878, 4390, 1), -- Mystic Immunity
-(31878, 4408, 1), -- HP Increase (1x)
-(31878, 4409, 1), -- MP Increase (1x)
-(31878, 4410, 11), -- Average P. Atk.
-(31878, 4411, 11), -- Average M. Atk.
-(31878, 4412, 11), -- Average P. Def.
-(31878, 4413, 11), -- Average M. Def.
-(31878, 4414, 2), -- Standard Type
-(31878, 4415, 3), -- One-handed Sword
-(31878, 4416, 19), -- Others
+(31878, 4390, 1), -- NPC Abnormal Immunity
+(31878, 4408, 1), -- HP Modifiers
+(31878, 4409, 1), -- MP Modifiers
+(31878, 4410, 11), -- P. Atk. Modifiers
+(31878, 4411, 11), -- M. Atk. Modifiers
+(31878, 4412, 11), -- P. Def. Modifiers
+(31878, 4413, 11), -- M. Def. Modifiers
+(31878, 4414, 2), -- Armor Type
+(31878, 4415, 3), -- Weapon Type
+(31878, 4416, 19), -- Races
 -- Guardian of Border
-(31879, 4390, 1), -- Mystic Immunity
-(31879, 4408, 1), -- HP Increase (1x)
-(31879, 4409, 1), -- MP Increase (1x)
-(31879, 4410, 11), -- Average P. Atk.
-(31879, 4411, 11), -- Average M. Atk.
-(31879, 4412, 11), -- Average P. Def.
-(31879, 4413, 11), -- Average M. Def.
-(31879, 4414, 2), -- Standard Type
-(31879, 4415, 3), -- One-handed Sword
-(31879, 4416, 19), -- Others
+(31879, 4390, 1), -- NPC Abnormal Immunity
+(31879, 4408, 1), -- HP Modifiers
+(31879, 4409, 1), -- MP Modifiers
+(31879, 4410, 11), -- P. Atk. Modifiers
+(31879, 4411, 11), -- M. Atk. Modifiers
+(31879, 4412, 11), -- P. Def. Modifiers
+(31879, 4413, 11), -- M. Def. Modifiers
+(31879, 4414, 2), -- Armor Type
+(31879, 4415, 3), -- Weapon Type
+(31879, 4416, 19), -- Races
 -- Guardian of Border
-(31880, 4390, 1), -- Mystic Immunity
-(31880, 4408, 1), -- HP Increase (1x)
-(31880, 4409, 1), -- MP Increase (1x)
-(31880, 4410, 11), -- Average P. Atk.
-(31880, 4411, 11), -- Average M. Atk.
-(31880, 4412, 11), -- Average P. Def.
-(31880, 4413, 11), -- Average M. Def.
-(31880, 4414, 2), -- Standard Type
-(31880, 4415, 3), -- One-handed Sword
-(31880, 4416, 19), -- Others
+(31880, 4390, 1), -- NPC Abnormal Immunity
+(31880, 4408, 1), -- HP Modifiers
+(31880, 4409, 1), -- MP Modifiers
+(31880, 4410, 11), -- P. Atk. Modifiers
+(31880, 4411, 11), -- M. Atk. Modifiers
+(31880, 4412, 11), -- P. Def. Modifiers
+(31880, 4413, 11), -- M. Def. Modifiers
+(31880, 4414, 2), -- Armor Type
+(31880, 4415, 3), -- Weapon Type
+(31880, 4416, 19), -- Races
 -- Guardian of Border
-(31881, 4390, 1), -- Mystic Immunity
-(31881, 4408, 1), -- HP Increase (1x)
-(31881, 4409, 1), -- MP Increase (1x)
-(31881, 4410, 11), -- Average P. Atk.
-(31881, 4411, 11), -- Average M. Atk.
-(31881, 4412, 11), -- Average P. Def.
-(31881, 4413, 11), -- Average M. Def.
-(31881, 4414, 2), -- Standard Type
-(31881, 4415, 3), -- One-handed Sword
-(31881, 4416, 19), -- Others
+(31881, 4390, 1), -- NPC Abnormal Immunity
+(31881, 4408, 1), -- HP Modifiers
+(31881, 4409, 1), -- MP Modifiers
+(31881, 4410, 11), -- P. Atk. Modifiers
+(31881, 4411, 11), -- M. Atk. Modifiers
+(31881, 4412, 11), -- P. Def. Modifiers
+(31881, 4413, 11), -- M. Def. Modifiers
+(31881, 4414, 2), -- Armor Type
+(31881, 4415, 3), -- Weapon Type
+(31881, 4416, 19), -- Races
 -- Guardian of Border
-(31882, 4390, 1), -- Mystic Immunity
-(31882, 4408, 1), -- HP Increase (1x)
-(31882, 4409, 1), -- MP Increase (1x)
-(31882, 4410, 11), -- Average P. Atk.
-(31882, 4411, 11), -- Average M. Atk.
-(31882, 4412, 11), -- Average P. Def.
-(31882, 4413, 11), -- Average M. Def.
-(31882, 4414, 2), -- Standard Type
-(31882, 4415, 3), -- One-handed Sword
-(31882, 4416, 19), -- Others
+(31882, 4390, 1), -- NPC Abnormal Immunity
+(31882, 4408, 1), -- HP Modifiers
+(31882, 4409, 1), -- MP Modifiers
+(31882, 4410, 11), -- P. Atk. Modifiers
+(31882, 4411, 11), -- M. Atk. Modifiers
+(31882, 4412, 11), -- P. Def. Modifiers
+(31882, 4413, 11), -- M. Def. Modifiers
+(31882, 4414, 2), -- Armor Type
+(31882, 4415, 3), -- Weapon Type
+(31882, 4416, 19), -- Races
 -- Guardian of Border
-(31883, 4390, 1), -- Mystic Immunity
-(31883, 4408, 1), -- HP Increase (1x)
-(31883, 4409, 1), -- MP Increase (1x)
-(31883, 4410, 11), -- Average P. Atk.
-(31883, 4411, 11), -- Average M. Atk.
-(31883, 4412, 11), -- Average P. Def.
-(31883, 4413, 11), -- Average M. Def.
-(31883, 4414, 2), -- Standard Type
-(31883, 4415, 3), -- One-handed Sword
-(31883, 4416, 19), -- Others
+(31883, 4390, 1), -- NPC Abnormal Immunity
+(31883, 4408, 1), -- HP Modifiers
+(31883, 4409, 1), -- MP Modifiers
+(31883, 4410, 11), -- P. Atk. Modifiers
+(31883, 4411, 11), -- M. Atk. Modifiers
+(31883, 4412, 11), -- P. Def. Modifiers
+(31883, 4413, 11), -- M. Def. Modifiers
+(31883, 4414, 2), -- Armor Type
+(31883, 4415, 3), -- Weapon Type
+(31883, 4416, 19), -- Races
 -- Guardian of Border
-(31884, 4390, 1), -- Mystic Immunity
-(31884, 4408, 1), -- HP Increase (1x)
-(31884, 4409, 1), -- MP Increase (1x)
-(31884, 4410, 11), -- Average P. Atk.
-(31884, 4411, 11), -- Average M. Atk.
-(31884, 4412, 11), -- Average P. Def.
-(31884, 4413, 11), -- Average M. Def.
-(31884, 4414, 2), -- Standard Type
-(31884, 4415, 3), -- One-handed Sword
-(31884, 4416, 19), -- Others
+(31884, 4390, 1), -- NPC Abnormal Immunity
+(31884, 4408, 1), -- HP Modifiers
+(31884, 4409, 1), -- MP Modifiers
+(31884, 4410, 11), -- P. Atk. Modifiers
+(31884, 4411, 11), -- M. Atk. Modifiers
+(31884, 4412, 11), -- P. Def. Modifiers
+(31884, 4413, 11), -- M. Def. Modifiers
+(31884, 4414, 2), -- Armor Type
+(31884, 4415, 3), -- Weapon Type
+(31884, 4416, 19), -- Races
 -- Guardian of Border
-(31885, 4390, 1), -- Mystic Immunity
-(31885, 4408, 1), -- HP Increase (1x)
-(31885, 4409, 1), -- MP Increase (1x)
-(31885, 4410, 11), -- Average P. Atk.
-(31885, 4411, 11), -- Average M. Atk.
-(31885, 4412, 11), -- Average P. Def.
-(31885, 4413, 11), -- Average M. Def.
-(31885, 4414, 2), -- Standard Type
-(31885, 4415, 3), -- One-handed Sword
-(31885, 4416, 19), -- Others
+(31885, 4390, 1), -- NPC Abnormal Immunity
+(31885, 4408, 1), -- HP Modifiers
+(31885, 4409, 1), -- MP Modifiers
+(31885, 4410, 11), -- P. Atk. Modifiers
+(31885, 4411, 11), -- M. Atk. Modifiers
+(31885, 4412, 11), -- P. Def. Modifiers
+(31885, 4413, 11), -- M. Def. Modifiers
+(31885, 4414, 2), -- Armor Type
+(31885, 4415, 3), -- Weapon Type
+(31885, 4416, 19), -- Races
 -- Guardian of Border
-(31886, 4390, 1), -- Mystic Immunity
-(31886, 4408, 1), -- HP Increase (1x)
-(31886, 4409, 1), -- MP Increase (1x)
-(31886, 4410, 11), -- Average P. Atk.
-(31886, 4411, 11), -- Average M. Atk.
-(31886, 4412, 11), -- Average P. Def.
-(31886, 4413, 11), -- Average M. Def.
-(31886, 4414, 2), -- Standard Type
-(31886, 4415, 3), -- One-handed Sword
-(31886, 4416, 19), -- Others
+(31886, 4390, 1), -- NPC Abnormal Immunity
+(31886, 4408, 1), -- HP Modifiers
+(31886, 4409, 1), -- MP Modifiers
+(31886, 4410, 11), -- P. Atk. Modifiers
+(31886, 4411, 11), -- M. Atk. Modifiers
+(31886, 4412, 11), -- P. Def. Modifiers
+(31886, 4413, 11), -- M. Def. Modifiers
+(31886, 4414, 2), -- Armor Type
+(31886, 4415, 3), -- Weapon Type
+(31886, 4416, 19), -- Races
 -- Guardian of Border
-(31887, 4390, 1), -- Mystic Immunity
-(31887, 4408, 1), -- HP Increase (1x)
-(31887, 4409, 1), -- MP Increase (1x)
-(31887, 4410, 11), -- Average P. Atk.
-(31887, 4411, 11), -- Average M. Atk.
-(31887, 4412, 11), -- Average P. Def.
-(31887, 4413, 11), -- Average M. Def.
-(31887, 4414, 2), -- Standard Type
-(31887, 4415, 3), -- One-handed Sword
-(31887, 4416, 19), -- Others
+(31887, 4390, 1), -- NPC Abnormal Immunity
+(31887, 4408, 1), -- HP Modifiers
+(31887, 4409, 1), -- MP Modifiers
+(31887, 4410, 11), -- P. Atk. Modifiers
+(31887, 4411, 11), -- M. Atk. Modifiers
+(31887, 4412, 11), -- P. Def. Modifiers
+(31887, 4413, 11), -- M. Def. Modifiers
+(31887, 4414, 2), -- Armor Type
+(31887, 4415, 3), -- Weapon Type
+(31887, 4416, 19), -- Races
 -- Guardian of Border
-(31888, 4390, 1), -- Mystic Immunity
-(31888, 4408, 1), -- HP Increase (1x)
-(31888, 4409, 1), -- MP Increase (1x)
-(31888, 4410, 11), -- Average P. Atk.
-(31888, 4411, 11), -- Average M. Atk.
-(31888, 4412, 11), -- Average P. Def.
-(31888, 4413, 11), -- Average M. Def.
-(31888, 4414, 2), -- Standard Type
-(31888, 4415, 3), -- One-handed Sword
-(31888, 4416, 19), -- Others
+(31888, 4390, 1), -- NPC Abnormal Immunity
+(31888, 4408, 1), -- HP Modifiers
+(31888, 4409, 1), -- MP Modifiers
+(31888, 4410, 11), -- P. Atk. Modifiers
+(31888, 4411, 11), -- M. Atk. Modifiers
+(31888, 4412, 11), -- P. Def. Modifiers
+(31888, 4413, 11), -- M. Def. Modifiers
+(31888, 4414, 2), -- Armor Type
+(31888, 4415, 3), -- Weapon Type
+(31888, 4416, 19), -- Races
 -- Guardian of Border
-(31889, 4390, 1), -- Mystic Immunity
-(31889, 4408, 1), -- HP Increase (1x)
-(31889, 4409, 1), -- MP Increase (1x)
-(31889, 4410, 11), -- Average P. Atk.
-(31889, 4411, 11), -- Average M. Atk.
-(31889, 4412, 11), -- Average P. Def.
-(31889, 4413, 11), -- Average M. Def.
-(31889, 4414, 2), -- Standard Type
-(31889, 4415, 3), -- One-handed Sword
-(31889, 4416, 19), -- Others
+(31889, 4390, 1), -- NPC Abnormal Immunity
+(31889, 4408, 1), -- HP Modifiers
+(31889, 4409, 1), -- MP Modifiers
+(31889, 4410, 11), -- P. Atk. Modifiers
+(31889, 4411, 11), -- M. Atk. Modifiers
+(31889, 4412, 11), -- P. Def. Modifiers
+(31889, 4413, 11), -- M. Def. Modifiers
+(31889, 4414, 2), -- Armor Type
+(31889, 4415, 3), -- Weapon Type
+(31889, 4416, 19), -- Races
 -- Guardian of Border
-(31890, 4390, 1), -- Mystic Immunity
-(31890, 4408, 1), -- HP Increase (1x)
-(31890, 4409, 1), -- MP Increase (1x)
-(31890, 4410, 11), -- Average P. Atk.
-(31890, 4411, 11), -- Average M. Atk.
-(31890, 4412, 11), -- Average P. Def.
-(31890, 4413, 11), -- Average M. Def.
-(31890, 4414, 2), -- Standard Type
-(31890, 4415, 3), -- One-handed Sword
-(31890, 4416, 19), -- Others
+(31890, 4390, 1), -- NPC Abnormal Immunity
+(31890, 4408, 1), -- HP Modifiers
+(31890, 4409, 1), -- MP Modifiers
+(31890, 4410, 11), -- P. Atk. Modifiers
+(31890, 4411, 11), -- M. Atk. Modifiers
+(31890, 4412, 11), -- P. Def. Modifiers
+(31890, 4413, 11), -- M. Def. Modifiers
+(31890, 4414, 2), -- Armor Type
+(31890, 4415, 3), -- Weapon Type
+(31890, 4416, 19), -- Races
 -- Guardian of Border
-(31891, 4390, 1), -- Mystic Immunity
-(31891, 4408, 1), -- HP Increase (1x)
-(31891, 4409, 1), -- MP Increase (1x)
-(31891, 4410, 11), -- Average P. Atk.
-(31891, 4411, 11), -- Average M. Atk.
-(31891, 4412, 11), -- Average P. Def.
-(31891, 4413, 11), -- Average M. Def.
-(31891, 4414, 2), -- Standard Type
-(31891, 4415, 3), -- One-handed Sword
-(31891, 4416, 19), -- Others
+(31891, 4390, 1), -- NPC Abnormal Immunity
+(31891, 4408, 1), -- HP Modifiers
+(31891, 4409, 1), -- MP Modifiers
+(31891, 4410, 11), -- P. Atk. Modifiers
+(31891, 4411, 11), -- M. Atk. Modifiers
+(31891, 4412, 11), -- P. Def. Modifiers
+(31891, 4413, 11), -- M. Def. Modifiers
+(31891, 4414, 2), -- Armor Type
+(31891, 4415, 3), -- Weapon Type
+(31891, 4416, 19), -- Races
 -- Guardian of Border
-(31892, 4390, 1), -- Mystic Immunity
-(31892, 4408, 1), -- HP Increase (1x)
-(31892, 4409, 1), -- MP Increase (1x)
-(31892, 4410, 11), -- Average P. Atk.
-(31892, 4411, 11), -- Average M. Atk.
-(31892, 4412, 11), -- Average P. Def.
-(31892, 4413, 11), -- Average M. Def.
-(31892, 4414, 2), -- Standard Type
-(31892, 4415, 3), -- One-handed Sword
-(31892, 4416, 19), -- Others
+(31892, 4390, 1), -- NPC Abnormal Immunity
+(31892, 4408, 1), -- HP Modifiers
+(31892, 4409, 1), -- MP Modifiers
+(31892, 4410, 11), -- P. Atk. Modifiers
+(31892, 4411, 11), -- M. Atk. Modifiers
+(31892, 4412, 11), -- P. Def. Modifiers
+(31892, 4413, 11), -- M. Def. Modifiers
+(31892, 4414, 2), -- Armor Type
+(31892, 4415, 3), -- Weapon Type
+(31892, 4416, 19), -- Races
 -- Guardian of Border
-(31893, 4390, 1), -- Mystic Immunity
-(31893, 4408, 1), -- HP Increase (1x)
-(31893, 4409, 1), -- MP Increase (1x)
-(31893, 4410, 11), -- Average P. Atk.
-(31893, 4411, 11), -- Average M. Atk.
-(31893, 4412, 11), -- Average P. Def.
-(31893, 4413, 11), -- Average M. Def.
-(31893, 4414, 2), -- Standard Type
-(31893, 4415, 3), -- One-handed Sword
-(31893, 4416, 19), -- Others
+(31893, 4390, 1), -- NPC Abnormal Immunity
+(31893, 4408, 1), -- HP Modifiers
+(31893, 4409, 1), -- MP Modifiers
+(31893, 4410, 11), -- P. Atk. Modifiers
+(31893, 4411, 11), -- M. Atk. Modifiers
+(31893, 4412, 11), -- P. Def. Modifiers
+(31893, 4413, 11), -- M. Def. Modifiers
+(31893, 4414, 2), -- Armor Type
+(31893, 4415, 3), -- Weapon Type
+(31893, 4416, 19), -- Races
 -- Guardian of Border
-(31894, 4390, 1), -- Mystic Immunity
-(31894, 4408, 1), -- HP Increase (1x)
-(31894, 4409, 1), -- MP Increase (1x)
-(31894, 4410, 11), -- Average P. Atk.
-(31894, 4411, 11), -- Average M. Atk.
-(31894, 4412, 11), -- Average P. Def.
-(31894, 4413, 11), -- Average M. Def.
-(31894, 4414, 2), -- Standard Type
-(31894, 4415, 3), -- One-handed Sword
-(31894, 4416, 19), -- Others
+(31894, 4390, 1), -- NPC Abnormal Immunity
+(31894, 4408, 1), -- HP Modifiers
+(31894, 4409, 1), -- MP Modifiers
+(31894, 4410, 11), -- P. Atk. Modifiers
+(31894, 4411, 11), -- M. Atk. Modifiers
+(31894, 4412, 11), -- P. Def. Modifiers
+(31894, 4413, 11), -- M. Def. Modifiers
+(31894, 4414, 2), -- Armor Type
+(31894, 4415, 3), -- Weapon Type
+(31894, 4416, 19), -- Races
 -- Guardian of Border
-(31895, 4390, 1), -- Mystic Immunity
-(31895, 4408, 1), -- HP Increase (1x)
-(31895, 4409, 1), -- MP Increase (1x)
-(31895, 4410, 11), -- Average P. Atk.
-(31895, 4411, 11), -- Average M. Atk.
-(31895, 4412, 11), -- Average P. Def.
-(31895, 4413, 11), -- Average M. Def.
-(31895, 4414, 2), -- Standard Type
-(31895, 4415, 3), -- One-handed Sword
-(31895, 4416, 19), -- Others
+(31895, 4390, 1), -- NPC Abnormal Immunity
+(31895, 4408, 1), -- HP Modifiers
+(31895, 4409, 1), -- MP Modifiers
+(31895, 4410, 11), -- P. Atk. Modifiers
+(31895, 4411, 11), -- M. Atk. Modifiers
+(31895, 4412, 11), -- P. Def. Modifiers
+(31895, 4413, 11), -- M. Def. Modifiers
+(31895, 4414, 2), -- Armor Type
+(31895, 4415, 3), -- Weapon Type
+(31895, 4416, 19), -- Races
 -- Guardian of Border
-(31896, 4390, 1), -- Mystic Immunity
-(31896, 4408, 1), -- HP Increase (1x)
-(31896, 4409, 1), -- MP Increase (1x)
-(31896, 4410, 11), -- Average P. Atk.
-(31896, 4411, 11), -- Average M. Atk.
-(31896, 4412, 11), -- Average P. Def.
-(31896, 4413, 11), -- Average M. Def.
-(31896, 4414, 2), -- Standard Type
-(31896, 4415, 3), -- One-handed Sword
-(31896, 4416, 19), -- Others
+(31896, 4390, 1), -- NPC Abnormal Immunity
+(31896, 4408, 1), -- HP Modifiers
+(31896, 4409, 1), -- MP Modifiers
+(31896, 4410, 11), -- P. Atk. Modifiers
+(31896, 4411, 11), -- M. Atk. Modifiers
+(31896, 4412, 11), -- P. Def. Modifiers
+(31896, 4413, 11), -- M. Def. Modifiers
+(31896, 4414, 2), -- Armor Type
+(31896, 4415, 3), -- Weapon Type
+(31896, 4416, 19), -- Races
 -- Guardian of Border
-(31897, 4390, 1), -- Mystic Immunity
-(31897, 4408, 1), -- HP Increase (1x)
-(31897, 4409, 1), -- MP Increase (1x)
-(31897, 4410, 11), -- Average P. Atk.
-(31897, 4411, 11), -- Average M. Atk.
-(31897, 4412, 11), -- Average P. Def.
-(31897, 4413, 11), -- Average M. Def.
-(31897, 4414, 2), -- Standard Type
-(31897, 4415, 3), -- One-handed Sword
-(31897, 4416, 19), -- Others
+(31897, 4390, 1), -- NPC Abnormal Immunity
+(31897, 4408, 1), -- HP Modifiers
+(31897, 4409, 1), -- MP Modifiers
+(31897, 4410, 11), -- P. Atk. Modifiers
+(31897, 4411, 11), -- M. Atk. Modifiers
+(31897, 4412, 11), -- P. Def. Modifiers
+(31897, 4413, 11), -- M. Def. Modifiers
+(31897, 4414, 2), -- Armor Type
+(31897, 4415, 3), -- Weapon Type
+(31897, 4416, 19), -- Races
 -- Guardian of Border
-(31898, 4390, 1), -- Mystic Immunity
-(31898, 4408, 1), -- HP Increase (1x)
-(31898, 4409, 1), -- MP Increase (1x)
-(31898, 4410, 11), -- Average P. Atk.
-(31898, 4411, 11), -- Average M. Atk.
-(31898, 4412, 11), -- Average P. Def.
-(31898, 4413, 11), -- Average M. Def.
-(31898, 4414, 2), -- Standard Type
-(31898, 4415, 3), -- One-handed Sword
-(31898, 4416, 19), -- Others
+(31898, 4390, 1), -- NPC Abnormal Immunity
+(31898, 4408, 1), -- HP Modifiers
+(31898, 4409, 1), -- MP Modifiers
+(31898, 4410, 11), -- P. Atk. Modifiers
+(31898, 4411, 11), -- M. Atk. Modifiers
+(31898, 4412, 11), -- P. Def. Modifiers
+(31898, 4413, 11), -- M. Def. Modifiers
+(31898, 4414, 2), -- Armor Type
+(31898, 4415, 3), -- Weapon Type
+(31898, 4416, 19), -- Races
 -- Guardian of Border
-(31899, 4390, 1), -- Mystic Immunity
-(31899, 4408, 1), -- HP Increase (1x)
-(31899, 4409, 1), -- MP Increase (1x)
-(31899, 4410, 11), -- Average P. Atk.
-(31899, 4411, 11), -- Average M. Atk.
-(31899, 4412, 11), -- Average P. Def.
-(31899, 4413, 11), -- Average M. Def.
-(31899, 4414, 2), -- Standard Type
-(31899, 4415, 3), -- One-handed Sword
-(31899, 4416, 19), -- Others
+(31899, 4390, 1), -- NPC Abnormal Immunity
+(31899, 4408, 1), -- HP Modifiers
+(31899, 4409, 1), -- MP Modifiers
+(31899, 4410, 11), -- P. Atk. Modifiers
+(31899, 4411, 11), -- M. Atk. Modifiers
+(31899, 4412, 11), -- P. Def. Modifiers
+(31899, 4413, 11), -- M. Def. Modifiers
+(31899, 4414, 2), -- Armor Type
+(31899, 4415, 3), -- Weapon Type
+(31899, 4416, 19), -- Races
 -- Guardian of Border
-(31900, 4390, 1), -- Mystic Immunity
-(31900, 4408, 1), -- HP Increase (1x)
-(31900, 4409, 1), -- MP Increase (1x)
-(31900, 4410, 11), -- Average P. Atk.
-(31900, 4411, 11), -- Average M. Atk.
-(31900, 4412, 11), -- Average P. Def.
-(31900, 4413, 11), -- Average M. Def.
-(31900, 4414, 2), -- Standard Type
-(31900, 4415, 3), -- One-handed Sword
-(31900, 4416, 19), -- Others
+(31900, 4390, 1), -- NPC Abnormal Immunity
+(31900, 4408, 1), -- HP Modifiers
+(31900, 4409, 1), -- MP Modifiers
+(31900, 4410, 11), -- P. Atk. Modifiers
+(31900, 4411, 11), -- M. Atk. Modifiers
+(31900, 4412, 11), -- P. Def. Modifiers
+(31900, 4413, 11), -- M. Def. Modifiers
+(31900, 4414, 2), -- Armor Type
+(31900, 4415, 3), -- Weapon Type
+(31900, 4416, 19), -- Races
 -- Guardian of Border
-(31901, 4390, 1), -- Mystic Immunity
-(31901, 4408, 1), -- HP Increase (1x)
-(31901, 4409, 1), -- MP Increase (1x)
-(31901, 4410, 11), -- Average P. Atk.
-(31901, 4411, 11), -- Average M. Atk.
-(31901, 4412, 11), -- Average P. Def.
-(31901, 4413, 11), -- Average M. Def.
-(31901, 4414, 2), -- Standard Type
-(31901, 4415, 3), -- One-handed Sword
-(31901, 4416, 19), -- Others
+(31901, 4390, 1), -- NPC Abnormal Immunity
+(31901, 4408, 1), -- HP Modifiers
+(31901, 4409, 1), -- MP Modifiers
+(31901, 4410, 11), -- P. Atk. Modifiers
+(31901, 4411, 11), -- M. Atk. Modifiers
+(31901, 4412, 11), -- P. Def. Modifiers
+(31901, 4413, 11), -- M. Def. Modifiers
+(31901, 4414, 2), -- Armor Type
+(31901, 4415, 3), -- Weapon Type
+(31901, 4416, 19), -- Races
 -- Guardian of Border
-(31902, 4390, 1), -- Mystic Immunity
-(31902, 4408, 1), -- HP Increase (1x)
-(31902, 4409, 1), -- MP Increase (1x)
-(31902, 4410, 11), -- Average P. Atk.
-(31902, 4411, 11), -- Average M. Atk.
-(31902, 4412, 11), -- Average P. Def.
-(31902, 4413, 11), -- Average M. Def.
-(31902, 4414, 2), -- Standard Type
-(31902, 4415, 3), -- One-handed Sword
-(31902, 4416, 19), -- Others
+(31902, 4390, 1), -- NPC Abnormal Immunity
+(31902, 4408, 1), -- HP Modifiers
+(31902, 4409, 1), -- MP Modifiers
+(31902, 4410, 11), -- P. Atk. Modifiers
+(31902, 4411, 11), -- M. Atk. Modifiers
+(31902, 4412, 11), -- P. Def. Modifiers
+(31902, 4413, 11), -- M. Def. Modifiers
+(31902, 4414, 2), -- Armor Type
+(31902, 4415, 3), -- Weapon Type
+(31902, 4416, 19), -- Races
 -- Guardian of Border
-(31903, 4390, 1), -- Mystic Immunity
-(31903, 4408, 1), -- HP Increase (1x)
-(31903, 4409, 1), -- MP Increase (1x)
-(31903, 4410, 11), -- Average P. Atk.
-(31903, 4411, 11), -- Average M. Atk.
-(31903, 4412, 11), -- Average P. Def.
-(31903, 4413, 11), -- Average M. Def.
-(31903, 4414, 2), -- Standard Type
-(31903, 4415, 3), -- One-handed Sword
-(31903, 4416, 19), -- Others
+(31903, 4390, 1), -- NPC Abnormal Immunity
+(31903, 4408, 1), -- HP Modifiers
+(31903, 4409, 1), -- MP Modifiers
+(31903, 4410, 11), -- P. Atk. Modifiers
+(31903, 4411, 11), -- M. Atk. Modifiers
+(31903, 4412, 11), -- P. Def. Modifiers
+(31903, 4413, 11), -- M. Def. Modifiers
+(31903, 4414, 2), -- Armor Type
+(31903, 4415, 3), -- Weapon Type
+(31903, 4416, 19), -- Races
 -- Guardian of Border
-(31904, 4390, 1), -- Mystic Immunity
-(31904, 4408, 1), -- HP Increase (1x)
-(31904, 4409, 1), -- MP Increase (1x)
-(31904, 4410, 11), -- Average P. Atk.
-(31904, 4411, 11), -- Average M. Atk.
-(31904, 4412, 11), -- Average P. Def.
-(31904, 4413, 11), -- Average M. Def.
-(31904, 4414, 2), -- Standard Type
-(31904, 4415, 3), -- One-handed Sword
-(31904, 4416, 19), -- Others
+(31904, 4390, 1), -- NPC Abnormal Immunity
+(31904, 4408, 1), -- HP Modifiers
+(31904, 4409, 1), -- MP Modifiers
+(31904, 4410, 11), -- P. Atk. Modifiers
+(31904, 4411, 11), -- M. Atk. Modifiers
+(31904, 4412, 11), -- P. Def. Modifiers
+(31904, 4413, 11), -- M. Def. Modifiers
+(31904, 4414, 2), -- Armor Type
+(31904, 4415, 3), -- Weapon Type
+(31904, 4416, 19), -- Races
 -- Guardian of Border
-(31905, 4390, 1), -- Mystic Immunity
-(31905, 4408, 1), -- HP Increase (1x)
-(31905, 4409, 1), -- MP Increase (1x)
-(31905, 4410, 11), -- Average P. Atk.
-(31905, 4411, 11), -- Average M. Atk.
-(31905, 4412, 11), -- Average P. Def.
-(31905, 4413, 11), -- Average M. Def.
-(31905, 4414, 2), -- Standard Type
-(31905, 4415, 3), -- One-handed Sword
-(31905, 4416, 19), -- Others
+(31905, 4390, 1), -- NPC Abnormal Immunity
+(31905, 4408, 1), -- HP Modifiers
+(31905, 4409, 1), -- MP Modifiers
+(31905, 4410, 11), -- P. Atk. Modifiers
+(31905, 4411, 11), -- M. Atk. Modifiers
+(31905, 4412, 11), -- P. Def. Modifiers
+(31905, 4413, 11), -- M. Def. Modifiers
+(31905, 4414, 2), -- Armor Type
+(31905, 4415, 3), -- Weapon Type
+(31905, 4416, 19), -- Races
 -- Guardian of Border
-(31906, 4390, 1), -- Mystic Immunity
-(31906, 4408, 1), -- HP Increase (1x)
-(31906, 4409, 1), -- MP Increase (1x)
-(31906, 4410, 11), -- Average P. Atk.
-(31906, 4411, 11), -- Average M. Atk.
-(31906, 4412, 11), -- Average P. Def.
-(31906, 4413, 11), -- Average M. Def.
-(31906, 4414, 2), -- Standard Type
-(31906, 4415, 3), -- One-handed Sword
-(31906, 4416, 19), -- Others
+(31906, 4390, 1), -- NPC Abnormal Immunity
+(31906, 4408, 1), -- HP Modifiers
+(31906, 4409, 1), -- MP Modifiers
+(31906, 4410, 11), -- P. Atk. Modifiers
+(31906, 4411, 11), -- M. Atk. Modifiers
+(31906, 4412, 11), -- P. Def. Modifiers
+(31906, 4413, 11), -- M. Def. Modifiers
+(31906, 4414, 2), -- Armor Type
+(31906, 4415, 3), -- Weapon Type
+(31906, 4416, 19), -- Races
 -- Guardian of Border
-(31907, 4390, 1), -- Mystic Immunity
-(31907, 4408, 1), -- HP Increase (1x)
-(31907, 4409, 1), -- MP Increase (1x)
-(31907, 4410, 11), -- Average P. Atk.
-(31907, 4411, 11), -- Average M. Atk.
-(31907, 4412, 11), -- Average P. Def.
-(31907, 4413, 11), -- Average M. Def.
-(31907, 4414, 2), -- Standard Type
-(31907, 4415, 3), -- One-handed Sword
-(31907, 4416, 19), -- Others
+(31907, 4390, 1), -- NPC Abnormal Immunity
+(31907, 4408, 1), -- HP Modifiers
+(31907, 4409, 1), -- MP Modifiers
+(31907, 4410, 11), -- P. Atk. Modifiers
+(31907, 4411, 11), -- M. Atk. Modifiers
+(31907, 4412, 11), -- P. Def. Modifiers
+(31907, 4413, 11), -- M. Def. Modifiers
+(31907, 4414, 2), -- Armor Type
+(31907, 4415, 3), -- Weapon Type
+(31907, 4416, 19), -- Races
 -- Guardian of Border
-(31908, 4390, 1), -- Mystic Immunity
-(31908, 4408, 1), -- HP Increase (1x)
-(31908, 4409, 1), -- MP Increase (1x)
-(31908, 4410, 11), -- Average P. Atk.
-(31908, 4411, 11), -- Average M. Atk.
-(31908, 4412, 11), -- Average P. Def.
-(31908, 4413, 11), -- Average M. Def.
-(31908, 4414, 2), -- Standard Type
-(31908, 4415, 3), -- One-handed Sword
-(31908, 4416, 19), -- Others
+(31908, 4390, 1), -- NPC Abnormal Immunity
+(31908, 4408, 1), -- HP Modifiers
+(31908, 4409, 1), -- MP Modifiers
+(31908, 4410, 11), -- P. Atk. Modifiers
+(31908, 4411, 11), -- M. Atk. Modifiers
+(31908, 4412, 11), -- P. Def. Modifiers
+(31908, 4413, 11), -- M. Def. Modifiers
+(31908, 4414, 2), -- Armor Type
+(31908, 4415, 3), -- Weapon Type
+(31908, 4416, 19), -- Races
 -- Guardian of Border
-(31909, 4390, 1), -- Mystic Immunity
-(31909, 4408, 1), -- HP Increase (1x)
-(31909, 4409, 1), -- MP Increase (1x)
-(31909, 4410, 11), -- Average P. Atk.
-(31909, 4411, 11), -- Average M. Atk.
-(31909, 4412, 11), -- Average P. Def.
-(31909, 4413, 11), -- Average M. Def.
-(31909, 4414, 2), -- Standard Type
-(31909, 4415, 3), -- One-handed Sword
-(31909, 4416, 19), -- Others
+(31909, 4390, 1), -- NPC Abnormal Immunity
+(31909, 4408, 1), -- HP Modifiers
+(31909, 4409, 1), -- MP Modifiers
+(31909, 4410, 11), -- P. Atk. Modifiers
+(31909, 4411, 11), -- M. Atk. Modifiers
+(31909, 4412, 11), -- P. Def. Modifiers
+(31909, 4413, 11), -- M. Def. Modifiers
+(31909, 4414, 2), -- Armor Type
+(31909, 4415, 3), -- Weapon Type
+(31909, 4416, 19), -- Races
 -- Guardian of Border
-(31910, 4390, 1), -- Mystic Immunity
-(31910, 4408, 1), -- HP Increase (1x)
-(31910, 4409, 1), -- MP Increase (1x)
-(31910, 4410, 11), -- Average P. Atk.
-(31910, 4411, 11), -- Average M. Atk.
-(31910, 4412, 11), -- Average P. Def.
-(31910, 4413, 11), -- Average M. Def.
-(31910, 4414, 2), -- Standard Type
-(31910, 4415, 3), -- One-handed Sword
-(31910, 4416, 19), -- Others
+(31910, 4390, 1), -- NPC Abnormal Immunity
+(31910, 4408, 1), -- HP Modifiers
+(31910, 4409, 1), -- MP Modifiers
+(31910, 4410, 11), -- P. Atk. Modifiers
+(31910, 4411, 11), -- M. Atk. Modifiers
+(31910, 4412, 11), -- P. Def. Modifiers
+(31910, 4413, 11), -- M. Def. Modifiers
+(31910, 4414, 2), -- Armor Type
+(31910, 4415, 3), -- Weapon Type
+(31910, 4416, 19), -- Races
 -- Guardian of Border
-(31911, 4390, 1), -- Mystic Immunity
-(31911, 4408, 1), -- HP Increase (1x)
-(31911, 4409, 1), -- MP Increase (1x)
-(31911, 4410, 11), -- Average P. Atk.
-(31911, 4411, 11), -- Average M. Atk.
-(31911, 4412, 11), -- Average P. Def.
-(31911, 4413, 11), -- Average M. Def.
-(31911, 4414, 2), -- Standard Type
-(31911, 4415, 3), -- One-handed Sword
-(31911, 4416, 19), -- Others
+(31911, 4390, 1), -- NPC Abnormal Immunity
+(31911, 4408, 1), -- HP Modifiers
+(31911, 4409, 1), -- MP Modifiers
+(31911, 4410, 11), -- P. Atk. Modifiers
+(31911, 4411, 11), -- M. Atk. Modifiers
+(31911, 4412, 11), -- P. Def. Modifiers
+(31911, 4413, 11), -- M. Def. Modifiers
+(31911, 4414, 2), -- Armor Type
+(31911, 4415, 3), -- Weapon Type
+(31911, 4416, 19), -- Races
 -- Guardian of Border
-(31912, 4390, 1), -- Mystic Immunity
-(31912, 4408, 1), -- HP Increase (1x)
-(31912, 4409, 1), -- MP Increase (1x)
-(31912, 4410, 11), -- Average P. Atk.
-(31912, 4411, 11), -- Average M. Atk.
-(31912, 4412, 11), -- Average P. Def.
-(31912, 4413, 11), -- Average M. Def.
-(31912, 4414, 2), -- Standard Type
-(31912, 4415, 3), -- One-handed Sword
-(31912, 4416, 19), -- Others
+(31912, 4390, 1), -- NPC Abnormal Immunity
+(31912, 4408, 1), -- HP Modifiers
+(31912, 4409, 1), -- MP Modifiers
+(31912, 4410, 11), -- P. Atk. Modifiers
+(31912, 4411, 11), -- M. Atk. Modifiers
+(31912, 4412, 11), -- P. Def. Modifiers
+(31912, 4413, 11), -- M. Def. Modifiers
+(31912, 4414, 2), -- Armor Type
+(31912, 4415, 3), -- Weapon Type
+(31912, 4416, 19), -- Races
 -- Guardian of Border
-(31913, 4390, 1), -- Mystic Immunity
-(31913, 4408, 1), -- HP Increase (1x)
-(31913, 4409, 1), -- MP Increase (1x)
-(31913, 4410, 11), -- Average P. Atk.
-(31913, 4411, 11), -- Average M. Atk.
-(31913, 4412, 11), -- Average P. Def.
-(31913, 4413, 11), -- Average M. Def.
-(31913, 4414, 2), -- Standard Type
-(31913, 4415, 3), -- One-handed Sword
-(31913, 4416, 19), -- Others
+(31913, 4390, 1), -- NPC Abnormal Immunity
+(31913, 4408, 1), -- HP Modifiers
+(31913, 4409, 1), -- MP Modifiers
+(31913, 4410, 11), -- P. Atk. Modifiers
+(31913, 4411, 11), -- M. Atk. Modifiers
+(31913, 4412, 11), -- P. Def. Modifiers
+(31913, 4413, 11), -- M. Def. Modifiers
+(31913, 4414, 2), -- Armor Type
+(31913, 4415, 3), -- Weapon Type
+(31913, 4416, 19), -- Races
 -- Guardian of Border
-(31914, 4390, 1), -- Mystic Immunity
-(31914, 4408, 1), -- HP Increase (1x)
-(31914, 4409, 1), -- MP Increase (1x)
-(31914, 4410, 11), -- Average P. Atk.
-(31914, 4411, 11), -- Average M. Atk.
-(31914, 4412, 11), -- Average P. Def.
-(31914, 4413, 11), -- Average M. Def.
-(31914, 4414, 2), -- Standard Type
-(31914, 4415, 3), -- One-handed Sword
-(31914, 4416, 19), -- Others
+(31914, 4390, 1), -- NPC Abnormal Immunity
+(31914, 4408, 1), -- HP Modifiers
+(31914, 4409, 1), -- MP Modifiers
+(31914, 4410, 11), -- P. Atk. Modifiers
+(31914, 4411, 11), -- M. Atk. Modifiers
+(31914, 4412, 11), -- P. Def. Modifiers
+(31914, 4413, 11), -- M. Def. Modifiers
+(31914, 4414, 2), -- Armor Type
+(31914, 4415, 3), -- Weapon Type
+(31914, 4416, 19), -- Races
 -- Guardian of Border
-(31915, 4390, 1), -- Mystic Immunity
-(31915, 4408, 1), -- HP Increase (1x)
-(31915, 4409, 1), -- MP Increase (1x)
-(31915, 4410, 11), -- Average P. Atk.
-(31915, 4411, 11), -- Average M. Atk.
-(31915, 4412, 11), -- Average P. Def.
-(31915, 4413, 11), -- Average M. Def.
-(31915, 4414, 2), -- Standard Type
-(31915, 4415, 3), -- One-handed Sword
-(31915, 4416, 19), -- Others
+(31915, 4390, 1), -- NPC Abnormal Immunity
+(31915, 4408, 1), -- HP Modifiers
+(31915, 4409, 1), -- MP Modifiers
+(31915, 4410, 11), -- P. Atk. Modifiers
+(31915, 4411, 11), -- M. Atk. Modifiers
+(31915, 4412, 11), -- P. Def. Modifiers
+(31915, 4413, 11), -- M. Def. Modifiers
+(31915, 4414, 2), -- Armor Type
+(31915, 4415, 3), -- Weapon Type
+(31915, 4416, 19), -- Races
 -- Guardian of Border
-(31916, 4390, 1), -- Mystic Immunity
-(31916, 4408, 1), -- HP Increase (1x)
-(31916, 4409, 1), -- MP Increase (1x)
-(31916, 4410, 11), -- Average P. Atk.
-(31916, 4411, 11), -- Average M. Atk.
-(31916, 4412, 11), -- Average P. Def.
-(31916, 4413, 11), -- Average M. Def.
-(31916, 4414, 2), -- Standard Type
-(31916, 4415, 3), -- One-handed Sword
-(31916, 4416, 19), -- Others
+(31916, 4390, 1), -- NPC Abnormal Immunity
+(31916, 4408, 1), -- HP Modifiers
+(31916, 4409, 1), -- MP Modifiers
+(31916, 4410, 11), -- P. Atk. Modifiers
+(31916, 4411, 11), -- M. Atk. Modifiers
+(31916, 4412, 11), -- P. Def. Modifiers
+(31916, 4413, 11), -- M. Def. Modifiers
+(31916, 4414, 2), -- Armor Type
+(31916, 4415, 3), -- Weapon Type
+(31916, 4416, 19), -- Races
 -- Guardian of Border
-(31917, 4390, 1), -- Mystic Immunity
-(31917, 4408, 1), -- HP Increase (1x)
-(31917, 4409, 1), -- MP Increase (1x)
-(31917, 4410, 11), -- Average P. Atk.
-(31917, 4411, 11), -- Average M. Atk.
-(31917, 4412, 11), -- Average P. Def.
-(31917, 4413, 11), -- Average M. Def.
-(31917, 4414, 2), -- Standard Type
-(31917, 4415, 3), -- One-handed Sword
-(31917, 4416, 19), -- Others
+(31917, 4390, 1), -- NPC Abnormal Immunity
+(31917, 4408, 1), -- HP Modifiers
+(31917, 4409, 1), -- MP Modifiers
+(31917, 4410, 11), -- P. Atk. Modifiers
+(31917, 4411, 11), -- M. Atk. Modifiers
+(31917, 4412, 11), -- P. Def. Modifiers
+(31917, 4413, 11), -- M. Def. Modifiers
+(31917, 4414, 2), -- Armor Type
+(31917, 4415, 3), -- Weapon Type
+(31917, 4416, 19), -- Races
 -- Guardian of Border
-(31918, 4390, 1), -- Mystic Immunity
-(31918, 4408, 1), -- HP Increase (1x)
-(31918, 4409, 1), -- MP Increase (1x)
-(31918, 4410, 11), -- Average P. Atk.
-(31918, 4411, 11), -- Average M. Atk.
-(31918, 4412, 11), -- Average P. Def.
-(31918, 4413, 11), -- Average M. Def.
-(31918, 4414, 2), -- Standard Type
-(31918, 4415, 3), -- One-handed Sword
-(31918, 4416, 19), -- Others
+(31918, 4390, 1), -- NPC Abnormal Immunity
+(31918, 4408, 1), -- HP Modifiers
+(31918, 4409, 1), -- MP Modifiers
+(31918, 4410, 11), -- P. Atk. Modifiers
+(31918, 4411, 11), -- M. Atk. Modifiers
+(31918, 4412, 11), -- P. Def. Modifiers
+(31918, 4413, 11), -- M. Def. Modifiers
+(31918, 4414, 2), -- Armor Type
+(31918, 4415, 3), -- Weapon Type
+(31918, 4416, 19), -- Races
 -- Elmoreden's Ghost Chamberlain
 (31919, 4045, 1), -- Resist Full Magic Attack
-(31919, 4408, 1), -- HP Increase (1x)
-(31919, 4409, 1), -- MP Increase (1x)
-(31919, 4410, 11), -- Average P. Atk.
-(31919, 4411, 11), -- Average M. Atk.
-(31919, 4412, 11), -- Average P. Def.
-(31919, 4413, 11), -- Average M. Def.
-(31919, 4414, 2), -- Standard Type
-(31919, 4415, 3), -- One-handed Sword
-(31919, 4416, 14), -- Humans
+(31919, 4408, 1), -- HP Modifiers
+(31919, 4409, 1), -- MP Modifiers
+(31919, 4410, 11), -- P. Atk. Modifiers
+(31919, 4411, 11), -- M. Atk. Modifiers
+(31919, 4412, 11), -- P. Def. Modifiers
+(31919, 4413, 11), -- M. Def. Modifiers
+(31919, 4414, 2), -- Armor Type
+(31919, 4415, 3), -- Weapon Type
+(31919, 4416, 14), -- Races
 -- Elmoreden's Ghost Chamberlain
 (31920, 4045, 1), -- Resist Full Magic Attack
-(31920, 4408, 1), -- HP Increase (1x)
-(31920, 4409, 1), -- MP Increase (1x)
-(31920, 4410, 11), -- Average P. Atk.
-(31920, 4411, 11), -- Average M. Atk.
-(31920, 4412, 11), -- Average P. Def.
-(31920, 4413, 11), -- Average M. Def.
-(31920, 4414, 2), -- Standard Type
-(31920, 4415, 3), -- One-handed Sword
-(31920, 4416, 14), -- Humans
+(31920, 4408, 1), -- HP Modifiers
+(31920, 4409, 1), -- MP Modifiers
+(31920, 4410, 11), -- P. Atk. Modifiers
+(31920, 4411, 11), -- M. Atk. Modifiers
+(31920, 4412, 11), -- P. Def. Modifiers
+(31920, 4413, 11), -- M. Def. Modifiers
+(31920, 4414, 2), -- Armor Type
+(31920, 4415, 3), -- Weapon Type
+(31920, 4416, 14), -- Races
 -- Conquerors' Sepulcher Manager
 (31921, 4045, 1), -- Resist Full Magic Attack
-(31921, 4390, 1), -- Mystic Immunity
-(31921, 4408, 1), -- HP Increase (1x)
-(31921, 4409, 1), -- MP Increase (1x)
-(31921, 4410, 11), -- Average P. Atk.
-(31921, 4411, 11), -- Average M. Atk.
-(31921, 4412, 11), -- Average P. Def.
-(31921, 4413, 11), -- Average M. Def.
-(31921, 4414, 2), -- Standard Type
-(31921, 4415, 3), -- One-handed Sword
-(31921, 4416, 2), -- Magic Creatures
+(31921, 4390, 1), -- NPC Abnormal Immunity
+(31921, 4408, 1), -- HP Modifiers
+(31921, 4409, 1), -- MP Modifiers
+(31921, 4410, 11), -- P. Atk. Modifiers
+(31921, 4411, 11), -- M. Atk. Modifiers
+(31921, 4412, 11), -- P. Def. Modifiers
+(31921, 4413, 11), -- M. Def. Modifiers
+(31921, 4414, 2), -- Armor Type
+(31921, 4415, 3), -- Weapon Type
+(31921, 4416, 2), -- Races
 -- Emperors' Sepulcher Manager
 (31922, 4045, 1), -- Resist Full Magic Attack
-(31922, 4390, 1), -- Mystic Immunity
-(31922, 4408, 1), -- HP Increase (1x)
-(31922, 4409, 1), -- MP Increase (1x)
-(31922, 4410, 11), -- Average P. Atk.
-(31922, 4411, 11), -- Average M. Atk.
-(31922, 4412, 11), -- Average P. Def.
-(31922, 4413, 11), -- Average M. Def.
-(31922, 4414, 2), -- Standard Type
-(31922, 4415, 3), -- One-handed Sword
-(31922, 4416, 2), -- Magic Creatures
+(31922, 4390, 1), -- NPC Abnormal Immunity
+(31922, 4408, 1), -- HP Modifiers
+(31922, 4409, 1), -- MP Modifiers
+(31922, 4410, 11), -- P. Atk. Modifiers
+(31922, 4411, 11), -- M. Atk. Modifiers
+(31922, 4412, 11), -- P. Def. Modifiers
+(31922, 4413, 11), -- M. Def. Modifiers
+(31922, 4414, 2), -- Armor Type
+(31922, 4415, 3), -- Weapon Type
+(31922, 4416, 2), -- Races
 -- Great Sages' Sepulcher Manager
 (31923, 4045, 1), -- Resist Full Magic Attack
-(31923, 4390, 1), -- Mystic Immunity
-(31923, 4408, 1), -- HP Increase (1x)
-(31923, 4409, 1), -- MP Increase (1x)
-(31923, 4410, 11), -- Average P. Atk.
-(31923, 4411, 11), -- Average M. Atk.
-(31923, 4412, 11), -- Average P. Def.
-(31923, 4413, 11), -- Average M. Def.
-(31923, 4414, 2), -- Standard Type
-(31923, 4415, 3), -- One-handed Sword
-(31923, 4416, 2), -- Magic Creatures
+(31923, 4390, 1), -- NPC Abnormal Immunity
+(31923, 4408, 1), -- HP Modifiers
+(31923, 4409, 1), -- MP Modifiers
+(31923, 4410, 11), -- P. Atk. Modifiers
+(31923, 4411, 11), -- M. Atk. Modifiers
+(31923, 4412, 11), -- P. Def. Modifiers
+(31923, 4413, 11), -- M. Def. Modifiers
+(31923, 4414, 2), -- Armor Type
+(31923, 4415, 3), -- Weapon Type
+(31923, 4416, 2), -- Races
 -- Judges' Sepulcher Manager
 (31924, 4045, 1), -- Resist Full Magic Attack
-(31924, 4390, 1), -- Mystic Immunity
-(31924, 4408, 1), -- HP Increase (1x)
-(31924, 4409, 1), -- MP Increase (1x)
-(31924, 4410, 11), -- Average P. Atk.
-(31924, 4411, 11), -- Average M. Atk.
-(31924, 4412, 11), -- Average P. Def.
-(31924, 4413, 11), -- Average M. Def.
-(31924, 4414, 2), -- Standard Type
-(31924, 4415, 3), -- One-handed Sword
-(31924, 4416, 2), -- Magic Creatures
+(31924, 4390, 1), -- NPC Abnormal Immunity
+(31924, 4408, 1), -- HP Modifiers
+(31924, 4409, 1), -- MP Modifiers
+(31924, 4410, 11), -- P. Atk. Modifiers
+(31924, 4411, 11), -- M. Atk. Modifiers
+(31924, 4412, 11), -- P. Def. Modifiers
+(31924, 4413, 11), -- M. Def. Modifiers
+(31924, 4414, 2), -- Armor Type
+(31924, 4415, 3), -- Weapon Type
+(31924, 4416, 2), -- Races
 -- Baron's Hall Gatekeeper
 (31925, 4045, 1), -- Resist Full Magic Attack
-(31925, 4390, 1), -- Mystic Immunity
-(31925, 4408, 1), -- HP Increase (1x)
-(31925, 4409, 1), -- MP Increase (1x)
-(31925, 4410, 11), -- Average P. Atk.
-(31925, 4411, 11), -- Average M. Atk.
-(31925, 4412, 11), -- Average P. Def.
-(31925, 4413, 11), -- Average M. Def.
-(31925, 4414, 2), -- Standard Type
-(31925, 4415, 3), -- One-handed Sword
-(31925, 4416, 2), -- Magic Creatures
+(31925, 4390, 1), -- NPC Abnormal Immunity
+(31925, 4408, 1), -- HP Modifiers
+(31925, 4409, 1), -- MP Modifiers
+(31925, 4410, 11), -- P. Atk. Modifiers
+(31925, 4411, 11), -- M. Atk. Modifiers
+(31925, 4412, 11), -- P. Def. Modifiers
+(31925, 4413, 11), -- M. Def. Modifiers
+(31925, 4414, 2), -- Armor Type
+(31925, 4415, 3), -- Weapon Type
+(31925, 4416, 2), -- Races
 -- Viscount's Hall Gatekeeper
 (31926, 4045, 1), -- Resist Full Magic Attack
-(31926, 4390, 1), -- Mystic Immunity
-(31926, 4408, 1), -- HP Increase (1x)
-(31926, 4409, 1), -- MP Increase (1x)
-(31926, 4410, 11), -- Average P. Atk.
-(31926, 4411, 11), -- Average M. Atk.
-(31926, 4412, 11), -- Average P. Def.
-(31926, 4413, 11), -- Average M. Def.
-(31926, 4414, 2), -- Standard Type
-(31926, 4415, 3), -- One-handed Sword
-(31926, 4416, 2), -- Magic Creatures
+(31926, 4390, 1), -- NPC Abnormal Immunity
+(31926, 4408, 1), -- HP Modifiers
+(31926, 4409, 1), -- MP Modifiers
+(31926, 4410, 11), -- P. Atk. Modifiers
+(31926, 4411, 11), -- M. Atk. Modifiers
+(31926, 4412, 11), -- P. Def. Modifiers
+(31926, 4413, 11), -- M. Def. Modifiers
+(31926, 4414, 2), -- Armor Type
+(31926, 4415, 3), -- Weapon Type
+(31926, 4416, 2), -- Races
 -- Count's Hall Gatekeeper
 (31927, 4045, 1), -- Resist Full Magic Attack
-(31927, 4390, 1), -- Mystic Immunity
-(31927, 4408, 1), -- HP Increase (1x)
-(31927, 4409, 1), -- MP Increase (1x)
-(31927, 4410, 11), -- Average P. Atk.
-(31927, 4411, 11), -- Average M. Atk.
-(31927, 4412, 11), -- Average P. Def.
-(31927, 4413, 11), -- Average M. Def.
-(31927, 4414, 2), -- Standard Type
-(31927, 4415, 3), -- One-handed Sword
-(31927, 4416, 2), -- Magic Creatures
+(31927, 4390, 1), -- NPC Abnormal Immunity
+(31927, 4408, 1), -- HP Modifiers
+(31927, 4409, 1), -- MP Modifiers
+(31927, 4410, 11), -- P. Atk. Modifiers
+(31927, 4411, 11), -- M. Atk. Modifiers
+(31927, 4412, 11), -- P. Def. Modifiers
+(31927, 4413, 11), -- M. Def. Modifiers
+(31927, 4414, 2), -- Armor Type
+(31927, 4415, 3), -- Weapon Type
+(31927, 4416, 2), -- Races
 -- Marquis' Hall Gatekeeper
 (31928, 4045, 1), -- Resist Full Magic Attack
-(31928, 4390, 1), -- Mystic Immunity
-(31928, 4408, 1), -- HP Increase (1x)
-(31928, 4409, 1), -- MP Increase (1x)
-(31928, 4410, 11), -- Average P. Atk.
-(31928, 4411, 11), -- Average M. Atk.
-(31928, 4412, 11), -- Average P. Def.
-(31928, 4413, 11), -- Average M. Def.
-(31928, 4414, 2), -- Standard Type
-(31928, 4415, 3), -- One-handed Sword
-(31928, 4416, 2), -- Magic Creatures
+(31928, 4390, 1), -- NPC Abnormal Immunity
+(31928, 4408, 1), -- HP Modifiers
+(31928, 4409, 1), -- MP Modifiers
+(31928, 4410, 11), -- P. Atk. Modifiers
+(31928, 4411, 11), -- M. Atk. Modifiers
+(31928, 4412, 11), -- P. Def. Modifiers
+(31928, 4413, 11), -- M. Def. Modifiers
+(31928, 4414, 2), -- Armor Type
+(31928, 4415, 3), -- Weapon Type
+(31928, 4416, 2), -- Races
 -- Duke's Hall Gatekeeper
 (31929, 4045, 1), -- Resist Full Magic Attack
-(31929, 4390, 1), -- Mystic Immunity
-(31929, 4408, 1), -- HP Increase (1x)
-(31929, 4409, 1), -- MP Increase (1x)
-(31929, 4410, 11), -- Average P. Atk.
-(31929, 4411, 11), -- Average M. Atk.
-(31929, 4412, 11), -- Average P. Def.
-(31929, 4413, 11), -- Average M. Def.
-(31929, 4414, 2), -- Standard Type
-(31929, 4415, 3), -- One-handed Sword
-(31929, 4416, 2), -- Magic Creatures
+(31929, 4390, 1), -- NPC Abnormal Immunity
+(31929, 4408, 1), -- HP Modifiers
+(31929, 4409, 1), -- MP Modifiers
+(31929, 4410, 11), -- P. Atk. Modifiers
+(31929, 4411, 11), -- M. Atk. Modifiers
+(31929, 4412, 11), -- P. Def. Modifiers
+(31929, 4413, 11), -- M. Def. Modifiers
+(31929, 4414, 2), -- Armor Type
+(31929, 4415, 3), -- Weapon Type
+(31929, 4416, 2), -- Races
 -- Baron's Hall Gatekeeper
 (31930, 4045, 1), -- Resist Full Magic Attack
-(31930, 4390, 1), -- Mystic Immunity
-(31930, 4408, 1), -- HP Increase (1x)
-(31930, 4409, 1), -- MP Increase (1x)
-(31930, 4410, 11), -- Average P. Atk.
-(31930, 4411, 11), -- Average M. Atk.
-(31930, 4412, 11), -- Average P. Def.
-(31930, 4413, 11), -- Average M. Def.
-(31930, 4414, 2), -- Standard Type
-(31930, 4415, 3), -- One-handed Sword
-(31930, 4416, 2), -- Magic Creatures
+(31930, 4390, 1), -- NPC Abnormal Immunity
+(31930, 4408, 1), -- HP Modifiers
+(31930, 4409, 1), -- MP Modifiers
+(31930, 4410, 11), -- P. Atk. Modifiers
+(31930, 4411, 11), -- M. Atk. Modifiers
+(31930, 4412, 11), -- P. Def. Modifiers
+(31930, 4413, 11), -- M. Def. Modifiers
+(31930, 4414, 2), -- Armor Type
+(31930, 4415, 3), -- Weapon Type
+(31930, 4416, 2), -- Races
 -- Viscount's Hall Gatekeeper
 (31931, 4045, 1), -- Resist Full Magic Attack
-(31931, 4390, 1), -- Mystic Immunity
-(31931, 4408, 1), -- HP Increase (1x)
-(31931, 4409, 1), -- MP Increase (1x)
-(31931, 4410, 11), -- Average P. Atk.
-(31931, 4411, 11), -- Average M. Atk.
-(31931, 4412, 11), -- Average P. Def.
-(31931, 4413, 11), -- Average M. Def.
-(31931, 4414, 2), -- Standard Type
-(31931, 4415, 3), -- One-handed Sword
-(31931, 4416, 2), -- Magic Creatures
+(31931, 4390, 1), -- NPC Abnormal Immunity
+(31931, 4408, 1), -- HP Modifiers
+(31931, 4409, 1), -- MP Modifiers
+(31931, 4410, 11), -- P. Atk. Modifiers
+(31931, 4411, 11), -- M. Atk. Modifiers
+(31931, 4412, 11), -- P. Def. Modifiers
+(31931, 4413, 11), -- M. Def. Modifiers
+(31931, 4414, 2), -- Armor Type
+(31931, 4415, 3), -- Weapon Type
+(31931, 4416, 2), -- Races
 -- Count's Hall Gatekeeper
 (31932, 4045, 1), -- Resist Full Magic Attack
-(31932, 4390, 1), -- Mystic Immunity
-(31932, 4408, 1), -- HP Increase (1x)
-(31932, 4409, 1), -- MP Increase (1x)
-(31932, 4410, 11), -- Average P. Atk.
-(31932, 4411, 11), -- Average M. Atk.
-(31932, 4412, 11), -- Average P. Def.
-(31932, 4413, 11), -- Average M. Def.
-(31932, 4414, 2), -- Standard Type
-(31932, 4415, 3), -- One-handed Sword
-(31932, 4416, 2), -- Magic Creatures
+(31932, 4390, 1), -- NPC Abnormal Immunity
+(31932, 4408, 1), -- HP Modifiers
+(31932, 4409, 1), -- MP Modifiers
+(31932, 4410, 11), -- P. Atk. Modifiers
+(31932, 4411, 11), -- M. Atk. Modifiers
+(31932, 4412, 11), -- P. Def. Modifiers
+(31932, 4413, 11), -- M. Def. Modifiers
+(31932, 4414, 2), -- Armor Type
+(31932, 4415, 3), -- Weapon Type
+(31932, 4416, 2), -- Races
 -- Marquis' Hall Gatekeeper
 (31933, 4045, 1), -- Resist Full Magic Attack
-(31933, 4390, 1), -- Mystic Immunity
-(31933, 4408, 1), -- HP Increase (1x)
-(31933, 4409, 1), -- MP Increase (1x)
-(31933, 4410, 11), -- Average P. Atk.
-(31933, 4411, 11), -- Average M. Atk.
-(31933, 4412, 11), -- Average P. Def.
-(31933, 4413, 11), -- Average M. Def.
-(31933, 4414, 2), -- Standard Type
-(31933, 4415, 3), -- One-handed Sword
-(31933, 4416, 2), -- Magic Creatures
+(31933, 4390, 1), -- NPC Abnormal Immunity
+(31933, 4408, 1), -- HP Modifiers
+(31933, 4409, 1), -- MP Modifiers
+(31933, 4410, 11), -- P. Atk. Modifiers
+(31933, 4411, 11), -- M. Atk. Modifiers
+(31933, 4412, 11), -- P. Def. Modifiers
+(31933, 4413, 11), -- M. Def. Modifiers
+(31933, 4414, 2), -- Armor Type
+(31933, 4415, 3), -- Weapon Type
+(31933, 4416, 2), -- Races
 -- Duke's Hall Gatekeeper
 (31934, 4045, 1), -- Resist Full Magic Attack
-(31934, 4390, 1), -- Mystic Immunity
-(31934, 4408, 1), -- HP Increase (1x)
-(31934, 4409, 1), -- MP Increase (1x)
-(31934, 4410, 11), -- Average P. Atk.
-(31934, 4411, 11), -- Average M. Atk.
-(31934, 4412, 11), -- Average P. Def.
-(31934, 4413, 11), -- Average M. Def.
-(31934, 4414, 2), -- Standard Type
-(31934, 4415, 3), -- One-handed Sword
-(31934, 4416, 2), -- Magic Creatures
+(31934, 4390, 1), -- NPC Abnormal Immunity
+(31934, 4408, 1), -- HP Modifiers
+(31934, 4409, 1), -- MP Modifiers
+(31934, 4410, 11), -- P. Atk. Modifiers
+(31934, 4411, 11), -- M. Atk. Modifiers
+(31934, 4412, 11), -- P. Def. Modifiers
+(31934, 4413, 11), -- M. Def. Modifiers
+(31934, 4414, 2), -- Armor Type
+(31934, 4415, 3), -- Weapon Type
+(31934, 4416, 2), -- Races
 -- Baron's Hall Gatekeeper
 (31935, 4045, 1), -- Resist Full Magic Attack
-(31935, 4390, 1), -- Mystic Immunity
-(31935, 4408, 1), -- HP Increase (1x)
-(31935, 4409, 1), -- MP Increase (1x)
-(31935, 4410, 11), -- Average P. Atk.
-(31935, 4411, 11), -- Average M. Atk.
-(31935, 4412, 11), -- Average P. Def.
-(31935, 4413, 11), -- Average M. Def.
-(31935, 4414, 2), -- Standard Type
-(31935, 4415, 3), -- One-handed Sword
-(31935, 4416, 2), -- Magic Creatures
+(31935, 4390, 1), -- NPC Abnormal Immunity
+(31935, 4408, 1), -- HP Modifiers
+(31935, 4409, 1), -- MP Modifiers
+(31935, 4410, 11), -- P. Atk. Modifiers
+(31935, 4411, 11), -- M. Atk. Modifiers
+(31935, 4412, 11), -- P. Def. Modifiers
+(31935, 4413, 11), -- M. Def. Modifiers
+(31935, 4414, 2), -- Armor Type
+(31935, 4415, 3), -- Weapon Type
+(31935, 4416, 2), -- Races
 -- Viscount's Hall Gatekeeper
 (31936, 4045, 1), -- Resist Full Magic Attack
-(31936, 4390, 1), -- Mystic Immunity
-(31936, 4408, 1), -- HP Increase (1x)
-(31936, 4409, 1), -- MP Increase (1x)
-(31936, 4410, 11), -- Average P. Atk.
-(31936, 4411, 11), -- Average M. Atk.
-(31936, 4412, 11), -- Average P. Def.
-(31936, 4413, 11), -- Average M. Def.
-(31936, 4414, 2), -- Standard Type
-(31936, 4415, 3), -- One-handed Sword
-(31936, 4416, 2), -- Magic Creatures
+(31936, 4390, 1), -- NPC Abnormal Immunity
+(31936, 4408, 1), -- HP Modifiers
+(31936, 4409, 1), -- MP Modifiers
+(31936, 4410, 11), -- P. Atk. Modifiers
+(31936, 4411, 11), -- M. Atk. Modifiers
+(31936, 4412, 11), -- P. Def. Modifiers
+(31936, 4413, 11), -- M. Def. Modifiers
+(31936, 4414, 2), -- Armor Type
+(31936, 4415, 3), -- Weapon Type
+(31936, 4416, 2), -- Races
 -- Count's Hall Gatekeeper
 (31937, 4045, 1), -- Resist Full Magic Attack
-(31937, 4390, 1), -- Mystic Immunity
-(31937, 4408, 1), -- HP Increase (1x)
-(31937, 4409, 1), -- MP Increase (1x)
-(31937, 4410, 11), -- Average P. Atk.
-(31937, 4411, 11), -- Average M. Atk.
-(31937, 4412, 11), -- Average P. Def.
-(31937, 4413, 11), -- Average M. Def.
-(31937, 4414, 2), -- Standard Type
-(31937, 4415, 3), -- One-handed Sword
-(31937, 4416, 2), -- Magic Creatures
+(31937, 4390, 1), -- NPC Abnormal Immunity
+(31937, 4408, 1), -- HP Modifiers
+(31937, 4409, 1), -- MP Modifiers
+(31937, 4410, 11), -- P. Atk. Modifiers
+(31937, 4411, 11), -- M. Atk. Modifiers
+(31937, 4412, 11), -- P. Def. Modifiers
+(31937, 4413, 11), -- M. Def. Modifiers
+(31937, 4414, 2), -- Armor Type
+(31937, 4415, 3), -- Weapon Type
+(31937, 4416, 2), -- Races
 -- Marquis' Hall Gatekeeper
 (31938, 4045, 1), -- Resist Full Magic Attack
-(31938, 4390, 1), -- Mystic Immunity
-(31938, 4408, 1), -- HP Increase (1x)
-(31938, 4409, 1), -- MP Increase (1x)
-(31938, 4410, 11), -- Average P. Atk.
-(31938, 4411, 11), -- Average M. Atk.
-(31938, 4412, 11), -- Average P. Def.
-(31938, 4413, 11), -- Average M. Def.
-(31938, 4414, 2), -- Standard Type
-(31938, 4415, 3), -- One-handed Sword
-(31938, 4416, 2), -- Magic Creatures
+(31938, 4390, 1), -- NPC Abnormal Immunity
+(31938, 4408, 1), -- HP Modifiers
+(31938, 4409, 1), -- MP Modifiers
+(31938, 4410, 11), -- P. Atk. Modifiers
+(31938, 4411, 11), -- M. Atk. Modifiers
+(31938, 4412, 11), -- P. Def. Modifiers
+(31938, 4413, 11), -- M. Def. Modifiers
+(31938, 4414, 2), -- Armor Type
+(31938, 4415, 3), -- Weapon Type
+(31938, 4416, 2), -- Races
 -- Duke's Hall Gatekeeper
 (31939, 4045, 1), -- Resist Full Magic Attack
-(31939, 4390, 1), -- Mystic Immunity
-(31939, 4408, 1), -- HP Increase (1x)
-(31939, 4409, 1), -- MP Increase (1x)
-(31939, 4410, 11), -- Average P. Atk.
-(31939, 4411, 11), -- Average M. Atk.
-(31939, 4412, 11), -- Average P. Def.
-(31939, 4413, 11), -- Average M. Def.
-(31939, 4414, 2), -- Standard Type
-(31939, 4415, 3), -- One-handed Sword
-(31939, 4416, 2), -- Magic Creatures
+(31939, 4390, 1), -- NPC Abnormal Immunity
+(31939, 4408, 1), -- HP Modifiers
+(31939, 4409, 1), -- MP Modifiers
+(31939, 4410, 11), -- P. Atk. Modifiers
+(31939, 4411, 11), -- M. Atk. Modifiers
+(31939, 4412, 11), -- P. Def. Modifiers
+(31939, 4413, 11), -- M. Def. Modifiers
+(31939, 4414, 2), -- Armor Type
+(31939, 4415, 3), -- Weapon Type
+(31939, 4416, 2), -- Races
 -- Baron's Hall Gatekeeper
 (31940, 4045, 1), -- Resist Full Magic Attack
-(31940, 4390, 1), -- Mystic Immunity
-(31940, 4408, 1), -- HP Increase (1x)
-(31940, 4409, 1), -- MP Increase (1x)
-(31940, 4410, 11), -- Average P. Atk.
-(31940, 4411, 11), -- Average M. Atk.
-(31940, 4412, 11), -- Average P. Def.
-(31940, 4413, 11), -- Average M. Def.
-(31940, 4414, 2), -- Standard Type
-(31940, 4415, 3), -- One-handed Sword
-(31940, 4416, 2), -- Magic Creatures
+(31940, 4390, 1), -- NPC Abnormal Immunity
+(31940, 4408, 1), -- HP Modifiers
+(31940, 4409, 1), -- MP Modifiers
+(31940, 4410, 11), -- P. Atk. Modifiers
+(31940, 4411, 11), -- M. Atk. Modifiers
+(31940, 4412, 11), -- P. Def. Modifiers
+(31940, 4413, 11), -- M. Def. Modifiers
+(31940, 4414, 2), -- Armor Type
+(31940, 4415, 3), -- Weapon Type
+(31940, 4416, 2), -- Races
 -- Viscount's Hall Gatekeeper
 (31941, 4045, 1), -- Resist Full Magic Attack
-(31941, 4390, 1), -- Mystic Immunity
-(31941, 4408, 1), -- HP Increase (1x)
-(31941, 4409, 1), -- MP Increase (1x)
-(31941, 4410, 11), -- Average P. Atk.
-(31941, 4411, 11), -- Average M. Atk.
-(31941, 4412, 11), -- Average P. Def.
-(31941, 4413, 11), -- Average M. Def.
-(31941, 4414, 2), -- Standard Type
-(31941, 4415, 3), -- One-handed Sword
-(31941, 4416, 2), -- Magic Creatures
+(31941, 4390, 1), -- NPC Abnormal Immunity
+(31941, 4408, 1), -- HP Modifiers
+(31941, 4409, 1), -- MP Modifiers
+(31941, 4410, 11), -- P. Atk. Modifiers
+(31941, 4411, 11), -- M. Atk. Modifiers
+(31941, 4412, 11), -- P. Def. Modifiers
+(31941, 4413, 11), -- M. Def. Modifiers
+(31941, 4414, 2), -- Armor Type
+(31941, 4415, 3), -- Weapon Type
+(31941, 4416, 2), -- Races
 -- Count's Hall Gatekeeper
 (31942, 4045, 1), -- Resist Full Magic Attack
-(31942, 4390, 1), -- Mystic Immunity
-(31942, 4408, 1), -- HP Increase (1x)
-(31942, 4409, 1), -- MP Increase (1x)
-(31942, 4410, 11), -- Average P. Atk.
-(31942, 4411, 11), -- Average M. Atk.
-(31942, 4412, 11), -- Average P. Def.
-(31942, 4413, 11), -- Average M. Def.
-(31942, 4414, 2), -- Standard Type
-(31942, 4415, 3), -- One-handed Sword
-(31942, 4416, 2), -- Magic Creatures
+(31942, 4390, 1), -- NPC Abnormal Immunity
+(31942, 4408, 1), -- HP Modifiers
+(31942, 4409, 1), -- MP Modifiers
+(31942, 4410, 11), -- P. Atk. Modifiers
+(31942, 4411, 11), -- M. Atk. Modifiers
+(31942, 4412, 11), -- P. Def. Modifiers
+(31942, 4413, 11), -- M. Def. Modifiers
+(31942, 4414, 2), -- Armor Type
+(31942, 4415, 3), -- Weapon Type
+(31942, 4416, 2), -- Races
 -- Marquis' Hall Gatekeeper
 (31943, 4045, 1), -- Resist Full Magic Attack
-(31943, 4390, 1), -- Mystic Immunity
-(31943, 4408, 1), -- HP Increase (1x)
-(31943, 4409, 1), -- MP Increase (1x)
-(31943, 4410, 11), -- Average P. Atk.
-(31943, 4411, 11), -- Average M. Atk.
-(31943, 4412, 11), -- Average P. Def.
-(31943, 4413, 11), -- Average M. Def.
-(31943, 4414, 2), -- Standard Type
-(31943, 4415, 3), -- One-handed Sword
-(31943, 4416, 2), -- Magic Creatures
+(31943, 4390, 1), -- NPC Abnormal Immunity
+(31943, 4408, 1), -- HP Modifiers
+(31943, 4409, 1), -- MP Modifiers
+(31943, 4410, 11), -- P. Atk. Modifiers
+(31943, 4411, 11), -- M. Atk. Modifiers
+(31943, 4412, 11), -- P. Def. Modifiers
+(31943, 4413, 11), -- M. Def. Modifiers
+(31943, 4414, 2), -- Armor Type
+(31943, 4415, 3), -- Weapon Type
+(31943, 4416, 2), -- Races
 -- Duke's Hall Gatekeeper
 (31944, 4045, 1), -- Resist Full Magic Attack
-(31944, 4390, 1), -- Mystic Immunity
-(31944, 4408, 1), -- HP Increase (1x)
-(31944, 4409, 1), -- MP Increase (1x)
-(31944, 4410, 11), -- Average P. Atk.
-(31944, 4411, 11), -- Average M. Atk.
-(31944, 4412, 11), -- Average P. Def.
-(31944, 4413, 11), -- Average M. Def.
-(31944, 4414, 2), -- Standard Type
-(31944, 4415, 3), -- One-handed Sword
-(31944, 4416, 2), -- Magic Creatures
+(31944, 4390, 1), -- NPC Abnormal Immunity
+(31944, 4408, 1), -- HP Modifiers
+(31944, 4409, 1), -- MP Modifiers
+(31944, 4410, 11), -- P. Atk. Modifiers
+(31944, 4411, 11), -- M. Atk. Modifiers
+(31944, 4412, 11), -- P. Def. Modifiers
+(31944, 4413, 11), -- M. Def. Modifiers
+(31944, 4414, 2), -- Armor Type
+(31944, 4415, 3), -- Weapon Type
+(31944, 4416, 2), -- Races
 -- Auzendorff
 (31945, 4045, 1), -- Resist Full Magic Attack
-(31945, 4408, 1), -- HP Increase (1x)
-(31945, 4409, 1), -- MP Increase (1x)
-(31945, 4410, 11), -- Average P. Atk.
-(31945, 4411, 11), -- Average M. Atk.
-(31945, 4412, 11), -- Average P. Def.
-(31945, 4413, 11), -- Average M. Def.
-(31945, 4414, 2), -- Standard Type
-(31945, 4415, 3), -- One-handed Sword
-(31945, 4416, 18), -- Dwarves
+(31945, 4408, 1), -- HP Modifiers
+(31945, 4409, 1), -- MP Modifiers
+(31945, 4410, 11), -- P. Atk. Modifiers
+(31945, 4411, 11), -- M. Atk. Modifiers
+(31945, 4412, 11), -- P. Def. Modifiers
+(31945, 4413, 11), -- M. Def. Modifiers
+(31945, 4414, 2), -- Armor Type
+(31945, 4415, 3), -- Weapon Type
+(31945, 4416, 18), -- Races
 -- Hombre
 (31946, 4045, 1), -- Resist Full Magic Attack
-(31946, 4408, 1), -- HP Increase (1x)
-(31946, 4409, 1), -- MP Increase (1x)
-(31946, 4410, 11), -- Average P. Atk.
-(31946, 4411, 11), -- Average M. Atk.
-(31946, 4412, 11), -- Average P. Def.
-(31946, 4413, 11), -- Average M. Def.
-(31946, 4414, 2), -- Standard Type
-(31946, 4415, 3), -- One-handed Sword
-(31946, 4416, 14), -- Humans
+(31946, 4408, 1), -- HP Modifiers
+(31946, 4409, 1), -- MP Modifiers
+(31946, 4410, 11), -- P. Atk. Modifiers
+(31946, 4411, 11), -- M. Atk. Modifiers
+(31946, 4412, 11), -- P. Def. Modifiers
+(31946, 4413, 11), -- M. Def. Modifiers
+(31946, 4414, 2), -- Armor Type
+(31946, 4415, 3), -- Weapon Type
+(31946, 4416, 14), -- Races
 -- Owaki
 (31947, 4045, 1), -- Resist Full Magic Attack
-(31947, 4408, 1), -- HP Increase (1x)
-(31947, 4409, 1), -- MP Increase (1x)
-(31947, 4410, 11), -- Average P. Atk.
-(31947, 4411, 11), -- Average M. Atk.
-(31947, 4412, 11), -- Average P. Def.
-(31947, 4413, 11), -- Average M. Def.
-(31947, 4414, 2), -- Standard Type
-(31947, 4415, 3), -- One-handed Sword
-(31947, 4416, 17), -- Orcs
+(31947, 4408, 1), -- HP Modifiers
+(31947, 4409, 1), -- MP Modifiers
+(31947, 4410, 11), -- P. Atk. Modifiers
+(31947, 4411, 11), -- M. Atk. Modifiers
+(31947, 4412, 11), -- P. Def. Modifiers
+(31947, 4413, 11), -- M. Def. Modifiers
+(31947, 4414, 2), -- Armor Type
+(31947, 4415, 3), -- Weapon Type
+(31947, 4416, 17), -- Races
 -- Adrian
 (31948, 4045, 1), -- Resist Full Magic Attack
-(31948, 4408, 1), -- HP Increase (1x)
-(31948, 4409, 1), -- MP Increase (1x)
-(31948, 4410, 11), -- Average P. Atk.
-(31948, 4411, 11), -- Average M. Atk.
-(31948, 4412, 11), -- Average P. Def.
-(31948, 4413, 11), -- Average M. Def.
-(31948, 4414, 2), -- Standard Type
-(31948, 4415, 3), -- One-handed Sword
-(31948, 4416, 14), -- Humans
+(31948, 4408, 1), -- HP Modifiers
+(31948, 4409, 1), -- MP Modifiers
+(31948, 4410, 11), -- P. Atk. Modifiers
+(31948, 4411, 11), -- M. Atk. Modifiers
+(31948, 4412, 11), -- P. Def. Modifiers
+(31948, 4413, 11), -- M. Def. Modifiers
+(31948, 4414, 2), -- Armor Type
+(31948, 4415, 3), -- Weapon Type
+(31948, 4416, 14), -- Races
 -- Rouge
 (31949, 4045, 1), -- Resist Full Magic Attack
-(31949, 4408, 1), -- HP Increase (1x)
-(31949, 4409, 1), -- MP Increase (1x)
-(31949, 4410, 11), -- Average P. Atk.
-(31949, 4411, 11), -- Average M. Atk.
-(31949, 4412, 11), -- Average P. Def.
-(31949, 4413, 11), -- Average M. Def.
-(31949, 4414, 2), -- Standard Type
-(31949, 4415, 3), -- One-handed Sword
-(31949, 4416, 14), -- Humans
+(31949, 4408, 1), -- HP Modifiers
+(31949, 4409, 1), -- MP Modifiers
+(31949, 4410, 11), -- P. Atk. Modifiers
+(31949, 4411, 11), -- M. Atk. Modifiers
+(31949, 4412, 11), -- P. Def. Modifiers
+(31949, 4413, 11), -- M. Def. Modifiers
+(31949, 4414, 2), -- Armor Type
+(31949, 4415, 3), -- Weapon Type
+(31949, 4416, 14), -- Races
 -- Mailland
 (31950, 4045, 1), -- Resist Full Magic Attack
-(31950, 4408, 1), -- HP Increase (1x)
-(31950, 4409, 1), -- MP Increase (1x)
-(31950, 4410, 11), -- Average P. Atk.
-(31950, 4411, 11), -- Average M. Atk.
-(31950, 4412, 11), -- Average P. Def.
-(31950, 4413, 11), -- Average M. Def.
-(31950, 4414, 2), -- Standard Type
-(31950, 4415, 3), -- One-handed Sword
-(31950, 4416, 18), -- Dwarves
+(31950, 4408, 1), -- HP Modifiers
+(31950, 4409, 1), -- MP Modifiers
+(31950, 4410, 11), -- P. Atk. Modifiers
+(31950, 4411, 11), -- M. Atk. Modifiers
+(31950, 4412, 11), -- P. Def. Modifiers
+(31950, 4413, 11), -- M. Def. Modifiers
+(31950, 4414, 2), -- Armor Type
+(31950, 4415, 3), -- Weapon Type
+(31950, 4416, 18), -- Races
 -- Jose
 (31951, 4045, 1), -- Resist Full Magic Attack
-(31951, 4408, 1), -- HP Increase (1x)
-(31951, 4409, 1), -- MP Increase (1x)
-(31951, 4410, 11), -- Average P. Atk.
-(31951, 4411, 11), -- Average M. Atk.
-(31951, 4412, 11), -- Average P. Def.
-(31951, 4413, 11), -- Average M. Def.
-(31951, 4414, 2), -- Standard Type
-(31951, 4415, 3), -- One-handed Sword
-(31951, 4416, 14), -- Humans
+(31951, 4408, 1), -- HP Modifiers
+(31951, 4409, 1), -- MP Modifiers
+(31951, 4410, 11), -- P. Atk. Modifiers
+(31951, 4411, 11), -- M. Atk. Modifiers
+(31951, 4412, 11), -- P. Def. Modifiers
+(31951, 4413, 11), -- M. Def. Modifiers
+(31951, 4414, 2), -- Armor Type
+(31951, 4415, 3), -- Weapon Type
+(31951, 4416, 14), -- Races
 -- Pele
 (31952, 4045, 1), -- Resist Full Magic Attack
-(31952, 4408, 1), -- HP Increase (1x)
-(31952, 4409, 1), -- MP Increase (1x)
-(31952, 4410, 11), -- Average P. Atk.
-(31952, 4411, 11), -- Average M. Atk.
-(31952, 4412, 11), -- Average P. Def.
-(31952, 4413, 11), -- Average M. Def.
-(31952, 4414, 2), -- Standard Type
-(31952, 4415, 3), -- One-handed Sword
-(31952, 4416, 14), -- Humans
+(31952, 4408, 1), -- HP Modifiers
+(31952, 4409, 1), -- MP Modifiers
+(31952, 4410, 11), -- P. Atk. Modifiers
+(31952, 4411, 11), -- M. Atk. Modifiers
+(31952, 4412, 11), -- P. Def. Modifiers
+(31952, 4413, 11), -- M. Def. Modifiers
+(31952, 4414, 2), -- Armor Type
+(31952, 4415, 3), -- Weapon Type
+(31952, 4416, 14), -- Races
 -- Rankar
 (31953, 4045, 1), -- Resist Full Magic Attack
-(31953, 4408, 1), -- HP Increase (1x)
-(31953, 4409, 1), -- MP Increase (1x)
-(31953, 4410, 11), -- Average P. Atk.
-(31953, 4411, 11), -- Average M. Atk.
-(31953, 4412, 11), -- Average P. Def.
-(31953, 4413, 11), -- Average M. Def.
-(31953, 4414, 2), -- Standard Type
-(31953, 4415, 1), -- Bare Hands
-(31953, 4416, 14), -- Humans
+(31953, 4408, 1), -- HP Modifiers
+(31953, 4409, 1), -- MP Modifiers
+(31953, 4410, 11), -- P. Atk. Modifiers
+(31953, 4411, 11), -- M. Atk. Modifiers
+(31953, 4412, 11), -- P. Def. Modifiers
+(31953, 4413, 11), -- M. Def. Modifiers
+(31953, 4414, 2), -- Armor Type
+(31953, 4415, 1), -- Weapon Type
+(31953, 4416, 14), -- Races
 -- Saroyan
 (31954, 4045, 1), -- Resist Full Magic Attack
-(31954, 4408, 1), -- HP Increase (1x)
-(31954, 4409, 1), -- MP Increase (1x)
-(31954, 4410, 11), -- Average P. Atk.
-(31954, 4411, 11), -- Average M. Atk.
-(31954, 4412, 11), -- Average P. Def.
-(31954, 4413, 11), -- Average M. Def.
-(31954, 4414, 2), -- Standard Type
-(31954, 4415, 1), -- Bare Hands
-(31954, 4416, 14), -- Humans
+(31954, 4408, 1), -- HP Modifiers
+(31954, 4409, 1), -- MP Modifiers
+(31954, 4410, 11), -- P. Atk. Modifiers
+(31954, 4411, 11), -- M. Atk. Modifiers
+(31954, 4412, 11), -- P. Def. Modifiers
+(31954, 4413, 11), -- M. Def. Modifiers
+(31954, 4414, 2), -- Armor Type
+(31954, 4415, 1), -- Weapon Type
+(31954, 4416, 14), -- Races
 -- Ruby
-(31955, 4408, 1), -- HP Increase (1x)
-(31955, 4409, 1), -- MP Increase (1x)
-(31955, 4410, 11), -- Average P. Atk.
-(31955, 4411, 11), -- Average M. Atk.
-(31955, 4412, 11), -- Average P. Def.
-(31955, 4413, 11), -- Average M. Def.
-(31955, 4414, 2), -- Standard Type
-(31955, 4415, 1), -- Bare Hands
-(31955, 4416, 3), -- Beasts
+(31955, 4408, 1), -- HP Modifiers
+(31955, 4409, 1), -- MP Modifiers
+(31955, 4410, 11), -- P. Atk. Modifiers
+(31955, 4411, 11), -- M. Atk. Modifiers
+(31955, 4412, 11), -- P. Def. Modifiers
+(31955, 4413, 11), -- M. Def. Modifiers
+(31955, 4414, 2), -- Armor Type
+(31955, 4415, 1), -- Weapon Type
+(31955, 4416, 3), -- Races
 -- Rydel
 (31956, 4045, 1), -- Resist Full Magic Attack
-(31956, 4408, 1), -- HP Increase (1x)
-(31956, 4409, 1), -- MP Increase (1x)
-(31956, 4410, 11), -- Average P. Atk.
-(31956, 4411, 11), -- Average M. Atk.
-(31956, 4412, 11), -- Average P. Def.
-(31956, 4413, 11), -- Average M. Def.
-(31956, 4414, 2), -- Standard Type
-(31956, 4415, 1), -- Bare Hands
-(31956, 4416, 18), -- Dwarves
+(31956, 4408, 1), -- HP Modifiers
+(31956, 4409, 1), -- MP Modifiers
+(31956, 4410, 11), -- P. Atk. Modifiers
+(31956, 4411, 11), -- M. Atk. Modifiers
+(31956, 4412, 11), -- P. Def. Modifiers
+(31956, 4413, 11), -- M. Def. Modifiers
+(31956, 4414, 2), -- Armor Type
+(31956, 4415, 1), -- Weapon Type
+(31956, 4416, 18), -- Races
 -- Cherbal
 (31957, 4045, 1), -- Resist Full Magic Attack
-(31957, 4408, 1), -- HP Increase (1x)
-(31957, 4409, 1), -- MP Increase (1x)
-(31957, 4410, 11), -- Average P. Atk.
-(31957, 4411, 11), -- Average M. Atk.
-(31957, 4412, 11), -- Average P. Def.
-(31957, 4413, 11), -- Average M. Def.
-(31957, 4414, 2), -- Standard Type
-(31957, 4415, 1), -- Bare Hands
-(31957, 4416, 18), -- Dwarves
+(31957, 4408, 1), -- HP Modifiers
+(31957, 4409, 1), -- MP Modifiers
+(31957, 4410, 11), -- P. Atk. Modifiers
+(31957, 4411, 11), -- M. Atk. Modifiers
+(31957, 4412, 11), -- P. Def. Modifiers
+(31957, 4413, 11), -- M. Def. Modifiers
+(31957, 4414, 2), -- Armor Type
+(31957, 4415, 1), -- Weapon Type
+(31957, 4416, 18), -- Races
 -- Yasheni
 (31958, 4045, 1), -- Resist Full Magic Attack
-(31958, 4408, 1), -- HP Increase (1x)
-(31958, 4409, 1), -- MP Increase (1x)
-(31958, 4410, 11), -- Average P. Atk.
-(31958, 4411, 11), -- Average M. Atk.
-(31958, 4412, 11), -- Average P. Def.
-(31958, 4413, 11), -- Average M. Def.
-(31958, 4414, 2), -- Standard Type
-(31958, 4415, 3), -- One-handed Sword
-(31958, 4416, 18), -- Dwarves
+(31958, 4408, 1), -- HP Modifiers
+(31958, 4409, 1), -- MP Modifiers
+(31958, 4410, 11), -- P. Atk. Modifiers
+(31958, 4411, 11), -- M. Atk. Modifiers
+(31958, 4412, 11), -- P. Def. Modifiers
+(31958, 4413, 11), -- M. Def. Modifiers
+(31958, 4414, 2), -- Armor Type
+(31958, 4415, 3), -- Weapon Type
+(31958, 4416, 18), -- Races
 -- Axel
 (31959, 4045, 1), -- Resist Full Magic Attack
-(31959, 4408, 1), -- HP Increase (1x)
-(31959, 4409, 1), -- MP Increase (1x)
-(31959, 4410, 11), -- Average P. Atk.
-(31959, 4411, 11), -- Average M. Atk.
-(31959, 4412, 11), -- Average P. Def.
-(31959, 4413, 11), -- Average M. Def.
-(31959, 4414, 2), -- Standard Type
-(31959, 4415, 1), -- Bare Hands
-(31959, 4416, 18), -- Dwarves
+(31959, 4408, 1), -- HP Modifiers
+(31959, 4409, 1), -- MP Modifiers
+(31959, 4410, 11), -- P. Atk. Modifiers
+(31959, 4411, 11), -- M. Atk. Modifiers
+(31959, 4412, 11), -- P. Def. Modifiers
+(31959, 4413, 11), -- M. Def. Modifiers
+(31959, 4414, 2), -- Armor Type
+(31959, 4415, 1), -- Weapon Type
+(31959, 4416, 18), -- Races
 -- Buryun
 (31960, 4045, 1), -- Resist Full Magic Attack
-(31960, 4408, 1), -- HP Increase (1x)
-(31960, 4409, 1), -- MP Increase (1x)
-(31960, 4410, 11), -- Average P. Atk.
-(31960, 4411, 11), -- Average M. Atk.
-(31960, 4412, 11), -- Average P. Def.
-(31960, 4413, 11), -- Average M. Def.
-(31960, 4414, 2), -- Standard Type
-(31960, 4415, 1), -- Bare Hands
-(31960, 4416, 18), -- Dwarves
+(31960, 4408, 1), -- HP Modifiers
+(31960, 4409, 1), -- MP Modifiers
+(31960, 4410, 11), -- P. Atk. Modifiers
+(31960, 4411, 11), -- M. Atk. Modifiers
+(31960, 4412, 11), -- P. Def. Modifiers
+(31960, 4413, 11), -- M. Def. Modifiers
+(31960, 4414, 2), -- Armor Type
+(31960, 4415, 1), -- Weapon Type
+(31960, 4416, 18), -- Races
 -- Newyear
 (31961, 4045, 1), -- Resist Full Magic Attack
-(31961, 4408, 1), -- HP Increase (1x)
-(31961, 4409, 1), -- MP Increase (1x)
-(31961, 4410, 11), -- Average P. Atk.
-(31961, 4411, 11), -- Average M. Atk.
-(31961, 4412, 11), -- Average P. Def.
-(31961, 4413, 11), -- Average M. Def.
-(31961, 4414, 2), -- Standard Type
-(31961, 4415, 3), -- One-handed Sword
-(31961, 4416, 18), -- Dwarves
+(31961, 4408, 1), -- HP Modifiers
+(31961, 4409, 1), -- MP Modifiers
+(31961, 4410, 11), -- P. Atk. Modifiers
+(31961, 4411, 11), -- M. Atk. Modifiers
+(31961, 4412, 11), -- P. Def. Modifiers
+(31961, 4413, 11), -- M. Def. Modifiers
+(31961, 4414, 2), -- Armor Type
+(31961, 4415, 3), -- Weapon Type
+(31961, 4416, 18), -- Races
 -- Altair
 (31962, 4045, 1), -- Resist Full Magic Attack
-(31962, 4408, 1), -- HP Increase (1x)
-(31962, 4409, 1), -- MP Increase (1x)
-(31962, 4410, 11), -- Average P. Atk.
-(31962, 4411, 11), -- Average M. Atk.
-(31962, 4412, 11), -- Average P. Def.
-(31962, 4413, 11), -- Average M. Def.
-(31962, 4414, 2), -- Standard Type
-(31962, 4415, 1), -- Bare Hands
-(31962, 4416, 18), -- Dwarves
+(31962, 4408, 1), -- HP Modifiers
+(31962, 4409, 1), -- MP Modifiers
+(31962, 4410, 11), -- P. Atk. Modifiers
+(31962, 4411, 11), -- M. Atk. Modifiers
+(31962, 4412, 11), -- P. Def. Modifiers
+(31962, 4413, 11), -- M. Def. Modifiers
+(31962, 4414, 2), -- Armor Type
+(31962, 4415, 1), -- Weapon Type
+(31962, 4416, 18), -- Races
 -- Hitchi
 (31963, 4045, 1), -- Resist Full Magic Attack
-(31963, 4408, 1), -- HP Increase (1x)
-(31963, 4409, 1), -- MP Increase (1x)
-(31963, 4410, 11), -- Average P. Atk.
-(31963, 4411, 11), -- Average M. Atk.
-(31963, 4412, 11), -- Average P. Def.
-(31963, 4413, 11), -- Average M. Def.
-(31963, 4414, 2), -- Standard Type
-(31963, 4415, 1), -- Bare Hands
-(31963, 4416, 18), -- Dwarves
+(31963, 4408, 1), -- HP Modifiers
+(31963, 4409, 1), -- MP Modifiers
+(31963, 4410, 11), -- P. Atk. Modifiers
+(31963, 4411, 11), -- M. Atk. Modifiers
+(31963, 4412, 11), -- P. Def. Modifiers
+(31963, 4413, 11), -- M. Def. Modifiers
+(31963, 4414, 2), -- Armor Type
+(31963, 4415, 1), -- Weapon Type
+(31963, 4416, 18), -- Races
 -- Bilia
 (31964, 4045, 1), -- Resist Full Magic Attack
-(31964, 4408, 1), -- HP Increase (1x)
-(31964, 4409, 1), -- MP Increase (1x)
-(31964, 4410, 11), -- Average P. Atk.
-(31964, 4411, 11), -- Average M. Atk.
-(31964, 4412, 11), -- Average P. Def.
-(31964, 4413, 11), -- Average M. Def.
-(31964, 4414, 2), -- Standard Type
-(31964, 4415, 1), -- Bare Hands
-(31964, 4416, 14), -- Humans
+(31964, 4408, 1), -- HP Modifiers
+(31964, 4409, 1), -- MP Modifiers
+(31964, 4410, 11), -- P. Atk. Modifiers
+(31964, 4411, 11), -- M. Atk. Modifiers
+(31964, 4412, 11), -- P. Def. Modifiers
+(31964, 4413, 11), -- M. Def. Modifiers
+(31964, 4414, 2), -- Armor Type
+(31964, 4415, 1), -- Weapon Type
+(31964, 4416, 14), -- Races
 -- Hector
 (31965, 4045, 1), -- Resist Full Magic Attack
-(31965, 4408, 1), -- HP Increase (1x)
-(31965, 4409, 1), -- MP Increase (1x)
-(31965, 4410, 11), -- Average P. Atk.
-(31965, 4411, 11), -- Average M. Atk.
-(31965, 4412, 11), -- Average P. Def.
-(31965, 4413, 11), -- Average M. Def.
-(31965, 4414, 2), -- Standard Type
-(31965, 4415, 3), -- One-handed Sword
-(31965, 4416, 14), -- Humans
+(31965, 4408, 1), -- HP Modifiers
+(31965, 4409, 1), -- MP Modifiers
+(31965, 4410, 11), -- P. Atk. Modifiers
+(31965, 4411, 11), -- M. Atk. Modifiers
+(31965, 4412, 11), -- P. Def. Modifiers
+(31965, 4413, 11), -- M. Def. Modifiers
+(31965, 4414, 2), -- Armor Type
+(31965, 4415, 3), -- Weapon Type
+(31965, 4416, 14), -- Races
 -- Karamon
 (31966, 4045, 1), -- Resist Full Magic Attack
-(31966, 4408, 1), -- HP Increase (1x)
-(31966, 4409, 1), -- MP Increase (1x)
-(31966, 4410, 11), -- Average P. Atk.
-(31966, 4411, 11), -- Average M. Atk.
-(31966, 4412, 11), -- Average P. Def.
-(31966, 4413, 11), -- Average M. Def.
-(31966, 4414, 2), -- Standard Type
-(31966, 4415, 1), -- Bare Hands
-(31966, 4416, 14), -- Humans
+(31966, 4408, 1), -- HP Modifiers
+(31966, 4409, 1), -- MP Modifiers
+(31966, 4410, 11), -- P. Atk. Modifiers
+(31966, 4411, 11), -- M. Atk. Modifiers
+(31966, 4412, 11), -- P. Def. Modifiers
+(31966, 4413, 11), -- M. Def. Modifiers
+(31966, 4414, 2), -- Armor Type
+(31966, 4415, 1), -- Weapon Type
+(31966, 4416, 14), -- Races
 -- Euline
 (31967, 4045, 1), -- Resist Full Magic Attack
-(31967, 4408, 1), -- HP Increase (1x)
-(31967, 4409, 1), -- MP Increase (1x)
-(31967, 4410, 11), -- Average P. Atk.
-(31967, 4411, 11), -- Average M. Atk.
-(31967, 4412, 11), -- Average P. Def.
-(31967, 4413, 11), -- Average M. Def.
-(31967, 4414, 2), -- Standard Type
-(31967, 4415, 1), -- Bare Hands
-(31967, 4416, 15), -- Elves
+(31967, 4408, 1), -- HP Modifiers
+(31967, 4409, 1), -- MP Modifiers
+(31967, 4410, 11), -- P. Atk. Modifiers
+(31967, 4411, 11), -- M. Atk. Modifiers
+(31967, 4412, 11), -- P. Def. Modifiers
+(31967, 4413, 11), -- M. Def. Modifiers
+(31967, 4414, 2), -- Armor Type
+(31967, 4415, 1), -- Weapon Type
+(31967, 4416, 15), -- Races
 -- Baryl
 (31968, 4045, 1), -- Resist Full Magic Attack
-(31968, 4408, 1), -- HP Increase (1x)
-(31968, 4409, 1), -- MP Increase (1x)
-(31968, 4410, 11), -- Average P. Atk.
-(31968, 4411, 11), -- Average M. Atk.
-(31968, 4412, 11), -- Average P. Def.
-(31968, 4413, 11), -- Average M. Def.
-(31968, 4414, 2), -- Standard Type
-(31968, 4415, 3), -- One-handed Sword
-(31968, 4416, 14), -- Humans
+(31968, 4408, 1), -- HP Modifiers
+(31968, 4409, 1), -- MP Modifiers
+(31968, 4410, 11), -- P. Atk. Modifiers
+(31968, 4411, 11), -- M. Atk. Modifiers
+(31968, 4412, 11), -- P. Def. Modifiers
+(31968, 4413, 11), -- M. Def. Modifiers
+(31968, 4414, 2), -- Armor Type
+(31968, 4415, 3), -- Weapon Type
+(31968, 4416, 14), -- Races
 -- Evelyn
 (31969, 4045, 1), -- Resist Full Magic Attack
-(31969, 4408, 1), -- HP Increase (1x)
-(31969, 4409, 1), -- MP Increase (1x)
-(31969, 4410, 11), -- Average P. Atk.
-(31969, 4411, 11), -- Average M. Atk.
-(31969, 4412, 11), -- Average P. Def.
-(31969, 4413, 11), -- Average M. Def.
-(31969, 4414, 2), -- Standard Type
-(31969, 4415, 1), -- Bare Hands
-(31969, 4416, 14), -- Humans
+(31969, 4408, 1), -- HP Modifiers
+(31969, 4409, 1), -- MP Modifiers
+(31969, 4410, 11), -- P. Atk. Modifiers
+(31969, 4411, 11), -- M. Atk. Modifiers
+(31969, 4412, 11), -- P. Def. Modifiers
+(31969, 4413, 11), -- M. Def. Modifiers
+(31969, 4414, 2), -- Armor Type
+(31969, 4415, 1), -- Weapon Type
+(31969, 4416, 14), -- Races
 -- Sinis
 (31970, 4045, 1), -- Resist Full Magic Attack
-(31970, 4408, 1), -- HP Increase (1x)
-(31970, 4409, 1), -- MP Increase (1x)
-(31970, 4410, 11), -- Average P. Atk.
-(31970, 4411, 11), -- Average M. Atk.
-(31970, 4412, 11), -- Average P. Def.
-(31970, 4413, 11), -- Average M. Def.
-(31970, 4414, 2), -- Standard Type
-(31970, 4415, 1), -- Bare Hands
-(31970, 4416, 15), -- Elves
+(31970, 4408, 1), -- HP Modifiers
+(31970, 4409, 1), -- MP Modifiers
+(31970, 4410, 11), -- P. Atk. Modifiers
+(31970, 4411, 11), -- M. Atk. Modifiers
+(31970, 4412, 11), -- P. Def. Modifiers
+(31970, 4413, 11), -- M. Def. Modifiers
+(31970, 4414, 2), -- Armor Type
+(31970, 4415, 1), -- Weapon Type
+(31970, 4416, 15), -- Races
 -- Otillo
 (31971, 4045, 1), -- Resist Full Magic Attack
-(31971, 4408, 1), -- HP Increase (1x)
-(31971, 4409, 1), -- MP Increase (1x)
-(31971, 4410, 11), -- Average P. Atk.
-(31971, 4411, 11), -- Average M. Atk.
-(31971, 4412, 11), -- Average P. Def.
-(31971, 4413, 11), -- Average M. Def.
-(31971, 4414, 2), -- Standard Type
-(31971, 4415, 1), -- Bare Hands
-(31971, 4416, 14), -- Humans
+(31971, 4408, 1), -- HP Modifiers
+(31971, 4409, 1), -- MP Modifiers
+(31971, 4410, 11), -- P. Atk. Modifiers
+(31971, 4411, 11), -- M. Atk. Modifiers
+(31971, 4412, 11), -- P. Def. Modifiers
+(31971, 4413, 11), -- M. Def. Modifiers
+(31971, 4414, 2), -- Armor Type
+(31971, 4415, 1), -- Weapon Type
+(31971, 4416, 14), -- Races
 -- Atraxia
 (31972, 4045, 1), -- Resist Full Magic Attack
-(31972, 4408, 1), -- HP Increase (1x)
-(31972, 4409, 1), -- MP Increase (1x)
-(31972, 4410, 11), -- Average P. Atk.
-(31972, 4411, 11), -- Average M. Atk.
-(31972, 4412, 11), -- Average P. Def.
-(31972, 4413, 11), -- Average M. Def.
-(31972, 4414, 2), -- Standard Type
-(31972, 4415, 1), -- Bare Hands
-(31972, 4416, 15), -- Elves
+(31972, 4408, 1), -- HP Modifiers
+(31972, 4409, 1), -- MP Modifiers
+(31972, 4410, 11), -- P. Atk. Modifiers
+(31972, 4411, 11), -- M. Atk. Modifiers
+(31972, 4412, 11), -- P. Def. Modifiers
+(31972, 4413, 11), -- M. Def. Modifiers
+(31972, 4414, 2), -- Armor Type
+(31972, 4415, 1), -- Weapon Type
+(31972, 4416, 15), -- Races
 -- Raheel
 (31973, 4045, 1), -- Resist Full Magic Attack
-(31973, 4408, 1), -- HP Increase (1x)
-(31973, 4409, 1), -- MP Increase (1x)
-(31973, 4410, 11), -- Average P. Atk.
-(31973, 4411, 11), -- Average M. Atk.
-(31973, 4412, 11), -- Average P. Def.
-(31973, 4413, 11), -- Average M. Def.
-(31973, 4414, 2), -- Standard Type
-(31973, 4415, 1), -- Bare Hands
-(31973, 4416, 14), -- Humans
+(31973, 4408, 1), -- HP Modifiers
+(31973, 4409, 1), -- MP Modifiers
+(31973, 4410, 11), -- P. Atk. Modifiers
+(31973, 4411, 11), -- M. Atk. Modifiers
+(31973, 4412, 11), -- P. Def. Modifiers
+(31973, 4413, 11), -- M. Def. Modifiers
+(31973, 4414, 2), -- Armor Type
+(31973, 4415, 1), -- Weapon Type
+(31973, 4416, 14), -- Races
 -- Drizzit
 (31974, 4045, 1), -- Resist Full Magic Attack
-(31974, 4408, 1), -- HP Increase (1x)
-(31974, 4409, 1), -- MP Increase (1x)
-(31974, 4410, 11), -- Average P. Atk.
-(31974, 4411, 11), -- Average M. Atk.
-(31974, 4412, 11), -- Average P. Def.
-(31974, 4413, 11), -- Average M. Def.
-(31974, 4414, 2), -- Standard Type
-(31974, 4415, 3), -- One-handed Sword
-(31974, 4416, 16), -- Dark Elves
+(31974, 4408, 1), -- HP Modifiers
+(31974, 4409, 1), -- MP Modifiers
+(31974, 4410, 11), -- P. Atk. Modifiers
+(31974, 4411, 11), -- M. Atk. Modifiers
+(31974, 4412, 11), -- P. Def. Modifiers
+(31974, 4413, 11), -- M. Def. Modifiers
+(31974, 4414, 2), -- Armor Type
+(31974, 4415, 3), -- Weapon Type
+(31974, 4416, 16), -- Races
 -- Aerina
 (31975, 4045, 1), -- Resist Full Magic Attack
-(31975, 4408, 1), -- HP Increase (1x)
-(31975, 4409, 1), -- MP Increase (1x)
-(31975, 4410, 11), -- Average P. Atk.
-(31975, 4411, 11), -- Average M. Atk.
-(31975, 4412, 11), -- Average P. Def.
-(31975, 4413, 11), -- Average M. Def.
-(31975, 4414, 2), -- Standard Type
-(31975, 4415, 1), -- Bare Hands
-(31975, 4416, 16), -- Dark Elves
+(31975, 4408, 1), -- HP Modifiers
+(31975, 4409, 1), -- MP Modifiers
+(31975, 4410, 11), -- P. Atk. Modifiers
+(31975, 4411, 11), -- M. Atk. Modifiers
+(31975, 4412, 11), -- P. Def. Modifiers
+(31975, 4413, 11), -- M. Def. Modifiers
+(31975, 4414, 2), -- Armor Type
+(31975, 4415, 1), -- Weapon Type
+(31975, 4416, 16), -- Races
 -- Talia
 (31976, 4045, 1), -- Resist Full Magic Attack
-(31976, 4408, 1), -- HP Increase (1x)
-(31976, 4409, 1), -- MP Increase (1x)
-(31976, 4410, 11), -- Average P. Atk.
-(31976, 4411, 11), -- Average M. Atk.
-(31976, 4412, 11), -- Average P. Def.
-(31976, 4413, 11), -- Average M. Def.
-(31976, 4414, 2), -- Standard Type
-(31976, 4415, 1), -- Bare Hands
-(31976, 4416, 16), -- Dark Elves
+(31976, 4408, 1), -- HP Modifiers
+(31976, 4409, 1), -- MP Modifiers
+(31976, 4410, 11), -- P. Atk. Modifiers
+(31976, 4411, 11), -- M. Atk. Modifiers
+(31976, 4412, 11), -- P. Def. Modifiers
+(31976, 4413, 11), -- M. Def. Modifiers
+(31976, 4414, 2), -- Armor Type
+(31976, 4415, 1), -- Weapon Type
+(31976, 4416, 16), -- Races
 -- Shaka
 (31977, 4045, 1), -- Resist Full Magic Attack
-(31977, 4408, 1), -- HP Increase (1x)
-(31977, 4409, 1), -- MP Increase (1x)
-(31977, 4410, 11), -- Average P. Atk.
-(31977, 4411, 11), -- Average M. Atk.
-(31977, 4412, 11), -- Average P. Def.
-(31977, 4413, 11), -- Average M. Def.
-(31977, 4414, 2), -- Standard Type
-(31977, 4415, 3), -- One-handed Sword
-(31977, 4416, 17), -- Orcs
+(31977, 4408, 1), -- HP Modifiers
+(31977, 4409, 1), -- MP Modifiers
+(31977, 4410, 11), -- P. Atk. Modifiers
+(31977, 4411, 11), -- M. Atk. Modifiers
+(31977, 4412, 11), -- P. Def. Modifiers
+(31977, 4413, 11), -- M. Def. Modifiers
+(31977, 4414, 2), -- Armor Type
+(31977, 4415, 3), -- Weapon Type
+(31977, 4416, 17), -- Races
 -- Tazeer
 (31978, 4045, 1), -- Resist Full Magic Attack
-(31978, 4408, 1), -- HP Increase (1x)
-(31978, 4409, 1), -- MP Increase (1x)
-(31978, 4410, 11), -- Average P. Atk.
-(31978, 4411, 11), -- Average M. Atk.
-(31978, 4412, 11), -- Average P. Def.
-(31978, 4413, 11), -- Average M. Def.
-(31978, 4414, 2), -- Standard Type
-(31978, 4415, 1), -- Bare Hands
-(31978, 4416, 17), -- Orcs
+(31978, 4408, 1), -- HP Modifiers
+(31978, 4409, 1), -- MP Modifiers
+(31978, 4410, 11), -- P. Atk. Modifiers
+(31978, 4411, 11), -- M. Atk. Modifiers
+(31978, 4412, 11), -- P. Def. Modifiers
+(31978, 4413, 11), -- M. Def. Modifiers
+(31978, 4414, 2), -- Armor Type
+(31978, 4415, 1), -- Weapon Type
+(31978, 4416, 17), -- Races
 -- Moira
 (31979, 4045, 1), -- Resist Full Magic Attack
-(31979, 4408, 1), -- HP Increase (1x)
-(31979, 4409, 1), -- MP Increase (1x)
-(31979, 4410, 11), -- Average P. Atk.
-(31979, 4411, 11), -- Average M. Atk.
-(31979, 4412, 11), -- Average P. Def.
-(31979, 4413, 11), -- Average M. Def.
-(31979, 4414, 2), -- Standard Type
-(31979, 4415, 1), -- Bare Hands
-(31979, 4416, 17), -- Orcs
+(31979, 4408, 1), -- HP Modifiers
+(31979, 4409, 1), -- MP Modifiers
+(31979, 4410, 11), -- P. Atk. Modifiers
+(31979, 4411, 11), -- M. Atk. Modifiers
+(31979, 4412, 11), -- P. Def. Modifiers
+(31979, 4413, 11), -- M. Def. Modifiers
+(31979, 4414, 2), -- Armor Type
+(31979, 4415, 1), -- Weapon Type
+(31979, 4416, 17), -- Races
 -- Rumba
 (31980, 4045, 1), -- Resist Full Magic Attack
-(31980, 4408, 1), -- HP Increase (1x)
-(31980, 4409, 1), -- MP Increase (1x)
-(31980, 4410, 11), -- Average P. Atk.
-(31980, 4411, 11), -- Average M. Atk.
-(31980, 4412, 11), -- Average P. Def.
-(31980, 4413, 11), -- Average M. Def.
-(31980, 4414, 2), -- Standard Type
-(31980, 4415, 1), -- Bare Hands
-(31980, 4416, 17), -- Orcs
+(31980, 4408, 1), -- HP Modifiers
+(31980, 4409, 1), -- MP Modifiers
+(31980, 4410, 11), -- P. Atk. Modifiers
+(31980, 4411, 11), -- M. Atk. Modifiers
+(31980, 4412, 11), -- P. Def. Modifiers
+(31980, 4413, 11), -- M. Def. Modifiers
+(31980, 4414, 2), -- Armor Type
+(31980, 4415, 1), -- Weapon Type
+(31980, 4416, 17), -- Races
 -- Vishotsky
 (31981, 4045, 1), -- Resist Full Magic Attack
-(31981, 4408, 1), -- HP Increase (1x)
-(31981, 4409, 1), -- MP Increase (1x)
-(31981, 4410, 16), -- Very Strong P. Atk.
-(31981, 4411, 16), -- Very Strong M. Atk.
-(31981, 4412, 16), -- Very Strong P. Def.
-(31981, 4413, 16), -- Very Strong M. Def.
-(31981, 4414, 2), -- Standard Type
-(31981, 4415, 3), -- One-handed Sword
-(31981, 4416, 14), -- Humans
+(31981, 4408, 1), -- HP Modifiers
+(31981, 4409, 1), -- MP Modifiers
+(31981, 4410, 16), -- P. Atk. Modifiers
+(31981, 4411, 16), -- M. Atk. Modifiers
+(31981, 4412, 16), -- P. Def. Modifiers
+(31981, 4413, 16), -- M. Def. Modifiers
+(31981, 4414, 2), -- Armor Type
+(31981, 4415, 3), -- Weapon Type
+(31981, 4416, 14), -- Races
 -- Glen
 (31982, 4045, 1), -- Resist Full Magic Attack
-(31982, 4408, 1), -- HP Increase (1x)
-(31982, 4409, 1), -- MP Increase (1x)
-(31982, 4410, 16), -- Very Strong P. Atk.
-(31982, 4411, 16), -- Very Strong M. Atk.
-(31982, 4412, 16), -- Very Strong P. Def.
-(31982, 4413, 16), -- Very Strong M. Def.
-(31982, 4414, 2), -- Standard Type
-(31982, 4415, 3), -- One-handed Sword
-(31982, 4416, 14), -- Humans
+(31982, 4408, 1), -- HP Modifiers
+(31982, 4409, 1), -- MP Modifiers
+(31982, 4410, 16), -- P. Atk. Modifiers
+(31982, 4411, 16), -- M. Atk. Modifiers
+(31982, 4412, 16), -- P. Def. Modifiers
+(31982, 4413, 16), -- M. Def. Modifiers
+(31982, 4414, 2), -- Armor Type
+(31982, 4415, 3), -- Weapon Type
+(31982, 4416, 14), -- Races
 -- Friggar
 (31983, 4045, 1), -- Resist Full Magic Attack
-(31983, 4408, 1), -- HP Increase (1x)
-(31983, 4409, 1), -- MP Increase (1x)
-(31983, 4410, 16), -- Very Strong P. Atk.
-(31983, 4411, 16), -- Very Strong M. Atk.
-(31983, 4412, 16), -- Very Strong P. Def.
-(31983, 4413, 16), -- Very Strong M. Def.
-(31983, 4414, 2), -- Standard Type
-(31983, 4415, 3), -- One-handed Sword
-(31983, 4416, 14), -- Humans
+(31983, 4408, 1), -- HP Modifiers
+(31983, 4409, 1), -- MP Modifiers
+(31983, 4410, 16), -- P. Atk. Modifiers
+(31983, 4411, 16), -- M. Atk. Modifiers
+(31983, 4412, 16), -- P. Def. Modifiers
+(31983, 4413, 16), -- M. Def. Modifiers
+(31983, 4414, 2), -- Armor Type
+(31983, 4415, 3), -- Weapon Type
+(31983, 4416, 14), -- Races
 -- Sherring
 (31984, 4045, 1), -- Resist Full Magic Attack
-(31984, 4408, 1), -- HP Increase (1x)
-(31984, 4409, 1), -- MP Increase (1x)
-(31984, 4410, 16), -- Very Strong P. Atk.
-(31984, 4411, 16), -- Very Strong M. Atk.
-(31984, 4412, 16), -- Very Strong P. Def.
-(31984, 4413, 16), -- Very Strong M. Def.
-(31984, 4414, 2), -- Standard Type
-(31984, 4415, 3), -- One-handed Sword
-(31984, 4416, 14), -- Humans
+(31984, 4408, 1), -- HP Modifiers
+(31984, 4409, 1), -- MP Modifiers
+(31984, 4410, 16), -- P. Atk. Modifiers
+(31984, 4411, 16), -- M. Atk. Modifiers
+(31984, 4412, 16), -- P. Def. Modifiers
+(31984, 4413, 16), -- M. Def. Modifiers
+(31984, 4414, 2), -- Armor Type
+(31984, 4415, 3), -- Weapon Type
+(31984, 4416, 14), -- Races
 -- Kosmos
 (31985, 4045, 1), -- Resist Full Magic Attack
-(31985, 4408, 1), -- HP Increase (1x)
-(31985, 4409, 1), -- MP Increase (1x)
-(31985, 4410, 16), -- Very Strong P. Atk.
-(31985, 4411, 16), -- Very Strong M. Atk.
-(31985, 4412, 16), -- Very Strong P. Def.
-(31985, 4413, 16), -- Very Strong M. Def.
-(31985, 4414, 2), -- Standard Type
-(31985, 4415, 3), -- One-handed Sword
-(31985, 4416, 14), -- Humans
+(31985, 4408, 1), -- HP Modifiers
+(31985, 4409, 1), -- MP Modifiers
+(31985, 4410, 16), -- P. Atk. Modifiers
+(31985, 4411, 16), -- M. Atk. Modifiers
+(31985, 4412, 16), -- P. Def. Modifiers
+(31985, 4413, 16), -- M. Def. Modifiers
+(31985, 4414, 2), -- Armor Type
+(31985, 4415, 3), -- Weapon Type
+(31985, 4416, 14), -- Races
 -- Erstack
 (31986, 4045, 1), -- Resist Full Magic Attack
-(31986, 4408, 1), -- HP Increase (1x)
-(31986, 4409, 1), -- MP Increase (1x)
-(31986, 4410, 16), -- Very Strong P. Atk.
-(31986, 4411, 16), -- Very Strong M. Atk.
-(31986, 4412, 16), -- Very Strong P. Def.
-(31986, 4413, 16), -- Very Strong M. Def.
-(31986, 4414, 2), -- Standard Type
-(31986, 4415, 3), -- One-handed Sword
-(31986, 4416, 14), -- Humans
+(31986, 4408, 1), -- HP Modifiers
+(31986, 4409, 1), -- MP Modifiers
+(31986, 4410, 16), -- P. Atk. Modifiers
+(31986, 4411, 16), -- M. Atk. Modifiers
+(31986, 4412, 16), -- P. Def. Modifiers
+(31986, 4413, 16), -- M. Def. Modifiers
+(31986, 4414, 2), -- Armor Type
+(31986, 4415, 3), -- Weapon Type
+(31986, 4416, 14), -- Races
 -- Gotter
 (31987, 4045, 1), -- Resist Full Magic Attack
-(31987, 4408, 1), -- HP Increase (1x)
-(31987, 4409, 1), -- MP Increase (1x)
-(31987, 4410, 16), -- Very Strong P. Atk.
-(31987, 4411, 16), -- Very Strong M. Atk.
-(31987, 4412, 16), -- Very Strong P. Def.
-(31987, 4413, 16), -- Very Strong M. Def.
-(31987, 4414, 2), -- Standard Type
-(31987, 4415, 3), -- One-handed Sword
-(31987, 4416, 14), -- Humans
+(31987, 4408, 1), -- HP Modifiers
+(31987, 4409, 1), -- MP Modifiers
+(31987, 4410, 16), -- P. Atk. Modifiers
+(31987, 4411, 16), -- M. Atk. Modifiers
+(31987, 4412, 16), -- P. Def. Modifiers
+(31987, 4413, 16), -- M. Def. Modifiers
+(31987, 4414, 2), -- Armor Type
+(31987, 4415, 3), -- Weapon Type
+(31987, 4416, 14), -- Races
 -- Singa
 (31988, 4045, 1), -- Resist Full Magic Attack
-(31988, 4408, 1), -- HP Increase (1x)
-(31988, 4409, 1), -- MP Increase (1x)
-(31988, 4410, 16), -- Very Strong P. Atk.
-(31988, 4411, 16), -- Very Strong M. Atk.
-(31988, 4412, 16), -- Very Strong P. Def.
-(31988, 4413, 16), -- Very Strong M. Def.
-(31988, 4414, 2), -- Standard Type
-(31988, 4415, 3), -- One-handed Sword
-(31988, 4416, 14), -- Humans
+(31988, 4408, 1), -- HP Modifiers
+(31988, 4409, 1), -- MP Modifiers
+(31988, 4410, 16), -- P. Atk. Modifiers
+(31988, 4411, 16), -- M. Atk. Modifiers
+(31988, 4412, 16), -- P. Def. Modifiers
+(31988, 4413, 16), -- M. Def. Modifiers
+(31988, 4414, 2), -- Armor Type
+(31988, 4415, 3), -- Weapon Type
+(31988, 4416, 14), -- Races
 -- Batidae
 (31989, 4045, 1), -- Resist Full Magic Attack
-(31989, 4408, 1), -- HP Increase (1x)
-(31989, 4409, 1), -- MP Increase (1x)
-(31989, 4410, 11), -- Average P. Atk.
-(31989, 4411, 11), -- Average M. Atk.
-(31989, 4412, 11), -- Average P. Def.
-(31989, 4413, 11), -- Average M. Def.
-(31989, 4414, 2), -- Standard Type
-(31989, 4415, 1), -- Bare Hands
-(31989, 4416, 14), -- Humans
+(31989, 4408, 1), -- HP Modifiers
+(31989, 4409, 1), -- MP Modifiers
+(31989, 4410, 11), -- P. Atk. Modifiers
+(31989, 4411, 11), -- M. Atk. Modifiers
+(31989, 4412, 11), -- P. Def. Modifiers
+(31989, 4413, 11), -- M. Def. Modifiers
+(31989, 4414, 2), -- Armor Type
+(31989, 4415, 1), -- Weapon Type
+(31989, 4416, 14), -- Races
 -- Siger
 (31990, 4045, 1), -- Resist Full Magic Attack
-(31990, 4408, 1), -- HP Increase (1x)
-(31990, 4409, 1), -- MP Increase (1x)
-(31990, 4410, 11), -- Average P. Atk.
-(31990, 4411, 11), -- Average M. Atk.
-(31990, 4412, 11), -- Average P. Def.
-(31990, 4413, 11), -- Average M. Def.
-(31990, 4414, 2), -- Standard Type
-(31990, 4415, 1), -- Bare Hands
-(31990, 4416, 18), -- Dwarves
+(31990, 4408, 1), -- HP Modifiers
+(31990, 4409, 1), -- MP Modifiers
+(31990, 4410, 11), -- P. Atk. Modifiers
+(31990, 4411, 11), -- M. Atk. Modifiers
+(31990, 4412, 11), -- P. Def. Modifiers
+(31990, 4413, 11), -- M. Def. Modifiers
+(31990, 4414, 2), -- Armor Type
+(31990, 4415, 1), -- Weapon Type
+(31990, 4416, 18), -- Races
 -- Adventure Guildsman
 (31991, 4045, 1), -- Resist Full Magic Attack
-(31991, 4408, 1), -- HP Increase (1x)
-(31991, 4409, 1), -- MP Increase (1x)
-(31991, 4410, 11), -- Average P. Atk.
-(31991, 4411, 11), -- Average M. Atk.
-(31991, 4412, 11), -- Average P. Def.
-(31991, 4413, 11), -- Average M. Def.
-(31991, 4414, 2), -- Standard Type
-(31991, 4415, 3), -- One-handed Sword
-(31991, 4416, 18), -- Dwarves
+(31991, 4408, 1), -- HP Modifiers
+(31991, 4409, 1), -- MP Modifiers
+(31991, 4410, 11), -- P. Atk. Modifiers
+(31991, 4411, 11), -- M. Atk. Modifiers
+(31991, 4412, 11), -- P. Def. Modifiers
+(31991, 4413, 11), -- M. Def. Modifiers
+(31991, 4414, 2), -- Armor Type
+(31991, 4415, 3), -- Weapon Type
+(31991, 4416, 18), -- Races
 -- Adventure Guildsman
 (31992, 4045, 1), -- Resist Full Magic Attack
-(31992, 4408, 1), -- HP Increase (1x)
-(31992, 4409, 1), -- MP Increase (1x)
-(31992, 4410, 11), -- Average P. Atk.
-(31992, 4411, 11), -- Average M. Atk.
-(31992, 4412, 11), -- Average P. Def.
-(31992, 4413, 11), -- Average M. Def.
-(31992, 4414, 2), -- Standard Type
-(31992, 4415, 3), -- One-handed Sword
-(31992, 4416, 14), -- Humans
+(31992, 4408, 1), -- HP Modifiers
+(31992, 4409, 1), -- MP Modifiers
+(31992, 4410, 11), -- P. Atk. Modifiers
+(31992, 4411, 11), -- M. Atk. Modifiers
+(31992, 4412, 11), -- P. Def. Modifiers
+(31992, 4413, 11), -- M. Def. Modifiers
+(31992, 4414, 2), -- Armor Type
+(31992, 4415, 3), -- Weapon Type
+(31992, 4416, 14), -- Races
 -- Adventure Guildsman
 (31993, 4045, 1), -- Resist Full Magic Attack
-(31993, 4408, 1), -- HP Increase (1x)
-(31993, 4409, 1), -- MP Increase (1x)
-(31993, 4410, 11), -- Average P. Atk.
-(31993, 4411, 11), -- Average M. Atk.
-(31993, 4412, 11), -- Average P. Def.
-(31993, 4413, 11), -- Average M. Def.
-(31993, 4414, 2), -- Standard Type
-(31993, 4415, 3), -- One-handed Sword
-(31993, 4416, 18), -- Dwarves
+(31993, 4408, 1), -- HP Modifiers
+(31993, 4409, 1), -- MP Modifiers
+(31993, 4410, 11), -- P. Atk. Modifiers
+(31993, 4411, 11), -- M. Atk. Modifiers
+(31993, 4412, 11), -- P. Def. Modifiers
+(31993, 4413, 11), -- M. Def. Modifiers
+(31993, 4414, 2), -- Armor Type
+(31993, 4415, 3), -- Weapon Type
+(31993, 4416, 18), -- Races
 -- Adventure Guildsman
 (31994, 4045, 1), -- Resist Full Magic Attack
-(31994, 4408, 1), -- HP Increase (1x)
-(31994, 4409, 1), -- MP Increase (1x)
-(31994, 4410, 11), -- Average P. Atk.
-(31994, 4411, 11), -- Average M. Atk.
-(31994, 4412, 11), -- Average P. Def.
-(31994, 4413, 11), -- Average M. Def.
-(31994, 4414, 2), -- Standard Type
-(31994, 4415, 3), -- One-handed Sword
-(31994, 4416, 17), -- Orcs
+(31994, 4408, 1), -- HP Modifiers
+(31994, 4409, 1), -- MP Modifiers
+(31994, 4410, 11), -- P. Atk. Modifiers
+(31994, 4411, 11), -- M. Atk. Modifiers
+(31994, 4412, 11), -- P. Def. Modifiers
+(31994, 4413, 11), -- M. Def. Modifiers
+(31994, 4414, 2), -- Armor Type
+(31994, 4415, 3), -- Weapon Type
+(31994, 4416, 17), -- Races
 -- Adventure Guildsman
 (31995, 4045, 1), -- Resist Full Magic Attack
-(31995, 4408, 1), -- HP Increase (1x)
-(31995, 4409, 1), -- MP Increase (1x)
-(31995, 4410, 11), -- Average P. Atk.
-(31995, 4411, 11), -- Average M. Atk.
-(31995, 4412, 11), -- Average P. Def.
-(31995, 4413, 11), -- Average M. Def.
-(31995, 4414, 2), -- Standard Type
-(31995, 4415, 3), -- One-handed Sword
-(31995, 4416, 14), -- Humans
+(31995, 4408, 1), -- HP Modifiers
+(31995, 4409, 1), -- MP Modifiers
+(31995, 4410, 11), -- P. Atk. Modifiers
+(31995, 4411, 11), -- M. Atk. Modifiers
+(31995, 4412, 11), -- P. Def. Modifiers
+(31995, 4413, 11), -- M. Def. Modifiers
+(31995, 4414, 2), -- Armor Type
+(31995, 4415, 3), -- Weapon Type
+(31995, 4416, 14), -- Races
 -- Javier
 (31996, 4045, 1), -- Resist Full Magic Attack
-(31996, 4408, 1), -- HP Increase (1x)
-(31996, 4409, 1), -- MP Increase (1x)
-(31996, 4410, 11), -- Average P. Atk.
-(31996, 4411, 11), -- Average M. Atk.
-(31996, 4412, 11), -- Average P. Def.
-(31996, 4413, 11), -- Average M. Def.
-(31996, 4414, 2), -- Standard Type
-(31996, 4415, 3), -- One-handed Sword
-(31996, 4416, 14), -- Humans
+(31996, 4408, 1), -- HP Modifiers
+(31996, 4409, 1), -- MP Modifiers
+(31996, 4410, 11), -- P. Atk. Modifiers
+(31996, 4411, 11), -- M. Atk. Modifiers
+(31996, 4412, 11), -- P. Def. Modifiers
+(31996, 4413, 11); -- M. Def. Modifiers
+
+INSERT INTO `npcskills` VALUES
+(31996, 4414, 2), -- Armor Type
+(31996, 4415, 3), -- Weapon Type
+(31996, 4416, 14), -- Races
 -- Priest of Dawn
 (31997, 4045, 1), -- Resist Full Magic Attack
-(31997, 4408, 1), -- HP Increase (1x)
-(31997, 4409, 1), -- MP Increase (1x)
-(31997, 4410, 11), -- Average P. Atk.
-(31997, 4411, 11), -- Average M. Atk.
-(31997, 4412, 11), -- Average P. Def.
-(31997, 4413, 11), -- Average M. Def.
-(31997, 4414, 2), -- Standard Type
-(31997, 4415, 1), -- Bare Hands
-(31997, 4416, 14), -- Humans
+(31997, 4408, 1), -- HP Modifiers
+(31997, 4409, 1), -- MP Modifiers
+(31997, 4410, 11), -- P. Atk. Modifiers
+(31997, 4411, 11), -- M. Atk. Modifiers
+(31997, 4412, 11), -- P. Def. Modifiers
+(31997, 4413, 11), -- M. Def. Modifiers
+(31997, 4414, 2), -- Armor Type
+(31997, 4415, 1), -- Weapon Type
+(31997, 4416, 14), -- Races
 -- Dusk Priestess
 (31998, 4045, 1), -- Resist Full Magic Attack
-(31998, 4408, 1), -- HP Increase (1x)
-(31998, 4409, 1), -- MP Increase (1x)
-(31998, 4410, 11), -- Average P. Atk.
-(31998, 4411, 11), -- Average M. Atk.
-(31998, 4412, 11), -- Average P. Def.
-(31998, 4413, 11), -- Average M. Def.
-(31998, 4414, 2), -- Standard Type
-(31998, 4415, 1), -- Bare Hands
-(31998, 4416, 16), -- Dark Elves
+(31998, 4408, 1), -- HP Modifiers
+(31998, 4409, 1), -- MP Modifiers
+(31998, 4410, 11), -- P. Atk. Modifiers
+(31998, 4411, 11), -- M. Atk. Modifiers
+(31998, 4412, 11), -- P. Def. Modifiers
+(31998, 4413, 11), -- M. Def. Modifiers
+(31998, 4414, 2), -- Armor Type
+(31998, 4415, 1), -- Weapon Type
+(31998, 4416, 16), -- Races
 -- Preacher of Doom
 (31999, 4045, 1), -- Resist Full Magic Attack
-(31999, 4408, 1), -- HP Increase (1x)
-(31999, 4409, 1), -- MP Increase (1x)
-(31999, 4410, 11), -- Average P. Atk.
-(31999, 4411, 11), -- Average M. Atk.
-(31999, 4412, 11), -- Average P. Def.
-(31999, 4413, 11), -- Average M. Def.
-(31999, 4414, 2), -- Standard Type
-(31999, 4415, 1), -- Bare Hands
-(31999, 4416, 1), -- Undead
+(31999, 4408, 1), -- HP Modifiers
+(31999, 4409, 1), -- MP Modifiers
+(31999, 4410, 11), -- P. Atk. Modifiers
+(31999, 4411, 11), -- M. Atk. Modifiers
+(31999, 4412, 11), -- P. Def. Modifiers
+(31999, 4413, 11), -- M. Def. Modifiers
+(31999, 4414, 2), -- Armor Type
+(31999, 4415, 1), -- Weapon Type
+(31999, 4416, 1), -- Races
 -- Preacher of Doom
 (32000, 4045, 1), -- Resist Full Magic Attack
-(32000, 4408, 1), -- HP Increase (1x)
-(32000, 4409, 1), -- MP Increase (1x)
-(32000, 4410, 11), -- Average P. Atk.
-(32000, 4411, 11), -- Average M. Atk.
-(32000, 4412, 11), -- Average P. Def.
-(32000, 4413, 11), -- Average M. Def.
-(32000, 4414, 2), -- Standard Type
-(32000, 4415, 1), -- Bare Hands
-(32000, 4416, 1), -- Undead
+(32000, 4408, 1), -- HP Modifiers
+(32000, 4409, 1), -- MP Modifiers
+(32000, 4410, 11), -- P. Atk. Modifiers
+(32000, 4411, 11), -- M. Atk. Modifiers
+(32000, 4412, 11), -- P. Def. Modifiers
+(32000, 4413, 11), -- M. Def. Modifiers
+(32000, 4414, 2), -- Armor Type
+(32000, 4415, 1), -- Weapon Type
+(32000, 4416, 1), -- Races
 -- Preacher of Doom
 (32001, 4045, 1), -- Resist Full Magic Attack
-(32001, 4408, 1), -- HP Increase (1x)
-(32001, 4409, 1), -- MP Increase (1x)
-(32001, 4410, 11), -- Average P. Atk.
-(32001, 4411, 11), -- Average M. Atk.
-(32001, 4412, 11), -- Average P. Def.
-(32001, 4413, 11), -- Average M. Def.
-(32001, 4414, 2), -- Standard Type
-(32001, 4415, 1), -- Bare Hands
-(32001, 4416, 1), -- Undead
+(32001, 4408, 1), -- HP Modifiers
+(32001, 4409, 1), -- MP Modifiers
+(32001, 4410, 11), -- P. Atk. Modifiers
+(32001, 4411, 11), -- M. Atk. Modifiers
+(32001, 4412, 11), -- P. Def. Modifiers
+(32001, 4413, 11), -- M. Def. Modifiers
+(32001, 4414, 2), -- Armor Type
+(32001, 4415, 1), -- Weapon Type
+(32001, 4416, 1), -- Races
 -- Preacher of Doom
 (32002, 4045, 1), -- Resist Full Magic Attack
-(32002, 4408, 1), -- HP Increase (1x)
-(32002, 4409, 1), -- MP Increase (1x)
-(32002, 4410, 11), -- Average P. Atk.
-(32002, 4411, 11), -- Average M. Atk.
-(32002, 4412, 11), -- Average P. Def.
-(32002, 4413, 11), -- Average M. Def.
-(32002, 4414, 2), -- Standard Type
-(32002, 4415, 1), -- Bare Hands
-(32002, 4416, 1), -- Undead
+(32002, 4408, 1), -- HP Modifiers
+(32002, 4409, 1), -- MP Modifiers
+(32002, 4410, 11), -- P. Atk. Modifiers
+(32002, 4411, 11), -- M. Atk. Modifiers
+(32002, 4412, 11), -- P. Def. Modifiers
+(32002, 4413, 11), -- M. Def. Modifiers
+(32002, 4414, 2), -- Armor Type
+(32002, 4415, 1), -- Weapon Type
+(32002, 4416, 1), -- Races
 -- Orator of Revelations
 (32003, 4045, 1), -- Resist Full Magic Attack
-(32003, 4390, 1), -- Mystic Immunity
-(32003, 4408, 1), -- HP Increase (1x)
-(32003, 4409, 1), -- MP Increase (1x)
-(32003, 4410, 11), -- Average P. Atk.
-(32003, 4411, 11), -- Average M. Atk.
-(32003, 4412, 11), -- Average P. Def.
-(32003, 4413, 11), -- Average M. Def.
-(32003, 4414, 2), -- Standard Type
-(32003, 4415, 1), -- Bare Hands
-(32003, 4416, 2), -- Magic Creatures
+(32003, 4390, 1), -- NPC Abnormal Immunity
+(32003, 4408, 1), -- HP Modifiers
+(32003, 4409, 1), -- MP Modifiers
+(32003, 4410, 11), -- P. Atk. Modifiers
+(32003, 4411, 11), -- M. Atk. Modifiers
+(32003, 4412, 11), -- P. Def. Modifiers
+(32003, 4413, 11), -- M. Def. Modifiers
+(32003, 4414, 2), -- Armor Type
+(32003, 4415, 1), -- Weapon Type
+(32003, 4416, 2), -- Races
 -- Orator of Revelations
 (32004, 4045, 1), -- Resist Full Magic Attack
-(32004, 4390, 1), -- Mystic Immunity
-(32004, 4408, 1), -- HP Increase (1x)
-(32004, 4409, 1), -- MP Increase (1x)
-(32004, 4410, 11), -- Average P. Atk.
-(32004, 4411, 11), -- Average M. Atk.
-(32004, 4412, 11), -- Average P. Def.
-(32004, 4413, 11), -- Average M. Def.
-(32004, 4414, 2), -- Standard Type
-(32004, 4415, 1), -- Bare Hands
-(32004, 4416, 2), -- Magic Creatures
+(32004, 4390, 1), -- NPC Abnormal Immunity
+(32004, 4408, 1), -- HP Modifiers
+(32004, 4409, 1), -- MP Modifiers
+(32004, 4410, 11), -- P. Atk. Modifiers
+(32004, 4411, 11), -- M. Atk. Modifiers
+(32004, 4412, 11), -- P. Def. Modifiers
+(32004, 4413, 11), -- M. Def. Modifiers
+(32004, 4414, 2), -- Armor Type
+(32004, 4415, 1), -- Weapon Type
+(32004, 4416, 2), -- Races
 -- Orator of Revelations
 (32005, 4045, 1), -- Resist Full Magic Attack
-(32005, 4390, 1), -- Mystic Immunity
-(32005, 4408, 1), -- HP Increase (1x)
-(32005, 4409, 1), -- MP Increase (1x)
-(32005, 4410, 11), -- Average P. Atk.
-(32005, 4411, 11), -- Average M. Atk.
-(32005, 4412, 11), -- Average P. Def.
-(32005, 4413, 11), -- Average M. Def.
-(32005, 4414, 2), -- Standard Type
-(32005, 4415, 1), -- Bare Hands
-(32005, 4416, 2), -- Magic Creatures
+(32005, 4390, 1), -- NPC Abnormal Immunity
+(32005, 4408, 1), -- HP Modifiers
+(32005, 4409, 1), -- MP Modifiers
+(32005, 4410, 11), -- P. Atk. Modifiers
+(32005, 4411, 11), -- M. Atk. Modifiers
+(32005, 4412, 11), -- P. Def. Modifiers
+(32005, 4413, 11), -- M. Def. Modifiers
+(32005, 4414, 2), -- Armor Type
+(32005, 4415, 1), -- Weapon Type
+(32005, 4416, 2), -- Races
 -- Orator of Revelations
 (32006, 4045, 1), -- Resist Full Magic Attack
-(32006, 4390, 1), -- Mystic Immunity
-(32006, 4408, 1), -- HP Increase (1x)
-(32006, 4409, 1), -- MP Increase (1x)
-(32006, 4410, 11), -- Average P. Atk.
-(32006, 4411, 11), -- Average M. Atk.
-(32006, 4412, 11), -- Average P. Def.
-(32006, 4413, 11), -- Average M. Def.
-(32006, 4414, 2), -- Standard Type
-(32006, 4415, 1), -- Bare Hands
-(32006, 4416, 2), -- Magic Creatures
+(32006, 4390, 1), -- NPC Abnormal Immunity
+(32006, 4408, 1), -- HP Modifiers
+(32006, 4409, 1), -- MP Modifiers
+(32006, 4410, 11), -- P. Atk. Modifiers
+(32006, 4411, 11), -- M. Atk. Modifiers
+(32006, 4412, 11), -- P. Def. Modifiers
+(32006, 4413, 11), -- M. Def. Modifiers
+(32006, 4414, 2), -- Armor Type
+(32006, 4415, 1), -- Weapon Type
+(32006, 4416, 2), -- Races
 -- Galba
 (32007, 4045, 1), -- Resist Full Magic Attack
-(32007, 4408, 1), -- HP Increase (1x)
-(32007, 4409, 1), -- MP Increase (1x)
-(32007, 4410, 11), -- Average P. Atk.
-(32007, 4411, 11), -- Average M. Atk.
-(32007, 4412, 11), -- Average P. Def.
-(32007, 4413, 11), -- Average M. Def.
-(32007, 4414, 2), -- Standard Type
-(32007, 4415, 1), -- Bare Hands
-(32007, 4416, 14), -- Humans
+(32007, 4408, 1), -- HP Modifiers
+(32007, 4409, 1), -- MP Modifiers
+(32007, 4410, 11), -- P. Atk. Modifiers
+(32007, 4411, 11), -- M. Atk. Modifiers
+(32007, 4412, 11), -- P. Def. Modifiers
+(32007, 4413, 11), -- M. Def. Modifiers
+(32007, 4414, 2), -- Armor Type
+(32007, 4415, 1), -- Weapon Type
+(32007, 4416, 14), -- Races
 -- Greymore
 (32008, 4045, 1), -- Resist Full Magic Attack
-(32008, 4408, 1), -- HP Increase (1x)
-(32008, 4409, 1), -- MP Increase (1x)
-(32008, 4410, 11), -- Average P. Atk.
-(32008, 4411, 11), -- Average M. Atk.
-(32008, 4412, 11), -- Average P. Def.
-(32008, 4413, 11), -- Average M. Def.
-(32008, 4414, 2), -- Standard Type
-(32008, 4415, 1), -- Bare Hands
-(32008, 4416, 14), -- Humans
+(32008, 4408, 1), -- HP Modifiers
+(32008, 4409, 1), -- MP Modifiers
+(32008, 4410, 11), -- P. Atk. Modifiers
+(32008, 4411, 11), -- M. Atk. Modifiers
+(32008, 4412, 11), -- P. Def. Modifiers
+(32008, 4413, 11), -- M. Def. Modifiers
+(32008, 4414, 2), -- Armor Type
+(32008, 4415, 1), -- Weapon Type
+(32008, 4416, 14), -- Races
 -- Devorin
 (32009, 4045, 1), -- Resist Full Magic Attack
-(32009, 4408, 1), -- HP Increase (1x)
-(32009, 4409, 1), -- MP Increase (1x)
-(32009, 4410, 11), -- Average P. Atk.
-(32009, 4411, 11), -- Average M. Atk.
-(32009, 4412, 11), -- Average P. Def.
-(32009, 4413, 11), -- Average M. Def.
-(32009, 4414, 2), -- Standard Type
-(32009, 4415, 1), -- Bare Hands
-(32009, 4416, 18), -- Dwarves
+(32009, 4408, 1), -- HP Modifiers
+(32009, 4409, 1), -- MP Modifiers
+(32009, 4410, 11), -- P. Atk. Modifiers
+(32009, 4411, 11), -- M. Atk. Modifiers
+(32009, 4412, 11), -- P. Def. Modifiers
+(32009, 4413, 11), -- M. Def. Modifiers
+(32009, 4414, 2), -- Armor Type
+(32009, 4415, 1), -- Weapon Type
+(32009, 4416, 18), -- Races
 -- Flauron
 (32010, 4045, 1), -- Resist Full Magic Attack
-(32010, 4408, 1), -- HP Increase (1x)
-(32010, 4409, 1), -- MP Increase (1x)
-(32010, 4410, 11), -- Average P. Atk.
-(32010, 4411, 11), -- Average M. Atk.
-(32010, 4412, 11), -- Average P. Def.
-(32010, 4413, 11), -- Average M. Def.
-(32010, 4414, 2), -- Standard Type
-(32010, 4415, 1), -- Bare Hands
-(32010, 4416, 14), -- Humans
+(32010, 4408, 1), -- HP Modifiers
+(32010, 4409, 1), -- MP Modifiers
+(32010, 4410, 11), -- P. Atk. Modifiers
+(32010, 4411, 11), -- M. Atk. Modifiers
+(32010, 4412, 11), -- P. Def. Modifiers
+(32010, 4413, 11), -- M. Def. Modifiers
+(32010, 4414, 2), -- Armor Type
+(32010, 4415, 1), -- Weapon Type
+(32010, 4416, 14), -- Races
 -- Imperial Tomb Guide
 (32011, 4045, 1), -- Resist Full Magic Attack
-(32011, 4408, 1), -- HP Increase (1x)
-(32011, 4409, 1), -- MP Increase (1x)
-(32011, 4410, 11), -- Average P. Atk.
-(32011, 4411, 11), -- Average M. Atk.
-(32011, 4412, 11), -- Average P. Def.
-(32011, 4413, 11), -- Average M. Def.
-(32011, 4414, 2), -- Standard Type
-(32011, 4415, 1), -- Bare Hands
-(32011, 4416, 14), -- Humans
+(32011, 4408, 1), -- HP Modifiers
+(32011, 4409, 1), -- MP Modifiers
+(32011, 4410, 11), -- P. Atk. Modifiers
+(32011, 4411, 11), -- M. Atk. Modifiers
+(32011, 4412, 11), -- P. Def. Modifiers
+(32011, 4413, 11), -- M. Def. Modifiers
+(32011, 4414, 2), -- Armor Type
+(32011, 4415, 1), -- Weapon Type
+(32011, 4416, 14), -- Races
 -- Tantan
 (32012, 4045, 1), -- Resist Full Magic Attack
-(32012, 4408, 1), -- HP Increase (1x)
-(32012, 4409, 1), -- MP Increase (1x)
-(32012, 4410, 11), -- Average P. Atk.
-(32012, 4411, 11), -- Average M. Atk.
-(32012, 4412, 11), -- Average P. Def.
-(32012, 4413, 11), -- Average M. Def.
-(32012, 4414, 2), -- Standard Type
-(32012, 4415, 1), -- Bare Hands
-(32012, 4416, 14), -- Humans
+(32012, 4408, 1), -- HP Modifiers
+(32012, 4409, 1), -- MP Modifiers
+(32012, 4410, 11), -- P. Atk. Modifiers
+(32012, 4411, 11), -- M. Atk. Modifiers
+(32012, 4412, 11), -- P. Def. Modifiers
+(32012, 4413, 11), -- M. Def. Modifiers
+(32012, 4414, 2), -- Armor Type
+(32012, 4415, 1), -- Weapon Type
+(32012, 4416, 14), -- Races
 -- Suki
 (32013, 4045, 1), -- Resist Full Magic Attack
-(32013, 4408, 1), -- HP Increase (1x)
-(32013, 4409, 1), -- MP Increase (1x)
-(32013, 4410, 11), -- Average P. Atk.
-(32013, 4411, 11), -- Average M. Atk.
-(32013, 4412, 11), -- Average P. Def.
-(32013, 4413, 11), -- Average M. Def.
-(32013, 4414, 2), -- Standard Type
-(32013, 4415, 1), -- Bare Hands
-(32013, 4416, 14), -- Humans
+(32013, 4408, 1), -- HP Modifiers
+(32013, 4409, 1), -- MP Modifiers
+(32013, 4410, 11), -- P. Atk. Modifiers
+(32013, 4411, 11), -- M. Atk. Modifiers
+(32013, 4412, 11), -- P. Def. Modifiers
+(32013, 4413, 11), -- M. Def. Modifiers
+(32013, 4414, 2), -- Armor Type
+(32013, 4415, 1), -- Weapon Type
+(32013, 4416, 14), -- Races
 -- Ivan 
 (32014, 4045, 1), -- Resist Full Magic Attack
-(32014, 4408, 1), -- HP Increase (1x)
-(32014, 4409, 1), -- MP Increase (1x)
-(32014, 4410, 11), -- Average P. Atk.
-(32014, 4411, 11), -- Average M. Atk.
-(32014, 4412, 11), -- Average P. Def.
-(32014, 4413, 11), -- Average M. Def.
-(32014, 4414, 2), -- Standard Type
-(32014, 4415, 1), -- Bare Hands
-(32014, 4416, 14), -- Humans
+(32014, 4408, 1), -- HP Modifiers
+(32014, 4409, 1), -- MP Modifiers
+(32014, 4410, 11), -- P. Atk. Modifiers
+(32014, 4411, 11), -- M. Atk. Modifiers
+(32014, 4412, 11), -- P. Def. Modifiers
+(32014, 4413, 11), -- M. Def. Modifiers
+(32014, 4414, 2), -- Armor Type
+(32014, 4415, 1), -- Weapon Type
+(32014, 4416, 14), -- Races
 -- Scout's Corpse
 (32015, 4045, 1), -- Resist Full Magic Attack
-(32015, 4408, 1), -- HP Increase (1x)
-(32015, 4409, 1), -- MP Increase (1x)
-(32015, 4410, 11), -- Average P. Atk.
-(32015, 4411, 11), -- Average M. Atk.
-(32015, 4412, 11), -- Average P. Def.
-(32015, 4413, 11), -- Average M. Def.
-(32015, 4414, 2), -- Standard Type
-(32015, 4415, 1), -- Bare Hands
-(32015, 4416, 18), -- Dwarves
+(32015, 4408, 1), -- HP Modifiers
+(32015, 4409, 1), -- MP Modifiers
+(32015, 4410, 11), -- P. Atk. Modifiers
+(32015, 4411, 11), -- M. Atk. Modifiers
+(32015, 4412, 11), -- P. Def. Modifiers
+(32015, 4413, 11), -- M. Def. Modifiers
+(32015, 4414, 2), -- Armor Type
+(32015, 4415, 1), -- Weapon Type
+(32015, 4416, 18), -- Races
 -- Torrant
 (32016, 4045, 1), -- Resist Full Magic Attack
-(32016, 4408, 1), -- HP Increase (1x)
-(32016, 4409, 1), -- MP Increase (1x)
-(32016, 4410, 11), -- Average P. Atk.
-(32016, 4411, 11), -- Average M. Atk.
-(32016, 4412, 11), -- Average P. Def.
-(32016, 4413, 11), -- Average M. Def.
-(32016, 4414, 2), -- Standard Type
-(32016, 4415, 1), -- Bare Hands
-(32016, 4416, 17), -- Orcs
+(32016, 4408, 1), -- HP Modifiers
+(32016, 4409, 1), -- MP Modifiers
+(32016, 4410, 11), -- P. Atk. Modifiers
+(32016, 4411, 11), -- M. Atk. Modifiers
+(32016, 4412, 11), -- P. Def. Modifiers
+(32016, 4413, 11), -- M. Def. Modifiers
+(32016, 4414, 2), -- Armor Type
+(32016, 4415, 1), -- Weapon Type
+(32016, 4416, 17), -- Races
 -- Karuda
 (32017, 4045, 1), -- Resist Full Magic Attack
-(32017, 4408, 1), -- HP Increase (1x)
-(32017, 4409, 1), -- MP Increase (1x)
-(32017, 4410, 11), -- Average P. Atk.
-(32017, 4411, 11), -- Average M. Atk.
-(32017, 4412, 11), -- Average P. Def.
-(32017, 4413, 11), -- Average M. Def.
-(32017, 4414, 2), -- Standard Type
-(32017, 4415, 1), -- Bare Hands
-(32017, 4416, 17), -- Orcs
+(32017, 4408, 1), -- HP Modifiers
+(32017, 4409, 1), -- MP Modifiers
+(32017, 4410, 11), -- P. Atk. Modifiers
+(32017, 4411, 11), -- M. Atk. Modifiers
+(32017, 4412, 11), -- P. Def. Modifiers
+(32017, 4413, 11), -- M. Def. Modifiers
+(32017, 4414, 2), -- Armor Type
+(32017, 4415, 1), -- Weapon Type
+(32017, 4416, 17), -- Races
 -- Misa
 (32018, 4045, 1), -- Resist Full Magic Attack
-(32018, 4408, 1), -- HP Increase (1x)
-(32018, 4409, 1), -- MP Increase (1x)
-(32018, 4410, 11), -- Average P. Atk.
-(32018, 4411, 11), -- Average M. Atk.
-(32018, 4412, 11), -- Average P. Def.
-(32018, 4413, 11), -- Average M. Def.
-(32018, 4414, 2), -- Standard Type
-(32018, 4415, 1), -- Bare Hands
-(32018, 4416, 14), -- Humans
+(32018, 4408, 1), -- HP Modifiers
+(32018, 4409, 1), -- MP Modifiers
+(32018, 4410, 11), -- P. Atk. Modifiers
+(32018, 4411, 11), -- M. Atk. Modifiers
+(32018, 4412, 11), -- P. Def. Modifiers
+(32018, 4413, 11), -- M. Def. Modifiers
+(32018, 4414, 2), -- Armor Type
+(32018, 4415, 1), -- Weapon Type
+(32018, 4416, 14), -- Races
 -- Suspicious Man
 (32019, 4045, 1), -- Resist Full Magic Attack
-(32019, 4408, 1), -- HP Increase (1x)
-(32019, 4409, 1), -- MP Increase (1x)
-(32019, 4410, 11), -- Average P. Atk.
-(32019, 4411, 11), -- Average M. Atk.
-(32019, 4412, 11), -- Average P. Def.
-(32019, 4413, 11), -- Average M. Def.
-(32019, 4414, 2), -- Standard Type
-(32019, 4415, 1), -- Bare Hands
-(32019, 4416, 14), -- Humans
+(32019, 4408, 1), -- HP Modifiers
+(32019, 4409, 1), -- MP Modifiers
+(32019, 4410, 11), -- P. Atk. Modifiers
+(32019, 4411, 11), -- M. Atk. Modifiers
+(32019, 4412, 11), -- P. Def. Modifiers
+(32019, 4413, 11), -- M. Def. Modifiers
+(32019, 4414, 2), -- Armor Type
+(32019, 4415, 1), -- Weapon Type
+(32019, 4416, 14), -- Races
 -- Rafforty
 (32020, 4045, 1), -- Resist Full Magic Attack
-(32020, 4408, 1), -- HP Increase (1x)
-(32020, 4409, 1), -- MP Increase (1x)
-(32020, 4410, 11), -- Average P. Atk.
-(32020, 4411, 11), -- Average M. Atk.
-(32020, 4412, 11), -- Average P. Def.
-(32020, 4413, 11), -- Average M. Def.
-(32020, 4414, 2), -- Standard Type
-(32020, 4415, 1), -- Bare Hands
-(32020, 4416, 14), -- Humans
+(32020, 4408, 1), -- HP Modifiers
+(32020, 4409, 1), -- MP Modifiers
+(32020, 4410, 11), -- P. Atk. Modifiers
+(32020, 4411, 11), -- M. Atk. Modifiers
+(32020, 4412, 11), -- P. Def. Modifiers
+(32020, 4413, 11), -- M. Def. Modifiers
+(32020, 4414, 2), -- Armor Type
+(32020, 4415, 1), -- Weapon Type
+(32020, 4416, 14), -- Races
 -- Ice Sculpture
 (32021, 4045, 1), -- Resist Full Magic Attack
-(32021, 4390, 1), -- Mystic Immunity
-(32021, 4408, 1), -- HP Increase (1x)
-(32021, 4409, 1), -- MP Increase (1x)
-(32021, 4410, 11), -- Average P. Atk.
-(32021, 4411, 11), -- Average M. Atk.
-(32021, 4412, 11), -- Average P. Def.
-(32021, 4413, 11), -- Average M. Def.
-(32021, 4414, 2), -- Standard Type
-(32021, 4415, 1), -- Bare Hands
-(32021, 4416, 19), -- Others
+(32021, 4390, 1), -- NPC Abnormal Immunity
+(32021, 4408, 1), -- HP Modifiers
+(32021, 4409, 1), -- MP Modifiers
+(32021, 4410, 11), -- P. Atk. Modifiers
+(32021, 4411, 11), -- M. Atk. Modifiers
+(32021, 4412, 11), -- P. Def. Modifiers
+(32021, 4413, 11), -- M. Def. Modifiers
+(32021, 4414, 2), -- Armor Type
+(32021, 4415, 1), -- Weapon Type
+(32021, 4416, 19), -- Races
 -- Kier
 (32022, 4045, 1), -- Resist Full Magic Attack
-(32022, 4390, 1), -- Mystic Immunity
-(32022, 4408, 1), -- HP Increase (1x)
-(32022, 4409, 1), -- MP Increase (1x)
-(32022, 4410, 11), -- Average P. Atk.
-(32022, 4411, 11), -- Average M. Atk.
-(32022, 4412, 11), -- Average P. Def.
-(32022, 4413, 11), -- Average M. Def.
-(32022, 4414, 2), -- Standard Type
-(32022, 4415, 1), -- Bare Hands
-(32022, 4416, 19), -- Others
+(32022, 4390, 1), -- NPC Abnormal Immunity
+(32022, 4408, 1), -- HP Modifiers
+(32022, 4409, 1), -- MP Modifiers
+(32022, 4410, 11), -- P. Atk. Modifiers
+(32022, 4411, 11), -- M. Atk. Modifiers
+(32022, 4412, 11), -- P. Def. Modifiers
+(32022, 4413, 11), -- M. Def. Modifiers
+(32022, 4414, 2), -- Armor Type
+(32022, 4415, 1), -- Weapon Type
+(32022, 4416, 19), -- Races
 -- Ice Shelf
 (32023, 4045, 1), -- Resist Full Magic Attack
-(32023, 4390, 1), -- Mystic Immunity
-(32023, 4408, 1), -- HP Increase (1x)
-(32023, 4409, 1), -- MP Increase (1x)
-(32023, 4410, 11), -- Average P. Atk.
-(32023, 4411, 11), -- Average M. Atk.
-(32023, 4412, 11), -- Average P. Def.
-(32023, 4413, 11), -- Average M. Def.
-(32023, 4414, 2), -- Standard Type
-(32023, 4415, 1), -- Bare Hands
-(32023, 4416, 19), -- Others
+(32023, 4390, 1), -- NPC Abnormal Immunity
+(32023, 4408, 1), -- HP Modifiers
+(32023, 4409, 1), -- MP Modifiers
+(32023, 4410, 11), -- P. Atk. Modifiers
+(32023, 4411, 11), -- M. Atk. Modifiers
+(32023, 4412, 11), -- P. Def. Modifiers
+(32023, 4413, 11), -- M. Def. Modifiers
+(32023, 4414, 2), -- Armor Type
+(32023, 4415, 1), -- Weapon Type
+(32023, 4416, 19), -- Races
 -- Mulia
 (32024, 4045, 1), -- Resist Full Magic Attack
-(32024, 4408, 1), -- HP Increase (1x)
-(32024, 4409, 1), -- MP Increase (1x)
-(32024, 4410, 11), -- Average P. Atk.
-(32024, 4411, 11), -- Average M. Atk.
-(32024, 4412, 11), -- Average P. Def.
-(32024, 4413, 11), -- Average M. Def.
-(32024, 4414, 2), -- Standard Type
-(32024, 4415, 1), -- Bare Hands
-(32024, 4416, 18), -- Dwarves
+(32024, 4408, 1), -- HP Modifiers
+(32024, 4409, 1), -- MP Modifiers
+(32024, 4410, 11), -- P. Atk. Modifiers
+(32024, 4411, 11), -- M. Atk. Modifiers
+(32024, 4412, 11), -- P. Def. Modifiers
+(32024, 4413, 11), -- M. Def. Modifiers
+(32024, 4414, 2), -- Armor Type
+(32024, 4415, 1), -- Weapon Type
+(32024, 4416, 18), -- Races
 -- Ilia
 (32025, 4045, 1), -- Resist Full Magic Attack
-(32025, 4408, 1), -- HP Increase (1x)
-(32025, 4409, 1), -- MP Increase (1x)
-(32025, 4410, 11), -- Average P. Atk.
-(32025, 4411, 11), -- Average M. Atk.
-(32025, 4412, 11), -- Average P. Def.
-(32025, 4413, 11), -- Average M. Def.
-(32025, 4414, 2), -- Standard Type
-(32025, 4415, 1), -- Bare Hands
-(32025, 4416, 18), -- Dwarves
+(32025, 4408, 1), -- HP Modifiers
+(32025, 4409, 1), -- MP Modifiers
+(32025, 4410, 11), -- P. Atk. Modifiers
+(32025, 4411, 11), -- M. Atk. Modifiers
+(32025, 4412, 11), -- P. Def. Modifiers
+(32025, 4413, 11), -- M. Def. Modifiers
+(32025, 4414, 2), -- Armor Type
+(32025, 4415, 1), -- Weapon Type
+(32025, 4416, 18), -- Races
 -- Hestui Guard
 (32026, 4045, 1), -- Resist Full Magic Attack
-(32026, 4408, 1), -- HP Increase (1x)
-(32026, 4409, 1), -- MP Increase (1x)
-(32026, 4410, 11), -- Average P. Atk.
-(32026, 4411, 11), -- Average M. Atk.
-(32026, 4412, 11), -- Average P. Def.
-(32026, 4413, 11), -- Average M. Def.
-(32026, 4414, 2), -- Standard Type
-(32026, 4415, 1), -- Bare Hands
-(32026, 4416, 17), -- Orcs
+(32026, 4408, 1), -- HP Modifiers
+(32026, 4409, 1), -- MP Modifiers
+(32026, 4410, 11), -- P. Atk. Modifiers
+(32026, 4411, 11), -- M. Atk. Modifiers
+(32026, 4412, 11), -- P. Def. Modifiers
+(32026, 4413, 11), -- M. Def. Modifiers
+(32026, 4414, 2), -- Armor Type
+(32026, 4415, 1), -- Weapon Type
+(32026, 4416, 17), -- Races
 -- Divine Furnace
 (32027, 4045, 1), -- Resist Full Magic Attack
-(32027, 4390, 1), -- Mystic Immunity
-(32027, 4408, 18), -- HP Increase (10x)
-(32027, 4409, 1), -- MP Increase (1x)
-(32027, 4410, 11), -- Average P. Atk.
-(32027, 4411, 11), -- Average M. Atk.
-(32027, 4412, 11), -- Average P. Def.
-(32027, 4413, 11), -- Average M. Def.
-(32027, 4414, 2), -- Standard Type
-(32027, 4415, 1), -- Bare Hands
-(32027, 4416, 19), -- Others
+(32027, 4390, 1), -- NPC Abnormal Immunity
+(32027, 4408, 18), -- HP Modifiers
+(32027, 4409, 1), -- MP Modifiers
+(32027, 4410, 11), -- P. Atk. Modifiers
+(32027, 4411, 11), -- M. Atk. Modifiers
+(32027, 4412, 11), -- P. Def. Modifiers
+(32027, 4413, 11), -- M. Def. Modifiers
+(32027, 4414, 2), -- Armor Type
+(32027, 4415, 1), -- Weapon Type
+(32027, 4416, 19), -- Races
 -- Holy Grail
 (32028, 4045, 1), -- Resist Full Magic Attack
-(32028, 4390, 1), -- Mystic Immunity
-(32028, 4408, 1), -- HP Increase (1x)
-(32028, 4409, 1), -- MP Increase (1x)
-(32028, 4410, 11), -- Average P. Atk.
-(32028, 4411, 11), -- Average M. Atk.
-(32028, 4412, 11), -- Average P. Def.
-(32028, 4413, 11), -- Average M. Def.
-(32028, 4414, 2), -- Standard Type
-(32028, 4415, 1), -- Bare Hands
-(32028, 4416, 19), -- Others
+(32028, 4390, 1), -- NPC Abnormal Immunity
+(32028, 4408, 1), -- HP Modifiers
+(32028, 4409, 1), -- MP Modifiers
+(32028, 4410, 11), -- P. Atk. Modifiers
+(32028, 4411, 11), -- M. Atk. Modifiers
+(32028, 4412, 11), -- P. Def. Modifiers
+(32028, 4413, 11), -- M. Def. Modifiers
+(32028, 4414, 2), -- Armor Type
+(32028, 4415, 1), -- Weapon Type
+(32028, 4416, 19), -- Races
 -- Freya's Steward
 (32029, 4045, 1), -- Resist Full Magic Attack
-(32029, 4408, 1), -- HP Increase (1x)
-(32029, 4409, 1), -- MP Increase (1x)
-(32029, 4410, 11), -- Average P. Atk.
-(32029, 4411, 11), -- Average M. Atk.
-(32029, 4412, 11), -- Average P. Def.
-(32029, 4413, 11), -- Average M. Def.
-(32029, 4414, 2), -- Standard Type
-(32029, 4415, 1), -- Bare Hands
-(32029, 4416, 15), -- Elves
+(32029, 4408, 1), -- HP Modifiers
+(32029, 4409, 1), -- MP Modifiers
+(32029, 4410, 11), -- P. Atk. Modifiers
+(32029, 4411, 11), -- M. Atk. Modifiers
+(32029, 4412, 11), -- P. Def. Modifiers
+(32029, 4413, 11), -- M. Def. Modifiers
+(32029, 4414, 2), -- Armor Type
+(32029, 4415, 1), -- Weapon Type
+(32029, 4416, 15), -- Races
 -- Garden Sculpture
 (32030, 4045, 1), -- Resist Full Magic Attack
-(32030, 4390, 1), -- Mystic Immunity
-(32030, 4408, 1), -- HP Increase (1x)
-(32030, 4409, 1), -- MP Increase (1x)
-(32030, 4410, 11), -- Average P. Atk.
-(32030, 4411, 11), -- Average M. Atk.
-(32030, 4412, 11), -- Average P. Def.
-(32030, 4413, 11), -- Average M. Def.
-(32030, 4414, 2), -- Standard Type
-(32030, 4415, 1), -- Bare Hands
-(32030, 4416, 19), -- Others
+(32030, 4390, 1), -- NPC Abnormal Immunity
+(32030, 4408, 1), -- HP Modifiers
+(32030, 4409, 1), -- MP Modifiers
+(32030, 4410, 11), -- P. Atk. Modifiers
+(32030, 4411, 11), -- M. Atk. Modifiers
+(32030, 4412, 11), -- P. Def. Modifiers
+(32030, 4413, 11), -- M. Def. Modifiers
+(32030, 4414, 2), -- Armor Type
+(32030, 4415, 1), -- Weapon Type
+(32030, 4416, 19), -- Races
 -- Ice Fairy Sculpture
 (32031, 4045, 1), -- Resist Full Magic Attack
-(32031, 4390, 1), -- Mystic Immunity
-(32031, 4408, 1), -- HP Increase (1x)
-(32031, 4409, 1), -- MP Increase (1x)
-(32031, 4410, 11), -- Average P. Atk.
-(32031, 4411, 11), -- Average M. Atk.
-(32031, 4412, 11), -- Average P. Def.
-(32031, 4413, 11), -- Average M. Def.
-(32031, 4414, 2), -- Standard Type
-(32031, 4415, 1); -- Bare Hands
-
-INSERT INTO `npcskills` VALUES
-(32031, 4416, 19), -- Others
+(32031, 4390, 1), -- NPC Abnormal Immunity
+(32031, 4408, 1), -- HP Modifiers
+(32031, 4409, 1), -- MP Modifiers
+(32031, 4410, 11), -- P. Atk. Modifiers
+(32031, 4411, 11), -- M. Atk. Modifiers
+(32031, 4412, 11), -- P. Def. Modifiers
+(32031, 4413, 11), -- M. Def. Modifiers
+(32031, 4414, 2), -- Armor Type
+(32031, 4415, 1), -- Weapon Type
+(32031, 4416, 19), -- Races
 -- Strange Machine
 (32032, 4045, 1), -- Resist Full Magic Attack
-(32032, 4390, 1), -- Mystic Immunity
-(32032, 4408, 1), -- HP Increase (1x)
-(32032, 4409, 1), -- MP Increase (1x)
-(32032, 4410, 11), -- Average P. Atk.
-(32032, 4411, 11), -- Average M. Atk.
-(32032, 4412, 11), -- Average P. Def.
-(32032, 4413, 11), -- Average M. Def.
-(32032, 4414, 2), -- Standard Type
-(32032, 4415, 1), -- Bare Hands
-(32032, 4416, 19), -- Others
+(32032, 4390, 1), -- NPC Abnormal Immunity
+(32032, 4408, 1), -- HP Modifiers
+(32032, 4409, 1), -- MP Modifiers
+(32032, 4410, 11), -- P. Atk. Modifiers
+(32032, 4411, 11), -- M. Atk. Modifiers
+(32032, 4412, 11), -- P. Def. Modifiers
+(32032, 4413, 11), -- M. Def. Modifiers
+(32032, 4414, 2), -- Armor Type
+(32032, 4415, 1), -- Weapon Type
+(32032, 4416, 19), -- Races
 -- Dr. Chaos
 (32033, 4045, 1), -- Resist Full Magic Attack
-(32033, 4408, 1), -- HP Increase (1x)
-(32033, 4409, 1), -- MP Increase (1x)
-(32033, 4410, 11), -- Average P. Atk.
-(32033, 4411, 11), -- Average M. Atk.
-(32033, 4412, 11), -- Average P. Def.
-(32033, 4413, 11), -- Average M. Def.
-(32033, 4414, 2), -- Standard Type
-(32033, 4415, 1), -- Bare Hands
-(32033, 4416, 6), -- Humanoids
+(32033, 4408, 1), -- HP Modifiers
+(32033, 4409, 1), -- MP Modifiers
+(32033, 4410, 11), -- P. Atk. Modifiers
+(32033, 4411, 11), -- M. Atk. Modifiers
+(32033, 4412, 11), -- P. Def. Modifiers
+(32033, 4413, 11), -- M. Def. Modifiers
+(32033, 4414, 2), -- Armor Type
+(32033, 4415, 1), -- Weapon Type
+(32033, 4416, 6), -- Races
 -- Temple Gatekeeper
 (32034, 4045, 1), -- Resist Full Magic Attack
-(32034, 4390, 1), -- Mystic Immunity
-(32034, 4408, 1), -- HP Increase (1x)
-(32034, 4409, 1), -- MP Increase (1x)
-(32034, 4410, 11), -- Average P. Atk.
-(32034, 4411, 11), -- Average M. Atk.
-(32034, 4412, 11), -- Average P. Def.
-(32034, 4413, 11), -- Average M. Def.
-(32034, 4414, 2), -- Standard Type
-(32034, 4415, 1), -- Bare Hands
-(32034, 4416, 19), -- Others
+(32034, 4390, 1), -- NPC Abnormal Immunity
+(32034, 4408, 1), -- HP Modifiers
+(32034, 4409, 1), -- MP Modifiers
+(32034, 4410, 11), -- P. Atk. Modifiers
+(32034, 4411, 11), -- M. Atk. Modifiers
+(32034, 4412, 11), -- P. Def. Modifiers
+(32034, 4413, 11), -- M. Def. Modifiers
+(32034, 4414, 2), -- Armor Type
+(32034, 4415, 1), -- Weapon Type
+(32034, 4416, 19), -- Races
 -- Temple Gatekeeper
 (32035, 4045, 1), -- Resist Full Magic Attack
-(32035, 4390, 1), -- Mystic Immunity
-(32035, 4408, 1), -- HP Increase (1x)
-(32035, 4409, 1), -- MP Increase (1x)
-(32035, 4410, 11), -- Average P. Atk.
-(32035, 4411, 11), -- Average M. Atk.
-(32035, 4412, 11), -- Average P. Def.
-(32035, 4413, 11), -- Average M. Def.
-(32035, 4414, 2), -- Standard Type
-(32035, 4415, 1), -- Bare Hands
-(32035, 4416, 19), -- Others
+(32035, 4390, 1), -- NPC Abnormal Immunity
+(32035, 4408, 1), -- HP Modifiers
+(32035, 4409, 1), -- MP Modifiers
+(32035, 4410, 11), -- P. Atk. Modifiers
+(32035, 4411, 11), -- M. Atk. Modifiers
+(32035, 4412, 11), -- P. Def. Modifiers
+(32035, 4413, 11), -- M. Def. Modifiers
+(32035, 4414, 2), -- Armor Type
+(32035, 4415, 1), -- Weapon Type
+(32035, 4416, 19), -- Races
 -- Temple Gatekeeper
 (32036, 4045, 1), -- Resist Full Magic Attack
-(32036, 4390, 1), -- Mystic Immunity
-(32036, 4408, 1), -- HP Increase (1x)
-(32036, 4409, 1), -- MP Increase (1x)
-(32036, 4410, 11), -- Average P. Atk.
-(32036, 4411, 11), -- Average M. Atk.
-(32036, 4412, 11), -- Average P. Def.
-(32036, 4413, 11), -- Average M. Def.
-(32036, 4414, 2), -- Standard Type
-(32036, 4415, 1), -- Bare Hands
-(32036, 4416, 19), -- Others
+(32036, 4390, 1), -- NPC Abnormal Immunity
+(32036, 4408, 1), -- HP Modifiers
+(32036, 4409, 1), -- MP Modifiers
+(32036, 4410, 11), -- P. Atk. Modifiers
+(32036, 4411, 11), -- M. Atk. Modifiers
+(32036, 4412, 11), -- P. Def. Modifiers
+(32036, 4413, 11), -- M. Def. Modifiers
+(32036, 4414, 2), -- Armor Type
+(32036, 4415, 1), -- Weapon Type
+(32036, 4416, 19), -- Races
 -- Temple Gatekeeper
 (32037, 4045, 1), -- Resist Full Magic Attack
-(32037, 4390, 1), -- Mystic Immunity
-(32037, 4408, 1), -- HP Increase (1x)
-(32037, 4409, 1), -- MP Increase (1x)
-(32037, 4410, 11), -- Average P. Atk.
-(32037, 4411, 11), -- Average M. Atk.
-(32037, 4412, 11), -- Average P. Def.
-(32037, 4413, 11), -- Average M. Def.
-(32037, 4414, 2), -- Standard Type
-(32037, 4415, 1), -- Bare Hands
-(32037, 4416, 19), -- Others
+(32037, 4390, 1), -- NPC Abnormal Immunity
+(32037, 4408, 1), -- HP Modifiers
+(32037, 4409, 1), -- MP Modifiers
+(32037, 4410, 11), -- P. Atk. Modifiers
+(32037, 4411, 11), -- M. Atk. Modifiers
+(32037, 4412, 11), -- P. Def. Modifiers
+(32037, 4413, 11), -- M. Def. Modifiers
+(32037, 4414, 2), -- Armor Type
+(32037, 4415, 1), -- Weapon Type
+(32037, 4416, 19), -- Races
 -- Ritual Offering
 (32038, 4045, 1), -- Resist Full Magic Attack
-(32038, 4408, 1), -- HP Increase (1x)
-(32038, 4409, 1), -- MP Increase (1x)
-(32038, 4410, 11), -- Average P. Atk.
-(32038, 4411, 11), -- Average M. Atk.
-(32038, 4412, 11), -- Average P. Def.
-(32038, 4413, 11), -- Average M. Def.
-(32038, 4414, 2), -- Standard Type
-(32038, 4415, 1), -- Bare Hands
-(32038, 4416, 14), -- Humans
+(32038, 4408, 1), -- HP Modifiers
+(32038, 4409, 1), -- MP Modifiers
+(32038, 4410, 11), -- P. Atk. Modifiers
+(32038, 4411, 11), -- M. Atk. Modifiers
+(32038, 4412, 11), -- P. Def. Modifiers
+(32038, 4413, 11), -- M. Def. Modifiers
+(32038, 4414, 2), -- Armor Type
+(32038, 4415, 1), -- Weapon Type
+(32038, 4416, 14), -- Races
 -- Triol's Mirror
 (32039, 4045, 1), -- Resist Full Magic Attack
-(32039, 4390, 1), -- Mystic Immunity
-(32039, 4408, 1), -- HP Increase (1x)
-(32039, 4409, 1), -- MP Increase (1x)
-(32039, 4410, 11), -- Average P. Atk.
-(32039, 4411, 11), -- Average M. Atk.
-(32039, 4412, 11), -- Average P. Def.
-(32039, 4413, 11), -- Average M. Def.
-(32039, 4414, 2), -- Standard Type
-(32039, 4415, 1), -- Bare Hands
-(32039, 4416, 19), -- Others
+(32039, 4390, 1), -- NPC Abnormal Immunity
+(32039, 4408, 1), -- HP Modifiers
+(32039, 4409, 1), -- MP Modifiers
+(32039, 4410, 11), -- P. Atk. Modifiers
+(32039, 4411, 11), -- M. Atk. Modifiers
+(32039, 4412, 11), -- P. Def. Modifiers
+(32039, 4413, 11), -- M. Def. Modifiers
+(32039, 4414, 2), -- Armor Type
+(32039, 4415, 1), -- Weapon Type
+(32039, 4416, 19), -- Races
 -- Triol's Mirror
 (32040, 4045, 1), -- Resist Full Magic Attack
-(32040, 4390, 1), -- Mystic Immunity
-(32040, 4408, 1), -- HP Increase (1x)
-(32040, 4409, 1), -- MP Increase (1x)
-(32040, 4410, 11), -- Average P. Atk.
-(32040, 4411, 11), -- Average M. Atk.
-(32040, 4412, 11), -- Average P. Def.
-(32040, 4413, 11), -- Average M. Def.
-(32040, 4414, 2), -- Standard Type
-(32040, 4415, 1), -- Bare Hands
-(32040, 4416, 19), -- Others
+(32040, 4390, 1), -- NPC Abnormal Immunity
+(32040, 4408, 1), -- HP Modifiers
+(32040, 4409, 1), -- MP Modifiers
+(32040, 4410, 11), -- P. Atk. Modifiers
+(32040, 4411, 11), -- M. Atk. Modifiers
+(32040, 4412, 11), -- P. Def. Modifiers
+(32040, 4413, 11), -- M. Def. Modifiers
+(32040, 4414, 2), -- Armor Type
+(32040, 4415, 1), -- Weapon Type
+(32040, 4416, 19), -- Races
 -- Yumi
 (32041, 4045, 1), -- Resist Full Magic Attack
-(32041, 4408, 1), -- HP Increase (1x)
-(32041, 4409, 1), -- MP Increase (1x)
-(32041, 4410, 11), -- Average P. Atk.
-(32041, 4411, 11), -- Average M. Atk.
-(32041, 4412, 11), -- Average P. Def.
-(32041, 4413, 11), -- Average M. Def.
-(32041, 4414, 2), -- Standard Type
-(32041, 4415, 1), -- Bare Hands
-(32041, 4416, 18), -- Dwarves
+(32041, 4408, 1), -- HP Modifiers
+(32041, 4409, 1), -- MP Modifiers
+(32041, 4410, 11), -- P. Atk. Modifiers
+(32041, 4411, 11), -- M. Atk. Modifiers
+(32041, 4412, 11), -- P. Def. Modifiers
+(32041, 4413, 11), -- M. Def. Modifiers
+(32041, 4414, 2), -- Armor Type
+(32041, 4415, 1), -- Weapon Type
+(32041, 4416, 18), -- Races
 -- Weathermaster
 (32042, 4045, 1), -- Resist Full Magic Attack
-(32042, 4390, 1), -- Mystic Immunity
-(32042, 4408, 1), -- HP Increase (1x)
-(32042, 4409, 1), -- MP Increase (1x)
-(32042, 4410, 11), -- Average P. Atk.
-(32042, 4411, 11), -- Average M. Atk.
-(32042, 4412, 11), -- Average P. Def.
-(32042, 4413, 11), -- Average M. Def.
-(32042, 4414, 2), -- Standard Type
-(32042, 4415, 1), -- Bare Hands
-(32042, 4416, 19), -- Others
+(32042, 4390, 1), -- NPC Abnormal Immunity
+(32042, 4408, 1), -- HP Modifiers
+(32042, 4409, 1), -- MP Modifiers
+(32042, 4410, 11), -- P. Atk. Modifiers
+(32042, 4411, 11), -- M. Atk. Modifiers
+(32042, 4412, 11), -- P. Def. Modifiers
+(32042, 4413, 11), -- M. Def. Modifiers
+(32042, 4414, 2), -- Armor Type
+(32042, 4415, 1), -- Weapon Type
+(32042, 4416, 19), -- Races
 -- Weathermaster
 (32043, 4045, 1), -- Resist Full Magic Attack
-(32043, 4390, 1), -- Mystic Immunity
-(32043, 4408, 1), -- HP Increase (1x)
-(32043, 4409, 1), -- MP Increase (1x)
-(32043, 4410, 11), -- Average P. Atk.
-(32043, 4411, 11), -- Average M. Atk.
-(32043, 4412, 11), -- Average P. Def.
-(32043, 4413, 11), -- Average M. Def.
-(32043, 4414, 2), -- Standard Type
-(32043, 4415, 1), -- Bare Hands
-(32043, 4416, 19), -- Others
+(32043, 4390, 1), -- NPC Abnormal Immunity
+(32043, 4408, 1), -- HP Modifiers
+(32043, 4409, 1), -- MP Modifiers
+(32043, 4410, 11), -- P. Atk. Modifiers
+(32043, 4411, 11), -- M. Atk. Modifiers
+(32043, 4412, 11), -- P. Def. Modifiers
+(32043, 4413, 11), -- M. Def. Modifiers
+(32043, 4414, 2), -- Armor Type
+(32043, 4415, 1), -- Weapon Type
+(32043, 4416, 19), -- Races
 -- Weathermaster
 (32044, 4045, 1), -- Resist Full Magic Attack
-(32044, 4390, 1), -- Mystic Immunity
-(32044, 4408, 1), -- HP Increase (1x)
-(32044, 4409, 1), -- MP Increase (1x)
-(32044, 4410, 11), -- Average P. Atk.
-(32044, 4411, 11), -- Average M. Atk.
-(32044, 4412, 11), -- Average P. Def.
-(32044, 4413, 11), -- Average M. Def.
-(32044, 4414, 2), -- Standard Type
-(32044, 4415, 1), -- Bare Hands
-(32044, 4416, 2), -- Magic Creatures
+(32044, 4390, 1), -- NPC Abnormal Immunity
+(32044, 4408, 1), -- HP Modifiers
+(32044, 4409, 1), -- MP Modifiers
+(32044, 4410, 11), -- P. Atk. Modifiers
+(32044, 4411, 11), -- M. Atk. Modifiers
+(32044, 4412, 11), -- P. Def. Modifiers
+(32044, 4413, 11), -- M. Def. Modifiers
+(32044, 4414, 2), -- Armor Type
+(32044, 4415, 1), -- Weapon Type
+(32044, 4416, 2), -- Races
 -- Dr. Chaos' Secret Bookshelf
 (32045, 4045, 1), -- Resist Full Magic Attack
-(32045, 4390, 1), -- Mystic Immunity
-(32045, 4408, 1), -- HP Increase (1x)
-(32045, 4409, 1), -- MP Increase (1x)
-(32045, 4410, 11), -- Average P. Atk.
-(32045, 4411, 11), -- Average M. Atk.
-(32045, 4412, 11), -- Average P. Def.
-(32045, 4413, 11), -- Average M. Def.
-(32045, 4414, 2), -- Standard Type
-(32045, 4415, 1), -- Bare Hands
-(32045, 4416, 2), -- Magic Creatures
+(32045, 4390, 1), -- NPC Abnormal Immunity
+(32045, 4408, 1), -- HP Modifiers
+(32045, 4409, 1), -- MP Modifiers
+(32045, 4410, 11), -- P. Atk. Modifiers
+(32045, 4411, 11), -- M. Atk. Modifiers
+(32045, 4412, 11), -- P. Def. Modifiers
+(32045, 4413, 11), -- M. Def. Modifiers
+(32045, 4414, 2), -- Armor Type
+(32045, 4415, 1), -- Weapon Type
+(32045, 4416, 2), -- Races
 -- Suspicious-Looking Pile of Stones
 (32046, 4045, 1), -- Resist Full Magic Attack
-(32046, 4390, 1), -- Mystic Immunity
-(32046, 4408, 1), -- HP Increase (1x)
-(32046, 4409, 1), -- MP Increase (1x)
-(32046, 4410, 11), -- Average P. Atk.
-(32046, 4411, 11), -- Average M. Atk.
-(32046, 4412, 11), -- Average P. Def.
-(32046, 4413, 11), -- Average M. Def.
-(32046, 4414, 2), -- Standard Type
-(32046, 4415, 1), -- Bare Hands
-(32046, 4416, 2), -- Magic Creatures
+(32046, 4390, 1), -- NPC Abnormal Immunity
+(32046, 4408, 1), -- HP Modifiers
+(32046, 4409, 1), -- MP Modifiers
+(32046, 4410, 11), -- P. Atk. Modifiers
+(32046, 4411, 11), -- M. Atk. Modifiers
+(32046, 4412, 11), -- P. Def. Modifiers
+(32046, 4413, 11), -- M. Def. Modifiers
+(32046, 4414, 2), -- Armor Type
+(32046, 4415, 1), -- Weapon Type
+(32046, 4416, 2), -- Races
 -- Wendy
 (32047, 4045, 1), -- Resist Full Magic Attack
-(32047, 4408, 1), -- HP Increase (1x)
-(32047, 4409, 1), -- MP Increase (1x)
-(32047, 4410, 11), -- Average P. Atk.
-(32047, 4411, 11), -- Average M. Atk.
-(32047, 4412, 11), -- Average P. Def.
-(32047, 4413, 11), -- Average M. Def.
-(32047, 4414, 2), -- Standard Type
-(32047, 4415, 1), -- Bare Hands
-(32047, 4416, 18), -- Dwarves
+(32047, 4408, 1), -- HP Modifiers
+(32047, 4409, 1), -- MP Modifiers
+(32047, 4410, 11), -- P. Atk. Modifiers
+(32047, 4411, 11), -- M. Atk. Modifiers
+(32047, 4412, 11), -- P. Def. Modifiers
+(32047, 4413, 11), -- M. Def. Modifiers
+(32047, 4414, 2), -- Armor Type
+(32047, 4415, 1), -- Weapon Type
+(32047, 4416, 18), -- Races
 -- Event Gatekeeper
 (32048, 4045, 1), -- Resist Full Magic Attack
-(32048, 4408, 1), -- HP Increase (1x)
-(32048, 4409, 1), -- MP Increase (1x)
-(32048, 4410, 11), -- Average P. Atk.
-(32048, 4411, 11), -- Average M. Atk.
-(32048, 4412, 11), -- Average P. Def.
-(32048, 4413, 11), -- Average M. Def.
-(32048, 4414, 2), -- Standard Type
-(32048, 4415, 3), -- One-handed Sword
-(32048, 4416, 7), -- Spirits
+(32048, 4408, 1), -- HP Modifiers
+(32048, 4409, 1), -- MP Modifiers
+(32048, 4410, 11), -- P. Atk. Modifiers
+(32048, 4411, 11), -- M. Atk. Modifiers
+(32048, 4412, 11), -- P. Def. Modifiers
+(32048, 4413, 11), -- M. Def. Modifiers
+(32048, 4414, 2), -- Armor Type
+(32048, 4415, 3), -- Weapon Type
+(32048, 4416, 7), -- Races
 -- Rooney
 (32049, 4045, 1), -- Resist Full Magic Attack
-(32049, 4408, 1), -- HP Increase (1x)
-(32049, 4409, 1), -- MP Increase (1x)
-(32049, 4410, 11), -- Average P. Atk.
-(32049, 4411, 11), -- Average M. Atk.
-(32049, 4412, 11), -- Average P. Def.
-(32049, 4413, 11), -- Average M. Def.
-(32049, 4414, 2), -- Standard Type
-(32049, 4415, 1), -- Bare Hands
-(32049, 4416, 18), -- Dwarves
+(32049, 4408, 1), -- HP Modifiers
+(32049, 4409, 1), -- MP Modifiers
+(32049, 4410, 11), -- P. Atk. Modifiers
+(32049, 4411, 11), -- M. Atk. Modifiers
+(32049, 4412, 11), -- P. Def. Modifiers
+(32049, 4413, 11), -- M. Def. Modifiers
+(32049, 4414, 2), -- Armor Type
+(32049, 4415, 1), -- Weapon Type
+(32049, 4416, 18), -- Races
 -- Parts Box
 (32050, 4045, 1), -- Resist Full Magic Attack
-(32050, 4390, 1), -- Mystic Immunity
-(32050, 4408, 1), -- HP Increase (1x)
-(32050, 4409, 1), -- MP Increase (1x)
-(32050, 4410, 11), -- Average P. Atk.
-(32050, 4411, 11), -- Average M. Atk.
-(32050, 4412, 11), -- Average P. Def.
-(32050, 4413, 11), -- Average M. Def.
-(32050, 4414, 2), -- Standard Type
-(32050, 4415, 1), -- Bare Hands
-(32050, 4416, 19), -- Others
+(32050, 4390, 1), -- NPC Abnormal Immunity
+(32050, 4408, 1), -- HP Modifiers
+(32050, 4409, 1), -- MP Modifiers
+(32050, 4410, 11), -- P. Atk. Modifiers
+(32050, 4411, 11), -- M. Atk. Modifiers
+(32050, 4412, 11), -- P. Def. Modifiers
+(32050, 4413, 11), -- M. Def. Modifiers
+(32050, 4414, 2), -- Armor Type
+(32050, 4415, 1), -- Weapon Type
+(32050, 4416, 19), -- Races
 -- Altar Gatekeeper
 (32051, 4045, 1), -- Resist Full Magic Attack
-(32051, 4390, 1), -- Mystic Immunity
-(32051, 4408, 1), -- HP Increase (1x)
-(32051, 4409, 1), -- MP Increase (1x)
-(32051, 4410, 11), -- Average P. Atk.
-(32051, 4411, 11), -- Average M. Atk.
-(32051, 4412, 11), -- Average P. Def.
-(32051, 4413, 11), -- Average M. Def.
-(32051, 4414, 2), -- Standard Type
-(32051, 4415, 1), -- Bare Hands
-(32051, 4416, 19), -- Others
+(32051, 4390, 1), -- NPC Abnormal Immunity
+(32051, 4408, 1), -- HP Modifiers
+(32051, 4409, 1), -- MP Modifiers
+(32051, 4410, 11), -- P. Atk. Modifiers
+(32051, 4411, 11), -- M. Atk. Modifiers
+(32051, 4412, 11), -- P. Def. Modifiers
+(32051, 4413, 11), -- M. Def. Modifiers
+(32051, 4414, 2), -- Armor Type
+(32051, 4415, 1), -- Weapon Type
+(32051, 4416, 19), -- Races
 -- Obi
 (32052, 4045, 1), -- Resist Full Magic Attack
-(32052, 4408, 1), -- HP Increase (1x)
-(32052, 4409, 1), -- MP Increase (1x)
-(32052, 4410, 11), -- Average P. Atk.
-(32052, 4411, 11), -- Average M. Atk.
-(32052, 4412, 11), -- Average P. Def.
-(32052, 4413, 11), -- Average M. Def.
-(32052, 4414, 2), -- Standard Type
-(32052, 4415, 1), -- Bare Hands
-(32052, 4416, 18), -- Dwarves
+(32052, 4408, 1), -- HP Modifiers
+(32052, 4409, 1), -- MP Modifiers
+(32052, 4410, 11), -- P. Atk. Modifiers
+(32052, 4411, 11), -- M. Atk. Modifiers
+(32052, 4412, 11), -- P. Def. Modifiers
+(32052, 4413, 11), -- M. Def. Modifiers
+(32052, 4414, 2), -- Armor Type
+(32052, 4415, 1), -- Weapon Type
+(32052, 4416, 18), -- Races
 -- Abey
 (32053, 4045, 1), -- Resist Full Magic Attack
-(32053, 4408, 1), -- HP Increase (1x)
-(32053, 4409, 1), -- MP Increase (1x)
-(32053, 4410, 11), -- Average P. Atk.
-(32053, 4411, 11), -- Average M. Atk.
-(32053, 4412, 11), -- Average P. Def.
-(32053, 4413, 11), -- Average M. Def.
-(32053, 4414, 2), -- Standard Type
-(32053, 4415, 1), -- Bare Hands
-(32053, 4416, 18), -- Dwarves
+(32053, 4408, 1), -- HP Modifiers
+(32053, 4409, 1), -- MP Modifiers
+(32053, 4410, 11), -- P. Atk. Modifiers
+(32053, 4411, 11), -- M. Atk. Modifiers
+(32053, 4412, 11), -- P. Def. Modifiers
+(32053, 4413, 11), -- M. Def. Modifiers
+(32053, 4414, 2), -- Armor Type
+(32053, 4415, 1), -- Weapon Type
+(32053, 4416, 18), -- Races
 -- Ghost of a Railroad Engineer
 (32054, 4045, 1), -- Resist Full Magic Attack
-(32054, 4408, 1), -- HP Increase (1x)
-(32054, 4409, 1), -- MP Increase (1x)
-(32054, 4410, 11), -- Average P. Atk.
-(32054, 4411, 11), -- Average M. Atk.
-(32054, 4412, 11), -- Average P. Def.
-(32054, 4413, 11), -- Average M. Def.
-(32054, 4414, 2), -- Standard Type
-(32054, 4415, 1), -- Bare Hands
-(32054, 4416, 1), -- Undead
+(32054, 4408, 1), -- HP Modifiers
+(32054, 4409, 1), -- MP Modifiers
+(32054, 4410, 11), -- P. Atk. Modifiers
+(32054, 4411, 11), -- M. Atk. Modifiers
+(32054, 4412, 11), -- P. Def. Modifiers
+(32054, 4413, 11), -- M. Def. Modifiers
+(32054, 4414, 2), -- Armor Type
+(32054, 4415, 1), -- Weapon Type
+(32054, 4416, 1), -- Races
 -- Ghost of an Ancient Railroad Engineer
 (32055, 4045, 1), -- Resist Full Magic Attack
-(32055, 4408, 1), -- HP Increase (1x)
-(32055, 4409, 1), -- MP Increase (1x)
-(32055, 4410, 11), -- Average P. Atk.
-(32055, 4411, 11), -- Average M. Atk.
-(32055, 4412, 11), -- Average P. Def.
-(32055, 4413, 11), -- Average M. Def.
-(32055, 4414, 2), -- Standard Type
-(32055, 4415, 1), -- Bare Hands
-(32055, 4416, 1), -- Undead
+(32055, 4408, 1), -- HP Modifiers
+(32055, 4409, 1), -- MP Modifiers
+(32055, 4410, 11), -- P. Atk. Modifiers
+(32055, 4411, 11), -- M. Atk. Modifiers
+(32055, 4412, 11), -- P. Def. Modifiers
+(32055, 4413, 11), -- M. Def. Modifiers
+(32055, 4414, 2), -- Armor Type
+(32055, 4415, 1), -- Weapon Type
+(32055, 4416, 1), -- Races
 -- Aren
 (32056, 4045, 1), -- Resist Full Magic Attack
-(32056, 4408, 1), -- HP Increase (1x)
-(32056, 4409, 1), -- MP Increase (1x)
-(32056, 4410, 11), -- Average P. Atk.
-(32056, 4411, 11), -- Average M. Atk.
-(32056, 4412, 11), -- Average P. Def.
-(32056, 4413, 11), -- Average M. Def.
-(32056, 4414, 2), -- Standard Type
-(32056, 4415, 1), -- Bare Hands
-(32056, 4416, 17), -- Orcs
+(32056, 4408, 1), -- HP Modifiers
+(32056, 4409, 1), -- MP Modifiers
+(32056, 4410, 11), -- P. Atk. Modifiers
+(32056, 4411, 11), -- M. Atk. Modifiers
+(32056, 4412, 11), -- P. Def. Modifiers
+(32056, 4413, 11), -- M. Def. Modifiers
+(32056, 4414, 2), -- Armor Type
+(32056, 4415, 1), -- Weapon Type
+(32056, 4416, 17), -- Races
 -- Totem Spirit of Gandi
 (32057, 4045, 1), -- Resist Full Magic Attack
-(32057, 4408, 1), -- HP Increase (1x)
-(32057, 4409, 1), -- MP Increase (1x)
-(32057, 4410, 11), -- Average P. Atk.
-(32057, 4411, 11), -- Average M. Atk.
-(32057, 4412, 11), -- Average P. Def.
-(32057, 4413, 11), -- Average M. Def.
-(32057, 4414, 2), -- Standard Type
-(32057, 4415, 1), -- Bare Hands
-(32057, 4416, 3), -- Beasts
+(32057, 4408, 1), -- HP Modifiers
+(32057, 4409, 1), -- MP Modifiers
+(32057, 4410, 11), -- P. Atk. Modifiers
+(32057, 4411, 11), -- M. Atk. Modifiers
+(32057, 4412, 11), -- P. Def. Modifiers
+(32057, 4413, 11), -- M. Def. Modifiers
+(32057, 4414, 2), -- Armor Type
+(32057, 4415, 1), -- Weapon Type
+(32057, 4416, 3), -- Races
 -- Triol's Revelation
 (32058, 4045, 1), -- Resist Full Magic Attack
-(32058, 4390, 1), -- Mystic Immunity
-(32058, 4408, 1), -- HP Increase (1x)
-(32058, 4409, 1), -- MP Increase (1x)
-(32058, 4410, 11), -- Average P. Atk.
-(32058, 4411, 11), -- Average M. Atk.
-(32058, 4412, 11), -- Average P. Def.
-(32058, 4413, 11), -- Average M. Def.
-(32058, 4414, 2), -- Standard Type
-(32058, 4415, 1), -- Bare Hands
-(32058, 4416, 19), -- Others
+(32058, 4390, 1), -- NPC Abnormal Immunity
+(32058, 4408, 1), -- HP Modifiers
+(32058, 4409, 1), -- MP Modifiers
+(32058, 4410, 11), -- P. Atk. Modifiers
+(32058, 4411, 11), -- M. Atk. Modifiers
+(32058, 4412, 11), -- P. Def. Modifiers
+(32058, 4413, 11), -- M. Def. Modifiers
+(32058, 4414, 2), -- Armor Type
+(32058, 4415, 1), -- Weapon Type
+(32058, 4416, 19), -- Races
 -- Triol's Revelation
 (32059, 4045, 1), -- Resist Full Magic Attack
-(32059, 4390, 1), -- Mystic Immunity
-(32059, 4408, 1), -- HP Increase (1x)
-(32059, 4409, 1), -- MP Increase (1x)
-(32059, 4410, 11), -- Average P. Atk.
-(32059, 4411, 11), -- Average M. Atk.
-(32059, 4412, 11), -- Average P. Def.
-(32059, 4413, 11), -- Average M. Def.
-(32059, 4414, 2), -- Standard Type
-(32059, 4415, 1), -- Bare Hands
-(32059, 4416, 19), -- Others
+(32059, 4390, 1), -- NPC Abnormal Immunity
+(32059, 4408, 1), -- HP Modifiers
+(32059, 4409, 1), -- MP Modifiers
+(32059, 4410, 11), -- P. Atk. Modifiers
+(32059, 4411, 11), -- M. Atk. Modifiers
+(32059, 4412, 11), -- P. Def. Modifiers
+(32059, 4413, 11), -- M. Def. Modifiers
+(32059, 4414, 2), -- Armor Type
+(32059, 4415, 1), -- Weapon Type
+(32059, 4416, 19), -- Races
 -- Triol's Revelation
 (32060, 4045, 1), -- Resist Full Magic Attack
-(32060, 4390, 1), -- Mystic Immunity
-(32060, 4408, 1), -- HP Increase (1x)
-(32060, 4409, 1), -- MP Increase (1x)
-(32060, 4410, 11), -- Average P. Atk.
-(32060, 4411, 11), -- Average M. Atk.
-(32060, 4412, 11), -- Average P. Def.
-(32060, 4413, 11), -- Average M. Def.
-(32060, 4414, 2), -- Standard Type
-(32060, 4415, 1), -- Bare Hands
-(32060, 4416, 19), -- Others
+(32060, 4390, 1), -- NPC Abnormal Immunity
+(32060, 4408, 1), -- HP Modifiers
+(32060, 4409, 1), -- MP Modifiers
+(32060, 4410, 11), -- P. Atk. Modifiers
+(32060, 4411, 11), -- M. Atk. Modifiers
+(32060, 4412, 11), -- P. Def. Modifiers
+(32060, 4413, 11), -- M. Def. Modifiers
+(32060, 4414, 2), -- Armor Type
+(32060, 4415, 1), -- Weapon Type
+(32060, 4416, 19), -- Races
 -- Triol's Revelation
 (32061, 4045, 1), -- Resist Full Magic Attack
-(32061, 4390, 1), -- Mystic Immunity
-(32061, 4408, 1), -- HP Increase (1x)
-(32061, 4409, 1), -- MP Increase (1x)
-(32061, 4410, 11), -- Average P. Atk.
-(32061, 4411, 11), -- Average M. Atk.
-(32061, 4412, 11), -- Average P. Def.
-(32061, 4413, 11), -- Average M. Def.
-(32061, 4414, 2), -- Standard Type
-(32061, 4415, 1), -- Bare Hands
-(32061, 4416, 19), -- Others
+(32061, 4390, 1), -- NPC Abnormal Immunity
+(32061, 4408, 1), -- HP Modifiers
+(32061, 4409, 1), -- MP Modifiers
+(32061, 4410, 11), -- P. Atk. Modifiers
+(32061, 4411, 11), -- M. Atk. Modifiers
+(32061, 4412, 11), -- P. Def. Modifiers
+(32061, 4413, 11), -- M. Def. Modifiers
+(32061, 4414, 2), -- Armor Type
+(32061, 4415, 1), -- Weapon Type
+(32061, 4416, 19), -- Races
 -- Triol's Revelation
 (32062, 4045, 1), -- Resist Full Magic Attack
-(32062, 4390, 1), -- Mystic Immunity
-(32062, 4408, 1), -- HP Increase (1x)
-(32062, 4409, 1), -- MP Increase (1x)
-(32062, 4410, 11), -- Average P. Atk.
-(32062, 4411, 11), -- Average M. Atk.
-(32062, 4412, 11), -- Average P. Def.
-(32062, 4413, 11), -- Average M. Def.
-(32062, 4414, 2), -- Standard Type
-(32062, 4415, 1), -- Bare Hands
-(32062, 4416, 19), -- Others
+(32062, 4390, 1), -- NPC Abnormal Immunity
+(32062, 4408, 1), -- HP Modifiers
+(32062, 4409, 1), -- MP Modifiers
+(32062, 4410, 11), -- P. Atk. Modifiers
+(32062, 4411, 11), -- M. Atk. Modifiers
+(32062, 4412, 11), -- P. Def. Modifiers
+(32062, 4413, 11), -- M. Def. Modifiers
+(32062, 4414, 2), -- Armor Type
+(32062, 4415, 1), -- Weapon Type
+(32062, 4416, 19), -- Races
 -- Triol's Revelation
 (32063, 4045, 1), -- Resist Full Magic Attack
-(32063, 4390, 1), -- Mystic Immunity
-(32063, 4408, 1), -- HP Increase (1x)
-(32063, 4409, 1), -- MP Increase (1x)
-(32063, 4410, 11), -- Average P. Atk.
-(32063, 4411, 11), -- Average M. Atk.
-(32063, 4412, 11), -- Average P. Def.
-(32063, 4413, 11), -- Average M. Def.
-(32063, 4414, 2), -- Standard Type
-(32063, 4415, 1), -- Bare Hands
-(32063, 4416, 19), -- Others
+(32063, 4390, 1), -- NPC Abnormal Immunity
+(32063, 4408, 1), -- HP Modifiers
+(32063, 4409, 1), -- MP Modifiers
+(32063, 4410, 11), -- P. Atk. Modifiers
+(32063, 4411, 11), -- M. Atk. Modifiers
+(32063, 4412, 11), -- P. Def. Modifiers
+(32063, 4413, 11), -- M. Def. Modifiers
+(32063, 4414, 2), -- Armor Type
+(32063, 4415, 1), -- Weapon Type
+(32063, 4416, 19), -- Races
 -- Triol's Revelation
 (32064, 4045, 1), -- Resist Full Magic Attack
-(32064, 4390, 1), -- Mystic Immunity
-(32064, 4408, 1), -- HP Increase (1x)
-(32064, 4409, 1), -- MP Increase (1x)
-(32064, 4410, 11), -- Average P. Atk.
-(32064, 4411, 11), -- Average M. Atk.
-(32064, 4412, 11), -- Average P. Def.
-(32064, 4413, 11), -- Average M. Def.
-(32064, 4414, 2), -- Standard Type
-(32064, 4415, 1), -- Bare Hands
-(32064, 4416, 19), -- Others
+(32064, 4390, 1), -- NPC Abnormal Immunity
+(32064, 4408, 1), -- HP Modifiers
+(32064, 4409, 1), -- MP Modifiers
+(32064, 4410, 11), -- P. Atk. Modifiers
+(32064, 4411, 11), -- M. Atk. Modifiers
+(32064, 4412, 11), -- P. Def. Modifiers
+(32064, 4413, 11), -- M. Def. Modifiers
+(32064, 4414, 2), -- Armor Type
+(32064, 4415, 1), -- Weapon Type
+(32064, 4416, 19), -- Races
 -- Triol's Revelation
 (32065, 4045, 1), -- Resist Full Magic Attack
-(32065, 4390, 1), -- Mystic Immunity
-(32065, 4408, 1), -- HP Increase (1x)
-(32065, 4409, 1), -- MP Increase (1x)
-(32065, 4410, 11), -- Average P. Atk.
-(32065, 4411, 11), -- Average M. Atk.
-(32065, 4412, 11), -- Average P. Def.
-(32065, 4413, 11), -- Average M. Def.
-(32065, 4414, 2), -- Standard Type
-(32065, 4415, 1), -- Bare Hands
-(32065, 4416, 19), -- Others
+(32065, 4390, 1), -- NPC Abnormal Immunity
+(32065, 4408, 1), -- HP Modifiers
+(32065, 4409, 1), -- MP Modifiers
+(32065, 4410, 11), -- P. Atk. Modifiers
+(32065, 4411, 11), -- M. Atk. Modifiers
+(32065, 4412, 11), -- P. Def. Modifiers
+(32065, 4413, 11), -- M. Def. Modifiers
+(32065, 4414, 2), -- Armor Type
+(32065, 4415, 1), -- Weapon Type
+(32065, 4416, 19), -- Races
 -- Triol's Revelation
 (32066, 4045, 1), -- Resist Full Magic Attack
-(32066, 4390, 1), -- Mystic Immunity
-(32066, 4408, 1), -- HP Increase (1x)
-(32066, 4409, 1), -- MP Increase (1x)
-(32066, 4410, 11), -- Average P. Atk.
-(32066, 4411, 11), -- Average M. Atk.
-(32066, 4412, 11), -- Average P. Def.
-(32066, 4413, 11), -- Average M. Def.
-(32066, 4414, 2), -- Standard Type
-(32066, 4415, 1), -- Bare Hands
-(32066, 4416, 19), -- Others
+(32066, 4390, 1), -- NPC Abnormal Immunity
+(32066, 4408, 1), -- HP Modifiers
+(32066, 4409, 1), -- MP Modifiers
+(32066, 4410, 11), -- P. Atk. Modifiers
+(32066, 4411, 11), -- M. Atk. Modifiers
+(32066, 4412, 11), -- P. Def. Modifiers
+(32066, 4413, 11), -- M. Def. Modifiers
+(32066, 4414, 2), -- Armor Type
+(32066, 4415, 1), -- Weapon Type
+(32066, 4416, 19), -- Races
 -- Triol's Revelation
 (32067, 4045, 1), -- Resist Full Magic Attack
-(32067, 4390, 1), -- Mystic Immunity
-(32067, 4408, 1), -- HP Increase (1x)
-(32067, 4409, 1), -- MP Increase (1x)
-(32067, 4410, 11), -- Average P. Atk.
-(32067, 4411, 11), -- Average M. Atk.
-(32067, 4412, 11), -- Average P. Def.
-(32067, 4413, 11), -- Average M. Def.
-(32067, 4414, 2), -- Standard Type
-(32067, 4415, 1), -- Bare Hands
-(32067, 4416, 19), -- Others
+(32067, 4390, 1), -- NPC Abnormal Immunity
+(32067, 4408, 1), -- HP Modifiers
+(32067, 4409, 1), -- MP Modifiers
+(32067, 4410, 11), -- P. Atk. Modifiers
+(32067, 4411, 11), -- M. Atk. Modifiers
+(32067, 4412, 11), -- P. Def. Modifiers
+(32067, 4413, 11), -- M. Def. Modifiers
+(32067, 4414, 2), -- Armor Type
+(32067, 4415, 1), -- Weapon Type
+(32067, 4416, 19), -- Races
 -- Triol's Revelation
 (32068, 4045, 1), -- Resist Full Magic Attack
-(32068, 4390, 1), -- Mystic Immunity
-(32068, 4408, 1), -- HP Increase (1x)
-(32068, 4409, 1), -- MP Increase (1x)
-(32068, 4410, 11), -- Average P. Atk.
-(32068, 4411, 11), -- Average M. Atk.
-(32068, 4412, 11), -- Average P. Def.
-(32068, 4413, 11), -- Average M. Def.
-(32068, 4414, 2), -- Standard Type
-(32068, 4415, 1), -- Bare Hands
-(32068, 4416, 19), -- Others
+(32068, 4390, 1), -- NPC Abnormal Immunity
+(32068, 4408, 1), -- HP Modifiers
+(32068, 4409, 1), -- MP Modifiers
+(32068, 4410, 11), -- P. Atk. Modifiers
+(32068, 4411, 11), -- M. Atk. Modifiers
+(32068, 4412, 11), -- P. Def. Modifiers
+(32068, 4413, 11), -- M. Def. Modifiers
+(32068, 4414, 2), -- Armor Type
+(32068, 4415, 1), -- Weapon Type
+(32068, 4416, 19), -- Races
 -- Gutenhagen
 (32069, 4045, 1), -- Resist Full Magic Attack
-(32069, 4408, 1), -- HP Increase (1x)
-(32069, 4409, 1), -- MP Increase (1x)
-(32069, 4410, 11), -- Average P. Atk.
-(32069, 4411, 11), -- Average M. Atk.
-(32069, 4412, 11), -- Average P. Def.
-(32069, 4413, 11), -- Average M. Def.
-(32069, 4414, 2), -- Standard Type
-(32069, 4415, 1), -- Bare Hands
-(32069, 4416, 18), -- Dwarves
+(32069, 4408, 1), -- HP Modifiers
+(32069, 4409, 1), -- MP Modifiers
+(32069, 4410, 11), -- P. Atk. Modifiers
+(32069, 4411, 11), -- M. Atk. Modifiers
+(32069, 4412, 11), -- P. Def. Modifiers
+(32069, 4413, 11), -- M. Def. Modifiers
+(32069, 4414, 2), -- Armor Type
+(32069, 4415, 1), -- Weapon Type
+(32069, 4416, 18), -- Races
 -- Adolph
 (32070, 4045, 1), -- Resist Full Magic Attack
-(32070, 4408, 1), -- HP Increase (1x)
-(32070, 4409, 1), -- MP Increase (1x)
-(32070, 4410, 11), -- Average P. Atk.
-(32070, 4411, 11), -- Average M. Atk.
-(32070, 4412, 11), -- Average P. Def.
-(32070, 4413, 11), -- Average M. Def.
-(32070, 4414, 2), -- Standard Type
-(32070, 4415, 1), -- Bare Hands
-(32070, 4416, 14), -- Humans
+(32070, 4408, 1), -- HP Modifiers
+(32070, 4409, 1), -- MP Modifiers
+(32070, 4410, 11), -- P. Atk. Modifiers
+(32070, 4411, 11), -- M. Atk. Modifiers
+(32070, 4412, 11), -- P. Def. Modifiers
+(32070, 4413, 11), -- M. Def. Modifiers
+(32070, 4414, 2), -- Armor Type
+(32070, 4415, 1), -- Weapon Type
+(32070, 4416, 14), -- Races
 -- Linda
 (32071, 4045, 1), -- Resist Full Magic Attack
-(32071, 4408, 1), -- HP Increase (1x)
-(32071, 4409, 1), -- MP Increase (1x)
-(32071, 4410, 11), -- Average P. Atk.
-(32071, 4411, 11), -- Average M. Atk.
-(32071, 4412, 11), -- Average P. Def.
-(32071, 4413, 11), -- Average M. Def.
-(32071, 4414, 2), -- Standard Type
-(32071, 4415, 1), -- Bare Hands
-(32071, 4416, 14), -- Humans
+(32071, 4408, 1), -- HP Modifiers
+(32071, 4409, 1), -- MP Modifiers
+(32071, 4410, 11), -- P. Atk. Modifiers
+(32071, 4411, 11), -- M. Atk. Modifiers
+(32071, 4412, 11), -- P. Def. Modifiers
+(32071, 4413, 11), -- M. Def. Modifiers
+(32071, 4414, 2), -- Armor Type
+(32071, 4415, 1), -- Weapon Type
+(32071, 4416, 14), -- Races
 -- Edwin
 (32072, 4045, 1), -- Resist Full Magic Attack
-(32072, 4408, 1), -- HP Increase (1x)
-(32072, 4409, 1), -- MP Increase (1x)
-(32072, 4410, 11), -- Average P. Atk.
-(32072, 4411, 11), -- Average M. Atk.
-(32072, 4412, 11), -- Average P. Def.
-(32072, 4413, 11), -- Average M. Def.
-(32072, 4414, 2), -- Standard Type
-(32072, 4415, 1), -- Bare Hands
-(32072, 4416, 14), -- Humans
+(32072, 4408, 1), -- HP Modifiers
+(32072, 4409, 1), -- MP Modifiers
+(32072, 4410, 11), -- P. Atk. Modifiers
+(32072, 4411, 11), -- M. Atk. Modifiers
+(32072, 4412, 11), -- P. Def. Modifiers
+(32072, 4413, 11), -- M. Def. Modifiers
+(32072, 4414, 2), -- Armor Type
+(32072, 4415, 1), -- Weapon Type
+(32072, 4416, 14), -- Races
 -- Old Female Drifter
 (32073, 4045, 1), -- Resist Full Magic Attack
-(32073, 4408, 1), -- HP Increase (1x)
-(32073, 4409, 1), -- MP Increase (1x)
-(32073, 4410, 11), -- Average P. Atk.
-(32073, 4411, 11), -- Average M. Atk.
-(32073, 4412, 11), -- Average P. Def.
-(32073, 4413, 11), -- Average M. Def.
-(32073, 4414, 2), -- Standard Type
-(32073, 4415, 1), -- Bare Hands
-(32073, 4416, 14), -- Humans
+(32073, 4408, 1), -- HP Modifiers
+(32073, 4409, 1), -- MP Modifiers
+(32073, 4410, 11), -- P. Atk. Modifiers
+(32073, 4411, 11), -- M. Atk. Modifiers
+(32073, 4412, 11), -- P. Def. Modifiers
+(32073, 4413, 11), -- M. Def. Modifiers
+(32073, 4414, 2), -- Armor Type
+(32073, 4415, 1), -- Weapon Type
+(32073, 4416, 14), -- Races
 -- Gludio Territory Manager
 (32074, 4045, 1), -- Resist Full Magic Attack
-(32074, 4408, 1), -- HP Increase (1x)
-(32074, 4409, 1), -- MP Increase (1x)
-(32074, 4410, 11), -- Average P. Atk.
-(32074, 4411, 11), -- Average M. Atk.
-(32074, 4412, 11), -- Average P. Def.
-(32074, 4413, 11), -- Average M. Def.
-(32074, 4414, 2), -- Standard Type
-(32074, 4415, 1), -- Bare Hands
-(32074, 4416, 14), -- Humans
+(32074, 4408, 1), -- HP Modifiers
+(32074, 4409, 1), -- MP Modifiers
+(32074, 4410, 11), -- P. Atk. Modifiers
+(32074, 4411, 11), -- M. Atk. Modifiers
+(32074, 4412, 11), -- P. Def. Modifiers
+(32074, 4413, 11), -- M. Def. Modifiers
+(32074, 4414, 2), -- Armor Type
+(32074, 4415, 1), -- Weapon Type
+(32074, 4416, 14), -- Races
 -- Sandy the Cat
 (32075, 4045, 1), -- Resist Full Magic Attack
-(32075, 4408, 1), -- HP Increase (1x)
-(32075, 4409, 1), -- MP Increase (1x)
-(32075, 4410, 11), -- Average P. Atk.
-(32075, 4411, 11), -- Average M. Atk.
-(32075, 4412, 11), -- Average P. Def.
-(32075, 4413, 11), -- Average M. Def.
-(32075, 4414, 2), -- Standard Type
-(32075, 4415, 1), -- Bare Hands
-(32075, 4416, 7), -- Spirits
+(32075, 4408, 1), -- HP Modifiers
+(32075, 4409, 1), -- MP Modifiers
+(32075, 4410, 11), -- P. Atk. Modifiers
+(32075, 4411, 11), -- M. Atk. Modifiers
+(32075, 4412, 11), -- P. Def. Modifiers
+(32075, 4413, 11), -- M. Def. Modifiers
+(32075, 4414, 2), -- Armor Type
+(32075, 4415, 1), -- Weapon Type
+(32075, 4416, 7), -- Races
 -- Box
 (32076, 4045, 1), -- Resist Full Magic Attack
-(32076, 4390, 1), -- Mystic Immunity
-(32076, 4408, 1), -- HP Increase (1x)
-(32076, 4409, 1), -- MP Increase (1x)
-(32076, 4410, 11), -- Average P. Atk.
-(32076, 4411, 11), -- Average M. Atk.
-(32076, 4412, 11), -- Average P. Def.
-(32076, 4413, 11), -- Average M. Def.
-(32076, 4414, 2), -- Standard Type
-(32076, 4415, 1), -- Bare Hands
-(32076, 4416, 19), -- Others
+(32076, 4390, 1), -- NPC Abnormal Immunity
+(32076, 4408, 1), -- HP Modifiers
+(32076, 4409, 1), -- MP Modifiers
+(32076, 4410, 11), -- P. Atk. Modifiers
+(32076, 4411, 11), -- M. Atk. Modifiers
+(32076, 4412, 11), -- P. Def. Modifiers
+(32076, 4413, 11), -- M. Def. Modifiers
+(32076, 4414, 2), -- Armor Type
+(32076, 4415, 1), -- Weapon Type
+(32076, 4416, 19), -- Races
 -- Ice Sculpture
 (32077, 4045, 1), -- Resist Full Magic Attack
-(32077, 4390, 1), -- Mystic Immunity
-(32077, 4408, 1), -- HP Increase (1x)
-(32077, 4409, 1), -- MP Increase (1x)
-(32077, 4410, 11), -- Average P. Atk.
-(32077, 4411, 11), -- Average M. Atk.
-(32077, 4412, 11), -- Average P. Def.
-(32077, 4413, 11), -- Average M. Def.
-(32077, 4414, 2), -- Standard Type
-(32077, 4415, 1), -- Bare Hands
-(32077, 4416, 19), -- Others
+(32077, 4390, 1), -- NPC Abnormal Immunity
+(32077, 4408, 1), -- HP Modifiers
+(32077, 4409, 1), -- MP Modifiers
+(32077, 4410, 11), -- P. Atk. Modifiers
+(32077, 4411, 11), -- M. Atk. Modifiers
+(32077, 4412, 11), -- P. Def. Modifiers
+(32077, 4413, 11), -- M. Def. Modifiers
+(32077, 4414, 2), -- Armor Type
+(32077, 4415, 1), -- Weapon Type
+(32077, 4416, 19), -- Races
 -- Ice Sculpture
 (32078, 4045, 1), -- Resist Full Magic Attack
-(32078, 4390, 1), -- Mystic Immunity
-(32078, 4408, 1), -- HP Increase (1x)
-(32078, 4409, 1), -- MP Increase (1x)
-(32078, 4410, 11), -- Average P. Atk.
-(32078, 4411, 11), -- Average M. Atk.
-(32078, 4412, 11), -- Average P. Def.
-(32078, 4413, 11), -- Average M. Def.
-(32078, 4414, 2), -- Standard Type
-(32078, 4415, 1), -- Bare Hands
-(32078, 4416, 19), -- Others
+(32078, 4390, 1), -- NPC Abnormal Immunity
+(32078, 4408, 1), -- HP Modifiers
+(32078, 4409, 1), -- MP Modifiers
+(32078, 4410, 11), -- P. Atk. Modifiers
+(32078, 4411, 11), -- M. Atk. Modifiers
+(32078, 4412, 11), -- P. Def. Modifiers
+(32078, 4413, 11), -- M. Def. Modifiers
+(32078, 4414, 2), -- Armor Type
+(32078, 4415, 1), -- Weapon Type
+(32078, 4416, 19), -- Races
 -- Ice Sculpture
 (32079, 4045, 1), -- Resist Full Magic Attack
-(32079, 4390, 1), -- Mystic Immunity
-(32079, 4408, 1), -- HP Increase (1x)
-(32079, 4409, 1), -- MP Increase (1x)
-(32079, 4410, 11), -- Average P. Atk.
-(32079, 4411, 11), -- Average M. Atk.
-(32079, 4412, 11), -- Average P. Def.
-(32079, 4413, 11), -- Average M. Def.
-(32079, 4414, 2), -- Standard Type
-(32079, 4415, 1), -- Bare Hands
-(32079, 4416, 19), -- Others
+(32079, 4390, 1), -- NPC Abnormal Immunity
+(32079, 4408, 1), -- HP Modifiers
+(32079, 4409, 1), -- MP Modifiers
+(32079, 4410, 11), -- P. Atk. Modifiers
+(32079, 4411, 11), -- M. Atk. Modifiers
+(32079, 4412, 11), -- P. Def. Modifiers
+(32079, 4413, 11), -- M. Def. Modifiers
+(32079, 4414, 2), -- Armor Type
+(32079, 4415, 1), -- Weapon Type
+(32079, 4416, 19), -- Races
 -- Dion Territory Manager
 (32082, 4045, 1), -- Resist Full Magic Attack
-(32082, 4408, 1), -- HP Increase (1x)
-(32082, 4409, 1), -- MP Increase (1x)
-(32082, 4410, 11), -- Average P. Atk.
-(32082, 4411, 11), -- Average M. Atk.
-(32082, 4412, 11), -- Average P. Def.
-(32082, 4413, 11), -- Average M. Def.
-(32082, 4414, 2), -- Standard Type
-(32082, 4415, 1), -- Bare Hands
-(32082, 4416, 14), -- Humans
+(32082, 4408, 1), -- HP Modifiers
+(32082, 4409, 1), -- MP Modifiers
+(32082, 4410, 11), -- P. Atk. Modifiers
+(32082, 4411, 11), -- M. Atk. Modifiers
+(32082, 4412, 11), -- P. Def. Modifiers
+(32082, 4413, 11), -- M. Def. Modifiers
+(32082, 4414, 2), -- Armor Type
+(32082, 4415, 1), -- Weapon Type
+(32082, 4416, 14), -- Races
 -- Giran Territory Manager
 (32083, 4045, 1), -- Resist Full Magic Attack
-(32083, 4408, 1), -- HP Increase (1x)
-(32083, 4409, 1), -- MP Increase (1x)
-(32083, 4410, 11), -- Average P. Atk.
-(32083, 4411, 11), -- Average M. Atk.
-(32083, 4412, 11), -- Average P. Def.
-(32083, 4413, 11), -- Average M. Def.
-(32083, 4414, 2), -- Standard Type
-(32083, 4415, 1), -- Bare Hands
-(32083, 4416, 14), -- Humans
+(32083, 4408, 1), -- HP Modifiers
+(32083, 4409, 1), -- MP Modifiers
+(32083, 4410, 11), -- P. Atk. Modifiers
+(32083, 4411, 11), -- M. Atk. Modifiers
+(32083, 4412, 11), -- P. Def. Modifiers
+(32083, 4413, 11), -- M. Def. Modifiers
+(32083, 4414, 2), -- Armor Type
+(32083, 4415, 1), -- Weapon Type
+(32083, 4416, 14), -- Races
 -- Oren Territory Manager
 (32084, 4045, 1), -- Resist Full Magic Attack
-(32084, 4408, 1), -- HP Increase (1x)
-(32084, 4409, 1), -- MP Increase (1x)
-(32084, 4410, 11), -- Average P. Atk.
-(32084, 4411, 11), -- Average M. Atk.
-(32084, 4412, 11), -- Average P. Def.
-(32084, 4413, 11), -- Average M. Def.
-(32084, 4414, 2), -- Standard Type
-(32084, 4415, 1), -- Bare Hands
-(32084, 4416, 14), -- Humans
+(32084, 4408, 1), -- HP Modifiers
+(32084, 4409, 1), -- MP Modifiers
+(32084, 4410, 11), -- P. Atk. Modifiers
+(32084, 4411, 11), -- M. Atk. Modifiers
+(32084, 4412, 11), -- P. Def. Modifiers
+(32084, 4413, 11), -- M. Def. Modifiers
+(32084, 4414, 2), -- Armor Type
+(32084, 4415, 1), -- Weapon Type
+(32084, 4416, 14), -- Races
 -- Aden Territory Manager
 (32085, 4045, 1), -- Resist Full Magic Attack
-(32085, 4408, 1), -- HP Increase (1x)
-(32085, 4409, 1), -- MP Increase (1x)
-(32085, 4410, 11), -- Average P. Atk.
-(32085, 4411, 11), -- Average M. Atk.
-(32085, 4412, 11), -- Average P. Def.
-(32085, 4413, 11), -- Average M. Def.
-(32085, 4414, 2), -- Standard Type
-(32085, 4415, 1), -- Bare Hands
-(32085, 4416, 14), -- Humans
+(32085, 4408, 1), -- HP Modifiers
+(32085, 4409, 1), -- MP Modifiers
+(32085, 4410, 11), -- P. Atk. Modifiers
+(32085, 4411, 11), -- M. Atk. Modifiers
+(32085, 4412, 11), -- P. Def. Modifiers
+(32085, 4413, 11), -- M. Def. Modifiers
+(32085, 4414, 2), -- Armor Type
+(32085, 4415, 1), -- Weapon Type
+(32085, 4416, 14), -- Races
 -- Innadril Territory Manager
 (32086, 4045, 1), -- Resist Full Magic Attack
-(32086, 4408, 1), -- HP Increase (1x)
-(32086, 4409, 1), -- MP Increase (1x)
-(32086, 4410, 11), -- Average P. Atk.
-(32086, 4411, 11), -- Average M. Atk.
-(32086, 4412, 11), -- Average P. Def.
-(32086, 4413, 11), -- Average M. Def.
-(32086, 4414, 2), -- Standard Type
-(32086, 4415, 1), -- Bare Hands
-(32086, 4416, 14), -- Humans
+(32086, 4408, 1), -- HP Modifiers
+(32086, 4409, 1), -- MP Modifiers
+(32086, 4410, 11), -- P. Atk. Modifiers
+(32086, 4411, 11), -- M. Atk. Modifiers
+(32086, 4412, 11), -- P. Def. Modifiers
+(32086, 4413, 11), -- M. Def. Modifiers
+(32086, 4414, 2), -- Armor Type
+(32086, 4415, 1), -- Weapon Type
+(32086, 4416, 14), -- Races
 -- Schuttgart Territory Manager
 (32087, 4045, 1), -- Resist Full Magic Attack
-(32087, 4408, 1), -- HP Increase (1x)
-(32087, 4409, 1), -- MP Increase (1x)
-(32087, 4410, 11), -- Average P. Atk.
-(32087, 4411, 11), -- Average M. Atk.
-(32087, 4412, 11), -- Average P. Def.
-(32087, 4413, 11), -- Average M. Def.
-(32087, 4414, 2), -- Standard Type
-(32087, 4415, 1), -- Bare Hands
-(32087, 4416, 14), -- Humans
+(32087, 4408, 1), -- HP Modifiers
+(32087, 4409, 1), -- MP Modifiers
+(32087, 4410, 11), -- P. Atk. Modifiers
+(32087, 4411, 11), -- M. Atk. Modifiers
+(32087, 4412, 11), -- P. Def. Modifiers
+(32087, 4413, 11), -- M. Def. Modifiers
+(32087, 4414, 2), -- Armor Type
+(32087, 4415, 1), -- Weapon Type
+(32087, 4416, 14), -- Races
 -- Goddard Territory Manager
 (32088, 4045, 1), -- Resist Full Magic Attack
-(32088, 4408, 1), -- HP Increase (1x)
-(32088, 4409, 1), -- MP Increase (1x)
-(32088, 4410, 11), -- Average P. Atk.
-(32088, 4411, 11), -- Average M. Atk.
-(32088, 4412, 11), -- Average P. Def.
-(32088, 4413, 11), -- Average M. Def.
-(32088, 4414, 2), -- Standard Type
-(32088, 4415, 1), -- Bare Hands
-(32088, 4416, 14), -- Humans
+(32088, 4408, 1), -- HP Modifiers
+(32088, 4409, 1), -- MP Modifiers
+(32088, 4410, 11), -- P. Atk. Modifiers
+(32088, 4411, 11), -- M. Atk. Modifiers
+(32088, 4412, 11), -- P. Def. Modifiers
+(32088, 4413, 11), -- M. Def. Modifiers
+(32088, 4414, 2), -- Armor Type
+(32088, 4415, 1), -- Weapon Type
+(32088, 4416, 14), -- Races
 -- Rune Territory Manager
 (32089, 4045, 1), -- Resist Full Magic Attack
-(32089, 4408, 1), -- HP Increase (1x)
-(32089, 4409, 1), -- MP Increase (1x)
-(32089, 4410, 11), -- Average P. Atk.
-(32089, 4411, 11), -- Average M. Atk.
-(32089, 4412, 11), -- Average P. Def.
-(32089, 4413, 11), -- Average M. Def.
-(32089, 4414, 2), -- Standard Type
-(32089, 4415, 1), -- Bare Hands
-(32089, 4416, 14), -- Humans
+(32089, 4408, 1), -- HP Modifiers
+(32089, 4409, 1), -- MP Modifiers
+(32089, 4410, 11), -- P. Atk. Modifiers
+(32089, 4411, 11), -- M. Atk. Modifiers
+(32089, 4412, 11), -- P. Def. Modifiers
+(32089, 4413, 11), -- M. Def. Modifiers
+(32089, 4414, 2), -- Armor Type
+(32089, 4415, 1), -- Weapon Type
+(32089, 4416, 14), -- Races
 -- Dead Leopard's Carcass
 (32090, 4045, 1), -- Resist Full Magic Attack
-(32090, 4408, 1), -- HP Increase (1x)
-(32090, 4409, 1), -- MP Increase (1x)
-(32090, 4410, 11), -- Average P. Atk.
-(32090, 4411, 11), -- Average M. Atk.
-(32090, 4412, 11), -- Average P. Def.
-(32090, 4413, 11), -- Average M. Def.
-(32090, 4414, 2), -- Standard Type
-(32090, 4415, 1), -- Bare Hands
-(32090, 4416, 3), -- Beasts
+(32090, 4408, 1), -- HP Modifiers
+(32090, 4409, 1), -- MP Modifiers
+(32090, 4410, 11), -- P. Atk. Modifiers
+(32090, 4411, 11), -- M. Atk. Modifiers
+(32090, 4412, 11), -- P. Def. Modifiers
+(32090, 4413, 11), -- M. Def. Modifiers
+(32090, 4414, 2), -- Armor Type
+(32090, 4415, 1), -- Weapon Type
+(32090, 4416, 3), -- Races
 -- Omega's Cat
 (32091, 4045, 1), -- Resist Full Magic Attack
-(32091, 4408, 1), -- HP Increase (1x)
-(32091, 4409, 1), -- MP Increase (1x)
-(32091, 4410, 11), -- Average P. Atk.
-(32091, 4411, 11), -- Average M. Atk.
-(32091, 4412, 11), -- Average P. Def.
-(32091, 4413, 11), -- Average M. Def.
-(32091, 4414, 2), -- Standard Type
-(32091, 4415, 1), -- Bare Hands
-(32091, 4416, 7), -- Spirits
+(32091, 4408, 1), -- HP Modifiers
+(32091, 4409, 1), -- MP Modifiers
+(32091, 4410, 11), -- P. Atk. Modifiers
+(32091, 4411, 11), -- M. Atk. Modifiers
+(32091, 4412, 11), -- P. Def. Modifiers
+(32091, 4413, 11), -- M. Def. Modifiers
+(32091, 4414, 2), -- Armor Type
+(32091, 4415, 1), -- Weapon Type
+(32091, 4416, 7), -- Races
 -- Alder
 (32092, 4045, 1), -- Resist Full Magic Attack
-(32092, 4408, 1), -- HP Increase (1x)
-(32092, 4409, 1), -- MP Increase (1x)
-(32092, 4410, 11), -- Average P. Atk.
-(32092, 4411, 11), -- Average M. Atk.
-(32092, 4412, 11), -- Average P. Def.
-(32092, 4413, 11), -- Average M. Def.
-(32092, 4414, 2), -- Standard Type
-(32092, 4415, 3), -- One-handed Sword
-(32092, 4416, 18), -- Dwarves
+(32092, 4408, 1), -- HP Modifiers
+(32092, 4409, 1), -- MP Modifiers
+(32092, 4410, 11), -- P. Atk. Modifiers
+(32092, 4411, 11), -- M. Atk. Modifiers
+(32092, 4412, 11), -- P. Def. Modifiers
+(32092, 4413, 11), -- M. Def. Modifiers
+(32092, 4414, 2), -- Armor Type
+(32092, 4415, 3), -- Weapon Type
+(32092, 4416, 18), -- Races
 -- Bolin
 (32093, 4045, 1), -- Resist Full Magic Attack
-(32093, 4408, 1), -- HP Increase (1x)
-(32093, 4409, 1), -- MP Increase (1x)
-(32093, 4410, 11), -- Average P. Atk.
-(32093, 4411, 11), -- Average M. Atk.
-(32093, 4412, 11), -- Average P. Def.
-(32093, 4413, 11), -- Average M. Def.
-(32093, 4414, 2), -- Standard Type
-(32093, 4415, 3), -- One-handed Sword
-(32093, 4416, 18), -- Dwarves
+(32093, 4408, 1), -- HP Modifiers
+(32093, 4409, 1), -- MP Modifiers
+(32093, 4410, 11), -- P. Atk. Modifiers
+(32093, 4411, 11), -- M. Atk. Modifiers
+(32093, 4412, 11), -- P. Def. Modifiers
+(32093, 4413, 11), -- M. Def. Modifiers
+(32093, 4414, 2), -- Armor Type
+(32093, 4415, 3), -- Weapon Type
+(32093, 4416, 18), -- Races
 -- Schule
 (32094, 4045, 1), -- Resist Full Magic Attack
-(32094, 4408, 1), -- HP Increase (1x)
-(32094, 4409, 1), -- MP Increase (1x)
-(32094, 4410, 11), -- Average P. Atk.
-(32094, 4411, 11), -- Average M. Atk.
-(32094, 4412, 11), -- Average P. Def.
-(32094, 4413, 11), -- Average M. Def.
-(32094, 4414, 2), -- Standard Type
-(32094, 4415, 3), -- One-handed Sword
-(32094, 4416, 14), -- Humans
+(32094, 4408, 1), -- HP Modifiers
+(32094, 4409, 1), -- MP Modifiers
+(32094, 4410, 11), -- P. Atk. Modifiers
+(32094, 4411, 11), -- M. Atk. Modifiers
+(32094, 4412, 11), -- P. Def. Modifiers
+(32094, 4413, 11), -- M. Def. Modifiers
+(32094, 4414, 2), -- Armor Type
+(32094, 4415, 3), -- Weapon Type
+(32094, 4416, 14), -- Races
 -- Marie
 (32095, 4045, 1), -- Resist Full Magic Attack
-(32095, 4408, 1), -- HP Increase (1x)
-(32095, 4409, 1), -- MP Increase (1x)
-(32095, 4410, 11), -- Average P. Atk.
-(32095, 4411, 11), -- Average M. Atk.
-(32095, 4412, 11), -- Average P. Def.
-(32095, 4413, 11), -- Average M. Def.
-(32095, 4414, 2), -- Standard Type
-(32095, 4415, 3), -- One-handed Sword
-(32095, 4416, 14), -- Humans
+(32095, 4408, 1), -- HP Modifiers
+(32095, 4409, 1), -- MP Modifiers
+(32095, 4410, 11), -- P. Atk. Modifiers
+(32095, 4411, 11), -- M. Atk. Modifiers
+(32095, 4412, 11), -- P. Def. Modifiers
+(32095, 4413, 11), -- M. Def. Modifiers
+(32095, 4414, 2), -- Armor Type
+(32095, 4415, 3), -- Weapon Type
+(32095, 4416, 14), -- Races
 -- Helminter
 (32096, 4045, 1), -- Resist Full Magic Attack
-(32096, 4408, 1), -- HP Increase (1x)
-(32096, 4409, 1), -- MP Increase (1x)
-(32096, 4410, 11), -- Average P. Atk.
-(32096, 4411, 11), -- Average M. Atk.
-(32096, 4412, 11), -- Average P. Def.
-(32096, 4413, 11), -- Average M. Def.
-(32096, 4414, 2), -- Standard Type
-(32096, 4415, 3), -- One-handed Sword
-(32096, 4416, 16), -- Dark Elves
+(32096, 4408, 1), -- HP Modifiers
+(32096, 4409, 1), -- MP Modifiers
+(32096, 4410, 11), -- P. Atk. Modifiers
+(32096, 4411, 11), -- M. Atk. Modifiers
+(32096, 4412, 11), -- P. Def. Modifiers
+(32096, 4413, 11), -- M. Def. Modifiers
+(32096, 4414, 2), -- Armor Type
+(32096, 4415, 3), -- Weapon Type
+(32096, 4416, 16), -- Races
 -- Finker
 (32097, 4045, 1), -- Resist Full Magic Attack
-(32097, 4408, 1), -- HP Increase (1x)
-(32097, 4409, 1), -- MP Increase (1x)
-(32097, 4410, 11), -- Average P. Atk.
-(32097, 4411, 11), -- Average M. Atk.
-(32097, 4412, 11), -- Average P. Def.
-(32097, 4413, 11), -- Average M. Def.
-(32097, 4414, 2), -- Standard Type
-(32097, 4415, 3), -- One-handed Sword
-(32097, 4416, 17), -- Orcs
+(32097, 4408, 1), -- HP Modifiers
+(32097, 4409, 1), -- MP Modifiers
+(32097, 4410, 11), -- P. Atk. Modifiers
+(32097, 4411, 11), -- M. Atk. Modifiers
+(32097, 4412, 11), -- P. Def. Modifiers
+(32097, 4413, 11), -- M. Def. Modifiers
+(32097, 4414, 2), -- Armor Type
+(32097, 4415, 3), -- Weapon Type
+(32097, 4416, 17), -- Races
 -- Celes
 (32098, 4045, 1), -- Resist Full Magic Attack
-(32098, 4408, 1), -- HP Increase (1x)
-(32098, 4409, 1), -- MP Increase (1x)
-(32098, 4410, 11), -- Average P. Atk.
-(32098, 4411, 11), -- Average M. Atk.
-(32098, 4412, 11), -- Average P. Def.
-(32098, 4413, 11), -- Average M. Def.
-(32098, 4414, 2), -- Standard Type
-(32098, 4415, 3), -- One-handed Sword
-(32098, 4416, 14), -- Humans
+(32098, 4408, 1), -- HP Modifiers
+(32098, 4409, 1), -- MP Modifiers
+(32098, 4410, 11), -- P. Atk. Modifiers
+(32098, 4411, 11), -- M. Atk. Modifiers
+(32098, 4412, 11), -- P. Def. Modifiers
+(32098, 4413, 11), -- M. Def. Modifiers
+(32098, 4414, 2), -- Armor Type
+(32098, 4415, 3), -- Weapon Type
+(32098, 4416, 14), -- Races
 -- Tony the Cat
 (32099, 4045, 1), -- Resist Full Magic Attack
-(32099, 4408, 1), -- HP Increase (1x)
-(32099, 4409, 1), -- MP Increase (1x)
-(32099, 4410, 11), -- Average P. Atk.
-(32099, 4411, 11), -- Average M. Atk.
-(32099, 4412, 11), -- Average P. Def.
-(32099, 4413, 11), -- Average M. Def.
-(32099, 4414, 2), -- Standard Type
-(32099, 4415, 1), -- Bare Hands
-(32099, 4416, 7), -- Spirits
+(32099, 4408, 1), -- HP Modifiers
+(32099, 4409, 1), -- MP Modifiers
+(32099, 4410, 11), -- P. Atk. Modifiers
+(32099, 4411, 11), -- M. Atk. Modifiers
+(32099, 4412, 11), -- P. Def. Modifiers
+(32099, 4413, 11), -- M. Def. Modifiers
+(32099, 4414, 2), -- Armor Type
+(32099, 4415, 1), -- Weapon Type
+(32099, 4416, 7), -- Races
 -- Tony the Cat
 (32100, 4045, 1), -- Resist Full Magic Attack
-(32100, 4408, 1), -- HP Increase (1x)
-(32100, 4409, 1), -- MP Increase (1x)
-(32100, 4410, 11), -- Average P. Atk.
-(32100, 4411, 11), -- Average M. Atk.
-(32100, 4412, 11), -- Average P. Def.
-(32100, 4413, 11), -- Average M. Def.
-(32100, 4414, 2), -- Standard Type
-(32100, 4415, 1), -- Bare Hands
-(32100, 4416, 7), -- Spirits
+(32100, 4408, 1), -- HP Modifiers
+(32100, 4409, 1), -- MP Modifiers
+(32100, 4410, 11), -- P. Atk. Modifiers
+(32100, 4411, 11), -- M. Atk. Modifiers
+(32100, 4412, 11), -- P. Def. Modifiers
+(32100, 4413, 11), -- M. Def. Modifiers
+(32100, 4414, 2), -- Armor Type
+(32100, 4415, 1), -- Weapon Type
+(32100, 4416, 7), -- Races
 -- Tony the Cat
 (32101, 4045, 1), -- Resist Full Magic Attack
-(32101, 4408, 1), -- HP Increase (1x)
-(32101, 4409, 1), -- MP Increase (1x)
-(32101, 4410, 11), -- Average P. Atk.
-(32101, 4411, 11), -- Average M. Atk.
-(32101, 4412, 11), -- Average P. Def.
-(32101, 4413, 11), -- Average M. Def.
-(32101, 4414, 2), -- Standard Type
-(32101, 4415, 1), -- Bare Hands
-(32101, 4416, 7), -- Spirits
+(32101, 4408, 1), -- HP Modifiers
+(32101, 4409, 1), -- MP Modifiers
+(32101, 4410, 11), -- P. Atk. Modifiers
+(32101, 4411, 11), -- M. Atk. Modifiers
+(32101, 4412, 11), -- P. Def. Modifiers
+(32101, 4413, 11), -- M. Def. Modifiers
+(32101, 4414, 2), -- Armor Type
+(32101, 4415, 1), -- Weapon Type
+(32101, 4416, 7), -- Races
 -- Tony the Cat
 (32102, 4045, 1), -- Resist Full Magic Attack
-(32102, 4408, 1), -- HP Increase (1x)
-(32102, 4409, 1), -- MP Increase (1x)
-(32102, 4410, 11), -- Average P. Atk.
-(32102, 4411, 11), -- Average M. Atk.
-(32102, 4412, 11), -- Average P. Def.
-(32102, 4413, 11), -- Average M. Def.
-(32102, 4414, 2), -- Standard Type
-(32102, 4415, 1), -- Bare Hands
-(32102, 4416, 7), -- Spirits
+(32102, 4408, 1), -- HP Modifiers
+(32102, 4409, 1), -- MP Modifiers
+(32102, 4410, 11), -- P. Atk. Modifiers
+(32102, 4411, 11), -- M. Atk. Modifiers
+(32102, 4412, 11), -- P. Def. Modifiers
+(32102, 4413, 11), -- M. Def. Modifiers
+(32102, 4414, 2), -- Armor Type
+(32102, 4415, 1), -- Weapon Type
+(32102, 4416, 7), -- Races
 -- Telling the Cat
 (32103, 4045, 1), -- Resist Full Magic Attack
-(32103, 4408, 1), -- HP Increase (1x)
-(32103, 4409, 1), -- MP Increase (1x)
-(32103, 4410, 11), -- Average P. Atk.
-(32103, 4411, 11), -- Average M. Atk.
-(32103, 4412, 11), -- Average P. Def.
-(32103, 4413, 11), -- Average M. Def.
-(32103, 4414, 2), -- Standard Type
-(32103, 4415, 1), -- Bare Hands
-(32103, 4416, 7), -- Spirits
+(32103, 4408, 1), -- HP Modifiers
+(32103, 4409, 1), -- MP Modifiers
+(32103, 4410, 11), -- P. Atk. Modifiers
+(32103, 4411, 11), -- M. Atk. Modifiers
+(32103, 4412, 11), -- P. Def. Modifiers
+(32103, 4413, 11), -- M. Def. Modifiers
+(32103, 4414, 2), -- Armor Type
+(32103, 4415, 1), -- Weapon Type
+(32103, 4416, 7), -- Races
 -- Vervato
 (32104, 4045, 1), -- Resist Full Magic Attack
-(32104, 4408, 1), -- HP Increase (1x)
-(32104, 4409, 1), -- MP Increase (1x)
-(32104, 4410, 11), -- Average P. Atk.
-(32104, 4411, 11), -- Average M. Atk.
-(32104, 4412, 11), -- Average P. Def.
-(32104, 4413, 11), -- Average M. Def.
-(32104, 4414, 2), -- Standard Type
-(32104, 4415, 3), -- One-handed Sword
-(32104, 4416, 6), -- Humanoids
+(32104, 4408, 1), -- HP Modifiers
+(32104, 4409, 1), -- MP Modifiers
+(32104, 4410, 11), -- P. Atk. Modifiers
+(32104, 4411, 11), -- M. Atk. Modifiers
+(32104, 4412, 11), -- P. Def. Modifiers
+(32104, 4413, 11), -- M. Def. Modifiers
+(32104, 4414, 2), -- Armor Type
+(32104, 4415, 3), -- Weapon Type
+(32104, 4416, 6), -- Races
 -- Dinn
 (32105, 4045, 1), -- Resist Full Magic Attack
-(32105, 4408, 1), -- HP Increase (1x)
-(32105, 4409, 1), -- MP Increase (1x)
-(32105, 4410, 11), -- Average P. Atk.
-(32105, 4411, 11), -- Average M. Atk.
-(32105, 4412, 11), -- Average P. Def.
-(32105, 4413, 11), -- Average M. Def.
-(32105, 4414, 2), -- Standard Type
-(32105, 4415, 3), -- One-handed Sword
-(32105, 4416, 14), -- Humans
+(32105, 4408, 1), -- HP Modifiers
+(32105, 4409, 1), -- MP Modifiers
+(32105, 4410, 11), -- P. Atk. Modifiers
+(32105, 4411, 11), -- M. Atk. Modifiers
+(32105, 4412, 11), -- P. Def. Modifiers
+(32105, 4413, 11), -- M. Def. Modifiers
+(32105, 4414, 2), -- Armor Type
+(32105, 4415, 3), -- Weapon Type
+(32105, 4416, 14), -- Races
 -- Singsing
 (32106, 4045, 1), -- Resist Full Magic Attack
-(32106, 4408, 1), -- HP Increase (1x)
-(32106, 4409, 1), -- MP Increase (1x)
-(32106, 4410, 11), -- Average P. Atk.
-(32106, 4411, 11), -- Average M. Atk.
-(32106, 4412, 11), -- Average P. Def.
-(32106, 4413, 11), -- Average M. Def.
-(32106, 4414, 2), -- Standard Type
-(32106, 4415, 3), -- One-handed Sword
-(32106, 4416, 14), -- Humans
+(32106, 4408, 1), -- HP Modifiers
+(32106, 4409, 1), -- MP Modifiers
+(32106, 4410, 11), -- P. Atk. Modifiers
+(32106, 4411, 11), -- M. Atk. Modifiers
+(32106, 4412, 11), -- P. Def. Modifiers
+(32106, 4413, 11), -- M. Def. Modifiers
+(32106, 4414, 2), -- Armor Type
+(32106, 4415, 3), -- Weapon Type
+(32106, 4416, 14), -- Races
 -- Teleportation Cubic
 (32107, 4045, 1), -- Resist Full Magic Attack
-(32107, 4390, 1), -- Mystic Immunity
-(32107, 4408, 1), -- HP Increase (1x)
-(32107, 4409, 1), -- MP Increase (1x)
-(32107, 4410, 11), -- Average P. Atk.
-(32107, 4411, 11), -- Average M. Atk.
-(32107, 4412, 11), -- Average P. Def.
-(32107, 4413, 11), -- Average M. Def.
-(32107, 4414, 2), -- Standard Type
-(32107, 4415, 3), -- One-handed Sword
-(32107, 4416, 19), -- Others
+(32107, 4390, 1), -- NPC Abnormal Immunity
+(32107, 4408, 1), -- HP Modifiers
+(32107, 4409, 1), -- MP Modifiers
+(32107, 4410, 11), -- P. Atk. Modifiers
+(32107, 4411, 11), -- M. Atk. Modifiers
+(32107, 4412, 11), -- P. Def. Modifiers
+(32107, 4413, 11), -- M. Def. Modifiers
+(32107, 4414, 2), -- Armor Type
+(32107, 4415, 3), -- Weapon Type
+(32107, 4416, 19), -- Races
 -- 
 (32108, 4045, 1), -- Resist Full Magic Attack
-(32108, 4408, 1), -- HP Increase (1x)
-(32108, 4409, 1), -- MP Increase (1x)
-(32108, 4410, 11), -- Average P. Atk.
-(32108, 4411, 11), -- Average M. Atk.
-(32108, 4412, 11), -- Average P. Def.
-(32108, 4413, 11), -- Average M. Def.
-(32108, 4414, 2), -- Standard Type
-(32108, 4415, 3), -- One-handed Sword
-(32108, 4416, 6), -- Humanoids
+(32108, 4408, 1), -- HP Modifiers
+(32108, 4409, 1), -- MP Modifiers
+(32108, 4410, 11), -- P. Atk. Modifiers
+(32108, 4411, 11), -- M. Atk. Modifiers
+(32108, 4412, 11), -- P. Def. Modifiers
+(32108, 4413, 11), -- M. Def. Modifiers
+(32108, 4414, 2), -- Armor Type
+(32108, 4415, 3), -- Weapon Type
+(32108, 4416, 6), -- Races
 -- Shilen's Stone Statue
 (32109, 4045, 1), -- Resist Full Magic Attack
-(32109, 4390, 1), -- Mystic Immunity
-(32109, 4408, 1), -- HP Increase (1x)
-(32109, 4409, 1), -- MP Increase (1x)
-(32109, 4410, 11), -- Average P. Atk.
-(32109, 4411, 11), -- Average M. Atk.
-(32109, 4412, 11), -- Average P. Def.
-(32109, 4413, 11), -- Average M. Def.
-(32109, 4414, 2), -- Standard Type
-(32109, 4415, 3), -- One-handed Sword
-(32109, 4416, 19), -- Others
+(32109, 4390, 1), -- NPC Abnormal Immunity
+(32109, 4408, 1), -- HP Modifiers
+(32109, 4409, 1), -- MP Modifiers
+(32109, 4410, 11), -- P. Atk. Modifiers
+(32109, 4411, 11), -- M. Atk. Modifiers
+(32109, 4412, 11), -- P. Def. Modifiers
+(32109, 4413, 11), -- M. Def. Modifiers
+(32109, 4414, 2), -- Armor Type
+(32109, 4415, 3), -- Weapon Type
+(32109, 4416, 19), -- Races
 -- 
 (32110, 4045, 1), -- Resist Full Magic Attack
-(32110, 4390, 1), -- Mystic Immunity
-(32110, 4408, 1), -- HP Increase (1x)
-(32110, 4409, 1), -- MP Increase (1x)
-(32110, 4410, 11), -- Average P. Atk.
-(32110, 4411, 11), -- Average M. Atk.
-(32110, 4412, 11), -- Average P. Def.
-(32110, 4413, 11), -- Average M. Def.
-(32110, 4414, 2), -- Standard Type
-(32110, 4415, 3), -- One-handed Sword
-(32110, 4416, 2), -- Magic Creatures
+(32110, 4390, 1), -- NPC Abnormal Immunity
+(32110, 4408, 1), -- HP Modifiers
+(32110, 4409, 1), -- MP Modifiers
+(32110, 4410, 11), -- P. Atk. Modifiers
+(32110, 4411, 11), -- M. Atk. Modifiers
+(32110, 4412, 11), -- P. Def. Modifiers
+(32110, 4413, 11), -- M. Def. Modifiers
+(32110, 4414, 2), -- Armor Type
+(32110, 4415, 3), -- Weapon Type
+(32110, 4416, 2), -- Races
 -- Orahochin
 (32111, 4045, 1), -- Resist Full Magic Attack
-(32111, 4408, 1), -- HP Increase (1x)
-(32111, 4409, 1), -- MP Increase (1x)
-(32111, 4410, 11), -- Average P. Atk.
-(32111, 4411, 11), -- Average M. Atk.
-(32111, 4412, 11), -- Average P. Def.
-(32111, 4413, 11), -- Average M. Def.
-(32111, 4414, 2), -- Standard Type
-(32111, 4416, 6), -- Humanoids
+(32111, 4408, 1), -- HP Modifiers
+(32111, 4409, 1), -- MP Modifiers
+(32111, 4410, 11), -- P. Atk. Modifiers
+(32111, 4411, 11), -- M. Atk. Modifiers
+(32111, 4412, 11), -- P. Def. Modifiers
+(32111, 4413, 11), -- M. Def. Modifiers
+(32111, 4414, 2), -- Armor Type
+(32111, 4416, 6), -- Races
 -- Gariachin
 (32112, 4045, 1), -- Resist Full Magic Attack
-(32112, 4408, 1), -- HP Increase (1x)
-(32112, 4409, 1), -- MP Increase (1x)
-(32112, 4410, 11), -- Average P. Atk.
-(32112, 4411, 11), -- Average M. Atk.
-(32112, 4412, 11), -- Average P. Def.
-(32112, 4413, 11), -- Average M. Def.
-(32112, 4414, 2), -- Standard Type
-(32112, 4415, 3), -- One-handed Sword
-(32112, 4416, 6), -- Humanoids
+(32112, 4408, 1), -- HP Modifiers
+(32112, 4409, 1), -- MP Modifiers
+(32112, 4410, 11), -- P. Atk. Modifiers
+(32112, 4411, 11), -- M. Atk. Modifiers
+(32112, 4412, 11), -- P. Def. Modifiers
+(32112, 4413, 11), -- M. Def. Modifiers
+(32112, 4414, 2), -- Armor Type
+(32112, 4415, 3), -- Weapon Type
+(32112, 4416, 6), -- Races
 -- Marquez
 (32113, 4045, 1), -- Resist Full Magic Attack
-(32113, 4408, 1), -- HP Increase (1x)
-(32113, 4409, 1), -- MP Increase (1x)
-(32113, 4410, 11), -- Average P. Atk.
-(32113, 4411, 11), -- Average M. Atk.
-(32113, 4412, 11), -- Average P. Def.
-(32113, 4413, 11), -- Average M. Def.
-(32113, 4414, 2), -- Standard Type
-(32113, 4415, 3), -- One-handed Sword
-(32113, 4416, 14), -- Humans
+(32113, 4408, 1), -- HP Modifiers
+(32113, 4409, 1), -- MP Modifiers
+(32113, 4410, 11), -- P. Atk. Modifiers
+(32113, 4411, 11), -- M. Atk. Modifiers
+(32113, 4412, 11), -- P. Def. Modifiers
+(32113, 4413, 11), -- M. Def. Modifiers
+(32113, 4414, 2), -- Armor Type
+(32113, 4415, 3), -- Weapon Type
+(32113, 4416, 14), -- Races
 -- Mushika
 (32114, 4045, 1), -- Resist Full Magic Attack
-(32114, 4408, 1), -- HP Increase (1x)
-(32114, 4409, 1), -- MP Increase (1x)
-(32114, 4410, 11), -- Average P. Atk.
-(32114, 4411, 11), -- Average M. Atk.
-(32114, 4412, 11), -- Average P. Def.
-(32114, 4413, 11), -- Average M. Def.
-(32114, 4414, 2), -- Standard Type
-(32114, 4415, 3), -- One-handed Sword
-(32114, 4416, 6), -- Humanoids
+(32114, 4408, 1), -- HP Modifiers
+(32114, 4409, 1), -- MP Modifiers
+(32114, 4410, 11), -- P. Atk. Modifiers
+(32114, 4411, 11), -- M. Atk. Modifiers
+(32114, 4412, 11), -- P. Def. Modifiers
+(32114, 4413, 11), -- M. Def. Modifiers
+(32114, 4414, 2), -- Armor Type
+(32114, 4415, 3), -- Weapon Type
+(32114, 4416, 6), -- Races
 -- Asamah
 (32115, 4045, 1), -- Resist Full Magic Attack
-(32115, 4408, 1), -- HP Increase (1x)
-(32115, 4409, 1), -- MP Increase (1x)
-(32115, 4410, 11), -- Average P. Atk.
-(32115, 4411, 11), -- Average M. Atk.
-(32115, 4412, 11), -- Average P. Def.
-(32115, 4413, 11), -- Average M. Def.
-(32115, 4414, 2), -- Standard Type
-(32115, 4415, 3), -- One-handed Sword
-(32115, 4416, 6), -- Humanoids
+(32115, 4408, 1), -- HP Modifiers
+(32115, 4409, 1), -- MP Modifiers
+(32115, 4410, 11), -- P. Atk. Modifiers
+(32115, 4411, 11), -- M. Atk. Modifiers
+(32115, 4412, 11), -- P. Def. Modifiers
+(32115, 4413, 11), -- M. Def. Modifiers
+(32115, 4414, 2), -- Armor Type
+(32115, 4415, 3), -- Weapon Type
+(32115, 4416, 6), -- Races
 -- Kirikachin
 (32116, 4045, 1), -- Resist Full Magic Attack
-(32116, 4408, 1), -- HP Increase (1x)
-(32116, 4409, 1), -- MP Increase (1x)
-(32116, 4410, 11), -- Average P. Atk.
-(32116, 4411, 11), -- Average M. Atk.
-(32116, 4412, 11), -- Average P. Def.
-(32116, 4413, 11), -- Average M. Def.
-(32116, 4414, 2), -- Standard Type
-(32116, 4415, 3), -- One-handed Sword
-(32116, 4416, 6), -- Humanoids
+(32116, 4408, 1), -- HP Modifiers
+(32116, 4409, 1), -- MP Modifiers
+(32116, 4410, 11), -- P. Atk. Modifiers
+(32116, 4411, 11), -- M. Atk. Modifiers
+(32116, 4412, 11), -- P. Def. Modifiers
+(32116, 4413, 11), -- M. Def. Modifiers
+(32116, 4414, 2), -- Armor Type
+(32116, 4415, 3), -- Weapon Type
+(32116, 4416, 6), -- Races
 -- Karakawei
 (32117, 4045, 1), -- Resist Full Magic Attack
-(32117, 4408, 1), -- HP Increase (1x)
-(32117, 4409, 1), -- MP Increase (1x)
-(32117, 4410, 11), -- Average P. Atk.
-(32117, 4411, 11), -- Average M. Atk.
-(32117, 4412, 11), -- Average P. Def.
-(32117, 4413, 11), -- Average M. Def.
-(32117, 4414, 2), -- Standard Type
-(32117, 4415, 3), -- One-handed Sword
-(32117, 4416, 6), -- Humanoids
+(32117, 4408, 1), -- HP Modifiers
+(32117, 4409, 1), -- MP Modifiers
+(32117, 4410, 11), -- P. Atk. Modifiers
+(32117, 4411, 11), -- M. Atk. Modifiers
+(32117, 4412, 11), -- P. Def. Modifiers
+(32117, 4413, 11), -- M. Def. Modifiers
+(32117, 4414, 2), -- Armor Type
+(32117, 4415, 3), -- Weapon Type
+(32117, 4416, 6), -- Races
 -- Mantarasa Egg
 (32118, 4045, 1), -- Resist Full Magic Attack
-(32118, 4390, 1), -- Mystic Immunity
-(32118, 4408, 1), -- HP Increase (1x)
-(32118, 4409, 1), -- MP Increase (1x)
-(32118, 4410, 11), -- Average P. Atk.
-(32118, 4411, 11), -- Average M. Atk.
-(32118, 4412, 11), -- Average P. Def.
-(32118, 4413, 11), -- Average M. Def.
-(32118, 4414, 2), -- Standard Type
-(32118, 4415, 3), -- One-handed Sword
-(32118, 4416, 19), -- Others
+(32118, 4390, 1), -- NPC Abnormal Immunity
+(32118, 4408, 1), -- HP Modifiers
+(32118, 4409, 1), -- MP Modifiers
+(32118, 4410, 11), -- P. Atk. Modifiers
+(32118, 4411, 11), -- M. Atk. Modifiers
+(32118, 4412, 11), -- P. Def. Modifiers
+(32118, 4413, 11), -- M. Def. Modifiers
+(32118, 4414, 2), -- Armor Type
+(32118, 4415, 3), -- Weapon Type
+(32118, 4416, 19), -- Races
 -- Ulu Kaimu
 (32119, 4045, 1), -- Resist Full Magic Attack
-(32119, 4390, 1), -- Mystic Immunity
-(32119, 4408, 1), -- HP Increase (1x)
-(32119, 4409, 1), -- MP Increase (1x)
-(32119, 4410, 11), -- Average P. Atk.
-(32119, 4411, 11), -- Average M. Atk.
-(32119, 4412, 11), -- Average P. Def.
-(32119, 4413, 11), -- Average M. Def.
-(32119, 4414, 2), -- Standard Type
-(32119, 4415, 3), -- One-handed Sword
-(32119, 4416, 2), -- Magic Creatures
+(32119, 4390, 1), -- NPC Abnormal Immunity
+(32119, 4408, 1), -- HP Modifiers
+(32119, 4409, 1), -- MP Modifiers
+(32119, 4410, 11), -- P. Atk. Modifiers
+(32119, 4411, 11), -- M. Atk. Modifiers
+(32119, 4412, 11), -- P. Def. Modifiers
+(32119, 4413, 11), -- M. Def. Modifiers
+(32119, 4414, 2), -- Armor Type
+(32119, 4415, 3), -- Weapon Type
+(32119, 4416, 2), -- Races
 -- Balu Kaimu
 (32120, 4045, 1), -- Resist Full Magic Attack
-(32120, 4390, 1), -- Mystic Immunity
-(32120, 4408, 1), -- HP Increase (1x)
-(32120, 4409, 1), -- MP Increase (1x)
-(32120, 4410, 11), -- Average P. Atk.
-(32120, 4411, 11), -- Average M. Atk.
-(32120, 4412, 11), -- Average P. Def.
-(32120, 4413, 11), -- Average M. Def.
-(32120, 4414, 2), -- Standard Type
-(32120, 4415, 3), -- One-handed Sword
-(32120, 4416, 2), -- Magic Creatures
+(32120, 4390, 1), -- NPC Abnormal Immunity
+(32120, 4408, 1), -- HP Modifiers
+(32120, 4409, 1), -- MP Modifiers
+(32120, 4410, 11), -- P. Atk. Modifiers
+(32120, 4411, 11), -- M. Atk. Modifiers
+(32120, 4412, 11), -- P. Def. Modifiers
+(32120, 4413, 11), -- M. Def. Modifiers
+(32120, 4414, 2), -- Armor Type
+(32120, 4415, 3), -- Weapon Type
+(32120, 4416, 2), -- Races
 -- Chuta Kaimu
 (32121, 4045, 1), -- Resist Full Magic Attack
-(32121, 4390, 1), -- Mystic Immunity
-(32121, 4408, 1), -- HP Increase (1x)
-(32121, 4409, 1), -- MP Increase (1x)
-(32121, 4410, 11), -- Average P. Atk.
-(32121, 4411, 11), -- Average M. Atk.
-(32121, 4412, 11), -- Average P. Def.
-(32121, 4413, 11), -- Average M. Def.
-(32121, 4414, 2), -- Standard Type
-(32121, 4415, 3), -- One-handed Sword
-(32121, 4416, 2), -- Magic Creatures
+(32121, 4390, 1), -- NPC Abnormal Immunity
+(32121, 4408, 1), -- HP Modifiers
+(32121, 4409, 1), -- MP Modifiers
+(32121, 4410, 11), -- P. Atk. Modifiers
+(32121, 4411, 11), -- M. Atk. Modifiers
+(32121, 4412, 11), -- P. Def. Modifiers
+(32121, 4413, 11), -- M. Def. Modifiers
+(32121, 4414, 2), -- Armor Type
+(32121, 4415, 3), -- Weapon Type
+(32121, 4416, 2), -- Races
 -- Warrior's Grave
 (32122, 4045, 1), -- Resist Full Magic Attack
-(32122, 4390, 1), -- Mystic Immunity
-(32122, 4408, 1), -- HP Increase (1x)
-(32122, 4409, 1), -- MP Increase (1x)
-(32122, 4410, 11), -- Average P. Atk.
-(32122, 4411, 11), -- Average M. Atk.
-(32122, 4412, 11), -- Average P. Def.
-(32122, 4413, 11), -- Average M. Def.
-(32122, 4414, 2), -- Standard Type
-(32122, 4415, 3), -- One-handed Sword
-(32122, 4416, 2), -- Magic Creatures
+(32122, 4390, 1), -- NPC Abnormal Immunity
+(32122, 4408, 1), -- HP Modifiers
+(32122, 4409, 1), -- MP Modifiers
+(32122, 4410, 11), -- P. Atk. Modifiers
+(32122, 4411, 11), -- M. Atk. Modifiers
+(32122, 4412, 11), -- P. Def. Modifiers
+(32122, 4413, 11), -- M. Def. Modifiers
+(32122, 4414, 2), -- Armor Type
+(32122, 4415, 3), -- Weapon Type
+(32122, 4416, 2), -- Races
 -- Valakas
 (32123, 4045, 1), -- Resist Full Magic Attack
-(32123, 4408, 1), -- HP Increase (1x)
-(32123, 4409, 1), -- MP Increase (1x)
-(32123, 4410, 11), -- Average P. Atk.
-(32123, 4411, 11), -- Average M. Atk.
-(32123, 4412, 11), -- Average P. Def.
-(32123, 4413, 11), -- Average M. Def.
-(32123, 4414, 2), -- Standard Type
-(32123, 4415, 3), -- One-handed Sword
-(32123, 4416, 10), -- Dragons
+(32123, 4408, 1), -- HP Modifiers
+(32123, 4409, 1), -- MP Modifiers
+(32123, 4410, 11), -- P. Atk. Modifiers
+(32123, 4411, 11), -- M. Atk. Modifiers
+(32123, 4412, 11), -- P. Def. Modifiers
+(32123, 4413, 11), -- M. Def. Modifiers
+(32123, 4414, 2), -- Armor Type
+(32123, 4415, 3), -- Weapon Type
+(32123, 4416, 10), -- Races
 -- Great Soul
 (32124, 4045, 1), -- Resist Full Magic Attack
-(32124, 4390, 1), -- Mystic Immunity
-(32124, 4408, 1), -- HP Increase (1x)
-(32124, 4409, 1), -- MP Increase (1x)
-(32124, 4410, 11), -- Average P. Atk.
-(32124, 4411, 11), -- Average M. Atk.
-(32124, 4412, 11), -- Average P. Def.
-(32124, 4413, 11), -- Average M. Def.
-(32124, 4414, 2), -- Standard Type
-(32124, 4415, 3), -- One-handed Sword
-(32124, 4416, 19), -- Others
+(32124, 4390, 1), -- NPC Abnormal Immunity
+(32124, 4408, 1), -- HP Modifiers
+(32124, 4409, 1), -- MP Modifiers
+(32124, 4410, 11), -- P. Atk. Modifiers
+(32124, 4411, 11), -- M. Atk. Modifiers
+(32124, 4412, 11), -- P. Def. Modifiers
+(32124, 4413, 11), -- M. Def. Modifiers
+(32124, 4414, 2), -- Armor Type
+(32124, 4415, 3), -- Weapon Type
+(32124, 4416, 19), -- Races
 -- Great Soul
 (32125, 4045, 1), -- Resist Full Magic Attack
-(32125, 4390, 1), -- Mystic Immunity
-(32125, 4408, 1), -- HP Increase (1x)
-(32125, 4409, 1), -- MP Increase (1x)
-(32125, 4410, 11), -- Average P. Atk.
-(32125, 4411, 11), -- Average M. Atk.
-(32125, 4412, 11), -- Average P. Def.
-(32125, 4413, 11), -- Average M. Def.
-(32125, 4414, 2), -- Standard Type
-(32125, 4415, 3), -- One-handed Sword
-(32125, 4416, 19), -- Others
+(32125, 4390, 1), -- NPC Abnormal Immunity
+(32125, 4408, 1), -- HP Modifiers
+(32125, 4409, 1), -- MP Modifiers
+(32125, 4410, 11), -- P. Atk. Modifiers
+(32125, 4411, 11), -- M. Atk. Modifiers
+(32125, 4412, 11), -- P. Def. Modifiers
+(32125, 4413, 11), -- M. Def. Modifiers
+(32125, 4414, 2), -- Armor Type
+(32125, 4415, 3), -- Weapon Type
+(32125, 4416, 19), -- Races
 -- Priest Guard
 (32126, 4045, 1), -- Resist Full Magic Attack
-(32126, 4408, 1), -- HP Increase (1x)
-(32126, 4409, 1), -- MP Increase (1x)
-(32126, 4410, 11), -- Average P. Atk.
-(32126, 4411, 11), -- Average M. Atk.
-(32126, 4412, 11), -- Average P. Def.
-(32126, 4413, 11), -- Average M. Def.
-(32126, 4414, 2), -- Standard Type
-(32126, 4415, 9), -- Bows
-(32126, 4416, 14), -- Humans
+(32126, 4408, 1), -- HP Modifiers
+(32126, 4409, 1), -- MP Modifiers
+(32126, 4410, 11), -- P. Atk. Modifiers
+(32126, 4411, 11), -- M. Atk. Modifiers
+(32126, 4412, 11), -- P. Def. Modifiers
+(32126, 4413, 11), -- M. Def. Modifiers
+(32126, 4414, 2), -- Armor Type
+(32126, 4415, 9), -- Weapon Type
+(32126, 4416, 14), -- Races
 -- Priest Guard
 (32127, 4045, 1), -- Resist Full Magic Attack
-(32127, 4408, 1), -- HP Increase (1x)
-(32127, 4409, 1), -- MP Increase (1x)
-(32127, 4410, 11), -- Average P. Atk.
-(32127, 4411, 11), -- Average M. Atk.
-(32127, 4412, 11), -- Average P. Def.
-(32127, 4413, 11), -- Average M. Def.
-(32127, 4414, 2), -- Standard Type
-(32127, 4415, 9), -- Bows
-(32127, 4416, 14), -- Humans
+(32127, 4408, 1), -- HP Modifiers
+(32127, 4409, 1), -- MP Modifiers
+(32127, 4410, 11), -- P. Atk. Modifiers
+(32127, 4411, 11), -- M. Atk. Modifiers
+(32127, 4412, 11), -- P. Def. Modifiers
+(32127, 4413, 11), -- M. Def. Modifiers
+(32127, 4414, 2), -- Armor Type
+(32127, 4415, 9), -- Weapon Type
+(32127, 4416, 14), -- Races
 -- Guardian Wizard of the Cloth
 (32128, 4045, 1), -- Resist Full Magic Attack
-(32128, 4408, 1), -- HP Increase (1x)
-(32128, 4409, 1), -- MP Increase (1x)
-(32128, 4410, 11), -- Average P. Atk.
-(32128, 4411, 11), -- Average M. Atk.
-(32128, 4412, 11), -- Average P. Def.
-(32128, 4413, 11), -- Average M. Def.
-(32128, 4414, 2), -- Standard Type
-(32128, 4415, 3), -- One-handed Sword
-(32128, 4416, 14), -- Humans
+(32128, 4408, 1), -- HP Modifiers
+(32128, 4409, 1), -- MP Modifiers
+(32128, 4410, 11), -- P. Atk. Modifiers
+(32128, 4411, 11), -- M. Atk. Modifiers
+(32128, 4412, 11), -- P. Def. Modifiers
+(32128, 4413, 11), -- M. Def. Modifiers
+(32128, 4414, 2), -- Armor Type
+(32128, 4415, 3), -- Weapon Type
+(32128, 4416, 14), -- Races
 -- 
 (32129, 4045, 1), -- Resist Full Magic Attack
-(32129, 4390, 1), -- Mystic Immunity
-(32129, 4408, 1), -- HP Increase (1x)
-(32129, 4409, 1), -- MP Increase (1x)
-(32129, 4410, 11), -- Average P. Atk.
-(32129, 4411, 11), -- Average M. Atk.
-(32129, 4412, 11), -- Average P. Def.
-(32129, 4413, 11), -- Average M. Def.
-(32129, 4414, 2), -- Standard Type
-(32129, 4415, 3), -- One-handed Sword
-(32129, 4416, 19), -- Others
+(32129, 4390, 1), -- NPC Abnormal Immunity
+(32129, 4408, 1), -- HP Modifiers
+(32129, 4409, 1), -- MP Modifiers
+(32129, 4410, 11), -- P. Atk. Modifiers
+(32129, 4411, 11), -- M. Atk. Modifiers
+(32129, 4412, 11), -- P. Def. Modifiers
+(32129, 4413, 11), -- M. Def. Modifiers
+(32129, 4414, 2), -- Armor Type
+(32129, 4415, 3), -- Weapon Type
+(32129, 4416, 19), -- Races
 -- Strategist Lucien
 (32130, 4045, 1), -- Resist Full Magic Attack
-(32130, 4408, 1), -- HP Increase (1x)
-(32130, 4409, 1), -- MP Increase (1x)
-(32130, 4410, 11), -- Average P. Atk.
-(32130, 4411, 11), -- Average M. Atk.
-(32130, 4412, 11), -- Average P. Def.
-(32130, 4413, 11), -- Average M. Def.
-(32130, 4414, 2), -- Standard Type
-(32130, 4415, 3), -- One-handed Sword
-(32130, 4416, 7), -- Spirits
+(32130, 4408, 1), -- HP Modifiers
+(32130, 4409, 1), -- MP Modifiers
+(32130, 4410, 11), -- P. Atk. Modifiers
+(32130, 4411, 11), -- M. Atk. Modifiers
+(32130, 4412, 11), -- P. Def. Modifiers
+(32130, 4413, 11), -- M. Def. Modifiers
+(32130, 4414, 2), -- Armor Type
+(32130, 4415, 3), -- Weapon Type
+(32130, 4416, 7), -- Races
 -- Magic Laboratory Worker
 (32131, 4045, 1), -- Resist Full Magic Attack
-(32131, 4408, 1), -- HP Increase (1x)
-(32131, 4409, 1), -- MP Increase (1x)
-(32131, 4410, 11), -- Average P. Atk.
-(32131, 4411, 11), -- Average M. Atk.
-(32131, 4412, 11), -- Average P. Def.
-(32131, 4413, 11), -- Average M. Def.
-(32131, 4414, 2), -- Standard Type
-(32131, 4415, 3), -- One-handed Sword
-(32131, 4416, 18), -- Dwarves
+(32131, 4408, 1), -- HP Modifiers
+(32131, 4409, 1), -- MP Modifiers
+(32131, 4410, 11), -- P. Atk. Modifiers
+(32131, 4411, 11), -- M. Atk. Modifiers
+(32131, 4412, 11), -- P. Def. Modifiers
+(32131, 4413, 11), -- M. Def. Modifiers
+(32131, 4414, 2), -- Armor Type
+(32131, 4415, 3), -- Weapon Type
+(32131, 4416, 18), -- Races
 -- Alchemist's Servitor
 (32132, 4045, 1), -- Resist Full Magic Attack
-(32132, 4390, 1), -- Mystic Immunity
-(32132, 4408, 1), -- HP Increase (1x)
-(32132, 4409, 1), -- MP Increase (1x)
-(32132, 4410, 11), -- Average P. Atk.
-(32132, 4411, 11), -- Average M. Atk.
-(32132, 4412, 11), -- Average P. Def.
-(32132, 4413, 11), -- Average M. Def.
-(32132, 4414, 2), -- Standard Type
-(32132, 4415, 1), -- Bare Hands
-(32132, 4416, 19), -- Others
+(32132, 4390, 1), -- NPC Abnormal Immunity
+(32132, 4408, 1), -- HP Modifiers
+(32132, 4409, 1), -- MP Modifiers
+(32132, 4410, 11), -- P. Atk. Modifiers
+(32132, 4411, 11), -- M. Atk. Modifiers
+(32132, 4412, 11), -- P. Def. Modifiers
+(32132, 4413, 11), -- M. Def. Modifiers
+(32132, 4414, 2), -- Armor Type
+(32132, 4415, 1), -- Weapon Type
+(32132, 4416, 19), -- Races
 -- Perwan
 (32133, 4045, 1), -- Resist Full Magic Attack
-(32133, 4408, 1), -- HP Increase (1x)
-(32133, 4409, 1), -- MP Increase (1x)
-(32133, 4410, 11), -- Average P. Atk.
-(32133, 4411, 11), -- Average M. Atk.
-(32133, 4412, 11), -- Average P. Def.
-(32133, 4413, 11), -- Average M. Def.
-(32133, 4414, 2), -- Standard Type
-(32133, 4415, 1), -- Bare Hands
-(32133, 4416, 25), -- Kamael
+(32133, 4408, 1), -- HP Modifiers
+(32133, 4409, 1), -- MP Modifiers
+(32133, 4410, 11), -- P. Atk. Modifiers
+(32133, 4411, 11), -- M. Atk. Modifiers
+(32133, 4412, 11), -- P. Def. Modifiers
+(32133, 4413, 11), -- M. Def. Modifiers
+(32133, 4414, 2), -- Armor Type
+(32133, 4415, 1), -- Weapon Type
+(32133, 4416, 25), -- Races
 -- Newbie Helper
 (32134, 4045, 1), -- Resist Full Magic Attack
-(32134, 4408, 1), -- HP Increase (1x)
-(32134, 4409, 1), -- MP Increase (1x)
-(32134, 4410, 11), -- Average P. Atk.
-(32134, 4411, 11), -- Average M. Atk.
-(32134, 4412, 11), -- Average P. Def.
-(32134, 4413, 11), -- Average M. Def.
-(32134, 4414, 2), -- Standard Type
-(32134, 4415, 1), -- Bare Hands
-(32134, 4416, 25), -- Kamael
+(32134, 4408, 1), -- HP Modifiers
+(32134, 4409, 1), -- MP Modifiers
+(32134, 4410, 11), -- P. Atk. Modifiers
+(32134, 4411, 11), -- M. Atk. Modifiers
+(32134, 4412, 11), -- P. Def. Modifiers
+(32134, 4413, 11), -- M. Def. Modifiers
+(32134, 4414, 2), -- Armor Type
+(32134, 4415, 1), -- Weapon Type
+(32134, 4416, 25), -- Races
 -- Newbie Helper
 (32135, 4045, 1), -- Resist Full Magic Attack
-(32135, 4408, 1), -- HP Increase (1x)
-(32135, 4409, 1), -- MP Increase (1x)
-(32135, 4410, 11), -- Average P. Atk.
-(32135, 4411, 11), -- Average M. Atk.
-(32135, 4412, 11), -- Average P. Def.
-(32135, 4413, 11), -- Average M. Def.
-(32135, 4414, 2), -- Standard Type
-(32135, 4415, 1), -- Bare Hands
-(32135, 4416, 25), -- Kamael
+(32135, 4408, 1), -- HP Modifiers
+(32135, 4409, 1), -- MP Modifiers
+(32135, 4410, 11), -- P. Atk. Modifiers
+(32135, 4411, 11), -- M. Atk. Modifiers
+(32135, 4412, 11), -- P. Def. Modifiers
+(32135, 4413, 11), -- M. Def. Modifiers
+(32135, 4414, 2), -- Armor Type
+(32135, 4415, 1), -- Weapon Type
+(32135, 4416, 25), -- Races
 -- Basil
 (32136, 4045, 1), -- Resist Full Magic Attack
-(32136, 4408, 1), -- HP Increase (1x)
-(32136, 4409, 1), -- MP Increase (1x)
-(32136, 4410, 16), -- Very Strong P. Atk.
-(32136, 4411, 16), -- Very Strong M. Atk.
-(32136, 4412, 16), -- Very Strong P. Def.
-(32136, 4413, 16), -- Very Strong M. Def.
-(32136, 4414, 2), -- Standard Type
-(32136, 4415, 9), -- Bows
-(32136, 4416, 25), -- Kamael
+(32136, 4408, 1), -- HP Modifiers
+(32136, 4409, 1), -- MP Modifiers
+(32136, 4410, 16), -- P. Atk. Modifiers
+(32136, 4411, 16), -- M. Atk. Modifiers
+(32136, 4412, 16), -- P. Def. Modifiers
+(32136, 4413, 16), -- M. Def. Modifiers
+(32136, 4414, 2), -- Armor Type
+(32136, 4415, 9), -- Weapon Type
+(32136, 4416, 25), -- Races
 -- Sucrete
 (32137, 4045, 1), -- Resist Full Magic Attack
-(32137, 4408, 1), -- HP Increase (1x)
-(32137, 4409, 1), -- MP Increase (1x)
-(32137, 4410, 16), -- Very Strong P. Atk.
-(32137, 4411, 16), -- Very Strong M. Atk.
-(32137, 4412, 16), -- Very Strong P. Def.
-(32137, 4413, 16), -- Very Strong M. Def.
-(32137, 4414, 2), -- Standard Type
-(32137, 4415, 9), -- Bows
-(32137, 4416, 25), -- Kamael
+(32137, 4408, 1), -- HP Modifiers
+(32137, 4409, 1), -- MP Modifiers
+(32137, 4410, 16), -- P. Atk. Modifiers
+(32137, 4411, 16), -- M. Atk. Modifiers
+(32137, 4412, 16), -- P. Def. Modifiers
+(32137, 4413, 16), -- M. Def. Modifiers
+(32137, 4414, 2), -- Armor Type
+(32137, 4415, 9), -- Weapon Type
+(32137, 4416, 25), -- Races
 -- Kekropus
 (32138, 4045, 1), -- Resist Full Magic Attack
-(32138, 4408, 1), -- HP Increase (1x)
-(32138, 4409, 1), -- MP Increase (1x)
-(32138, 4410, 11), -- Average P. Atk.
-(32138, 4411, 11), -- Average M. Atk.
-(32138, 4412, 11), -- Average P. Def.
-(32138, 4413, 11), -- Average M. Def.
-(32138, 4414, 2), -- Standard Type
-(32138, 4415, 1), -- Bare Hands
-(32138, 4416, 25), -- Kamael
+(32138, 4408, 1), -- HP Modifiers
+(32138, 4409, 1), -- MP Modifiers
+(32138, 4410, 11), -- P. Atk. Modifiers
+(32138, 4411, 11), -- M. Atk. Modifiers
+(32138, 4412, 11), -- P. Def. Modifiers
+(32138, 4413, 11), -- M. Def. Modifiers
+(32138, 4414, 2), -- Armor Type
+(32138, 4415, 1), -- Weapon Type
+(32138, 4416, 25), -- Races
 -- Casca
 (32139, 4045, 1), -- Resist Full Magic Attack
-(32139, 4408, 1), -- HP Increase (1x)
-(32139, 4409, 1), -- MP Increase (1x)
-(32139, 4410, 11), -- Average P. Atk.
-(32139, 4411, 11), -- Average M. Atk.
-(32139, 4412, 11), -- Average P. Def.
-(32139, 4413, 11), -- Average M. Def.
-(32139, 4414, 2), -- Standard Type
-(32139, 4415, 1), -- Bare Hands
-(32139, 4416, 25), -- Kamael
+(32139, 4408, 1), -- HP Modifiers
+(32139, 4409, 1), -- MP Modifiers
+(32139, 4410, 11), -- P. Atk. Modifiers
+(32139, 4411, 11), -- M. Atk. Modifiers
+(32139, 4412, 11), -- P. Def. Modifiers
+(32139, 4413, 11), -- M. Def. Modifiers
+(32139, 4414, 2), -- Armor Type
+(32139, 4415, 1), -- Weapon Type
+(32139, 4416, 25), -- Races
 -- Zenya
 (32140, 4045, 1), -- Resist Full Magic Attack
-(32140, 4408, 1), -- HP Increase (1x)
-(32140, 4409, 1), -- MP Increase (1x)
-(32140, 4410, 11), -- Average P. Atk.
-(32140, 4411, 11), -- Average M. Atk.
-(32140, 4412, 11), -- Average P. Def.
-(32140, 4413, 11), -- Average M. Def.
-(32140, 4414, 2), -- Standard Type
-(32140, 4415, 1), -- Bare Hands
-(32140, 4416, 25), -- Kamael
+(32140, 4408, 1), -- HP Modifiers
+(32140, 4409, 1), -- MP Modifiers
+(32140, 4410, 11), -- P. Atk. Modifiers
+(32140, 4411, 11), -- M. Atk. Modifiers
+(32140, 4412, 11), -- P. Def. Modifiers
+(32140, 4413, 11), -- M. Def. Modifiers
+(32140, 4414, 2), -- Armor Type
+(32140, 4415, 1), -- Weapon Type
+(32140, 4416, 25), -- Races
 -- Nerga
 (32141, 4045, 1), -- Resist Full Magic Attack
-(32141, 4408, 1), -- HP Increase (1x)
-(32141, 4409, 1), -- MP Increase (1x)
-(32141, 4410, 11), -- Average P. Atk.
-(32141, 4411, 11), -- Average M. Atk.
-(32141, 4412, 11), -- Average P. Def.
-(32141, 4413, 11), -- Average M. Def.
-(32141, 4414, 2), -- Standard Type
-(32141, 4415, 1), -- Bare Hands
-(32141, 4416, 25), -- Kamael
+(32141, 4408, 1), -- HP Modifiers
+(32141, 4409, 1), -- MP Modifiers
+(32141, 4410, 11), -- P. Atk. Modifiers
+(32141, 4411, 11), -- M. Atk. Modifiers
+(32141, 4412, 11), -- P. Def. Modifiers
+(32141, 4413, 11), -- M. Def. Modifiers
+(32141, 4414, 2), -- Armor Type
+(32141, 4415, 1), -- Weapon Type
+(32141, 4416, 25), -- Races
 -- Tenor
 (32142, 4045, 1), -- Resist Full Magic Attack
-(32142, 4408, 1), -- HP Increase (1x)
-(32142, 4409, 1), -- MP Increase (1x)
-(32142, 4410, 11), -- Average P. Atk.
-(32142, 4411, 11), -- Average M. Atk.
-(32142, 4412, 11), -- Average P. Def.
-(32142, 4413, 11), -- Average M. Def.
-(32142, 4414, 2), -- Standard Type
-(32142, 4415, 1), -- Bare Hands
-(32142, 4416, 25), -- Kamael
+(32142, 4408, 1), -- HP Modifiers
+(32142, 4409, 1), -- MP Modifiers
+(32142, 4410, 11), -- P. Atk. Modifiers
+(32142, 4411, 11), -- M. Atk. Modifiers
+(32142, 4412, 11), -- P. Def. Modifiers
+(32142, 4413, 11), -- M. Def. Modifiers
+(32142, 4414, 2), -- Armor Type
+(32142, 4415, 1), -- Weapon Type
+(32142, 4416, 25), -- Races
 -- Belkis
 (32143, 4045, 1), -- Resist Full Magic Attack
-(32143, 4408, 1), -- HP Increase (1x)
-(32143, 4409, 1), -- MP Increase (1x)
-(32143, 4410, 11), -- Average P. Atk.
-(32143, 4411, 11), -- Average M. Atk.
-(32143, 4412, 11), -- Average P. Def.
-(32143, 4413, 11), -- Average M. Def.
-(32143, 4414, 2), -- Standard Type
-(32143, 4415, 1), -- Bare Hands
-(32143, 4416, 25), -- Kamael
+(32143, 4408, 1), -- HP Modifiers
+(32143, 4409, 1), -- MP Modifiers
+(32143, 4410, 11), -- P. Atk. Modifiers
+(32143, 4411, 11), -- M. Atk. Modifiers
+(32143, 4412, 11), -- P. Def. Modifiers
+(32143, 4413, 11), -- M. Def. Modifiers
+(32143, 4414, 2), -- Armor Type
+(32143, 4415, 1), -- Weapon Type
+(32143, 4416, 25), -- Races
 -- Xonia
 (32144, 4045, 1), -- Resist Full Magic Attack
-(32144, 4408, 1), -- HP Increase (1x)
-(32144, 4409, 1), -- MP Increase (1x)
-(32144, 4410, 11), -- Average P. Atk.
-(32144, 4411, 11), -- Average M. Atk.
-(32144, 4412, 11), -- Average P. Def.
-(32144, 4413, 11), -- Average M. Def.
-(32144, 4414, 2), -- Standard Type
-(32144, 4415, 1), -- Bare Hands
-(32144, 4416, 25), -- Kamael
+(32144, 4408, 1), -- HP Modifiers
+(32144, 4409, 1), -- MP Modifiers
+(32144, 4410, 11), -- P. Atk. Modifiers
+(32144, 4411, 11), -- M. Atk. Modifiers
+(32144, 4412, 11), -- P. Def. Modifiers
+(32144, 4413, 11), -- M. Def. Modifiers
+(32144, 4414, 2), -- Armor Type
+(32144, 4415, 1), -- Weapon Type
+(32144, 4416, 25), -- Races
 -- Maynard
 (32145, 4045, 1), -- Resist Full Magic Attack
-(32145, 4408, 1), -- HP Increase (1x)
-(32145, 4409, 1), -- MP Increase (1x)
-(32145, 4410, 11), -- Average P. Atk.
-(32145, 4411, 11), -- Average M. Atk.
-(32145, 4412, 11), -- Average P. Def.
-(32145, 4413, 11), -- Average M. Def.
-(32145, 4414, 2), -- Standard Type
-(32145, 4415, 1), -- Bare Hands
-(32145, 4416, 25), -- Kamael
+(32145, 4408, 1), -- HP Modifiers
+(32145, 4409, 1), -- MP Modifiers
+(32145, 4410, 11), -- P. Atk. Modifiers
+(32145, 4411, 11), -- M. Atk. Modifiers
+(32145, 4412, 11), -- P. Def. Modifiers
+(32145, 4413, 11), -- M. Def. Modifiers
+(32145, 4414, 2), -- Armor Type
+(32145, 4415, 1), -- Weapon Type
+(32145, 4416, 25), -- Races
 -- Valfar
 (32146, 4045, 1), -- Resist Full Magic Attack
-(32146, 4408, 1), -- HP Increase (1x)
-(32146, 4409, 1), -- MP Increase (1x)
-(32146, 4410, 11), -- Average P. Atk.
-(32146, 4411, 11), -- Average M. Atk.
-(32146, 4412, 11), -- Average P. Def.
-(32146, 4413, 11), -- Average M. Def.
-(32146, 4414, 2), -- Standard Type
-(32146, 4415, 1), -- Bare Hands
-(32146, 4416, 25), -- Kamael
+(32146, 4408, 1), -- HP Modifiers
+(32146, 4409, 1), -- MP Modifiers
+(32146, 4410, 11), -- P. Atk. Modifiers
+(32146, 4411, 11), -- M. Atk. Modifiers
+(32146, 4412, 11), -- P. Def. Modifiers
+(32146, 4413, 11), -- M. Def. Modifiers
+(32146, 4414, 2), -- Armor Type
+(32146, 4415, 1), -- Weapon Type
+(32146, 4416, 25), -- Races
 -- Rivian
 (32147, 4045, 1), -- Resist Full Magic Attack
-(32147, 4408, 1), -- HP Increase (1x)
-(32147, 4409, 1), -- MP Increase (1x)
-(32147, 4410, 11), -- Average P. Atk.
-(32147, 4411, 11), -- Average M. Atk.
-(32147, 4412, 11), -- Average P. Def.
-(32147, 4413, 11), -- Average M. Def.
-(32147, 4414, 2), -- Standard Type
-(32147, 4415, 1), -- Bare Hands
-(32147, 4416, 15), -- Elves
+(32147, 4408, 1), -- HP Modifiers
+(32147, 4409, 1), -- MP Modifiers
+(32147, 4410, 11), -- P. Atk. Modifiers
+(32147, 4411, 11), -- M. Atk. Modifiers
+(32147, 4412, 11), -- P. Def. Modifiers
+(32147, 4413, 11), -- M. Def. Modifiers
+(32147, 4414, 2), -- Armor Type
+(32147, 4415, 1), -- Weapon Type
+(32147, 4416, 15), -- Races
 -- Cindet
 (32148, 4045, 1), -- Resist Full Magic Attack
-(32148, 4408, 1), -- HP Increase (1x)
-(32148, 4409, 1), -- MP Increase (1x)
-(32148, 4410, 11), -- Average P. Atk.
-(32148, 4411, 11), -- Average M. Atk.
-(32148, 4412, 11), -- Average P. Def.
-(32148, 4413, 11), -- Average M. Def.
-(32148, 4414, 2), -- Standard Type
-(32148, 4415, 1), -- Bare Hands
-(32148, 4416, 15), -- Elves
+(32148, 4408, 1), -- HP Modifiers
+(32148, 4409, 1), -- MP Modifiers
+(32148, 4410, 11), -- P. Atk. Modifiers
+(32148, 4411, 11), -- M. Atk. Modifiers
+(32148, 4412, 11), -- P. Def. Modifiers
+(32148, 4413, 11), -- M. Def. Modifiers
+(32148, 4414, 2), -- Armor Type
+(32148, 4415, 1), -- Weapon Type
+(32148, 4416, 15), -- Races
 -- Ennear
 (32149, 4045, 1), -- Resist Full Magic Attack
-(32149, 4408, 1), -- HP Increase (1x)
-(32149, 4409, 1), -- MP Increase (1x)
-(32149, 4410, 11), -- Average P. Atk.
-(32149, 4411, 11), -- Average M. Atk.
-(32149, 4412, 11), -- Average P. Def.
-(32149, 4413, 11), -- Average M. Def.
-(32149, 4414, 2), -- Standard Type
-(32149, 4415, 1), -- Bare Hands
-(32149, 4416, 15), -- Elves
+(32149, 4408, 1), -- HP Modifiers
+(32149, 4409, 1), -- MP Modifiers
+(32149, 4410, 11), -- P. Atk. Modifiers
+(32149, 4411, 11), -- M. Atk. Modifiers
+(32149, 4412, 11), -- P. Def. Modifiers
+(32149, 4413, 11), -- M. Def. Modifiers
+(32149, 4414, 2), -- Armor Type
+(32149, 4415, 1), -- Weapon Type
+(32149, 4416, 15), -- Races
 -- Took
 (32150, 4045, 1), -- Resist Full Magic Attack
-(32150, 4408, 1), -- HP Increase (1x)
-(32150, 4409, 1), -- MP Increase (1x)
-(32150, 4410, 11), -- Average P. Atk.
-(32150, 4411, 11), -- Average M. Atk.
-(32150, 4412, 11), -- Average P. Def.
-(32150, 4413, 11), -- Average M. Def.
-(32150, 4414, 2), -- Standard Type
-(32150, 4415, 1), -- Bare Hands
-(32150, 4416, 17), -- Orcs
+(32150, 4408, 1), -- HP Modifiers
+(32150, 4409, 1), -- MP Modifiers
+(32150, 4410, 11), -- P. Atk. Modifiers
+(32150, 4411, 11), -- M. Atk. Modifiers
+(32150, 4412, 11), -- P. Def. Modifiers
+(32150, 4413, 11), -- M. Def. Modifiers
+(32150, 4414, 2), -- Armor Type
+(32150, 4415, 1), -- Weapon Type
+(32150, 4416, 17), -- Races
 -- Herz
 (32151, 4045, 1), -- Resist Full Magic Attack
-(32151, 4408, 1), -- HP Increase (1x)
-(32151, 4409, 1), -- MP Increase (1x)
-(32151, 4410, 11), -- Average P. Atk.
-(32151, 4411, 11), -- Average M. Atk.
-(32151, 4412, 11), -- Average P. Def.
-(32151, 4413, 11), -- Average M. Def.
-(32151, 4414, 2), -- Standard Type
-(32151, 4415, 1), -- Bare Hands
-(32151, 4416, 17), -- Orcs
+(32151, 4408, 1), -- HP Modifiers
+(32151, 4409, 1), -- MP Modifiers
+(32151, 4410, 11), -- P. Atk. Modifiers
+(32151, 4411, 11), -- M. Atk. Modifiers
+(32151, 4412, 11), -- P. Def. Modifiers
+(32151, 4413, 11), -- M. Def. Modifiers
+(32151, 4414, 2), -- Armor Type
+(32151, 4415, 1), -- Weapon Type
+(32151, 4416, 17), -- Races
 -- Henri
 (32152, 4045, 1), -- Resist Full Magic Attack
-(32152, 4408, 1), -- HP Increase (1x)
-(32152, 4409, 1), -- MP Increase (1x)
-(32152, 4410, 11), -- Average P. Atk.
-(32152, 4411, 11), -- Average M. Atk.
-(32152, 4412, 11), -- Average P. Def.
-(32152, 4413, 11), -- Average M. Def.
-(32152, 4414, 2), -- Standard Type
-(32152, 4415, 1), -- Bare Hands
-(32152, 4416, 17), -- Orcs
+(32152, 4408, 1), -- HP Modifiers
+(32152, 4409, 1), -- MP Modifiers
+(32152, 4410, 11), -- P. Atk. Modifiers
+(32152, 4411, 11), -- M. Atk. Modifiers
+(32152, 4412, 11), -- P. Def. Modifiers
+(32152, 4413, 11), -- M. Def. Modifiers
+(32152, 4414, 2), -- Armor Type
+(32152, 4415, 1), -- Weapon Type
+(32152, 4416, 17), -- Races
 -- Franco
 (32153, 4045, 1), -- Resist Full Magic Attack
-(32153, 4408, 1), -- HP Increase (1x)
-(32153, 4409, 1), -- MP Increase (1x)
-(32153, 4410, 11), -- Average P. Atk.
-(32153, 4411, 11), -- Average M. Atk.
-(32153, 4412, 11), -- Average P. Def.
-(32153, 4413, 11), -- Average M. Def.
-(32153, 4414, 2), -- Standard Type
-(32153, 4415, 1), -- Bare Hands
-(32153, 4416, 14), -- Humans
+(32153, 4408, 1), -- HP Modifiers
+(32153, 4409, 1), -- MP Modifiers
+(32153, 4410, 11), -- P. Atk. Modifiers
+(32153, 4411, 11), -- M. Atk. Modifiers
+(32153, 4412, 11), -- P. Def. Modifiers
+(32153, 4413, 11), -- M. Def. Modifiers
+(32153, 4414, 2), -- Armor Type
+(32153, 4415, 1), -- Weapon Type
+(32153, 4416, 14), -- Races
 -- Aldenia
 (32154, 4045, 1), -- Resist Full Magic Attack
-(32154, 4408, 1), -- HP Increase (1x)
-(32154, 4409, 1), -- MP Increase (1x)
-(32154, 4410, 11), -- Average P. Atk.
-(32154, 4411, 11), -- Average M. Atk.
-(32154, 4412, 11), -- Average P. Def.
-(32154, 4413, 11), -- Average M. Def.
-(32154, 4414, 2), -- Standard Type
-(32154, 4415, 1), -- Bare Hands
-(32154, 4416, 14), -- Humans
+(32154, 4408, 1), -- HP Modifiers
+(32154, 4409, 1), -- MP Modifiers
+(32154, 4410, 11), -- P. Atk. Modifiers
+(32154, 4411, 11), -- M. Atk. Modifiers
+(32154, 4412, 11), -- P. Def. Modifiers
+(32154, 4413, 11), -- M. Def. Modifiers
+(32154, 4414, 2), -- Armor Type
+(32154, 4415, 1), -- Weapon Type
+(32154, 4416, 14), -- Races
 -- Nabot
 (32155, 4045, 1), -- Resist Full Magic Attack
-(32155, 4408, 1), -- HP Increase (1x)
-(32155, 4409, 1), -- MP Increase (1x)
-(32155, 4410, 11), -- Average P. Atk.
-(32155, 4411, 11), -- Average M. Atk.
-(32155, 4412, 11), -- Average P. Def.
-(32155, 4413, 11), -- Average M. Def.
-(32155, 4414, 2), -- Standard Type
-(32155, 4415, 1), -- Bare Hands
-(32155, 4416, 14), -- Humans
+(32155, 4408, 1), -- HP Modifiers
+(32155, 4409, 1), -- MP Modifiers
+(32155, 4410, 11), -- P. Atk. Modifiers
+(32155, 4411, 11), -- M. Atk. Modifiers
+(32155, 4412, 11), -- P. Def. Modifiers
+(32155, 4413, 11), -- M. Def. Modifiers
+(32155, 4414, 2), -- Armor Type
+(32155, 4415, 1), -- Weapon Type
+(32155, 4416, 14), -- Races
 -- Talbot
 (32156, 4045, 1), -- Resist Full Magic Attack
-(32156, 4408, 1), -- HP Increase (1x)
-(32156, 4409, 1), -- MP Increase (1x)
-(32156, 4410, 11), -- Average P. Atk.
-(32156, 4411, 11), -- Average M. Atk.
-(32156, 4412, 11), -- Average P. Def.
-(32156, 4413, 11), -- Average M. Def.
-(32156, 4414, 2), -- Standard Type
-(32156, 4415, 1), -- Bare Hands
-(32156, 4416, 14), -- Humans
+(32156, 4408, 1), -- HP Modifiers
+(32156, 4409, 1), -- MP Modifiers
+(32156, 4410, 11), -- P. Atk. Modifiers
+(32156, 4411, 11), -- M. Atk. Modifiers
+(32156, 4412, 11), -- P. Def. Modifiers
+(32156, 4413, 11), -- M. Def. Modifiers
+(32156, 4414, 2), -- Armor Type
+(32156, 4415, 1), -- Weapon Type
+(32156, 4416, 14), -- Races
 -- Moka
 (32157, 4045, 1), -- Resist Full Magic Attack
-(32157, 4408, 1), -- HP Increase (1x)
-(32157, 4409, 1), -- MP Increase (1x)
-(32157, 4410, 11), -- Average P. Atk.
-(32157, 4411, 11), -- Average M. Atk.
-(32157, 4412, 11), -- Average P. Def.
-(32157, 4413, 11), -- Average M. Def.
-(32157, 4414, 2), -- Standard Type
-(32157, 4415, 1), -- Bare Hands
-(32157, 4416, 18), -- Dwarves
+(32157, 4408, 1), -- HP Modifiers
+(32157, 4409, 1), -- MP Modifiers
+(32157, 4410, 11), -- P. Atk. Modifiers
+(32157, 4411, 11), -- M. Atk. Modifiers
+(32157, 4412, 11), -- P. Def. Modifiers
+(32157, 4413, 11), -- M. Def. Modifiers
+(32157, 4414, 2), -- Armor Type
+(32157, 4415, 1), -- Weapon Type
+(32157, 4416, 18), -- Races
 -- Fisler
 (32158, 4045, 1), -- Resist Full Magic Attack
-(32158, 4408, 1), -- HP Increase (1x)
-(32158, 4409, 1), -- MP Increase (1x)
-(32158, 4410, 11), -- Average P. Atk.
-(32158, 4411, 11), -- Average M. Atk.
-(32158, 4412, 11), -- Average P. Def.
-(32158, 4413, 11), -- Average M. Def.
-(32158, 4414, 2), -- Standard Type
-(32158, 4415, 1), -- Bare Hands
-(32158, 4416, 18), -- Dwarves
+(32158, 4408, 1), -- HP Modifiers
+(32158, 4409, 1), -- MP Modifiers
+(32158, 4410, 11), -- P. Atk. Modifiers
+(32158, 4411, 11), -- M. Atk. Modifiers
+(32158, 4412, 11), -- P. Def. Modifiers
+(32158, 4413, 11), -- M. Def. Modifiers
+(32158, 4414, 2), -- Armor Type
+(32158, 4415, 1), -- Weapon Type
+(32158, 4416, 18), -- Races
 -- Kincaid
 (32159, 4045, 1), -- Resist Full Magic Attack
-(32159, 4408, 1), -- HP Increase (1x)
-(32159, 4409, 1), -- MP Increase (1x)
-(32159, 4410, 11), -- Average P. Atk.
-(32159, 4411, 11), -- Average M. Atk.
-(32159, 4412, 11), -- Average P. Def.
-(32159, 4413, 11), -- Average M. Def.
-(32159, 4414, 2), -- Standard Type
-(32159, 4415, 1), -- Bare Hands
-(32159, 4416, 18), -- Dwarves
+(32159, 4408, 1), -- HP Modifiers
+(32159, 4409, 1), -- MP Modifiers
+(32159, 4410, 11), -- P. Atk. Modifiers
+(32159, 4411, 11), -- M. Atk. Modifiers
+(32159, 4412, 11), -- P. Def. Modifiers
+(32159, 4413, 11), -- M. Def. Modifiers
+(32159, 4414, 2), -- Armor Type
+(32159, 4415, 1), -- Weapon Type
+(32159, 4416, 18), -- Races
 -- Devon
 (32160, 4045, 1), -- Resist Full Magic Attack
-(32160, 4408, 1), -- HP Increase (1x)
-(32160, 4409, 1), -- MP Increase (1x)
-(32160, 4410, 11), -- Average P. Atk.
-(32160, 4411, 11), -- Average M. Atk.
-(32160, 4412, 11), -- Average P. Def.
-(32160, 4413, 11), -- Average M. Def.
-(32160, 4414, 2), -- Standard Type
-(32160, 4415, 1), -- Bare Hands
-(32160, 4416, 16), -- Dark Elves
+(32160, 4408, 1), -- HP Modifiers
+(32160, 4409, 1), -- MP Modifiers
+(32160, 4410, 11), -- P. Atk. Modifiers
+(32160, 4411, 11), -- M. Atk. Modifiers
+(32160, 4412, 11), -- P. Def. Modifiers
+(32160, 4413, 11), -- M. Def. Modifiers
+(32160, 4414, 2), -- Armor Type
+(32160, 4415, 1), -- Weapon Type
+(32160, 4416, 16), -- Races
 -- Black
 (32161, 4045, 1), -- Resist Full Magic Attack
-(32161, 4408, 1), -- HP Increase (1x)
-(32161, 4409, 1), -- MP Increase (1x)
-(32161, 4410, 11), -- Average P. Atk.
-(32161, 4411, 11), -- Average M. Atk.
-(32161, 4412, 11), -- Average P. Def.
-(32161, 4413, 11), -- Average M. Def.
-(32161, 4414, 2), -- Standard Type
-(32161, 4415, 1), -- Bare Hands
-(32161, 4416, 16), -- Dark Elves
+(32161, 4408, 1), -- HP Modifiers
+(32161, 4409, 1), -- MP Modifiers
+(32161, 4410, 11), -- P. Atk. Modifiers
+(32161, 4411, 11), -- M. Atk. Modifiers
+(32161, 4412, 11), -- P. Def. Modifiers
+(32161, 4413, 11), -- M. Def. Modifiers
+(32161, 4414, 2), -- Armor Type
+(32161, 4415, 1), -- Weapon Type
+(32161, 4416, 16), -- Races
 -- Martika
 (32162, 4045, 1), -- Resist Full Magic Attack
-(32162, 4408, 1), -- HP Increase (1x)
-(32162, 4409, 1), -- MP Increase (1x)
-(32162, 4410, 11), -- Average P. Atk.
-(32162, 4411, 11), -- Average M. Atk.
-(32162, 4412, 11), -- Average P. Def.
-(32162, 4413, 11), -- Average M. Def.
-(32162, 4414, 2), -- Standard Type
-(32162, 4415, 1), -- Bare Hands
-(32162, 4416, 16), -- Dark Elves
+(32162, 4408, 1), -- HP Modifiers
+(32162, 4409, 1), -- MP Modifiers
+(32162, 4410, 11), -- P. Atk. Modifiers
+(32162, 4411, 11), -- M. Atk. Modifiers
+(32162, 4412, 11), -- P. Def. Modifiers
+(32162, 4413, 11), -- M. Def. Modifiers
+(32162, 4414, 2), -- Armor Type
+(32162, 4415, 1), -- Weapon Type
+(32162, 4416, 16), -- Races
 -- Teleport Device
 (32163, 4045, 1), -- Resist Full Magic Attack
-(32163, 4408, 1), -- HP Increase (1x)
-(32163, 4409, 1), -- MP Increase (1x)
-(32163, 4410, 11), -- Average P. Atk.
-(32163, 4411, 11), -- Average M. Atk.
-(32163, 4412, 11), -- Average P. Def.
-(32163, 4413, 11), -- Average M. Def.
-(32163, 4414, 2), -- Standard Type
-(32163, 4415, 1), -- Bare Hands
-(32163, 4416, 25), -- Kamael
+(32163, 4408, 1), -- HP Modifiers
+(32163, 4409, 1), -- MP Modifiers
+(32163, 4410, 11), -- P. Atk. Modifiers
+(32163, 4411, 11), -- M. Atk. Modifiers
+(32163, 4412, 11), -- P. Def. Modifiers
+(32163, 4413, 11), -- M. Def. Modifiers
+(32163, 4414, 2), -- Armor Type
+(32163, 4415, 1), -- Weapon Type
+(32163, 4416, 25), -- Races
 -- Erinu
 (32164, 4045, 1), -- Resist Full Magic Attack
-(32164, 4408, 1), -- HP Increase (1x)
-(32164, 4409, 1), -- MP Increase (1x)
-(32164, 4410, 11), -- Average P. Atk.
-(32164, 4411, 11), -- Average M. Atk.
-(32164, 4412, 11), -- Average P. Def.
-(32164, 4413, 11), -- Average M. Def.
-(32164, 4414, 2), -- Standard Type
-(32164, 4415, 1), -- Bare Hands
-(32164, 4416, 25), -- Kamael
+(32164, 4408, 1), -- HP Modifiers
+(32164, 4409, 1), -- MP Modifiers
+(32164, 4410, 11), -- P. Atk. Modifiers
+(32164, 4411, 11), -- M. Atk. Modifiers
+(32164, 4412, 11), -- P. Def. Modifiers
+(32164, 4413, 11), -- M. Def. Modifiers
+(32164, 4414, 2), -- Armor Type
+(32164, 4415, 1), -- Weapon Type
+(32164, 4416, 25), -- Races
 -- Zakone
 (32165, 4045, 1), -- Resist Full Magic Attack
-(32165, 4408, 1), -- HP Increase (1x)
-(32165, 4409, 1), -- MP Increase (1x)
-(32165, 4410, 11), -- Average P. Atk.
-(32165, 4411, 11), -- Average M. Atk.
-(32165, 4412, 11), -- Average P. Def.
-(32165, 4413, 11), -- Average M. Def.
-(32165, 4414, 2), -- Standard Type
-(32165, 4415, 1), -- Bare Hands
-(32165, 4416, 25), -- Kamael
+(32165, 4408, 1), -- HP Modifiers
+(32165, 4409, 1), -- MP Modifiers
+(32165, 4410, 11), -- P. Atk. Modifiers
+(32165, 4411, 11), -- M. Atk. Modifiers
+(32165, 4412, 11), -- P. Def. Modifiers
+(32165, 4413, 11), -- M. Def. Modifiers
+(32165, 4414, 2), -- Armor Type
+(32165, 4415, 1), -- Weapon Type
+(32165, 4416, 25), -- Races
 -- Trevor
 (32166, 4045, 1), -- Resist Full Magic Attack
-(32166, 4408, 1), -- HP Increase (1x)
-(32166, 4409, 1), -- MP Increase (1x)
-(32166, 4410, 11), -- Average P. Atk.
-(32166, 4411, 11), -- Average M. Atk.
-(32166, 4412, 11), -- Average P. Def.
-(32166, 4413, 11), -- Average M. Def.
-(32166, 4414, 2), -- Standard Type
-(32166, 4415, 1), -- Bare Hands
-(32166, 4416, 25), -- Kamael
+(32166, 4408, 1), -- HP Modifiers
+(32166, 4409, 1), -- MP Modifiers
+(32166, 4410, 11), -- P. Atk. Modifiers
+(32166, 4411, 11), -- M. Atk. Modifiers
+(32166, 4412, 11), -- P. Def. Modifiers
+(32166, 4413, 11), -- M. Def. Modifiers
+(32166, 4414, 2), -- Armor Type
+(32166, 4415, 1), -- Weapon Type
+(32166, 4416, 25), -- Races
 -- Nika
 (32167, 4045, 1), -- Resist Full Magic Attack
-(32167, 4408, 1), -- HP Increase (1x)
-(32167, 4409, 1), -- MP Increase (1x)
-(32167, 4410, 11), -- Average P. Atk.
-(32167, 4411, 11), -- Average M. Atk.
-(32167, 4412, 11), -- Average P. Def.
-(32167, 4413, 11), -- Average M. Def.
-(32167, 4414, 2), -- Standard Type
-(32167, 4415, 1), -- Bare Hands
-(32167, 4416, 25), -- Kamael
+(32167, 4408, 1), -- HP Modifiers
+(32167, 4409, 1), -- MP Modifiers
+(32167, 4410, 11), -- P. Atk. Modifiers
+(32167, 4411, 11), -- M. Atk. Modifiers
+(32167, 4412, 11), -- P. Def. Modifiers
+(32167, 4413, 11), -- M. Def. Modifiers
+(32167, 4414, 2), -- Armor Type
+(32167, 4415, 1), -- Weapon Type
+(32167, 4416, 25), -- Races
 -- Zenith
 (32168, 4045, 1), -- Resist Full Magic Attack
-(32168, 4408, 1), -- HP Increase (1x)
-(32168, 4409, 1), -- MP Increase (1x)
-(32168, 4410, 11), -- Average P. Atk.
-(32168, 4411, 11), -- Average M. Atk.
-(32168, 4412, 11), -- Average P. Def.
-(32168, 4413, 11), -- Average M. Def.
-(32168, 4414, 2), -- Standard Type
-(32168, 4415, 1), -- Bare Hands
-(32168, 4416, 25), -- Kamael
+(32168, 4408, 1), -- HP Modifiers
+(32168, 4409, 1), -- MP Modifiers
+(32168, 4410, 11), -- P. Atk. Modifiers
+(32168, 4411, 11), -- M. Atk. Modifiers
+(32168, 4412, 11), -- P. Def. Modifiers
+(32168, 4413, 11), -- M. Def. Modifiers
+(32168, 4414, 2), -- Armor Type
+(32168, 4415, 1), -- Weapon Type
+(32168, 4416, 25), -- Races
 -- Mila
 (32169, 4045, 1), -- Resist Full Magic Attack
-(32169, 4408, 1), -- HP Increase (1x)
-(32169, 4409, 1), -- MP Increase (1x)
-(32169, 4410, 11), -- Average P. Atk.
-(32169, 4411, 11), -- Average M. Atk.
-(32169, 4412, 11), -- Average P. Def.
-(32169, 4413, 11), -- Average M. Def.
-(32169, 4414, 2), -- Standard Type
-(32169, 4415, 1), -- Bare Hands
-(32169, 4416, 25), -- Kamael
+(32169, 4408, 1), -- HP Modifiers
+(32169, 4409, 1), -- MP Modifiers
+(32169, 4410, 11), -- P. Atk. Modifiers
+(32169, 4411, 11), -- M. Atk. Modifiers
+(32169, 4412, 11), -- P. Def. Modifiers
+(32169, 4413, 11), -- M. Def. Modifiers
+(32169, 4414, 2), -- Armor Type
+(32169, 4415, 1), -- Weapon Type
+(32169, 4416, 25), -- Races
 -- Benis
 (32170, 4045, 1), -- Resist Full Magic Attack
-(32170, 4408, 1), -- HP Increase (1x)
-(32170, 4409, 1), -- MP Increase (1x)
-(32170, 4410, 11), -- Average P. Atk.
-(32170, 4411, 11), -- Average M. Atk.
-(32170, 4412, 11), -- Average P. Def.
-(32170, 4413, 11), -- Average M. Def.
-(32170, 4414, 2), -- Standard Type
-(32170, 4415, 1), -- Bare Hands
-(32170, 4416, 18), -- Dwarves
+(32170, 4408, 1), -- HP Modifiers
+(32170, 4409, 1), -- MP Modifiers
+(32170, 4410, 11), -- P. Atk. Modifiers
+(32170, 4411, 11), -- M. Atk. Modifiers
+(32170, 4412, 11), -- P. Def. Modifiers
+(32170, 4413, 11), -- M. Def. Modifiers
+(32170, 4414, 2), -- Armor Type
+(32170, 4415, 1), -- Weapon Type
+(32170, 4416, 18), -- Races
 -- Hoffa
 (32171, 4045, 1), -- Resist Full Magic Attack
-(32171, 4408, 1), -- HP Increase (1x)
-(32171, 4409, 1), -- MP Increase (1x)
-(32171, 4410, 11), -- Average P. Atk.
-(32171, 4411, 11), -- Average M. Atk.
-(32171, 4412, 11), -- Average P. Def.
-(32171, 4413, 11), -- Average M. Def.
-(32171, 4414, 2), -- Standard Type
-(32171, 4415, 1), -- Bare Hands
-(32171, 4416, 18), -- Dwarves
+(32171, 4408, 1), -- HP Modifiers
+(32171, 4409, 1), -- MP Modifiers
+(32171, 4410, 11), -- P. Atk. Modifiers
+(32171, 4411, 11), -- M. Atk. Modifiers
+(32171, 4412, 11), -- P. Def. Modifiers
+(32171, 4413, 11), -- M. Def. Modifiers
+(32171, 4414, 2), -- Armor Type
+(32171, 4415, 1), -- Weapon Type
+(32171, 4416, 18), -- Races
 -- Saylem
 (32172, 4045, 1), -- Resist Full Magic Attack
-(32172, 4408, 1), -- HP Increase (1x)
-(32172, 4409, 1), -- MP Increase (1x)
-(32172, 4410, 11), -- Average P. Atk.
-(32172, 4411, 11), -- Average M. Atk.
-(32172, 4412, 11), -- Average P. Def.
-(32172, 4413, 11), -- Average M. Def.
-(32172, 4414, 2), -- Standard Type
-(32172, 4415, 1), -- Bare Hands
-(32172, 4416, 18), -- Dwarves
+(32172, 4408, 1), -- HP Modifiers
+(32172, 4409, 1), -- MP Modifiers
+(32172, 4410, 11), -- P. Atk. Modifiers
+(32172, 4411, 11), -- M. Atk. Modifiers
+(32172, 4412, 11), -- P. Def. Modifiers
+(32172, 4413, 11), -- M. Def. Modifiers
+(32172, 4414, 2), -- Armor Type
+(32172, 4415, 1), -- Weapon Type
+(32172, 4416, 18), -- Races
 -- Marcela
 (32173, 4045, 1), -- Resist Full Magic Attack
-(32173, 4408, 1), -- HP Increase (1x)
-(32173, 4409, 1), -- MP Increase (1x)
-(32173, 4410, 11), -- Average P. Atk.
-(32173, 4411, 11), -- Average M. Atk.
-(32173, 4412, 11), -- Average P. Def.
-(32173, 4413, 11), -- Average M. Def.
-(32173, 4414, 2), -- Standard Type
-(32173, 4415, 3), -- One-handed Sword
-(32173, 4416, 25), -- Kamael
+(32173, 4408, 1), -- HP Modifiers
+(32173, 4409, 1), -- MP Modifiers
+(32173, 4410, 11), -- P. Atk. Modifiers
+(32173, 4411, 11), -- M. Atk. Modifiers
+(32173, 4412, 11), -- P. Def. Modifiers
+(32173, 4413, 11), -- M. Def. Modifiers
+(32173, 4414, 2), -- Armor Type
+(32173, 4415, 3), -- Weapon Type
+(32173, 4416, 25), -- Races
 -- Maddy
 (32174, 4045, 1), -- Resist Full Magic Attack
-(32174, 4408, 1), -- HP Increase (1x)
-(32174, 4409, 1), -- MP Increase (1x)
-(32174, 4410, 11), -- Average P. Atk.
-(32174, 4411, 11), -- Average M. Atk.
-(32174, 4412, 11), -- Average P. Def.
-(32174, 4413, 11), -- Average M. Def.
-(32174, 4414, 2), -- Standard Type
-(32174, 4415, 3), -- One-handed Sword
-(32174, 4416, 25), -- Kamael
+(32174, 4408, 1), -- HP Modifiers
+(32174, 4409, 1), -- MP Modifiers
+(32174, 4410, 11), -- P. Atk. Modifiers
+(32174, 4411, 11), -- M. Atk. Modifiers
+(32174, 4412, 11), -- P. Def. Modifiers
+(32174, 4413, 11), -- M. Def. Modifiers
+(32174, 4414, 2), -- Armor Type
+(32174, 4415, 3), -- Weapon Type
+(32174, 4416, 25), -- Races
 -- Bixon
 (32175, 4045, 1), -- Resist Full Magic Attack
-(32175, 4408, 1), -- HP Increase (1x)
-(32175, 4409, 1), -- MP Increase (1x)
-(32175, 4410, 11), -- Average P. Atk.
-(32175, 4411, 11), -- Average M. Atk.
-(32175, 4412, 11), -- Average P. Def.
-(32175, 4413, 11), -- Average M. Def.
-(32175, 4414, 2), -- Standard Type
-(32175, 4415, 3), -- One-handed Sword
-(32175, 4416, 25), -- Kamael
+(32175, 4408, 1), -- HP Modifiers
+(32175, 4409, 1), -- MP Modifiers
+(32175, 4410, 11), -- P. Atk. Modifiers
+(32175, 4411, 11), -- M. Atk. Modifiers
+(32175, 4412, 11), -- P. Def. Modifiers
+(32175, 4413, 11), -- M. Def. Modifiers
+(32175, 4414, 2), -- Armor Type
+(32175, 4415, 3), -- Weapon Type
+(32175, 4416, 25), -- Races
 -- Ambra
 (32176, 4045, 1), -- Resist Full Magic Attack
-(32176, 4408, 1), -- HP Increase (1x)
-(32176, 4409, 1), -- MP Increase (1x)
-(32176, 4410, 11), -- Average P. Atk.
-(32176, 4411, 11), -- Average M. Atk.
-(32176, 4412, 11), -- Average P. Def.
-(32176, 4413, 11), -- Average M. Def.
-(32176, 4414, 2), -- Standard Type
-(32176, 4415, 3), -- One-handed Sword
-(32176, 4416, 25), -- Kamael
+(32176, 4408, 1), -- HP Modifiers
+(32176, 4409, 1), -- MP Modifiers
+(32176, 4410, 11), -- P. Atk. Modifiers
+(32176, 4411, 11), -- M. Atk. Modifiers
+(32176, 4412, 11), -- P. Def. Modifiers
+(32176, 4413, 11), -- M. Def. Modifiers
+(32176, 4414, 2), -- Armor Type
+(32176, 4415, 3), -- Weapon Type
+(32176, 4416, 25), -- Races
 -- Syzar
 (32177, 4045, 1), -- Resist Full Magic Attack
-(32177, 4408, 1), -- HP Increase (1x)
-(32177, 4409, 1), -- MP Increase (1x)
-(32177, 4410, 11), -- Average P. Atk.
-(32177, 4411, 11), -- Average M. Atk.
-(32177, 4412, 11), -- Average P. Def.
-(32177, 4413, 11), -- Average M. Def.
-(32177, 4414, 2), -- Standard Type
-(32177, 4415, 3), -- One-handed Sword
-(32177, 4416, 25), -- Kamael
+(32177, 4408, 1), -- HP Modifiers
+(32177, 4409, 1), -- MP Modifiers
+(32177, 4410, 11), -- P. Atk. Modifiers
+(32177, 4411, 11), -- M. Atk. Modifiers
+(32177, 4412, 11), -- P. Def. Modifiers
+(32177, 4413, 11), -- M. Def. Modifiers
+(32177, 4414, 2), -- Armor Type
+(32177, 4415, 3), -- Weapon Type
+(32177, 4416, 25), -- Races
 -- Carver
 (32178, 4045, 1), -- Resist Full Magic Attack
-(32178, 4408, 1), -- HP Increase (1x)
-(32178, 4409, 1), -- MP Increase (1x)
-(32178, 4410, 11), -- Average P. Atk.
-(32178, 4411, 11), -- Average M. Atk.
-(32178, 4412, 11), -- Average P. Def.
-(32178, 4413, 11), -- Average M. Def.
-(32178, 4414, 2), -- Standard Type
-(32178, 4415, 3), -- One-handed Sword
-(32178, 4416, 25), -- Kamael
+(32178, 4408, 1), -- HP Modifiers
+(32178, 4409, 1), -- MP Modifiers
+(32178, 4410, 11), -- P. Atk. Modifiers
+(32178, 4411, 11), -- M. Atk. Modifiers
+(32178, 4412, 11), -- P. Def. Modifiers
+(32178, 4413, 11), -- M. Def. Modifiers
+(32178, 4414, 2), -- Armor Type
+(32178, 4415, 3), -- Weapon Type
+(32178, 4416, 25), -- Races
 -- Putin
 (32179, 4045, 1), -- Resist Full Magic Attack
-(32179, 4408, 1), -- HP Increase (1x)
-(32179, 4409, 1), -- MP Increase (1x)
-(32179, 4410, 11), -- Average P. Atk.
-(32179, 4411, 11), -- Average M. Atk.
-(32179, 4412, 11), -- Average P. Def.
-(32179, 4413, 11), -- Average M. Def.
-(32179, 4414, 2), -- Standard Type
-(32179, 4415, 3), -- One-handed Sword
-(32179, 4416, 25), -- Kamael
+(32179, 4408, 1), -- HP Modifiers
+(32179, 4409, 1), -- MP Modifiers
+(32179, 4410, 11), -- P. Atk. Modifiers
+(32179, 4411, 11), -- M. Atk. Modifiers
+(32179, 4412, 11), -- P. Def. Modifiers
+(32179, 4413, 11), -- M. Def. Modifiers
+(32179, 4414, 2), -- Armor Type
+(32179, 4415, 3), -- Weapon Type
+(32179, 4416, 25), -- Races
 -- Kato
 (32180, 4045, 1), -- Resist Full Magic Attack
-(32180, 4408, 1), -- HP Increase (1x)
-(32180, 4409, 1), -- MP Increase (1x)
-(32180, 4410, 11), -- Average P. Atk.
-(32180, 4411, 11), -- Average M. Atk.
-(32180, 4412, 11), -- Average P. Def.
-(32180, 4413, 11), -- Average M. Def.
-(32180, 4414, 2), -- Standard Type
-(32180, 4415, 3), -- One-handed Sword
-(32180, 4416, 25), -- Kamael
+(32180, 4408, 1), -- HP Modifiers
+(32180, 4409, 1), -- MP Modifiers
+(32180, 4410, 11), -- P. Atk. Modifiers
+(32180, 4411, 11), -- M. Atk. Modifiers
+(32180, 4412, 11), -- P. Def. Modifiers
+(32180, 4413, 11), -- M. Def. Modifiers
+(32180, 4414, 2), -- Armor Type
+(32180, 4415, 3), -- Weapon Type
+(32180, 4416, 25), -- Races
 -- Mellon
 (32181, 4045, 1), -- Resist Full Magic Attack
-(32181, 4408, 1), -- HP Increase (1x)
-(32181, 4409, 1), -- MP Increase (1x)
-(32181, 4410, 11), -- Average P. Atk.
-(32181, 4411, 11), -- Average M. Atk.
-(32181, 4412, 11), -- Average P. Def.
-(32181, 4413, 11), -- Average M. Def.
-(32181, 4414, 2), -- Standard Type
-(32181, 4415, 1), -- Bare Hands
-(32181, 4416, 25), -- Kamael
+(32181, 4408, 1), -- HP Modifiers
+(32181, 4409, 1), -- MP Modifiers
+(32181, 4410, 11), -- P. Atk. Modifiers
+(32181, 4411, 11), -- M. Atk. Modifiers
+(32181, 4412, 11), -- P. Def. Modifiers
+(32181, 4413, 11), -- M. Def. Modifiers
+(32181, 4414, 2), -- Armor Type
+(32181, 4415, 1), -- Weapon Type
+(32181, 4416, 25), -- Races
 -- Coplan
 (32182, 4045, 1), -- Resist Full Magic Attack
-(32182, 4408, 1), -- HP Increase (1x)
-(32182, 4409, 1), -- MP Increase (1x)
-(32182, 4410, 11), -- Average P. Atk.
-(32182, 4411, 11), -- Average M. Atk.
-(32182, 4412, 11), -- Average P. Def.
-(32182, 4413, 11), -- Average M. Def.
-(32182, 4414, 2), -- Standard Type
-(32182, 4415, 1), -- Bare Hands
-(32182, 4416, 25), -- Kamael
+(32182, 4408, 1), -- HP Modifiers
+(32182, 4409, 1), -- MP Modifiers
+(32182, 4410, 11), -- P. Atk. Modifiers
+(32182, 4411, 11), -- M. Atk. Modifiers
+(32182, 4412, 11), -- P. Def. Modifiers
+(32182, 4413, 11), -- M. Def. Modifiers
+(32182, 4414, 2), -- Armor Type
+(32182, 4415, 1), -- Weapon Type
+(32182, 4416, 25), -- Races
 -- Yunha
 (32183, 4045, 1), -- Resist Full Magic Attack
-(32183, 4408, 1), -- HP Increase (1x)
-(32183, 4409, 1), -- MP Increase (1x)
-(32183, 4410, 11), -- Average P. Atk.
-(32183, 4411, 11), -- Average M. Atk.
-(32183, 4412, 11), -- Average P. Def.
-(32183, 4413, 11), -- Average M. Def.
-(32183, 4414, 2), -- Standard Type
-(32183, 4415, 1), -- Bare Hands
-(32183, 4416, 25), -- Kamael
+(32183, 4408, 1), -- HP Modifiers
+(32183, 4409, 1), -- MP Modifiers
+(32183, 4410, 11), -- P. Atk. Modifiers
+(32183, 4411, 11), -- M. Atk. Modifiers
+(32183, 4412, 11), -- P. Def. Modifiers
+(32183, 4413, 11), -- M. Def. Modifiers
+(32183, 4414, 2), -- Armor Type
+(32183, 4415, 1), -- Weapon Type
+(32183, 4416, 25), -- Races
 -- Yinir
 (32184, 4045, 1), -- Resist Full Magic Attack
-(32184, 4408, 1), -- HP Increase (1x)
-(32184, 4409, 1), -- MP Increase (1x)
-(32184, 4410, 11), -- Average P. Atk.
-(32184, 4411, 11), -- Average M. Atk.
-(32184, 4412, 11), -- Average P. Def.
-(32184, 4413, 11), -- Average M. Def.
-(32184, 4414, 2), -- Standard Type
-(32184, 4415, 1), -- Bare Hands
-(32184, 4416, 25), -- Kamael
+(32184, 4408, 1), -- HP Modifiers
+(32184, 4409, 1), -- MP Modifiers
+(32184, 4410, 11), -- P. Atk. Modifiers
+(32184, 4411, 11), -- M. Atk. Modifiers
+(32184, 4412, 11), -- P. Def. Modifiers
+(32184, 4413, 11), -- M. Def. Modifiers
+(32184, 4414, 2), -- Armor Type
+(32184, 4415, 1), -- Weapon Type
+(32184, 4416, 25), -- Races
 -- Peregrine
 (32185, 4045, 1), -- Resist Full Magic Attack
-(32185, 4408, 1), -- HP Increase (1x)
-(32185, 4409, 1), -- MP Increase (1x)
-(32185, 4410, 11), -- Average P. Atk.
-(32185, 4411, 11), -- Average M. Atk.
-(32185, 4412, 11), -- Average P. Def.
-(32185, 4413, 11), -- Average M. Def.
-(32185, 4414, 2), -- Standard Type
-(32185, 4415, 9), -- Bows
-(32185, 4416, 25), -- Kamael
+(32185, 4408, 1), -- HP Modifiers
+(32185, 4409, 1), -- MP Modifiers
+(32185, 4410, 11), -- P. Atk. Modifiers
+(32185, 4411, 11), -- M. Atk. Modifiers
+(32185, 4412, 11), -- P. Def. Modifiers
+(32185, 4413, 11), -- M. Def. Modifiers
+(32185, 4414, 2), -- Armor Type
+(32185, 4415, 9), -- Weapon Type
+(32185, 4416, 25), -- Races
 -- Yung
 (32186, 4045, 1), -- Resist Full Magic Attack
-(32186, 4408, 1), -- HP Increase (1x)
-(32186, 4409, 1), -- MP Increase (1x)
-(32186, 4410, 11), -- Average P. Atk.
-(32186, 4411, 11), -- Average M. Atk.
-(32186, 4412, 11), -- Average P. Def.
-(32186, 4413, 11), -- Average M. Def.
-(32186, 4414, 2), -- Standard Type
-(32186, 4415, 1), -- Bare Hands
-(32186, 4416, 25), -- Kamael
+(32186, 4408, 1), -- HP Modifiers
+(32186, 4409, 1), -- MP Modifiers
+(32186, 4410, 11), -- P. Atk. Modifiers
+(32186, 4411, 11), -- M. Atk. Modifiers
+(32186, 4412, 11), -- P. Def. Modifiers
+(32186, 4413, 11), -- M. Def. Modifiers
+(32186, 4414, 2), -- Armor Type
+(32186, 4415, 1), -- Weapon Type
+(32186, 4416, 25), -- Races
 -- Nadir
 (32187, 4045, 1), -- Resist Full Magic Attack
-(32187, 4408, 1), -- HP Increase (1x)
-(32187, 4409, 1), -- MP Increase (1x)
-(32187, 4410, 11), -- Average P. Atk.
-(32187, 4411, 11), -- Average M. Atk.
-(32187, 4412, 11), -- Average P. Def.
-(32187, 4413, 11), -- Average M. Def.
-(32187, 4414, 2), -- Standard Type
-(32187, 4415, 1), -- Bare Hands
-(32187, 4416, 25), -- Kamael
+(32187, 4408, 1), -- HP Modifiers
+(32187, 4409, 1), -- MP Modifiers
+(32187, 4410, 11), -- P. Atk. Modifiers
+(32187, 4411, 11), -- M. Atk. Modifiers
+(32187, 4412, 11), -- P. Def. Modifiers
+(32187, 4413, 11), -- M. Def. Modifiers
+(32187, 4414, 2), -- Armor Type
+(32187, 4415, 1), -- Weapon Type
+(32187, 4416, 25), -- Races
 -- Morelin
 (32188, 4045, 1), -- Resist Full Magic Attack
-(32188, 4408, 1), -- HP Increase (1x)
-(32188, 4409, 1), -- MP Increase (1x)
-(32188, 4410, 11), -- Average P. Atk.
-(32188, 4411, 11), -- Average M. Atk.
-(32188, 4412, 11), -- Average P. Def.
-(32188, 4413, 11), -- Average M. Def.
-(32188, 4414, 2), -- Standard Type
-(32188, 4415, 9), -- Bows
-(32188, 4416, 25), -- Kamael
+(32188, 4408, 1), -- HP Modifiers
+(32188, 4409, 1), -- MP Modifiers
+(32188, 4410, 11), -- P. Atk. Modifiers
+(32188, 4411, 11), -- M. Atk. Modifiers
+(32188, 4412, 11), -- P. Def. Modifiers
+(32188, 4413, 11), -- M. Def. Modifiers
+(32188, 4414, 2), -- Armor Type
+(32188, 4415, 9), -- Weapon Type
+(32188, 4416, 25), -- Races
 -- Largo
 (32189, 4045, 1), -- Resist Full Magic Attack
-(32189, 4408, 1), -- HP Increase (1x)
-(32189, 4409, 1), -- MP Increase (1x)
-(32189, 4410, 11), -- Average P. Atk.
-(32189, 4411, 11), -- Average M. Atk.
-(32189, 4412, 11), -- Average P. Def.
-(32189, 4413, 11), -- Average M. Def.
-(32189, 4414, 2), -- Standard Type
-(32189, 4415, 1), -- Bare Hands
-(32189, 4416, 25), -- Kamael
+(32189, 4408, 1), -- HP Modifiers
+(32189, 4409, 1), -- MP Modifiers
+(32189, 4410, 11), -- P. Atk. Modifiers
+(32189, 4411, 11), -- M. Atk. Modifiers
+(32189, 4412, 11), -- P. Def. Modifiers
+(32189, 4413, 11), -- M. Def. Modifiers
+(32189, 4414, 2), -- Armor Type
+(32189, 4415, 1), -- Weapon Type
+(32189, 4416, 25), -- Races
 -- Mao
 (32190, 4045, 1), -- Resist Full Magic Attack
-(32190, 4408, 1), -- HP Increase (1x)
-(32190, 4409, 1), -- MP Increase (1x)
-(32190, 4410, 11), -- Average P. Atk.
-(32190, 4411, 11), -- Average M. Atk.
-(32190, 4412, 11), -- Average P. Def.
-(32190, 4413, 11), -- Average M. Def.
-(32190, 4414, 2), -- Standard Type
-(32190, 4415, 1), -- Bare Hands
-(32190, 4416, 25), -- Kamael
+(32190, 4408, 1), -- HP Modifiers
+(32190, 4409, 1), -- MP Modifiers
+(32190, 4410, 11), -- P. Atk. Modifiers
+(32190, 4411, 11), -- M. Atk. Modifiers
+(32190, 4412, 11), -- P. Def. Modifiers
+(32190, 4413, 11), -- M. Def. Modifiers
+(32190, 4414, 2), -- Armor Type
+(32190, 4415, 1), -- Weapon Type
+(32190, 4416, 25), -- Races
 -- Hanarin
 (32191, 4045, 1), -- Resist Full Magic Attack
-(32191, 4408, 1), -- HP Increase (1x)
-(32191, 4409, 1), -- MP Increase (1x)
-(32191, 4410, 11), -- Average P. Atk.
-(32191, 4411, 11), -- Average M. Atk.
-(32191, 4412, 11), -- Average P. Def.
-(32191, 4413, 11), -- Average M. Def.
-(32191, 4414, 2), -- Standard Type
-(32191, 4415, 1), -- Bare Hands
-(32191, 4416, 25), -- Kamael
+(32191, 4408, 1), -- HP Modifiers
+(32191, 4409, 1), -- MP Modifiers
+(32191, 4410, 11), -- P. Atk. Modifiers
+(32191, 4411, 11), -- M. Atk. Modifiers
+(32191, 4412, 11), -- P. Def. Modifiers
+(32191, 4413, 11), -- M. Def. Modifiers
+(32191, 4414, 2), -- Armor Type
+(32191, 4415, 1), -- Weapon Type
+(32191, 4416, 25), -- Races
 -- Falken
 (32192, 4045, 1), -- Resist Full Magic Attack
-(32192, 4408, 1), -- HP Increase (1x)
-(32192, 4409, 1), -- MP Increase (1x)
-(32192, 4410, 11), -- Average P. Atk.
-(32192, 4411, 11), -- Average M. Atk.
-(32192, 4412, 11), -- Average P. Def.
-(32192, 4413, 11), -- Average M. Def.
-(32192, 4414, 2), -- Standard Type
-(32192, 4415, 9), -- Bows
-(32192, 4416, 25), -- Kamael
+(32192, 4408, 1), -- HP Modifiers
+(32192, 4409, 1), -- MP Modifiers
+(32192, 4410, 11), -- P. Atk. Modifiers
+(32192, 4411, 11), -- M. Atk. Modifiers
+(32192, 4412, 11), -- P. Def. Modifiers
+(32192, 4413, 11), -- M. Def. Modifiers
+(32192, 4414, 2), -- Armor Type
+(32192, 4415, 9), -- Weapon Type
+(32192, 4416, 25), -- Races
 -- Yeniche
 (32193, 4045, 1), -- Resist Full Magic Attack
-(32193, 4408, 1), -- HP Increase (1x)
-(32193, 4409, 1), -- MP Increase (1x)
-(32193, 4410, 11), -- Average P. Atk.
-(32193, 4411, 11), -- Average M. Atk.
-(32193, 4412, 11), -- Average P. Def.
-(32193, 4413, 11), -- Average M. Def.
-(32193, 4414, 2), -- Standard Type
-(32193, 4415, 1), -- Bare Hands
-(32193, 4416, 25), -- Kamael
+(32193, 4408, 1), -- HP Modifiers
+(32193, 4409, 1), -- MP Modifiers
+(32193, 4410, 11), -- P. Atk. Modifiers
+(32193, 4411, 11), -- M. Atk. Modifiers
+(32193, 4412, 11), -- P. Def. Modifiers
+(32193, 4413, 11), -- M. Def. Modifiers
+(32193, 4414, 2); -- Armor Type
+
+INSERT INTO `npcskills` VALUES
+(32193, 4415, 1), -- Weapon Type
+(32193, 4416, 25), -- Races
 -- Shubain
 (32194, 4045, 1), -- Resist Full Magic Attack
-(32194, 4408, 1), -- HP Increase (1x)
-(32194, 4409, 1), -- MP Increase (1x)
-(32194, 4410, 11), -- Average P. Atk.
-(32194, 4411, 11), -- Average M. Atk.
-(32194, 4412, 11), -- Average P. Def.
-(32194, 4413, 11), -- Average M. Def.
-(32194, 4414, 2), -- Standard Type
-(32194, 4415, 1), -- Bare Hands
-(32194, 4416, 25), -- Kamael
+(32194, 4408, 1), -- HP Modifiers
+(32194, 4409, 1), -- MP Modifiers
+(32194, 4410, 11), -- P. Atk. Modifiers
+(32194, 4411, 11), -- M. Atk. Modifiers
+(32194, 4412, 11), -- P. Def. Modifiers
+(32194, 4413, 11), -- M. Def. Modifiers
+(32194, 4414, 2), -- Armor Type
+(32194, 4415, 1), -- Weapon Type
+(32194, 4416, 25), -- Races
 -- Sione
 (32195, 4045, 1), -- Resist Full Magic Attack
-(32195, 4408, 1), -- HP Increase (1x)
-(32195, 4409, 1), -- MP Increase (1x)
-(32195, 4410, 11), -- Average P. Atk.
-(32195, 4411, 11), -- Average M. Atk.
-(32195, 4412, 11), -- Average P. Def.
-(32195, 4413, 11), -- Average M. Def.
-(32195, 4414, 2), -- Standard Type
-(32195, 4415, 1), -- Bare Hands
-(32195, 4416, 25), -- Kamael
+(32195, 4408, 1), -- HP Modifiers
+(32195, 4409, 1), -- MP Modifiers
+(32195, 4410, 11), -- P. Atk. Modifiers
+(32195, 4411, 11), -- M. Atk. Modifiers
+(32195, 4412, 11), -- P. Def. Modifiers
+(32195, 4413, 11), -- M. Def. Modifiers
+(32195, 4414, 2), -- Armor Type
+(32195, 4415, 1), -- Weapon Type
+(32195, 4416, 25), -- Races
 -- Gershwin
 (32196, 4045, 1), -- Resist Full Magic Attack
-(32196, 4408, 1), -- HP Increase (1x)
-(32196, 4409, 1), -- MP Increase (1x)
-(32196, 4410, 11), -- Average P. Atk.
-(32196, 4411, 11), -- Average M. Atk.
-(32196, 4412, 11), -- Average P. Def.
-(32196, 4413, 11), -- Average M. Def.
-(32196, 4414, 2), -- Standard Type
-(32196, 4415, 1), -- Bare Hands
-(32196, 4416, 25), -- Kamael
+(32196, 4408, 1), -- HP Modifiers
+(32196, 4409, 1), -- MP Modifiers
+(32196, 4410, 11), -- P. Atk. Modifiers
+(32196, 4411, 11), -- M. Atk. Modifiers
+(32196, 4412, 11), -- P. Def. Modifiers
+(32196, 4413, 11), -- M. Def. Modifiers
+(32196, 4414, 2), -- Armor Type
+(32196, 4415, 1), -- Weapon Type
+(32196, 4416, 25), -- Races
 -- Gwain
 (32197, 4045, 1), -- Resist Full Magic Attack
-(32197, 4408, 1), -- HP Increase (1x)
-(32197, 4409, 1), -- MP Increase (1x)
-(32197, 4410, 11), -- Average P. Atk.
-(32197, 4411, 11), -- Average M. Atk.
-(32197, 4412, 11), -- Average P. Def.
-(32197, 4413, 11), -- Average M. Def.
-(32197, 4414, 2), -- Standard Type
-(32197, 4415, 1), -- Bare Hands
-(32197, 4416, 25), -- Kamael
+(32197, 4408, 1), -- HP Modifiers
+(32197, 4409, 1), -- MP Modifiers
+(32197, 4410, 11), -- P. Atk. Modifiers
+(32197, 4411, 11), -- M. Atk. Modifiers
+(32197, 4412, 11), -- P. Def. Modifiers
+(32197, 4413, 11), -- M. Def. Modifiers
+(32197, 4414, 2), -- Armor Type
+(32197, 4415, 1), -- Weapon Type
+(32197, 4416, 25), -- Races
 -- Gobie
 (32198, 4045, 1), -- Resist Full Magic Attack
-(32198, 4408, 1), -- HP Increase (1x)
-(32198, 4409, 1), -- MP Increase (1x)
-(32198, 4410, 11), -- Average P. Atk.
-(32198, 4411, 11), -- Average M. Atk.
-(32198, 4412, 11), -- Average P. Def.
-(32198, 4413, 11), -- Average M. Def.
-(32198, 4414, 2), -- Standard Type
-(32198, 4415, 1), -- Bare Hands
-(32198, 4416, 25), -- Kamael
+(32198, 4408, 1), -- HP Modifiers
+(32198, 4409, 1), -- MP Modifiers
+(32198, 4410, 11), -- P. Atk. Modifiers
+(32198, 4411, 11), -- M. Atk. Modifiers
+(32198, 4412, 11), -- P. Def. Modifiers
+(32198, 4413, 11), -- M. Def. Modifiers
+(32198, 4414, 2), -- Armor Type
+(32198, 4415, 1), -- Weapon Type
+(32198, 4416, 25), -- Races
 -- Holst
 (32199, 4045, 1), -- Resist Full Magic Attack
-(32199, 4408, 1), -- HP Increase (1x)
-(32199, 4409, 1), -- MP Increase (1x)
-(32199, 4410, 11), -- Average P. Atk.
-(32199, 4411, 11), -- Average M. Atk.
-(32199, 4412, 11), -- Average P. Def.
-(32199, 4413, 11), -- Average M. Def.
-(32199, 4414, 2), -- Standard Type
-(32199, 4415, 1), -- Bare Hands
-(32199, 4416, 25), -- Kamael
+(32199, 4408, 1), -- HP Modifiers
+(32199, 4409, 1), -- MP Modifiers
+(32199, 4410, 11), -- P. Atk. Modifiers
+(32199, 4411, 11), -- M. Atk. Modifiers
+(32199, 4412, 11), -- P. Def. Modifiers
+(32199, 4413, 11), -- M. Def. Modifiers
+(32199, 4414, 2), -- Armor Type
+(32199, 4415, 1), -- Weapon Type
+(32199, 4416, 25), -- Races
 -- Entien
 (32200, 4045, 1), -- Resist Full Magic Attack
-(32200, 4408, 1), -- HP Increase (1x)
-(32200, 4409, 1), -- MP Increase (1x)
-(32200, 4410, 11), -- Average P. Atk.
-(32200, 4411, 11), -- Average M. Atk.
-(32200, 4412, 11), -- Average P. Def.
-(32200, 4413, 11), -- Average M. Def.
-(32200, 4414, 2), -- Standard Type
-(32200, 4415, 1), -- Bare Hands
-(32200, 4416, 25), -- Kamael
+(32200, 4408, 1), -- HP Modifiers
+(32200, 4409, 1), -- MP Modifiers
+(32200, 4410, 11), -- P. Atk. Modifiers
+(32200, 4411, 11), -- M. Atk. Modifiers
+(32200, 4412, 11), -- P. Def. Modifiers
+(32200, 4413, 11), -- M. Def. Modifiers
+(32200, 4414, 2), -- Armor Type
+(32200, 4415, 1), -- Weapon Type
+(32200, 4416, 25), -- Races
 -- Rindy
 (32201, 4045, 1), -- Resist Full Magic Attack
-(32201, 4408, 1), -- HP Increase (1x)
-(32201, 4409, 1), -- MP Increase (1x)
-(32201, 4410, 11), -- Average P. Atk.
-(32201, 4411, 11), -- Average M. Atk.
-(32201, 4412, 11), -- Average P. Def.
-(32201, 4413, 11), -- Average M. Def.
-(32201, 4414, 2), -- Standard Type
-(32201, 4415, 1), -- Bare Hands
-(32201, 4416, 25), -- Kamael
+(32201, 4408, 1), -- HP Modifiers
+(32201, 4409, 1), -- MP Modifiers
+(32201, 4410, 11), -- P. Atk. Modifiers
+(32201, 4411, 11), -- M. Atk. Modifiers
+(32201, 4412, 11), -- P. Def. Modifiers
+(32201, 4413, 11), -- M. Def. Modifiers
+(32201, 4414, 2), -- Armor Type
+(32201, 4415, 1), -- Weapon Type
+(32201, 4416, 25), -- Races
 -- Khadava
 (32202, 4045, 1), -- Resist Full Magic Attack
-(32202, 4408, 1), -- HP Increase (1x)
-(32202, 4409, 1), -- MP Increase (1x)
-(32202, 4410, 11), -- Average P. Atk.
-(32202, 4411, 11), -- Average M. Atk.
-(32202, 4412, 11), -- Average P. Def.
-(32202, 4413, 11), -- Average M. Def.
-(32202, 4414, 2), -- Standard Type
-(32202, 4415, 1), -- Bare Hands
-(32202, 4416, 25), -- Kamael
+(32202, 4408, 1), -- HP Modifiers
+(32202, 4409, 1), -- MP Modifiers
+(32202, 4410, 11), -- P. Atk. Modifiers
+(32202, 4411, 11), -- M. Atk. Modifiers
+(32202, 4412, 11), -- P. Def. Modifiers
+(32202, 4413, 11), -- M. Def. Modifiers
+(32202, 4414, 2), -- Armor Type
+(32202, 4415, 1), -- Weapon Type
+(32202, 4416, 25), -- Races
 -- Ramen
 (32203, 4045, 1), -- Resist Full Magic Attack
-(32203, 4408, 1), -- HP Increase (1x)
-(32203, 4409, 1), -- MP Increase (1x)
-(32203, 4410, 11), -- Average P. Atk.
-(32203, 4411, 11), -- Average M. Atk.
-(32203, 4412, 11), -- Average P. Def.
-(32203, 4413, 11), -- Average M. Def.
-(32203, 4414, 2), -- Standard Type
-(32203, 4415, 1), -- Bare Hands
-(32203, 4416, 25), -- Kamael
+(32203, 4408, 1), -- HP Modifiers
+(32203, 4409, 1), -- MP Modifiers
+(32203, 4410, 11), -- P. Atk. Modifiers
+(32203, 4411, 11), -- M. Atk. Modifiers
+(32203, 4412, 11), -- P. Def. Modifiers
+(32203, 4413, 11), -- M. Def. Modifiers
+(32203, 4414, 2), -- Armor Type
+(32203, 4415, 1), -- Weapon Type
+(32203, 4416, 25), -- Races
 -- Fiske
 (32204, 4045, 1), -- Resist Full Magic Attack
-(32204, 4408, 1), -- HP Increase (1x)
-(32204, 4409, 1), -- MP Increase (1x)
-(32204, 4410, 11), -- Average P. Atk.
-(32204, 4411, 11), -- Average M. Atk.
-(32204, 4412, 11), -- Average P. Def.
-(32204, 4413, 11), -- Average M. Def.
-(32204, 4414, 2), -- Standard Type
-(32204, 4415, 1), -- Bare Hands
-(32204, 4416, 25), -- Kamael
+(32204, 4408, 1), -- HP Modifiers
+(32204, 4409, 1), -- MP Modifiers
+(32204, 4410, 11), -- P. Atk. Modifiers
+(32204, 4411, 11), -- M. Atk. Modifiers
+(32204, 4412, 11), -- P. Def. Modifiers
+(32204, 4413, 11), -- M. Def. Modifiers
+(32204, 4414, 2), -- Armor Type
+(32204, 4415, 1), -- Weapon Type
+(32204, 4416, 25), -- Races
 -- Aetonic
 (32205, 4045, 1), -- Resist Full Magic Attack
-(32205, 4408, 1), -- HP Increase (1x)
-(32205, 4409, 1), -- MP Increase (1x)
-(32205, 4410, 11), -- Average P. Atk.
-(32205, 4411, 11), -- Average M. Atk.
-(32205, 4412, 11), -- Average P. Def.
-(32205, 4413, 11), -- Average M. Def.
-(32205, 4414, 2), -- Standard Type
-(32205, 4415, 1), -- Bare Hands
-(32205, 4416, 25), -- Kamael
+(32205, 4408, 1), -- HP Modifiers
+(32205, 4409, 1), -- MP Modifiers
+(32205, 4410, 11), -- P. Atk. Modifiers
+(32205, 4411, 11), -- M. Atk. Modifiers
+(32205, 4412, 11), -- P. Def. Modifiers
+(32205, 4413, 11), -- M. Def. Modifiers
+(32205, 4414, 2), -- Armor Type
+(32205, 4415, 1), -- Weapon Type
+(32205, 4416, 25), -- Races
 -- Pieche
 (32206, 4045, 1), -- Resist Full Magic Attack
-(32206, 4408, 1), -- HP Increase (1x)
-(32206, 4409, 1), -- MP Increase (1x)
-(32206, 4410, 11), -- Average P. Atk.
-(32206, 4411, 11), -- Average M. Atk.
-(32206, 4412, 11), -- Average P. Def.
-(32206, 4413, 11), -- Average M. Def.
-(32206, 4414, 2), -- Standard Type
-(32206, 4415, 1), -- Bare Hands
-(32206, 4416, 25), -- Kamael
+(32206, 4408, 1), -- HP Modifiers
+(32206, 4409, 1), -- MP Modifiers
+(32206, 4410, 11), -- P. Atk. Modifiers
+(32206, 4411, 11), -- M. Atk. Modifiers
+(32206, 4412, 11), -- P. Def. Modifiers
+(32206, 4413, 11), -- M. Def. Modifiers
+(32206, 4414, 2), -- Armor Type
+(32206, 4415, 1), -- Weapon Type
+(32206, 4416, 25), -- Races
 -- Orkurus
 (32207, 4045, 1), -- Resist Full Magic Attack
-(32207, 4408, 1), -- HP Increase (1x)
-(32207, 4409, 1), -- MP Increase (1x)
-(32207, 4410, 11), -- Average P. Atk.
-(32207, 4411, 11), -- Average M. Atk.
-(32207, 4412, 11), -- Average P. Def.
-(32207, 4413, 11), -- Average M. Def.
-(32207, 4414, 2), -- Standard Type
-(32207, 4415, 1), -- Bare Hands
-(32207, 4416, 25), -- Kamael
+(32207, 4408, 1), -- HP Modifiers
+(32207, 4409, 1), -- MP Modifiers
+(32207, 4410, 11), -- P. Atk. Modifiers
+(32207, 4411, 11), -- M. Atk. Modifiers
+(32207, 4412, 11), -- P. Def. Modifiers
+(32207, 4413, 11), -- M. Def. Modifiers
+(32207, 4414, 2), -- Armor Type
+(32207, 4415, 1), -- Weapon Type
+(32207, 4416, 25), -- Races
 -- Rasha
 (32208, 4045, 1), -- Resist Full Magic Attack
-(32208, 4408, 1), -- HP Increase (1x)
-(32208, 4409, 1), -- MP Increase (1x)
-(32208, 4410, 11), -- Average P. Atk.
-(32208, 4411, 11), -- Average M. Atk.
-(32208, 4412, 11), -- Average P. Def.
-(32208, 4413, 11), -- Average M. Def.
-(32208, 4414, 2), -- Standard Type
-(32208, 4415, 1), -- Bare Hands
-(32208, 4416, 25), -- Kamael
+(32208, 4408, 1), -- HP Modifiers
+(32208, 4409, 1), -- MP Modifiers
+(32208, 4410, 11), -- P. Atk. Modifiers
+(32208, 4411, 11), -- M. Atk. Modifiers
+(32208, 4412, 11), -- P. Def. Modifiers
+(32208, 4413, 11), -- M. Def. Modifiers
+(32208, 4414, 2), -- Armor Type
+(32208, 4415, 1), -- Weapon Type
+(32208, 4416, 25), -- Races
 -- Ferdinand
 (32209, 4045, 1), -- Resist Full Magic Attack
-(32209, 4408, 1), -- HP Increase (1x)
-(32209, 4409, 1), -- MP Increase (1x)
-(32209, 4410, 11), -- Average P. Atk.
-(32209, 4411, 11), -- Average M. Atk.
-(32209, 4412, 11), -- Average P. Def.
-(32209, 4413, 11), -- Average M. Def.
-(32209, 4414, 2), -- Standard Type
-(32209, 4415, 1), -- Bare Hands
-(32209, 4416, 25), -- Kamael
+(32209, 4408, 1), -- HP Modifiers
+(32209, 4409, 1), -- MP Modifiers
+(32209, 4410, 11), -- P. Atk. Modifiers
+(32209, 4411, 11), -- M. Atk. Modifiers
+(32209, 4412, 11), -- P. Def. Modifiers
+(32209, 4413, 11), -- M. Def. Modifiers
+(32209, 4414, 2), -- Armor Type
+(32209, 4415, 1), -- Weapon Type
+(32209, 4416, 25), -- Races
 -- Eddy
 (32210, 4045, 1), -- Resist Full Magic Attack
-(32210, 4408, 1), -- HP Increase (1x)
-(32210, 4409, 1), -- MP Increase (1x)
-(32210, 4410, 11), -- Average P. Atk.
-(32210, 4411, 11), -- Average M. Atk.
-(32210, 4412, 11), -- Average P. Def.
-(32210, 4413, 11), -- Average M. Def.
-(32210, 4414, 2), -- Standard Type
-(32210, 4415, 1), -- Bare Hands
-(32210, 4416, 25), -- Kamael
+(32210, 4408, 1), -- HP Modifiers
+(32210, 4409, 1), -- MP Modifiers
+(32210, 4410, 11), -- P. Atk. Modifiers
+(32210, 4411, 11), -- M. Atk. Modifiers
+(32210, 4412, 11), -- P. Def. Modifiers
+(32210, 4413, 11), -- M. Def. Modifiers
+(32210, 4414, 2), -- Armor Type
+(32210, 4415, 1), -- Weapon Type
+(32210, 4416, 25), -- Races
 -- Jueno
 (32211, 4045, 1), -- Resist Full Magic Attack
-(32211, 4408, 1), -- HP Increase (1x)
-(32211, 4409, 1), -- MP Increase (1x)
-(32211, 4410, 11), -- Average P. Atk.
-(32211, 4411, 11), -- Average M. Atk.
-(32211, 4412, 11), -- Average P. Def.
-(32211, 4413, 11), -- Average M. Def.
-(32211, 4414, 2), -- Standard Type
-(32211, 4415, 1), -- Bare Hands
-(32211, 4416, 25), -- Kamael
+(32211, 4408, 1), -- HP Modifiers
+(32211, 4409, 1), -- MP Modifiers
+(32211, 4410, 11), -- P. Atk. Modifiers
+(32211, 4411, 11), -- M. Atk. Modifiers
+(32211, 4412, 11), -- P. Def. Modifiers
+(32211, 4413, 11), -- M. Def. Modifiers
+(32211, 4414, 2), -- Armor Type
+(32211, 4415, 1), -- Weapon Type
+(32211, 4416, 25), -- Races
 -- Rishtar
 (32212, 4045, 1), -- Resist Full Magic Attack
-(32212, 4408, 1), -- HP Increase (1x)
-(32212, 4409, 1), -- MP Increase (1x)
-(32212, 4410, 11), -- Average P. Atk.
-(32212, 4411, 11), -- Average M. Atk.
-(32212, 4412, 11), -- Average P. Def.
-(32212, 4413, 11), -- Average M. Def.
-(32212, 4414, 2), -- Standard Type
-(32212, 4415, 1), -- Bare Hands
-(32212, 4416, 25), -- Kamael
+(32212, 4408, 1), -- HP Modifiers
+(32212, 4409, 1), -- MP Modifiers
+(32212, 4410, 11), -- P. Atk. Modifiers
+(32212, 4411, 11), -- M. Atk. Modifiers
+(32212, 4412, 11), -- P. Def. Modifiers
+(32212, 4413, 11), -- M. Def. Modifiers
+(32212, 4414, 2), -- Armor Type
+(32212, 4415, 1), -- Weapon Type
+(32212, 4416, 25), -- Races
 -- Vitus
 (32213, 4045, 1), -- Resist Full Magic Attack
-(32213, 4408, 1), -- HP Increase (1x)
-(32213, 4409, 1), -- MP Increase (1x)
-(32213, 4410, 11), -- Average P. Atk.
-(32213, 4411, 11), -- Average M. Atk.
-(32213, 4412, 11), -- Average P. Def.
-(32213, 4413, 11), -- Average M. Def.
-(32213, 4414, 2), -- Standard Type
-(32213, 4415, 1), -- Bare Hands
-(32213, 4416, 25), -- Kamael
+(32213, 4408, 1), -- HP Modifiers
+(32213, 4409, 1), -- MP Modifiers
+(32213, 4410, 11), -- P. Atk. Modifiers
+(32213, 4411, 11), -- M. Atk. Modifiers
+(32213, 4412, 11), -- P. Def. Modifiers
+(32213, 4413, 11), -- M. Def. Modifiers
+(32213, 4414, 2), -- Armor Type
+(32213, 4415, 1), -- Weapon Type
+(32213, 4416, 25), -- Races
 -- Meldina
 (32214, 4045, 1), -- Resist Full Magic Attack
-(32214, 4408, 1), -- HP Increase (1x)
-(32214, 4409, 1), -- MP Increase (1x)
-(32214, 4410, 11), -- Average P. Atk.
-(32214, 4411, 11), -- Average M. Atk.
-(32214, 4412, 11), -- Average P. Def.
-(32214, 4413, 11), -- Average M. Def.
-(32214, 4414, 2), -- Standard Type
-(32214, 4415, 1), -- Bare Hands
-(32214, 4416, 25), -- Kamael
+(32214, 4408, 1), -- HP Modifiers
+(32214, 4409, 1), -- MP Modifiers
+(32214, 4410, 11), -- P. Atk. Modifiers
+(32214, 4411, 11), -- M. Atk. Modifiers
+(32214, 4412, 11), -- P. Def. Modifiers
+(32214, 4413, 11), -- M. Def. Modifiers
+(32214, 4414, 2), -- Armor Type
+(32214, 4415, 1), -- Weapon Type
+(32214, 4416, 25), -- Races
 -- Tenain
 (32215, 4045, 1), -- Resist Full Magic Attack
-(32215, 4408, 1), -- HP Increase (1x)
-(32215, 4409, 1), -- MP Increase (1x)
-(32215, 4410, 11), -- Average P. Atk.
-(32215, 4411, 11), -- Average M. Atk.
-(32215, 4412, 11), -- Average P. Def.
-(32215, 4413, 11), -- Average M. Def.
-(32215, 4414, 2), -- Standard Type
-(32215, 4415, 1), -- Bare Hands
-(32215, 4416, 25), -- Kamael
+(32215, 4408, 1), -- HP Modifiers
+(32215, 4409, 1), -- MP Modifiers
+(32215, 4410, 11), -- P. Atk. Modifiers
+(32215, 4411, 11), -- M. Atk. Modifiers
+(32215, 4412, 11), -- P. Def. Modifiers
+(32215, 4413, 11), -- M. Def. Modifiers
+(32215, 4414, 2), -- Armor Type
+(32215, 4415, 1), -- Weapon Type
+(32215, 4416, 25), -- Races
 -- Noir
 (32216, 4045, 1), -- Resist Full Magic Attack
-(32216, 4408, 1), -- HP Increase (1x)
-(32216, 4409, 1), -- MP Increase (1x)
-(32216, 4410, 11), -- Average P. Atk.
-(32216, 4411, 11), -- Average M. Atk.
-(32216, 4412, 11), -- Average P. Def.
-(32216, 4413, 11), -- Average M. Def.
-(32216, 4414, 2), -- Standard Type
-(32216, 4415, 1), -- Bare Hands
-(32216, 4416, 25), -- Kamael
+(32216, 4408, 1), -- HP Modifiers
+(32216, 4409, 1), -- MP Modifiers
+(32216, 4410, 11), -- P. Atk. Modifiers
+(32216, 4411, 11), -- M. Atk. Modifiers
+(32216, 4412, 11), -- P. Def. Modifiers
+(32216, 4413, 11), -- M. Def. Modifiers
+(32216, 4414, 2), -- Armor Type
+(32216, 4415, 1), -- Weapon Type
+(32216, 4416, 25), -- Races
 -- Barta
 (32217, 4045, 1), -- Resist Full Magic Attack
-(32217, 4408, 1), -- HP Increase (1x)
-(32217, 4409, 1), -- MP Increase (1x)
-(32217, 4410, 11), -- Average P. Atk.
-(32217, 4411, 11), -- Average M. Atk.
-(32217, 4412, 11), -- Average P. Def.
-(32217, 4413, 11), -- Average M. Def.
-(32217, 4414, 2), -- Standard Type
-(32217, 4415, 1), -- Bare Hands
-(32217, 4416, 25), -- Kamael
+(32217, 4408, 1), -- HP Modifiers
+(32217, 4409, 1), -- MP Modifiers
+(32217, 4410, 11), -- P. Atk. Modifiers
+(32217, 4411, 11), -- M. Atk. Modifiers
+(32217, 4412, 11), -- P. Def. Modifiers
+(32217, 4413, 11), -- M. Def. Modifiers
+(32217, 4414, 2), -- Armor Type
+(32217, 4415, 1), -- Weapon Type
+(32217, 4416, 25), -- Races
 -- Miya
 (32218, 4045, 1), -- Resist Full Magic Attack
-(32218, 4408, 1), -- HP Increase (1x)
-(32218, 4409, 1), -- MP Increase (1x)
-(32218, 4410, 11), -- Average P. Atk.
-(32218, 4411, 11), -- Average M. Atk.
-(32218, 4412, 11), -- Average P. Def.
-(32218, 4413, 11), -- Average M. Def.
-(32218, 4414, 2), -- Standard Type
-(32218, 4415, 1), -- Bare Hands
-(32218, 4416, 25), -- Kamael
+(32218, 4408, 1), -- HP Modifiers
+(32218, 4409, 1), -- MP Modifiers
+(32218, 4410, 11), -- P. Atk. Modifiers
+(32218, 4411, 11), -- M. Atk. Modifiers
+(32218, 4412, 11), -- P. Def. Modifiers
+(32218, 4413, 11), -- M. Def. Modifiers
+(32218, 4414, 2), -- Armor Type
+(32218, 4415, 1), -- Weapon Type
+(32218, 4416, 25), -- Races
 -- Fabnor
 (32219, 4045, 1), -- Resist Full Magic Attack
-(32219, 4408, 1), -- HP Increase (1x)
-(32219, 4409, 1), -- MP Increase (1x)
-(32219, 4410, 11), -- Average P. Atk.
-(32219, 4411, 11), -- Average M. Atk.
-(32219, 4412, 11), -- Average P. Def.
-(32219, 4413, 11), -- Average M. Def.
-(32219, 4414, 2), -- Standard Type
-(32219, 4415, 1), -- Bare Hands
-(32219, 4416, 25), -- Kamael
+(32219, 4408, 1), -- HP Modifiers
+(32219, 4409, 1), -- MP Modifiers
+(32219, 4410, 11), -- P. Atk. Modifiers
+(32219, 4411, 11), -- M. Atk. Modifiers
+(32219, 4412, 11), -- P. Def. Modifiers
+(32219, 4413, 11), -- M. Def. Modifiers
+(32219, 4414, 2), -- Armor Type
+(32219, 4415, 1), -- Weapon Type
+(32219, 4416, 25), -- Races
 -- Selsia
 (32220, 4045, 1), -- Resist Full Magic Attack
-(32220, 4408, 1), -- HP Increase (1x)
-(32220, 4409, 1), -- MP Increase (1x)
-(32220, 4410, 11), -- Average P. Atk.
-(32220, 4411, 11), -- Average M. Atk.
-(32220, 4412, 11), -- Average P. Def.
-(32220, 4413, 11), -- Average M. Def.
-(32220, 4414, 2), -- Standard Type
-(32220, 4415, 1), -- Bare Hands
-(32220, 4416, 25), -- Kamael
+(32220, 4408, 1), -- HP Modifiers
+(32220, 4409, 1), -- MP Modifiers
+(32220, 4410, 11), -- P. Atk. Modifiers
+(32220, 4411, 11), -- M. Atk. Modifiers
+(32220, 4412, 11), -- P. Def. Modifiers
+(32220, 4413, 11), -- M. Def. Modifiers
+(32220, 4414, 2), -- Armor Type
+(32220, 4415, 1), -- Weapon Type
+(32220, 4416, 25), -- Races
 -- Brome
 (32221, 4045, 1), -- Resist Full Magic Attack
-(32221, 4408, 1), -- HP Increase (1x)
-(32221, 4409, 1), -- MP Increase (1x)
-(32221, 4410, 11), -- Average P. Atk.
-(32221, 4411, 11), -- Average M. Atk.
-(32221, 4412, 11), -- Average P. Def.
-(32221, 4413, 11), -- Average M. Def.
-(32221, 4414, 2), -- Standard Type
-(32221, 4415, 1), -- Bare Hands
-(32221, 4416, 25), -- Kamael
+(32221, 4408, 1), -- HP Modifiers
+(32221, 4409, 1), -- MP Modifiers
+(32221, 4410, 11), -- P. Atk. Modifiers
+(32221, 4411, 11), -- M. Atk. Modifiers
+(32221, 4412, 11), -- P. Def. Modifiers
+(32221, 4413, 11), -- M. Def. Modifiers
+(32221, 4414, 2), -- Armor Type
+(32221, 4415, 1), -- Weapon Type
+(32221, 4416, 25), -- Races
 -- Liane
 (32222, 4045, 1), -- Resist Full Magic Attack
-(32222, 4408, 1), -- HP Increase (1x)
-(32222, 4409, 1), -- MP Increase (1x)
-(32222, 4410, 11), -- Average P. Atk.
-(32222, 4411, 11), -- Average M. Atk.
-(32222, 4412, 11), -- Average P. Def.
-(32222, 4413, 11), -- Average M. Def.
-(32222, 4414, 2), -- Standard Type
-(32222, 4415, 1), -- Bare Hands
-(32222, 4416, 25), -- Kamael
+(32222, 4408, 1), -- HP Modifiers
+(32222, 4409, 1), -- MP Modifiers
+(32222, 4410, 11), -- P. Atk. Modifiers
+(32222, 4411, 11), -- M. Atk. Modifiers
+(32222, 4412, 11), -- P. Def. Modifiers
+(32222, 4413, 11), -- M. Def. Modifiers
+(32222, 4414, 2), -- Armor Type
+(32222, 4415, 1), -- Weapon Type
+(32222, 4416, 25), -- Races
 -- Duroga
 (32223, 4045, 1), -- Resist Full Magic Attack
-(32223, 4408, 1), -- HP Increase (1x)
-(32223, 4409, 1), -- MP Increase (1x)
-(32223, 4410, 11), -- Average P. Atk.
-(32223, 4411, 11), -- Average M. Atk.
-(32223, 4412, 11), -- Average P. Def.
-(32223, 4413, 11), -- Average M. Def.
-(32223, 4414, 2), -- Standard Type
-(32223, 4415, 1), -- Bare Hands
-(32223, 4416, 25), -- Kamael
+(32223, 4408, 1), -- HP Modifiers
+(32223, 4409, 1), -- MP Modifiers
+(32223, 4410, 11), -- P. Atk. Modifiers
+(32223, 4411, 11), -- M. Atk. Modifiers
+(32223, 4412, 11), -- P. Def. Modifiers
+(32223, 4413, 11), -- M. Def. Modifiers
+(32223, 4414, 2), -- Armor Type
+(32223, 4415, 1), -- Weapon Type
+(32223, 4416, 25), -- Races
 -- Auren
 (32224, 4045, 1), -- Resist Full Magic Attack
-(32224, 4408, 1), -- HP Increase (1x)
-(32224, 4409, 1), -- MP Increase (1x)
-(32224, 4410, 11), -- Average P. Atk.
-(32224, 4411, 11), -- Average M. Atk.
-(32224, 4412, 11), -- Average P. Def.
-(32224, 4413, 11), -- Average M. Def.
-(32224, 4414, 2), -- Standard Type
-(32224, 4415, 1), -- Bare Hands
-(32224, 4416, 25), -- Kamael
+(32224, 4408, 1), -- HP Modifiers
+(32224, 4409, 1), -- MP Modifiers
+(32224, 4410, 11), -- P. Atk. Modifiers
+(32224, 4411, 11), -- M. Atk. Modifiers
+(32224, 4412, 11), -- P. Def. Modifiers
+(32224, 4413, 11), -- M. Def. Modifiers
+(32224, 4414, 2), -- Armor Type
+(32224, 4415, 1), -- Weapon Type
+(32224, 4416, 25), -- Races
 -- Taine
 (32225, 4045, 1), -- Resist Full Magic Attack
-(32225, 4408, 1), -- HP Increase (1x)
-(32225, 4409, 1), -- MP Increase (1x)
-(32225, 4410, 11), -- Average P. Atk.
-(32225, 4411, 11), -- Average M. Atk.
-(32225, 4412, 11), -- Average P. Def.
-(32225, 4413, 11), -- Average M. Def.
-(32225, 4414, 2), -- Standard Type
-(32225, 4415, 1), -- Bare Hands
-(32225, 4416, 25), -- Kamael
+(32225, 4408, 1), -- HP Modifiers
+(32225, 4409, 1), -- MP Modifiers
+(32225, 4410, 11), -- P. Atk. Modifiers
+(32225, 4411, 11), -- M. Atk. Modifiers
+(32225, 4412, 11), -- P. Def. Modifiers
+(32225, 4413, 11), -- M. Def. Modifiers
+(32225, 4414, 2), -- Armor Type
+(32225, 4415, 1), -- Weapon Type
+(32225, 4416, 25), -- Races
 -- Raula
 (32226, 4045, 1), -- Resist Full Magic Attack
-(32226, 4408, 1), -- HP Increase (1x)
-(32226, 4409, 1), -- MP Increase (1x)
-(32226, 4410, 11), -- Average P. Atk.
-(32226, 4411, 11), -- Average M. Atk.
-(32226, 4412, 11), -- Average P. Def.
-(32226, 4413, 11), -- Average M. Def.
-(32226, 4414, 2), -- Standard Type
-(32226, 4415, 1), -- Bare Hands
-(32226, 4416, 25), -- Kamael
+(32226, 4408, 1), -- HP Modifiers
+(32226, 4409, 1), -- MP Modifiers
+(32226, 4410, 11), -- P. Atk. Modifiers
+(32226, 4411, 11), -- M. Atk. Modifiers
+(32226, 4412, 11), -- P. Def. Modifiers
+(32226, 4413, 11), -- M. Def. Modifiers
+(32226, 4414, 2), -- Armor Type
+(32226, 4415, 1), -- Weapon Type
+(32226, 4416, 25), -- Races
 -- Digler
 (32227, 4045, 1), -- Resist Full Magic Attack
-(32227, 4408, 1), -- HP Increase (1x)
-(32227, 4409, 1), -- MP Increase (1x)
-(32227, 4410, 11), -- Average P. Atk.
-(32227, 4411, 11), -- Average M. Atk.
-(32227, 4412, 11), -- Average P. Def.
-(32227, 4413, 11), -- Average M. Def.
-(32227, 4414, 2), -- Standard Type
-(32227, 4415, 1), -- Bare Hands
-(32227, 4416, 25), -- Kamael
+(32227, 4408, 1), -- HP Modifiers
+(32227, 4409, 1), -- MP Modifiers
+(32227, 4410, 11), -- P. Atk. Modifiers
+(32227, 4411, 11), -- M. Atk. Modifiers
+(32227, 4412, 11), -- P. Def. Modifiers
+(32227, 4413, 11), -- M. Def. Modifiers
+(32227, 4414, 2), -- Armor Type
+(32227, 4415, 1), -- Weapon Type
+(32227, 4416, 25), -- Races
 -- Medea
 (32228, 4045, 1), -- Resist Full Magic Attack
-(32228, 4408, 1), -- HP Increase (1x)
-(32228, 4409, 1), -- MP Increase (1x)
-(32228, 4410, 11), -- Average P. Atk.
-(32228, 4411, 11), -- Average M. Atk.
-(32228, 4412, 11), -- Average P. Def.
-(32228, 4413, 11), -- Average M. Def.
-(32228, 4414, 2), -- Standard Type
-(32228, 4415, 1), -- Bare Hands
-(32228, 4416, 25), -- Kamael
+(32228, 4408, 1), -- HP Modifiers
+(32228, 4409, 1), -- MP Modifiers
+(32228, 4410, 11), -- P. Atk. Modifiers
+(32228, 4411, 11), -- M. Atk. Modifiers
+(32228, 4412, 11), -- P. Def. Modifiers
+(32228, 4413, 11), -- M. Def. Modifiers
+(32228, 4414, 2), -- Armor Type
+(32228, 4415, 1), -- Weapon Type
+(32228, 4416, 25), -- Races
 -- Hagel
 (32229, 4045, 1), -- Resist Full Magic Attack
-(32229, 4408, 1), -- HP Increase (1x)
-(32229, 4409, 1), -- MP Increase (1x)
-(32229, 4410, 11), -- Average P. Atk.
-(32229, 4411, 11), -- Average M. Atk.
-(32229, 4412, 11), -- Average P. Def.
-(32229, 4413, 11), -- Average M. Def.
-(32229, 4414, 2), -- Standard Type
-(32229, 4415, 1), -- Bare Hands
-(32229, 4416, 25), -- Kamael
+(32229, 4408, 1), -- HP Modifiers
+(32229, 4409, 1), -- MP Modifiers
+(32229, 4410, 11), -- P. Atk. Modifiers
+(32229, 4411, 11), -- M. Atk. Modifiers
+(32229, 4412, 11), -- P. Def. Modifiers
+(32229, 4413, 11), -- M. Def. Modifiers
+(32229, 4414, 2), -- Armor Type
+(32229, 4415, 1), -- Weapon Type
+(32229, 4416, 25), -- Races
 -- Ceci
-(32230, 4045, 1); -- Resist Full Magic Attack
-
-INSERT INTO `npcskills` VALUES
-(32230, 4408, 1), -- HP Increase (1x)
-(32230, 4409, 1), -- MP Increase (1x)
-(32230, 4410, 11), -- Average P. Atk.
-(32230, 4411, 11), -- Average M. Atk.
-(32230, 4412, 11), -- Average P. Def.
-(32230, 4413, 11), -- Average M. Def.
-(32230, 4414, 2), -- Standard Type
-(32230, 4415, 1), -- Bare Hands
-(32230, 4416, 25), -- Kamael
+(32230, 4045, 1), -- Resist Full Magic Attack
+(32230, 4408, 1), -- HP Modifiers
+(32230, 4409, 1), -- MP Modifiers
+(32230, 4410, 11), -- P. Atk. Modifiers
+(32230, 4411, 11), -- M. Atk. Modifiers
+(32230, 4412, 11), -- P. Def. Modifiers
+(32230, 4413, 11), -- M. Def. Modifiers
+(32230, 4414, 2), -- Armor Type
+(32230, 4415, 1), -- Weapon Type
+(32230, 4416, 25), -- Races
 -- Luben
 (32231, 4045, 1), -- Resist Full Magic Attack
-(32231, 4408, 1), -- HP Increase (1x)
-(32231, 4409, 1), -- MP Increase (1x)
-(32231, 4410, 11), -- Average P. Atk.
-(32231, 4411, 11), -- Average M. Atk.
-(32231, 4412, 11), -- Average P. Def.
-(32231, 4413, 11), -- Average M. Def.
-(32231, 4414, 2), -- Standard Type
-(32231, 4415, 1), -- Bare Hands
-(32231, 4416, 25), -- Kamael
+(32231, 4408, 1), -- HP Modifiers
+(32231, 4409, 1), -- MP Modifiers
+(32231, 4410, 11), -- P. Atk. Modifiers
+(32231, 4411, 11), -- M. Atk. Modifiers
+(32231, 4412, 11), -- P. Def. Modifiers
+(32231, 4413, 11), -- M. Def. Modifiers
+(32231, 4414, 2), -- Armor Type
+(32231, 4415, 1), -- Weapon Type
+(32231, 4416, 25), -- Races
 -- Minuet
 (32232, 4045, 1), -- Resist Full Magic Attack
-(32232, 4408, 1), -- HP Increase (1x)
-(32232, 4409, 1), -- MP Increase (1x)
-(32232, 4410, 11), -- Average P. Atk.
-(32232, 4411, 11), -- Average M. Atk.
-(32232, 4412, 11), -- Average P. Def.
-(32232, 4413, 11), -- Average M. Def.
-(32232, 4414, 2), -- Standard Type
-(32232, 4415, 1), -- Bare Hands
-(32232, 4416, 25), -- Kamael
+(32232, 4408, 1), -- HP Modifiers
+(32232, 4409, 1), -- MP Modifiers
+(32232, 4410, 11), -- P. Atk. Modifiers
+(32232, 4411, 11), -- M. Atk. Modifiers
+(32232, 4412, 11), -- P. Def. Modifiers
+(32232, 4413, 11), -- M. Def. Modifiers
+(32232, 4414, 2), -- Armor Type
+(32232, 4415, 1), -- Weapon Type
+(32232, 4416, 25), -- Races
 -- Zoldart
 (32233, 4045, 1), -- Resist Full Magic Attack
-(32233, 4408, 1), -- HP Increase (1x)
-(32233, 4409, 1), -- MP Increase (1x)
-(32233, 4410, 11), -- Average P. Atk.
-(32233, 4411, 11), -- Average M. Atk.
-(32233, 4412, 11), -- Average P. Def.
-(32233, 4413, 11), -- Average M. Def.
-(32233, 4414, 2), -- Standard Type
-(32233, 4415, 1), -- Bare Hands
-(32233, 4416, 25), -- Kamael
+(32233, 4408, 1), -- HP Modifiers
+(32233, 4409, 1), -- MP Modifiers
+(32233, 4410, 11), -- P. Atk. Modifiers
+(32233, 4411, 11), -- M. Atk. Modifiers
+(32233, 4412, 11), -- P. Def. Modifiers
+(32233, 4413, 11), -- M. Def. Modifiers
+(32233, 4414, 2), -- Armor Type
+(32233, 4415, 1), -- Weapon Type
+(32233, 4416, 25), -- Races
 -- Nizer
 (32234, 4045, 1), -- Resist Full Magic Attack
-(32234, 4408, 1), -- HP Increase (1x)
-(32234, 4409, 1), -- MP Increase (1x)
-(32234, 4410, 11), -- Average P. Atk.
-(32234, 4411, 11), -- Average M. Atk.
-(32234, 4412, 11), -- Average P. Def.
-(32234, 4413, 11), -- Average M. Def.
-(32234, 4414, 2), -- Standard Type
-(32234, 4415, 1), -- Bare Hands
-(32234, 4416, 25), -- Kamael
+(32234, 4408, 1), -- HP Modifiers
+(32234, 4409, 1), -- MP Modifiers
+(32234, 4410, 11), -- P. Atk. Modifiers
+(32234, 4411, 11), -- M. Atk. Modifiers
+(32234, 4412, 11), -- P. Def. Modifiers
+(32234, 4413, 11), -- M. Def. Modifiers
+(32234, 4414, 2), -- Armor Type
+(32234, 4415, 1), -- Weapon Type
+(32234, 4416, 25), -- Races
 -- Katenar
 (32235, 4045, 1), -- Resist Full Magic Attack
-(32235, 4408, 1), -- HP Increase (1x)
-(32235, 4409, 1), -- MP Increase (1x)
-(32235, 4410, 11), -- Average P. Atk.
-(32235, 4411, 11), -- Average M. Atk.
-(32235, 4412, 11), -- Average P. Def.
-(32235, 4413, 11), -- Average M. Def.
-(32235, 4414, 2), -- Standard Type
-(32235, 4415, 1), -- Bare Hands
-(32235, 4416, 25), -- Kamael
+(32235, 4408, 1), -- HP Modifiers
+(32235, 4409, 1), -- MP Modifiers
+(32235, 4410, 11), -- P. Atk. Modifiers
+(32235, 4411, 11), -- M. Atk. Modifiers
+(32235, 4412, 11), -- P. Def. Modifiers
+(32235, 4413, 11), -- M. Def. Modifiers
+(32235, 4414, 2), -- Armor Type
+(32235, 4415, 1), -- Weapon Type
+(32235, 4416, 25), -- Races
 -- Harkilgamed
 (32236, 4045, 1), -- Resist Full Magic Attack
-(32236, 4408, 1), -- HP Increase (1x)
-(32236, 4409, 1), -- MP Increase (1x)
-(32236, 4410, 11), -- Average P. Atk.
-(32236, 4411, 11), -- Average M. Atk.
-(32236, 4412, 11), -- Average P. Def.
-(32236, 4413, 11), -- Average M. Def.
-(32236, 4414, 2), -- Standard Type
-(32236, 4415, 1), -- Bare Hands
-(32236, 4416, 25), -- Kamael
+(32236, 4408, 1), -- HP Modifiers
+(32236, 4409, 1), -- MP Modifiers
+(32236, 4410, 11), -- P. Atk. Modifiers
+(32236, 4411, 11), -- M. Atk. Modifiers
+(32236, 4412, 11), -- P. Def. Modifiers
+(32236, 4413, 11), -- M. Def. Modifiers
+(32236, 4414, 2), -- Armor Type
+(32236, 4415, 1), -- Weapon Type
+(32236, 4416, 25), -- Races
 -- Rodenpicula
 (32237, 4045, 1), -- Resist Full Magic Attack
-(32237, 4408, 1), -- HP Increase (1x)
-(32237, 4409, 1), -- MP Increase (1x)
-(32237, 4410, 11), -- Average P. Atk.
-(32237, 4411, 11), -- Average M. Atk.
-(32237, 4412, 11), -- Average P. Def.
-(32237, 4413, 11), -- Average M. Def.
-(32237, 4414, 2), -- Standard Type
-(32237, 4415, 1), -- Bare Hands
-(32237, 4416, 25), -- Kamael
+(32237, 4408, 1), -- HP Modifiers
+(32237, 4409, 1), -- MP Modifiers
+(32237, 4410, 11), -- P. Atk. Modifiers
+(32237, 4411, 11), -- M. Atk. Modifiers
+(32237, 4412, 11), -- P. Def. Modifiers
+(32237, 4413, 11), -- M. Def. Modifiers
+(32237, 4414, 2), -- Armor Type
+(32237, 4415, 1), -- Weapon Type
+(32237, 4416, 25), -- Races
 -- Rock
 (32238, 4045, 1), -- Resist Full Magic Attack
-(32238, 4390, 1), -- Mystic Immunity
-(32238, 4408, 1), -- HP Increase (1x)
-(32238, 4409, 1), -- MP Increase (1x)
-(32238, 4410, 11), -- Average P. Atk.
-(32238, 4411, 11), -- Average M. Atk.
-(32238, 4412, 11), -- Average P. Def.
-(32238, 4413, 11), -- Average M. Def.
-(32238, 4414, 2), -- Standard Type
-(32238, 4415, 1), -- Bare Hands
-(32238, 4416, 2), -- Magic Creatures
+(32238, 4390, 1), -- NPC Abnormal Immunity
+(32238, 4408, 1), -- HP Modifiers
+(32238, 4409, 1), -- MP Modifiers
+(32238, 4410, 11), -- P. Atk. Modifiers
+(32238, 4411, 11), -- M. Atk. Modifiers
+(32238, 4412, 11), -- P. Def. Modifiers
+(32238, 4413, 11), -- M. Def. Modifiers
+(32238, 4414, 2), -- Armor Type
+(32238, 4415, 1), -- Weapon Type
+(32238, 4416, 2), -- Races
 -- Mother Nornil
 (32239, 4045, 1), -- Resist Full Magic Attack
-(32239, 4390, 1), -- Mystic Immunity
-(32239, 4408, 1), -- HP Increase (1x)
-(32239, 4409, 1), -- MP Increase (1x)
-(32239, 4410, 11), -- Average P. Atk.
-(32239, 4411, 11), -- Average M. Atk.
-(32239, 4412, 11), -- Average P. Def.
-(32239, 4413, 11), -- Average M. Def.
-(32239, 4414, 2), -- Standard Type
-(32239, 4415, 1), -- Bare Hands
-(32239, 4416, 2), -- Magic Creatures
+(32239, 4390, 1), -- NPC Abnormal Immunity
+(32239, 4408, 1), -- HP Modifiers
+(32239, 4409, 1), -- MP Modifiers
+(32239, 4410, 11), -- P. Atk. Modifiers
+(32239, 4411, 11), -- M. Atk. Modifiers
+(32239, 4412, 11), -- P. Def. Modifiers
+(32239, 4413, 11), -- M. Def. Modifiers
+(32239, 4414, 2), -- Armor Type
+(32239, 4415, 1), -- Weapon Type
+(32239, 4416, 2), -- Races
 -- Katenar
 (32240, 4045, 1), -- Resist Full Magic Attack
-(32240, 4408, 1), -- HP Increase (1x)
-(32240, 4409, 1), -- MP Increase (1x)
-(32240, 4410, 11), -- Average P. Atk.
-(32240, 4411, 11), -- Average M. Atk.
-(32240, 4412, 11), -- Average P. Def.
-(32240, 4413, 11), -- Average M. Def.
-(32240, 4414, 2), -- Standard Type
-(32240, 4415, 1), -- Bare Hands
-(32240, 4416, 25), -- Kamael
+(32240, 4408, 1), -- HP Modifiers
+(32240, 4409, 1), -- MP Modifiers
+(32240, 4410, 11), -- P. Atk. Modifiers
+(32240, 4411, 11), -- M. Atk. Modifiers
+(32240, 4412, 11), -- P. Def. Modifiers
+(32240, 4413, 11), -- M. Def. Modifiers
+(32240, 4414, 2), -- Armor Type
+(32240, 4415, 1), -- Weapon Type
+(32240, 4416, 25), -- Races
 -- Berka
 (32241, 4045, 1), -- Resist Full Magic Attack
-(32241, 4408, 1), -- HP Increase (1x)
-(32241, 4409, 1), -- MP Increase (1x)
-(32241, 4410, 11), -- Average P. Atk.
-(32241, 4411, 11), -- Average M. Atk.
-(32241, 4412, 11), -- Average P. Def.
-(32241, 4413, 11), -- Average M. Def.
-(32241, 4414, 2), -- Standard Type
-(32241, 4415, 1), -- Bare Hands
-(32241, 4416, 25), -- Kamael
+(32241, 4408, 1), -- HP Modifiers
+(32241, 4409, 1), -- MP Modifiers
+(32241, 4410, 11), -- P. Atk. Modifiers
+(32241, 4411, 11), -- M. Atk. Modifiers
+(32241, 4412, 11), -- P. Def. Modifiers
+(32241, 4413, 11), -- M. Def. Modifiers
+(32241, 4414, 2), -- Armor Type
+(32241, 4415, 1), -- Weapon Type
+(32241, 4416, 25), -- Races
 -- Katenar
 (32242, 4045, 1), -- Resist Full Magic Attack
-(32242, 4408, 1), -- HP Increase (1x)
-(32242, 4409, 1), -- MP Increase (1x)
-(32242, 4410, 11), -- Average P. Atk.
-(32242, 4411, 11), -- Average M. Atk.
-(32242, 4412, 11), -- Average P. Def.
-(32242, 4413, 11), -- Average M. Def.
-(32242, 4414, 2), -- Standard Type
-(32242, 4415, 1), -- Bare Hands
-(32242, 4416, 25), -- Kamael
+(32242, 4408, 1), -- HP Modifiers
+(32242, 4409, 1), -- MP Modifiers
+(32242, 4410, 11), -- P. Atk. Modifiers
+(32242, 4411, 11), -- M. Atk. Modifiers
+(32242, 4412, 11), -- P. Def. Modifiers
+(32242, 4413, 11), -- M. Def. Modifiers
+(32242, 4414, 2), -- Armor Type
+(32242, 4415, 1), -- Weapon Type
+(32242, 4416, 25), -- Races
 -- Cargo Box
 (32243, 4045, 1), -- Resist Full Magic Attack
-(32243, 4390, 1), -- Mystic Immunity
-(32243, 4408, 1), -- HP Increase (1x)
-(32243, 4409, 1), -- MP Increase (1x)
-(32243, 4410, 11), -- Average P. Atk.
-(32243, 4411, 11), -- Average M. Atk.
-(32243, 4412, 11), -- Average P. Def.
-(32243, 4413, 11), -- Average M. Def.
-(32243, 4414, 2), -- Standard Type
-(32243, 4415, 1), -- Bare Hands
-(32243, 4416, 19), -- Others
+(32243, 4390, 1), -- NPC Abnormal Immunity
+(32243, 4408, 1), -- HP Modifiers
+(32243, 4409, 1), -- MP Modifiers
+(32243, 4410, 11), -- P. Atk. Modifiers
+(32243, 4411, 11), -- M. Atk. Modifiers
+(32243, 4412, 11), -- P. Def. Modifiers
+(32243, 4413, 11), -- M. Def. Modifiers
+(32243, 4414, 2), -- Armor Type
+(32243, 4415, 1), -- Weapon Type
+(32243, 4416, 19), -- Races
 -- Suspicious Man
 (32244, 4045, 1), -- Resist Full Magic Attack
-(32244, 4408, 1), -- HP Increase (1x)
-(32244, 4409, 1), -- MP Increase (1x)
-(32244, 4410, 11), -- Average P. Atk.
-(32244, 4411, 11), -- Average M. Atk.
-(32244, 4412, 11), -- Average P. Def.
-(32244, 4413, 11), -- Average M. Def.
-(32244, 4414, 2), -- Standard Type
-(32244, 4415, 1), -- Bare Hands
-(32244, 4416, 25), -- Kamael
+(32244, 4408, 1), -- HP Modifiers
+(32244, 4409, 1), -- MP Modifiers
+(32244, 4410, 11), -- P. Atk. Modifiers
+(32244, 4411, 11), -- M. Atk. Modifiers
+(32244, 4412, 11), -- P. Def. Modifiers
+(32244, 4413, 11), -- M. Def. Modifiers
+(32244, 4414, 2), -- Armor Type
+(32244, 4415, 1), -- Weapon Type
+(32244, 4416, 25), -- Races
 -- Matras
 (32245, 4045, 1), -- Resist Full Magic Attack
-(32245, 4408, 1), -- HP Increase (1x)
-(32245, 4409, 1), -- MP Increase (1x)
-(32245, 4410, 11), -- Average P. Atk.
-(32245, 4411, 11), -- Average M. Atk.
-(32245, 4412, 11), -- Average P. Def.
-(32245, 4413, 11), -- Average M. Def.
-(32245, 4414, 2), -- Standard Type
-(32245, 4415, 1), -- Bare Hands
-(32245, 4416, 18), -- Dwarves
+(32245, 4408, 1), -- HP Modifiers
+(32245, 4409, 1), -- MP Modifiers
+(32245, 4410, 11), -- P. Atk. Modifiers
+(32245, 4411, 11), -- M. Atk. Modifiers
+(32245, 4412, 11), -- P. Def. Modifiers
+(32245, 4413, 11), -- M. Def. Modifiers
+(32245, 4414, 2), -- Armor Type
+(32245, 4415, 1), -- Weapon Type
+(32245, 4416, 18), -- Races
 -- Rua
 (32246, 4045, 1), -- Resist Full Magic Attack
-(32246, 4408, 1), -- HP Increase (1x)
-(32246, 4409, 1), -- MP Increase (1x)
-(32246, 4410, 11), -- Average P. Atk.
-(32246, 4411, 11), -- Average M. Atk.
-(32246, 4412, 11), -- Average P. Def.
-(32246, 4413, 11), -- Average M. Def.
-(32246, 4414, 2), -- Standard Type
-(32246, 4415, 1), -- Bare Hands
-(32246, 4416, 14), -- Humans
+(32246, 4408, 1), -- HP Modifiers
+(32246, 4409, 1), -- MP Modifiers
+(32246, 4410, 11), -- P. Atk. Modifiers
+(32246, 4411, 11), -- M. Atk. Modifiers
+(32246, 4412, 11), -- P. Def. Modifiers
+(32246, 4413, 11), -- M. Def. Modifiers
+(32246, 4414, 2), -- Armor Type
+(32246, 4415, 1), -- Weapon Type
+(32246, 4416, 14), -- Races
 -- Serian
 (32247, 4045, 1), -- Resist Full Magic Attack
-(32247, 4408, 1), -- HP Increase (1x)
-(32247, 4409, 1), -- MP Increase (1x)
-(32247, 4410, 11), -- Average P. Atk.
-(32247, 4411, 11), -- Average M. Atk.
-(32247, 4412, 11), -- Average P. Def.
-(32247, 4413, 11), -- Average M. Def.
-(32247, 4414, 2), -- Standard Type
-(32247, 4415, 1), -- Bare Hands
-(32247, 4416, 14), -- Humans
+(32247, 4408, 1), -- HP Modifiers
+(32247, 4409, 1), -- MP Modifiers
+(32247, 4410, 11), -- P. Atk. Modifiers
+(32247, 4411, 11), -- M. Atk. Modifiers
+(32247, 4412, 11), -- P. Def. Modifiers
+(32247, 4413, 11), -- M. Def. Modifiers
+(32247, 4414, 2), -- Armor Type
+(32247, 4415, 1), -- Weapon Type
+(32247, 4416, 14), -- Races
 -- First Reaction
 (32248, 4045, 1), -- Resist Full Magic Attack
-(32248, 4408, 1), -- HP Increase (1x)
-(32248, 4409, 1), -- MP Increase (1x)
-(32248, 4410, 11), -- Average P. Atk.
-(32248, 4411, 11), -- Average M. Atk.
-(32248, 4412, 11), -- Average P. Def.
-(32248, 4413, 11), -- Average M. Def.
-(32248, 4414, 2), -- Standard Type
-(32248, 4415, 1), -- Bare Hands
-(32248, 4416, 14), -- Humans
+(32248, 4408, 1), -- HP Modifiers
+(32248, 4409, 1), -- MP Modifiers
+(32248, 4410, 11), -- P. Atk. Modifiers
+(32248, 4411, 11), -- M. Atk. Modifiers
+(32248, 4412, 11), -- P. Def. Modifiers
+(32248, 4413, 11), -- M. Def. Modifiers
+(32248, 4414, 2), -- Armor Type
+(32248, 4415, 1), -- Weapon Type
+(32248, 4416, 14), -- Races
 -- Chief Jarron
 (32249, 4045, 1), -- Resist Full Magic Attack
-(32249, 4408, 1), -- HP Increase (1x)
-(32249, 4409, 1), -- MP Increase (1x)
-(32249, 4410, 11), -- Average P. Atk.
-(32249, 4411, 11), -- Average M. Atk.
-(32249, 4412, 11), -- Average P. Def.
-(32249, 4413, 11), -- Average M. Def.
-(32249, 4414, 2), -- Standard Type
-(32249, 4415, 1), -- Bare Hands
-(32249, 4416, 14), -- Humans
+(32249, 4408, 1), -- HP Modifiers
+(32249, 4409, 1), -- MP Modifiers
+(32249, 4410, 11), -- P. Atk. Modifiers
+(32249, 4411, 11), -- M. Atk. Modifiers
+(32249, 4412, 11), -- P. Def. Modifiers
+(32249, 4413, 11), -- M. Def. Modifiers
+(32249, 4414, 2), -- Armor Type
+(32249, 4415, 1), -- Weapon Type
+(32249, 4416, 14), -- Races
 -- Ario
 (32250, 4045, 1), -- Resist Full Magic Attack
-(32250, 4408, 1), -- HP Increase (1x)
-(32250, 4409, 1), -- MP Increase (1x)
-(32250, 4410, 11), -- Average P. Atk.
-(32250, 4411, 11), -- Average M. Atk.
-(32250, 4412, 11), -- Average P. Def.
-(32250, 4413, 11), -- Average M. Def.
-(32250, 4414, 2), -- Standard Type
-(32250, 4415, 1), -- Bare Hands
-(32250, 4416, 14), -- Humans
+(32250, 4408, 1), -- HP Modifiers
+(32250, 4409, 1), -- MP Modifiers
+(32250, 4410, 11), -- P. Atk. Modifiers
+(32250, 4411, 11), -- M. Atk. Modifiers
+(32250, 4412, 11), -- P. Def. Modifiers
+(32250, 4413, 11), -- M. Def. Modifiers
+(32250, 4414, 2), -- Armor Type
+(32250, 4415, 1), -- Weapon Type
+(32250, 4416, 14), -- Races
 -- Saria
 (32251, 4045, 1), -- Resist Full Magic Attack
-(32251, 4408, 1), -- HP Increase (1x)
-(32251, 4409, 1), -- MP Increase (1x)
-(32251, 4410, 11), -- Average P. Atk.
-(32251, 4411, 11), -- Average M. Atk.
-(32251, 4412, 11), -- Average P. Def.
-(32251, 4413, 11), -- Average M. Def.
-(32251, 4414, 2), -- Standard Type
-(32251, 4415, 1), -- Bare Hands
-(32251, 4416, 14), -- Humans
+(32251, 4408, 1), -- HP Modifiers
+(32251, 4409, 1), -- MP Modifiers
+(32251, 4410, 11), -- P. Atk. Modifiers
+(32251, 4411, 11), -- M. Atk. Modifiers
+(32251, 4412, 11), -- P. Def. Modifiers
+(32251, 4413, 11), -- M. Def. Modifiers
+(32251, 4414, 2), -- Armor Type
+(32251, 4415, 1), -- Weapon Type
+(32251, 4416, 14), -- Races
 -- Caravaner Gort
 (32252, 4045, 1), -- Resist Full Magic Attack
-(32252, 4408, 1), -- HP Increase (1x)
-(32252, 4409, 1), -- MP Increase (1x)
-(32252, 4410, 11), -- Average P. Atk.
-(32252, 4411, 11), -- Average M. Atk.
-(32252, 4412, 11), -- Average P. Def.
-(32252, 4413, 11), -- Average M. Def.
-(32252, 4414, 2), -- Standard Type
-(32252, 4415, 1), -- Bare Hands
-(32252, 4416, 25), -- Kamael
+(32252, 4408, 1), -- HP Modifiers
+(32252, 4409, 1), -- MP Modifiers
+(32252, 4410, 11), -- P. Atk. Modifiers
+(32252, 4411, 11), -- M. Atk. Modifiers
+(32252, 4412, 11), -- P. Def. Modifiers
+(32252, 4413, 11), -- M. Def. Modifiers
+(32252, 4414, 2), -- Armor Type
+(32252, 4415, 1), -- Weapon Type
+(32252, 4416, 25), -- Races
 -- Harkilgamed
 (32253, 4045, 1), -- Resist Full Magic Attack
-(32253, 4408, 1), -- HP Increase (1x)
-(32253, 4409, 1), -- MP Increase (1x)
-(32253, 4410, 11), -- Average P. Atk.
-(32253, 4411, 11), -- Average M. Atk.
-(32253, 4412, 11), -- Average P. Def.
-(32253, 4413, 11), -- Average M. Def.
-(32253, 4414, 2), -- Standard Type
-(32253, 4415, 1), -- Bare Hands
-(32253, 4416, 25), -- Kamael
+(32253, 4408, 1), -- HP Modifiers
+(32253, 4409, 1), -- MP Modifiers
+(32253, 4410, 11), -- P. Atk. Modifiers
+(32253, 4411, 11), -- M. Atk. Modifiers
+(32253, 4412, 11), -- P. Def. Modifiers
+(32253, 4413, 11), -- M. Def. Modifiers
+(32253, 4414, 2), -- Armor Type
+(32253, 4415, 1), -- Weapon Type
+(32253, 4416, 25), -- Races
 -- Harkilgamed
 (32254, 4045, 1), -- Resist Full Magic Attack
-(32254, 4408, 1), -- HP Increase (1x)
-(32254, 4409, 1), -- MP Increase (1x)
-(32254, 4410, 11), -- Average P. Atk.
-(32254, 4411, 11), -- Average M. Atk.
-(32254, 4412, 11), -- Average P. Def.
-(32254, 4413, 11), -- Average M. Def.
-(32254, 4414, 2), -- Standard Type
-(32254, 4415, 1), -- Bare Hands
-(32254, 4416, 25), -- Kamael
+(32254, 4408, 1), -- HP Modifiers
+(32254, 4409, 1), -- MP Modifiers
+(32254, 4410, 11), -- P. Atk. Modifiers
+(32254, 4411, 11), -- M. Atk. Modifiers
+(32254, 4412, 11), -- P. Def. Modifiers
+(32254, 4413, 11), -- M. Def. Modifiers
+(32254, 4414, 2), -- Armor Type
+(32254, 4415, 1), -- Weapon Type
+(32254, 4416, 25), -- Races
 -- Icon of the Past
 (32255, 4045, 1), -- Resist Full Magic Attack
-(32255, 4390, 1), -- Mystic Immunity
-(32255, 4408, 1), -- HP Increase (1x)
-(32255, 4409, 1), -- MP Increase (1x)
-(32255, 4410, 11), -- Average P. Atk.
-(32255, 4411, 11), -- Average M. Atk.
-(32255, 4412, 11), -- Average P. Def.
-(32255, 4413, 11), -- Average M. Def.
-(32255, 4414, 2), -- Standard Type
-(32255, 4415, 1), -- Bare Hands
-(32255, 4416, 2), -- Magic Creatures
+(32255, 4390, 1), -- NPC Abnormal Immunity
+(32255, 4408, 1), -- HP Modifiers
+(32255, 4409, 1), -- MP Modifiers
+(32255, 4410, 11), -- P. Atk. Modifiers
+(32255, 4411, 11), -- M. Atk. Modifiers
+(32255, 4412, 11), -- P. Def. Modifiers
+(32255, 4413, 11), -- M. Def. Modifiers
+(32255, 4414, 2), -- Armor Type
+(32255, 4415, 1), -- Weapon Type
+(32255, 4416, 2), -- Races
 -- Icon of the Present
 (32256, 4045, 1), -- Resist Full Magic Attack
-(32256, 4390, 1), -- Mystic Immunity
-(32256, 4408, 1), -- HP Increase (1x)
-(32256, 4409, 1), -- MP Increase (1x)
-(32256, 4410, 11), -- Average P. Atk.
-(32256, 4411, 11), -- Average M. Atk.
-(32256, 4412, 11), -- Average P. Def.
-(32256, 4413, 11), -- Average M. Def.
-(32256, 4414, 2), -- Standard Type
-(32256, 4415, 1), -- Bare Hands
-(32256, 4416, 2), -- Magic Creatures
+(32256, 4390, 1), -- NPC Abnormal Immunity
+(32256, 4408, 1), -- HP Modifiers
+(32256, 4409, 1), -- MP Modifiers
+(32256, 4410, 11), -- P. Atk. Modifiers
+(32256, 4411, 11), -- M. Atk. Modifiers
+(32256, 4412, 11), -- P. Def. Modifiers
+(32256, 4413, 11), -- M. Def. Modifiers
+(32256, 4414, 2), -- Armor Type
+(32256, 4415, 1), -- Weapon Type
+(32256, 4416, 2), -- Races
 -- Icon of the Future
 (32257, 4045, 1), -- Resist Full Magic Attack
-(32257, 4390, 1), -- Mystic Immunity
-(32257, 4408, 1), -- HP Increase (1x)
-(32257, 4409, 1), -- MP Increase (1x)
-(32257, 4410, 11), -- Average P. Atk.
-(32257, 4411, 11), -- Average M. Atk.
-(32257, 4412, 11), -- Average P. Def.
-(32257, 4413, 11), -- Average M. Def.
-(32257, 4414, 2), -- Standard Type
-(32257, 4415, 1), -- Bare Hands
-(32257, 4416, 2), -- Magic Creatures
+(32257, 4390, 1), -- NPC Abnormal Immunity
+(32257, 4408, 1), -- HP Modifiers
+(32257, 4409, 1), -- MP Modifiers
+(32257, 4410, 11), -- P. Atk. Modifiers
+(32257, 4411, 11), -- M. Atk. Modifiers
+(32257, 4412, 11), -- P. Def. Modifiers
+(32257, 4413, 11), -- M. Def. Modifiers
+(32257, 4414, 2), -- Armor Type
+(32257, 4415, 1), -- Weapon Type
+(32257, 4416, 2), -- Races
 -- Menacing Machine
 (32258, 4045, 1), -- Resist Full Magic Attack
-(32258, 4390, 1), -- Mystic Immunity
-(32258, 4408, 1), -- HP Increase (1x)
-(32258, 4409, 1), -- MP Increase (1x)
-(32258, 4410, 11), -- Average P. Atk.
-(32258, 4411, 11), -- Average M. Atk.
-(32258, 4412, 11), -- Average P. Def.
-(32258, 4413, 11), -- Average M. Def.
-(32258, 4414, 2), -- Standard Type
-(32258, 4415, 1), -- Bare Hands
-(32258, 4416, 2), -- Magic Creatures
+(32258, 4390, 1), -- NPC Abnormal Immunity
+(32258, 4408, 1), -- HP Modifiers
+(32258, 4409, 1), -- MP Modifiers
+(32258, 4410, 11), -- P. Atk. Modifiers
+(32258, 4411, 11), -- M. Atk. Modifiers
+(32258, 4412, 11), -- P. Def. Modifiers
+(32258, 4413, 11), -- M. Def. Modifiers
+(32258, 4414, 2), -- Armor Type
+(32258, 4415, 1), -- Weapon Type
+(32258, 4416, 2), -- Races
 -- Vault Door Controller
 (32259, 4045, 1), -- Resist Full Magic Attack
-(32259, 4390, 1), -- Mystic Immunity
-(32259, 4408, 1), -- HP Increase (1x)
-(32259, 4409, 1), -- MP Increase (1x)
-(32259, 4410, 11), -- Average P. Atk.
-(32259, 4411, 11), -- Average M. Atk.
-(32259, 4412, 11), -- Average P. Def.
-(32259, 4413, 11), -- Average M. Def.
-(32259, 4414, 2), -- Standard Type
-(32259, 4415, 1), -- Bare Hands
-(32259, 4416, 19), -- Others
+(32259, 4390, 1), -- NPC Abnormal Immunity
+(32259, 4408, 1), -- HP Modifiers
+(32259, 4409, 1), -- MP Modifiers
+(32259, 4410, 11), -- P. Atk. Modifiers
+(32259, 4411, 11), -- M. Atk. Modifiers
+(32259, 4412, 11), -- P. Def. Modifiers
+(32259, 4413, 11), -- M. Def. Modifiers
+(32259, 4414, 2), -- Armor Type
+(32259, 4415, 1), -- Weapon Type
+(32259, 4416, 19), -- Races
 -- Gatemaster of the Past
 (32260, 4045, 1), -- Resist Full Magic Attack
-(32260, 4390, 1), -- Mystic Immunity
-(32260, 4408, 1), -- HP Increase (1x)
-(32260, 4409, 1), -- MP Increase (1x)
-(32260, 4410, 11), -- Average P. Atk.
-(32260, 4411, 11), -- Average M. Atk.
-(32260, 4412, 11), -- Average P. Def.
-(32260, 4413, 11), -- Average M. Def.
-(32260, 4414, 2), -- Standard Type
-(32260, 4415, 1), -- Bare Hands
-(32260, 4416, 19), -- Others
+(32260, 4390, 1), -- NPC Abnormal Immunity
+(32260, 4408, 1), -- HP Modifiers
+(32260, 4409, 1), -- MP Modifiers
+(32260, 4410, 11), -- P. Atk. Modifiers
+(32260, 4411, 11), -- M. Atk. Modifiers
+(32260, 4412, 11), -- P. Def. Modifiers
+(32260, 4413, 11), -- M. Def. Modifiers
+(32260, 4414, 2), -- Armor Type
+(32260, 4415, 1), -- Weapon Type
+(32260, 4416, 19), -- Races
 -- Gatemaster of the Present
 (32261, 4045, 1), -- Resist Full Magic Attack
-(32261, 4390, 1), -- Mystic Immunity
-(32261, 4408, 1), -- HP Increase (1x)
-(32261, 4409, 1), -- MP Increase (1x)
-(32261, 4410, 11), -- Average P. Atk.
-(32261, 4411, 11), -- Average M. Atk.
-(32261, 4412, 11), -- Average P. Def.
-(32261, 4413, 11), -- Average M. Def.
-(32261, 4414, 2), -- Standard Type
-(32261, 4415, 1), -- Bare Hands
-(32261, 4416, 19), -- Others
+(32261, 4390, 1), -- NPC Abnormal Immunity
+(32261, 4408, 1), -- HP Modifiers
+(32261, 4409, 1), -- MP Modifiers
+(32261, 4410, 11), -- P. Atk. Modifiers
+(32261, 4411, 11), -- M. Atk. Modifiers
+(32261, 4412, 11), -- P. Def. Modifiers
+(32261, 4413, 11), -- M. Def. Modifiers
+(32261, 4414, 2), -- Armor Type
+(32261, 4415, 1), -- Weapon Type
+(32261, 4416, 19), -- Races
 -- Gatemaster of the Future
 (32262, 4045, 1), -- Resist Full Magic Attack
-(32262, 4390, 1), -- Mystic Immunity
-(32262, 4408, 1), -- HP Increase (1x)
-(32262, 4409, 1), -- MP Increase (1x)
-(32262, 4410, 11), -- Average P. Atk.
-(32262, 4411, 11), -- Average M. Atk.
-(32262, 4412, 11), -- Average P. Def.
-(32262, 4413, 11), -- Average M. Def.
-(32262, 4414, 2), -- Standard Type
-(32262, 4415, 1), -- Bare Hands
-(32262, 4416, 19), -- Others
+(32262, 4390, 1), -- NPC Abnormal Immunity
+(32262, 4408, 1), -- HP Modifiers
+(32262, 4409, 1), -- MP Modifiers
+(32262, 4410, 11), -- P. Atk. Modifiers
+(32262, 4411, 11), -- M. Atk. Modifiers
+(32262, 4412, 11), -- P. Def. Modifiers
+(32262, 4413, 11), -- M. Def. Modifiers
+(32262, 4414, 2), -- Armor Type
+(32262, 4415, 1), -- Weapon Type
+(32262, 4416, 19), -- Races
 -- Rodenpicula
 (32263, 4045, 1), -- Resist Full Magic Attack
-(32263, 4408, 1), -- HP Increase (1x)
-(32263, 4409, 1), -- MP Increase (1x)
-(32263, 4410, 11), -- Average P. Atk.
-(32263, 4411, 11), -- Average M. Atk.
-(32263, 4412, 11), -- Average P. Def.
-(32263, 4413, 11), -- Average M. Def.
-(32263, 4414, 2), -- Standard Type
-(32263, 4415, 1), -- Bare Hands
-(32263, 4416, 25), -- Kamael
+(32263, 4408, 1), -- HP Modifiers
+(32263, 4409, 1), -- MP Modifiers
+(32263, 4410, 11), -- P. Atk. Modifiers
+(32263, 4411, 11), -- M. Atk. Modifiers
+(32263, 4412, 11), -- P. Def. Modifiers
+(32263, 4413, 11), -- M. Def. Modifiers
+(32263, 4414, 2), -- Armor Type
+(32263, 4415, 1), -- Weapon Type
+(32263, 4416, 25), -- Races
 -- Kanis
 (32264, 4045, 1), -- Resist Full Magic Attack
-(32264, 4408, 1), -- HP Increase (1x)
-(32264, 4409, 1), -- MP Increase (1x)
-(32264, 4410, 11), -- Average P. Atk.
-(32264, 4411, 11), -- Average M. Atk.
-(32264, 4412, 11), -- Average P. Def.
-(32264, 4413, 11), -- Average M. Def.
-(32264, 4414, 2), -- Standard Type
-(32264, 4415, 1), -- Bare Hands
-(32264, 4416, 15), -- Elves
+(32264, 4408, 1), -- HP Modifiers
+(32264, 4409, 1), -- MP Modifiers
+(32264, 4410, 11), -- P. Atk. Modifiers
+(32264, 4411, 11), -- M. Atk. Modifiers
+(32264, 4412, 11), -- P. Def. Modifiers
+(32264, 4413, 11), -- M. Def. Modifiers
+(32264, 4414, 2), -- Armor Type
+(32264, 4415, 1), -- Weapon Type
+(32264, 4416, 15), -- Races
 -- Parme
 (32271, 4045, 1), -- Resist Full Magic Attack
-(32271, 4408, 1), -- HP Increase (1x)
-(32271, 4409, 1), -- MP Increase (1x)
-(32271, 4410, 11), -- Average P. Atk.
-(32271, 4411, 11), -- Average M. Atk.
-(32271, 4412, 11), -- Average P. Def.
-(32271, 4413, 11), -- Average M. Def.
-(32271, 4414, 2), -- Standard Type
-(32271, 4415, 1), -- Bare Hands
-(32271, 4416, 15), -- Elves
+(32271, 4408, 1), -- HP Modifiers
+(32271, 4409, 1), -- MP Modifiers
+(32271, 4410, 11), -- P. Atk. Modifiers
+(32271, 4411, 11), -- M. Atk. Modifiers
+(32271, 4412, 11), -- P. Def. Modifiers
+(32271, 4413, 11), -- M. Def. Modifiers
+(32271, 4414, 2), -- Armor Type
+(32271, 4415, 1), -- Weapon Type
+(32271, 4416, 15), -- Races
 -- Akyaka
 (32272, 4045, 1), -- Resist Full Magic Attack
-(32272, 4408, 1), -- HP Increase (1x)
-(32272, 4409, 1), -- MP Increase (1x)
-(32272, 4410, 11), -- Average P. Atk.
-(32272, 4411, 11), -- Average M. Atk.
-(32272, 4412, 11), -- Average P. Def.
-(32272, 4413, 11), -- Average M. Def.
-(32272, 4414, 2), -- Standard Type
-(32272, 4415, 1), -- Bare Hands
-(32272, 4416, 18), -- Dwarves
+(32272, 4408, 1), -- HP Modifiers
+(32272, 4409, 1), -- MP Modifiers
+(32272, 4410, 11), -- P. Atk. Modifiers
+(32272, 4411, 11), -- M. Atk. Modifiers
+(32272, 4412, 11), -- P. Def. Modifiers
+(32272, 4413, 11), -- M. Def. Modifiers
+(32272, 4414, 2), -- Armor Type
+(32272, 4415, 1), -- Weapon Type
+(32272, 4416, 18), -- Races
 -- Oracle Guide
 (32273, 4045, 1), -- Resist Full Magic Attack
-(32273, 4390, 1), -- Mystic Immunity
-(32273, 4408, 1), -- HP Increase (1x)
-(32273, 4409, 1), -- MP Increase (1x)
-(32273, 4410, 11), -- Average P. Atk.
-(32273, 4411, 11), -- Average M. Atk.
-(32273, 4412, 11), -- Average P. Def.
-(32273, 4413, 11), -- Average M. Def.
-(32273, 4414, 2), -- Standard Type
-(32273, 4415, 1), -- Bare Hands
-(32273, 4416, 2), -- Magic Creatures
+(32273, 4390, 1), -- NPC Abnormal Immunity
+(32273, 4408, 1), -- HP Modifiers
+(32273, 4409, 1), -- MP Modifiers
+(32273, 4410, 11), -- P. Atk. Modifiers
+(32273, 4411, 11), -- M. Atk. Modifiers
+(32273, 4412, 11), -- P. Def. Modifiers
+(32273, 4413, 11), -- M. Def. Modifiers
+(32273, 4414, 2), -- Armor Type
+(32273, 4415, 1), -- Weapon Type
+(32273, 4416, 2), -- Races
 -- Oracle Guide
 (32274, 4045, 1), -- Resist Full Magic Attack
-(32274, 4390, 1), -- Mystic Immunity
-(32274, 4408, 1), -- HP Increase (1x)
-(32274, 4409, 1), -- MP Increase (1x)
-(32274, 4410, 11), -- Average P. Atk.
-(32274, 4411, 11), -- Average M. Atk.
-(32274, 4412, 11), -- Average P. Def.
-(32274, 4413, 11), -- Average M. Def.
-(32274, 4414, 2), -- Standard Type
-(32274, 4415, 1), -- Bare Hands
-(32274, 4416, 2), -- Magic Creatures
+(32274, 4390, 1), -- NPC Abnormal Immunity
+(32274, 4408, 1), -- HP Modifiers
+(32274, 4409, 1), -- MP Modifiers
+(32274, 4410, 11), -- P. Atk. Modifiers
+(32274, 4411, 11), -- M. Atk. Modifiers
+(32274, 4412, 11), -- P. Def. Modifiers
+(32274, 4413, 11), -- M. Def. Modifiers
+(32274, 4414, 2), -- Armor Type
+(32274, 4415, 1), -- Weapon Type
+(32274, 4416, 2), -- Races
 -- Oracle Guide
 (32275, 4045, 1), -- Resist Full Magic Attack
-(32275, 4390, 1), -- Mystic Immunity
-(32275, 4408, 1), -- HP Increase (1x)
-(32275, 4409, 1), -- MP Increase (1x)
-(32275, 4410, 11), -- Average P. Atk.
-(32275, 4411, 11), -- Average M. Atk.
-(32275, 4412, 11), -- Average P. Def.
-(32275, 4413, 11), -- Average M. Def.
-(32275, 4414, 2), -- Standard Type
-(32275, 4415, 1), -- Bare Hands
-(32275, 4416, 2), -- Magic Creatures
+(32275, 4390, 1), -- NPC Abnormal Immunity
+(32275, 4408, 1), -- HP Modifiers
+(32275, 4409, 1), -- MP Modifiers
+(32275, 4410, 11), -- P. Atk. Modifiers
+(32275, 4411, 11), -- M. Atk. Modifiers
+(32275, 4412, 11), -- P. Def. Modifiers
+(32275, 4413, 11), -- M. Def. Modifiers
+(32275, 4414, 2), -- Armor Type
+(32275, 4415, 1), -- Weapon Type
+(32275, 4416, 2), -- Races
 -- Oracle Guide
 (32276, 4045, 1), -- Resist Full Magic Attack
-(32276, 4390, 1), -- Mystic Immunity
-(32276, 4408, 1), -- HP Increase (1x)
-(32276, 4409, 1), -- MP Increase (1x)
-(32276, 4410, 11), -- Average P. Atk.
-(32276, 4411, 11), -- Average M. Atk.
-(32276, 4412, 11), -- Average P. Def.
-(32276, 4413, 11), -- Average M. Def.
-(32276, 4414, 2), -- Standard Type
-(32276, 4415, 1), -- Bare Hands
-(32276, 4416, 2), -- Magic Creatures
+(32276, 4390, 1), -- NPC Abnormal Immunity
+(32276, 4408, 1), -- HP Modifiers
+(32276, 4409, 1), -- MP Modifiers
+(32276, 4410, 11), -- P. Atk. Modifiers
+(32276, 4411, 11), -- M. Atk. Modifiers
+(32276, 4412, 11), -- P. Def. Modifiers
+(32276, 4413, 11), -- M. Def. Modifiers
+(32276, 4414, 2), -- Armor Type
+(32276, 4415, 1), -- Weapon Type
+(32276, 4416, 2), -- Races
 -- Oracle Guide
 (32277, 4045, 1), -- Resist Full Magic Attack
-(32277, 4390, 1), -- Mystic Immunity
-(32277, 4408, 1), -- HP Increase (1x)
-(32277, 4409, 1), -- MP Increase (1x)
-(32277, 4410, 11), -- Average P. Atk.
-(32277, 4411, 11), -- Average M. Atk.
-(32277, 4412, 11), -- Average P. Def.
-(32277, 4413, 11), -- Average M. Def.
-(32277, 4414, 2), -- Standard Type
-(32277, 4415, 1), -- Bare Hands
-(32277, 4416, 2), -- Magic Creatures
+(32277, 4390, 1), -- NPC Abnormal Immunity
+(32277, 4408, 1), -- HP Modifiers
+(32277, 4409, 1), -- MP Modifiers
+(32277, 4410, 11), -- P. Atk. Modifiers
+(32277, 4411, 11), -- M. Atk. Modifiers
+(32277, 4412, 11), -- P. Def. Modifiers
+(32277, 4413, 11), -- M. Def. Modifiers
+(32277, 4414, 2), -- Armor Type
+(32277, 4415, 1), -- Weapon Type
+(32277, 4416, 2), -- Races
 -- Oracle Guide
 (32278, 4045, 1), -- Resist Full Magic Attack
-(32278, 4390, 1), -- Mystic Immunity
-(32278, 4408, 1), -- HP Increase (1x)
-(32278, 4409, 1), -- MP Increase (1x)
-(32278, 4410, 11), -- Average P. Atk.
-(32278, 4411, 11), -- Average M. Atk.
-(32278, 4412, 11), -- Average P. Def.
-(32278, 4413, 11), -- Average M. Def.
-(32278, 4414, 2), -- Standard Type
-(32278, 4415, 1), -- Bare Hands
-(32278, 4416, 2), -- Magic Creatures
+(32278, 4390, 1), -- NPC Abnormal Immunity
+(32278, 4408, 1), -- HP Modifiers
+(32278, 4409, 1), -- MP Modifiers
+(32278, 4410, 11), -- P. Atk. Modifiers
+(32278, 4411, 11), -- M. Atk. Modifiers
+(32278, 4412, 11), -- P. Def. Modifiers
+(32278, 4413, 11), -- M. Def. Modifiers
+(32278, 4414, 2), -- Armor Type
+(32278, 4415, 1), -- Weapon Type
+(32278, 4416, 2), -- Races
 -- Oracle Guide
 (32279, 4045, 1), -- Resist Full Magic Attack
-(32279, 4390, 1), -- Mystic Immunity
-(32279, 4408, 1), -- HP Increase (1x)
-(32279, 4409, 1), -- MP Increase (1x)
-(32279, 4410, 11), -- Average P. Atk.
-(32279, 4411, 11), -- Average M. Atk.
-(32279, 4412, 11), -- Average P. Def.
-(32279, 4413, 11), -- Average M. Def.
-(32279, 4414, 2), -- Standard Type
-(32279, 4415, 1), -- Bare Hands
-(32279, 4416, 2), -- Magic Creatures
+(32279, 4390, 1), -- NPC Abnormal Immunity
+(32279, 4408, 1), -- HP Modifiers
+(32279, 4409, 1), -- MP Modifiers
+(32279, 4410, 11), -- P. Atk. Modifiers
+(32279, 4411, 11), -- M. Atk. Modifiers
+(32279, 4412, 11), -- P. Def. Modifiers
+(32279, 4413, 11), -- M. Def. Modifiers
+(32279, 4414, 2), -- Armor Type
+(32279, 4415, 1), -- Weapon Type
+(32279, 4416, 2), -- Races
 -- Oracle Guide
 (32280, 4045, 1), -- Resist Full Magic Attack
-(32280, 4390, 1), -- Mystic Immunity
-(32280, 4408, 1), -- HP Increase (1x)
-(32280, 4409, 1), -- MP Increase (1x)
-(32280, 4410, 11), -- Average P. Atk.
-(32280, 4411, 11), -- Average M. Atk.
-(32280, 4412, 11), -- Average P. Def.
-(32280, 4413, 11), -- Average M. Def.
-(32280, 4414, 2), -- Standard Type
-(32280, 4415, 1), -- Bare Hands
-(32280, 4416, 2), -- Magic Creatures
+(32280, 4390, 1), -- NPC Abnormal Immunity
+(32280, 4408, 1), -- HP Modifiers
+(32280, 4409, 1), -- MP Modifiers
+(32280, 4410, 11), -- P. Atk. Modifiers
+(32280, 4411, 11), -- M. Atk. Modifiers
+(32280, 4412, 11), -- P. Def. Modifiers
+(32280, 4413, 11), -- M. Def. Modifiers
+(32280, 4414, 2), -- Armor Type
+(32280, 4415, 1), -- Weapon Type
+(32280, 4416, 2), -- Races
 -- Oracle Guide
 (32281, 4045, 1), -- Resist Full Magic Attack
-(32281, 4390, 1), -- Mystic Immunity
-(32281, 4408, 1), -- HP Increase (1x)
-(32281, 4409, 1), -- MP Increase (1x)
-(32281, 4410, 11), -- Average P. Atk.
-(32281, 4411, 11), -- Average M. Atk.
-(32281, 4412, 11), -- Average P. Def.
-(32281, 4413, 11), -- Average M. Def.
-(32281, 4414, 2), -- Standard Type
-(32281, 4415, 1), -- Bare Hands
-(32281, 4416, 2), -- Magic Creatures
+(32281, 4390, 1), -- NPC Abnormal Immunity
+(32281, 4408, 1), -- HP Modifiers
+(32281, 4409, 1), -- MP Modifiers
+(32281, 4410, 11), -- P. Atk. Modifiers
+(32281, 4411, 11), -- M. Atk. Modifiers
+(32281, 4412, 11), -- P. Def. Modifiers
+(32281, 4413, 11), -- M. Def. Modifiers
+(32281, 4414, 2), -- Armor Type
+(32281, 4415, 1), -- Weapon Type
+(32281, 4416, 2), -- Races
 -- Yiyen
 (32282, 4045, 1), -- Resist Full Magic Attack
-(32282, 4408, 1), -- HP Increase (1x)
-(32282, 4409, 1), -- MP Increase (1x)
-(32282, 4410, 11), -- Average P. Atk.
-(32282, 4411, 11), -- Average M. Atk.
-(32282, 4412, 11), -- Average P. Def.
-(32282, 4413, 11), -- Average M. Def.
-(32282, 4414, 2), -- Standard Type
-(32282, 4415, 1), -- Bare Hands
-(32282, 4416, 18), -- Dwarves
+(32282, 4408, 1), -- HP Modifiers
+(32282, 4409, 1), -- MP Modifiers
+(32282, 4410, 11), -- P. Atk. Modifiers
+(32282, 4411, 11), -- M. Atk. Modifiers
+(32282, 4412, 11), -- P. Def. Modifiers
+(32282, 4413, 11), -- M. Def. Modifiers
+(32282, 4414, 2), -- Armor Type
+(32282, 4415, 1), -- Weapon Type
+(32282, 4416, 18), -- Races
 -- Eva's Protector
-(32284, 4390, 1), -- Mystic Immunity
-(32284, 4408, 10), -- HP Increase (2x)
-(32284, 4409, 1), -- MP Increase (1x)
-(32284, 4410, 11), -- Average P. Atk.
-(32284, 4411, 11), -- Average M. Atk.
-(32284, 4412, 11), -- Average P. Def.
-(32284, 4413, 11), -- Average M. Def.
-(32284, 4414, 2), -- Standard Type
-(32284, 4415, 1), -- Bare Hands
-(32284, 4416, 2), -- Magic Creatures
+(32284, 4390, 1), -- NPC Abnormal Immunity
+(32284, 4408, 10), -- HP Modifiers
+(32284, 4409, 1), -- MP Modifiers
+(32284, 4410, 11), -- P. Atk. Modifiers
+(32284, 4411, 11), -- M. Atk. Modifiers
+(32284, 4412, 11), -- P. Def. Modifiers
+(32284, 4413, 11), -- M. Def. Modifiers
+(32284, 4414, 2), -- Armor Type
+(32284, 4415, 1), -- Weapon Type
+(32284, 4416, 2), -- Races
 (32284, 5239, 1), -- Event Timer
 -- Eva's Protector
-(32285, 4390, 1), -- Mystic Immunity
-(32285, 4408, 11), -- HP Increase (3x)
-(32285, 4409, 1), -- MP Increase (1x)
-(32285, 4410, 11), -- Average P. Atk.
-(32285, 4411, 11), -- Average M. Atk.
-(32285, 4412, 11), -- Average P. Def.
-(32285, 4413, 11), -- Average M. Def.
-(32285, 4414, 2), -- Standard Type
-(32285, 4415, 1), -- Bare Hands
-(32285, 4416, 2), -- Magic Creatures
+(32285, 4390, 1), -- NPC Abnormal Immunity
+(32285, 4408, 11), -- HP Modifiers
+(32285, 4409, 1), -- MP Modifiers
+(32285, 4410, 11), -- P. Atk. Modifiers
+(32285, 4411, 11), -- M. Atk. Modifiers
+(32285, 4412, 11), -- P. Def. Modifiers
+(32285, 4413, 11), -- M. Def. Modifiers
+(32285, 4414, 2), -- Armor Type
+(32285, 4415, 1), -- Weapon Type
+(32285, 4416, 2), -- Races
 (32285, 5239, 2), -- Event Timer
 -- Eva's Protector
-(32286, 4390, 1), -- Mystic Immunity
-(32286, 4408, 12), -- HP Increase (4x)
-(32286, 4409, 1), -- MP Increase (1x)
-(32286, 4410, 11), -- Average P. Atk.
-(32286, 4411, 11), -- Average M. Atk.
-(32286, 4412, 11), -- Average P. Def.
-(32286, 4413, 11), -- Average M. Def.
-(32286, 4414, 2), -- Standard Type
-(32286, 4415, 1), -- Bare Hands
-(32286, 4416, 2), -- Magic Creatures
+(32286, 4390, 1), -- NPC Abnormal Immunity
+(32286, 4408, 12), -- HP Modifiers
+(32286, 4409, 1), -- MP Modifiers
+(32286, 4410, 11), -- P. Atk. Modifiers
+(32286, 4411, 11), -- M. Atk. Modifiers
+(32286, 4412, 11), -- P. Def. Modifiers
+(32286, 4413, 11), -- M. Def. Modifiers
+(32286, 4414, 2), -- Armor Type
+(32286, 4415, 1), -- Weapon Type
+(32286, 4416, 2), -- Races
 (32286, 5239, 3), -- Event Timer
 -- Eva's Protector
-(32287, 4390, 1), -- Mystic Immunity
-(32287, 4408, 13), -- HP Increase (5x)
-(32287, 4409, 1), -- MP Increase (1x)
-(32287, 4410, 11), -- Average P. Atk.
-(32287, 4411, 11), -- Average M. Atk.
-(32287, 4412, 11), -- Average P. Def.
-(32287, 4413, 11), -- Average M. Def.
-(32287, 4414, 2), -- Standard Type
-(32287, 4415, 1), -- Bare Hands
-(32287, 4416, 2), -- Magic Creatures
+(32287, 4390, 1), -- NPC Abnormal Immunity
+(32287, 4408, 13), -- HP Modifiers
+(32287, 4409, 1), -- MP Modifiers
+(32287, 4410, 11), -- P. Atk. Modifiers
+(32287, 4411, 11), -- M. Atk. Modifiers
+(32287, 4412, 11), -- P. Def. Modifiers
+(32287, 4413, 11), -- M. Def. Modifiers
+(32287, 4414, 2), -- Armor Type
+(32287, 4415, 1), -- Weapon Type
+(32287, 4416, 2), -- Races
 (32287, 5239, 4), -- Event Timer
 -- Symbol of Faith
 (32288, 4045, 1), -- Resist Full Magic Attack
-(32288, 4390, 1), -- Mystic Immunity
-(32288, 4408, 1), -- HP Increase (1x)
-(32288, 4409, 1), -- MP Increase (1x)
-(32288, 4410, 11), -- Average P. Atk.
-(32288, 4411, 11), -- Average M. Atk.
-(32288, 4412, 11), -- Average P. Def.
-(32288, 4413, 11), -- Average M. Def.
-(32288, 4414, 2), -- Standard Type
-(32288, 4415, 1), -- Bare Hands
-(32288, 4416, 2), -- Magic Creatures
+(32288, 4390, 1), -- NPC Abnormal Immunity
+(32288, 4408, 1), -- HP Modifiers
+(32288, 4409, 1), -- MP Modifiers
+(32288, 4410, 11), -- P. Atk. Modifiers
+(32288, 4411, 11), -- M. Atk. Modifiers
+(32288, 4412, 11), -- P. Def. Modifiers
+(32288, 4413, 11), -- M. Def. Modifiers
+(32288, 4414, 2), -- Armor Type
+(32288, 4415, 1), -- Weapon Type
+(32288, 4416, 2), -- Races
 -- Symbol of Adversity
 (32289, 4045, 1), -- Resist Full Magic Attack
-(32289, 4390, 1), -- Mystic Immunity
-(32289, 4408, 1), -- HP Increase (1x)
-(32289, 4409, 1), -- MP Increase (1x)
-(32289, 4410, 11), -- Average P. Atk.
-(32289, 4411, 11), -- Average M. Atk.
-(32289, 4412, 11), -- Average P. Def.
-(32289, 4413, 11), -- Average M. Def.
-(32289, 4414, 2), -- Standard Type
-(32289, 4415, 1), -- Bare Hands
-(32289, 4416, 2), -- Magic Creatures
+(32289, 4390, 1), -- NPC Abnormal Immunity
+(32289, 4408, 1), -- HP Modifiers
+(32289, 4409, 1), -- MP Modifiers
+(32289, 4410, 11), -- P. Atk. Modifiers
+(32289, 4411, 11), -- M. Atk. Modifiers
+(32289, 4412, 11), -- P. Def. Modifiers
+(32289, 4413, 11), -- M. Def. Modifiers
+(32289, 4414, 2), -- Armor Type
+(32289, 4415, 1), -- Weapon Type
+(32289, 4416, 2), -- Races
 -- Symbol of Adventure
 (32290, 4045, 1), -- Resist Full Magic Attack
-(32290, 4390, 1), -- Mystic Immunity
-(32290, 4408, 1), -- HP Increase (1x)
-(32290, 4409, 1), -- MP Increase (1x)
-(32290, 4410, 11), -- Average P. Atk.
-(32290, 4411, 11), -- Average M. Atk.
-(32290, 4412, 11), -- Average P. Def.
-(32290, 4413, 11), -- Average M. Def.
-(32290, 4414, 2), -- Standard Type
-(32290, 4415, 1), -- Bare Hands
-(32290, 4416, 2), -- Magic Creatures
+(32290, 4390, 1), -- NPC Abnormal Immunity
+(32290, 4408, 1), -- HP Modifiers
+(32290, 4409, 1), -- MP Modifiers
+(32290, 4410, 11), -- P. Atk. Modifiers
+(32290, 4411, 11), -- M. Atk. Modifiers
+(32290, 4412, 11), -- P. Def. Modifiers
+(32290, 4413, 11), -- M. Def. Modifiers
+(32290, 4414, 2), -- Armor Type
+(32290, 4415, 1), -- Weapon Type
+(32290, 4416, 2), -- Races
 -- Symbol of Truth
 (32291, 4045, 1), -- Resist Full Magic Attack
-(32291, 4390, 1), -- Mystic Immunity
-(32291, 4408, 1), -- HP Increase (1x)
-(32291, 4409, 1), -- MP Increase (1x)
-(32291, 4410, 11), -- Average P. Atk.
-(32291, 4411, 11), -- Average M. Atk.
-(32291, 4412, 11), -- Average P. Def.
-(32291, 4413, 11), -- Average M. Def.
-(32291, 4414, 2), -- Standard Type
-(32291, 4415, 1), -- Bare Hands
-(32291, 4416, 2), -- Magic Creatures
+(32291, 4390, 1), -- NPC Abnormal Immunity
+(32291, 4408, 1), -- HP Modifiers
+(32291, 4409, 1), -- MP Modifiers
+(32291, 4410, 11), -- P. Atk. Modifiers
+(32291, 4411, 11), -- M. Atk. Modifiers
+(32291, 4412, 11), -- P. Def. Modifiers
+(32291, 4413, 11), -- M. Def. Modifiers
+(32291, 4414, 2), -- Armor Type
+(32291, 4415, 1), -- Weapon Type
+(32291, 4416, 2), -- Races
 -- Galate
 (32292, 4045, 1), -- Resist Full Magic Attack
-(32292, 4408, 1), -- HP Increase (1x)
-(32292, 4409, 1), -- MP Increase (1x)
-(32292, 4410, 11), -- Average P. Atk.
-(32292, 4411, 11), -- Average M. Atk.
-(32292, 4412, 11), -- Average P. Def.
-(32292, 4413, 11), -- Average M. Def.
-(32292, 4414, 2), -- Standard Type
-(32292, 4415, 1), -- Bare Hands
-(32292, 4416, 14), -- Humans
+(32292, 4408, 1), -- HP Modifiers
+(32292, 4409, 1), -- MP Modifiers
+(32292, 4410, 11), -- P. Atk. Modifiers
+(32292, 4411, 11), -- M. Atk. Modifiers
+(32292, 4412, 11), -- P. Def. Modifiers
+(32292, 4413, 11), -- M. Def. Modifiers
+(32292, 4414, 2), -- Armor Type
+(32292, 4415, 1), -- Weapon Type
+(32292, 4416, 14), -- Races
 -- Jirrone
 (32293, 4045, 1), -- Resist Full Magic Attack
-(32293, 4408, 1), -- HP Increase (1x)
-(32293, 4409, 1), -- MP Increase (1x)
-(32293, 4410, 11), -- Average P. Atk.
-(32293, 4411, 11), -- Average M. Atk.
-(32293, 4412, 11), -- Average P. Def.
-(32293, 4413, 11), -- Average M. Def.
-(32293, 4414, 2), -- Standard Type
-(32293, 4415, 1), -- Bare Hands
-(32293, 4416, 14), -- Humans
+(32293, 4408, 1), -- HP Modifiers
+(32293, 4409, 1), -- MP Modifiers
+(32293, 4410, 11), -- P. Atk. Modifiers
+(32293, 4411, 11), -- M. Atk. Modifiers
+(32293, 4412, 11), -- P. Def. Modifiers
+(32293, 4413, 11), -- M. Def. Modifiers
+(32293, 4414, 2), -- Armor Type
+(32293, 4415, 1), -- Weapon Type
+(32293, 4416, 14), -- Races
 -- Budenka
 (32294, 4045, 1), -- Resist Full Magic Attack
-(32294, 4408, 1), -- HP Increase (1x)
-(32294, 4409, 1), -- MP Increase (1x)
-(32294, 4410, 11), -- Average P. Atk.
-(32294, 4411, 11), -- Average M. Atk.
-(32294, 4412, 11), -- Average P. Def.
-(32294, 4413, 11), -- Average M. Def.
-(32294, 4414, 2), -- Standard Type
-(32294, 4415, 1), -- Bare Hands
-(32294, 4416, 6), -- Humanoids
+(32294, 4408, 1), -- HP Modifiers
+(32294, 4409, 1), -- MP Modifiers
+(32294, 4410, 11), -- P. Atk. Modifiers
+(32294, 4411, 11), -- M. Atk. Modifiers
+(32294, 4412, 11), -- P. Def. Modifiers
+(32294, 4413, 11), -- M. Def. Modifiers
+(32294, 4414, 2), -- Armor Type
+(32294, 4415, 1), -- Weapon Type
+(32294, 4416, 6), -- Races
 -- Seruzia
 (32296, 4045, 1), -- Resist Full Magic Attack
-(32296, 4408, 1), -- HP Increase (1x)
-(32296, 4409, 1), -- MP Increase (1x)
-(32296, 4410, 11), -- Average P. Atk.
-(32296, 4411, 11), -- Average M. Atk.
-(32296, 4412, 11), -- Average P. Def.
-(32296, 4413, 11), -- Average M. Def.
-(32296, 4414, 2), -- Standard Type
-(32296, 4415, 1), -- Bare Hands
-(32296, 4416, 1), -- Undead
+(32296, 4408, 1), -- HP Modifiers
+(32296, 4409, 1), -- MP Modifiers
+(32296, 4410, 11), -- P. Atk. Modifiers
+(32296, 4411, 11), -- M. Atk. Modifiers
+(32296, 4412, 11), -- P. Def. Modifiers
+(32296, 4413, 11), -- M. Def. Modifiers
+(32296, 4414, 2), -- Armor Type
+(32296, 4415, 1), -- Weapon Type
+(32296, 4416, 1), -- Races
 -- Falk
 (32297, 4045, 1), -- Resist Full Magic Attack
-(32297, 4408, 1), -- HP Increase (1x)
-(32297, 4409, 1), -- MP Increase (1x)
-(32297, 4410, 11), -- Average P. Atk.
-(32297, 4411, 11), -- Average M. Atk.
-(32297, 4412, 11), -- Average P. Def.
-(32297, 4413, 11), -- Average M. Def.
-(32297, 4414, 2), -- Standard Type
-(32297, 4415, 1), -- Bare Hands
-(32297, 4416, 6), -- Humanoids
+(32297, 4408, 1), -- HP Modifiers
+(32297, 4409, 1), -- MP Modifiers
+(32297, 4410, 11), -- P. Atk. Modifiers
+(32297, 4411, 11), -- M. Atk. Modifiers
+(32297, 4412, 11), -- P. Def. Modifiers
+(32297, 4413, 11), -- M. Def. Modifiers
+(32297, 4414, 2), -- Armor Type
+(32297, 4415, 1), -- Weapon Type
+(32297, 4416, 6), -- Races
 -- Hude
 (32298, 4045, 1), -- Resist Full Magic Attack
-(32298, 4408, 1), -- HP Increase (1x)
-(32298, 4409, 1), -- MP Increase (1x)
-(32298, 4410, 11), -- Average P. Atk.
-(32298, 4411, 11), -- Average M. Atk.
-(32298, 4412, 11), -- Average P. Def.
-(32298, 4413, 11), -- Average M. Def.
-(32298, 4414, 2), -- Standard Type
-(32298, 4415, 1), -- Bare Hands
-(32298, 4416, 6), -- Humanoids
+(32298, 4408, 1), -- HP Modifiers
+(32298, 4409, 1), -- MP Modifiers
+(32298, 4410, 11), -- P. Atk. Modifiers
+(32298, 4411, 11), -- M. Atk. Modifiers
+(32298, 4412, 11), -- P. Def. Modifiers
+(32298, 4413, 11), -- M. Def. Modifiers
+(32298, 4414, 2), -- Armor Type
+(32298, 4415, 1), -- Weapon Type
+(32298, 4416, 6), -- Races
 -- Quarry Slave
-(32299, 4408, 1), -- HP Increase (1x)
-(32299, 4409, 1), -- MP Increase (1x)
-(32299, 4410, 11), -- Average P. Atk.
-(32299, 4411, 11), -- Average M. Atk.
-(32299, 4412, 11), -- Average P. Def.
-(32299, 4413, 11), -- Average M. Def.
-(32299, 4414, 2), -- Standard Type
-(32299, 4415, 1), -- Bare Hands
-(32299, 4416, 6), -- Humanoids
+(32299, 4408, 1), -- HP Modifiers
+(32299, 4409, 1), -- MP Modifiers
+(32299, 4410, 11), -- P. Atk. Modifiers
+(32299, 4411, 11), -- M. Atk. Modifiers
+(32299, 4412, 11), -- P. Def. Modifiers
+(32299, 4413, 11), -- M. Def. Modifiers
+(32299, 4414, 2), -- Armor Type
+(32299, 4415, 1), -- Weapon Type
+(32299, 4416, 6), -- Races
 -- Bernarde
 (32300, 4045, 1), -- Resist Full Magic Attack
-(32300, 4408, 1), -- HP Increase (1x)
-(32300, 4409, 1), -- MP Increase (1x)
-(32300, 4410, 11), -- Average P. Atk.
-(32300, 4411, 11), -- Average M. Atk.
-(32300, 4412, 11), -- Average P. Def.
-(32300, 4413, 11), -- Average M. Def.
-(32300, 4414, 2), -- Standard Type
-(32300, 4415, 1), -- Bare Hands
-(32300, 4416, 14), -- Humans
+(32300, 4408, 1), -- HP Modifiers
+(32300, 4409, 1), -- MP Modifiers
+(32300, 4410, 11), -- P. Atk. Modifiers
+(32300, 4411, 11), -- M. Atk. Modifiers
+(32300, 4412, 11), -- P. Def. Modifiers
+(32300, 4413, 11), -- M. Def. Modifiers
+(32300, 4414, 2), -- Armor Type
+(32300, 4415, 1), -- Weapon Type
+(32300, 4416, 14), -- Races
 -- Kendal
 (32301, 4045, 1), -- Resist Full Magic Attack
-(32301, 4408, 1), -- HP Increase (1x)
-(32301, 4409, 1), -- MP Increase (1x)
-(32301, 4410, 11), -- Average P. Atk.
-(32301, 4411, 11), -- Average M. Atk.
-(32301, 4412, 11), -- Average P. Def.
-(32301, 4413, 11), -- Average M. Def.
-(32301, 4414, 2), -- Standard Type
-(32301, 4415, 1), -- Bare Hands
-(32301, 4416, 1), -- Undead
+(32301, 4408, 1), -- HP Modifiers
+(32301, 4409, 1), -- MP Modifiers
+(32301, 4410, 11), -- P. Atk. Modifiers
+(32301, 4411, 11), -- M. Atk. Modifiers
+(32301, 4412, 11), -- P. Def. Modifiers
+(32301, 4413, 11), -- M. Def. Modifiers
+(32301, 4414, 2), -- Armor Type
+(32301, 4415, 1), -- Weapon Type
+(32301, 4416, 1), -- Races
 -- Jerian
 (32302, 4045, 1), -- Resist Full Magic Attack
-(32302, 4408, 1), -- HP Increase (1x)
-(32302, 4409, 1), -- MP Increase (1x)
-(32302, 4410, 11), -- Average P. Atk.
-(32302, 4411, 11), -- Average M. Atk.
-(32302, 4412, 11), -- Average P. Def.
-(32302, 4413, 11), -- Average M. Def.
-(32302, 4414, 2), -- Standard Type
-(32302, 4415, 1), -- Bare Hands
-(32302, 4416, 14), -- Humans
+(32302, 4408, 1), -- HP Modifiers
+(32302, 4409, 1), -- MP Modifiers
+(32302, 4410, 11), -- P. Atk. Modifiers
+(32302, 4411, 11), -- M. Atk. Modifiers
+(32302, 4412, 11), -- P. Def. Modifiers
+(32302, 4413, 11), -- M. Def. Modifiers
+(32302, 4414, 2), -- Armor Type
+(32302, 4415, 1), -- Weapon Type
+(32302, 4416, 14), -- Races
 -- Machine
 (32303, 4045, 1), -- Resist Full Magic Attack
-(32303, 4390, 1), -- Mystic Immunity
-(32303, 4408, 1), -- HP Increase (1x)
-(32303, 4409, 1), -- MP Increase (1x)
-(32303, 4410, 11), -- Average P. Atk.
-(32303, 4411, 11), -- Average M. Atk.
-(32303, 4412, 11), -- Average P. Def.
-(32303, 4413, 11), -- Average M. Def.
-(32303, 4414, 2), -- Standard Type
-(32303, 4415, 1), -- Bare Hands
-(32303, 4416, 2), -- Magic Creatures
+(32303, 4390, 1), -- NPC Abnormal Immunity
+(32303, 4408, 1), -- HP Modifiers
+(32303, 4409, 1), -- MP Modifiers
+(32303, 4410, 11), -- P. Atk. Modifiers
+(32303, 4411, 11), -- M. Atk. Modifiers
+(32303, 4412, 11), -- P. Def. Modifiers
+(32303, 4413, 11), -- M. Def. Modifiers
+(32303, 4414, 2), -- Armor Type
+(32303, 4415, 1), -- Weapon Type
+(32303, 4416, 2), -- Races
 -- Oasis
 (32304, 4045, 1), -- Resist Full Magic Attack
-(32304, 4390, 1), -- Mystic Immunity
-(32304, 4408, 1), -- HP Increase (1x)
-(32304, 4409, 1), -- MP Increase (1x)
-(32304, 4410, 11), -- Average P. Atk.
-(32304, 4411, 11), -- Average M. Atk.
-(32304, 4412, 11), -- Average P. Def.
-(32304, 4413, 11), -- Average M. Def.
-(32304, 4414, 2), -- Standard Type
-(32304, 4415, 1), -- Bare Hands
-(32304, 4416, 19), -- Others
+(32304, 4390, 1), -- NPC Abnormal Immunity
+(32304, 4408, 1), -- HP Modifiers
+(32304, 4409, 1), -- MP Modifiers
+(32304, 4410, 11), -- P. Atk. Modifiers
+(32304, 4411, 11), -- M. Atk. Modifiers
+(32304, 4412, 11), -- P. Def. Modifiers
+(32304, 4413, 11), -- M. Def. Modifiers
+(32304, 4414, 2), -- Armor Type
+(32304, 4415, 1), -- Weapon Type
+(32304, 4416, 19), -- Races
 -- Ranku's Scapegoat
 (32305, 4045, 1), -- Resist Full Magic Attack
-(32305, 4408, 1), -- HP Increase (1x)
-(32305, 4409, 1), -- MP Increase (1x)
-(32305, 4410, 11), -- Average P. Atk.
-(32305, 4411, 11), -- Average M. Atk.
-(32305, 4412, 11), -- Average P. Def.
-(32305, 4413, 11), -- Average M. Def.
-(32305, 4414, 2), -- Standard Type
-(32305, 4415, 1), -- Bare Hands
-(32305, 4416, 6), -- Humanoids
+(32305, 4408, 1), -- HP Modifiers
+(32305, 4409, 1), -- MP Modifiers
+(32305, 4410, 11), -- P. Atk. Modifiers
+(32305, 4411, 11), -- M. Atk. Modifiers
+(32305, 4412, 11), -- P. Def. Modifiers
+(32305, 4413, 11), -- M. Def. Modifiers
+(32305, 4414, 2), -- Armor Type
+(32305, 4415, 1), -- Weapon Type
+(32305, 4416, 6), -- Races
 -- Native's Corpse
 (32306, 4045, 1), -- Resist Full Magic Attack
-(32306, 4408, 1), -- HP Increase (1x)
-(32306, 4409, 1), -- MP Increase (1x)
-(32306, 4410, 11), -- Average P. Atk.
-(32306, 4411, 11), -- Average M. Atk.
-(32306, 4412, 11), -- Average P. Def.
-(32306, 4413, 11), -- Average M. Def.
-(32306, 4414, 2), -- Standard Type
-(32306, 4415, 1), -- Bare Hands
-(32306, 4416, 1), -- Undead
+(32306, 4408, 1), -- HP Modifiers
+(32306, 4409, 1), -- MP Modifiers
+(32306, 4410, 11), -- P. Atk. Modifiers
+(32306, 4411, 11), -- M. Atk. Modifiers
+(32306, 4412, 11), -- P. Def. Modifiers
+(32306, 4413, 11), -- M. Def. Modifiers
+(32306, 4414, 2), -- Armor Type
+(32306, 4415, 1), -- Weapon Type
+(32306, 4416, 1), -- Races
 -- Dolmen
 (32307, 4045, 1), -- Resist Full Magic Attack
-(32307, 4390, 1), -- Mystic Immunity
-(32307, 4408, 1), -- HP Increase (1x)
-(32307, 4409, 1), -- MP Increase (1x)
-(32307, 4410, 11), -- Average P. Atk.
-(32307, 4411, 11), -- Average M. Atk.
-(32307, 4412, 11), -- Average P. Def.
-(32307, 4413, 11), -- Average M. Def.
-(32307, 4414, 2), -- Standard Type
-(32307, 4415, 1), -- Bare Hands
-(32307, 4416, 2), -- Magic Creatures
+(32307, 4390, 1), -- NPC Abnormal Immunity
+(32307, 4408, 1), -- HP Modifiers
+(32307, 4409, 1), -- MP Modifiers
+(32307, 4410, 11), -- P. Atk. Modifiers
+(32307, 4411, 11), -- M. Atk. Modifiers
+(32307, 4412, 11), -- P. Def. Modifiers
+(32307, 4413, 11), -- M. Def. Modifiers
+(32307, 4414, 2), -- Armor Type
+(32307, 4415, 1), -- Weapon Type
+(32307, 4416, 2), -- Races
 -- Ming
 (32308, 4045, 1), -- Resist Full Magic Attack
-(32308, 4408, 1), -- HP Increase (1x)
-(32308, 4409, 1), -- MP Increase (1x)
-(32308, 4410, 11), -- Average P. Atk.
-(32308, 4411, 11), -- Average M. Atk.
-(32308, 4412, 11), -- Average P. Def.
-(32308, 4413, 11), -- Average M. Def.
-(32308, 4414, 2), -- Standard Type
-(32308, 4415, 1), -- Bare Hands
-(32308, 4416, 7), -- Spirits
+(32308, 4408, 1), -- HP Modifiers
+(32308, 4409, 1), -- MP Modifiers
+(32308, 4410, 11), -- P. Atk. Modifiers
+(32308, 4411, 11), -- M. Atk. Modifiers
+(32308, 4412, 11), -- P. Def. Modifiers
+(32308, 4413, 11), -- M. Def. Modifiers
+(32308, 4414, 2), -- Armor Type
+(32308, 4415, 1), -- Weapon Type
+(32308, 4416, 7), -- Races
 -- Rat Hole
 (32312, 4045, 1), -- Resist Full Magic Attack
-(32312, 4390, 1), -- Mystic Immunity
-(32312, 4408, 1), -- HP Increase (1x)
-(32312, 4409, 1), -- MP Increase (1x)
-(32312, 4410, 11), -- Average P. Atk.
-(32312, 4411, 11), -- Average M. Atk.
-(32312, 4412, 11), -- Average P. Def.
-(32312, 4413, 11), -- Average M. Def.
-(32312, 4414, 2), -- Standard Type
-(32312, 4415, 1), -- Bare Hands
-(32312, 4416, 19), -- Others
+(32312, 4390, 1), -- NPC Abnormal Immunity
+(32312, 4408, 1), -- HP Modifiers
+(32312, 4409, 1), -- MP Modifiers
+(32312, 4410, 11), -- P. Atk. Modifiers
+(32312, 4411, 11), -- M. Atk. Modifiers
+(32312, 4412, 11), -- P. Def. Modifiers
+(32312, 4413, 11), -- M. Def. Modifiers
+(32312, 4414, 2), -- Armor Type
+(32312, 4415, 1), -- Weapon Type
+(32312, 4416, 19), -- Races
 -- Deltuva
 (32313, 4045, 1), -- Resist Full Magic Attack
-(32313, 4408, 1), -- HP Increase (1x)
-(32313, 4409, 1), -- MP Increase (1x)
-(32313, 4410, 11), -- Average P. Atk.
-(32313, 4411, 11), -- Average M. Atk.
-(32313, 4412, 11), -- Average P. Def.
-(32313, 4413, 11), -- Average M. Def.
-(32313, 4414, 2), -- Standard Type
-(32313, 4415, 1), -- Bare Hands
-(32313, 4416, 14), -- Humans
+(32313, 4408, 1), -- HP Modifiers
+(32313, 4409, 1), -- MP Modifiers
+(32313, 4410, 11), -- P. Atk. Modifiers
+(32313, 4411, 11), -- M. Atk. Modifiers
+(32313, 4412, 11), -- P. Def. Modifiers
+(32313, 4413, 11), -- M. Def. Modifiers
+(32313, 4414, 2), -- Armor Type
+(32313, 4415, 1), -- Weapon Type
+(32313, 4416, 14), -- Races
 -- Warpgate
 (32314, 4045, 1), -- Resist Full Magic Attack
-(32314, 4390, 1), -- Mystic Immunity
-(32314, 4408, 1), -- HP Increase (1x)
-(32314, 4409, 1), -- MP Increase (1x)
-(32314, 4410, 11), -- Average P. Atk.
-(32314, 4411, 11), -- Average M. Atk.
-(32314, 4412, 11), -- Average P. Def.
-(32314, 4413, 11), -- Average M. Def.
-(32314, 4414, 2), -- Standard Type
-(32314, 4415, 1), -- Bare Hands
-(32314, 4416, 2), -- Magic Creatures
+(32314, 4390, 1), -- NPC Abnormal Immunity
+(32314, 4408, 1), -- HP Modifiers
+(32314, 4409, 1), -- MP Modifiers
+(32314, 4410, 11), -- P. Atk. Modifiers
+(32314, 4411, 11), -- M. Atk. Modifiers
+(32314, 4412, 11), -- P. Def. Modifiers
+(32314, 4413, 11), -- M. Def. Modifiers
+(32314, 4414, 2), -- Armor Type
+(32314, 4415, 1), -- Weapon Type
+(32314, 4416, 2), -- Races
 -- Warpgate
 (32315, 4045, 1), -- Resist Full Magic Attack
-(32315, 4390, 1), -- Mystic Immunity
-(32315, 4408, 1), -- HP Increase (1x)
-(32315, 4409, 1), -- MP Increase (1x)
-(32315, 4410, 11), -- Average P. Atk.
-(32315, 4411, 11), -- Average M. Atk.
-(32315, 4412, 11), -- Average P. Def.
-(32315, 4413, 11), -- Average M. Def.
-(32315, 4414, 2), -- Standard Type
-(32315, 4415, 1), -- Bare Hands
-(32315, 4416, 2), -- Magic Creatures
+(32315, 4390, 1), -- NPC Abnormal Immunity
+(32315, 4408, 1), -- HP Modifiers
+(32315, 4409, 1), -- MP Modifiers
+(32315, 4410, 11), -- P. Atk. Modifiers
+(32315, 4411, 11), -- M. Atk. Modifiers
+(32315, 4412, 11), -- P. Def. Modifiers
+(32315, 4413, 11), -- M. Def. Modifiers
+(32315, 4414, 2), -- Armor Type
+(32315, 4415, 1), -- Weapon Type
+(32315, 4416, 2), -- Races
 -- Warpgate
 (32316, 4045, 1), -- Resist Full Magic Attack
-(32316, 4390, 1), -- Mystic Immunity
-(32316, 4408, 1), -- HP Increase (1x)
-(32316, 4409, 1), -- MP Increase (1x)
-(32316, 4410, 11), -- Average P. Atk.
-(32316, 4411, 11), -- Average M. Atk.
-(32316, 4412, 11), -- Average P. Def.
-(32316, 4413, 11), -- Average M. Def.
-(32316, 4414, 2), -- Standard Type
-(32316, 4415, 1), -- Bare Hands
-(32316, 4416, 2), -- Magic Creatures
+(32316, 4390, 1), -- NPC Abnormal Immunity
+(32316, 4408, 1), -- HP Modifiers
+(32316, 4409, 1), -- MP Modifiers
+(32316, 4410, 11), -- P. Atk. Modifiers
+(32316, 4411, 11), -- M. Atk. Modifiers
+(32316, 4412, 11), -- P. Def. Modifiers
+(32316, 4413, 11), -- M. Def. Modifiers
+(32316, 4414, 2), -- Armor Type
+(32316, 4415, 1), -- Weapon Type
+(32316, 4416, 2), -- Races
 -- Warpgate
 (32317, 4045, 1), -- Resist Full Magic Attack
-(32317, 4390, 1), -- Mystic Immunity
-(32317, 4408, 1), -- HP Increase (1x)
-(32317, 4409, 1), -- MP Increase (1x)
-(32317, 4410, 11), -- Average P. Atk.
-(32317, 4411, 11), -- Average M. Atk.
-(32317, 4412, 11), -- Average P. Def.
-(32317, 4413, 11), -- Average M. Def.
-(32317, 4414, 2), -- Standard Type
-(32317, 4415, 1), -- Bare Hands
-(32317, 4416, 2), -- Magic Creatures
+(32317, 4390, 1), -- NPC Abnormal Immunity
+(32317, 4408, 1), -- HP Modifiers
+(32317, 4409, 1), -- MP Modifiers
+(32317, 4410, 11), -- P. Atk. Modifiers
+(32317, 4411, 11), -- M. Atk. Modifiers
+(32317, 4412, 11), -- P. Def. Modifiers
+(32317, 4413, 11), -- M. Def. Modifiers
+(32317, 4414, 2), -- Armor Type
+(32317, 4415, 1), -- Weapon Type
+(32317, 4416, 2), -- Races
 -- Warpgate
 (32318, 4045, 1), -- Resist Full Magic Attack
-(32318, 4390, 1), -- Mystic Immunity
-(32318, 4408, 1), -- HP Increase (1x)
-(32318, 4409, 1), -- MP Increase (1x)
-(32318, 4410, 11), -- Average P. Atk.
-(32318, 4411, 11), -- Average M. Atk.
-(32318, 4412, 11), -- Average P. Def.
-(32318, 4413, 11), -- Average M. Def.
-(32318, 4414, 2), -- Standard Type
-(32318, 4415, 1), -- Bare Hands
-(32318, 4416, 2), -- Magic Creatures
+(32318, 4390, 1), -- NPC Abnormal Immunity
+(32318, 4408, 1), -- HP Modifiers
+(32318, 4409, 1), -- MP Modifiers
+(32318, 4410, 11), -- P. Atk. Modifiers
+(32318, 4411, 11), -- M. Atk. Modifiers
+(32318, 4412, 11), -- P. Def. Modifiers
+(32318, 4413, 11), -- M. Def. Modifiers
+(32318, 4414, 2), -- Armor Type
+(32318, 4415, 1), -- Weapon Type
+(32318, 4416, 2), -- Races
 -- Warpgate
 (32319, 4045, 1), -- Resist Full Magic Attack
-(32319, 4390, 1), -- Mystic Immunity
-(32319, 4408, 1), -- HP Increase (1x)
-(32319, 4409, 1), -- MP Increase (1x)
-(32319, 4410, 11), -- Average P. Atk.
-(32319, 4411, 11), -- Average M. Atk.
-(32319, 4412, 11), -- Average P. Def.
-(32319, 4413, 11), -- Average M. Def.
-(32319, 4414, 2), -- Standard Type
-(32319, 4415, 1), -- Bare Hands
-(32319, 4416, 2), -- Magic Creatures
+(32319, 4390, 1), -- NPC Abnormal Immunity
+(32319, 4408, 1), -- HP Modifiers
+(32319, 4409, 1), -- MP Modifiers
+(32319, 4410, 11), -- P. Atk. Modifiers
+(32319, 4411, 11), -- M. Atk. Modifiers
+(32319, 4412, 11), -- P. Def. Modifiers
+(32319, 4413, 11), -- M. Def. Modifiers
+(32319, 4414, 2), -- Armor Type
+(32319, 4415, 1), -- Weapon Type
+(32319, 4416, 2), -- Races
 -- Item Broker
 (32320, 4045, 1), -- Resist Full Magic Attack
-(32320, 4408, 1), -- HP Increase (1x)
-(32320, 4409, 1), -- MP Increase (1x)
-(32320, 4410, 11), -- Average P. Atk.
-(32320, 4411, 11), -- Average M. Atk.
-(32320, 4412, 11), -- Average P. Def.
-(32320, 4413, 11), -- Average M. Def.
-(32320, 4414, 2), -- Standard Type
-(32320, 4415, 1), -- Bare Hands
-(32320, 4416, 14), -- Humans
+(32320, 4408, 1), -- HP Modifiers
+(32320, 4409, 1), -- MP Modifiers
+(32320, 4410, 11), -- P. Atk. Modifiers
+(32320, 4411, 11), -- M. Atk. Modifiers
+(32320, 4412, 11), -- P. Def. Modifiers
+(32320, 4413, 11), -- M. Def. Modifiers
+(32320, 4414, 2), -- Armor Type
+(32320, 4415, 1), -- Weapon Type
+(32320, 4416, 14), -- Races
 -- Item Broker
 (32321, 4045, 1), -- Resist Full Magic Attack
-(32321, 4408, 1), -- HP Increase (1x)
-(32321, 4409, 1), -- MP Increase (1x)
-(32321, 4410, 11), -- Average P. Atk.
-(32321, 4411, 11), -- Average M. Atk.
-(32321, 4412, 11), -- Average P. Def.
-(32321, 4413, 11), -- Average M. Def.
-(32321, 4414, 2), -- Standard Type
-(32321, 4415, 1), -- Bare Hands
-(32321, 4416, 14), -- Humans
+(32321, 4408, 1), -- HP Modifiers
+(32321, 4409, 1), -- MP Modifiers
+(32321, 4410, 11), -- P. Atk. Modifiers
+(32321, 4411, 11), -- M. Atk. Modifiers
+(32321, 4412, 11), -- P. Def. Modifiers
+(32321, 4413, 11), -- M. Def. Modifiers
+(32321, 4414, 2), -- Armor Type
+(32321, 4415, 1), -- Weapon Type
+(32321, 4416, 14), -- Races
 -- Item Broker
 (32322, 4045, 1), -- Resist Full Magic Attack
-(32322, 4408, 1), -- HP Increase (1x)
-(32322, 4409, 1), -- MP Increase (1x)
-(32322, 4410, 11), -- Average P. Atk.
-(32322, 4411, 11), -- Average M. Atk.
-(32322, 4412, 11), -- Average P. Def.
-(32322, 4413, 11), -- Average M. Def.
-(32322, 4414, 2), -- Standard Type
-(32322, 4415, 1), -- Bare Hands
-(32322, 4416, 14), -- Humans
+(32322, 4408, 1), -- HP Modifiers
+(32322, 4409, 1), -- MP Modifiers
+(32322, 4410, 11), -- P. Atk. Modifiers
+(32322, 4411, 11), -- M. Atk. Modifiers
+(32322, 4412, 11), -- P. Def. Modifiers
+(32322, 4413, 11), -- M. Def. Modifiers
+(32322, 4414, 2), -- Armor Type
+(32322, 4415, 1), -- Weapon Type
+(32322, 4416, 14), -- Races
 -- Avant-Garde
 (32323, 4045, 1), -- Resist Full Magic Attack
-(32323, 4408, 1), -- HP Increase (1x)
-(32323, 4409, 1), -- MP Increase (1x)
-(32323, 4410, 11), -- Average P. Atk.
-(32323, 4411, 11), -- Average M. Atk.
-(32323, 4412, 11), -- Average P. Def.
-(32323, 4413, 11), -- Average M. Def.
-(32323, 4414, 2), -- Standard Type
-(32323, 4415, 1), -- Bare Hands
-(32323, 4416, 14), -- Humans
+(32323, 4408, 1), -- HP Modifiers
+(32323, 4409, 1), -- MP Modifiers
+(32323, 4410, 11), -- P. Atk. Modifiers
+(32323, 4411, 11), -- M. Atk. Modifiers
+(32323, 4412, 11), -- P. Def. Modifiers
+(32323, 4413, 11), -- M. Def. Modifiers
+(32323, 4414, 2), -- Armor Type
+(32323, 4415, 1), -- Weapon Type
+(32323, 4416, 14), -- Races
 -- Black Stone Monolith
 (32324, 4045, 1), -- Resist Full Magic Attack
-(32324, 4390, 1), -- Mystic Immunity
-(32324, 4408, 1), -- HP Increase (1x)
-(32324, 4409, 1), -- MP Increase (1x)
-(32324, 4410, 11), -- Average P. Atk.
-(32324, 4411, 11), -- Average M. Atk.
-(32324, 4412, 11), -- Average P. Def.
-(32324, 4413, 11), -- Average M. Def.
-(32324, 4414, 2), -- Standard Type
-(32324, 4415, 1), -- Bare Hands
-(32324, 4416, 2), -- Magic Creatures
+(32324, 4390, 1), -- NPC Abnormal Immunity
+(32324, 4408, 1), -- HP Modifiers
+(32324, 4409, 1), -- MP Modifiers
+(32324, 4410, 11), -- P. Atk. Modifiers
+(32324, 4411, 11), -- M. Atk. Modifiers
+(32324, 4412, 11), -- P. Def. Modifiers
+(32324, 4413, 11), -- M. Def. Modifiers
+(32324, 4414, 2), -- Armor Type
+(32324, 4415, 1), -- Weapon Type
+(32324, 4416, 2), -- Races
 -- Yin
 (32325, 4045, 1), -- Resist Full Magic Attack
-(32325, 4408, 1), -- HP Increase (1x)
-(32325, 4409, 1), -- MP Increase (1x)
-(32325, 4410, 11), -- Average P. Atk.
-(32325, 4411, 11), -- Average M. Atk.
-(32325, 4412, 11), -- Average P. Def.
-(32325, 4413, 11), -- Average M. Def.
-(32325, 4414, 2), -- Standard Type
-(32325, 4415, 1), -- Bare Hands
-(32325, 4416, 14), -- Humans
+(32325, 4408, 1), -- HP Modifiers
+(32325, 4409, 1), -- MP Modifiers
+(32325, 4410, 11), -- P. Atk. Modifiers
+(32325, 4411, 11), -- M. Atk. Modifiers
+(32325, 4412, 11), -- P. Def. Modifiers
+(32325, 4413, 11), -- M. Def. Modifiers
+(32325, 4414, 2), -- Armor Type
+(32325, 4415, 1), -- Weapon Type
+(32325, 4416, 14), -- Races
 -- Yang
 (32326, 4045, 1), -- Resist Full Magic Attack
-(32326, 4408, 1), -- HP Increase (1x)
-(32326, 4409, 1), -- MP Increase (1x)
-(32326, 4410, 11), -- Average P. Atk.
-(32326, 4411, 11), -- Average M. Atk.
-(32326, 4412, 11), -- Average P. Def.
-(32326, 4413, 11), -- Average M. Def.
-(32326, 4414, 2), -- Standard Type
-(32326, 4415, 1), -- Bare Hands
-(32326, 4416, 14), -- Humans
+(32326, 4408, 1), -- HP Modifiers
+(32326, 4409, 1), -- MP Modifiers
+(32326, 4410, 11), -- P. Atk. Modifiers
+(32326, 4411, 11), -- M. Atk. Modifiers
+(32326, 4412, 11), -- P. Def. Modifiers
+(32326, 4413, 11), -- M. Def. Modifiers
+(32326, 4414, 2), -- Armor Type
+(32326, 4415, 1), -- Weapon Type
+(32326, 4416, 14), -- Races
 -- Adventurers' Guide
 (32327, 4045, 1), -- Resist Full Magic Attack
-(32327, 4408, 1), -- HP Increase (1x)
-(32327, 4409, 1), -- MP Increase (1x)
-(32327, 4410, 11), -- Average P. Atk.
-(32327, 4411, 11), -- Average M. Atk.
-(32327, 4412, 11), -- Average P. Def.
-(32327, 4413, 11), -- Average M. Def.
-(32327, 4414, 2), -- Standard Type
-(32327, 4415, 1), -- Bare Hands
-(32327, 4416, 14), -- Humans
+(32327, 4408, 1), -- HP Modifiers
+(32327, 4409, 1), -- MP Modifiers
+(32327, 4410, 11), -- P. Atk. Modifiers
+(32327, 4411, 11), -- M. Atk. Modifiers
+(32327, 4412, 11), -- P. Def. Modifiers
+(32327, 4413, 11), -- M. Def. Modifiers
+(32327, 4414, 2), -- Armor Type
+(32327, 4415, 1), -- Weapon Type
+(32327, 4416, 14), -- Races
 -- Crystalline Golem
 (32328, 4045, 1), -- Resist Full Magic Attack
-(32328, 4390, 1), -- Mystic Immunity
-(32328, 4408, 1), -- HP Increase (1x)
-(32328, 4409, 1), -- MP Increase (1x)
-(32328, 4410, 11), -- Average P. Atk.
-(32328, 4411, 11), -- Average M. Atk.
-(32328, 4412, 11), -- Average P. Def.
-(32328, 4413, 11), -- Average M. Def.
-(32328, 4414, 2), -- Standard Type
-(32328, 4415, 1), -- Bare Hands
-(32328, 4416, 2), -- Magic Creatures
+(32328, 4390, 1), -- NPC Abnormal Immunity
+(32328, 4408, 1), -- HP Modifiers
+(32328, 4409, 1), -- MP Modifiers
+(32328, 4410, 11), -- P. Atk. Modifiers
+(32328, 4411, 11), -- M. Atk. Modifiers
+(32328, 4412, 11), -- P. Def. Modifiers
+(32328, 4413, 11), -- M. Def. Modifiers
+(32328, 4414, 2), -- Armor Type
+(32328, 4415, 1), -- Weapon Type
+(32328, 4416, 2), -- Races
 -- Garden Guard
 (32330, 4045, 1), -- Resist Full Magic Attack
-(32330, 4408, 1), -- HP Increase (1x)
-(32330, 4409, 1), -- MP Increase (1x)
-(32330, 4410, 11), -- Average P. Atk.
-(32330, 4411, 11), -- Average M. Atk.
-(32330, 4412, 11), -- Average P. Def.
-(32330, 4413, 11), -- Average M. Def.
-(32330, 4414, 2), -- Standard Type
-(32330, 4415, 3), -- One-handed Sword
-(32330, 4416, 25), -- Kamael
+(32330, 4408, 1), -- HP Modifiers
+(32330, 4409, 1), -- MP Modifiers
+(32330, 4410, 11), -- P. Atk. Modifiers
+(32330, 4411, 11), -- M. Atk. Modifiers
+(32330, 4412, 11), -- P. Def. Modifiers
+(32330, 4413, 11), -- M. Def. Modifiers
+(32330, 4414, 2), -- Armor Type
+(32330, 4415, 3), -- Weapon Type
+(32330, 4416, 25), -- Races
 -- 
 (32331, 4045, 1), -- Resist Full Magic Attack
-(32331, 4390, 1), -- Mystic Immunity
-(32331, 4408, 1), -- HP Increase (1x)
-(32331, 4409, 1), -- MP Increase (1x)
-(32331, 4410, 11), -- Average P. Atk.
-(32331, 4411, 11), -- Average M. Atk.
-(32331, 4412, 11), -- Average P. Def.
-(32331, 4413, 11), -- Average M. Def.
-(32331, 4414, 2), -- Standard Type
-(32331, 4415, 1), -- Bare Hands
-(32331, 4416, 2), -- Magic Creatures
+(32331, 4390, 1), -- NPC Abnormal Immunity
+(32331, 4408, 1), -- HP Modifiers
+(32331, 4409, 1), -- MP Modifiers
+(32331, 4410, 11), -- P. Atk. Modifiers
+(32331, 4411, 11), -- M. Atk. Modifiers
+(32331, 4412, 11), -- P. Def. Modifiers
+(32331, 4413, 11), -- M. Def. Modifiers
+(32331, 4414, 2), -- Armor Type
+(32331, 4415, 1), -- Weapon Type
+(32331, 4416, 2), -- Races
 -- Katenar
 (32332, 4045, 1), -- Resist Full Magic Attack
-(32332, 4408, 1), -- HP Increase (1x)
-(32332, 4409, 1), -- MP Increase (1x)
-(32332, 4410, 11), -- Average P. Atk.
-(32332, 4411, 11), -- Average M. Atk.
-(32332, 4412, 11), -- Average P. Def.
-(32332, 4413, 11), -- Average M. Def.
-(32332, 4414, 2), -- Standard Type
-(32332, 4415, 1), -- Bare Hands
-(32332, 4416, 25), -- Kamael
+(32332, 4408, 1), -- HP Modifiers
+(32332, 4409, 1), -- MP Modifiers
+(32332, 4410, 11), -- P. Atk. Modifiers
+(32332, 4411, 11), -- M. Atk. Modifiers
+(32332, 4412, 11), -- P. Def. Modifiers
+(32332, 4413, 11), -- M. Def. Modifiers
+(32332, 4414, 2), -- Armor Type
+(32332, 4415, 1), -- Weapon Type
+(32332, 4416, 25), -- Races
 -- Katenar
 (32333, 4045, 1), -- Resist Full Magic Attack
-(32333, 4408, 1), -- HP Increase (1x)
-(32333, 4409, 1), -- MP Increase (1x)
-(32333, 4410, 11), -- Average P. Atk.
-(32333, 4411, 11), -- Average M. Atk.
-(32333, 4412, 11), -- Average P. Def.
-(32333, 4413, 11), -- Average M. Def.
-(32333, 4414, 2), -- Standard Type
-(32333, 4415, 1), -- Bare Hands
-(32333, 4416, 25), -- Kamael
+(32333, 4408, 1), -- HP Modifiers
+(32333, 4409, 1), -- MP Modifiers
+(32333, 4410, 11), -- P. Atk. Modifiers
+(32333, 4411, 11), -- M. Atk. Modifiers
+(32333, 4412, 11), -- P. Def. Modifiers
+(32333, 4413, 11), -- M. Def. Modifiers
+(32333, 4414, 2), -- Armor Type
+(32333, 4415, 1), -- Weapon Type
+(32333, 4416, 25), -- Races
 -- Harkilgamed
 (32334, 4045, 1), -- Resist Full Magic Attack
-(32334, 4408, 1), -- HP Increase (1x)
-(32334, 4409, 1), -- MP Increase (1x)
-(32334, 4410, 11), -- Average P. Atk.
-(32334, 4411, 11), -- Average M. Atk.
-(32334, 4412, 11), -- Average P. Def.
-(32334, 4413, 11), -- Average M. Def.
-(32334, 4414, 2), -- Standard Type
-(32334, 4415, 1), -- Bare Hands
-(32334, 4416, 25), -- Kamael
+(32334, 4408, 1), -- HP Modifiers
+(32334, 4409, 1), -- MP Modifiers
+(32334, 4410, 11), -- P. Atk. Modifiers
+(32334, 4411, 11), -- M. Atk. Modifiers
+(32334, 4412, 11), -- P. Def. Modifiers
+(32334, 4413, 11), -- M. Def. Modifiers
+(32334, 4414, 2), -- Armor Type
+(32334, 4415, 1), -- Weapon Type
+(32334, 4416, 25), -- Races
 -- Marksman
 (32335, 4045, 1), -- Resist Full Magic Attack
-(32335, 4408, 1), -- HP Increase (1x)
-(32335, 4409, 1), -- MP Increase (1x)
-(32335, 4410, 11), -- Average P. Atk.
-(32335, 4411, 11), -- Average M. Atk.
-(32335, 4412, 11), -- Average P. Def.
-(32335, 4413, 11), -- Average M. Def.
-(32335, 4414, 2), -- Standard Type
-(32335, 4415, 9), -- Bows
-(32335, 4416, 25), -- Kamael
+(32335, 4408, 1), -- HP Modifiers
+(32335, 4409, 1), -- MP Modifiers
+(32335, 4410, 11), -- P. Atk. Modifiers
+(32335, 4411, 11), -- M. Atk. Modifiers
+(32335, 4412, 11), -- P. Def. Modifiers
+(32335, 4413, 11), -- M. Def. Modifiers
+(32335, 4414, 2), -- Armor Type
+(32335, 4415, 9), -- Weapon Type
+(32335, 4416, 25), -- Races
 -- Marksman
 (32336, 4045, 1), -- Resist Full Magic Attack
-(32336, 4408, 1), -- HP Increase (1x)
-(32336, 4409, 1), -- MP Increase (1x)
-(32336, 4410, 11), -- Average P. Atk.
-(32336, 4411, 11), -- Average M. Atk.
-(32336, 4412, 11), -- Average P. Def.
-(32336, 4413, 11), -- Average M. Def.
-(32336, 4414, 2), -- Standard Type
-(32336, 4415, 9), -- Bows
-(32336, 4416, 25), -- Kamael
+(32336, 4408, 1), -- HP Modifiers
+(32336, 4409, 1), -- MP Modifiers
+(32336, 4410, 11), -- P. Atk. Modifiers
+(32336, 4411, 11), -- M. Atk. Modifiers
+(32336, 4412, 11), -- P. Def. Modifiers
+(32336, 4413, 11), -- M. Def. Modifiers
+(32336, 4414, 2), -- Armor Type
+(32336, 4415, 9), -- Weapon Type
+(32336, 4416, 25), -- Races
 -- Adventure Guildsman
 (32337, 4045, 1), -- Resist Full Magic Attack
-(32337, 4408, 1), -- HP Increase (1x)
-(32337, 4409, 1), -- MP Increase (1x)
-(32337, 4410, 11), -- Average P. Atk.
-(32337, 4411, 11), -- Average M. Atk.
-(32337, 4412, 11), -- Average P. Def.
-(32337, 4413, 11), -- Average M. Def.
-(32337, 4414, 2), -- Standard Type
-(32337, 4415, 3), -- One-handed Sword
-(32337, 4416, 15), -- Elves
+(32337, 4408, 1), -- HP Modifiers
+(32337, 4409, 1), -- MP Modifiers
+(32337, 4410, 11), -- P. Atk. Modifiers
+(32337, 4411, 11), -- M. Atk. Modifiers
+(32337, 4412, 11), -- P. Def. Modifiers
+(32337, 4413, 11), -- M. Def. Modifiers
+(32337, 4414, 2), -- Armor Type
+(32337, 4415, 3), -- Weapon Type
+(32337, 4416, 15), -- Races
 -- Adventure Guildsman
 (32338, 4045, 1), -- Resist Full Magic Attack
-(32338, 4408, 1), -- HP Increase (1x)
-(32338, 4409, 1), -- MP Increase (1x)
-(32338, 4410, 11), -- Average P. Atk.
-(32338, 4411, 11), -- Average M. Atk.
-(32338, 4412, 11), -- Average P. Def.
-(32338, 4413, 11), -- Average M. Def.
-(32338, 4414, 2), -- Standard Type
-(32338, 4415, 3), -- One-handed Sword
-(32338, 4416, 18), -- Dwarves
+(32338, 4408, 1), -- HP Modifiers
+(32338, 4409, 1), -- MP Modifiers
+(32338, 4410, 11), -- P. Atk. Modifiers
+(32338, 4411, 11), -- M. Atk. Modifiers
+(32338, 4412, 11), -- P. Def. Modifiers
+(32338, 4413, 11), -- M. Def. Modifiers
+(32338, 4414, 2), -- Armor Type
+(32338, 4415, 3), -- Weapon Type
+(32338, 4416, 18), -- Races
 -- Adventure Guildsman
 (32339, 4045, 1), -- Resist Full Magic Attack
-(32339, 4408, 1), -- HP Increase (1x)
-(32339, 4409, 1), -- MP Increase (1x)
-(32339, 4410, 11), -- Average P. Atk.
-(32339, 4411, 11), -- Average M. Atk.
-(32339, 4412, 11), -- Average P. Def.
-(32339, 4413, 11), -- Average M. Def.
-(32339, 4414, 2), -- Standard Type
-(32339, 4415, 3), -- One-handed Sword
-(32339, 4416, 14), -- Humans
+(32339, 4408, 1), -- HP Modifiers
+(32339, 4409, 1), -- MP Modifiers
+(32339, 4410, 11), -- P. Atk. Modifiers
+(32339, 4411, 11), -- M. Atk. Modifiers
+(32339, 4412, 11), -- P. Def. Modifiers
+(32339, 4413, 11), -- M. Def. Modifiers
+(32339, 4414, 2), -- Armor Type
+(32339, 4415, 3), -- Weapon Type
+(32339, 4416, 14), -- Races
 -- Adventure Guildsman
 (32340, 4045, 1), -- Resist Full Magic Attack
-(32340, 4408, 1), -- HP Increase (1x)
-(32340, 4409, 1), -- MP Increase (1x)
-(32340, 4410, 11), -- Average P. Atk.
-(32340, 4411, 11), -- Average M. Atk.
-(32340, 4412, 11), -- Average P. Def.
-(32340, 4413, 11), -- Average M. Def.
-(32340, 4414, 2), -- Standard Type
-(32340, 4415, 3), -- One-handed Sword
-(32340, 4416, 17), -- Orcs
+(32340, 4408, 1), -- HP Modifiers
+(32340, 4409, 1), -- MP Modifiers
+(32340, 4410, 11), -- P. Atk. Modifiers
+(32340, 4411, 11), -- M. Atk. Modifiers
+(32340, 4412, 11), -- P. Def. Modifiers
+(32340, 4413, 11), -- M. Def. Modifiers
+(32340, 4414, 2), -- Armor Type
+(32340, 4415, 3), -- Weapon Type
+(32340, 4416, 17), -- Races
 -- Eva's Gift Box
-(32342, 4390, 1), -- Mystic Immunity
-(32342, 4408, 1), -- HP Increase (1x)
-(32342, 4409, 1), -- MP Increase (1x)
-(32342, 4410, 11), -- Average P. Atk.
-(32342, 4411, 11), -- Average M. Atk.
-(32342, 4412, 11), -- Average P. Def.
-(32342, 4413, 11), -- Average M. Def.
-(32342, 4414, 2), -- Standard Type
-(32342, 4415, 1), -- Bare Hands
-(32342, 4416, 2), -- Magic Creatures
+(32342, 4390, 1), -- NPC Abnormal Immunity
+(32342, 4408, 1), -- HP Modifiers
+(32342, 4409, 1), -- MP Modifiers
+(32342, 4410, 11), -- P. Atk. Modifiers
+(32342, 4411, 11), -- M. Atk. Modifiers
+(32342, 4412, 11), -- P. Def. Modifiers
+(32342, 4413, 11), -- M. Def. Modifiers
+(32342, 4414, 2), -- Armor Type
+(32342, 4415, 1), -- Weapon Type
+(32342, 4416, 2), -- Races
 -- Moonlight Tombstone
 (32343, 4045, 1), -- Resist Full Magic Attack
-(32343, 4390, 1), -- Mystic Immunity
-(32343, 4408, 1), -- HP Increase (1x)
-(32343, 4409, 1), -- MP Increase (1x)
-(32343, 4410, 11), -- Average P. Atk.
-(32343, 4411, 11), -- Average M. Atk.
-(32343, 4412, 11), -- Average P. Def.
-(32343, 4413, 11), -- Average M. Def.
-(32343, 4414, 2), -- Standard Type
-(32343, 4415, 1), -- Bare Hands
-(32343, 4416, 19), -- Others
+(32343, 4390, 1), -- NPC Abnormal Immunity
+(32343, 4408, 1), -- HP Modifiers
+(32343, 4409, 1), -- MP Modifiers
+(32343, 4410, 11), -- P. Atk. Modifiers
+(32343, 4411, 11), -- M. Atk. Modifiers
+(32343, 4412, 11), -- P. Def. Modifiers
+(32343, 4413, 11), -- M. Def. Modifiers
+(32343, 4414, 2), -- Armor Type
+(32343, 4415, 1), -- Weapon Type
+(32343, 4416, 19), -- Races
 -- Spooky Tombstone
 (32344, 4045, 1), -- Resist Full Magic Attack
-(32344, 4390, 1), -- Mystic Immunity
-(32344, 4408, 1), -- HP Increase (1x)
-(32344, 4409, 1), -- MP Increase (1x)
-(32344, 4410, 11), -- Average P. Atk.
-(32344, 4411, 11), -- Average M. Atk.
-(32344, 4412, 11), -- Average P. Def.
-(32344, 4413, 11), -- Average M. Def.
-(32344, 4414, 2), -- Standard Type
-(32344, 4415, 1), -- Bare Hands
-(32344, 4416, 19), -- Others
+(32344, 4390, 1), -- NPC Abnormal Immunity
+(32344, 4408, 1), -- HP Modifiers
+(32344, 4409, 1), -- MP Modifiers
+(32344, 4410, 11), -- P. Atk. Modifiers
+(32344, 4411, 11), -- M. Atk. Modifiers
+(32344, 4412, 11), -- P. Def. Modifiers
+(32344, 4413, 11), -- M. Def. Modifiers
+(32344, 4414, 2), -- Armor Type
+(32344, 4415, 1), -- Weapon Type
+(32344, 4416, 19), -- Races
 -- Buron
 (32345, 4045, 1), -- Resist Full Magic Attack
-(32345, 4408, 1), -- HP Increase (1x)
-(32345, 4409, 1), -- MP Increase (1x)
-(32345, 4410, 11), -- Average P. Atk.
-(32345, 4411, 11), -- Average M. Atk.
-(32345, 4412, 11), -- Average P. Def.
-(32345, 4413, 11), -- Average M. Def.
-(32345, 4414, 2), -- Standard Type
-(32345, 4415, 1), -- Bare Hands
-(32345, 4416, 14), -- Humans
+(32345, 4408, 1), -- HP Modifiers
+(32345, 4409, 1), -- MP Modifiers
+(32345, 4410, 11), -- P. Atk. Modifiers
+(32345, 4411, 11), -- M. Atk. Modifiers
+(32345, 4412, 11), -- P. Def. Modifiers
+(32345, 4413, 11), -- M. Def. Modifiers
+(32345, 4414, 2), -- Armor Type
+(32345, 4415, 1), -- Weapon Type
+(32345, 4416, 14), -- Races
 -- Kanaf
 (32346, 4045, 1), -- Resist Full Magic Attack
-(32346, 4408, 1), -- HP Increase (1x)
-(32346, 4409, 1), -- MP Increase (1x)
-(32346, 4410, 11), -- Average P. Atk.
-(32346, 4411, 11), -- Average M. Atk.
-(32346, 4412, 11), -- Average P. Def.
-(32346, 4413, 11), -- Average M. Def.
-(32346, 4414, 2), -- Standard Type
-(32346, 4415, 1), -- Bare Hands
-(32346, 4416, 14), -- Humans
+(32346, 4408, 1), -- HP Modifiers
+(32346, 4409, 1), -- MP Modifiers
+(32346, 4410, 11), -- P. Atk. Modifiers
+(32346, 4411, 11), -- M. Atk. Modifiers
+(32346, 4412, 11), -- P. Def. Modifiers
+(32346, 4413, 11), -- M. Def. Modifiers
+(32346, 4414, 2), -- Armor Type
+(32346, 4415, 1), -- Weapon Type
+(32346, 4416, 14), -- Races
 -- Shadai
 (32347, 4045, 1), -- Resist Full Magic Attack
-(32347, 4408, 1), -- HP Increase (1x)
-(32347, 4409, 1), -- MP Increase (1x)
-(32347, 4410, 11), -- Average P. Atk.
-(32347, 4411, 11), -- Average M. Atk.
-(32347, 4412, 11), -- Average P. Def.
-(32347, 4413, 11), -- Average M. Def.
-(32347, 4414, 2), -- Standard Type
-(32347, 4415, 1), -- Bare Hands
-(32347, 4416, 18), -- Dwarves
+(32347, 4408, 1), -- HP Modifiers
+(32347, 4409, 1), -- MP Modifiers
+(32347, 4410, 11), -- P. Atk. Modifiers
+(32347, 4411, 11), -- M. Atk. Modifiers
+(32347, 4412, 11), -- P. Def. Modifiers
+(32347, 4413, 11), -- M. Def. Modifiers
+(32347, 4414, 2), -- Armor Type
+(32347, 4415, 1), -- Weapon Type
+(32347, 4416, 18), -- Races
 -- Burang
 (32348, 4045, 1), -- Resist Full Magic Attack
-(32348, 4408, 1), -- HP Increase (1x)
-(32348, 4409, 1), -- MP Increase (1x)
-(32348, 4410, 11), -- Average P. Atk.
-(32348, 4411, 11), -- Average M. Atk.
-(32348, 4412, 11), -- Average P. Def.
-(32348, 4413, 11), -- Average M. Def.
-(32348, 4414, 2), -- Standard Type
-(32348, 4415, 3), -- One-handed Sword
-(32348, 4416, 14), -- Humans
+(32348, 4408, 1), -- HP Modifiers
+(32348, 4409, 1), -- MP Modifiers
+(32348, 4410, 11), -- P. Atk. Modifiers
+(32348, 4411, 11), -- M. Atk. Modifiers
+(32348, 4412, 11), -- P. Def. Modifiers
+(32348, 4413, 11), -- M. Def. Modifiers
+(32348, 4414, 2), -- Armor Type
+(32348, 4415, 3), -- Weapon Type
+(32348, 4416, 14), -- Races
 -- Rignos
 (32349, 4045, 1), -- Resist Full Magic Attack
-(32349, 4408, 1), -- HP Increase (1x)
-(32349, 4409, 1), -- MP Increase (1x)
-(32349, 4410, 11), -- Average P. Atk.
-(32349, 4411, 11), -- Average M. Atk.
-(32349, 4412, 11), -- Average P. Def.
-(32349, 4413, 11), -- Average M. Def.
-(32349, 4414, 2), -- Standard Type
-(32349, 4415, 1), -- Bare Hands
-(32349, 4416, 1), -- Undead
+(32349, 4408, 1), -- HP Modifiers
+(32349, 4409, 1), -- MP Modifiers
+(32349, 4410, 11), -- P. Atk. Modifiers
+(32349, 4411, 11), -- M. Atk. Modifiers
+(32349, 4412, 11), -- P. Def. Modifiers
+(32349, 4413, 11), -- M. Def. Modifiers
+(32349, 4414, 2), -- Armor Type
+(32349, 4415, 1), -- Weapon Type
+(32349, 4416, 1), -- Races
 -- Sandstorm
 (32350, 4045, 1), -- Resist Full Magic Attack
-(32350, 4390, 1), -- Mystic Immunity
-(32350, 4408, 1), -- HP Increase (1x)
-(32350, 4409, 1), -- MP Increase (1x)
-(32350, 4410, 11), -- Average P. Atk.
-(32350, 4411, 11), -- Average M. Atk.
-(32350, 4412, 11), -- Average P. Def.
-(32350, 4413, 11), -- Average M. Def.
-(32350, 4414, 2), -- Standard Type
-(32350, 4415, 5), -- Blunt Weapons
-(32350, 4416, 19), -- Others
+(32350, 4390, 1), -- NPC Abnormal Immunity
+(32350, 4408, 1), -- HP Modifiers
+(32350, 4409, 1), -- MP Modifiers
+(32350, 4410, 11), -- P. Atk. Modifiers
+(32350, 4411, 11), -- M. Atk. Modifiers
+(32350, 4412, 11), -- P. Def. Modifiers
+(32350, 4413, 11), -- M. Def. Modifiers
+(32350, 4414, 2), -- Armor Type
+(32350, 4415, 5), -- Weapon Type
+(32350, 4416, 19), -- Races
 -- Enceinte Insurgent
 (32351, 4045, 1), -- Resist Full Magic Attack
-(32351, 4408, 1), -- HP Increase (1x)
-(32351, 4409, 1), -- MP Increase (1x)
-(32351, 4410, 11), -- Average P. Atk.
-(32351, 4411, 11), -- Average M. Atk.
-(32351, 4412, 11), -- Average P. Def.
-(32351, 4413, 11), -- Average M. Def.
-(32351, 4414, 2), -- Standard Type
-(32351, 4415, 3), -- One-handed Sword
-(32351, 4416, 14), -- Humans
+(32351, 4408, 1), -- HP Modifiers
+(32351, 4409, 1), -- MP Modifiers
+(32351, 4410, 11), -- P. Atk. Modifiers
+(32351, 4411, 11), -- M. Atk. Modifiers
+(32351, 4412, 11), -- P. Def. Modifiers
+(32351, 4413, 11), -- M. Def. Modifiers
+(32351, 4414, 2), -- Armor Type
+(32351, 4415, 3), -- Weapon Type
+(32351, 4416, 14), -- Races
 -- 
-(32352, 4390, 1), -- Mystic Immunity
-(32352, 4408, 1), -- HP Increase (1x)
-(32352, 4409, 1), -- MP Increase (1x)
-(32352, 4410, 11), -- Average P. Atk.
-(32352, 4411, 11), -- Average M. Atk.
-(32352, 4412, 11), -- Average P. Def.
-(32352, 4413, 11), -- Average M. Def.
-(32352, 4414, 2), -- Standard Type
-(32352, 4415, 1), -- Bare Hands
-(32352, 4416, 2), -- Magic Creatures
+(32352, 4390, 1), -- NPC Abnormal Immunity
+(32352, 4408, 1), -- HP Modifiers
+(32352, 4409, 1), -- MP Modifiers
+(32352, 4410, 11), -- P. Atk. Modifiers
+(32352, 4411, 11), -- M. Atk. Modifiers
+(32352, 4412, 11), -- P. Def. Modifiers
+(32352, 4413, 11), -- M. Def. Modifiers
+(32352, 4414, 2), -- Armor Type
+(32352, 4415, 1), -- Weapon Type
+(32352, 4416, 2), -- Races
 -- Event Gatekeeper
 (32353, 4045, 1), -- Resist Full Magic Attack
-(32353, 4408, 1), -- HP Increase (1x)
-(32353, 4409, 1), -- MP Increase (1x)
-(32353, 4410, 11), -- Average P. Atk.
-(32353, 4411, 11), -- Average M. Atk.
-(32353, 4412, 11), -- Average P. Def.
-(32353, 4413, 11), -- Average M. Def.
-(32353, 4414, 2), -- Standard Type
-(32353, 4415, 3), -- One-handed Sword
-(32353, 4416, 7), -- Spirits
+(32353, 4408, 1), -- HP Modifiers
+(32353, 4409, 1), -- MP Modifiers
+(32353, 4410, 11), -- P. Atk. Modifiers
+(32353, 4411, 11), -- M. Atk. Modifiers
+(32353, 4412, 11), -- P. Def. Modifiers
+(32353, 4413, 11), -- M. Def. Modifiers
+(32353, 4414, 2), -- Armor Type
+(32353, 4415, 3), -- Weapon Type
+(32353, 4416, 7), -- Races
 -- Kief
 (32354, 4045, 1), -- Resist Full Magic Attack
-(32354, 4408, 1), -- HP Increase (1x)
-(32354, 4409, 1), -- MP Increase (1x)
-(32354, 4410, 11), -- Average P. Atk.
-(32354, 4411, 11), -- Average M. Atk.
-(32354, 4412, 11), -- Average P. Def.
-(32354, 4413, 11), -- Average M. Def.
-(32354, 4414, 2), -- Standard Type
-(32354, 4415, 1), -- Bare Hands
-(32354, 4416, 14), -- Humans
+(32354, 4408, 1), -- HP Modifiers
+(32354, 4409, 1), -- MP Modifiers
+(32354, 4410, 11), -- P. Atk. Modifiers
+(32354, 4411, 11), -- M. Atk. Modifiers
+(32354, 4412, 11), -- P. Def. Modifiers
+(32354, 4413, 11), -- M. Def. Modifiers
+(32354, 4414, 2), -- Armor Type
+(32354, 4415, 1), -- Weapon Type
+(32354, 4416, 14), -- Races
 -- Solomon
 (32355, 4045, 1), -- Resist Full Magic Attack
-(32355, 4408, 1), -- HP Increase (1x)
-(32355, 4409, 1), -- MP Increase (1x)
-(32355, 4410, 11), -- Average P. Atk.
-(32355, 4411, 11), -- Average M. Atk.
-(32355, 4412, 11), -- Average P. Def.
-(32355, 4413, 11), -- Average M. Def.
-(32355, 4414, 2), -- Standard Type
-(32355, 4415, 1), -- Bare Hands
-(32355, 4416, 14), -- Humans
+(32355, 4408, 1), -- HP Modifiers
+(32355, 4409, 1), -- MP Modifiers
+(32355, 4410, 11), -- P. Atk. Modifiers
+(32355, 4411, 11), -- M. Atk. Modifiers
+(32355, 4412, 11), -- P. Def. Modifiers
+(32355, 4413, 11), -- M. Def. Modifiers
+(32355, 4414, 2), -- Armor Type
+(32355, 4415, 1), -- Weapon Type
+(32355, 4416, 14), -- Races
 -- Jude
 (32356, 4045, 1), -- Resist Full Magic Attack
-(32356, 4408, 1), -- HP Increase (1x)
-(32356, 4409, 1), -- MP Increase (1x)
-(32356, 4410, 11), -- Average P. Atk.
-(32356, 4411, 11), -- Average M. Atk.
-(32356, 4412, 11), -- Average P. Def.
-(32356, 4413, 11), -- Average M. Def.
-(32356, 4414, 2), -- Standard Type
-(32356, 4415, 1), -- Bare Hands
-(32356, 4416, 6), -- Humanoids
+(32356, 4408, 1), -- HP Modifiers
+(32356, 4409, 1), -- MP Modifiers
+(32356, 4410, 11), -- P. Atk. Modifiers
+(32356, 4411, 11), -- M. Atk. Modifiers
+(32356, 4412, 11), -- P. Def. Modifiers
+(32356, 4413, 11), -- M. Def. Modifiers
+(32356, 4414, 2), -- Armor Type
+(32356, 4415, 1), -- Weapon Type
+(32356, 4416, 6), -- Races
 -- Native Slave
 (32357, 4045, 1), -- Resist Full Magic Attack
-(32357, 4408, 1), -- HP Increase (1x)
-(32357, 4409, 1), -- MP Increase (1x)
-(32357, 4410, 11), -- Average P. Atk.
-(32357, 4411, 11), -- Average M. Atk.
-(32357, 4412, 11), -- Average P. Def.
-(32357, 4413, 11), -- Average M. Def.
-(32357, 4414, 2), -- Standard Type
-(32357, 4415, 1), -- Bare Hands
-(32357, 4416, 14), -- Humans
+(32357, 4408, 1), -- HP Modifiers
+(32357, 4409, 1), -- MP Modifiers
+(32357, 4410, 11), -- P. Atk. Modifiers
+(32357, 4411, 11), -- M. Atk. Modifiers
+(32357, 4412, 11), -- P. Def. Modifiers
+(32357, 4413, 11), -- M. Def. Modifiers
+(32357, 4414, 2), -- Armor Type
+(32357, 4415, 1), -- Weapon Type
+(32357, 4416, 14), -- Races
 -- Native Prisoner
-(32358, 4408, 1), -- HP Increase (1x)
-(32358, 4409, 1), -- MP Increase (1x)
-(32358, 4410, 11), -- Average P. Atk.
-(32358, 4411, 11), -- Average M. Atk.
-(32358, 4412, 11), -- Average P. Def.
-(32358, 4413, 11), -- Average M. Def.
-(32358, 4414, 2), -- Standard Type
-(32358, 4415, 1), -- Bare Hands
-(32358, 4416, 14), -- Humans
+(32358, 4408, 1), -- HP Modifiers
+(32358, 4409, 1), -- MP Modifiers
+(32358, 4410, 11), -- P. Atk. Modifiers
+(32358, 4411, 11), -- M. Atk. Modifiers
+(32358, 4412, 11), -- P. Def. Modifiers
+(32358, 4413, 11), -- M. Def. Modifiers
+(32358, 4414, 2), -- Armor Type
+(32358, 4415, 1), -- Weapon Type
+(32358, 4416, 14), -- Races
 -- Lahm
 (32359, 4045, 1), -- Resist Full Magic Attack
-(32359, 4408, 1), -- HP Increase (1x)
-(32359, 4409, 1), -- MP Increase (1x)
-(32359, 4410, 11), -- Average P. Atk.
-(32359, 4411, 11), -- Average M. Atk.
-(32359, 4412, 11), -- Average P. Def.
-(32359, 4413, 11), -- Average M. Def.
-(32359, 4414, 2), -- Standard Type
-(32359, 4415, 1), -- Bare Hands
-(32359, 4416, 18), -- Dwarves
+(32359, 4408, 1), -- HP Modifiers
+(32359, 4409, 1), -- MP Modifiers
+(32359, 4410, 11), -- P. Atk. Modifiers
+(32359, 4411, 11), -- M. Atk. Modifiers
+(32359, 4412, 11), -- P. Def. Modifiers
+(32359, 4413, 11), -- M. Def. Modifiers
+(32359, 4414, 2), -- Armor Type
+(32359, 4415, 1), -- Weapon Type
+(32359, 4416, 18), -- Races
 -- Caravan Supporter
-(32361, 4390, 1), -- Mystic Immunity
-(32361, 4408, 1), -- HP Increase (1x)
-(32361, 4409, 1), -- MP Increase (1x)
-(32361, 4410, 11), -- Average P. Atk.
-(32361, 4411, 11), -- Average M. Atk.
-(32361, 4412, 11), -- Average P. Def.
-(32361, 4413, 11), -- Average M. Def.
-(32361, 4414, 2), -- Standard Type
-(32361, 4415, 1), -- Bare Hands
-(32361, 4416, 19), -- Others
+(32361, 4390, 1), -- NPC Abnormal Immunity
+(32361, 4408, 1), -- HP Modifiers
+(32361, 4409, 1), -- MP Modifiers
+(32361, 4410, 11), -- P. Atk. Modifiers
+(32361, 4411, 11), -- M. Atk. Modifiers
+(32361, 4412, 11), -- P. Def. Modifiers
+(32361, 4413, 11), -- M. Def. Modifiers
+(32361, 4414, 2), -- Armor Type
+(32361, 4415, 1), -- Weapon Type
+(32361, 4416, 19), -- Races
 -- Hellbound Native 
-(32362, 4408, 1), -- HP Increase (1x)
-(32362, 4409, 1), -- MP Increase (1x)
-(32362, 4410, 11), -- Average P. Atk.
-(32362, 4411, 11), -- Average M. Atk.
-(32362, 4412, 11), -- Average P. Def.
-(32362, 4413, 11), -- Average M. Def.
-(32362, 4414, 2), -- Standard Type
-(32362, 4415, 3), -- One-handed Sword
-(32362, 4416, 14), -- Humans
+(32362, 4408, 1), -- HP Modifiers
+(32362, 4409, 1), -- MP Modifiers
+(32362, 4410, 11), -- P. Atk. Modifiers
+(32362, 4411, 11), -- M. Atk. Modifiers
+(32362, 4412, 11), -- P. Def. Modifiers
+(32362, 4413, 11), -- M. Def. Modifiers
+(32362, 4414, 2), -- Armor Type
+(32362, 4415, 3), -- Weapon Type
+(32362, 4416, 14), -- Races
 -- Hellbound Insurgent
 (32363, 4045, 1), -- Resist Full Magic Attack
-(32363, 4408, 1), -- HP Increase (1x)
-(32363, 4409, 1), -- MP Increase (1x)
-(32363, 4410, 11), -- Average P. Atk.
-(32363, 4411, 11), -- Average M. Atk.
-(32363, 4412, 11), -- Average P. Def.
-(32363, 4413, 11), -- Average M. Def.
-(32363, 4414, 2), -- Standard Type
-(32363, 4415, 3), -- One-handed Sword
-(32363, 4416, 14), -- Humans
+(32363, 4408, 1), -- HP Modifiers
+(32363, 4409, 1), -- MP Modifiers
+(32363, 4410, 11), -- P. Atk. Modifiers
+(32363, 4411, 11), -- M. Atk. Modifiers
+(32363, 4412, 11), -- P. Def. Modifiers
+(32363, 4413, 11), -- M. Def. Modifiers
+(32363, 4414, 2), -- Armor Type
+(32363, 4415, 3), -- Weapon Type
+(32363, 4416, 14), -- Races
 -- Hellbound Traitor
 (32364, 4045, 1), -- Resist Full Magic Attack
-(32364, 4408, 1), -- HP Increase (1x)
-(32364, 4409, 1), -- MP Increase (1x)
-(32364, 4410, 11), -- Average P. Atk.
-(32364, 4411, 11), -- Average M. Atk.
-(32364, 4412, 11), -- Average P. Def.
-(32364, 4413, 11), -- Average M. Def.
-(32364, 4414, 2), -- Standard Type
-(32364, 4415, 1), -- Bare Hands
-(32364, 4416, 14), -- Humans
+(32364, 4408, 1), -- HP Modifiers
+(32364, 4409, 1), -- MP Modifiers
+(32364, 4410, 11), -- P. Atk. Modifiers
+(32364, 4411, 11), -- M. Atk. Modifiers
+(32364, 4412, 11), -- P. Def. Modifiers
+(32364, 4413, 11), -- M. Def. Modifiers
+(32364, 4414, 2), -- Armor Type
+(32364, 4415, 1), -- Weapon Type
+(32364, 4416, 14), -- Races
 -- Snow
 (32365, 4045, 1), -- Resist Full Magic Attack
-(32365, 4408, 1), -- HP Increase (1x)
-(32365, 4409, 1), -- MP Increase (1x)
-(32365, 4410, 11), -- Average P. Atk.
-(32365, 4411, 11), -- Average M. Atk.
-(32365, 4412, 11), -- Average P. Def.
-(32365, 4413, 11), -- Average M. Def.
-(32365, 4414, 2), -- Standard Type
-(32365, 4415, 1), -- Bare Hands
-(32365, 4416, 6), -- Humanoids
+(32365, 4408, 1), -- HP Modifiers
+(32365, 4409, 1), -- MP Modifiers
+(32365, 4410, 11), -- P. Atk. Modifiers
+(32365, 4411, 11), -- M. Atk. Modifiers
+(32365, 4412, 11), -- P. Def. Modifiers
+(32365, 4413, 11), -- M. Def. Modifiers
+(32365, 4414, 2), -- Armor Type
+(32365, 4415, 1), -- Weapon Type
+(32365, 4416, 6), -- Races
 -- Destroyed Device
 (32366, 4045, 1), -- Resist Full Magic Attack
-(32366, 4390, 1), -- Mystic Immunity
-(32366, 4408, 1), -- HP Increase (1x)
-(32366, 4409, 1), -- MP Increase (1x)
-(32366, 4410, 11), -- Average P. Atk.
-(32366, 4411, 11), -- Average M. Atk.
-(32366, 4412, 11), -- Average P. Def.
-(32366, 4413, 11), -- Average M. Def.
-(32366, 4414, 2), -- Standard Type
-(32366, 4415, 3), -- One-handed Sword
-(32366, 4416, 2), -- Magic Creatures
+(32366, 4390, 1), -- NPC Abnormal Immunity
+(32366, 4408, 1), -- HP Modifiers
+(32366, 4409, 1), -- MP Modifiers
+(32366, 4410, 11), -- P. Atk. Modifiers
+(32366, 4411, 11), -- M. Atk. Modifiers
+(32366, 4412, 11), -- P. Def. Modifiers
+(32366, 4413, 11), -- M. Def. Modifiers
+(32366, 4414, 2), -- Armor Type
+(32366, 4415, 3), -- Weapon Type
+(32366, 4416, 2), -- Races
 -- Alarm
 (32367, 4045, 1), -- Resist Full Magic Attack
-(32367, 4390, 1), -- Mystic Immunity
-(32367, 4408, 1), -- HP Increase (1x)
-(32367, 4409, 1), -- MP Increase (1x)
-(32367, 4410, 11), -- Average P. Atk.
-(32367, 4411, 11), -- Average M. Atk.
-(32367, 4412, 11), -- Average P. Def.
-(32367, 4413, 11), -- Average M. Def.
-(32367, 4414, 2), -- Standard Type
-(32367, 4415, 3), -- One-handed Sword
-(32367, 4416, 19), -- Others
+(32367, 4390, 1), -- NPC Abnormal Immunity
+(32367, 4408, 1), -- HP Modifiers
+(32367, 4409, 1), -- MP Modifiers
+(32367, 4410, 11), -- P. Atk. Modifiers
+(32367, 4411, 11), -- M. Atk. Modifiers
+(32367, 4412, 11), -- P. Def. Modifiers
+(32367, 4413, 11), -- M. Def. Modifiers
+(32367, 4414, 2), -- Armor Type
+(32367, 4415, 3), -- Weapon Type
+(32367, 4416, 19), -- Races
 -- Weathered Rock
 (32368, 4045, 1), -- Resist Full Magic Attack
-(32368, 4390, 1), -- Mystic Immunity
-(32368, 4408, 1), -- HP Increase (1x)
-(32368, 4409, 1), -- MP Increase (1x)
-(32368, 4410, 11), -- Average P. Atk.
-(32368, 4411, 11), -- Average M. Atk.
-(32368, 4412, 11), -- Average P. Def.
-(32368, 4413, 11), -- Average M. Def.
-(32368, 4414, 2), -- Standard Type
-(32368, 4415, 3), -- One-handed Sword
-(32368, 4416, 2), -- Magic Creatures
+(32368, 4390, 1), -- NPC Abnormal Immunity
+(32368, 4408, 1), -- HP Modifiers
+(32368, 4409, 1), -- MP Modifiers
+(32368, 4410, 11), -- P. Atk. Modifiers
+(32368, 4411, 11), -- M. Atk. Modifiers
+(32368, 4412, 11), -- P. Def. Modifiers
+(32368, 4413, 11), -- M. Def. Modifiers
+(32368, 4414, 2), -- Armor Type
+(32368, 4415, 3), -- Weapon Type
+(32368, 4416, 2), -- Races
 -- Fallen Angel
 (32369, 4045, 1), -- Resist Full Magic Attack
-(32369, 4408, 1), -- HP Increase (1x)
-(32369, 4409, 1), -- MP Increase (1x)
-(32369, 4410, 11), -- Average P. Atk.
-(32369, 4411, 11), -- Average M. Atk.
-(32369, 4412, 11), -- Average P. Def.
-(32369, 4413, 11), -- Average M. Def.
-(32369, 4414, 2), -- Standard Type
-(32369, 4415, 3), -- One-handed Sword
-(32369, 4416, 8), -- Angels
+(32369, 4408, 1), -- HP Modifiers
+(32369, 4409, 1), -- MP Modifiers
+(32369, 4410, 11), -- P. Atk. Modifiers
+(32369, 4411, 11), -- M. Atk. Modifiers
+(32369, 4412, 11), -- P. Def. Modifiers
+(32369, 4413, 11), -- M. Def. Modifiers
+(32369, 4414, 2), -- Armor Type
+(32369, 4415, 3), -- Weapon Type
+(32369, 4416, 8), -- Races
 -- Old Dwarven Ghost
 (32370, 4045, 1), -- Resist Full Magic Attack
-(32370, 4408, 1), -- HP Increase (1x)
-(32370, 4409, 1), -- MP Increase (1x)
-(32370, 4410, 11), -- Average P. Atk.
-(32370, 4411, 11), -- Average M. Atk.
-(32370, 4412, 11), -- Average P. Def.
-(32370, 4413, 11), -- Average M. Def.
-(32370, 4414, 2), -- Standard Type
-(32370, 4415, 3), -- One-handed Sword
-(32370, 4416, 6), -- Humanoids
+(32370, 4408, 1), -- HP Modifiers
+(32370, 4409, 1), -- MP Modifiers
+(32370, 4410, 11), -- P. Atk. Modifiers
+(32370, 4411, 11), -- M. Atk. Modifiers
+(32370, 4412, 11), -- P. Def. Modifiers
+(32370, 4413, 11), -- M. Def. Modifiers
+(32370, 4414, 2), -- Armor Type
+(32370, 4415, 3), -- Weapon Type
+(32370, 4416, 6), -- Races
 -- Ingenious Contraption
-(32371, 4390, 1), -- Mystic Immunity
-(32371, 4408, 1), -- HP Increase (1x)
-(32371, 4409, 1), -- MP Increase (1x)
-(32371, 4410, 11), -- Average P. Atk.
-(32371, 4411, 11), -- Average M. Atk.
-(32371, 4412, 11), -- Average P. Def.
-(32371, 4413, 11), -- Average M. Def.
-(32371, 4414, 2), -- Standard Type
-(32371, 4415, 3), -- One-handed Sword
-(32371, 4416, 2), -- Magic Creatures
+(32371, 4390, 1), -- NPC Abnormal Immunity
+(32371, 4408, 1), -- HP Modifiers
+(32371, 4409, 1), -- MP Modifiers
+(32371, 4410, 11), -- P. Atk. Modifiers
+(32371, 4411, 11), -- M. Atk. Modifiers
+(32371, 4412, 11), -- P. Def. Modifiers
+(32371, 4413, 11), -- M. Def. Modifiers
+(32371, 4414, 2), -- Armor Type
+(32371, 4415, 3), -- Weapon Type
+(32371, 4416, 2), -- Races
 -- Mysterious Agent
 (32372, 4045, 1), -- Resist Full Magic Attack
-(32372, 4408, 1), -- HP Increase (1x)
-(32372, 4409, 1), -- MP Increase (1x)
-(32372, 4410, 11), -- Average P. Atk.
-(32372, 4411, 11), -- Average M. Atk.
-(32372, 4412, 11), -- Average P. Def.
-(32372, 4413, 11), -- Average M. Def.
-(32372, 4414, 2), -- Standard Type
-(32372, 4415, 3), -- One-handed Sword
-(32372, 4416, 6), -- Humanoids
+(32372, 4408, 1), -- HP Modifiers
+(32372, 4409, 1), -- MP Modifiers
+(32372, 4410, 11), -- P. Atk. Modifiers
+(32372, 4411, 11), -- M. Atk. Modifiers
+(32372, 4412, 11), -- P. Def. Modifiers
+(32372, 4413, 11), -- M. Def. Modifiers
+(32372, 4414, 2), -- Armor Type
+(32372, 4415, 3), -- Weapon Type
+(32372, 4416, 6), -- Races
 (32372, 5526, 1), -- Challenger's Blessing
 -- Dorian
 (32373, 4045, 1), -- Resist Full Magic Attack
-(32373, 4408, 1), -- HP Increase (1x)
-(32373, 4409, 1), -- MP Increase (1x)
-(32373, 4410, 11), -- Average P. Atk.
-(32373, 4411, 11), -- Average M. Atk.
-(32373, 4412, 11), -- Average P. Def.
-(32373, 4413, 11), -- Average M. Def.
-(32373, 4414, 2), -- Standard Type
-(32373, 4415, 3), -- One-handed Sword
-(32373, 4416, 14), -- Humans
+(32373, 4408, 1), -- HP Modifiers
+(32373, 4409, 1), -- MP Modifiers
+(32373, 4410, 11), -- P. Atk. Modifiers
+(32373, 4411, 11), -- M. Atk. Modifiers
+(32373, 4412, 11), -- P. Def. Modifiers
+(32373, 4413, 11), -- M. Def. Modifiers
+(32373, 4414, 2), -- Armor Type
+(32373, 4415, 3), -- Weapon Type
+(32373, 4416, 14), -- Races
 -- Teleportation Cubic
 (32374, 4045, 1), -- Resist Full Magic Attack
-(32374, 4390, 1), -- Mystic Immunity
-(32374, 4408, 1), -- HP Increase (1x)
-(32374, 4409, 1), -- MP Increase (1x)
-(32374, 4410, 11), -- Average P. Atk.
-(32374, 4411, 11), -- Average M. Atk.
-(32374, 4412, 11), -- Average P. Def.
-(32374, 4413, 11), -- Average M. Def.
-(32374, 4414, 2), -- Standard Type
-(32374, 4415, 3), -- One-handed Sword
-(32374, 4416, 19), -- Others
+(32374, 4390, 1), -- NPC Abnormal Immunity
+(32374, 4408, 1), -- HP Modifiers
+(32374, 4409, 1), -- MP Modifiers
+(32374, 4410, 11), -- P. Atk. Modifiers
+(32374, 4411, 11), -- M. Atk. Modifiers
+(32374, 4412, 11), -- P. Def. Modifiers
+(32374, 4413, 11), -- M. Def. Modifiers
+(32374, 4414, 2), -- Armor Type
+(32374, 4415, 3), -- Weapon Type
+(32374, 4416, 19), -- Races
 -- Teleportation Cubic
 (32375, 4045, 1), -- Resist Full Magic Attack
-(32375, 4390, 1), -- Mystic Immunity
-(32375, 4408, 1), -- HP Increase (1x)
-(32375, 4409, 1), -- MP Increase (1x)
-(32375, 4410, 11), -- Average P. Atk.
-(32375, 4411, 11), -- Average M. Atk.
-(32375, 4412, 11), -- Average P. Def.
-(32375, 4413, 11), -- Average M. Def.
-(32375, 4414, 2), -- Standard Type
-(32375, 4415, 3), -- One-handed Sword
-(32375, 4416, 19), -- Others
+(32375, 4390, 1), -- NPC Abnormal Immunity
+(32375, 4408, 1), -- HP Modifiers
+(32375, 4409, 1), -- MP Modifiers
+(32375, 4410, 11), -- P. Atk. Modifiers
+(32375, 4411, 11), -- M. Atk. Modifiers
+(32375, 4412, 11), -- P. Def. Modifiers
+(32375, 4413, 11), -- M. Def. Modifiers
+(32375, 4414, 2), -- Armor Type
+(32375, 4415, 3), -- Weapon Type
+(32375, 4416, 19), -- Races
 -- Teleportation Cubic
 (32376, 4045, 1), -- Resist Full Magic Attack
-(32376, 4390, 1), -- Mystic Immunity
-(32376, 4408, 1), -- HP Increase (1x)
-(32376, 4409, 1), -- MP Increase (1x)
-(32376, 4410, 11), -- Average P. Atk.
-(32376, 4411, 11), -- Average M. Atk.
-(32376, 4412, 11), -- Average P. Def.
-(32376, 4413, 11), -- Average M. Def.
-(32376, 4414, 2), -- Standard Type
-(32376, 4415, 3), -- One-handed Sword
-(32376, 4416, 19), -- Others
+(32376, 4390, 1), -- NPC Abnormal Immunity
+(32376, 4408, 1), -- HP Modifiers
+(32376, 4409, 1), -- MP Modifiers
+(32376, 4410, 11), -- P. Atk. Modifiers
+(32376, 4411, 11), -- M. Atk. Modifiers
+(32376, 4412, 11), -- P. Def. Modifiers
+(32376, 4413, 11), -- M. Def. Modifiers
+(32376, 4414, 2), -- Armor Type
+(32376, 4415, 3), -- Weapon Type
+(32376, 4416, 19), -- Races
 -- Kuram
 (32377, 4045, 1), -- Resist Full Magic Attack
-(32377, 4408, 1), -- HP Increase (1x)
-(32377, 4409, 1), -- MP Increase (1x)
-(32377, 4410, 11), -- Average P. Atk.
-(32377, 4411, 11), -- Average M. Atk.
-(32377, 4412, 11), -- Average P. Def.
-(32377, 4413, 11), -- Average M. Def.
-(32377, 4414, 2), -- Standard Type
-(32377, 4415, 3), -- One-handed Sword
-(32377, 4416, 18), -- Dwarves
+(32377, 4408, 1), -- HP Modifiers
+(32377, 4409, 1), -- MP Modifiers
+(32377, 4410, 11), -- P. Atk. Modifiers
+(32377, 4411, 11), -- M. Atk. Modifiers
+(32377, 4412, 11), -- P. Def. Modifiers
+(32377, 4413, 11), -- M. Def. Modifiers
+(32377, 4414, 2), -- Armor Type
+(32377, 4415, 3), -- Weapon Type
+(32377, 4416, 18), -- Races
 -- Fantasy Isle Paddies
 (32378, 4045, 1), -- Resist Full Magic Attack
-(32378, 4408, 1), -- HP Increase (1x)
-(32378, 4409, 1), -- MP Increase (1x)
-(32378, 4410, 11), -- Average P. Atk.
-(32378, 4411, 11), -- Average M. Atk.
-(32378, 4412, 11), -- Average P. Def.
-(32378, 4413, 11), -- Average M. Def.
-(32378, 4414, 2), -- Standard Type
-(32378, 4415, 3), -- One-handed Sword
-(32378, 4416, 18), -- Dwarves
+(32378, 4408, 1), -- HP Modifiers
+(32378, 4409, 1), -- MP Modifiers
+(32378, 4410, 11), -- P. Atk. Modifiers
+(32378, 4411, 11), -- M. Atk. Modifiers
+(32378, 4412, 11), -- P. Def. Modifiers
+(32378, 4413, 11), -- M. Def. Modifiers
+(32378, 4414, 2), -- Armor Type
+(32378, 4415, 3), -- Weapon Type
+(32378, 4416, 18), -- Races
 -- 
 (32379, 4045, 1), -- Resist Full Magic Attack
-(32379, 4408, 1), -- HP Increase (1x)
-(32379, 4409, 1), -- MP Increase (1x)
-(32379, 4410, 11), -- Average P. Atk.
-(32379, 4411, 11), -- Average M. Atk.
-(32379, 4412, 11), -- Average P. Def.
-(32379, 4413, 11), -- Average M. Def.
-(32379, 4414, 2), -- Standard Type
-(32379, 4415, 3), -- One-handed Sword
-(32379, 4416, 6), -- Humanoids
+(32379, 4408, 1), -- HP Modifiers
+(32379, 4409, 1), -- MP Modifiers
+(32379, 4410, 11), -- P. Atk. Modifiers
+(32379, 4411, 11), -- M. Atk. Modifiers
+(32379, 4412, 11), -- P. Def. Modifiers
+(32379, 4413, 11), -- M. Def. Modifiers
+(32379, 4414, 2), -- Armor Type
+(32379, 4415, 3), -- Weapon Type
+(32379, 4416, 6), -- Races
 -- 
 (32380, 4045, 1), -- Resist Full Magic Attack
-(32380, 4408, 1), -- HP Increase (1x)
-(32380, 4409, 1), -- MP Increase (1x)
-(32380, 4410, 11), -- Average P. Atk.
-(32380, 4411, 11), -- Average M. Atk.
-(32380, 4412, 11), -- Average P. Def.
-(32380, 4413, 11), -- Average M. Def.
-(32380, 4414, 2), -- Standard Type
-(32380, 4415, 3), -- One-handed Sword
-(32380, 4416, 6), -- Humanoids
+(32380, 4408, 1), -- HP Modifiers
+(32380, 4409, 1), -- MP Modifiers
+(32380, 4410, 11), -- P. Atk. Modifiers
+(32380, 4411, 11), -- M. Atk. Modifiers
+(32380, 4412, 11), -- P. Def. Modifiers
+(32380, 4413, 11), -- M. Def. Modifiers
+(32380, 4414, 2), -- Armor Type
+(32380, 4415, 3), -- Weapon Type
+(32380, 4416, 6), -- Races
 -- 
 (32381, 4045, 1), -- Resist Full Magic Attack
-(32381, 4408, 1), -- HP Increase (1x)
-(32381, 4409, 1), -- MP Increase (1x)
-(32381, 4410, 11), -- Average P. Atk.
-(32381, 4411, 11), -- Average M. Atk.
-(32381, 4412, 11), -- Average P. Def.
-(32381, 4413, 11), -- Average M. Def.
-(32381, 4414, 2), -- Standard Type
-(32381, 4415, 3), -- One-handed Sword
-(32381, 4416, 6), -- Humanoids
+(32381, 4408, 1), -- HP Modifiers
+(32381, 4409, 1), -- MP Modifiers
+(32381, 4410, 11), -- P. Atk. Modifiers
+(32381, 4411, 11), -- M. Atk. Modifiers
+(32381, 4412, 11), -- P. Def. Modifiers
+(32381, 4413, 11), -- M. Def. Modifiers
+(32381, 4414, 2), -- Armor Type
+(32381, 4415, 3), -- Weapon Type
+(32381, 4416, 6), -- Races
 -- 
 (32382, 4045, 1), -- Resist Full Magic Attack
-(32382, 4408, 1), -- HP Increase (1x)
-(32382, 4409, 1), -- MP Increase (1x)
-(32382, 4410, 11), -- Average P. Atk.
-(32382, 4411, 11), -- Average M. Atk.
-(32382, 4412, 11), -- Average P. Def.
-(32382, 4413, 11), -- Average M. Def.
-(32382, 4414, 2), -- Standard Type
-(32382, 4415, 3), -- One-handed Sword
-(32382, 4416, 6), -- Humanoids
+(32382, 4408, 1), -- HP Modifiers
+(32382, 4409, 1), -- MP Modifiers
+(32382, 4410, 11), -- P. Atk. Modifiers
+(32382, 4411, 11), -- M. Atk. Modifiers
+(32382, 4412, 11), -- P. Def. Modifiers
+(32382, 4413, 11), -- M. Def. Modifiers
+(32382, 4414, 2), -- Armor Type
+(32382, 4415, 3), -- Weapon Type
+(32382, 4416, 6), -- Races
 -- 
 (32383, 4045, 1), -- Resist Full Magic Attack
-(32383, 4408, 1), -- HP Increase (1x)
-(32383, 4409, 1), -- MP Increase (1x)
-(32383, 4410, 11), -- Average P. Atk.
-(32383, 4411, 11), -- Average M. Atk.
-(32383, 4412, 11), -- Average P. Def.
-(32383, 4413, 11), -- Average M. Def.
-(32383, 4414, 2), -- Standard Type
-(32383, 4415, 3), -- One-handed Sword
-(32383, 4416, 6), -- Humanoids
+(32383, 4408, 1), -- HP Modifiers
+(32383, 4409, 1), -- MP Modifiers
+(32383, 4410, 11), -- P. Atk. Modifiers
+(32383, 4411, 11), -- M. Atk. Modifiers
+(32383, 4412, 11), -- P. Def. Modifiers
+(32383, 4413, 11), -- M. Def. Modifiers
+(32383, 4414, 2), -- Armor Type
+(32383, 4415, 3), -- Weapon Type
+(32383, 4416, 6), -- Races
 -- 
 (32384, 4045, 1), -- Resist Full Magic Attack
-(32384, 4408, 1), -- HP Increase (1x)
-(32384, 4409, 1), -- MP Increase (1x)
-(32384, 4410, 11), -- Average P. Atk.
-(32384, 4411, 11), -- Average M. Atk.
-(32384, 4412, 11), -- Average P. Def.
-(32384, 4413, 11), -- Average M. Def.
-(32384, 4414, 2), -- Standard Type
-(32384, 4415, 3), -- One-handed Sword
-(32384, 4416, 6), -- Humanoids
+(32384, 4408, 1), -- HP Modifiers
+(32384, 4409, 1), -- MP Modifiers
+(32384, 4410, 11), -- P. Atk. Modifiers
+(32384, 4411, 11), -- M. Atk. Modifiers
+(32384, 4412, 11), -- P. Def. Modifiers
+(32384, 4413, 11), -- M. Def. Modifiers
+(32384, 4414, 2), -- Armor Type
+(32384, 4415, 3), -- Weapon Type
+(32384, 4416, 6), -- Races
 -- 
 (32385, 4045, 1), -- Resist Full Magic Attack
-(32385, 4408, 1), -- HP Increase (1x)
-(32385, 4409, 1), -- MP Increase (1x)
-(32385, 4410, 11), -- Average P. Atk.
-(32385, 4411, 11), -- Average M. Atk.
-(32385, 4412, 11), -- Average P. Def.
-(32385, 4413, 11), -- Average M. Def.
-(32385, 4414, 2), -- Standard Type
-(32385, 4415, 3), -- One-handed Sword
-(32385, 4416, 6), -- Humanoids
+(32385, 4408, 1), -- HP Modifiers
+(32385, 4409, 1), -- MP Modifiers
+(32385, 4410, 11), -- P. Atk. Modifiers
+(32385, 4411, 11), -- M. Atk. Modifiers
+(32385, 4412, 11), -- P. Def. Modifiers
+(32385, 4413, 11), -- M. Def. Modifiers
+(32385, 4414, 2), -- Armor Type
+(32385, 4415, 3), -- Weapon Type
+(32385, 4416, 6), -- Races
 -- 
 (32386, 4045, 1), -- Resist Full Magic Attack
-(32386, 4408, 1), -- HP Increase (1x)
-(32386, 4409, 1), -- MP Increase (1x)
-(32386, 4410, 11), -- Average P. Atk.
-(32386, 4411, 11), -- Average M. Atk.
-(32386, 4412, 11), -- Average P. Def.
-(32386, 4413, 11), -- Average M. Def.
-(32386, 4414, 2), -- Standard Type
-(32386, 4415, 3), -- One-handed Sword
-(32386, 4416, 16), -- Dark Elves
+(32386, 4408, 1), -- HP Modifiers
+(32386, 4409, 1), -- MP Modifiers
+(32386, 4410, 11), -- P. Atk. Modifiers
+(32386, 4411, 11), -- M. Atk. Modifiers
+(32386, 4412, 11), -- P. Def. Modifiers
+(32386, 4413, 11), -- M. Def. Modifiers
+(32386, 4414, 2), -- Armor Type
+(32386, 4415, 3), -- Weapon Type
+(32386, 4416, 16), -- Races
 -- 
 (32387, 4045, 1), -- Resist Full Magic Attack
-(32387, 4408, 1), -- HP Increase (1x)
-(32387, 4409, 1), -- MP Increase (1x)
-(32387, 4410, 11), -- Average P. Atk.
-(32387, 4411, 11), -- Average M. Atk.
-(32387, 4412, 11), -- Average P. Def.
-(32387, 4413, 11), -- Average M. Def.
-(32387, 4414, 2), -- Standard Type
-(32387, 4415, 3), -- One-handed Sword
-(32387, 4416, 16), -- Dark Elves
+(32387, 4408, 1), -- HP Modifiers
+(32387, 4409, 1), -- MP Modifiers
+(32387, 4410, 11), -- P. Atk. Modifiers
+(32387, 4411, 11), -- M. Atk. Modifiers
+(32387, 4412, 11), -- P. Def. Modifiers
+(32387, 4413, 11), -- M. Def. Modifiers
+(32387, 4414, 2), -- Armor Type
+(32387, 4415, 3), -- Weapon Type
+(32387, 4416, 16), -- Races
 -- 
 (32388, 4045, 1), -- Resist Full Magic Attack
-(32388, 4408, 1), -- HP Increase (1x)
-(32388, 4409, 1), -- MP Increase (1x)
-(32388, 4410, 11), -- Average P. Atk.
-(32388, 4411, 11), -- Average M. Atk.
-(32388, 4412, 11), -- Average P. Def.
-(32388, 4413, 11), -- Average M. Def.
-(32388, 4414, 2), -- Standard Type
-(32388, 4415, 3), -- One-handed Sword
-(32388, 4416, 16), -- Dark Elves
+(32388, 4408, 1), -- HP Modifiers
+(32388, 4409, 1), -- MP Modifiers
+(32388, 4410, 11), -- P. Atk. Modifiers
+(32388, 4411, 11), -- M. Atk. Modifiers
+(32388, 4412, 11), -- P. Def. Modifiers
+(32388, 4413, 11), -- M. Def. Modifiers
+(32388, 4414, 2), -- Armor Type
+(32388, 4415, 3), -- Weapon Type
+(32388, 4416, 16), -- Races
 -- 
 (32389, 4045, 1), -- Resist Full Magic Attack
-(32389, 4408, 1), -- HP Increase (1x)
-(32389, 4409, 1), -- MP Increase (1x)
-(32389, 4410, 11), -- Average P. Atk.
-(32389, 4411, 11), -- Average M. Atk.
-(32389, 4412, 11), -- Average P. Def.
-(32389, 4413, 11), -- Average M. Def.
-(32389, 4414, 2), -- Standard Type
-(32389, 4415, 3), -- One-handed Sword
-(32389, 4416, 16), -- Dark Elves
+(32389, 4408, 1), -- HP Modifiers
+(32389, 4409, 1), -- MP Modifiers
+(32389, 4410, 11), -- P. Atk. Modifiers
+(32389, 4411, 11), -- M. Atk. Modifiers
+(32389, 4412, 11), -- P. Def. Modifiers
+(32389, 4413, 11), -- M. Def. Modifiers
+(32389, 4414, 2), -- Armor Type
+(32389, 4415, 3), -- Weapon Type
+(32389, 4416, 16), -- Races
 -- 
 (32390, 4045, 1), -- Resist Full Magic Attack
-(32390, 4408, 1), -- HP Increase (1x)
-(32390, 4409, 1), -- MP Increase (1x)
-(32390, 4410, 11), -- Average P. Atk.
-(32390, 4411, 11), -- Average M. Atk.
-(32390, 4412, 11), -- Average P. Def.
-(32390, 4413, 11), -- Average M. Def.
-(32390, 4414, 2), -- Standard Type
-(32390, 4415, 3), -- One-handed Sword
-(32390, 4416, 16), -- Dark Elves
+(32390, 4408, 1), -- HP Modifiers
+(32390, 4409, 1), -- MP Modifiers
+(32390, 4410, 11), -- P. Atk. Modifiers
+(32390, 4411, 11), -- M. Atk. Modifiers
+(32390, 4412, 11), -- P. Def. Modifiers
+(32390, 4413, 11), -- M. Def. Modifiers
+(32390, 4414, 2), -- Armor Type
+(32390, 4415, 3), -- Weapon Type
+(32390, 4416, 16), -- Races
 -- 
 (32391, 4045, 1), -- Resist Full Magic Attack
-(32391, 4408, 1), -- HP Increase (1x)
-(32391, 4409, 1), -- MP Increase (1x)
-(32391, 4410, 11), -- Average P. Atk.
-(32391, 4411, 11), -- Average M. Atk.
-(32391, 4412, 11), -- Average P. Def.
-(32391, 4413, 11), -- Average M. Def.
-(32391, 4414, 2), -- Standard Type
-(32391, 4415, 3), -- One-handed Sword
-(32391, 4416, 18), -- Dwarves
+(32391, 4408, 1), -- HP Modifiers
+(32391, 4409, 1), -- MP Modifiers
+(32391, 4410, 11), -- P. Atk. Modifiers
+(32391, 4411, 11), -- M. Atk. Modifiers
+(32391, 4412, 11), -- P. Def. Modifiers
+(32391, 4413, 11), -- M. Def. Modifiers
+(32391, 4414, 2), -- Armor Type
+(32391, 4415, 3), -- Weapon Type
+(32391, 4416, 18), -- Races
 -- 
 (32392, 4045, 1), -- Resist Full Magic Attack
-(32392, 4408, 1), -- HP Increase (1x)
-(32392, 4409, 1), -- MP Increase (1x)
-(32392, 4410, 11), -- Average P. Atk.
-(32392, 4411, 11), -- Average M. Atk.
-(32392, 4412, 11), -- Average P. Def.
-(32392, 4413, 11), -- Average M. Def.
-(32392, 4414, 2), -- Standard Type
-(32392, 4415, 3), -- One-handed Sword
-(32392, 4416, 18), -- Dwarves
+(32392, 4408, 1), -- HP Modifiers
+(32392, 4409, 1), -- MP Modifiers
+(32392, 4410, 11), -- P. Atk. Modifiers
+(32392, 4411, 11), -- M. Atk. Modifiers
+(32392, 4412, 11), -- P. Def. Modifiers
+(32392, 4413, 11), -- M. Def. Modifiers
+(32392, 4414, 2), -- Armor Type
+(32392, 4415, 3), -- Weapon Type
+(32392, 4416, 18), -- Races
 -- 
 (32393, 4045, 1), -- Resist Full Magic Attack
-(32393, 4408, 1), -- HP Increase (1x)
-(32393, 4409, 1), -- MP Increase (1x)
-(32393, 4410, 11), -- Average P. Atk.
-(32393, 4411, 11), -- Average M. Atk.
-(32393, 4412, 11), -- Average P. Def.
-(32393, 4413, 11), -- Average M. Def.
-(32393, 4414, 2), -- Standard Type
-(32393, 4415, 3), -- One-handed Sword
-(32393, 4416, 18), -- Dwarves
+(32393, 4408, 1), -- HP Modifiers
+(32393, 4409, 1), -- MP Modifiers
+(32393, 4410, 11), -- P. Atk. Modifiers
+(32393, 4411, 11), -- M. Atk. Modifiers
+(32393, 4412, 11), -- P. Def. Modifiers
+(32393, 4413, 11), -- M. Def. Modifiers
+(32393, 4414, 2), -- Armor Type
+(32393, 4415, 3), -- Weapon Type
+(32393, 4416, 18), -- Races
 -- 
 (32394, 4045, 1), -- Resist Full Magic Attack
-(32394, 4408, 1), -- HP Increase (1x)
-(32394, 4409, 1), -- MP Increase (1x)
-(32394, 4410, 11), -- Average P. Atk.
-(32394, 4411, 11), -- Average M. Atk.
-(32394, 4412, 11), -- Average P. Def.
-(32394, 4413, 11), -- Average M. Def.
-(32394, 4414, 2), -- Standard Type
-(32394, 4415, 3), -- One-handed Sword
-(32394, 4416, 18), -- Dwarves
+(32394, 4408, 1), -- HP Modifiers
+(32394, 4409, 1), -- MP Modifiers
+(32394, 4410, 11), -- P. Atk. Modifiers
+(32394, 4411, 11), -- M. Atk. Modifiers
+(32394, 4412, 11), -- P. Def. Modifiers
+(32394, 4413, 11), -- M. Def. Modifiers
+(32394, 4414, 2), -- Armor Type
+(32394, 4415, 3), -- Weapon Type
+(32394, 4416, 18), -- Races
 -- 
 (32395, 4045, 1), -- Resist Full Magic Attack
-(32395, 4408, 1), -- HP Increase (1x)
-(32395, 4409, 1), -- MP Increase (1x)
-(32395, 4410, 11), -- Average P. Atk.
-(32395, 4411, 11), -- Average M. Atk.
-(32395, 4412, 11), -- Average P. Def.
-(32395, 4413, 11), -- Average M. Def.
-(32395, 4414, 2), -- Standard Type
-(32395, 4415, 3), -- One-handed Sword
-(32395, 4416, 18), -- Dwarves
+(32395, 4408, 1), -- HP Modifiers
+(32395, 4409, 1), -- MP Modifiers
+(32395, 4410, 11), -- P. Atk. Modifiers
+(32395, 4411, 11), -- M. Atk. Modifiers
+(32395, 4412, 11), -- P. Def. Modifiers
+(32395, 4413, 11), -- M. Def. Modifiers
+(32395, 4414, 2), -- Armor Type
+(32395, 4415, 3), -- Weapon Type
+(32395, 4416, 18), -- Races
 -- 
 (32396, 4045, 1), -- Resist Full Magic Attack
-(32396, 4408, 1), -- HP Increase (1x)
-(32396, 4409, 1), -- MP Increase (1x)
-(32396, 4410, 11), -- Average P. Atk.
-(32396, 4411, 11), -- Average M. Atk.
-(32396, 4412, 11), -- Average P. Def.
-(32396, 4413, 11), -- Average M. Def.
-(32396, 4414, 2), -- Standard Type
-(32396, 4415, 3), -- One-handed Sword
-(32396, 4416, 15), -- Elves
+(32396, 4408, 1), -- HP Modifiers
+(32396, 4409, 1), -- MP Modifiers
+(32396, 4410, 11), -- P. Atk. Modifiers
+(32396, 4411, 11), -- M. Atk. Modifiers
+(32396, 4412, 11), -- P. Def. Modifiers
+(32396, 4413, 11), -- M. Def. Modifiers
+(32396, 4414, 2), -- Armor Type
+(32396, 4415, 3), -- Weapon Type
+(32396, 4416, 15), -- Races
 -- 
 (32397, 4045, 1), -- Resist Full Magic Attack
-(32397, 4408, 1), -- HP Increase (1x)
-(32397, 4409, 1), -- MP Increase (1x)
-(32397, 4410, 11), -- Average P. Atk.
-(32397, 4411, 11), -- Average M. Atk.
-(32397, 4412, 11), -- Average P. Def.
-(32397, 4413, 11), -- Average M. Def.
-(32397, 4414, 2), -- Standard Type
-(32397, 4415, 3), -- One-handed Sword
-(32397, 4416, 15), -- Elves
+(32397, 4408, 1), -- HP Modifiers
+(32397, 4409, 1), -- MP Modifiers
+(32397, 4410, 11), -- P. Atk. Modifiers
+(32397, 4411, 11), -- M. Atk. Modifiers
+(32397, 4412, 11), -- P. Def. Modifiers
+(32397, 4413, 11), -- M. Def. Modifiers
+(32397, 4414, 2), -- Armor Type
+(32397, 4415, 3), -- Weapon Type
+(32397, 4416, 15), -- Races
 -- 
 (32398, 4045, 1), -- Resist Full Magic Attack
-(32398, 4408, 1), -- HP Increase (1x)
-(32398, 4409, 1), -- MP Increase (1x)
-(32398, 4410, 11), -- Average P. Atk.
-(32398, 4411, 11), -- Average M. Atk.
-(32398, 4412, 11), -- Average P. Def.
-(32398, 4413, 11), -- Average M. Def.
-(32398, 4414, 2), -- Standard Type
-(32398, 4415, 3), -- One-handed Sword
-(32398, 4416, 15), -- Elves
+(32398, 4408, 1), -- HP Modifiers
+(32398, 4409, 1), -- MP Modifiers
+(32398, 4410, 11), -- P. Atk. Modifiers
+(32398, 4411, 11), -- M. Atk. Modifiers
+(32398, 4412, 11), -- P. Def. Modifiers
+(32398, 4413, 11), -- M. Def. Modifiers
+(32398, 4414, 2), -- Armor Type
+(32398, 4415, 3), -- Weapon Type
+(32398, 4416, 15), -- Races
 -- 
 (32399, 4045, 1), -- Resist Full Magic Attack
-(32399, 4408, 1), -- HP Increase (1x)
-(32399, 4409, 1), -- MP Increase (1x)
-(32399, 4410, 11), -- Average P. Atk.
-(32399, 4411, 11), -- Average M. Atk.
-(32399, 4412, 11), -- Average P. Def.
-(32399, 4413, 11), -- Average M. Def.
-(32399, 4414, 2), -- Standard Type
-(32399, 4415, 3), -- One-handed Sword
-(32399, 4416, 15), -- Elves
+(32399, 4408, 1), -- HP Modifiers
+(32399, 4409, 1), -- MP Modifiers
+(32399, 4410, 11), -- P. Atk. Modifiers
+(32399, 4411, 11), -- M. Atk. Modifiers
+(32399, 4412, 11), -- P. Def. Modifiers
+(32399, 4413, 11), -- M. Def. Modifiers
+(32399, 4414, 2), -- Armor Type
+(32399, 4415, 3), -- Weapon Type
+(32399, 4416, 15), -- Races
 -- 
 (32400, 4045, 1), -- Resist Full Magic Attack
-(32400, 4408, 1), -- HP Increase (1x)
-(32400, 4409, 1), -- MP Increase (1x)
-(32400, 4410, 11), -- Average P. Atk.
-(32400, 4411, 11), -- Average M. Atk.
-(32400, 4412, 11), -- Average P. Def.
-(32400, 4413, 11), -- Average M. Def.
-(32400, 4414, 2), -- Standard Type
-(32400, 4415, 3), -- One-handed Sword
-(32400, 4416, 15), -- Elves
+(32400, 4408, 1), -- HP Modifiers
+(32400, 4409, 1), -- MP Modifiers
+(32400, 4410, 11), -- P. Atk. Modifiers
+(32400, 4411, 11), -- M. Atk. Modifiers
+(32400, 4412, 11), -- P. Def. Modifiers
+(32400, 4413, 11), -- M. Def. Modifiers
+(32400, 4414, 2), -- Armor Type
+(32400, 4415, 3), -- Weapon Type
+(32400, 4416, 15), -- Races
 -- 
 (32401, 4045, 1), -- Resist Full Magic Attack
-(32401, 4408, 1), -- HP Increase (1x)
-(32401, 4409, 1), -- MP Increase (1x)
-(32401, 4410, 11), -- Average P. Atk.
-(32401, 4411, 11), -- Average M. Atk.
-(32401, 4412, 11), -- Average P. Def.
-(32401, 4413, 11), -- Average M. Def.
-(32401, 4414, 2), -- Standard Type
-(32401, 4415, 3), -- One-handed Sword
-(32401, 4416, 17), -- Orcs
+(32401, 4408, 1), -- HP Modifiers
+(32401, 4409, 1), -- MP Modifiers
+(32401, 4410, 11), -- P. Atk. Modifiers
+(32401, 4411, 11), -- M. Atk. Modifiers
+(32401, 4412, 11), -- P. Def. Modifiers
+(32401, 4413, 11), -- M. Def. Modifiers
+(32401, 4414, 2), -- Armor Type
+(32401, 4415, 3), -- Weapon Type
+(32401, 4416, 17), -- Races
 -- 
 (32402, 4045, 1), -- Resist Full Magic Attack
-(32402, 4408, 1), -- HP Increase (1x)
-(32402, 4409, 1), -- MP Increase (1x)
-(32402, 4410, 11), -- Average P. Atk.
-(32402, 4411, 11), -- Average M. Atk.
-(32402, 4412, 11), -- Average P. Def.
-(32402, 4413, 11), -- Average M. Def.
-(32402, 4414, 2), -- Standard Type
-(32402, 4415, 3), -- One-handed Sword
-(32402, 4416, 17), -- Orcs
+(32402, 4408, 1), -- HP Modifiers
+(32402, 4409, 1), -- MP Modifiers
+(32402, 4410, 11), -- P. Atk. Modifiers
+(32402, 4411, 11), -- M. Atk. Modifiers
+(32402, 4412, 11), -- P. Def. Modifiers
+(32402, 4413, 11), -- M. Def. Modifiers
+(32402, 4414, 2), -- Armor Type
+(32402, 4415, 3), -- Weapon Type
+(32402, 4416, 17), -- Races
 -- 
 (32403, 4045, 1), -- Resist Full Magic Attack
-(32403, 4408, 1), -- HP Increase (1x)
-(32403, 4409, 1), -- MP Increase (1x)
-(32403, 4410, 11), -- Average P. Atk.
-(32403, 4411, 11), -- Average M. Atk.
-(32403, 4412, 11), -- Average P. Def.
-(32403, 4413, 11), -- Average M. Def.
-(32403, 4414, 2), -- Standard Type
-(32403, 4415, 3), -- One-handed Sword
-(32403, 4416, 17), -- Orcs
+(32403, 4408, 1); -- HP Modifiers
+
+INSERT INTO `npcskills` VALUES
+(32403, 4409, 1), -- MP Modifiers
+(32403, 4410, 11), -- P. Atk. Modifiers
+(32403, 4411, 11), -- M. Atk. Modifiers
+(32403, 4412, 11), -- P. Def. Modifiers
+(32403, 4413, 11), -- M. Def. Modifiers
+(32403, 4414, 2), -- Armor Type
+(32403, 4415, 3), -- Weapon Type
+(32403, 4416, 17), -- Races
 -- 
 (32404, 4045, 1), -- Resist Full Magic Attack
-(32404, 4408, 1), -- HP Increase (1x)
-(32404, 4409, 1), -- MP Increase (1x)
-(32404, 4410, 11), -- Average P. Atk.
-(32404, 4411, 11), -- Average M. Atk.
-(32404, 4412, 11), -- Average P. Def.
-(32404, 4413, 11), -- Average M. Def.
-(32404, 4414, 2), -- Standard Type
-(32404, 4415, 3), -- One-handed Sword
-(32404, 4416, 17), -- Orcs
+(32404, 4408, 1), -- HP Modifiers
+(32404, 4409, 1), -- MP Modifiers
+(32404, 4410, 11), -- P. Atk. Modifiers
+(32404, 4411, 11), -- M. Atk. Modifiers
+(32404, 4412, 11), -- P. Def. Modifiers
+(32404, 4413, 11), -- M. Def. Modifiers
+(32404, 4414, 2), -- Armor Type
+(32404, 4415, 3), -- Weapon Type
+(32404, 4416, 17), -- Races
 -- 
 (32405, 4045, 1), -- Resist Full Magic Attack
-(32405, 4408, 1), -- HP Increase (1x)
-(32405, 4409, 1), -- MP Increase (1x)
-(32405, 4410, 11), -- Average P. Atk.
-(32405, 4411, 11), -- Average M. Atk.
-(32405, 4412, 11), -- Average P. Def.
-(32405, 4413, 11), -- Average M. Def.
-(32405, 4414, 2), -- Standard Type
-(32405, 4415, 3), -- One-handed Sword
-(32405, 4416, 14), -- Humans
+(32405, 4408, 1), -- HP Modifiers
+(32405, 4409, 1), -- MP Modifiers
+(32405, 4410, 11), -- P. Atk. Modifiers
+(32405, 4411, 11), -- M. Atk. Modifiers
+(32405, 4412, 11), -- P. Def. Modifiers
+(32405, 4413, 11), -- M. Def. Modifiers
+(32405, 4414, 2), -- Armor Type
+(32405, 4415, 3), -- Weapon Type
+(32405, 4416, 14), -- Races
 -- 
 (32406, 4045, 1), -- Resist Full Magic Attack
-(32406, 4408, 1), -- HP Increase (1x)
-(32406, 4409, 1), -- MP Increase (1x)
-(32406, 4410, 11), -- Average P. Atk.
-(32406, 4411, 11), -- Average M. Atk.
-(32406, 4412, 11), -- Average P. Def.
-(32406, 4413, 11), -- Average M. Def.
-(32406, 4414, 2), -- Standard Type
-(32406, 4415, 3), -- One-handed Sword
-(32406, 4416, 14), -- Humans
+(32406, 4408, 1), -- HP Modifiers
+(32406, 4409, 1), -- MP Modifiers
+(32406, 4410, 11), -- P. Atk. Modifiers
+(32406, 4411, 11), -- M. Atk. Modifiers
+(32406, 4412, 11), -- P. Def. Modifiers
+(32406, 4413, 11), -- M. Def. Modifiers
+(32406, 4414, 2), -- Armor Type
+(32406, 4415, 3), -- Weapon Type
+(32406, 4416, 14), -- Races
 -- 
 (32407, 4045, 1), -- Resist Full Magic Attack
-(32407, 4408, 1), -- HP Increase (1x)
-(32407, 4409, 1), -- MP Increase (1x)
-(32407, 4410, 11), -- Average P. Atk.
-(32407, 4411, 11), -- Average M. Atk.
-(32407, 4412, 11), -- Average P. Def.
-(32407, 4413, 11), -- Average M. Def.
-(32407, 4414, 2), -- Standard Type
-(32407, 4415, 3), -- One-handed Sword
-(32407, 4416, 14), -- Humans
+(32407, 4408, 1), -- HP Modifiers
+(32407, 4409, 1), -- MP Modifiers
+(32407, 4410, 11), -- P. Atk. Modifiers
+(32407, 4411, 11), -- M. Atk. Modifiers
+(32407, 4412, 11), -- P. Def. Modifiers
+(32407, 4413, 11), -- M. Def. Modifiers
+(32407, 4414, 2), -- Armor Type
+(32407, 4415, 3), -- Weapon Type
+(32407, 4416, 14), -- Races
 -- 
 (32408, 4045, 1), -- Resist Full Magic Attack
-(32408, 4408, 1), -- HP Increase (1x)
-(32408, 4409, 1), -- MP Increase (1x)
-(32408, 4410, 11), -- Average P. Atk.
-(32408, 4411, 11), -- Average M. Atk.
-(32408, 4412, 11), -- Average P. Def.
-(32408, 4413, 11), -- Average M. Def.
-(32408, 4414, 2), -- Standard Type
-(32408, 4415, 3), -- One-handed Sword
-(32408, 4416, 14), -- Humans
+(32408, 4408, 1), -- HP Modifiers
+(32408, 4409, 1), -- MP Modifiers
+(32408, 4410, 11), -- P. Atk. Modifiers
+(32408, 4411, 11), -- M. Atk. Modifiers
+(32408, 4412, 11), -- P. Def. Modifiers
+(32408, 4413, 11), -- M. Def. Modifiers
+(32408, 4414, 2), -- Armor Type
+(32408, 4415, 3), -- Weapon Type
+(32408, 4416, 14), -- Races
 -- 
 (32409, 4045, 1), -- Resist Full Magic Attack
-(32409, 4408, 1), -- HP Increase (1x)
-(32409, 4409, 1), -- MP Increase (1x)
-(32409, 4410, 11), -- Average P. Atk.
-(32409, 4411, 11), -- Average M. Atk.
-(32409, 4412, 11), -- Average P. Def.
-(32409, 4413, 11), -- Average M. Def.
-(32409, 4414, 2), -- Standard Type
-(32409, 4415, 3), -- One-handed Sword
-(32409, 4416, 4), -- Animals
+(32409, 4408, 1), -- HP Modifiers
+(32409, 4409, 1), -- MP Modifiers
+(32409, 4410, 11), -- P. Atk. Modifiers
+(32409, 4411, 11), -- M. Atk. Modifiers
+(32409, 4412, 11), -- P. Def. Modifiers
+(32409, 4413, 11), -- M. Def. Modifiers
+(32409, 4414, 2), -- Armor Type
+(32409, 4415, 3), -- Weapon Type
+(32409, 4416, 4), -- Races
 -- 
 (32410, 4045, 1), -- Resist Full Magic Attack
-(32410, 4408, 1), -- HP Increase (1x)
-(32410, 4409, 1), -- MP Increase (1x)
-(32410, 4410, 11), -- Average P. Atk.
-(32410, 4411, 11), -- Average M. Atk.
-(32410, 4412, 11), -- Average P. Def.
-(32410, 4413, 11), -- Average M. Def.
-(32410, 4414, 2), -- Standard Type
-(32410, 4415, 3), -- One-handed Sword
-(32410, 4416, 4), -- Animals
+(32410, 4408, 1), -- HP Modifiers
+(32410, 4409, 1), -- MP Modifiers
+(32410, 4410, 11), -- P. Atk. Modifiers
+(32410, 4411, 11), -- M. Atk. Modifiers
+(32410, 4412, 11), -- P. Def. Modifiers
+(32410, 4413, 11), -- M. Def. Modifiers
+(32410, 4414, 2), -- Armor Type
+(32410, 4415, 3), -- Weapon Type
+(32410, 4416, 4), -- Races
 -- 
 (32411, 4045, 1), -- Resist Full Magic Attack
-(32411, 4408, 1), -- HP Increase (1x)
-(32411, 4409, 1), -- MP Increase (1x)
-(32411, 4410, 11), -- Average P. Atk.
-(32411, 4411, 11), -- Average M. Atk.
-(32411, 4412, 11), -- Average P. Def.
-(32411, 4413, 11), -- Average M. Def.
-(32411, 4414, 2), -- Standard Type
-(32411, 4415, 3), -- One-handed Sword
-(32411, 4416, 4), -- Animals
+(32411, 4408, 1), -- HP Modifiers
+(32411, 4409, 1), -- MP Modifiers
+(32411, 4410, 11), -- P. Atk. Modifiers
+(32411, 4411, 11), -- M. Atk. Modifiers
+(32411, 4412, 11), -- P. Def. Modifiers
+(32411, 4413, 11), -- M. Def. Modifiers
+(32411, 4414, 2), -- Armor Type
+(32411, 4415, 3), -- Weapon Type
+(32411, 4416, 4), -- Races
 -- 
 (32412, 4045, 1), -- Resist Full Magic Attack
-(32412, 4408, 1), -- HP Increase (1x)
-(32412, 4409, 1), -- MP Increase (1x)
-(32412, 4410, 11), -- Average P. Atk.
-(32412, 4411, 11), -- Average M. Atk.
-(32412, 4412, 11), -- Average P. Def.
-(32412, 4413, 11), -- Average M. Def.
-(32412, 4414, 2), -- Standard Type
-(32412, 4415, 3), -- One-handed Sword
-(32412, 4416, 4), -- Animals
+(32412, 4408, 1), -- HP Modifiers
+(32412, 4409, 1), -- MP Modifiers
+(32412, 4410, 11), -- P. Atk. Modifiers
+(32412, 4411, 11), -- M. Atk. Modifiers
+(32412, 4412, 11), -- P. Def. Modifiers
+(32412, 4413, 11), -- M. Def. Modifiers
+(32412, 4414, 2), -- Armor Type
+(32412, 4415, 3), -- Weapon Type
+(32412, 4416, 4), -- Races
 -- 
 (32413, 4045, 1), -- Resist Full Magic Attack
-(32413, 4408, 1), -- HP Increase (1x)
-(32413, 4409, 1), -- MP Increase (1x)
-(32413, 4410, 11), -- Average P. Atk.
-(32413, 4411, 11), -- Average M. Atk.
-(32413, 4412, 11), -- Average P. Def.
-(32413, 4413, 11), -- Average M. Def.
-(32413, 4414, 2), -- Standard Type
-(32413, 4415, 3), -- One-handed Sword
-(32413, 4416, 11), -- Giants
+(32413, 4408, 1), -- HP Modifiers
+(32413, 4409, 1), -- MP Modifiers
+(32413, 4410, 11), -- P. Atk. Modifiers
+(32413, 4411, 11), -- M. Atk. Modifiers
+(32413, 4412, 11), -- P. Def. Modifiers
+(32413, 4413, 11), -- M. Def. Modifiers
+(32413, 4414, 2), -- Armor Type
+(32413, 4415, 3), -- Weapon Type
+(32413, 4416, 11), -- Races
 -- 
 (32414, 4045, 1), -- Resist Full Magic Attack
-(32414, 4408, 1), -- HP Increase (1x)
-(32414, 4409, 1), -- MP Increase (1x)
-(32414, 4410, 11), -- Average P. Atk.
-(32414, 4411, 11), -- Average M. Atk.
-(32414, 4412, 11), -- Average P. Def.
-(32414, 4413, 11), -- Average M. Def.
-(32414, 4414, 2), -- Standard Type
-(32414, 4415, 3), -- One-handed Sword
-(32414, 4416, 6), -- Humanoids
+(32414, 4408, 1), -- HP Modifiers
+(32414, 4409, 1), -- MP Modifiers
+(32414, 4410, 11), -- P. Atk. Modifiers
+(32414, 4411, 11), -- M. Atk. Modifiers
+(32414, 4412, 11), -- P. Def. Modifiers
+(32414, 4413, 11), -- M. Def. Modifiers
+(32414, 4414, 2), -- Armor Type
+(32414, 4415, 3), -- Weapon Type
+(32414, 4416, 6), -- Races
 -- 
 (32415, 4045, 1), -- Resist Full Magic Attack
-(32415, 4408, 1), -- HP Increase (1x)
-(32415, 4409, 1), -- MP Increase (1x)
-(32415, 4410, 11), -- Average P. Atk.
-(32415, 4411, 11), -- Average M. Atk.
-(32415, 4412, 11), -- Average P. Def.
-(32415, 4413, 11), -- Average M. Def.
-(32415, 4414, 2), -- Standard Type
-(32415, 4415, 3), -- One-handed Sword
-(32415, 4416, 6), -- Humanoids
+(32415, 4408, 1), -- HP Modifiers
+(32415, 4409, 1), -- MP Modifiers
+(32415, 4410, 11), -- P. Atk. Modifiers
+(32415, 4411, 11), -- M. Atk. Modifiers
+(32415, 4412, 11), -- P. Def. Modifiers
+(32415, 4413, 11), -- M. Def. Modifiers
+(32415, 4414, 2), -- Armor Type
+(32415, 4415, 3), -- Weapon Type
+(32415, 4416, 6), -- Races
 -- 
 (32416, 4045, 1), -- Resist Full Magic Attack
-(32416, 4408, 1), -- HP Increase (1x)
-(32416, 4409, 1), -- MP Increase (1x)
-(32416, 4410, 11), -- Average P. Atk.
-(32416, 4411, 11), -- Average M. Atk.
-(32416, 4412, 11), -- Average P. Def.
-(32416, 4413, 11), -- Average M. Def.
-(32416, 4414, 2), -- Standard Type
-(32416, 4415, 3), -- One-handed Sword
-(32416, 4416, 7), -- Spirits
+(32416, 4408, 1), -- HP Modifiers
+(32416, 4409, 1), -- MP Modifiers
+(32416, 4410, 11), -- P. Atk. Modifiers
+(32416, 4411, 11), -- M. Atk. Modifiers
+(32416, 4412, 11), -- P. Def. Modifiers
+(32416, 4413, 11), -- M. Def. Modifiers
+(32416, 4414, 2), -- Armor Type
+(32416, 4415, 3), -- Weapon Type
+(32416, 4416, 7), -- Races
 -- 
 (32417, 4045, 1), -- Resist Full Magic Attack
-(32417, 4408, 1), -- HP Increase (1x)
-(32417, 4409, 1), -- MP Increase (1x)
-(32417, 4410, 11), -- Average P. Atk.
-(32417, 4411, 11), -- Average M. Atk.
-(32417, 4412, 11), -- Average P. Def.
-(32417, 4413, 11), -- Average M. Def.
-(32417, 4414, 2), -- Standard Type
-(32417, 4415, 3), -- One-handed Sword
-(32417, 4416, 7), -- Spirits
+(32417, 4408, 1), -- HP Modifiers
+(32417, 4409, 1), -- MP Modifiers
+(32417, 4410, 11), -- P. Atk. Modifiers
+(32417, 4411, 11), -- M. Atk. Modifiers
+(32417, 4412, 11), -- P. Def. Modifiers
+(32417, 4413, 11), -- M. Def. Modifiers
+(32417, 4414, 2), -- Armor Type
+(32417, 4415, 3), -- Weapon Type
+(32417, 4416, 7), -- Races
 -- 
 (32418, 4045, 1), -- Resist Full Magic Attack
-(32418, 4408, 1), -- HP Increase (1x)
-(32418, 4409, 1), -- MP Increase (1x)
-(32418, 4410, 11), -- Average P. Atk.
-(32418, 4411, 11), -- Average M. Atk.
-(32418, 4412, 11), -- Average P. Def.
-(32418, 4413, 11), -- Average M. Def.
-(32418, 4414, 2), -- Standard Type
-(32418, 4415, 3), -- One-handed Sword
-(32418, 4416, 7), -- Spirits
+(32418, 4408, 1), -- HP Modifiers
+(32418, 4409, 1), -- MP Modifiers
+(32418, 4410, 11), -- P. Atk. Modifiers
+(32418, 4411, 11), -- M. Atk. Modifiers
+(32418, 4412, 11), -- P. Def. Modifiers
+(32418, 4413, 11), -- M. Def. Modifiers
+(32418, 4414, 2), -- Armor Type
+(32418, 4415, 3), -- Weapon Type
+(32418, 4416, 7), -- Races
 -- 
 (32419, 4045, 1), -- Resist Full Magic Attack
-(32419, 4408, 1), -- HP Increase (1x)
-(32419, 4409, 1), -- MP Increase (1x)
-(32419, 4410, 11), -- Average P. Atk.
-(32419, 4411, 11), -- Average M. Atk.
-(32419, 4412, 11), -- Average P. Def.
-(32419, 4413, 11), -- Average M. Def.
-(32419, 4414, 2), -- Standard Type
-(32419, 4415, 3), -- One-handed Sword
-(32419, 4416, 7), -- Spirits
+(32419, 4408, 1), -- HP Modifiers
+(32419, 4409, 1), -- MP Modifiers
+(32419, 4410, 11), -- P. Atk. Modifiers
+(32419, 4411, 11), -- M. Atk. Modifiers
+(32419, 4412, 11), -- P. Def. Modifiers
+(32419, 4413, 11), -- M. Def. Modifiers
+(32419, 4414, 2), -- Armor Type
+(32419, 4415, 3), -- Weapon Type
+(32419, 4416, 7), -- Races
 -- 
 (32420, 4045, 1), -- Resist Full Magic Attack
-(32420, 4408, 1), -- HP Increase (1x)
-(32420, 4409, 1), -- MP Increase (1x)
-(32420, 4410, 11), -- Average P. Atk.
-(32420, 4411, 11), -- Average M. Atk.
-(32420, 4412, 11), -- Average P. Def.
-(32420, 4413, 11), -- Average M. Def.
-(32420, 4414, 2), -- Standard Type
-(32420, 4415, 3), -- One-handed Sword
-(32420, 4416, 7), -- Spirits
+(32420, 4408, 1), -- HP Modifiers
+(32420, 4409, 1), -- MP Modifiers
+(32420, 4410, 11), -- P. Atk. Modifiers
+(32420, 4411, 11), -- M. Atk. Modifiers
+(32420, 4412, 11), -- P. Def. Modifiers
+(32420, 4413, 11), -- M. Def. Modifiers
+(32420, 4414, 2), -- Armor Type
+(32420, 4415, 3), -- Weapon Type
+(32420, 4416, 7), -- Races
 -- 
 (32421, 4045, 1), -- Resist Full Magic Attack
-(32421, 4408, 1), -- HP Increase (1x)
-(32421, 4409, 1), -- MP Increase (1x)
-(32421, 4410, 11), -- Average P. Atk.
-(32421, 4411, 11), -- Average M. Atk.
-(32421, 4412, 11), -- Average P. Def.
-(32421, 4413, 11), -- Average M. Def.
-(32421, 4414, 2), -- Standard Type
-(32421, 4415, 3), -- One-handed Sword
-(32421, 4416, 4), -- Animals
+(32421, 4408, 1), -- HP Modifiers
+(32421, 4409, 1), -- MP Modifiers
+(32421, 4410, 11), -- P. Atk. Modifiers
+(32421, 4411, 11), -- M. Atk. Modifiers
+(32421, 4412, 11), -- P. Def. Modifiers
+(32421, 4413, 11), -- M. Def. Modifiers
+(32421, 4414, 2), -- Armor Type
+(32421, 4415, 3), -- Weapon Type
+(32421, 4416, 4), -- Races
 -- 
 (32422, 4045, 1), -- Resist Full Magic Attack
-(32422, 4408, 1), -- HP Increase (1x)
-(32422, 4409, 1), -- MP Increase (1x)
-(32422, 4410, 11), -- Average P. Atk.
-(32422, 4411, 11), -- Average M. Atk.
-(32422, 4412, 11), -- Average P. Def.
-(32422, 4413, 11), -- Average M. Def.
-(32422, 4414, 2), -- Standard Type
-(32422, 4415, 3), -- One-handed Sword
-(32422, 4416, 4), -- Animals
+(32422, 4408, 1), -- HP Modifiers
+(32422, 4409, 1), -- MP Modifiers
+(32422, 4410, 11), -- P. Atk. Modifiers
+(32422, 4411, 11), -- M. Atk. Modifiers
+(32422, 4412, 11), -- P. Def. Modifiers
+(32422, 4413, 11), -- M. Def. Modifiers
+(32422, 4414, 2), -- Armor Type
+(32422, 4415, 3), -- Weapon Type
+(32422, 4416, 4), -- Races
 -- 
 (32423, 4045, 1), -- Resist Full Magic Attack
-(32423, 4408, 1), -- HP Increase (1x)
-(32423, 4409, 1), -- MP Increase (1x)
-(32423, 4410, 11), -- Average P. Atk.
-(32423, 4411, 11), -- Average M. Atk.
-(32423, 4412, 11), -- Average P. Def.
-(32423, 4413, 11), -- Average M. Def.
-(32423, 4414, 2), -- Standard Type
-(32423, 4415, 3), -- One-handed Sword
-(32423, 4416, 4), -- Animals
+(32423, 4408, 1), -- HP Modifiers
+(32423, 4409, 1), -- MP Modifiers
+(32423, 4410, 11), -- P. Atk. Modifiers
+(32423, 4411, 11), -- M. Atk. Modifiers
+(32423, 4412, 11), -- P. Def. Modifiers
+(32423, 4413, 11), -- M. Def. Modifiers
+(32423, 4414, 2), -- Armor Type
+(32423, 4415, 3), -- Weapon Type
+(32423, 4416, 4), -- Races
 -- Show Staff
 (32424, 4045, 1), -- Resist Full Magic Attack
-(32424, 4408, 1), -- HP Increase (1x)
-(32424, 4409, 1), -- MP Increase (1x)
-(32424, 4410, 11), -- Average P. Atk.
-(32424, 4411, 11), -- Average M. Atk.
-(32424, 4412, 11), -- Average P. Def.
-(32424, 4413, 11), -- Average M. Def.
-(32424, 4414, 2), -- Standard Type
-(32424, 4415, 3), -- One-handed Sword
-(32424, 4416, 18), -- Dwarves
+(32424, 4408, 1), -- HP Modifiers
+(32424, 4409, 1), -- MP Modifiers
+(32424, 4410, 11), -- P. Atk. Modifiers
+(32424, 4411, 11), -- M. Atk. Modifiers
+(32424, 4412, 11), -- P. Def. Modifiers
+(32424, 4413, 11), -- M. Def. Modifiers
+(32424, 4414, 2), -- Armor Type
+(32424, 4415, 3), -- Weapon Type
+(32424, 4416, 18), -- Races
 -- Show Staff
 (32425, 4045, 1), -- Resist Full Magic Attack
-(32425, 4408, 1), -- HP Increase (1x)
-(32425, 4409, 1), -- MP Increase (1x)
-(32425, 4410, 11), -- Average P. Atk.
-(32425, 4411, 11), -- Average M. Atk.
-(32425, 4412, 11), -- Average P. Def.
-(32425, 4413, 11), -- Average M. Def.
-(32425, 4414, 2), -- Standard Type
-(32425, 4415, 3), -- One-handed Sword
-(32425, 4416, 18), -- Dwarves
+(32425, 4408, 1), -- HP Modifiers
+(32425, 4409, 1), -- MP Modifiers
+(32425, 4410, 11), -- P. Atk. Modifiers
+(32425, 4411, 11), -- M. Atk. Modifiers
+(32425, 4412, 11), -- P. Def. Modifiers
+(32425, 4413, 11), -- M. Def. Modifiers
+(32425, 4414, 2), -- Armor Type
+(32425, 4415, 3), -- Weapon Type
+(32425, 4416, 18), -- Races
 -- Show Staff
 (32426, 4045, 1), -- Resist Full Magic Attack
-(32426, 4408, 1), -- HP Increase (1x)
-(32426, 4409, 1), -- MP Increase (1x)
-(32426, 4410, 11), -- Average P. Atk.
-(32426, 4411, 11), -- Average M. Atk.
-(32426, 4412, 11), -- Average P. Def.
-(32426, 4413, 11), -- Average M. Def.
-(32426, 4414, 2), -- Standard Type
-(32426, 4415, 3), -- One-handed Sword
-(32426, 4416, 18), -- Dwarves
+(32426, 4408, 1), -- HP Modifiers
+(32426, 4409, 1), -- MP Modifiers
+(32426, 4410, 11), -- P. Atk. Modifiers
+(32426, 4411, 11), -- M. Atk. Modifiers
+(32426, 4412, 11), -- P. Def. Modifiers
+(32426, 4413, 11), -- M. Def. Modifiers
+(32426, 4414, 2), -- Armor Type
+(32426, 4415, 3), -- Weapon Type
+(32426, 4416, 18), -- Races
 -- Show Staff
 (32427, 4045, 1), -- Resist Full Magic Attack
-(32427, 4408, 1), -- HP Increase (1x)
-(32427, 4409, 1), -- MP Increase (1x)
-(32427, 4410, 11), -- Average P. Atk.
-(32427, 4411, 11), -- Average M. Atk.
-(32427, 4412, 11), -- Average P. Def.
-(32427, 4413, 11), -- Average M. Def.
-(32427, 4414, 2), -- Standard Type
-(32427, 4415, 3), -- One-handed Sword
-(32427, 4416, 18), -- Dwarves
+(32427, 4408, 1), -- HP Modifiers
+(32427, 4409, 1), -- MP Modifiers
+(32427, 4410, 11), -- P. Atk. Modifiers
+(32427, 4411, 11), -- M. Atk. Modifiers
+(32427, 4412, 11), -- P. Def. Modifiers
+(32427, 4413, 11), -- M. Def. Modifiers
+(32427, 4414, 2), -- Armor Type
+(32427, 4415, 3), -- Weapon Type
+(32427, 4416, 18), -- Races
 -- Show Staff
 (32428, 4045, 1), -- Resist Full Magic Attack
-(32428, 4408, 1), -- HP Increase (1x)
-(32428, 4409, 1), -- MP Increase (1x)
-(32428, 4410, 11), -- Average P. Atk.
-(32428, 4411, 11), -- Average M. Atk.
-(32428, 4412, 11), -- Average P. Def.
-(32428, 4413, 11), -- Average M. Def.
-(32428, 4414, 2), -- Standard Type
-(32428, 4415, 3), -- One-handed Sword
-(32428, 4416, 18), -- Dwarves
+(32428, 4408, 1), -- HP Modifiers
+(32428, 4409, 1), -- MP Modifiers
+(32428, 4410, 11), -- P. Atk. Modifiers
+(32428, 4411, 11), -- M. Atk. Modifiers
+(32428, 4412, 11), -- P. Def. Modifiers
+(32428, 4413, 11), -- M. Def. Modifiers
+(32428, 4414, 2), -- Armor Type
+(32428, 4415, 3), -- Weapon Type
+(32428, 4416, 18), -- Races
 -- 
 (32429, 4045, 1), -- Resist Full Magic Attack
-(32429, 4408, 1), -- HP Increase (1x)
-(32429, 4409, 1), -- MP Increase (1x)
-(32429, 4410, 11), -- Average P. Atk.
-(32429, 4411, 11), -- Average M. Atk.
-(32429, 4412, 11), -- Average P. Def.
-(32429, 4413, 11), -- Average M. Def.
-(32429, 4414, 2), -- Standard Type
-(32429, 4415, 3), -- One-handed Sword
-(32429, 4416, 6), -- Humanoids
+(32429, 4408, 1), -- HP Modifiers
+(32429, 4409, 1), -- MP Modifiers
+(32429, 4410, 11), -- P. Atk. Modifiers
+(32429, 4411, 11), -- M. Atk. Modifiers
+(32429, 4412, 11), -- P. Def. Modifiers
+(32429, 4413, 11), -- M. Def. Modifiers
+(32429, 4414, 2), -- Armor Type
+(32429, 4415, 3), -- Weapon Type
+(32429, 4416, 6), -- Races
 -- 
 (32430, 4045, 1), -- Resist Full Magic Attack
-(32430, 4408, 1), -- HP Increase (1x)
-(32430, 4409, 1), -- MP Increase (1x)
-(32430, 4410, 11), -- Average P. Atk.
-(32430, 4411, 11), -- Average M. Atk.
-(32430, 4412, 11), -- Average P. Def.
-(32430, 4413, 11), -- Average M. Def.
-(32430, 4414, 2), -- Standard Type
-(32430, 4415, 3), -- One-handed Sword
-(32430, 4416, 18), -- Dwarves
+(32430, 4408, 1), -- HP Modifiers
+(32430, 4409, 1), -- MP Modifiers
+(32430, 4410, 11), -- P. Atk. Modifiers
+(32430, 4411, 11), -- M. Atk. Modifiers
+(32430, 4412, 11), -- P. Def. Modifiers
+(32430, 4413, 11), -- M. Def. Modifiers
+(32430, 4414, 2), -- Armor Type
+(32430, 4415, 3), -- Weapon Type
+(32430, 4416, 18), -- Races
 -- Leyla Mira
 (32431, 4045, 1), -- Resist Full Magic Attack
-(32431, 4408, 1), -- HP Increase (1x)
-(32431, 4409, 1), -- MP Increase (1x)
-(32431, 4410, 11), -- Average P. Atk.
-(32431, 4411, 11), -- Average M. Atk.
-(32431, 4412, 11), -- Average P. Def.
-(32431, 4413, 11), -- Average M. Def.
-(32431, 4414, 2), -- Standard Type
-(32431, 4415, 3), -- One-handed Sword
-(32431, 4416, 15), -- Elves
+(32431, 4408, 1), -- HP Modifiers
+(32431, 4409, 1), -- MP Modifiers
+(32431, 4410, 11), -- P. Atk. Modifiers
+(32431, 4411, 11), -- M. Atk. Modifiers
+(32431, 4412, 11), -- P. Def. Modifiers
+(32431, 4413, 11), -- M. Def. Modifiers
+(32431, 4414, 2), -- Armor Type
+(32431, 4415, 3), -- Weapon Type
+(32431, 4416, 15), -- Races
 -- 
 (32432, 4045, 1), -- Resist Full Magic Attack
-(32432, 4408, 1), -- HP Increase (1x)
-(32432, 4409, 1), -- MP Increase (1x)
-(32432, 4410, 11), -- Average P. Atk.
-(32432, 4411, 11), -- Average M. Atk.
-(32432, 4412, 11), -- Average P. Def.
-(32432, 4413, 11), -- Average M. Def.
-(32432, 4414, 2), -- Standard Type
-(32432, 4415, 3), -- One-handed Sword
-(32432, 4416, 15), -- Elves
+(32432, 4408, 1), -- HP Modifiers
+(32432, 4409, 1), -- MP Modifiers
+(32432, 4410, 11), -- P. Atk. Modifiers
+(32432, 4411, 11), -- M. Atk. Modifiers
+(32432, 4412, 11), -- P. Def. Modifiers
+(32432, 4413, 11), -- M. Def. Modifiers
+(32432, 4414, 2), -- Armor Type
+(32432, 4415, 3), -- Weapon Type
+(32432, 4416, 15), -- Races
 -- MC
 (32433, 4045, 1), -- Resist Full Magic Attack
-(32433, 4408, 1), -- HP Increase (1x)
-(32433, 4409, 1), -- MP Increase (1x)
-(32433, 4410, 11), -- Average P. Atk.
-(32433, 4411, 11), -- Average M. Atk.
-(32433, 4412, 11), -- Average P. Def.
-(32433, 4413, 11), -- Average M. Def.
-(32433, 4414, 2), -- Standard Type
-(32433, 4415, 3), -- One-handed Sword
-(32433, 4416, 14), -- Humans
+(32433, 4408, 1), -- HP Modifiers
+(32433, 4409, 1), -- MP Modifiers
+(32433, 4410, 11), -- P. Atk. Modifiers
+(32433, 4411, 11), -- M. Atk. Modifiers
+(32433, 4412, 11), -- P. Def. Modifiers
+(32433, 4413, 11), -- M. Def. Modifiers
+(32433, 4414, 2), -- Armor Type
+(32433, 4415, 3), -- Weapon Type
+(32433, 4416, 14), -- Races
 -- 
 (32437, 4045, 1), -- Resist Full Magic Attack
-(32437, 4390, 1), -- Mystic Immunity
-(32437, 4408, 1), -- HP Increase (1x)
-(32437, 4409, 1), -- MP Increase (1x)
-(32437, 4410, 11), -- Average P. Atk.
-(32437, 4411, 11), -- Average M. Atk.
-(32437, 4412, 11), -- Average P. Def.
-(32437, 4413, 11), -- Average M. Def.
-(32437, 4414, 2), -- Standard Type
-(32437, 4415, 3), -- One-handed Sword
-(32437, 4416, 2), -- Magic Creatures
+(32437, 4390, 1), -- NPC Abnormal Immunity
+(32437, 4408, 1), -- HP Modifiers
+(32437, 4409, 1), -- MP Modifiers
+(32437, 4410, 11), -- P. Atk. Modifiers
+(32437, 4411, 11), -- M. Atk. Modifiers
+(32437, 4412, 11), -- P. Def. Modifiers
+(32437, 4413, 11), -- M. Def. Modifiers
+(32437, 4414, 2), -- Armor Type
+(32437, 4415, 3), -- Weapon Type
+(32437, 4416, 2), -- Races
 -- 
 (32438, 4045, 1), -- Resist Full Magic Attack
-(32438, 4390, 1), -- Mystic Immunity
-(32438, 4408, 1), -- HP Increase (1x)
-(32438, 4409, 1), -- MP Increase (1x)
-(32438, 4410, 11), -- Average P. Atk.
-(32438, 4411, 11), -- Average M. Atk.
-(32438, 4412, 11), -- Average P. Def.
-(32438, 4413, 11), -- Average M. Def.
-(32438, 4414, 2), -- Standard Type
-(32438, 4415, 3), -- One-handed Sword
-(32438, 4416, 2), -- Magic Creatures
+(32438, 4390, 1), -- NPC Abnormal Immunity
+(32438, 4408, 1), -- HP Modifiers
+(32438, 4409, 1), -- MP Modifiers
+(32438, 4410, 11), -- P. Atk. Modifiers
+(32438, 4411, 11), -- M. Atk. Modifiers
+(32438, 4412, 11), -- P. Def. Modifiers
+(32438, 4413, 11), -- M. Def. Modifiers
+(32438, 4414, 2), -- Armor Type
+(32438, 4415, 3), -- Weapon Type
+(32438, 4416, 2), -- Races
 -- Backflip Expert
 (32439, 4045, 1), -- Resist Full Magic Attack
-(32439, 4408, 1), -- HP Increase (1x)
-(32439, 4409, 1), -- MP Increase (1x)
-(32439, 4410, 11), -- Average P. Atk.
-(32439, 4411, 11), -- Average M. Atk.
-(32439, 4412, 11), -- Average P. Def.
-(32439, 4413, 11), -- Average M. Def.
-(32439, 4414, 2), -- Standard Type
-(32439, 4415, 3), -- One-handed Sword
-(32439, 4416, 12), -- Bugs
+(32439, 4408, 1), -- HP Modifiers
+(32439, 4409, 1), -- MP Modifiers
+(32439, 4410, 11), -- P. Atk. Modifiers
+(32439, 4411, 11), -- M. Atk. Modifiers
+(32439, 4412, 11), -- P. Def. Modifiers
+(32439, 4413, 11), -- M. Def. Modifiers
+(32439, 4414, 2), -- Armor Type
+(32439, 4415, 3), -- Weapon Type
+(32439, 4416, 12), -- Races
 -- Backflip Originator
 (32440, 4045, 1), -- Resist Full Magic Attack
-(32440, 4408, 1), -- HP Increase (1x)
-(32440, 4409, 1), -- MP Increase (1x)
-(32440, 4410, 11), -- Average P. Atk.
-(32440, 4411, 11), -- Average M. Atk.
-(32440, 4412, 11), -- Average P. Def.
-(32440, 4413, 11), -- Average M. Def.
-(32440, 4414, 2), -- Standard Type
-(32440, 4415, 3), -- One-handed Sword
-(32440, 4416, 3), -- Beasts
+(32440, 4408, 1), -- HP Modifiers
+(32440, 4409, 1), -- MP Modifiers
+(32440, 4410, 11), -- P. Atk. Modifiers
+(32440, 4411, 11), -- M. Atk. Modifiers
+(32440, 4412, 11), -- P. Def. Modifiers
+(32440, 4413, 11), -- M. Def. Modifiers
+(32440, 4414, 2), -- Armor Type
+(32440, 4415, 3), -- Weapon Type
+(32440, 4416, 3), -- Races
 -- Backflip Superman
 (32441, 4045, 1), -- Resist Full Magic Attack
-(32441, 4408, 1), -- HP Increase (1x)
-(32441, 4409, 1), -- MP Increase (1x)
-(32441, 4410, 11), -- Average P. Atk.
-(32441, 4411, 11), -- Average M. Atk.
-(32441, 4412, 11), -- Average P. Def.
-(32441, 4413, 11), -- Average M. Def.
-(32441, 4414, 2), -- Standard Type
-(32441, 4415, 3), -- One-handed Sword
-(32441, 4416, 9), -- Demons
+(32441, 4408, 1), -- HP Modifiers
+(32441, 4409, 1), -- MP Modifiers
+(32441, 4410, 11), -- P. Atk. Modifiers
+(32441, 4411, 11), -- M. Atk. Modifiers
+(32441, 4412, 11), -- P. Def. Modifiers
+(32441, 4413, 11), -- M. Def. Modifiers
+(32441, 4414, 2), -- Armor Type
+(32441, 4415, 3), -- Weapon Type
+(32441, 4416, 9), -- Races
 -- 
 (32442, 4045, 1), -- Resist Full Magic Attack
-(32442, 4408, 1), -- HP Increase (1x)
-(32442, 4409, 1); -- MP Increase (1x)
-
-INSERT INTO `npcskills` VALUES
-(32442, 4410, 11), -- Average P. Atk.
-(32442, 4411, 11), -- Average M. Atk.
-(32442, 4412, 11), -- Average P. Def.
-(32442, 4413, 11), -- Average M. Def.
-(32442, 4414, 2), -- Standard Type
-(32442, 4415, 3), -- One-handed Sword
-(32442, 4416, 6), -- Humanoids
+(32442, 4408, 1), -- HP Modifiers
+(32442, 4409, 1), -- MP Modifiers
+(32442, 4410, 11), -- P. Atk. Modifiers
+(32442, 4411, 11), -- M. Atk. Modifiers
+(32442, 4412, 11), -- P. Def. Modifiers
+(32442, 4413, 11), -- M. Def. Modifiers
+(32442, 4414, 2), -- Armor Type
+(32442, 4415, 3), -- Weapon Type
+(32442, 4416, 6), -- Races
 -- 
 (32443, 4045, 1), -- Resist Full Magic Attack
-(32443, 4408, 1), -- HP Increase (1x)
-(32443, 4409, 1), -- MP Increase (1x)
-(32443, 4410, 11), -- Average P. Atk.
-(32443, 4411, 11), -- Average M. Atk.
-(32443, 4412, 11), -- Average P. Def.
-(32443, 4413, 11), -- Average M. Def.
-(32443, 4414, 2), -- Standard Type
-(32443, 4415, 3), -- One-handed Sword
-(32443, 4416, 6), -- Humanoids
+(32443, 4408, 1), -- HP Modifiers
+(32443, 4409, 1), -- MP Modifiers
+(32443, 4410, 11), -- P. Atk. Modifiers
+(32443, 4411, 11), -- M. Atk. Modifiers
+(32443, 4412, 11), -- P. Def. Modifiers
+(32443, 4413, 11), -- M. Def. Modifiers
+(32443, 4414, 2), -- Armor Type
+(32443, 4415, 3), -- Weapon Type
+(32443, 4416, 6), -- Races
 -- 
 (32444, 4045, 1), -- Resist Full Magic Attack
-(32444, 4408, 1), -- HP Increase (1x)
-(32444, 4409, 1), -- MP Increase (1x)
-(32444, 4410, 11), -- Average P. Atk.
-(32444, 4411, 11), -- Average M. Atk.
-(32444, 4412, 11), -- Average P. Def.
-(32444, 4413, 11), -- Average M. Def.
-(32444, 4414, 2), -- Standard Type
-(32444, 4415, 3), -- One-handed Sword
-(32444, 4416, 6), -- Humanoids
+(32444, 4408, 1), -- HP Modifiers
+(32444, 4409, 1), -- MP Modifiers
+(32444, 4410, 11), -- P. Atk. Modifiers
+(32444, 4411, 11), -- M. Atk. Modifiers
+(32444, 4412, 11), -- P. Def. Modifiers
+(32444, 4413, 11), -- M. Def. Modifiers
+(32444, 4414, 2), -- Armor Type
+(32444, 4415, 3), -- Weapon Type
+(32444, 4416, 6), -- Races
 -- 
 (32445, 4045, 1), -- Resist Full Magic Attack
-(32445, 4408, 1), -- HP Increase (1x)
-(32445, 4409, 1), -- MP Increase (1x)
-(32445, 4410, 11), -- Average P. Atk.
-(32445, 4411, 11), -- Average M. Atk.
-(32445, 4412, 11), -- Average P. Def.
-(32445, 4413, 11), -- Average M. Def.
-(32445, 4414, 2), -- Standard Type
-(32445, 4415, 3), -- One-handed Sword
-(32445, 4416, 6), -- Humanoids
+(32445, 4408, 1), -- HP Modifiers
+(32445, 4409, 1), -- MP Modifiers
+(32445, 4410, 11), -- P. Atk. Modifiers
+(32445, 4411, 11), -- M. Atk. Modifiers
+(32445, 4412, 11), -- P. Def. Modifiers
+(32445, 4413, 11), -- M. Def. Modifiers
+(32445, 4414, 2), -- Armor Type
+(32445, 4415, 3), -- Weapon Type
+(32445, 4416, 6), -- Races
 -- 
 (32446, 4045, 1), -- Resist Full Magic Attack
-(32446, 4408, 1), -- HP Increase (1x)
-(32446, 4409, 1), -- MP Increase (1x)
-(32446, 4410, 11), -- Average P. Atk.
-(32446, 4411, 11), -- Average M. Atk.
-(32446, 4412, 11), -- Average P. Def.
-(32446, 4413, 11), -- Average M. Def.
-(32446, 4414, 2), -- Standard Type
-(32446, 4415, 3), -- One-handed Sword
-(32446, 4416, 6), -- Humanoids
+(32446, 4408, 1), -- HP Modifiers
+(32446, 4409, 1), -- MP Modifiers
+(32446, 4410, 11), -- P. Atk. Modifiers
+(32446, 4411, 11), -- M. Atk. Modifiers
+(32446, 4412, 11), -- P. Def. Modifiers
+(32446, 4413, 11), -- M. Def. Modifiers
+(32446, 4414, 2), -- Armor Type
+(32446, 4415, 3), -- Weapon Type
+(32446, 4416, 6), -- Races
 -- 
 (32447, 4045, 1), -- Resist Full Magic Attack
-(32447, 4408, 1), -- HP Increase (1x)
-(32447, 4409, 1), -- MP Increase (1x)
-(32447, 4410, 11), -- Average P. Atk.
-(32447, 4411, 11), -- Average M. Atk.
-(32447, 4412, 11), -- Average P. Def.
-(32447, 4413, 11), -- Average M. Def.
-(32447, 4414, 2), -- Standard Type
-(32447, 4415, 3), -- One-handed Sword
-(32447, 4416, 3), -- Beasts
+(32447, 4408, 1), -- HP Modifiers
+(32447, 4409, 1), -- MP Modifiers
+(32447, 4410, 11), -- P. Atk. Modifiers
+(32447, 4411, 11), -- M. Atk. Modifiers
+(32447, 4412, 11), -- P. Def. Modifiers
+(32447, 4413, 11), -- M. Def. Modifiers
+(32447, 4414, 2), -- Armor Type
+(32447, 4415, 3), -- Weapon Type
+(32447, 4416, 3), -- Races
 -- 
 (32448, 4045, 1), -- Resist Full Magic Attack
-(32448, 4408, 1), -- HP Increase (1x)
-(32448, 4409, 1), -- MP Increase (1x)
-(32448, 4410, 11), -- Average P. Atk.
-(32448, 4411, 11), -- Average M. Atk.
-(32448, 4412, 11), -- Average P. Def.
-(32448, 4413, 11), -- Average M. Def.
-(32448, 4414, 2), -- Standard Type
-(32448, 4415, 3), -- One-handed Sword
-(32448, 4416, 9), -- Demons
+(32448, 4408, 1), -- HP Modifiers
+(32448, 4409, 1), -- MP Modifiers
+(32448, 4410, 11), -- P. Atk. Modifiers
+(32448, 4411, 11), -- M. Atk. Modifiers
+(32448, 4412, 11), -- P. Def. Modifiers
+(32448, 4413, 11), -- M. Def. Modifiers
+(32448, 4414, 2), -- Armor Type
+(32448, 4415, 3), -- Weapon Type
+(32448, 4416, 9), -- Races
 -- 
 (32449, 4045, 1), -- Resist Full Magic Attack
-(32449, 4408, 1), -- HP Increase (1x)
-(32449, 4409, 1), -- MP Increase (1x)
-(32449, 4410, 11), -- Average P. Atk.
-(32449, 4411, 11), -- Average M. Atk.
-(32449, 4412, 11), -- Average P. Def.
-(32449, 4413, 11), -- Average M. Def.
-(32449, 4414, 2), -- Standard Type
-(32449, 4415, 3), -- One-handed Sword
-(32449, 4416, 9), -- Demons
+(32449, 4408, 1), -- HP Modifiers
+(32449, 4409, 1), -- MP Modifiers
+(32449, 4410, 11), -- P. Atk. Modifiers
+(32449, 4411, 11), -- M. Atk. Modifiers
+(32449, 4412, 11), -- P. Def. Modifiers
+(32449, 4413, 11), -- M. Def. Modifiers
+(32449, 4414, 2), -- Armor Type
+(32449, 4415, 3), -- Weapon Type
+(32449, 4416, 9), -- Races
 -- 
 (32450, 4045, 1), -- Resist Full Magic Attack
-(32450, 4408, 1), -- HP Increase (1x)
-(32450, 4409, 1), -- MP Increase (1x)
-(32450, 4410, 11), -- Average P. Atk.
-(32450, 4411, 11), -- Average M. Atk.
-(32450, 4412, 11), -- Average P. Def.
-(32450, 4413, 11), -- Average M. Def.
-(32450, 4414, 2), -- Standard Type
-(32450, 4415, 3), -- One-handed Sword
-(32450, 4416, 9), -- Demons
+(32450, 4408, 1), -- HP Modifiers
+(32450, 4409, 1), -- MP Modifiers
+(32450, 4410, 11), -- P. Atk. Modifiers
+(32450, 4411, 11), -- M. Atk. Modifiers
+(32450, 4412, 11), -- P. Def. Modifiers
+(32450, 4413, 11), -- M. Def. Modifiers
+(32450, 4414, 2), -- Armor Type
+(32450, 4415, 3), -- Weapon Type
+(32450, 4416, 9), -- Races
 -- 
 (32451, 4045, 1), -- Resist Full Magic Attack
-(32451, 4408, 1), -- HP Increase (1x)
-(32451, 4409, 1), -- MP Increase (1x)
-(32451, 4410, 11), -- Average P. Atk.
-(32451, 4411, 11), -- Average M. Atk.
-(32451, 4412, 11), -- Average P. Def.
-(32451, 4413, 11), -- Average M. Def.
-(32451, 4414, 2), -- Standard Type
-(32451, 4415, 3), -- One-handed Sword
-(32451, 4416, 3), -- Beasts
+(32451, 4408, 1), -- HP Modifiers
+(32451, 4409, 1), -- MP Modifiers
+(32451, 4410, 11), -- P. Atk. Modifiers
+(32451, 4411, 11), -- M. Atk. Modifiers
+(32451, 4412, 11), -- P. Def. Modifiers
+(32451, 4413, 11), -- M. Def. Modifiers
+(32451, 4414, 2), -- Armor Type
+(32451, 4415, 3), -- Weapon Type
+(32451, 4416, 3), -- Races
 -- 
 (32452, 4045, 1), -- Resist Full Magic Attack
-(32452, 4408, 1), -- HP Increase (1x)
-(32452, 4409, 1), -- MP Increase (1x)
-(32452, 4410, 11), -- Average P. Atk.
-(32452, 4411, 11), -- Average M. Atk.
-(32452, 4412, 11), -- Average P. Def.
-(32452, 4413, 11), -- Average M. Def.
-(32452, 4414, 2), -- Standard Type
-(32452, 4415, 3), -- One-handed Sword
-(32452, 4416, 9), -- Demons
+(32452, 4408, 1), -- HP Modifiers
+(32452, 4409, 1), -- MP Modifiers
+(32452, 4410, 11), -- P. Atk. Modifiers
+(32452, 4411, 11), -- M. Atk. Modifiers
+(32452, 4412, 11), -- P. Def. Modifiers
+(32452, 4413, 11), -- M. Def. Modifiers
+(32452, 4414, 2), -- Armor Type
+(32452, 4415, 3), -- Weapon Type
+(32452, 4416, 9), -- Races
 -- 
 (32453, 4045, 1), -- Resist Full Magic Attack
-(32453, 4408, 1), -- HP Increase (1x)
-(32453, 4409, 1), -- MP Increase (1x)
-(32453, 4410, 11), -- Average P. Atk.
-(32453, 4411, 11), -- Average M. Atk.
-(32453, 4412, 11), -- Average P. Def.
-(32453, 4413, 11), -- Average M. Def.
-(32453, 4414, 2), -- Standard Type
-(32453, 4415, 3), -- One-handed Sword
-(32453, 4416, 9), -- Demons
+(32453, 4408, 1), -- HP Modifiers
+(32453, 4409, 1), -- MP Modifiers
+(32453, 4410, 11), -- P. Atk. Modifiers
+(32453, 4411, 11), -- M. Atk. Modifiers
+(32453, 4412, 11), -- P. Def. Modifiers
+(32453, 4413, 11), -- M. Def. Modifiers
+(32453, 4414, 2), -- Armor Type
+(32453, 4415, 3), -- Weapon Type
+(32453, 4416, 9), -- Races
 -- 
 (32454, 4045, 1), -- Resist Full Magic Attack
-(32454, 4408, 1), -- HP Increase (1x)
-(32454, 4409, 1), -- MP Increase (1x)
-(32454, 4410, 11), -- Average P. Atk.
-(32454, 4411, 11), -- Average M. Atk.
-(32454, 4412, 11), -- Average P. Def.
-(32454, 4413, 11), -- Average M. Def.
-(32454, 4414, 2), -- Standard Type
-(32454, 4415, 3), -- One-handed Sword
-(32454, 4416, 9), -- Demons
+(32454, 4408, 1), -- HP Modifiers
+(32454, 4409, 1), -- MP Modifiers
+(32454, 4410, 11), -- P. Atk. Modifiers
+(32454, 4411, 11), -- M. Atk. Modifiers
+(32454, 4412, 11), -- P. Def. Modifiers
+(32454, 4413, 11), -- M. Def. Modifiers
+(32454, 4414, 2), -- Armor Type
+(32454, 4415, 3), -- Weapon Type
+(32454, 4416, 9), -- Races
 -- 
 (32455, 4045, 1), -- Resist Full Magic Attack
-(32455, 4408, 1), -- HP Increase (1x)
-(32455, 4409, 1), -- MP Increase (1x)
-(32455, 4410, 11), -- Average P. Atk.
-(32455, 4411, 11), -- Average M. Atk.
-(32455, 4412, 11), -- Average P. Def.
-(32455, 4413, 11), -- Average M. Def.
-(32455, 4414, 2), -- Standard Type
-(32455, 4415, 3), -- One-handed Sword
-(32455, 4416, 7), -- Spirits
+(32455, 4408, 1), -- HP Modifiers
+(32455, 4409, 1), -- MP Modifiers
+(32455, 4410, 11), -- P. Atk. Modifiers
+(32455, 4411, 11), -- M. Atk. Modifiers
+(32455, 4412, 11), -- P. Def. Modifiers
+(32455, 4413, 11), -- M. Def. Modifiers
+(32455, 4414, 2), -- Armor Type
+(32455, 4415, 3), -- Weapon Type
+(32455, 4416, 7), -- Races
 -- 
 (32456, 4045, 1), -- Resist Full Magic Attack
-(32456, 4408, 1), -- HP Increase (1x)
-(32456, 4409, 1), -- MP Increase (1x)
-(32456, 4410, 11), -- Average P. Atk.
-(32456, 4411, 11), -- Average M. Atk.
-(32456, 4412, 11), -- Average P. Def.
-(32456, 4413, 11), -- Average M. Def.
-(32456, 4414, 2), -- Standard Type
-(32456, 4415, 3), -- One-handed Sword
-(32456, 4416, 9), -- Demons
+(32456, 4408, 1), -- HP Modifiers
+(32456, 4409, 1), -- MP Modifiers
+(32456, 4410, 11), -- P. Atk. Modifiers
+(32456, 4411, 11), -- M. Atk. Modifiers
+(32456, 4412, 11), -- P. Def. Modifiers
+(32456, 4413, 11), -- M. Def. Modifiers
+(32456, 4414, 2), -- Armor Type
+(32456, 4415, 3), -- Weapon Type
+(32456, 4416, 9), -- Races
 -- 
 (32457, 4045, 1), -- Resist Full Magic Attack
-(32457, 4390, 1), -- Mystic Immunity
-(32457, 4408, 1), -- HP Increase (1x)
-(32457, 4409, 1), -- MP Increase (1x)
-(32457, 4410, 11), -- Average P. Atk.
-(32457, 4411, 11), -- Average M. Atk.
-(32457, 4412, 11), -- Average P. Def.
-(32457, 4413, 11), -- Average M. Def.
-(32457, 4414, 2), -- Standard Type
-(32457, 4415, 3), -- One-handed Sword
-(32457, 4416, 2), -- Magic Creatures
+(32457, 4390, 1), -- NPC Abnormal Immunity
+(32457, 4408, 1), -- HP Modifiers
+(32457, 4409, 1), -- MP Modifiers
+(32457, 4410, 11), -- P. Atk. Modifiers
+(32457, 4411, 11), -- M. Atk. Modifiers
+(32457, 4412, 11), -- P. Def. Modifiers
+(32457, 4413, 11), -- M. Def. Modifiers
+(32457, 4414, 2), -- Armor Type
+(32457, 4415, 3), -- Weapon Type
+(32457, 4416, 2), -- Races
 -- 
 (32458, 4045, 1), -- Resist Full Magic Attack
-(32458, 4390, 1), -- Mystic Immunity
-(32458, 4408, 1), -- HP Increase (1x)
-(32458, 4409, 1), -- MP Increase (1x)
-(32458, 4410, 11), -- Average P. Atk.
-(32458, 4411, 11), -- Average M. Atk.
-(32458, 4412, 11), -- Average P. Def.
-(32458, 4413, 11), -- Average M. Def.
-(32458, 4414, 2), -- Standard Type
-(32458, 4415, 3), -- One-handed Sword
-(32458, 4416, 2), -- Magic Creatures
+(32458, 4390, 1), -- NPC Abnormal Immunity
+(32458, 4408, 1), -- HP Modifiers
+(32458, 4409, 1), -- MP Modifiers
+(32458, 4410, 11), -- P. Atk. Modifiers
+(32458, 4411, 11), -- M. Atk. Modifiers
+(32458, 4412, 11), -- P. Def. Modifiers
+(32458, 4413, 11), -- M. Def. Modifiers
+(32458, 4414, 2), -- Armor Type
+(32458, 4415, 3), -- Weapon Type
+(32458, 4416, 2), -- Races
 -- 
 (32464, 4045, 1), -- Resist Full Magic Attack
-(32464, 4390, 1), -- Mystic Immunity
-(32464, 4408, 1), -- HP Increase (1x)
-(32464, 4409, 1), -- MP Increase (1x)
-(32464, 4410, 11), -- Average P. Atk.
-(32464, 4411, 11), -- Average M. Atk.
-(32464, 4412, 11), -- Average P. Def.
-(32464, 4413, 11), -- Average M. Def.
-(32464, 4414, 2), -- Standard Type
-(32464, 4415, 3), -- One-handed Sword
-(32464, 4416, 2), -- Magic Creatures
+(32464, 4390, 1), -- NPC Abnormal Immunity
+(32464, 4408, 1), -- HP Modifiers
+(32464, 4409, 1), -- MP Modifiers
+(32464, 4410, 11), -- P. Atk. Modifiers
+(32464, 4411, 11), -- M. Atk. Modifiers
+(32464, 4412, 11), -- P. Def. Modifiers
+(32464, 4413, 11), -- M. Def. Modifiers
+(32464, 4414, 2), -- Armor Type
+(32464, 4415, 3), -- Weapon Type
+(32464, 4416, 2), -- Races
 -- 
 (32465, 4045, 1), -- Resist Full Magic Attack
-(32465, 4390, 1), -- Mystic Immunity
-(32465, 4408, 1), -- HP Increase (1x)
-(32465, 4409, 1), -- MP Increase (1x)
-(32465, 4410, 11), -- Average P. Atk.
-(32465, 4411, 11), -- Average M. Atk.
-(32465, 4412, 11), -- Average P. Def.
-(32465, 4413, 11), -- Average M. Def.
-(32465, 4414, 2), -- Standard Type
-(32465, 4415, 3), -- One-handed Sword
-(32465, 4416, 2), -- Magic Creatures
+(32465, 4390, 1), -- NPC Abnormal Immunity
+(32465, 4408, 1), -- HP Modifiers
+(32465, 4409, 1), -- MP Modifiers
+(32465, 4410, 11), -- P. Atk. Modifiers
+(32465, 4411, 11), -- M. Atk. Modifiers
+(32465, 4412, 11), -- P. Def. Modifiers
+(32465, 4413, 11), -- M. Def. Modifiers
+(32465, 4414, 2), -- Armor Type
+(32465, 4415, 3), -- Weapon Type
+(32465, 4416, 2), -- Races
 -- 
 (32466, 4045, 1), -- Resist Full Magic Attack
-(32466, 4390, 1), -- Mystic Immunity
-(32466, 4408, 1), -- HP Increase (1x)
-(32466, 4409, 1), -- MP Increase (1x)
-(32466, 4410, 11), -- Average P. Atk.
-(32466, 4411, 11), -- Average M. Atk.
-(32466, 4412, 11), -- Average P. Def.
-(32466, 4413, 11), -- Average M. Def.
-(32466, 4414, 2), -- Standard Type
-(32466, 4415, 3), -- One-handed Sword
-(32466, 4416, 2), -- Magic Creatures
+(32466, 4390, 1), -- NPC Abnormal Immunity
+(32466, 4408, 1), -- HP Modifiers
+(32466, 4409, 1), -- MP Modifiers
+(32466, 4410, 11), -- P. Atk. Modifiers
+(32466, 4411, 11), -- M. Atk. Modifiers
+(32466, 4412, 11), -- P. Def. Modifiers
+(32466, 4413, 11), -- M. Def. Modifiers
+(32466, 4414, 2), -- Armor Type
+(32466, 4415, 3), -- Weapon Type
+(32466, 4416, 2), -- Races
 -- Teleportation Cubic
 (32467, 4045, 1), -- Resist Full Magic Attack
-(32467, 4390, 1), -- Mystic Immunity
-(32467, 4408, 1), -- HP Increase (1x)
-(32467, 4409, 1), -- MP Increase (1x)
-(32467, 4410, 11), -- Average P. Atk.
-(32467, 4411, 11), -- Average M. Atk.
-(32467, 4412, 11), -- Average P. Def.
-(32467, 4413, 11), -- Average M. Def.
-(32467, 4414, 2), -- Standard Type
-(32467, 4415, 3), -- One-handed Sword
-(32467, 4416, 19), -- Others
+(32467, 4390, 1), -- NPC Abnormal Immunity
+(32467, 4408, 1), -- HP Modifiers
+(32467, 4409, 1), -- MP Modifiers
+(32467, 4410, 11), -- P. Atk. Modifiers
+(32467, 4411, 11), -- M. Atk. Modifiers
+(32467, 4412, 11), -- P. Def. Modifiers
+(32467, 4413, 11), -- M. Def. Modifiers
+(32467, 4414, 2), -- Armor Type
+(32467, 4415, 3), -- Weapon Type
+(32467, 4416, 19), -- Races
 -- 
 (32468, 4045, 1), -- Resist Full Magic Attack
-(32468, 4390, 1), -- Mystic Immunity
-(32468, 4408, 1), -- HP Increase (1x)
-(32468, 4409, 1), -- MP Increase (1x)
-(32468, 4410, 11), -- Average P. Atk.
-(32468, 4411, 11), -- Average M. Atk.
-(32468, 4412, 11), -- Average P. Def.
-(32468, 4413, 11), -- Average M. Def.
-(32468, 4414, 2), -- Standard Type
-(32468, 4415, 3), -- One-handed Sword
-(32468, 4416, 2), -- Magic Creatures
+(32468, 4390, 1), -- NPC Abnormal Immunity
+(32468, 4408, 1), -- HP Modifiers
+(32468, 4409, 1), -- MP Modifiers
+(32468, 4410, 11), -- P. Atk. Modifiers
+(32468, 4411, 11), -- M. Atk. Modifiers
+(32468, 4412, 11), -- P. Def. Modifiers
+(32468, 4413, 11), -- M. Def. Modifiers
+(32468, 4414, 2), -- Armor Type
+(32468, 4415, 3), -- Weapon Type
+(32468, 4416, 2), -- Races
 -- Eindburgh
 (32469, 4045, 1), -- Resist Full Magic Attack
-(32469, 4408, 1), -- HP Increase (1x)
-(32469, 4409, 1), -- MP Increase (1x)
-(32469, 4410, 11), -- Average P. Atk.
-(32469, 4411, 11), -- Average M. Atk.
-(32469, 4412, 11), -- Average P. Def.
-(32469, 4413, 11), -- Average M. Def.
-(32469, 4414, 2), -- Standard Type
-(32469, 4415, 3), -- One-handed Sword
-(32469, 4416, 25), -- Kamael
+(32469, 4408, 1), -- HP Modifiers
+(32469, 4409, 1), -- MP Modifiers
+(32469, 4410, 11), -- P. Atk. Modifiers
+(32469, 4411, 11), -- M. Atk. Modifiers
+(32469, 4412, 11), -- P. Def. Modifiers
+(32469, 4413, 11), -- M. Def. Modifiers
+(32469, 4414, 2), -- Armor Type
+(32469, 4415, 3), -- Weapon Type
+(32469, 4416, 25), -- Races
 -- Stone Coffin
 (32470, 4045, 1), -- Resist Full Magic Attack
-(32470, 4390, 1), -- Mystic Immunity
-(32470, 4408, 1), -- HP Increase (1x)
-(32470, 4409, 1), -- MP Increase (1x)
-(32470, 4410, 11), -- Average P. Atk.
-(32470, 4411, 11), -- Average M. Atk.
-(32470, 4412, 11), -- Average P. Def.
-(32470, 4413, 11), -- Average M. Def.
-(32470, 4414, 2), -- Standard Type
-(32470, 4415, 3), -- One-handed Sword
-(32470, 4416, 2), -- Magic Creatures
+(32470, 4390, 1), -- NPC Abnormal Immunity
+(32470, 4408, 1), -- HP Modifiers
+(32470, 4409, 1), -- MP Modifiers
+(32470, 4410, 11), -- P. Atk. Modifiers
+(32470, 4411, 11), -- M. Atk. Modifiers
+(32470, 4412, 11), -- P. Def. Modifiers
+(32470, 4413, 11), -- M. Def. Modifiers
+(32470, 4414, 2), -- Armor Type
+(32470, 4415, 3), -- Weapon Type
+(32470, 4416, 2), -- Races
 -- 
 (32471, 4045, 1), -- Resist Full Magic Attack
-(32471, 4408, 1), -- HP Increase (1x)
-(32471, 4409, 1), -- MP Increase (1x)
-(32471, 4410, 11), -- Average P. Atk.
-(32471, 4411, 11), -- Average M. Atk.
-(32471, 4412, 11), -- Average P. Def.
-(32471, 4413, 11), -- Average M. Def.
-(32471, 4414, 2), -- Standard Type
-(32471, 4415, 3), -- One-handed Sword
-(32471, 4416, 25), -- Kamael
+(32471, 4408, 1), -- HP Modifiers
+(32471, 4409, 1), -- MP Modifiers
+(32471, 4410, 11), -- P. Atk. Modifiers
+(32471, 4411, 11), -- M. Atk. Modifiers
+(32471, 4412, 11), -- P. Def. Modifiers
+(32471, 4413, 11), -- M. Def. Modifiers
+(32471, 4414, 2), -- Armor Type
+(32471, 4415, 3), -- Weapon Type
+(32471, 4416, 25), -- Races
 -- 
 (32472, 4045, 1), -- Resist Full Magic Attack
-(32472, 4408, 1), -- HP Increase (1x)
-(32472, 4409, 1), -- MP Increase (1x)
-(32472, 4410, 11), -- Average P. Atk.
-(32472, 4411, 11), -- Average M. Atk.
-(32472, 4412, 11), -- Average P. Def.
-(32472, 4413, 11), -- Average M. Def.
-(32472, 4414, 2), -- Standard Type
-(32472, 4415, 3), -- One-handed Sword
-(32472, 4416, 25), -- Kamael
+(32472, 4408, 1), -- HP Modifiers
+(32472, 4409, 1), -- MP Modifiers
+(32472, 4410, 11), -- P. Atk. Modifiers
+(32472, 4411, 11), -- M. Atk. Modifiers
+(32472, 4412, 11), -- P. Def. Modifiers
+(32472, 4413, 11), -- M. Def. Modifiers
+(32472, 4414, 2), -- Armor Type
+(32472, 4415, 3), -- Weapon Type
+(32472, 4416, 25), -- Races
 -- 
 (32473, 4045, 1), -- Resist Full Magic Attack
-(32473, 4408, 1), -- HP Increase (1x)
-(32473, 4409, 1), -- MP Increase (1x)
-(32473, 4410, 11), -- Average P. Atk.
-(32473, 4411, 11), -- Average M. Atk.
-(32473, 4412, 11), -- Average P. Def.
-(32473, 4413, 11), -- Average M. Def.
-(32473, 4414, 2), -- Standard Type
-(32473, 4415, 3), -- One-handed Sword
-(32473, 4416, 25), -- Kamael
+(32473, 4408, 1), -- HP Modifiers
+(32473, 4409, 1), -- MP Modifiers
+(32473, 4410, 11), -- P. Atk. Modifiers
+(32473, 4411, 11), -- M. Atk. Modifiers
+(32473, 4412, 11), -- P. Def. Modifiers
+(32473, 4413, 11), -- M. Def. Modifiers
+(32473, 4414, 2), -- Armor Type
+(32473, 4415, 3), -- Weapon Type
+(32473, 4416, 25), -- Races
 -- 
 (32474, 4045, 1), -- Resist Full Magic Attack
-(32474, 4408, 1), -- HP Increase (1x)
-(32474, 4409, 1), -- MP Increase (1x)
-(32474, 4410, 11), -- Average P. Atk.
-(32474, 4411, 11), -- Average M. Atk.
-(32474, 4412, 11), -- Average P. Def.
-(32474, 4413, 11), -- Average M. Def.
-(32474, 4414, 2), -- Standard Type
-(32474, 4415, 3), -- One-handed Sword
-(32474, 4416, 25), -- Kamael
+(32474, 4408, 1), -- HP Modifiers
+(32474, 4409, 1), -- MP Modifiers
+(32474, 4410, 11), -- P. Atk. Modifiers
+(32474, 4411, 11), -- M. Atk. Modifiers
+(32474, 4412, 11), -- P. Def. Modifiers
+(32474, 4413, 11), -- M. Def. Modifiers
+(32474, 4414, 2), -- Armor Type
+(32474, 4415, 3), -- Weapon Type
+(32474, 4416, 25), -- Races
 -- Subclass Certification Helper
 (32475, 4045, 1), -- Resist Full Magic Attack
-(32475, 4408, 1), -- HP Increase (1x)
-(32475, 4409, 1), -- MP Increase (1x)
-(32475, 4410, 11), -- Average P. Atk.
-(32475, 4411, 11), -- Average M. Atk.
-(32475, 4412, 11), -- Average P. Def.
-(32475, 4413, 11), -- Average M. Def.
-(32475, 4414, 2), -- Standard Type
-(32475, 4415, 3), -- One-handed Sword
-(32475, 4416, 7), -- Spirits
+(32475, 4408, 1), -- HP Modifiers
+(32475, 4409, 1), -- MP Modifiers
+(32475, 4410, 11), -- P. Atk. Modifiers
+(32475, 4411, 11), -- M. Atk. Modifiers
+(32475, 4412, 11), -- P. Def. Modifiers
+(32475, 4413, 11), -- M. Def. Modifiers
+(32475, 4414, 2), -- Armor Type
+(32475, 4415, 3), -- Weapon Type
+(32475, 4416, 7), -- Races
 -- Employee of Magic Research Institute
 (32476, 4045, 1), -- Resist Full Magic Attack
-(32476, 4408, 1), -- HP Increase (1x)
-(32476, 4409, 1), -- MP Increase (1x)
-(32476, 4410, 11), -- Average P. Atk.
-(32476, 4411, 11), -- Average M. Atk.
-(32476, 4412, 11), -- Average P. Def.
-(32476, 4413, 11), -- Average M. Def.
-(32476, 4414, 2), -- Standard Type
-(32476, 4415, 3), -- One-handed Sword
-(32476, 4416, 18), -- Dwarves
+(32476, 4408, 1), -- HP Modifiers
+(32476, 4409, 1), -- MP Modifiers
+(32476, 4410, 11), -- P. Atk. Modifiers
+(32476, 4411, 11), -- M. Atk. Modifiers
+(32476, 4412, 11), -- P. Def. Modifiers
+(32476, 4413, 11), -- M. Def. Modifiers
+(32476, 4414, 2), -- Armor Type
+(32476, 4415, 3), -- Weapon Type
+(32476, 4416, 18), -- Races
 -- Gatekeeper
 (32477, 4045, 1), -- Resist Full Magic Attack
-(32477, 4408, 1), -- HP Increase (1x)
-(32477, 4409, 1), -- MP Increase (1x)
-(32477, 4410, 11), -- Average P. Atk.
-(32477, 4411, 11), -- Average M. Atk.
-(32477, 4412, 11), -- Average P. Def.
-(32477, 4413, 11), -- Average M. Def.
-(32477, 4414, 2), -- Standard Type
-(32477, 4415, 3), -- One-handed Sword
-(32477, 4416, 14), -- Humans
+(32477, 4408, 1), -- HP Modifiers
+(32477, 4409, 1), -- MP Modifiers
+(32477, 4410, 11), -- P. Atk. Modifiers
+(32477, 4411, 11), -- M. Atk. Modifiers
+(32477, 4412, 11), -- P. Def. Modifiers
+(32477, 4413, 11), -- M. Def. Modifiers
+(32477, 4414, 2), -- Armor Type
+(32477, 4415, 3), -- Weapon Type
+(32477, 4416, 14), -- Races
 -- Dimensional Merchant
 (32478, 4045, 1), -- Resist Full Magic Attack
-(32478, 4408, 1), -- HP Increase (1x)
-(32478, 4409, 1), -- MP Increase (1x)
-(32478, 4410, 11), -- Average P. Atk.
-(32478, 4411, 11), -- Average M. Atk.
-(32478, 4412, 11), -- Average P. Def.
-(32478, 4413, 11), -- Average M. Def.
-(32478, 4414, 2), -- Standard Type
-(32478, 4415, 3), -- One-handed Sword
-(32478, 4416, 14), -- Humans
+(32478, 4408, 1), -- HP Modifiers
+(32478, 4409, 1), -- MP Modifiers
+(32478, 4410, 11), -- P. Atk. Modifiers
+(32478, 4411, 11), -- M. Atk. Modifiers
+(32478, 4412, 11), -- P. Def. Modifiers
+(32478, 4413, 11), -- M. Def. Modifiers
+(32478, 4414, 2), -- Armor Type
+(32478, 4415, 3), -- Weapon Type
+(32478, 4416, 14), -- Races
 -- Adios
 (32479, 4045, 1), -- Resist Full Magic Attack
-(32479, 4408, 1), -- HP Increase (1x)
-(32479, 4409, 1), -- MP Increase (1x)
-(32479, 4410, 11), -- Average P. Atk.
-(32479, 4411, 11), -- Average M. Atk.
-(32479, 4412, 11), -- Average P. Def.
-(32479, 4413, 11), -- Average M. Def.
-(32479, 4414, 2), -- Standard Type
-(32479, 4415, 3), -- One-handed Sword
-(32479, 4416, 14), -- Humans
+(32479, 4408, 1), -- HP Modifiers
+(32479, 4409, 1), -- MP Modifiers
+(32479, 4410, 11), -- P. Atk. Modifiers
+(32479, 4411, 11), -- M. Atk. Modifiers
+(32479, 4412, 11), -- P. Def. Modifiers
+(32479, 4413, 11), -- M. Def. Modifiers
+(32479, 4414, 2), -- Armor Type
+(32479, 4415, 3), -- Weapon Type
+(32479, 4416, 14), -- Races
 -- Ronde
 (32480, 4045, 1), -- Resist Full Magic Attack
-(32480, 4408, 1), -- HP Increase (1x)
-(32480, 4409, 1), -- MP Increase (1x)
-(32480, 4410, 11), -- Average P. Atk.
-(32480, 4411, 11), -- Average M. Atk.
-(32480, 4412, 11), -- Average P. Def.
-(32480, 4413, 11), -- Average M. Def.
-(32480, 4414, 2), -- Standard Type
-(32480, 4415, 3), -- One-handed Sword
-(32480, 4416, 14), -- Humans
+(32480, 4408, 1), -- HP Modifiers
+(32480, 4409, 1), -- MP Modifiers
+(32480, 4410, 11), -- P. Atk. Modifiers
+(32480, 4411, 11), -- M. Atk. Modifiers
+(32480, 4412, 11), -- P. Def. Modifiers
+(32480, 4413, 11), -- M. Def. Modifiers
+(32480, 4414, 2), -- Armor Type
+(32480, 4415, 3), -- Weapon Type
+(32480, 4416, 14), -- Races
 -- Saige
 (32481, 4045, 1), -- Resist Full Magic Attack
-(32481, 4408, 1), -- HP Increase (1x)
-(32481, 4409, 1), -- MP Increase (1x)
-(32481, 4410, 11), -- Average P. Atk.
-(32481, 4411, 11), -- Average M. Atk.
-(32481, 4412, 11), -- Average P. Def.
-(32481, 4413, 11), -- Average M. Def.
-(32481, 4414, 2), -- Standard Type
-(32481, 4415, 3), -- One-handed Sword
-(32481, 4416, 14), -- Humans
+(32481, 4408, 1), -- HP Modifiers
+(32481, 4409, 1), -- MP Modifiers
+(32481, 4410, 11), -- P. Atk. Modifiers
+(32481, 4411, 11), -- M. Atk. Modifiers
+(32481, 4412, 11), -- P. Def. Modifiers
+(32481, 4413, 11), -- M. Def. Modifiers
+(32481, 4414, 2), -- Armor Type
+(32481, 4415, 3), -- Weapon Type
+(32481, 4416, 14), -- Races
 -- Emdrere
 (32482, 4045, 1), -- Resist Full Magic Attack
-(32482, 4408, 1), -- HP Increase (1x)
-(32482, 4409, 1), -- MP Increase (1x)
-(32482, 4410, 11), -- Average P. Atk.
-(32482, 4411, 11), -- Average M. Atk.
-(32482, 4412, 11), -- Average P. Def.
-(32482, 4413, 11), -- Average M. Def.
-(32482, 4414, 2), -- Standard Type
-(32482, 4415, 3), -- One-handed Sword
-(32482, 4416, 14), -- Humans
+(32482, 4408, 1), -- HP Modifiers
+(32482, 4409, 1), -- MP Modifiers
+(32482, 4410, 11), -- P. Atk. Modifiers
+(32482, 4411, 11), -- M. Atk. Modifiers
+(32482, 4412, 11), -- P. Def. Modifiers
+(32482, 4413, 11), -- M. Def. Modifiers
+(32482, 4414, 2), -- Armor Type
+(32482, 4415, 3), -- Weapon Type
+(32482, 4416, 14), -- Races
 -- 
 (32483, 4045, 1), -- Resist Full Magic Attack
-(32483, 4390, 1), -- Mystic Immunity
-(32483, 4408, 1), -- HP Increase (1x)
-(32483, 4409, 1), -- MP Increase (1x)
-(32483, 4410, 11), -- Average P. Atk.
-(32483, 4411, 11), -- Average M. Atk.
-(32483, 4412, 11), -- Average P. Def.
-(32483, 4413, 11), -- Average M. Def.
-(32483, 4414, 2), -- Standard Type
-(32483, 4415, 3), -- One-handed Sword
-(32483, 4416, 2), -- Magic Creatures
+(32483, 4390, 1), -- NPC Abnormal Immunity
+(32483, 4408, 1), -- HP Modifiers
+(32483, 4409, 1), -- MP Modifiers
+(32483, 4410, 11), -- P. Atk. Modifiers
+(32483, 4411, 11), -- M. Atk. Modifiers
+(32483, 4412, 11), -- P. Def. Modifiers
+(32483, 4413, 11), -- M. Def. Modifiers
+(32483, 4414, 2), -- Armor Type
+(32483, 4415, 3), -- Weapon Type
+(32483, 4416, 2), -- Races
 (32483, 5623, 1), -- Weakened Magic Force
 -- Pathfinder Worker
 (32484, 4045, 1), -- Resist Full Magic Attack
-(32484, 4408, 1), -- HP Increase (1x)
-(32484, 4409, 1), -- MP Increase (1x)
-(32484, 4410, 11), -- Average P. Atk.
-(32484, 4411, 11), -- Average M. Atk.
-(32484, 4412, 11), -- Average P. Def.
-(32484, 4413, 11), -- Average M. Def.
-(32484, 4414, 2), -- Standard Type
-(32484, 4415, 3), -- One-handed Sword
-(32484, 4416, 14), -- Humans
+(32484, 4408, 1), -- HP Modifiers
+(32484, 4409, 1), -- MP Modifiers
+(32484, 4410, 11), -- P. Atk. Modifiers
+(32484, 4411, 11), -- M. Atk. Modifiers
+(32484, 4412, 11), -- P. Def. Modifiers
+(32484, 4413, 11), -- M. Def. Modifiers
+(32484, 4414, 2), -- Armor Type
+(32484, 4415, 3), -- Weapon Type
+(32484, 4416, 14), -- Races
 -- Pathfinder Worker
 (32485, 4045, 1), -- Resist Full Magic Attack
-(32485, 4408, 1), -- HP Increase (1x)
-(32485, 4409, 1), -- MP Increase (1x)
-(32485, 4410, 11), -- Average P. Atk.
-(32485, 4411, 11), -- Average M. Atk.
-(32485, 4412, 11), -- Average P. Def.
-(32485, 4413, 11), -- Average M. Def.
-(32485, 4414, 2), -- Standard Type
-(32485, 4415, 3), -- One-handed Sword
-(32485, 4416, 14), -- Humans
+(32485, 4408, 1), -- HP Modifiers
+(32485, 4409, 1), -- MP Modifiers
+(32485, 4410, 11), -- P. Atk. Modifiers
+(32485, 4411, 11), -- M. Atk. Modifiers
+(32485, 4412, 11), -- P. Def. Modifiers
+(32485, 4413, 11), -- M. Def. Modifiers
+(32485, 4414, 2), -- Armor Type
+(32485, 4415, 3), -- Weapon Type
+(32485, 4416, 14), -- Races
 -- Inventor Maru
 (32486, 4045, 1), -- Resist Full Magic Attack
-(32486, 4408, 1), -- HP Increase (1x)
-(32486, 4409, 1), -- MP Increase (1x)
-(32486, 4410, 11), -- Average P. Atk.
-(32486, 4411, 11), -- Average M. Atk.
-(32486, 4412, 11), -- Average P. Def.
-(32486, 4413, 11), -- Average M. Def.
-(32486, 4414, 2), -- Standard Type
-(32486, 4415, 3), -- One-handed Sword
-(32486, 4416, 18), -- Dwarves
+(32486, 4408, 1), -- HP Modifiers
+(32486, 4409, 1), -- MP Modifiers
+(32486, 4410, 11), -- P. Atk. Modifiers
+(32486, 4411, 11), -- M. Atk. Modifiers
+(32486, 4412, 11), -- P. Def. Modifiers
+(32486, 4413, 11), -- M. Def. Modifiers
+(32486, 4414, 2), -- Armor Type
+(32486, 4415, 3), -- Weapon Type
+(32486, 4416, 18), -- Races
 -- Mark
 (32487, 4045, 1), -- Resist Full Magic Attack
-(32487, 4408, 1), -- HP Increase (1x)
-(32487, 4409, 1), -- MP Increase (1x)
-(32487, 4410, 11), -- Average P. Atk.
-(32487, 4411, 11), -- Average M. Atk.
-(32487, 4412, 11), -- Average P. Def.
-(32487, 4413, 11), -- Average M. Def.
-(32487, 4414, 2), -- Standard Type
-(32487, 4415, 3), -- One-handed Sword
-(32487, 4416, 16), -- Dark Elves
+(32487, 4408, 1), -- HP Modifiers
+(32487, 4409, 1), -- MP Modifiers
+(32487, 4410, 11), -- P. Atk. Modifiers
+(32487, 4411, 11), -- M. Atk. Modifiers
+(32487, 4412, 11), -- P. Def. Modifiers
+(32487, 4413, 11), -- M. Def. Modifiers
+(32487, 4414, 2), -- Armor Type
+(32487, 4415, 3), -- Weapon Type
+(32487, 4416, 16), -- Races
 -- Mark
 (32488, 4045, 1), -- Resist Full Magic Attack
-(32488, 4408, 1), -- HP Increase (1x)
-(32488, 4409, 1), -- MP Increase (1x)
-(32488, 4410, 11), -- Average P. Atk.
-(32488, 4411, 11), -- Average M. Atk.
-(32488, 4412, 11), -- Average P. Def.
-(32488, 4413, 11), -- Average M. Def.
-(32488, 4414, 2), -- Standard Type
-(32488, 4415, 3), -- One-handed Sword
-(32488, 4416, 16), -- Dark Elves
+(32488, 4408, 1), -- HP Modifiers
+(32488, 4409, 1), -- MP Modifiers
+(32488, 4410, 11), -- P. Atk. Modifiers
+(32488, 4411, 11), -- M. Atk. Modifiers
+(32488, 4412, 11), -- P. Def. Modifiers
+(32488, 4413, 11), -- M. Def. Modifiers
+(32488, 4414, 2), -- Armor Type
+(32488, 4415, 3), -- Weapon Type
+(32488, 4416, 16), -- Races
 -- 
 (32490, 4045, 1), -- Resist Full Magic Attack
-(32490, 4390, 1), -- Mystic Immunity
-(32490, 4408, 1), -- HP Increase (1x)
-(32490, 4409, 1), -- MP Increase (1x)
-(32490, 4410, 11), -- Average P. Atk.
-(32490, 4411, 11), -- Average M. Atk.
-(32490, 4412, 11), -- Average P. Def.
-(32490, 4413, 11), -- Average M. Def.
-(32490, 4414, 2), -- Standard Type
-(32490, 4415, 3), -- One-handed Sword
-(32490, 4416, 2), -- Magic Creatures
+(32490, 4390, 1), -- NPC Abnormal Immunity
+(32490, 4408, 1), -- HP Modifiers
+(32490, 4409, 1), -- MP Modifiers
+(32490, 4410, 11), -- P. Atk. Modifiers
+(32490, 4411, 11), -- M. Atk. Modifiers
+(32490, 4412, 11), -- P. Def. Modifiers
+(32490, 4413, 11), -- M. Def. Modifiers
+(32490, 4414, 2), -- Armor Type
+(32490, 4415, 3), -- Weapon Type
+(32490, 4416, 2), -- Races
 -- Underground Coliseum Helper
 (32491, 4045, 1), -- Resist Full Magic Attack
-(32491, 4408, 1), -- HP Increase (1x)
-(32491, 4409, 1), -- MP Increase (1x)
-(32491, 4410, 11), -- Average P. Atk.
-(32491, 4411, 11), -- Average M. Atk.
-(32491, 4412, 11), -- Average P. Def.
-(32491, 4413, 11), -- Average M. Def.
-(32491, 4414, 2), -- Standard Type
-(32491, 4415, 3), -- One-handed Sword
-(32491, 4416, 18), -- Dwarves
+(32491, 4408, 1), -- HP Modifiers
+(32491, 4409, 1), -- MP Modifiers
+(32491, 4410, 11), -- P. Atk. Modifiers
+(32491, 4411, 11), -- M. Atk. Modifiers
+(32491, 4412, 11), -- P. Def. Modifiers
+(32491, 4413, 11), -- M. Def. Modifiers
+(32491, 4414, 2), -- Armor Type
+(32491, 4415, 3), -- Weapon Type
+(32491, 4416, 18), -- Races
 -- Crystal Water Bottle
 (32492, 4045, 1), -- Resist Full Magic Attack
-(32492, 4390, 1), -- Mystic Immunity
-(32492, 4408, 1), -- HP Increase (1x)
-(32492, 4409, 1), -- MP Increase (1x)
-(32492, 4410, 11), -- Average P. Atk.
-(32492, 4411, 11), -- Average M. Atk.
-(32492, 4412, 11), -- Average P. Def.
-(32492, 4413, 11), -- Average M. Def.
-(32492, 4414, 2), -- Standard Type
-(32492, 4415, 3), -- One-handed Sword
-(32492, 4416, 2), -- Magic Creatures
+(32492, 4390, 1), -- NPC Abnormal Immunity
+(32492, 4408, 1), -- HP Modifiers
+(32492, 4409, 1), -- MP Modifiers
+(32492, 4410, 11), -- P. Atk. Modifiers
+(32492, 4411, 11), -- M. Atk. Modifiers
+(32492, 4412, 11), -- P. Def. Modifiers
+(32492, 4413, 11), -- M. Def. Modifiers
+(32492, 4414, 2), -- Armor Type
+(32492, 4415, 3), -- Weapon Type
+(32492, 4416, 2), -- Races
 -- Burning Brazier
 (32493, 4045, 1), -- Resist Full Magic Attack
-(32493, 4390, 1), -- Mystic Immunity
-(32493, 4408, 1), -- HP Increase (1x)
-(32493, 4409, 1), -- MP Increase (1x)
-(32493, 4410, 11), -- Average P. Atk.
-(32493, 4411, 11), -- Average M. Atk.
-(32493, 4412, 11), -- Average P. Def.
-(32493, 4413, 11), -- Average M. Def.
-(32493, 4414, 2), -- Standard Type
-(32493, 4415, 3), -- One-handed Sword
-(32493, 4416, 2), -- Magic Creatures
+(32493, 4390, 1), -- NPC Abnormal Immunity
+(32493, 4408, 1), -- HP Modifiers
+(32493, 4409, 1), -- MP Modifiers
+(32493, 4410, 11), -- P. Atk. Modifiers
+(32493, 4411, 11), -- M. Atk. Modifiers
+(32493, 4412, 11), -- P. Def. Modifiers
+(32493, 4413, 11), -- M. Def. Modifiers
+(32493, 4414, 2), -- Armor Type
+(32493, 4415, 3), -- Weapon Type
+(32493, 4416, 2), -- Races
 -- Skull
 (32494, 4045, 1), -- Resist Full Magic Attack
-(32494, 4390, 1), -- Mystic Immunity
-(32494, 4408, 1), -- HP Increase (1x)
-(32494, 4409, 1), -- MP Increase (1x)
-(32494, 4410, 11), -- Average P. Atk.
-(32494, 4411, 11), -- Average M. Atk.
-(32494, 4412, 11), -- Average P. Def.
-(32494, 4413, 11), -- Average M. Def.
-(32494, 4414, 2), -- Standard Type
-(32494, 4415, 3), -- One-handed Sword
-(32494, 4416, 2), -- Magic Creatures
+(32494, 4390, 1), -- NPC Abnormal Immunity
+(32494, 4408, 1), -- HP Modifiers
+(32494, 4409, 1), -- MP Modifiers
+(32494, 4410, 11), -- P. Atk. Modifiers
+(32494, 4411, 11), -- M. Atk. Modifiers
+(32494, 4412, 11), -- P. Def. Modifiers
+(32494, 4413, 11), -- M. Def. Modifiers
+(32494, 4414, 2), -- Armor Type
+(32494, 4415, 3), -- Weapon Type
+(32494, 4416, 2), -- Races
 -- Treasure Chest
 (32495, 4045, 1), -- Resist Full Magic Attack
-(32495, 4390, 1), -- Mystic Immunity
-(32495, 4408, 1), -- HP Increase (1x)
-(32495, 4409, 1), -- MP Increase (1x)
-(32495, 4410, 11), -- Average P. Atk.
-(32495, 4411, 11), -- Average M. Atk.
-(32495, 4412, 11), -- Average P. Def.
-(32495, 4413, 11), -- Average M. Def.
-(32495, 4414, 2), -- Standard Type
-(32495, 4415, 3), -- One-handed Sword
-(32495, 4416, 19), -- Others
+(32495, 4390, 1), -- NPC Abnormal Immunity
+(32495, 4408, 1), -- HP Modifiers
+(32495, 4409, 1), -- MP Modifiers
+(32495, 4410, 11), -- P. Atk. Modifiers
+(32495, 4411, 11), -- M. Atk. Modifiers
+(32495, 4412, 11), -- P. Def. Modifiers
+(32495, 4413, 11), -- M. Def. Modifiers
+(32495, 4414, 2), -- Armor Type
+(32495, 4415, 3), -- Weapon Type
+(32495, 4416, 19), -- Races
 -- Escape Device
 (32496, 4045, 1), -- Resist Full Magic Attack
-(32496, 4390, 1), -- Mystic Immunity
-(32496, 4408, 1), -- HP Increase (1x)
-(32496, 4409, 1), -- MP Increase (1x)
-(32496, 4410, 11), -- Average P. Atk.
-(32496, 4411, 11), -- Average M. Atk.
-(32496, 4412, 11), -- Average P. Def.
-(32496, 4413, 11), -- Average M. Def.
-(32496, 4414, 2), -- Standard Type
-(32496, 4415, 3), -- One-handed Sword
-(32496, 4416, 2), -- Magic Creatures
+(32496, 4390, 1), -- NPC Abnormal Immunity
+(32496, 4408, 1), -- HP Modifiers
+(32496, 4409, 1), -- MP Modifiers
+(32496, 4410, 11), -- P. Atk. Modifiers
+(32496, 4411, 11), -- M. Atk. Modifiers
+(32496, 4412, 11), -- P. Def. Modifiers
+(32496, 4413, 11), -- M. Def. Modifiers
+(32496, 4414, 2), -- Armor Type
+(32496, 4415, 3), -- Weapon Type
+(32496, 4416, 2), -- Races
 -- Inspector Adler
 (32497, 4045, 1), -- Resist Full Magic Attack
-(32497, 4408, 1), -- HP Increase (1x)
-(32497, 4409, 1), -- MP Increase (1x)
-(32497, 4410, 11), -- Average P. Atk.
-(32497, 4411, 11), -- Average M. Atk.
-(32497, 4412, 11), -- Average P. Def.
-(32497, 4413, 11), -- Average M. Def.
-(32497, 4414, 2), -- Standard Type
-(32497, 4415, 3), -- One-handed Sword
-(32497, 4416, 15), -- Elves
+(32497, 4408, 1), -- HP Modifiers
+(32497, 4409, 1), -- MP Modifiers
+(32497, 4410, 11), -- P. Atk. Modifiers
+(32497, 4411, 11), -- M. Atk. Modifiers
+(32497, 4412, 11), -- P. Def. Modifiers
+(32497, 4413, 11), -- M. Def. Modifiers
+(32497, 4414, 2), -- Armor Type
+(32497, 4415, 3), -- Weapon Type
+(32497, 4416, 15), -- Races
 -- Devil's Isle Survivor
 (32498, 4045, 1), -- Resist Full Magic Attack
-(32498, 4408, 1), -- HP Increase (1x)
-(32498, 4409, 1), -- MP Increase (1x)
-(32498, 4410, 11), -- Average P. Atk.
-(32498, 4411, 11), -- Average M. Atk.
-(32498, 4412, 11), -- Average P. Def.
-(32498, 4413, 11), -- Average M. Def.
-(32498, 4414, 2), -- Standard Type
-(32498, 4415, 3), -- One-handed Sword
-(32498, 4416, 14), -- Humans
+(32498, 4408, 1), -- HP Modifiers
+(32498, 4409, 1), -- MP Modifiers
+(32498, 4410, 11), -- P. Atk. Modifiers
+(32498, 4411, 11), -- M. Atk. Modifiers
+(32498, 4412, 11), -- P. Def. Modifiers
+(32498, 4413, 11), -- M. Def. Modifiers
+(32498, 4414, 2), -- Armor Type
+(32498, 4415, 3), -- Weapon Type
+(32498, 4416, 14), -- Races
 -- Ketra Orc Shaman 
 (32499, 4045, 1), -- Resist Full Magic Attack
-(32499, 4408, 1), -- HP Increase (1x)
-(32499, 4409, 1), -- MP Increase (1x)
-(32499, 4410, 11), -- Average P. Atk.
-(32499, 4411, 11), -- Average M. Atk.
-(32499, 4412, 11), -- Average P. Def.
-(32499, 4413, 11), -- Average M. Def.
-(32499, 4414, 2), -- Standard Type
-(32499, 4415, 3), -- One-handed Sword
-(32499, 4416, 6), -- Humanoids
+(32499, 4408, 1), -- HP Modifiers
+(32499, 4409, 1), -- MP Modifiers
+(32499, 4410, 11), -- P. Atk. Modifiers
+(32499, 4411, 11), -- M. Atk. Modifiers
+(32499, 4412, 11), -- P. Def. Modifiers
+(32499, 4413, 11), -- M. Def. Modifiers
+(32499, 4414, 2), -- Armor Type
+(32499, 4415, 3), -- Weapon Type
+(32499, 4416, 6), -- Races
 -- Inspector Sinai
 (32500, 4045, 1), -- Resist Full Magic Attack
-(32500, 4408, 1), -- HP Increase (1x)
-(32500, 4409, 1), -- MP Increase (1x)
-(32500, 4410, 11), -- Average P. Atk.
-(32500, 4411, 11), -- Average M. Atk.
-(32500, 4412, 11), -- Average P. Def.
-(32500, 4413, 11), -- Average M. Def.
-(32500, 4414, 2), -- Standard Type
-(32500, 4415, 3), -- One-handed Sword
-(32500, 4416, 15), -- Elves
+(32500, 4408, 1), -- HP Modifiers
+(32500, 4409, 1), -- MP Modifiers
+(32500, 4410, 11), -- P. Atk. Modifiers
+(32500, 4411, 11), -- M. Atk. Modifiers
+(32500, 4412, 11), -- P. Def. Modifiers
+(32500, 4413, 11), -- M. Def. Modifiers
+(32500, 4414, 2), -- Armor Type
+(32500, 4415, 3), -- Weapon Type
+(32500, 4416, 15), -- Races
 -- Devil's Isle Supporter
 (32501, 4045, 1), -- Resist Full Magic Attack
-(32501, 4408, 1), -- HP Increase (1x)
-(32501, 4409, 1), -- MP Increase (1x)
-(32501, 4410, 11), -- Average P. Atk.
-(32501, 4411, 11), -- Average M. Atk.
-(32501, 4412, 11), -- Average P. Def.
-(32501, 4413, 11), -- Average M. Def.
-(32501, 4414, 2), -- Standard Type
-(32501, 4415, 3), -- One-handed Sword
-(32501, 4416, 14), -- Humans
+(32501, 4408, 1), -- HP Modifiers
+(32501, 4409, 1), -- MP Modifiers
+(32501, 4410, 11), -- P. Atk. Modifiers
+(32501, 4411, 11), -- M. Atk. Modifiers
+(32501, 4412, 11), -- P. Def. Modifiers
+(32501, 4413, 11), -- M. Def. Modifiers
+(32501, 4414, 2), -- Armor Type
+(32501, 4415, 3), -- Weapon Type
+(32501, 4416, 14), -- Races
 -- Ketra Orc Supporter
 (32502, 4045, 1), -- Resist Full Magic Attack
-(32502, 4408, 1), -- HP Increase (1x)
-(32502, 4409, 1), -- MP Increase (1x)
-(32502, 4410, 11), -- Average P. Atk.
-(32502, 4411, 11), -- Average M. Atk.
-(32502, 4412, 11), -- Average P. Def.
-(32502, 4413, 11), -- Average M. Def.
-(32502, 4414, 2), -- Standard Type
-(32502, 4415, 3), -- One-handed Sword
-(32502, 4416, 6), -- Humanoids
+(32502, 4408, 1), -- HP Modifiers
+(32502, 4409, 1), -- MP Modifiers
+(32502, 4410, 11), -- P. Atk. Modifiers
+(32502, 4411, 11), -- M. Atk. Modifiers
+(32502, 4412, 11), -- P. Def. Modifiers
+(32502, 4413, 11), -- M. Def. Modifiers
+(32502, 4414, 2), -- Armor Type
+(32502, 4415, 3), -- Weapon Type
+(32502, 4416, 6), -- Races
 -- Entrance Manager
 (32503, 4045, 1), -- Resist Full Magic Attack
-(32503, 4408, 1), -- HP Increase (1x)
-(32503, 4409, 1), -- MP Increase (1x)
-(32503, 4410, 11), -- Average P. Atk.
-(32503, 4411, 11), -- Average M. Atk.
-(32503, 4412, 11), -- Average P. Def.
-(32503, 4413, 11), -- Average M. Def.
-(32503, 4414, 2), -- Standard Type
-(32503, 4415, 3), -- One-handed Sword
-(32503, 4416, 18), -- Dwarves
+(32503, 4408, 1), -- HP Modifiers
+(32503, 4409, 1), -- MP Modifiers
+(32503, 4410, 11), -- P. Atk. Modifiers
+(32503, 4411, 11), -- M. Atk. Modifiers
+(32503, 4412, 11), -- P. Def. Modifiers
+(32503, 4413, 11), -- M. Def. Modifiers
+(32503, 4414, 2), -- Armor Type
+(32503, 4415, 3), -- Weapon Type
+(32503, 4416, 18), -- Races
 -- Match Manager
 (32504, 4045, 1), -- Resist Full Magic Attack
-(32504, 4408, 1), -- HP Increase (1x)
-(32504, 4409, 1), -- MP Increase (1x)
-(32504, 4410, 11), -- Average P. Atk.
-(32504, 4411, 11), -- Average M. Atk.
-(32504, 4412, 11), -- Average P. Def.
-(32504, 4413, 11), -- Average M. Def.
-(32504, 4414, 2), -- Standard Type
-(32504, 4415, 3), -- One-handed Sword
-(32504, 4416, 18), -- Dwarves
+(32504, 4408, 1), -- HP Modifiers
+(32504, 4409, 1), -- MP Modifiers
+(32504, 4410, 11), -- P. Atk. Modifiers
+(32504, 4411, 11), -- M. Atk. Modifiers
+(32504, 4412, 11), -- P. Def. Modifiers
+(32504, 4413, 11), -- M. Def. Modifiers
+(32504, 4414, 2), -- Armor Type
+(32504, 4415, 3), -- Weapon Type
+(32504, 4416, 18), -- Races
 -- Match Manager
 (32505, 4045, 1), -- Resist Full Magic Attack
-(32505, 4408, 1), -- HP Increase (1x)
-(32505, 4409, 1), -- MP Increase (1x)
-(32505, 4410, 11), -- Average P. Atk.
-(32505, 4411, 11), -- Average M. Atk.
-(32505, 4412, 11), -- Average P. Def.
-(32505, 4413, 11), -- Average M. Def.
-(32505, 4414, 2), -- Standard Type
-(32505, 4415, 3), -- One-handed Sword
-(32505, 4416, 18), -- Dwarves
+(32505, 4408, 1), -- HP Modifiers
+(32505, 4409, 1), -- MP Modifiers
+(32505, 4410, 11), -- P. Atk. Modifiers
+(32505, 4411, 11), -- M. Atk. Modifiers
+(32505, 4412, 11), -- P. Def. Modifiers
+(32505, 4413, 11), -- M. Def. Modifiers
+(32505, 4414, 2), -- Armor Type
+(32505, 4415, 3), -- Weapon Type
+(32505, 4416, 18), -- Races
 -- Match Manager
 (32506, 4045, 1), -- Resist Full Magic Attack
-(32506, 4408, 1), -- HP Increase (1x)
-(32506, 4409, 1), -- MP Increase (1x)
-(32506, 4410, 11), -- Average P. Atk.
-(32506, 4411, 11), -- Average M. Atk.
-(32506, 4412, 11), -- Average P. Def.
-(32506, 4413, 11), -- Average M. Def.
-(32506, 4414, 2), -- Standard Type
-(32506, 4415, 3), -- One-handed Sword
-(32506, 4416, 18), -- Dwarves
+(32506, 4408, 1), -- HP Modifiers
+(32506, 4409, 1), -- MP Modifiers
+(32506, 4410, 11), -- P. Atk. Modifiers
+(32506, 4411, 11), -- M. Atk. Modifiers
+(32506, 4412, 11), -- P. Def. Modifiers
+(32506, 4413, 11), -- M. Def. Modifiers
+(32506, 4414, 2), -- Armor Type
+(32506, 4415, 3), -- Weapon Type
+(32506, 4416, 18), -- Races
 -- Temple Inspector
 (32507, 4045, 1), -- Resist Full Magic Attack
-(32507, 4408, 1), -- HP Increase (1x)
-(32507, 4409, 1), -- MP Increase (1x)
-(32507, 4410, 11), -- Average P. Atk.
-(32507, 4411, 11), -- Average M. Atk.
-(32507, 4412, 11), -- Average P. Def.
-(32507, 4413, 11), -- Average M. Def.
-(32507, 4414, 2), -- Standard Type
-(32507, 4415, 3), -- One-handed Sword
-(32507, 4416, 14), -- Humans
+(32507, 4408, 1), -- HP Modifiers
+(32507, 4409, 1), -- MP Modifiers
+(32507, 4410, 11), -- P. Atk. Modifiers
+(32507, 4411, 11), -- M. Atk. Modifiers
+(32507, 4412, 11), -- P. Def. Modifiers
+(32507, 4413, 11), -- M. Def. Modifiers
+(32507, 4414, 2), -- Armor Type
+(32507, 4415, 3), -- Weapon Type
+(32507, 4416, 14), -- Races
 -- Dwarf Adventurer
 (32508, 4045, 1), -- Resist Full Magic Attack
-(32508, 4408, 1), -- HP Increase (1x)
-(32508, 4409, 1), -- MP Increase (1x)
-(32508, 4410, 11), -- Average P. Atk.
-(32508, 4411, 11), -- Average M. Atk.
-(32508, 4412, 11), -- Average P. Def.
-(32508, 4413, 11), -- Average M. Def.
-(32508, 4414, 2), -- Standard Type
-(32508, 4415, 3), -- One-handed Sword
-(32508, 4416, 18), -- Dwarves
+(32508, 4408, 1), -- HP Modifiers
+(32508, 4409, 1), -- MP Modifiers
+(32508, 4410, 11), -- P. Atk. Modifiers
+(32508, 4411, 11), -- M. Atk. Modifiers
+(32508, 4412, 11), -- P. Def. Modifiers
+(32508, 4413, 11), -- M. Def. Modifiers
+(32508, 4414, 2), -- Armor Type
+(32508, 4415, 3), -- Weapon Type
+(32508, 4416, 18), -- Races
 -- Ketra Orc Intelligence Officer
 (32509, 4045, 1), -- Resist Full Magic Attack
-(32509, 4408, 1), -- HP Increase (1x)
-(32509, 4409, 1), -- MP Increase (1x)
-(32509, 4410, 11), -- Average P. Atk.
-(32509, 4411, 11), -- Average M. Atk.
-(32509, 4412, 11), -- Average P. Def.
-(32509, 4413, 11), -- Average M. Def.
-(32509, 4414, 2), -- Standard Type
-(32509, 4415, 3), -- One-handed Sword
-(32509, 4416, 6), -- Humanoids
+(32509, 4408, 1), -- HP Modifiers
+(32509, 4409, 1), -- MP Modifiers
+(32509, 4410, 11), -- P. Atk. Modifiers
+(32509, 4411, 11), -- M. Atk. Modifiers
+(32509, 4412, 11), -- P. Def. Modifiers
+(32509, 4413, 11), -- M. Def. Modifiers
+(32509, 4414, 2), -- Armor Type
+(32509, 4415, 3), -- Weapon Type
+(32509, 4416, 6), -- Races
 -- Inspector Adler
 (32510, 4045, 1), -- Resist Full Magic Attack
-(32510, 4408, 1), -- HP Increase (1x)
-(32510, 4409, 1), -- MP Increase (1x)
-(32510, 4410, 11), -- Average P. Atk.
-(32510, 4411, 11), -- Average M. Atk.
-(32510, 4412, 11), -- Average P. Def.
-(32510, 4413, 11), -- Average M. Def.
-(32510, 4414, 2), -- Standard Type
-(32510, 4415, 1), -- Bare Hands
-(32510, 4416, 15), -- Elves
+(32510, 4408, 1), -- HP Modifiers
+(32510, 4409, 1), -- MP Modifiers
+(32510, 4410, 11), -- P. Atk. Modifiers
+(32510, 4411, 11), -- M. Atk. Modifiers
+(32510, 4412, 11), -- P. Def. Modifiers
+(32510, 4413, 11), -- M. Def. Modifiers
+(32510, 4414, 2), -- Armor Type
+(32510, 4415, 1), -- Weapon Type
+(32510, 4416, 15), -- Races
 -- Dwarf Adventurer
 (32511, 4045, 1), -- Resist Full Magic Attack
-(32511, 4408, 1), -- HP Increase (1x)
-(32511, 4409, 1), -- MP Increase (1x)
-(32511, 4410, 11), -- Average P. Atk.
-(32511, 4411, 11), -- Average M. Atk.
-(32511, 4412, 11), -- Average P. Def.
-(32511, 4413, 11), -- Average M. Def.
-(32511, 4414, 2), -- Standard Type
-(32511, 4415, 1), -- Bare Hands
-(32511, 4416, 18), -- Dwarves
+(32511, 4408, 1), -- HP Modifiers
+(32511, 4409, 1), -- MP Modifiers
+(32511, 4410, 11), -- P. Atk. Modifiers
+(32511, 4411, 11), -- M. Atk. Modifiers
+(32511, 4412, 11), -- P. Def. Modifiers
+(32511, 4413, 11), -- M. Def. Modifiers
+(32511, 4414, 2), -- Armor Type
+(32511, 4415, 1), -- Weapon Type
+(32511, 4416, 18), -- Races
 -- Ketra Orc Supporter
 (32512, 4045, 1), -- Resist Full Magic Attack
-(32512, 4408, 1), -- HP Increase (1x)
-(32512, 4409, 1), -- MP Increase (1x)
-(32512, 4410, 11), -- Average P. Atk.
-(32512, 4411, 11), -- Average M. Atk.
-(32512, 4412, 11), -- Average P. Def.
-(32512, 4413, 11), -- Average M. Def.
-(32512, 4414, 2), -- Standard Type
-(32512, 4415, 1), -- Bare Hands
-(32512, 4416, 6), -- Humanoids
+(32512, 4408, 1), -- HP Modifiers
+(32512, 4409, 1), -- MP Modifiers
+(32512, 4410, 11), -- P. Atk. Modifiers
+(32512, 4411, 11), -- M. Atk. Modifiers
+(32512, 4412, 11), -- P. Def. Modifiers
+(32512, 4413, 11), -- M. Def. Modifiers
+(32512, 4414, 2), -- Armor Type
+(32512, 4415, 1), -- Weapon Type
+(32512, 4416, 6), -- Races
 -- Kun
 (32513, 4045, 1), -- Resist Full Magic Attack
-(32513, 4408, 1), -- HP Increase (1x)
-(32513, 4409, 1), -- MP Increase (1x)
-(32513, 4410, 11), -- Average P. Atk.
-(32513, 4411, 11), -- Average M. Atk.
-(32513, 4412, 11), -- Average P. Def.
-(32513, 4413, 11), -- Average M. Def.
-(32513, 4414, 2), -- Standard Type
-(32513, 4415, 3), -- One-handed Sword
-(32513, 4416, 18), -- Dwarves
+(32513, 4408, 1), -- HP Modifiers
+(32513, 4409, 1), -- MP Modifiers
+(32513, 4410, 11), -- P. Atk. Modifiers
+(32513, 4411, 11), -- M. Atk. Modifiers
+(32513, 4412, 11), -- P. Def. Modifiers
+(32513, 4413, 11), -- M. Def. Modifiers
+(32513, 4414, 2), -- Armor Type
+(32513, 4415, 3), -- Weapon Type
+(32513, 4416, 18), -- Races
 -- Tarion
 (32514, 4045, 1), -- Resist Full Magic Attack
-(32514, 4408, 1), -- HP Increase (1x)
-(32514, 4409, 1), -- MP Increase (1x)
-(32514, 4410, 11), -- Average P. Atk.
-(32514, 4411, 11), -- Average M. Atk.
-(32514, 4412, 11), -- Average P. Def.
-(32514, 4413, 11), -- Average M. Def.
-(32514, 4414, 2), -- Standard Type
-(32514, 4415, 3), -- One-handed Sword
-(32514, 4416, 18), -- Dwarves
+(32514, 4408, 1), -- HP Modifiers
+(32514, 4409, 1), -- MP Modifiers
+(32514, 4410, 11), -- P. Atk. Modifiers
+(32514, 4411, 11), -- M. Atk. Modifiers
+(32514, 4412, 11), -- P. Def. Modifiers
+(32514, 4413, 11), -- M. Def. Modifiers
+(32514, 4414, 2), -- Armor Type
+(32514, 4415, 3), -- Weapon Type
+(32514, 4416, 18), -- Races
 -- Leo
 (32515, 4045, 1), -- Resist Full Magic Attack
-(32515, 4408, 1), -- HP Increase (1x)
-(32515, 4409, 1), -- MP Increase (1x)
-(32515, 4410, 11), -- Average P. Atk.
-(32515, 4411, 11), -- Average M. Atk.
-(32515, 4412, 11), -- Average P. Def.
-(32515, 4413, 11), -- Average M. Def.
-(32515, 4414, 2), -- Standard Type
-(32515, 4415, 3), -- One-handed Sword
-(32515, 4416, 18), -- Dwarves
+(32515, 4408, 1), -- HP Modifiers
+(32515, 4409, 1), -- MP Modifiers
+(32515, 4410, 11), -- P. Atk. Modifiers
+(32515, 4411, 11), -- M. Atk. Modifiers
+(32515, 4412, 11), -- P. Def. Modifiers
+(32515, 4413, 11), -- M. Def. Modifiers
+(32515, 4414, 2), -- Armor Type
+(32515, 4415, 3), -- Weapon Type
+(32515, 4416, 18), -- Races
 -- Candice
 (32516, 4045, 1), -- Resist Full Magic Attack
-(32516, 4408, 1), -- HP Increase (1x)
-(32516, 4409, 1), -- MP Increase (1x)
-(32516, 4410, 11), -- Average P. Atk.
-(32516, 4411, 11), -- Average M. Atk.
-(32516, 4412, 11), -- Average P. Def.
-(32516, 4413, 11), -- Average M. Def.
-(32516, 4414, 2), -- Standard Type
-(32516, 4415, 3), -- One-handed Sword
-(32516, 4416, 18), -- Dwarves
+(32516, 4408, 1), -- HP Modifiers
+(32516, 4409, 1), -- MP Modifiers
+(32516, 4410, 11), -- P. Atk. Modifiers
+(32516, 4411, 11), -- M. Atk. Modifiers
+(32516, 4412, 11), -- P. Def. Modifiers
+(32516, 4413, 11), -- M. Def. Modifiers
+(32516, 4414, 2), -- Armor Type
+(32516, 4415, 3), -- Weapon Type
+(32516, 4416, 18), -- Races
 -- Flight Control
 (32517, 4045, 1), -- Resist Full Magic Attack
-(32517, 4390, 1), -- Mystic Immunity
-(32517, 4408, 1), -- HP Increase (1x)
-(32517, 4409, 1), -- MP Increase (1x)
-(32517, 4410, 11), -- Average P. Atk.
-(32517, 4411, 11), -- Average M. Atk.
-(32517, 4412, 11), -- Average P. Def.
-(32517, 4413, 11), -- Average M. Def.
-(32517, 4414, 2), -- Standard Type
-(32517, 4415, 1), -- Bare Hands
-(32517, 4416, 2), -- Magic Creatures
+(32517, 4390, 1), -- NPC Abnormal Immunity
+(32517, 4408, 1), -- HP Modifiers
+(32517, 4409, 1), -- MP Modifiers
+(32517, 4410, 11), -- P. Atk. Modifiers
+(32517, 4411, 11), -- M. Atk. Modifiers
+(32517, 4412, 11), -- P. Def. Modifiers
+(32517, 4413, 11), -- M. Def. Modifiers
+(32517, 4414, 2), -- Armor Type
+(32517, 4415, 1), -- Weapon Type
+(32517, 4416, 2), -- Races
 -- Vortex Gate 
 (32518, 4045, 1), -- Resist Full Magic Attack
-(32518, 4390, 1), -- Mystic Immunity
-(32518, 4408, 1), -- HP Increase (1x)
-(32518, 4409, 1), -- MP Increase (1x)
-(32518, 4410, 11), -- Average P. Atk.
-(32518, 4411, 11), -- Average M. Atk.
-(32518, 4412, 11), -- Average P. Def.
-(32518, 4413, 11), -- Average M. Def.
-(32518, 4414, 2), -- Standard Type
-(32518, 4415, 1), -- Bare Hands
-(32518, 4416, 2), -- Magic Creatures
+(32518, 4390, 1), -- NPC Abnormal Immunity
+(32518, 4408, 1), -- HP Modifiers
+(32518, 4409, 1), -- MP Modifiers
+(32518, 4410, 11), -- P. Atk. Modifiers
+(32518, 4411, 11), -- M. Atk. Modifiers
+(32518, 4412, 11), -- P. Def. Modifiers
+(32518, 4413, 11), -- M. Def. Modifiers
+(32518, 4414, 2), -- Armor Type
+(32518, 4415, 1), -- Weapon Type
+(32518, 4416, 2), -- Races
 -- Vortex Gate 
 (32519, 4045, 1), -- Resist Full Magic Attack
-(32519, 4390, 1), -- Mystic Immunity
-(32519, 4408, 1), -- HP Increase (1x)
-(32519, 4409, 1), -- MP Increase (1x)
-(32519, 4410, 11), -- Average P. Atk.
-(32519, 4411, 11), -- Average M. Atk.
-(32519, 4412, 11), -- Average P. Def.
-(32519, 4413, 11), -- Average M. Def.
-(32519, 4414, 2), -- Standard Type
-(32519, 4415, 1), -- Bare Hands
-(32519, 4416, 2), -- Magic Creatures
+(32519, 4390, 1), -- NPC Abnormal Immunity
+(32519, 4408, 1), -- HP Modifiers
+(32519, 4409, 1), -- MP Modifiers
+(32519, 4410, 11), -- P. Atk. Modifiers
+(32519, 4411, 11), -- M. Atk. Modifiers
+(32519, 4412, 11), -- P. Def. Modifiers
+(32519, 4413, 11), -- M. Def. Modifiers
+(32519, 4414, 2), -- Armor Type
+(32519, 4415, 1), -- Weapon Type
+(32519, 4416, 2), -- Races
 -- Emery Converter
 (32520, 4045, 1), -- Resist Full Magic Attack
-(32520, 4390, 1), -- Mystic Immunity
-(32520, 4408, 1), -- HP Increase (1x)
-(32520, 4409, 1), -- MP Increase (1x)
-(32520, 4410, 11), -- Average P. Atk.
-(32520, 4411, 11), -- Average M. Atk.
-(32520, 4412, 11), -- Average P. Def.
-(32520, 4413, 11), -- Average M. Def.
-(32520, 4414, 2), -- Standard Type
-(32520, 4415, 1), -- Bare Hands
-(32520, 4416, 19), -- Others
+(32520, 4390, 1), -- NPC Abnormal Immunity
+(32520, 4408, 1), -- HP Modifiers
+(32520, 4409, 1), -- MP Modifiers
+(32520, 4410, 11), -- P. Atk. Modifiers
+(32520, 4411, 11), -- M. Atk. Modifiers
+(32520, 4412, 11), -- P. Def. Modifiers
+(32520, 4413, 11), -- M. Def. Modifiers
+(32520, 4414, 2), -- Armor Type
+(32520, 4415, 1), -- Weapon Type
+(32520, 4416, 19), -- Races
 -- Entrance Manager
 (32521, 4045, 1), -- Resist Full Magic Attack
-(32521, 4408, 1), -- HP Increase (1x)
-(32521, 4409, 1), -- MP Increase (1x)
-(32521, 4410, 11), -- Average P. Atk.
-(32521, 4411, 11), -- Average M. Atk.
-(32521, 4412, 11), -- Average P. Def.
-(32521, 4413, 11), -- Average M. Def.
-(32521, 4414, 2), -- Standard Type
-(32521, 4415, 3), -- One-handed Sword
-(32521, 4416, 18), -- Dwarves
+(32521, 4408, 1), -- HP Modifiers
+(32521, 4409, 1), -- MP Modifiers
+(32521, 4410, 11), -- P. Atk. Modifiers
+(32521, 4411, 11), -- M. Atk. Modifiers
+(32521, 4412, 11), -- P. Def. Modifiers
+(32521, 4413, 11), -- M. Def. Modifiers
+(32521, 4414, 2), -- Armor Type
+(32521, 4415, 3), -- Weapon Type
+(32521, 4416, 18), -- Races
 -- Entrance Manager
 (32522, 4045, 1), -- Resist Full Magic Attack
-(32522, 4408, 1), -- HP Increase (1x)
-(32522, 4409, 1), -- MP Increase (1x)
-(32522, 4410, 11), -- Average P. Atk.
-(32522, 4411, 11), -- Average M. Atk.
-(32522, 4412, 11), -- Average P. Def.
-(32522, 4413, 11), -- Average M. Def.
-(32522, 4414, 2), -- Standard Type
-(32522, 4415, 3), -- One-handed Sword
-(32522, 4416, 18), -- Dwarves
+(32522, 4408, 1), -- HP Modifiers
+(32522, 4409, 1), -- MP Modifiers
+(32522, 4410, 11), -- P. Atk. Modifiers
+(32522, 4411, 11), -- M. Atk. Modifiers
+(32522, 4412, 11), -- P. Def. Modifiers
+(32522, 4413, 11), -- M. Def. Modifiers
+(32522, 4414, 2), -- Armor Type
+(32522, 4415, 3), -- Weapon Type
+(32522, 4416, 18), -- Races
 -- Entrance Manager
 (32523, 4045, 1), -- Resist Full Magic Attack
-(32523, 4408, 1), -- HP Increase (1x)
-(32523, 4409, 1), -- MP Increase (1x)
-(32523, 4410, 11), -- Average P. Atk.
-(32523, 4411, 11), -- Average M. Atk.
-(32523, 4412, 11), -- Average P. Def.
-(32523, 4413, 11), -- Average M. Def.
-(32523, 4414, 2), -- Standard Type
-(32523, 4415, 3), -- One-handed Sword
-(32523, 4416, 18), -- Dwarves
+(32523, 4408, 1), -- HP Modifiers
+(32523, 4409, 1), -- MP Modifiers
+(32523, 4410, 11), -- P. Atk. Modifiers
+(32523, 4411, 11), -- M. Atk. Modifiers
+(32523, 4412, 11), -- P. Def. Modifiers
+(32523, 4413, 11), -- M. Def. Modifiers
+(32523, 4414, 2), -- Armor Type
+(32523, 4415, 3), -- Weapon Type
+(32523, 4416, 18), -- Races
 -- Entrance Manager
 (32524, 4045, 1), -- Resist Full Magic Attack
-(32524, 4408, 1), -- HP Increase (1x)
-(32524, 4409, 1), -- MP Increase (1x)
-(32524, 4410, 11), -- Average P. Atk.
-(32524, 4411, 11), -- Average M. Atk.
-(32524, 4412, 11), -- Average P. Def.
-(32524, 4413, 11), -- Average M. Def.
-(32524, 4414, 2), -- Standard Type
-(32524, 4415, 3), -- One-handed Sword
-(32524, 4416, 18), -- Dwarves
+(32524, 4408, 1), -- HP Modifiers
+(32524, 4409, 1), -- MP Modifiers
+(32524, 4410, 11), -- P. Atk. Modifiers
+(32524, 4411, 11), -- M. Atk. Modifiers
+(32524, 4412, 11), -- P. Def. Modifiers
+(32524, 4413, 11), -- M. Def. Modifiers
+(32524, 4414, 2), -- Armor Type
+(32524, 4415, 3), -- Weapon Type
+(32524, 4416, 18), -- Races
 -- Tiat
 (32525, 4045, 1), -- Resist Full Magic Attack
-(32525, 4408, 1), -- HP Increase (1x)
-(32525, 4409, 1), -- MP Increase (1x)
-(32525, 4410, 11), -- Average P. Atk.
-(32525, 4411, 11), -- Average M. Atk.
-(32525, 4412, 11), -- Average P. Def.
-(32525, 4413, 11), -- Average M. Def.
-(32525, 4414, 2), -- Standard Type
-(32525, 4415, 1), -- Bare Hands
-(32525, 4416, 14), -- Humans
+(32525, 4408, 1), -- HP Modifiers
+(32525, 4409, 1), -- MP Modifiers
+(32525, 4410, 11), -- P. Atk. Modifiers
+(32525, 4411, 11), -- M. Atk. Modifiers
+(32525, 4412, 11), -- P. Def. Modifiers
+(32525, 4413, 11), -- M. Def. Modifiers
+(32525, 4414, 2), -- Armor Type
+(32525, 4415, 1), -- Weapon Type
+(32525, 4416, 14), -- Races
 -- Allenos
 (32526, 4045, 1), -- Resist Full Magic Attack
-(32526, 4408, 1), -- HP Increase (1x)
-(32526, 4409, 1), -- MP Increase (1x)
-(32526, 4410, 11), -- Average P. Atk.
-(32526, 4411, 11), -- Average M. Atk.
-(32526, 4412, 11), -- Average P. Def.
-(32526, 4413, 11), -- Average M. Def.
-(32526, 4414, 2), -- Standard Type
-(32526, 4415, 1), -- Bare Hands
-(32526, 4416, 14), -- Humans
+(32526, 4408, 1), -- HP Modifiers
+(32526, 4409, 1), -- MP Modifiers
+(32526, 4410, 11), -- P. Atk. Modifiers
+(32526, 4411, 11), -- M. Atk. Modifiers
+(32526, 4412, 11), -- P. Def. Modifiers
+(32526, 4413, 11), -- M. Def. Modifiers
+(32526, 4414, 2), -- Armor Type
+(32526, 4415, 1), -- Weapon Type
+(32526, 4416, 14), -- Races
 -- Edric
 (32527, 4045, 1), -- Resist Full Magic Attack
-(32527, 4408, 1), -- HP Increase (1x)
-(32527, 4409, 1), -- MP Increase (1x)
-(32527, 4410, 11), -- Average P. Atk.
-(32527, 4411, 11), -- Average M. Atk.
-(32527, 4412, 11), -- Average P. Def.
-(32527, 4413, 11), -- Average M. Def.
-(32527, 4414, 2), -- Standard Type
-(32527, 4415, 1), -- Bare Hands
-(32527, 4416, 14), -- Humans
+(32527, 4408, 1), -- HP Modifiers
+(32527, 4409, 1), -- MP Modifiers
+(32527, 4410, 11), -- P. Atk. Modifiers
+(32527, 4411, 11), -- M. Atk. Modifiers
+(32527, 4412, 11), -- P. Def. Modifiers
+(32527, 4413, 11), -- M. Def. Modifiers
+(32527, 4414, 2), -- Armor Type
+(32527, 4415, 1), -- Weapon Type
+(32527, 4416, 14), -- Races
 -- Medibal's Corpse
 (32528, 4045, 1), -- Resist Full Magic Attack
-(32528, 4408, 1), -- HP Increase (1x)
-(32528, 4409, 1), -- MP Increase (1x)
-(32528, 4410, 11), -- Average P. Atk.
-(32528, 4411, 11), -- Average M. Atk.
-(32528, 4412, 11), -- Average P. Def.
-(32528, 4413, 11), -- Average M. Def.
-(32528, 4414, 2), -- Standard Type
-(32528, 4415, 1), -- Bare Hands
-(32528, 4416, 14), -- Humans
+(32528, 4408, 1), -- HP Modifiers
+(32528, 4409, 1), -- MP Modifiers
+(32528, 4410, 11), -- P. Atk. Modifiers
+(32528, 4411, 11), -- M. Atk. Modifiers
+(32528, 4412, 11), -- P. Def. Modifiers
+(32528, 4413, 11), -- M. Def. Modifiers
+(32528, 4414, 2), -- Armor Type
+(32528, 4415, 1), -- Weapon Type
+(32528, 4416, 14), -- Races
 -- 
 (32529, 4045, 1), -- Resist Full Magic Attack
-(32529, 4390, 1), -- Mystic Immunity
-(32529, 4408, 1), -- HP Increase (1x)
-(32529, 4409, 1), -- MP Increase (1x)
-(32529, 4410, 11), -- Average P. Atk.
-(32529, 4411, 11), -- Average M. Atk.
-(32529, 4412, 11), -- Average P. Def.
-(32529, 4413, 11), -- Average M. Def.
-(32529, 4414, 2), -- Standard Type
-(32529, 4415, 1), -- Bare Hands
-(32529, 4416, 2), -- Magic Creatures
+(32529, 4390, 1), -- NPC Abnormal Immunity
+(32529, 4408, 1), -- HP Modifiers
+(32529, 4409, 1), -- MP Modifiers
+(32529, 4410, 11), -- P. Atk. Modifiers
+(32529, 4411, 11), -- M. Atk. Modifiers
+(32529, 4412, 11), -- P. Def. Modifiers
+(32529, 4413, 11), -- M. Def. Modifiers
+(32529, 4414, 2), -- Armor Type
+(32529, 4415, 1), -- Weapon Type
+(32529, 4416, 2), -- Races
 -- Tepios
 (32530, 4045, 1), -- Resist Full Magic Attack
-(32530, 4408, 1), -- HP Increase (1x)
-(32530, 4409, 1), -- MP Increase (1x)
-(32530, 4410, 11), -- Average P. Atk.
-(32530, 4411, 11), -- Average M. Atk.
-(32530, 4412, 11), -- Average P. Def.
-(32530, 4413, 11), -- Average M. Def.
-(32530, 4414, 2), -- Standard Type
-(32530, 4415, 1), -- Bare Hands
-(32530, 4416, 14), -- Humans
+(32530, 4408, 1), -- HP Modifiers
+(32530, 4409, 1), -- MP Modifiers
+(32530, 4410, 11), -- P. Atk. Modifiers
+(32530, 4411, 11), -- M. Atk. Modifiers
+(32530, 4412, 11), -- P. Def. Modifiers
+(32530, 4413, 11), -- M. Def. Modifiers
+(32530, 4414, 2), -- Armor Type
+(32530, 4415, 1), -- Weapon Type
+(32530, 4416, 14), -- Races
 -- Destroyed Tumor
 (32531, 4045, 1), -- Resist Full Magic Attack
-(32531, 4390, 1), -- Mystic Immunity
-(32531, 4408, 1), -- HP Increase (1x)
-(32531, 4409, 1), -- MP Increase (1x)
-(32531, 4410, 11), -- Average P. Atk.
-(32531, 4411, 11), -- Average M. Atk.
-(32531, 4412, 11), -- Average P. Def.
-(32531, 4413, 11), -- Average M. Def.
-(32531, 4414, 2), -- Standard Type
-(32531, 4415, 1), -- Bare Hands
-(32531, 4416, 2), -- Magic Creatures
+(32531, 4390, 1), -- NPC Abnormal Immunity
+(32531, 4408, 1), -- HP Modifiers
+(32531, 4409, 1), -- MP Modifiers
+(32531, 4410, 11), -- P. Atk. Modifiers
+(32531, 4411, 11), -- M. Atk. Modifiers
+(32531, 4412, 11), -- P. Def. Modifiers
+(32531, 4413, 11), -- M. Def. Modifiers
+(32531, 4414, 2), -- Armor Type
+(32531, 4415, 1), -- Weapon Type
+(32531, 4416, 2), -- Races
 -- 
 (32532, 4045, 1), -- Resist Full Magic Attack
-(32532, 4390, 1), -- Mystic Immunity
-(32532, 4408, 1), -- HP Increase (1x)
-(32532, 4409, 1), -- MP Increase (1x)
-(32532, 4410, 11), -- Average P. Atk.
-(32532, 4411, 11), -- Average M. Atk.
-(32532, 4412, 11), -- Average P. Def.
-(32532, 4413, 11), -- Average M. Def.
-(32532, 4414, 2), -- Standard Type
-(32532, 4415, 1), -- Bare Hands
-(32532, 4416, 2), -- Magic Creatures
+(32532, 4390, 1), -- NPC Abnormal Immunity
+(32532, 4408, 1), -- HP Modifiers
+(32532, 4409, 1), -- MP Modifiers
+(32532, 4410, 11), -- P. Atk. Modifiers
+(32532, 4411, 11), -- M. Atk. Modifiers
+(32532, 4412, 11), -- P. Def. Modifiers
+(32532, 4413, 11), -- M. Def. Modifiers
+(32532, 4414, 2), -- Armor Type
+(32532, 4415, 1), -- Weapon Type
+(32532, 4416, 2), -- Races
 -- 
 (32533, 4045, 1), -- Resist Full Magic Attack
-(32533, 4390, 1), -- Mystic Immunity
-(32533, 4408, 1), -- HP Increase (1x)
-(32533, 4409, 1), -- MP Increase (1x)
-(32533, 4410, 11), -- Average P. Atk.
-(32533, 4411, 11), -- Average M. Atk.
-(32533, 4412, 11), -- Average P. Def.
-(32533, 4413, 11), -- Average M. Def.
-(32533, 4414, 2), -- Standard Type
-(32533, 4415, 1), -- Bare Hands
-(32533, 4416, 2), -- Magic Creatures
+(32533, 4390, 1), -- NPC Abnormal Immunity
+(32533, 4408, 1), -- HP Modifiers
+(32533, 4409, 1), -- MP Modifiers
+(32533, 4410, 11), -- P. Atk. Modifiers
+(32533, 4411, 11), -- M. Atk. Modifiers
+(32533, 4412, 11), -- P. Def. Modifiers
+(32533, 4413, 11), -- M. Def. Modifiers
+(32533, 4414, 2), -- Armor Type
+(32533, 4415, 1), -- Weapon Type
+(32533, 4416, 2), -- Races
 -- Jaedin
 (32534, 4045, 1), -- Resist Full Magic Attack
-(32534, 4408, 1), -- HP Increase (1x)
-(32534, 4409, 1), -- MP Increase (1x)
-(32534, 4410, 11), -- Average P. Atk.
-(32534, 4411, 11), -- Average M. Atk.
-(32534, 4412, 11), -- Average P. Def.
-(32534, 4413, 11), -- Average M. Def.
-(32534, 4414, 2), -- Standard Type
-(32534, 4415, 1), -- Bare Hands
-(32534, 4416, 6), -- Humanoids
+(32534, 4408, 1), -- HP Modifiers
+(32534, 4409, 1), -- MP Modifiers
+(32534, 4410, 11), -- P. Atk. Modifiers
+(32534, 4411, 11), -- M. Atk. Modifiers
+(32534, 4412, 11), -- P. Def. Modifiers
+(32534, 4413, 11), -- M. Def. Modifiers
+(32534, 4414, 2), -- Armor Type
+(32534, 4415, 1), -- Weapon Type
+(32534, 4416, 6), -- Races
 -- Destroyed Tumor
 (32535, 4045, 1), -- Resist Full Magic Attack
-(32535, 4390, 1), -- Mystic Immunity
-(32535, 4408, 1), -- HP Increase (1x)
-(32535, 4409, 1), -- MP Increase (1x)
-(32535, 4410, 11), -- Average P. Atk.
-(32535, 4411, 11), -- Average M. Atk.
-(32535, 4412, 11), -- Average P. Def.
-(32535, 4413, 11), -- Average M. Def.
-(32535, 4414, 2), -- Standard Type
-(32535, 4415, 1), -- Bare Hands
-(32535, 4416, 2), -- Magic Creatures
+(32535, 4390, 1), -- NPC Abnormal Immunity
+(32535, 4408, 1), -- HP Modifiers
+(32535, 4409, 1), -- MP Modifiers
+(32535, 4410, 11), -- P. Atk. Modifiers
+(32535, 4411, 11), -- M. Atk. Modifiers
+(32535, 4412, 11), -- P. Def. Modifiers
+(32535, 4413, 11), -- M. Def. Modifiers
+(32535, 4414, 2), -- Armor Type
+(32535, 4415, 1), -- Weapon Type
+(32535, 4416, 2), -- Races
 -- Destroyed Tumor
 (32536, 4045, 1), -- Resist Full Magic Attack
-(32536, 4390, 1), -- Mystic Immunity
-(32536, 4408, 1), -- HP Increase (1x)
-(32536, 4409, 1), -- MP Increase (1x)
-(32536, 4410, 11), -- Average P. Atk.
-(32536, 4411, 11), -- Average M. Atk.
-(32536, 4412, 11), -- Average P. Def.
-(32536, 4413, 11), -- Average M. Def.
-(32536, 4414, 2), -- Standard Type
-(32536, 4415, 1), -- Bare Hands
-(32536, 4416, 2), -- Magic Creatures
+(32536, 4390, 1), -- NPC Abnormal Immunity
+(32536, 4408, 1), -- HP Modifiers
+(32536, 4409, 1), -- MP Modifiers
+(32536, 4410, 11), -- P. Atk. Modifiers
+(32536, 4411, 11), -- M. Atk. Modifiers
+(32536, 4412, 11), -- P. Def. Modifiers
+(32536, 4413, 11), -- M. Def. Modifiers
+(32536, 4414, 2), -- Armor Type
+(32536, 4415, 1), -- Weapon Type
+(32536, 4416, 2), -- Races
 -- Mouth of Ekimus
 (32537, 4045, 1), -- Resist Full Magic Attack
-(32537, 4390, 1), -- Mystic Immunity
-(32537, 4408, 1), -- HP Increase (1x)
-(32537, 4409, 1), -- MP Increase (1x)
-(32537, 4410, 11), -- Average P. Atk.
-(32537, 4411, 11), -- Average M. Atk.
-(32537, 4412, 11), -- Average P. Def.
-(32537, 4413, 11), -- Average M. Def.
-(32537, 4414, 2), -- Standard Type
-(32537, 4415, 1), -- Bare Hands
-(32537, 4416, 2), -- Magic Creatures
+(32537, 4390, 1), -- NPC Abnormal Immunity
+(32537, 4408, 1), -- HP Modifiers
+(32537, 4409, 1), -- MP Modifiers
+(32537, 4410, 11), -- P. Atk. Modifiers
+(32537, 4411, 11), -- M. Atk. Modifiers
+(32537, 4412, 11), -- P. Def. Modifiers
+(32537, 4413, 11), -- M. Def. Modifiers
+(32537, 4414, 2), -- Armor Type
+(32537, 4415, 1), -- Weapon Type
+(32537, 4416, 2), -- Races
 -- Closed Mouth of Ekimus
 (32538, 4045, 1), -- Resist Full Magic Attack
-(32538, 4390, 1), -- Mystic Immunity
-(32538, 4408, 1), -- HP Increase (1x)
-(32538, 4409, 1), -- MP Increase (1x)
-(32538, 4410, 11), -- Average P. Atk.
-(32538, 4411, 11), -- Average M. Atk.
-(32538, 4412, 11), -- Average P. Def.
-(32538, 4413, 11), -- Average M. Def.
-(32538, 4414, 2), -- Standard Type
-(32538, 4415, 1), -- Bare Hands
-(32538, 4416, 2), -- Magic Creatures
+(32538, 4390, 1), -- NPC Abnormal Immunity
+(32538, 4408, 1), -- HP Modifiers
+(32538, 4409, 1), -- MP Modifiers
+(32538, 4410, 11), -- P. Atk. Modifiers
+(32538, 4411, 11), -- M. Atk. Modifiers
+(32538, 4412, 11), -- P. Def. Modifiers
+(32538, 4413, 11), -- M. Def. Modifiers
+(32538, 4414, 2), -- Armor Type
+(32538, 4415, 1), -- Weapon Type
+(32538, 4416, 2), -- Races
 -- Gatekeeper of Abyss
 (32539, 4045, 1), -- Resist Full Magic Attack
-(32539, 4390, 1), -- Mystic Immunity
-(32539, 4408, 1), -- HP Increase (1x)
-(32539, 4409, 1), -- MP Increase (1x)
-(32539, 4410, 11), -- Average P. Atk.
-(32539, 4411, 11), -- Average M. Atk.
-(32539, 4412, 11), -- Average P. Def.
-(32539, 4413, 11), -- Average M. Def.
-(32539, 4414, 2), -- Standard Type
-(32539, 4415, 1), -- Bare Hands
-(32539, 4416, 2), -- Magic Creatures
+(32539, 4390, 1), -- NPC Abnormal Immunity
+(32539, 4408, 1), -- HP Modifiers
+(32539, 4409, 1), -- MP Modifiers
+(32539, 4410, 11), -- P. Atk. Modifiers
+(32539, 4411, 11), -- M. Atk. Modifiers
+(32539, 4412, 11), -- P. Def. Modifiers
+(32539, 4413, 11), -- M. Def. Modifiers
+(32539, 4414, 2), -- Armor Type
+(32539, 4415, 1), -- Weapon Type
+(32539, 4416, 2), -- Races
 -- Gatekeeper of Abyss
 (32540, 4045, 1), -- Resist Full Magic Attack
-(32540, 4390, 1), -- Mystic Immunity
-(32540, 4408, 1), -- HP Increase (1x)
-(32540, 4409, 1), -- MP Increase (1x)
-(32540, 4410, 11), -- Average P. Atk.
-(32540, 4411, 11), -- Average M. Atk.
-(32540, 4412, 11), -- Average P. Def.
-(32540, 4413, 11), -- Average M. Def.
-(32540, 4414, 2), -- Standard Type
-(32540, 4415, 1), -- Bare Hands
-(32540, 4416, 2), -- Magic Creatures
+(32540, 4390, 1), -- NPC Abnormal Immunity
+(32540, 4408, 1), -- HP Modifiers
+(32540, 4409, 1), -- MP Modifiers
+(32540, 4410, 11), -- P. Atk. Modifiers
+(32540, 4411, 11), -- M. Atk. Modifiers
+(32540, 4412, 11), -- P. Def. Modifiers
+(32540, 4413, 11), -- M. Def. Modifiers
+(32540, 4414, 2), -- Armor Type
+(32540, 4415, 1), -- Weapon Type
+(32540, 4416, 2), -- Races
 -- Unstable Seed of Generation
 (32541, 4045, 1), -- Resist Full Magic Attack
-(32541, 4390, 1), -- Mystic Immunity
-(32541, 4408, 1), -- HP Increase (1x)
-(32541, 4409, 1), -- MP Increase (1x)
-(32541, 4410, 11), -- Average P. Atk.
-(32541, 4411, 11), -- Average M. Atk.
-(32541, 4412, 11), -- Average P. Def.
-(32541, 4413, 11), -- Average M. Def.
-(32541, 4414, 2), -- Standard Type
-(32541, 4415, 1), -- Bare Hands
-(32541, 4416, 2), -- Magic Creatures
+(32541, 4390, 1), -- NPC Abnormal Immunity
+(32541, 4408, 1), -- HP Modifiers
+(32541, 4409, 1), -- MP Modifiers
+(32541, 4410, 11), -- P. Atk. Modifiers
+(32541, 4411, 11), -- M. Atk. Modifiers
+(32541, 4412, 11), -- P. Def. Modifiers
+(32541, 4413, 11), -- M. Def. Modifiers
+(32541, 4414, 2), -- Armor Type
+(32541, 4415, 1), -- Weapon Type
+(32541, 4416, 2), -- Races
 -- Stabilized Seed of Generation
 (32542, 4045, 1), -- Resist Full Magic Attack
-(32542, 4390, 1), -- Mystic Immunity
-(32542, 4408, 1), -- HP Increase (1x)
-(32542, 4409, 1), -- MP Increase (1x)
-(32542, 4410, 11), -- Average P. Atk.
-(32542, 4411, 11), -- Average M. Atk.
-(32542, 4412, 11), -- Average P. Def.
-(32542, 4413, 11), -- Average M. Def.
-(32542, 4414, 2), -- Standard Type
-(32542, 4415, 1), -- Bare Hands
-(32542, 4416, 2), -- Magic Creatures
+(32542, 4390, 1), -- NPC Abnormal Immunity
+(32542, 4408, 1), -- HP Modifiers
+(32542, 4409, 1), -- MP Modifiers
+(32542, 4410, 11), -- P. Atk. Modifiers
+(32542, 4411, 11), -- M. Atk. Modifiers
+(32542, 4412, 11), -- P. Def. Modifiers
+(32542, 4413, 11), -- M. Def. Modifiers
+(32542, 4414, 2), -- Armor Type
+(32542, 4415, 1), -- Weapon Type
+(32542, 4416, 2), -- Races
 -- Seed of Generation
 (32544, 4045, 1), -- Resist Full Magic Attack
-(32544, 4390, 1), -- Mystic Immunity
-(32544, 4408, 1), -- HP Increase (1x)
-(32544, 4409, 1), -- MP Increase (1x)
-(32544, 4410, 11), -- Average P. Atk.
-(32544, 4411, 11), -- Average M. Atk.
-(32544, 4412, 11), -- Average P. Def.
-(32544, 4413, 11), -- Average M. Def.
-(32544, 4414, 2), -- Standard Type
-(32544, 4415, 1), -- Bare Hands
-(32544, 4416, 2), -- Magic Creatures
+(32544, 4390, 1), -- NPC Abnormal Immunity
+(32544, 4408, 1), -- HP Modifiers
+(32544, 4409, 1), -- MP Modifiers
+(32544, 4410, 11), -- P. Atk. Modifiers
+(32544, 4411, 11), -- M. Atk. Modifiers
+(32544, 4412, 11), -- P. Def. Modifiers
+(32544, 4413, 11), -- M. Def. Modifiers
+(32544, 4414, 2), -- Armor Type
+(32544, 4415, 1), -- Weapon Type
+(32544, 4416, 2), -- Races
 -- Asyatei
 (32546, 4045, 1), -- Resist Full Magic Attack
-(32546, 4408, 1), -- HP Increase (1x)
-(32546, 4409, 1), -- MP Increase (1x)
-(32546, 4410, 11), -- Average P. Atk.
-(32546, 4411, 11), -- Average M. Atk.
-(32546, 4412, 11), -- Average P. Def.
-(32546, 4413, 11), -- Average M. Def.
-(32546, 4414, 2), -- Standard Type
-(32546, 4415, 1), -- Bare Hands
-(32546, 4416, 1), -- Undead
+(32546, 4408, 1), -- HP Modifiers
+(32546, 4409, 1), -- MP Modifiers
+(32546, 4410, 11), -- P. Atk. Modifiers
+(32546, 4411, 11), -- M. Atk. Modifiers
+(32546, 4412, 11), -- P. Def. Modifiers
+(32546, 4413, 11), -- M. Def. Modifiers
+(32546, 4414, 2), -- Armor Type
+(32546, 4415, 1), -- Weapon Type
+(32546, 4416, 1), -- Races
 -- Center Tumor
 (32547, 4045, 1), -- Resist Full Magic Attack
-(32547, 4390, 1), -- Mystic Immunity
-(32547, 4408, 1), -- HP Increase (1x)
-(32547, 4409, 1), -- MP Increase (1x)
-(32547, 4410, 11), -- Average P. Atk.
-(32547, 4411, 11), -- Average M. Atk.
-(32547, 4412, 11), -- Average P. Def.
-(32547, 4413, 11), -- Average M. Def.
-(32547, 4414, 2), -- Standard Type
-(32547, 4415, 1), -- Bare Hands
-(32547, 4416, 2), -- Magic Creatures
+(32547, 4390, 1), -- NPC Abnormal Immunity
+(32547, 4408, 1), -- HP Modifiers
+(32547, 4409, 1), -- MP Modifiers
+(32547, 4410, 11), -- P. Atk. Modifiers
+(32547, 4411, 11), -- M. Atk. Modifiers
+(32547, 4412, 11), -- P. Def. Modifiers
+(32547, 4413, 11), -- M. Def. Modifiers
+(32547, 4414, 2), -- Armor Type
+(32547, 4415, 1), -- Weapon Type
+(32547, 4416, 2), -- Races
 -- Keucereus
 (32548, 4045, 1), -- Resist Full Magic Attack
-(32548, 4408, 1), -- HP Increase (1x)
-(32548, 4409, 1), -- MP Increase (1x)
-(32548, 4410, 11), -- Average P. Atk.
-(32548, 4411, 11), -- Average M. Atk.
-(32548, 4412, 11), -- Average P. Def.
-(32548, 4413, 11), -- Average M. Def.
-(32548, 4414, 2), -- Standard Type
-(32548, 4415, 1), -- Bare Hands
-(32548, 4416, 14), -- Humans
+(32548, 4408, 1), -- HP Modifiers
+(32548, 4409, 1), -- MP Modifiers
+(32548, 4410, 11), -- P. Atk. Modifiers
+(32548, 4411, 11), -- M. Atk. Modifiers
+(32548, 4412, 11), -- P. Def. Modifiers
+(32548, 4413, 11), -- M. Def. Modifiers
+(32548, 4414, 2), -- Armor Type
+(32548, 4415, 1), -- Weapon Type
+(32548, 4416, 14), -- Races
 -- Dilios
 (32549, 4045, 1), -- Resist Full Magic Attack
-(32549, 4408, 1), -- HP Increase (1x)
-(32549, 4409, 1), -- MP Increase (1x)
-(32549, 4410, 11), -- Average P. Atk.
-(32549, 4411, 11), -- Average M. Atk.
-(32549, 4412, 11), -- Average P. Def.
-(32549, 4413, 11), -- Average M. Def.
-(32549, 4414, 2), -- Standard Type
-(32549, 4415, 1), -- Bare Hands
-(32549, 4416, 14), -- Humans
+(32549, 4408, 1), -- HP Modifiers
+(32549, 4409, 1), -- MP Modifiers
+(32549, 4410, 11), -- P. Atk. Modifiers
+(32549, 4411, 11), -- M. Atk. Modifiers
+(32549, 4412, 11), -- P. Def. Modifiers
+(32549, 4413, 11), -- M. Def. Modifiers
+(32549, 4414, 2), -- Armor Type
+(32549, 4415, 1), -- Weapon Type
+(32549, 4416, 14), -- Races
 -- Kirklan
 (32550, 4045, 1), -- Resist Full Magic Attack
-(32550, 4408, 1), -- HP Increase (1x)
-(32550, 4409, 1), -- MP Increase (1x)
-(32550, 4410, 11), -- Average P. Atk.
-(32550, 4411, 11), -- Average M. Atk.
-(32550, 4412, 11), -- Average P. Def.
-(32550, 4413, 11), -- Average M. Def.
-(32550, 4414, 2), -- Standard Type
-(32550, 4415, 1), -- Bare Hands
-(32550, 4416, 14), -- Humans
+(32550, 4408, 1), -- HP Modifiers
+(32550, 4409, 1), -- MP Modifiers
+(32550, 4410, 11), -- P. Atk. Modifiers
+(32550, 4411, 11), -- M. Atk. Modifiers
+(32550, 4412, 11), -- P. Def. Modifiers
+(32550, 4413, 11), -- M. Def. Modifiers
+(32550, 4414, 2), -- Armor Type
+(32550, 4415, 1), -- Weapon Type
+(32550, 4416, 14), -- Races
 -- Noiless
 (32551, 4045, 1), -- Resist Full Magic Attack
-(32551, 4408, 1), -- HP Increase (1x)
-(32551, 4409, 1), -- MP Increase (1x)
-(32551, 4410, 11), -- Average P. Atk.
-(32551, 4411, 11), -- Average M. Atk.
-(32551, 4412, 11), -- Average P. Def.
-(32551, 4413, 11), -- Average M. Def.
-(32551, 4414, 2), -- Standard Type
-(32551, 4415, 1), -- Bare Hands
-(32551, 4416, 14), -- Humans
+(32551, 4408, 1), -- HP Modifiers
+(32551, 4409, 1), -- MP Modifiers
+(32551, 4410, 11), -- P. Atk. Modifiers
+(32551, 4411, 11), -- M. Atk. Modifiers
+(32551, 4412, 11), -- P. Def. Modifiers
+(32551, 4413, 11), -- M. Def. Modifiers
+(32551, 4414, 2), -- Armor Type
+(32551, 4415, 1), -- Weapon Type
+(32551, 4416, 14), -- Races
 -- Tomaris
 (32552, 4045, 1), -- Resist Full Magic Attack
-(32552, 4408, 1), -- HP Increase (1x)
-(32552, 4409, 1), -- MP Increase (1x)
-(32552, 4410, 11), -- Average P. Atk.
-(32552, 4411, 11), -- Average M. Atk.
-(32552, 4412, 11), -- Average P. Def.
-(32552, 4413, 11), -- Average M. Def.
-(32552, 4414, 2), -- Standard Type
-(32552, 4415, 1), -- Bare Hands
-(32552, 4416, 14), -- Humans
+(32552, 4408, 1), -- HP Modifiers
+(32552, 4409, 1), -- MP Modifiers
+(32552, 4410, 11), -- P. Atk. Modifiers
+(32552, 4411, 11), -- M. Atk. Modifiers
+(32552, 4412, 11), -- P. Def. Modifiers
+(32552, 4413, 11), -- M. Def. Modifiers
+(32552, 4414, 2), -- Armor Type
+(32552, 4415, 1), -- Weapon Type
+(32552, 4416, 14), -- Races
 -- Jisans
 (32553, 4045, 1), -- Resist Full Magic Attack
-(32553, 4408, 1), -- HP Increase (1x)
-(32553, 4409, 1), -- MP Increase (1x)
-(32553, 4410, 11), -- Average P. Atk.
-(32553, 4411, 11), -- Average M. Atk.
-(32553, 4412, 11), -- Average P. Def.
-(32553, 4413, 11), -- Average M. Def.
-(32553, 4414, 2), -- Standard Type
-(32553, 4415, 1), -- Bare Hands
-(32553, 4416, 14), -- Humans
+(32553, 4408, 1), -- HP Modifiers
+(32553, 4409, 1), -- MP Modifiers
+(32553, 4410, 11), -- P. Atk. Modifiers
+(32553, 4411, 11), -- M. Atk. Modifiers
+(32553, 4412, 11), -- P. Def. Modifiers
+(32553, 4413, 11), -- M. Def. Modifiers
+(32553, 4414, 2), -- Armor Type
+(32553, 4415, 1), -- Weapon Type
+(32553, 4416, 14), -- Races
 -- Moira
 (32554, 4045, 1), -- Resist Full Magic Attack
-(32554, 4408, 1), -- HP Increase (1x)
-(32554, 4409, 1), -- MP Increase (1x)
-(32554, 4410, 11), -- Average P. Atk.
-(32554, 4411, 11), -- Average M. Atk.
-(32554, 4412, 11), -- Average P. Def.
-(32554, 4413, 11), -- Average M. Def.
-(32554, 4414, 2), -- Standard Type
-(32554, 4415, 1), -- Bare Hands
-(32554, 4416, 14), -- Humans
+(32554, 4408, 1), -- HP Modifiers
+(32554, 4409, 1), -- MP Modifiers
+(32554, 4410, 11), -- P. Atk. Modifiers
+(32554, 4411, 11), -- M. Atk. Modifiers
+(32554, 4412, 11), -- P. Def. Modifiers
+(32554, 4413, 11), -- M. Def. Modifiers
+(32554, 4414, 2), -- Armor Type
+(32554, 4415, 1), -- Weapon Type
+(32554, 4416, 14), -- Races
 -- Tenius
 (32555, 4045, 1), -- Resist Full Magic Attack
-(32555, 4408, 1), -- HP Increase (1x)
-(32555, 4409, 1), -- MP Increase (1x)
-(32555, 4410, 11), -- Average P. Atk.
-(32555, 4411, 11), -- Average M. Atk.
-(32555, 4412, 11), -- Average P. Def.
-(32555, 4413, 11), -- Average M. Def.
-(32555, 4414, 2), -- Standard Type
-(32555, 4415, 1), -- Bare Hands
-(32555, 4416, 14), -- Humans
+(32555, 4408, 1), -- HP Modifiers
+(32555, 4409, 1), -- MP Modifiers
+(32555, 4410, 11), -- P. Atk. Modifiers
+(32555, 4411, 11), -- M. Atk. Modifiers
+(32555, 4412, 11), -- P. Def. Modifiers
+(32555, 4413, 11), -- M. Def. Modifiers
+(32555, 4414, 2), -- Armor Type
+(32555, 4415, 1), -- Weapon Type
+(32555, 4416, 14), -- Races
 -- El
 (32556, 4045, 1), -- Resist Full Magic Attack
-(32556, 4408, 1), -- HP Increase (1x)
-(32556, 4409, 1), -- MP Increase (1x)
-(32556, 4410, 11), -- Average P. Atk.
-(32556, 4411, 11), -- Average M. Atk.
-(32556, 4412, 11), -- Average P. Def.
-(32556, 4413, 11), -- Average M. Def.
-(32556, 4414, 2), -- Standard Type
-(32556, 4415, 1), -- Bare Hands
-(32556, 4416, 14), -- Humans
+(32556, 4408, 1), -- HP Modifiers
+(32556, 4409, 1), -- MP Modifiers
+(32556, 4410, 11), -- P. Atk. Modifiers
+(32556, 4411, 11), -- M. Atk. Modifiers
+(32556, 4412, 11), -- P. Def. Modifiers
+(32556, 4413, 11), -- M. Def. Modifiers
+(32556, 4414, 2), -- Armor Type
+(32556, 4415, 1), -- Weapon Type
+(32556, 4416, 14), -- Races
 -- Lekon
 (32557, 4045, 1), -- Resist Full Magic Attack
-(32557, 4408, 1), -- HP Increase (1x)
-(32557, 4409, 1), -- MP Increase (1x)
-(32557, 4410, 11), -- Average P. Atk.
-(32557, 4411, 11), -- Average M. Atk.
-(32557, 4412, 11), -- Average P. Def.
-(32557, 4413, 11), -- Average M. Def.
-(32557, 4414, 2), -- Standard Type
-(32557, 4415, 1), -- Bare Hands
-(32557, 4416, 18), -- Dwarves
+(32557, 4408, 1), -- HP Modifiers
+(32557, 4409, 1), -- MP Modifiers
+(32557, 4410, 11), -- P. Atk. Modifiers
+(32557, 4411, 11), -- M. Atk. Modifiers
+(32557, 4412, 11), -- P. Def. Modifiers
+(32557, 4413, 11), -- M. Def. Modifiers
+(32557, 4414, 2), -- Armor Type
+(32557, 4415, 1), -- Weapon Type
+(32557, 4416, 18), -- Races
 -- Barrier Orb
 (32558, 4045, 1), -- Resist Full Magic Attack
-(32558, 4390, 1), -- Mystic Immunity
-(32558, 4408, 1), -- HP Increase (1x)
-(32558, 4409, 1), -- MP Increase (1x)
-(32558, 4410, 11), -- Average P. Atk.
-(32558, 4411, 11), -- Average M. Atk.
-(32558, 4412, 11), -- Average P. Def.
-(32558, 4413, 11), -- Average M. Def.
-(32558, 4414, 2), -- Standard Type
-(32558, 4415, 1), -- Bare Hands
-(32558, 4416, 2), -- Magic Creatures
+(32558, 4390, 1), -- NPC Abnormal Immunity
+(32558, 4408, 1), -- HP Modifiers
+(32558, 4409, 1), -- MP Modifiers
+(32558, 4410, 11), -- P. Atk. Modifiers
+(32558, 4411, 11), -- M. Atk. Modifiers
+(32558, 4412, 11), -- P. Def. Modifiers
+(32558, 4413, 11), -- M. Def. Modifiers
+(32558, 4414, 2), -- Armor Type
+(32558, 4415, 1), -- Weapon Type
+(32558, 4416, 2), -- Races
 -- Artius
 (32559, 4045, 1), -- Resist Full Magic Attack
-(32559, 4408, 1), -- HP Increase (1x)
-(32559, 4409, 1), -- MP Increase (1x)
-(32559, 4410, 11), -- Average P. Atk.
-(32559, 4411, 11), -- Average M. Atk.
-(32559, 4412, 11), -- Average P. Def.
-(32559, 4413, 11), -- Average M. Def.
-(32559, 4414, 2), -- Standard Type
-(32559, 4415, 1), -- Bare Hands
-(32559, 4416, 15), -- Elves
+(32559, 4408, 1), -- HP Modifiers
+(32559, 4409, 1), -- MP Modifiers
+(32559, 4410, 11), -- P. Atk. Modifiers
+(32559, 4411, 11), -- M. Atk. Modifiers
+(32559, 4412, 11), -- P. Def. Modifiers
+(32559, 4413, 11), -- M. Def. Modifiers
+(32559, 4414, 2), -- Armor Type
+(32559, 4415, 1), -- Weapon Type
+(32559, 4416, 15), -- Races
 -- Orbyu
 (32560, 4045, 1), -- Resist Full Magic Attack
-(32560, 4408, 1), -- HP Increase (1x)
-(32560, 4409, 1), -- MP Increase (1x)
-(32560, 4410, 11), -- Average P. Atk.
-(32560, 4411, 11), -- Average M. Atk.
-(32560, 4412, 11), -- Average P. Def.
-(32560, 4413, 11), -- Average M. Def.
-(32560, 4414, 2), -- Standard Type
-(32560, 4415, 1), -- Bare Hands
-(32560, 4416, 14), -- Humans
+(32560, 4408, 1), -- HP Modifiers
+(32560, 4409, 1), -- MP Modifiers
+(32560, 4410, 11), -- P. Atk. Modifiers
+(32560, 4411, 11), -- M. Atk. Modifiers
+(32560, 4412, 11), -- P. Def. Modifiers
+(32560, 4413, 11), -- M. Def. Modifiers
+(32560, 4414, 2), -- Armor Type
+(32560, 4415, 1), -- Weapon Type
+(32560, 4416, 14), -- Races
 -- Kunota
 (32561, 4045, 1), -- Resist Full Magic Attack
-(32561, 4408, 1), -- HP Increase (1x)
-(32561, 4409, 1), -- MP Increase (1x)
-(32561, 4410, 11), -- Average P. Atk.
-(32561, 4411, 11), -- Average M. Atk.
-(32561, 4412, 11), -- Average P. Def.
-(32561, 4413, 11), -- Average M. Def.
-(32561, 4414, 2), -- Standard Type
-(32561, 4415, 1), -- Bare Hands
-(32561, 4416, 14), -- Humans
+(32561, 4408, 1), -- HP Modifiers
+(32561, 4409, 1), -- MP Modifiers
+(32561, 4410, 11), -- P. Atk. Modifiers
+(32561, 4411, 11), -- M. Atk. Modifiers
+(32561, 4412, 11), -- P. Def. Modifiers
+(32561, 4413, 11), -- M. Def. Modifiers
+(32561, 4414, 2), -- Armor Type
+(32561, 4415, 1), -- Weapon Type
+(32561, 4416, 14), -- Races
 -- Siest
 (32562, 4045, 1), -- Resist Full Magic Attack
-(32562, 4408, 1), -- HP Increase (1x)
-(32562, 4409, 1), -- MP Increase (1x)
-(32562, 4410, 11), -- Average P. Atk.
-(32562, 4411, 11), -- Average M. Atk.
-(32562, 4412, 11), -- Average P. Def.
-(32562, 4413, 11), -- Average M. Def.
-(32562, 4414, 2), -- Standard Type
-(32562, 4415, 1), -- Bare Hands
-(32562, 4416, 14), -- Humans
+(32562, 4408, 1), -- HP Modifiers
+(32562, 4409, 1), -- MP Modifiers
+(32562, 4410, 11), -- P. Atk. Modifiers
+(32562, 4411, 11), -- M. Atk. Modifiers
+(32562, 4412, 11), -- P. Def. Modifiers
+(32562, 4413, 11), -- M. Def. Modifiers
+(32562, 4414, 2), -- Armor Type
+(32562, 4415, 1), -- Weapon Type
+(32562, 4416, 14), -- Races
 -- Plenos
 (32563, 4045, 1), -- Resist Full Magic Attack
-(32563, 4408, 1), -- HP Increase (1x)
-(32563, 4409, 1), -- MP Increase (1x)
-(32563, 4410, 11), -- Average P. Atk.
-(32563, 4411, 11), -- Average M. Atk.
-(32563, 4412, 11), -- Average P. Def.
-(32563, 4413, 11), -- Average M. Def.
-(32563, 4414, 2), -- Standard Type
-(32563, 4415, 1), -- Bare Hands
-(32563, 4416, 14), -- Humans
+(32563, 4408, 1), -- HP Modifiers
+(32563, 4409, 1), -- MP Modifiers
+(32563, 4410, 11), -- P. Atk. Modifiers
+(32563, 4411, 11), -- M. Atk. Modifiers
+(32563, 4412, 11), -- P. Def. Modifiers
+(32563, 4413, 11), -- M. Def. Modifiers
+(32563, 4414, 2), -- Armor Type
+(32563, 4415, 1), -- Weapon Type
+(32563, 4416, 14), -- Races
 -- Papiku
 (32564, 4045, 1), -- Resist Full Magic Attack
-(32564, 4408, 1), -- HP Increase (1x)
-(32564, 4409, 1), -- MP Increase (1x)
-(32564, 4410, 11), -- Average P. Atk.
-(32564, 4411, 11), -- Average M. Atk.
-(32564, 4412, 11), -- Average P. Def.
-(32564, 4413, 11), -- Average M. Def.
-(32564, 4414, 2), -- Standard Type
-(32564, 4415, 1), -- Bare Hands
-(32564, 4416, 15), -- Elves
+(32564, 4408, 1), -- HP Modifiers
+(32564, 4409, 1), -- MP Modifiers
+(32564, 4410, 11), -- P. Atk. Modifiers
+(32564, 4411, 11), -- M. Atk. Modifiers
+(32564, 4412, 11), -- P. Def. Modifiers
+(32564, 4413, 11), -- M. Def. Modifiers
+(32564, 4414, 2), -- Armor Type
+(32564, 4415, 1), -- Weapon Type
+(32564, 4416, 15), -- Races
 -- Felix
 (32565, 4045, 1), -- Resist Full Magic Attack
-(32565, 4408, 1), -- HP Increase (1x)
-(32565, 4409, 1), -- MP Increase (1x)
-(32565, 4410, 11), -- Average P. Atk.
-(32565, 4411, 11), -- Average M. Atk.
-(32565, 4412, 11), -- Average P. Def.
-(32565, 4413, 11), -- Average M. Def.
-(32565, 4414, 2), -- Standard Type
-(32565, 4415, 1), -- Bare Hands
-(32565, 4416, 14), -- Humans
+(32565, 4408, 1), -- HP Modifiers
+(32565, 4409, 1), -- MP Modifiers
+(32565, 4410, 11), -- P. Atk. Modifiers
+(32565, 4411, 11), -- M. Atk. Modifiers
+(32565, 4412, 11), -- P. Def. Modifiers
+(32565, 4413, 11), -- M. Def. Modifiers
+(32565, 4414, 2), -- Armor Type
+(32565, 4415, 1), -- Weapon Type
+(32565, 4416, 14), -- Races
 -- Ginby
 (32566, 4045, 1), -- Resist Full Magic Attack
-(32566, 4408, 1), -- HP Increase (1x)
-(32566, 4409, 1), -- MP Increase (1x)
-(32566, 4410, 11), -- Average P. Atk.
-(32566, 4411, 11), -- Average M. Atk.
-(32566, 4412, 11), -- Average P. Def.
-(32566, 4413, 11), -- Average M. Def.
-(32566, 4414, 2), -- Standard Type
-(32566, 4415, 1), -- Bare Hands
-(32566, 4416, 14), -- Humans
+(32566, 4408, 1), -- HP Modifiers
+(32566, 4409, 1), -- MP Modifiers
+(32566, 4410, 11), -- P. Atk. Modifiers
+(32566, 4411, 11), -- M. Atk. Modifiers
+(32566, 4412, 11), -- P. Def. Modifiers
+(32566, 4413, 11), -- M. Def. Modifiers
+(32566, 4414, 2), -- Armor Type
+(32566, 4415, 1), -- Weapon Type
+(32566, 4416, 14), -- Races
 -- Lelrikia
 (32567, 4045, 1), -- Resist Full Magic Attack
-(32567, 4408, 1), -- HP Increase (1x)
-(32567, 4409, 1), -- MP Increase (1x)
-(32567, 4410, 11), -- Average P. Atk.
-(32567, 4411, 11), -- Average M. Atk.
-(32567, 4412, 11), -- Average P. Def.
-(32567, 4413, 11), -- Average M. Def.
-(32567, 4414, 2), -- Standard Type
-(32567, 4415, 1), -- Bare Hands
-(32567, 4416, 14), -- Humans
+(32567, 4408, 1), -- HP Modifiers
+(32567, 4409, 1), -- MP Modifiers
+(32567, 4410, 11), -- P. Atk. Modifiers
+(32567, 4411, 11), -- M. Atk. Modifiers
+(32567, 4412, 11), -- P. Def. Modifiers
+(32567, 4413, 11), -- M. Def. Modifiers
+(32567, 4414, 2), -- Armor Type
+(32567, 4415, 1), -- Weapon Type
+(32567, 4416, 14), -- Races
 -- Unidentified Body
 (32568, 4045, 1), -- Resist Full Magic Attack
-(32568, 4408, 1), -- HP Increase (1x)
-(32568, 4409, 1), -- MP Increase (1x)
-(32568, 4410, 11), -- Average P. Atk.
-(32568, 4411, 11), -- Average M. Atk.
-(32568, 4412, 11), -- Average P. Def.
-(32568, 4413, 11), -- Average M. Def.
-(32568, 4414, 2), -- Standard Type
-(32568, 4415, 1), -- Bare Hands
-(32568, 4416, 18), -- Dwarves
+(32568, 4408, 1), -- HP Modifiers
+(32568, 4409, 1), -- MP Modifiers
+(32568, 4410, 11), -- P. Atk. Modifiers
+(32568, 4411, 11), -- M. Atk. Modifiers
+(32568, 4412, 11), -- P. Def. Modifiers
+(32568, 4413, 11), -- M. Def. Modifiers
+(32568, 4414, 2), -- Armor Type
+(32568, 4415, 1), -- Weapon Type
+(32568, 4416, 18), -- Races
 -- Cain
 (32569, 4045, 1), -- Resist Full Magic Attack
-(32569, 4408, 1), -- HP Increase (1x)
-(32569, 4409, 1), -- MP Increase (1x)
-(32569, 4410, 11), -- Average P. Atk.
-(32569, 4411, 11), -- Average M. Atk.
-(32569, 4412, 11), -- Average P. Def.
-(32569, 4413, 11), -- Average M. Def.
-(32569, 4414, 2), -- Standard Type
-(32569, 4415, 1), -- Bare Hands
-(32569, 4416, 14), -- Humans
+(32569, 4408, 1), -- HP Modifiers
+(32569, 4409, 1), -- MP Modifiers
+(32569, 4410, 11), -- P. Atk. Modifiers
+(32569, 4411, 11), -- M. Atk. Modifiers
+(32569, 4412, 11), -- P. Def. Modifiers
+(32569, 4413, 11), -- M. Def. Modifiers
+(32569, 4414, 2), -- Armor Type
+(32569, 4415, 1), -- Weapon Type
+(32569, 4416, 14), -- Races
 -- Eric
 (32570, 4045, 1), -- Resist Full Magic Attack
-(32570, 4408, 1), -- HP Increase (1x)
-(32570, 4409, 1), -- MP Increase (1x)
-(32570, 4410, 11), -- Average P. Atk.
-(32570, 4411, 11), -- Average M. Atk.
-(32570, 4412, 11), -- Average P. Def.
-(32570, 4413, 11), -- Average M. Def.
-(32570, 4414, 2), -- Standard Type
-(32570, 4415, 3), -- One-handed Sword
-(32570, 4416, 14), -- Humans
+(32570, 4408, 1), -- HP Modifiers
+(32570, 4409, 1), -- MP Modifiers
+(32570, 4410, 11), -- P. Atk. Modifiers
+(32570, 4411, 11), -- M. Atk. Modifiers
+(32570, 4412, 11), -- P. Def. Modifiers
+(32570, 4413, 11), -- M. Def. Modifiers
+(32570, 4414, 2), -- Armor Type
+(32570, 4415, 3), -- Weapon Type
+(32570, 4416, 14), -- Races
 -- Colin
 (32571, 4045, 1), -- Resist Full Magic Attack
-(32571, 4408, 1), -- HP Increase (1x)
-(32571, 4409, 1), -- MP Increase (1x)
-(32571, 4410, 11), -- Average P. Atk.
-(32571, 4411, 11), -- Average M. Atk.
-(32571, 4412, 11), -- Average P. Def.
-(32571, 4413, 11), -- Average M. Def.
-(32571, 4414, 2), -- Standard Type
-(32571, 4415, 1), -- Bare Hands
-(32571, 4416, 14), -- Humans
+(32571, 4408, 1), -- HP Modifiers
+(32571, 4409, 1), -- MP Modifiers
+(32571, 4410, 11), -- P. Atk. Modifiers
+(32571, 4411, 11), -- M. Atk. Modifiers
+(32571, 4412, 11), -- P. Def. Modifiers
+(32571, 4413, 11), -- M. Def. Modifiers
+(32571, 4414, 2), -- Armor Type
+(32571, 4415, 1), -- Weapon Type
+(32571, 4416, 14), -- Races
 -- Frog
 (32572, 4045, 1), -- Resist Full Magic Attack
-(32572, 4408, 1), -- HP Increase (1x)
-(32572, 4409, 1), -- MP Increase (1x)
-(32572, 4410, 11), -- Average P. Atk.
-(32572, 4411, 11), -- Average M. Atk.
-(32572, 4412, 11), -- Average P. Def.
-(32572, 4413, 11), -- Average M. Def.
-(32572, 4414, 2), -- Standard Type
-(32572, 4415, 1), -- Bare Hands
-(32572, 4416, 4), -- Animals
+(32572, 4408, 1), -- HP Modifiers
+(32572, 4409, 1), -- MP Modifiers
+(32572, 4410, 11), -- P. Atk. Modifiers
+(32572, 4411, 11), -- M. Atk. Modifiers
+(32572, 4412, 11), -- P. Def. Modifiers
+(32572, 4413, 11), -- M. Def. Modifiers
+(32572, 4414, 2), -- Armor Type
+(32572, 4415, 1), -- Weapon Type
+(32572, 4416, 4), -- Races
 -- Tess
 (32573, 4045, 1), -- Resist Full Magic Attack
-(32573, 4408, 1), -- HP Increase (1x)
-(32573, 4409, 1), -- MP Increase (1x)
-(32573, 4410, 11), -- Average P. Atk.
-(32573, 4411, 11), -- Average M. Atk.
-(32573, 4412, 11), -- Average P. Def.
-(32573, 4413, 11), -- Average M. Def.
-(32573, 4414, 2), -- Standard Type
-(32573, 4415, 1), -- Bare Hands
-(32573, 4416, 14), -- Humans
+(32573, 4408, 1), -- HP Modifiers
+(32573, 4409, 1), -- MP Modifiers
+(32573, 4410, 11), -- P. Atk. Modifiers
+(32573, 4411, 11), -- M. Atk. Modifiers
+(32573, 4412, 11), -- P. Def. Modifiers
+(32573, 4413, 11), -- M. Def. Modifiers
+(32573, 4414, 2), -- Armor Type
+(32573, 4415, 1), -- Weapon Type
+(32573, 4416, 14), -- Races
 -- Kuta
 (32574, 4045, 1), -- Resist Full Magic Attack
-(32574, 4408, 1), -- HP Increase (1x)
-(32574, 4409, 1), -- MP Increase (1x)
-(32574, 4410, 11), -- Average P. Atk.
-(32574, 4411, 11), -- Average M. Atk.
-(32574, 4412, 11), -- Average P. Def.
-(32574, 4413, 11), -- Average M. Def.
-(32574, 4414, 2), -- Standard Type
-(32574, 4415, 1), -- Bare Hands
-(32574, 4416, 14), -- Humans
+(32574, 4408, 1), -- HP Modifiers
+(32574, 4409, 1), -- MP Modifiers
+(32574, 4410, 11), -- P. Atk. Modifiers
+(32574, 4411, 11), -- M. Atk. Modifiers
+(32574, 4412, 11), -- P. Def. Modifiers
+(32574, 4413, 11), -- M. Def. Modifiers
+(32574, 4414, 2), -- Armor Type
+(32574, 4415, 1), -- Weapon Type
+(32574, 4416, 14), -- Races
 -- Light of Dawn
 (32575, 4045, 1), -- Resist Full Magic Attack
-(32575, 4390, 1), -- Mystic Immunity
-(32575, 4408, 1), -- HP Increase (1x)
-(32575, 4409, 1), -- MP Increase (1x)
-(32575, 4410, 11), -- Average P. Atk.
-(32575, 4411, 11), -- Average M. Atk.
-(32575, 4412, 11), -- Average P. Def.
-(32575, 4413, 11), -- Average M. Def.
-(32575, 4414, 2), -- Standard Type
-(32575, 4415, 1), -- Bare Hands
-(32575, 4416, 19), -- Others
+(32575, 4390, 1), -- NPC Abnormal Immunity
+(32575, 4408, 1), -- HP Modifiers
+(32575, 4409, 1), -- MP Modifiers
+(32575, 4410, 11), -- P. Atk. Modifiers
+(32575, 4411, 11), -- M. Atk. Modifiers
+(32575, 4412, 11), -- P. Def. Modifiers
+(32575, 4413, 11), -- M. Def. Modifiers
+(32575, 4414, 2), -- Armor Type
+(32575, 4415, 1), -- Weapon Type
+(32575, 4416, 19), -- Races
 -- John
 (32576, 4045, 1), -- Resist Full Magic Attack
-(32576, 4408, 1), -- HP Increase (1x)
-(32576, 4409, 1), -- MP Increase (1x)
-(32576, 4410, 11), -- Average P. Atk.
-(32576, 4411, 11), -- Average M. Atk.
-(32576, 4412, 11), -- Average P. Def.
-(32576, 4413, 11), -- Average M. Def.
-(32576, 4414, 2), -- Standard Type
-(32576, 4415, 1), -- Bare Hands
-(32576, 4416, 14), -- Humans
+(32576, 4408, 1), -- HP Modifiers
+(32576, 4409, 1), -- MP Modifiers
+(32576, 4410, 11), -- P. Atk. Modifiers
+(32576, 4411, 11), -- M. Atk. Modifiers
+(32576, 4412, 11), -- P. Def. Modifiers
+(32576, 4413, 11), -- M. Def. Modifiers
+(32576, 4414, 2), -- Armor Type
+(32576, 4415, 1), -- Weapon Type
+(32576, 4416, 14), -- Races
 -- Password Entry Device
 (32577, 4045, 1), -- Resist Full Magic Attack
-(32577, 4390, 1), -- Mystic Immunity
-(32577, 4408, 1), -- HP Increase (1x)
-(32577, 4409, 1), -- MP Increase (1x)
-(32577, 4410, 11), -- Average P. Atk.
-(32577, 4411, 11), -- Average M. Atk.
-(32577, 4412, 11), -- Average P. Def.
-(32577, 4413, 11), -- Average M. Def.
-(32577, 4414, 2), -- Standard Type
-(32577, 4415, 1), -- Bare Hands
-(32577, 4416, 2), -- Magic Creatures
+(32577, 4390, 1), -- NPC Abnormal Immunity
+(32577, 4408, 1), -- HP Modifiers
+(32577, 4409, 1), -- MP Modifiers
+(32577, 4410, 11), -- P. Atk. Modifiers
+(32577, 4411, 11), -- M. Atk. Modifiers
+(32577, 4412, 11), -- P. Def. Modifiers
+(32577, 4413, 11), -- M. Def. Modifiers
+(32577, 4414, 2), -- Armor Type
+(32577, 4415, 1), -- Weapon Type
+(32577, 4416, 2), -- Races
 -- Identity Confirm Device
 (32578, 4045, 1), -- Resist Full Magic Attack
-(32578, 4390, 1), -- Mystic Immunity
-(32578, 4408, 1), -- HP Increase (1x)
-(32578, 4409, 1), -- MP Increase (1x)
-(32578, 4410, 11), -- Average P. Atk.
-(32578, 4411, 11), -- Average M. Atk.
-(32578, 4412, 11), -- Average P. Def.
-(32578, 4413, 11), -- Average M. Def.
-(32578, 4414, 2), -- Standard Type
-(32578, 4415, 1), -- Bare Hands
-(32578, 4416, 2), -- Magic Creatures
+(32578, 4390, 1), -- NPC Abnormal Immunity
+(32578, 4408, 1), -- HP Modifiers
+(32578, 4409, 1), -- MP Modifiers
+(32578, 4410, 11), -- P. Atk. Modifiers
+(32578, 4411, 11), -- M. Atk. Modifiers
+(32578, 4412, 11), -- P. Def. Modifiers
+(32578, 4413, 11), -- M. Def. Modifiers
+(32578, 4414, 2), -- Armor Type
+(32578, 4415, 1), -- Weapon Type
+(32578, 4416, 2), -- Races
 -- Darkness of Dawn
 (32579, 4045, 1), -- Resist Full Magic Attack
-(32579, 4390, 1), -- Mystic Immunity
-(32579, 4408, 1), -- HP Increase (1x)
-(32579, 4409, 1), -- MP Increase (1x)
-(32579, 4410, 11), -- Average P. Atk.
-(32579, 4411, 11), -- Average M. Atk.
-(32579, 4412, 11), -- Average P. Def.
-(32579, 4413, 11), -- Average M. Def.
-(32579, 4414, 2), -- Standard Type
-(32579, 4415, 1), -- Bare Hands
-(32579, 4416, 19), -- Others
+(32579, 4390, 1), -- NPC Abnormal Immunity
+(32579, 4408, 1), -- HP Modifiers
+(32579, 4409, 1), -- MP Modifiers
+(32579, 4410, 11), -- P. Atk. Modifiers
+(32579, 4411, 11), -- M. Atk. Modifiers
+(32579, 4412, 11), -- P. Def. Modifiers
+(32579, 4413, 11), -- M. Def. Modifiers
+(32579, 4414, 2), -- Armor Type
+(32579, 4415, 1), -- Weapon Type
+(32579, 4416, 19), -- Races
 -- 
 (32580, 4045, 1), -- Resist Full Magic Attack
-(32580, 4390, 1), -- Mystic Immunity
-(32580, 4408, 1), -- HP Increase (1x)
-(32580, 4409, 1), -- MP Increase (1x)
-(32580, 4410, 11), -- Average P. Atk.
-(32580, 4411, 11), -- Average M. Atk.
-(32580, 4412, 11), -- Average P. Def.
-(32580, 4413, 11), -- Average M. Def.
-(32580, 4414, 2), -- Standard Type
-(32580, 4415, 3), -- One-handed Sword
-(32580, 4416, 2), -- Magic Creatures
+(32580, 4390, 1), -- NPC Abnormal Immunity
+(32580, 4408, 1), -- HP Modifiers
+(32580, 4409, 1), -- MP Modifiers
+(32580, 4410, 11), -- P. Atk. Modifiers
+(32580, 4411, 11), -- M. Atk. Modifiers
+(32580, 4412, 11), -- P. Def. Modifiers
+(32580, 4413, 11), -- M. Def. Modifiers
+(32580, 4414, 2), -- Armor Type
+(32580, 4415, 3), -- Weapon Type
+(32580, 4416, 2), -- Races
 -- 
 (32581, 4045, 1), -- Resist Full Magic Attack
-(32581, 4390, 1), -- Mystic Immunity
-(32581, 4408, 1), -- HP Increase (1x)
-(32581, 4409, 1), -- MP Increase (1x)
-(32581, 4410, 11), -- Average P. Atk.
-(32581, 4411, 11), -- Average M. Atk.
-(32581, 4412, 11), -- Average P. Def.
-(32581, 4413, 11), -- Average M. Def.
-(32581, 4414, 2), -- Standard Type
-(32581, 4415, 3), -- One-handed Sword
-(32581, 4416, 2), -- Magic Creatures
+(32581, 4390, 1), -- NPC Abnormal Immunity
+(32581, 4408, 1), -- HP Modifiers
+(32581, 4409, 1), -- MP Modifiers
+(32581, 4410, 11), -- P. Atk. Modifiers
+(32581, 4411, 11), -- M. Atk. Modifiers
+(32581, 4412, 11), -- P. Def. Modifiers
+(32581, 4413, 11), -- M. Def. Modifiers
+(32581, 4414, 2), -- Armor Type
+(32581, 4415, 3), -- Weapon Type
+(32581, 4416, 2), -- Races
 -- 
 (32583, 4045, 1), -- Resist Full Magic Attack
-(32583, 4390, 1), -- Mystic Immunity
-(32583, 4408, 1), -- HP Increase (1x)
-(32583, 4409, 1), -- MP Increase (1x)
-(32583, 4410, 11), -- Average P. Atk.
-(32583, 4411, 11), -- Average M. Atk.
-(32583, 4412, 11), -- Average P. Def.
-(32583, 4413, 11), -- Average M. Def.
-(32583, 4414, 2), -- Standard Type
-(32583, 4415, 3), -- One-handed Sword
-(32583, 4416, 2), -- Magic Creatures
+(32583, 4390, 1), -- NPC Abnormal Immunity
+(32583, 4408, 1), -- HP Modifiers
+(32583, 4409, 1), -- MP Modifiers
+(32583, 4410, 11), -- P. Atk. Modifiers
+(32583, 4411, 11), -- M. Atk. Modifiers
+(32583, 4412, 11), -- P. Def. Modifiers
+(32583, 4413, 11), -- M. Def. Modifiers
+(32583, 4414, 2), -- Armor Type
+(32583, 4415, 3), -- Weapon Type
+(32583, 4416, 2), -- Races
 -- Merchant of Mammon
 (32584, 4045, 1), -- Resist Full Magic Attack
-(32584, 4408, 1), -- HP Increase (1x)
-(32584, 4409, 1), -- MP Increase (1x)
-(32584, 4410, 11), -- Average P. Atk.
-(32584, 4411, 11), -- Average M. Atk.
-(32584, 4412, 11), -- Average P. Def.
-(32584, 4413, 11), -- Average M. Def.
-(32584, 4414, 2), -- Standard Type
-(32584, 4415, 1), -- Bare Hands
-(32584, 4416, 18), -- Dwarves
+(32584, 4408, 1), -- HP Modifiers
+(32584, 4409, 1), -- MP Modifiers
+(32584, 4410, 11), -- P. Atk. Modifiers
+(32584, 4411, 11), -- M. Atk. Modifiers
+(32584, 4412, 11), -- P. Def. Modifiers
+(32584, 4413, 11), -- M. Def. Modifiers
+(32584, 4414, 2), -- Armor Type
+(32584, 4415, 1), -- Weapon Type
+(32584, 4416, 18), -- Races
 -- Promise of Mammon
 (32585, 4045, 1), -- Resist Full Magic Attack
-(32585, 4390, 1), -- Mystic Immunity
-(32585, 4408, 1), -- HP Increase (1x)
-(32585, 4409, 1), -- MP Increase (1x)
-(32585, 4410, 11), -- Average P. Atk.
-(32585, 4411, 11), -- Average M. Atk.
-(32585, 4412, 11), -- Average P. Def.
-(32585, 4413, 11), -- Average M. Def.
-(32585, 4414, 2), -- Standard Type
-(32585, 4415, 1), -- Bare Hands
-(32585, 4416, 19), -- Others
+(32585, 4390, 1), -- NPC Abnormal Immunity
+(32585, 4408, 1), -- HP Modifiers
+(32585, 4409, 1), -- MP Modifiers
+(32585, 4410, 11), -- P. Atk. Modifiers
+(32585, 4411, 11), -- M. Atk. Modifiers
+(32585, 4412, 11), -- P. Def. Modifiers
+(32585, 4413, 11), -- M. Def. Modifiers
+(32585, 4414, 2), -- Armor Type
+(32585, 4415, 1), -- Weapon Type
+(32585, 4416, 19), -- Races
 -- Shunaiman
 (32586, 4045, 1), -- Resist Full Magic Attack
-(32586, 4408, 1), -- HP Increase (1x)
-(32586, 4409, 1), -- MP Increase (1x)
-(32586, 4410, 11), -- Average P. Atk.
-(32586, 4411, 11), -- Average M. Atk.
-(32586, 4412, 11), -- Average P. Def.
-(32586, 4413, 11), -- Average M. Def.
-(32586, 4414, 2), -- Standard Type
-(32586, 4415, 1), -- Bare Hands
-(32586, 4416, 14), -- Humans
+(32586, 4408, 1), -- HP Modifiers
+(32586, 4409, 1), -- MP Modifiers
+(32586, 4410, 11), -- P. Atk. Modifiers
+(32586, 4411, 11), -- M. Atk. Modifiers
+(32586, 4412, 11), -- P. Def. Modifiers
+(32586, 4413, 11), -- M. Def. Modifiers
+(32586, 4414, 2), -- Armor Type
+(32586, 4415, 1), -- Weapon Type
+(32586, 4416, 14), -- Races
 -- Leon
 (32587, 4045, 1), -- Resist Full Magic Attack
-(32587, 4408, 1), -- HP Increase (1x)
-(32587, 4409, 1), -- MP Increase (1x)
-(32587, 4410, 11), -- Average P. Atk.
-(32587, 4411, 11), -- Average M. Atk.
-(32587, 4412, 11), -- Average P. Def.
-(32587, 4413, 11), -- Average M. Def.
-(32587, 4414, 2), -- Standard Type
-(32587, 4415, 1), -- Bare Hands
-(32587, 4416, 14), -- Humans
+(32587, 4408, 1), -- HP Modifiers
+(32587, 4409, 1), -- MP Modifiers
+(32587, 4410, 11), -- P. Atk. Modifiers
+(32587, 4411, 11), -- M. Atk. Modifiers
+(32587, 4412, 11), -- P. Def. Modifiers
+(32587, 4413, 11), -- M. Def. Modifiers
+(32587, 4414, 2), -- Armor Type
+(32587, 4415, 1), -- Weapon Type
+(32587, 4416, 14), -- Races
 -- Emperor's Seal Device
 (32588, 4045, 1), -- Resist Full Magic Attack
-(32588, 4390, 1), -- Mystic Immunity
-(32588, 4408, 1), -- HP Increase (1x)
-(32588, 4409, 1), -- MP Increase (1x)
-(32588, 4410, 11), -- Average P. Atk.
-(32588, 4411, 11), -- Average M. Atk.
-(32588, 4412, 11), -- Average P. Def.
-(32588, 4413, 11), -- Average M. Def.
-(32588, 4414, 2), -- Standard Type
-(32588, 4415, 1), -- Bare Hands
-(32588, 4416, 2), -- Magic Creatures
+(32588, 4390, 1), -- NPC Abnormal Immunity
+(32588, 4408, 1), -- HP Modifiers
+(32588, 4409, 1), -- MP Modifiers
+(32588, 4410, 11), -- P. Atk. Modifiers
+(32588, 4411, 11), -- M. Atk. Modifiers
+(32588, 4412, 11), -- P. Def. Modifiers
+(32588, 4413, 11), -- M. Def. Modifiers
+(32588, 4414, 2), -- Armor Type
+(32588, 4415, 1), -- Weapon Type
+(32588, 4416, 2), -- Races
 -- Emperor's Seal Device
 (32589, 4045, 1), -- Resist Full Magic Attack
-(32589, 4390, 1), -- Mystic Immunity
-(32589, 4408, 1), -- HP Increase (1x)
-(32589, 4409, 1), -- MP Increase (1x)
-(32589, 4410, 11), -- Average P. Atk.
-(32589, 4411, 11), -- Average M. Atk.
-(32589, 4412, 11), -- Average P. Def.
-(32589, 4413, 11), -- Average M. Def.
-(32589, 4414, 2), -- Standard Type
-(32589, 4415, 1), -- Bare Hands
-(32589, 4416, 2), -- Magic Creatures
+(32589, 4390, 1), -- NPC Abnormal Immunity
+(32589, 4408, 1), -- HP Modifiers
+(32589, 4409, 1), -- MP Modifiers
+(32589, 4410, 11), -- P. Atk. Modifiers
+(32589, 4411, 11), -- M. Atk. Modifiers
+(32589, 4412, 11), -- P. Def. Modifiers
+(32589, 4413, 11), -- M. Def. Modifiers
+(32589, 4414, 2), -- Armor Type
+(32589, 4415, 1), -- Weapon Type
+(32589, 4416, 2), -- Races
 -- Emperor's Seal Device
 (32590, 4045, 1), -- Resist Full Magic Attack
-(32590, 4390, 1), -- Mystic Immunity
-(32590, 4408, 1), -- HP Increase (1x)
-(32590, 4409, 1), -- MP Increase (1x)
-(32590, 4410, 11), -- Average P. Atk.
-(32590, 4411, 11), -- Average M. Atk.
-(32590, 4412, 11), -- Average P. Def.
-(32590, 4413, 11), -- Average M. Def.
-(32590, 4414, 2), -- Standard Type
-(32590, 4415, 1), -- Bare Hands
-(32590, 4416, 2), -- Magic Creatures
+(32590, 4390, 1), -- NPC Abnormal Immunity
+(32590, 4408, 1), -- HP Modifiers
+(32590, 4409, 1), -- MP Modifiers
+(32590, 4410, 11), -- P. Atk. Modifiers
+(32590, 4411, 11), -- M. Atk. Modifiers
+(32590, 4412, 11), -- P. Def. Modifiers
+(32590, 4413, 11), -- M. Def. Modifiers
+(32590, 4414, 2), -- Armor Type
+(32590, 4415, 1), -- Weapon Type
+(32590, 4416, 2), -- Races
 -- Emperor's Seal Device
 (32591, 4045, 1), -- Resist Full Magic Attack
-(32591, 4390, 1), -- Mystic Immunity
-(32591, 4408, 1), -- HP Increase (1x)
-(32591, 4409, 1), -- MP Increase (1x)
-(32591, 4410, 11), -- Average P. Atk.
-(32591, 4411, 11), -- Average M. Atk.
-(32591, 4412, 11), -- Average P. Def.
-(32591, 4413, 11), -- Average M. Def.
-(32591, 4414, 2), -- Standard Type
-(32591, 4415, 1), -- Bare Hands
-(32591, 4416, 2), -- Magic Creatures
+(32591, 4390, 1), -- NPC Abnormal Immunity
+(32591, 4408, 1), -- HP Modifiers
+(32591, 4409, 1), -- MP Modifiers
+(32591, 4410, 11), -- P. Atk. Modifiers
+(32591, 4411, 11), -- M. Atk. Modifiers
+(32591, 4412, 11), -- P. Def. Modifiers
+(32591, 4413, 11), -- M. Def. Modifiers
+(32591, 4414, 2), -- Armor Type
+(32591, 4415, 1), -- Weapon Type
+(32591, 4416, 2), -- Races
 -- 
 (32592, 4045, 1), -- Resist Full Magic Attack
-(32592, 4390, 1), -- Mystic Immunity
-(32592, 4408, 1), -- HP Increase (1x)
-(32592, 4409, 1), -- MP Increase (1x)
-(32592, 4410, 11), -- Average P. Atk.
-(32592, 4411, 11), -- Average M. Atk.
-(32592, 4412, 11), -- Average P. Def.
-(32592, 4413, 11), -- Average M. Def.
-(32592, 4414, 2), -- Standard Type
-(32592, 4415, 1), -- Bare Hands
-(32592, 4416, 2), -- Magic Creatures
+(32592, 4390, 1), -- NPC Abnormal Immunity
+(32592, 4408, 1), -- HP Modifiers
+(32592, 4409, 1), -- MP Modifiers
+(32592, 4410, 11), -- P. Atk. Modifiers
+(32592, 4411, 11), -- M. Atk. Modifiers
+(32592, 4412, 11), -- P. Def. Modifiers
+(32592, 4413, 11), -- M. Def. Modifiers
+(32592, 4414, 2), -- Armor Type
+(32592, 4415, 1), -- Weapon Type
+(32592, 4416, 2), -- Races
 -- Wood
 (32593, 4045, 1), -- Resist Full Magic Attack
-(32593, 4408, 1), -- HP Increase (1x)
-(32593, 4409, 1), -- MP Increase (1x)
-(32593, 4410, 11), -- Average P. Atk.
-(32593, 4411, 11), -- Average M. Atk.
-(32593, 4412, 11), -- Average P. Def.
-(32593, 4413, 11), -- Average M. Def.
-(32593, 4414, 2), -- Standard Type
-(32593, 4415, 3), -- One-handed Sword
-(32593, 4416, 14), -- Humans
+(32593, 4408, 1), -- HP Modifiers
+(32593, 4409, 1), -- MP Modifiers
+(32593, 4410, 11), -- P. Atk. Modifiers
+(32593, 4411, 11), -- M. Atk. Modifiers
+(32593, 4412, 11), -- P. Def. Modifiers
+(32593, 4413, 11), -- M. Def. Modifiers
+(32593, 4414, 2), -- Armor Type
+(32593, 4415, 3), -- Weapon Type
+(32593, 4416, 14), -- Races
 -- Leopard
 (32594, 4045, 1), -- Resist Full Magic Attack
-(32594, 4408, 1), -- HP Increase (1x)
-(32594, 4409, 1), -- MP Increase (1x)
-(32594, 4410, 11), -- Average P. Atk.
-(32594, 4411, 11), -- Average M. Atk.
-(32594, 4412, 11), -- Average P. Def.
-(32594, 4413, 11), -- Average M. Def.
-(32594, 4414, 2), -- Standard Type
-(32594, 4415, 1), -- Bare Hands
-(32594, 4416, 16), -- Dark Elves
+(32594, 4408, 1), -- HP Modifiers
+(32594, 4409, 1), -- MP Modifiers
+(32594, 4410, 11), -- P. Atk. Modifiers
+(32594, 4411, 11), -- M. Atk. Modifiers
+(32594, 4412, 11), -- P. Def. Modifiers
+(32594, 4413, 11), -- M. Def. Modifiers
+(32594, 4414, 2), -- Armor Type
+(32594, 4415, 1), -- Weapon Type
+(32594, 4416, 16), -- Races
 -- Lawrence
 (32595, 4045, 1), -- Resist Full Magic Attack
-(32595, 4408, 1), -- HP Increase (1x)
-(32595, 4409, 1), -- MP Increase (1x)
-(32595, 4410, 11), -- Average P. Atk.
-(32595, 4411, 11), -- Average M. Atk.
-(32595, 4412, 11), -- Average P. Def.
-(32595, 4413, 11), -- Average M. Def.
-(32595, 4414, 2), -- Standard Type
-(32595, 4415, 1), -- Bare Hands
-(32595, 4416, 16), -- Dark Elves
+(32595, 4408, 1), -- HP Modifiers
+(32595, 4409, 1), -- MP Modifiers
+(32595, 4410, 11), -- P. Atk. Modifiers
+(32595, 4411, 11), -- M. Atk. Modifiers
+(32595, 4412, 11), -- P. Def. Modifiers
+(32595, 4413, 11), -- M. Def. Modifiers
+(32595, 4414, 2), -- Armor Type
+(32595, 4415, 1), -- Weapon Type
+(32595, 4416, 16), -- Races
 -- Sophia
 (32596, 4045, 1), -- Resist Full Magic Attack
-(32596, 4408, 1), -- HP Increase (1x)
-(32596, 4409, 1), -- MP Increase (1x)
-(32596, 4410, 11), -- Average P. Atk.
-(32596, 4411, 11), -- Average M. Atk.
-(32596, 4412, 11), -- Average P. Def.
-(32596, 4413, 11), -- Average M. Def.
-(32596, 4414, 2), -- Standard Type
-(32596, 4415, 1), -- Bare Hands
-(32596, 4416, 15), -- Elves
+(32596, 4408, 1), -- HP Modifiers
+(32596, 4409, 1), -- MP Modifiers
+(32596, 4410, 11), -- P. Atk. Modifiers
+(32596, 4411, 11), -- M. Atk. Modifiers
+(32596, 4412, 11), -- P. Def. Modifiers
+(32596, 4413, 11), -- M. Def. Modifiers
+(32596, 4414, 2), -- Armor Type
+(32596, 4415, 1), -- Weapon Type
+(32596, 4416, 15), -- Races
 -- Franz
 (32597, 4045, 1), -- Resist Full Magic Attack
-(32597, 4408, 1), -- HP Increase (1x)
-(32597, 4409, 1), -- MP Increase (1x)
-(32597, 4410, 11), -- Average P. Atk.
-(32597, 4411, 11), -- Average M. Atk.
-(32597, 4412, 11), -- Average P. Def.
-(32597, 4413, 11), -- Average M. Def.
-(32597, 4414, 2), -- Standard Type
-(32597, 4415, 1), -- Bare Hands
-(32597, 4416, 14), -- Humans
+(32597, 4408, 1), -- HP Modifiers
+(32597, 4409, 1), -- MP Modifiers
+(32597, 4410, 11), -- P. Atk. Modifiers
+(32597, 4411, 11), -- M. Atk. Modifiers
+(32597, 4412, 11), -- P. Def. Modifiers
+(32597, 4413, 11), -- M. Def. Modifiers
+(32597, 4414, 2), -- Armor Type
+(32597, 4415, 1), -- Weapon Type
+(32597, 4416, 14), -- Races
 -- Court Magician
 (32598, 4045, 1), -- Resist Full Magic Attack
-(32598, 4408, 1), -- HP Increase (1x)
-(32598, 4409, 1), -- MP Increase (1x)
-(32598, 4410, 11), -- Average P. Atk.
-(32598, 4411, 11), -- Average M. Atk.
-(32598, 4412, 11), -- Average P. Def.
-(32598, 4413, 11), -- Average M. Def.
-(32598, 4414, 2), -- Standard Type
-(32598, 4415, 1), -- Bare Hands
-(32598, 4416, 14), -- Humans
+(32598, 4408, 1), -- HP Modifiers
+(32598, 4409, 1), -- MP Modifiers
+(32598, 4410, 11), -- P. Atk. Modifiers
+(32598, 4411, 11), -- M. Atk. Modifiers
+(32598, 4412, 11), -- P. Def. Modifiers
+(32598, 4413, 11), -- M. Def. Modifiers
+(32598, 4414, 2), -- Armor Type
+(32598, 4415, 1), -- Weapon Type
+(32598, 4416, 14), -- Races
 -- Master Yogi
 (32599, 4045, 1), -- Resist Full Magic Attack
-(32599, 4408, 1), -- HP Increase (1x)
-(32599, 4409, 1), -- MP Increase (1x)
-(32599, 4410, 11), -- Average P. Atk.
-(32599, 4411, 11), -- Average M. Atk.
-(32599, 4412, 11), -- Average P. Def.
-(32599, 4413, 11), -- Average M. Def.
-(32599, 4414, 2), -- Standard Type
-(32599, 4415, 1), -- Bare Hands
-(32599, 4416, 6), -- Humanoids
+(32599, 4408, 1), -- HP Modifiers
+(32599, 4409, 1), -- MP Modifiers
+(32599, 4410, 11), -- P. Atk. Modifiers
+(32599, 4411, 11), -- M. Atk. Modifiers
+(32599, 4412, 11), -- P. Def. Modifiers
+(32599, 4413, 11), -- M. Def. Modifiers
+(32599, 4414, 2), -- Armor Type
+(32599, 4415, 1), -- Weapon Type
+(32599, 4416, 6), -- Races
 -- Alegria
 (32600, 4045, 1), -- Resist Full Magic Attack
-(32600, 4408, 1), -- HP Increase (1x)
-(32600, 4409, 1), -- MP Increase (1x)
-(32600, 4410, 11), -- Average P. Atk.
-(32600, 4411, 11), -- Average M. Atk.
-(32600, 4412, 11), -- Average P. Def.
-(32600, 4413, 11), -- Average M. Def.
-(32600, 4414, 2), -- Standard Type
-(32600, 4415, 1), -- Bare Hands
-(32600, 4416, 14), -- Humans
+(32600, 4408, 1), -- HP Modifiers
+(32600, 4409, 1), -- MP Modifiers
+(32600, 4410, 11), -- P. Atk. Modifiers
+(32600, 4411, 11), -- M. Atk. Modifiers
+(32600, 4412, 11), -- P. Def. Modifiers
+(32600, 4413, 11), -- M. Def. Modifiers
+(32600, 4414, 2), -- Armor Type
+(32600, 4415, 1), -- Weapon Type
+(32600, 4416, 14), -- Races
 -- Instant Moving Device
 (32601, 4045, 1), -- Resist Full Magic Attack
-(32601, 4390, 1), -- Mystic Immunity
-(32601, 4408, 1), -- HP Increase (1x)
-(32601, 4409, 1), -- MP Increase (1x)
-(32601, 4410, 11), -- Average P. Atk.
-(32601, 4411, 11), -- Average M. Atk.
-(32601, 4412, 11), -- Average P. Def.
-(32601, 4413, 11), -- Average M. Def.
-(32601, 4414, 2), -- Standard Type
-(32601, 4415, 1), -- Bare Hands
-(32601, 4416, 2), -- Magic Creatures
+(32601, 4390, 1), -- NPC Abnormal Immunity
+(32601, 4408, 1), -- HP Modifiers
+(32601, 4409, 1), -- MP Modifiers
+(32601, 4410, 11), -- P. Atk. Modifiers
+(32601, 4411, 11), -- M. Atk. Modifiers
+(32601, 4412, 11), -- P. Def. Modifiers
+(32601, 4413, 11), -- M. Def. Modifiers
+(32601, 4414, 2), -- Armor Type
+(32601, 4415, 1), -- Weapon Type
+(32601, 4416, 2), -- Races
 -- Temporary Teleporter
 (32602, 4045, 1), -- Resist Full Magic Attack
-(32602, 4390, 1), -- Mystic Immunity
-(32602, 4408, 1), -- HP Increase (1x)
-(32602, 4409, 1), -- MP Increase (1x)
-(32602, 4410, 11), -- Average P. Atk.
-(32602, 4411, 11), -- Average M. Atk.
-(32602, 4412, 11), -- Average P. Def.
-(32602, 4413, 11), -- Average M. Def.
-(32602, 4414, 2), -- Standard Type
-(32602, 4415, 1), -- Bare Hands
-(32602, 4416, 2), -- Magic Creatures
+(32602, 4390, 1), -- NPC Abnormal Immunity
+(32602, 4408, 1), -- HP Modifiers
+(32602, 4409, 1), -- MP Modifiers
+(32602, 4410, 11), -- P. Atk. Modifiers
+(32602, 4411, 11), -- M. Atk. Modifiers
+(32602, 4412, 11), -- P. Def. Modifiers
+(32602, 4413, 11), -- M. Def. Modifiers
+(32602, 4414, 2), -- Armor Type
+(32602, 4415, 1), -- Weapon Type
+(32602, 4416, 2), -- Races
 -- Tepios
 (32603, 4045, 1), -- Resist Full Magic Attack
-(32603, 4408, 1), -- HP Increase (1x)
-(32603, 4409, 1), -- MP Increase (1x)
-(32603, 4410, 11), -- Average P. Atk.
-(32603, 4411, 11), -- Average M. Atk.
-(32603, 4412, 11), -- Average P. Def.
-(32603, 4413, 11), -- Average M. Def.
-(32603, 4414, 2), -- Standard Type
-(32603, 4415, 1), -- Bare Hands
-(32603, 4416, 14), -- Humans
+(32603, 4408, 1), -- HP Modifiers
+(32603, 4409, 1), -- MP Modifiers
+(32603, 4410, 11), -- P. Atk. Modifiers
+(32603, 4411, 11), -- M. Atk. Modifiers
+(32603, 4412, 11), -- P. Def. Modifiers
+(32603, 4413, 11), -- M. Def. Modifiers
+(32603, 4414, 2), -- Armor Type
+(32603, 4415, 1), -- Weapon Type
+(32603, 4416, 14), -- Races
 -- Flight Control
 (32604, 4045, 1), -- Resist Full Magic Attack
-(32604, 4390, 1), -- Mystic Immunity
-(32604, 4408, 1), -- HP Increase (1x)
-(32604, 4409, 1), -- MP Increase (1x)
-(32604, 4410, 11), -- Average P. Atk.
-(32604, 4411, 11), -- Average M. Atk.
-(32604, 4412, 11), -- Average P. Def.
-(32604, 4413, 11), -- Average M. Def.
-(32604, 4414, 2), -- Standard Type
-(32604, 4415, 1), -- Bare Hands
-(32604, 4416, 2), -- Magic Creatures
+(32604, 4390, 1), -- NPC Abnormal Immunity
+(32604, 4408, 1), -- HP Modifiers
+(32604, 4409, 1), -- MP Modifiers
+(32604, 4410, 11), -- P. Atk. Modifiers
+(32604, 4411, 11), -- M. Atk. Modifiers
+(32604, 4412, 11), -- P. Def. Modifiers
+(32604, 4413, 11), -- M. Def. Modifiers
+(32604, 4414, 2), -- Armor Type
+(32604, 4415, 1), -- Weapon Type
+(32604, 4416, 2), -- Races
 -- Flight Control
 (32605, 4045, 1), -- Resist Full Magic Attack
-(32605, 4390, 1), -- Mystic Immunity
-(32605, 4408, 1), -- HP Increase (1x)
-(32605, 4409, 1), -- MP Increase (1x)
-(32605, 4410, 11), -- Average P. Atk.
-(32605, 4411, 11), -- Average M. Atk.
-(32605, 4412, 11), -- Average P. Def.
-(32605, 4413, 11), -- Average M. Def.
-(32605, 4414, 2), -- Standard Type
-(32605, 4415, 1), -- Bare Hands
-(32605, 4416, 2), -- Magic Creatures
+(32605, 4390, 1), -- NPC Abnormal Immunity
+(32605, 4408, 1), -- HP Modifiers
+(32605, 4409, 1), -- MP Modifiers
+(32605, 4410, 11), -- P. Atk. Modifiers
+(32605, 4411, 11), -- M. Atk. Modifiers
+(32605, 4412, 11), -- P. Def. Modifiers
+(32605, 4413, 11), -- M. Def. Modifiers
+(32605, 4414, 2), -- Armor Type
+(32605, 4415, 1), -- Weapon Type
+(32605, 4416, 2), -- Races
 -- Flight Control
 (32606, 4045, 1), -- Resist Full Magic Attack
-(32606, 4390, 1), -- Mystic Immunity
-(32606, 4408, 1), -- HP Increase (1x)
-(32606, 4409, 1), -- MP Increase (1x)
-(32606, 4410, 11), -- Average P. Atk.
-(32606, 4411, 11), -- Average M. Atk.
-(32606, 4412, 11), -- Average P. Def.
-(32606, 4413, 11), -- Average M. Def.
-(32606, 4414, 2), -- Standard Type
-(32606, 4415, 1), -- Bare Hands
-(32606, 4416, 2), -- Magic Creatures
+(32606, 4390, 1), -- NPC Abnormal Immunity
+(32606, 4408, 1), -- HP Modifiers
+(32606, 4409, 1), -- MP Modifiers
+(32606, 4410, 11), -- P. Atk. Modifiers
+(32606, 4411, 11), -- M. Atk. Modifiers
+(32606, 4412, 11), -- P. Def. Modifiers
+(32606, 4413, 11), -- M. Def. Modifiers
+(32606, 4414, 2), -- Armor Type
+(32606, 4415, 1), -- Weapon Type
+(32606, 4416, 2), -- Races
 -- Flight Control
 (32607, 4045, 1), -- Resist Full Magic Attack
-(32607, 4390, 1), -- Mystic Immunity
-(32607, 4408, 1), -- HP Increase (1x)
-(32607, 4409, 1), -- MP Increase (1x)
-(32607, 4410, 11), -- Average P. Atk.
-(32607, 4411, 11), -- Average M. Atk.
-(32607, 4412, 11), -- Average P. Def.
-(32607, 4413, 11), -- Average M. Def.
-(32607, 4414, 2), -- Standard Type
-(32607, 4415, 1), -- Bare Hands
-(32607, 4416, 2), -- Magic Creatures
+(32607, 4390, 1), -- NPC Abnormal Immunity
+(32607, 4408, 1), -- HP Modifiers
+(32607, 4409, 1), -- MP Modifiers
+(32607, 4410, 11), -- P. Atk. Modifiers
+(32607, 4411, 11), -- M. Atk. Modifiers
+(32607, 4412, 11), -- P. Def. Modifiers
+(32607, 4413, 11), -- M. Def. Modifiers
+(32607, 4414, 2), -- Armor Type
+(32607, 4415, 1), -- Weapon Type
+(32607, 4416, 2), -- Races
 -- Flight Control
 (32608, 4045, 1), -- Resist Full Magic Attack
-(32608, 4390, 1), -- Mystic Immunity
-(32608, 4408, 1), -- HP Increase (1x)
-(32608, 4409, 1), -- MP Increase (1x)
-(32608, 4410, 11), -- Average P. Atk.
-(32608, 4411, 11), -- Average M. Atk.
-(32608, 4412, 11), -- Average P. Def.
-(32608, 4413, 11), -- Average M. Def.
-(32608, 4414, 2), -- Standard Type
-(32608, 4415, 1), -- Bare Hands
-(32608, 4416, 2), -- Magic Creatures
+(32608, 4390, 1), -- NPC Abnormal Immunity
+(32608, 4408, 1), -- HP Modifiers
+(32608, 4409, 1), -- MP Modifiers
+(32608, 4410, 11), -- P. Atk. Modifiers
+(32608, 4411, 11), -- M. Atk. Modifiers
+(32608, 4412, 11), -- P. Def. Modifiers
+(32608, 4413, 11), -- M. Def. Modifiers
+(32608, 4414, 2), -- Armor Type
+(32608, 4415, 1), -- Weapon Type
+(32608, 4416, 2), -- Races
 -- Flight Control
 (32609, 4045, 1), -- Resist Full Magic Attack
-(32609, 4390, 1), -- Mystic Immunity
-(32609, 4408, 1), -- HP Increase (1x)
-(32609, 4409, 1), -- MP Increase (1x)
-(32609, 4410, 11), -- Average P. Atk.
-(32609, 4411, 11), -- Average M. Atk.
-(32609, 4412, 11), -- Average P. Def.
-(32609, 4413, 11), -- Average M. Def.
-(32609, 4414, 2), -- Standard Type
-(32609, 4415, 1), -- Bare Hands
-(32609, 4416, 2), -- Magic Creatures
+(32609, 4390, 1), -- NPC Abnormal Immunity
+(32609, 4408, 1), -- HP Modifiers
+(32609, 4409, 1), -- MP Modifiers
+(32609, 4410, 11), -- P. Atk. Modifiers
+(32609, 4411, 11), -- M. Atk. Modifiers
+(32609, 4412, 11); -- P. Def. Modifiers
+
+INSERT INTO `npcskills` VALUES
+(32609, 4413, 11), -- M. Def. Modifiers
+(32609, 4414, 2), -- Armor Type
+(32609, 4415, 1), -- Weapon Type
+(32609, 4416, 2), -- Races
 -- Olf Kanore
 (32610, 4045, 1), -- Resist Full Magic Attack
-(32610, 4408, 1), -- HP Increase (1x)
-(32610, 4409, 1), -- MP Increase (1x)
-(32610, 4410, 11), -- Average P. Atk.
-(32610, 4411, 11), -- Average M. Atk.
-(32610, 4412, 11), -- Average P. Def.
-(32610, 4413, 11), -- Average M. Def.
-(32610, 4414, 2), -- Standard Type
-(32610, 4415, 1), -- Bare Hands
-(32610, 4416, 15), -- Elves
+(32610, 4408, 1), -- HP Modifiers
+(32610, 4409, 1), -- MP Modifiers
+(32610, 4410, 11), -- P. Atk. Modifiers
+(32610, 4411, 11), -- M. Atk. Modifiers
+(32610, 4412, 11), -- P. Def. Modifiers
+(32610, 4413, 11), -- M. Def. Modifiers
+(32610, 4414, 2), -- Armor Type
+(32610, 4415, 1), -- Weapon Type
+(32610, 4416, 15), -- Races
 -- Tolonis
 (32611, 4045, 1), -- Resist Full Magic Attack
-(32611, 4390, 1), -- Mystic Immunity
-(32611, 4408, 1), -- HP Increase (1x)
-(32611, 4409, 1), -- MP Increase (1x)
-(32611, 4410, 11), -- Average P. Atk.
-(32611, 4411, 11), -- Average M. Atk.
-(32611, 4412, 11), -- Average P. Def.
-(32611, 4413, 11), -- Average M. Def.
-(32611, 4414, 2), -- Standard Type
-(32611, 4415, 1), -- Bare Hands
-(32611, 4416, 14), -- Humans
+(32611, 4390, 1), -- NPC Abnormal Immunity
+(32611, 4408, 1), -- HP Modifiers
+(32611, 4409, 1), -- MP Modifiers
+(32611, 4410, 11), -- P. Atk. Modifiers
+(32611, 4411, 11), -- M. Atk. Modifiers
+(32611, 4412, 11), -- P. Def. Modifiers
+(32611, 4413, 11), -- M. Def. Modifiers
+(32611, 4414, 2), -- Armor Type
+(32611, 4415, 1), -- Weapon Type
+(32611, 4416, 14), -- Races
 -- Olf Adams
 (32612, 4045, 1), -- Resist Full Magic Attack
-(32612, 4408, 1), -- HP Increase (1x)
-(32612, 4409, 1), -- MP Increase (1x)
-(32612, 4410, 11), -- Average P. Atk.
-(32612, 4411, 11), -- Average M. Atk.
-(32612, 4412, 11), -- Average P. Def.
-(32612, 4413, 11), -- Average M. Def.
-(32612, 4414, 2), -- Standard Type
-(32612, 4415, 1), -- Bare Hands
-(32612, 4416, 15), -- Elves
+(32612, 4408, 1), -- HP Modifiers
+(32612, 4409, 1), -- MP Modifiers
+(32612, 4410, 11), -- P. Atk. Modifiers
+(32612, 4411, 11), -- M. Atk. Modifiers
+(32612, 4412, 11), -- P. Def. Modifiers
+(32612, 4413, 11), -- M. Def. Modifiers
+(32612, 4414, 2), -- Armor Type
+(32612, 4415, 1), -- Weapon Type
+(32612, 4416, 15), -- Races
 -- Handy
 (32613, 4045, 1), -- Resist Full Magic Attack
-(32613, 4408, 1), -- HP Increase (1x)
-(32613, 4409, 1), -- MP Increase (1x)
-(32613, 4410, 11), -- Average P. Atk.
-(32613, 4411, 11), -- Average M. Atk.
-(32613, 4412, 11), -- Average P. Def.
-(32613, 4413, 11), -- Average M. Def.
-(32613, 4414, 2), -- Standard Type
-(32613, 4415, 3), -- One-handed Sword
-(32613, 4416, 8), -- Angels
+(32613, 4408, 1), -- HP Modifiers
+(32613, 4409, 1), -- MP Modifiers
+(32613, 4410, 11), -- P. Atk. Modifiers
+(32613, 4411, 11), -- M. Atk. Modifiers
+(32613, 4412, 11), -- P. Def. Modifiers
+(32613, 4413, 11), -- M. Def. Modifiers
+(32613, 4414, 2), -- Armor Type
+(32613, 4415, 3), -- Weapon Type
+(32613, 4416, 8), -- Races
 -- Lamcedas
 (32614, 4045, 1), -- Resist Full Magic Attack
-(32614, 4408, 1), -- HP Increase (1x)
-(32614, 4409, 1), -- MP Increase (1x)
-(32614, 4410, 11), -- Average P. Atk.
-(32614, 4411, 11), -- Average M. Atk.
-(32614, 4412, 11), -- Average P. Def.
-(32614, 4413, 11), -- Average M. Def.
-(32614, 4414, 2), -- Standard Type
-(32614, 4415, 3), -- One-handed Sword
-(32614, 4416, 14), -- Humans
+(32614, 4408, 1), -- HP Modifiers
+(32614, 4409, 1), -- MP Modifiers
+(32614, 4410, 11), -- P. Atk. Modifiers
+(32614, 4411, 11), -- M. Atk. Modifiers
+(32614, 4412, 11), -- P. Def. Modifiers
+(32614, 4413, 11), -- M. Def. Modifiers
+(32614, 4414, 2), -- Armor Type
+(32614, 4415, 3), -- Weapon Type
+(32614, 4416, 14), -- Races
 -- Ishuma
 (32615, 4045, 1), -- Resist Full Magic Attack
-(32615, 4408, 1), -- HP Increase (1x)
-(32615, 4409, 1), -- MP Increase (1x)
-(32615, 4410, 11), -- Average P. Atk.
-(32615, 4411, 11), -- Average M. Atk.
-(32615, 4412, 11), -- Average P. Def.
-(32615, 4413, 11), -- Average M. Def.
-(32615, 4414, 2), -- Standard Type
-(32615, 4415, 3), -- One-handed Sword
-(32615, 4416, 18), -- Dwarves
+(32615, 4408, 1), -- HP Modifiers
+(32615, 4409, 1), -- MP Modifiers
+(32615, 4410, 11), -- P. Atk. Modifiers
+(32615, 4411, 11), -- M. Atk. Modifiers
+(32615, 4412, 11), -- P. Def. Modifiers
+(32615, 4413, 11), -- M. Def. Modifiers
+(32615, 4414, 2), -- Armor Type
+(32615, 4415, 3), -- Weapon Type
+(32615, 4416, 18), -- Races
 -- Mine
 (32616, 4045, 1), -- Resist Full Magic Attack
-(32616, 4408, 1), -- HP Increase (1x)
-(32616, 4409, 1), -- MP Increase (1x)
-(32616, 4410, 11), -- Average P. Atk.
-(32616, 4411, 11), -- Average M. Atk.
-(32616, 4412, 11), -- Average P. Def.
-(32616, 4413, 11), -- Average M. Def.
-(32616, 4414, 2), -- Standard Type
-(32616, 4415, 1), -- Bare Hands
-(32616, 4416, 16), -- Dark Elves
+(32616, 4408, 1), -- HP Modifiers
+(32616, 4409, 1), -- MP Modifiers
+(32616, 4410, 11), -- P. Atk. Modifiers
+(32616, 4411, 11), -- M. Atk. Modifiers
+(32616, 4412, 11), -- P. Def. Modifiers
+(32616, 4413, 11), -- M. Def. Modifiers
+(32616, 4414, 2), -- Armor Type
+(32616, 4415, 1), -- Weapon Type
+(32616, 4416, 16), -- Races
 -- Jaina
 (32617, 4045, 1), -- Resist Full Magic Attack
-(32617, 4408, 1), -- HP Increase (1x)
-(32617, 4409, 1), -- MP Increase (1x)
-(32617, 4410, 11), -- Average P. Atk.
-(32617, 4411, 11), -- Average M. Atk.
-(32617, 4412, 11), -- Average P. Def.
-(32617, 4413, 11), -- Average M. Def.
-(32617, 4414, 2), -- Standard Type
-(32617, 4415, 1), -- Bare Hands
-(32617, 4416, 14), -- Humans
+(32617, 4408, 1), -- HP Modifiers
+(32617, 4409, 1), -- MP Modifiers
+(32617, 4410, 11), -- P. Atk. Modifiers
+(32617, 4411, 11), -- M. Atk. Modifiers
+(32617, 4412, 11), -- P. Def. Modifiers
+(32617, 4413, 11), -- M. Def. Modifiers
+(32617, 4414, 2), -- Armor Type
+(32617, 4415, 1), -- Weapon Type
+(32617, 4416, 14), -- Races
 -- Thyimi
 (32618, 4045, 1), -- Resist Full Magic Attack
-(32618, 4408, 1), -- HP Increase (1x)
-(32618, 4409, 1), -- MP Increase (1x)
-(32618, 4410, 11), -- Average P. Atk.
-(32618, 4411, 11), -- Average M. Atk.
-(32618, 4412, 11), -- Average P. Def.
-(32618, 4413, 11), -- Average M. Def.
-(32618, 4414, 2), -- Standard Type
-(32618, 4415, 3), -- One-handed Sword
-(32618, 4416, 18), -- Dwarves
+(32618, 4408, 1), -- HP Modifiers
+(32618, 4409, 1), -- MP Modifiers
+(32618, 4410, 11), -- P. Atk. Modifiers
+(32618, 4411, 11), -- M. Atk. Modifiers
+(32618, 4412, 11), -- P. Def. Modifiers
+(32618, 4413, 11), -- M. Def. Modifiers
+(32618, 4414, 2), -- Armor Type
+(32618, 4415, 3), -- Weapon Type
+(32618, 4416, 18), -- Races
 -- 
 (32619, 4045, 1), -- Resist Full Magic Attack
-(32619, 4408, 1), -- HP Increase (1x)
-(32619, 4409, 1), -- MP Increase (1x)
-(32619, 4410, 11), -- Average P. Atk.
-(32619, 4411, 11), -- Average M. Atk.
-(32619, 4412, 11), -- Average P. Def.
-(32619, 4413, 11), -- Average M. Def.
-(32619, 4414, 2), -- Standard Type
-(32619, 4415, 3), -- One-handed Sword
-(32619, 4416, 14), -- Humans
+(32619, 4408, 1), -- HP Modifiers
+(32619, 4409, 1), -- MP Modifiers
+(32619, 4410, 11), -- P. Atk. Modifiers
+(32619, 4411, 11), -- M. Atk. Modifiers
+(32619, 4412, 11), -- P. Def. Modifiers
+(32619, 4413, 11), -- M. Def. Modifiers
+(32619, 4414, 2), -- Armor Type
+(32619, 4415, 3), -- Weapon Type
+(32619, 4416, 14), -- Races
 -- 
 (32620, 4045, 1), -- Resist Full Magic Attack
-(32620, 4408, 1), -- HP Increase (1x)
-(32620, 4409, 1), -- MP Increase (1x)
-(32620, 4410, 11), -- Average P. Atk.
-(32620, 4411, 11), -- Average M. Atk.
-(32620, 4412, 11), -- Average P. Def.
-(32620, 4413, 11), -- Average M. Def.
-(32620, 4414, 2), -- Standard Type
-(32620, 4415, 3), -- One-handed Sword
-(32620, 4416, 14), -- Humans
+(32620, 4408, 1), -- HP Modifiers
+(32620, 4409, 1), -- MP Modifiers
+(32620, 4410, 11), -- P. Atk. Modifiers
+(32620, 4411, 11), -- M. Atk. Modifiers
+(32620, 4412, 11), -- P. Def. Modifiers
+(32620, 4413, 11), -- M. Def. Modifiers
+(32620, 4414, 2), -- Armor Type
+(32620, 4415, 3), -- Weapon Type
+(32620, 4416, 14), -- Races
 -- 
 (32621, 4045, 1), -- Resist Full Magic Attack
-(32621, 4408, 1), -- HP Increase (1x)
-(32621, 4409, 1), -- MP Increase (1x)
-(32621, 4410, 11), -- Average P. Atk.
-(32621, 4411, 11), -- Average M. Atk.
-(32621, 4412, 11), -- Average P. Def.
-(32621, 4413, 11), -- Average M. Def.
-(32621, 4414, 2), -- Standard Type
-(32621, 4415, 3), -- One-handed Sword
-(32621, 4416, 14), -- Humans
+(32621, 4408, 1), -- HP Modifiers
+(32621, 4409, 1), -- MP Modifiers
+(32621, 4410, 11), -- P. Atk. Modifiers
+(32621, 4411, 11), -- M. Atk. Modifiers
+(32621, 4412, 11), -- P. Def. Modifiers
+(32621, 4413, 11), -- M. Def. Modifiers
+(32621, 4414, 2), -- Armor Type
+(32621, 4415, 3), -- Weapon Type
+(32621, 4416, 14), -- Races
 -- Anatole
 (32622, 4045, 1), -- Resist Full Magic Attack
-(32622, 4408, 1), -- HP Increase (1x)
-(32622, 4409, 1), -- MP Increase (1x)
-(32622, 4410, 11), -- Average P. Atk.
-(32622, 4411, 11), -- Average M. Atk.
-(32622, 4412, 11), -- Average P. Def.
-(32622, 4413, 11), -- Average M. Def.
-(32622, 4414, 2), -- Standard Type
-(32622, 4415, 3), -- One-handed Sword
-(32622, 4416, 14), -- Humans
+(32622, 4408, 1), -- HP Modifiers
+(32622, 4409, 1), -- MP Modifiers
+(32622, 4410, 11), -- P. Atk. Modifiers
+(32622, 4411, 11), -- M. Atk. Modifiers
+(32622, 4412, 11), -- P. Def. Modifiers
+(32622, 4413, 11), -- M. Def. Modifiers
+(32622, 4414, 2), -- Armor Type
+(32622, 4415, 3), -- Weapon Type
+(32622, 4416, 14), -- Races
 -- Morenki
 (32623, 4045, 1), -- Resist Full Magic Attack
-(32623, 4408, 1), -- HP Increase (1x)
-(32623, 4409, 1), -- MP Increase (1x)
-(32623, 4410, 11), -- Average P. Atk.
-(32623, 4411, 11), -- Average M. Atk.
-(32623, 4412, 11), -- Average P. Def.
-(32623, 4413, 11), -- Average M. Def.
-(32623, 4414, 2), -- Standard Type
-(32623, 4415, 3), -- One-handed Sword
-(32623, 4416, 16), -- Dark Elves
+(32623, 4408, 1), -- HP Modifiers
+(32623, 4409, 1), -- MP Modifiers
+(32623, 4410, 11), -- P. Atk. Modifiers
+(32623, 4411, 11), -- M. Atk. Modifiers
+(32623, 4412, 11), -- P. Def. Modifiers
+(32623, 4413, 11), -- M. Def. Modifiers
+(32623, 4414, 2), -- Armor Type
+(32623, 4415, 3), -- Weapon Type
+(32623, 4416, 16), -- Races
 -- Anbram
 (32624, 4045, 1), -- Resist Full Magic Attack
-(32624, 4408, 1), -- HP Increase (1x)
-(32624, 4409, 1), -- MP Increase (1x)
-(32624, 4410, 11), -- Average P. Atk.
-(32624, 4411, 11), -- Average M. Atk.
-(32624, 4412, 11), -- Average P. Def.
-(32624, 4413, 11), -- Average M. Def.
-(32624, 4414, 2), -- Standard Type
-(32624, 4415, 3), -- One-handed Sword
-(32624, 4416, 14), -- Humans
+(32624, 4408, 1), -- HP Modifiers
+(32624, 4409, 1), -- MP Modifiers
+(32624, 4410, 11), -- P. Atk. Modifiers
+(32624, 4411, 11), -- M. Atk. Modifiers
+(32624, 4412, 11), -- P. Def. Modifiers
+(32624, 4413, 11), -- M. Def. Modifiers
+(32624, 4414, 2), -- Armor Type
+(32624, 4415, 3), -- Weapon Type
+(32624, 4416, 14), -- Races
 -- Anciel
 (32625, 4045, 1), -- Resist Full Magic Attack
-(32625, 4408, 1), -- HP Increase (1x)
-(32625, 4409, 1), -- MP Increase (1x)
-(32625, 4410, 11), -- Average P. Atk.
-(32625, 4411, 11), -- Average M. Atk.
-(32625, 4412, 11), -- Average P. Def.
-(32625, 4413, 11), -- Average M. Def.
-(32625, 4414, 2), -- Standard Type
-(32625, 4415, 3), -- One-handed Sword
-(32625, 4416, 15), -- Elves
+(32625, 4408, 1), -- HP Modifiers
+(32625, 4409, 1), -- MP Modifiers
+(32625, 4410, 11), -- P. Atk. Modifiers
+(32625, 4411, 11), -- M. Atk. Modifiers
+(32625, 4412, 11), -- P. Def. Modifiers
+(32625, 4413, 11), -- M. Def. Modifiers
+(32625, 4414, 2), -- Armor Type
+(32625, 4415, 3), -- Weapon Type
+(32625, 4416, 15), -- Races
 -- Royal Guard
 (32626, 4045, 1), -- Resist Full Magic Attack
-(32626, 4408, 1), -- HP Increase (1x)
-(32626, 4409, 1), -- MP Increase (1x)
-(32626, 4410, 11), -- Average P. Atk.
-(32626, 4411, 11), -- Average M. Atk.
-(32626, 4412, 11), -- Average P. Def.
-(32626, 4413, 11), -- Average M. Def.
-(32626, 4414, 2), -- Standard Type
-(32626, 4415, 3), -- One-handed Sword
-(32626, 4416, 14), -- Humans
+(32626, 4408, 1), -- HP Modifiers
+(32626, 4409, 1), -- MP Modifiers
+(32626, 4410, 11), -- P. Atk. Modifiers
+(32626, 4411, 11), -- M. Atk. Modifiers
+(32626, 4412, 11), -- P. Def. Modifiers
+(32626, 4413, 11), -- M. Def. Modifiers
+(32626, 4414, 2), -- Armor Type
+(32626, 4415, 3), -- Weapon Type
+(32626, 4416, 14), -- Races
 -- Nottingale
 (32627, 4045, 1), -- Resist Full Magic Attack
-(32627, 4408, 1), -- HP Increase (1x)
-(32627, 4409, 1), -- MP Increase (1x)
-(32627, 4410, 11), -- Average P. Atk.
-(32627, 4411, 11), -- Average M. Atk.
-(32627, 4412, 11), -- Average P. Def.
-(32627, 4413, 11), -- Average M. Def.
-(32627, 4414, 2), -- Standard Type
-(32627, 4415, 3), -- One-handed Sword
-(32627, 4416, 15), -- Elves
+(32627, 4408, 1), -- HP Modifiers
+(32627, 4409, 1), -- MP Modifiers
+(32627, 4410, 11), -- P. Atk. Modifiers
+(32627, 4411, 11), -- M. Atk. Modifiers
+(32627, 4412, 11), -- P. Def. Modifiers
+(32627, 4413, 11), -- M. Def. Modifiers
+(32627, 4414, 2), -- Armor Type
+(32627, 4415, 3), -- Weapon Type
+(32627, 4416, 15), -- Races
 -- Wharf Patrol
 (32628, 4045, 1), -- Resist Full Magic Attack
-(32628, 4408, 1), -- HP Increase (1x)
-(32628, 4409, 1), -- MP Increase (1x)
-(32628, 4410, 11), -- Average P. Atk.
-(32628, 4411, 11), -- Average M. Atk.
-(32628, 4412, 11), -- Average P. Def.
-(32628, 4413, 11), -- Average M. Def.
-(32628, 4414, 2), -- Standard Type
-(32628, 4415, 1), -- Bare Hands
-(32628, 4416, 14), -- Humans
+(32628, 4408, 1), -- HP Modifiers
+(32628, 4409, 1), -- MP Modifiers
+(32628, 4410, 11), -- P. Atk. Modifiers
+(32628, 4411, 11), -- M. Atk. Modifiers
+(32628, 4412, 11), -- P. Def. Modifiers
+(32628, 4413, 11), -- M. Def. Modifiers
+(32628, 4414, 2), -- Armor Type
+(32628, 4415, 1), -- Weapon Type
+(32628, 4416, 14), -- Races
 -- Wharf Patrol
 (32629, 4045, 1), -- Resist Full Magic Attack
-(32629, 4408, 1), -- HP Increase (1x)
-(32629, 4409, 1), -- MP Increase (1x)
-(32629, 4410, 11), -- Average P. Atk.
-(32629, 4411, 11), -- Average M. Atk.
-(32629, 4412, 11), -- Average P. Def.
-(32629, 4413, 11), -- Average M. Def.
-(32629, 4414, 2), -- Standard Type
-(32629, 4415, 1), -- Bare Hands
-(32629, 4416, 14), -- Humans
+(32629, 4408, 1), -- HP Modifiers
+(32629, 4409, 1), -- MP Modifiers
+(32629, 4410, 11), -- P. Atk. Modifiers
+(32629, 4411, 11), -- M. Atk. Modifiers
+(32629, 4412, 11), -- P. Def. Modifiers
+(32629, 4413, 11), -- M. Def. Modifiers
+(32629, 4414, 2), -- Armor Type
+(32629, 4415, 1), -- Weapon Type
+(32629, 4416, 14), -- Races
 -- Gracia Server Helper
 (32630, 4045, 1), -- Resist Full Magic Attack
-(32630, 4408, 1), -- HP Increase (1x)
-(32630, 4409, 1), -- MP Increase (1x)
-(32630, 4410, 11), -- Average P. Atk.
-(32630, 4411, 11), -- Average M. Atk.
-(32630, 4412, 11), -- Average P. Def.
-(32630, 4413, 11), -- Average M. Def.
-(32630, 4414, 2), -- Standard Type
-(32630, 4415, 1), -- Bare Hands
-(32630, 4416, 14), -- Humans
+(32630, 4408, 1), -- HP Modifiers
+(32630, 4409, 1), -- MP Modifiers
+(32630, 4410, 11), -- P. Atk. Modifiers
+(32630, 4411, 11), -- M. Atk. Modifiers
+(32630, 4412, 11), -- P. Def. Modifiers
+(32630, 4413, 11), -- M. Def. Modifiers
+(32630, 4414, 2), -- Armor Type
+(32630, 4415, 1), -- Weapon Type
+(32630, 4416, 14), -- Races
 -- Gracia Server Mark Manager
 (32631, 4045, 1), -- Resist Full Magic Attack
-(32631, 4408, 1), -- HP Increase (1x)
-(32631, 4409, 1), -- MP Increase (1x)
-(32631, 4410, 11), -- Average P. Atk.
-(32631, 4411, 11), -- Average M. Atk.
-(32631, 4412, 11), -- Average P. Def.
-(32631, 4413, 11), -- Average M. Def.
-(32631, 4414, 2), -- Standard Type
-(32631, 4415, 1), -- Bare Hands
-(32631, 4416, 14), -- Humans
+(32631, 4408, 1), -- HP Modifiers
+(32631, 4409, 1), -- MP Modifiers
+(32631, 4410, 11), -- P. Atk. Modifiers
+(32631, 4411, 11), -- M. Atk. Modifiers
+(32631, 4412, 11), -- P. Def. Modifiers
+(32631, 4413, 11), -- M. Def. Modifiers
+(32631, 4414, 2), -- Armor Type
+(32631, 4415, 1), -- Weapon Type
+(32631, 4416, 14), -- Races
 -- Gracian Survivor
 (32632, 4045, 1), -- Resist Full Magic Attack
-(32632, 4408, 1), -- HP Increase (1x)
-(32632, 4409, 1), -- MP Increase (1x)
-(32632, 4410, 11), -- Average P. Atk.
-(32632, 4411, 11), -- Average M. Atk.
-(32632, 4412, 11), -- Average P. Def.
-(32632, 4413, 11), -- Average M. Def.
-(32632, 4414, 2), -- Standard Type
-(32632, 4415, 3), -- One-handed Sword
-(32632, 4416, 14), -- Humans
+(32632, 4408, 1), -- HP Modifiers
+(32632, 4409, 1), -- MP Modifiers
+(32632, 4410, 11), -- P. Atk. Modifiers
+(32632, 4411, 11), -- M. Atk. Modifiers
+(32632, 4412, 11), -- P. Def. Modifiers
+(32632, 4413, 11), -- M. Def. Modifiers
+(32632, 4414, 2), -- Armor Type
+(32632, 4415, 3), -- Weapon Type
+(32632, 4416, 14), -- Races
 -- Cat of Christmas
 (32633, 4045, 1), -- Resist Full Magic Attack
-(32633, 4408, 1), -- HP Increase (1x)
-(32633, 4409, 1), -- MP Increase (1x)
-(32633, 4410, 11), -- Average P. Atk.
-(32633, 4411, 11), -- Average M. Atk.
-(32633, 4412, 11), -- Average P. Def.
-(32633, 4413, 11), -- Average M. Def.
-(32633, 4414, 2), -- Standard Type
-(32633, 4415, 1), -- Bare Hands
-(32633, 4416, 7), -- Spirits
+(32633, 4408, 1), -- HP Modifiers
+(32633, 4409, 1), -- MP Modifiers
+(32633, 4410, 11), -- P. Atk. Modifiers
+(32633, 4411, 11), -- M. Atk. Modifiers
+(32633, 4412, 11), -- P. Def. Modifiers
+(32633, 4413, 11), -- M. Def. Modifiers
+(32633, 4414, 2), -- Armor Type
+(32633, 4415, 1), -- Weapon Type
+(32633, 4416, 7), -- Races
 -- Cat of Christmas
 (32634, 4045, 1), -- Resist Full Magic Attack
-(32634, 4408, 1), -- HP Increase (1x)
-(32634, 4409, 1), -- MP Increase (1x)
-(32634, 4410, 11), -- Average P. Atk.
-(32634, 4411, 11), -- Average M. Atk.
-(32634, 4412, 11), -- Average P. Def.
-(32634, 4413, 11), -- Average M. Def.
-(32634, 4414, 2), -- Standard Type
-(32634, 4415, 1), -- Bare Hands
-(32634, 4416, 7), -- Spirits
+(32634, 4408, 1), -- HP Modifiers
+(32634, 4409, 1), -- MP Modifiers
+(32634, 4410, 11), -- P. Atk. Modifiers
+(32634, 4411, 11), -- M. Atk. Modifiers
+(32634, 4412, 11), -- P. Def. Modifiers
+(32634, 4413, 11), -- M. Def. Modifiers
+(32634, 4414, 2), -- Armor Type
+(32634, 4415, 1), -- Weapon Type
+(32634, 4416, 7), -- Races
 -- Master Dugi
 (32635, 4045, 1), -- Resist Full Magic Attack
-(32635, 4408, 1), -- HP Increase (1x)
-(32635, 4409, 1), -- MP Increase (1x)
-(32635, 4410, 11), -- Average P. Atk.
-(32635, 4411, 11), -- Average M. Atk.
-(32635, 4412, 11), -- Average P. Def.
-(32635, 4413, 11), -- Average M. Def.
-(32635, 4414, 2), -- Standard Type
-(32635, 4415, 1), -- Bare Hands
-(32635, 4416, 6), -- Humanoids
+(32635, 4408, 1), -- HP Modifiers
+(32635, 4409, 1), -- MP Modifiers
+(32635, 4410, 11), -- P. Atk. Modifiers
+(32635, 4411, 11), -- M. Atk. Modifiers
+(32635, 4412, 11), -- P. Def. Modifiers
+(32635, 4413, 11), -- M. Def. Modifiers
+(32635, 4414, 2), -- Armor Type
+(32635, 4415, 1), -- Weapon Type
+(32635, 4416, 6), -- Races
 -- Employee of Magic Research Institute
 (32636, 4045, 1), -- Resist Full Magic Attack
-(32636, 4408, 1), -- HP Increase (1x)
-(32636, 4409, 1), -- MP Increase (1x)
-(32636, 4410, 11), -- Average P. Atk.
-(32636, 4411, 11), -- Average M. Atk.
-(32636, 4412, 11), -- Average P. Def.
-(32636, 4413, 11), -- Average M. Def.
-(32636, 4414, 2), -- Standard Type
-(32636, 4415, 3), -- One-handed Sword
-(32636, 4416, 18), -- Dwarves
+(32636, 4408, 1), -- HP Modifiers
+(32636, 4409, 1), -- MP Modifiers
+(32636, 4410, 11), -- P. Atk. Modifiers
+(32636, 4411, 11), -- M. Atk. Modifiers
+(32636, 4412, 11), -- P. Def. Modifiers
+(32636, 4413, 11), -- M. Def. Modifiers
+(32636, 4414, 2), -- Armor Type
+(32636, 4415, 3), -- Weapon Type
+(32636, 4416, 18), -- Races
 -- Foundry Teleporter
 (32637, 4045, 1), -- Resist Full Magic Attack
-(32637, 4390, 1), -- Mystic Immunity
-(32637, 4408, 1), -- HP Increase (1x)
-(32637, 4409, 1), -- MP Increase (1x)
-(32637, 4410, 11), -- Average P. Atk.
-(32637, 4411, 11), -- Average M. Atk.
-(32637, 4412, 11), -- Average P. Def.
-(32637, 4413, 11), -- Average M. Def.
-(32637, 4414, 2), -- Standard Type
-(32637, 4415, 3), -- One-handed Sword
-(32637, 4416, 19), -- Others
+(32637, 4390, 1), -- NPC Abnormal Immunity
+(32637, 4408, 1), -- HP Modifiers
+(32637, 4409, 1), -- MP Modifiers
+(32637, 4410, 11), -- P. Atk. Modifiers
+(32637, 4411, 11), -- M. Atk. Modifiers
+(32637, 4412, 11), -- P. Def. Modifiers
+(32637, 4413, 11), -- M. Def. Modifiers
+(32637, 4414, 2), -- Armor Type
+(32637, 4415, 3), -- Weapon Type
+(32637, 4416, 19), -- Races
 -- Roni the cat
 (32638, 4045, 1), -- Resist Full Magic Attack
-(32638, 4408, 1), -- HP Increase (1x)
-(32638, 4409, 1), -- MP Increase (1x)
-(32638, 4410, 11), -- Average P. Atk.
-(32638, 4411, 11), -- Average M. Atk.
-(32638, 4412, 11), -- Average P. Def.
-(32638, 4413, 11), -- Average M. Def.
-(32638, 4414, 2), -- Standard Type
-(32638, 4415, 1), -- Bare Hands
-(32638, 4416, 7), -- Spirits
+(32638, 4408, 1), -- HP Modifiers
+(32638, 4409, 1), -- MP Modifiers
+(32638, 4410, 11), -- P. Atk. Modifiers
+(32638, 4411, 11), -- M. Atk. Modifiers
+(32638, 4412, 11), -- P. Def. Modifiers
+(32638, 4413, 11), -- M. Def. Modifiers
+(32638, 4414, 2), -- Armor Type
+(32638, 4415, 1), -- Weapon Type
+(32638, 4416, 7), -- Races
 -- Pierre Baguette
 (32639, 4045, 1), -- Resist Full Magic Attack
-(32639, 4408, 1), -- HP Increase (1x)
-(32639, 4409, 1), -- MP Increase (1x)
-(32639, 4410, 11), -- Average P. Atk.
-(32639, 4411, 11), -- Average M. Atk.
-(32639, 4412, 11), -- Average P. Def.
-(32639, 4413, 11), -- Average M. Def.
-(32639, 4414, 2), -- Standard Type
-(32639, 4415, 3), -- One-handed Sword
-(32639, 4416, 18), -- Dwarves
+(32639, 4408, 1), -- HP Modifiers
+(32639, 4409, 1), -- MP Modifiers
+(32639, 4410, 11), -- P. Atk. Modifiers
+(32639, 4411, 11), -- M. Atk. Modifiers
+(32639, 4412, 11), -- P. Def. Modifiers
+(32639, 4413, 11), -- M. Def. Modifiers
+(32639, 4414, 2), -- Armor Type
+(32639, 4415, 3), -- Weapon Type
+(32639, 4416, 18), -- Races
 -- Kintaijin
 (32640, 4045, 1), -- Resist Full Magic Attack
-(32640, 4408, 1), -- HP Increase (1x)
-(32640, 4409, 1), -- MP Increase (1x)
-(32640, 4410, 11), -- Average P. Atk.
-(32640, 4411, 11), -- Average M. Atk.
-(32640, 4412, 11), -- Average P. Def.
-(32640, 4413, 11), -- Average M. Def.
-(32640, 4414, 2), -- Standard Type
-(32640, 4415, 3), -- One-handed Sword
-(32640, 4416, 17), -- Orcs
+(32640, 4408, 1), -- HP Modifiers
+(32640, 4409, 1), -- MP Modifiers
+(32640, 4410, 11), -- P. Atk. Modifiers
+(32640, 4411, 11), -- M. Atk. Modifiers
+(32640, 4412, 11), -- P. Def. Modifiers
+(32640, 4413, 11), -- M. Def. Modifiers
+(32640, 4414, 2), -- Armor Type
+(32640, 4415, 3), -- Weapon Type
+(32640, 4416, 17), -- Races
 -- Dr. Helvetica
 (32641, 4045, 1), -- Resist Full Magic Attack
-(32641, 4408, 1), -- HP Increase (1x)
-(32641, 4409, 1), -- MP Increase (1x)
-(32641, 4410, 11), -- Average P. Atk.
-(32641, 4411, 11), -- Average M. Atk.
-(32641, 4412, 11), -- Average P. Def.
-(32641, 4413, 11), -- Average M. Def.
-(32641, 4414, 2), -- Standard Type
-(32641, 4415, 3), -- One-handed Sword
-(32641, 4416, 18), -- Dwarves
+(32641, 4408, 1), -- HP Modifiers
+(32641, 4409, 1), -- MP Modifiers
+(32641, 4410, 11), -- P. Atk. Modifiers
+(32641, 4411, 11), -- M. Atk. Modifiers
+(32641, 4412, 11), -- P. Def. Modifiers
+(32641, 4413, 11), -- M. Def. Modifiers
+(32641, 4414, 2), -- Armor Type
+(32641, 4415, 3), -- Weapon Type
+(32641, 4416, 18), -- Races
 -- Broken Golem Control Device
 (32642, 4045, 1), -- Resist Full Magic Attack
-(32642, 4390, 1), -- Mystic Immunity
-(32642, 4408, 1), -- HP Increase (1x)
-(32642, 4409, 1), -- MP Increase (1x)
-(32642, 4410, 11), -- Average P. Atk.
-(32642, 4411, 11), -- Average M. Atk.
-(32642, 4412, 11), -- Average P. Def.
-(32642, 4413, 11), -- Average M. Def.
-(32642, 4414, 2), -- Standard Type
-(32642, 4415, 1), -- Bare Hands
-(32642, 4416, 19), -- Others
+(32642, 4390, 1), -- NPC Abnormal Immunity
+(32642, 4408, 1), -- HP Modifiers
+(32642, 4409, 1), -- MP Modifiers
+(32642, 4410, 11), -- P. Atk. Modifiers
+(32642, 4411, 11), -- M. Atk. Modifiers
+(32642, 4412, 11), -- P. Def. Modifiers
+(32642, 4413, 11), -- M. Def. Modifiers
+(32642, 4414, 2), -- Armor Type
+(32642, 4415, 1), -- Weapon Type
+(32642, 4416, 19), -- Races
 -- Athenia
 (32643, 4045, 1), -- Resist Full Magic Attack
-(32643, 4408, 1), -- HP Increase (1x)
-(32643, 4409, 1), -- MP Increase (1x)
-(32643, 4410, 11), -- Average P. Atk.
-(32643, 4411, 11), -- Average M. Atk.
-(32643, 4412, 11), -- Average P. Def.
-(32643, 4413, 11), -- Average M. Def.
-(32643, 4414, 2), -- Standard Type
-(32643, 4415, 3), -- One-handed Sword
-(32643, 4416, 15), -- Elves
+(32643, 4408, 1), -- HP Modifiers
+(32643, 4409, 1), -- MP Modifiers
+(32643, 4410, 11), -- P. Atk. Modifiers
+(32643, 4411, 11), -- M. Atk. Modifiers
+(32643, 4412, 11), -- P. Def. Modifiers
+(32643, 4413, 11), -- M. Def. Modifiers
+(32643, 4414, 2), -- Armor Type
+(32643, 4415, 3), -- Weapon Type
+(32643, 4416, 15), -- Races
 -- Piazza
 (32644, 4045, 1), -- Resist Full Magic Attack
-(32644, 4408, 1), -- HP Increase (1x)
-(32644, 4409, 1), -- MP Increase (1x)
-(32644, 4410, 11), -- Average P. Atk.
-(32644, 4411, 11), -- Average M. Atk.
-(32644, 4412, 11), -- Average P. Def.
-(32644, 4413, 11), -- Average M. Def.
-(32644, 4414, 2), -- Standard Type
-(32644, 4415, 3), -- One-handed Sword
-(32644, 4416, 15), -- Elves
+(32644, 4408, 1), -- HP Modifiers
+(32644, 4409, 1), -- MP Modifiers
+(32644, 4410, 11), -- P. Atk. Modifiers
+(32644, 4411, 11), -- M. Atk. Modifiers
+(32644, 4412, 11), -- P. Def. Modifiers
+(32644, 4413, 11), -- M. Def. Modifiers
+(32644, 4414, 2), -- Armor Type
+(32644, 4415, 3), -- Weapon Type
+(32644, 4416, 15), -- Races
 -- Chandra
 (32645, 4045, 1), -- Resist Full Magic Attack
-(32645, 4408, 1), -- HP Increase (1x)
-(32645, 4409, 1), -- MP Increase (1x)
-(32645, 4410, 11), -- Average P. Atk.
-(32645, 4411, 11), -- Average M. Atk.
-(32645, 4412, 11); -- Average P. Def.
-
-INSERT INTO `npcskills` VALUES
-(32645, 4413, 11), -- Average M. Def.
-(32645, 4414, 2), -- Standard Type
-(32645, 4415, 3), -- One-handed Sword
-(32645, 4416, 18), -- Dwarves
+(32645, 4408, 1), -- HP Modifiers
+(32645, 4409, 1), -- MP Modifiers
+(32645, 4410, 11), -- P. Atk. Modifiers
+(32645, 4411, 11), -- M. Atk. Modifiers
+(32645, 4412, 11), -- P. Def. Modifiers
+(32645, 4413, 11), -- M. Def. Modifiers
+(32645, 4414, 2), -- Armor Type
+(32645, 4415, 3), -- Weapon Type
+(32645, 4416, 18), -- Races
 -- Katensa
 (32646, 4045, 1), -- Resist Full Magic Attack
-(32646, 4408, 1), -- HP Increase (1x)
-(32646, 4409, 1), -- MP Increase (1x)
-(32646, 4410, 11), -- Average P. Atk.
-(32646, 4411, 11), -- Average M. Atk.
-(32646, 4412, 11), -- Average P. Def.
-(32646, 4413, 11), -- Average M. Def.
-(32646, 4414, 2), -- Standard Type
-(32646, 4415, 3), -- One-handed Sword
-(32646, 4416, 18), -- Dwarves
+(32646, 4408, 1), -- HP Modifiers
+(32646, 4409, 1), -- MP Modifiers
+(32646, 4410, 11), -- P. Atk. Modifiers
+(32646, 4411, 11), -- M. Atk. Modifiers
+(32646, 4412, 11), -- P. Def. Modifiers
+(32646, 4413, 11), -- M. Def. Modifiers
+(32646, 4414, 2), -- Armor Type
+(32646, 4415, 3), -- Weapon Type
+(32646, 4416, 18), -- Races
 -- Atra
 (32647, 4045, 1), -- Resist Full Magic Attack
-(32647, 4408, 1), -- HP Increase (1x)
-(32647, 4409, 1), -- MP Increase (1x)
-(32647, 4410, 11), -- Average P. Atk.
-(32647, 4411, 11), -- Average M. Atk.
-(32647, 4412, 11), -- Average P. Def.
-(32647, 4413, 11), -- Average M. Def.
-(32647, 4414, 2), -- Standard Type
-(32647, 4415, 3), -- One-handed Sword
-(32647, 4416, 14), -- Humans
+(32647, 4408, 1), -- HP Modifiers
+(32647, 4409, 1), -- MP Modifiers
+(32647, 4410, 11), -- P. Atk. Modifiers
+(32647, 4411, 11), -- M. Atk. Modifiers
+(32647, 4412, 11), -- P. Def. Modifiers
+(32647, 4413, 11), -- M. Def. Modifiers
+(32647, 4414, 2), -- Armor Type
+(32647, 4415, 3), -- Weapon Type
+(32647, 4416, 14), -- Races
 -- News Informer
 (32648, 4045, 1), -- Resist Full Magic Attack
-(32648, 4408, 1), -- HP Increase (1x)
-(32648, 4409, 1), -- MP Increase (1x)
-(32648, 4410, 11), -- Average P. Atk.
-(32648, 4411, 11), -- Average M. Atk.
-(32648, 4412, 11), -- Average P. Def.
-(32648, 4413, 11), -- Average M. Def.
-(32648, 4414, 2), -- Standard Type
-(32648, 4415, 1), -- Bare Hands
-(32648, 4416, 6), -- Humanoids
+(32648, 4408, 1), -- HP Modifiers
+(32648, 4409, 1), -- MP Modifiers
+(32648, 4410, 11), -- P. Atk. Modifiers
+(32648, 4411, 11), -- M. Atk. Modifiers
+(32648, 4412, 11), -- P. Def. Modifiers
+(32648, 4413, 11), -- M. Def. Modifiers
+(32648, 4414, 2), -- Armor Type
+(32648, 4415, 1), -- Weapon Type
+(32648, 4416, 6), -- Races
 -- Dwyph
 (32649, 4045, 1), -- Resist Full Magic Attack
-(32649, 4408, 1), -- HP Increase (1x)
-(32649, 4409, 1), -- MP Increase (1x)
-(32649, 4410, 11), -- Average P. Atk.
-(32649, 4411, 11), -- Average M. Atk.
-(32649, 4412, 11), -- Average P. Def.
-(32649, 4413, 11), -- Average M. Def.
-(32649, 4414, 2), -- Standard Type
-(32649, 4415, 1), -- Bare Hands
-(32649, 4416, 18), -- Dwarves
+(32649, 4408, 1), -- HP Modifiers
+(32649, 4409, 1), -- MP Modifiers
+(32649, 4410, 11), -- P. Atk. Modifiers
+(32649, 4411, 11), -- M. Atk. Modifiers
+(32649, 4412, 11), -- P. Def. Modifiers
+(32649, 4413, 11), -- M. Def. Modifiers
+(32649, 4414, 2), -- Armor Type
+(32649, 4415, 1), -- Weapon Type
+(32649, 4416, 18), -- Races
 -- Kanemika
 (32650, 4045, 1), -- Resist Full Magic Attack
-(32650, 4408, 1), -- HP Increase (1x)
-(32650, 4409, 1), -- MP Increase (1x)
-(32650, 4410, 11), -- Average P. Atk.
-(32650, 4411, 11), -- Average M. Atk.
-(32650, 4412, 11), -- Average P. Def.
-(32650, 4413, 11), -- Average M. Def.
-(32650, 4414, 2), -- Standard Type
-(32650, 4415, 3), -- One-handed Sword
-(32650, 4416, 6), -- Humanoids
+(32650, 4408, 1), -- HP Modifiers
+(32650, 4409, 1), -- MP Modifiers
+(32650, 4410, 11), -- P. Atk. Modifiers
+(32650, 4411, 11), -- M. Atk. Modifiers
+(32650, 4412, 11), -- P. Def. Modifiers
+(32650, 4413, 11), -- M. Def. Modifiers
+(32650, 4414, 2), -- Armor Type
+(32650, 4415, 3), -- Weapon Type
+(32650, 4416, 6), -- Races
 -- Grave Robber Warrior
 (32651, 4045, 1), -- Resist Full Magic Attack
-(32651, 4408, 1), -- HP Increase (1x)
-(32651, 4409, 1), -- MP Increase (1x)
-(32651, 4410, 11), -- Average P. Atk.
-(32651, 4411, 11), -- Average M. Atk.
-(32651, 4412, 11), -- Average P. Def.
-(32651, 4413, 11), -- Average M. Def.
-(32651, 4414, 2), -- Standard Type
-(32651, 4415, 3), -- One-handed Sword
-(32651, 4416, 6), -- Humanoids
+(32651, 4408, 1), -- HP Modifiers
+(32651, 4409, 1), -- MP Modifiers
+(32651, 4410, 11), -- P. Atk. Modifiers
+(32651, 4411, 11), -- M. Atk. Modifiers
+(32651, 4412, 11), -- P. Def. Modifiers
+(32651, 4413, 11), -- M. Def. Modifiers
+(32651, 4414, 2), -- Armor Type
+(32651, 4415, 3), -- Weapon Type
+(32651, 4416, 6), -- Races
 -- Teleport Crystal
 (32652, 4045, 1), -- Resist Full Magic Attack
-(32652, 4390, 1), -- Mystic Immunity
-(32652, 4408, 1), -- HP Increase (1x)
-(32652, 4409, 1), -- MP Increase (1x)
-(32652, 4410, 11), -- Average P. Atk.
-(32652, 4411, 11), -- Average M. Atk.
-(32652, 4412, 11), -- Average P. Def.
-(32652, 4413, 11), -- Average M. Def.
-(32652, 4414, 2), -- Standard Type
-(32652, 4415, 3), -- One-handed Sword
-(32652, 4416, 19), -- Others
+(32652, 4390, 1), -- NPC Abnormal Immunity
+(32652, 4408, 1), -- HP Modifiers
+(32652, 4409, 1), -- MP Modifiers
+(32652, 4410, 11), -- P. Atk. Modifiers
+(32652, 4411, 11), -- M. Atk. Modifiers
+(32652, 4412, 11), -- P. Def. Modifiers
+(32652, 4413, 11), -- M. Def. Modifiers
+(32652, 4414, 2), -- Armor Type
+(32652, 4415, 3), -- Weapon Type
+(32652, 4416, 19), -- Races
 -- Krun
 (32653, 4045, 1), -- Resist Full Magic Attack
-(32653, 4408, 1), -- HP Increase (1x)
-(32653, 4409, 1), -- MP Increase (1x)
-(32653, 4410, 11), -- Average P. Atk.
-(32653, 4411, 11), -- Average M. Atk.
-(32653, 4412, 11), -- Average P. Def.
-(32653, 4413, 11), -- Average M. Def.
-(32653, 4414, 2), -- Standard Type
-(32653, 4415, 3), -- One-handed Sword
-(32653, 4416, 18), -- Dwarves
+(32653, 4408, 1), -- HP Modifiers
+(32653, 4409, 1), -- MP Modifiers
+(32653, 4410, 11), -- P. Atk. Modifiers
+(32653, 4411, 11), -- M. Atk. Modifiers
+(32653, 4412, 11), -- P. Def. Modifiers
+(32653, 4413, 11), -- M. Def. Modifiers
+(32653, 4414, 2), -- Armor Type
+(32653, 4415, 3), -- Weapon Type
+(32653, 4416, 18), -- Races
 -- Tarun
 (32654, 4045, 1), -- Resist Full Magic Attack
-(32654, 4408, 1), -- HP Increase (1x)
-(32654, 4409, 1), -- MP Increase (1x)
-(32654, 4410, 11), -- Average P. Atk.
-(32654, 4411, 11), -- Average M. Atk.
-(32654, 4412, 11), -- Average P. Def.
-(32654, 4413, 11), -- Average M. Def.
-(32654, 4414, 2), -- Standard Type
-(32654, 4415, 3), -- One-handed Sword
-(32654, 4416, 18), -- Dwarves
+(32654, 4408, 1), -- HP Modifiers
+(32654, 4409, 1), -- MP Modifiers
+(32654, 4410, 11), -- P. Atk. Modifiers
+(32654, 4411, 11), -- M. Atk. Modifiers
+(32654, 4412, 11), -- P. Def. Modifiers
+(32654, 4413, 11), -- M. Def. Modifiers
+(32654, 4414, 2), -- Armor Type
+(32654, 4415, 3), -- Weapon Type
+(32654, 4416, 18), -- Races
 -- Chairen
 (32655, 4045, 1), -- Resist Full Magic Attack
-(32655, 4408, 1), -- HP Increase (1x)
-(32655, 4409, 1), -- MP Increase (1x)
-(32655, 4410, 11), -- Average P. Atk.
-(32655, 4411, 11), -- Average M. Atk.
-(32655, 4412, 11), -- Average P. Def.
-(32655, 4413, 11), -- Average M. Def.
-(32655, 4414, 2), -- Standard Type
-(32655, 4415, 3), -- One-handed Sword
-(32655, 4416, 17), -- Orcs
+(32655, 4408, 1), -- HP Modifiers
+(32655, 4409, 1), -- MP Modifiers
+(32655, 4410, 11), -- P. Atk. Modifiers
+(32655, 4411, 11), -- M. Atk. Modifiers
+(32655, 4412, 11), -- P. Def. Modifiers
+(32655, 4413, 11), -- M. Def. Modifiers
+(32655, 4414, 2), -- Armor Type
+(32655, 4415, 3), -- Weapon Type
+(32655, 4416, 17), -- Races
 -- 
 (32656, 4045, 1), -- Resist Full Magic Attack
-(32656, 4390, 1), -- Mystic Immunity
-(32656, 4408, 1), -- HP Increase (1x)
-(32656, 4409, 1), -- MP Increase (1x)
-(32656, 4410, 11), -- Average P. Atk.
-(32656, 4411, 11), -- Average M. Atk.
-(32656, 4412, 11), -- Average P. Def.
-(32656, 4413, 11), -- Average M. Def.
-(32656, 4414, 2), -- Standard Type
-(32656, 4415, 3), -- One-handed Sword
-(32656, 4416, 2), -- Magic Creatures
+(32656, 4390, 1), -- NPC Abnormal Immunity
+(32656, 4408, 1), -- HP Modifiers
+(32656, 4409, 1), -- MP Modifiers
+(32656, 4410, 11), -- P. Atk. Modifiers
+(32656, 4411, 11), -- M. Atk. Modifiers
+(32656, 4412, 11), -- P. Def. Modifiers
+(32656, 4413, 11), -- M. Def. Modifiers
+(32656, 4414, 2), -- Armor Type
+(32656, 4415, 3), -- Weapon Type
+(32656, 4416, 2), -- Races
 -- Disciple's Gatekeeper
 (32657, 4045, 1), -- Resist Full Magic Attack
-(32657, 4390, 1), -- Mystic Immunity
-(32657, 4408, 1), -- HP Increase (1x)
-(32657, 4409, 1), -- MP Increase (1x)
-(32657, 4410, 11), -- Average P. Atk.
-(32657, 4411, 11), -- Average M. Atk.
-(32657, 4412, 11), -- Average P. Def.
-(32657, 4413, 11), -- Average M. Def.
-(32657, 4414, 2), -- Standard Type
-(32657, 4415, 3), -- One-handed Sword
-(32657, 4416, 19), -- Others
+(32657, 4390, 1), -- NPC Abnormal Immunity
+(32657, 4408, 1), -- HP Modifiers
+(32657, 4409, 1), -- MP Modifiers
+(32657, 4410, 11), -- P. Atk. Modifiers
+(32657, 4411, 11), -- M. Atk. Modifiers
+(32657, 4412, 11), -- P. Def. Modifiers
+(32657, 4413, 11), -- M. Def. Modifiers
+(32657, 4414, 2), -- Armor Type
+(32657, 4415, 3), -- Weapon Type
+(32657, 4416, 19), -- Races
 -- Guardian of Eastern Seal
 (32658, 4045, 1), -- Resist Full Magic Attack
-(32658, 4390, 1), -- Mystic Immunity
-(32658, 4408, 1), -- HP Increase (1x)
-(32658, 4409, 1), -- MP Increase (1x)
-(32658, 4410, 11), -- Average P. Atk.
-(32658, 4411, 11), -- Average M. Atk.
-(32658, 4412, 11), -- Average P. Def.
-(32658, 4413, 11), -- Average M. Def.
-(32658, 4414, 2), -- Standard Type
-(32658, 4415, 3), -- One-handed Sword
-(32658, 4416, 19), -- Others
+(32658, 4390, 1), -- NPC Abnormal Immunity
+(32658, 4408, 1), -- HP Modifiers
+(32658, 4409, 1), -- MP Modifiers
+(32658, 4410, 11), -- P. Atk. Modifiers
+(32658, 4411, 11), -- M. Atk. Modifiers
+(32658, 4412, 11), -- P. Def. Modifiers
+(32658, 4413, 11), -- M. Def. Modifiers
+(32658, 4414, 2), -- Armor Type
+(32658, 4415, 3), -- Weapon Type
+(32658, 4416, 19), -- Races
 -- Guardian of Western Seal
 (32659, 4045, 1), -- Resist Full Magic Attack
-(32659, 4390, 1), -- Mystic Immunity
-(32659, 4408, 1), -- HP Increase (1x)
-(32659, 4409, 1), -- MP Increase (1x)
-(32659, 4410, 11), -- Average P. Atk.
-(32659, 4411, 11), -- Average M. Atk.
-(32659, 4412, 11), -- Average P. Def.
-(32659, 4413, 11), -- Average M. Def.
-(32659, 4414, 2), -- Standard Type
-(32659, 4415, 3), -- One-handed Sword
-(32659, 4416, 19), -- Others
+(32659, 4390, 1), -- NPC Abnormal Immunity
+(32659, 4408, 1), -- HP Modifiers
+(32659, 4409, 1), -- MP Modifiers
+(32659, 4410, 11), -- P. Atk. Modifiers
+(32659, 4411, 11), -- M. Atk. Modifiers
+(32659, 4412, 11), -- P. Def. Modifiers
+(32659, 4413, 11), -- M. Def. Modifiers
+(32659, 4414, 2), -- Armor Type
+(32659, 4415, 3), -- Weapon Type
+(32659, 4416, 19), -- Races
 -- Guardian of Southern Seal
 (32660, 4045, 1), -- Resist Full Magic Attack
-(32660, 4390, 1), -- Mystic Immunity
-(32660, 4408, 1), -- HP Increase (1x)
-(32660, 4409, 1), -- MP Increase (1x)
-(32660, 4410, 11), -- Average P. Atk.
-(32660, 4411, 11), -- Average M. Atk.
-(32660, 4412, 11), -- Average P. Def.
-(32660, 4413, 11), -- Average M. Def.
-(32660, 4414, 2), -- Standard Type
-(32660, 4415, 3), -- One-handed Sword
-(32660, 4416, 19), -- Others
+(32660, 4390, 1), -- NPC Abnormal Immunity
+(32660, 4408, 1), -- HP Modifiers
+(32660, 4409, 1), -- MP Modifiers
+(32660, 4410, 11), -- P. Atk. Modifiers
+(32660, 4411, 11), -- M. Atk. Modifiers
+(32660, 4412, 11), -- P. Def. Modifiers
+(32660, 4413, 11), -- M. Def. Modifiers
+(32660, 4414, 2), -- Armor Type
+(32660, 4415, 3), -- Weapon Type
+(32660, 4416, 19), -- Races
 -- Guardian of Northern Seal
 (32661, 4045, 1), -- Resist Full Magic Attack
-(32661, 4390, 1), -- Mystic Immunity
-(32661, 4408, 1), -- HP Increase (1x)
-(32661, 4409, 1), -- MP Increase (1x)
-(32661, 4410, 11), -- Average P. Atk.
-(32661, 4411, 11), -- Average M. Atk.
-(32661, 4412, 11), -- Average P. Def.
-(32661, 4413, 11), -- Average M. Def.
-(32661, 4414, 2), -- Standard Type
-(32661, 4415, 3), -- One-handed Sword
-(32661, 4416, 19), -- Others
+(32661, 4390, 1), -- NPC Abnormal Immunity
+(32661, 4408, 1), -- HP Modifiers
+(32661, 4409, 1), -- MP Modifiers
+(32661, 4410, 11), -- P. Atk. Modifiers
+(32661, 4411, 11), -- M. Atk. Modifiers
+(32661, 4412, 11), -- P. Def. Modifiers
+(32661, 4413, 11), -- M. Def. Modifiers
+(32661, 4414, 2), -- Armor Type
+(32661, 4415, 3), -- Weapon Type
+(32661, 4416, 19), -- Races
 -- Guardian of Great Seal
 (32662, 4045, 1), -- Resist Full Magic Attack
-(32662, 4390, 1), -- Mystic Immunity
-(32662, 4408, 1), -- HP Increase (1x)
-(32662, 4409, 1), -- MP Increase (1x)
-(32662, 4410, 11), -- Average P. Atk.
-(32662, 4411, 11), -- Average M. Atk.
-(32662, 4412, 11), -- Average P. Def.
-(32662, 4413, 11), -- Average M. Def.
-(32662, 4414, 2), -- Standard Type
-(32662, 4415, 3), -- One-handed Sword
-(32662, 4416, 19), -- Others
+(32662, 4390, 1), -- NPC Abnormal Immunity
+(32662, 4408, 1), -- HP Modifiers
+(32662, 4409, 1), -- MP Modifiers
+(32662, 4410, 11), -- P. Atk. Modifiers
+(32662, 4411, 11), -- M. Atk. Modifiers
+(32662, 4412, 11), -- P. Def. Modifiers
+(32662, 4413, 11), -- M. Def. Modifiers
+(32662, 4414, 2), -- Armor Type
+(32662, 4415, 3), -- Weapon Type
+(32662, 4416, 19), -- Races
 -- Guardian of Tower of Seal
 (32663, 4045, 1), -- Resist Full Magic Attack
-(32663, 4390, 1), -- Mystic Immunity
-(32663, 4408, 1), -- HP Increase (1x)
-(32663, 4409, 1), -- MP Increase (1x)
-(32663, 4410, 11), -- Average P. Atk.
-(32663, 4411, 11), -- Average M. Atk.
-(32663, 4412, 11), -- Average P. Def.
-(32663, 4413, 11), -- Average M. Def.
-(32663, 4414, 2), -- Standard Type
-(32663, 4415, 3), -- One-handed Sword
-(32663, 4416, 19), -- Others
+(32663, 4390, 1), -- NPC Abnormal Immunity
+(32663, 4408, 1), -- HP Modifiers
+(32663, 4409, 1), -- MP Modifiers
+(32663, 4410, 11), -- P. Atk. Modifiers
+(32663, 4411, 11), -- M. Atk. Modifiers
+(32663, 4412, 11), -- P. Def. Modifiers
+(32663, 4413, 11), -- M. Def. Modifiers
+(32663, 4414, 2), -- Armor Type
+(32663, 4415, 3), -- Weapon Type
+(32663, 4416, 19), -- Races
 -- Delusion Manager
 (32664, 4045, 1), -- Resist Full Magic Attack
-(32664, 4390, 1), -- Mystic Immunity
-(32664, 4408, 1), -- HP Increase (1x)
-(32664, 4409, 1), -- MP Increase (1x)
-(32664, 4410, 11), -- Average P. Atk.
-(32664, 4411, 11), -- Average M. Atk.
-(32664, 4412, 11), -- Average P. Def.
-(32664, 4413, 11), -- Average M. Def.
-(32664, 4414, 2), -- Standard Type
-(32664, 4415, 3), -- One-handed Sword
-(32664, 4416, 2), -- Magic Creatures
+(32664, 4390, 1), -- NPC Abnormal Immunity
+(32664, 4408, 1), -- HP Modifiers
+(32664, 4409, 1), -- MP Modifiers
+(32664, 4410, 11), -- P. Atk. Modifiers
+(32664, 4411, 11), -- M. Atk. Modifiers
+(32664, 4412, 11), -- P. Def. Modifiers
+(32664, 4413, 11), -- M. Def. Modifiers
+(32664, 4414, 2), -- Armor Type
+(32664, 4415, 3), -- Weapon Type
+(32664, 4416, 2), -- Races
 -- Delusion Manager
 (32665, 4045, 1), -- Resist Full Magic Attack
-(32665, 4390, 1), -- Mystic Immunity
-(32665, 4408, 1), -- HP Increase (1x)
-(32665, 4409, 1), -- MP Increase (1x)
-(32665, 4410, 11), -- Average P. Atk.
-(32665, 4411, 11), -- Average M. Atk.
-(32665, 4412, 11), -- Average P. Def.
-(32665, 4413, 11), -- Average M. Def.
-(32665, 4414, 2), -- Standard Type
-(32665, 4415, 3), -- One-handed Sword
-(32665, 4416, 2), -- Magic Creatures
+(32665, 4390, 1), -- NPC Abnormal Immunity
+(32665, 4408, 1), -- HP Modifiers
+(32665, 4409, 1), -- MP Modifiers
+(32665, 4410, 11), -- P. Atk. Modifiers
+(32665, 4411, 11), -- M. Atk. Modifiers
+(32665, 4412, 11), -- P. Def. Modifiers
+(32665, 4413, 11), -- M. Def. Modifiers
+(32665, 4414, 2), -- Armor Type
+(32665, 4415, 3), -- Weapon Type
+(32665, 4416, 2), -- Races
 -- Delusion Manager
 (32666, 4045, 1), -- Resist Full Magic Attack
-(32666, 4390, 1), -- Mystic Immunity
-(32666, 4408, 1), -- HP Increase (1x)
-(32666, 4409, 1), -- MP Increase (1x)
-(32666, 4410, 11), -- Average P. Atk.
-(32666, 4411, 11), -- Average M. Atk.
-(32666, 4412, 11), -- Average P. Def.
-(32666, 4413, 11), -- Average M. Def.
-(32666, 4414, 2), -- Standard Type
-(32666, 4415, 3), -- One-handed Sword
-(32666, 4416, 2), -- Magic Creatures
+(32666, 4390, 1), -- NPC Abnormal Immunity
+(32666, 4408, 1), -- HP Modifiers
+(32666, 4409, 1), -- MP Modifiers
+(32666, 4410, 11), -- P. Atk. Modifiers
+(32666, 4411, 11), -- M. Atk. Modifiers
+(32666, 4412, 11), -- P. Def. Modifiers
+(32666, 4413, 11), -- M. Def. Modifiers
+(32666, 4414, 2), -- Armor Type
+(32666, 4415, 3), -- Weapon Type
+(32666, 4416, 2), -- Races
 -- Delusion Manager
 (32667, 4045, 1), -- Resist Full Magic Attack
-(32667, 4390, 1), -- Mystic Immunity
-(32667, 4408, 1), -- HP Increase (1x)
-(32667, 4409, 1), -- MP Increase (1x)
-(32667, 4410, 11), -- Average P. Atk.
-(32667, 4411, 11), -- Average M. Atk.
-(32667, 4412, 11), -- Average P. Def.
-(32667, 4413, 11), -- Average M. Def.
-(32667, 4414, 2), -- Standard Type
-(32667, 4415, 3), -- One-handed Sword
-(32667, 4416, 2), -- Magic Creatures
+(32667, 4390, 1), -- NPC Abnormal Immunity
+(32667, 4408, 1), -- HP Modifiers
+(32667, 4409, 1), -- MP Modifiers
+(32667, 4410, 11), -- P. Atk. Modifiers
+(32667, 4411, 11), -- M. Atk. Modifiers
+(32667, 4412, 11), -- P. Def. Modifiers
+(32667, 4413, 11), -- M. Def. Modifiers
+(32667, 4414, 2), -- Armor Type
+(32667, 4415, 3), -- Weapon Type
+(32667, 4416, 2), -- Races
 -- Delusion Manager
 (32668, 4045, 1), -- Resist Full Magic Attack
-(32668, 4390, 1), -- Mystic Immunity
-(32668, 4408, 1), -- HP Increase (1x)
-(32668, 4409, 1), -- MP Increase (1x)
-(32668, 4410, 11), -- Average P. Atk.
-(32668, 4411, 11), -- Average M. Atk.
-(32668, 4412, 11), -- Average P. Def.
-(32668, 4413, 11), -- Average M. Def.
-(32668, 4414, 2), -- Standard Type
-(32668, 4415, 3), -- One-handed Sword
-(32668, 4416, 2), -- Magic Creatures
+(32668, 4390, 1), -- NPC Abnormal Immunity
+(32668, 4408, 1), -- HP Modifiers
+(32668, 4409, 1), -- MP Modifiers
+(32668, 4410, 11), -- P. Atk. Modifiers
+(32668, 4411, 11), -- M. Atk. Modifiers
+(32668, 4412, 11), -- P. Def. Modifiers
+(32668, 4413, 11), -- M. Def. Modifiers
+(32668, 4414, 2), -- Armor Type
+(32668, 4415, 3), -- Weapon Type
+(32668, 4416, 2), -- Races
 -- Delusion Manager
 (32669, 4045, 1), -- Resist Full Magic Attack
-(32669, 4390, 1), -- Mystic Immunity
-(32669, 4408, 1), -- HP Increase (1x)
-(32669, 4409, 1), -- MP Increase (1x)
-(32669, 4410, 11), -- Average P. Atk.
-(32669, 4411, 11), -- Average M. Atk.
-(32669, 4412, 11), -- Average P. Def.
-(32669, 4413, 11), -- Average M. Def.
-(32669, 4414, 2), -- Standard Type
-(32669, 4415, 3), -- One-handed Sword
-(32669, 4416, 2), -- Magic Creatures
+(32669, 4390, 1), -- NPC Abnormal Immunity
+(32669, 4408, 1), -- HP Modifiers
+(32669, 4409, 1), -- MP Modifiers
+(32669, 4410, 11), -- P. Atk. Modifiers
+(32669, 4411, 11), -- M. Atk. Modifiers
+(32669, 4412, 11), -- P. Def. Modifiers
+(32669, 4413, 11), -- M. Def. Modifiers
+(32669, 4414, 2), -- Armor Type
+(32669, 4415, 3), -- Weapon Type
+(32669, 4416, 2), -- Races
 -- Delusion Manager
 (32670, 4045, 1), -- Resist Full Magic Attack
-(32670, 4390, 1), -- Mystic Immunity
-(32670, 4408, 1), -- HP Increase (1x)
-(32670, 4409, 1), -- MP Increase (1x)
-(32670, 4410, 11), -- Average P. Atk.
-(32670, 4411, 11), -- Average M. Atk.
-(32670, 4412, 11), -- Average P. Def.
-(32670, 4413, 11), -- Average M. Def.
-(32670, 4414, 2), -- Standard Type
-(32670, 4415, 3), -- One-handed Sword
-(32670, 4416, 2), -- Magic Creatures
+(32670, 4390, 1), -- NPC Abnormal Immunity
+(32670, 4408, 1), -- HP Modifiers
+(32670, 4409, 1), -- MP Modifiers
+(32670, 4410, 11), -- P. Atk. Modifiers
+(32670, 4411, 11), -- M. Atk. Modifiers
+(32670, 4412, 11), -- P. Def. Modifiers
+(32670, 4413, 11), -- M. Def. Modifiers
+(32670, 4414, 2), -- Armor Type
+(32670, 4415, 3), -- Weapon Type
+(32670, 4416, 2), -- Races
 -- Delusion Manager
 (32671, 4045, 1), -- Resist Full Magic Attack
-(32671, 4390, 1), -- Mystic Immunity
-(32671, 4408, 1), -- HP Increase (1x)
-(32671, 4409, 1), -- MP Increase (1x)
-(32671, 4410, 11), -- Average P. Atk.
-(32671, 4411, 11), -- Average M. Atk.
-(32671, 4412, 11), -- Average P. Def.
-(32671, 4413, 11), -- Average M. Def.
-(32671, 4414, 2), -- Standard Type
-(32671, 4415, 3), -- One-handed Sword
-(32671, 4416, 2), -- Magic Creatures
+(32671, 4390, 1), -- NPC Abnormal Immunity
+(32671, 4408, 1), -- HP Modifiers
+(32671, 4409, 1), -- MP Modifiers
+(32671, 4410, 11), -- P. Atk. Modifiers
+(32671, 4411, 11), -- M. Atk. Modifiers
+(32671, 4412, 11), -- P. Def. Modifiers
+(32671, 4413, 11), -- M. Def. Modifiers
+(32671, 4414, 2), -- Armor Type
+(32671, 4415, 3), -- Weapon Type
+(32671, 4416, 2), -- Races
 -- Delusion Manager
 (32672, 4045, 1), -- Resist Full Magic Attack
-(32672, 4390, 1), -- Mystic Immunity
-(32672, 4408, 1), -- HP Increase (1x)
-(32672, 4409, 1), -- MP Increase (1x)
-(32672, 4410, 11), -- Average P. Atk.
-(32672, 4411, 11), -- Average M. Atk.
-(32672, 4412, 11), -- Average P. Def.
-(32672, 4413, 11), -- Average M. Def.
-(32672, 4414, 2), -- Standard Type
-(32672, 4415, 3), -- One-handed Sword
-(32672, 4416, 2), -- Magic Creatures
+(32672, 4390, 1), -- NPC Abnormal Immunity
+(32672, 4408, 1), -- HP Modifiers
+(32672, 4409, 1), -- MP Modifiers
+(32672, 4410, 11), -- P. Atk. Modifiers
+(32672, 4411, 11), -- M. Atk. Modifiers
+(32672, 4412, 11), -- P. Def. Modifiers
+(32672, 4413, 11), -- M. Def. Modifiers
+(32672, 4414, 2), -- Armor Type
+(32672, 4415, 3), -- Weapon Type
+(32672, 4416, 2), -- Races
 -- Delusion Manager
 (32673, 4045, 1), -- Resist Full Magic Attack
-(32673, 4390, 1), -- Mystic Immunity
-(32673, 4408, 1), -- HP Increase (1x)
-(32673, 4409, 1), -- MP Increase (1x)
-(32673, 4410, 11), -- Average P. Atk.
-(32673, 4411, 11), -- Average M. Atk.
-(32673, 4412, 11), -- Average P. Def.
-(32673, 4413, 11), -- Average M. Def.
-(32673, 4414, 2), -- Standard Type
-(32673, 4415, 3), -- One-handed Sword
-(32673, 4416, 2), -- Magic Creatures
+(32673, 4390, 1), -- NPC Abnormal Immunity
+(32673, 4408, 1), -- HP Modifiers
+(32673, 4409, 1), -- MP Modifiers
+(32673, 4410, 11), -- P. Atk. Modifiers
+(32673, 4411, 11), -- M. Atk. Modifiers
+(32673, 4412, 11), -- P. Def. Modifiers
+(32673, 4413, 11), -- M. Def. Modifiers
+(32673, 4414, 2), -- Armor Type
+(32673, 4415, 3), -- Weapon Type
+(32673, 4416, 2), -- Races
 -- Delusion Manager
 (32674, 4045, 1), -- Resist Full Magic Attack
-(32674, 4390, 1), -- Mystic Immunity
-(32674, 4408, 1), -- HP Increase (1x)
-(32674, 4409, 1), -- MP Increase (1x)
-(32674, 4410, 11), -- Average P. Atk.
-(32674, 4411, 11), -- Average M. Atk.
-(32674, 4412, 11), -- Average P. Def.
-(32674, 4413, 11), -- Average M. Def.
-(32674, 4414, 2), -- Standard Type
-(32674, 4415, 3), -- One-handed Sword
-(32674, 4416, 2), -- Magic Creatures
+(32674, 4390, 1), -- NPC Abnormal Immunity
+(32674, 4408, 1), -- HP Modifiers
+(32674, 4409, 1), -- MP Modifiers
+(32674, 4410, 11), -- P. Atk. Modifiers
+(32674, 4411, 11), -- M. Atk. Modifiers
+(32674, 4412, 11), -- P. Def. Modifiers
+(32674, 4413, 11), -- M. Def. Modifiers
+(32674, 4414, 2), -- Armor Type
+(32674, 4415, 3), -- Weapon Type
+(32674, 4416, 2), -- Races
 -- Delusion Manager
 (32675, 4045, 1), -- Resist Full Magic Attack
-(32675, 4390, 1), -- Mystic Immunity
-(32675, 4408, 1), -- HP Increase (1x)
-(32675, 4409, 1), -- MP Increase (1x)
-(32675, 4410, 11), -- Average P. Atk.
-(32675, 4411, 11), -- Average M. Atk.
-(32675, 4412, 11), -- Average P. Def.
-(32675, 4413, 11), -- Average M. Def.
-(32675, 4414, 2), -- Standard Type
-(32675, 4415, 3), -- One-handed Sword
-(32675, 4416, 2), -- Magic Creatures
+(32675, 4390, 1), -- NPC Abnormal Immunity
+(32675, 4408, 1), -- HP Modifiers
+(32675, 4409, 1), -- MP Modifiers
+(32675, 4410, 11), -- P. Atk. Modifiers
+(32675, 4411, 11), -- M. Atk. Modifiers
+(32675, 4412, 11), -- P. Def. Modifiers
+(32675, 4413, 11), -- M. Def. Modifiers
+(32675, 4414, 2), -- Armor Type
+(32675, 4415, 3), -- Weapon Type
+(32675, 4416, 2), -- Races
 -- Delusion Manager
 (32676, 4045, 1), -- Resist Full Magic Attack
-(32676, 4390, 1), -- Mystic Immunity
-(32676, 4408, 1), -- HP Increase (1x)
-(32676, 4409, 1), -- MP Increase (1x)
-(32676, 4410, 11), -- Average P. Atk.
-(32676, 4411, 11), -- Average M. Atk.
-(32676, 4412, 11), -- Average P. Def.
-(32676, 4413, 11), -- Average M. Def.
-(32676, 4414, 2), -- Standard Type
-(32676, 4415, 3), -- One-handed Sword
-(32676, 4416, 2), -- Magic Creatures
+(32676, 4390, 1), -- NPC Abnormal Immunity
+(32676, 4408, 1), -- HP Modifiers
+(32676, 4409, 1), -- MP Modifiers
+(32676, 4410, 11), -- P. Atk. Modifiers
+(32676, 4411, 11), -- M. Atk. Modifiers
+(32676, 4412, 11), -- P. Def. Modifiers
+(32676, 4413, 11), -- M. Def. Modifiers
+(32676, 4414, 2), -- Armor Type
+(32676, 4415, 3), -- Weapon Type
+(32676, 4416, 2), -- Races
 -- Delusion Manager
 (32677, 4045, 1), -- Resist Full Magic Attack
-(32677, 4390, 1), -- Mystic Immunity
-(32677, 4408, 1), -- HP Increase (1x)
-(32677, 4409, 1), -- MP Increase (1x)
-(32677, 4410, 11), -- Average P. Atk.
-(32677, 4411, 11), -- Average M. Atk.
-(32677, 4412, 11), -- Average P. Def.
-(32677, 4413, 11), -- Average M. Def.
-(32677, 4414, 2), -- Standard Type
-(32677, 4415, 3), -- One-handed Sword
-(32677, 4416, 2), -- Magic Creatures
+(32677, 4390, 1), -- NPC Abnormal Immunity
+(32677, 4408, 1), -- HP Modifiers
+(32677, 4409, 1), -- MP Modifiers
+(32677, 4410, 11), -- P. Atk. Modifiers
+(32677, 4411, 11), -- M. Atk. Modifiers
+(32677, 4412, 11), -- P. Def. Modifiers
+(32677, 4413, 11), -- M. Def. Modifiers
+(32677, 4414, 2), -- Armor Type
+(32677, 4415, 3), -- Weapon Type
+(32677, 4416, 2), -- Races
 -- Delusion Manager
 (32678, 4045, 1), -- Resist Full Magic Attack
-(32678, 4390, 1), -- Mystic Immunity
-(32678, 4408, 1), -- HP Increase (1x)
-(32678, 4409, 1), -- MP Increase (1x)
-(32678, 4410, 11), -- Average P. Atk.
-(32678, 4411, 11), -- Average M. Atk.
-(32678, 4412, 11), -- Average P. Def.
-(32678, 4413, 11), -- Average M. Def.
-(32678, 4414, 2), -- Standard Type
-(32678, 4415, 3), -- One-handed Sword
-(32678, 4416, 2), -- Magic Creatures
+(32678, 4390, 1), -- NPC Abnormal Immunity
+(32678, 4408, 1), -- HP Modifiers
+(32678, 4409, 1), -- MP Modifiers
+(32678, 4410, 11), -- P. Atk. Modifiers
+(32678, 4411, 11), -- M. Atk. Modifiers
+(32678, 4412, 11), -- P. Def. Modifiers
+(32678, 4413, 11), -- M. Def. Modifiers
+(32678, 4414, 2), -- Armor Type
+(32678, 4415, 3), -- Weapon Type
+(32678, 4416, 2), -- Races
 -- Delusion Manager
 (32679, 4045, 1), -- Resist Full Magic Attack
-(32679, 4390, 1), -- Mystic Immunity
-(32679, 4408, 1), -- HP Increase (1x)
-(32679, 4409, 1), -- MP Increase (1x)
-(32679, 4410, 11), -- Average P. Atk.
-(32679, 4411, 11), -- Average M. Atk.
-(32679, 4412, 11), -- Average P. Def.
-(32679, 4413, 11), -- Average M. Def.
-(32679, 4414, 2), -- Standard Type
-(32679, 4415, 3), -- One-handed Sword
-(32679, 4416, 2), -- Magic Creatures
+(32679, 4390, 1), -- NPC Abnormal Immunity
+(32679, 4408, 1), -- HP Modifiers
+(32679, 4409, 1), -- MP Modifiers
+(32679, 4410, 11), -- P. Atk. Modifiers
+(32679, 4411, 11), -- M. Atk. Modifiers
+(32679, 4412, 11), -- P. Def. Modifiers
+(32679, 4413, 11), -- M. Def. Modifiers
+(32679, 4414, 2), -- Armor Type
+(32679, 4415, 3), -- Weapon Type
+(32679, 4416, 2), -- Races
 -- Delusion Manager
 (32680, 4045, 1), -- Resist Full Magic Attack
-(32680, 4390, 1), -- Mystic Immunity
-(32680, 4408, 1), -- HP Increase (1x)
-(32680, 4409, 1), -- MP Increase (1x)
-(32680, 4410, 11), -- Average P. Atk.
-(32680, 4411, 11), -- Average M. Atk.
-(32680, 4412, 11), -- Average P. Def.
-(32680, 4413, 11), -- Average M. Def.
-(32680, 4414, 2), -- Standard Type
-(32680, 4415, 3), -- One-handed Sword
-(32680, 4416, 2), -- Magic Creatures
+(32680, 4390, 1), -- NPC Abnormal Immunity
+(32680, 4408, 1), -- HP Modifiers
+(32680, 4409, 1), -- MP Modifiers
+(32680, 4410, 11), -- P. Atk. Modifiers
+(32680, 4411, 11), -- M. Atk. Modifiers
+(32680, 4412, 11), -- P. Def. Modifiers
+(32680, 4413, 11), -- M. Def. Modifiers
+(32680, 4414, 2), -- Armor Type
+(32680, 4415, 3), -- Weapon Type
+(32680, 4416, 2), -- Races
 -- Delusion Manager
 (32681, 4045, 1), -- Resist Full Magic Attack
-(32681, 4390, 1), -- Mystic Immunity
-(32681, 4408, 1), -- HP Increase (1x)
-(32681, 4409, 1), -- MP Increase (1x)
-(32681, 4410, 11), -- Average P. Atk.
-(32681, 4411, 11), -- Average M. Atk.
-(32681, 4412, 11), -- Average P. Def.
-(32681, 4413, 11), -- Average M. Def.
-(32681, 4414, 2), -- Standard Type
-(32681, 4415, 3), -- One-handed Sword
-(32681, 4416, 2), -- Magic Creatures
+(32681, 4390, 1), -- NPC Abnormal Immunity
+(32681, 4408, 1), -- HP Modifiers
+(32681, 4409, 1), -- MP Modifiers
+(32681, 4410, 11), -- P. Atk. Modifiers
+(32681, 4411, 11), -- M. Atk. Modifiers
+(32681, 4412, 11), -- P. Def. Modifiers
+(32681, 4413, 11), -- M. Def. Modifiers
+(32681, 4414, 2), -- Armor Type
+(32681, 4415, 3), -- Weapon Type
+(32681, 4416, 2), -- Races
 -- Delusion Manager
 (32682, 4045, 1), -- Resist Full Magic Attack
-(32682, 4390, 1), -- Mystic Immunity
-(32682, 4408, 1), -- HP Increase (1x)
-(32682, 4409, 1), -- MP Increase (1x)
-(32682, 4410, 11), -- Average P. Atk.
-(32682, 4411, 11), -- Average M. Atk.
-(32682, 4412, 11), -- Average P. Def.
-(32682, 4413, 11), -- Average M. Def.
-(32682, 4414, 2), -- Standard Type
-(32682, 4415, 3), -- One-handed Sword
-(32682, 4416, 2), -- Magic Creatures
+(32682, 4390, 1), -- NPC Abnormal Immunity
+(32682, 4408, 1), -- HP Modifiers
+(32682, 4409, 1), -- MP Modifiers
+(32682, 4410, 11), -- P. Atk. Modifiers
+(32682, 4411, 11), -- M. Atk. Modifiers
+(32682, 4412, 11), -- P. Def. Modifiers
+(32682, 4413, 11), -- M. Def. Modifiers
+(32682, 4414, 2), -- Armor Type
+(32682, 4415, 3), -- Weapon Type
+(32682, 4416, 2), -- Races
 -- Delusion Manager
 (32683, 4045, 1), -- Resist Full Magic Attack
-(32683, 4390, 1), -- Mystic Immunity
-(32683, 4408, 1), -- HP Increase (1x)
-(32683, 4409, 1), -- MP Increase (1x)
-(32683, 4410, 11), -- Average P. Atk.
-(32683, 4411, 11), -- Average M. Atk.
-(32683, 4412, 11), -- Average P. Def.
-(32683, 4413, 11), -- Average M. Def.
-(32683, 4414, 2), -- Standard Type
-(32683, 4415, 3), -- One-handed Sword
-(32683, 4416, 2), -- Magic Creatures
+(32683, 4390, 1), -- NPC Abnormal Immunity
+(32683, 4408, 1), -- HP Modifiers
+(32683, 4409, 1), -- MP Modifiers
+(32683, 4410, 11), -- P. Atk. Modifiers
+(32683, 4411, 11), -- M. Atk. Modifiers
+(32683, 4412, 11), -- P. Def. Modifiers
+(32683, 4413, 11), -- M. Def. Modifiers
+(32683, 4414, 2), -- Armor Type
+(32683, 4415, 3), -- Weapon Type
+(32683, 4416, 2), -- Races
 -- Delusion Manager
 (32684, 4045, 1), -- Resist Full Magic Attack
-(32684, 4390, 1), -- Mystic Immunity
-(32684, 4408, 1), -- HP Increase (1x)
-(32684, 4409, 1), -- MP Increase (1x)
-(32684, 4410, 11), -- Average P. Atk.
-(32684, 4411, 11), -- Average M. Atk.
-(32684, 4412, 11), -- Average P. Def.
-(32684, 4413, 11), -- Average M. Def.
-(32684, 4414, 2), -- Standard Type
-(32684, 4415, 3), -- One-handed Sword
-(32684, 4416, 2), -- Magic Creatures
+(32684, 4390, 1), -- NPC Abnormal Immunity
+(32684, 4408, 1), -- HP Modifiers
+(32684, 4409, 1), -- MP Modifiers
+(32684, 4410, 11), -- P. Atk. Modifiers
+(32684, 4411, 11), -- M. Atk. Modifiers
+(32684, 4412, 11), -- P. Def. Modifiers
+(32684, 4413, 11), -- M. Def. Modifiers
+(32684, 4414, 2), -- Armor Type
+(32684, 4415, 3), -- Weapon Type
+(32684, 4416, 2), -- Races
 -- Delusion Manager
 (32685, 4045, 1), -- Resist Full Magic Attack
-(32685, 4390, 1), -- Mystic Immunity
-(32685, 4408, 1), -- HP Increase (1x)
-(32685, 4409, 1), -- MP Increase (1x)
-(32685, 4410, 11), -- Average P. Atk.
-(32685, 4411, 11), -- Average M. Atk.
-(32685, 4412, 11), -- Average P. Def.
-(32685, 4413, 11), -- Average M. Def.
-(32685, 4414, 2), -- Standard Type
-(32685, 4415, 3), -- One-handed Sword
-(32685, 4416, 2), -- Magic Creatures
+(32685, 4390, 1), -- NPC Abnormal Immunity
+(32685, 4408, 1), -- HP Modifiers
+(32685, 4409, 1), -- MP Modifiers
+(32685, 4410, 11), -- P. Atk. Modifiers
+(32685, 4411, 11), -- M. Atk. Modifiers
+(32685, 4412, 11), -- P. Def. Modifiers
+(32685, 4413, 11), -- M. Def. Modifiers
+(32685, 4414, 2), -- Armor Type
+(32685, 4415, 3), -- Weapon Type
+(32685, 4416, 2), -- Races
 -- Delusion Manager
 (32686, 4045, 1), -- Resist Full Magic Attack
-(32686, 4390, 1), -- Mystic Immunity
-(32686, 4408, 1), -- HP Increase (1x)
-(32686, 4409, 1), -- MP Increase (1x)
-(32686, 4410, 11), -- Average P. Atk.
-(32686, 4411, 11), -- Average M. Atk.
-(32686, 4412, 11), -- Average P. Def.
-(32686, 4413, 11), -- Average M. Def.
-(32686, 4414, 2), -- Standard Type
-(32686, 4415, 3), -- One-handed Sword
-(32686, 4416, 2), -- Magic Creatures
+(32686, 4390, 1), -- NPC Abnormal Immunity
+(32686, 4408, 1), -- HP Modifiers
+(32686, 4409, 1), -- MP Modifiers
+(32686, 4410, 11), -- P. Atk. Modifiers
+(32686, 4411, 11), -- M. Atk. Modifiers
+(32686, 4412, 11), -- P. Def. Modifiers
+(32686, 4413, 11), -- M. Def. Modifiers
+(32686, 4414, 2), -- Armor Type
+(32686, 4415, 3), -- Weapon Type
+(32686, 4416, 2), -- Races
 -- Delusion Manager
 (32687, 4045, 1), -- Resist Full Magic Attack
-(32687, 4390, 1), -- Mystic Immunity
-(32687, 4408, 1), -- HP Increase (1x)
-(32687, 4409, 1), -- MP Increase (1x)
-(32687, 4410, 11), -- Average P. Atk.
-(32687, 4411, 11), -- Average M. Atk.
-(32687, 4412, 11), -- Average P. Def.
-(32687, 4413, 11), -- Average M. Def.
-(32687, 4414, 2), -- Standard Type
-(32687, 4415, 3), -- One-handed Sword
-(32687, 4416, 2), -- Magic Creatures
+(32687, 4390, 1), -- NPC Abnormal Immunity
+(32687, 4408, 1), -- HP Modifiers
+(32687, 4409, 1), -- MP Modifiers
+(32687, 4410, 11), -- P. Atk. Modifiers
+(32687, 4411, 11), -- M. Atk. Modifiers
+(32687, 4412, 11), -- P. Def. Modifiers
+(32687, 4413, 11), -- M. Def. Modifiers
+(32687, 4414, 2), -- Armor Type
+(32687, 4415, 3), -- Weapon Type
+(32687, 4416, 2), -- Races
 -- Delusion Manager
 (32688, 4045, 1), -- Resist Full Magic Attack
-(32688, 4390, 1), -- Mystic Immunity
-(32688, 4408, 1), -- HP Increase (1x)
-(32688, 4409, 1), -- MP Increase (1x)
-(32688, 4410, 11), -- Average P. Atk.
-(32688, 4411, 11), -- Average M. Atk.
-(32688, 4412, 11), -- Average P. Def.
-(32688, 4413, 11), -- Average M. Def.
-(32688, 4414, 2), -- Standard Type
-(32688, 4415, 3), -- One-handed Sword
-(32688, 4416, 2), -- Magic Creatures
+(32688, 4390, 1), -- NPC Abnormal Immunity
+(32688, 4408, 1), -- HP Modifiers
+(32688, 4409, 1), -- MP Modifiers
+(32688, 4410, 11), -- P. Atk. Modifiers
+(32688, 4411, 11), -- M. Atk. Modifiers
+(32688, 4412, 11), -- P. Def. Modifiers
+(32688, 4413, 11), -- M. Def. Modifiers
+(32688, 4414, 2), -- Armor Type
+(32688, 4415, 3), -- Weapon Type
+(32688, 4416, 2), -- Races
 -- Delusion Manager
 (32689, 4045, 1), -- Resist Full Magic Attack
-(32689, 4390, 1), -- Mystic Immunity
-(32689, 4408, 1), -- HP Increase (1x)
-(32689, 4409, 1), -- MP Increase (1x)
-(32689, 4410, 11), -- Average P. Atk.
-(32689, 4411, 11), -- Average M. Atk.
-(32689, 4412, 11), -- Average P. Def.
-(32689, 4413, 11), -- Average M. Def.
-(32689, 4414, 2), -- Standard Type
-(32689, 4415, 3), -- One-handed Sword
-(32689, 4416, 2), -- Magic Creatures
+(32689, 4390, 1), -- NPC Abnormal Immunity
+(32689, 4408, 1), -- HP Modifiers
+(32689, 4409, 1), -- MP Modifiers
+(32689, 4410, 11), -- P. Atk. Modifiers
+(32689, 4411, 11), -- M. Atk. Modifiers
+(32689, 4412, 11), -- P. Def. Modifiers
+(32689, 4413, 11), -- M. Def. Modifiers
+(32689, 4414, 2), -- Armor Type
+(32689, 4415, 3), -- Weapon Type
+(32689, 4416, 2), -- Races
 -- Delusion Manager
 (32690, 4045, 1), -- Resist Full Magic Attack
-(32690, 4390, 1), -- Mystic Immunity
-(32690, 4408, 1), -- HP Increase (1x)
-(32690, 4409, 1), -- MP Increase (1x)
-(32690, 4410, 11), -- Average P. Atk.
-(32690, 4411, 11), -- Average M. Atk.
-(32690, 4412, 11), -- Average P. Def.
-(32690, 4413, 11), -- Average M. Def.
-(32690, 4414, 2), -- Standard Type
-(32690, 4415, 3), -- One-handed Sword
-(32690, 4416, 2), -- Magic Creatures
+(32690, 4390, 1), -- NPC Abnormal Immunity
+(32690, 4408, 1), -- HP Modifiers
+(32690, 4409, 1), -- MP Modifiers
+(32690, 4410, 11), -- P. Atk. Modifiers
+(32690, 4411, 11), -- M. Atk. Modifiers
+(32690, 4412, 11), -- P. Def. Modifiers
+(32690, 4413, 11), -- M. Def. Modifiers
+(32690, 4414, 2), -- Armor Type
+(32690, 4415, 3), -- Weapon Type
+(32690, 4416, 2), -- Races
 -- Delusion Manager
 (32691, 4045, 1), -- Resist Full Magic Attack
-(32691, 4390, 1), -- Mystic Immunity
-(32691, 4408, 1), -- HP Increase (1x)
-(32691, 4409, 1), -- MP Increase (1x)
-(32691, 4410, 11), -- Average P. Atk.
-(32691, 4411, 11), -- Average M. Atk.
-(32691, 4412, 11), -- Average P. Def.
-(32691, 4413, 11), -- Average M. Def.
-(32691, 4414, 2), -- Standard Type
-(32691, 4415, 3), -- One-handed Sword
-(32691, 4416, 2), -- Magic Creatures
+(32691, 4390, 1), -- NPC Abnormal Immunity
+(32691, 4408, 1), -- HP Modifiers
+(32691, 4409, 1), -- MP Modifiers
+(32691, 4410, 11), -- P. Atk. Modifiers
+(32691, 4411, 11), -- M. Atk. Modifiers
+(32691, 4412, 11), -- P. Def. Modifiers
+(32691, 4413, 11), -- M. Def. Modifiers
+(32691, 4414, 2), -- Armor Type
+(32691, 4415, 3), -- Weapon Type
+(32691, 4416, 2), -- Races
 -- Delusion Manager
 (32692, 4045, 1), -- Resist Full Magic Attack
-(32692, 4390, 1), -- Mystic Immunity
-(32692, 4408, 1), -- HP Increase (1x)
-(32692, 4409, 1), -- MP Increase (1x)
-(32692, 4410, 11), -- Average P. Atk.
-(32692, 4411, 11), -- Average M. Atk.
-(32692, 4412, 11), -- Average P. Def.
-(32692, 4413, 11), -- Average M. Def.
-(32692, 4414, 2), -- Standard Type
-(32692, 4415, 3), -- One-handed Sword
-(32692, 4416, 2), -- Magic Creatures
+(32692, 4390, 1), -- NPC Abnormal Immunity
+(32692, 4408, 1), -- HP Modifiers
+(32692, 4409, 1), -- MP Modifiers
+(32692, 4410, 11), -- P. Atk. Modifiers
+(32692, 4411, 11), -- M. Atk. Modifiers
+(32692, 4412, 11), -- P. Def. Modifiers
+(32692, 4413, 11), -- M. Def. Modifiers
+(32692, 4414, 2), -- Armor Type
+(32692, 4415, 3), -- Weapon Type
+(32692, 4416, 2), -- Races
 -- Delusion Manager
 (32693, 4045, 1), -- Resist Full Magic Attack
-(32693, 4390, 1), -- Mystic Immunity
-(32693, 4408, 1), -- HP Increase (1x)
-(32693, 4409, 1), -- MP Increase (1x)
-(32693, 4410, 11), -- Average P. Atk.
-(32693, 4411, 11), -- Average M. Atk.
-(32693, 4412, 11), -- Average P. Def.
-(32693, 4413, 11), -- Average M. Def.
-(32693, 4414, 2), -- Standard Type
-(32693, 4415, 3), -- One-handed Sword
-(32693, 4416, 2), -- Magic Creatures
+(32693, 4390, 1), -- NPC Abnormal Immunity
+(32693, 4408, 1), -- HP Modifiers
+(32693, 4409, 1), -- MP Modifiers
+(32693, 4410, 11), -- P. Atk. Modifiers
+(32693, 4411, 11), -- M. Atk. Modifiers
+(32693, 4412, 11), -- P. Def. Modifiers
+(32693, 4413, 11), -- M. Def. Modifiers
+(32693, 4414, 2), -- Armor Type
+(32693, 4415, 3), -- Weapon Type
+(32693, 4416, 2), -- Races
 -- Delusion Manager
 (32694, 4045, 1), -- Resist Full Magic Attack
-(32694, 4390, 1), -- Mystic Immunity
-(32694, 4408, 1), -- HP Increase (1x)
-(32694, 4409, 1), -- MP Increase (1x)
-(32694, 4410, 11), -- Average P. Atk.
-(32694, 4411, 11), -- Average M. Atk.
-(32694, 4412, 11), -- Average P. Def.
-(32694, 4413, 11), -- Average M. Def.
-(32694, 4414, 2), -- Standard Type
-(32694, 4415, 3), -- One-handed Sword
-(32694, 4416, 2), -- Magic Creatures
+(32694, 4390, 1), -- NPC Abnormal Immunity
+(32694, 4408, 1), -- HP Modifiers
+(32694, 4409, 1), -- MP Modifiers
+(32694, 4410, 11), -- P. Atk. Modifiers
+(32694, 4411, 11), -- M. Atk. Modifiers
+(32694, 4412, 11), -- P. Def. Modifiers
+(32694, 4413, 11), -- M. Def. Modifiers
+(32694, 4414, 2), -- Armor Type
+(32694, 4415, 3), -- Weapon Type
+(32694, 4416, 2), -- Races
 -- Delusion Manager
 (32695, 4045, 1), -- Resist Full Magic Attack
-(32695, 4390, 1), -- Mystic Immunity
-(32695, 4408, 1), -- HP Increase (1x)
-(32695, 4409, 1), -- MP Increase (1x)
-(32695, 4410, 11), -- Average P. Atk.
-(32695, 4411, 11), -- Average M. Atk.
-(32695, 4412, 11), -- Average P. Def.
-(32695, 4413, 11), -- Average M. Def.
-(32695, 4414, 2), -- Standard Type
-(32695, 4415, 3), -- One-handed Sword
-(32695, 4416, 2), -- Magic Creatures
+(32695, 4390, 1), -- NPC Abnormal Immunity
+(32695, 4408, 1), -- HP Modifiers
+(32695, 4409, 1), -- MP Modifiers
+(32695, 4410, 11), -- P. Atk. Modifiers
+(32695, 4411, 11), -- M. Atk. Modifiers
+(32695, 4412, 11), -- P. Def. Modifiers
+(32695, 4413, 11), -- M. Def. Modifiers
+(32695, 4414, 2), -- Armor Type
+(32695, 4415, 3), -- Weapon Type
+(32695, 4416, 2), -- Races
 -- Delusion Manager
 (32696, 4045, 1), -- Resist Full Magic Attack
-(32696, 4390, 1), -- Mystic Immunity
-(32696, 4408, 1), -- HP Increase (1x)
-(32696, 4409, 1), -- MP Increase (1x)
-(32696, 4410, 11), -- Average P. Atk.
-(32696, 4411, 11), -- Average M. Atk.
-(32696, 4412, 11), -- Average P. Def.
-(32696, 4413, 11), -- Average M. Def.
-(32696, 4414, 2), -- Standard Type
-(32696, 4415, 3), -- One-handed Sword
-(32696, 4416, 2), -- Magic Creatures
+(32696, 4390, 1), -- NPC Abnormal Immunity
+(32696, 4408, 1), -- HP Modifiers
+(32696, 4409, 1), -- MP Modifiers
+(32696, 4410, 11), -- P. Atk. Modifiers
+(32696, 4411, 11), -- M. Atk. Modifiers
+(32696, 4412, 11), -- P. Def. Modifiers
+(32696, 4413, 11), -- M. Def. Modifiers
+(32696, 4414, 2), -- Armor Type
+(32696, 4415, 3), -- Weapon Type
+(32696, 4416, 2), -- Races
 -- Delusion Manager
 (32697, 4045, 1), -- Resist Full Magic Attack
-(32697, 4390, 1), -- Mystic Immunity
-(32697, 4408, 1), -- HP Increase (1x)
-(32697, 4409, 1), -- MP Increase (1x)
-(32697, 4410, 11), -- Average P. Atk.
-(32697, 4411, 11), -- Average M. Atk.
-(32697, 4412, 11), -- Average P. Def.
-(32697, 4413, 11), -- Average M. Def.
-(32697, 4414, 2), -- Standard Type
-(32697, 4415, 3), -- One-handed Sword
-(32697, 4416, 2), -- Magic Creatures
+(32697, 4390, 1), -- NPC Abnormal Immunity
+(32697, 4408, 1), -- HP Modifiers
+(32697, 4409, 1), -- MP Modifiers
+(32697, 4410, 11), -- P. Atk. Modifiers
+(32697, 4411, 11), -- M. Atk. Modifiers
+(32697, 4412, 11), -- P. Def. Modifiers
+(32697, 4413, 11), -- M. Def. Modifiers
+(32697, 4414, 2), -- Armor Type
+(32697, 4415, 3), -- Weapon Type
+(32697, 4416, 2), -- Races
 -- Delusion Manager
 (32698, 4045, 1), -- Resist Full Magic Attack
-(32698, 4390, 1), -- Mystic Immunity
-(32698, 4408, 1), -- HP Increase (1x)
-(32698, 4409, 1), -- MP Increase (1x)
-(32698, 4410, 11), -- Average P. Atk.
-(32698, 4411, 11), -- Average M. Atk.
-(32698, 4412, 11), -- Average P. Def.
-(32698, 4413, 11), -- Average M. Def.
-(32698, 4414, 2), -- Standard Type
-(32698, 4415, 3), -- One-handed Sword
-(32698, 4416, 2), -- Magic Creatures
+(32698, 4390, 1), -- NPC Abnormal Immunity
+(32698, 4408, 1), -- HP Modifiers
+(32698, 4409, 1), -- MP Modifiers
+(32698, 4410, 11), -- P. Atk. Modifiers
+(32698, 4411, 11), -- M. Atk. Modifiers
+(32698, 4412, 11), -- P. Def. Modifiers
+(32698, 4413, 11), -- M. Def. Modifiers
+(32698, 4414, 2), -- Armor Type
+(32698, 4415, 3), -- Weapon Type
+(32698, 4416, 2), -- Races
 -- Delusion Manager
 (32699, 4045, 1), -- Resist Full Magic Attack
-(32699, 4390, 1), -- Mystic Immunity
-(32699, 4408, 1), -- HP Increase (1x)
-(32699, 4409, 1), -- MP Increase (1x)
-(32699, 4410, 11), -- Average P. Atk.
-(32699, 4411, 11), -- Average M. Atk.
-(32699, 4412, 11), -- Average P. Def.
-(32699, 4413, 11), -- Average M. Def.
-(32699, 4414, 2), -- Standard Type
-(32699, 4415, 3), -- One-handed Sword
-(32699, 4416, 2), -- Magic Creatures
+(32699, 4390, 1), -- NPC Abnormal Immunity
+(32699, 4408, 1), -- HP Modifiers
+(32699, 4409, 1), -- MP Modifiers
+(32699, 4410, 11), -- P. Atk. Modifiers
+(32699, 4411, 11), -- M. Atk. Modifiers
+(32699, 4412, 11), -- P. Def. Modifiers
+(32699, 4413, 11), -- M. Def. Modifiers
+(32699, 4414, 2), -- Armor Type
+(32699, 4415, 3), -- Weapon Type
+(32699, 4416, 2), -- Races
 -- Delusion Manager
 (32700, 4045, 1), -- Resist Full Magic Attack
-(32700, 4390, 1), -- Mystic Immunity
-(32700, 4408, 1), -- HP Increase (1x)
-(32700, 4409, 1), -- MP Increase (1x)
-(32700, 4410, 11), -- Average P. Atk.
-(32700, 4411, 11), -- Average M. Atk.
-(32700, 4412, 11), -- Average P. Def.
-(32700, 4413, 11), -- Average M. Def.
-(32700, 4414, 2), -- Standard Type
-(32700, 4415, 3), -- One-handed Sword
-(32700, 4416, 2), -- Magic Creatures
+(32700, 4390, 1), -- NPC Abnormal Immunity
+(32700, 4408, 1), -- HP Modifiers
+(32700, 4409, 1), -- MP Modifiers
+(32700, 4410, 11), -- P. Atk. Modifiers
+(32700, 4411, 11), -- M. Atk. Modifiers
+(32700, 4412, 11), -- P. Def. Modifiers
+(32700, 4413, 11), -- M. Def. Modifiers
+(32700, 4414, 2), -- Armor Type
+(32700, 4415, 3), -- Weapon Type
+(32700, 4416, 2), -- Races
 -- Delusion Manager
 (32701, 4045, 1), -- Resist Full Magic Attack
-(32701, 4390, 1), -- Mystic Immunity
-(32701, 4408, 1), -- HP Increase (1x)
-(32701, 4409, 1), -- MP Increase (1x)
-(32701, 4410, 11), -- Average P. Atk.
-(32701, 4411, 11), -- Average M. Atk.
-(32701, 4412, 11), -- Average P. Def.
-(32701, 4413, 11), -- Average M. Def.
-(32701, 4414, 2), -- Standard Type
-(32701, 4415, 3), -- One-handed Sword
-(32701, 4416, 2), -- Magic Creatures
+(32701, 4390, 1), -- NPC Abnormal Immunity
+(32701, 4408, 1), -- HP Modifiers
+(32701, 4409, 1), -- MP Modifiers
+(32701, 4410, 11), -- P. Atk. Modifiers
+(32701, 4411, 11), -- M. Atk. Modifiers
+(32701, 4412, 11), -- P. Def. Modifiers
+(32701, 4413, 11), -- M. Def. Modifiers
+(32701, 4414, 2), -- Armor Type
+(32701, 4415, 3), -- Weapon Type
+(32701, 4416, 2), -- Races
 -- 
 (32702, 4045, 1), -- Resist Full Magic Attack
-(32702, 4390, 1), -- Mystic Immunity
-(32702, 4408, 1), -- HP Increase (1x)
-(32702, 4409, 1), -- MP Increase (1x)
-(32702, 4410, 11), -- Average P. Atk.
-(32702, 4411, 11), -- Average M. Atk.
-(32702, 4412, 11), -- Average P. Def.
-(32702, 4413, 11), -- Average M. Def.
-(32702, 4414, 2), -- Standard Type
-(32702, 4415, 1), -- Bare Hands
-(32702, 4416, 2), -- Magic Creatures
+(32702, 4390, 1), -- NPC Abnormal Immunity
+(32702, 4408, 1), -- HP Modifiers
+(32702, 4409, 1), -- MP Modifiers
+(32702, 4410, 11), -- P. Atk. Modifiers
+(32702, 4411, 11), -- M. Atk. Modifiers
+(32702, 4412, 11), -- P. Def. Modifiers
+(32702, 4413, 11), -- M. Def. Modifiers
+(32702, 4414, 2), -- Armor Type
+(32702, 4415, 1), -- Weapon Type
+(32702, 4416, 2), -- Races
 -- 
 (32703, 4045, 1), -- Resist Full Magic Attack
-(32703, 4390, 1), -- Mystic Immunity
-(32703, 4408, 1), -- HP Increase (1x)
-(32703, 4409, 1), -- MP Increase (1x)
-(32703, 4410, 11), -- Average P. Atk.
-(32703, 4411, 11), -- Average M. Atk.
-(32703, 4412, 11), -- Average P. Def.
-(32703, 4413, 11), -- Average M. Def.
-(32703, 4414, 2), -- Standard Type
-(32703, 4415, 1), -- Bare Hands
-(32703, 4416, 2), -- Magic Creatures
+(32703, 4390, 1), -- NPC Abnormal Immunity
+(32703, 4408, 1), -- HP Modifiers
+(32703, 4409, 1), -- MP Modifiers
+(32703, 4410, 11), -- P. Atk. Modifiers
+(32703, 4411, 11), -- M. Atk. Modifiers
+(32703, 4412, 11), -- P. Def. Modifiers
+(32703, 4413, 11), -- M. Def. Modifiers
+(32703, 4414, 2), -- Armor Type
+(32703, 4415, 1), -- Weapon Type
+(32703, 4416, 2), -- Races
 -- Somulitan
 (32704, 4045, 1), -- Resist Full Magic Attack
-(32704, 4408, 1), -- HP Increase (1x)
-(32704, 4409, 1), -- MP Increase (1x)
-(32704, 4410, 11), -- Average P. Atk.
-(32704, 4411, 11), -- Average M. Atk.
-(32704, 4412, 11), -- Average P. Def.
-(32704, 4413, 11), -- Average M. Def.
-(32704, 4414, 2), -- Standard Type
-(32704, 4415, 3), -- One-handed Sword
-(32704, 4416, 15), -- Elves
+(32704, 4408, 1), -- HP Modifiers
+(32704, 4409, 1), -- MP Modifiers
+(32704, 4410, 11), -- P. Atk. Modifiers
+(32704, 4411, 11), -- M. Atk. Modifiers
+(32704, 4412, 11), -- P. Def. Modifiers
+(32704, 4413, 11), -- M. Def. Modifiers
+(32704, 4414, 2), -- Armor Type
+(32704, 4415, 3), -- Weapon Type
+(32704, 4416, 15), -- Races
 -- Zaken's Candle
 (32705, 4045, 1), -- Resist Full Magic Attack
-(32705, 4390, 1), -- Mystic Immunity
-(32705, 4408, 1), -- HP Increase (1x)
-(32705, 4409, 1), -- MP Increase (1x)
-(32705, 4410, 11), -- Average P. Atk.
-(32705, 4411, 11), -- Average M. Atk.
-(32705, 4412, 11), -- Average P. Def.
-(32705, 4413, 11), -- Average M. Def.
-(32705, 4414, 2), -- Standard Type
-(32705, 4415, 3), -- One-handed Sword
-(32705, 4416, 2), -- Magic Creatures
+(32705, 4390, 1), -- NPC Abnormal Immunity
+(32705, 4408, 1), -- HP Modifiers
+(32705, 4409, 1), -- MP Modifiers
+(32705, 4410, 11), -- P. Atk. Modifiers
+(32705, 4411, 11), -- M. Atk. Modifiers
+(32705, 4412, 11), -- P. Def. Modifiers
+(32705, 4413, 11), -- M. Def. Modifiers
+(32705, 4414, 2), -- Armor Type
+(32705, 4415, 3), -- Weapon Type
+(32705, 4416, 2), -- Races
 -- Lucien's Altar
 (32706, 4045, 1), -- Resist Full Magic Attack
-(32706, 4390, 1), -- Mystic Immunity
-(32706, 4408, 1), -- HP Increase (1x)
-(32706, 4409, 1), -- MP Increase (1x)
-(32706, 4410, 11), -- Average P. Atk.
-(32706, 4411, 11), -- Average M. Atk.
-(32706, 4412, 11), -- Average P. Def.
-(32706, 4413, 11), -- Average M. Def.
-(32706, 4414, 2), -- Standard Type
-(32706, 4415, 3), -- One-handed Sword
-(32706, 4416, 2), -- Magic Creatures
+(32706, 4390, 1), -- NPC Abnormal Immunity
+(32706, 4408, 1), -- HP Modifiers
+(32706, 4409, 1), -- MP Modifiers
+(32706, 4410, 11), -- P. Atk. Modifiers
+(32706, 4411, 11), -- M. Atk. Modifiers
+(32706, 4412, 11), -- P. Def. Modifiers
+(32706, 4413, 11), -- M. Def. Modifiers
+(32706, 4414, 2), -- Armor Type
+(32706, 4415, 3), -- Weapon Type
+(32706, 4416, 2), -- Races
 -- Lucien's Altar
 (32707, 4045, 1), -- Resist Full Magic Attack
-(32707, 4390, 1), -- Mystic Immunity
-(32707, 4408, 1), -- HP Increase (1x)
-(32707, 4409, 1), -- MP Increase (1x)
-(32707, 4410, 11), -- Average P. Atk.
-(32707, 4411, 11), -- Average M. Atk.
-(32707, 4412, 11), -- Average P. Def.
-(32707, 4413, 11), -- Average M. Def.
-(32707, 4414, 2), -- Standard Type
-(32707, 4415, 3), -- One-handed Sword
-(32707, 4416, 2), -- Magic Creatures
+(32707, 4390, 1), -- NPC Abnormal Immunity
+(32707, 4408, 1), -- HP Modifiers
+(32707, 4409, 1), -- MP Modifiers
+(32707, 4410, 11), -- P. Atk. Modifiers
+(32707, 4411, 11), -- M. Atk. Modifiers
+(32707, 4412, 11), -- P. Def. Modifiers
+(32707, 4413, 11), -- M. Def. Modifiers
+(32707, 4414, 2), -- Armor Type
+(32707, 4415, 3), -- Weapon Type
+(32707, 4416, 2), -- Races
 -- Lucien's Altar
 (32708, 4045, 1), -- Resist Full Magic Attack
-(32708, 4390, 1), -- Mystic Immunity
-(32708, 4408, 1), -- HP Increase (1x)
-(32708, 4409, 1), -- MP Increase (1x)
-(32708, 4410, 11), -- Average P. Atk.
-(32708, 4411, 11), -- Average M. Atk.
-(32708, 4412, 11), -- Average P. Def.
-(32708, 4413, 11), -- Average M. Def.
-(32708, 4414, 2), -- Standard Type
-(32708, 4415, 3), -- One-handed Sword
-(32708, 4416, 2), -- Magic Creatures
+(32708, 4390, 1), -- NPC Abnormal Immunity
+(32708, 4408, 1), -- HP Modifiers
+(32708, 4409, 1), -- MP Modifiers
+(32708, 4410, 11), -- P. Atk. Modifiers
+(32708, 4411, 11), -- M. Atk. Modifiers
+(32708, 4412, 11), -- P. Def. Modifiers
+(32708, 4413, 11), -- M. Def. Modifiers
+(32708, 4414, 2), -- Armor Type
+(32708, 4415, 3), -- Weapon Type
+(32708, 4416, 2), -- Races
 -- Lucien's Altar
 (32709, 4045, 1), -- Resist Full Magic Attack
-(32709, 4390, 1), -- Mystic Immunity
-(32709, 4408, 1), -- HP Increase (1x)
-(32709, 4409, 1), -- MP Increase (1x)
-(32709, 4410, 11), -- Average P. Atk.
-(32709, 4411, 11), -- Average M. Atk.
-(32709, 4412, 11), -- Average P. Def.
-(32709, 4413, 11), -- Average M. Def.
-(32709, 4414, 2), -- Standard Type
-(32709, 4415, 3), -- One-handed Sword
-(32709, 4416, 2), -- Magic Creatures
+(32709, 4390, 1), -- NPC Abnormal Immunity
+(32709, 4408, 1), -- HP Modifiers
+(32709, 4409, 1), -- MP Modifiers
+(32709, 4410, 11), -- P. Atk. Modifiers
+(32709, 4411, 11), -- M. Atk. Modifiers
+(32709, 4412, 11), -- P. Def. Modifiers
+(32709, 4413, 11), -- M. Def. Modifiers
+(32709, 4414, 2), -- Armor Type
+(32709, 4415, 3), -- Weapon Type
+(32709, 4416, 2), -- Races
 -- Lucien's Altar
 (32710, 4045, 1), -- Resist Full Magic Attack
-(32710, 4390, 1), -- Mystic Immunity
-(32710, 4408, 1), -- HP Increase (1x)
-(32710, 4409, 1), -- MP Increase (1x)
-(32710, 4410, 11), -- Average P. Atk.
-(32710, 4411, 11), -- Average M. Atk.
-(32710, 4412, 11), -- Average P. Def.
-(32710, 4413, 11), -- Average M. Def.
-(32710, 4414, 2), -- Standard Type
-(32710, 4415, 3), -- One-handed Sword
-(32710, 4416, 2), -- Magic Creatures
+(32710, 4390, 1), -- NPC Abnormal Immunity
+(32710, 4408, 1), -- HP Modifiers
+(32710, 4409, 1), -- MP Modifiers
+(32710, 4410, 11), -- P. Atk. Modifiers
+(32710, 4411, 11), -- M. Atk. Modifiers
+(32710, 4412, 11), -- P. Def. Modifiers
+(32710, 4413, 11), -- M. Def. Modifiers
+(32710, 4414, 2), -- Armor Type
+(32710, 4415, 3), -- Weapon Type
+(32710, 4416, 2), -- Races
 -- Droph
 (32711, 4045, 1), -- Resist Full Magic Attack
-(32711, 4408, 1), -- HP Increase (1x)
-(32711, 4409, 1), -- MP Increase (1x)
-(32711, 4410, 11), -- Average P. Atk.
-(32711, 4411, 11), -- Average M. Atk.
-(32711, 4412, 11), -- Average P. Def.
-(32711, 4413, 11), -- Average M. Def.
-(32711, 4414, 2), -- Standard Type
-(32711, 4415, 1), -- Bare Hands
-(32711, 4416, 18), -- Dwarves
+(32711, 4408, 1), -- HP Modifiers
+(32711, 4409, 1), -- MP Modifiers
+(32711, 4410, 11), -- P. Atk. Modifiers
+(32711, 4411, 11), -- M. Atk. Modifiers
+(32711, 4412, 11), -- P. Def. Modifiers
+(32711, 4413, 11), -- M. Def. Modifiers
+(32711, 4414, 2), -- Armor Type
+(32711, 4415, 1), -- Weapon Type
+(32711, 4416, 18), -- Races
 -- Somulitan
 (32712, 4045, 1), -- Resist Full Magic Attack
-(32712, 4408, 1), -- HP Increase (1x)
-(32712, 4409, 1), -- MP Increase (1x)
-(32712, 4410, 11), -- Average P. Atk.
-(32712, 4411, 11), -- Average M. Atk.
-(32712, 4412, 11), -- Average P. Def.
-(32712, 4413, 11), -- Average M. Def.
-(32712, 4414, 2), -- Standard Type
-(32712, 4415, 3), -- One-handed Sword
-(32712, 4416, 15), -- Elves
+(32712, 4408, 1), -- HP Modifiers
+(32712, 4409, 1), -- MP Modifiers
+(32712, 4410, 11), -- P. Atk. Modifiers
+(32712, 4411, 11), -- M. Atk. Modifiers
+(32712, 4412, 11), -- P. Def. Modifiers
+(32712, 4413, 11), -- M. Def. Modifiers
+(32712, 4414, 2), -- Armor Type
+(32712, 4415, 3), -- Weapon Type
+(32712, 4416, 15), -- Races
 -- Pathfinder Worker
 (32713, 4045, 1), -- Resist Full Magic Attack
-(32713, 4408, 1), -- HP Increase (1x)
-(32713, 4409, 1), -- MP Increase (1x)
-(32713, 4410, 11), -- Average P. Atk.
-(32713, 4411, 11), -- Average M. Atk.
-(32713, 4412, 11), -- Average P. Def.
-(32713, 4413, 11), -- Average M. Def.
-(32713, 4414, 2), -- Standard Type
-(32713, 4415, 3), -- One-handed Sword
-(32713, 4416, 14), -- Humans
+(32713, 4408, 1), -- HP Modifiers
+(32713, 4409, 1), -- MP Modifiers
+(32713, 4410, 11), -- P. Atk. Modifiers
+(32713, 4411, 11), -- M. Atk. Modifiers
+(32713, 4412, 11), -- P. Def. Modifiers
+(32713, 4413, 11), -- M. Def. Modifiers
+(32713, 4414, 2), -- Armor Type
+(32713, 4415, 3), -- Weapon Type
+(32713, 4416, 14), -- Races
 -- Asher 
 (32714, 4045, 1), -- Resist Full Magic Attack
-(32714, 4408, 1), -- HP Increase (1x)
-(32714, 4409, 1), -- MP Increase (1x)
-(32714, 4410, 11), -- Average P. Atk.
-(32714, 4411, 11), -- Average M. Atk.
-(32714, 4412, 11), -- Average P. Def.
-(32714, 4413, 11), -- Average M. Def.
-(32714, 4414, 2), -- Standard Type
-(32714, 4415, 3), -- One-handed Sword
-(32714, 4416, 14), -- Humans
+(32714, 4408, 1), -- HP Modifiers
+(32714, 4409, 1), -- MP Modifiers
+(32714, 4410, 11), -- P. Atk. Modifiers
+(32714, 4411, 11), -- M. Atk. Modifiers
+(32714, 4412, 11), -- P. Def. Modifiers
+(32714, 4413, 11), -- M. Def. Modifiers
+(32714, 4414, 2), -- Armor Type
+(32714, 4415, 3), -- Weapon Type
+(32714, 4416, 14), -- Races
 -- Lilith
 (32715, 4045, 1), -- Resist Full Magic Attack
-(32715, 4408, 1), -- HP Increase (1x)
-(32715, 4409, 1), -- MP Increase (1x)
-(32715, 4410, 11), -- Average P. Atk.
-(32715, 4411, 11), -- Average M. Atk.
-(32715, 4412, 11), -- Average P. Def.
-(32715, 4413, 11), -- Average M. Def.
-(32715, 4414, 2), -- Standard Type
-(32715, 4415, 3), -- One-handed Sword
-(32715, 4416, 9), -- Demons
+(32715, 4408, 1), -- HP Modifiers
+(32715, 4409, 1), -- MP Modifiers
+(32715, 4410, 11), -- P. Atk. Modifiers
+(32715, 4411, 11), -- M. Atk. Modifiers
+(32715, 4412, 11), -- P. Def. Modifiers
+(32715, 4413, 11), -- M. Def. Modifiers
+(32715, 4414, 2), -- Armor Type
+(32715, 4415, 3), -- Weapon Type
+(32715, 4416, 9), -- Races
 -- Lilith's Steward
 (32716, 4045, 1), -- Resist Full Magic Attack
-(32716, 4408, 1), -- HP Increase (1x)
-(32716, 4409, 1), -- MP Increase (1x)
-(32716, 4410, 11), -- Average P. Atk.
-(32716, 4411, 11), -- Average M. Atk.
-(32716, 4412, 11), -- Average P. Def.
-(32716, 4413, 11), -- Average M. Def.
-(32716, 4414, 2), -- Standard Type
-(32716, 4415, 3), -- One-handed Sword
-(32716, 4416, 9), -- Demons
+(32716, 4408, 1), -- HP Modifiers
+(32716, 4409, 1), -- MP Modifiers
+(32716, 4410, 11), -- P. Atk. Modifiers
+(32716, 4411, 11), -- M. Atk. Modifiers
+(32716, 4412, 11), -- P. Def. Modifiers
+(32716, 4413, 11), -- M. Def. Modifiers
+(32716, 4414, 2), -- Armor Type
+(32716, 4415, 3), -- Weapon Type
+(32716, 4416, 9), -- Races
 -- Lilith's Elite
 (32717, 4045, 1), -- Resist Full Magic Attack
-(32717, 4273, 3), -- Resist Daggers/Rapier Weapon
-(32717, 4408, 1), -- HP Increase (1x)
-(32717, 4409, 1), -- MP Increase (1x)
-(32717, 4410, 11), -- Average P. Atk.
-(32717, 4411, 11), -- Average M. Atk.
-(32717, 4412, 11), -- Average P. Def.
-(32717, 4413, 11), -- Average M. Def.
-(32717, 4414, 2), -- Standard Type
-(32717, 4415, 3), -- One-handed Sword
-(32717, 4416, 9), -- Demons
+(32717, 4273, 3), -- Resist Dagger
+(32717, 4408, 1), -- HP Modifiers
+(32717, 4409, 1), -- MP Modifiers
+(32717, 4410, 11), -- P. Atk. Modifiers
+(32717, 4411, 11), -- M. Atk. Modifiers
+(32717, 4412, 11), -- P. Def. Modifiers
+(32717, 4413, 11), -- M. Def. Modifiers
+(32717, 4414, 2), -- Armor Type
+(32717, 4415, 3), -- Weapon Type
+(32717, 4416, 9), -- Races
 -- Anakim
 (32718, 4045, 1), -- Resist Full Magic Attack
-(32718, 4408, 1), -- HP Increase (1x)
-(32718, 4409, 1), -- MP Increase (1x)
-(32718, 4410, 11), -- Average P. Atk.
-(32718, 4411, 11), -- Average M. Atk.
-(32718, 4412, 11), -- Average P. Def.
-(32718, 4413, 11), -- Average M. Def.
-(32718, 4414, 2), -- Standard Type
-(32718, 4415, 3), -- One-handed Sword
-(32718, 4416, 8), -- Angels
+(32718, 4408, 1), -- HP Modifiers
+(32718, 4409, 1), -- MP Modifiers
+(32718, 4410, 11), -- P. Atk. Modifiers
+(32718, 4411, 11), -- M. Atk. Modifiers
+(32718, 4412, 11), -- P. Def. Modifiers
+(32718, 4413, 11), -- M. Def. Modifiers
+(32718, 4414, 2), -- Armor Type
+(32718, 4415, 3), -- Weapon Type
+(32718, 4416, 8), -- Races
 -- Anakim's Guardian
 (32719, 4045, 1), -- Resist Full Magic Attack
-(32719, 4408, 1), -- HP Increase (1x)
-(32719, 4409, 1), -- MP Increase (1x)
-(32719, 4410, 11), -- Average P. Atk.
-(32719, 4411, 11), -- Average M. Atk.
-(32719, 4412, 11), -- Average P. Def.
-(32719, 4413, 11), -- Average M. Def.
-(32719, 4414, 2), -- Standard Type
-(32719, 4415, 3), -- One-handed Sword
-(32719, 4416, 8), -- Angels
+(32719, 4408, 1), -- HP Modifiers
+(32719, 4409, 1), -- MP Modifiers
+(32719, 4410, 11), -- P. Atk. Modifiers
+(32719, 4411, 11), -- M. Atk. Modifiers
+(32719, 4412, 11), -- P. Def. Modifiers
+(32719, 4413, 11), -- M. Def. Modifiers
+(32719, 4414, 2), -- Armor Type
+(32719, 4415, 3), -- Weapon Type
+(32719, 4416, 8), -- Races
 -- Anakim's Guard
 (32720, 4045, 1), -- Resist Full Magic Attack
-(32720, 4273, 3), -- Resist Daggers/Rapier Weapon
-(32720, 4408, 1), -- HP Increase (1x)
-(32720, 4409, 1), -- MP Increase (1x)
-(32720, 4410, 11), -- Average P. Atk.
-(32720, 4411, 11), -- Average M. Atk.
-(32720, 4412, 11), -- Average P. Def.
-(32720, 4413, 11), -- Average M. Def.
-(32720, 4414, 2), -- Standard Type
-(32720, 4415, 3), -- One-handed Sword
-(32720, 4416, 8), -- Angels
+(32720, 4273, 3), -- Resist Dagger
+(32720, 4408, 1), -- HP Modifiers
+(32720, 4409, 1), -- MP Modifiers
+(32720, 4410, 11), -- P. Atk. Modifiers
+(32720, 4411, 11), -- M. Atk. Modifiers
+(32720, 4412, 11), -- P. Def. Modifiers
+(32720, 4413, 11), -- M. Def. Modifiers
+(32720, 4414, 2), -- Armor Type
+(32720, 4415, 3), -- Weapon Type
+(32720, 4416, 8), -- Races
 -- Anakim's Executor
 (32721, 4045, 1), -- Resist Full Magic Attack
-(32721, 4408, 1), -- HP Increase (1x)
-(32721, 4409, 1), -- MP Increase (1x)
-(32721, 4410, 11), -- Average P. Atk.
-(32721, 4411, 11), -- Average M. Atk.
-(32721, 4412, 11), -- Average P. Def.
-(32721, 4413, 11), -- Average M. Def.
-(32721, 4414, 2), -- Standard Type
-(32721, 4415, 3), -- One-handed Sword
-(32721, 4416, 8), -- Angels
+(32721, 4408, 1), -- HP Modifiers
+(32721, 4409, 1), -- MP Modifiers
+(32721, 4410, 11), -- P. Atk. Modifiers
+(32721, 4411, 11), -- M. Atk. Modifiers
+(32721, 4412, 11), -- P. Def. Modifiers
+(32721, 4413, 11), -- M. Def. Modifiers
+(32721, 4414, 2), -- Armor Type
+(32721, 4415, 3), -- Weapon Type
+(32721, 4416, 8), -- Races
 -- Battle League Helper
 (32722, 4045, 1), -- Resist Full Magic Attack
-(32722, 4390, 1), -- Mystic Immunity
-(32722, 4414, 2), -- Standard Type
-(32722, 4415, 1), -- Bare Hands
+(32722, 4390, 1), -- NPC Abnormal Immunity
+(32722, 4414, 2), -- Armor Type
+(32722, 4415, 1), -- Weapon Type
 -- 
 (32723, 4045, 1), -- Resist Full Magic Attack
-(32723, 4390, 1), -- Mystic Immunity
-(32723, 4414, 2), -- Standard Type
-(32723, 4415, 3), -- One-handed Sword
+(32723, 4390, 1), -- NPC Abnormal Immunity
+(32723, 4414, 2), -- Armor Type
+(32723, 4415, 3), -- Weapon Type
 -- 
 (32724, 4045, 1), -- Resist Full Magic Attack
-(32724, 4390, 1), -- Mystic Immunity
-(32724, 4414, 2), -- Standard Type
-(32724, 4415, 3), -- One-handed Sword
+(32724, 4390, 1), -- NPC Abnormal Immunity
+(32724, 4414, 2), -- Armor Type
+(32724, 4415, 3), -- Weapon Type
 -- Priest of Resurrection
 (32725, 4045, 1), -- Resist Full Magic Attack
-(32725, 4390, 1), -- Mystic Immunity
-(32725, 4414, 2), -- Standard Type
-(32725, 4415, 3), -- One-handed Sword
+(32725, 4390, 1), -- NPC Abnormal Immunity
+(32725, 4414, 2), -- Armor Type
+(32725, 4415, 3), -- Weapon Type
 -- Dr. Ice
 (32726, 4045, 1), -- Resist Full Magic Attack
-(32726, 4408, 1), -- HP Increase (1x)
-(32726, 4409, 1), -- MP Increase (1x)
-(32726, 4410, 11), -- Average P. Atk.
-(32726, 4411, 11), -- Average M. Atk.
-(32726, 4412, 11), -- Average P. Def.
-(32726, 4413, 11), -- Average M. Def.
-(32726, 4414, 2), -- Standard Type
-(32726, 4415, 3), -- One-handed Sword
-(32726, 4416, 18), -- Dwarves
+(32726, 4408, 1), -- HP Modifiers
+(32726, 4409, 1), -- MP Modifiers
+(32726, 4410, 11), -- P. Atk. Modifiers
+(32726, 4411, 11), -- M. Atk. Modifiers
+(32726, 4412, 11), -- P. Def. Modifiers
+(32726, 4413, 11), -- M. Def. Modifiers
+(32726, 4414, 2), -- Armor Type
+(32726, 4415, 3), -- Weapon Type
+(32726, 4416, 18), -- Races
 -- Puss the Cat
 (32727, 4045, 1), -- Resist Full Magic Attack
-(32727, 4408, 1), -- HP Increase (1x)
-(32727, 4409, 1), -- MP Increase (1x)
-(32727, 4410, 11), -- Average P. Atk.
-(32727, 4411, 11), -- Average M. Atk.
-(32727, 4412, 11), -- Average P. Def.
-(32727, 4413, 11), -- Average M. Def.
-(32727, 4414, 2), -- Standard Type
-(32727, 4415, 1), -- Bare Hands
-(32727, 4416, 20), -- Non-living Beings
+(32727, 4408, 1), -- HP Modifiers
+(32727, 4409, 1), -- MP Modifiers
+(32727, 4410, 11), -- P. Atk. Modifiers
+(32727, 4411, 11), -- M. Atk. Modifiers
+(32727, 4412, 11), -- P. Def. Modifiers
+(32727, 4413, 11), -- M. Def. Modifiers
+(32727, 4414, 2), -- Armor Type
+(32727, 4415, 1), -- Weapon Type
+(32727, 4416, 20), -- Races
 -- Heavenly Bridge Keeper
 (32728, 4045, 1), -- Resist Full Magic Attack
-(32728, 4408, 1), -- HP Increase (1x)
-(32728, 4409, 1), -- MP Increase (1x)
-(32728, 4410, 11), -- Average P. Atk.
-(32728, 4411, 11), -- Average M. Atk.
-(32728, 4412, 11), -- Average P. Def.
-(32728, 4413, 11), -- Average M. Def.
-(32728, 4414, 2), -- Standard Type
-(32728, 4415, 1), -- Bare Hands
-(32728, 4416, 20), -- Non-living Beings
+(32728, 4408, 1), -- HP Modifiers
+(32728, 4409, 1), -- MP Modifiers
+(32728, 4410, 11), -- P. Atk. Modifiers
+(32728, 4411, 11), -- M. Atk. Modifiers
+(32728, 4412, 11), -- P. Def. Modifiers
+(32728, 4413, 11), -- M. Def. Modifiers
+(32728, 4414, 2), -- Armor Type
+(32728, 4415, 1), -- Weapon Type
+(32728, 4416, 20), -- Races
 -- 
 (32729, 4045, 1), -- Resist Full Magic Attack
-(32729, 4408, 1), -- HP Increase (1x)
-(32729, 4409, 1), -- MP Increase (1x)
-(32729, 4410, 11), -- Average P. Atk.
-(32729, 4411, 11), -- Average M. Atk.
-(32729, 4412, 11), -- Average P. Def.
-(32729, 4413, 11), -- Average M. Def.
-(32729, 4414, 2), -- Standard Type
-(32729, 4415, 1), -- Bare Hands
-(32729, 4416, 20), -- Non-living Beings
+(32729, 4408, 1), -- HP Modifiers
+(32729, 4409, 1), -- MP Modifiers
+(32729, 4410, 11), -- P. Atk. Modifiers
+(32729, 4411, 11), -- M. Atk. Modifiers
+(32729, 4412, 11), -- P. Def. Modifiers
+(32729, 4413, 11), -- M. Def. Modifiers
+(32729, 4414, 2), -- Armor Type
+(32729, 4415, 1), -- Weapon Type
+(32729, 4416, 20), -- Races
 -- 
 (32730, 4045, 1), -- Resist Full Magic Attack
-(32730, 4408, 1), -- HP Increase (1x)
-(32730, 4409, 1), -- MP Increase (1x)
-(32730, 4410, 11), -- Average P. Atk.
-(32730, 4411, 11), -- Average M. Atk.
-(32730, 4412, 11), -- Average P. Def.
-(32730, 4413, 11), -- Average M. Def.
-(32730, 4414, 2), -- Standard Type
-(32730, 4415, 1), -- Bare Hands
-(32730, 4416, 20), -- Non-living Beings
+(32730, 4408, 1), -- HP Modifiers
+(32730, 4409, 1), -- MP Modifiers
+(32730, 4410, 11), -- P. Atk. Modifiers
+(32730, 4411, 11), -- M. Atk. Modifiers
+(32730, 4412, 11), -- P. Def. Modifiers
+(32730, 4413, 11), -- M. Def. Modifiers
+(32730, 4414, 2), -- Armor Type
+(32730, 4415, 1), -- Weapon Type
+(32730, 4416, 20), -- Races
 -- Hardin
 (32731, 4045, 1), -- Resist Full Magic Attack
-(32731, 4408, 1), -- HP Increase (1x)
-(32731, 4409, 1), -- MP Increase (1x)
-(32731, 4410, 11), -- Average P. Atk.
-(32731, 4411, 11), -- Average M. Atk.
-(32731, 4412, 11), -- Average P. Def.
-(32731, 4413, 11), -- Average M. Def.
-(32731, 4414, 2), -- Standard Type
-(32731, 4415, 3), -- One-handed Sword
-(32731, 4416, 14), -- Humans
+(32731, 4408, 1), -- HP Modifiers
+(32731, 4409, 1), -- MP Modifiers
+(32731, 4410, 11), -- P. Atk. Modifiers
+(32731, 4411, 11), -- M. Atk. Modifiers
+(32731, 4412, 11), -- P. Def. Modifiers
+(32731, 4413, 11), -- M. Def. Modifiers
+(32731, 4414, 2), -- Armor Type
+(32731, 4415, 3), -- Weapon Type
+(32731, 4416, 14), -- Races
 -- Sixth Anniversary Party Manager
 (32732, 4045, 1), -- Resist Full Magic Attack
-(32732, 4408, 1), -- HP Increase (1x)
-(32732, 4409, 1), -- MP Increase (1x)
-(32732, 4410, 11), -- Average P. Atk.
-(32732, 4411, 11), -- Average M. Atk.
-(32732, 4412, 11), -- Average P. Def.
-(32732, 4413, 11), -- Average M. Def.
-(32732, 4414, 2), -- Standard Type
-(32732, 4415, 1), -- Bare Hands
-(32732, 4416, 14), -- Humans
+(32732, 4408, 1), -- HP Modifiers
+(32732, 4409, 1), -- MP Modifiers
+(32732, 4410, 11), -- P. Atk. Modifiers
+(32732, 4411, 11), -- M. Atk. Modifiers
+(32732, 4412, 11), -- P. Def. Modifiers
+(32732, 4413, 11), -- M. Def. Modifiers
+(32732, 4414, 2), -- Armor Type
+(32732, 4415, 1), -- Weapon Type
+(32732, 4416, 14), -- Races
 -- Kbaldir
 (32733, 4045, 1), -- Resist Full Magic Attack
-(32733, 4390, 1), -- Mystic Immunity
-(32733, 4408, 1), -- HP Increase (1x)
-(32733, 4409, 1), -- MP Increase (1x)
-(32733, 4410, 11), -- Average P. Atk.
-(32733, 4411, 11), -- Average M. Atk.
-(32733, 4412, 11), -- Average P. Def.
-(32733, 4413, 11), -- Average M. Def.
-(32733, 4414, 2), -- Standard Type
-(32733, 4415, 1), -- Bare Hands
-(32733, 4416, 17), -- Orcs
+(32733, 4390, 1), -- NPC Abnormal Immunity
+(32733, 4408, 1), -- HP Modifiers
+(32733, 4409, 1), -- MP Modifiers
+(32733, 4410, 11), -- P. Atk. Modifiers
+(32733, 4411, 11), -- M. Atk. Modifiers
+(32733, 4412, 11), -- P. Def. Modifiers
+(32733, 4413, 11), -- M. Def. Modifiers
+(32733, 4414, 2), -- Armor Type
+(32733, 4415, 1), -- Weapon Type
+(32733, 4416, 17), -- Races
 -- Klemis
 (32734, 4045, 1), -- Resist Full Magic Attack
-(32734, 4390, 1), -- Mystic Immunity
-(32734, 4408, 1), -- HP Increase (1x)
-(32734, 4409, 1), -- MP Increase (1x)
-(32734, 4410, 11), -- Average P. Atk.
-(32734, 4411, 11), -- Average M. Atk.
-(32734, 4412, 11), -- Average P. Def.
-(32734, 4413, 11), -- Average M. Def.
-(32734, 4414, 2), -- Standard Type
-(32734, 4415, 1), -- Bare Hands
-(32734, 4416, 15), -- Elves
+(32734, 4390, 1), -- NPC Abnormal Immunity
+(32734, 4408, 1), -- HP Modifiers
+(32734, 4409, 1), -- MP Modifiers
+(32734, 4410, 11), -- P. Atk. Modifiers
+(32734, 4411, 11), -- M. Atk. Modifiers
+(32734, 4412, 11), -- P. Def. Modifiers
+(32734, 4413, 11), -- M. Def. Modifiers
+(32734, 4414, 2), -- Armor Type
+(32734, 4415, 1), -- Weapon Type
+(32734, 4416, 15), -- Races
 -- Nemo
 (32735, 4045, 1), -- Resist Full Magic Attack
-(32735, 4390, 1), -- Mystic Immunity
-(32735, 4408, 1), -- HP Increase (1x)
-(32735, 4409, 1), -- MP Increase (1x)
-(32735, 4410, 11), -- Average P. Atk.
-(32735, 4411, 11), -- Average M. Atk.
-(32735, 4412, 11), -- Average P. Def.
-(32735, 4413, 11), -- Average M. Def.
-(32735, 4414, 2), -- Standard Type
-(32735, 4415, 1), -- Bare Hands
-(32735, 4416, 14), -- Humans
+(32735, 4390, 1), -- NPC Abnormal Immunity
+(32735, 4408, 1), -- HP Modifiers
+(32735, 4409, 1), -- MP Modifiers
+(32735, 4410, 11), -- P. Atk. Modifiers
+(32735, 4411, 11), -- M. Atk. Modifiers
+(32735, 4412, 11), -- P. Def. Modifiers
+(32735, 4413, 11), -- M. Def. Modifiers
+(32735, 4414, 2), -- Armor Type
+(32735, 4415, 1), -- Weapon Type
+(32735, 4416, 14), -- Races
 -- Ermian
 (32736, 4045, 1), -- Resist Full Magic Attack
-(32736, 4390, 1), -- Mystic Immunity
-(32736, 4408, 1), -- HP Increase (1x)
-(32736, 4409, 1), -- MP Increase (1x)
-(32736, 4410, 11), -- Average P. Atk.
-(32736, 4411, 11), -- Average M. Atk.
-(32736, 4412, 11), -- Average P. Def.
-(32736, 4413, 11), -- Average M. Def.
-(32736, 4414, 2), -- Standard Type
-(32736, 4415, 1), -- Bare Hands
-(32736, 4416, 14), -- Humans
+(32736, 4390, 1), -- NPC Abnormal Immunity
+(32736, 4408, 1), -- HP Modifiers
+(32736, 4409, 1), -- MP Modifiers
+(32736, 4410, 11), -- P. Atk. Modifiers
+(32736, 4411, 11), -- M. Atk. Modifiers
+(32736, 4412, 11), -- P. Def. Modifiers
+(32736, 4413, 11), -- M. Def. Modifiers
+(32736, 4414, 2), -- Armor Type
+(32736, 4415, 1), -- Weapon Type
+(32736, 4416, 14), -- Races
 -- Seyo
 (32737, 4045, 1), -- Resist Full Magic Attack
-(32737, 4408, 1), -- HP Increase (1x)
-(32737, 4409, 1), -- MP Increase (1x)
-(32737, 4410, 11), -- Average P. Atk.
-(32737, 4411, 11), -- Average M. Atk.
-(32737, 4412, 11), -- Average P. Def.
-(32737, 4413, 11), -- Average M. Def.
-(32737, 4414, 2), -- Standard Type
-(32737, 4415, 3), -- One-handed Sword
-(32737, 4416, 14), -- Humans
+(32737, 4408, 1), -- HP Modifiers
+(32737, 4409, 1), -- MP Modifiers
+(32737, 4410, 11), -- P. Atk. Modifiers
+(32737, 4411, 11), -- M. Atk. Modifiers
+(32737, 4412, 11), -- P. Def. Modifiers
+(32737, 4413, 11), -- M. Def. Modifiers
+(32737, 4414, 2), -- Armor Type
+(32737, 4415, 3), -- Weapon Type
+(32737, 4416, 14), -- Races
 -- Injured Soldier
 (32738, 4045, 1), -- Resist Full Magic Attack
-(32738, 4390, 1), -- Mystic Immunity
-(32738, 4408, 1), -- HP Increase (1x)
-(32738, 4409, 1), -- MP Increase (1x)
-(32738, 4410, 11), -- Average P. Atk.
-(32738, 4411, 11), -- Average M. Atk.
-(32738, 4412, 11), -- Average P. Def.
-(32738, 4413, 11), -- Average M. Def.
-(32738, 4414, 2), -- Standard Type
-(32738, 4415, 1), -- Bare Hands
-(32738, 4416, 14), -- Humans
+(32738, 4390, 1), -- NPC Abnormal Immunity
+(32738, 4408, 1), -- HP Modifiers
+(32738, 4409, 1), -- MP Modifiers
+(32738, 4410, 11), -- P. Atk. Modifiers
+(32738, 4411, 11), -- M. Atk. Modifiers
+(32738, 4412, 11), -- P. Def. Modifiers
+(32738, 4413, 11), -- M. Def. Modifiers
+(32738, 4414, 2), -- Armor Type
+(32738, 4415, 1), -- Weapon Type
+(32738, 4416, 14), -- Races
 -- Bomona
 (32739, 4045, 1), -- Resist Full Magic Attack
-(32739, 4390, 1), -- Mystic Immunity
-(32739, 4408, 1), -- HP Increase (1x)
-(32739, 4409, 1), -- MP Increase (1x)
-(32739, 4410, 11), -- Average P. Atk.
-(32739, 4411, 11), -- Average M. Atk.
-(32739, 4412, 11), -- Average P. Def.
-(32739, 4413, 11), -- Average M. Def.
-(32739, 4414, 2), -- Standard Type
-(32739, 4415, 1), -- Bare Hands
-(32739, 4416, 14), -- Humans
+(32739, 4390, 1), -- NPC Abnormal Immunity
+(32739, 4408, 1), -- HP Modifiers
+(32739, 4409, 1), -- MP Modifiers
+(32739, 4410, 11), -- P. Atk. Modifiers
+(32739, 4411, 11), -- M. Atk. Modifiers
+(32739, 4412, 11), -- P. Def. Modifiers
+(32739, 4413, 11), -- M. Def. Modifiers
+(32739, 4414, 2), -- Armor Type
+(32739, 4415, 1), -- Weapon Type
+(32739, 4416, 14), -- Races
 -- Batracos
 (32740, 4045, 1), -- Resist Full Magic Attack
-(32740, 4390, 1), -- Mystic Immunity
-(32740, 4408, 1), -- HP Increase (1x)
-(32740, 4409, 1), -- MP Increase (1x)
-(32740, 4410, 11), -- Average P. Atk.
-(32740, 4411, 11), -- Average M. Atk.
-(32740, 4412, 11), -- Average P. Def.
-(32740, 4413, 11), -- Average M. Def.
-(32740, 4414, 2), -- Standard Type
-(32740, 4415, 3), -- One-handed Sword
-(32740, 4416, 6), -- Humanoids
+(32740, 4390, 1), -- NPC Abnormal Immunity
+(32740, 4408, 1), -- HP Modifiers
+(32740, 4409, 1), -- MP Modifiers
+(32740, 4410, 11), -- P. Atk. Modifiers
+(32740, 4411, 11), -- M. Atk. Modifiers
+(32740, 4412, 11), -- P. Def. Modifiers
+(32740, 4413, 11), -- M. Def. Modifiers
+(32740, 4414, 2), -- Armor Type
+(32740, 4415, 3), -- Weapon Type
+(32740, 4416, 6), -- Races
 -- Ankumi
 (32741, 4045, 1), -- Resist Full Magic Attack
-(32741, 4408, 1), -- HP Increase (1x)
-(32741, 4409, 1), -- MP Increase (1x)
-(32741, 4410, 11), -- Average P. Atk.
-(32741, 4411, 11), -- Average M. Atk.
-(32741, 4412, 11), -- Average P. Def.
-(32741, 4413, 11), -- Average M. Def.
-(32741, 4414, 2), -- Standard Type
-(32741, 4415, 3), -- One-handed Sword
-(32741, 4416, 18), -- Dwarves
+(32741, 4408, 1), -- HP Modifiers
+(32741, 4409, 1), -- MP Modifiers
+(32741, 4410, 11), -- P. Atk. Modifiers
+(32741, 4411, 11), -- M. Atk. Modifiers
+(32741, 4412, 11), -- P. Def. Modifiers
+(32741, 4413, 11), -- M. Def. Modifiers
+(32741, 4414, 2), -- Armor Type
+(32741, 4415, 3), -- Weapon Type
+(32741, 4416, 18), -- Races
 -- Laki
 (32742, 4045, 1), -- Resist Full Magic Attack
-(32742, 4408, 1), -- HP Increase (1x)
-(32742, 4409, 1), -- MP Increase (1x)
-(32742, 4410, 11), -- Average P. Atk.
-(32742, 4411, 11), -- Average M. Atk.
-(32742, 4412, 11), -- Average P. Def.
-(32742, 4413, 11), -- Average M. Def.
-(32742, 4414, 2), -- Standard Type
-(32742, 4415, 1), -- Bare Hands
-(32742, 4416, 14), -- Humans
+(32742, 4408, 1), -- HP Modifiers
+(32742, 4409, 1), -- MP Modifiers
+(32742, 4410, 11), -- P. Atk. Modifiers
+(32742, 4411, 11), -- M. Atk. Modifiers
+(32742, 4412, 11), -- P. Def. Modifiers
+(32742, 4413, 11), -- M. Def. Modifiers
+(32742, 4414, 2), -- Armor Type
+(32742, 4415, 1), -- Weapon Type
+(32742, 4416, 14), -- Races
 -- Sally
 (32743, 4045, 1), -- Resist Full Magic Attack
-(32743, 4408, 1), -- HP Increase (1x)
-(32743, 4409, 1), -- MP Increase (1x)
-(32743, 4410, 11), -- Average P. Atk.
-(32743, 4411, 11), -- Average M. Atk.
-(32743, 4412, 11), -- Average P. Def.
-(32743, 4413, 11), -- Average M. Def.
-(32743, 4414, 2), -- Standard Type
-(32743, 4415, 3), -- One-handed Sword
-(32743, 4416, 17), -- Orcs
+(32743, 4408, 1), -- HP Modifiers
+(32743, 4409, 1), -- MP Modifiers
+(32743, 4410, 11), -- P. Atk. Modifiers
+(32743, 4411, 11), -- M. Atk. Modifiers
+(32743, 4412, 11), -- P. Def. Modifiers
+(32743, 4413, 11), -- M. Def. Modifiers
+(32743, 4414, 2), -- Armor Type
+(32743, 4415, 3), -- Weapon Type
+(32743, 4416, 17), -- Races
 -- Johnny
 (32744, 4045, 1), -- Resist Full Magic Attack
-(32744, 4408, 1), -- HP Increase (1x)
-(32744, 4409, 1), -- MP Increase (1x)
-(32744, 4410, 11), -- Average P. Atk.
-(32744, 4411, 11), -- Average M. Atk.
-(32744, 4412, 11), -- Average P. Def.
-(32744, 4413, 11), -- Average M. Def.
-(32744, 4414, 2), -- Standard Type
-(32744, 4415, 3), -- One-handed Sword
-(32744, 4416, 14), -- Humans
+(32744, 4408, 1), -- HP Modifiers
+(32744, 4409, 1), -- MP Modifiers
+(32744, 4410, 11), -- P. Atk. Modifiers
+(32744, 4411, 11), -- M. Atk. Modifiers
+(32744, 4412, 11), -- P. Def. Modifiers
+(32744, 4413, 11), -- M. Def. Modifiers
+(32744, 4414, 2), -- Armor Type
+(32744, 4415, 3), -- Weapon Type
+(32744, 4416, 14), -- Races
 -- Teleport Device
 (32745, 4045, 1), -- Resist Full Magic Attack
-(32745, 4390, 1), -- Mystic Immunity
-(32745, 4408, 1), -- HP Increase (1x)
-(32745, 4409, 1), -- MP Increase (1x)
-(32745, 4410, 11), -- Average P. Atk.
-(32745, 4411, 11), -- Average M. Atk.
-(32745, 4412, 11), -- Average P. Def.
-(32745, 4413, 11), -- Average M. Def.
-(32745, 4414, 2), -- Standard Type
-(32745, 4415, 1), -- Bare Hands
-(32745, 4416, 19), -- Others
+(32745, 4390, 1), -- NPC Abnormal Immunity
+(32745, 4408, 1), -- HP Modifiers
+(32745, 4409, 1), -- MP Modifiers
+(32745, 4410, 11), -- P. Atk. Modifiers
+(32745, 4411, 11), -- M. Atk. Modifiers
+(32745, 4412, 11), -- P. Def. Modifiers
+(32745, 4413, 11), -- M. Def. Modifiers
+(32745, 4414, 2), -- Armor Type
+(32745, 4415, 1), -- Weapon Type
+(32745, 4416, 19), -- Races
 -- Teleport Device
 (32746, 4045, 1), -- Resist Full Magic Attack
-(32746, 4390, 1), -- Mystic Immunity
-(32746, 4408, 1), -- HP Increase (1x)
-(32746, 4409, 1), -- MP Increase (1x)
-(32746, 4410, 11), -- Average P. Atk.
-(32746, 4411, 11), -- Average M. Atk.
-(32746, 4412, 11), -- Average P. Def.
-(32746, 4413, 11), -- Average M. Def.
-(32746, 4414, 2), -- Standard Type
-(32746, 4415, 1), -- Bare Hands
-(32746, 4416, 19), -- Others
+(32746, 4390, 1), -- NPC Abnormal Immunity
+(32746, 4408, 1), -- HP Modifiers
+(32746, 4409, 1), -- MP Modifiers
+(32746, 4410, 11), -- P. Atk. Modifiers
+(32746, 4411, 11), -- M. Atk. Modifiers
+(32746, 4412, 11), -- P. Def. Modifiers
+(32746, 4413, 11), -- M. Def. Modifiers
+(32746, 4414, 2), -- Armor Type
+(32746, 4415, 1), -- Weapon Type
+(32746, 4416, 19), -- Races
 -- Teleport Device
 (32747, 4045, 1), -- Resist Full Magic Attack
-(32747, 4390, 1), -- Mystic Immunity
-(32747, 4408, 1), -- HP Increase (1x)
-(32747, 4409, 1), -- MP Increase (1x)
-(32747, 4410, 11), -- Average P. Atk.
-(32747, 4411, 11), -- Average M. Atk.
-(32747, 4412, 11), -- Average P. Def.
-(32747, 4413, 11), -- Average M. Def.
-(32747, 4414, 2), -- Standard Type
-(32747, 4415, 1), -- Bare Hands
-(32747, 4416, 19), -- Others
+(32747, 4390, 1), -- NPC Abnormal Immunity
+(32747, 4408, 1), -- HP Modifiers
+(32747, 4409, 1), -- MP Modifiers
+(32747, 4410, 11), -- P. Atk. Modifiers
+(32747, 4411, 11), -- M. Atk. Modifiers
+(32747, 4412, 11), -- P. Def. Modifiers
+(32747, 4413, 11), -- M. Def. Modifiers
+(32747, 4414, 2), -- Armor Type
+(32747, 4415, 1), -- Weapon Type
+(32747, 4416, 19), -- Races
 -- Teleport Device
 (32748, 4045, 1), -- Resist Full Magic Attack
-(32748, 4390, 1), -- Mystic Immunity
-(32748, 4408, 1), -- HP Increase (1x)
-(32748, 4409, 1), -- MP Increase (1x)
-(32748, 4410, 11), -- Average P. Atk.
-(32748, 4411, 11), -- Average M. Atk.
-(32748, 4412, 11), -- Average P. Def.
-(32748, 4413, 11), -- Average M. Def.
-(32748, 4414, 2), -- Standard Type
-(32748, 4415, 1), -- Bare Hands
-(32748, 4416, 19), -- Others
+(32748, 4390, 1), -- NPC Abnormal Immunity
+(32748, 4408, 1), -- HP Modifiers
+(32748, 4409, 1), -- MP Modifiers
+(32748, 4410, 11), -- P. Atk. Modifiers
+(32748, 4411, 11), -- M. Atk. Modifiers
+(32748, 4412, 11), -- P. Def. Modifiers
+(32748, 4413, 11), -- M. Def. Modifiers
+(32748, 4414, 2), -- Armor Type
+(32748, 4415, 1), -- Weapon Type
+(32748, 4416, 19), -- Races
 -- Teleport Device
 (32749, 4045, 1), -- Resist Full Magic Attack
-(32749, 4390, 1), -- Mystic Immunity
-(32749, 4408, 1), -- HP Increase (1x)
-(32749, 4409, 1), -- MP Increase (1x)
-(32749, 4410, 11), -- Average P. Atk.
-(32749, 4411, 11), -- Average M. Atk.
-(32749, 4412, 11), -- Average P. Def.
-(32749, 4413, 11), -- Average M. Def.
-(32749, 4414, 2), -- Standard Type
-(32749, 4415, 1), -- Bare Hands
-(32749, 4416, 19), -- Others
+(32749, 4390, 1), -- NPC Abnormal Immunity
+(32749, 4408, 1), -- HP Modifiers
+(32749, 4409, 1), -- MP Modifiers
+(32749, 4410, 11), -- P. Atk. Modifiers
+(32749, 4411, 11), -- M. Atk. Modifiers
+(32749, 4412, 11), -- P. Def. Modifiers
+(32749, 4413, 11), -- M. Def. Modifiers
+(32749, 4414, 2), -- Armor Type
+(32749, 4415, 1), -- Weapon Type
+(32749, 4416, 19), -- Races
 -- Teleport Device
 (32750, 4045, 1), -- Resist Full Magic Attack
-(32750, 4390, 1), -- Mystic Immunity
-(32750, 4408, 1), -- HP Increase (1x)
-(32750, 4409, 1), -- MP Increase (1x)
-(32750, 4410, 11), -- Average P. Atk.
-(32750, 4411, 11), -- Average M. Atk.
-(32750, 4412, 11), -- Average P. Def.
-(32750, 4413, 11), -- Average M. Def.
-(32750, 4414, 2), -- Standard Type
-(32750, 4415, 1), -- Bare Hands
-(32750, 4416, 19), -- Others
+(32750, 4390, 1), -- NPC Abnormal Immunity
+(32750, 4408, 1), -- HP Modifiers
+(32750, 4409, 1), -- MP Modifiers
+(32750, 4410, 11), -- P. Atk. Modifiers
+(32750, 4411, 11), -- M. Atk. Modifiers
+(32750, 4412, 11), -- P. Def. Modifiers
+(32750, 4413, 11), -- M. Def. Modifiers
+(32750, 4414, 2), -- Armor Type
+(32750, 4415, 1), -- Weapon Type
+(32750, 4416, 19), -- Races
 -- Teleport Device
 (32751, 4045, 1), -- Resist Full Magic Attack
-(32751, 4390, 1), -- Mystic Immunity
-(32751, 4408, 1), -- HP Increase (1x)
-(32751, 4409, 1), -- MP Increase (1x)
-(32751, 4410, 11), -- Average P. Atk.
-(32751, 4411, 11), -- Average M. Atk.
-(32751, 4412, 11), -- Average P. Def.
-(32751, 4413, 11), -- Average M. Def.
-(32751, 4414, 2), -- Standard Type
-(32751, 4415, 1), -- Bare Hands
-(32751, 4416, 19), -- Others
+(32751, 4390, 1), -- NPC Abnormal Immunity
+(32751, 4408, 1), -- HP Modifiers
+(32751, 4409, 1), -- MP Modifiers
+(32751, 4410, 11), -- P. Atk. Modifiers
+(32751, 4411, 11), -- M. Atk. Modifiers
+(32751, 4412, 11), -- P. Def. Modifiers
+(32751, 4413, 11), -- M. Def. Modifiers
+(32751, 4414, 2), -- Armor Type
+(32751, 4415, 1), -- Weapon Type
+(32751, 4416, 19), -- Races
 -- Teleport Device
 (32752, 4045, 1), -- Resist Full Magic Attack
-(32752, 4390, 1), -- Mystic Immunity
-(32752, 4408, 1), -- HP Increase (1x)
-(32752, 4409, 1), -- MP Increase (1x)
-(32752, 4410, 11), -- Average P. Atk.
-(32752, 4411, 11), -- Average M. Atk.
-(32752, 4412, 11), -- Average P. Def.
-(32752, 4413, 11), -- Average M. Def.
-(32752, 4414, 2), -- Standard Type
-(32752, 4415, 1), -- Bare Hands
-(32752, 4416, 19), -- Others
+(32752, 4390, 1), -- NPC Abnormal Immunity
+(32752, 4408, 1), -- HP Modifiers
+(32752, 4409, 1), -- MP Modifiers
+(32752, 4410, 11), -- P. Atk. Modifiers
+(32752, 4411, 11), -- M. Atk. Modifiers
+(32752, 4412, 11), -- P. Def. Modifiers
+(32752, 4413, 11), -- M. Def. Modifiers
+(32752, 4414, 2), -- Armor Type
+(32752, 4415, 1), -- Weapon Type
+(32752, 4416, 19), -- Races
 -- Floor Teleport Device
 (32753, 4045, 1), -- Resist Full Magic Attack
-(32753, 4390, 1), -- Mystic Immunity
-(32753, 4408, 1), -- HP Increase (1x)
-(32753, 4409, 1), -- MP Increase (1x)
-(32753, 4410, 11), -- Average P. Atk.
-(32753, 4411, 11), -- Average M. Atk.
-(32753, 4412, 11), -- Average P. Def.
-(32753, 4413, 11), -- Average M. Def.
-(32753, 4414, 2), -- Standard Type
-(32753, 4415, 1), -- Bare Hands
-(32753, 4416, 19), -- Others
+(32753, 4390, 1), -- NPC Abnormal Immunity
+(32753, 4408, 1), -- HP Modifiers
+(32753, 4409, 1), -- MP Modifiers
+(32753, 4410, 11), -- P. Atk. Modifiers
+(32753, 4411, 11), -- M. Atk. Modifiers
+(32753, 4412, 11), -- P. Def. Modifiers
+(32753, 4413, 11), -- M. Def. Modifiers
+(32753, 4414, 2), -- Armor Type
+(32753, 4415, 1), -- Weapon Type
+(32753, 4416, 19), -- Races
 -- Floor Teleport Device
 (32754, 4045, 1), -- Resist Full Magic Attack
-(32754, 4390, 1), -- Mystic Immunity
-(32754, 4408, 1), -- HP Increase (1x)
-(32754, 4409, 1), -- MP Increase (1x)
-(32754, 4410, 11), -- Average P. Atk.
-(32754, 4411, 11), -- Average M. Atk.
-(32754, 4412, 11), -- Average P. Def.
-(32754, 4413, 11), -- Average M. Def.
-(32754, 4414, 2), -- Standard Type
-(32754, 4415, 1), -- Bare Hands
-(32754, 4416, 19), -- Others
+(32754, 4390, 1), -- NPC Abnormal Immunity
+(32754, 4408, 1), -- HP Modifiers
+(32754, 4409, 1), -- MP Modifiers
+(32754, 4410, 11), -- P. Atk. Modifiers
+(32754, 4411, 11), -- M. Atk. Modifiers
+(32754, 4412, 11), -- P. Def. Modifiers
+(32754, 4413, 11), -- M. Def. Modifiers
+(32754, 4414, 2), -- Armor Type
+(32754, 4415, 1), -- Weapon Type
+(32754, 4416, 19), -- Races
 -- Floor Teleport Device
 (32755, 4045, 1), -- Resist Full Magic Attack
-(32755, 4390, 1), -- Mystic Immunity
-(32755, 4408, 1), -- HP Increase (1x)
-(32755, 4409, 1), -- MP Increase (1x)
-(32755, 4410, 11), -- Average P. Atk.
-(32755, 4411, 11), -- Average M. Atk.
-(32755, 4412, 11), -- Average P. Def.
-(32755, 4413, 11), -- Average M. Def.
-(32755, 4414, 2), -- Standard Type
-(32755, 4415, 1), -- Bare Hands
-(32755, 4416, 19), -- Others
+(32755, 4390, 1), -- NPC Abnormal Immunity
+(32755, 4408, 1), -- HP Modifiers
+(32755, 4409, 1), -- MP Modifiers
+(32755, 4410, 11), -- P. Atk. Modifiers
+(32755, 4411, 11), -- M. Atk. Modifiers
+(32755, 4412, 11), -- P. Def. Modifiers
+(32755, 4413, 11), -- M. Def. Modifiers
+(32755, 4414, 2), -- Armor Type
+(32755, 4415, 1), -- Weapon Type
+(32755, 4416, 19), -- Races
 -- Floor Teleport Device
 (32756, 4045, 1), -- Resist Full Magic Attack
-(32756, 4390, 1), -- Mystic Immunity
-(32756, 4408, 1), -- HP Increase (1x)
-(32756, 4409, 1), -- MP Increase (1x)
-(32756, 4410, 11), -- Average P. Atk.
-(32756, 4411, 11), -- Average M. Atk.
-(32756, 4412, 11), -- Average P. Def.
-(32756, 4413, 11), -- Average M. Def.
-(32756, 4414, 2), -- Standard Type
-(32756, 4415, 1), -- Bare Hands
-(32756, 4416, 19), -- Others
+(32756, 4390, 1), -- NPC Abnormal Immunity
+(32756, 4408, 1), -- HP Modifiers
+(32756, 4409, 1), -- MP Modifiers
+(32756, 4410, 11), -- P. Atk. Modifiers
+(32756, 4411, 11), -- M. Atk. Modifiers
+(32756, 4412, 11), -- P. Def. Modifiers
+(32756, 4413, 11), -- M. Def. Modifiers
+(32756, 4414, 2), -- Armor Type
+(32756, 4415, 1), -- Weapon Type
+(32756, 4416, 19), -- Races
 -- Greymore
 (32757, 4045, 1), -- Resist Full Magic Attack
-(32757, 4408, 1), -- HP Increase (1x)
-(32757, 4409, 1), -- MP Increase (1x)
-(32757, 4410, 11), -- Average P. Atk.
-(32757, 4411, 11), -- Average M. Atk.
-(32757, 4412, 11), -- Average P. Def.
-(32757, 4413, 11), -- Average M. Def.
-(32757, 4414, 2), -- Standard Type
-(32757, 4415, 1), -- Bare Hands
-(32757, 4416, 14), -- Humans
+(32757, 4408, 1), -- HP Modifiers
+(32757, 4409, 1), -- MP Modifiers
+(32757, 4410, 11), -- P. Atk. Modifiers
+(32757, 4411, 11), -- M. Atk. Modifiers
+(32757, 4412, 11), -- P. Def. Modifiers
+(32757, 4413, 11), -- M. Def. Modifiers
+(32757, 4414, 2), -- Armor Type
+(32757, 4415, 1), -- Weapon Type
+(32757, 4416, 14), -- Races
 -- Sumiel
 (32758, 4045, 1), -- Resist Full Magic Attack
-(32758, 4408, 1), -- HP Increase (1x)
-(32758, 4409, 1), -- MP Increase (1x)
-(32758, 4410, 11), -- Average P. Atk.
-(32758, 4411, 11), -- Average M. Atk.
-(32758, 4412, 11), -- Average P. Def.
-(32758, 4413, 11), -- Average M. Def.
-(32758, 4414, 2), -- Standard Type
-(32758, 4415, 1), -- Bare Hands
-(32758, 4416, 14), -- Humans
+(32758, 4408, 1), -- HP Modifiers
+(32758, 4409, 1), -- MP Modifiers
+(32758, 4410, 11), -- P. Atk. Modifiers
+(32758, 4411, 11), -- M. Atk. Modifiers
+(32758, 4412, 11), -- P. Def. Modifiers
+(32758, 4413, 11), -- M. Def. Modifiers
+(32758, 4414, 2), -- Armor Type
+(32758, 4415, 1), -- Weapon Type
+(32758, 4416, 14), -- Races
 -- Gumiel
 (32759, 4045, 1), -- Resist Full Magic Attack
-(32759, 4408, 1), -- HP Increase (1x)
-(32759, 4409, 1), -- MP Increase (1x)
-(32759, 4410, 11), -- Average P. Atk.
-(32759, 4411, 11), -- Average M. Atk.
-(32759, 4412, 11), -- Average P. Def.
-(32759, 4413, 11), -- Average M. Def.
-(32759, 4414, 2), -- Standard Type
-(32759, 4415, 1), -- Bare Hands
-(32759, 4416, 14), -- Humans
+(32759, 4408, 1), -- HP Modifiers
+(32759, 4409, 1), -- MP Modifiers
+(32759, 4410, 11), -- P. Atk. Modifiers
+(32759, 4411, 11), -- M. Atk. Modifiers
+(32759, 4412, 11), -- P. Def. Modifiers
+(32759, 4413, 11), -- M. Def. Modifiers
+(32759, 4414, 2), -- Armor Type
+(32759, 4415, 1), -- Weapon Type
+(32759, 4416, 14), -- Races
 -- Jinia 
 (32760, 4045, 1), -- Resist Full Magic Attack
-(32760, 4408, 1), -- HP Increase (1x)
-(32760, 4409, 1), -- MP Increase (1x)
-(32760, 4410, 11), -- Average P. Atk.
-(32760, 4411, 11), -- Average M. Atk.
-(32760, 4412, 11), -- Average P. Def.
-(32760, 4413, 11), -- Average M. Def.
-(32760, 4414, 2), -- Standard Type
-(32760, 4415, 1), -- Bare Hands
-(32760, 4416, 14), -- Humans
+(32760, 4408, 1), -- HP Modifiers
+(32760, 4409, 1), -- MP Modifiers
+(32760, 4410, 11), -- P. Atk. Modifiers
+(32760, 4411, 11), -- M. Atk. Modifiers
+(32760, 4412, 11), -- P. Def. Modifiers
+(32760, 4413, 11), -- M. Def. Modifiers
+(32760, 4414, 2), -- Armor Type
+(32760, 4415, 1), -- Weapon Type
+(32760, 4416, 14), -- Races
 -- Kegor
 (32761, 4045, 1), -- Resist Full Magic Attack
-(32761, 4408, 1), -- HP Increase (1x)
-(32761, 4409, 1), -- MP Increase (1x)
-(32761, 4410, 11), -- Average P. Atk.
-(32761, 4411, 11), -- Average M. Atk.
-(32761, 4412, 11), -- Average P. Def.
-(32761, 4413, 11), -- Average M. Def.
-(32761, 4414, 2), -- Standard Type
-(32761, 4415, 1), -- Bare Hands
-(32761, 4416, 14), -- Humans
+(32761, 4408, 1), -- HP Modifiers
+(32761, 4409, 1), -- MP Modifiers
+(32761, 4410, 11), -- P. Atk. Modifiers
+(32761, 4411, 11), -- M. Atk. Modifiers
+(32761, 4412, 11), -- P. Def. Modifiers
+(32761, 4413, 11), -- M. Def. Modifiers
+(32761, 4414, 2), -- Armor Type
+(32761, 4415, 1), -- Weapon Type
+(32761, 4416, 14), -- Races
 -- Sirra 
 (32762, 4045, 1), -- Resist Full Magic Attack
-(32762, 4408, 1), -- HP Increase (1x)
-(32762, 4409, 1), -- MP Increase (1x)
-(32762, 4410, 11), -- Average P. Atk.
-(32762, 4411, 11), -- Average M. Atk.
-(32762, 4412, 11), -- Average P. Def.
-(32762, 4413, 11), -- Average M. Def.
-(32762, 4414, 2), -- Standard Type
-(32762, 4415, 1), -- Bare Hands
-(32762, 4416, 14), -- Humans
+(32762, 4408, 1), -- HP Modifiers
+(32762, 4409, 1), -- MP Modifiers
+(32762, 4410, 11), -- P. Atk. Modifiers
+(32762, 4411, 11), -- M. Atk. Modifiers
+(32762, 4412, 11), -- P. Def. Modifiers
+(32762, 4413, 11), -- M. Def. Modifiers
+(32762, 4414, 2), -- Armor Type
+(32762, 4415, 1), -- Weapon Type
+(32762, 4416, 14), -- Races
 -- Sirra 
 (32763, 4045, 1), -- Resist Full Magic Attack
-(32763, 4408, 1), -- HP Increase (1x)
-(32763, 4409, 1), -- MP Increase (1x)
-(32763, 4410, 11), -- Average P. Atk.
-(32763, 4411, 11), -- Average M. Atk.
-(32763, 4412, 11), -- Average P. Def.
-(32763, 4413, 11), -- Average M. Def.
-(32763, 4414, 2), -- Standard Type
-(32763, 4415, 1), -- Bare Hands
-(32763, 4416, 7), -- Spirits
+(32763, 4408, 1), -- HP Modifiers
+(32763, 4409, 1), -- MP Modifiers
+(32763, 4410, 11), -- P. Atk. Modifiers
+(32763, 4411, 11), -- M. Atk. Modifiers
+(32763, 4412, 11), -- P. Def. Modifiers
+(32763, 4413, 11), -- M. Def. Modifiers
+(32763, 4414, 2), -- Armor Type
+(32763, 4415, 1), -- Weapon Type
+(32763, 4416, 7), -- Races
 -- 
 (32764, 4045, 1), -- Resist Full Magic Attack
-(32764, 4390, 1), -- Mystic Immunity
-(32764, 4408, 1), -- HP Increase (1x)
-(32764, 4409, 1), -- MP Increase (1x)
-(32764, 4410, 11), -- Average P. Atk.
-(32764, 4411, 11), -- Average M. Atk.
-(32764, 4412, 11), -- Average P. Def.
-(32764, 4413, 11), -- Average M. Def.
-(32764, 4414, 2), -- Standard Type
-(32764, 4415, 1), -- Bare Hands
-(32764, 4416, 2), -- Magic Creatures
+(32764, 4390, 1), -- NPC Abnormal Immunity
+(32764, 4408, 1), -- HP Modifiers
+(32764, 4409, 1), -- MP Modifiers
+(32764, 4410, 11), -- P. Atk. Modifiers
+(32764, 4411, 11), -- M. Atk. Modifiers
+(32764, 4412, 11), -- P. Def. Modifiers
+(32764, 4413, 11), -- M. Def. Modifiers
+(32764, 4414, 2), -- Armor Type
+(32764, 4415, 1), -- Weapon Type
+(32764, 4416, 2), -- Races
 -- Box of Doubt
 (32765, 4045, 1), -- Resist Full Magic Attack
-(32765, 4390, 1), -- Mystic Immunity
-(32765, 4408, 1), -- HP Increase (1x)
-(32765, 4409, 1), -- MP Increase (1x)
-(32765, 4410, 11), -- Average P. Atk.
-(32765, 4411, 11), -- Average M. Atk.
-(32765, 4412, 11), -- Average P. Def.
-(32765, 4413, 11), -- Average M. Def.
-(32765, 4414, 2), -- Standard Type
-(32765, 4415, 1), -- Bare Hands
-(32765, 4416, 19), -- Others
+(32765, 4390, 1), -- NPC Abnormal Immunity
+(32765, 4408, 1), -- HP Modifiers
+(32765, 4409, 1), -- MP Modifiers
+(32765, 4410, 11), -- P. Atk. Modifiers
+(32765, 4411, 11), -- M. Atk. Modifiers
+(32765, 4412, 11), -- P. Def. Modifiers
+(32765, 4413, 11), -- M. Def. Modifiers
+(32765, 4414, 2), -- Armor Type
+(32765, 4415, 1), -- Weapon Type
+(32765, 4416, 19), -- Races
 -- Ilvenis
 (32766, 4045, 1), -- Resist Full Magic Attack
-(32766, 4390, 1), -- Mystic Immunity
-(32766, 4408, 1), -- HP Increase (1x)
-(32766, 4409, 1), -- MP Increase (1x)
-(32766, 4410, 11), -- Average P. Atk.
-(32766, 4411, 11), -- Average M. Atk.
-(32766, 4412, 11), -- Average P. Def.
-(32766, 4413, 11), -- Average M. Def.
-(32766, 4414, 2), -- Standard Type
-(32766, 4415, 1), -- Bare Hands
-(32766, 4416, 14), -- Humans
+(32766, 4390, 1), -- NPC Abnormal Immunity
+(32766, 4408, 1), -- HP Modifiers
+(32766, 4409, 1), -- MP Modifiers
+(32766, 4410, 11), -- P. Atk. Modifiers
+(32766, 4411, 11), -- M. Atk. Modifiers
+(32766, 4412, 11), -- P. Def. Modifiers
+(32766, 4413, 11), -- M. Def. Modifiers
+(32766, 4414, 2), -- Armor Type
+(32766, 4415, 1), -- Weapon Type
+(32766, 4416, 14), -- Races
 -- McLaren
 (32767, 4045, 1), -- Resist Full Magic Attack
-(32767, 4390, 1), -- Mystic Immunity
-(32767, 4408, 1), -- HP Increase (1x)
-(32767, 4409, 1), -- MP Increase (1x)
-(32767, 4410, 11), -- Average P. Atk.
-(32767, 4411, 11), -- Average M. Atk.
-(32767, 4412, 11), -- Average P. Def.
-(32767, 4413, 11), -- Average M. Def.
-(32767, 4414, 2), -- Standard Type
-(32767, 4415, 1), -- Bare Hands
-(32767, 4416, 15), -- Elves
+(32767, 4390, 1), -- NPC Abnormal Immunity
+(32767, 4408, 1), -- HP Modifiers
+(32767, 4409, 1), -- MP Modifiers
+(32767, 4410, 11), -- P. Atk. Modifiers
+(32767, 4411, 11), -- M. Atk. Modifiers
+(32767, 4412, 11), -- P. Def. Modifiers
+(32767, 4413, 11), -- M. Def. Modifiers
+(32767, 4414, 2), -- Armor Type
+(32767, 4415, 1), -- Weapon Type
+(32767, 4416, 15), -- Races
 -- Kelleyia
 (32768, 4045, 1), -- Resist Full Magic Attack
-(32768, 4408, 1), -- HP Increase (1x)
-(32768, 4409, 1), -- MP Increase (1x)
-(32768, 4410, 11), -- Average P. Atk.
-(32768, 4411, 11), -- Average M. Atk.
-(32768, 4412, 11), -- Average P. Def.
-(32768, 4413, 11), -- Average M. Def.
-(32768, 4414, 2), -- Standard Type
-(32768, 4415, 3), -- One-handed Sword
-(32768, 4416, 14), -- Humans
+(32768, 4408, 1), -- HP Modifiers
+(32768, 4409, 1), -- MP Modifiers
+(32768, 4410, 11), -- P. Atk. Modifiers
+(32768, 4411, 11), -- M. Atk. Modifiers
+(32768, 4412, 11), -- P. Def. Modifiers
+(32768, 4413, 11), -- M. Def. Modifiers
+(32768, 4414, 2), -- Armor Type
+(32768, 4415, 3), -- Weapon Type
+(32768, 4416, 14), -- Races
 -- Gracian Soldier's Corpse
 (32769, 4045, 1), -- Resist Full Magic Attack
-(32769, 4408, 1), -- HP Increase (1x)
-(32769, 4409, 1), -- MP Increase (1x)
-(32769, 4410, 11), -- Average P. Atk.
-(32769, 4411, 11), -- Average M. Atk.
-(32769, 4412, 11), -- Average P. Def.
-(32769, 4413, 11), -- Average M. Def.
-(32769, 4414, 2), -- Standard Type
-(32769, 4415, 1), -- Bare Hands
-(32769, 4416, 14), -- Humans
+(32769, 4408, 1), -- HP Modifiers
+(32769, 4409, 1), -- MP Modifiers
+(32769, 4410, 11), -- P. Atk. Modifiers
+(32769, 4411, 11), -- M. Atk. Modifiers
+(32769, 4412, 11), -- P. Def. Modifiers
+(32769, 4413, 11), -- M. Def. Modifiers
+(32769, 4414, 2), -- Armor Type
+(32769, 4415, 1), -- Weapon Type
+(32769, 4416, 14), -- Races
 -- Gracian Soldier's Corpse
 (32770, 4045, 1), -- Resist Full Magic Attack
-(32770, 4408, 1), -- HP Increase (1x)
-(32770, 4409, 1), -- MP Increase (1x)
-(32770, 4410, 11), -- Average P. Atk.
-(32770, 4411, 11), -- Average M. Atk.
-(32770, 4412, 11), -- Average P. Def.
-(32770, 4413, 11), -- Average M. Def.
-(32770, 4414, 2), -- Standard Type
-(32770, 4415, 1), -- Bare Hands
-(32770, 4416, 15), -- Elves
+(32770, 4408, 1), -- HP Modifiers
+(32770, 4409, 1), -- MP Modifiers
+(32770, 4410, 11), -- P. Atk. Modifiers
+(32770, 4411, 11), -- M. Atk. Modifiers
+(32770, 4412, 11), -- P. Def. Modifiers
+(32770, 4413, 11), -- M. Def. Modifiers
+(32770, 4414, 2), -- Armor Type
+(32770, 4415, 1), -- Weapon Type
+(32770, 4416, 15), -- Races
 -- Gracian Soldier's Corpse
 (32771, 4045, 1), -- Resist Full Magic Attack
-(32771, 4408, 1), -- HP Increase (1x)
-(32771, 4409, 1), -- MP Increase (1x)
-(32771, 4410, 11), -- Average P. Atk.
-(32771, 4411, 11), -- Average M. Atk.
-(32771, 4412, 11), -- Average P. Def.
-(32771, 4413, 11), -- Average M. Def.
-(32771, 4414, 2), -- Standard Type
-(32771, 4415, 1), -- Bare Hands
-(32771, 4416, 15), -- Elves
+(32771, 4408, 1), -- HP Modifiers
+(32771, 4409, 1), -- MP Modifiers
+(32771, 4410, 11), -- P. Atk. Modifiers
+(32771, 4411, 11), -- M. Atk. Modifiers
+(32771, 4412, 11), -- P. Def. Modifiers
+(32771, 4413, 11), -- M. Def. Modifiers
+(32771, 4414, 2), -- Armor Type
+(32771, 4415, 1), -- Weapon Type
+(32771, 4416, 15), -- Races
 -- Gracian Soldier's Corpse
 (32772, 4045, 1), -- Resist Full Magic Attack
-(32772, 4408, 1), -- HP Increase (1x)
-(32772, 4409, 1), -- MP Increase (1x)
-(32772, 4410, 11), -- Average P. Atk.
-(32772, 4411, 11), -- Average M. Atk.
-(32772, 4412, 11), -- Average P. Def.
-(32772, 4413, 11), -- Average M. Def.
-(32772, 4414, 2), -- Standard Type
-(32772, 4415, 1), -- Bare Hands
-(32772, 4416, 17), -- Orcs
+(32772, 4408, 1), -- HP Modifiers
+(32772, 4409, 1), -- MP Modifiers
+(32772, 4410, 11), -- P. Atk. Modifiers
+(32772, 4411, 11), -- M. Atk. Modifiers
+(32772, 4412, 11), -- P. Def. Modifiers
+(32772, 4413, 11), -- M. Def. Modifiers
+(32772, 4414, 2), -- Armor Type
+(32772, 4415, 1), -- Weapon Type
+(32772, 4416, 17), -- Races
 -- Jakan
 (32773, 4045, 1), -- Resist Full Magic Attack
-(32773, 4390, 1), -- Mystic Immunity
-(32773, 4408, 1), -- HP Increase (1x)
-(32773, 4409, 1), -- MP Increase (1x)
-(32773, 4410, 11), -- Average P. Atk.
-(32773, 4411, 11), -- Average M. Atk.
-(32773, 4412, 11), -- Average P. Def.
-(32773, 4413, 11), -- Average M. Def.
-(32773, 4414, 2), -- Standard Type
-(32773, 4415, 1), -- Bare Hands
-(32773, 4416, 17), -- Orcs
+(32773, 4390, 1), -- NPC Abnormal Immunity
+(32773, 4408, 1), -- HP Modifiers
+(32773, 4409, 1), -- MP Modifiers
+(32773, 4410, 11), -- P. Atk. Modifiers
+(32773, 4411, 11), -- M. Atk. Modifiers
+(32773, 4412, 11), -- P. Def. Modifiers
+(32773, 4413, 11), -- M. Def. Modifiers
+(32773, 4414, 2), -- Armor Type
+(32773, 4415, 1), -- Weapon Type
+(32773, 4416, 17), -- Races
 -- Elmina
 (32774, 4045, 1), -- Resist Full Magic Attack
-(32774, 4390, 1), -- Mystic Immunity
-(32774, 4408, 1), -- HP Increase (1x)
-(32774, 4409, 1), -- MP Increase (1x)
-(32774, 4410, 11), -- Average P. Atk.
-(32774, 4411, 11), -- Average M. Atk.
-(32774, 4412, 11), -- Average P. Def.
-(32774, 4413, 11), -- Average M. Def.
-(32774, 4414, 2), -- Standard Type
-(32774, 4415, 1), -- Bare Hands
-(32774, 4416, 14), -- Humans
+(32774, 4390, 1), -- NPC Abnormal Immunity
+(32774, 4408, 1), -- HP Modifiers
+(32774, 4409, 1), -- MP Modifiers
+(32774, 4410, 11), -- P. Atk. Modifiers
+(32774, 4411, 11), -- M. Atk. Modifiers
+(32774, 4412, 11), -- P. Def. Modifiers
+(32774, 4413, 11), -- M. Def. Modifiers
+(32774, 4414, 2), -- Armor Type
+(32774, 4415, 1), -- Weapon Type
+(32774, 4416, 14), -- Races
 -- Gracian Soldier
 (32775, 4045, 1), -- Resist Full Magic Attack
-(32775, 4390, 1), -- Mystic Immunity
-(32775, 4408, 1), -- HP Increase (1x)
-(32775, 4409, 1), -- MP Increase (1x)
-(32775, 4410, 11), -- Average P. Atk.
-(32775, 4411, 11), -- Average M. Atk.
-(32775, 4412, 11), -- Average P. Def.
-(32775, 4413, 11), -- Average M. Def.
-(32775, 4414, 2), -- Standard Type
-(32775, 4415, 1), -- Bare Hands
-(32775, 4416, 14), -- Humans
+(32775, 4390, 1), -- NPC Abnormal Immunity
+(32775, 4408, 1), -- HP Modifiers
+(32775, 4409, 1), -- MP Modifiers
+(32775, 4410, 11), -- P. Atk. Modifiers
+(32775, 4411, 11), -- M. Atk. Modifiers
+(32775, 4412, 11), -- P. Def. Modifiers
+(32775, 4413, 11), -- M. Def. Modifiers
+(32775, 4414, 2), -- Armor Type
+(32775, 4415, 1), -- Weapon Type
+(32775, 4416, 14), -- Races
 -- Gracian Soldier
 (32776, 4045, 1), -- Resist Full Magic Attack
-(32776, 4390, 1), -- Mystic Immunity
-(32776, 4408, 1), -- HP Increase (1x)
-(32776, 4409, 1), -- MP Increase (1x)
-(32776, 4410, 11), -- Average P. Atk.
-(32776, 4411, 11), -- Average M. Atk.
-(32776, 4412, 11), -- Average P. Def.
-(32776, 4413, 11), -- Average M. Def.
-(32776, 4414, 2), -- Standard Type
-(32776, 4415, 1), -- Bare Hands
-(32776, 4416, 14), -- Humans
+(32776, 4390, 1), -- NPC Abnormal Immunity
+(32776, 4408, 1), -- HP Modifiers
+(32776, 4409, 1), -- MP Modifiers
+(32776, 4410, 11), -- P. Atk. Modifiers
+(32776, 4411, 11), -- M. Atk. Modifiers
+(32776, 4412, 11), -- P. Def. Modifiers
+(32776, 4413, 11), -- M. Def. Modifiers
+(32776, 4414, 2), -- Armor Type
+(32776, 4415, 1), -- Weapon Type
+(32776, 4416, 14), -- Races
 -- Battalion Leader
 (32777, 4045, 1), -- Resist Full Magic Attack
-(32777, 4390, 1), -- Mystic Immunity
-(32777, 4408, 1), -- HP Increase (1x)
-(32777, 4409, 1), -- MP Increase (1x)
-(32777, 4410, 11), -- Average P. Atk.
-(32777, 4411, 11), -- Average M. Atk.
-(32777, 4412, 11), -- Average P. Def.
-(32777, 4413, 11), -- Average M. Def.
-(32777, 4414, 2), -- Standard Type
-(32777, 4415, 1), -- Bare Hands
-(32777, 4416, 14), -- Humans
+(32777, 4390, 1), -- NPC Abnormal Immunity
+(32777, 4408, 1), -- HP Modifiers
+(32777, 4409, 1), -- MP Modifiers
+(32777, 4410, 11), -- P. Atk. Modifiers
+(32777, 4411, 11), -- M. Atk. Modifiers
+(32777, 4412, 11), -- P. Def. Modifiers
+(32777, 4413, 11), -- M. Def. Modifiers
+(32777, 4414, 2), -- Armor Type
+(32777, 4415, 1), -- Weapon Type
+(32777, 4416, 14), -- Races
 -- Legionnaire
 (32778, 4045, 1), -- Resist Full Magic Attack
-(32778, 4390, 1), -- Mystic Immunity
-(32778, 4408, 1), -- HP Increase (1x)
-(32778, 4409, 1), -- MP Increase (1x)
-(32778, 4410, 11), -- Average P. Atk.
-(32778, 4411, 11), -- Average M. Atk.
-(32778, 4412, 11), -- Average P. Def.
-(32778, 4413, 11), -- Average M. Def.
-(32778, 4414, 2), -- Standard Type
-(32778, 4415, 1), -- Bare Hands
-(32778, 4416, 17), -- Orcs
+(32778, 4390, 1), -- NPC Abnormal Immunity
+(32778, 4408, 1), -- HP Modifiers
+(32778, 4409, 1), -- MP Modifiers
+(32778, 4410, 11), -- P. Atk. Modifiers
+(32778, 4411, 11), -- M. Atk. Modifiers
+(32778, 4412, 11), -- P. Def. Modifiers
+(32778, 4413, 11), -- M. Def. Modifiers
+(32778, 4414, 2), -- Armor Type
+(32778, 4415, 1), -- Weapon Type
+(32778, 4416, 17), -- Races
 -- Flight Control
 (32779, 4045, 1), -- Resist Full Magic Attack
-(32779, 4390, 1), -- Mystic Immunity
-(32779, 4408, 1), -- HP Increase (1x)
-(32779, 4409, 1), -- MP Increase (1x)
-(32779, 4410, 11), -- Average P. Atk.
-(32779, 4411, 11), -- Average M. Atk.
-(32779, 4412, 11), -- Average P. Def.
-(32779, 4413, 11), -- Average M. Def.
-(32779, 4414, 2), -- Standard Type
-(32779, 4415, 1), -- Bare Hands
-(32779, 4416, 2), -- Magic Creatures
+(32779, 4390, 1), -- NPC Abnormal Immunity
+(32779, 4408, 1), -- HP Modifiers
+(32779, 4409, 1), -- MP Modifiers
+(32779, 4410, 11), -- P. Atk. Modifiers
+(32779, 4411, 11), -- M. Atk. Modifiers
+(32779, 4412, 11), -- P. Def. Modifiers
+(32779, 4413, 11), -- M. Def. Modifiers
+(32779, 4414, 2), -- Armor Type
+(32779, 4415, 1), -- Weapon Type
+(32779, 4416, 2), -- Races
 -- Aquilani
 (32780, 4045, 1), -- Resist Full Magic Attack
-(32780, 4408, 1), -- HP Increase (1x)
-(32780, 4409, 1), -- MP Increase (1x)
-(32780, 4410, 11), -- Average P. Atk.
-(32780, 4411, 11), -- Average M. Atk.
-(32780, 4412, 11), -- Average P. Def.
-(32780, 4413, 11), -- Average M. Def.
-(32780, 4414, 2), -- Standard Type
-(32780, 4415, 1), -- Bare Hands
-(32780, 4416, 14), -- Humans
+(32780, 4408, 1), -- HP Modifiers
+(32780, 4409, 1), -- MP Modifiers
+(32780, 4410, 11), -- P. Atk. Modifiers
+(32780, 4411, 11), -- M. Atk. Modifiers
+(32780, 4412, 11), -- P. Def. Modifiers
+(32780, 4413, 11), -- M. Def. Modifiers
+(32780, 4414, 2), -- Armor Type
+(32780, 4415, 1), -- Weapon Type
+(32780, 4416, 14), -- Races
 -- Jinia 
 (32781, 4045, 1), -- Resist Full Magic Attack
-(32781, 4408, 1), -- HP Increase (1x)
-(32781, 4409, 1), -- MP Increase (1x)
-(32781, 4410, 11), -- Average P. Atk.
-(32781, 4411, 11), -- Average M. Atk.
-(32781, 4412, 11), -- Average P. Def.
-(32781, 4413, 11), -- Average M. Def.
-(32781, 4414, 2), -- Standard Type
-(32781, 4415, 1), -- Bare Hands
-(32781, 4416, 14), -- Humans
+(32781, 4408, 1), -- HP Modifiers
+(32781, 4409, 1), -- MP Modifiers
+(32781, 4410, 11), -- P. Atk. Modifiers
+(32781, 4411, 11), -- M. Atk. Modifiers
+(32781, 4412, 11), -- P. Def. Modifiers
+(32781, 4413, 11), -- M. Def. Modifiers
+(32781, 4414, 2), -- Armor Type
+(32781, 4415, 1), -- Weapon Type
+(32781, 4416, 14), -- Races
 -- Lionel
 (32782, 4045, 1), -- Resist Full Magic Attack
-(32782, 4390, 1), -- Mystic Immunity
-(32782, 4408, 1), -- HP Increase (1x)
-(32782, 4409, 1), -- MP Increase (1x)
-(32782, 4410, 11), -- Average P. Atk.
-(32782, 4411, 11), -- Average M. Atk.
-(32782, 4412, 11), -- Average P. Def.
-(32782, 4413, 11), -- Average M. Def.
-(32782, 4414, 2), -- Standard Type
-(32782, 4415, 1), -- Bare Hands
-(32782, 4416, 2), -- Magic Creatures
+(32782, 4390, 1), -- NPC Abnormal Immunity
+(32782, 4408, 1), -- HP Modifiers
+(32782, 4409, 1), -- MP Modifiers
+(32782, 4410, 11), -- P. Atk. Modifiers
+(32782, 4411, 11), -- M. Atk. Modifiers
+(32782, 4412, 11), -- P. Def. Modifiers
+(32782, 4413, 11), -- M. Def. Modifiers
+(32782, 4414, 2), -- Armor Type
+(32782, 4415, 1), -- Weapon Type
+(32782, 4416, 2), -- Races
 -- Priest of Blessing
 (32783, 4045, 1), -- Resist Full Magic Attack
-(32783, 4408, 1), -- HP Increase (1x)
-(32783, 4409, 1), -- MP Increase (1x)
-(32783, 4410, 11), -- Average P. Atk.
-(32783, 4411, 11), -- Average M. Atk.
-(32783, 4412, 11), -- Average P. Def.
-(32783, 4413, 11), -- Average M. Def.
-(32783, 4414, 2), -- Standard Type
-(32783, 4415, 1), -- Bare Hands
-(32783, 4416, 14), -- Humans
+(32783, 4408, 1), -- HP Modifiers
+(32783, 4409, 1), -- MP Modifiers
+(32783, 4410, 11), -- P. Atk. Modifiers
+(32783, 4411, 11), -- M. Atk. Modifiers
+(32783, 4412, 11), -- P. Def. Modifiers
+(32783, 4413, 11), -- M. Def. Modifiers
+(32783, 4414, 2), -- Armor Type
+(32783, 4415, 1), -- Weapon Type
+(32783, 4416, 14), -- Races
 -- Separated Soul
-(32864, 4416, 1), -- Undead
+(32864, 4416, 1), -- Races
 -- Separated Soul
-(32865, 4416, 1), -- Undead
+(32865, 4416, 1), -- Races
 -- Separated Soul
-(32866, 4416, 1), -- Undead
+(32866, 4416, 1), -- Races
 -- Separated Soul
-(32867, 4416, 1), -- Undead
+(32867, 4416, 1), -- Races
 -- Separated Soul
-(32868, 4416, 1), -- Undead
+(32868, 4416, 1), -- Races
 -- Separated Soul
-(32869, 4416, 1), -- Undead
+(32869, 4416, 1), -- Races
 -- Separated Soul
-(32870, 4416, 1), -- Undead
+(32870, 4416, 1), -- Races
 -- Lyann
-(32874, 4416, 18), -- Dwarves
+(32874, 4416, 18), -- Races
 -- Tahoo
-(32875, 4416, 18), -- Dwarves
+(32875, 4416, 18), -- Races
 -- Desian
-(32876, 4416, 18), -- Dwarves
+(32876, 4416, 18), -- Races
 -- Plani
-(32877, 4416, 18), -- Dwarves
+(32877, 4416, 18), -- Races
 -- Sparky
-(32878, 4416, 18), -- Dwarves
+(32878, 4416, 18), -- Races
 -- Drawin
-(32879, 4416, 18), -- Dwarves
+(32879, 4416, 18), -- Races
 -- Dolphren
-(32880, 4416, 18), -- Dwarves
+(32880, 4416, 18), -- Races
 -- Denver
-(32881, 4416, 18), -- Dwarves
+(32881, 4416, 18), -- Races
 -- Prouse
-(32882, 4416, 18), -- Dwarves
+(32882, 4416, 18), -- Races
 -- Hedinger
-(32883, 4416, 18), -- Dwarves
+(32883, 4416, 18), -- Races
 -- Metar
-(32887, 4416, 18), -- Dwarves
+(32887, 4416, 18), -- Races
 -- Ruiman
-(32890, 4416, 18), -- Dwarves
+(32890, 4416, 18), -- Races
 -- Mercenary
 (35010, 4045, 1), -- Resist Full Magic Attack
-(35010, 4408, 1), -- HP Increase (1x)
-(35010, 4409, 1), -- MP Increase (1x)
-(35010, 4410, 11), -- Average P. Atk.
-(35010, 4411, 11), -- Average M. Atk.
-(35010, 4412, 11), -- Average P. Def.
-(35010, 4413, 11), -- Average M. Def.
-(35010, 4414, 2), -- Standard Type
-(35010, 4415, 3), -- One-handed Sword
-(35010, 4416, 23), -- Mercenaries
+(35010, 4408, 1), -- HP Modifiers
+(35010, 4409, 1), -- MP Modifiers
+(35010, 4410, 11), -- P. Atk. Modifiers
+(35010, 4411, 11), -- M. Atk. Modifiers
+(35010, 4412, 11), -- P. Def. Modifiers
+(35010, 4413, 11), -- M. Def. Modifiers
+(35010, 4414, 2), -- Armor Type
+(35010, 4415, 3), -- Weapon Type
+(35010, 4416, 23), -- Races
 -- Mercenary
 (35011, 4045, 1), -- Resist Full Magic Attack
-(35011, 4408, 1), -- HP Increase (1x)
-(35011, 4409, 1), -- MP Increase (1x)
-(35011, 4410, 11), -- Average P. Atk.
-(35011, 4411, 11), -- Average M. Atk.
-(35011, 4412, 11), -- Average P. Def.
-(35011, 4413, 11), -- Average M. Def.
-(35011, 4414, 2), -- Standard Type
-(35011, 4415, 11), -- Spears
-(35011, 4416, 23), -- Mercenaries
+(35011, 4408, 1), -- HP Modifiers
+(35011, 4409, 1), -- MP Modifiers
+(35011, 4410, 11), -- P. Atk. Modifiers
+(35011, 4411, 11), -- M. Atk. Modifiers
+(35011, 4412, 11), -- P. Def. Modifiers
+(35011, 4413, 11), -- M. Def. Modifiers
+(35011, 4414, 2), -- Armor Type
+(35011, 4415, 11), -- Weapon Type
+(35011, 4416, 23), -- Races
 -- Mercenary
 (35012, 4045, 1), -- Resist Full Magic Attack
-(35012, 4408, 1), -- HP Increase (1x)
-(35012, 4409, 1), -- MP Increase (1x)
-(35012, 4410, 11), -- Average P. Atk.
-(35012, 4411, 11), -- Average M. Atk.
-(35012, 4412, 11), -- Average P. Def.
-(35012, 4413, 11), -- Average M. Def.
-(35012, 4414, 3), -- Light Armor Type
-(35012, 4415, 9), -- Bows
-(35012, 4416, 23), -- Mercenaries
+(35012, 4408, 1), -- HP Modifiers
+(35012, 4409, 1), -- MP Modifiers
+(35012, 4410, 11), -- P. Atk. Modifiers
+(35012, 4411, 11), -- M. Atk. Modifiers
+(35012, 4412, 11), -- P. Def. Modifiers
+(35012, 4413, 11), -- M. Def. Modifiers
+(35012, 4414, 3), -- Armor Type
+(35012, 4415, 9), -- Weapon Type
+(35012, 4416, 23), -- Races
 -- Mercenary
 (35013, 4027, 1), -- Gludio Heal
 (35013, 4045, 1), -- Resist Full Magic Attack
-(35013, 4408, 1), -- HP Increase (1x)
-(35013, 4409, 1), -- MP Increase (1x)
-(35013, 4410, 11), -- Average P. Atk.
-(35013, 4411, 11), -- Average M. Atk.
-(35013, 4412, 11), -- Average P. Def.
-(35013, 4413, 11), -- Average M. Def.
-(35013, 4414, 3), -- Light Armor Type
-(35013, 4415, 5), -- Blunt Weapons
-(35013, 4416, 23), -- Mercenaries
+(35013, 4408, 1), -- HP Modifiers
+(35013, 4409, 1), -- MP Modifiers
+(35013, 4410, 11), -- P. Atk. Modifiers
+(35013, 4411, 11), -- M. Atk. Modifiers
+(35013, 4412, 11), -- P. Def. Modifiers
+(35013, 4413, 11), -- M. Def. Modifiers
+(35013, 4414, 3), -- Armor Type
+(35013, 4415, 5), -- Weapon Type
+(35013, 4416, 23), -- Races
 -- Mercenary
 (35014, 4026, 1), -- Gludio Flame
 (35014, 4045, 1), -- Resist Full Magic Attack
-(35014, 4408, 1), -- HP Increase (1x)
-(35014, 4409, 1), -- MP Increase (1x)
-(35014, 4410, 11), -- Average P. Atk.
-(35014, 4411, 11), -- Average M. Atk.
-(35014, 4412, 11), -- Average P. Def.
-(35014, 4413, 11), -- Average M. Def.
-(35014, 4414, 3), -- Light Armor Type
-(35014, 4415, 5), -- Blunt Weapons
-(35014, 4416, 23), -- Mercenaries
+(35014, 4408, 1), -- HP Modifiers
+(35014, 4409, 1), -- MP Modifiers
+(35014, 4410, 11), -- P. Atk. Modifiers
+(35014, 4411, 11), -- M. Atk. Modifiers
+(35014, 4412, 11), -- P. Def. Modifiers
+(35014, 4413, 11), -- M. Def. Modifiers
+(35014, 4414, 3), -- Armor Type
+(35014, 4415, 5), -- Weapon Type
+(35014, 4416, 23), -- Races
 -- Mercenary
 (35015, 4045, 1), -- Resist Full Magic Attack
-(35015, 4408, 1), -- HP Increase (1x)
-(35015, 4409, 1), -- MP Increase (1x)
-(35015, 4410, 11), -- Average P. Atk.
-(35015, 4411, 11), -- Average M. Atk.
-(35015, 4412, 11), -- Average P. Def.
-(35015, 4413, 11), -- Average M. Def.
-(35015, 4414, 2), -- Standard Type
-(35015, 4415, 3), -- One-handed Sword
-(35015, 4416, 23), -- Mercenaries
+(35015, 4408, 1), -- HP Modifiers
+(35015, 4409, 1), -- MP Modifiers
+(35015, 4410, 11), -- P. Atk. Modifiers
+(35015, 4411, 11), -- M. Atk. Modifiers
+(35015, 4412, 11), -- P. Def. Modifiers
+(35015, 4413, 11), -- M. Def. Modifiers
+(35015, 4414, 2), -- Armor Type
+(35015, 4415, 3), -- Weapon Type
+(35015, 4416, 23), -- Races
 -- Mercenary
 (35016, 4045, 1), -- Resist Full Magic Attack
-(35016, 4408, 1), -- HP Increase (1x)
-(35016, 4409, 1), -- MP Increase (1x)
-(35016, 4410, 11), -- Average P. Atk.
-(35016, 4411, 11), -- Average M. Atk.
-(35016, 4412, 11), -- Average P. Def.
-(35016, 4413, 11), -- Average M. Def.
-(35016, 4414, 2), -- Standard Type
-(35016, 4415, 11), -- Spears
-(35016, 4416, 23), -- Mercenaries
+(35016, 4408, 1), -- HP Modifiers
+(35016, 4409, 1), -- MP Modifiers
+(35016, 4410, 11), -- P. Atk. Modifiers
+(35016, 4411, 11), -- M. Atk. Modifiers
+(35016, 4412, 11), -- P. Def. Modifiers
+(35016, 4413, 11), -- M. Def. Modifiers
+(35016, 4414, 2), -- Armor Type
+(35016, 4415, 11), -- Weapon Type
+(35016, 4416, 23), -- Races
 -- Mercenary
 (35017, 4045, 1), -- Resist Full Magic Attack
-(35017, 4408, 1), -- HP Increase (1x)
-(35017, 4409, 1), -- MP Increase (1x)
-(35017, 4410, 11), -- Average P. Atk.
-(35017, 4411, 11), -- Average M. Atk.
-(35017, 4412, 11), -- Average P. Def.
-(35017, 4413, 11), -- Average M. Def.
-(35017, 4414, 3), -- Light Armor Type
-(35017, 4415, 9), -- Bows
-(35017, 4416, 23), -- Mercenaries
+(35017, 4408, 1), -- HP Modifiers
+(35017, 4409, 1), -- MP Modifiers
+(35017, 4410, 11), -- P. Atk. Modifiers
+(35017, 4411, 11), -- M. Atk. Modifiers
+(35017, 4412, 11), -- P. Def. Modifiers
+(35017, 4413, 11), -- M. Def. Modifiers
+(35017, 4414, 3), -- Armor Type
+(35017, 4415, 9), -- Weapon Type
+(35017, 4416, 23), -- Races
 -- Mercenary
 (35018, 4027, 1), -- Gludio Heal
 (35018, 4045, 1), -- Resist Full Magic Attack
-(35018, 4408, 1), -- HP Increase (1x)
-(35018, 4409, 1), -- MP Increase (1x)
-(35018, 4410, 11), -- Average P. Atk.
-(35018, 4411, 11), -- Average M. Atk.
-(35018, 4412, 11), -- Average P. Def.
-(35018, 4413, 11), -- Average M. Def.
-(35018, 4414, 3), -- Light Armor Type
-(35018, 4415, 5), -- Blunt Weapons
-(35018, 4416, 23), -- Mercenaries
+(35018, 4408, 1), -- HP Modifiers
+(35018, 4409, 1), -- MP Modifiers
+(35018, 4410, 11), -- P. Atk. Modifiers
+(35018, 4411, 11), -- M. Atk. Modifiers
+(35018, 4412, 11), -- P. Def. Modifiers
+(35018, 4413, 11), -- M. Def. Modifiers
+(35018, 4414, 3), -- Armor Type
+(35018, 4415, 5), -- Weapon Type
+(35018, 4416, 23), -- Races
 -- Mercenary
 (35019, 4026, 1), -- Gludio Flame
 (35019, 4045, 1), -- Resist Full Magic Attack
-(35019, 4408, 1), -- HP Increase (1x)
-(35019, 4409, 1), -- MP Increase (1x)
-(35019, 4410, 11), -- Average P. Atk.
-(35019, 4411, 11), -- Average M. Atk.
-(35019, 4412, 11), -- Average P. Def.
-(35019, 4413, 11), -- Average M. Def.
-(35019, 4414, 3), -- Light Armor Type
-(35019, 4415, 5), -- Blunt Weapons
-(35019, 4416, 23), -- Mercenaries
+(35019, 4408, 1), -- HP Modifiers
+(35019, 4409, 1), -- MP Modifiers
+(35019, 4410, 11), -- P. Atk. Modifiers
+(35019, 4411, 11), -- M. Atk. Modifiers
+(35019, 4412, 11), -- P. Def. Modifiers
+(35019, 4413, 11), -- M. Def. Modifiers
+(35019, 4414, 3), -- Armor Type
+(35019, 4415, 5), -- Weapon Type
+(35019, 4416, 23), -- Races
 -- Mercenary of Dawn
 (35020, 4045, 1), -- Resist Full Magic Attack
-(35020, 4408, 1), -- HP Increase (1x)
-(35020, 4409, 1), -- MP Increase (1x)
-(35020, 4410, 11), -- Average P. Atk.
-(35020, 4411, 11), -- Average M. Atk.
-(35020, 4412, 11), -- Average P. Def.
-(35020, 4413, 11), -- Average M. Def.
-(35020, 4414, 2), -- Standard Type
-(35020, 4415, 3), -- One-handed Sword
-(35020, 4416, 23), -- Mercenaries
+(35020, 4408, 1), -- HP Modifiers
+(35020, 4409, 1), -- MP Modifiers
+(35020, 4410, 11), -- P. Atk. Modifiers
+(35020, 4411, 11), -- M. Atk. Modifiers
+(35020, 4412, 11), -- P. Def. Modifiers
+(35020, 4413, 11), -- M. Def. Modifiers
+(35020, 4414, 2), -- Armor Type
+(35020, 4415, 3), -- Weapon Type
+(35020, 4416, 23), -- Races
 -- Mercenary of Dawn
 (35021, 4045, 1), -- Resist Full Magic Attack
-(35021, 4408, 1), -- HP Increase (1x)
-(35021, 4409, 1), -- MP Increase (1x)
-(35021, 4410, 11), -- Average P. Atk.
-(35021, 4411, 11), -- Average M. Atk.
-(35021, 4412, 11), -- Average P. Def.
-(35021, 4413, 11), -- Average M. Def.
-(35021, 4414, 2), -- Standard Type
-(35021, 4415, 11), -- Spears
-(35021, 4416, 23), -- Mercenaries
+(35021, 4408, 1), -- HP Modifiers
+(35021, 4409, 1), -- MP Modifiers
+(35021, 4410, 11), -- P. Atk. Modifiers
+(35021, 4411, 11), -- M. Atk. Modifiers
+(35021, 4412, 11), -- P. Def. Modifiers
+(35021, 4413, 11), -- M. Def. Modifiers
+(35021, 4414, 2), -- Armor Type
+(35021, 4415, 11), -- Weapon Type
+(35021, 4416, 23), -- Races
 -- Mercenary of Dawn
 (35022, 4045, 1), -- Resist Full Magic Attack
-(35022, 4408, 1), -- HP Increase (1x)
-(35022, 4409, 1), -- MP Increase (1x)
-(35022, 4410, 11), -- Average P. Atk.
-(35022, 4411, 11), -- Average M. Atk.
-(35022, 4412, 11), -- Average P. Def.
-(35022, 4413, 11), -- Average M. Def.
-(35022, 4414, 3), -- Light Armor Type
-(35022, 4415, 9), -- Bows
-(35022, 4416, 23), -- Mercenaries
+(35022, 4408, 1), -- HP Modifiers
+(35022, 4409, 1), -- MP Modifiers
+(35022, 4410, 11), -- P. Atk. Modifiers
+(35022, 4411, 11), -- M. Atk. Modifiers
+(35022, 4412, 11), -- P. Def. Modifiers
+(35022, 4413, 11), -- M. Def. Modifiers
+(35022, 4414, 3), -- Armor Type
+(35022, 4415, 9), -- Weapon Type
+(35022, 4416, 23), -- Races
 -- Mercenary of Dawn
 (35023, 4027, 1), -- Gludio Heal
 (35023, 4045, 1), -- Resist Full Magic Attack
-(35023, 4408, 1), -- HP Increase (1x)
-(35023, 4409, 1), -- MP Increase (1x)
-(35023, 4410, 11), -- Average P. Atk.
-(35023, 4411, 11), -- Average M. Atk.
-(35023, 4412, 11), -- Average P. Def.
-(35023, 4413, 11), -- Average M. Def.
-(35023, 4414, 3), -- Light Armor Type
-(35023, 4415, 5), -- Blunt Weapons
-(35023, 4416, 23), -- Mercenaries
+(35023, 4408, 1), -- HP Modifiers
+(35023, 4409, 1), -- MP Modifiers
+(35023, 4410, 11), -- P. Atk. Modifiers
+(35023, 4411, 11), -- M. Atk. Modifiers
+(35023, 4412, 11), -- P. Def. Modifiers
+(35023, 4413, 11), -- M. Def. Modifiers
+(35023, 4414, 3), -- Armor Type
+(35023, 4415, 5), -- Weapon Type
+(35023, 4416, 23), -- Races
 -- Mercenary of Dawn
 (35024, 4026, 1), -- Gludio Flame
 (35024, 4045, 1), -- Resist Full Magic Attack
-(35024, 4408, 1), -- HP Increase (1x)
-(35024, 4409, 1), -- MP Increase (1x)
-(35024, 4410, 11), -- Average P. Atk.
-(35024, 4411, 11), -- Average M. Atk.
-(35024, 4412, 11), -- Average P. Def.
-(35024, 4413, 11), -- Average M. Def.
-(35024, 4414, 3), -- Light Armor Type
-(35024, 4415, 5), -- Blunt Weapons
-(35024, 4416, 23), -- Mercenaries
+(35024, 4408, 1), -- HP Modifiers
+(35024, 4409, 1), -- MP Modifiers
+(35024, 4410, 11), -- P. Atk. Modifiers
+(35024, 4411, 11), -- M. Atk. Modifiers
+(35024, 4412, 11), -- P. Def. Modifiers
+(35024, 4413, 11), -- M. Def. Modifiers
+(35024, 4414, 3), -- Armor Type
+(35024, 4415, 5), -- Weapon Type
+(35024, 4416, 23), -- Races
 -- Mercenary of Dawn
 (35025, 4045, 1), -- Resist Full Magic Attack
-(35025, 4408, 1), -- HP Increase (1x)
-(35025, 4409, 1), -- MP Increase (1x)
-(35025, 4410, 11), -- Average P. Atk.
-(35025, 4411, 11), -- Average M. Atk.
-(35025, 4412, 11), -- Average P. Def.
-(35025, 4413, 11), -- Average M. Def.
-(35025, 4414, 2), -- Standard Type
-(35025, 4415, 3), -- One-handed Sword
-(35025, 4416, 23), -- Mercenaries
+(35025, 4408, 1), -- HP Modifiers
+(35025, 4409, 1), -- MP Modifiers
+(35025, 4410, 11), -- P. Atk. Modifiers
+(35025, 4411, 11), -- M. Atk. Modifiers
+(35025, 4412, 11), -- P. Def. Modifiers
+(35025, 4413, 11), -- M. Def. Modifiers
+(35025, 4414, 2), -- Armor Type
+(35025, 4415, 3), -- Weapon Type
+(35025, 4416, 23), -- Races
 -- Mercenary of Dawn
 (35026, 4045, 1), -- Resist Full Magic Attack
-(35026, 4408, 1), -- HP Increase (1x)
-(35026, 4409, 1), -- MP Increase (1x)
-(35026, 4410, 11), -- Average P. Atk.
-(35026, 4411, 11), -- Average M. Atk.
-(35026, 4412, 11), -- Average P. Def.
-(35026, 4413, 11), -- Average M. Def.
-(35026, 4414, 2), -- Standard Type
-(35026, 4415, 11), -- Spears
-(35026, 4416, 23), -- Mercenaries
+(35026, 4408, 1), -- HP Modifiers
+(35026, 4409, 1), -- MP Modifiers
+(35026, 4410, 11), -- P. Atk. Modifiers
+(35026, 4411, 11), -- M. Atk. Modifiers
+(35026, 4412, 11); -- P. Def. Modifiers
+
+INSERT INTO `npcskills` VALUES
+(35026, 4413, 11), -- M. Def. Modifiers
+(35026, 4414, 2), -- Armor Type
+(35026, 4415, 11), -- Weapon Type
+(35026, 4416, 23), -- Races
 -- Mercenary of Dawn
 (35027, 4045, 1), -- Resist Full Magic Attack
-(35027, 4408, 1), -- HP Increase (1x)
-(35027, 4409, 1), -- MP Increase (1x)
-(35027, 4410, 11), -- Average P. Atk.
-(35027, 4411, 11), -- Average M. Atk.
-(35027, 4412, 11), -- Average P. Def.
-(35027, 4413, 11), -- Average M. Def.
-(35027, 4414, 3), -- Light Armor Type
-(35027, 4415, 9), -- Bows
-(35027, 4416, 23), -- Mercenaries
+(35027, 4408, 1), -- HP Modifiers
+(35027, 4409, 1), -- MP Modifiers
+(35027, 4410, 11), -- P. Atk. Modifiers
+(35027, 4411, 11), -- M. Atk. Modifiers
+(35027, 4412, 11), -- P. Def. Modifiers
+(35027, 4413, 11), -- M. Def. Modifiers
+(35027, 4414, 3), -- Armor Type
+(35027, 4415, 9), -- Weapon Type
+(35027, 4416, 23), -- Races
 -- Mercenary of Dawn
 (35028, 4027, 1), -- Gludio Heal
 (35028, 4045, 1), -- Resist Full Magic Attack
-(35028, 4408, 1), -- HP Increase (1x)
-(35028, 4409, 1), -- MP Increase (1x)
-(35028, 4410, 11), -- Average P. Atk.
-(35028, 4411, 11), -- Average M. Atk.
-(35028, 4412, 11), -- Average P. Def.
-(35028, 4413, 11), -- Average M. Def.
-(35028, 4414, 3), -- Light Armor Type
-(35028, 4415, 5), -- Blunt Weapons
-(35028, 4416, 23), -- Mercenaries
+(35028, 4408, 1), -- HP Modifiers
+(35028, 4409, 1), -- MP Modifiers
+(35028, 4410, 11), -- P. Atk. Modifiers
+(35028, 4411, 11), -- M. Atk. Modifiers
+(35028, 4412, 11), -- P. Def. Modifiers
+(35028, 4413, 11), -- M. Def. Modifiers
+(35028, 4414, 3), -- Armor Type
+(35028, 4415, 5), -- Weapon Type
+(35028, 4416, 23), -- Races
 -- Mercenary of Dawn
 (35029, 4026, 1), -- Gludio Flame
 (35029, 4045, 1), -- Resist Full Magic Attack
-(35029, 4408, 1), -- HP Increase (1x)
-(35029, 4409, 1), -- MP Increase (1x)
-(35029, 4410, 11), -- Average P. Atk.
-(35029, 4411, 11), -- Average M. Atk.
-(35029, 4412, 11), -- Average P. Def.
-(35029, 4413, 11), -- Average M. Def.
-(35029, 4414, 3), -- Light Armor Type
-(35029, 4415, 5), -- Blunt Weapons
-(35029, 4416, 23), -- Mercenaries
+(35029, 4408, 1), -- HP Modifiers
+(35029, 4409, 1), -- MP Modifiers
+(35029, 4410, 11), -- P. Atk. Modifiers
+(35029, 4411, 11), -- M. Atk. Modifiers
+(35029, 4412, 11), -- P. Def. Modifiers
+(35029, 4413, 11), -- M. Def. Modifiers
+(35029, 4414, 3), -- Armor Type
+(35029, 4415, 5), -- Weapon Type
+(35029, 4416, 23), -- Races
 -- Elite Mercenary Guild Member
 (35030, 4045, 1), -- Resist Full Magic Attack
-(35030, 4408, 1), -- HP Increase (1x)
-(35030, 4409, 1), -- MP Increase (1x)
-(35030, 4410, 11), -- Average P. Atk.
-(35030, 4411, 11), -- Average M. Atk.
-(35030, 4412, 11), -- Average P. Def.
-(35030, 4413, 11), -- Average M. Def.
-(35030, 4414, 2), -- Standard Type
-(35030, 4415, 3), -- One-handed Sword
-(35030, 4416, 23), -- Mercenaries
+(35030, 4408, 1), -- HP Modifiers
+(35030, 4409, 1), -- MP Modifiers
+(35030, 4410, 11), -- P. Atk. Modifiers
+(35030, 4411, 11), -- M. Atk. Modifiers
+(35030, 4412, 11), -- P. Def. Modifiers
+(35030, 4413, 11), -- M. Def. Modifiers
+(35030, 4414, 2), -- Armor Type
+(35030, 4415, 3), -- Weapon Type
+(35030, 4416, 23), -- Races
 -- Elite Mercenary Guild Member
 (35031, 4045, 1), -- Resist Full Magic Attack
-(35031, 4408, 1), -- HP Increase (1x)
-(35031, 4409, 1), -- MP Increase (1x)
-(35031, 4410, 11), -- Average P. Atk.
-(35031, 4411, 11), -- Average M. Atk.
-(35031, 4412, 11), -- Average P. Def.
-(35031, 4413, 11), -- Average M. Def.
-(35031, 4414, 2), -- Standard Type
-(35031, 4415, 11), -- Spears
-(35031, 4416, 23), -- Mercenaries
+(35031, 4408, 1), -- HP Modifiers
+(35031, 4409, 1), -- MP Modifiers
+(35031, 4410, 11), -- P. Atk. Modifiers
+(35031, 4411, 11), -- M. Atk. Modifiers
+(35031, 4412, 11), -- P. Def. Modifiers
+(35031, 4413, 11), -- M. Def. Modifiers
+(35031, 4414, 2), -- Armor Type
+(35031, 4415, 11), -- Weapon Type
+(35031, 4416, 23), -- Races
 -- Elite Mercenary Guild Member
 (35032, 4045, 1), -- Resist Full Magic Attack
-(35032, 4408, 1), -- HP Increase (1x)
-(35032, 4409, 1), -- MP Increase (1x)
-(35032, 4410, 11), -- Average P. Atk.
-(35032, 4411, 11), -- Average M. Atk.
-(35032, 4412, 11), -- Average P. Def.
-(35032, 4413, 11), -- Average M. Def.
-(35032, 4414, 3), -- Light Armor Type
-(35032, 4415, 9), -- Bows
-(35032, 4416, 23), -- Mercenaries
+(35032, 4408, 1), -- HP Modifiers
+(35032, 4409, 1), -- MP Modifiers
+(35032, 4410, 11), -- P. Atk. Modifiers
+(35032, 4411, 11), -- M. Atk. Modifiers
+(35032, 4412, 11), -- P. Def. Modifiers
+(35032, 4413, 11), -- M. Def. Modifiers
+(35032, 4414, 3), -- Armor Type
+(35032, 4415, 9), -- Weapon Type
+(35032, 4416, 23), -- Races
 -- Elite Mercenary Guild Member
 (35033, 4027, 1), -- Gludio Heal
 (35033, 4045, 1), -- Resist Full Magic Attack
-(35033, 4408, 1), -- HP Increase (1x)
-(35033, 4409, 1), -- MP Increase (1x)
-(35033, 4410, 11), -- Average P. Atk.
-(35033, 4411, 11), -- Average M. Atk.
-(35033, 4412, 11), -- Average P. Def.
-(35033, 4413, 11), -- Average M. Def.
-(35033, 4414, 3), -- Light Armor Type
-(35033, 4415, 5), -- Blunt Weapons
-(35033, 4416, 23), -- Mercenaries
+(35033, 4408, 1), -- HP Modifiers
+(35033, 4409, 1), -- MP Modifiers
+(35033, 4410, 11), -- P. Atk. Modifiers
+(35033, 4411, 11), -- M. Atk. Modifiers
+(35033, 4412, 11), -- P. Def. Modifiers
+(35033, 4413, 11), -- M. Def. Modifiers
+(35033, 4414, 3), -- Armor Type
+(35033, 4415, 5), -- Weapon Type
+(35033, 4416, 23), -- Races
 -- Elite Mercenary Guild Member
 (35034, 4026, 1), -- Gludio Flame
 (35034, 4045, 1), -- Resist Full Magic Attack
-(35034, 4408, 1), -- HP Increase (1x)
-(35034, 4409, 1), -- MP Increase (1x)
-(35034, 4410, 11), -- Average P. Atk.
-(35034, 4411, 11), -- Average M. Atk.
-(35034, 4412, 11), -- Average P. Def.
-(35034, 4413, 11), -- Average M. Def.
-(35034, 4414, 3), -- Light Armor Type
-(35034, 4415, 5), -- Blunt Weapons
-(35034, 4416, 22), -- Defending Army
+(35034, 4408, 1), -- HP Modifiers
+(35034, 4409, 1), -- MP Modifiers
+(35034, 4410, 11), -- P. Atk. Modifiers
+(35034, 4411, 11), -- M. Atk. Modifiers
+(35034, 4412, 11), -- P. Def. Modifiers
+(35034, 4413, 11), -- M. Def. Modifiers
+(35034, 4414, 3), -- Armor Type
+(35034, 4415, 5), -- Weapon Type
+(35034, 4416, 22), -- Races
 -- Elite Mercenary Guild Member
 (35035, 4045, 1), -- Resist Full Magic Attack
-(35035, 4408, 1), -- HP Increase (1x)
-(35035, 4409, 1), -- MP Increase (1x)
-(35035, 4410, 11), -- Average P. Atk.
-(35035, 4411, 11), -- Average M. Atk.
-(35035, 4412, 11), -- Average P. Def.
-(35035, 4413, 11), -- Average M. Def.
-(35035, 4414, 2), -- Standard Type
-(35035, 4415, 3), -- One-handed Sword
-(35035, 4416, 23), -- Mercenaries
+(35035, 4408, 1), -- HP Modifiers
+(35035, 4409, 1), -- MP Modifiers
+(35035, 4410, 11), -- P. Atk. Modifiers
+(35035, 4411, 11), -- M. Atk. Modifiers
+(35035, 4412, 11), -- P. Def. Modifiers
+(35035, 4413, 11), -- M. Def. Modifiers
+(35035, 4414, 2), -- Armor Type
+(35035, 4415, 3), -- Weapon Type
+(35035, 4416, 23), -- Races
 -- Elite Mercenary Guild Member
 (35036, 4045, 1), -- Resist Full Magic Attack
-(35036, 4408, 1), -- HP Increase (1x)
-(35036, 4409, 1), -- MP Increase (1x)
-(35036, 4410, 11), -- Average P. Atk.
-(35036, 4411, 11), -- Average M. Atk.
-(35036, 4412, 11), -- Average P. Def.
-(35036, 4413, 11), -- Average M. Def.
-(35036, 4414, 2), -- Standard Type
-(35036, 4415, 11), -- Spears
-(35036, 4416, 23), -- Mercenaries
+(35036, 4408, 1), -- HP Modifiers
+(35036, 4409, 1), -- MP Modifiers
+(35036, 4410, 11), -- P. Atk. Modifiers
+(35036, 4411, 11), -- M. Atk. Modifiers
+(35036, 4412, 11), -- P. Def. Modifiers
+(35036, 4413, 11), -- M. Def. Modifiers
+(35036, 4414, 2), -- Armor Type
+(35036, 4415, 11), -- Weapon Type
+(35036, 4416, 23), -- Races
 -- Elite Mercenary Guild Member
 (35037, 4045, 1), -- Resist Full Magic Attack
-(35037, 4408, 1), -- HP Increase (1x)
-(35037, 4409, 1), -- MP Increase (1x)
-(35037, 4410, 11), -- Average P. Atk.
-(35037, 4411, 11), -- Average M. Atk.
-(35037, 4412, 11), -- Average P. Def.
-(35037, 4413, 11), -- Average M. Def.
-(35037, 4414, 3), -- Light Armor Type
-(35037, 4415, 9), -- Bows
-(35037, 4416, 23), -- Mercenaries
+(35037, 4408, 1), -- HP Modifiers
+(35037, 4409, 1), -- MP Modifiers
+(35037, 4410, 11), -- P. Atk. Modifiers
+(35037, 4411, 11), -- M. Atk. Modifiers
+(35037, 4412, 11), -- P. Def. Modifiers
+(35037, 4413, 11), -- M. Def. Modifiers
+(35037, 4414, 3), -- Armor Type
+(35037, 4415, 9), -- Weapon Type
+(35037, 4416, 23), -- Races
 -- Elite Mercenary Guild Member
 (35038, 4027, 1), -- Gludio Heal
 (35038, 4045, 1), -- Resist Full Magic Attack
-(35038, 4408, 1), -- HP Increase (1x)
-(35038, 4409, 1), -- MP Increase (1x)
-(35038, 4410, 11), -- Average P. Atk.
-(35038, 4411, 11), -- Average M. Atk.
-(35038, 4412, 11), -- Average P. Def.
-(35038, 4413, 11), -- Average M. Def.
-(35038, 4414, 3), -- Light Armor Type
-(35038, 4415, 5), -- Blunt Weapons
-(35038, 4416, 23), -- Mercenaries
+(35038, 4408, 1), -- HP Modifiers
+(35038, 4409, 1), -- MP Modifiers
+(35038, 4410, 11), -- P. Atk. Modifiers
+(35038, 4411, 11), -- M. Atk. Modifiers
+(35038, 4412, 11), -- P. Def. Modifiers
+(35038, 4413, 11), -- M. Def. Modifiers
+(35038, 4414, 3), -- Armor Type
+(35038, 4415, 5), -- Weapon Type
+(35038, 4416, 23), -- Races
 -- Elite Mercenary Guild Member
 (35039, 4026, 1), -- Gludio Flame
 (35039, 4045, 1), -- Resist Full Magic Attack
-(35039, 4408, 1), -- HP Increase (1x)
-(35039, 4409, 1), -- MP Increase (1x)
-(35039, 4410, 11), -- Average P. Atk.
-(35039, 4411, 11), -- Average M. Atk.
-(35039, 4412, 11), -- Average P. Def.
-(35039, 4413, 11), -- Average M. Def.
-(35039, 4414, 3), -- Light Armor Type
-(35039, 4415, 5), -- Blunt Weapons
-(35039, 4416, 22), -- Defending Army
+(35039, 4408, 1), -- HP Modifiers
+(35039, 4409, 1), -- MP Modifiers
+(35039, 4410, 11), -- P. Atk. Modifiers
+(35039, 4411, 11), -- M. Atk. Modifiers
+(35039, 4412, 11), -- P. Def. Modifiers
+(35039, 4413, 11), -- M. Def. Modifiers
+(35039, 4414, 3), -- Armor Type
+(35039, 4415, 5), -- Weapon Type
+(35039, 4416, 22), -- Races
 -- Greater Recruit
 (35040, 4045, 1), -- Resist Full Magic Attack
-(35040, 4408, 1), -- HP Increase (1x)
-(35040, 4409, 1), -- MP Increase (1x)
-(35040, 4410, 11), -- Average P. Atk.
-(35040, 4411, 11), -- Average M. Atk.
-(35040, 4412, 11), -- Average P. Def.
-(35040, 4413, 11), -- Average M. Def.
-(35040, 4414, 2), -- Standard Type
-(35040, 4415, 3), -- One-handed Sword
-(35040, 4416, 23), -- Mercenaries
+(35040, 4408, 1), -- HP Modifiers
+(35040, 4409, 1), -- MP Modifiers
+(35040, 4410, 11), -- P. Atk. Modifiers
+(35040, 4411, 11), -- M. Atk. Modifiers
+(35040, 4412, 11), -- P. Def. Modifiers
+(35040, 4413, 11), -- M. Def. Modifiers
+(35040, 4414, 2), -- Armor Type
+(35040, 4415, 3), -- Weapon Type
+(35040, 4416, 23), -- Races
 -- Greater Recruit
 (35041, 4045, 1), -- Resist Full Magic Attack
-(35041, 4408, 1), -- HP Increase (1x)
-(35041, 4409, 1), -- MP Increase (1x)
-(35041, 4410, 11), -- Average P. Atk.
-(35041, 4411, 11), -- Average M. Atk.
-(35041, 4412, 11), -- Average P. Def.
-(35041, 4413, 11), -- Average M. Def.
-(35041, 4414, 2), -- Standard Type
-(35041, 4415, 11), -- Spears
-(35041, 4416, 23), -- Mercenaries
+(35041, 4408, 1), -- HP Modifiers
+(35041, 4409, 1), -- MP Modifiers
+(35041, 4410, 11), -- P. Atk. Modifiers
+(35041, 4411, 11), -- M. Atk. Modifiers
+(35041, 4412, 11), -- P. Def. Modifiers
+(35041, 4413, 11), -- M. Def. Modifiers
+(35041, 4414, 2), -- Armor Type
+(35041, 4415, 11), -- Weapon Type
+(35041, 4416, 23), -- Races
 -- Greater Recruit
 (35042, 4045, 1), -- Resist Full Magic Attack
-(35042, 4408, 1), -- HP Increase (1x)
-(35042, 4409, 1), -- MP Increase (1x)
-(35042, 4410, 11), -- Average P. Atk.
-(35042, 4411, 11), -- Average M. Atk.
-(35042, 4412, 11), -- Average P. Def.
-(35042, 4413, 11), -- Average M. Def.
-(35042, 4414, 3), -- Light Armor Type
-(35042, 4415, 9), -- Bows
-(35042, 4416, 23), -- Mercenaries
+(35042, 4408, 1), -- HP Modifiers
+(35042, 4409, 1), -- MP Modifiers
+(35042, 4410, 11), -- P. Atk. Modifiers
+(35042, 4411, 11), -- M. Atk. Modifiers
+(35042, 4412, 11), -- P. Def. Modifiers
+(35042, 4413, 11), -- M. Def. Modifiers
+(35042, 4414, 3), -- Armor Type
+(35042, 4415, 9), -- Weapon Type
+(35042, 4416, 23), -- Races
 -- Greater Recruit
 (35043, 4027, 1), -- Gludio Heal
 (35043, 4045, 1), -- Resist Full Magic Attack
-(35043, 4408, 1), -- HP Increase (1x)
-(35043, 4409, 1), -- MP Increase (1x)
-(35043, 4410, 11), -- Average P. Atk.
-(35043, 4411, 11), -- Average M. Atk.
-(35043, 4412, 11), -- Average P. Def.
-(35043, 4413, 11), -- Average M. Def.
-(35043, 4414, 3), -- Light Armor Type
-(35043, 4415, 5), -- Blunt Weapons
-(35043, 4416, 23), -- Mercenaries
+(35043, 4408, 1), -- HP Modifiers
+(35043, 4409, 1), -- MP Modifiers
+(35043, 4410, 11), -- P. Atk. Modifiers
+(35043, 4411, 11), -- M. Atk. Modifiers
+(35043, 4412, 11), -- P. Def. Modifiers
+(35043, 4413, 11), -- M. Def. Modifiers
+(35043, 4414, 3), -- Armor Type
+(35043, 4415, 5), -- Weapon Type
+(35043, 4416, 23), -- Races
 -- Greater Recruit
 (35044, 4026, 1), -- Gludio Flame
 (35044, 4045, 1), -- Resist Full Magic Attack
-(35044, 4408, 1), -- HP Increase (1x)
-(35044, 4409, 1), -- MP Increase (1x)
-(35044, 4410, 11), -- Average P. Atk.
-(35044, 4411, 11), -- Average M. Atk.
-(35044, 4412, 11), -- Average P. Def.
-(35044, 4413, 11), -- Average M. Def.
-(35044, 4414, 3), -- Light Armor Type
-(35044, 4415, 5), -- Blunt Weapons
-(35044, 4416, 23), -- Mercenaries
+(35044, 4408, 1), -- HP Modifiers
+(35044, 4409, 1), -- MP Modifiers
+(35044, 4410, 11), -- P. Atk. Modifiers
+(35044, 4411, 11), -- M. Atk. Modifiers
+(35044, 4412, 11), -- P. Def. Modifiers
+(35044, 4413, 11), -- M. Def. Modifiers
+(35044, 4414, 3), -- Armor Type
+(35044, 4415, 5), -- Weapon Type
+(35044, 4416, 23), -- Races
 -- Greater Recruit
 (35045, 4045, 1), -- Resist Full Magic Attack
-(35045, 4408, 1), -- HP Increase (1x)
-(35045, 4409, 1), -- MP Increase (1x)
-(35045, 4410, 11), -- Average P. Atk.
-(35045, 4411, 11), -- Average M. Atk.
-(35045, 4412, 11), -- Average P. Def.
-(35045, 4413, 11), -- Average M. Def.
-(35045, 4414, 2), -- Standard Type
-(35045, 4415, 3), -- One-handed Sword
-(35045, 4416, 23), -- Mercenaries
+(35045, 4408, 1), -- HP Modifiers
+(35045, 4409, 1), -- MP Modifiers
+(35045, 4410, 11), -- P. Atk. Modifiers
+(35045, 4411, 11), -- M. Atk. Modifiers
+(35045, 4412, 11), -- P. Def. Modifiers
+(35045, 4413, 11), -- M. Def. Modifiers
+(35045, 4414, 2), -- Armor Type
+(35045, 4415, 3), -- Weapon Type
+(35045, 4416, 23), -- Races
 -- Greater Recruit
 (35046, 4045, 1), -- Resist Full Magic Attack
-(35046, 4408, 1), -- HP Increase (1x)
-(35046, 4409, 1), -- MP Increase (1x)
-(35046, 4410, 11), -- Average P. Atk.
-(35046, 4411, 11), -- Average M. Atk.
-(35046, 4412, 11), -- Average P. Def.
-(35046, 4413, 11), -- Average M. Def.
-(35046, 4414, 2), -- Standard Type
-(35046, 4415, 11), -- Spears
-(35046, 4416, 23), -- Mercenaries
+(35046, 4408, 1), -- HP Modifiers
+(35046, 4409, 1), -- MP Modifiers
+(35046, 4410, 11), -- P. Atk. Modifiers
+(35046, 4411, 11), -- M. Atk. Modifiers
+(35046, 4412, 11), -- P. Def. Modifiers
+(35046, 4413, 11), -- M. Def. Modifiers
+(35046, 4414, 2), -- Armor Type
+(35046, 4415, 11), -- Weapon Type
+(35046, 4416, 23), -- Races
 -- Greater Recruit
 (35047, 4045, 1), -- Resist Full Magic Attack
-(35047, 4408, 1), -- HP Increase (1x)
-(35047, 4409, 1), -- MP Increase (1x)
-(35047, 4410, 11), -- Average P. Atk.
-(35047, 4411, 11), -- Average M. Atk.
-(35047, 4412, 11), -- Average P. Def.
-(35047, 4413, 11), -- Average M. Def.
-(35047, 4414, 3), -- Light Armor Type
-(35047, 4415, 9), -- Bows
-(35047, 4416, 23), -- Mercenaries
+(35047, 4408, 1), -- HP Modifiers
+(35047, 4409, 1), -- MP Modifiers
+(35047, 4410, 11), -- P. Atk. Modifiers
+(35047, 4411, 11), -- M. Atk. Modifiers
+(35047, 4412, 11), -- P. Def. Modifiers
+(35047, 4413, 11), -- M. Def. Modifiers
+(35047, 4414, 3), -- Armor Type
+(35047, 4415, 9), -- Weapon Type
+(35047, 4416, 23), -- Races
 -- Greater Recruit
 (35048, 4027, 1), -- Gludio Heal
 (35048, 4045, 1), -- Resist Full Magic Attack
-(35048, 4408, 1), -- HP Increase (1x)
-(35048, 4409, 1), -- MP Increase (1x)
-(35048, 4410, 11), -- Average P. Atk.
-(35048, 4411, 11), -- Average M. Atk.
-(35048, 4412, 11), -- Average P. Def.
-(35048, 4413, 11), -- Average M. Def.
-(35048, 4414, 3), -- Light Armor Type
-(35048, 4415, 5), -- Blunt Weapons
-(35048, 4416, 23), -- Mercenaries
+(35048, 4408, 1), -- HP Modifiers
+(35048, 4409, 1), -- MP Modifiers
+(35048, 4410, 11), -- P. Atk. Modifiers
+(35048, 4411, 11), -- M. Atk. Modifiers
+(35048, 4412, 11), -- P. Def. Modifiers
+(35048, 4413, 11), -- M. Def. Modifiers
+(35048, 4414, 3), -- Armor Type
+(35048, 4415, 5), -- Weapon Type
+(35048, 4416, 23), -- Races
 -- Greater Recruit
 (35049, 4026, 1), -- Gludio Flame
 (35049, 4045, 1), -- Resist Full Magic Attack
-(35049, 4408, 1), -- HP Increase (1x)
-(35049, 4409, 1), -- MP Increase (1x)
-(35049, 4410, 11), -- Average P. Atk.
-(35049, 4411, 11), -- Average M. Atk.
-(35049, 4412, 11), -- Average P. Def.
-(35049, 4413, 11), -- Average M. Def.
-(35049, 4414, 3), -- Light Armor Type
-(35049, 4415, 5), -- Blunt Weapons
-(35049, 4416, 23), -- Mercenaries
+(35049, 4408, 1), -- HP Modifiers
+(35049, 4409, 1), -- MP Modifiers
+(35049, 4410, 11), -- P. Atk. Modifiers
+(35049, 4411, 11), -- M. Atk. Modifiers
+(35049, 4412, 11), -- P. Def. Modifiers
+(35049, 4413, 11), -- M. Def. Modifiers
+(35049, 4414, 3), -- Armor Type
+(35049, 4415, 5), -- Weapon Type
+(35049, 4416, 23), -- Races
 -- Recruit
 (35050, 4045, 1), -- Resist Full Magic Attack
-(35050, 4408, 1), -- HP Increase (1x)
-(35050, 4409, 1), -- MP Increase (1x)
-(35050, 4410, 11), -- Average P. Atk.
-(35050, 4411, 11), -- Average M. Atk.
-(35050, 4412, 11), -- Average P. Def.
-(35050, 4413, 11), -- Average M. Def.
-(35050, 4414, 2), -- Standard Type
-(35050, 4415, 3), -- One-handed Sword
-(35050, 4416, 23), -- Mercenaries
+(35050, 4408, 1), -- HP Modifiers
+(35050, 4409, 1), -- MP Modifiers
+(35050, 4410, 11), -- P. Atk. Modifiers
+(35050, 4411, 11), -- M. Atk. Modifiers
+(35050, 4412, 11), -- P. Def. Modifiers
+(35050, 4413, 11), -- M. Def. Modifiers
+(35050, 4414, 2), -- Armor Type
+(35050, 4415, 3), -- Weapon Type
+(35050, 4416, 23), -- Races
 -- Recruit
 (35051, 4045, 1), -- Resist Full Magic Attack
-(35051, 4408, 1), -- HP Increase (1x)
-(35051, 4409, 1), -- MP Increase (1x)
-(35051, 4410, 11), -- Average P. Atk.
-(35051, 4411, 11), -- Average M. Atk.
-(35051, 4412, 11), -- Average P. Def.
-(35051, 4413, 11), -- Average M. Def.
-(35051, 4414, 2), -- Standard Type
-(35051, 4415, 11), -- Spears
-(35051, 4416, 23), -- Mercenaries
+(35051, 4408, 1), -- HP Modifiers
+(35051, 4409, 1), -- MP Modifiers
+(35051, 4410, 11), -- P. Atk. Modifiers
+(35051, 4411, 11), -- M. Atk. Modifiers
+(35051, 4412, 11), -- P. Def. Modifiers
+(35051, 4413, 11), -- M. Def. Modifiers
+(35051, 4414, 2), -- Armor Type
+(35051, 4415, 11), -- Weapon Type
+(35051, 4416, 23), -- Races
 -- Recruit
 (35052, 4045, 1), -- Resist Full Magic Attack
-(35052, 4408, 1), -- HP Increase (1x)
-(35052, 4409, 1), -- MP Increase (1x)
-(35052, 4410, 11), -- Average P. Atk.
-(35052, 4411, 11), -- Average M. Atk.
-(35052, 4412, 11), -- Average P. Def.
-(35052, 4413, 11), -- Average M. Def.
-(35052, 4414, 3), -- Light Armor Type
-(35052, 4415, 9), -- Bows
-(35052, 4416, 23), -- Mercenaries
+(35052, 4408, 1), -- HP Modifiers
+(35052, 4409, 1), -- MP Modifiers
+(35052, 4410, 11), -- P. Atk. Modifiers
+(35052, 4411, 11), -- M. Atk. Modifiers
+(35052, 4412, 11), -- P. Def. Modifiers
+(35052, 4413, 11), -- M. Def. Modifiers
+(35052, 4414, 3), -- Armor Type
+(35052, 4415, 9), -- Weapon Type
+(35052, 4416, 23), -- Races
 -- Recruit
 (35053, 4027, 1), -- Gludio Heal
 (35053, 4045, 1), -- Resist Full Magic Attack
-(35053, 4408, 1), -- HP Increase (1x)
-(35053, 4409, 1), -- MP Increase (1x)
-(35053, 4410, 11), -- Average P. Atk.
-(35053, 4411, 11), -- Average M. Atk.
-(35053, 4412, 11), -- Average P. Def.
-(35053, 4413, 11), -- Average M. Def.
-(35053, 4414, 3), -- Light Armor Type
-(35053, 4415, 5), -- Blunt Weapons
-(35053, 4416, 23), -- Mercenaries
+(35053, 4408, 1), -- HP Modifiers
+(35053, 4409, 1), -- MP Modifiers
+(35053, 4410, 11), -- P. Atk. Modifiers
+(35053, 4411, 11), -- M. Atk. Modifiers
+(35053, 4412, 11), -- P. Def. Modifiers
+(35053, 4413, 11), -- M. Def. Modifiers
+(35053, 4414, 3), -- Armor Type
+(35053, 4415, 5), -- Weapon Type
+(35053, 4416, 23), -- Races
 -- Recruit
 (35054, 4026, 1), -- Gludio Flame
 (35054, 4045, 1), -- Resist Full Magic Attack
-(35054, 4408, 1), -- HP Increase (1x)
-(35054, 4409, 1), -- MP Increase (1x)
-(35054, 4410, 11), -- Average P. Atk.
-(35054, 4411, 11), -- Average M. Atk.
-(35054, 4412, 11), -- Average P. Def.
-(35054, 4413, 11), -- Average M. Def.
-(35054, 4414, 3), -- Light Armor Type
-(35054, 4415, 5), -- Blunt Weapons
-(35054, 4416, 23), -- Mercenaries
+(35054, 4408, 1), -- HP Modifiers
+(35054, 4409, 1), -- MP Modifiers
+(35054, 4410, 11), -- P. Atk. Modifiers
+(35054, 4411, 11), -- M. Atk. Modifiers
+(35054, 4412, 11), -- P. Def. Modifiers
+(35054, 4413, 11), -- M. Def. Modifiers
+(35054, 4414, 3), -- Armor Type
+(35054, 4415, 5), -- Weapon Type
+(35054, 4416, 23), -- Races
 -- Recruit
 (35055, 4045, 1), -- Resist Full Magic Attack
-(35055, 4408, 1), -- HP Increase (1x)
-(35055, 4409, 1), -- MP Increase (1x)
-(35055, 4410, 11), -- Average P. Atk.
-(35055, 4411, 11), -- Average M. Atk.
-(35055, 4412, 11), -- Average P. Def.
-(35055, 4413, 11), -- Average M. Def.
-(35055, 4414, 2), -- Standard Type
-(35055, 4415, 3), -- One-handed Sword
-(35055, 4416, 23), -- Mercenaries
+(35055, 4408, 1), -- HP Modifiers
+(35055, 4409, 1), -- MP Modifiers
+(35055, 4410, 11), -- P. Atk. Modifiers
+(35055, 4411, 11), -- M. Atk. Modifiers
+(35055, 4412, 11), -- P. Def. Modifiers
+(35055, 4413, 11), -- M. Def. Modifiers
+(35055, 4414, 2), -- Armor Type
+(35055, 4415, 3), -- Weapon Type
+(35055, 4416, 23), -- Races
 -- Recruit
 (35056, 4045, 1), -- Resist Full Magic Attack
-(35056, 4408, 1), -- HP Increase (1x)
-(35056, 4409, 1), -- MP Increase (1x)
-(35056, 4410, 11), -- Average P. Atk.
-(35056, 4411, 11), -- Average M. Atk.
-(35056, 4412, 11), -- Average P. Def.
-(35056, 4413, 11), -- Average M. Def.
-(35056, 4414, 2), -- Standard Type
-(35056, 4415, 11), -- Spears
-(35056, 4416, 23), -- Mercenaries
+(35056, 4408, 1), -- HP Modifiers
+(35056, 4409, 1), -- MP Modifiers
+(35056, 4410, 11), -- P. Atk. Modifiers
+(35056, 4411, 11), -- M. Atk. Modifiers
+(35056, 4412, 11), -- P. Def. Modifiers
+(35056, 4413, 11), -- M. Def. Modifiers
+(35056, 4414, 2), -- Armor Type
+(35056, 4415, 11), -- Weapon Type
+(35056, 4416, 23), -- Races
 -- Recruit
 (35057, 4045, 1), -- Resist Full Magic Attack
-(35057, 4408, 1), -- HP Increase (1x)
-(35057, 4409, 1), -- MP Increase (1x)
-(35057, 4410, 11), -- Average P. Atk.
-(35057, 4411, 11), -- Average M. Atk.
-(35057, 4412, 11), -- Average P. Def.
-(35057, 4413, 11), -- Average M. Def.
-(35057, 4414, 3), -- Light Armor Type
-(35057, 4415, 9), -- Bows
-(35057, 4416, 23), -- Mercenaries
+(35057, 4408, 1), -- HP Modifiers
+(35057, 4409, 1), -- MP Modifiers
+(35057, 4410, 11), -- P. Atk. Modifiers
+(35057, 4411, 11), -- M. Atk. Modifiers
+(35057, 4412, 11), -- P. Def. Modifiers
+(35057, 4413, 11), -- M. Def. Modifiers
+(35057, 4414, 3), -- Armor Type
+(35057, 4415, 9), -- Weapon Type
+(35057, 4416, 23), -- Races
 -- Recruit
 (35058, 4027, 1), -- Gludio Heal
 (35058, 4045, 1), -- Resist Full Magic Attack
-(35058, 4408, 1), -- HP Increase (1x)
-(35058, 4409, 1), -- MP Increase (1x)
-(35058, 4410, 11), -- Average P. Atk.
-(35058, 4411, 11), -- Average M. Atk.
-(35058, 4412, 11), -- Average P. Def.
-(35058, 4413, 11), -- Average M. Def.
-(35058, 4414, 3), -- Light Armor Type
-(35058, 4415, 5), -- Blunt Weapons
-(35058, 4416, 23), -- Mercenaries
+(35058, 4408, 1), -- HP Modifiers
+(35058, 4409, 1), -- MP Modifiers
+(35058, 4410, 11), -- P. Atk. Modifiers
+(35058, 4411, 11), -- M. Atk. Modifiers
+(35058, 4412, 11), -- P. Def. Modifiers
+(35058, 4413, 11), -- M. Def. Modifiers
+(35058, 4414, 3), -- Armor Type
+(35058, 4415, 5), -- Weapon Type
+(35058, 4416, 23), -- Races
 -- Recruit
 (35059, 4026, 1), -- Gludio Flame
 (35059, 4045, 1), -- Resist Full Magic Attack
-(35059, 4408, 1), -- HP Increase (1x)
-(35059, 4409, 1), -- MP Increase (1x)
-(35059, 4410, 11), -- Average P. Atk.
-(35059, 4411, 11), -- Average M. Atk.
-(35059, 4412, 11), -- Average P. Def.
-(35059, 4413, 11), -- Average M. Def.
-(35059, 4414, 3), -- Light Armor Type
-(35059, 4415, 5), -- Blunt Weapons
-(35059, 4416, 23), -- Mercenaries
+(35059, 4408, 1), -- HP Modifiers
+(35059, 4409, 1), -- MP Modifiers
+(35059, 4410, 11), -- P. Atk. Modifiers
+(35059, 4411, 11), -- M. Atk. Modifiers
+(35059, 4412, 11), -- P. Def. Modifiers
+(35059, 4413, 11), -- M. Def. Modifiers
+(35059, 4414, 3), -- Armor Type
+(35059, 4415, 5), -- Weapon Type
+(35059, 4416, 23), -- Races
 -- Nephilim Mercenary
 (35060, 4045, 1), -- Resist Full Magic Attack
-(35060, 4071, 4), -- Resist Bow/Crossbow Weapons
-(35060, 4408, 1), -- HP Increase (1x)
-(35060, 4409, 1), -- MP Increase (1x)
-(35060, 4410, 11), -- Average P. Atk.
-(35060, 4411, 11), -- Average M. Atk.
-(35060, 4412, 11), -- Average P. Def.
-(35060, 4413, 15), -- Strong M. Def.
-(35060, 4414, 2), -- Standard Type
-(35060, 4415, 3), -- One-handed Sword
-(35060, 4416, 23), -- Mercenaries
+(35060, 4071, 4), -- Resist Archery
+(35060, 4408, 1), -- HP Modifiers
+(35060, 4409, 1), -- MP Modifiers
+(35060, 4410, 11), -- P. Atk. Modifiers
+(35060, 4411, 11), -- M. Atk. Modifiers
+(35060, 4412, 11), -- P. Def. Modifiers
+(35060, 4413, 15), -- M. Def. Modifiers
+(35060, 4414, 2), -- Armor Type
+(35060, 4415, 3), -- Weapon Type
+(35060, 4416, 23), -- Races
 (35060, 5112, 7), -- Stun
-(35060, 5113, 7), -- Buff Dispell
+(35060, 5113, 7), -- Castle Self AE Dispell Buff
 -- Nephilim Mercenary
 (35061, 4045, 1), -- Resist Full Magic Attack
-(35061, 4071, 4); -- Resist Bow/Crossbow Weapons
-
-INSERT INTO `npcskills` VALUES
-(35061, 4408, 1), -- HP Increase (1x)
-(35061, 4409, 1), -- MP Increase (1x)
-(35061, 4410, 11), -- Average P. Atk.
-(35061, 4411, 11), -- Average M. Atk.
-(35061, 4412, 11), -- Average P. Def.
-(35061, 4413, 15), -- Strong M. Def.
-(35061, 4414, 3), -- Light Armor Type
-(35061, 4415, 5), -- Blunt Weapons
-(35061, 4416, 23), -- Mercenaries
-(35061, 5052, 6), -- Flame Strike
+(35061, 4071, 4), -- Resist Archery
+(35061, 4408, 1), -- HP Modifiers
+(35061, 4409, 1), -- MP Modifiers
+(35061, 4410, 11), -- P. Atk. Modifiers
+(35061, 4411, 11), -- M. Atk. Modifiers
+(35061, 4412, 11), -- P. Def. Modifiers
+(35061, 4413, 15), -- M. Def. Modifiers
+(35061, 4414, 3), -- Armor Type
+(35061, 4415, 5), -- Weapon Type
+(35061, 4416, 23), -- Races
+(35061, 5052, 6), -- Castle Long AE Fire
 (35061, 5114, 7), -- Hold
 -- Headquarters
 (35062, 4045, 1), -- Resist Full Magic Attack
-(35062, 4390, 1), -- Mystic Immunity
-(35062, 4408, 1), -- HP Increase (1x)
-(35062, 4409, 1), -- MP Increase (1x)
-(35062, 4410, 11), -- Average P. Atk.
-(35062, 4411, 11), -- Average M. Atk.
-(35062, 4412, 11), -- Average P. Def.
-(35062, 4413, 11), -- Average M. Def.
-(35062, 4414, 2), -- Standard Type
-(35062, 4415, 3), -- One-handed Sword
-(35062, 4416, 19), -- Others
+(35062, 4390, 1), -- NPC Abnormal Immunity
+(35062, 4408, 1), -- HP Modifiers
+(35062, 4409, 1), -- MP Modifiers
+(35062, 4410, 11), -- P. Atk. Modifiers
+(35062, 4411, 11), -- M. Atk. Modifiers
+(35062, 4412, 11), -- P. Def. Modifiers
+(35062, 4413, 11), -- M. Def. Modifiers
+(35062, 4414, 2), -- Armor Type
+(35062, 4415, 3), -- Weapon Type
+(35062, 4416, 19), -- Races
 -- Gludio Holy Artifact
 (35063, 4045, 1), -- Resist Full Magic Attack
-(35063, 4390, 1), -- Mystic Immunity
-(35063, 4408, 1), -- HP Increase (1x)
-(35063, 4409, 1), -- MP Increase (1x)
-(35063, 4410, 11), -- Average P. Atk.
-(35063, 4411, 11), -- Average M. Atk.
-(35063, 4412, 11), -- Average P. Def.
-(35063, 4413, 11), -- Average M. Def.
-(35063, 4414, 2), -- Standard Type
-(35063, 4415, 3), -- One-handed Sword
-(35063, 4416, 19), -- Others
+(35063, 4390, 1), -- NPC Abnormal Immunity
+(35063, 4408, 1), -- HP Modifiers
+(35063, 4409, 1), -- MP Modifiers
+(35063, 4410, 11), -- P. Atk. Modifiers
+(35063, 4411, 11), -- M. Atk. Modifiers
+(35063, 4412, 11), -- P. Def. Modifiers
+(35063, 4413, 11), -- M. Def. Modifiers
+(35063, 4414, 2), -- Armor Type
+(35063, 4415, 3), -- Weapon Type
+(35063, 4416, 19), -- Races
 -- Baron Lewin Waldner
 (35064, 4045, 1), -- Resist Full Magic Attack
-(35064, 4408, 16), -- HP Increase (8x)
-(35064, 4409, 11), -- MP Increase (3x)
-(35064, 4410, 18), -- Extremely Strong P. Atk.
-(35064, 4411, 11), -- Average M. Atk.
-(35064, 4412, 13), -- Slightly Strong P. Def.
-(35064, 4413, 13), -- Slightly Strong M. Def.
-(35064, 4414, 2), -- Standard Type
-(35064, 4415, 3), -- One-handed Sword
-(35064, 4416, 22), -- Defending Army
+(35064, 4408, 16), -- HP Modifiers
+(35064, 4409, 11), -- MP Modifiers
+(35064, 4410, 18), -- P. Atk. Modifiers
+(35064, 4411, 11), -- M. Atk. Modifiers
+(35064, 4412, 13), -- P. Def. Modifiers
+(35064, 4413, 13), -- M. Def. Modifiers
+(35064, 4414, 2), -- Armor Type
+(35064, 4415, 3), -- Weapon Type
+(35064, 4416, 22), -- Races
 -- Cronenberg
 (35065, 4045, 1), -- Resist Full Magic Attack
-(35065, 4408, 10), -- HP Increase (2x)
-(35065, 4409, 11), -- MP Increase (3x)
-(35065, 4410, 13), -- Slightly Strong P. Atk.
-(35065, 4411, 11), -- Average M. Atk.
-(35065, 4412, 11), -- Average P. Def.
-(35065, 4413, 11), -- Average M. Def.
-(35065, 4414, 2), -- Standard Type
-(35065, 4415, 3), -- One-handed Sword
-(35065, 4416, 22), -- Defending Army
+(35065, 4408, 10), -- HP Modifiers
+(35065, 4409, 11), -- MP Modifiers
+(35065, 4410, 13), -- P. Atk. Modifiers
+(35065, 4411, 11), -- M. Atk. Modifiers
+(35065, 4412, 11), -- P. Def. Modifiers
+(35065, 4413, 11), -- M. Def. Modifiers
+(35065, 4414, 2), -- Armor Type
+(35065, 4415, 3), -- Weapon Type
+(35065, 4416, 22), -- Races
 -- Royal Knight
 (35066, 4045, 1), -- Resist Full Magic Attack
-(35066, 4408, 16), -- HP Increase (8x)
-(35066, 4409, 11), -- MP Increase (3x)
-(35066, 4410, 18), -- Extremely Strong P. Atk.
-(35066, 4411, 11), -- Average M. Atk.
-(35066, 4412, 11), -- Average P. Def.
-(35066, 4413, 11), -- Average M. Def.
-(35066, 4414, 2), -- Standard Type
-(35066, 4415, 3), -- One-handed Sword
-(35066, 4416, 22), -- Defending Army
+(35066, 4408, 16), -- HP Modifiers
+(35066, 4409, 11), -- MP Modifiers
+(35066, 4410, 18), -- P. Atk. Modifiers
+(35066, 4411, 11), -- M. Atk. Modifiers
+(35066, 4412, 11), -- P. Def. Modifiers
+(35066, 4413, 11), -- M. Def. Modifiers
+(35066, 4414, 2), -- Armor Type
+(35066, 4415, 3), -- Weapon Type
+(35066, 4416, 22), -- Races
 -- Court Sorcerer
 (35067, 4026, 1), -- Gludio Flame
 (35067, 4045, 1), -- Resist Full Magic Attack
-(35067, 4408, 16), -- HP Increase (8x)
-(35067, 4409, 11), -- MP Increase (3x)
-(35067, 4410, 18), -- Extremely Strong P. Atk.
-(35067, 4411, 11), -- Average M. Atk.
-(35067, 4412, 11), -- Average P. Def.
-(35067, 4413, 11), -- Average M. Def.
-(35067, 4414, 2), -- Standard Type
-(35067, 4415, 5), -- Blunt Weapons
-(35067, 4416, 22), -- Defending Army
+(35067, 4408, 16), -- HP Modifiers
+(35067, 4409, 11), -- MP Modifiers
+(35067, 4410, 18), -- P. Atk. Modifiers
+(35067, 4411, 11), -- M. Atk. Modifiers
+(35067, 4412, 11), -- P. Def. Modifiers
+(35067, 4413, 11), -- M. Def. Modifiers
+(35067, 4414, 2), -- Armor Type
+(35067, 4415, 5), -- Weapon Type
+(35067, 4416, 22), -- Races
 -- Court Sorcerer
 (35068, 4027, 1), -- Gludio Heal
 (35068, 4045, 1), -- Resist Full Magic Attack
-(35068, 4408, 16), -- HP Increase (8x)
-(35068, 4409, 11), -- MP Increase (3x)
-(35068, 4410, 18), -- Extremely Strong P. Atk.
-(35068, 4411, 11), -- Average M. Atk.
-(35068, 4412, 11), -- Average P. Def.
-(35068, 4413, 11), -- Average M. Def.
-(35068, 4414, 2), -- Standard Type
-(35068, 4415, 5), -- Blunt Weapons
-(35068, 4416, 22), -- Defending Army
+(35068, 4408, 16), -- HP Modifiers
+(35068, 4409, 11), -- MP Modifiers
+(35068, 4410, 18), -- P. Atk. Modifiers
+(35068, 4411, 11), -- M. Atk. Modifiers
+(35068, 4412, 11), -- P. Def. Modifiers
+(35068, 4413, 11), -- M. Def. Modifiers
+(35068, 4414, 2), -- Armor Type
+(35068, 4415, 5), -- Weapon Type
+(35068, 4416, 22), -- Races
 -- Court Guard
 (35069, 4045, 1), -- Resist Full Magic Attack
-(35069, 4408, 16), -- HP Increase (8x)
-(35069, 4409, 11), -- MP Increase (3x)
-(35069, 4410, 18), -- Extremely Strong P. Atk.
-(35069, 4411, 11), -- Average M. Atk.
-(35069, 4412, 11), -- Average P. Def.
-(35069, 4413, 11), -- Average M. Def.
-(35069, 4414, 2), -- Standard Type
-(35069, 4415, 11), -- Spears
-(35069, 4416, 22), -- Defending Army
+(35069, 4408, 16), -- HP Modifiers
+(35069, 4409, 11), -- MP Modifiers
+(35069, 4410, 18), -- P. Atk. Modifiers
+(35069, 4411, 11), -- M. Atk. Modifiers
+(35069, 4412, 11), -- P. Def. Modifiers
+(35069, 4413, 11), -- M. Def. Modifiers
+(35069, 4414, 2), -- Armor Type
+(35069, 4415, 11), -- Weapon Type
+(35069, 4416, 22), -- Races
 -- Guard
 (35070, 4045, 1), -- Resist Full Magic Attack
-(35070, 4408, 16), -- HP Increase (8x)
-(35070, 4409, 11), -- MP Increase (3x)
-(35070, 4410, 18), -- Extremely Strong P. Atk.
-(35070, 4411, 11), -- Average M. Atk.
-(35070, 4412, 11), -- Average P. Def.
-(35070, 4413, 11), -- Average M. Def.
-(35070, 4414, 2), -- Standard Type
-(35070, 4415, 11), -- Spears
-(35070, 4416, 22), -- Defending Army
+(35070, 4408, 16), -- HP Modifiers
+(35070, 4409, 11), -- MP Modifiers
+(35070, 4410, 18), -- P. Atk. Modifiers
+(35070, 4411, 11), -- M. Atk. Modifiers
+(35070, 4412, 11), -- P. Def. Modifiers
+(35070, 4413, 11), -- M. Def. Modifiers
+(35070, 4414, 2), -- Armor Type
+(35070, 4415, 11), -- Weapon Type
+(35070, 4416, 22), -- Races
 -- Guard
 (35071, 4045, 1), -- Resist Full Magic Attack
-(35071, 4408, 16), -- HP Increase (8x)
-(35071, 4409, 11), -- MP Increase (3x)
-(35071, 4410, 18), -- Extremely Strong P. Atk.
-(35071, 4411, 11), -- Average M. Atk.
-(35071, 4412, 11), -- Average P. Def.
-(35071, 4413, 11), -- Average M. Def.
-(35071, 4414, 2), -- Standard Type
-(35071, 4415, 3), -- One-handed Sword
-(35071, 4416, 22), -- Defending Army
+(35071, 4408, 16), -- HP Modifiers
+(35071, 4409, 11), -- MP Modifiers
+(35071, 4410, 18), -- P. Atk. Modifiers
+(35071, 4411, 11), -- M. Atk. Modifiers
+(35071, 4412, 11), -- P. Def. Modifiers
+(35071, 4413, 11), -- M. Def. Modifiers
+(35071, 4414, 2), -- Armor Type
+(35071, 4415, 3), -- Weapon Type
+(35071, 4416, 22), -- Races
 -- Guard
 (35072, 4045, 1), -- Resist Full Magic Attack
-(35072, 4408, 16), -- HP Increase (8x)
-(35072, 4409, 11), -- MP Increase (3x)
-(35072, 4410, 18), -- Extremely Strong P. Atk.
-(35072, 4411, 11), -- Average M. Atk.
-(35072, 4412, 11), -- Average P. Def.
-(35072, 4413, 11), -- Average M. Def.
-(35072, 4414, 2), -- Standard Type
-(35072, 4415, 9), -- Bows
-(35072, 4416, 22), -- Defending Army
+(35072, 4408, 16), -- HP Modifiers
+(35072, 4409, 11), -- MP Modifiers
+(35072, 4410, 18), -- P. Atk. Modifiers
+(35072, 4411, 11), -- M. Atk. Modifiers
+(35072, 4412, 11), -- P. Def. Modifiers
+(35072, 4413, 11), -- M. Def. Modifiers
+(35072, 4414, 2), -- Armor Type
+(35072, 4415, 9), -- Weapon Type
+(35072, 4416, 22), -- Races
 -- Guard
 (35073, 4045, 1), -- Resist Full Magic Attack
-(35073, 4408, 16), -- HP Increase (8x)
-(35073, 4409, 11), -- MP Increase (3x)
-(35073, 4410, 18), -- Extremely Strong P. Atk.
-(35073, 4411, 11), -- Average M. Atk.
-(35073, 4412, 11), -- Average P. Def.
-(35073, 4413, 11), -- Average M. Def.
-(35073, 4414, 2), -- Standard Type
-(35073, 4415, 11), -- Spears
-(35073, 4416, 22), -- Defending Army
+(35073, 4408, 16), -- HP Modifiers
+(35073, 4409, 11), -- MP Modifiers
+(35073, 4410, 18), -- P. Atk. Modifiers
+(35073, 4411, 11), -- M. Atk. Modifiers
+(35073, 4412, 11), -- P. Def. Modifiers
+(35073, 4413, 11), -- M. Def. Modifiers
+(35073, 4414, 2), -- Armor Type
+(35073, 4415, 11), -- Weapon Type
+(35073, 4416, 22), -- Races
 -- Guard
 (35074, 4045, 1), -- Resist Full Magic Attack
-(35074, 4408, 16), -- HP Increase (8x)
-(35074, 4409, 11), -- MP Increase (3x)
-(35074, 4410, 18), -- Extremely Strong P. Atk.
-(35074, 4411, 11), -- Average M. Atk.
-(35074, 4412, 11), -- Average P. Def.
-(35074, 4413, 11), -- Average M. Def.
-(35074, 4414, 2), -- Standard Type
-(35074, 4415, 3), -- One-handed Sword
-(35074, 4416, 22), -- Defending Army
+(35074, 4408, 16), -- HP Modifiers
+(35074, 4409, 11), -- MP Modifiers
+(35074, 4410, 18), -- P. Atk. Modifiers
+(35074, 4411, 11), -- M. Atk. Modifiers
+(35074, 4412, 11), -- P. Def. Modifiers
+(35074, 4413, 11), -- M. Def. Modifiers
+(35074, 4414, 2), -- Armor Type
+(35074, 4415, 3), -- Weapon Type
+(35074, 4416, 22), -- Races
 -- Guard
 (35075, 4045, 1), -- Resist Full Magic Attack
-(35075, 4408, 16), -- HP Increase (8x)
-(35075, 4409, 11), -- MP Increase (3x)
-(35075, 4410, 18), -- Extremely Strong P. Atk.
-(35075, 4411, 11), -- Average M. Atk.
-(35075, 4412, 11), -- Average P. Def.
-(35075, 4413, 11), -- Average M. Def.
-(35075, 4414, 2), -- Standard Type
-(35075, 4415, 9), -- Bows
-(35075, 4416, 22), -- Defending Army
+(35075, 4408, 16), -- HP Modifiers
+(35075, 4409, 11), -- MP Modifiers
+(35075, 4410, 18), -- P. Atk. Modifiers
+(35075, 4411, 11), -- M. Atk. Modifiers
+(35075, 4412, 11), -- P. Def. Modifiers
+(35075, 4413, 11), -- M. Def. Modifiers
+(35075, 4414, 2), -- Armor Type
+(35075, 4415, 9), -- Weapon Type
+(35075, 4416, 22), -- Races
 -- Guard
 (35076, 4045, 1), -- Resist Full Magic Attack
-(35076, 4408, 16), -- HP Increase (8x)
-(35076, 4409, 11), -- MP Increase (3x)
-(35076, 4410, 18), -- Extremely Strong P. Atk.
-(35076, 4411, 11), -- Average M. Atk.
-(35076, 4412, 11), -- Average P. Def.
-(35076, 4413, 11), -- Average M. Def.
-(35076, 4414, 2), -- Standard Type
-(35076, 4415, 11), -- Spears
-(35076, 4416, 22), -- Defending Army
+(35076, 4408, 16), -- HP Modifiers
+(35076, 4409, 11), -- MP Modifiers
+(35076, 4410, 18), -- P. Atk. Modifiers
+(35076, 4411, 11), -- M. Atk. Modifiers
+(35076, 4412, 11), -- P. Def. Modifiers
+(35076, 4413, 11), -- M. Def. Modifiers
+(35076, 4414, 2), -- Armor Type
+(35076, 4415, 11), -- Weapon Type
+(35076, 4416, 22), -- Races
 -- Guard
 (35077, 4045, 1), -- Resist Full Magic Attack
-(35077, 4408, 16), -- HP Increase (8x)
-(35077, 4409, 11), -- MP Increase (3x)
-(35077, 4410, 18), -- Extremely Strong P. Atk.
-(35077, 4411, 11), -- Average M. Atk.
-(35077, 4412, 11), -- Average P. Def.
-(35077, 4413, 11), -- Average M. Def.
-(35077, 4414, 2), -- Standard Type
-(35077, 4415, 3), -- One-handed Sword
-(35077, 4416, 22), -- Defending Army
+(35077, 4408, 16), -- HP Modifiers
+(35077, 4409, 11), -- MP Modifiers
+(35077, 4410, 18), -- P. Atk. Modifiers
+(35077, 4411, 11), -- M. Atk. Modifiers
+(35077, 4412, 11), -- P. Def. Modifiers
+(35077, 4413, 11), -- M. Def. Modifiers
+(35077, 4414, 2), -- Armor Type
+(35077, 4415, 3), -- Weapon Type
+(35077, 4416, 22), -- Races
 -- Guard
 (35078, 4045, 1), -- Resist Full Magic Attack
-(35078, 4408, 16), -- HP Increase (8x)
-(35078, 4409, 11), -- MP Increase (3x)
-(35078, 4410, 18), -- Extremely Strong P. Atk.
-(35078, 4411, 11), -- Average M. Atk.
-(35078, 4412, 11), -- Average P. Def.
-(35078, 4413, 11), -- Average M. Def.
-(35078, 4414, 2), -- Standard Type
-(35078, 4415, 9), -- Bows
-(35078, 4416, 22), -- Defending Army
+(35078, 4408, 16), -- HP Modifiers
+(35078, 4409, 11), -- MP Modifiers
+(35078, 4410, 18), -- P. Atk. Modifiers
+(35078, 4411, 11), -- M. Atk. Modifiers
+(35078, 4412, 11), -- P. Def. Modifiers
+(35078, 4413, 11), -- M. Def. Modifiers
+(35078, 4414, 2), -- Armor Type
+(35078, 4415, 9), -- Weapon Type
+(35078, 4416, 22), -- Races
 -- Royal Knight
 (35079, 4045, 1), -- Resist Full Magic Attack
-(35079, 4408, 16), -- HP Increase (8x)
-(35079, 4409, 11), -- MP Increase (3x)
-(35079, 4410, 18), -- Extremely Strong P. Atk.
-(35079, 4411, 11), -- Average M. Atk.
-(35079, 4412, 11), -- Average P. Def.
-(35079, 4413, 11), -- Average M. Def.
-(35079, 4414, 2), -- Standard Type
-(35079, 4415, 3), -- One-handed Sword
-(35079, 4416, 22), -- Defending Army
+(35079, 4408, 16), -- HP Modifiers
+(35079, 4409, 11), -- MP Modifiers
+(35079, 4410, 18), -- P. Atk. Modifiers
+(35079, 4411, 11), -- M. Atk. Modifiers
+(35079, 4412, 11), -- P. Def. Modifiers
+(35079, 4413, 11), -- M. Def. Modifiers
+(35079, 4414, 2), -- Armor Type
+(35079, 4415, 3), -- Weapon Type
+(35079, 4416, 22), -- Races
 -- Court Sorcerer
 (35080, 4026, 1), -- Gludio Flame
 (35080, 4045, 1), -- Resist Full Magic Attack
-(35080, 4408, 16), -- HP Increase (8x)
-(35080, 4409, 11), -- MP Increase (3x)
-(35080, 4410, 18), -- Extremely Strong P. Atk.
-(35080, 4411, 11), -- Average M. Atk.
-(35080, 4412, 11), -- Average P. Def.
-(35080, 4413, 11), -- Average M. Def.
-(35080, 4414, 2), -- Standard Type
-(35080, 4415, 5), -- Blunt Weapons
-(35080, 4416, 22), -- Defending Army
+(35080, 4408, 16), -- HP Modifiers
+(35080, 4409, 11), -- MP Modifiers
+(35080, 4410, 18), -- P. Atk. Modifiers
+(35080, 4411, 11), -- M. Atk. Modifiers
+(35080, 4412, 11), -- P. Def. Modifiers
+(35080, 4413, 11), -- M. Def. Modifiers
+(35080, 4414, 2), -- Armor Type
+(35080, 4415, 5), -- Weapon Type
+(35080, 4416, 22), -- Races
 -- Court Sorcerer
 (35081, 4027, 1), -- Gludio Heal
 (35081, 4045, 1), -- Resist Full Magic Attack
-(35081, 4408, 16), -- HP Increase (8x)
-(35081, 4409, 11), -- MP Increase (3x)
-(35081, 4410, 18), -- Extremely Strong P. Atk.
-(35081, 4411, 11), -- Average M. Atk.
-(35081, 4412, 11), -- Average P. Def.
-(35081, 4413, 11), -- Average M. Def.
-(35081, 4414, 2), -- Standard Type
-(35081, 4415, 5), -- Blunt Weapons
-(35081, 4416, 22), -- Defending Army
+(35081, 4408, 16), -- HP Modifiers
+(35081, 4409, 11), -- MP Modifiers
+(35081, 4410, 18), -- P. Atk. Modifiers
+(35081, 4411, 11), -- M. Atk. Modifiers
+(35081, 4412, 11), -- P. Def. Modifiers
+(35081, 4413, 11), -- M. Def. Modifiers
+(35081, 4414, 2), -- Armor Type
+(35081, 4415, 5), -- Weapon Type
+(35081, 4416, 22), -- Races
 -- Court Guard
 (35082, 4045, 1), -- Resist Full Magic Attack
-(35082, 4408, 16), -- HP Increase (8x)
-(35082, 4409, 11), -- MP Increase (3x)
-(35082, 4410, 18), -- Extremely Strong P. Atk.
-(35082, 4411, 11), -- Average M. Atk.
-(35082, 4412, 11), -- Average P. Def.
-(35082, 4413, 11), -- Average M. Def.
-(35082, 4414, 2), -- Standard Type
-(35082, 4415, 11), -- Spears
-(35082, 4416, 22), -- Defending Army
+(35082, 4408, 16), -- HP Modifiers
+(35082, 4409, 11), -- MP Modifiers
+(35082, 4410, 18), -- P. Atk. Modifiers
+(35082, 4411, 11), -- M. Atk. Modifiers
+(35082, 4412, 11), -- P. Def. Modifiers
+(35082, 4413, 11), -- M. Def. Modifiers
+(35082, 4414, 2), -- Armor Type
+(35082, 4415, 11), -- Weapon Type
+(35082, 4416, 22), -- Races
 -- Guard
 (35083, 4045, 1), -- Resist Full Magic Attack
-(35083, 4408, 16), -- HP Increase (8x)
-(35083, 4409, 11), -- MP Increase (3x)
-(35083, 4410, 18), -- Extremely Strong P. Atk.
-(35083, 4411, 11), -- Average M. Atk.
-(35083, 4412, 11), -- Average P. Def.
-(35083, 4413, 11), -- Average M. Def.
-(35083, 4414, 2), -- Standard Type
-(35083, 4415, 11), -- Spears
-(35083, 4416, 22), -- Defending Army
+(35083, 4408, 16), -- HP Modifiers
+(35083, 4409, 11), -- MP Modifiers
+(35083, 4410, 18), -- P. Atk. Modifiers
+(35083, 4411, 11), -- M. Atk. Modifiers
+(35083, 4412, 11), -- P. Def. Modifiers
+(35083, 4413, 11), -- M. Def. Modifiers
+(35083, 4414, 2), -- Armor Type
+(35083, 4415, 11), -- Weapon Type
+(35083, 4416, 22), -- Races
 -- Guard
 (35084, 4045, 1), -- Resist Full Magic Attack
-(35084, 4408, 16), -- HP Increase (8x)
-(35084, 4409, 11), -- MP Increase (3x)
-(35084, 4410, 18), -- Extremely Strong P. Atk.
-(35084, 4411, 11), -- Average M. Atk.
-(35084, 4412, 11), -- Average P. Def.
-(35084, 4413, 11), -- Average M. Def.
-(35084, 4414, 2), -- Standard Type
-(35084, 4415, 3), -- One-handed Sword
-(35084, 4416, 22), -- Defending Army
+(35084, 4408, 16), -- HP Modifiers
+(35084, 4409, 11), -- MP Modifiers
+(35084, 4410, 18), -- P. Atk. Modifiers
+(35084, 4411, 11), -- M. Atk. Modifiers
+(35084, 4412, 11), -- P. Def. Modifiers
+(35084, 4413, 11), -- M. Def. Modifiers
+(35084, 4414, 2), -- Armor Type
+(35084, 4415, 3), -- Weapon Type
+(35084, 4416, 22), -- Races
 -- Guard
 (35085, 4045, 1), -- Resist Full Magic Attack
-(35085, 4408, 16), -- HP Increase (8x)
-(35085, 4409, 11), -- MP Increase (3x)
-(35085, 4410, 18), -- Extremely Strong P. Atk.
-(35085, 4411, 11), -- Average M. Atk.
-(35085, 4412, 11), -- Average P. Def.
-(35085, 4413, 11), -- Average M. Def.
-(35085, 4414, 2), -- Standard Type
-(35085, 4415, 9), -- Bows
-(35085, 4416, 22), -- Defending Army
+(35085, 4408, 16), -- HP Modifiers
+(35085, 4409, 11), -- MP Modifiers
+(35085, 4410, 18), -- P. Atk. Modifiers
+(35085, 4411, 11), -- M. Atk. Modifiers
+(35085, 4412, 11), -- P. Def. Modifiers
+(35085, 4413, 11), -- M. Def. Modifiers
+(35085, 4414, 2), -- Armor Type
+(35085, 4415, 9), -- Weapon Type
+(35085, 4416, 22), -- Races
 -- Guard
 (35086, 4045, 1), -- Resist Full Magic Attack
-(35086, 4408, 16), -- HP Increase (8x)
-(35086, 4409, 11), -- MP Increase (3x)
-(35086, 4410, 18), -- Extremely Strong P. Atk.
-(35086, 4411, 11), -- Average M. Atk.
-(35086, 4412, 11), -- Average P. Def.
-(35086, 4413, 11), -- Average M. Def.
-(35086, 4414, 2), -- Standard Type
-(35086, 4415, 11), -- Spears
-(35086, 4416, 22), -- Defending Army
+(35086, 4408, 16), -- HP Modifiers
+(35086, 4409, 11), -- MP Modifiers
+(35086, 4410, 18), -- P. Atk. Modifiers
+(35086, 4411, 11), -- M. Atk. Modifiers
+(35086, 4412, 11), -- P. Def. Modifiers
+(35086, 4413, 11), -- M. Def. Modifiers
+(35086, 4414, 2), -- Armor Type
+(35086, 4415, 11), -- Weapon Type
+(35086, 4416, 22), -- Races
 -- Guard
 (35087, 4045, 1), -- Resist Full Magic Attack
-(35087, 4408, 16), -- HP Increase (8x)
-(35087, 4409, 11), -- MP Increase (3x)
-(35087, 4410, 18), -- Extremely Strong P. Atk.
-(35087, 4411, 11), -- Average M. Atk.
-(35087, 4412, 11), -- Average P. Def.
-(35087, 4413, 11), -- Average M. Def.
-(35087, 4414, 2), -- Standard Type
-(35087, 4415, 3), -- One-handed Sword
-(35087, 4416, 22), -- Defending Army
+(35087, 4408, 16), -- HP Modifiers
+(35087, 4409, 11), -- MP Modifiers
+(35087, 4410, 18), -- P. Atk. Modifiers
+(35087, 4411, 11), -- M. Atk. Modifiers
+(35087, 4412, 11), -- P. Def. Modifiers
+(35087, 4413, 11), -- M. Def. Modifiers
+(35087, 4414, 2), -- Armor Type
+(35087, 4415, 3), -- Weapon Type
+(35087, 4416, 22), -- Races
 -- Guard
 (35088, 4045, 1), -- Resist Full Magic Attack
-(35088, 4408, 16), -- HP Increase (8x)
-(35088, 4409, 11), -- MP Increase (3x)
-(35088, 4410, 18), -- Extremely Strong P. Atk.
-(35088, 4411, 11), -- Average M. Atk.
-(35088, 4412, 11), -- Average P. Def.
-(35088, 4413, 11), -- Average M. Def.
-(35088, 4414, 2), -- Standard Type
-(35088, 4415, 9), -- Bows
-(35088, 4416, 22), -- Defending Army
+(35088, 4408, 16), -- HP Modifiers
+(35088, 4409, 11), -- MP Modifiers
+(35088, 4410, 18), -- P. Atk. Modifiers
+(35088, 4411, 11), -- M. Atk. Modifiers
+(35088, 4412, 11), -- P. Def. Modifiers
+(35088, 4413, 11), -- M. Def. Modifiers
+(35088, 4414, 2), -- Armor Type
+(35088, 4415, 9), -- Weapon Type
+(35088, 4416, 22), -- Races
 -- Guard
 (35089, 4045, 1), -- Resist Full Magic Attack
-(35089, 4408, 16), -- HP Increase (8x)
-(35089, 4409, 11), -- MP Increase (3x)
-(35089, 4410, 18), -- Extremely Strong P. Atk.
-(35089, 4411, 11), -- Average M. Atk.
-(35089, 4412, 11), -- Average P. Def.
-(35089, 4413, 11), -- Average M. Def.
-(35089, 4414, 2), -- Standard Type
-(35089, 4415, 11), -- Spears
-(35089, 4416, 22), -- Defending Army
+(35089, 4408, 16), -- HP Modifiers
+(35089, 4409, 11), -- MP Modifiers
+(35089, 4410, 18), -- P. Atk. Modifiers
+(35089, 4411, 11), -- M. Atk. Modifiers
+(35089, 4412, 11), -- P. Def. Modifiers
+(35089, 4413, 11), -- M. Def. Modifiers
+(35089, 4414, 2), -- Armor Type
+(35089, 4415, 11), -- Weapon Type
+(35089, 4416, 22), -- Races
 -- Guard
 (35090, 4045, 1), -- Resist Full Magic Attack
-(35090, 4408, 16), -- HP Increase (8x)
-(35090, 4409, 11), -- MP Increase (3x)
-(35090, 4410, 18), -- Extremely Strong P. Atk.
-(35090, 4411, 11), -- Average M. Atk.
-(35090, 4412, 11), -- Average P. Def.
-(35090, 4413, 11), -- Average M. Def.
-(35090, 4414, 2), -- Standard Type
-(35090, 4415, 3), -- One-handed Sword
-(35090, 4416, 22), -- Defending Army
+(35090, 4408, 16), -- HP Modifiers
+(35090, 4409, 11), -- MP Modifiers
+(35090, 4410, 18), -- P. Atk. Modifiers
+(35090, 4411, 11), -- M. Atk. Modifiers
+(35090, 4412, 11), -- P. Def. Modifiers
+(35090, 4413, 11), -- M. Def. Modifiers
+(35090, 4414, 2), -- Armor Type
+(35090, 4415, 3), -- Weapon Type
+(35090, 4416, 22), -- Races
 -- Guard
 (35091, 4045, 1), -- Resist Full Magic Attack
-(35091, 4408, 16), -- HP Increase (8x)
-(35091, 4409, 11), -- MP Increase (3x)
-(35091, 4410, 18), -- Extremely Strong P. Atk.
-(35091, 4411, 11), -- Average M. Atk.
-(35091, 4412, 11), -- Average P. Def.
-(35091, 4413, 11), -- Average M. Def.
-(35091, 4414, 2), -- Standard Type
-(35091, 4415, 9), -- Bows
-(35091, 4416, 22), -- Defending Army
+(35091, 4408, 16), -- HP Modifiers
+(35091, 4409, 11), -- MP Modifiers
+(35091, 4410, 18), -- P. Atk. Modifiers
+(35091, 4411, 11), -- M. Atk. Modifiers
+(35091, 4412, 11), -- P. Def. Modifiers
+(35091, 4413, 11), -- M. Def. Modifiers
+(35091, 4414, 2), -- Armor Type
+(35091, 4415, 9), -- Weapon Type
+(35091, 4416, 22), -- Races
 -- Gatekeeper
 (35092, 4045, 1), -- Resist Full Magic Attack
-(35092, 4408, 1), -- HP Increase (1x)
-(35092, 4409, 1), -- MP Increase (1x)
-(35092, 4410, 11), -- Average P. Atk.
-(35092, 4411, 11), -- Average M. Atk.
-(35092, 4412, 11), -- Average P. Def.
-(35092, 4413, 11), -- Average M. Def.
-(35092, 4414, 2), -- Standard Type
-(35092, 4415, 3), -- One-handed Sword
-(35092, 4416, 23), -- Mercenaries
+(35092, 4408, 1), -- HP Modifiers
+(35092, 4409, 1), -- MP Modifiers
+(35092, 4410, 11), -- P. Atk. Modifiers
+(35092, 4411, 11), -- M. Atk. Modifiers
+(35092, 4412, 11), -- P. Def. Modifiers
+(35092, 4413, 11), -- M. Def. Modifiers
+(35092, 4414, 2), -- Armor Type
+(35092, 4415, 3), -- Weapon Type
+(35092, 4416, 23), -- Races
 -- Gatekeeper
 (35093, 4045, 1), -- Resist Full Magic Attack
-(35093, 4408, 1), -- HP Increase (1x)
-(35093, 4409, 1), -- MP Increase (1x)
-(35093, 4410, 11), -- Average P. Atk.
-(35093, 4411, 11), -- Average M. Atk.
-(35093, 4412, 11), -- Average P. Def.
-(35093, 4413, 11), -- Average M. Def.
-(35093, 4414, 2), -- Standard Type
-(35093, 4415, 3), -- One-handed Sword
-(35093, 4416, 23), -- Mercenaries
+(35093, 4408, 1), -- HP Modifiers
+(35093, 4409, 1), -- MP Modifiers
+(35093, 4410, 11), -- P. Atk. Modifiers
+(35093, 4411, 11), -- M. Atk. Modifiers
+(35093, 4412, 11), -- P. Def. Modifiers
+(35093, 4413, 11), -- M. Def. Modifiers
+(35093, 4414, 2), -- Armor Type
+(35093, 4415, 3), -- Weapon Type
+(35093, 4416, 23), -- Races
 -- Gatekeeper
 (35094, 4045, 1), -- Resist Full Magic Attack
-(35094, 4408, 1), -- HP Increase (1x)
-(35094, 4409, 1), -- MP Increase (1x)
-(35094, 4410, 11), -- Average P. Atk.
-(35094, 4411, 11), -- Average M. Atk.
-(35094, 4412, 11), -- Average P. Def.
-(35094, 4413, 11), -- Average M. Def.
-(35094, 4414, 2), -- Standard Type
-(35094, 4415, 3), -- One-handed Sword
-(35094, 4416, 23), -- Mercenaries
+(35094, 4408, 1), -- HP Modifiers
+(35094, 4409, 1), -- MP Modifiers
+(35094, 4410, 11), -- P. Atk. Modifiers
+(35094, 4411, 11), -- M. Atk. Modifiers
+(35094, 4412, 11), -- P. Def. Modifiers
+(35094, 4413, 11), -- M. Def. Modifiers
+(35094, 4414, 2), -- Armor Type
+(35094, 4415, 3), -- Weapon Type
+(35094, 4416, 23), -- Races
 -- Mass Gatekeeper
 (35095, 4045, 1), -- Resist Full Magic Attack
-(35095, 4408, 1), -- HP Increase (1x)
-(35095, 4409, 1), -- MP Increase (1x)
-(35095, 4410, 11), -- Average P. Atk.
-(35095, 4411, 11), -- Average M. Atk.
-(35095, 4412, 11), -- Average P. Def.
-(35095, 4413, 11), -- Average M. Def.
-(35095, 4414, 2), -- Standard Type
-(35095, 4415, 3), -- One-handed Sword
-(35095, 4416, 14), -- Humans
+(35095, 4408, 1), -- HP Modifiers
+(35095, 4409, 1), -- MP Modifiers
+(35095, 4410, 11), -- P. Atk. Modifiers
+(35095, 4411, 11), -- M. Atk. Modifiers
+(35095, 4412, 11), -- P. Def. Modifiers
+(35095, 4413, 11), -- M. Def. Modifiers
+(35095, 4414, 2), -- Armor Type
+(35095, 4415, 3), -- Weapon Type
+(35095, 4416, 14), -- Races
 -- Outer Doorman
 (35096, 4045, 1), -- Resist Full Magic Attack
-(35096, 4408, 1), -- HP Increase (1x)
-(35096, 4409, 1), -- MP Increase (1x)
-(35096, 4410, 11), -- Average P. Atk.
-(35096, 4411, 11), -- Average M. Atk.
-(35096, 4412, 11), -- Average P. Def.
-(35096, 4413, 11), -- Average M. Def.
-(35096, 4414, 2), -- Standard Type
-(35096, 4415, 3), -- One-handed Sword
-(35096, 4416, 14), -- Humans
+(35096, 4408, 1), -- HP Modifiers
+(35096, 4409, 1), -- MP Modifiers
+(35096, 4410, 11), -- P. Atk. Modifiers
+(35096, 4411, 11), -- M. Atk. Modifiers
+(35096, 4412, 11), -- P. Def. Modifiers
+(35096, 4413, 11), -- M. Def. Modifiers
+(35096, 4414, 2), -- Armor Type
+(35096, 4415, 3), -- Weapon Type
+(35096, 4416, 14), -- Races
 -- Inner Doorman
 (35097, 4045, 1), -- Resist Full Magic Attack
-(35097, 4408, 1), -- HP Increase (1x)
-(35097, 4409, 1), -- MP Increase (1x)
-(35097, 4410, 11), -- Average P. Atk.
-(35097, 4411, 11), -- Average M. Atk.
-(35097, 4412, 11), -- Average P. Def.
-(35097, 4413, 11), -- Average M. Def.
-(35097, 4414, 2), -- Standard Type
-(35097, 4415, 3), -- One-handed Sword
-(35097, 4416, 14), -- Humans
+(35097, 4408, 1), -- HP Modifiers
+(35097, 4409, 1), -- MP Modifiers
+(35097, 4410, 11), -- P. Atk. Modifiers
+(35097, 4411, 11), -- M. Atk. Modifiers
+(35097, 4412, 11), -- P. Def. Modifiers
+(35097, 4413, 11), -- M. Def. Modifiers
+(35097, 4414, 2), -- Armor Type
+(35097, 4415, 3), -- Weapon Type
+(35097, 4416, 14), -- Races
 -- Blacksmith
 (35098, 4045, 1), -- Resist Full Magic Attack
-(35098, 4408, 1), -- HP Increase (1x)
-(35098, 4409, 1), -- MP Increase (1x)
-(35098, 4410, 11), -- Average P. Atk.
-(35098, 4411, 11), -- Average M. Atk.
-(35098, 4412, 11), -- Average P. Def.
-(35098, 4413, 11), -- Average M. Def.
-(35098, 4414, 2), -- Standard Type
-(35098, 4415, 3), -- One-handed Sword
-(35098, 4416, 18), -- Dwarves
+(35098, 4408, 1), -- HP Modifiers
+(35098, 4409, 1), -- MP Modifiers
+(35098, 4410, 11), -- P. Atk. Modifiers
+(35098, 4411, 11), -- M. Atk. Modifiers
+(35098, 4412, 11), -- P. Def. Modifiers
+(35098, 4413, 11), -- M. Def. Modifiers
+(35098, 4414, 2), -- Armor Type
+(35098, 4415, 3), -- Weapon Type
+(35098, 4416, 18), -- Races
 -- Warehouse Keeper
 (35099, 4045, 1), -- Resist Full Magic Attack
-(35099, 4408, 1), -- HP Increase (1x)
-(35099, 4409, 1), -- MP Increase (1x)
-(35099, 4410, 11), -- Average P. Atk.
-(35099, 4411, 11), -- Average M. Atk.
-(35099, 4412, 11), -- Average P. Def.
-(35099, 4413, 11), -- Average M. Def.
-(35099, 4414, 2), -- Standard Type
-(35099, 4415, 3), -- One-handed Sword
-(35099, 4416, 18), -- Dwarves
+(35099, 4408, 1), -- HP Modifiers
+(35099, 4409, 1), -- MP Modifiers
+(35099, 4410, 11), -- P. Atk. Modifiers
+(35099, 4411, 11), -- M. Atk. Modifiers
+(35099, 4412, 11), -- P. Def. Modifiers
+(35099, 4413, 11), -- M. Def. Modifiers
+(35099, 4414, 2), -- Armor Type
+(35099, 4415, 3), -- Weapon Type
+(35099, 4416, 18), -- Races
 -- Sayres
 (35100, 4045, 1), -- Resist Full Magic Attack
-(35100, 4408, 1), -- HP Increase (1x)
-(35100, 4409, 1), -- MP Increase (1x)
-(35100, 4410, 11), -- Average P. Atk.
-(35100, 4411, 11), -- Average M. Atk.
-(35100, 4412, 11), -- Average P. Def.
-(35100, 4413, 11), -- Average M. Def.
-(35100, 4414, 2), -- Standard Type
-(35100, 4415, 3), -- One-handed Sword
-(35100, 4416, 14), -- Humans
+(35100, 4408, 1), -- HP Modifiers
+(35100, 4409, 1), -- MP Modifiers
+(35100, 4410, 11), -- P. Atk. Modifiers
+(35100, 4411, 11), -- M. Atk. Modifiers
+(35100, 4412, 11), -- P. Def. Modifiers
+(35100, 4413, 11), -- M. Def. Modifiers
+(35100, 4414, 2), -- Armor Type
+(35100, 4415, 3), -- Weapon Type
+(35100, 4416, 14), -- Races
 -- Grad
 (35101, 4045, 1), -- Resist Full Magic Attack
-(35101, 4408, 1), -- HP Increase (1x)
-(35101, 4409, 1), -- MP Increase (1x)
-(35101, 4410, 11), -- Average P. Atk.
-(35101, 4411, 11), -- Average M. Atk.
-(35101, 4412, 11), -- Average P. Def.
-(35101, 4413, 11), -- Average M. Def.
-(35101, 4414, 2), -- Standard Type
-(35101, 4415, 3), -- One-handed Sword
-(35101, 4416, 14), -- Humans
+(35101, 4408, 1), -- HP Modifiers
+(35101, 4409, 1), -- MP Modifiers
+(35101, 4410, 11), -- P. Atk. Modifiers
+(35101, 4411, 11), -- M. Atk. Modifiers
+(35101, 4412, 11), -- P. Def. Modifiers
+(35101, 4413, 11), -- M. Def. Modifiers
+(35101, 4414, 2), -- Armor Type
+(35101, 4415, 3), -- Weapon Type
+(35101, 4416, 14), -- Races
 -- Greenspan
 (35102, 4045, 1), -- Resist Full Magic Attack
-(35102, 4408, 1), -- HP Increase (1x)
-(35102, 4409, 1), -- MP Increase (1x)
-(35102, 4410, 11), -- Average P. Atk.
-(35102, 4411, 11), -- Average M. Atk.
-(35102, 4412, 11), -- Average P. Def.
-(35102, 4413, 11), -- Average M. Def.
-(35102, 4414, 2), -- Standard Type
-(35102, 4415, 3), -- One-handed Sword
-(35102, 4416, 14), -- Humans
+(35102, 4408, 1), -- HP Modifiers
+(35102, 4409, 1), -- MP Modifiers
+(35102, 4410, 11), -- P. Atk. Modifiers
+(35102, 4411, 11), -- M. Atk. Modifiers
+(35102, 4412, 11), -- P. Def. Modifiers
+(35102, 4413, 11), -- M. Def. Modifiers
+(35102, 4414, 2), -- Armor Type
+(35102, 4415, 3), -- Weapon Type
+(35102, 4416, 14), -- Races
 -- Manor Manager
 (35103, 4045, 1), -- Resist Full Magic Attack
-(35103, 4408, 1), -- HP Increase (1x)
-(35103, 4409, 1), -- MP Increase (1x)
-(35103, 4410, 11), -- Average P. Atk.
-(35103, 4411, 11), -- Average M. Atk.
-(35103, 4412, 11), -- Average P. Def.
-(35103, 4413, 11), -- Average M. Def.
-(35103, 4414, 2), -- Standard Type
-(35103, 4415, 3), -- One-handed Sword
-(35103, 4416, 14), -- Humans
+(35103, 4408, 1), -- HP Modifiers
+(35103, 4409, 1), -- MP Modifiers
+(35103, 4410, 11), -- P. Atk. Modifiers
+(35103, 4411, 11), -- M. Atk. Modifiers
+(35103, 4412, 11), -- P. Def. Modifiers
+(35103, 4413, 11), -- M. Def. Modifiers
+(35103, 4414, 2), -- Armor Type
+(35103, 4415, 3), -- Weapon Type
+(35103, 4416, 14), -- Races
 -- Tyron
 (35104, 4045, 1), -- Resist Full Magic Attack
-(35104, 4408, 1), -- HP Increase (1x)
-(35104, 4409, 1), -- MP Increase (1x)
-(35104, 4410, 11), -- Average P. Atk.
-(35104, 4411, 11), -- Average M. Atk.
-(35104, 4412, 11), -- Average P. Def.
-(35104, 4413, 11), -- Average M. Def.
-(35104, 4414, 2), -- Standard Type
-(35104, 4415, 3), -- One-handed Sword
-(35104, 4416, 14), -- Humans
+(35104, 4408, 1), -- HP Modifiers
+(35104, 4409, 1), -- MP Modifiers
+(35104, 4410, 11), -- P. Atk. Modifiers
+(35104, 4411, 11), -- M. Atk. Modifiers
+(35104, 4412, 11), -- P. Def. Modifiers
+(35104, 4413, 11), -- M. Def. Modifiers
+(35104, 4414, 2), -- Armor Type
+(35104, 4415, 3), -- Weapon Type
+(35104, 4416, 14), -- Races
 -- Dion Holy Artifact
 (35105, 4045, 1), -- Resist Full Magic Attack
-(35105, 4390, 1), -- Mystic Immunity
-(35105, 4408, 1), -- HP Increase (1x)
-(35105, 4409, 1), -- MP Increase (1x)
-(35105, 4410, 11), -- Average P. Atk.
-(35105, 4411, 11), -- Average M. Atk.
-(35105, 4412, 11), -- Average P. Def.
-(35105, 4413, 11), -- Average M. Def.
-(35105, 4414, 2), -- Standard Type
-(35105, 4415, 3), -- One-handed Sword
-(35105, 4416, 19), -- Others
+(35105, 4390, 1), -- NPC Abnormal Immunity
+(35105, 4408, 1), -- HP Modifiers
+(35105, 4409, 1), -- MP Modifiers
+(35105, 4410, 11), -- P. Atk. Modifiers
+(35105, 4411, 11), -- M. Atk. Modifiers
+(35105, 4412, 11), -- P. Def. Modifiers
+(35105, 4413, 11), -- M. Def. Modifiers
+(35105, 4414, 2), -- Armor Type
+(35105, 4415, 3), -- Weapon Type
+(35105, 4416, 19), -- Races
 -- Duke Byron Ashton
 (35106, 4045, 1), -- Resist Full Magic Attack
-(35106, 4408, 16), -- HP Increase (8x)
-(35106, 4409, 11), -- MP Increase (3x)
-(35106, 4410, 18), -- Extremely Strong P. Atk.
-(35106, 4411, 11), -- Average M. Atk.
-(35106, 4412, 13), -- Slightly Strong P. Def.
-(35106, 4413, 13), -- Slightly Strong M. Def.
-(35106, 4414, 2), -- Standard Type
-(35106, 4415, 3), -- One-handed Sword
-(35106, 4416, 22), -- Defending Army
+(35106, 4408, 16), -- HP Modifiers
+(35106, 4409, 11), -- MP Modifiers
+(35106, 4410, 18), -- P. Atk. Modifiers
+(35106, 4411, 11), -- M. Atk. Modifiers
+(35106, 4412, 13), -- P. Def. Modifiers
+(35106, 4413, 13), -- M. Def. Modifiers
+(35106, 4414, 2), -- Armor Type
+(35106, 4415, 3), -- Weapon Type
+(35106, 4416, 22), -- Races
 -- Ivano
 (35107, 4045, 1), -- Resist Full Magic Attack
-(35107, 4408, 10), -- HP Increase (2x)
-(35107, 4409, 11), -- MP Increase (3x)
-(35107, 4410, 13), -- Slightly Strong P. Atk.
-(35107, 4411, 11), -- Average M. Atk.
-(35107, 4412, 11), -- Average P. Def.
-(35107, 4413, 11), -- Average M. Def.
-(35107, 4414, 2), -- Standard Type
-(35107, 4415, 3), -- One-handed Sword
-(35107, 4416, 22), -- Defending Army
+(35107, 4408, 10), -- HP Modifiers
+(35107, 4409, 11), -- MP Modifiers
+(35107, 4410, 13), -- P. Atk. Modifiers
+(35107, 4411, 11), -- M. Atk. Modifiers
+(35107, 4412, 11), -- P. Def. Modifiers
+(35107, 4413, 11), -- M. Def. Modifiers
+(35107, 4414, 2), -- Armor Type
+(35107, 4415, 3), -- Weapon Type
+(35107, 4416, 22), -- Races
 -- Royal Knight
 (35108, 4045, 1), -- Resist Full Magic Attack
-(35108, 4408, 16), -- HP Increase (8x)
-(35108, 4409, 11), -- MP Increase (3x)
-(35108, 4410, 18), -- Extremely Strong P. Atk.
-(35108, 4411, 11), -- Average M. Atk.
-(35108, 4412, 11), -- Average P. Def.
-(35108, 4413, 11), -- Average M. Def.
-(35108, 4414, 2), -- Standard Type
-(35108, 4415, 3), -- One-handed Sword
-(35108, 4416, 22), -- Defending Army
+(35108, 4408, 16), -- HP Modifiers
+(35108, 4409, 11), -- MP Modifiers
+(35108, 4410, 18), -- P. Atk. Modifiers
+(35108, 4411, 11), -- M. Atk. Modifiers
+(35108, 4412, 11), -- P. Def. Modifiers
+(35108, 4413, 11), -- M. Def. Modifiers
+(35108, 4414, 2), -- Armor Type
+(35108, 4415, 3), -- Weapon Type
+(35108, 4416, 22), -- Races
 -- Court Sorcerer
 (35109, 4026, 1), -- Gludio Flame
 (35109, 4045, 1), -- Resist Full Magic Attack
-(35109, 4408, 16), -- HP Increase (8x)
-(35109, 4409, 11), -- MP Increase (3x)
-(35109, 4410, 18), -- Extremely Strong P. Atk.
-(35109, 4411, 11), -- Average M. Atk.
-(35109, 4412, 11), -- Average P. Def.
-(35109, 4413, 11), -- Average M. Def.
-(35109, 4414, 2), -- Standard Type
-(35109, 4415, 5), -- Blunt Weapons
-(35109, 4416, 22), -- Defending Army
+(35109, 4408, 16), -- HP Modifiers
+(35109, 4409, 11), -- MP Modifiers
+(35109, 4410, 18), -- P. Atk. Modifiers
+(35109, 4411, 11), -- M. Atk. Modifiers
+(35109, 4412, 11), -- P. Def. Modifiers
+(35109, 4413, 11), -- M. Def. Modifiers
+(35109, 4414, 2), -- Armor Type
+(35109, 4415, 5), -- Weapon Type
+(35109, 4416, 22), -- Races
 -- Court Sorcerer
 (35110, 4027, 1), -- Gludio Heal
 (35110, 4045, 1), -- Resist Full Magic Attack
-(35110, 4408, 16), -- HP Increase (8x)
-(35110, 4409, 11), -- MP Increase (3x)
-(35110, 4410, 18), -- Extremely Strong P. Atk.
-(35110, 4411, 11), -- Average M. Atk.
-(35110, 4412, 11), -- Average P. Def.
-(35110, 4413, 11), -- Average M. Def.
-(35110, 4414, 2), -- Standard Type
-(35110, 4415, 5), -- Blunt Weapons
-(35110, 4416, 22), -- Defending Army
+(35110, 4408, 16), -- HP Modifiers
+(35110, 4409, 11), -- MP Modifiers
+(35110, 4410, 18), -- P. Atk. Modifiers
+(35110, 4411, 11), -- M. Atk. Modifiers
+(35110, 4412, 11), -- P. Def. Modifiers
+(35110, 4413, 11), -- M. Def. Modifiers
+(35110, 4414, 2), -- Armor Type
+(35110, 4415, 5), -- Weapon Type
+(35110, 4416, 22), -- Races
 -- Court Guard
 (35111, 4045, 1), -- Resist Full Magic Attack
-(35111, 4408, 16), -- HP Increase (8x)
-(35111, 4409, 11), -- MP Increase (3x)
-(35111, 4410, 18), -- Extremely Strong P. Atk.
-(35111, 4411, 11), -- Average M. Atk.
-(35111, 4412, 11), -- Average P. Def.
-(35111, 4413, 11), -- Average M. Def.
-(35111, 4414, 2), -- Standard Type
-(35111, 4415, 11), -- Spears
-(35111, 4416, 22), -- Defending Army
+(35111, 4408, 16), -- HP Modifiers
+(35111, 4409, 11), -- MP Modifiers
+(35111, 4410, 18), -- P. Atk. Modifiers
+(35111, 4411, 11), -- M. Atk. Modifiers
+(35111, 4412, 11), -- P. Def. Modifiers
+(35111, 4413, 11), -- M. Def. Modifiers
+(35111, 4414, 2), -- Armor Type
+(35111, 4415, 11), -- Weapon Type
+(35111, 4416, 22), -- Races
 -- Guard
 (35112, 4045, 1), -- Resist Full Magic Attack
-(35112, 4408, 16), -- HP Increase (8x)
-(35112, 4409, 11), -- MP Increase (3x)
-(35112, 4410, 18), -- Extremely Strong P. Atk.
-(35112, 4411, 11), -- Average M. Atk.
-(35112, 4412, 11), -- Average P. Def.
-(35112, 4413, 11), -- Average M. Def.
-(35112, 4414, 2), -- Standard Type
-(35112, 4415, 11), -- Spears
-(35112, 4416, 22), -- Defending Army
+(35112, 4408, 16), -- HP Modifiers
+(35112, 4409, 11), -- MP Modifiers
+(35112, 4410, 18), -- P. Atk. Modifiers
+(35112, 4411, 11), -- M. Atk. Modifiers
+(35112, 4412, 11), -- P. Def. Modifiers
+(35112, 4413, 11), -- M. Def. Modifiers
+(35112, 4414, 2), -- Armor Type
+(35112, 4415, 11), -- Weapon Type
+(35112, 4416, 22), -- Races
 -- Guard
 (35113, 4045, 1), -- Resist Full Magic Attack
-(35113, 4408, 16), -- HP Increase (8x)
-(35113, 4409, 11), -- MP Increase (3x)
-(35113, 4410, 18), -- Extremely Strong P. Atk.
-(35113, 4411, 11), -- Average M. Atk.
-(35113, 4412, 11), -- Average P. Def.
-(35113, 4413, 11), -- Average M. Def.
-(35113, 4414, 2), -- Standard Type
-(35113, 4415, 3), -- One-handed Sword
-(35113, 4416, 22), -- Defending Army
+(35113, 4408, 16), -- HP Modifiers
+(35113, 4409, 11), -- MP Modifiers
+(35113, 4410, 18), -- P. Atk. Modifiers
+(35113, 4411, 11), -- M. Atk. Modifiers
+(35113, 4412, 11), -- P. Def. Modifiers
+(35113, 4413, 11), -- M. Def. Modifiers
+(35113, 4414, 2), -- Armor Type
+(35113, 4415, 3), -- Weapon Type
+(35113, 4416, 22), -- Races
 -- Guard
 (35114, 4045, 1), -- Resist Full Magic Attack
-(35114, 4408, 16), -- HP Increase (8x)
-(35114, 4409, 11), -- MP Increase (3x)
-(35114, 4410, 18), -- Extremely Strong P. Atk.
-(35114, 4411, 11), -- Average M. Atk.
-(35114, 4412, 11), -- Average P. Def.
-(35114, 4413, 11), -- Average M. Def.
-(35114, 4414, 2), -- Standard Type
-(35114, 4415, 9), -- Bows
-(35114, 4416, 22), -- Defending Army
+(35114, 4408, 16), -- HP Modifiers
+(35114, 4409, 11), -- MP Modifiers
+(35114, 4410, 18), -- P. Atk. Modifiers
+(35114, 4411, 11), -- M. Atk. Modifiers
+(35114, 4412, 11), -- P. Def. Modifiers
+(35114, 4413, 11), -- M. Def. Modifiers
+(35114, 4414, 2), -- Armor Type
+(35114, 4415, 9), -- Weapon Type
+(35114, 4416, 22), -- Races
 -- Guard
 (35115, 4045, 1), -- Resist Full Magic Attack
-(35115, 4408, 16), -- HP Increase (8x)
-(35115, 4409, 11), -- MP Increase (3x)
-(35115, 4410, 18), -- Extremely Strong P. Atk.
-(35115, 4411, 11), -- Average M. Atk.
-(35115, 4412, 11), -- Average P. Def.
-(35115, 4413, 11), -- Average M. Def.
-(35115, 4414, 2), -- Standard Type
-(35115, 4415, 11), -- Spears
-(35115, 4416, 22), -- Defending Army
+(35115, 4408, 16), -- HP Modifiers
+(35115, 4409, 11), -- MP Modifiers
+(35115, 4410, 18), -- P. Atk. Modifiers
+(35115, 4411, 11), -- M. Atk. Modifiers
+(35115, 4412, 11), -- P. Def. Modifiers
+(35115, 4413, 11), -- M. Def. Modifiers
+(35115, 4414, 2), -- Armor Type
+(35115, 4415, 11), -- Weapon Type
+(35115, 4416, 22), -- Races
 -- Guard
 (35116, 4045, 1), -- Resist Full Magic Attack
-(35116, 4408, 16), -- HP Increase (8x)
-(35116, 4409, 11), -- MP Increase (3x)
-(35116, 4410, 18), -- Extremely Strong P. Atk.
-(35116, 4411, 11), -- Average M. Atk.
-(35116, 4412, 11), -- Average P. Def.
-(35116, 4413, 11), -- Average M. Def.
-(35116, 4414, 2), -- Standard Type
-(35116, 4415, 3), -- One-handed Sword
-(35116, 4416, 22), -- Defending Army
+(35116, 4408, 16), -- HP Modifiers
+(35116, 4409, 11), -- MP Modifiers
+(35116, 4410, 18), -- P. Atk. Modifiers
+(35116, 4411, 11), -- M. Atk. Modifiers
+(35116, 4412, 11), -- P. Def. Modifiers
+(35116, 4413, 11), -- M. Def. Modifiers
+(35116, 4414, 2), -- Armor Type
+(35116, 4415, 3), -- Weapon Type
+(35116, 4416, 22), -- Races
 -- Guard
 (35117, 4045, 1), -- Resist Full Magic Attack
-(35117, 4408, 16), -- HP Increase (8x)
-(35117, 4409, 11), -- MP Increase (3x)
-(35117, 4410, 18), -- Extremely Strong P. Atk.
-(35117, 4411, 11), -- Average M. Atk.
-(35117, 4412, 11), -- Average P. Def.
-(35117, 4413, 11), -- Average M. Def.
-(35117, 4414, 2), -- Standard Type
-(35117, 4415, 9), -- Bows
-(35117, 4416, 22), -- Defending Army
+(35117, 4408, 16), -- HP Modifiers
+(35117, 4409, 11), -- MP Modifiers
+(35117, 4410, 18), -- P. Atk. Modifiers
+(35117, 4411, 11), -- M. Atk. Modifiers
+(35117, 4412, 11), -- P. Def. Modifiers
+(35117, 4413, 11), -- M. Def. Modifiers
+(35117, 4414, 2), -- Armor Type
+(35117, 4415, 9), -- Weapon Type
+(35117, 4416, 22), -- Races
 -- Guard
 (35118, 4045, 1), -- Resist Full Magic Attack
-(35118, 4408, 16), -- HP Increase (8x)
-(35118, 4409, 11), -- MP Increase (3x)
-(35118, 4410, 18), -- Extremely Strong P. Atk.
-(35118, 4411, 11), -- Average M. Atk.
-(35118, 4412, 11), -- Average P. Def.
-(35118, 4413, 11), -- Average M. Def.
-(35118, 4414, 2), -- Standard Type
-(35118, 4415, 11), -- Spears
-(35118, 4416, 22), -- Defending Army
+(35118, 4408, 16), -- HP Modifiers
+(35118, 4409, 11), -- MP Modifiers
+(35118, 4410, 18), -- P. Atk. Modifiers
+(35118, 4411, 11), -- M. Atk. Modifiers
+(35118, 4412, 11), -- P. Def. Modifiers
+(35118, 4413, 11), -- M. Def. Modifiers
+(35118, 4414, 2), -- Armor Type
+(35118, 4415, 11), -- Weapon Type
+(35118, 4416, 22), -- Races
 -- Guard
 (35119, 4045, 1), -- Resist Full Magic Attack
-(35119, 4408, 16), -- HP Increase (8x)
-(35119, 4409, 11), -- MP Increase (3x)
-(35119, 4410, 18), -- Extremely Strong P. Atk.
-(35119, 4411, 11), -- Average M. Atk.
-(35119, 4412, 11), -- Average P. Def.
-(35119, 4413, 11), -- Average M. Def.
-(35119, 4414, 2), -- Standard Type
-(35119, 4415, 3), -- One-handed Sword
-(35119, 4416, 22), -- Defending Army
+(35119, 4408, 16), -- HP Modifiers
+(35119, 4409, 11), -- MP Modifiers
+(35119, 4410, 18), -- P. Atk. Modifiers
+(35119, 4411, 11), -- M. Atk. Modifiers
+(35119, 4412, 11), -- P. Def. Modifiers
+(35119, 4413, 11), -- M. Def. Modifiers
+(35119, 4414, 2), -- Armor Type
+(35119, 4415, 3), -- Weapon Type
+(35119, 4416, 22), -- Races
 -- Guard
 (35120, 4045, 1), -- Resist Full Magic Attack
-(35120, 4408, 16), -- HP Increase (8x)
-(35120, 4409, 11), -- MP Increase (3x)
-(35120, 4410, 18), -- Extremely Strong P. Atk.
-(35120, 4411, 11), -- Average M. Atk.
-(35120, 4412, 11), -- Average P. Def.
-(35120, 4413, 11), -- Average M. Def.
-(35120, 4414, 2), -- Standard Type
-(35120, 4415, 9), -- Bows
-(35120, 4416, 22), -- Defending Army
+(35120, 4408, 16), -- HP Modifiers
+(35120, 4409, 11), -- MP Modifiers
+(35120, 4410, 18), -- P. Atk. Modifiers
+(35120, 4411, 11), -- M. Atk. Modifiers
+(35120, 4412, 11), -- P. Def. Modifiers
+(35120, 4413, 11), -- M. Def. Modifiers
+(35120, 4414, 2), -- Armor Type
+(35120, 4415, 9), -- Weapon Type
+(35120, 4416, 22), -- Races
 -- Royal Knight
 (35121, 4045, 1), -- Resist Full Magic Attack
-(35121, 4408, 16), -- HP Increase (8x)
-(35121, 4409, 11), -- MP Increase (3x)
-(35121, 4410, 18), -- Extremely Strong P. Atk.
-(35121, 4411, 11), -- Average M. Atk.
-(35121, 4412, 11), -- Average P. Def.
-(35121, 4413, 11), -- Average M. Def.
-(35121, 4414, 2), -- Standard Type
-(35121, 4415, 3), -- One-handed Sword
-(35121, 4416, 22), -- Defending Army
+(35121, 4408, 16), -- HP Modifiers
+(35121, 4409, 11), -- MP Modifiers
+(35121, 4410, 18), -- P. Atk. Modifiers
+(35121, 4411, 11), -- M. Atk. Modifiers
+(35121, 4412, 11), -- P. Def. Modifiers
+(35121, 4413, 11), -- M. Def. Modifiers
+(35121, 4414, 2), -- Armor Type
+(35121, 4415, 3), -- Weapon Type
+(35121, 4416, 22), -- Races
 -- Court Sorcerer
 (35122, 4026, 1), -- Gludio Flame
 (35122, 4045, 1), -- Resist Full Magic Attack
-(35122, 4408, 16), -- HP Increase (8x)
-(35122, 4409, 11), -- MP Increase (3x)
-(35122, 4410, 18), -- Extremely Strong P. Atk.
-(35122, 4411, 11), -- Average M. Atk.
-(35122, 4412, 11), -- Average P. Def.
-(35122, 4413, 11), -- Average M. Def.
-(35122, 4414, 2), -- Standard Type
-(35122, 4415, 5), -- Blunt Weapons
-(35122, 4416, 22), -- Defending Army
+(35122, 4408, 16), -- HP Modifiers
+(35122, 4409, 11), -- MP Modifiers
+(35122, 4410, 18), -- P. Atk. Modifiers
+(35122, 4411, 11), -- M. Atk. Modifiers
+(35122, 4412, 11), -- P. Def. Modifiers
+(35122, 4413, 11), -- M. Def. Modifiers
+(35122, 4414, 2), -- Armor Type
+(35122, 4415, 5), -- Weapon Type
+(35122, 4416, 22), -- Races
 -- Court Sorcerer
 (35123, 4027, 1), -- Gludio Heal
 (35123, 4045, 1), -- Resist Full Magic Attack
-(35123, 4408, 16), -- HP Increase (8x)
-(35123, 4409, 11), -- MP Increase (3x)
-(35123, 4410, 18), -- Extremely Strong P. Atk.
-(35123, 4411, 11), -- Average M. Atk.
-(35123, 4412, 11), -- Average P. Def.
-(35123, 4413, 11), -- Average M. Def.
-(35123, 4414, 2), -- Standard Type
-(35123, 4415, 5), -- Blunt Weapons
-(35123, 4416, 22), -- Defending Army
+(35123, 4408, 16), -- HP Modifiers
+(35123, 4409, 11), -- MP Modifiers
+(35123, 4410, 18), -- P. Atk. Modifiers
+(35123, 4411, 11), -- M. Atk. Modifiers
+(35123, 4412, 11), -- P. Def. Modifiers
+(35123, 4413, 11), -- M. Def. Modifiers
+(35123, 4414, 2), -- Armor Type
+(35123, 4415, 5), -- Weapon Type
+(35123, 4416, 22), -- Races
 -- Court Guard
 (35124, 4045, 1), -- Resist Full Magic Attack
-(35124, 4408, 16), -- HP Increase (8x)
-(35124, 4409, 11), -- MP Increase (3x)
-(35124, 4410, 18), -- Extremely Strong P. Atk.
-(35124, 4411, 11), -- Average M. Atk.
-(35124, 4412, 11), -- Average P. Def.
-(35124, 4413, 11), -- Average M. Def.
-(35124, 4414, 2), -- Standard Type
-(35124, 4415, 11), -- Spears
-(35124, 4416, 22), -- Defending Army
+(35124, 4408, 16), -- HP Modifiers
+(35124, 4409, 11), -- MP Modifiers
+(35124, 4410, 18), -- P. Atk. Modifiers
+(35124, 4411, 11), -- M. Atk. Modifiers
+(35124, 4412, 11), -- P. Def. Modifiers
+(35124, 4413, 11), -- M. Def. Modifiers
+(35124, 4414, 2), -- Armor Type
+(35124, 4415, 11), -- Weapon Type
+(35124, 4416, 22), -- Races
 -- Guard
 (35125, 4045, 1), -- Resist Full Magic Attack
-(35125, 4408, 16), -- HP Increase (8x)
-(35125, 4409, 11), -- MP Increase (3x)
-(35125, 4410, 18), -- Extremely Strong P. Atk.
-(35125, 4411, 11), -- Average M. Atk.
-(35125, 4412, 11), -- Average P. Def.
-(35125, 4413, 11), -- Average M. Def.
-(35125, 4414, 2), -- Standard Type
-(35125, 4415, 11), -- Spears
-(35125, 4416, 22), -- Defending Army
+(35125, 4408, 16), -- HP Modifiers
+(35125, 4409, 11), -- MP Modifiers
+(35125, 4410, 18), -- P. Atk. Modifiers
+(35125, 4411, 11), -- M. Atk. Modifiers
+(35125, 4412, 11), -- P. Def. Modifiers
+(35125, 4413, 11), -- M. Def. Modifiers
+(35125, 4414, 2), -- Armor Type
+(35125, 4415, 11), -- Weapon Type
+(35125, 4416, 22), -- Races
 -- Guard
 (35126, 4045, 1), -- Resist Full Magic Attack
-(35126, 4408, 16), -- HP Increase (8x)
-(35126, 4409, 11), -- MP Increase (3x)
-(35126, 4410, 18), -- Extremely Strong P. Atk.
-(35126, 4411, 11), -- Average M. Atk.
-(35126, 4412, 11), -- Average P. Def.
-(35126, 4413, 11), -- Average M. Def.
-(35126, 4414, 2), -- Standard Type
-(35126, 4415, 3), -- One-handed Sword
-(35126, 4416, 22), -- Defending Army
+(35126, 4408, 16), -- HP Modifiers
+(35126, 4409, 11), -- MP Modifiers
+(35126, 4410, 18), -- P. Atk. Modifiers
+(35126, 4411, 11), -- M. Atk. Modifiers
+(35126, 4412, 11), -- P. Def. Modifiers
+(35126, 4413, 11), -- M. Def. Modifiers
+(35126, 4414, 2), -- Armor Type
+(35126, 4415, 3), -- Weapon Type
+(35126, 4416, 22), -- Races
 -- Guard
 (35127, 4045, 1), -- Resist Full Magic Attack
-(35127, 4408, 16), -- HP Increase (8x)
-(35127, 4409, 11), -- MP Increase (3x)
-(35127, 4410, 18), -- Extremely Strong P. Atk.
-(35127, 4411, 11), -- Average M. Atk.
-(35127, 4412, 11), -- Average P. Def.
-(35127, 4413, 11), -- Average M. Def.
-(35127, 4414, 2), -- Standard Type
-(35127, 4415, 9), -- Bows
-(35127, 4416, 22), -- Defending Army
+(35127, 4408, 16), -- HP Modifiers
+(35127, 4409, 11), -- MP Modifiers
+(35127, 4410, 18), -- P. Atk. Modifiers
+(35127, 4411, 11), -- M. Atk. Modifiers
+(35127, 4412, 11), -- P. Def. Modifiers
+(35127, 4413, 11), -- M. Def. Modifiers
+(35127, 4414, 2), -- Armor Type
+(35127, 4415, 9), -- Weapon Type
+(35127, 4416, 22), -- Races
 -- Guard
 (35128, 4045, 1), -- Resist Full Magic Attack
-(35128, 4408, 16), -- HP Increase (8x)
-(35128, 4409, 11), -- MP Increase (3x)
-(35128, 4410, 18), -- Extremely Strong P. Atk.
-(35128, 4411, 11), -- Average M. Atk.
-(35128, 4412, 11), -- Average P. Def.
-(35128, 4413, 11), -- Average M. Def.
-(35128, 4414, 2), -- Standard Type
-(35128, 4415, 11), -- Spears
-(35128, 4416, 22), -- Defending Army
+(35128, 4408, 16), -- HP Modifiers
+(35128, 4409, 11), -- MP Modifiers
+(35128, 4410, 18), -- P. Atk. Modifiers
+(35128, 4411, 11), -- M. Atk. Modifiers
+(35128, 4412, 11), -- P. Def. Modifiers
+(35128, 4413, 11), -- M. Def. Modifiers
+(35128, 4414, 2), -- Armor Type
+(35128, 4415, 11), -- Weapon Type
+(35128, 4416, 22), -- Races
 -- Guard
 (35129, 4045, 1), -- Resist Full Magic Attack
-(35129, 4408, 16), -- HP Increase (8x)
-(35129, 4409, 11), -- MP Increase (3x)
-(35129, 4410, 18), -- Extremely Strong P. Atk.
-(35129, 4411, 11), -- Average M. Atk.
-(35129, 4412, 11), -- Average P. Def.
-(35129, 4413, 11), -- Average M. Def.
-(35129, 4414, 2), -- Standard Type
-(35129, 4415, 3), -- One-handed Sword
-(35129, 4416, 22), -- Defending Army
+(35129, 4408, 16), -- HP Modifiers
+(35129, 4409, 11), -- MP Modifiers
+(35129, 4410, 18), -- P. Atk. Modifiers
+(35129, 4411, 11), -- M. Atk. Modifiers
+(35129, 4412, 11), -- P. Def. Modifiers
+(35129, 4413, 11), -- M. Def. Modifiers
+(35129, 4414, 2), -- Armor Type
+(35129, 4415, 3), -- Weapon Type
+(35129, 4416, 22), -- Races
 -- Guard
 (35130, 4045, 1), -- Resist Full Magic Attack
-(35130, 4408, 16), -- HP Increase (8x)
-(35130, 4409, 11), -- MP Increase (3x)
-(35130, 4410, 18), -- Extremely Strong P. Atk.
-(35130, 4411, 11), -- Average M. Atk.
-(35130, 4412, 11), -- Average P. Def.
-(35130, 4413, 11), -- Average M. Def.
-(35130, 4414, 2), -- Standard Type
-(35130, 4415, 9), -- Bows
-(35130, 4416, 22), -- Defending Army
+(35130, 4408, 16), -- HP Modifiers
+(35130, 4409, 11), -- MP Modifiers
+(35130, 4410, 18), -- P. Atk. Modifiers
+(35130, 4411, 11), -- M. Atk. Modifiers
+(35130, 4412, 11), -- P. Def. Modifiers
+(35130, 4413, 11), -- M. Def. Modifiers
+(35130, 4414, 2), -- Armor Type
+(35130, 4415, 9), -- Weapon Type
+(35130, 4416, 22), -- Races
 -- Guard
 (35131, 4045, 1), -- Resist Full Magic Attack
-(35131, 4408, 16), -- HP Increase (8x)
-(35131, 4409, 11), -- MP Increase (3x)
-(35131, 4410, 18), -- Extremely Strong P. Atk.
-(35131, 4411, 11), -- Average M. Atk.
-(35131, 4412, 11), -- Average P. Def.
-(35131, 4413, 11), -- Average M. Def.
-(35131, 4414, 2), -- Standard Type
-(35131, 4415, 11), -- Spears
-(35131, 4416, 22), -- Defending Army
+(35131, 4408, 16), -- HP Modifiers
+(35131, 4409, 11), -- MP Modifiers
+(35131, 4410, 18), -- P. Atk. Modifiers
+(35131, 4411, 11), -- M. Atk. Modifiers
+(35131, 4412, 11), -- P. Def. Modifiers
+(35131, 4413, 11), -- M. Def. Modifiers
+(35131, 4414, 2), -- Armor Type
+(35131, 4415, 11), -- Weapon Type
+(35131, 4416, 22), -- Races
 -- Guard
 (35132, 4045, 1), -- Resist Full Magic Attack
-(35132, 4408, 16), -- HP Increase (8x)
-(35132, 4409, 11), -- MP Increase (3x)
-(35132, 4410, 18), -- Extremely Strong P. Atk.
-(35132, 4411, 11), -- Average M. Atk.
-(35132, 4412, 11), -- Average P. Def.
-(35132, 4413, 11), -- Average M. Def.
-(35132, 4414, 2), -- Standard Type
-(35132, 4415, 3), -- One-handed Sword
-(35132, 4416, 22), -- Defending Army
+(35132, 4408, 16), -- HP Modifiers
+(35132, 4409, 11), -- MP Modifiers
+(35132, 4410, 18), -- P. Atk. Modifiers
+(35132, 4411, 11), -- M. Atk. Modifiers
+(35132, 4412, 11), -- P. Def. Modifiers
+(35132, 4413, 11), -- M. Def. Modifiers
+(35132, 4414, 2), -- Armor Type
+(35132, 4415, 3), -- Weapon Type
+(35132, 4416, 22), -- Races
 -- Guard
 (35133, 4045, 1), -- Resist Full Magic Attack
-(35133, 4408, 16), -- HP Increase (8x)
-(35133, 4409, 11), -- MP Increase (3x)
-(35133, 4410, 18), -- Extremely Strong P. Atk.
-(35133, 4411, 11), -- Average M. Atk.
-(35133, 4412, 11), -- Average P. Def.
-(35133, 4413, 11), -- Average M. Def.
-(35133, 4414, 2), -- Standard Type
-(35133, 4415, 9), -- Bows
-(35133, 4416, 22), -- Defending Army
+(35133, 4408, 16), -- HP Modifiers
+(35133, 4409, 11), -- MP Modifiers
+(35133, 4410, 18), -- P. Atk. Modifiers
+(35133, 4411, 11), -- M. Atk. Modifiers
+(35133, 4412, 11), -- P. Def. Modifiers
+(35133, 4413, 11), -- M. Def. Modifiers
+(35133, 4414, 2), -- Armor Type
+(35133, 4415, 9), -- Weapon Type
+(35133, 4416, 22), -- Races
 -- Gatekeeper
 (35134, 4045, 1), -- Resist Full Magic Attack
-(35134, 4408, 1), -- HP Increase (1x)
-(35134, 4409, 1), -- MP Increase (1x)
-(35134, 4410, 11), -- Average P. Atk.
-(35134, 4411, 11), -- Average M. Atk.
-(35134, 4412, 11), -- Average P. Def.
-(35134, 4413, 11), -- Average M. Def.
-(35134, 4414, 2), -- Standard Type
-(35134, 4415, 3), -- One-handed Sword
-(35134, 4416, 23), -- Mercenaries
+(35134, 4408, 1), -- HP Modifiers
+(35134, 4409, 1), -- MP Modifiers
+(35134, 4410, 11), -- P. Atk. Modifiers
+(35134, 4411, 11), -- M. Atk. Modifiers
+(35134, 4412, 11), -- P. Def. Modifiers
+(35134, 4413, 11), -- M. Def. Modifiers
+(35134, 4414, 2), -- Armor Type
+(35134, 4415, 3), -- Weapon Type
+(35134, 4416, 23), -- Races
 -- Gatekeeper
 (35135, 4045, 1), -- Resist Full Magic Attack
-(35135, 4408, 1), -- HP Increase (1x)
-(35135, 4409, 1), -- MP Increase (1x)
-(35135, 4410, 11), -- Average P. Atk.
-(35135, 4411, 11), -- Average M. Atk.
-(35135, 4412, 11), -- Average P. Def.
-(35135, 4413, 11), -- Average M. Def.
-(35135, 4414, 2), -- Standard Type
-(35135, 4415, 3), -- One-handed Sword
-(35135, 4416, 23), -- Mercenaries
+(35135, 4408, 1), -- HP Modifiers
+(35135, 4409, 1), -- MP Modifiers
+(35135, 4410, 11), -- P. Atk. Modifiers
+(35135, 4411, 11), -- M. Atk. Modifiers
+(35135, 4412, 11), -- P. Def. Modifiers
+(35135, 4413, 11), -- M. Def. Modifiers
+(35135, 4414, 2), -- Armor Type
+(35135, 4415, 3), -- Weapon Type
+(35135, 4416, 23), -- Races
 -- Gatekeeper
 (35136, 4045, 1), -- Resist Full Magic Attack
-(35136, 4408, 1), -- HP Increase (1x)
-(35136, 4409, 1), -- MP Increase (1x)
-(35136, 4410, 11), -- Average P. Atk.
-(35136, 4411, 11), -- Average M. Atk.
-(35136, 4412, 11), -- Average P. Def.
-(35136, 4413, 11), -- Average M. Def.
-(35136, 4414, 2), -- Standard Type
-(35136, 4415, 3), -- One-handed Sword
-(35136, 4416, 23), -- Mercenaries
+(35136, 4408, 1), -- HP Modifiers
+(35136, 4409, 1), -- MP Modifiers
+(35136, 4410, 11), -- P. Atk. Modifiers
+(35136, 4411, 11), -- M. Atk. Modifiers
+(35136, 4412, 11), -- P. Def. Modifiers
+(35136, 4413, 11), -- M. Def. Modifiers
+(35136, 4414, 2), -- Armor Type
+(35136, 4415, 3), -- Weapon Type
+(35136, 4416, 23), -- Races
 -- Mass Gatekeeper
 (35137, 4045, 1), -- Resist Full Magic Attack
-(35137, 4408, 1), -- HP Increase (1x)
-(35137, 4409, 1), -- MP Increase (1x)
-(35137, 4410, 11), -- Average P. Atk.
-(35137, 4411, 11), -- Average M. Atk.
-(35137, 4412, 11), -- Average P. Def.
-(35137, 4413, 11), -- Average M. Def.
-(35137, 4414, 2), -- Standard Type
-(35137, 4415, 3), -- One-handed Sword
-(35137, 4416, 14), -- Humans
+(35137, 4408, 1), -- HP Modifiers
+(35137, 4409, 1), -- MP Modifiers
+(35137, 4410, 11), -- P. Atk. Modifiers
+(35137, 4411, 11), -- M. Atk. Modifiers
+(35137, 4412, 11), -- P. Def. Modifiers
+(35137, 4413, 11), -- M. Def. Modifiers
+(35137, 4414, 2), -- Armor Type
+(35137, 4415, 3), -- Weapon Type
+(35137, 4416, 14), -- Races
 -- Outer Doorman
 (35138, 4045, 1), -- Resist Full Magic Attack
-(35138, 4408, 1), -- HP Increase (1x)
-(35138, 4409, 1), -- MP Increase (1x)
-(35138, 4410, 11), -- Average P. Atk.
-(35138, 4411, 11), -- Average M. Atk.
-(35138, 4412, 11), -- Average P. Def.
-(35138, 4413, 11), -- Average M. Def.
-(35138, 4414, 2), -- Standard Type
-(35138, 4415, 3), -- One-handed Sword
-(35138, 4416, 14), -- Humans
+(35138, 4408, 1), -- HP Modifiers
+(35138, 4409, 1), -- MP Modifiers
+(35138, 4410, 11), -- P. Atk. Modifiers
+(35138, 4411, 11), -- M. Atk. Modifiers
+(35138, 4412, 11), -- P. Def. Modifiers
+(35138, 4413, 11), -- M. Def. Modifiers
+(35138, 4414, 2), -- Armor Type
+(35138, 4415, 3), -- Weapon Type
+(35138, 4416, 14), -- Races
 -- Inner Doorman
 (35139, 4045, 1), -- Resist Full Magic Attack
-(35139, 4408, 1), -- HP Increase (1x)
-(35139, 4409, 1), -- MP Increase (1x)
-(35139, 4410, 11), -- Average P. Atk.
-(35139, 4411, 11), -- Average M. Atk.
-(35139, 4412, 11), -- Average P. Def.
-(35139, 4413, 11), -- Average M. Def.
-(35139, 4414, 2), -- Standard Type
-(35139, 4415, 3), -- One-handed Sword
-(35139, 4416, 14), -- Humans
+(35139, 4408, 1), -- HP Modifiers
+(35139, 4409, 1), -- MP Modifiers
+(35139, 4410, 11), -- P. Atk. Modifiers
+(35139, 4411, 11), -- M. Atk. Modifiers
+(35139, 4412, 11), -- P. Def. Modifiers
+(35139, 4413, 11), -- M. Def. Modifiers
+(35139, 4414, 2), -- Armor Type
+(35139, 4415, 3), -- Weapon Type
+(35139, 4416, 14), -- Races
 -- Blacksmith
 (35140, 4045, 1), -- Resist Full Magic Attack
-(35140, 4408, 1), -- HP Increase (1x)
-(35140, 4409, 1), -- MP Increase (1x)
-(35140, 4410, 11), -- Average P. Atk.
-(35140, 4411, 11), -- Average M. Atk.
-(35140, 4412, 11), -- Average P. Def.
-(35140, 4413, 11), -- Average M. Def.
-(35140, 4414, 2), -- Standard Type
-(35140, 4415, 3), -- One-handed Sword
-(35140, 4416, 18), -- Dwarves
+(35140, 4408, 1), -- HP Modifiers
+(35140, 4409, 1), -- MP Modifiers
+(35140, 4410, 11), -- P. Atk. Modifiers
+(35140, 4411, 11), -- M. Atk. Modifiers
+(35140, 4412, 11), -- P. Def. Modifiers
+(35140, 4413, 11), -- M. Def. Modifiers
+(35140, 4414, 2), -- Armor Type
+(35140, 4415, 3), -- Weapon Type
+(35140, 4416, 18), -- Races
 -- Warehouse Keeper
 (35141, 4045, 1), -- Resist Full Magic Attack
-(35141, 4408, 1), -- HP Increase (1x)
-(35141, 4409, 1), -- MP Increase (1x)
-(35141, 4410, 11), -- Average P. Atk.
-(35141, 4411, 11), -- Average M. Atk.
-(35141, 4412, 11), -- Average P. Def.
-(35141, 4413, 11), -- Average M. Def.
-(35141, 4414, 2), -- Standard Type
-(35141, 4415, 3), -- One-handed Sword
-(35141, 4416, 18), -- Dwarves
+(35141, 4408, 1), -- HP Modifiers
+(35141, 4409, 1), -- MP Modifiers
+(35141, 4410, 11), -- P. Atk. Modifiers
+(35141, 4411, 11), -- M. Atk. Modifiers
+(35141, 4412, 11), -- P. Def. Modifiers
+(35141, 4413, 11), -- M. Def. Modifiers
+(35141, 4414, 2), -- Armor Type
+(35141, 4415, 3), -- Weapon Type
+(35141, 4416, 18), -- Races
 -- Crosby
 (35142, 4045, 1), -- Resist Full Magic Attack
-(35142, 4408, 1), -- HP Increase (1x)
-(35142, 4409, 1), -- MP Increase (1x)
-(35142, 4410, 11), -- Average P. Atk.
-(35142, 4411, 11), -- Average M. Atk.
-(35142, 4412, 11), -- Average P. Def.
-(35142, 4413, 11), -- Average M. Def.
-(35142, 4414, 2), -- Standard Type
-(35142, 4415, 3), -- One-handed Sword
-(35142, 4416, 14), -- Humans
+(35142, 4408, 1), -- HP Modifiers
+(35142, 4409, 1), -- MP Modifiers
+(35142, 4410, 11), -- P. Atk. Modifiers
+(35142, 4411, 11), -- M. Atk. Modifiers
+(35142, 4412, 11), -- P. Def. Modifiers
+(35142, 4413, 11), -- M. Def. Modifiers
+(35142, 4414, 2), -- Armor Type
+(35142, 4415, 3), -- Weapon Type
+(35142, 4416, 14), -- Races
 -- Hodler
 (35143, 4045, 1), -- Resist Full Magic Attack
-(35143, 4408, 1), -- HP Increase (1x)
-(35143, 4409, 1), -- MP Increase (1x)
-(35143, 4410, 11), -- Average P. Atk.
-(35143, 4411, 11), -- Average M. Atk.
-(35143, 4412, 11), -- Average P. Def.
-(35143, 4413, 11), -- Average M. Def.
-(35143, 4414, 2), -- Standard Type
-(35143, 4415, 3), -- One-handed Sword
-(35143, 4416, 14), -- Humans
+(35143, 4408, 1), -- HP Modifiers
+(35143, 4409, 1), -- MP Modifiers
+(35143, 4410, 11), -- P. Atk. Modifiers
+(35143, 4411, 11), -- M. Atk. Modifiers
+(35143, 4412, 11), -- P. Def. Modifiers
+(35143, 4413, 11), -- M. Def. Modifiers
+(35143, 4414, 2), -- Armor Type
+(35143, 4415, 3), -- Weapon Type
+(35143, 4416, 14), -- Races
 -- Mercenary Manager Sanford
 (35144, 4045, 1), -- Resist Full Magic Attack
-(35144, 4408, 1), -- HP Increase (1x)
-(35144, 4409, 1), -- MP Increase (1x)
-(35144, 4410, 11), -- Average P. Atk.
-(35144, 4411, 11), -- Average M. Atk.
-(35144, 4412, 11), -- Average P. Def.
-(35144, 4413, 11), -- Average M. Def.
-(35144, 4414, 2), -- Standard Type
-(35144, 4415, 3), -- One-handed Sword
-(35144, 4416, 14), -- Humans
+(35144, 4408, 1), -- HP Modifiers
+(35144, 4409, 1), -- MP Modifiers
+(35144, 4410, 11), -- P. Atk. Modifiers
+(35144, 4411, 11), -- M. Atk. Modifiers
+(35144, 4412, 11), -- P. Def. Modifiers
+(35144, 4413, 11), -- M. Def. Modifiers
+(35144, 4414, 2), -- Armor Type
+(35144, 4415, 3), -- Weapon Type
+(35144, 4416, 14), -- Races
 -- Manor Manager
 (35145, 4045, 1), -- Resist Full Magic Attack
-(35145, 4408, 1), -- HP Increase (1x)
-(35145, 4409, 1), -- MP Increase (1x)
-(35145, 4410, 11), -- Average P. Atk.
-(35145, 4411, 11), -- Average M. Atk.
-(35145, 4412, 11), -- Average P. Def.
-(35145, 4413, 11), -- Average M. Def.
-(35145, 4414, 2), -- Standard Type
-(35145, 4415, 3), -- One-handed Sword
-(35145, 4416, 14), -- Humans
+(35145, 4408, 1), -- HP Modifiers
+(35145, 4409, 1), -- MP Modifiers
+(35145, 4410, 11), -- P. Atk. Modifiers
+(35145, 4411, 11), -- M. Atk. Modifiers
+(35145, 4412, 11), -- P. Def. Modifiers
+(35145, 4413, 11), -- M. Def. Modifiers
+(35145, 4414, 2), -- Armor Type
+(35145, 4415, 3), -- Weapon Type
+(35145, 4416, 14), -- Races
 -- Gibbson
 (35146, 4045, 1), -- Resist Full Magic Attack
-(35146, 4408, 1), -- HP Increase (1x)
-(35146, 4409, 1), -- MP Increase (1x)
-(35146, 4410, 11), -- Average P. Atk.
-(35146, 4411, 11), -- Average M. Atk.
-(35146, 4412, 11), -- Average P. Def.
-(35146, 4413, 11), -- Average M. Def.
-(35146, 4414, 2), -- Standard Type
-(35146, 4415, 3), -- One-handed Sword
-(35146, 4416, 14), -- Humans
+(35146, 4408, 1), -- HP Modifiers
+(35146, 4409, 1), -- MP Modifiers
+(35146, 4410, 11), -- P. Atk. Modifiers
+(35146, 4411, 11), -- M. Atk. Modifiers
+(35146, 4412, 11), -- P. Def. Modifiers
+(35146, 4413, 11), -- M. Def. Modifiers
+(35146, 4414, 2), -- Armor Type
+(35146, 4415, 3), -- Weapon Type
+(35146, 4416, 14), -- Races
 -- Giran Holy Artifact
 (35147, 4045, 1), -- Resist Full Magic Attack
-(35147, 4390, 1), -- Mystic Immunity
-(35147, 4408, 1), -- HP Increase (1x)
-(35147, 4409, 1), -- MP Increase (1x)
-(35147, 4410, 11), -- Average P. Atk.
-(35147, 4411, 11), -- Average M. Atk.
-(35147, 4412, 11), -- Average P. Def.
-(35147, 4413, 11), -- Average M. Def.
-(35147, 4414, 2), -- Standard Type
-(35147, 4415, 3), -- One-handed Sword
-(35147, 4416, 19), -- Others
+(35147, 4390, 1), -- NPC Abnormal Immunity
+(35147, 4408, 1), -- HP Modifiers
+(35147, 4409, 1), -- MP Modifiers
+(35147, 4410, 11), -- P. Atk. Modifiers
+(35147, 4411, 11), -- M. Atk. Modifiers
+(35147, 4412, 11), -- P. Def. Modifiers
+(35147, 4413, 11), -- M. Def. Modifiers
+(35147, 4414, 2), -- Armor Type
+(35147, 4415, 3), -- Weapon Type
+(35147, 4416, 19), -- Races
 -- Baron Carmon Esthus
 (35148, 4045, 1), -- Resist Full Magic Attack
-(35148, 4408, 16), -- HP Increase (8x)
-(35148, 4409, 11), -- MP Increase (3x)
-(35148, 4410, 18), -- Extremely Strong P. Atk.
-(35148, 4411, 11), -- Average M. Atk.
-(35148, 4412, 13), -- Slightly Strong P. Def.
-(35148, 4413, 13), -- Slightly Strong M. Def.
-(35148, 4414, 2), -- Standard Type
-(35148, 4415, 3), -- One-handed Sword
-(35148, 4416, 22), -- Defending Army
+(35148, 4408, 16), -- HP Modifiers
+(35148, 4409, 11), -- MP Modifiers
+(35148, 4410, 18), -- P. Atk. Modifiers
+(35148, 4411, 11), -- M. Atk. Modifiers
+(35148, 4412, 13), -- P. Def. Modifiers
+(35148, 4413, 13), -- M. Def. Modifiers
+(35148, 4414, 2), -- Armor Type
+(35148, 4415, 3), -- Weapon Type
+(35148, 4416, 22), -- Races
 -- Ulric
 (35149, 4045, 1), -- Resist Full Magic Attack
-(35149, 4408, 10), -- HP Increase (2x)
-(35149, 4409, 11), -- MP Increase (3x)
-(35149, 4410, 13), -- Slightly Strong P. Atk.
-(35149, 4411, 11), -- Average M. Atk.
-(35149, 4412, 11), -- Average P. Def.
-(35149, 4413, 11), -- Average M. Def.
-(35149, 4414, 2), -- Standard Type
-(35149, 4415, 3), -- One-handed Sword
-(35149, 4416, 22), -- Defending Army
+(35149, 4408, 10), -- HP Modifiers
+(35149, 4409, 11), -- MP Modifiers
+(35149, 4410, 13), -- P. Atk. Modifiers
+(35149, 4411, 11), -- M. Atk. Modifiers
+(35149, 4412, 11), -- P. Def. Modifiers
+(35149, 4413, 11), -- M. Def. Modifiers
+(35149, 4414, 2), -- Armor Type
+(35149, 4415, 3), -- Weapon Type
+(35149, 4416, 22), -- Races
 -- Royal Knight
 (35150, 4045, 1), -- Resist Full Magic Attack
-(35150, 4408, 16), -- HP Increase (8x)
-(35150, 4409, 11), -- MP Increase (3x)
-(35150, 4410, 18), -- Extremely Strong P. Atk.
-(35150, 4411, 11), -- Average M. Atk.
-(35150, 4412, 11), -- Average P. Def.
-(35150, 4413, 11), -- Average M. Def.
-(35150, 4414, 2), -- Standard Type
-(35150, 4415, 3), -- One-handed Sword
-(35150, 4416, 22), -- Defending Army
+(35150, 4408, 16), -- HP Modifiers
+(35150, 4409, 11), -- MP Modifiers
+(35150, 4410, 18), -- P. Atk. Modifiers
+(35150, 4411, 11), -- M. Atk. Modifiers
+(35150, 4412, 11), -- P. Def. Modifiers
+(35150, 4413, 11), -- M. Def. Modifiers
+(35150, 4414, 2), -- Armor Type
+(35150, 4415, 3), -- Weapon Type
+(35150, 4416, 22), -- Races
 -- Court Sorcerer
 (35151, 4026, 1), -- Gludio Flame
 (35151, 4045, 1), -- Resist Full Magic Attack
-(35151, 4408, 16), -- HP Increase (8x)
-(35151, 4409, 11), -- MP Increase (3x)
-(35151, 4410, 18), -- Extremely Strong P. Atk.
-(35151, 4411, 11), -- Average M. Atk.
-(35151, 4412, 11), -- Average P. Def.
-(35151, 4413, 11), -- Average M. Def.
-(35151, 4414, 2), -- Standard Type
-(35151, 4415, 5), -- Blunt Weapons
-(35151, 4416, 22), -- Defending Army
+(35151, 4408, 16), -- HP Modifiers
+(35151, 4409, 11), -- MP Modifiers
+(35151, 4410, 18), -- P. Atk. Modifiers
+(35151, 4411, 11), -- M. Atk. Modifiers
+(35151, 4412, 11), -- P. Def. Modifiers
+(35151, 4413, 11), -- M. Def. Modifiers
+(35151, 4414, 2), -- Armor Type
+(35151, 4415, 5), -- Weapon Type
+(35151, 4416, 22), -- Races
 -- Court Sorcerer
 (35152, 4027, 1), -- Gludio Heal
 (35152, 4045, 1), -- Resist Full Magic Attack
-(35152, 4408, 16), -- HP Increase (8x)
-(35152, 4409, 11), -- MP Increase (3x)
-(35152, 4410, 18), -- Extremely Strong P. Atk.
-(35152, 4411, 11), -- Average M. Atk.
-(35152, 4412, 11), -- Average P. Def.
-(35152, 4413, 11), -- Average M. Def.
-(35152, 4414, 2), -- Standard Type
-(35152, 4415, 5), -- Blunt Weapons
-(35152, 4416, 22), -- Defending Army
+(35152, 4408, 16), -- HP Modifiers
+(35152, 4409, 11), -- MP Modifiers
+(35152, 4410, 18), -- P. Atk. Modifiers
+(35152, 4411, 11), -- M. Atk. Modifiers
+(35152, 4412, 11), -- P. Def. Modifiers
+(35152, 4413, 11), -- M. Def. Modifiers
+(35152, 4414, 2), -- Armor Type
+(35152, 4415, 5), -- Weapon Type
+(35152, 4416, 22), -- Races
 -- Court Guard
 (35153, 4045, 1), -- Resist Full Magic Attack
-(35153, 4408, 16), -- HP Increase (8x)
-(35153, 4409, 11), -- MP Increase (3x)
-(35153, 4410, 18), -- Extremely Strong P. Atk.
-(35153, 4411, 11), -- Average M. Atk.
-(35153, 4412, 11), -- Average P. Def.
-(35153, 4413, 11), -- Average M. Def.
-(35153, 4414, 2), -- Standard Type
-(35153, 4415, 11), -- Spears
-(35153, 4416, 22), -- Defending Army
+(35153, 4408, 16), -- HP Modifiers
+(35153, 4409, 11), -- MP Modifiers
+(35153, 4410, 18), -- P. Atk. Modifiers
+(35153, 4411, 11), -- M. Atk. Modifiers
+(35153, 4412, 11), -- P. Def. Modifiers
+(35153, 4413, 11), -- M. Def. Modifiers
+(35153, 4414, 2), -- Armor Type
+(35153, 4415, 11), -- Weapon Type
+(35153, 4416, 22), -- Races
 -- Guard
 (35154, 4045, 1), -- Resist Full Magic Attack
-(35154, 4408, 16), -- HP Increase (8x)
-(35154, 4409, 11), -- MP Increase (3x)
-(35154, 4410, 18), -- Extremely Strong P. Atk.
-(35154, 4411, 11), -- Average M. Atk.
-(35154, 4412, 11), -- Average P. Def.
-(35154, 4413, 11), -- Average M. Def.
-(35154, 4414, 2), -- Standard Type
-(35154, 4415, 11), -- Spears
-(35154, 4416, 22), -- Defending Army
+(35154, 4408, 16), -- HP Modifiers
+(35154, 4409, 11), -- MP Modifiers
+(35154, 4410, 18), -- P. Atk. Modifiers
+(35154, 4411, 11), -- M. Atk. Modifiers
+(35154, 4412, 11), -- P. Def. Modifiers
+(35154, 4413, 11), -- M. Def. Modifiers
+(35154, 4414, 2), -- Armor Type
+(35154, 4415, 11), -- Weapon Type
+(35154, 4416, 22), -- Races
 -- Guard
 (35155, 4045, 1), -- Resist Full Magic Attack
-(35155, 4408, 16), -- HP Increase (8x)
-(35155, 4409, 11), -- MP Increase (3x)
-(35155, 4410, 18), -- Extremely Strong P. Atk.
-(35155, 4411, 11), -- Average M. Atk.
-(35155, 4412, 11), -- Average P. Def.
-(35155, 4413, 11), -- Average M. Def.
-(35155, 4414, 2), -- Standard Type
-(35155, 4415, 3), -- One-handed Sword
-(35155, 4416, 22), -- Defending Army
+(35155, 4408, 16), -- HP Modifiers
+(35155, 4409, 11), -- MP Modifiers
+(35155, 4410, 18), -- P. Atk. Modifiers
+(35155, 4411, 11), -- M. Atk. Modifiers
+(35155, 4412, 11), -- P. Def. Modifiers
+(35155, 4413, 11), -- M. Def. Modifiers
+(35155, 4414, 2), -- Armor Type
+(35155, 4415, 3), -- Weapon Type
+(35155, 4416, 22), -- Races
 -- Guard
 (35156, 4045, 1), -- Resist Full Magic Attack
-(35156, 4408, 16), -- HP Increase (8x)
-(35156, 4409, 11), -- MP Increase (3x)
-(35156, 4410, 18), -- Extremely Strong P. Atk.
-(35156, 4411, 11), -- Average M. Atk.
-(35156, 4412, 11), -- Average P. Def.
-(35156, 4413, 11), -- Average M. Def.
-(35156, 4414, 2), -- Standard Type
-(35156, 4415, 9), -- Bows
-(35156, 4416, 22), -- Defending Army
+(35156, 4408, 16), -- HP Modifiers
+(35156, 4409, 11), -- MP Modifiers
+(35156, 4410, 18), -- P. Atk. Modifiers
+(35156, 4411, 11), -- M. Atk. Modifiers
+(35156, 4412, 11), -- P. Def. Modifiers
+(35156, 4413, 11), -- M. Def. Modifiers
+(35156, 4414, 2), -- Armor Type
+(35156, 4415, 9), -- Weapon Type
+(35156, 4416, 22), -- Races
 -- Guard
 (35157, 4045, 1), -- Resist Full Magic Attack
-(35157, 4408, 16), -- HP Increase (8x)
-(35157, 4409, 11), -- MP Increase (3x)
-(35157, 4410, 18), -- Extremely Strong P. Atk.
-(35157, 4411, 11), -- Average M. Atk.
-(35157, 4412, 11), -- Average P. Def.
-(35157, 4413, 11), -- Average M. Def.
-(35157, 4414, 2), -- Standard Type
-(35157, 4415, 11), -- Spears
-(35157, 4416, 22), -- Defending Army
+(35157, 4408, 16), -- HP Modifiers
+(35157, 4409, 11), -- MP Modifiers
+(35157, 4410, 18), -- P. Atk. Modifiers
+(35157, 4411, 11), -- M. Atk. Modifiers
+(35157, 4412, 11), -- P. Def. Modifiers
+(35157, 4413, 11), -- M. Def. Modifiers
+(35157, 4414, 2), -- Armor Type
+(35157, 4415, 11), -- Weapon Type
+(35157, 4416, 22), -- Races
 -- Guard
 (35158, 4045, 1), -- Resist Full Magic Attack
-(35158, 4408, 16), -- HP Increase (8x)
-(35158, 4409, 11), -- MP Increase (3x)
-(35158, 4410, 18), -- Extremely Strong P. Atk.
-(35158, 4411, 11), -- Average M. Atk.
-(35158, 4412, 11), -- Average P. Def.
-(35158, 4413, 11), -- Average M. Def.
-(35158, 4414, 2), -- Standard Type
-(35158, 4415, 3), -- One-handed Sword
-(35158, 4416, 22), -- Defending Army
+(35158, 4408, 16), -- HP Modifiers
+(35158, 4409, 11), -- MP Modifiers
+(35158, 4410, 18), -- P. Atk. Modifiers
+(35158, 4411, 11), -- M. Atk. Modifiers
+(35158, 4412, 11), -- P. Def. Modifiers
+(35158, 4413, 11), -- M. Def. Modifiers
+(35158, 4414, 2), -- Armor Type
+(35158, 4415, 3), -- Weapon Type
+(35158, 4416, 22), -- Races
 -- Guard
 (35159, 4045, 1), -- Resist Full Magic Attack
-(35159, 4408, 16), -- HP Increase (8x)
-(35159, 4409, 11), -- MP Increase (3x)
-(35159, 4410, 18), -- Extremely Strong P. Atk.
-(35159, 4411, 11), -- Average M. Atk.
-(35159, 4412, 11), -- Average P. Def.
-(35159, 4413, 11), -- Average M. Def.
-(35159, 4414, 2), -- Standard Type
-(35159, 4415, 9), -- Bows
-(35159, 4416, 22), -- Defending Army
+(35159, 4408, 16), -- HP Modifiers
+(35159, 4409, 11), -- MP Modifiers
+(35159, 4410, 18), -- P. Atk. Modifiers
+(35159, 4411, 11), -- M. Atk. Modifiers
+(35159, 4412, 11), -- P. Def. Modifiers
+(35159, 4413, 11), -- M. Def. Modifiers
+(35159, 4414, 2), -- Armor Type
+(35159, 4415, 9), -- Weapon Type
+(35159, 4416, 22), -- Races
 -- Guard
 (35160, 4045, 1), -- Resist Full Magic Attack
-(35160, 4408, 16), -- HP Increase (8x)
-(35160, 4409, 11), -- MP Increase (3x)
-(35160, 4410, 18), -- Extremely Strong P. Atk.
-(35160, 4411, 11), -- Average M. Atk.
-(35160, 4412, 11), -- Average P. Def.
-(35160, 4413, 11), -- Average M. Def.
-(35160, 4414, 2), -- Standard Type
-(35160, 4415, 11), -- Spears
-(35160, 4416, 22), -- Defending Army
+(35160, 4408, 16), -- HP Modifiers
+(35160, 4409, 11), -- MP Modifiers
+(35160, 4410, 18), -- P. Atk. Modifiers
+(35160, 4411, 11), -- M. Atk. Modifiers
+(35160, 4412, 11), -- P. Def. Modifiers
+(35160, 4413, 11), -- M. Def. Modifiers
+(35160, 4414, 2), -- Armor Type
+(35160, 4415, 11), -- Weapon Type
+(35160, 4416, 22), -- Races
 -- Guard
 (35161, 4045, 1), -- Resist Full Magic Attack
-(35161, 4408, 16), -- HP Increase (8x)
-(35161, 4409, 11), -- MP Increase (3x)
-(35161, 4410, 18), -- Extremely Strong P. Atk.
-(35161, 4411, 11), -- Average M. Atk.
-(35161, 4412, 11), -- Average P. Def.
-(35161, 4413, 11), -- Average M. Def.
-(35161, 4414, 2), -- Standard Type
-(35161, 4415, 3), -- One-handed Sword
-(35161, 4416, 22), -- Defending Army
+(35161, 4408, 16), -- HP Modifiers
+(35161, 4409, 11), -- MP Modifiers
+(35161, 4410, 18), -- P. Atk. Modifiers
+(35161, 4411, 11), -- M. Atk. Modifiers
+(35161, 4412, 11), -- P. Def. Modifiers
+(35161, 4413, 11), -- M. Def. Modifiers
+(35161, 4414, 2), -- Armor Type
+(35161, 4415, 3), -- Weapon Type
+(35161, 4416, 22), -- Races
 -- Guard
 (35162, 4045, 1), -- Resist Full Magic Attack
-(35162, 4408, 16), -- HP Increase (8x)
-(35162, 4409, 11), -- MP Increase (3x)
-(35162, 4410, 18), -- Extremely Strong P. Atk.
-(35162, 4411, 11), -- Average M. Atk.
-(35162, 4412, 11), -- Average P. Def.
-(35162, 4413, 11), -- Average M. Def.
-(35162, 4414, 2), -- Standard Type
-(35162, 4415, 9), -- Bows
-(35162, 4416, 22), -- Defending Army
+(35162, 4408, 16), -- HP Modifiers
+(35162, 4409, 11), -- MP Modifiers
+(35162, 4410, 18), -- P. Atk. Modifiers
+(35162, 4411, 11), -- M. Atk. Modifiers
+(35162, 4412, 11), -- P. Def. Modifiers
+(35162, 4413, 11), -- M. Def. Modifiers
+(35162, 4414, 2), -- Armor Type
+(35162, 4415, 9), -- Weapon Type
+(35162, 4416, 22), -- Races
 -- Royal Knight
 (35163, 4045, 1), -- Resist Full Magic Attack
-(35163, 4408, 16), -- HP Increase (8x)
-(35163, 4409, 11), -- MP Increase (3x)
-(35163, 4410, 18), -- Extremely Strong P. Atk.
-(35163, 4411, 11), -- Average M. Atk.
-(35163, 4412, 11), -- Average P. Def.
-(35163, 4413, 11), -- Average M. Def.
-(35163, 4414, 2), -- Standard Type
-(35163, 4415, 3), -- One-handed Sword
-(35163, 4416, 22), -- Defending Army
+(35163, 4408, 16), -- HP Modifiers
+(35163, 4409, 11), -- MP Modifiers
+(35163, 4410, 18), -- P. Atk. Modifiers
+(35163, 4411, 11), -- M. Atk. Modifiers
+(35163, 4412, 11), -- P. Def. Modifiers
+(35163, 4413, 11), -- M. Def. Modifiers
+(35163, 4414, 2), -- Armor Type
+(35163, 4415, 3), -- Weapon Type
+(35163, 4416, 22), -- Races
 -- Court Sorcerer
 (35164, 4026, 1), -- Gludio Flame
 (35164, 4045, 1), -- Resist Full Magic Attack
-(35164, 4408, 16), -- HP Increase (8x)
-(35164, 4409, 11), -- MP Increase (3x)
-(35164, 4410, 18), -- Extremely Strong P. Atk.
-(35164, 4411, 11), -- Average M. Atk.
-(35164, 4412, 11), -- Average P. Def.
-(35164, 4413, 11), -- Average M. Def.
-(35164, 4414, 2), -- Standard Type
-(35164, 4415, 5), -- Blunt Weapons
-(35164, 4416, 22), -- Defending Army
+(35164, 4408, 16), -- HP Modifiers
+(35164, 4409, 11), -- MP Modifiers
+(35164, 4410, 18), -- P. Atk. Modifiers
+(35164, 4411, 11), -- M. Atk. Modifiers
+(35164, 4412, 11), -- P. Def. Modifiers
+(35164, 4413, 11), -- M. Def. Modifiers
+(35164, 4414, 2), -- Armor Type
+(35164, 4415, 5), -- Weapon Type
+(35164, 4416, 22), -- Races
 -- Court Sorcerer
 (35165, 4027, 1), -- Gludio Heal
 (35165, 4045, 1), -- Resist Full Magic Attack
-(35165, 4408, 16), -- HP Increase (8x)
-(35165, 4409, 11), -- MP Increase (3x)
-(35165, 4410, 18), -- Extremely Strong P. Atk.
-(35165, 4411, 11), -- Average M. Atk.
-(35165, 4412, 11), -- Average P. Def.
-(35165, 4413, 11), -- Average M. Def.
-(35165, 4414, 2), -- Standard Type
-(35165, 4415, 5), -- Blunt Weapons
-(35165, 4416, 22), -- Defending Army
+(35165, 4408, 16), -- HP Modifiers
+(35165, 4409, 11), -- MP Modifiers
+(35165, 4410, 18), -- P. Atk. Modifiers
+(35165, 4411, 11), -- M. Atk. Modifiers
+(35165, 4412, 11), -- P. Def. Modifiers
+(35165, 4413, 11), -- M. Def. Modifiers
+(35165, 4414, 2), -- Armor Type
+(35165, 4415, 5), -- Weapon Type
+(35165, 4416, 22), -- Races
 -- Court Guard
 (35166, 4045, 1), -- Resist Full Magic Attack
-(35166, 4408, 16), -- HP Increase (8x)
-(35166, 4409, 11), -- MP Increase (3x)
-(35166, 4410, 18), -- Extremely Strong P. Atk.
-(35166, 4411, 11), -- Average M. Atk.
-(35166, 4412, 11), -- Average P. Def.
-(35166, 4413, 11), -- Average M. Def.
-(35166, 4414, 2), -- Standard Type
-(35166, 4415, 11), -- Spears
-(35166, 4416, 22), -- Defending Army
+(35166, 4408, 16), -- HP Modifiers
+(35166, 4409, 11), -- MP Modifiers
+(35166, 4410, 18), -- P. Atk. Modifiers
+(35166, 4411, 11), -- M. Atk. Modifiers
+(35166, 4412, 11), -- P. Def. Modifiers
+(35166, 4413, 11), -- M. Def. Modifiers
+(35166, 4414, 2), -- Armor Type
+(35166, 4415, 11), -- Weapon Type
+(35166, 4416, 22), -- Races
 -- Guard
 (35167, 4045, 1), -- Resist Full Magic Attack
-(35167, 4408, 16), -- HP Increase (8x)
-(35167, 4409, 11), -- MP Increase (3x)
-(35167, 4410, 18), -- Extremely Strong P. Atk.
-(35167, 4411, 11), -- Average M. Atk.
-(35167, 4412, 11), -- Average P. Def.
-(35167, 4413, 11), -- Average M. Def.
-(35167, 4414, 2), -- Standard Type
-(35167, 4415, 11), -- Spears
-(35167, 4416, 22), -- Defending Army
+(35167, 4408, 16), -- HP Modifiers
+(35167, 4409, 11), -- MP Modifiers
+(35167, 4410, 18), -- P. Atk. Modifiers
+(35167, 4411, 11), -- M. Atk. Modifiers
+(35167, 4412, 11), -- P. Def. Modifiers
+(35167, 4413, 11), -- M. Def. Modifiers
+(35167, 4414, 2), -- Armor Type
+(35167, 4415, 11), -- Weapon Type
+(35167, 4416, 22), -- Races
 -- Guard
 (35168, 4045, 1), -- Resist Full Magic Attack
-(35168, 4408, 16), -- HP Increase (8x)
-(35168, 4409, 11), -- MP Increase (3x)
-(35168, 4410, 18), -- Extremely Strong P. Atk.
-(35168, 4411, 11), -- Average M. Atk.
-(35168, 4412, 11), -- Average P. Def.
-(35168, 4413, 11), -- Average M. Def.
-(35168, 4414, 2), -- Standard Type
-(35168, 4415, 3), -- One-handed Sword
-(35168, 4416, 22), -- Defending Army
+(35168, 4408, 16), -- HP Modifiers
+(35168, 4409, 11), -- MP Modifiers
+(35168, 4410, 18), -- P. Atk. Modifiers
+(35168, 4411, 11), -- M. Atk. Modifiers
+(35168, 4412, 11), -- P. Def. Modifiers
+(35168, 4413, 11), -- M. Def. Modifiers
+(35168, 4414, 2), -- Armor Type
+(35168, 4415, 3), -- Weapon Type
+(35168, 4416, 22), -- Races
 -- Guard
 (35169, 4045, 1), -- Resist Full Magic Attack
-(35169, 4408, 16), -- HP Increase (8x)
-(35169, 4409, 11), -- MP Increase (3x)
-(35169, 4410, 18), -- Extremely Strong P. Atk.
-(35169, 4411, 11), -- Average M. Atk.
-(35169, 4412, 11), -- Average P. Def.
-(35169, 4413, 11), -- Average M. Def.
-(35169, 4414, 2), -- Standard Type
-(35169, 4415, 9), -- Bows
-(35169, 4416, 22), -- Defending Army
+(35169, 4408, 16), -- HP Modifiers
+(35169, 4409, 11), -- MP Modifiers
+(35169, 4410, 18), -- P. Atk. Modifiers
+(35169, 4411, 11), -- M. Atk. Modifiers
+(35169, 4412, 11), -- P. Def. Modifiers
+(35169, 4413, 11), -- M. Def. Modifiers
+(35169, 4414, 2), -- Armor Type
+(35169, 4415, 9), -- Weapon Type
+(35169, 4416, 22), -- Races
 -- Guard
 (35170, 4045, 1), -- Resist Full Magic Attack
-(35170, 4408, 16), -- HP Increase (8x)
-(35170, 4409, 11), -- MP Increase (3x)
-(35170, 4410, 18), -- Extremely Strong P. Atk.
-(35170, 4411, 11), -- Average M. Atk.
-(35170, 4412, 11), -- Average P. Def.
-(35170, 4413, 11), -- Average M. Def.
-(35170, 4414, 2), -- Standard Type
-(35170, 4415, 11), -- Spears
-(35170, 4416, 22), -- Defending Army
+(35170, 4408, 16), -- HP Modifiers
+(35170, 4409, 11), -- MP Modifiers
+(35170, 4410, 18), -- P. Atk. Modifiers
+(35170, 4411, 11), -- M. Atk. Modifiers
+(35170, 4412, 11), -- P. Def. Modifiers
+(35170, 4413, 11), -- M. Def. Modifiers
+(35170, 4414, 2), -- Armor Type
+(35170, 4415, 11), -- Weapon Type
+(35170, 4416, 22), -- Races
 -- Guard
 (35171, 4045, 1), -- Resist Full Magic Attack
-(35171, 4408, 16), -- HP Increase (8x)
-(35171, 4409, 11), -- MP Increase (3x)
-(35171, 4410, 18), -- Extremely Strong P. Atk.
-(35171, 4411, 11), -- Average M. Atk.
-(35171, 4412, 11), -- Average P. Def.
-(35171, 4413, 11), -- Average M. Def.
-(35171, 4414, 2), -- Standard Type
-(35171, 4415, 3), -- One-handed Sword
-(35171, 4416, 22), -- Defending Army
+(35171, 4408, 16), -- HP Modifiers
+(35171, 4409, 11), -- MP Modifiers
+(35171, 4410, 18), -- P. Atk. Modifiers
+(35171, 4411, 11), -- M. Atk. Modifiers
+(35171, 4412, 11), -- P. Def. Modifiers
+(35171, 4413, 11), -- M. Def. Modifiers
+(35171, 4414, 2), -- Armor Type
+(35171, 4415, 3), -- Weapon Type
+(35171, 4416, 22), -- Races
 -- Guard
 (35172, 4045, 1), -- Resist Full Magic Attack
-(35172, 4408, 16), -- HP Increase (8x)
-(35172, 4409, 11), -- MP Increase (3x)
-(35172, 4410, 18), -- Extremely Strong P. Atk.
-(35172, 4411, 11), -- Average M. Atk.
-(35172, 4412, 11), -- Average P. Def.
-(35172, 4413, 11), -- Average M. Def.
-(35172, 4414, 2), -- Standard Type
-(35172, 4415, 9), -- Bows
-(35172, 4416, 22), -- Defending Army
+(35172, 4408, 16), -- HP Modifiers
+(35172, 4409, 11), -- MP Modifiers
+(35172, 4410, 18), -- P. Atk. Modifiers
+(35172, 4411, 11), -- M. Atk. Modifiers
+(35172, 4412, 11), -- P. Def. Modifiers
+(35172, 4413, 11), -- M. Def. Modifiers
+(35172, 4414, 2), -- Armor Type
+(35172, 4415, 9), -- Weapon Type
+(35172, 4416, 22), -- Races
 -- Guard
 (35173, 4045, 1), -- Resist Full Magic Attack
-(35173, 4408, 16), -- HP Increase (8x)
-(35173, 4409, 11), -- MP Increase (3x)
-(35173, 4410, 18), -- Extremely Strong P. Atk.
-(35173, 4411, 11), -- Average M. Atk.
-(35173, 4412, 11), -- Average P. Def.
-(35173, 4413, 11), -- Average M. Def.
-(35173, 4414, 2), -- Standard Type
-(35173, 4415, 11), -- Spears
-(35173, 4416, 22), -- Defending Army
+(35173, 4408, 16), -- HP Modifiers
+(35173, 4409, 11), -- MP Modifiers
+(35173, 4410, 18), -- P. Atk. Modifiers
+(35173, 4411, 11), -- M. Atk. Modifiers
+(35173, 4412, 11), -- P. Def. Modifiers
+(35173, 4413, 11), -- M. Def. Modifiers
+(35173, 4414, 2), -- Armor Type
+(35173, 4415, 11), -- Weapon Type
+(35173, 4416, 22), -- Races
 -- Guard
 (35174, 4045, 1), -- Resist Full Magic Attack
-(35174, 4408, 16), -- HP Increase (8x)
-(35174, 4409, 11), -- MP Increase (3x)
-(35174, 4410, 18), -- Extremely Strong P. Atk.
-(35174, 4411, 11), -- Average M. Atk.
-(35174, 4412, 11), -- Average P. Def.
-(35174, 4413, 11), -- Average M. Def.
-(35174, 4414, 2), -- Standard Type
-(35174, 4415, 3), -- One-handed Sword
-(35174, 4416, 22), -- Defending Army
+(35174, 4408, 16), -- HP Modifiers
+(35174, 4409, 11), -- MP Modifiers
+(35174, 4410, 18), -- P. Atk. Modifiers
+(35174, 4411, 11), -- M. Atk. Modifiers
+(35174, 4412, 11), -- P. Def. Modifiers
+(35174, 4413, 11), -- M. Def. Modifiers
+(35174, 4414, 2), -- Armor Type
+(35174, 4415, 3), -- Weapon Type
+(35174, 4416, 22), -- Races
 -- Guard
 (35175, 4045, 1), -- Resist Full Magic Attack
-(35175, 4408, 16), -- HP Increase (8x)
-(35175, 4409, 11), -- MP Increase (3x)
-(35175, 4410, 18), -- Extremely Strong P. Atk.
-(35175, 4411, 11), -- Average M. Atk.
-(35175, 4412, 11), -- Average P. Def.
-(35175, 4413, 11), -- Average M. Def.
-(35175, 4414, 2), -- Standard Type
-(35175, 4415, 9), -- Bows
-(35175, 4416, 22), -- Defending Army
+(35175, 4408, 16), -- HP Modifiers
+(35175, 4409, 11), -- MP Modifiers
+(35175, 4410, 18), -- P. Atk. Modifiers
+(35175, 4411, 11), -- M. Atk. Modifiers
+(35175, 4412, 11), -- P. Def. Modifiers
+(35175, 4413, 11), -- M. Def. Modifiers
+(35175, 4414, 2), -- Armor Type
+(35175, 4415, 9), -- Weapon Type
+(35175, 4416, 22), -- Races
 -- Gatekeeper
 (35176, 4045, 1), -- Resist Full Magic Attack
-(35176, 4408, 1), -- HP Increase (1x)
-(35176, 4409, 1), -- MP Increase (1x)
-(35176, 4410, 11), -- Average P. Atk.
-(35176, 4411, 11), -- Average M. Atk.
-(35176, 4412, 11), -- Average P. Def.
-(35176, 4413, 11), -- Average M. Def.
-(35176, 4414, 2), -- Standard Type
-(35176, 4415, 3), -- One-handed Sword
-(35176, 4416, 23), -- Mercenaries
+(35176, 4408, 1), -- HP Modifiers
+(35176, 4409, 1), -- MP Modifiers
+(35176, 4410, 11), -- P. Atk. Modifiers
+(35176, 4411, 11), -- M. Atk. Modifiers
+(35176, 4412, 11), -- P. Def. Modifiers
+(35176, 4413, 11), -- M. Def. Modifiers
+(35176, 4414, 2), -- Armor Type
+(35176, 4415, 3), -- Weapon Type
+(35176, 4416, 23), -- Races
 -- Gatekeeper
 (35177, 4045, 1), -- Resist Full Magic Attack
-(35177, 4408, 1), -- HP Increase (1x)
-(35177, 4409, 1), -- MP Increase (1x)
-(35177, 4410, 11), -- Average P. Atk.
-(35177, 4411, 11), -- Average M. Atk.
-(35177, 4412, 11), -- Average P. Def.
-(35177, 4413, 11), -- Average M. Def.
-(35177, 4414, 2), -- Standard Type
-(35177, 4415, 3), -- One-handed Sword
-(35177, 4416, 23), -- Mercenaries
+(35177, 4408, 1), -- HP Modifiers
+(35177, 4409, 1), -- MP Modifiers
+(35177, 4410, 11), -- P. Atk. Modifiers
+(35177, 4411, 11), -- M. Atk. Modifiers
+(35177, 4412, 11), -- P. Def. Modifiers
+(35177, 4413, 11), -- M. Def. Modifiers
+(35177, 4414, 2), -- Armor Type
+(35177, 4415, 3), -- Weapon Type
+(35177, 4416, 23), -- Races
 -- Gatekeeper
 (35178, 4045, 1), -- Resist Full Magic Attack
-(35178, 4408, 1), -- HP Increase (1x)
-(35178, 4409, 1), -- MP Increase (1x)
-(35178, 4410, 11), -- Average P. Atk.
-(35178, 4411, 11), -- Average M. Atk.
-(35178, 4412, 11), -- Average P. Def.
-(35178, 4413, 11), -- Average M. Def.
-(35178, 4414, 2), -- Standard Type
-(35178, 4415, 3), -- One-handed Sword
-(35178, 4416, 23), -- Mercenaries
+(35178, 4408, 1), -- HP Modifiers
+(35178, 4409, 1), -- MP Modifiers
+(35178, 4410, 11), -- P. Atk. Modifiers
+(35178, 4411, 11), -- M. Atk. Modifiers
+(35178, 4412, 11), -- P. Def. Modifiers
+(35178, 4413, 11), -- M. Def. Modifiers
+(35178, 4414, 2), -- Armor Type
+(35178, 4415, 3), -- Weapon Type
+(35178, 4416, 23), -- Races
 -- Mass Gatekeeper
 (35179, 4045, 1), -- Resist Full Magic Attack
-(35179, 4408, 1), -- HP Increase (1x)
-(35179, 4409, 1), -- MP Increase (1x)
-(35179, 4410, 11), -- Average P. Atk.
-(35179, 4411, 11), -- Average M. Atk.
-(35179, 4412, 11), -- Average P. Def.
-(35179, 4413, 11), -- Average M. Def.
-(35179, 4414, 2), -- Standard Type
-(35179, 4415, 3), -- One-handed Sword
-(35179, 4416, 14), -- Humans
+(35179, 4408, 1), -- HP Modifiers
+(35179, 4409, 1), -- MP Modifiers
+(35179, 4410, 11), -- P. Atk. Modifiers
+(35179, 4411, 11), -- M. Atk. Modifiers
+(35179, 4412, 11), -- P. Def. Modifiers
+(35179, 4413, 11), -- M. Def. Modifiers
+(35179, 4414, 2), -- Armor Type
+(35179, 4415, 3), -- Weapon Type
+(35179, 4416, 14), -- Races
 -- Outer Doorman
 (35180, 4045, 1), -- Resist Full Magic Attack
-(35180, 4408, 1), -- HP Increase (1x)
-(35180, 4409, 1), -- MP Increase (1x)
-(35180, 4410, 11), -- Average P. Atk.
-(35180, 4411, 11), -- Average M. Atk.
-(35180, 4412, 11), -- Average P. Def.
-(35180, 4413, 11), -- Average M. Def.
-(35180, 4414, 2), -- Standard Type
-(35180, 4415, 3), -- One-handed Sword
-(35180, 4416, 14), -- Humans
+(35180, 4408, 1), -- HP Modifiers
+(35180, 4409, 1), -- MP Modifiers
+(35180, 4410, 11), -- P. Atk. Modifiers
+(35180, 4411, 11), -- M. Atk. Modifiers
+(35180, 4412, 11), -- P. Def. Modifiers
+(35180, 4413, 11), -- M. Def. Modifiers
+(35180, 4414, 2), -- Armor Type
+(35180, 4415, 3), -- Weapon Type
+(35180, 4416, 14), -- Races
 -- Inner Doorman
 (35181, 4045, 1), -- Resist Full Magic Attack
-(35181, 4408, 1), -- HP Increase (1x)
-(35181, 4409, 1), -- MP Increase (1x)
-(35181, 4410, 11), -- Average P. Atk.
-(35181, 4411, 11), -- Average M. Atk.
-(35181, 4412, 11), -- Average P. Def.
-(35181, 4413, 11), -- Average M. Def.
-(35181, 4414, 2), -- Standard Type
-(35181, 4415, 3), -- One-handed Sword
-(35181, 4416, 14), -- Humans
+(35181, 4408, 1), -- HP Modifiers
+(35181, 4409, 1), -- MP Modifiers
+(35181, 4410, 11), -- P. Atk. Modifiers
+(35181, 4411, 11), -- M. Atk. Modifiers
+(35181, 4412, 11), -- P. Def. Modifiers
+(35181, 4413, 11), -- M. Def. Modifiers
+(35181, 4414, 2), -- Armor Type
+(35181, 4415, 3), -- Weapon Type
+(35181, 4416, 14), -- Races
 -- Blacksmith
 (35182, 4045, 1), -- Resist Full Magic Attack
-(35182, 4408, 1), -- HP Increase (1x)
-(35182, 4409, 1), -- MP Increase (1x)
-(35182, 4410, 11), -- Average P. Atk.
-(35182, 4411, 11), -- Average M. Atk.
-(35182, 4412, 11), -- Average P. Def.
-(35182, 4413, 11), -- Average M. Def.
-(35182, 4414, 2), -- Standard Type
-(35182, 4415, 3), -- One-handed Sword
-(35182, 4416, 18), -- Dwarves
+(35182, 4408, 1), -- HP Modifiers
+(35182, 4409, 1), -- MP Modifiers
+(35182, 4410, 11), -- P. Atk. Modifiers
+(35182, 4411, 11), -- M. Atk. Modifiers
+(35182, 4412, 11), -- P. Def. Modifiers
+(35182, 4413, 11), -- M. Def. Modifiers
+(35182, 4414, 2), -- Armor Type
+(35182, 4415, 3), -- Weapon Type
+(35182, 4416, 18), -- Races
 -- Warehouse Keeper
 (35183, 4045, 1), -- Resist Full Magic Attack
-(35183, 4408, 1), -- HP Increase (1x)
-(35183, 4409, 1), -- MP Increase (1x)
-(35183, 4410, 11), -- Average P. Atk.
-(35183, 4411, 11), -- Average M. Atk.
-(35183, 4412, 11), -- Average P. Def.
-(35183, 4413, 11), -- Average M. Def.
-(35183, 4414, 2), -- Standard Type
-(35183, 4415, 3), -- One-handed Sword
-(35183, 4416, 18), -- Dwarves
+(35183, 4408, 1), -- HP Modifiers
+(35183, 4409, 1), -- MP Modifiers
+(35183, 4410, 11), -- P. Atk. Modifiers
+(35183, 4411, 11), -- M. Atk. Modifiers
+(35183, 4412, 11), -- P. Def. Modifiers
+(35183, 4413, 11), -- M. Def. Modifiers
+(35183, 4414, 2), -- Armor Type
+(35183, 4415, 3), -- Weapon Type
+(35183, 4416, 18), -- Races
 -- Saul
 (35184, 4045, 1), -- Resist Full Magic Attack
-(35184, 4408, 1), -- HP Increase (1x)
-(35184, 4409, 1), -- MP Increase (1x)
-(35184, 4410, 11), -- Average P. Atk.
-(35184, 4411, 11), -- Average M. Atk.
-(35184, 4412, 11), -- Average P. Def.
-(35184, 4413, 11), -- Average M. Def.
-(35184, 4414, 2), -- Standard Type
-(35184, 4415, 3), -- One-handed Sword
-(35184, 4416, 14), -- Humans
+(35184, 4408, 1), -- HP Modifiers
+(35184, 4409, 1), -- MP Modifiers
+(35184, 4410, 11), -- P. Atk. Modifiers
+(35184, 4411, 11), -- M. Atk. Modifiers
+(35184, 4412, 11), -- P. Def. Modifiers
+(35184, 4413, 11), -- M. Def. Modifiers
+(35184, 4414, 2), -- Armor Type
+(35184, 4415, 3), -- Weapon Type
+(35184, 4416, 14), -- Races
 -- Bryce
 (35185, 4045, 1), -- Resist Full Magic Attack
-(35185, 4408, 1), -- HP Increase (1x)
-(35185, 4409, 1), -- MP Increase (1x)
-(35185, 4410, 11), -- Average P. Atk.
-(35185, 4411, 11), -- Average M. Atk.
-(35185, 4412, 11), -- Average P. Def.
-(35185, 4413, 11), -- Average M. Def.
-(35185, 4414, 2), -- Standard Type
-(35185, 4415, 3), -- One-handed Sword
-(35185, 4416, 14), -- Humans
+(35185, 4408, 1), -- HP Modifiers
+(35185, 4409, 1), -- MP Modifiers
+(35185, 4410, 11), -- P. Atk. Modifiers
+(35185, 4411, 11), -- M. Atk. Modifiers
+(35185, 4412, 11), -- P. Def. Modifiers
+(35185, 4413, 11), -- M. Def. Modifiers
+(35185, 4414, 2), -- Armor Type
+(35185, 4415, 3), -- Weapon Type
+(35185, 4416, 14), -- Races
 -- Arvid
 (35186, 4045, 1), -- Resist Full Magic Attack
-(35186, 4408, 1), -- HP Increase (1x)
-(35186, 4409, 1), -- MP Increase (1x)
-(35186, 4410, 11), -- Average P. Atk.
-(35186, 4411, 11), -- Average M. Atk.
-(35186, 4412, 11), -- Average P. Def.
-(35186, 4413, 11), -- Average M. Def.
-(35186, 4414, 2), -- Standard Type
-(35186, 4415, 3), -- One-handed Sword
-(35186, 4416, 14), -- Humans
+(35186, 4408, 1), -- HP Modifiers
+(35186, 4409, 1), -- MP Modifiers
+(35186, 4410, 11), -- P. Atk. Modifiers
+(35186, 4411, 11), -- M. Atk. Modifiers
+(35186, 4412, 11), -- P. Def. Modifiers
+(35186, 4413, 11), -- M. Def. Modifiers
+(35186, 4414, 2), -- Armor Type
+(35186, 4415, 3), -- Weapon Type
+(35186, 4416, 14), -- Races
 -- Manor Manager
 (35187, 4045, 1), -- Resist Full Magic Attack
-(35187, 4408, 1), -- HP Increase (1x)
-(35187, 4409, 1), -- MP Increase (1x)
-(35187, 4410, 11), -- Average P. Atk.
-(35187, 4411, 11), -- Average M. Atk.
-(35187, 4412, 11), -- Average P. Def.
-(35187, 4413, 11), -- Average M. Def.
-(35187, 4414, 2), -- Standard Type
-(35187, 4415, 3), -- One-handed Sword
-(35187, 4416, 14), -- Humans
+(35187, 4408, 1), -- HP Modifiers
+(35187, 4409, 1), -- MP Modifiers
+(35187, 4410, 11), -- P. Atk. Modifiers
+(35187, 4411, 11), -- M. Atk. Modifiers
+(35187, 4412, 11), -- P. Def. Modifiers
+(35187, 4413, 11), -- M. Def. Modifiers
+(35187, 4414, 2), -- Armor Type
+(35187, 4415, 3), -- Weapon Type
+(35187, 4416, 14), -- Races
 -- Holmes
 (35188, 4045, 1), -- Resist Full Magic Attack
-(35188, 4408, 1), -- HP Increase (1x)
-(35188, 4409, 1), -- MP Increase (1x)
-(35188, 4410, 11), -- Average P. Atk.
-(35188, 4411, 11), -- Average M. Atk.
-(35188, 4412, 11), -- Average P. Def.
-(35188, 4413, 11), -- Average M. Def.
-(35188, 4414, 2), -- Standard Type
-(35188, 4415, 3), -- One-handed Sword
-(35188, 4416, 14), -- Humans
+(35188, 4408, 1), -- HP Modifiers
+(35188, 4409, 1), -- MP Modifiers
+(35188, 4410, 11), -- P. Atk. Modifiers
+(35188, 4411, 11), -- M. Atk. Modifiers
+(35188, 4412, 11), -- P. Def. Modifiers
+(35188, 4413, 11), -- M. Def. Modifiers
+(35188, 4414, 2), -- Armor Type
+(35188, 4415, 3), -- Weapon Type
+(35188, 4416, 14), -- Races
 -- Oren Holy Artifact
 (35189, 4045, 1), -- Resist Full Magic Attack
-(35189, 4390, 1), -- Mystic Immunity
-(35189, 4408, 1), -- HP Increase (1x)
-(35189, 4409, 1), -- MP Increase (1x)
-(35189, 4410, 11), -- Average P. Atk.
-(35189, 4411, 11), -- Average M. Atk.
-(35189, 4412, 11), -- Average P. Def.
-(35189, 4413, 11), -- Average M. Def.
-(35189, 4414, 2), -- Standard Type
-(35189, 4415, 3), -- One-handed Sword
-(35189, 4416, 19), -- Others
+(35189, 4390, 1), -- NPC Abnormal Immunity
+(35189, 4408, 1), -- HP Modifiers
+(35189, 4409, 1), -- MP Modifiers
+(35189, 4410, 11), -- P. Atk. Modifiers
+(35189, 4411, 11), -- M. Atk. Modifiers
+(35189, 4412, 11), -- P. Def. Modifiers
+(35189, 4413, 11), -- M. Def. Modifiers
+(35189, 4414, 2), -- Armor Type
+(35189, 4415, 3), -- Weapon Type
+(35189, 4416, 19), -- Races
 -- Balthus Van Dyke
 (35190, 4045, 1), -- Resist Full Magic Attack
-(35190, 4408, 16), -- HP Increase (8x)
-(35190, 4409, 11), -- MP Increase (3x)
-(35190, 4410, 18), -- Extremely Strong P. Atk.
-(35190, 4411, 11), -- Average M. Atk.
-(35190, 4412, 13), -- Slightly Strong P. Def.
-(35190, 4413, 13), -- Slightly Strong M. Def.
-(35190, 4414, 2), -- Standard Type
-(35190, 4415, 3), -- One-handed Sword
-(35190, 4416, 22), -- Defending Army
+(35190, 4408, 16), -- HP Modifiers
+(35190, 4409, 11), -- MP Modifiers
+(35190, 4410, 18), -- P. Atk. Modifiers
+(35190, 4411, 11), -- M. Atk. Modifiers
+(35190, 4412, 13), -- P. Def. Modifiers
+(35190, 4413, 13), -- M. Def. Modifiers
+(35190, 4414, 2), -- Armor Type
+(35190, 4415, 3), -- Weapon Type
+(35190, 4416, 22), -- Races
 -- Quant
 (35191, 4045, 1), -- Resist Full Magic Attack
-(35191, 4408, 10), -- HP Increase (2x)
-(35191, 4409, 11), -- MP Increase (3x)
-(35191, 4410, 13), -- Slightly Strong P. Atk.
-(35191, 4411, 11), -- Average M. Atk.
-(35191, 4412, 11), -- Average P. Def.
-(35191, 4413, 11), -- Average M. Def.
-(35191, 4414, 2), -- Standard Type
-(35191, 4415, 3), -- One-handed Sword
-(35191, 4416, 22), -- Defending Army
+(35191, 4408, 10), -- HP Modifiers
+(35191, 4409, 11), -- MP Modifiers
+(35191, 4410, 13), -- P. Atk. Modifiers
+(35191, 4411, 11), -- M. Atk. Modifiers
+(35191, 4412, 11), -- P. Def. Modifiers
+(35191, 4413, 11), -- M. Def. Modifiers
+(35191, 4414, 2), -- Armor Type
+(35191, 4415, 3), -- Weapon Type
+(35191, 4416, 22), -- Races
 -- Royal Knight
 (35192, 4045, 1), -- Resist Full Magic Attack
-(35192, 4408, 16), -- HP Increase (8x)
-(35192, 4409, 11), -- MP Increase (3x)
-(35192, 4410, 18), -- Extremely Strong P. Atk.
-(35192, 4411, 11), -- Average M. Atk.
-(35192, 4412, 11), -- Average P. Def.
-(35192, 4413, 11), -- Average M. Def.
-(35192, 4414, 2), -- Standard Type
-(35192, 4415, 3), -- One-handed Sword
-(35192, 4416, 22), -- Defending Army
+(35192, 4408, 16), -- HP Modifiers
+(35192, 4409, 11), -- MP Modifiers
+(35192, 4410, 18), -- P. Atk. Modifiers
+(35192, 4411, 11), -- M. Atk. Modifiers
+(35192, 4412, 11), -- P. Def. Modifiers
+(35192, 4413, 11), -- M. Def. Modifiers
+(35192, 4414, 2), -- Armor Type
+(35192, 4415, 3), -- Weapon Type
+(35192, 4416, 22), -- Races
 -- Court Sorcerer
 (35193, 4026, 1), -- Gludio Flame
 (35193, 4045, 1), -- Resist Full Magic Attack
-(35193, 4408, 16), -- HP Increase (8x)
-(35193, 4409, 11), -- MP Increase (3x)
-(35193, 4410, 18), -- Extremely Strong P. Atk.
-(35193, 4411, 11), -- Average M. Atk.
-(35193, 4412, 11), -- Average P. Def.
-(35193, 4413, 11), -- Average M. Def.
-(35193, 4414, 2), -- Standard Type
-(35193, 4415, 5), -- Blunt Weapons
-(35193, 4416, 22), -- Defending Army
+(35193, 4408, 16), -- HP Modifiers
+(35193, 4409, 11), -- MP Modifiers
+(35193, 4410, 18), -- P. Atk. Modifiers
+(35193, 4411, 11), -- M. Atk. Modifiers
+(35193, 4412, 11), -- P. Def. Modifiers
+(35193, 4413, 11), -- M. Def. Modifiers
+(35193, 4414, 2), -- Armor Type
+(35193, 4415, 5), -- Weapon Type
+(35193, 4416, 22), -- Races
 -- Court Sorcerer
 (35194, 4027, 1), -- Gludio Heal
 (35194, 4045, 1), -- Resist Full Magic Attack
-(35194, 4408, 16), -- HP Increase (8x)
-(35194, 4409, 11), -- MP Increase (3x)
-(35194, 4410, 18), -- Extremely Strong P. Atk.
-(35194, 4411, 11), -- Average M. Atk.
-(35194, 4412, 11), -- Average P. Def.
-(35194, 4413, 11), -- Average M. Def.
-(35194, 4414, 2), -- Standard Type
-(35194, 4415, 5), -- Blunt Weapons
-(35194, 4416, 22), -- Defending Army
+(35194, 4408, 16), -- HP Modifiers
+(35194, 4409, 11), -- MP Modifiers
+(35194, 4410, 18), -- P. Atk. Modifiers
+(35194, 4411, 11), -- M. Atk. Modifiers
+(35194, 4412, 11), -- P. Def. Modifiers
+(35194, 4413, 11), -- M. Def. Modifiers
+(35194, 4414, 2), -- Armor Type
+(35194, 4415, 5), -- Weapon Type
+(35194, 4416, 22), -- Races
 -- Court Guard
 (35195, 4045, 1), -- Resist Full Magic Attack
-(35195, 4408, 16), -- HP Increase (8x)
-(35195, 4409, 11), -- MP Increase (3x)
-(35195, 4410, 18), -- Extremely Strong P. Atk.
-(35195, 4411, 11), -- Average M. Atk.
-(35195, 4412, 11), -- Average P. Def.
-(35195, 4413, 11), -- Average M. Def.
-(35195, 4414, 2), -- Standard Type
-(35195, 4415, 11), -- Spears
-(35195, 4416, 22), -- Defending Army
+(35195, 4408, 16), -- HP Modifiers
+(35195, 4409, 11), -- MP Modifiers
+(35195, 4410, 18), -- P. Atk. Modifiers
+(35195, 4411, 11), -- M. Atk. Modifiers
+(35195, 4412, 11), -- P. Def. Modifiers
+(35195, 4413, 11), -- M. Def. Modifiers
+(35195, 4414, 2), -- Armor Type
+(35195, 4415, 11), -- Weapon Type
+(35195, 4416, 22), -- Races
 -- Guard
 (35196, 4045, 1), -- Resist Full Magic Attack
-(35196, 4408, 16), -- HP Increase (8x)
-(35196, 4409, 11), -- MP Increase (3x)
-(35196, 4410, 18), -- Extremely Strong P. Atk.
-(35196, 4411, 11), -- Average M. Atk.
-(35196, 4412, 11), -- Average P. Def.
-(35196, 4413, 11), -- Average M. Def.
-(35196, 4414, 2), -- Standard Type
-(35196, 4415, 11), -- Spears
-(35196, 4416, 22), -- Defending Army
+(35196, 4408, 16), -- HP Modifiers
+(35196, 4409, 11), -- MP Modifiers
+(35196, 4410, 18), -- P. Atk. Modifiers
+(35196, 4411, 11), -- M. Atk. Modifiers
+(35196, 4412, 11), -- P. Def. Modifiers
+(35196, 4413, 11), -- M. Def. Modifiers
+(35196, 4414, 2), -- Armor Type
+(35196, 4415, 11), -- Weapon Type
+(35196, 4416, 22), -- Races
 -- Guard
 (35197, 4045, 1), -- Resist Full Magic Attack
-(35197, 4408, 16), -- HP Increase (8x)
-(35197, 4409, 11), -- MP Increase (3x)
-(35197, 4410, 18), -- Extremely Strong P. Atk.
-(35197, 4411, 11), -- Average M. Atk.
-(35197, 4412, 11), -- Average P. Def.
-(35197, 4413, 11), -- Average M. Def.
-(35197, 4414, 2), -- Standard Type
-(35197, 4415, 3), -- One-handed Sword
-(35197, 4416, 22), -- Defending Army
+(35197, 4408, 16), -- HP Modifiers
+(35197, 4409, 11), -- MP Modifiers
+(35197, 4410, 18), -- P. Atk. Modifiers
+(35197, 4411, 11), -- M. Atk. Modifiers
+(35197, 4412, 11), -- P. Def. Modifiers
+(35197, 4413, 11), -- M. Def. Modifiers
+(35197, 4414, 2), -- Armor Type
+(35197, 4415, 3), -- Weapon Type
+(35197, 4416, 22), -- Races
 -- Guard
 (35198, 4045, 1), -- Resist Full Magic Attack
-(35198, 4408, 16), -- HP Increase (8x)
-(35198, 4409, 11), -- MP Increase (3x)
-(35198, 4410, 18), -- Extremely Strong P. Atk.
-(35198, 4411, 11), -- Average M. Atk.
-(35198, 4412, 11), -- Average P. Def.
-(35198, 4413, 11), -- Average M. Def.
-(35198, 4414, 2), -- Standard Type
-(35198, 4415, 9), -- Bows
-(35198, 4416, 22), -- Defending Army
+(35198, 4408, 16), -- HP Modifiers
+(35198, 4409, 11), -- MP Modifiers
+(35198, 4410, 18), -- P. Atk. Modifiers
+(35198, 4411, 11), -- M. Atk. Modifiers
+(35198, 4412, 11), -- P. Def. Modifiers
+(35198, 4413, 11), -- M. Def. Modifiers
+(35198, 4414, 2), -- Armor Type
+(35198, 4415, 9), -- Weapon Type
+(35198, 4416, 22), -- Races
 -- Guard
 (35199, 4045, 1), -- Resist Full Magic Attack
-(35199, 4408, 16), -- HP Increase (8x)
-(35199, 4409, 11), -- MP Increase (3x)
-(35199, 4410, 18), -- Extremely Strong P. Atk.
-(35199, 4411, 11), -- Average M. Atk.
-(35199, 4412, 11), -- Average P. Def.
-(35199, 4413, 11), -- Average M. Def.
-(35199, 4414, 2), -- Standard Type
-(35199, 4415, 11), -- Spears
-(35199, 4416, 22), -- Defending Army
+(35199, 4408, 16), -- HP Modifiers
+(35199, 4409, 11), -- MP Modifiers
+(35199, 4410, 18), -- P. Atk. Modifiers
+(35199, 4411, 11), -- M. Atk. Modifiers
+(35199, 4412, 11), -- P. Def. Modifiers
+(35199, 4413, 11), -- M. Def. Modifiers
+(35199, 4414, 2), -- Armor Type
+(35199, 4415, 11), -- Weapon Type
+(35199, 4416, 22), -- Races
 -- Guard
 (35200, 4045, 1), -- Resist Full Magic Attack
-(35200, 4408, 16), -- HP Increase (8x)
-(35200, 4409, 11), -- MP Increase (3x)
-(35200, 4410, 18), -- Extremely Strong P. Atk.
-(35200, 4411, 11), -- Average M. Atk.
-(35200, 4412, 11), -- Average P. Def.
-(35200, 4413, 11), -- Average M. Def.
-(35200, 4414, 2), -- Standard Type
-(35200, 4415, 3), -- One-handed Sword
-(35200, 4416, 22), -- Defending Army
+(35200, 4408, 16), -- HP Modifiers
+(35200, 4409, 11), -- MP Modifiers
+(35200, 4410, 18), -- P. Atk. Modifiers
+(35200, 4411, 11), -- M. Atk. Modifiers
+(35200, 4412, 11), -- P. Def. Modifiers
+(35200, 4413, 11), -- M. Def. Modifiers
+(35200, 4414, 2), -- Armor Type
+(35200, 4415, 3), -- Weapon Type
+(35200, 4416, 22), -- Races
 -- Guard
 (35201, 4045, 1), -- Resist Full Magic Attack
-(35201, 4408, 16), -- HP Increase (8x)
-(35201, 4409, 11), -- MP Increase (3x)
-(35201, 4410, 18), -- Extremely Strong P. Atk.
-(35201, 4411, 11), -- Average M. Atk.
-(35201, 4412, 11), -- Average P. Def.
-(35201, 4413, 11), -- Average M. Def.
-(35201, 4414, 2), -- Standard Type
-(35201, 4415, 9), -- Bows
-(35201, 4416, 22), -- Defending Army
+(35201, 4408, 16), -- HP Modifiers
+(35201, 4409, 11), -- MP Modifiers
+(35201, 4410, 18), -- P. Atk. Modifiers
+(35201, 4411, 11), -- M. Atk. Modifiers
+(35201, 4412, 11), -- P. Def. Modifiers
+(35201, 4413, 11), -- M. Def. Modifiers
+(35201, 4414, 2), -- Armor Type
+(35201, 4415, 9), -- Weapon Type
+(35201, 4416, 22), -- Races
 -- Guard
 (35202, 4045, 1), -- Resist Full Magic Attack
-(35202, 4408, 16), -- HP Increase (8x)
-(35202, 4409, 11), -- MP Increase (3x)
-(35202, 4410, 18), -- Extremely Strong P. Atk.
-(35202, 4411, 11), -- Average M. Atk.
-(35202, 4412, 11), -- Average P. Def.
-(35202, 4413, 11), -- Average M. Def.
-(35202, 4414, 2), -- Standard Type
-(35202, 4415, 11), -- Spears
-(35202, 4416, 22), -- Defending Army
+(35202, 4408, 16), -- HP Modifiers
+(35202, 4409, 11), -- MP Modifiers
+(35202, 4410, 18), -- P. Atk. Modifiers
+(35202, 4411, 11), -- M. Atk. Modifiers
+(35202, 4412, 11), -- P. Def. Modifiers
+(35202, 4413, 11), -- M. Def. Modifiers
+(35202, 4414, 2), -- Armor Type
+(35202, 4415, 11), -- Weapon Type
+(35202, 4416, 22), -- Races
 -- Guard
 (35203, 4045, 1), -- Resist Full Magic Attack
-(35203, 4408, 16), -- HP Increase (8x)
-(35203, 4409, 11), -- MP Increase (3x)
-(35203, 4410, 18), -- Extremely Strong P. Atk.
-(35203, 4411, 11), -- Average M. Atk.
-(35203, 4412, 11), -- Average P. Def.
-(35203, 4413, 11), -- Average M. Def.
-(35203, 4414, 2), -- Standard Type
-(35203, 4415, 3), -- One-handed Sword
-(35203, 4416, 22), -- Defending Army
+(35203, 4408, 16), -- HP Modifiers
+(35203, 4409, 11), -- MP Modifiers
+(35203, 4410, 18), -- P. Atk. Modifiers
+(35203, 4411, 11), -- M. Atk. Modifiers
+(35203, 4412, 11), -- P. Def. Modifiers
+(35203, 4413, 11), -- M. Def. Modifiers
+(35203, 4414, 2), -- Armor Type
+(35203, 4415, 3), -- Weapon Type
+(35203, 4416, 22), -- Races
 -- Guard
 (35204, 4045, 1), -- Resist Full Magic Attack
-(35204, 4408, 16), -- HP Increase (8x)
-(35204, 4409, 11), -- MP Increase (3x)
-(35204, 4410, 18), -- Extremely Strong P. Atk.
-(35204, 4411, 11), -- Average M. Atk.
-(35204, 4412, 11), -- Average P. Def.
-(35204, 4413, 11), -- Average M. Def.
-(35204, 4414, 2), -- Standard Type
-(35204, 4415, 9), -- Bows
-(35204, 4416, 22), -- Defending Army
+(35204, 4408, 16), -- HP Modifiers
+(35204, 4409, 11), -- MP Modifiers
+(35204, 4410, 18), -- P. Atk. Modifiers
+(35204, 4411, 11), -- M. Atk. Modifiers
+(35204, 4412, 11), -- P. Def. Modifiers
+(35204, 4413, 11), -- M. Def. Modifiers
+(35204, 4414, 2), -- Armor Type
+(35204, 4415, 9), -- Weapon Type
+(35204, 4416, 22), -- Races
 -- Royal Knight
 (35205, 4045, 1), -- Resist Full Magic Attack
-(35205, 4408, 16), -- HP Increase (8x)
-(35205, 4409, 11), -- MP Increase (3x)
-(35205, 4410, 18), -- Extremely Strong P. Atk.
-(35205, 4411, 11), -- Average M. Atk.
-(35205, 4412, 11), -- Average P. Def.
-(35205, 4413, 11), -- Average M. Def.
-(35205, 4414, 2), -- Standard Type
-(35205, 4415, 3), -- One-handed Sword
-(35205, 4416, 22), -- Defending Army
+(35205, 4408, 16), -- HP Modifiers
+(35205, 4409, 11), -- MP Modifiers
+(35205, 4410, 18), -- P. Atk. Modifiers
+(35205, 4411, 11), -- M. Atk. Modifiers
+(35205, 4412, 11), -- P. Def. Modifiers
+(35205, 4413, 11), -- M. Def. Modifiers
+(35205, 4414, 2), -- Armor Type
+(35205, 4415, 3), -- Weapon Type
+(35205, 4416, 22), -- Races
 -- Court Sorcerer
 (35206, 4026, 1), -- Gludio Flame
 (35206, 4045, 1), -- Resist Full Magic Attack
-(35206, 4408, 16), -- HP Increase (8x)
-(35206, 4409, 11), -- MP Increase (3x)
-(35206, 4410, 18), -- Extremely Strong P. Atk.
-(35206, 4411, 11), -- Average M. Atk.
-(35206, 4412, 11), -- Average P. Def.
-(35206, 4413, 11), -- Average M. Def.
-(35206, 4414, 2), -- Standard Type
-(35206, 4415, 5), -- Blunt Weapons
-(35206, 4416, 22), -- Defending Army
+(35206, 4408, 16), -- HP Modifiers
+(35206, 4409, 11), -- MP Modifiers
+(35206, 4410, 18), -- P. Atk. Modifiers
+(35206, 4411, 11), -- M. Atk. Modifiers
+(35206, 4412, 11), -- P. Def. Modifiers
+(35206, 4413, 11), -- M. Def. Modifiers
+(35206, 4414, 2), -- Armor Type
+(35206, 4415, 5), -- Weapon Type
+(35206, 4416, 22), -- Races
 -- Court Sorcerer
 (35207, 4027, 1), -- Gludio Heal
 (35207, 4045, 1), -- Resist Full Magic Attack
-(35207, 4408, 16), -- HP Increase (8x)
-(35207, 4409, 11), -- MP Increase (3x)
-(35207, 4410, 18), -- Extremely Strong P. Atk.
-(35207, 4411, 11), -- Average M. Atk.
-(35207, 4412, 11), -- Average P. Def.
-(35207, 4413, 11), -- Average M. Def.
-(35207, 4414, 2), -- Standard Type
-(35207, 4415, 5), -- Blunt Weapons
-(35207, 4416, 22), -- Defending Army
+(35207, 4408, 16), -- HP Modifiers
+(35207, 4409, 11), -- MP Modifiers
+(35207, 4410, 18), -- P. Atk. Modifiers
+(35207, 4411, 11), -- M. Atk. Modifiers
+(35207, 4412, 11), -- P. Def. Modifiers
+(35207, 4413, 11), -- M. Def. Modifiers
+(35207, 4414, 2), -- Armor Type
+(35207, 4415, 5), -- Weapon Type
+(35207, 4416, 22), -- Races
 -- Court Guard
 (35208, 4045, 1), -- Resist Full Magic Attack
-(35208, 4408, 16), -- HP Increase (8x)
-(35208, 4409, 11), -- MP Increase (3x)
-(35208, 4410, 18), -- Extremely Strong P. Atk.
-(35208, 4411, 11), -- Average M. Atk.
-(35208, 4412, 11), -- Average P. Def.
-(35208, 4413, 11), -- Average M. Def.
-(35208, 4414, 2), -- Standard Type
-(35208, 4415, 11), -- Spears
-(35208, 4416, 22), -- Defending Army
+(35208, 4408, 16), -- HP Modifiers
+(35208, 4409, 11), -- MP Modifiers
+(35208, 4410, 18), -- P. Atk. Modifiers
+(35208, 4411, 11), -- M. Atk. Modifiers
+(35208, 4412, 11), -- P. Def. Modifiers
+(35208, 4413, 11), -- M. Def. Modifiers
+(35208, 4414, 2), -- Armor Type
+(35208, 4415, 11), -- Weapon Type
+(35208, 4416, 22), -- Races
 -- Guard
 (35209, 4045, 1), -- Resist Full Magic Attack
-(35209, 4408, 16), -- HP Increase (8x)
-(35209, 4409, 11), -- MP Increase (3x)
-(35209, 4410, 18), -- Extremely Strong P. Atk.
-(35209, 4411, 11), -- Average M. Atk.
-(35209, 4412, 11), -- Average P. Def.
-(35209, 4413, 11), -- Average M. Def.
-(35209, 4414, 2), -- Standard Type
-(35209, 4415, 11), -- Spears
-(35209, 4416, 22), -- Defending Army
+(35209, 4408, 16), -- HP Modifiers
+(35209, 4409, 11), -- MP Modifiers
+(35209, 4410, 18), -- P. Atk. Modifiers
+(35209, 4411, 11), -- M. Atk. Modifiers
+(35209, 4412, 11), -- P. Def. Modifiers
+(35209, 4413, 11), -- M. Def. Modifiers
+(35209, 4414, 2), -- Armor Type
+(35209, 4415, 11), -- Weapon Type
+(35209, 4416, 22), -- Races
 -- Guard
 (35210, 4045, 1), -- Resist Full Magic Attack
-(35210, 4408, 16), -- HP Increase (8x)
-(35210, 4409, 11), -- MP Increase (3x)
-(35210, 4410, 18), -- Extremely Strong P. Atk.
-(35210, 4411, 11), -- Average M. Atk.
-(35210, 4412, 11), -- Average P. Def.
-(35210, 4413, 11), -- Average M. Def.
-(35210, 4414, 2), -- Standard Type
-(35210, 4415, 3), -- One-handed Sword
-(35210, 4416, 22), -- Defending Army
+(35210, 4408, 16), -- HP Modifiers
+(35210, 4409, 11), -- MP Modifiers
+(35210, 4410, 18), -- P. Atk. Modifiers
+(35210, 4411, 11), -- M. Atk. Modifiers
+(35210, 4412, 11), -- P. Def. Modifiers
+(35210, 4413, 11), -- M. Def. Modifiers
+(35210, 4414, 2), -- Armor Type
+(35210, 4415, 3), -- Weapon Type
+(35210, 4416, 22), -- Races
 -- Guard
 (35211, 4045, 1), -- Resist Full Magic Attack
-(35211, 4408, 16), -- HP Increase (8x)
-(35211, 4409, 11), -- MP Increase (3x)
-(35211, 4410, 18), -- Extremely Strong P. Atk.
-(35211, 4411, 11), -- Average M. Atk.
-(35211, 4412, 11), -- Average P. Def.
-(35211, 4413, 11), -- Average M. Def.
-(35211, 4414, 2), -- Standard Type
-(35211, 4415, 9), -- Bows
-(35211, 4416, 22), -- Defending Army
+(35211, 4408, 16), -- HP Modifiers
+(35211, 4409, 11), -- MP Modifiers
+(35211, 4410, 18), -- P. Atk. Modifiers
+(35211, 4411, 11), -- M. Atk. Modifiers
+(35211, 4412, 11), -- P. Def. Modifiers
+(35211, 4413, 11), -- M. Def. Modifiers
+(35211, 4414, 2), -- Armor Type
+(35211, 4415, 9), -- Weapon Type
+(35211, 4416, 22), -- Races
 -- Guard
 (35212, 4045, 1), -- Resist Full Magic Attack
-(35212, 4408, 16), -- HP Increase (8x)
-(35212, 4409, 11), -- MP Increase (3x)
-(35212, 4410, 18), -- Extremely Strong P. Atk.
-(35212, 4411, 11), -- Average M. Atk.
-(35212, 4412, 11), -- Average P. Def.
-(35212, 4413, 11), -- Average M. Def.
-(35212, 4414, 2), -- Standard Type
-(35212, 4415, 11), -- Spears
-(35212, 4416, 22), -- Defending Army
+(35212, 4408, 16), -- HP Modifiers
+(35212, 4409, 11), -- MP Modifiers
+(35212, 4410, 18), -- P. Atk. Modifiers
+(35212, 4411, 11), -- M. Atk. Modifiers
+(35212, 4412, 11), -- P. Def. Modifiers
+(35212, 4413, 11), -- M. Def. Modifiers
+(35212, 4414, 2), -- Armor Type
+(35212, 4415, 11), -- Weapon Type
+(35212, 4416, 22), -- Races
 -- Guard
 (35213, 4045, 1), -- Resist Full Magic Attack
-(35213, 4408, 16), -- HP Increase (8x)
-(35213, 4409, 11), -- MP Increase (3x)
-(35213, 4410, 18), -- Extremely Strong P. Atk.
-(35213, 4411, 11), -- Average M. Atk.
-(35213, 4412, 11), -- Average P. Def.
-(35213, 4413, 11), -- Average M. Def.
-(35213, 4414, 2), -- Standard Type
-(35213, 4415, 3), -- One-handed Sword
-(35213, 4416, 22), -- Defending Army
+(35213, 4408, 16), -- HP Modifiers
+(35213, 4409, 11), -- MP Modifiers
+(35213, 4410, 18), -- P. Atk. Modifiers
+(35213, 4411, 11), -- M. Atk. Modifiers
+(35213, 4412, 11), -- P. Def. Modifiers
+(35213, 4413, 11), -- M. Def. Modifiers
+(35213, 4414, 2), -- Armor Type
+(35213, 4415, 3), -- Weapon Type
+(35213, 4416, 22), -- Races
 -- Guard
 (35214, 4045, 1), -- Resist Full Magic Attack
-(35214, 4408, 16), -- HP Increase (8x)
-(35214, 4409, 11), -- MP Increase (3x)
-(35214, 4410, 18), -- Extremely Strong P. Atk.
-(35214, 4411, 11), -- Average M. Atk.
-(35214, 4412, 11), -- Average P. Def.
-(35214, 4413, 11), -- Average M. Def.
-(35214, 4414, 2), -- Standard Type
-(35214, 4415, 9), -- Bows
-(35214, 4416, 22), -- Defending Army
+(35214, 4408, 16), -- HP Modifiers
+(35214, 4409, 11), -- MP Modifiers
+(35214, 4410, 18), -- P. Atk. Modifiers
+(35214, 4411, 11), -- M. Atk. Modifiers
+(35214, 4412, 11), -- P. Def. Modifiers
+(35214, 4413, 11), -- M. Def. Modifiers
+(35214, 4414, 2), -- Armor Type
+(35214, 4415, 9), -- Weapon Type
+(35214, 4416, 22), -- Races
 -- Guard
 (35215, 4045, 1), -- Resist Full Magic Attack
-(35215, 4408, 16), -- HP Increase (8x)
-(35215, 4409, 11), -- MP Increase (3x)
-(35215, 4410, 18), -- Extremely Strong P. Atk.
-(35215, 4411, 11), -- Average M. Atk.
-(35215, 4412, 11), -- Average P. Def.
-(35215, 4413, 11), -- Average M. Def.
-(35215, 4414, 2), -- Standard Type
-(35215, 4415, 11), -- Spears
-(35215, 4416, 22), -- Defending Army
+(35215, 4408, 16), -- HP Modifiers
+(35215, 4409, 11), -- MP Modifiers
+(35215, 4410, 18), -- P. Atk. Modifiers
+(35215, 4411, 11), -- M. Atk. Modifiers
+(35215, 4412, 11), -- P. Def. Modifiers
+(35215, 4413, 11), -- M. Def. Modifiers
+(35215, 4414, 2), -- Armor Type
+(35215, 4415, 11), -- Weapon Type
+(35215, 4416, 22), -- Races
 -- Guard
 (35216, 4045, 1), -- Resist Full Magic Attack
-(35216, 4408, 16), -- HP Increase (8x)
-(35216, 4409, 11), -- MP Increase (3x)
-(35216, 4410, 18), -- Extremely Strong P. Atk.
-(35216, 4411, 11), -- Average M. Atk.
-(35216, 4412, 11), -- Average P. Def.
-(35216, 4413, 11), -- Average M. Def.
-(35216, 4414, 2), -- Standard Type
-(35216, 4415, 3), -- One-handed Sword
-(35216, 4416, 22), -- Defending Army
+(35216, 4408, 16), -- HP Modifiers
+(35216, 4409, 11), -- MP Modifiers
+(35216, 4410, 18), -- P. Atk. Modifiers
+(35216, 4411, 11), -- M. Atk. Modifiers
+(35216, 4412, 11), -- P. Def. Modifiers
+(35216, 4413, 11), -- M. Def. Modifiers
+(35216, 4414, 2), -- Armor Type
+(35216, 4415, 3), -- Weapon Type
+(35216, 4416, 22), -- Races
 -- Guard
 (35217, 4045, 1), -- Resist Full Magic Attack
-(35217, 4408, 16), -- HP Increase (8x)
-(35217, 4409, 11), -- MP Increase (3x)
-(35217, 4410, 18), -- Extremely Strong P. Atk.
-(35217, 4411, 11), -- Average M. Atk.
-(35217, 4412, 11), -- Average P. Def.
-(35217, 4413, 11), -- Average M. Def.
-(35217, 4414, 2), -- Standard Type
-(35217, 4415, 9), -- Bows
-(35217, 4416, 22), -- Defending Army
+(35217, 4408, 16), -- HP Modifiers
+(35217, 4409, 11), -- MP Modifiers
+(35217, 4410, 18), -- P. Atk. Modifiers
+(35217, 4411, 11), -- M. Atk. Modifiers
+(35217, 4412, 11), -- P. Def. Modifiers
+(35217, 4413, 11), -- M. Def. Modifiers
+(35217, 4414, 2), -- Armor Type
+(35217, 4415, 9), -- Weapon Type
+(35217, 4416, 22), -- Races
 -- Gatekeeper
 (35218, 4045, 1), -- Resist Full Magic Attack
-(35218, 4408, 1), -- HP Increase (1x)
-(35218, 4409, 1), -- MP Increase (1x)
-(35218, 4410, 11), -- Average P. Atk.
-(35218, 4411, 11), -- Average M. Atk.
-(35218, 4412, 11), -- Average P. Def.
-(35218, 4413, 11), -- Average M. Def.
-(35218, 4414, 2), -- Standard Type
-(35218, 4415, 3), -- One-handed Sword
-(35218, 4416, 23), -- Mercenaries
+(35218, 4408, 1), -- HP Modifiers
+(35218, 4409, 1), -- MP Modifiers
+(35218, 4410, 11), -- P. Atk. Modifiers
+(35218, 4411, 11), -- M. Atk. Modifiers
+(35218, 4412, 11), -- P. Def. Modifiers
+(35218, 4413, 11), -- M. Def. Modifiers
+(35218, 4414, 2), -- Armor Type
+(35218, 4415, 3), -- Weapon Type
+(35218, 4416, 23), -- Races
 -- Gatekeeper
 (35219, 4045, 1), -- Resist Full Magic Attack
-(35219, 4408, 1), -- HP Increase (1x)
-(35219, 4409, 1), -- MP Increase (1x)
-(35219, 4410, 11), -- Average P. Atk.
-(35219, 4411, 11), -- Average M. Atk.
-(35219, 4412, 11), -- Average P. Def.
-(35219, 4413, 11), -- Average M. Def.
-(35219, 4414, 2), -- Standard Type
-(35219, 4415, 3), -- One-handed Sword
-(35219, 4416, 23), -- Mercenaries
+(35219, 4408, 1), -- HP Modifiers
+(35219, 4409, 1), -- MP Modifiers
+(35219, 4410, 11), -- P. Atk. Modifiers
+(35219, 4411, 11), -- M. Atk. Modifiers
+(35219, 4412, 11), -- P. Def. Modifiers
+(35219, 4413, 11), -- M. Def. Modifiers
+(35219, 4414, 2), -- Armor Type
+(35219, 4415, 3), -- Weapon Type
+(35219, 4416, 23), -- Races
 -- Gatekeeper
 (35220, 4045, 1), -- Resist Full Magic Attack
-(35220, 4408, 1), -- HP Increase (1x)
-(35220, 4409, 1), -- MP Increase (1x)
-(35220, 4410, 11), -- Average P. Atk.
-(35220, 4411, 11), -- Average M. Atk.
-(35220, 4412, 11), -- Average P. Def.
-(35220, 4413, 11), -- Average M. Def.
-(35220, 4414, 2), -- Standard Type
-(35220, 4415, 3), -- One-handed Sword
-(35220, 4416, 23), -- Mercenaries
+(35220, 4408, 1), -- HP Modifiers
+(35220, 4409, 1), -- MP Modifiers
+(35220, 4410, 11), -- P. Atk. Modifiers
+(35220, 4411, 11), -- M. Atk. Modifiers
+(35220, 4412, 11), -- P. Def. Modifiers
+(35220, 4413, 11), -- M. Def. Modifiers
+(35220, 4414, 2), -- Armor Type
+(35220, 4415, 3), -- Weapon Type
+(35220, 4416, 23), -- Races
 -- Mass Gatekeeper
 (35221, 4045, 1), -- Resist Full Magic Attack
-(35221, 4408, 1), -- HP Increase (1x)
-(35221, 4409, 1), -- MP Increase (1x)
-(35221, 4410, 11), -- Average P. Atk.
-(35221, 4411, 11), -- Average M. Atk.
-(35221, 4412, 11), -- Average P. Def.
-(35221, 4413, 11), -- Average M. Def.
-(35221, 4414, 2), -- Standard Type
-(35221, 4415, 3), -- One-handed Sword
-(35221, 4416, 14), -- Humans
+(35221, 4408, 1), -- HP Modifiers
+(35221, 4409, 1), -- MP Modifiers
+(35221, 4410, 11), -- P. Atk. Modifiers
+(35221, 4411, 11), -- M. Atk. Modifiers
+(35221, 4412, 11), -- P. Def. Modifiers
+(35221, 4413, 11), -- M. Def. Modifiers
+(35221, 4414, 2), -- Armor Type
+(35221, 4415, 3), -- Weapon Type
+(35221, 4416, 14), -- Races
 -- Outer Doorman
 (35222, 4045, 1), -- Resist Full Magic Attack
-(35222, 4408, 1), -- HP Increase (1x)
-(35222, 4409, 1), -- MP Increase (1x)
-(35222, 4410, 11), -- Average P. Atk.
-(35222, 4411, 11), -- Average M. Atk.
-(35222, 4412, 11), -- Average P. Def.
-(35222, 4413, 11), -- Average M. Def.
-(35222, 4414, 2), -- Standard Type
-(35222, 4415, 3), -- One-handed Sword
-(35222, 4416, 14), -- Humans
+(35222, 4408, 1), -- HP Modifiers
+(35222, 4409, 1), -- MP Modifiers
+(35222, 4410, 11), -- P. Atk. Modifiers
+(35222, 4411, 11), -- M. Atk. Modifiers
+(35222, 4412, 11), -- P. Def. Modifiers
+(35222, 4413, 11); -- M. Def. Modifiers
+
+INSERT INTO `npcskills` VALUES
+(35222, 4414, 2), -- Armor Type
+(35222, 4415, 3), -- Weapon Type
+(35222, 4416, 14), -- Races
 -- Inner Doorman
 (35223, 4045, 1), -- Resist Full Magic Attack
-(35223, 4408, 1), -- HP Increase (1x)
-(35223, 4409, 1), -- MP Increase (1x)
-(35223, 4410, 11), -- Average P. Atk.
-(35223, 4411, 11), -- Average M. Atk.
-(35223, 4412, 11), -- Average P. Def.
-(35223, 4413, 11), -- Average M. Def.
-(35223, 4414, 2), -- Standard Type
-(35223, 4415, 3), -- One-handed Sword
-(35223, 4416, 14), -- Humans
+(35223, 4408, 1), -- HP Modifiers
+(35223, 4409, 1), -- MP Modifiers
+(35223, 4410, 11), -- P. Atk. Modifiers
+(35223, 4411, 11), -- M. Atk. Modifiers
+(35223, 4412, 11), -- P. Def. Modifiers
+(35223, 4413, 11), -- M. Def. Modifiers
+(35223, 4414, 2), -- Armor Type
+(35223, 4415, 3), -- Weapon Type
+(35223, 4416, 14), -- Races
 -- Blacksmith
 (35224, 4045, 1), -- Resist Full Magic Attack
-(35224, 4408, 1), -- HP Increase (1x)
-(35224, 4409, 1), -- MP Increase (1x)
-(35224, 4410, 11), -- Average P. Atk.
-(35224, 4411, 11), -- Average M. Atk.
-(35224, 4412, 11), -- Average P. Def.
-(35224, 4413, 11), -- Average M. Def.
-(35224, 4414, 2), -- Standard Type
-(35224, 4415, 3), -- One-handed Sword
-(35224, 4416, 18), -- Dwarves
+(35224, 4408, 1), -- HP Modifiers
+(35224, 4409, 1), -- MP Modifiers
+(35224, 4410, 11), -- P. Atk. Modifiers
+(35224, 4411, 11), -- M. Atk. Modifiers
+(35224, 4412, 11), -- P. Def. Modifiers
+(35224, 4413, 11), -- M. Def. Modifiers
+(35224, 4414, 2), -- Armor Type
+(35224, 4415, 3), -- Weapon Type
+(35224, 4416, 18), -- Races
 -- Warehouse Keeper
 (35225, 4045, 1), -- Resist Full Magic Attack
-(35225, 4408, 1), -- HP Increase (1x)
-(35225, 4409, 1), -- MP Increase (1x)
-(35225, 4410, 11), -- Average P. Atk.
-(35225, 4411, 11), -- Average M. Atk.
-(35225, 4412, 11), -- Average P. Def.
-(35225, 4413, 11), -- Average M. Def.
-(35225, 4414, 2), -- Standard Type
-(35225, 4415, 3), -- One-handed Sword
-(35225, 4416, 18), -- Dwarves
+(35225, 4408, 1), -- HP Modifiers
+(35225, 4409, 1), -- MP Modifiers
+(35225, 4410, 11), -- P. Atk. Modifiers
+(35225, 4411, 11), -- M. Atk. Modifiers
+(35225, 4412, 11), -- P. Def. Modifiers
+(35225, 4413, 11), -- M. Def. Modifiers
+(35225, 4414, 2), -- Armor Type
+(35225, 4415, 3), -- Weapon Type
+(35225, 4416, 18), -- Races
 -- Brasseur
 (35226, 4045, 1), -- Resist Full Magic Attack
-(35226, 4408, 1), -- HP Increase (1x)
-(35226, 4409, 1), -- MP Increase (1x)
-(35226, 4410, 11), -- Average P. Atk.
-(35226, 4411, 11), -- Average M. Atk.
-(35226, 4412, 11), -- Average P. Def.
-(35226, 4413, 11), -- Average M. Def.
-(35226, 4414, 2), -- Standard Type
-(35226, 4415, 3), -- One-handed Sword
-(35226, 4416, 14), -- Humans
+(35226, 4408, 1), -- HP Modifiers
+(35226, 4409, 1), -- MP Modifiers
+(35226, 4410, 11), -- P. Atk. Modifiers
+(35226, 4411, 11), -- M. Atk. Modifiers
+(35226, 4412, 11), -- P. Def. Modifiers
+(35226, 4413, 11), -- M. Def. Modifiers
+(35226, 4414, 2), -- Armor Type
+(35226, 4415, 3), -- Weapon Type
+(35226, 4416, 14), -- Races
 -- Finrod
 (35227, 4045, 1), -- Resist Full Magic Attack
-(35227, 4408, 1), -- HP Increase (1x)
-(35227, 4409, 1), -- MP Increase (1x)
-(35227, 4410, 11), -- Average P. Atk.
-(35227, 4411, 11), -- Average M. Atk.
-(35227, 4412, 11), -- Average P. Def.
-(35227, 4413, 11), -- Average M. Def.
-(35227, 4414, 2), -- Standard Type
-(35227, 4415, 3), -- One-handed Sword
-(35227, 4416, 15), -- Elves
+(35227, 4408, 1), -- HP Modifiers
+(35227, 4409, 1), -- MP Modifiers
+(35227, 4410, 11), -- P. Atk. Modifiers
+(35227, 4411, 11), -- M. Atk. Modifiers
+(35227, 4412, 11), -- P. Def. Modifiers
+(35227, 4413, 11), -- M. Def. Modifiers
+(35227, 4414, 2), -- Armor Type
+(35227, 4415, 3), -- Weapon Type
+(35227, 4416, 15), -- Races
 -- Morrison
 (35228, 4045, 1), -- Resist Full Magic Attack
-(35228, 4408, 1), -- HP Increase (1x)
-(35228, 4409, 1), -- MP Increase (1x)
-(35228, 4410, 11), -- Average P. Atk.
-(35228, 4411, 11), -- Average M. Atk.
-(35228, 4412, 11), -- Average P. Def.
-(35228, 4413, 11), -- Average M. Def.
-(35228, 4414, 2), -- Standard Type
-(35228, 4415, 3), -- One-handed Sword
-(35228, 4416, 14), -- Humans
+(35228, 4408, 1), -- HP Modifiers
+(35228, 4409, 1), -- MP Modifiers
+(35228, 4410, 11), -- P. Atk. Modifiers
+(35228, 4411, 11), -- M. Atk. Modifiers
+(35228, 4412, 11), -- P. Def. Modifiers
+(35228, 4413, 11), -- M. Def. Modifiers
+(35228, 4414, 2), -- Armor Type
+(35228, 4415, 3), -- Weapon Type
+(35228, 4416, 14), -- Races
 -- Manor Manager
 (35229, 4045, 1), -- Resist Full Magic Attack
-(35229, 4408, 1), -- HP Increase (1x)
-(35229, 4409, 1), -- MP Increase (1x)
-(35229, 4410, 11), -- Average P. Atk.
-(35229, 4411, 11), -- Average M. Atk.
-(35229, 4412, 11), -- Average P. Def.
-(35229, 4413, 11), -- Average M. Def.
-(35229, 4414, 2), -- Standard Type
-(35229, 4415, 3), -- One-handed Sword
-(35229, 4416, 14), -- Humans
+(35229, 4408, 1), -- HP Modifiers
+(35229, 4409, 1), -- MP Modifiers
+(35229, 4410, 11), -- P. Atk. Modifiers
+(35229, 4411, 11), -- M. Atk. Modifiers
+(35229, 4412, 11), -- P. Def. Modifiers
+(35229, 4413, 11), -- M. Def. Modifiers
+(35229, 4414, 2), -- Armor Type
+(35229, 4415, 3), -- Weapon Type
+(35229, 4416, 14), -- Races
 -- Manor Manager
 (35230, 4045, 1), -- Resist Full Magic Attack
-(35230, 4408, 1), -- HP Increase (1x)
-(35230, 4409, 1), -- MP Increase (1x)
-(35230, 4410, 11), -- Average P. Atk.
-(35230, 4411, 11), -- Average M. Atk.
-(35230, 4412, 11), -- Average P. Def.
-(35230, 4413, 11), -- Average M. Def.
-(35230, 4414, 2), -- Standard Type
-(35230, 4415, 3), -- One-handed Sword
-(35230, 4416, 15), -- Elves
+(35230, 4408, 1), -- HP Modifiers
+(35230, 4409, 1), -- MP Modifiers
+(35230, 4410, 11), -- P. Atk. Modifiers
+(35230, 4411, 11), -- M. Atk. Modifiers
+(35230, 4412, 11), -- P. Def. Modifiers
+(35230, 4413, 11), -- M. Def. Modifiers
+(35230, 4414, 2), -- Armor Type
+(35230, 4415, 3), -- Weapon Type
+(35230, 4416, 15), -- Races
 -- Manor Manager
 (35231, 4045, 1), -- Resist Full Magic Attack
-(35231, 4408, 1), -- HP Increase (1x)
-(35231, 4409, 1), -- MP Increase (1x)
-(35231, 4410, 11), -- Average P. Atk.
-(35231, 4411, 11), -- Average M. Atk.
-(35231, 4412, 11), -- Average P. Def.
-(35231, 4413, 11), -- Average M. Def.
-(35231, 4414, 2), -- Standard Type
-(35231, 4415, 3), -- One-handed Sword
-(35231, 4416, 16), -- Dark Elves
+(35231, 4408, 1), -- HP Modifiers
+(35231, 4409, 1), -- MP Modifiers
+(35231, 4410, 11), -- P. Atk. Modifiers
+(35231, 4411, 11), -- M. Atk. Modifiers
+(35231, 4412, 11), -- P. Def. Modifiers
+(35231, 4413, 11), -- M. Def. Modifiers
+(35231, 4414, 2), -- Armor Type
+(35231, 4415, 3), -- Weapon Type
+(35231, 4416, 16), -- Races
 -- Sherwood
 (35232, 4045, 1), -- Resist Full Magic Attack
-(35232, 4408, 1), -- HP Increase (1x)
-(35232, 4409, 1), -- MP Increase (1x)
-(35232, 4410, 11), -- Average P. Atk.
-(35232, 4411, 11), -- Average M. Atk.
-(35232, 4412, 11), -- Average P. Def.
-(35232, 4413, 11), -- Average M. Def.
-(35232, 4414, 2), -- Standard Type
-(35232, 4415, 3), -- One-handed Sword
-(35232, 4416, 14), -- Humans
+(35232, 4408, 1), -- HP Modifiers
+(35232, 4409, 1), -- MP Modifiers
+(35232, 4410, 11), -- P. Atk. Modifiers
+(35232, 4411, 11), -- M. Atk. Modifiers
+(35232, 4412, 11), -- P. Def. Modifiers
+(35232, 4413, 11), -- M. Def. Modifiers
+(35232, 4414, 2), -- Armor Type
+(35232, 4415, 3), -- Weapon Type
+(35232, 4416, 14), -- Races
 -- Aden Holy Artifact
 (35233, 4045, 1), -- Resist Full Magic Attack
-(35233, 4390, 1), -- Mystic Immunity
-(35233, 4408, 1), -- HP Increase (1x)
-(35233, 4409, 1), -- MP Increase (1x)
-(35233, 4410, 11), -- Average P. Atk.
-(35233, 4411, 11), -- Average M. Atk.
-(35233, 4412, 11), -- Average P. Def.
-(35233, 4413, 11), -- Average M. Def.
-(35233, 4414, 2), -- Standard Type
-(35233, 4415, 3), -- One-handed Sword
-(35233, 4416, 19), -- Others
+(35233, 4390, 1), -- NPC Abnormal Immunity
+(35233, 4408, 1), -- HP Modifiers
+(35233, 4409, 1), -- MP Modifiers
+(35233, 4410, 11), -- P. Atk. Modifiers
+(35233, 4411, 11), -- M. Atk. Modifiers
+(35233, 4412, 11), -- P. Def. Modifiers
+(35233, 4413, 11), -- M. Def. Modifiers
+(35233, 4414, 2), -- Armor Type
+(35233, 4415, 3), -- Weapon Type
+(35233, 4416, 19), -- Races
 -- Amadeo Cadmus
 (35234, 4045, 1), -- Resist Full Magic Attack
-(35234, 4408, 16), -- HP Increase (8x)
-(35234, 4409, 11), -- MP Increase (3x)
-(35234, 4410, 18), -- Extremely Strong P. Atk.
-(35234, 4411, 18), -- Extremely Strong M. Atk.
-(35234, 4412, 18), -- Extremely Strong P. Def.
-(35234, 4413, 18), -- Extremely Strong M. Def.
-(35234, 4414, 2), -- Standard Type
-(35234, 4415, 3), -- One-handed Sword
-(35234, 4416, 22), -- Defending Army
+(35234, 4408, 16), -- HP Modifiers
+(35234, 4409, 11), -- MP Modifiers
+(35234, 4410, 18), -- P. Atk. Modifiers
+(35234, 4411, 18), -- M. Atk. Modifiers
+(35234, 4412, 18), -- P. Def. Modifiers
+(35234, 4413, 18), -- M. Def. Modifiers
+(35234, 4414, 2), -- Armor Type
+(35234, 4415, 3), -- Weapon Type
+(35234, 4416, 22), -- Races
 -- Royal Knight
 (35235, 4045, 1), -- Resist Full Magic Attack
-(35235, 4408, 11), -- HP Increase (3x)
-(35235, 4409, 11), -- MP Increase (3x)
-(35235, 4410, 15), -- Strong P. Atk.
-(35235, 4411, 11), -- Average M. Atk.
-(35235, 4412, 11), -- Average P. Def.
-(35235, 4413, 11), -- Average M. Def.
-(35235, 4414, 2), -- Standard Type
-(35235, 4415, 3), -- One-handed Sword
-(35235, 4416, 22), -- Defending Army
+(35235, 4408, 11), -- HP Modifiers
+(35235, 4409, 11), -- MP Modifiers
+(35235, 4410, 15), -- P. Atk. Modifiers
+(35235, 4411, 11), -- M. Atk. Modifiers
+(35235, 4412, 11), -- P. Def. Modifiers
+(35235, 4413, 11), -- M. Def. Modifiers
+(35235, 4414, 2), -- Armor Type
+(35235, 4415, 3), -- Weapon Type
+(35235, 4416, 22), -- Races
 -- Court Sorcerer
 (35236, 4045, 1), -- Resist Full Magic Attack
 (35236, 4114, 1), -- Aden Flame
-(35236, 4408, 1), -- HP Increase (1x)
-(35236, 4409, 1), -- MP Increase (1x)
-(35236, 4410, 11), -- Average P. Atk.
-(35236, 4411, 11), -- Average M. Atk.
-(35236, 4412, 11), -- Average P. Def.
-(35236, 4413, 11), -- Average M. Def.
-(35236, 4414, 2), -- Standard Type
-(35236, 4415, 5), -- Blunt Weapons
-(35236, 4416, 22), -- Defending Army
+(35236, 4408, 1), -- HP Modifiers
+(35236, 4409, 1), -- MP Modifiers
+(35236, 4410, 11), -- P. Atk. Modifiers
+(35236, 4411, 11), -- M. Atk. Modifiers
+(35236, 4412, 11), -- P. Def. Modifiers
+(35236, 4413, 11), -- M. Def. Modifiers
+(35236, 4414, 2), -- Armor Type
+(35236, 4415, 5), -- Weapon Type
+(35236, 4416, 22), -- Races
 -- Court Sorcerer
 (35237, 4045, 1), -- Resist Full Magic Attack
 (35237, 4115, 1), -- Aden Heal
-(35237, 4408, 1), -- HP Increase (1x)
-(35237, 4409, 1), -- MP Increase (1x)
-(35237, 4410, 11), -- Average P. Atk.
-(35237, 4411, 11), -- Average M. Atk.
-(35237, 4412, 11), -- Average P. Def.
-(35237, 4413, 11), -- Average M. Def.
-(35237, 4414, 2), -- Standard Type
-(35237, 4415, 5), -- Blunt Weapons
-(35237, 4416, 22), -- Defending Army
+(35237, 4408, 1), -- HP Modifiers
+(35237, 4409, 1), -- MP Modifiers
+(35237, 4410, 11), -- P. Atk. Modifiers
+(35237, 4411, 11), -- M. Atk. Modifiers
+(35237, 4412, 11), -- P. Def. Modifiers
+(35237, 4413, 11), -- M. Def. Modifiers
+(35237, 4414, 2), -- Armor Type
+(35237, 4415, 5), -- Weapon Type
+(35237, 4416, 22), -- Races
 -- Court Guard
 (35238, 4045, 1), -- Resist Full Magic Attack
-(35238, 4408, 1), -- HP Increase (1x)
-(35238, 4409, 1), -- MP Increase (1x)
-(35238, 4410, 11), -- Average P. Atk.
-(35238, 4411, 11), -- Average M. Atk.
-(35238, 4412, 11), -- Average P. Def.
-(35238, 4413, 11), -- Average M. Def.
-(35238, 4414, 2), -- Standard Type
-(35238, 4415, 11), -- Spears
-(35238, 4416, 22), -- Defending Army
+(35238, 4408, 1), -- HP Modifiers
+(35238, 4409, 1), -- MP Modifiers
+(35238, 4410, 11), -- P. Atk. Modifiers
+(35238, 4411, 11), -- M. Atk. Modifiers
+(35238, 4412, 11), -- P. Def. Modifiers
+(35238, 4413, 11), -- M. Def. Modifiers
+(35238, 4414, 2), -- Armor Type
+(35238, 4415, 11), -- Weapon Type
+(35238, 4416, 22), -- Races
 -- Guard
 (35239, 4045, 1), -- Resist Full Magic Attack
-(35239, 4408, 1), -- HP Increase (1x)
-(35239, 4409, 1), -- MP Increase (1x)
-(35239, 4410, 11), -- Average P. Atk.
-(35239, 4411, 11), -- Average M. Atk.
-(35239, 4412, 11), -- Average P. Def.
-(35239, 4413, 11), -- Average M. Def.
-(35239, 4414, 2), -- Standard Type
-(35239, 4415, 11), -- Spears
-(35239, 4416, 22), -- Defending Army
+(35239, 4408, 1), -- HP Modifiers
+(35239, 4409, 1), -- MP Modifiers
+(35239, 4410, 11), -- P. Atk. Modifiers
+(35239, 4411, 11), -- M. Atk. Modifiers
+(35239, 4412, 11), -- P. Def. Modifiers
+(35239, 4413, 11), -- M. Def. Modifiers
+(35239, 4414, 2), -- Armor Type
+(35239, 4415, 11), -- Weapon Type
+(35239, 4416, 22), -- Races
 -- Guard
 (35240, 4045, 1), -- Resist Full Magic Attack
-(35240, 4408, 1), -- HP Increase (1x)
-(35240, 4409, 1), -- MP Increase (1x)
-(35240, 4410, 11), -- Average P. Atk.
-(35240, 4411, 11), -- Average M. Atk.
-(35240, 4412, 11), -- Average P. Def.
-(35240, 4413, 11), -- Average M. Def.
-(35240, 4414, 2), -- Standard Type
-(35240, 4415, 3), -- One-handed Sword
-(35240, 4416, 22), -- Defending Army
+(35240, 4408, 1), -- HP Modifiers
+(35240, 4409, 1), -- MP Modifiers
+(35240, 4410, 11), -- P. Atk. Modifiers
+(35240, 4411, 11), -- M. Atk. Modifiers
+(35240, 4412, 11), -- P. Def. Modifiers
+(35240, 4413, 11), -- M. Def. Modifiers
+(35240, 4414, 2), -- Armor Type
+(35240, 4415, 3), -- Weapon Type
+(35240, 4416, 22), -- Races
 -- Guard
 (35241, 4045, 1), -- Resist Full Magic Attack
-(35241, 4408, 1), -- HP Increase (1x)
-(35241, 4409, 1), -- MP Increase (1x)
-(35241, 4410, 11), -- Average P. Atk.
-(35241, 4411, 11), -- Average M. Atk.
-(35241, 4412, 11), -- Average P. Def.
-(35241, 4413, 11), -- Average M. Def.
-(35241, 4414, 2), -- Standard Type
-(35241, 4415, 9), -- Bows
-(35241, 4416, 22), -- Defending Army
+(35241, 4408, 1), -- HP Modifiers
+(35241, 4409, 1), -- MP Modifiers
+(35241, 4410, 11), -- P. Atk. Modifiers
+(35241, 4411, 11), -- M. Atk. Modifiers
+(35241, 4412, 11), -- P. Def. Modifiers
+(35241, 4413, 11), -- M. Def. Modifiers
+(35241, 4414, 2), -- Armor Type
+(35241, 4415, 9), -- Weapon Type
+(35241, 4416, 22), -- Races
 -- Guard
 (35242, 4045, 1), -- Resist Full Magic Attack
-(35242, 4408, 1), -- HP Increase (1x)
-(35242, 4409, 1), -- MP Increase (1x)
-(35242, 4410, 11), -- Average P. Atk.
-(35242, 4411, 11), -- Average M. Atk.
-(35242, 4412, 11), -- Average P. Def.
-(35242, 4413, 11), -- Average M. Def.
-(35242, 4414, 2), -- Standard Type
-(35242, 4415, 11), -- Spears
-(35242, 4416, 22), -- Defending Army
+(35242, 4408, 1), -- HP Modifiers
+(35242, 4409, 1), -- MP Modifiers
+(35242, 4410, 11), -- P. Atk. Modifiers
+(35242, 4411, 11), -- M. Atk. Modifiers
+(35242, 4412, 11), -- P. Def. Modifiers
+(35242, 4413, 11), -- M. Def. Modifiers
+(35242, 4414, 2), -- Armor Type
+(35242, 4415, 11), -- Weapon Type
+(35242, 4416, 22), -- Races
 -- Guard
 (35243, 4045, 1), -- Resist Full Magic Attack
-(35243, 4408, 1), -- HP Increase (1x)
-(35243, 4409, 1), -- MP Increase (1x)
-(35243, 4410, 11), -- Average P. Atk.
-(35243, 4411, 11), -- Average M. Atk.
-(35243, 4412, 11), -- Average P. Def.
-(35243, 4413, 11), -- Average M. Def.
-(35243, 4414, 2), -- Standard Type
-(35243, 4415, 3), -- One-handed Sword
-(35243, 4416, 22), -- Defending Army
+(35243, 4408, 1), -- HP Modifiers
+(35243, 4409, 1), -- MP Modifiers
+(35243, 4410, 11), -- P. Atk. Modifiers
+(35243, 4411, 11), -- M. Atk. Modifiers
+(35243, 4412, 11), -- P. Def. Modifiers
+(35243, 4413, 11), -- M. Def. Modifiers
+(35243, 4414, 2), -- Armor Type
+(35243, 4415, 3), -- Weapon Type
+(35243, 4416, 22), -- Races
 -- Guard
 (35244, 4045, 1), -- Resist Full Magic Attack
-(35244, 4408, 1), -- HP Increase (1x)
-(35244, 4409, 1), -- MP Increase (1x)
-(35244, 4410, 11), -- Average P. Atk.
-(35244, 4411, 11), -- Average M. Atk.
-(35244, 4412, 11), -- Average P. Def.
-(35244, 4413, 11), -- Average M. Def.
-(35244, 4414, 2), -- Standard Type
-(35244, 4415, 9), -- Bows
-(35244, 4416, 22), -- Defending Army
+(35244, 4408, 1), -- HP Modifiers
+(35244, 4409, 1), -- MP Modifiers
+(35244, 4410, 11), -- P. Atk. Modifiers
+(35244, 4411, 11), -- M. Atk. Modifiers
+(35244, 4412, 11), -- P. Def. Modifiers
+(35244, 4413, 11), -- M. Def. Modifiers
+(35244, 4414, 2), -- Armor Type
+(35244, 4415, 9), -- Weapon Type
+(35244, 4416, 22), -- Races
 -- Guard
 (35245, 4045, 1), -- Resist Full Magic Attack
-(35245, 4408, 1), -- HP Increase (1x)
-(35245, 4409, 1), -- MP Increase (1x)
-(35245, 4410, 11), -- Average P. Atk.
-(35245, 4411, 11), -- Average M. Atk.
-(35245, 4412, 11), -- Average P. Def.
-(35245, 4413, 11), -- Average M. Def.
-(35245, 4414, 2), -- Standard Type
-(35245, 4415, 11), -- Spears
-(35245, 4416, 22), -- Defending Army
+(35245, 4408, 1), -- HP Modifiers
+(35245, 4409, 1), -- MP Modifiers
+(35245, 4410, 11), -- P. Atk. Modifiers
+(35245, 4411, 11), -- M. Atk. Modifiers
+(35245, 4412, 11), -- P. Def. Modifiers
+(35245, 4413, 11), -- M. Def. Modifiers
+(35245, 4414, 2), -- Armor Type
+(35245, 4415, 11), -- Weapon Type
+(35245, 4416, 22), -- Races
 -- Guard
 (35246, 4045, 1), -- Resist Full Magic Attack
-(35246, 4408, 1), -- HP Increase (1x)
-(35246, 4409, 1), -- MP Increase (1x)
-(35246, 4410, 11), -- Average P. Atk.
-(35246, 4411, 11), -- Average M. Atk.
-(35246, 4412, 11), -- Average P. Def.
-(35246, 4413, 11), -- Average M. Def.
-(35246, 4414, 2), -- Standard Type
-(35246, 4415, 3), -- One-handed Sword
-(35246, 4416, 22), -- Defending Army
+(35246, 4408, 1), -- HP Modifiers
+(35246, 4409, 1), -- MP Modifiers
+(35246, 4410, 11), -- P. Atk. Modifiers
+(35246, 4411, 11), -- M. Atk. Modifiers
+(35246, 4412, 11), -- P. Def. Modifiers
+(35246, 4413, 11), -- M. Def. Modifiers
+(35246, 4414, 2), -- Armor Type
+(35246, 4415, 3), -- Weapon Type
+(35246, 4416, 22), -- Races
 -- Guard
 (35247, 4045, 1), -- Resist Full Magic Attack
-(35247, 4408, 1), -- HP Increase (1x)
-(35247, 4409, 1), -- MP Increase (1x)
-(35247, 4410, 11), -- Average P. Atk.
-(35247, 4411, 11), -- Average M. Atk.
-(35247, 4412, 11), -- Average P. Def.
-(35247, 4413, 11), -- Average M. Def.
-(35247, 4414, 2), -- Standard Type
-(35247, 4415, 9), -- Bows
-(35247, 4416, 22), -- Defending Army
+(35247, 4408, 1), -- HP Modifiers
+(35247, 4409, 1), -- MP Modifiers
+(35247, 4410, 11), -- P. Atk. Modifiers
+(35247, 4411, 11), -- M. Atk. Modifiers
+(35247, 4412, 11), -- P. Def. Modifiers
+(35247, 4413, 11), -- M. Def. Modifiers
+(35247, 4414, 2), -- Armor Type
+(35247, 4415, 9), -- Weapon Type
+(35247, 4416, 22), -- Races
 -- Royal Knight
 (35248, 4045, 1), -- Resist Full Magic Attack
-(35248, 4408, 11), -- HP Increase (3x)
-(35248, 4409, 11), -- MP Increase (3x)
-(35248, 4410, 15), -- Strong P. Atk.
-(35248, 4411, 11), -- Average M. Atk.
-(35248, 4412, 11), -- Average P. Def.
-(35248, 4413, 11), -- Average M. Def.
-(35248, 4414, 2), -- Standard Type
-(35248, 4415, 3), -- One-handed Sword
-(35248, 4416, 22), -- Defending Army
+(35248, 4408, 11), -- HP Modifiers
+(35248, 4409, 11), -- MP Modifiers
+(35248, 4410, 15), -- P. Atk. Modifiers
+(35248, 4411, 11), -- M. Atk. Modifiers
+(35248, 4412, 11), -- P. Def. Modifiers
+(35248, 4413, 11), -- M. Def. Modifiers
+(35248, 4414, 2), -- Armor Type
+(35248, 4415, 3), -- Weapon Type
+(35248, 4416, 22), -- Races
 -- Court Sorcerer
 (35249, 4045, 1), -- Resist Full Magic Attack
 (35249, 4114, 1), -- Aden Flame
-(35249, 4408, 1), -- HP Increase (1x)
-(35249, 4409, 1), -- MP Increase (1x)
-(35249, 4410, 11), -- Average P. Atk.
-(35249, 4411, 11), -- Average M. Atk.
-(35249, 4412, 11), -- Average P. Def.
-(35249, 4413, 11), -- Average M. Def.
-(35249, 4414, 2), -- Standard Type
-(35249, 4415, 5), -- Blunt Weapons
-(35249, 4416, 22), -- Defending Army
+(35249, 4408, 1), -- HP Modifiers
+(35249, 4409, 1), -- MP Modifiers
+(35249, 4410, 11), -- P. Atk. Modifiers
+(35249, 4411, 11), -- M. Atk. Modifiers
+(35249, 4412, 11), -- P. Def. Modifiers
+(35249, 4413, 11), -- M. Def. Modifiers
+(35249, 4414, 2), -- Armor Type
+(35249, 4415, 5), -- Weapon Type
+(35249, 4416, 22), -- Races
 -- Court Sorcerer
 (35250, 4045, 1), -- Resist Full Magic Attack
 (35250, 4115, 1), -- Aden Heal
-(35250, 4408, 1), -- HP Increase (1x)
-(35250, 4409, 1), -- MP Increase (1x)
-(35250, 4410, 11), -- Average P. Atk.
-(35250, 4411, 11), -- Average M. Atk.
-(35250, 4412, 11), -- Average P. Def.
-(35250, 4413, 11), -- Average M. Def.
-(35250, 4414, 2), -- Standard Type
-(35250, 4415, 5), -- Blunt Weapons
-(35250, 4416, 22), -- Defending Army
+(35250, 4408, 1), -- HP Modifiers
+(35250, 4409, 1), -- MP Modifiers
+(35250, 4410, 11), -- P. Atk. Modifiers
+(35250, 4411, 11), -- M. Atk. Modifiers
+(35250, 4412, 11), -- P. Def. Modifiers
+(35250, 4413, 11), -- M. Def. Modifiers
+(35250, 4414, 2), -- Armor Type
+(35250, 4415, 5), -- Weapon Type
+(35250, 4416, 22), -- Races
 -- Court Guard
 (35251, 4045, 1), -- Resist Full Magic Attack
-(35251, 4408, 1), -- HP Increase (1x)
-(35251, 4409, 1), -- MP Increase (1x)
-(35251, 4410, 11), -- Average P. Atk.
-(35251, 4411, 11), -- Average M. Atk.
-(35251, 4412, 11), -- Average P. Def.
-(35251, 4413, 11), -- Average M. Def.
-(35251, 4414, 2), -- Standard Type
-(35251, 4415, 11), -- Spears
-(35251, 4416, 22), -- Defending Army
+(35251, 4408, 1), -- HP Modifiers
+(35251, 4409, 1), -- MP Modifiers
+(35251, 4410, 11), -- P. Atk. Modifiers
+(35251, 4411, 11), -- M. Atk. Modifiers
+(35251, 4412, 11), -- P. Def. Modifiers
+(35251, 4413, 11), -- M. Def. Modifiers
+(35251, 4414, 2), -- Armor Type
+(35251, 4415, 11), -- Weapon Type
+(35251, 4416, 22), -- Races
 -- Guard
 (35252, 4045, 1), -- Resist Full Magic Attack
-(35252, 4408, 1), -- HP Increase (1x)
-(35252, 4409, 1), -- MP Increase (1x)
-(35252, 4410, 11), -- Average P. Atk.
-(35252, 4411, 11), -- Average M. Atk.
-(35252, 4412, 11), -- Average P. Def.
-(35252, 4413, 11), -- Average M. Def.
-(35252, 4414, 2), -- Standard Type
-(35252, 4415, 11), -- Spears
-(35252, 4416, 22), -- Defending Army
+(35252, 4408, 1), -- HP Modifiers
+(35252, 4409, 1), -- MP Modifiers
+(35252, 4410, 11), -- P. Atk. Modifiers
+(35252, 4411, 11), -- M. Atk. Modifiers
+(35252, 4412, 11), -- P. Def. Modifiers
+(35252, 4413, 11), -- M. Def. Modifiers
+(35252, 4414, 2), -- Armor Type
+(35252, 4415, 11), -- Weapon Type
+(35252, 4416, 22), -- Races
 -- Guard
 (35253, 4045, 1), -- Resist Full Magic Attack
-(35253, 4408, 1), -- HP Increase (1x)
-(35253, 4409, 1), -- MP Increase (1x)
-(35253, 4410, 11), -- Average P. Atk.
-(35253, 4411, 11), -- Average M. Atk.
-(35253, 4412, 11), -- Average P. Def.
-(35253, 4413, 11), -- Average M. Def.
-(35253, 4414, 2), -- Standard Type
-(35253, 4415, 3), -- One-handed Sword
-(35253, 4416, 22), -- Defending Army
+(35253, 4408, 1), -- HP Modifiers
+(35253, 4409, 1), -- MP Modifiers
+(35253, 4410, 11), -- P. Atk. Modifiers
+(35253, 4411, 11), -- M. Atk. Modifiers
+(35253, 4412, 11), -- P. Def. Modifiers
+(35253, 4413, 11), -- M. Def. Modifiers
+(35253, 4414, 2), -- Armor Type
+(35253, 4415, 3), -- Weapon Type
+(35253, 4416, 22), -- Races
 -- Guard
 (35254, 4045, 1), -- Resist Full Magic Attack
-(35254, 4408, 1), -- HP Increase (1x)
-(35254, 4409, 1), -- MP Increase (1x)
-(35254, 4410, 11), -- Average P. Atk.
-(35254, 4411, 11), -- Average M. Atk.
-(35254, 4412, 11), -- Average P. Def.
-(35254, 4413, 11), -- Average M. Def.
-(35254, 4414, 2), -- Standard Type
-(35254, 4415, 9), -- Bows
-(35254, 4416, 22), -- Defending Army
+(35254, 4408, 1), -- HP Modifiers
+(35254, 4409, 1), -- MP Modifiers
+(35254, 4410, 11), -- P. Atk. Modifiers
+(35254, 4411, 11), -- M. Atk. Modifiers
+(35254, 4412, 11), -- P. Def. Modifiers
+(35254, 4413, 11), -- M. Def. Modifiers
+(35254, 4414, 2), -- Armor Type
+(35254, 4415, 9), -- Weapon Type
+(35254, 4416, 22), -- Races
 -- Guard
 (35255, 4045, 1), -- Resist Full Magic Attack
-(35255, 4408, 1), -- HP Increase (1x)
-(35255, 4409, 1), -- MP Increase (1x)
-(35255, 4410, 11), -- Average P. Atk.
-(35255, 4411, 11), -- Average M. Atk.
-(35255, 4412, 11), -- Average P. Def.
-(35255, 4413, 11), -- Average M. Def.
-(35255, 4414, 2), -- Standard Type
-(35255, 4415, 11), -- Spears
-(35255, 4416, 22), -- Defending Army
+(35255, 4408, 1), -- HP Modifiers
+(35255, 4409, 1), -- MP Modifiers
+(35255, 4410, 11), -- P. Atk. Modifiers
+(35255, 4411, 11), -- M. Atk. Modifiers
+(35255, 4412, 11), -- P. Def. Modifiers
+(35255, 4413, 11), -- M. Def. Modifiers
+(35255, 4414, 2), -- Armor Type
+(35255, 4415, 11), -- Weapon Type
+(35255, 4416, 22), -- Races
 -- Guard
 (35256, 4045, 1), -- Resist Full Magic Attack
-(35256, 4408, 1), -- HP Increase (1x)
-(35256, 4409, 1), -- MP Increase (1x)
-(35256, 4410, 11), -- Average P. Atk.
-(35256, 4411, 11), -- Average M. Atk.
-(35256, 4412, 11), -- Average P. Def.
-(35256, 4413, 11), -- Average M. Def.
-(35256, 4414, 2), -- Standard Type
-(35256, 4415, 3), -- One-handed Sword
-(35256, 4416, 22), -- Defending Army
+(35256, 4408, 1), -- HP Modifiers
+(35256, 4409, 1), -- MP Modifiers
+(35256, 4410, 11), -- P. Atk. Modifiers
+(35256, 4411, 11), -- M. Atk. Modifiers
+(35256, 4412, 11), -- P. Def. Modifiers
+(35256, 4413, 11), -- M. Def. Modifiers
+(35256, 4414, 2), -- Armor Type
+(35256, 4415, 3), -- Weapon Type
+(35256, 4416, 22), -- Races
 -- Guard
 (35257, 4045, 1), -- Resist Full Magic Attack
-(35257, 4408, 1), -- HP Increase (1x)
-(35257, 4409, 1), -- MP Increase (1x)
-(35257, 4410, 11), -- Average P. Atk.
-(35257, 4411, 11), -- Average M. Atk.
-(35257, 4412, 11), -- Average P. Def.
-(35257, 4413, 11), -- Average M. Def.
-(35257, 4414, 2), -- Standard Type
-(35257, 4415, 9), -- Bows
-(35257, 4416, 22), -- Defending Army
+(35257, 4408, 1), -- HP Modifiers
+(35257, 4409, 1), -- MP Modifiers
+(35257, 4410, 11), -- P. Atk. Modifiers
+(35257, 4411, 11), -- M. Atk. Modifiers
+(35257, 4412, 11), -- P. Def. Modifiers
+(35257, 4413, 11), -- M. Def. Modifiers
+(35257, 4414, 2), -- Armor Type
+(35257, 4415, 9), -- Weapon Type
+(35257, 4416, 22), -- Races
 -- Guard
 (35258, 4045, 1), -- Resist Full Magic Attack
-(35258, 4408, 1), -- HP Increase (1x)
-(35258, 4409, 1), -- MP Increase (1x)
-(35258, 4410, 11), -- Average P. Atk.
-(35258, 4411, 11); -- Average M. Atk.
-
-INSERT INTO `npcskills` VALUES
-(35258, 4412, 11), -- Average P. Def.
-(35258, 4413, 11), -- Average M. Def.
-(35258, 4414, 2), -- Standard Type
-(35258, 4415, 11), -- Spears
-(35258, 4416, 22), -- Defending Army
+(35258, 4408, 1), -- HP Modifiers
+(35258, 4409, 1), -- MP Modifiers
+(35258, 4410, 11), -- P. Atk. Modifiers
+(35258, 4411, 11), -- M. Atk. Modifiers
+(35258, 4412, 11), -- P. Def. Modifiers
+(35258, 4413, 11), -- M. Def. Modifiers
+(35258, 4414, 2), -- Armor Type
+(35258, 4415, 11), -- Weapon Type
+(35258, 4416, 22), -- Races
 -- Guard
 (35259, 4045, 1), -- Resist Full Magic Attack
-(35259, 4408, 1), -- HP Increase (1x)
-(35259, 4409, 1), -- MP Increase (1x)
-(35259, 4410, 11), -- Average P. Atk.
-(35259, 4411, 11), -- Average M. Atk.
-(35259, 4412, 11), -- Average P. Def.
-(35259, 4413, 11), -- Average M. Def.
-(35259, 4414, 2), -- Standard Type
-(35259, 4415, 3), -- One-handed Sword
-(35259, 4416, 22), -- Defending Army
+(35259, 4408, 1), -- HP Modifiers
+(35259, 4409, 1), -- MP Modifiers
+(35259, 4410, 11), -- P. Atk. Modifiers
+(35259, 4411, 11), -- M. Atk. Modifiers
+(35259, 4412, 11), -- P. Def. Modifiers
+(35259, 4413, 11), -- M. Def. Modifiers
+(35259, 4414, 2), -- Armor Type
+(35259, 4415, 3), -- Weapon Type
+(35259, 4416, 22), -- Races
 -- Guard
 (35260, 4045, 1), -- Resist Full Magic Attack
-(35260, 4408, 1), -- HP Increase (1x)
-(35260, 4409, 1), -- MP Increase (1x)
-(35260, 4410, 11), -- Average P. Atk.
-(35260, 4411, 11), -- Average M. Atk.
-(35260, 4412, 11), -- Average P. Def.
-(35260, 4413, 11), -- Average M. Def.
-(35260, 4414, 2), -- Standard Type
-(35260, 4415, 9), -- Bows
-(35260, 4416, 22), -- Defending Army
+(35260, 4408, 1), -- HP Modifiers
+(35260, 4409, 1), -- MP Modifiers
+(35260, 4410, 11), -- P. Atk. Modifiers
+(35260, 4411, 11), -- M. Atk. Modifiers
+(35260, 4412, 11), -- P. Def. Modifiers
+(35260, 4413, 11), -- M. Def. Modifiers
+(35260, 4414, 2), -- Armor Type
+(35260, 4415, 9), -- Weapon Type
+(35260, 4416, 22), -- Races
 -- Gatekeeper
 (35261, 4045, 1), -- Resist Full Magic Attack
-(35261, 4408, 1), -- HP Increase (1x)
-(35261, 4409, 1), -- MP Increase (1x)
-(35261, 4410, 11), -- Average P. Atk.
-(35261, 4411, 11), -- Average M. Atk.
-(35261, 4412, 11), -- Average P. Def.
-(35261, 4413, 11), -- Average M. Def.
-(35261, 4414, 2), -- Standard Type
-(35261, 4415, 3), -- One-handed Sword
-(35261, 4416, 23), -- Mercenaries
+(35261, 4408, 1), -- HP Modifiers
+(35261, 4409, 1), -- MP Modifiers
+(35261, 4410, 11), -- P. Atk. Modifiers
+(35261, 4411, 11), -- M. Atk. Modifiers
+(35261, 4412, 11), -- P. Def. Modifiers
+(35261, 4413, 11), -- M. Def. Modifiers
+(35261, 4414, 2), -- Armor Type
+(35261, 4415, 3), -- Weapon Type
+(35261, 4416, 23), -- Races
 -- Gatekeeper
 (35262, 4045, 1), -- Resist Full Magic Attack
-(35262, 4408, 1), -- HP Increase (1x)
-(35262, 4409, 1), -- MP Increase (1x)
-(35262, 4410, 11), -- Average P. Atk.
-(35262, 4411, 11), -- Average M. Atk.
-(35262, 4412, 11), -- Average P. Def.
-(35262, 4413, 11), -- Average M. Def.
-(35262, 4414, 2), -- Standard Type
-(35262, 4415, 3), -- One-handed Sword
-(35262, 4416, 23), -- Mercenaries
+(35262, 4408, 1), -- HP Modifiers
+(35262, 4409, 1), -- MP Modifiers
+(35262, 4410, 11), -- P. Atk. Modifiers
+(35262, 4411, 11), -- M. Atk. Modifiers
+(35262, 4412, 11), -- P. Def. Modifiers
+(35262, 4413, 11), -- M. Def. Modifiers
+(35262, 4414, 2), -- Armor Type
+(35262, 4415, 3), -- Weapon Type
+(35262, 4416, 23), -- Races
 -- Gatekeeper
 (35263, 4045, 1), -- Resist Full Magic Attack
-(35263, 4408, 1), -- HP Increase (1x)
-(35263, 4409, 1), -- MP Increase (1x)
-(35263, 4410, 11), -- Average P. Atk.
-(35263, 4411, 11), -- Average M. Atk.
-(35263, 4412, 11), -- Average P. Def.
-(35263, 4413, 11), -- Average M. Def.
-(35263, 4414, 2), -- Standard Type
-(35263, 4415, 3), -- One-handed Sword
-(35263, 4416, 23), -- Mercenaries
+(35263, 4408, 1), -- HP Modifiers
+(35263, 4409, 1), -- MP Modifiers
+(35263, 4410, 11), -- P. Atk. Modifiers
+(35263, 4411, 11), -- M. Atk. Modifiers
+(35263, 4412, 11), -- P. Def. Modifiers
+(35263, 4413, 11), -- M. Def. Modifiers
+(35263, 4414, 2), -- Armor Type
+(35263, 4415, 3), -- Weapon Type
+(35263, 4416, 23), -- Races
 -- Gatekeeper
 (35264, 4045, 1), -- Resist Full Magic Attack
-(35264, 4408, 1), -- HP Increase (1x)
-(35264, 4409, 1), -- MP Increase (1x)
-(35264, 4410, 11), -- Average P. Atk.
-(35264, 4411, 11), -- Average M. Atk.
-(35264, 4412, 11), -- Average P. Def.
-(35264, 4413, 11), -- Average M. Def.
-(35264, 4414, 2), -- Standard Type
-(35264, 4415, 3), -- One-handed Sword
-(35264, 4416, 23), -- Mercenaries
+(35264, 4408, 1), -- HP Modifiers
+(35264, 4409, 1), -- MP Modifiers
+(35264, 4410, 11), -- P. Atk. Modifiers
+(35264, 4411, 11), -- M. Atk. Modifiers
+(35264, 4412, 11), -- P. Def. Modifiers
+(35264, 4413, 11), -- M. Def. Modifiers
+(35264, 4414, 2), -- Armor Type
+(35264, 4415, 3), -- Weapon Type
+(35264, 4416, 23), -- Races
 -- Gatekeeper
 (35265, 4045, 1), -- Resist Full Magic Attack
-(35265, 4408, 1), -- HP Increase (1x)
-(35265, 4409, 1), -- MP Increase (1x)
-(35265, 4410, 11), -- Average P. Atk.
-(35265, 4411, 11), -- Average M. Atk.
-(35265, 4412, 11), -- Average P. Def.
-(35265, 4413, 11), -- Average M. Def.
-(35265, 4414, 2), -- Standard Type
-(35265, 4415, 3), -- One-handed Sword
-(35265, 4416, 23), -- Mercenaries
+(35265, 4408, 1), -- HP Modifiers
+(35265, 4409, 1), -- MP Modifiers
+(35265, 4410, 11), -- P. Atk. Modifiers
+(35265, 4411, 11), -- M. Atk. Modifiers
+(35265, 4412, 11), -- P. Def. Modifiers
+(35265, 4413, 11), -- M. Def. Modifiers
+(35265, 4414, 2), -- Armor Type
+(35265, 4415, 3), -- Weapon Type
+(35265, 4416, 23), -- Races
 -- Mass Gatekeeper
 (35266, 4045, 1), -- Resist Full Magic Attack
-(35266, 4408, 1), -- HP Increase (1x)
-(35266, 4409, 1), -- MP Increase (1x)
-(35266, 4410, 11), -- Average P. Atk.
-(35266, 4411, 11), -- Average M. Atk.
-(35266, 4412, 11), -- Average P. Def.
-(35266, 4413, 11), -- Average M. Def.
-(35266, 4414, 2), -- Standard Type
-(35266, 4415, 3), -- One-handed Sword
-(35266, 4416, 14), -- Humans
+(35266, 4408, 1), -- HP Modifiers
+(35266, 4409, 1), -- MP Modifiers
+(35266, 4410, 11), -- P. Atk. Modifiers
+(35266, 4411, 11), -- M. Atk. Modifiers
+(35266, 4412, 11), -- P. Def. Modifiers
+(35266, 4413, 11), -- M. Def. Modifiers
+(35266, 4414, 2), -- Armor Type
+(35266, 4415, 3), -- Weapon Type
+(35266, 4416, 14), -- Races
 -- Outer Doorman
 (35267, 4045, 1), -- Resist Full Magic Attack
-(35267, 4408, 1), -- HP Increase (1x)
-(35267, 4409, 1), -- MP Increase (1x)
-(35267, 4410, 11), -- Average P. Atk.
-(35267, 4411, 11), -- Average M. Atk.
-(35267, 4412, 11), -- Average P. Def.
-(35267, 4413, 11), -- Average M. Def.
-(35267, 4414, 2), -- Standard Type
-(35267, 4415, 3), -- One-handed Sword
-(35267, 4416, 14), -- Humans
+(35267, 4408, 1), -- HP Modifiers
+(35267, 4409, 1), -- MP Modifiers
+(35267, 4410, 11), -- P. Atk. Modifiers
+(35267, 4411, 11), -- M. Atk. Modifiers
+(35267, 4412, 11), -- P. Def. Modifiers
+(35267, 4413, 11), -- M. Def. Modifiers
+(35267, 4414, 2), -- Armor Type
+(35267, 4415, 3), -- Weapon Type
+(35267, 4416, 14), -- Races
 -- Inner Doorman
 (35268, 4045, 1), -- Resist Full Magic Attack
-(35268, 4408, 1), -- HP Increase (1x)
-(35268, 4409, 1), -- MP Increase (1x)
-(35268, 4410, 11), -- Average P. Atk.
-(35268, 4411, 11), -- Average M. Atk.
-(35268, 4412, 11), -- Average P. Def.
-(35268, 4413, 11), -- Average M. Def.
-(35268, 4414, 2), -- Standard Type
-(35268, 4415, 3), -- One-handed Sword
-(35268, 4416, 14), -- Humans
+(35268, 4408, 1), -- HP Modifiers
+(35268, 4409, 1), -- MP Modifiers
+(35268, 4410, 11), -- P. Atk. Modifiers
+(35268, 4411, 11), -- M. Atk. Modifiers
+(35268, 4412, 11), -- P. Def. Modifiers
+(35268, 4413, 11), -- M. Def. Modifiers
+(35268, 4414, 2), -- Armor Type
+(35268, 4415, 3), -- Weapon Type
+(35268, 4416, 14), -- Races
 -- Hall Doorman
 (35269, 4045, 1), -- Resist Full Magic Attack
-(35269, 4408, 1), -- HP Increase (1x)
-(35269, 4409, 1), -- MP Increase (1x)
-(35269, 4410, 11), -- Average P. Atk.
-(35269, 4411, 11), -- Average M. Atk.
-(35269, 4412, 11), -- Average P. Def.
-(35269, 4413, 11), -- Average M. Def.
-(35269, 4414, 2), -- Standard Type
-(35269, 4415, 3), -- One-handed Sword
-(35269, 4416, 14), -- Humans
+(35269, 4408, 1), -- HP Modifiers
+(35269, 4409, 1), -- MP Modifiers
+(35269, 4410, 11), -- P. Atk. Modifiers
+(35269, 4411, 11), -- M. Atk. Modifiers
+(35269, 4412, 11), -- P. Def. Modifiers
+(35269, 4413, 11), -- M. Def. Modifiers
+(35269, 4414, 2), -- Armor Type
+(35269, 4415, 3), -- Weapon Type
+(35269, 4416, 14), -- Races
 -- Inner Doorman
 (35270, 4045, 1), -- Resist Full Magic Attack
-(35270, 4408, 1), -- HP Increase (1x)
-(35270, 4409, 1), -- MP Increase (1x)
-(35270, 4410, 11), -- Average P. Atk.
-(35270, 4411, 11), -- Average M. Atk.
-(35270, 4412, 11), -- Average P. Def.
-(35270, 4413, 11), -- Average M. Def.
-(35270, 4414, 2), -- Standard Type
-(35270, 4415, 3), -- One-handed Sword
-(35270, 4416, 14), -- Humans
+(35270, 4408, 1), -- HP Modifiers
+(35270, 4409, 1), -- MP Modifiers
+(35270, 4410, 11), -- P. Atk. Modifiers
+(35270, 4411, 11), -- M. Atk. Modifiers
+(35270, 4412, 11), -- P. Def. Modifiers
+(35270, 4413, 11), -- M. Def. Modifiers
+(35270, 4414, 2), -- Armor Type
+(35270, 4415, 3), -- Weapon Type
+(35270, 4416, 14), -- Races
 -- Gatekeeper
 (35271, 4045, 1), -- Resist Full Magic Attack
-(35271, 4408, 1), -- HP Increase (1x)
-(35271, 4409, 1), -- MP Increase (1x)
-(35271, 4410, 11), -- Average P. Atk.
-(35271, 4411, 11), -- Average M. Atk.
-(35271, 4412, 11), -- Average P. Def.
-(35271, 4413, 11), -- Average M. Def.
-(35271, 4414, 2), -- Standard Type
-(35271, 4415, 3), -- One-handed Sword
-(35271, 4416, 14), -- Humans
+(35271, 4408, 1), -- HP Modifiers
+(35271, 4409, 1), -- MP Modifiers
+(35271, 4410, 11), -- P. Atk. Modifiers
+(35271, 4411, 11), -- M. Atk. Modifiers
+(35271, 4412, 11), -- P. Def. Modifiers
+(35271, 4413, 11), -- M. Def. Modifiers
+(35271, 4414, 2), -- Armor Type
+(35271, 4415, 3), -- Weapon Type
+(35271, 4416, 14), -- Races
 -- Blacksmith
 (35272, 4045, 1), -- Resist Full Magic Attack
-(35272, 4408, 1), -- HP Increase (1x)
-(35272, 4409, 1), -- MP Increase (1x)
-(35272, 4410, 11), -- Average P. Atk.
-(35272, 4411, 11), -- Average M. Atk.
-(35272, 4412, 11), -- Average P. Def.
-(35272, 4413, 11), -- Average M. Def.
-(35272, 4414, 2), -- Standard Type
-(35272, 4415, 3), -- One-handed Sword
-(35272, 4416, 18), -- Dwarves
+(35272, 4408, 1), -- HP Modifiers
+(35272, 4409, 1), -- MP Modifiers
+(35272, 4410, 11), -- P. Atk. Modifiers
+(35272, 4411, 11), -- M. Atk. Modifiers
+(35272, 4412, 11), -- P. Def. Modifiers
+(35272, 4413, 11), -- M. Def. Modifiers
+(35272, 4414, 2), -- Armor Type
+(35272, 4415, 3), -- Weapon Type
+(35272, 4416, 18), -- Races
 -- Warehouse Keeper
 (35273, 4045, 1), -- Resist Full Magic Attack
-(35273, 4408, 1), -- HP Increase (1x)
-(35273, 4409, 1), -- MP Increase (1x)
-(35273, 4410, 11), -- Average P. Atk.
-(35273, 4411, 11), -- Average M. Atk.
-(35273, 4412, 11), -- Average P. Def.
-(35273, 4413, 11), -- Average M. Def.
-(35273, 4414, 2), -- Standard Type
-(35273, 4415, 3), -- One-handed Sword
-(35273, 4416, 18), -- Dwarves
+(35273, 4408, 1), -- HP Modifiers
+(35273, 4409, 1), -- MP Modifiers
+(35273, 4410, 11), -- P. Atk. Modifiers
+(35273, 4411, 11), -- M. Atk. Modifiers
+(35273, 4412, 11), -- P. Def. Modifiers
+(35273, 4413, 11), -- M. Def. Modifiers
+(35273, 4414, 2), -- Armor Type
+(35273, 4415, 3), -- Weapon Type
+(35273, 4416, 18), -- Races
 -- Logan
 (35274, 4045, 1), -- Resist Full Magic Attack
-(35274, 4408, 1), -- HP Increase (1x)
-(35274, 4409, 1), -- MP Increase (1x)
-(35274, 4410, 11), -- Average P. Atk.
-(35274, 4411, 11), -- Average M. Atk.
-(35274, 4412, 11), -- Average P. Def.
-(35274, 4413, 11), -- Average M. Def.
-(35274, 4414, 2), -- Standard Type
-(35274, 4415, 3), -- One-handed Sword
-(35274, 4416, 14), -- Humans
+(35274, 4408, 1), -- HP Modifiers
+(35274, 4409, 1), -- MP Modifiers
+(35274, 4410, 11), -- P. Atk. Modifiers
+(35274, 4411, 11), -- M. Atk. Modifiers
+(35274, 4412, 11), -- P. Def. Modifiers
+(35274, 4413, 11), -- M. Def. Modifiers
+(35274, 4414, 2), -- Armor Type
+(35274, 4415, 3), -- Weapon Type
+(35274, 4416, 14), -- Races
 -- Kruger
 (35275, 4045, 1), -- Resist Full Magic Attack
-(35275, 4408, 1), -- HP Increase (1x)
-(35275, 4409, 1), -- MP Increase (1x)
-(35275, 4410, 11), -- Average P. Atk.
-(35275, 4411, 11), -- Average M. Atk.
-(35275, 4412, 11), -- Average P. Def.
-(35275, 4413, 11), -- Average M. Def.
-(35275, 4414, 2), -- Standard Type
-(35275, 4415, 3), -- One-handed Sword
-(35275, 4416, 14), -- Humans
+(35275, 4408, 1), -- HP Modifiers
+(35275, 4409, 1), -- MP Modifiers
+(35275, 4410, 11), -- P. Atk. Modifiers
+(35275, 4411, 11), -- M. Atk. Modifiers
+(35275, 4412, 11), -- P. Def. Modifiers
+(35275, 4413, 11), -- M. Def. Modifiers
+(35275, 4414, 2), -- Armor Type
+(35275, 4415, 3), -- Weapon Type
+(35275, 4416, 14), -- Races
 -- Eldon
 (35276, 4045, 1), -- Resist Full Magic Attack
-(35276, 4408, 1), -- HP Increase (1x)
-(35276, 4409, 1), -- MP Increase (1x)
-(35276, 4410, 11), -- Average P. Atk.
-(35276, 4411, 11), -- Average M. Atk.
-(35276, 4412, 11), -- Average P. Def.
-(35276, 4413, 11), -- Average M. Def.
-(35276, 4414, 2), -- Standard Type
-(35276, 4415, 3), -- One-handed Sword
-(35276, 4416, 14), -- Humans
+(35276, 4408, 1), -- HP Modifiers
+(35276, 4409, 1), -- MP Modifiers
+(35276, 4410, 11), -- P. Atk. Modifiers
+(35276, 4411, 11), -- M. Atk. Modifiers
+(35276, 4412, 11), -- P. Def. Modifiers
+(35276, 4413, 11), -- M. Def. Modifiers
+(35276, 4414, 2), -- Armor Type
+(35276, 4415, 3), -- Weapon Type
+(35276, 4416, 14), -- Races
 -- Manor Manager
 (35277, 4045, 1), -- Resist Full Magic Attack
-(35277, 4408, 1), -- HP Increase (1x)
-(35277, 4409, 1), -- MP Increase (1x)
-(35277, 4410, 11), -- Average P. Atk.
-(35277, 4411, 11), -- Average M. Atk.
-(35277, 4412, 11), -- Average P. Def.
-(35277, 4413, 11), -- Average M. Def.
-(35277, 4414, 2), -- Standard Type
-(35277, 4415, 3), -- One-handed Sword
-(35277, 4416, 14), -- Humans
+(35277, 4408, 1), -- HP Modifiers
+(35277, 4409, 1), -- MP Modifiers
+(35277, 4410, 11), -- P. Atk. Modifiers
+(35277, 4411, 11), -- M. Atk. Modifiers
+(35277, 4412, 11), -- P. Def. Modifiers
+(35277, 4413, 11), -- M. Def. Modifiers
+(35277, 4414, 2), -- Armor Type
+(35277, 4415, 3), -- Weapon Type
+(35277, 4416, 14), -- Races
 -- Messenger Ruford
 (35278, 4045, 1), -- Resist Full Magic Attack
-(35278, 4408, 1), -- HP Increase (1x)
-(35278, 4409, 1), -- MP Increase (1x)
-(35278, 4410, 11), -- Average P. Atk.
-(35278, 4411, 11), -- Average M. Atk.
-(35278, 4412, 11), -- Average P. Def.
-(35278, 4413, 11), -- Average M. Def.
-(35278, 4414, 2), -- Standard Type
-(35278, 4415, 3), -- One-handed Sword
-(35278, 4416, 14), -- Humans
+(35278, 4408, 1), -- HP Modifiers
+(35278, 4409, 1), -- MP Modifiers
+(35278, 4410, 11), -- P. Atk. Modifiers
+(35278, 4411, 11), -- M. Atk. Modifiers
+(35278, 4412, 11), -- P. Def. Modifiers
+(35278, 4413, 11), -- M. Def. Modifiers
+(35278, 4414, 2), -- Armor Type
+(35278, 4415, 3), -- Weapon Type
+(35278, 4416, 14), -- Races
 -- Innadril Holy Artifact
 (35279, 4045, 1), -- Resist Full Magic Attack
-(35279, 4390, 1), -- Mystic Immunity
-(35279, 4408, 1), -- HP Increase (1x)
-(35279, 4409, 1), -- MP Increase (1x)
-(35279, 4410, 11), -- Average P. Atk.
-(35279, 4411, 11), -- Average M. Atk.
-(35279, 4412, 11), -- Average P. Def.
-(35279, 4413, 11), -- Average M. Def.
-(35279, 4414, 2), -- Standard Type
-(35279, 4415, 3), -- One-handed Sword
-(35279, 4416, 19), -- Others
+(35279, 4390, 1), -- NPC Abnormal Immunity
+(35279, 4408, 1), -- HP Modifiers
+(35279, 4409, 1), -- MP Modifiers
+(35279, 4410, 11), -- P. Atk. Modifiers
+(35279, 4411, 11), -- M. Atk. Modifiers
+(35279, 4412, 11), -- P. Def. Modifiers
+(35279, 4413, 11), -- M. Def. Modifiers
+(35279, 4414, 2), -- Armor Type
+(35279, 4415, 3), -- Weapon Type
+(35279, 4416, 19), -- Races
 -- Baron Lionel Hunter
 (35280, 4045, 1), -- Resist Full Magic Attack
-(35280, 4408, 16), -- HP Increase (8x)
-(35280, 4409, 11), -- MP Increase (3x)
-(35280, 4410, 18), -- Extremely Strong P. Atk.
-(35280, 4411, 11), -- Average M. Atk.
-(35280, 4412, 13), -- Slightly Strong P. Def.
-(35280, 4413, 13), -- Slightly Strong M. Def.
-(35280, 4414, 2), -- Standard Type
-(35280, 4415, 3), -- One-handed Sword
-(35280, 4416, 22), -- Defending Army
+(35280, 4408, 16), -- HP Modifiers
+(35280, 4409, 11), -- MP Modifiers
+(35280, 4410, 18), -- P. Atk. Modifiers
+(35280, 4411, 11), -- M. Atk. Modifiers
+(35280, 4412, 13), -- P. Def. Modifiers
+(35280, 4413, 13), -- M. Def. Modifiers
+(35280, 4414, 2), -- Armor Type
+(35280, 4415, 3), -- Weapon Type
+(35280, 4416, 22), -- Races
 -- Schaht
 (35281, 4045, 1), -- Resist Full Magic Attack
-(35281, 4408, 10), -- HP Increase (2x)
-(35281, 4409, 11), -- MP Increase (3x)
-(35281, 4410, 13), -- Slightly Strong P. Atk.
-(35281, 4411, 11), -- Average M. Atk.
-(35281, 4412, 11), -- Average P. Def.
-(35281, 4413, 11), -- Average M. Def.
-(35281, 4414, 2), -- Standard Type
-(35281, 4415, 3), -- One-handed Sword
-(35281, 4416, 22), -- Defending Army
+(35281, 4408, 10), -- HP Modifiers
+(35281, 4409, 11), -- MP Modifiers
+(35281, 4410, 13), -- P. Atk. Modifiers
+(35281, 4411, 11), -- M. Atk. Modifiers
+(35281, 4412, 11), -- P. Def. Modifiers
+(35281, 4413, 11), -- M. Def. Modifiers
+(35281, 4414, 2), -- Armor Type
+(35281, 4415, 3), -- Weapon Type
+(35281, 4416, 22), -- Races
 -- Royal Knight
 (35282, 4045, 1), -- Resist Full Magic Attack
-(35282, 4408, 16), -- HP Increase (8x)
-(35282, 4409, 11), -- MP Increase (3x)
-(35282, 4410, 18), -- Extremely Strong P. Atk.
-(35282, 4411, 11), -- Average M. Atk.
-(35282, 4412, 11), -- Average P. Def.
-(35282, 4413, 11), -- Average M. Def.
-(35282, 4414, 2), -- Standard Type
-(35282, 4415, 3), -- One-handed Sword
-(35282, 4416, 22), -- Defending Army
+(35282, 4408, 16), -- HP Modifiers
+(35282, 4409, 11), -- MP Modifiers
+(35282, 4410, 18), -- P. Atk. Modifiers
+(35282, 4411, 11), -- M. Atk. Modifiers
+(35282, 4412, 11), -- P. Def. Modifiers
+(35282, 4413, 11), -- M. Def. Modifiers
+(35282, 4414, 2), -- Armor Type
+(35282, 4415, 3), -- Weapon Type
+(35282, 4416, 22), -- Races
 -- Court Sorcerer
 (35283, 4026, 1), -- Gludio Flame
 (35283, 4045, 1), -- Resist Full Magic Attack
-(35283, 4408, 16), -- HP Increase (8x)
-(35283, 4409, 11), -- MP Increase (3x)
-(35283, 4410, 18), -- Extremely Strong P. Atk.
-(35283, 4411, 11), -- Average M. Atk.
-(35283, 4412, 11), -- Average P. Def.
-(35283, 4413, 11), -- Average M. Def.
-(35283, 4414, 2), -- Standard Type
-(35283, 4415, 5), -- Blunt Weapons
-(35283, 4416, 22), -- Defending Army
+(35283, 4408, 16), -- HP Modifiers
+(35283, 4409, 11), -- MP Modifiers
+(35283, 4410, 18), -- P. Atk. Modifiers
+(35283, 4411, 11), -- M. Atk. Modifiers
+(35283, 4412, 11), -- P. Def. Modifiers
+(35283, 4413, 11), -- M. Def. Modifiers
+(35283, 4414, 2), -- Armor Type
+(35283, 4415, 5), -- Weapon Type
+(35283, 4416, 22), -- Races
 -- Court Sorcerer
 (35284, 4027, 1), -- Gludio Heal
 (35284, 4045, 1), -- Resist Full Magic Attack
-(35284, 4408, 16), -- HP Increase (8x)
-(35284, 4409, 11), -- MP Increase (3x)
-(35284, 4410, 18), -- Extremely Strong P. Atk.
-(35284, 4411, 11), -- Average M. Atk.
-(35284, 4412, 11), -- Average P. Def.
-(35284, 4413, 11), -- Average M. Def.
-(35284, 4414, 2), -- Standard Type
-(35284, 4415, 5), -- Blunt Weapons
-(35284, 4416, 22), -- Defending Army
+(35284, 4408, 16), -- HP Modifiers
+(35284, 4409, 11), -- MP Modifiers
+(35284, 4410, 18), -- P. Atk. Modifiers
+(35284, 4411, 11), -- M. Atk. Modifiers
+(35284, 4412, 11), -- P. Def. Modifiers
+(35284, 4413, 11), -- M. Def. Modifiers
+(35284, 4414, 2), -- Armor Type
+(35284, 4415, 5), -- Weapon Type
+(35284, 4416, 22), -- Races
 -- Court Guard
 (35285, 4045, 1), -- Resist Full Magic Attack
-(35285, 4408, 16), -- HP Increase (8x)
-(35285, 4409, 11), -- MP Increase (3x)
-(35285, 4410, 18), -- Extremely Strong P. Atk.
-(35285, 4411, 11), -- Average M. Atk.
-(35285, 4412, 11), -- Average P. Def.
-(35285, 4413, 11), -- Average M. Def.
-(35285, 4414, 2), -- Standard Type
-(35285, 4415, 11), -- Spears
-(35285, 4416, 22), -- Defending Army
+(35285, 4408, 16), -- HP Modifiers
+(35285, 4409, 11), -- MP Modifiers
+(35285, 4410, 18), -- P. Atk. Modifiers
+(35285, 4411, 11), -- M. Atk. Modifiers
+(35285, 4412, 11), -- P. Def. Modifiers
+(35285, 4413, 11), -- M. Def. Modifiers
+(35285, 4414, 2), -- Armor Type
+(35285, 4415, 11), -- Weapon Type
+(35285, 4416, 22), -- Races
 -- Guard
 (35286, 4045, 1), -- Resist Full Magic Attack
-(35286, 4408, 16), -- HP Increase (8x)
-(35286, 4409, 11), -- MP Increase (3x)
-(35286, 4410, 18), -- Extremely Strong P. Atk.
-(35286, 4411, 11), -- Average M. Atk.
-(35286, 4412, 11), -- Average P. Def.
-(35286, 4413, 11), -- Average M. Def.
-(35286, 4414, 2), -- Standard Type
-(35286, 4415, 11), -- Spears
-(35286, 4416, 22), -- Defending Army
+(35286, 4408, 16), -- HP Modifiers
+(35286, 4409, 11), -- MP Modifiers
+(35286, 4410, 18), -- P. Atk. Modifiers
+(35286, 4411, 11), -- M. Atk. Modifiers
+(35286, 4412, 11), -- P. Def. Modifiers
+(35286, 4413, 11), -- M. Def. Modifiers
+(35286, 4414, 2), -- Armor Type
+(35286, 4415, 11), -- Weapon Type
+(35286, 4416, 22), -- Races
 -- Guard
 (35287, 4045, 1), -- Resist Full Magic Attack
-(35287, 4408, 16), -- HP Increase (8x)
-(35287, 4409, 11), -- MP Increase (3x)
-(35287, 4410, 18), -- Extremely Strong P. Atk.
-(35287, 4411, 11), -- Average M. Atk.
-(35287, 4412, 11), -- Average P. Def.
-(35287, 4413, 11), -- Average M. Def.
-(35287, 4414, 2), -- Standard Type
-(35287, 4415, 3), -- One-handed Sword
-(35287, 4416, 22), -- Defending Army
+(35287, 4408, 16), -- HP Modifiers
+(35287, 4409, 11), -- MP Modifiers
+(35287, 4410, 18), -- P. Atk. Modifiers
+(35287, 4411, 11), -- M. Atk. Modifiers
+(35287, 4412, 11), -- P. Def. Modifiers
+(35287, 4413, 11), -- M. Def. Modifiers
+(35287, 4414, 2), -- Armor Type
+(35287, 4415, 3), -- Weapon Type
+(35287, 4416, 22), -- Races
 -- Guard
 (35288, 4045, 1), -- Resist Full Magic Attack
-(35288, 4408, 16), -- HP Increase (8x)
-(35288, 4409, 11), -- MP Increase (3x)
-(35288, 4410, 18), -- Extremely Strong P. Atk.
-(35288, 4411, 11), -- Average M. Atk.
-(35288, 4412, 11), -- Average P. Def.
-(35288, 4413, 11), -- Average M. Def.
-(35288, 4414, 2), -- Standard Type
-(35288, 4415, 9), -- Bows
-(35288, 4416, 22), -- Defending Army
+(35288, 4408, 16), -- HP Modifiers
+(35288, 4409, 11), -- MP Modifiers
+(35288, 4410, 18), -- P. Atk. Modifiers
+(35288, 4411, 11), -- M. Atk. Modifiers
+(35288, 4412, 11), -- P. Def. Modifiers
+(35288, 4413, 11), -- M. Def. Modifiers
+(35288, 4414, 2), -- Armor Type
+(35288, 4415, 9), -- Weapon Type
+(35288, 4416, 22), -- Races
 -- Guard
 (35289, 4045, 1), -- Resist Full Magic Attack
-(35289, 4408, 16), -- HP Increase (8x)
-(35289, 4409, 11), -- MP Increase (3x)
-(35289, 4410, 18), -- Extremely Strong P. Atk.
-(35289, 4411, 11), -- Average M. Atk.
-(35289, 4412, 11), -- Average P. Def.
-(35289, 4413, 11), -- Average M. Def.
-(35289, 4414, 2), -- Standard Type
-(35289, 4415, 11), -- Spears
-(35289, 4416, 22), -- Defending Army
+(35289, 4408, 16), -- HP Modifiers
+(35289, 4409, 11), -- MP Modifiers
+(35289, 4410, 18), -- P. Atk. Modifiers
+(35289, 4411, 11), -- M. Atk. Modifiers
+(35289, 4412, 11), -- P. Def. Modifiers
+(35289, 4413, 11), -- M. Def. Modifiers
+(35289, 4414, 2), -- Armor Type
+(35289, 4415, 11), -- Weapon Type
+(35289, 4416, 22), -- Races
 -- Guard
 (35290, 4045, 1), -- Resist Full Magic Attack
-(35290, 4408, 16), -- HP Increase (8x)
-(35290, 4409, 11), -- MP Increase (3x)
-(35290, 4410, 18), -- Extremely Strong P. Atk.
-(35290, 4411, 11), -- Average M. Atk.
-(35290, 4412, 11), -- Average P. Def.
-(35290, 4413, 11), -- Average M. Def.
-(35290, 4414, 2), -- Standard Type
-(35290, 4415, 3), -- One-handed Sword
-(35290, 4416, 22), -- Defending Army
+(35290, 4408, 16), -- HP Modifiers
+(35290, 4409, 11), -- MP Modifiers
+(35290, 4410, 18), -- P. Atk. Modifiers
+(35290, 4411, 11), -- M. Atk. Modifiers
+(35290, 4412, 11), -- P. Def. Modifiers
+(35290, 4413, 11), -- M. Def. Modifiers
+(35290, 4414, 2), -- Armor Type
+(35290, 4415, 3), -- Weapon Type
+(35290, 4416, 22), -- Races
 -- Guard
 (35291, 4045, 1), -- Resist Full Magic Attack
-(35291, 4408, 16), -- HP Increase (8x)
-(35291, 4409, 11), -- MP Increase (3x)
-(35291, 4410, 18), -- Extremely Strong P. Atk.
-(35291, 4411, 11), -- Average M. Atk.
-(35291, 4412, 11), -- Average P. Def.
-(35291, 4413, 11), -- Average M. Def.
-(35291, 4414, 2), -- Standard Type
-(35291, 4415, 9), -- Bows
-(35291, 4416, 22), -- Defending Army
+(35291, 4408, 16), -- HP Modifiers
+(35291, 4409, 11), -- MP Modifiers
+(35291, 4410, 18), -- P. Atk. Modifiers
+(35291, 4411, 11), -- M. Atk. Modifiers
+(35291, 4412, 11), -- P. Def. Modifiers
+(35291, 4413, 11), -- M. Def. Modifiers
+(35291, 4414, 2), -- Armor Type
+(35291, 4415, 9), -- Weapon Type
+(35291, 4416, 22), -- Races
 -- Guard
 (35292, 4045, 1), -- Resist Full Magic Attack
-(35292, 4408, 16), -- HP Increase (8x)
-(35292, 4409, 11), -- MP Increase (3x)
-(35292, 4410, 18), -- Extremely Strong P. Atk.
-(35292, 4411, 11), -- Average M. Atk.
-(35292, 4412, 11), -- Average P. Def.
-(35292, 4413, 11), -- Average M. Def.
-(35292, 4414, 2), -- Standard Type
-(35292, 4415, 11), -- Spears
-(35292, 4416, 22), -- Defending Army
+(35292, 4408, 16), -- HP Modifiers
+(35292, 4409, 11), -- MP Modifiers
+(35292, 4410, 18), -- P. Atk. Modifiers
+(35292, 4411, 11), -- M. Atk. Modifiers
+(35292, 4412, 11), -- P. Def. Modifiers
+(35292, 4413, 11), -- M. Def. Modifiers
+(35292, 4414, 2), -- Armor Type
+(35292, 4415, 11), -- Weapon Type
+(35292, 4416, 22), -- Races
 -- Guard
 (35293, 4045, 1), -- Resist Full Magic Attack
-(35293, 4408, 16), -- HP Increase (8x)
-(35293, 4409, 11), -- MP Increase (3x)
-(35293, 4410, 18), -- Extremely Strong P. Atk.
-(35293, 4411, 11), -- Average M. Atk.
-(35293, 4412, 11), -- Average P. Def.
-(35293, 4413, 11), -- Average M. Def.
-(35293, 4414, 2), -- Standard Type
-(35293, 4415, 3), -- One-handed Sword
-(35293, 4416, 22), -- Defending Army
+(35293, 4408, 16), -- HP Modifiers
+(35293, 4409, 11), -- MP Modifiers
+(35293, 4410, 18), -- P. Atk. Modifiers
+(35293, 4411, 11), -- M. Atk. Modifiers
+(35293, 4412, 11), -- P. Def. Modifiers
+(35293, 4413, 11), -- M. Def. Modifiers
+(35293, 4414, 2), -- Armor Type
+(35293, 4415, 3), -- Weapon Type
+(35293, 4416, 22), -- Races
 -- Guard
 (35294, 4045, 1), -- Resist Full Magic Attack
-(35294, 4408, 16), -- HP Increase (8x)
-(35294, 4409, 11), -- MP Increase (3x)
-(35294, 4410, 18), -- Extremely Strong P. Atk.
-(35294, 4411, 11), -- Average M. Atk.
-(35294, 4412, 11), -- Average P. Def.
-(35294, 4413, 11), -- Average M. Def.
-(35294, 4414, 2), -- Standard Type
-(35294, 4415, 9), -- Bows
-(35294, 4416, 22), -- Defending Army
+(35294, 4408, 16), -- HP Modifiers
+(35294, 4409, 11), -- MP Modifiers
+(35294, 4410, 18), -- P. Atk. Modifiers
+(35294, 4411, 11), -- M. Atk. Modifiers
+(35294, 4412, 11), -- P. Def. Modifiers
+(35294, 4413, 11), -- M. Def. Modifiers
+(35294, 4414, 2), -- Armor Type
+(35294, 4415, 9), -- Weapon Type
+(35294, 4416, 22), -- Races
 -- Royal Knight
 (35295, 4045, 1), -- Resist Full Magic Attack
-(35295, 4408, 16), -- HP Increase (8x)
-(35295, 4409, 11), -- MP Increase (3x)
-(35295, 4410, 18), -- Extremely Strong P. Atk.
-(35295, 4411, 11), -- Average M. Atk.
-(35295, 4412, 11), -- Average P. Def.
-(35295, 4413, 11), -- Average M. Def.
-(35295, 4414, 2), -- Standard Type
-(35295, 4415, 3), -- One-handed Sword
-(35295, 4416, 22), -- Defending Army
+(35295, 4408, 16), -- HP Modifiers
+(35295, 4409, 11), -- MP Modifiers
+(35295, 4410, 18), -- P. Atk. Modifiers
+(35295, 4411, 11), -- M. Atk. Modifiers
+(35295, 4412, 11), -- P. Def. Modifiers
+(35295, 4413, 11), -- M. Def. Modifiers
+(35295, 4414, 2), -- Armor Type
+(35295, 4415, 3), -- Weapon Type
+(35295, 4416, 22), -- Races
 -- Court Sorcerer
 (35296, 4026, 1), -- Gludio Flame
 (35296, 4045, 1), -- Resist Full Magic Attack
-(35296, 4408, 16), -- HP Increase (8x)
-(35296, 4409, 11), -- MP Increase (3x)
-(35296, 4410, 18), -- Extremely Strong P. Atk.
-(35296, 4411, 11), -- Average M. Atk.
-(35296, 4412, 11), -- Average P. Def.
-(35296, 4413, 11), -- Average M. Def.
-(35296, 4414, 2), -- Standard Type
-(35296, 4415, 5), -- Blunt Weapons
-(35296, 4416, 22), -- Defending Army
+(35296, 4408, 16), -- HP Modifiers
+(35296, 4409, 11), -- MP Modifiers
+(35296, 4410, 18), -- P. Atk. Modifiers
+(35296, 4411, 11), -- M. Atk. Modifiers
+(35296, 4412, 11), -- P. Def. Modifiers
+(35296, 4413, 11), -- M. Def. Modifiers
+(35296, 4414, 2), -- Armor Type
+(35296, 4415, 5), -- Weapon Type
+(35296, 4416, 22), -- Races
 -- Court Sorcerer
 (35297, 4027, 1), -- Gludio Heal
 (35297, 4045, 1), -- Resist Full Magic Attack
-(35297, 4408, 16), -- HP Increase (8x)
-(35297, 4409, 11), -- MP Increase (3x)
-(35297, 4410, 18), -- Extremely Strong P. Atk.
-(35297, 4411, 11), -- Average M. Atk.
-(35297, 4412, 11), -- Average P. Def.
-(35297, 4413, 11), -- Average M. Def.
-(35297, 4414, 2), -- Standard Type
-(35297, 4415, 5), -- Blunt Weapons
-(35297, 4416, 22), -- Defending Army
+(35297, 4408, 16), -- HP Modifiers
+(35297, 4409, 11), -- MP Modifiers
+(35297, 4410, 18), -- P. Atk. Modifiers
+(35297, 4411, 11), -- M. Atk. Modifiers
+(35297, 4412, 11), -- P. Def. Modifiers
+(35297, 4413, 11), -- M. Def. Modifiers
+(35297, 4414, 2), -- Armor Type
+(35297, 4415, 5), -- Weapon Type
+(35297, 4416, 22), -- Races
 -- Court Guard
 (35298, 4045, 1), -- Resist Full Magic Attack
-(35298, 4408, 16), -- HP Increase (8x)
-(35298, 4409, 11), -- MP Increase (3x)
-(35298, 4410, 18), -- Extremely Strong P. Atk.
-(35298, 4411, 11), -- Average M. Atk.
-(35298, 4412, 11), -- Average P. Def.
-(35298, 4413, 11), -- Average M. Def.
-(35298, 4414, 2), -- Standard Type
-(35298, 4415, 11), -- Spears
-(35298, 4416, 22), -- Defending Army
+(35298, 4408, 16), -- HP Modifiers
+(35298, 4409, 11), -- MP Modifiers
+(35298, 4410, 18), -- P. Atk. Modifiers
+(35298, 4411, 11), -- M. Atk. Modifiers
+(35298, 4412, 11), -- P. Def. Modifiers
+(35298, 4413, 11), -- M. Def. Modifiers
+(35298, 4414, 2), -- Armor Type
+(35298, 4415, 11), -- Weapon Type
+(35298, 4416, 22), -- Races
 -- Guard
 (35299, 4045, 1), -- Resist Full Magic Attack
-(35299, 4408, 16), -- HP Increase (8x)
-(35299, 4409, 11), -- MP Increase (3x)
-(35299, 4410, 18), -- Extremely Strong P. Atk.
-(35299, 4411, 11), -- Average M. Atk.
-(35299, 4412, 11), -- Average P. Def.
-(35299, 4413, 11), -- Average M. Def.
-(35299, 4414, 2), -- Standard Type
-(35299, 4415, 11), -- Spears
-(35299, 4416, 22), -- Defending Army
+(35299, 4408, 16), -- HP Modifiers
+(35299, 4409, 11), -- MP Modifiers
+(35299, 4410, 18), -- P. Atk. Modifiers
+(35299, 4411, 11), -- M. Atk. Modifiers
+(35299, 4412, 11), -- P. Def. Modifiers
+(35299, 4413, 11), -- M. Def. Modifiers
+(35299, 4414, 2), -- Armor Type
+(35299, 4415, 11), -- Weapon Type
+(35299, 4416, 22), -- Races
 -- Guard
 (35300, 4045, 1), -- Resist Full Magic Attack
-(35300, 4408, 16), -- HP Increase (8x)
-(35300, 4409, 11), -- MP Increase (3x)
-(35300, 4410, 18), -- Extremely Strong P. Atk.
-(35300, 4411, 11), -- Average M. Atk.
-(35300, 4412, 11), -- Average P. Def.
-(35300, 4413, 11), -- Average M. Def.
-(35300, 4414, 2), -- Standard Type
-(35300, 4415, 3), -- One-handed Sword
-(35300, 4416, 22), -- Defending Army
+(35300, 4408, 16), -- HP Modifiers
+(35300, 4409, 11), -- MP Modifiers
+(35300, 4410, 18), -- P. Atk. Modifiers
+(35300, 4411, 11), -- M. Atk. Modifiers
+(35300, 4412, 11), -- P. Def. Modifiers
+(35300, 4413, 11), -- M. Def. Modifiers
+(35300, 4414, 2), -- Armor Type
+(35300, 4415, 3), -- Weapon Type
+(35300, 4416, 22), -- Races
 -- Guard
 (35301, 4045, 1), -- Resist Full Magic Attack
-(35301, 4408, 16), -- HP Increase (8x)
-(35301, 4409, 11), -- MP Increase (3x)
-(35301, 4410, 18), -- Extremely Strong P. Atk.
-(35301, 4411, 11), -- Average M. Atk.
-(35301, 4412, 11), -- Average P. Def.
-(35301, 4413, 11), -- Average M. Def.
-(35301, 4414, 2), -- Standard Type
-(35301, 4415, 9), -- Bows
-(35301, 4416, 22), -- Defending Army
+(35301, 4408, 16), -- HP Modifiers
+(35301, 4409, 11), -- MP Modifiers
+(35301, 4410, 18), -- P. Atk. Modifiers
+(35301, 4411, 11), -- M. Atk. Modifiers
+(35301, 4412, 11), -- P. Def. Modifiers
+(35301, 4413, 11), -- M. Def. Modifiers
+(35301, 4414, 2), -- Armor Type
+(35301, 4415, 9), -- Weapon Type
+(35301, 4416, 22), -- Races
 -- Guard
 (35302, 4045, 1), -- Resist Full Magic Attack
-(35302, 4408, 16), -- HP Increase (8x)
-(35302, 4409, 11), -- MP Increase (3x)
-(35302, 4410, 18), -- Extremely Strong P. Atk.
-(35302, 4411, 11), -- Average M. Atk.
-(35302, 4412, 11), -- Average P. Def.
-(35302, 4413, 11), -- Average M. Def.
-(35302, 4414, 2), -- Standard Type
-(35302, 4415, 11), -- Spears
-(35302, 4416, 22), -- Defending Army
+(35302, 4408, 16), -- HP Modifiers
+(35302, 4409, 11), -- MP Modifiers
+(35302, 4410, 18), -- P. Atk. Modifiers
+(35302, 4411, 11), -- M. Atk. Modifiers
+(35302, 4412, 11), -- P. Def. Modifiers
+(35302, 4413, 11), -- M. Def. Modifiers
+(35302, 4414, 2), -- Armor Type
+(35302, 4415, 11), -- Weapon Type
+(35302, 4416, 22), -- Races
 -- Guard
 (35303, 4045, 1), -- Resist Full Magic Attack
-(35303, 4408, 16), -- HP Increase (8x)
-(35303, 4409, 11), -- MP Increase (3x)
-(35303, 4410, 18), -- Extremely Strong P. Atk.
-(35303, 4411, 11), -- Average M. Atk.
-(35303, 4412, 11), -- Average P. Def.
-(35303, 4413, 11), -- Average M. Def.
-(35303, 4414, 2), -- Standard Type
-(35303, 4415, 3), -- One-handed Sword
-(35303, 4416, 22), -- Defending Army
+(35303, 4408, 16), -- HP Modifiers
+(35303, 4409, 11), -- MP Modifiers
+(35303, 4410, 18), -- P. Atk. Modifiers
+(35303, 4411, 11), -- M. Atk. Modifiers
+(35303, 4412, 11), -- P. Def. Modifiers
+(35303, 4413, 11), -- M. Def. Modifiers
+(35303, 4414, 2), -- Armor Type
+(35303, 4415, 3), -- Weapon Type
+(35303, 4416, 22), -- Races
 -- Guard
 (35304, 4045, 1), -- Resist Full Magic Attack
-(35304, 4408, 16), -- HP Increase (8x)
-(35304, 4409, 11), -- MP Increase (3x)
-(35304, 4410, 18), -- Extremely Strong P. Atk.
-(35304, 4411, 11), -- Average M. Atk.
-(35304, 4412, 11), -- Average P. Def.
-(35304, 4413, 11), -- Average M. Def.
-(35304, 4414, 2), -- Standard Type
-(35304, 4415, 9), -- Bows
-(35304, 4416, 22), -- Defending Army
+(35304, 4408, 16), -- HP Modifiers
+(35304, 4409, 11), -- MP Modifiers
+(35304, 4410, 18), -- P. Atk. Modifiers
+(35304, 4411, 11), -- M. Atk. Modifiers
+(35304, 4412, 11), -- P. Def. Modifiers
+(35304, 4413, 11), -- M. Def. Modifiers
+(35304, 4414, 2), -- Armor Type
+(35304, 4415, 9), -- Weapon Type
+(35304, 4416, 22), -- Races
 -- Guard
 (35305, 4045, 1), -- Resist Full Magic Attack
-(35305, 4408, 16), -- HP Increase (8x)
-(35305, 4409, 11), -- MP Increase (3x)
-(35305, 4410, 18), -- Extremely Strong P. Atk.
-(35305, 4411, 11), -- Average M. Atk.
-(35305, 4412, 11), -- Average P. Def.
-(35305, 4413, 11), -- Average M. Def.
-(35305, 4414, 2), -- Standard Type
-(35305, 4415, 11), -- Spears
-(35305, 4416, 22), -- Defending Army
+(35305, 4408, 16), -- HP Modifiers
+(35305, 4409, 11), -- MP Modifiers
+(35305, 4410, 18), -- P. Atk. Modifiers
+(35305, 4411, 11), -- M. Atk. Modifiers
+(35305, 4412, 11), -- P. Def. Modifiers
+(35305, 4413, 11), -- M. Def. Modifiers
+(35305, 4414, 2), -- Armor Type
+(35305, 4415, 11), -- Weapon Type
+(35305, 4416, 22), -- Races
 -- Guard
 (35306, 4045, 1), -- Resist Full Magic Attack
-(35306, 4408, 16), -- HP Increase (8x)
-(35306, 4409, 11), -- MP Increase (3x)
-(35306, 4410, 18), -- Extremely Strong P. Atk.
-(35306, 4411, 11), -- Average M. Atk.
-(35306, 4412, 11), -- Average P. Def.
-(35306, 4413, 11), -- Average M. Def.
-(35306, 4414, 2), -- Standard Type
-(35306, 4415, 3), -- One-handed Sword
-(35306, 4416, 22), -- Defending Army
+(35306, 4408, 16), -- HP Modifiers
+(35306, 4409, 11), -- MP Modifiers
+(35306, 4410, 18), -- P. Atk. Modifiers
+(35306, 4411, 11), -- M. Atk. Modifiers
+(35306, 4412, 11), -- P. Def. Modifiers
+(35306, 4413, 11), -- M. Def. Modifiers
+(35306, 4414, 2), -- Armor Type
+(35306, 4415, 3), -- Weapon Type
+(35306, 4416, 22), -- Races
 -- Guard
 (35307, 4045, 1), -- Resist Full Magic Attack
-(35307, 4408, 16), -- HP Increase (8x)
-(35307, 4409, 11), -- MP Increase (3x)
-(35307, 4410, 18), -- Extremely Strong P. Atk.
-(35307, 4411, 11), -- Average M. Atk.
-(35307, 4412, 11), -- Average P. Def.
-(35307, 4413, 11), -- Average M. Def.
-(35307, 4414, 2), -- Standard Type
-(35307, 4415, 9), -- Bows
-(35307, 4416, 22), -- Defending Army
+(35307, 4408, 16), -- HP Modifiers
+(35307, 4409, 11), -- MP Modifiers
+(35307, 4410, 18), -- P. Atk. Modifiers
+(35307, 4411, 11), -- M. Atk. Modifiers
+(35307, 4412, 11), -- P. Def. Modifiers
+(35307, 4413, 11), -- M. Def. Modifiers
+(35307, 4414, 2), -- Armor Type
+(35307, 4415, 9), -- Weapon Type
+(35307, 4416, 22), -- Races
 -- Gatekeeper
 (35308, 4045, 1), -- Resist Full Magic Attack
-(35308, 4408, 1), -- HP Increase (1x)
-(35308, 4409, 1), -- MP Increase (1x)
-(35308, 4410, 11), -- Average P. Atk.
-(35308, 4411, 11), -- Average M. Atk.
-(35308, 4412, 11), -- Average P. Def.
-(35308, 4413, 11), -- Average M. Def.
-(35308, 4414, 2), -- Standard Type
-(35308, 4415, 3), -- One-handed Sword
-(35308, 4416, 23), -- Mercenaries
+(35308, 4408, 1), -- HP Modifiers
+(35308, 4409, 1), -- MP Modifiers
+(35308, 4410, 11), -- P. Atk. Modifiers
+(35308, 4411, 11), -- M. Atk. Modifiers
+(35308, 4412, 11), -- P. Def. Modifiers
+(35308, 4413, 11), -- M. Def. Modifiers
+(35308, 4414, 2), -- Armor Type
+(35308, 4415, 3), -- Weapon Type
+(35308, 4416, 23), -- Races
 -- Gatekeeper
 (35309, 4045, 1), -- Resist Full Magic Attack
-(35309, 4408, 1), -- HP Increase (1x)
-(35309, 4409, 1), -- MP Increase (1x)
-(35309, 4410, 11), -- Average P. Atk.
-(35309, 4411, 11), -- Average M. Atk.
-(35309, 4412, 11), -- Average P. Def.
-(35309, 4413, 11), -- Average M. Def.
-(35309, 4414, 2), -- Standard Type
-(35309, 4415, 3), -- One-handed Sword
-(35309, 4416, 23), -- Mercenaries
+(35309, 4408, 1), -- HP Modifiers
+(35309, 4409, 1), -- MP Modifiers
+(35309, 4410, 11), -- P. Atk. Modifiers
+(35309, 4411, 11), -- M. Atk. Modifiers
+(35309, 4412, 11), -- P. Def. Modifiers
+(35309, 4413, 11), -- M. Def. Modifiers
+(35309, 4414, 2), -- Armor Type
+(35309, 4415, 3), -- Weapon Type
+(35309, 4416, 23), -- Races
 -- Gatekeeper
 (35310, 4045, 1), -- Resist Full Magic Attack
-(35310, 4408, 1), -- HP Increase (1x)
-(35310, 4409, 1), -- MP Increase (1x)
-(35310, 4410, 11), -- Average P. Atk.
-(35310, 4411, 11), -- Average M. Atk.
-(35310, 4412, 11), -- Average P. Def.
-(35310, 4413, 11), -- Average M. Def.
-(35310, 4414, 2), -- Standard Type
-(35310, 4415, 3), -- One-handed Sword
-(35310, 4416, 23), -- Mercenaries
+(35310, 4408, 1), -- HP Modifiers
+(35310, 4409, 1), -- MP Modifiers
+(35310, 4410, 11), -- P. Atk. Modifiers
+(35310, 4411, 11), -- M. Atk. Modifiers
+(35310, 4412, 11), -- P. Def. Modifiers
+(35310, 4413, 11), -- M. Def. Modifiers
+(35310, 4414, 2), -- Armor Type
+(35310, 4415, 3), -- Weapon Type
+(35310, 4416, 23), -- Races
 -- Mass Gatekeeper
 (35311, 4045, 1), -- Resist Full Magic Attack
-(35311, 4408, 1), -- HP Increase (1x)
-(35311, 4409, 1), -- MP Increase (1x)
-(35311, 4410, 11), -- Average P. Atk.
-(35311, 4411, 11), -- Average M. Atk.
-(35311, 4412, 11), -- Average P. Def.
-(35311, 4413, 11), -- Average M. Def.
-(35311, 4414, 2), -- Standard Type
-(35311, 4415, 3), -- One-handed Sword
-(35311, 4416, 14), -- Humans
+(35311, 4408, 1), -- HP Modifiers
+(35311, 4409, 1), -- MP Modifiers
+(35311, 4410, 11), -- P. Atk. Modifiers
+(35311, 4411, 11), -- M. Atk. Modifiers
+(35311, 4412, 11), -- P. Def. Modifiers
+(35311, 4413, 11), -- M. Def. Modifiers
+(35311, 4414, 2), -- Armor Type
+(35311, 4415, 3), -- Weapon Type
+(35311, 4416, 14), -- Races
 -- Outer Doorman
 (35312, 4045, 1), -- Resist Full Magic Attack
-(35312, 4408, 1), -- HP Increase (1x)
-(35312, 4409, 1), -- MP Increase (1x)
-(35312, 4410, 11), -- Average P. Atk.
-(35312, 4411, 11), -- Average M. Atk.
-(35312, 4412, 11), -- Average P. Def.
-(35312, 4413, 11), -- Average M. Def.
-(35312, 4414, 2), -- Standard Type
-(35312, 4415, 3), -- One-handed Sword
-(35312, 4416, 14), -- Humans
+(35312, 4408, 1), -- HP Modifiers
+(35312, 4409, 1), -- MP Modifiers
+(35312, 4410, 11), -- P. Atk. Modifiers
+(35312, 4411, 11), -- M. Atk. Modifiers
+(35312, 4412, 11), -- P. Def. Modifiers
+(35312, 4413, 11), -- M. Def. Modifiers
+(35312, 4414, 2), -- Armor Type
+(35312, 4415, 3), -- Weapon Type
+(35312, 4416, 14), -- Races
 -- Inner Doorman
 (35313, 4045, 1), -- Resist Full Magic Attack
-(35313, 4408, 1), -- HP Increase (1x)
-(35313, 4409, 1), -- MP Increase (1x)
-(35313, 4410, 11), -- Average P. Atk.
-(35313, 4411, 11), -- Average M. Atk.
-(35313, 4412, 11), -- Average P. Def.
-(35313, 4413, 11), -- Average M. Def.
-(35313, 4414, 2), -- Standard Type
-(35313, 4415, 3), -- One-handed Sword
-(35313, 4416, 14), -- Humans
+(35313, 4408, 1), -- HP Modifiers
+(35313, 4409, 1), -- MP Modifiers
+(35313, 4410, 11), -- P. Atk. Modifiers
+(35313, 4411, 11), -- M. Atk. Modifiers
+(35313, 4412, 11), -- P. Def. Modifiers
+(35313, 4413, 11), -- M. Def. Modifiers
+(35313, 4414, 2), -- Armor Type
+(35313, 4415, 3), -- Weapon Type
+(35313, 4416, 14), -- Races
 -- Blacksmith
 (35314, 4045, 1), -- Resist Full Magic Attack
-(35314, 4408, 1), -- HP Increase (1x)
-(35314, 4409, 1), -- MP Increase (1x)
-(35314, 4410, 11), -- Average P. Atk.
-(35314, 4411, 11), -- Average M. Atk.
-(35314, 4412, 11), -- Average P. Def.
-(35314, 4413, 11), -- Average M. Def.
-(35314, 4414, 2), -- Standard Type
-(35314, 4415, 3), -- One-handed Sword
-(35314, 4416, 18), -- Dwarves
+(35314, 4408, 1), -- HP Modifiers
+(35314, 4409, 1), -- MP Modifiers
+(35314, 4410, 11), -- P. Atk. Modifiers
+(35314, 4411, 11), -- M. Atk. Modifiers
+(35314, 4412, 11), -- P. Def. Modifiers
+(35314, 4413, 11), -- M. Def. Modifiers
+(35314, 4414, 2), -- Armor Type
+(35314, 4415, 3), -- Weapon Type
+(35314, 4416, 18), -- Races
 -- Warehouse Keeper
 (35315, 4045, 1), -- Resist Full Magic Attack
-(35315, 4408, 1), -- HP Increase (1x)
-(35315, 4409, 1), -- MP Increase (1x)
-(35315, 4410, 11), -- Average P. Atk.
-(35315, 4411, 11), -- Average M. Atk.
-(35315, 4412, 11), -- Average P. Def.
-(35315, 4413, 11), -- Average M. Def.
-(35315, 4414, 2), -- Standard Type
-(35315, 4415, 3), -- One-handed Sword
-(35315, 4416, 18), -- Dwarves
+(35315, 4408, 1), -- HP Modifiers
+(35315, 4409, 1), -- MP Modifiers
+(35315, 4410, 11), -- P. Atk. Modifiers
+(35315, 4411, 11), -- M. Atk. Modifiers
+(35315, 4412, 11), -- P. Def. Modifiers
+(35315, 4413, 11), -- M. Def. Modifiers
+(35315, 4414, 2), -- Armor Type
+(35315, 4415, 3), -- Weapon Type
+(35315, 4416, 18), -- Races
 -- Neurath
 (35316, 4045, 1), -- Resist Full Magic Attack
-(35316, 4408, 1), -- HP Increase (1x)
-(35316, 4409, 1), -- MP Increase (1x)
-(35316, 4410, 11), -- Average P. Atk.
-(35316, 4411, 11), -- Average M. Atk.
-(35316, 4412, 11), -- Average P. Def.
-(35316, 4413, 11), -- Average M. Def.
-(35316, 4414, 2), -- Standard Type
-(35316, 4415, 3), -- One-handed Sword
-(35316, 4416, 14), -- Humans
+(35316, 4408, 1), -- HP Modifiers
+(35316, 4409, 1), -- MP Modifiers
+(35316, 4410, 11), -- P. Atk. Modifiers
+(35316, 4411, 11), -- M. Atk. Modifiers
+(35316, 4412, 11), -- P. Def. Modifiers
+(35316, 4413, 11), -- M. Def. Modifiers
+(35316, 4414, 2), -- Armor Type
+(35316, 4415, 3), -- Weapon Type
+(35316, 4416, 14), -- Races
 -- Tate
 (35317, 4045, 1), -- Resist Full Magic Attack
-(35317, 4408, 1), -- HP Increase (1x)
-(35317, 4409, 1), -- MP Increase (1x)
-(35317, 4410, 11), -- Average P. Atk.
-(35317, 4411, 11), -- Average M. Atk.
-(35317, 4412, 11), -- Average P. Def.
-(35317, 4413, 11), -- Average M. Def.
-(35317, 4414, 2), -- Standard Type
-(35317, 4415, 3), -- One-handed Sword
-(35317, 4416, 14), -- Humans
+(35317, 4408, 1), -- HP Modifiers
+(35317, 4409, 1), -- MP Modifiers
+(35317, 4410, 11), -- P. Atk. Modifiers
+(35317, 4411, 11), -- M. Atk. Modifiers
+(35317, 4412, 11), -- P. Def. Modifiers
+(35317, 4413, 11), -- M. Def. Modifiers
+(35317, 4414, 2), -- Armor Type
+(35317, 4415, 3), -- Weapon Type
+(35317, 4416, 14), -- Races
 -- Solinus
 (35318, 4045, 1), -- Resist Full Magic Attack
-(35318, 4408, 1), -- HP Increase (1x)
-(35318, 4409, 1), -- MP Increase (1x)
-(35318, 4410, 11), -- Average P. Atk.
-(35318, 4411, 11), -- Average M. Atk.
-(35318, 4412, 11), -- Average P. Def.
-(35318, 4413, 11), -- Average M. Def.
-(35318, 4414, 2), -- Standard Type
-(35318, 4415, 3), -- One-handed Sword
-(35318, 4416, 14), -- Humans
+(35318, 4408, 1), -- HP Modifiers
+(35318, 4409, 1), -- MP Modifiers
+(35318, 4410, 11), -- P. Atk. Modifiers
+(35318, 4411, 11), -- M. Atk. Modifiers
+(35318, 4412, 11), -- P. Def. Modifiers
+(35318, 4413, 11), -- M. Def. Modifiers
+(35318, 4414, 2), -- Armor Type
+(35318, 4415, 3), -- Weapon Type
+(35318, 4416, 14), -- Races
 -- Manor Manager
 (35319, 4045, 1), -- Resist Full Magic Attack
-(35319, 4408, 1), -- HP Increase (1x)
-(35319, 4409, 1), -- MP Increase (1x)
-(35319, 4410, 11), -- Average P. Atk.
-(35319, 4411, 11), -- Average M. Atk.
-(35319, 4412, 11), -- Average P. Def.
-(35319, 4413, 11), -- Average M. Def.
-(35319, 4414, 2), -- Standard Type
-(35319, 4415, 3), -- One-handed Sword
-(35319, 4416, 14), -- Humans
+(35319, 4408, 1), -- HP Modifiers
+(35319, 4409, 1), -- MP Modifiers
+(35319, 4410, 11), -- P. Atk. Modifiers
+(35319, 4411, 11), -- M. Atk. Modifiers
+(35319, 4412, 11), -- P. Def. Modifiers
+(35319, 4413, 11), -- M. Def. Modifiers
+(35319, 4414, 2), -- Armor Type
+(35319, 4415, 3), -- Weapon Type
+(35319, 4416, 14), -- Races
 -- Raybell
 (35320, 4045, 1), -- Resist Full Magic Attack
-(35320, 4408, 1), -- HP Increase (1x)
-(35320, 4409, 1), -- MP Increase (1x)
-(35320, 4410, 11), -- Average P. Atk.
-(35320, 4411, 11), -- Average M. Atk.
-(35320, 4412, 11), -- Average P. Def.
-(35320, 4413, 11), -- Average M. Def.
-(35320, 4414, 2), -- Standard Type
-(35320, 4415, 3), -- One-handed Sword
-(35320, 4416, 14), -- Humans
+(35320, 4408, 1), -- HP Modifiers
+(35320, 4409, 1), -- MP Modifiers
+(35320, 4410, 11), -- P. Atk. Modifiers
+(35320, 4411, 11), -- M. Atk. Modifiers
+(35320, 4412, 11), -- P. Def. Modifiers
+(35320, 4413, 11), -- M. Def. Modifiers
+(35320, 4414, 2), -- Armor Type
+(35320, 4415, 3), -- Weapon Type
+(35320, 4416, 14), -- Races
 -- Altar of Fire
 (35322, 4045, 1), -- Resist Full Magic Attack
-(35322, 4390, 1), -- Mystic Immunity
-(35322, 4408, 1), -- HP Increase (1x)
-(35322, 4409, 1), -- MP Increase (1x)
-(35322, 4410, 11), -- Average P. Atk.
-(35322, 4411, 11), -- Average M. Atk.
-(35322, 4412, 11), -- Average P. Def.
-(35322, 4413, 11), -- Average M. Def.
-(35322, 4414, 2), -- Standard Type
-(35322, 4415, 3), -- One-handed Sword
-(35322, 4416, 19), -- Others
+(35322, 4390, 1), -- NPC Abnormal Immunity
+(35322, 4408, 1), -- HP Modifiers
+(35322, 4409, 1), -- MP Modifiers
+(35322, 4410, 11), -- P. Atk. Modifiers
+(35322, 4411, 11), -- M. Atk. Modifiers
+(35322, 4412, 11), -- P. Def. Modifiers
+(35322, 4413, 11), -- M. Def. Modifiers
+(35322, 4414, 2), -- Armor Type
+(35322, 4415, 3), -- Weapon Type
+(35322, 4416, 19), -- Races
 -- Altar of Water
 (35323, 4045, 1), -- Resist Full Magic Attack
-(35323, 4390, 1), -- Mystic Immunity
-(35323, 4408, 1), -- HP Increase (1x)
-(35323, 4409, 1), -- MP Increase (1x)
-(35323, 4410, 11), -- Average P. Atk.
-(35323, 4411, 11), -- Average M. Atk.
-(35323, 4412, 11), -- Average P. Def.
-(35323, 4413, 11), -- Average M. Def.
-(35323, 4414, 2), -- Standard Type
-(35323, 4415, 3), -- One-handed Sword
-(35323, 4416, 19), -- Others
+(35323, 4390, 1), -- NPC Abnormal Immunity
+(35323, 4408, 1), -- HP Modifiers
+(35323, 4409, 1), -- MP Modifiers
+(35323, 4410, 11), -- P. Atk. Modifiers
+(35323, 4411, 11), -- M. Atk. Modifiers
+(35323, 4412, 11), -- P. Def. Modifiers
+(35323, 4413, 11), -- M. Def. Modifiers
+(35323, 4414, 2), -- Armor Type
+(35323, 4415, 3), -- Weapon Type
+(35323, 4416, 19), -- Races
 -- Heinz
 (35324, 4045, 1), -- Resist Full Magic Attack
-(35324, 4408, 10), -- HP Increase (2x)
-(35324, 4409, 11), -- MP Increase (3x)
-(35324, 4410, 13), -- Slightly Strong P. Atk.
-(35324, 4411, 11), -- Average M. Atk.
-(35324, 4412, 11), -- Average P. Def.
-(35324, 4413, 11), -- Average M. Def.
-(35324, 4414, 2), -- Standard Type
-(35324, 4415, 3), -- One-handed Sword
-(35324, 4416, 22), -- Defending Army
+(35324, 4408, 10), -- HP Modifiers
+(35324, 4409, 11), -- MP Modifiers
+(35324, 4410, 13), -- P. Atk. Modifiers
+(35324, 4411, 11), -- M. Atk. Modifiers
+(35324, 4412, 11), -- P. Def. Modifiers
+(35324, 4413, 11), -- M. Def. Modifiers
+(35324, 4414, 2), -- Armor Type
+(35324, 4415, 3), -- Weapon Type
+(35324, 4416, 22), -- Races
 -- Duke Mora Ken Abygail
 (35325, 4045, 1), -- Resist Full Magic Attack
-(35325, 4408, 16), -- HP Increase (8x)
-(35325, 4409, 11), -- MP Increase (3x)
-(35325, 4410, 18), -- Extremely Strong P. Atk.
-(35325, 4411, 11), -- Average M. Atk.
-(35325, 4412, 13), -- Slightly Strong P. Def.
-(35325, 4413, 13), -- Slightly Strong M. Def.
-(35325, 4414, 2), -- Standard Type
-(35325, 4415, 3), -- One-handed Sword
-(35325, 4416, 22), -- Defending Army
+(35325, 4408, 16), -- HP Modifiers
+(35325, 4409, 11), -- MP Modifiers
+(35325, 4410, 18), -- P. Atk. Modifiers
+(35325, 4411, 11), -- M. Atk. Modifiers
+(35325, 4412, 13), -- P. Def. Modifiers
+(35325, 4413, 13), -- M. Def. Modifiers
+(35325, 4414, 2), -- Armor Type
+(35325, 4415, 3), -- Weapon Type
+(35325, 4416, 22), -- Races
 -- Royal Knight
 (35326, 4045, 1), -- Resist Full Magic Attack
-(35326, 4408, 16), -- HP Increase (8x)
-(35326, 4409, 11), -- MP Increase (3x)
-(35326, 4410, 18), -- Extremely Strong P. Atk.
-(35326, 4411, 11), -- Average M. Atk.
-(35326, 4412, 11), -- Average P. Def.
-(35326, 4413, 11), -- Average M. Def.
-(35326, 4414, 2), -- Standard Type
-(35326, 4415, 3), -- One-handed Sword
-(35326, 4416, 22), -- Defending Army
+(35326, 4408, 16), -- HP Modifiers
+(35326, 4409, 11), -- MP Modifiers
+(35326, 4410, 18), -- P. Atk. Modifiers
+(35326, 4411, 11), -- M. Atk. Modifiers
+(35326, 4412, 11), -- P. Def. Modifiers
+(35326, 4413, 11), -- M. Def. Modifiers
+(35326, 4414, 2), -- Armor Type
+(35326, 4415, 3), -- Weapon Type
+(35326, 4416, 22), -- Races
 -- Court Sorcerer
 (35327, 4045, 1), -- Resist Full Magic Attack
 (35327, 4114, 1), -- Aden Flame
-(35327, 4408, 16), -- HP Increase (8x)
-(35327, 4409, 11), -- MP Increase (3x)
-(35327, 4410, 18), -- Extremely Strong P. Atk.
-(35327, 4411, 11), -- Average M. Atk.
-(35327, 4412, 11), -- Average P. Def.
-(35327, 4413, 11), -- Average M. Def.
-(35327, 4414, 2), -- Standard Type
-(35327, 4415, 5), -- Blunt Weapons
-(35327, 4416, 22), -- Defending Army
+(35327, 4408, 16), -- HP Modifiers
+(35327, 4409, 11), -- MP Modifiers
+(35327, 4410, 18), -- P. Atk. Modifiers
+(35327, 4411, 11), -- M. Atk. Modifiers
+(35327, 4412, 11), -- P. Def. Modifiers
+(35327, 4413, 11), -- M. Def. Modifiers
+(35327, 4414, 2), -- Armor Type
+(35327, 4415, 5), -- Weapon Type
+(35327, 4416, 22), -- Races
 -- Court Sorcerer
 (35328, 4045, 1), -- Resist Full Magic Attack
 (35328, 4115, 1), -- Aden Heal
-(35328, 4408, 16), -- HP Increase (8x)
-(35328, 4409, 11), -- MP Increase (3x)
-(35328, 4410, 18), -- Extremely Strong P. Atk.
-(35328, 4411, 11), -- Average M. Atk.
-(35328, 4412, 11), -- Average P. Def.
-(35328, 4413, 11), -- Average M. Def.
-(35328, 4414, 2), -- Standard Type
-(35328, 4415, 5), -- Blunt Weapons
-(35328, 4416, 22), -- Defending Army
+(35328, 4408, 16), -- HP Modifiers
+(35328, 4409, 11), -- MP Modifiers
+(35328, 4410, 18), -- P. Atk. Modifiers
+(35328, 4411, 11), -- M. Atk. Modifiers
+(35328, 4412, 11), -- P. Def. Modifiers
+(35328, 4413, 11), -- M. Def. Modifiers
+(35328, 4414, 2), -- Armor Type
+(35328, 4415, 5), -- Weapon Type
+(35328, 4416, 22), -- Races
 -- Court Guard
 (35329, 4045, 1), -- Resist Full Magic Attack
-(35329, 4408, 16), -- HP Increase (8x)
-(35329, 4409, 11), -- MP Increase (3x)
-(35329, 4410, 18), -- Extremely Strong P. Atk.
-(35329, 4411, 11), -- Average M. Atk.
-(35329, 4412, 11), -- Average P. Def.
-(35329, 4413, 11), -- Average M. Def.
-(35329, 4414, 2), -- Standard Type
-(35329, 4415, 11), -- Spears
-(35329, 4416, 22), -- Defending Army
+(35329, 4408, 16), -- HP Modifiers
+(35329, 4409, 11), -- MP Modifiers
+(35329, 4410, 18), -- P. Atk. Modifiers
+(35329, 4411, 11), -- M. Atk. Modifiers
+(35329, 4412, 11), -- P. Def. Modifiers
+(35329, 4413, 11), -- M. Def. Modifiers
+(35329, 4414, 2), -- Armor Type
+(35329, 4415, 11), -- Weapon Type
+(35329, 4416, 22), -- Races
 -- Guard
 (35330, 4045, 1), -- Resist Full Magic Attack
-(35330, 4408, 16), -- HP Increase (8x)
-(35330, 4409, 11), -- MP Increase (3x)
-(35330, 4410, 18), -- Extremely Strong P. Atk.
-(35330, 4411, 11), -- Average M. Atk.
-(35330, 4412, 11), -- Average P. Def.
-(35330, 4413, 11), -- Average M. Def.
-(35330, 4414, 2), -- Standard Type
-(35330, 4415, 11), -- Spears
-(35330, 4416, 22), -- Defending Army
+(35330, 4408, 16), -- HP Modifiers
+(35330, 4409, 11), -- MP Modifiers
+(35330, 4410, 18), -- P. Atk. Modifiers
+(35330, 4411, 11), -- M. Atk. Modifiers
+(35330, 4412, 11), -- P. Def. Modifiers
+(35330, 4413, 11), -- M. Def. Modifiers
+(35330, 4414, 2), -- Armor Type
+(35330, 4415, 11), -- Weapon Type
+(35330, 4416, 22), -- Races
 -- Guard
 (35331, 4045, 1), -- Resist Full Magic Attack
-(35331, 4408, 16), -- HP Increase (8x)
-(35331, 4409, 11), -- MP Increase (3x)
-(35331, 4410, 18), -- Extremely Strong P. Atk.
-(35331, 4411, 11), -- Average M. Atk.
-(35331, 4412, 11), -- Average P. Def.
-(35331, 4413, 11), -- Average M. Def.
-(35331, 4414, 2), -- Standard Type
-(35331, 4415, 3), -- One-handed Sword
-(35331, 4416, 22), -- Defending Army
+(35331, 4408, 16), -- HP Modifiers
+(35331, 4409, 11), -- MP Modifiers
+(35331, 4410, 18), -- P. Atk. Modifiers
+(35331, 4411, 11), -- M. Atk. Modifiers
+(35331, 4412, 11), -- P. Def. Modifiers
+(35331, 4413, 11), -- M. Def. Modifiers
+(35331, 4414, 2), -- Armor Type
+(35331, 4415, 3), -- Weapon Type
+(35331, 4416, 22), -- Races
 -- Guard
 (35332, 4045, 1), -- Resist Full Magic Attack
-(35332, 4408, 16), -- HP Increase (8x)
-(35332, 4409, 11), -- MP Increase (3x)
-(35332, 4410, 18), -- Extremely Strong P. Atk.
-(35332, 4411, 11), -- Average M. Atk.
-(35332, 4412, 11), -- Average P. Def.
-(35332, 4413, 11), -- Average M. Def.
-(35332, 4414, 2), -- Standard Type
-(35332, 4415, 9), -- Bows
-(35332, 4416, 22), -- Defending Army
+(35332, 4408, 16), -- HP Modifiers
+(35332, 4409, 11), -- MP Modifiers
+(35332, 4410, 18), -- P. Atk. Modifiers
+(35332, 4411, 11), -- M. Atk. Modifiers
+(35332, 4412, 11), -- P. Def. Modifiers
+(35332, 4413, 11), -- M. Def. Modifiers
+(35332, 4414, 2), -- Armor Type
+(35332, 4415, 9), -- Weapon Type
+(35332, 4416, 22), -- Races
 -- Guard
 (35333, 4045, 1), -- Resist Full Magic Attack
-(35333, 4408, 16), -- HP Increase (8x)
-(35333, 4409, 11), -- MP Increase (3x)
-(35333, 4410, 18), -- Extremely Strong P. Atk.
-(35333, 4411, 11), -- Average M. Atk.
-(35333, 4412, 11), -- Average P. Def.
-(35333, 4413, 11), -- Average M. Def.
-(35333, 4414, 2), -- Standard Type
-(35333, 4415, 11), -- Spears
-(35333, 4416, 22), -- Defending Army
+(35333, 4408, 16), -- HP Modifiers
+(35333, 4409, 11), -- MP Modifiers
+(35333, 4410, 18), -- P. Atk. Modifiers
+(35333, 4411, 11), -- M. Atk. Modifiers
+(35333, 4412, 11), -- P. Def. Modifiers
+(35333, 4413, 11), -- M. Def. Modifiers
+(35333, 4414, 2), -- Armor Type
+(35333, 4415, 11), -- Weapon Type
+(35333, 4416, 22), -- Races
 -- Guard
 (35334, 4045, 1), -- Resist Full Magic Attack
-(35334, 4408, 16), -- HP Increase (8x)
-(35334, 4409, 11), -- MP Increase (3x)
-(35334, 4410, 18), -- Extremely Strong P. Atk.
-(35334, 4411, 11), -- Average M. Atk.
-(35334, 4412, 11), -- Average P. Def.
-(35334, 4413, 11), -- Average M. Def.
-(35334, 4414, 2), -- Standard Type
-(35334, 4415, 3), -- One-handed Sword
-(35334, 4416, 22), -- Defending Army
+(35334, 4408, 16), -- HP Modifiers
+(35334, 4409, 11), -- MP Modifiers
+(35334, 4410, 18), -- P. Atk. Modifiers
+(35334, 4411, 11), -- M. Atk. Modifiers
+(35334, 4412, 11), -- P. Def. Modifiers
+(35334, 4413, 11), -- M. Def. Modifiers
+(35334, 4414, 2), -- Armor Type
+(35334, 4415, 3), -- Weapon Type
+(35334, 4416, 22), -- Races
 -- Guard
 (35335, 4045, 1), -- Resist Full Magic Attack
-(35335, 4408, 16), -- HP Increase (8x)
-(35335, 4409, 11), -- MP Increase (3x)
-(35335, 4410, 18), -- Extremely Strong P. Atk.
-(35335, 4411, 11), -- Average M. Atk.
-(35335, 4412, 11), -- Average P. Def.
-(35335, 4413, 11), -- Average M. Def.
-(35335, 4414, 2), -- Standard Type
-(35335, 4415, 9), -- Bows
-(35335, 4416, 22), -- Defending Army
+(35335, 4408, 16), -- HP Modifiers
+(35335, 4409, 11), -- MP Modifiers
+(35335, 4410, 18), -- P. Atk. Modifiers
+(35335, 4411, 11), -- M. Atk. Modifiers
+(35335, 4412, 11), -- P. Def. Modifiers
+(35335, 4413, 11), -- M. Def. Modifiers
+(35335, 4414, 2), -- Armor Type
+(35335, 4415, 9), -- Weapon Type
+(35335, 4416, 22), -- Races
 -- Guard
 (35336, 4045, 1), -- Resist Full Magic Attack
-(35336, 4408, 16), -- HP Increase (8x)
-(35336, 4409, 11), -- MP Increase (3x)
-(35336, 4410, 18), -- Extremely Strong P. Atk.
-(35336, 4411, 11), -- Average M. Atk.
-(35336, 4412, 11), -- Average P. Def.
-(35336, 4413, 11), -- Average M. Def.
-(35336, 4414, 2), -- Standard Type
-(35336, 4415, 11), -- Spears
-(35336, 4416, 22), -- Defending Army
+(35336, 4408, 16), -- HP Modifiers
+(35336, 4409, 11), -- MP Modifiers
+(35336, 4410, 18), -- P. Atk. Modifiers
+(35336, 4411, 11), -- M. Atk. Modifiers
+(35336, 4412, 11), -- P. Def. Modifiers
+(35336, 4413, 11), -- M. Def. Modifiers
+(35336, 4414, 2), -- Armor Type
+(35336, 4415, 11), -- Weapon Type
+(35336, 4416, 22), -- Races
 -- Guard
 (35337, 4045, 1), -- Resist Full Magic Attack
-(35337, 4408, 16), -- HP Increase (8x)
-(35337, 4409, 11), -- MP Increase (3x)
-(35337, 4410, 18), -- Extremely Strong P. Atk.
-(35337, 4411, 11), -- Average M. Atk.
-(35337, 4412, 11), -- Average P. Def.
-(35337, 4413, 11), -- Average M. Def.
-(35337, 4414, 2), -- Standard Type
-(35337, 4415, 3), -- One-handed Sword
-(35337, 4416, 22), -- Defending Army
+(35337, 4408, 16), -- HP Modifiers
+(35337, 4409, 11), -- MP Modifiers
+(35337, 4410, 18), -- P. Atk. Modifiers
+(35337, 4411, 11), -- M. Atk. Modifiers
+(35337, 4412, 11), -- P. Def. Modifiers
+(35337, 4413, 11), -- M. Def. Modifiers
+(35337, 4414, 2), -- Armor Type
+(35337, 4415, 3), -- Weapon Type
+(35337, 4416, 22), -- Races
 -- Guard
 (35338, 4045, 1), -- Resist Full Magic Attack
-(35338, 4408, 16), -- HP Increase (8x)
-(35338, 4409, 11), -- MP Increase (3x)
-(35338, 4410, 18), -- Extremely Strong P. Atk.
-(35338, 4411, 11), -- Average M. Atk.
-(35338, 4412, 11), -- Average P. Def.
-(35338, 4413, 11), -- Average M. Def.
-(35338, 4414, 2), -- Standard Type
-(35338, 4415, 9), -- Bows
-(35338, 4416, 22), -- Defending Army
+(35338, 4408, 16), -- HP Modifiers
+(35338, 4409, 11), -- MP Modifiers
+(35338, 4410, 18), -- P. Atk. Modifiers
+(35338, 4411, 11), -- M. Atk. Modifiers
+(35338, 4412, 11), -- P. Def. Modifiers
+(35338, 4413, 11), -- M. Def. Modifiers
+(35338, 4414, 2), -- Armor Type
+(35338, 4415, 9), -- Weapon Type
+(35338, 4416, 22), -- Races
 -- Royal Knight
 (35339, 4045, 1), -- Resist Full Magic Attack
-(35339, 4408, 16), -- HP Increase (8x)
-(35339, 4409, 11), -- MP Increase (3x)
-(35339, 4410, 18), -- Extremely Strong P. Atk.
-(35339, 4411, 11), -- Average M. Atk.
-(35339, 4412, 11), -- Average P. Def.
-(35339, 4413, 11), -- Average M. Def.
-(35339, 4414, 2), -- Standard Type
-(35339, 4415, 3), -- One-handed Sword
-(35339, 4416, 22), -- Defending Army
+(35339, 4408, 16), -- HP Modifiers
+(35339, 4409, 11), -- MP Modifiers
+(35339, 4410, 18), -- P. Atk. Modifiers
+(35339, 4411, 11), -- M. Atk. Modifiers
+(35339, 4412, 11), -- P. Def. Modifiers
+(35339, 4413, 11), -- M. Def. Modifiers
+(35339, 4414, 2), -- Armor Type
+(35339, 4415, 3), -- Weapon Type
+(35339, 4416, 22), -- Races
 -- Court Sorcerer
 (35340, 4045, 1), -- Resist Full Magic Attack
 (35340, 4114, 1), -- Aden Flame
-(35340, 4408, 16), -- HP Increase (8x)
-(35340, 4409, 11), -- MP Increase (3x)
-(35340, 4410, 18), -- Extremely Strong P. Atk.
-(35340, 4411, 11), -- Average M. Atk.
-(35340, 4412, 11), -- Average P. Def.
-(35340, 4413, 11), -- Average M. Def.
-(35340, 4414, 2), -- Standard Type
-(35340, 4415, 5), -- Blunt Weapons
-(35340, 4416, 22), -- Defending Army
+(35340, 4408, 16), -- HP Modifiers
+(35340, 4409, 11), -- MP Modifiers
+(35340, 4410, 18), -- P. Atk. Modifiers
+(35340, 4411, 11), -- M. Atk. Modifiers
+(35340, 4412, 11), -- P. Def. Modifiers
+(35340, 4413, 11), -- M. Def. Modifiers
+(35340, 4414, 2), -- Armor Type
+(35340, 4415, 5), -- Weapon Type
+(35340, 4416, 22), -- Races
 -- Court Sorcerer
 (35341, 4045, 1), -- Resist Full Magic Attack
 (35341, 4115, 1), -- Aden Heal
-(35341, 4408, 16), -- HP Increase (8x)
-(35341, 4409, 11), -- MP Increase (3x)
-(35341, 4410, 18), -- Extremely Strong P. Atk.
-(35341, 4411, 11), -- Average M. Atk.
-(35341, 4412, 11), -- Average P. Def.
-(35341, 4413, 11), -- Average M. Def.
-(35341, 4414, 2), -- Standard Type
-(35341, 4415, 5), -- Blunt Weapons
-(35341, 4416, 22), -- Defending Army
+(35341, 4408, 16), -- HP Modifiers
+(35341, 4409, 11), -- MP Modifiers
+(35341, 4410, 18), -- P. Atk. Modifiers
+(35341, 4411, 11), -- M. Atk. Modifiers
+(35341, 4412, 11), -- P. Def. Modifiers
+(35341, 4413, 11), -- M. Def. Modifiers
+(35341, 4414, 2), -- Armor Type
+(35341, 4415, 5), -- Weapon Type
+(35341, 4416, 22), -- Races
 -- Court Guard
 (35342, 4045, 1), -- Resist Full Magic Attack
-(35342, 4408, 16), -- HP Increase (8x)
-(35342, 4409, 11), -- MP Increase (3x)
-(35342, 4410, 18), -- Extremely Strong P. Atk.
-(35342, 4411, 11), -- Average M. Atk.
-(35342, 4412, 11), -- Average P. Def.
-(35342, 4413, 11), -- Average M. Def.
-(35342, 4414, 2), -- Standard Type
-(35342, 4415, 11), -- Spears
-(35342, 4416, 22), -- Defending Army
+(35342, 4408, 16), -- HP Modifiers
+(35342, 4409, 11), -- MP Modifiers
+(35342, 4410, 18), -- P. Atk. Modifiers
+(35342, 4411, 11), -- M. Atk. Modifiers
+(35342, 4412, 11), -- P. Def. Modifiers
+(35342, 4413, 11), -- M. Def. Modifiers
+(35342, 4414, 2), -- Armor Type
+(35342, 4415, 11), -- Weapon Type
+(35342, 4416, 22), -- Races
 -- Guard
 (35343, 4045, 1), -- Resist Full Magic Attack
-(35343, 4408, 16), -- HP Increase (8x)
-(35343, 4409, 11), -- MP Increase (3x)
-(35343, 4410, 18), -- Extremely Strong P. Atk.
-(35343, 4411, 11), -- Average M. Atk.
-(35343, 4412, 11), -- Average P. Def.
-(35343, 4413, 11), -- Average M. Def.
-(35343, 4414, 2), -- Standard Type
-(35343, 4415, 11), -- Spears
-(35343, 4416, 22), -- Defending Army
+(35343, 4408, 16), -- HP Modifiers
+(35343, 4409, 11), -- MP Modifiers
+(35343, 4410, 18), -- P. Atk. Modifiers
+(35343, 4411, 11), -- M. Atk. Modifiers
+(35343, 4412, 11), -- P. Def. Modifiers
+(35343, 4413, 11), -- M. Def. Modifiers
+(35343, 4414, 2), -- Armor Type
+(35343, 4415, 11), -- Weapon Type
+(35343, 4416, 22), -- Races
 -- Guard
 (35344, 4045, 1), -- Resist Full Magic Attack
-(35344, 4408, 16), -- HP Increase (8x)
-(35344, 4409, 11), -- MP Increase (3x)
-(35344, 4410, 18), -- Extremely Strong P. Atk.
-(35344, 4411, 11), -- Average M. Atk.
-(35344, 4412, 11), -- Average P. Def.
-(35344, 4413, 11), -- Average M. Def.
-(35344, 4414, 2), -- Standard Type
-(35344, 4415, 3), -- One-handed Sword
-(35344, 4416, 22), -- Defending Army
+(35344, 4408, 16), -- HP Modifiers
+(35344, 4409, 11), -- MP Modifiers
+(35344, 4410, 18), -- P. Atk. Modifiers
+(35344, 4411, 11), -- M. Atk. Modifiers
+(35344, 4412, 11), -- P. Def. Modifiers
+(35344, 4413, 11), -- M. Def. Modifiers
+(35344, 4414, 2), -- Armor Type
+(35344, 4415, 3), -- Weapon Type
+(35344, 4416, 22), -- Races
 -- Guard
 (35345, 4045, 1), -- Resist Full Magic Attack
-(35345, 4408, 16), -- HP Increase (8x)
-(35345, 4409, 11), -- MP Increase (3x)
-(35345, 4410, 18), -- Extremely Strong P. Atk.
-(35345, 4411, 11), -- Average M. Atk.
-(35345, 4412, 11), -- Average P. Def.
-(35345, 4413, 11), -- Average M. Def.
-(35345, 4414, 2), -- Standard Type
-(35345, 4415, 9), -- Bows
-(35345, 4416, 22), -- Defending Army
+(35345, 4408, 16), -- HP Modifiers
+(35345, 4409, 11), -- MP Modifiers
+(35345, 4410, 18), -- P. Atk. Modifiers
+(35345, 4411, 11), -- M. Atk. Modifiers
+(35345, 4412, 11), -- P. Def. Modifiers
+(35345, 4413, 11), -- M. Def. Modifiers
+(35345, 4414, 2), -- Armor Type
+(35345, 4415, 9), -- Weapon Type
+(35345, 4416, 22), -- Races
 -- Guard
 (35346, 4045, 1), -- Resist Full Magic Attack
-(35346, 4408, 16), -- HP Increase (8x)
-(35346, 4409, 11), -- MP Increase (3x)
-(35346, 4410, 18), -- Extremely Strong P. Atk.
-(35346, 4411, 11), -- Average M. Atk.
-(35346, 4412, 11), -- Average P. Def.
-(35346, 4413, 11), -- Average M. Def.
-(35346, 4414, 2), -- Standard Type
-(35346, 4415, 11), -- Spears
-(35346, 4416, 22), -- Defending Army
+(35346, 4408, 16), -- HP Modifiers
+(35346, 4409, 11), -- MP Modifiers
+(35346, 4410, 18), -- P. Atk. Modifiers
+(35346, 4411, 11), -- M. Atk. Modifiers
+(35346, 4412, 11), -- P. Def. Modifiers
+(35346, 4413, 11), -- M. Def. Modifiers
+(35346, 4414, 2), -- Armor Type
+(35346, 4415, 11), -- Weapon Type
+(35346, 4416, 22), -- Races
 -- Guard
 (35347, 4045, 1), -- Resist Full Magic Attack
-(35347, 4408, 16), -- HP Increase (8x)
-(35347, 4409, 11), -- MP Increase (3x)
-(35347, 4410, 18), -- Extremely Strong P. Atk.
-(35347, 4411, 11), -- Average M. Atk.
-(35347, 4412, 11), -- Average P. Def.
-(35347, 4413, 11), -- Average M. Def.
-(35347, 4414, 2), -- Standard Type
-(35347, 4415, 3), -- One-handed Sword
-(35347, 4416, 22), -- Defending Army
+(35347, 4408, 16), -- HP Modifiers
+(35347, 4409, 11), -- MP Modifiers
+(35347, 4410, 18), -- P. Atk. Modifiers
+(35347, 4411, 11), -- M. Atk. Modifiers
+(35347, 4412, 11), -- P. Def. Modifiers
+(35347, 4413, 11), -- M. Def. Modifiers
+(35347, 4414, 2), -- Armor Type
+(35347, 4415, 3), -- Weapon Type
+(35347, 4416, 22), -- Races
 -- Guard
 (35348, 4045, 1), -- Resist Full Magic Attack
-(35348, 4408, 16), -- HP Increase (8x)
-(35348, 4409, 11), -- MP Increase (3x)
-(35348, 4410, 18), -- Extremely Strong P. Atk.
-(35348, 4411, 11), -- Average M. Atk.
-(35348, 4412, 11), -- Average P. Def.
-(35348, 4413, 11), -- Average M. Def.
-(35348, 4414, 2), -- Standard Type
-(35348, 4415, 9), -- Bows
-(35348, 4416, 22), -- Defending Army
+(35348, 4408, 16), -- HP Modifiers
+(35348, 4409, 11), -- MP Modifiers
+(35348, 4410, 18), -- P. Atk. Modifiers
+(35348, 4411, 11), -- M. Atk. Modifiers
+(35348, 4412, 11), -- P. Def. Modifiers
+(35348, 4413, 11), -- M. Def. Modifiers
+(35348, 4414, 2), -- Armor Type
+(35348, 4415, 9), -- Weapon Type
+(35348, 4416, 22), -- Races
 -- Guard
 (35349, 4045, 1), -- Resist Full Magic Attack
-(35349, 4408, 16), -- HP Increase (8x)
-(35349, 4409, 11), -- MP Increase (3x)
-(35349, 4410, 18), -- Extremely Strong P. Atk.
-(35349, 4411, 11), -- Average M. Atk.
-(35349, 4412, 11), -- Average P. Def.
-(35349, 4413, 11), -- Average M. Def.
-(35349, 4414, 2), -- Standard Type
-(35349, 4415, 11), -- Spears
-(35349, 4416, 22), -- Defending Army
+(35349, 4408, 16), -- HP Modifiers
+(35349, 4409, 11), -- MP Modifiers
+(35349, 4410, 18), -- P. Atk. Modifiers
+(35349, 4411, 11), -- M. Atk. Modifiers
+(35349, 4412, 11), -- P. Def. Modifiers
+(35349, 4413, 11), -- M. Def. Modifiers
+(35349, 4414, 2), -- Armor Type
+(35349, 4415, 11), -- Weapon Type
+(35349, 4416, 22), -- Races
 -- Guard
 (35350, 4045, 1), -- Resist Full Magic Attack
-(35350, 4408, 16), -- HP Increase (8x)
-(35350, 4409, 11), -- MP Increase (3x)
-(35350, 4410, 18), -- Extremely Strong P. Atk.
-(35350, 4411, 11), -- Average M. Atk.
-(35350, 4412, 11), -- Average P. Def.
-(35350, 4413, 11), -- Average M. Def.
-(35350, 4414, 2), -- Standard Type
-(35350, 4415, 3), -- One-handed Sword
-(35350, 4416, 22), -- Defending Army
+(35350, 4408, 16), -- HP Modifiers
+(35350, 4409, 11), -- MP Modifiers
+(35350, 4410, 18), -- P. Atk. Modifiers
+(35350, 4411, 11), -- M. Atk. Modifiers
+(35350, 4412, 11), -- P. Def. Modifiers
+(35350, 4413, 11), -- M. Def. Modifiers
+(35350, 4414, 2), -- Armor Type
+(35350, 4415, 3), -- Weapon Type
+(35350, 4416, 22), -- Races
 -- Guard
 (35351, 4045, 1), -- Resist Full Magic Attack
-(35351, 4408, 16), -- HP Increase (8x)
-(35351, 4409, 11), -- MP Increase (3x)
-(35351, 4410, 18), -- Extremely Strong P. Atk.
-(35351, 4411, 11), -- Average M. Atk.
-(35351, 4412, 11), -- Average P. Def.
-(35351, 4413, 11), -- Average M. Def.
-(35351, 4414, 2), -- Standard Type
-(35351, 4415, 9), -- Bows
-(35351, 4416, 22), -- Defending Army
+(35351, 4408, 16), -- HP Modifiers
+(35351, 4409, 11), -- MP Modifiers
+(35351, 4410, 18), -- P. Atk. Modifiers
+(35351, 4411, 11), -- M. Atk. Modifiers
+(35351, 4412, 11), -- P. Def. Modifiers
+(35351, 4413, 11), -- M. Def. Modifiers
+(35351, 4414, 2), -- Armor Type
+(35351, 4415, 9), -- Weapon Type
+(35351, 4416, 22), -- Races
 -- Gatekeeper
 (35352, 4045, 1), -- Resist Full Magic Attack
-(35352, 4408, 1), -- HP Increase (1x)
-(35352, 4409, 1), -- MP Increase (1x)
-(35352, 4410, 11), -- Average P. Atk.
-(35352, 4411, 11), -- Average M. Atk.
-(35352, 4412, 11), -- Average P. Def.
-(35352, 4413, 11), -- Average M. Def.
-(35352, 4414, 2), -- Standard Type
-(35352, 4415, 3), -- One-handed Sword
-(35352, 4416, 23), -- Mercenaries
+(35352, 4408, 1), -- HP Modifiers
+(35352, 4409, 1), -- MP Modifiers
+(35352, 4410, 11), -- P. Atk. Modifiers
+(35352, 4411, 11), -- M. Atk. Modifiers
+(35352, 4412, 11), -- P. Def. Modifiers
+(35352, 4413, 11), -- M. Def. Modifiers
+(35352, 4414, 2), -- Armor Type
+(35352, 4415, 3), -- Weapon Type
+(35352, 4416, 23), -- Races
 -- Gatekeeper
 (35353, 4045, 1), -- Resist Full Magic Attack
-(35353, 4408, 1), -- HP Increase (1x)
-(35353, 4409, 1), -- MP Increase (1x)
-(35353, 4410, 11), -- Average P. Atk.
-(35353, 4411, 11), -- Average M. Atk.
-(35353, 4412, 11), -- Average P. Def.
-(35353, 4413, 11), -- Average M. Def.
-(35353, 4414, 2), -- Standard Type
-(35353, 4415, 3), -- One-handed Sword
-(35353, 4416, 23), -- Mercenaries
+(35353, 4408, 1), -- HP Modifiers
+(35353, 4409, 1), -- MP Modifiers
+(35353, 4410, 11), -- P. Atk. Modifiers
+(35353, 4411, 11), -- M. Atk. Modifiers
+(35353, 4412, 11), -- P. Def. Modifiers
+(35353, 4413, 11), -- M. Def. Modifiers
+(35353, 4414, 2), -- Armor Type
+(35353, 4415, 3), -- Weapon Type
+(35353, 4416, 23), -- Races
 -- Gatekeeper
 (35354, 4045, 1), -- Resist Full Magic Attack
-(35354, 4408, 1), -- HP Increase (1x)
-(35354, 4409, 1), -- MP Increase (1x)
-(35354, 4410, 11), -- Average P. Atk.
-(35354, 4411, 11), -- Average M. Atk.
-(35354, 4412, 11), -- Average P. Def.
-(35354, 4413, 11), -- Average M. Def.
-(35354, 4414, 2), -- Standard Type
-(35354, 4415, 3), -- One-handed Sword
-(35354, 4416, 23), -- Mercenaries
+(35354, 4408, 1), -- HP Modifiers
+(35354, 4409, 1), -- MP Modifiers
+(35354, 4410, 11), -- P. Atk. Modifiers
+(35354, 4411, 11), -- M. Atk. Modifiers
+(35354, 4412, 11), -- P. Def. Modifiers
+(35354, 4413, 11), -- M. Def. Modifiers
+(35354, 4414, 2), -- Armor Type
+(35354, 4415, 3), -- Weapon Type
+(35354, 4416, 23), -- Races
 -- Mass Gatekeeper
 (35355, 4045, 1), -- Resist Full Magic Attack
-(35355, 4408, 1), -- HP Increase (1x)
-(35355, 4409, 1), -- MP Increase (1x)
-(35355, 4410, 11), -- Average P. Atk.
-(35355, 4411, 11), -- Average M. Atk.
-(35355, 4412, 11), -- Average P. Def.
-(35355, 4413, 11), -- Average M. Def.
-(35355, 4414, 2), -- Standard Type
-(35355, 4415, 3), -- One-handed Sword
-(35355, 4416, 14), -- Humans
+(35355, 4408, 1), -- HP Modifiers
+(35355, 4409, 1), -- MP Modifiers
+(35355, 4410, 11), -- P. Atk. Modifiers
+(35355, 4411, 11), -- M. Atk. Modifiers
+(35355, 4412, 11), -- P. Def. Modifiers
+(35355, 4413, 11), -- M. Def. Modifiers
+(35355, 4414, 2), -- Armor Type
+(35355, 4415, 3), -- Weapon Type
+(35355, 4416, 14), -- Races
 -- Outer Doorman
 (35356, 4045, 1), -- Resist Full Magic Attack
-(35356, 4408, 1), -- HP Increase (1x)
-(35356, 4409, 1), -- MP Increase (1x)
-(35356, 4410, 11), -- Average P. Atk.
-(35356, 4411, 11), -- Average M. Atk.
-(35356, 4412, 11), -- Average P. Def.
-(35356, 4413, 11), -- Average M. Def.
-(35356, 4414, 2), -- Standard Type
-(35356, 4415, 3), -- One-handed Sword
-(35356, 4416, 14), -- Humans
+(35356, 4408, 1), -- HP Modifiers
+(35356, 4409, 1), -- MP Modifiers
+(35356, 4410, 11), -- P. Atk. Modifiers
+(35356, 4411, 11), -- M. Atk. Modifiers
+(35356, 4412, 11), -- P. Def. Modifiers
+(35356, 4413, 11), -- M. Def. Modifiers
+(35356, 4414, 2), -- Armor Type
+(35356, 4415, 3), -- Weapon Type
+(35356, 4416, 14), -- Races
 -- Inner Doorman
 (35357, 4045, 1), -- Resist Full Magic Attack
-(35357, 4408, 1), -- HP Increase (1x)
-(35357, 4409, 1), -- MP Increase (1x)
-(35357, 4410, 11), -- Average P. Atk.
-(35357, 4411, 11), -- Average M. Atk.
-(35357, 4412, 11), -- Average P. Def.
-(35357, 4413, 11), -- Average M. Def.
-(35357, 4414, 2), -- Standard Type
-(35357, 4415, 3), -- One-handed Sword
-(35357, 4416, 14), -- Humans
+(35357, 4408, 1), -- HP Modifiers
+(35357, 4409, 1), -- MP Modifiers
+(35357, 4410, 11), -- P. Atk. Modifiers
+(35357, 4411, 11), -- M. Atk. Modifiers
+(35357, 4412, 11), -- P. Def. Modifiers
+(35357, 4413, 11), -- M. Def. Modifiers
+(35357, 4414, 2), -- Armor Type
+(35357, 4415, 3), -- Weapon Type
+(35357, 4416, 14), -- Races
 -- Inner Doorman
 (35358, 4045, 1), -- Resist Full Magic Attack
-(35358, 4408, 1), -- HP Increase (1x)
-(35358, 4409, 1), -- MP Increase (1x)
-(35358, 4410, 11), -- Average P. Atk.
-(35358, 4411, 11), -- Average M. Atk.
-(35358, 4412, 11), -- Average P. Def.
-(35358, 4413, 11), -- Average M. Def.
-(35358, 4414, 2), -- Standard Type
-(35358, 4415, 3), -- One-handed Sword
-(35358, 4416, 14), -- Humans
+(35358, 4408, 1), -- HP Modifiers
+(35358, 4409, 1), -- MP Modifiers
+(35358, 4410, 11), -- P. Atk. Modifiers
+(35358, 4411, 11), -- M. Atk. Modifiers
+(35358, 4412, 11), -- P. Def. Modifiers
+(35358, 4413, 11), -- M. Def. Modifiers
+(35358, 4414, 2), -- Armor Type
+(35358, 4415, 3), -- Weapon Type
+(35358, 4416, 14), -- Races
 -- Doorman
 (35359, 4045, 1), -- Resist Full Magic Attack
-(35359, 4408, 1), -- HP Increase (1x)
-(35359, 4409, 1), -- MP Increase (1x)
-(35359, 4410, 11), -- Average P. Atk.
-(35359, 4411, 11), -- Average M. Atk.
-(35359, 4412, 11), -- Average P. Def.
-(35359, 4413, 11), -- Average M. Def.
-(35359, 4414, 2), -- Standard Type
-(35359, 4415, 3), -- One-handed Sword
-(35359, 4416, 14), -- Humans
+(35359, 4408, 1), -- HP Modifiers
+(35359, 4409, 1), -- MP Modifiers
+(35359, 4410, 11), -- P. Atk. Modifiers
+(35359, 4411, 11), -- M. Atk. Modifiers
+(35359, 4412, 11), -- P. Def. Modifiers
+(35359, 4413, 11), -- M. Def. Modifiers
+(35359, 4414, 2), -- Armor Type
+(35359, 4415, 3), -- Weapon Type
+(35359, 4416, 14), -- Races
 -- Doorman
 (35360, 4045, 1), -- Resist Full Magic Attack
-(35360, 4408, 1), -- HP Increase (1x)
-(35360, 4409, 1), -- MP Increase (1x)
-(35360, 4410, 11), -- Average P. Atk.
-(35360, 4411, 11), -- Average M. Atk.
-(35360, 4412, 11), -- Average P. Def.
-(35360, 4413, 11), -- Average M. Def.
-(35360, 4414, 2), -- Standard Type
-(35360, 4415, 3), -- One-handed Sword
-(35360, 4416, 14), -- Humans
+(35360, 4408, 1), -- HP Modifiers
+(35360, 4409, 1), -- MP Modifiers
+(35360, 4410, 11), -- P. Atk. Modifiers
+(35360, 4411, 11), -- M. Atk. Modifiers
+(35360, 4412, 11), -- P. Def. Modifiers
+(35360, 4413, 11), -- M. Def. Modifiers
+(35360, 4414, 2), -- Armor Type
+(35360, 4415, 3), -- Weapon Type
+(35360, 4416, 14), -- Races
 -- Blacksmith
 (35361, 4045, 1), -- Resist Full Magic Attack
-(35361, 4408, 1), -- HP Increase (1x)
-(35361, 4409, 1), -- MP Increase (1x)
-(35361, 4410, 11), -- Average P. Atk.
-(35361, 4411, 11), -- Average M. Atk.
-(35361, 4412, 11), -- Average P. Def.
-(35361, 4413, 11), -- Average M. Def.
-(35361, 4414, 2), -- Standard Type
-(35361, 4415, 3), -- One-handed Sword
-(35361, 4416, 18), -- Dwarves
+(35361, 4408, 1), -- HP Modifiers
+(35361, 4409, 1), -- MP Modifiers
+(35361, 4410, 11), -- P. Atk. Modifiers
+(35361, 4411, 11), -- M. Atk. Modifiers
+(35361, 4412, 11), -- P. Def. Modifiers
+(35361, 4413, 11), -- M. Def. Modifiers
+(35361, 4414, 2), -- Armor Type
+(35361, 4415, 3), -- Weapon Type
+(35361, 4416, 18), -- Races
 -- Warehouse Keeper
 (35362, 4045, 1), -- Resist Full Magic Attack
-(35362, 4408, 1), -- HP Increase (1x)
-(35362, 4409, 1), -- MP Increase (1x)
-(35362, 4410, 11), -- Average P. Atk.
-(35362, 4411, 11), -- Average M. Atk.
-(35362, 4412, 11), -- Average P. Def.
-(35362, 4413, 11), -- Average M. Def.
-(35362, 4414, 2), -- Standard Type
-(35362, 4415, 3), -- One-handed Sword
-(35362, 4416, 18), -- Dwarves
+(35362, 4408, 1), -- HP Modifiers
+(35362, 4409, 1), -- MP Modifiers
+(35362, 4410, 11), -- P. Atk. Modifiers
+(35362, 4411, 11), -- M. Atk. Modifiers
+(35362, 4412, 11), -- P. Def. Modifiers
+(35362, 4413, 11), -- M. Def. Modifiers
+(35362, 4414, 2), -- Armor Type
+(35362, 4415, 3), -- Weapon Type
+(35362, 4416, 18), -- Races
 -- Alfred
 (35363, 4045, 1), -- Resist Full Magic Attack
-(35363, 4408, 1), -- HP Increase (1x)
-(35363, 4409, 1), -- MP Increase (1x)
-(35363, 4410, 11), -- Average P. Atk.
-(35363, 4411, 11), -- Average M. Atk.
-(35363, 4412, 11), -- Average P. Def.
-(35363, 4413, 11), -- Average M. Def.
-(35363, 4414, 2), -- Standard Type
-(35363, 4415, 3), -- One-handed Sword
-(35363, 4416, 14), -- Humans
+(35363, 4408, 1), -- HP Modifiers
+(35363, 4409, 1), -- MP Modifiers
+(35363, 4410, 11), -- P. Atk. Modifiers
+(35363, 4411, 11), -- M. Atk. Modifiers
+(35363, 4412, 11), -- P. Def. Modifiers
+(35363, 4413, 11), -- M. Def. Modifiers
+(35363, 4414, 2), -- Armor Type
+(35363, 4415, 3), -- Weapon Type
+(35363, 4416, 14), -- Races
 -- Hadley
 (35364, 4045, 1), -- Resist Full Magic Attack
-(35364, 4408, 1), -- HP Increase (1x)
-(35364, 4409, 1), -- MP Increase (1x)
-(35364, 4410, 11), -- Average P. Atk.
-(35364, 4411, 11), -- Average M. Atk.
-(35364, 4412, 11), -- Average P. Def.
-(35364, 4413, 11), -- Average M. Def.
-(35364, 4414, 2), -- Standard Type
-(35364, 4415, 3), -- One-handed Sword
-(35364, 4416, 14), -- Humans
+(35364, 4408, 1), -- HP Modifiers
+(35364, 4409, 1), -- MP Modifiers
+(35364, 4410, 11), -- P. Atk. Modifiers
+(35364, 4411, 11), -- M. Atk. Modifiers
+(35364, 4412, 11), -- P. Def. Modifiers
+(35364, 4413, 11), -- M. Def. Modifiers
+(35364, 4414, 2), -- Armor Type
+(35364, 4415, 3), -- Weapon Type
+(35364, 4416, 14), -- Races
 -- Rowell
 (35365, 4045, 1), -- Resist Full Magic Attack
-(35365, 4408, 1), -- HP Increase (1x)
-(35365, 4409, 1), -- MP Increase (1x)
-(35365, 4410, 11), -- Average P. Atk.
-(35365, 4411, 11), -- Average M. Atk.
-(35365, 4412, 11), -- Average P. Def.
-(35365, 4413, 11), -- Average M. Def.
-(35365, 4414, 2), -- Standard Type
-(35365, 4415, 3), -- One-handed Sword
-(35365, 4416, 14), -- Humans
+(35365, 4408, 1), -- HP Modifiers
+(35365, 4409, 1), -- MP Modifiers
+(35365, 4410, 11), -- P. Atk. Modifiers
+(35365, 4411, 11), -- M. Atk. Modifiers
+(35365, 4412, 11), -- P. Def. Modifiers
+(35365, 4413, 11), -- M. Def. Modifiers
+(35365, 4414, 2), -- Armor Type
+(35365, 4415, 3), -- Weapon Type
+(35365, 4416, 14), -- Races
 -- Manor Manager
 (35366, 4045, 1), -- Resist Full Magic Attack
-(35366, 4408, 1), -- HP Increase (1x)
-(35366, 4409, 1), -- MP Increase (1x)
-(35366, 4410, 11), -- Average P. Atk.
-(35366, 4411, 11), -- Average M. Atk.
-(35366, 4412, 11), -- Average P. Def.
-(35366, 4413, 11), -- Average M. Def.
-(35366, 4414, 2), -- Standard Type
-(35366, 4415, 3), -- One-handed Sword
-(35366, 4416, 14), -- Humans
+(35366, 4408, 1), -- HP Modifiers
+(35366, 4409, 1), -- MP Modifiers
+(35366, 4410, 11), -- P. Atk. Modifiers
+(35366, 4411, 11), -- M. Atk. Modifiers
+(35366, 4412, 11), -- P. Def. Modifiers
+(35366, 4413, 11), -- M. Def. Modifiers
+(35366, 4414, 2), -- Armor Type
+(35366, 4415, 3), -- Weapon Type
+(35366, 4416, 14), -- Races
 -- Daven
 (35367, 4045, 1), -- Resist Full Magic Attack
-(35367, 4408, 1), -- HP Increase (1x)
-(35367, 4409, 1), -- MP Increase (1x)
-(35367, 4410, 11), -- Average P. Atk.
-(35367, 4411, 11), -- Average M. Atk.
-(35367, 4412, 11), -- Average P. Def.
-(35367, 4413, 11), -- Average M. Def.
-(35367, 4414, 2), -- Standard Type
-(35367, 4415, 3), -- One-handed Sword
-(35367, 4416, 14), -- Humans
+(35367, 4408, 1), -- HP Modifiers
+(35367, 4409, 1), -- MP Modifiers
+(35367, 4410, 11), -- P. Atk. Modifiers
+(35367, 4411, 11), -- M. Atk. Modifiers
+(35367, 4412, 11), -- P. Def. Modifiers
+(35367, 4413, 11), -- M. Def. Modifiers
+(35367, 4414, 2), -- Armor Type
+(35367, 4415, 3), -- Weapon Type
+(35367, 4416, 14), -- Races
 -- Bloody Lord Nurka
 (35368, 4045, 1), -- Resist Full Magic Attack
-(35368, 4408, 12), -- HP Increase (4x)
-(35368, 4409, 1), -- MP Increase (1x)
-(35368, 4410, 11), -- Average P. Atk.
-(35368, 4411, 11), -- Average M. Atk.
-(35368, 4412, 11), -- Average P. Def.
-(35368, 4413, 11), -- Average M. Def.
-(35368, 4414, 2), -- Standard Type
-(35368, 4415, 3), -- One-handed Sword
-(35368, 4416, 6), -- Humanoids
+(35368, 4408, 12), -- HP Modifiers
+(35368, 4409, 1), -- MP Modifiers
+(35368, 4410, 11), -- P. Atk. Modifiers
+(35368, 4411, 11), -- M. Atk. Modifiers
+(35368, 4412, 11), -- P. Def. Modifiers
+(35368, 4413, 11), -- M. Def. Modifiers
+(35368, 4414, 2), -- Armor Type
+(35368, 4415, 3), -- Weapon Type
+(35368, 4416, 6), -- Races
 -- Partisan Healer
 (35369, 4045, 1), -- Resist Full Magic Attack
-(35369, 4408, 1), -- HP Increase (1x)
-(35369, 4409, 1), -- MP Increase (1x)
-(35369, 4410, 11), -- Average P. Atk.
-(35369, 4411, 11), -- Average M. Atk.
-(35369, 4412, 11), -- Average P. Def.
-(35369, 4413, 11), -- Average M. Def.
-(35369, 4414, 2), -- Standard Type
-(35369, 4415, 5), -- Blunt Weapons
-(35369, 4416, 6), -- Humanoids
+(35369, 4408, 1), -- HP Modifiers
+(35369, 4409, 1), -- MP Modifiers
+(35369, 4410, 11), -- P. Atk. Modifiers
+(35369, 4411, 11), -- M. Atk. Modifiers
+(35369, 4412, 11), -- P. Def. Modifiers
+(35369, 4413, 11), -- M. Def. Modifiers
+(35369, 4414, 2), -- Armor Type
+(35369, 4415, 5), -- Weapon Type
+(35369, 4416, 6), -- Races
 -- Partisan Court Guard
 (35370, 4045, 1), -- Resist Full Magic Attack
-(35370, 4408, 1), -- HP Increase (1x)
-(35370, 4409, 1), -- MP Increase (1x)
-(35370, 4410, 11), -- Average P. Atk.
-(35370, 4411, 11), -- Average M. Atk.
-(35370, 4412, 11), -- Average P. Def.
-(35370, 4413, 11), -- Average M. Def.
-(35370, 4414, 2), -- Standard Type
-(35370, 4415, 3), -- One-handed Sword
-(35370, 4416, 6), -- Humanoids
+(35370, 4408, 1), -- HP Modifiers
+(35370, 4409, 1), -- MP Modifiers
+(35370, 4410, 11), -- P. Atk. Modifiers
+(35370, 4411, 11), -- M. Atk. Modifiers
+(35370, 4412, 11), -- P. Def. Modifiers
+(35370, 4413, 11), -- M. Def. Modifiers
+(35370, 4414, 2), -- Armor Type
+(35370, 4415, 3), -- Weapon Type
+(35370, 4416, 6), -- Races
 -- Partisan Court Guard
 (35371, 4045, 1), -- Resist Full Magic Attack
-(35371, 4408, 1), -- HP Increase (1x)
-(35371, 4409, 1), -- MP Increase (1x)
-(35371, 4410, 11), -- Average P. Atk.
-(35371, 4411, 11), -- Average M. Atk.
-(35371, 4412, 11), -- Average P. Def.
-(35371, 4413, 11), -- Average M. Def.
-(35371, 4414, 2), -- Standard Type
-(35371, 4415, 9), -- Bows
-(35371, 4416, 6), -- Humanoids
+(35371, 4408, 1), -- HP Modifiers
+(35371, 4409, 1), -- MP Modifiers
+(35371, 4410, 11), -- P. Atk. Modifiers
+(35371, 4411, 11), -- M. Atk. Modifiers
+(35371, 4412, 11), -- P. Def. Modifiers
+(35371, 4413, 11), -- M. Def. Modifiers
+(35371, 4414, 2), -- Armor Type
+(35371, 4415, 9), -- Weapon Type
+(35371, 4416, 6), -- Races
 -- Partisan Soldier
 (35372, 4045, 1), -- Resist Full Magic Attack
-(35372, 4408, 1), -- HP Increase (1x)
-(35372, 4409, 1), -- MP Increase (1x)
-(35372, 4410, 11), -- Average P. Atk.
-(35372, 4411, 11), -- Average M. Atk.
-(35372, 4412, 11), -- Average P. Def.
-(35372, 4413, 11), -- Average M. Def.
-(35372, 4414, 2), -- Standard Type
-(35372, 4415, 3), -- One-handed Sword
-(35372, 4416, 6), -- Humanoids
+(35372, 4408, 1), -- HP Modifiers
+(35372, 4409, 1), -- MP Modifiers
+(35372, 4410, 11), -- P. Atk. Modifiers
+(35372, 4411, 11), -- M. Atk. Modifiers
+(35372, 4412, 11), -- P. Def. Modifiers
+(35372, 4413, 11), -- M. Def. Modifiers
+(35372, 4414, 2), -- Armor Type
+(35372, 4415, 3), -- Weapon Type
+(35372, 4416, 6), -- Races
 -- Partisan Sorcerer
 (35373, 4045, 1), -- Resist Full Magic Attack
-(35373, 4408, 1), -- HP Increase (1x)
-(35373, 4409, 1), -- MP Increase (1x)
-(35373, 4410, 11), -- Average P. Atk.
-(35373, 4411, 11), -- Average M. Atk.
-(35373, 4412, 11), -- Average P. Def.
-(35373, 4413, 11), -- Average M. Def.
-(35373, 4414, 2), -- Standard Type
-(35373, 4415, 5), -- Blunt Weapons
-(35373, 4416, 6), -- Humanoids
+(35373, 4408, 1), -- HP Modifiers
+(35373, 4409, 1), -- MP Modifiers
+(35373, 4410, 11), -- P. Atk. Modifiers
+(35373, 4411, 11), -- M. Atk. Modifiers
+(35373, 4412, 11), -- P. Def. Modifiers
+(35373, 4413, 11), -- M. Def. Modifiers
+(35373, 4414, 2), -- Armor Type
+(35373, 4415, 5), -- Weapon Type
+(35373, 4416, 6), -- Races
 -- Partisan Archer
 (35374, 4045, 1), -- Resist Full Magic Attack
-(35374, 4408, 1), -- HP Increase (1x)
-(35374, 4409, 1), -- MP Increase (1x)
-(35374, 4410, 11), -- Average P. Atk.
-(35374, 4411, 11), -- Average M. Atk.
-(35374, 4412, 11), -- Average P. Def.
-(35374, 4413, 11), -- Average M. Def.
-(35374, 4414, 2), -- Standard Type
-(35374, 4415, 9), -- Bows
-(35374, 4416, 6), -- Humanoids
+(35374, 4408, 1), -- HP Modifiers
+(35374, 4409, 1), -- MP Modifiers
+(35374, 4410, 11), -- P. Atk. Modifiers
+(35374, 4411, 11), -- M. Atk. Modifiers
+(35374, 4412, 11), -- P. Def. Modifiers
+(35374, 4413, 11), -- M. Def. Modifiers
+(35374, 4414, 2), -- Armor Type
+(35374, 4415, 9), -- Weapon Type
+(35374, 4416, 6), -- Races
 -- Bloody Lord Nurka
 (35375, 4045, 1), -- Resist Full Magic Attack
-(35375, 4408, 12), -- HP Increase (4x)
-(35375, 4409, 1), -- MP Increase (1x)
-(35375, 4410, 11), -- Average P. Atk.
-(35375, 4411, 11), -- Average M. Atk.
-(35375, 4412, 11), -- Average P. Def.
-(35375, 4413, 11), -- Average M. Def.
-(35375, 4414, 2), -- Standard Type
-(35375, 4415, 3), -- One-handed Sword
-(35375, 4416, 6), -- Humanoids
+(35375, 4408, 12), -- HP Modifiers
+(35375, 4409, 1), -- MP Modifiers
+(35375, 4410, 11), -- P. Atk. Modifiers
+(35375, 4411, 11), -- M. Atk. Modifiers
+(35375, 4412, 11), -- P. Def. Modifiers
+(35375, 4413, 11), -- M. Def. Modifiers
+(35375, 4414, 2), -- Armor Type
+(35375, 4415, 3), -- Weapon Type
+(35375, 4416, 6), -- Races
 -- Partisan Healer
 (35376, 4045, 1), -- Resist Full Magic Attack
-(35376, 4408, 1), -- HP Increase (1x)
-(35376, 4409, 1), -- MP Increase (1x)
-(35376, 4410, 11), -- Average P. Atk.
-(35376, 4411, 11), -- Average M. Atk.
-(35376, 4412, 11), -- Average P. Def.
-(35376, 4413, 11), -- Average M. Def.
-(35376, 4414, 2), -- Standard Type
-(35376, 4415, 5), -- Blunt Weapons
-(35376, 4416, 6), -- Humanoids
+(35376, 4408, 1), -- HP Modifiers
+(35376, 4409, 1), -- MP Modifiers
+(35376, 4410, 11), -- P. Atk. Modifiers
+(35376, 4411, 11), -- M. Atk. Modifiers
+(35376, 4412, 11), -- P. Def. Modifiers
+(35376, 4413, 11), -- M. Def. Modifiers
+(35376, 4414, 2), -- Armor Type
+(35376, 4415, 5), -- Weapon Type
+(35376, 4416, 6), -- Races
 -- Partisan Court Guard
 (35377, 4045, 1), -- Resist Full Magic Attack
-(35377, 4408, 1), -- HP Increase (1x)
-(35377, 4409, 1), -- MP Increase (1x)
-(35377, 4410, 11), -- Average P. Atk.
-(35377, 4411, 11), -- Average M. Atk.
-(35377, 4412, 11), -- Average P. Def.
-(35377, 4413, 11), -- Average M. Def.
-(35377, 4414, 2), -- Standard Type
-(35377, 4415, 3), -- One-handed Sword
-(35377, 4416, 6), -- Humanoids
+(35377, 4408, 1), -- HP Modifiers
+(35377, 4409, 1), -- MP Modifiers
+(35377, 4410, 11), -- P. Atk. Modifiers
+(35377, 4411, 11), -- M. Atk. Modifiers
+(35377, 4412, 11), -- P. Def. Modifiers
+(35377, 4413, 11), -- M. Def. Modifiers
+(35377, 4414, 2), -- Armor Type
+(35377, 4415, 3), -- Weapon Type
+(35377, 4416, 6), -- Races
 -- Partisan Court Guard
 (35378, 4045, 1), -- Resist Full Magic Attack
-(35378, 4408, 1), -- HP Increase (1x)
-(35378, 4409, 1), -- MP Increase (1x)
-(35378, 4410, 11), -- Average P. Atk.
-(35378, 4411, 11), -- Average M. Atk.
-(35378, 4412, 11), -- Average P. Def.
-(35378, 4413, 11), -- Average M. Def.
-(35378, 4414, 2), -- Standard Type
-(35378, 4415, 9), -- Bows
-(35378, 4416, 6), -- Humanoids
+(35378, 4408, 1), -- HP Modifiers
+(35378, 4409, 1), -- MP Modifiers
+(35378, 4410, 11), -- P. Atk. Modifiers
+(35378, 4411, 11), -- M. Atk. Modifiers
+(35378, 4412, 11), -- P. Def. Modifiers
+(35378, 4413, 11), -- M. Def. Modifiers
+(35378, 4414, 2), -- Armor Type
+(35378, 4415, 9), -- Weapon Type
+(35378, 4416, 6), -- Races
 -- Partisan Soldier
 (35379, 4045, 1), -- Resist Full Magic Attack
-(35379, 4408, 1), -- HP Increase (1x)
-(35379, 4409, 1), -- MP Increase (1x)
-(35379, 4410, 11), -- Average P. Atk.
-(35379, 4411, 11), -- Average M. Atk.
-(35379, 4412, 11), -- Average P. Def.
-(35379, 4413, 11), -- Average M. Def.
-(35379, 4414, 2), -- Standard Type
-(35379, 4415, 3), -- One-handed Sword
-(35379, 4416, 6), -- Humanoids
+(35379, 4408, 1), -- HP Modifiers
+(35379, 4409, 1), -- MP Modifiers
+(35379, 4410, 11), -- P. Atk. Modifiers
+(35379, 4411, 11), -- M. Atk. Modifiers
+(35379, 4412, 11), -- P. Def. Modifiers
+(35379, 4413, 11), -- M. Def. Modifiers
+(35379, 4414, 2), -- Armor Type
+(35379, 4415, 3), -- Weapon Type
+(35379, 4416, 6), -- Races
 -- Partisan Sorcerer
 (35380, 4045, 1), -- Resist Full Magic Attack
-(35380, 4408, 1), -- HP Increase (1x)
-(35380, 4409, 1), -- MP Increase (1x)
-(35380, 4410, 11), -- Average P. Atk.
-(35380, 4411, 11), -- Average M. Atk.
-(35380, 4412, 11), -- Average P. Def.
-(35380, 4413, 11), -- Average M. Def.
-(35380, 4414, 2), -- Standard Type
-(35380, 4415, 5), -- Blunt Weapons
-(35380, 4416, 6), -- Humanoids
+(35380, 4408, 1), -- HP Modifiers
+(35380, 4409, 1), -- MP Modifiers
+(35380, 4410, 11), -- P. Atk. Modifiers
+(35380, 4411, 11), -- M. Atk. Modifiers
+(35380, 4412, 11), -- P. Def. Modifiers
+(35380, 4413, 11), -- M. Def. Modifiers
+(35380, 4414, 2), -- Armor Type
+(35380, 4415, 5), -- Weapon Type
+(35380, 4416, 6), -- Races
 -- Partisan Archer
 (35381, 4045, 1), -- Resist Full Magic Attack
-(35381, 4408, 1), -- HP Increase (1x)
-(35381, 4409, 1), -- MP Increase (1x)
-(35381, 4410, 11), -- Average P. Atk.
-(35381, 4411, 11), -- Average M. Atk.
-(35381, 4412, 11), -- Average P. Def.
-(35381, 4413, 11), -- Average M. Def.
-(35381, 4414, 2), -- Standard Type
-(35381, 4415, 9), -- Bows
-(35381, 4416, 6), -- Humanoids
+(35381, 4408, 1), -- HP Modifiers
+(35381, 4409, 1), -- MP Modifiers
+(35381, 4410, 11), -- P. Atk. Modifiers
+(35381, 4411, 11), -- M. Atk. Modifiers
+(35381, 4412, 11), -- P. Def. Modifiers
+(35381, 4413, 11), -- M. Def. Modifiers
+(35381, 4414, 2), -- Armor Type
+(35381, 4415, 9), -- Weapon Type
+(35381, 4416, 6), -- Races
 -- Brakel
 (35382, 4045, 1), -- Resist Full Magic Attack
-(35382, 4408, 1), -- HP Increase (1x)
-(35382, 4409, 1), -- MP Increase (1x)
-(35382, 4410, 11), -- Average P. Atk.
-(35382, 4411, 11), -- Average M. Atk.
-(35382, 4412, 11), -- Average P. Def.
-(35382, 4413, 11), -- Average M. Def.
-(35382, 4414, 2), -- Standard Type
-(35382, 4415, 3), -- One-handed Sword
-(35382, 4416, 6), -- Humanoids
+(35382, 4408, 1), -- HP Modifiers
+(35382, 4409, 1), -- MP Modifiers
+(35382, 4410, 11), -- P. Atk. Modifiers
+(35382, 4411, 11), -- M. Atk. Modifiers
+(35382, 4412, 11), -- P. Def. Modifiers
+(35382, 4413, 11), -- M. Def. Modifiers
+(35382, 4414, 2), -- Armor Type
+(35382, 4415, 3), -- Weapon Type
+(35382, 4416, 6), -- Races
 -- Tamutak
 (35383, 4045, 1), -- Resist Full Magic Attack
-(35383, 4408, 1), -- HP Increase (1x)
-(35383, 4409, 1), -- MP Increase (1x)
-(35383, 4410, 11), -- Average P. Atk.
-(35383, 4411, 11), -- Average M. Atk.
-(35383, 4412, 11), -- Average P. Def.
-(35383, 4413, 11), -- Average M. Def.
-(35383, 4414, 2), -- Standard Type
-(35383, 4415, 3), -- One-handed Sword
-(35383, 4416, 6), -- Humanoids
+(35383, 4408, 1), -- HP Modifiers
+(35383, 4409, 1), -- MP Modifiers
+(35383, 4410, 11), -- P. Atk. Modifiers
+(35383, 4411, 11), -- M. Atk. Modifiers
+(35383, 4412, 11), -- P. Def. Modifiers
+(35383, 4413, 11), -- M. Def. Modifiers
+(35383, 4414, 2), -- Armor Type
+(35383, 4415, 3), -- Weapon Type
+(35383, 4416, 6), -- Races
 -- Black
 (35384, 4045, 1), -- Resist Full Magic Attack
-(35384, 4408, 1), -- HP Increase (1x)
-(35384, 4409, 1), -- MP Increase (1x)
-(35384, 4410, 11), -- Average P. Atk.
-(35384, 4411, 11), -- Average M. Atk.
-(35384, 4412, 11), -- Average P. Def.
-(35384, 4413, 11), -- Average M. Def.
-(35384, 4414, 2), -- Standard Type
-(35384, 4415, 3), -- One-handed Sword
-(35384, 4416, 14), -- Humans
+(35384, 4408, 1), -- HP Modifiers
+(35384, 4409, 1), -- MP Modifiers
+(35384, 4410, 11), -- P. Atk. Modifiers
+(35384, 4411, 11), -- M. Atk. Modifiers
+(35384, 4412, 11), -- P. Def. Modifiers
+(35384, 4413, 11), -- M. Def. Modifiers
+(35384, 4414, 2), -- Armor Type
+(35384, 4415, 3), -- Weapon Type
+(35384, 4416, 14), -- Races
 -- Renny
 (35385, 4045, 1), -- Resist Full Magic Attack
-(35385, 4408, 1), -- HP Increase (1x)
-(35385, 4409, 1), -- MP Increase (1x)
-(35385, 4410, 11), -- Average P. Atk.
-(35385, 4411, 11), -- Average M. Atk.
-(35385, 4412, 11), -- Average P. Def.
-(35385, 4413, 11), -- Average M. Def.
-(35385, 4414, 2), -- Standard Type
-(35385, 4415, 3), -- One-handed Sword
-(35385, 4416, 14), -- Humans
+(35385, 4408, 1), -- HP Modifiers
+(35385, 4409, 1), -- MP Modifiers
+(35385, 4410, 11), -- P. Atk. Modifiers
+(35385, 4411, 11), -- M. Atk. Modifiers
+(35385, 4412, 11), -- P. Def. Modifiers
+(35385, 4413, 11), -- M. Def. Modifiers
+(35385, 4414, 2), -- Armor Type
+(35385, 4415, 3), -- Weapon Type
+(35385, 4416, 14), -- Races
 -- Boyer
 (35386, 4045, 1), -- Resist Full Magic Attack
-(35386, 4408, 1), -- HP Increase (1x)
-(35386, 4409, 1), -- MP Increase (1x)
-(35386, 4410, 11), -- Average P. Atk.
-(35386, 4411, 11), -- Average M. Atk.
-(35386, 4412, 11), -- Average P. Def.
-(35386, 4413, 11), -- Average M. Def.
-(35386, 4414, 2), -- Standard Type
-(35386, 4415, 3), -- One-handed Sword
-(35386, 4416, 14), -- Humans
+(35386, 4408, 1), -- HP Modifiers
+(35386, 4409, 1), -- MP Modifiers
+(35386, 4410, 11), -- P. Atk. Modifiers
+(35386, 4411, 11), -- M. Atk. Modifiers
+(35386, 4412, 11), -- P. Def. Modifiers
+(35386, 4413, 11), -- M. Def. Modifiers
+(35386, 4414, 2), -- Armor Type
+(35386, 4415, 3), -- Weapon Type
+(35386, 4416, 14), -- Races
 -- Baback
 (35387, 4045, 1), -- Resist Full Magic Attack
-(35387, 4408, 1), -- HP Increase (1x)
-(35387, 4409, 1), -- MP Increase (1x)
-(35387, 4410, 11), -- Average P. Atk.
-(35387, 4411, 11), -- Average M. Atk.
-(35387, 4412, 11), -- Average P. Def.
-(35387, 4413, 11), -- Average M. Def.
-(35387, 4414, 2), -- Standard Type
-(35387, 4415, 3), -- One-handed Sword
-(35387, 4416, 14), -- Humans
+(35387, 4408, 1), -- HP Modifiers
+(35387, 4409, 1), -- MP Modifiers
+(35387, 4410, 11), -- P. Atk. Modifiers
+(35387, 4411, 11), -- M. Atk. Modifiers
+(35387, 4412, 11), -- P. Def. Modifiers
+(35387, 4413, 11), -- M. Def. Modifiers
+(35387, 4414, 2), -- Armor Type
+(35387, 4415, 3), -- Weapon Type
+(35387, 4416, 14), -- Races
 -- Tim
 (35388, 4045, 1), -- Resist Full Magic Attack
-(35388, 4408, 1), -- HP Increase (1x)
-(35388, 4409, 1), -- MP Increase (1x)
-(35388, 4410, 11), -- Average P. Atk.
-(35388, 4411, 11), -- Average M. Atk.
-(35388, 4412, 11), -- Average P. Def.
-(35388, 4413, 11), -- Average M. Def.
-(35388, 4414, 2), -- Standard Type
-(35388, 4415, 3), -- One-handed Sword
-(35388, 4416, 14), -- Humans
+(35388, 4408, 1), -- HP Modifiers
+(35388, 4409, 1), -- MP Modifiers
+(35388, 4410, 11), -- P. Atk. Modifiers
+(35388, 4411, 11), -- M. Atk. Modifiers
+(35388, 4412, 11), -- P. Def. Modifiers
+(35388, 4413, 11), -- M. Def. Modifiers
+(35388, 4414, 2), -- Armor Type
+(35388, 4415, 3), -- Weapon Type
+(35388, 4416, 14), -- Races
 -- Loring
 (35389, 4045, 1), -- Resist Full Magic Attack
-(35389, 4408, 1), -- HP Increase (1x)
-(35389, 4409, 1), -- MP Increase (1x)
-(35389, 4410, 11), -- Average P. Atk.
-(35389, 4411, 11), -- Average M. Atk.
-(35389, 4412, 11), -- Average P. Def.
-(35389, 4413, 11), -- Average M. Def.
-(35389, 4414, 2), -- Standard Type
-(35389, 4415, 3), -- One-handed Sword
-(35389, 4416, 14), -- Humans
+(35389, 4408, 1), -- HP Modifiers
+(35389, 4409, 1), -- MP Modifiers
+(35389, 4410, 11), -- P. Atk. Modifiers
+(35389, 4411, 11), -- M. Atk. Modifiers
+(35389, 4412, 11), -- P. Def. Modifiers
+(35389, 4413, 11), -- M. Def. Modifiers
+(35389, 4414, 2), -- Armor Type
+(35389, 4415, 3), -- Weapon Type
+(35389, 4416, 14), -- Races
 -- Dillon
 (35390, 4045, 1), -- Resist Full Magic Attack
-(35390, 4408, 1), -- HP Increase (1x)
-(35390, 4409, 1), -- MP Increase (1x)
-(35390, 4410, 11), -- Average P. Atk.
-(35390, 4411, 11), -- Average M. Atk.
-(35390, 4412, 11), -- Average P. Def.
-(35390, 4413, 11), -- Average M. Def.
-(35390, 4414, 2), -- Standard Type
-(35390, 4415, 3), -- One-handed Sword
-(35390, 4416, 14), -- Humans
+(35390, 4408, 1), -- HP Modifiers
+(35390, 4409, 1), -- MP Modifiers
+(35390, 4410, 11), -- P. Atk. Modifiers
+(35390, 4411, 11), -- M. Atk. Modifiers
+(35390, 4412, 11), -- P. Def. Modifiers
+(35390, 4413, 11), -- M. Def. Modifiers
+(35390, 4414, 2), -- Armor Type
+(35390, 4415, 3), -- Weapon Type
+(35390, 4416, 14), -- Races
 -- Latif
 (35391, 4045, 1), -- Resist Full Magic Attack
-(35391, 4408, 1), -- HP Increase (1x)
-(35391, 4409, 1), -- MP Increase (1x)
-(35391, 4410, 11), -- Average P. Atk.
-(35391, 4411, 11), -- Average M. Atk.
-(35391, 4412, 11), -- Average P. Def.
-(35391, 4413, 11), -- Average M. Def.
-(35391, 4414, 2), -- Standard Type
-(35391, 4415, 3), -- One-handed Sword
-(35391, 4416, 14), -- Humans
+(35391, 4408, 1), -- HP Modifiers
+(35391, 4409, 1), -- MP Modifiers
+(35391, 4410, 11), -- P. Atk. Modifiers
+(35391, 4411, 11), -- M. Atk. Modifiers
+(35391, 4412, 11), -- P. Def. Modifiers
+(35391, 4413, 11), -- M. Def. Modifiers
+(35391, 4414, 2), -- Armor Type
+(35391, 4415, 3), -- Weapon Type
+(35391, 4416, 14), -- Races
 -- Bremmer
 (35392, 4045, 1), -- Resist Full Magic Attack
-(35392, 4408, 1), -- HP Increase (1x)
-(35392, 4409, 1), -- MP Increase (1x)
-(35392, 4410, 11), -- Average P. Atk.
-(35392, 4411, 11), -- Average M. Atk.
-(35392, 4412, 11), -- Average P. Def.
-(35392, 4413, 11), -- Average M. Def.
-(35392, 4414, 2), -- Standard Type
-(35392, 4415, 3), -- One-handed Sword
-(35392, 4416, 14), -- Humans
+(35392, 4408, 1), -- HP Modifiers
+(35392, 4409, 1), -- MP Modifiers
+(35392, 4410, 11), -- P. Atk. Modifiers
+(35392, 4411, 11), -- M. Atk. Modifiers
+(35392, 4412, 11), -- P. Def. Modifiers
+(35392, 4413, 11), -- M. Def. Modifiers
+(35392, 4414, 2), -- Armor Type
+(35392, 4415, 3), -- Weapon Type
+(35392, 4416, 14), -- Races
 -- Faolan
 (35393, 4045, 1), -- Resist Full Magic Attack
-(35393, 4408, 1), -- HP Increase (1x)
-(35393, 4409, 1), -- MP Increase (1x)
-(35393, 4410, 11), -- Average P. Atk.
-(35393, 4411, 11), -- Average M. Atk.
-(35393, 4412, 11), -- Average P. Def.
-(35393, 4413, 11), -- Average M. Def.
-(35393, 4414, 2), -- Standard Type
-(35393, 4415, 3), -- One-handed Sword
-(35393, 4416, 14), -- Humans
+(35393, 4408, 1), -- HP Modifiers
+(35393, 4409, 1), -- MP Modifiers
+(35393, 4410, 11), -- P. Atk. Modifiers
+(35393, 4411, 11), -- M. Atk. Modifiers
+(35393, 4412, 11), -- P. Def. Modifiers
+(35393, 4413, 11), -- M. Def. Modifiers
+(35393, 4414, 2), -- Armor Type
+(35393, 4415, 3), -- Weapon Type
+(35393, 4416, 14), -- Races
 -- Kalis
 (35394, 4045, 1), -- Resist Full Magic Attack
-(35394, 4408, 1), -- HP Increase (1x)
-(35394, 4409, 1), -- MP Increase (1x)
-(35394, 4410, 11), -- Average P. Atk.
-(35394, 4411, 11), -- Average M. Atk.
-(35394, 4412, 11), -- Average P. Def.
-(35394, 4413, 11), -- Average M. Def.
-(35394, 4414, 2), -- Standard Type
-(35394, 4415, 3), -- One-handed Sword
-(35394, 4416, 14), -- Humans
+(35394, 4408, 1), -- HP Modifiers
+(35394, 4409, 1), -- MP Modifiers
+(35394, 4410, 11), -- P. Atk. Modifiers
+(35394, 4411, 11), -- M. Atk. Modifiers
+(35394, 4412, 11), -- P. Def. Modifiers
+(35394, 4413, 11), -- M. Def. Modifiers
+(35394, 4414, 2), -- Armor Type
+(35394, 4415, 3), -- Weapon Type
+(35394, 4416, 14), -- Races
 -- Kogan
 (35395, 4045, 1), -- Resist Full Magic Attack
-(35395, 4408, 1), -- HP Increase (1x)
-(35395, 4409, 1), -- MP Increase (1x)
-(35395, 4410, 11), -- Average P. Atk.
-(35395, 4411, 11), -- Average M. Atk.
-(35395, 4412, 11), -- Average P. Def.
-(35395, 4413, 11), -- Average M. Def.
-(35395, 4414, 2), -- Standard Type
-(35395, 4415, 3), -- One-handed Sword
-(35395, 4416, 14), -- Humans
+(35395, 4408, 1), -- HP Modifiers
+(35395, 4409, 1), -- MP Modifiers
+(35395, 4410, 11), -- P. Atk. Modifiers
+(35395, 4411, 11), -- M. Atk. Modifiers
+(35395, 4412, 11), -- P. Def. Modifiers
+(35395, 4413, 11), -- M. Def. Modifiers
+(35395, 4414, 2), -- Armor Type
+(35395, 4415, 3), -- Weapon Type
+(35395, 4416, 14), -- Races
 -- Winker
 (35396, 4045, 1), -- Resist Full Magic Attack
-(35396, 4408, 1), -- HP Increase (1x)
-(35396, 4409, 1), -- MP Increase (1x)
-(35396, 4410, 11), -- Average P. Atk.
-(35396, 4411, 11), -- Average M. Atk.
-(35396, 4412, 11), -- Average P. Def.
-(35396, 4413, 11), -- Average M. Def.
-(35396, 4414, 2), -- Standard Type
-(35396, 4415, 3), -- One-handed Sword
-(35396, 4416, 14), -- Humans
+(35396, 4408, 1), -- HP Modifiers
+(35396, 4409, 1), -- MP Modifiers
+(35396, 4410, 11), -- P. Atk. Modifiers
+(35396, 4411, 11), -- M. Atk. Modifiers
+(35396, 4412, 11), -- P. Def. Modifiers
+(35396, 4413, 11), -- M. Def. Modifiers
+(35396, 4414, 2), -- Armor Type
+(35396, 4415, 3), -- Weapon Type
+(35396, 4416, 14), -- Races
 -- Merton
 (35397, 4045, 1), -- Resist Full Magic Attack
-(35397, 4408, 1), -- HP Increase (1x)
-(35397, 4409, 1), -- MP Increase (1x)
-(35397, 4410, 11), -- Average P. Atk.
-(35397, 4411, 11), -- Average M. Atk.
-(35397, 4412, 11), -- Average P. Def.
-(35397, 4413, 11), -- Average M. Def.
-(35397, 4414, 2), -- Standard Type
-(35397, 4415, 3), -- One-handed Sword
-(35397, 4416, 14), -- Humans
+(35397, 4408, 1), -- HP Modifiers
+(35397, 4409, 1), -- MP Modifiers
+(35397, 4410, 11), -- P. Atk. Modifiers
+(35397, 4411, 11), -- M. Atk. Modifiers
+(35397, 4412, 11), -- P. Def. Modifiers
+(35397, 4413, 11), -- M. Def. Modifiers
+(35397, 4414, 2), -- Armor Type
+(35397, 4415, 3), -- Weapon Type
+(35397, 4416, 14), -- Races
 -- Ruben
 (35398, 4045, 1), -- Resist Full Magic Attack
-(35398, 4408, 1), -- HP Increase (1x)
-(35398, 4409, 1), -- MP Increase (1x)
-(35398, 4410, 11), -- Average P. Atk.
-(35398, 4411, 11), -- Average M. Atk.
-(35398, 4412, 11), -- Average P. Def.
-(35398, 4413, 11), -- Average M. Def.
-(35398, 4414, 2), -- Standard Type
-(35398, 4415, 3), -- One-handed Sword
-(35398, 4416, 14), -- Humans
+(35398, 4408, 1), -- HP Modifiers
+(35398, 4409, 1), -- MP Modifiers
+(35398, 4410, 11), -- P. Atk. Modifiers
+(35398, 4411, 11), -- M. Atk. Modifiers
+(35398, 4412, 11), -- P. Def. Modifiers
+(35398, 4413, 11), -- M. Def. Modifiers
+(35398, 4414, 2), -- Armor Type
+(35398, 4415, 3), -- Weapon Type
+(35398, 4416, 14), -- Races
 -- Luce
 (35399, 4045, 1), -- Resist Full Magic Attack
-(35399, 4408, 1), -- HP Increase (1x)
-(35399, 4409, 1), -- MP Increase (1x)
-(35399, 4410, 11), -- Average P. Atk.
-(35399, 4411, 11), -- Average M. Atk.
-(35399, 4412, 11), -- Average P. Def.
-(35399, 4413, 11), -- Average M. Def.
-(35399, 4414, 2), -- Standard Type
-(35399, 4415, 3), -- One-handed Sword
-(35399, 4416, 14), -- Humans
+(35399, 4408, 1), -- HP Modifiers
+(35399, 4409, 1), -- MP Modifiers
+(35399, 4410, 11), -- P. Atk. Modifiers
+(35399, 4411, 11), -- M. Atk. Modifiers
+(35399, 4412, 11), -- P. Def. Modifiers
+(35399, 4413, 11), -- M. Def. Modifiers
+(35399, 4414, 2), -- Armor Type
+(35399, 4415, 3), -- Weapon Type
+(35399, 4416, 14), -- Races
 -- Horner
 (35400, 4045, 1), -- Resist Full Magic Attack
-(35400, 4408, 1), -- HP Increase (1x)
-(35400, 4409, 1), -- MP Increase (1x)
-(35400, 4410, 11), -- Average P. Atk.
-(35400, 4411, 11), -- Average M. Atk.
-(35400, 4412, 11), -- Average P. Def.
-(35400, 4413, 11), -- Average M. Def.
-(35400, 4414, 2), -- Standard Type
-(35400, 4415, 3), -- One-handed Sword
-(35400, 4416, 14), -- Humans
+(35400, 4408, 1), -- HP Modifiers
+(35400, 4409, 1), -- MP Modifiers
+(35400, 4410, 11), -- P. Atk. Modifiers
+(35400, 4411, 11), -- M. Atk. Modifiers
+(35400, 4412, 11), -- P. Def. Modifiers
+(35400, 4413, 11), -- M. Def. Modifiers
+(35400, 4414, 2), -- Armor Type
+(35400, 4415, 3), -- Weapon Type
+(35400, 4416, 14), -- Races
 -- Amiel
 (35401, 4045, 1), -- Resist Full Magic Attack
-(35401, 4408, 1), -- HP Increase (1x)
-(35401, 4409, 1), -- MP Increase (1x)
-(35401, 4410, 11), -- Average P. Atk.
-(35401, 4411, 11), -- Average M. Atk.
-(35401, 4412, 11), -- Average P. Def.
-(35401, 4413, 11), -- Average M. Def.
-(35401, 4414, 2), -- Standard Type
-(35401, 4415, 3), -- One-handed Sword
-(35401, 4416, 14), -- Humans
+(35401, 4408, 1), -- HP Modifiers
+(35401, 4409, 1), -- MP Modifiers
+(35401, 4410, 11), -- P. Atk. Modifiers
+(35401, 4411, 11), -- M. Atk. Modifiers
+(35401, 4412, 11), -- P. Def. Modifiers
+(35401, 4413, 11), -- M. Def. Modifiers
+(35401, 4414, 2), -- Armor Type
+(35401, 4415, 3), -- Weapon Type
+(35401, 4416, 14), -- Races
 -- Borna
 (35402, 4045, 1), -- Resist Full Magic Attack
-(35402, 4408, 1), -- HP Increase (1x)
-(35402, 4409, 1), -- MP Increase (1x)
-(35402, 4410, 11), -- Average P. Atk.
-(35402, 4411, 11), -- Average M. Atk.
-(35402, 4412, 11), -- Average P. Def.
-(35402, 4413, 11), -- Average M. Def.
-(35402, 4414, 2), -- Standard Type
-(35402, 4415, 3), -- One-handed Sword
-(35402, 4416, 14), -- Humans
+(35402, 4408, 1), -- HP Modifiers
+(35402, 4409, 1), -- MP Modifiers
+(35402, 4410, 11), -- P. Atk. Modifiers
+(35402, 4411, 11), -- M. Atk. Modifiers
+(35402, 4412, 11), -- P. Def. Modifiers
+(35402, 4413, 11), -- M. Def. Modifiers
+(35402, 4414, 2), -- Armor Type
+(35402, 4415, 3), -- Weapon Type
+(35402, 4416, 14), -- Races
 -- Ron
 (35403, 4045, 1), -- Resist Full Magic Attack
-(35403, 4408, 1), -- HP Increase (1x)
-(35403, 4409, 1), -- MP Increase (1x)
-(35403, 4410, 11), -- Average P. Atk.
-(35403, 4411, 11), -- Average M. Atk.
-(35403, 4412, 11), -- Average P. Def.
-(35403, 4413, 11), -- Average M. Def.
-(35403, 4414, 2), -- Standard Type
-(35403, 4415, 3), -- One-handed Sword
-(35403, 4416, 14), -- Humans
+(35403, 4408, 1), -- HP Modifiers
+(35403, 4409, 1), -- MP Modifiers
+(35403, 4410, 11), -- P. Atk. Modifiers
+(35403, 4411, 11), -- M. Atk. Modifiers
+(35403, 4412, 11), -- P. Def. Modifiers
+(35403, 4413, 11), -- M. Def. Modifiers
+(35403, 4414, 2), -- Armor Type
+(35403, 4415, 3), -- Weapon Type
+(35403, 4416, 14), -- Races
 -- Jamal
 (35404, 4045, 1), -- Resist Full Magic Attack
-(35404, 4408, 1), -- HP Increase (1x)
-(35404, 4409, 1), -- MP Increase (1x)
-(35404, 4410, 11), -- Average P. Atk.
-(35404, 4411, 11), -- Average M. Atk.
-(35404, 4412, 11), -- Average P. Def.
-(35404, 4413, 11), -- Average M. Def.
-(35404, 4414, 2), -- Standard Type
-(35404, 4415, 3), -- One-handed Sword
-(35404, 4416, 14), -- Humans
+(35404, 4408, 1), -- HP Modifiers
+(35404, 4409, 1), -- MP Modifiers
+(35404, 4410, 11), -- P. Atk. Modifiers
+(35404, 4411, 11), -- M. Atk. Modifiers
+(35404, 4412, 11), -- P. Def. Modifiers
+(35404, 4413, 11), -- M. Def. Modifiers
+(35404, 4414, 2), -- Armor Type
+(35404, 4415, 3), -- Weapon Type
+(35404, 4416, 14), -- Races
 -- Flynn
 (35405, 4045, 1), -- Resist Full Magic Attack
-(35405, 4408, 1), -- HP Increase (1x)
-(35405, 4409, 1), -- MP Increase (1x)
-(35405, 4410, 11), -- Average P. Atk.
-(35405, 4411, 11), -- Average M. Atk.
-(35405, 4412, 11), -- Average P. Def.
-(35405, 4413, 11), -- Average M. Def.
-(35405, 4414, 2), -- Standard Type
-(35405, 4415, 3), -- One-handed Sword
-(35405, 4416, 14), -- Humans
+(35405, 4408, 1), -- HP Modifiers
+(35405, 4409, 1), -- MP Modifiers
+(35405, 4410, 11), -- P. Atk. Modifiers
+(35405, 4411, 11), -- M. Atk. Modifiers
+(35405, 4412, 11), -- P. Def. Modifiers
+(35405, 4413, 11), -- M. Def. Modifiers
+(35405, 4414, 2), -- Armor Type
+(35405, 4415, 3), -- Weapon Type
+(35405, 4416, 14), -- Races
 -- Jabilo
 (35406, 4045, 1), -- Resist Full Magic Attack
-(35406, 4408, 1), -- HP Increase (1x)
-(35406, 4409, 1), -- MP Increase (1x)
-(35406, 4410, 11), -- Average P. Atk.
-(35406, 4411, 11), -- Average M. Atk.
-(35406, 4412, 11), -- Average P. Def.
-(35406, 4413, 11), -- Average M. Def.
-(35406, 4414, 2), -- Standard Type
-(35406, 4415, 3), -- One-handed Sword
-(35406, 4416, 14), -- Humans
+(35406, 4408, 1), -- HP Modifiers
+(35406, 4409, 1), -- MP Modifiers
+(35406, 4410, 11), -- P. Atk. Modifiers
+(35406, 4411, 11), -- M. Atk. Modifiers
+(35406, 4412, 11), -- P. Def. Modifiers
+(35406, 4413, 11), -- M. Def. Modifiers
+(35406, 4414, 2), -- Armor Type
+(35406, 4415, 3), -- Weapon Type
+(35406, 4416, 14), -- Races
 -- Seth
 (35407, 4045, 1), -- Resist Full Magic Attack
-(35407, 4408, 1), -- HP Increase (1x)
-(35407, 4409, 1), -- MP Increase (1x)
-(35407, 4410, 11), -- Average P. Atk.
-(35407, 4411, 11), -- Average M. Atk.
-(35407, 4412, 11), -- Average P. Def.
-(35407, 4413, 11), -- Average M. Def.
-(35407, 4414, 2), -- Standard Type
-(35407, 4415, 3), -- One-handed Sword
-(35407, 4416, 14), -- Humans
+(35407, 4408, 1), -- HP Modifiers
+(35407, 4409, 1), -- MP Modifiers
+(35407, 4410, 11), -- P. Atk. Modifiers
+(35407, 4411, 11), -- M. Atk. Modifiers
+(35407, 4412, 11), -- P. Def. Modifiers
+(35407, 4413, 11), -- M. Def. Modifiers
+(35407, 4414, 2), -- Armor Type
+(35407, 4415, 3), -- Weapon Type
+(35407, 4416, 14), -- Races
 -- Dietrich
 (35408, 4045, 1), -- Resist Full Magic Attack
-(35408, 4071, 3), -- Resist Bow/Crossbow Weapons
-(35408, 4085, 1), -- Critical Damage
+(35408, 4071, 3), -- Resist Archery
+(35408, 4085, 1), -- Critical Power
 (35408, 4086, 1), -- Critical Chance
 (35408, 4095, 1), -- Damage Shield
-(35408, 4275, 3), -- Holy Attack Weak Point
+(35408, 4275, 3), -- Sacred Attack Weak Point
 (35408, 4278, 1), -- Dark Attack
-(35408, 4408, 11), -- HP Increase (3x)
-(35408, 4409, 1), -- MP Increase (1x)
-(35408, 4410, 16), -- Very Strong P. Atk.
-(35408, 4411, 11), -- Average M. Atk.
-(35408, 4412, 11), -- Average P. Def.
-(35408, 4413, 11), -- Average M. Def.
-(35408, 4414, 2), -- Standard Type
-(35408, 4415, 3), -- One-handed Sword
-(35408, 4416, 1), -- Undead
+(35408, 4408, 11), -- HP Modifiers
+(35408, 4409, 1), -- MP Modifiers
+(35408, 4410, 16), -- P. Atk. Modifiers
+(35408, 4411, 11), -- M. Atk. Modifiers
+(35408, 4412, 11), -- P. Def. Modifiers
+(35408, 4413, 11), -- M. Def. Modifiers
+(35408, 4414, 2), -- Armor Type
+(35408, 4415, 3), -- Weapon Type
+(35408, 4416, 1), -- Races
 -- Mikhail
 (35409, 4045, 1), -- Resist Full Magic Attack
-(35409, 4071, 3), -- Resist Bow/Crossbow Weapons
-(35409, 4085, 1), -- Critical Damage
+(35409, 4071, 3), -- Resist Archery
+(35409, 4085, 1), -- Critical Power
 (35409, 4086, 1), -- Critical Chance
 (35409, 4095, 1), -- Damage Shield
-(35409, 4275, 3), -- Holy Attack Weak Point
+(35409, 4275, 3), -- Sacred Attack Weak Point
 (35409, 4278, 1), -- Dark Attack
-(35409, 4408, 11), -- HP Increase (3x)
-(35409, 4409, 1), -- MP Increase (1x)
-(35409, 4410, 16), -- Very Strong P. Atk.
-(35409, 4411, 11), -- Average M. Atk.
-(35409, 4412, 11), -- Average P. Def.
-(35409, 4413, 11), -- Average M. Def.
-(35409, 4414, 2), -- Standard Type
-(35409, 4415, 3), -- One-handed Sword
-(35409, 4416, 1), -- Undead
+(35409, 4408, 11), -- HP Modifiers
+(35409, 4409, 1), -- MP Modifiers
+(35409, 4410, 16), -- P. Atk. Modifiers
+(35409, 4411, 11), -- M. Atk. Modifiers
+(35409, 4412, 11), -- P. Def. Modifiers
+(35409, 4413, 11), -- M. Def. Modifiers
+(35409, 4414, 2), -- Armor Type
+(35409, 4415, 3), -- Weapon Type
+(35409, 4416, 1), -- Races
 -- Gustav
 (35410, 4045, 1), -- Resist Full Magic Attack
-(35410, 4071, 3), -- Resist Bow/Crossbow Weapons
-(35410, 4085, 1), -- Critical Damage
+(35410, 4071, 3), -- Resist Archery
+(35410, 4085, 1), -- Critical Power
 (35410, 4086, 1), -- Critical Chance
 (35410, 4095, 1), -- Damage Shield
-(35410, 4275, 3), -- Holy Attack Weak Point
+(35410, 4275, 3), -- Sacred Attack Weak Point
 (35410, 4278, 1), -- Dark Attack
-(35410, 4408, 1), -- HP Increase (1x)
-(35410, 4409, 1), -- MP Increase (1x)
-(35410, 4410, 11), -- Average P. Atk.
-(35410, 4411, 11), -- Average M. Atk.
-(35410, 4412, 11), -- Average P. Def.
-(35410, 4413, 11), -- Average M. Def.
-(35410, 4414, 2), -- Standard Type
-(35410, 4415, 3), -- One-handed Sword
-(35410, 4416, 1), -- Undead
+(35410, 4408, 1), -- HP Modifiers
+(35410, 4409, 1), -- MP Modifiers
+(35410, 4410, 11), -- P. Atk. Modifiers
+(35410, 4411, 11), -- M. Atk. Modifiers
+(35410, 4412, 11), -- P. Def. Modifiers
+(35410, 4413, 11), -- M. Def. Modifiers
+(35410, 4414, 2), -- Armor Type
+(35410, 4415, 3), -- Weapon Type
+(35410, 4416, 1), -- Races
 (35410, 4435, 5), -- Greater Resist Stun
 (35410, 4438, 5), -- Greater Resist Sleep
 (35410, 4440, 5), -- Greater Resist Paralysis
 -- Doom Servant
-(35411, 4034, 6), -- Ice Bolt
+(35411, 4034, 6), -- Decrease Speed
 (35411, 4045, 1), -- Resist Full Magic Attack
-(35411, 4085, 1), -- Critical Damage
-(35411, 4275, 3), -- Holy Attack Weak Point
+(35411, 4085, 1), -- Critical Power
+(35411, 4275, 3), -- Sacred Attack Weak Point
 (35411, 4278, 1), -- Dark Attack
-(35411, 4408, 11), -- HP Increase (3x)
-(35411, 4409, 1), -- MP Increase (1x)
-(35411, 4410, 18), -- Extremely Strong P. Atk.
-(35411, 4411, 11), -- Average M. Atk.
-(35411, 4412, 11), -- Average P. Def.
-(35411, 4413, 11), -- Average M. Def.
-(35411, 4414, 2), -- Standard Type
-(35411, 4415, 5), -- Blunt Weapons
-(35411, 4416, 1), -- Undead
+(35411, 4408, 11), -- HP Modifiers
+(35411, 4409, 1), -- MP Modifiers
+(35411, 4410, 18), -- P. Atk. Modifiers
+(35411, 4411, 11), -- M. Atk. Modifiers
+(35411, 4412, 11), -- P. Def. Modifiers
+(35411, 4413, 11), -- M. Def. Modifiers
+(35411, 4414, 2), -- Armor Type
+(35411, 4415, 5), -- Weapon Type
+(35411, 4416, 1), -- Races
 -- Doom Guard
 (35412, 4045, 1), -- Resist Full Magic Attack
-(35412, 4085, 1), -- Critical Damage
-(35412, 4275, 3), -- Holy Attack Weak Point
+(35412, 4085, 1), -- Critical Power
+(35412, 4275, 3), -- Sacred Attack Weak Point
 (35412, 4278, 1), -- Dark Attack
-(35412, 4408, 11), -- HP Increase (3x)
-(35412, 4409, 1), -- MP Increase (1x)
-(35412, 4410, 18), -- Extremely Strong P. Atk.
-(35412, 4411, 11), -- Average M. Atk.
-(35412, 4412, 11), -- Average P. Def.
-(35412, 4413, 11), -- Average M. Def.
-(35412, 4414, 2), -- Standard Type
-(35412, 4415, 5), -- Blunt Weapons
-(35412, 4416, 1), -- Undead
+(35412, 4408, 11), -- HP Modifiers
+(35412, 4409, 1), -- MP Modifiers
+(35412, 4410, 18), -- P. Atk. Modifiers
+(35412, 4411, 11), -- M. Atk. Modifiers
+(35412, 4412, 11), -- P. Def. Modifiers
+(35412, 4413, 11), -- M. Def. Modifiers
+(35412, 4414, 2), -- Armor Type
+(35412, 4415, 5), -- Weapon Type
+(35412, 4416, 1), -- Races
 -- Doom Archer
 (35413, 4045, 1), -- Resist Full Magic Attack
-(35413, 4074, 2), -- Haste
-(35413, 4085, 1), -- Critical Damage
-(35413, 4275, 3), -- Holy Attack Weak Point
+(35413, 4074, 2), -- NPC Haste
+(35413, 4085, 1), -- Critical Power
+(35413, 4275, 3), -- Sacred Attack Weak Point
 (35413, 4278, 1), -- Dark Attack
-(35413, 4408, 11), -- HP Increase (3x)
-(35413, 4409, 1), -- MP Increase (1x)
-(35413, 4410, 19), -- Extremely Strong P. Atk.
-(35413, 4411, 11), -- Average M. Atk.
-(35413, 4412, 11), -- Average P. Def.
-(35413, 4413, 11), -- Average M. Def.
-(35413, 4414, 2), -- Standard Type
-(35413, 4415, 9), -- Bows
-(35413, 4416, 1), -- Undead
+(35413, 4408, 11), -- HP Modifiers
+(35413, 4409, 1), -- MP Modifiers
+(35413, 4410, 19), -- P. Atk. Modifiers
+(35413, 4411, 11), -- M. Atk. Modifiers
+(35413, 4412, 11), -- P. Def. Modifiers
+(35413, 4413, 11), -- M. Def. Modifiers
+(35413, 4414, 2), -- Armor Type
+(35413, 4415, 9), -- Weapon Type
+(35413, 4416, 1), -- Races
 -- Doom Trooper 
 (35414, 4045, 1), -- Resist Full Magic Attack
-(35414, 4275, 3), -- Holy Attack Weak Point
+(35414, 4275, 3), -- Sacred Attack Weak Point
 (35414, 4278, 1), -- Dark Attack
-(35414, 4408, 11), -- HP Increase (3x)
-(35414, 4409, 1), -- MP Increase (1x)
-(35414, 4410, 19), -- Extremely Strong P. Atk.
-(35414, 4411, 11), -- Average M. Atk.
-(35414, 4412, 11), -- Average P. Def.
-(35414, 4413, 11), -- Average M. Def.
-(35414, 4414, 2), -- Standard Type
-(35414, 4415, 11), -- Spears
-(35414, 4416, 1), -- Undead
+(35414, 4408, 11), -- HP Modifiers
+(35414, 4409, 1), -- MP Modifiers
+(35414, 4410, 19), -- P. Atk. Modifiers
+(35414, 4411, 11), -- M. Atk. Modifiers
+(35414, 4412, 11), -- P. Def. Modifiers
+(35414, 4413, 11), -- M. Def. Modifiers
+(35414, 4414, 2), -- Armor Type
+(35414, 4415, 11), -- Weapon Type
+(35414, 4416, 1), -- Races
 -- Doom Warrior
-(35415, 4030, 3), -- Might
+(35415, 4030, 3), -- NPC Clan Might
 (35415, 4045, 1), -- Resist Full Magic Attack
-(35415, 4071, 3), -- Resist Bow/Crossbow Weapons
-(35415, 4085, 1), -- Critical Damage
-(35415, 4275, 3), -- Holy Attack Weak Point
+(35415, 4071, 3), -- Resist Archery
+(35415, 4085, 1), -- Critical Power
+(35415, 4275, 3), -- Sacred Attack Weak Point
 (35415, 4278, 1), -- Dark Attack
-(35415, 4408, 11), -- HP Increase (3x)
-(35415, 4409, 1), -- MP Increase (1x)
-(35415, 4410, 18), -- Extremely Strong P. Atk.
-(35415, 4411, 11), -- Average M. Atk.
-(35415, 4412, 11), -- Average P. Def.
-(35415, 4413, 11), -- Average M. Def.
-(35415, 4414, 2), -- Standard Type
-(35415, 4415, 7), -- Daggers
-(35415, 4416, 1), -- Undead
+(35415, 4408, 11), -- HP Modifiers
+(35415, 4409, 1), -- MP Modifiers
+(35415, 4410, 18), -- P. Atk. Modifiers
+(35415, 4411, 11), -- M. Atk. Modifiers
+(35415, 4412, 11), -- P. Def. Modifiers
+(35415, 4413, 11), -- M. Def. Modifiers
+(35415, 4414, 2), -- Armor Type
+(35415, 4415, 7), -- Weapon Type
+(35415, 4416, 1), -- Races
 -- Doom Knight
 (35416, 4045, 1), -- Resist Full Magic Attack
-(35416, 4071, 3), -- Resist Bow/Crossbow Weapons
-(35416, 4085, 1), -- Critical Damage
-(35416, 4275, 3), -- Holy Attack Weak Point
+(35416, 4071, 3), -- Resist Archery
+(35416, 4085, 1), -- Critical Power
+(35416, 4275, 3), -- Sacred Attack Weak Point
 (35416, 4278, 1), -- Dark Attack
-(35416, 4408, 11), -- HP Increase (3x)
-(35416, 4409, 1), -- MP Increase (1x)
-(35416, 4410, 17), -- Very Strong P. Atk.
-(35416, 4411, 11), -- Average M. Atk.
-(35416, 4412, 11), -- Average P. Def.
-(35416, 4413, 11), -- Average M. Def.
-(35416, 4414, 2), -- Standard Type
-(35416, 4415, 3), -- One-handed Sword
-(35416, 4416, 1), -- Undead
+(35416, 4408, 11), -- HP Modifiers
+(35416, 4409, 1), -- MP Modifiers
+(35416, 4410, 17), -- P. Atk. Modifiers
+(35416, 4411, 11), -- M. Atk. Modifiers
+(35416, 4412, 11), -- P. Def. Modifiers
+(35416, 4413, 11), -- M. Def. Modifiers
+(35416, 4414, 2), -- Armor Type
+(35416, 4415, 3), -- Weapon Type
+(35416, 4416, 1), -- Races
 -- Doorman of Hell
 (35417, 4045, 1), -- Resist Full Magic Attack
-(35417, 4408, 1), -- HP Increase (1x)
-(35417, 4409, 1), -- MP Increase (1x)
-(35417, 4410, 11), -- Average P. Atk.
-(35417, 4411, 11), -- Average M. Atk.
-(35417, 4412, 11), -- Average P. Def.
-(35417, 4413, 11), -- Average M. Def.
-(35417, 4414, 2), -- Standard Type
-(35417, 4415, 3), -- One-handed Sword
-(35417, 4416, 1), -- Undead
+(35417, 4408, 1), -- HP Modifiers
+(35417, 4409, 1), -- MP Modifiers
+(35417, 4410, 11), -- P. Atk. Modifiers
+(35417, 4411, 11), -- M. Atk. Modifiers
+(35417, 4412, 11), -- P. Def. Modifiers
+(35417, 4413, 11), -- M. Def. Modifiers
+(35417, 4414, 2), -- Armor Type
+(35417, 4415, 3), -- Weapon Type
+(35417, 4416, 1); -- Races
+
+INSERT INTO `npcskills` VALUES
 -- Doorman of Hell
 (35418, 4045, 1), -- Resist Full Magic Attack
-(35418, 4408, 1), -- HP Increase (1x)
-(35418, 4409, 1), -- MP Increase (1x)
-(35418, 4410, 11), -- Average P. Atk.
-(35418, 4411, 11), -- Average M. Atk.
-(35418, 4412, 11), -- Average P. Def.
-(35418, 4413, 11), -- Average M. Def.
-(35418, 4414, 2), -- Standard Type
-(35418, 4415, 3), -- One-handed Sword
-(35418, 4416, 1), -- Undead
+(35418, 4408, 1), -- HP Modifiers
+(35418, 4409, 1), -- MP Modifiers
+(35418, 4410, 11), -- P. Atk. Modifiers
+(35418, 4411, 11), -- M. Atk. Modifiers
+(35418, 4412, 11), -- P. Def. Modifiers
+(35418, 4413, 11), -- M. Def. Modifiers
+(35418, 4414, 2), -- Armor Type
+(35418, 4415, 3), -- Weapon Type
+(35418, 4416, 1), -- Races
 -- Hephaeston
 (35419, 4045, 1), -- Resist Full Magic Attack
-(35419, 4408, 1), -- HP Increase (1x)
-(35419, 4409, 1), -- MP Increase (1x)
-(35419, 4410, 11), -- Average P. Atk.
-(35419, 4411, 11), -- Average M. Atk.
-(35419, 4412, 11), -- Average P. Def.
-(35419, 4413, 11), -- Average M. Def.
-(35419, 4414, 2), -- Standard Type
-(35419, 4415, 3), -- One-handed Sword
-(35419, 4416, 1), -- Undead
+(35419, 4408, 1), -- HP Modifiers
+(35419, 4409, 1), -- MP Modifiers
+(35419, 4410, 11), -- P. Atk. Modifiers
+(35419, 4411, 11), -- M. Atk. Modifiers
+(35419, 4412, 11), -- P. Def. Modifiers
+(35419, 4413, 11), -- M. Def. Modifiers
+(35419, 4414, 2), -- Armor Type
+(35419, 4415, 3), -- Weapon Type
+(35419, 4416, 1), -- Races
 -- Loken
 (35420, 4045, 1), -- Resist Full Magic Attack
-(35420, 4408, 1), -- HP Increase (1x)
-(35420, 4409, 1), -- MP Increase (1x)
-(35420, 4410, 11), -- Average P. Atk.
-(35420, 4411, 11), -- Average M. Atk.
-(35420, 4412, 11), -- Average P. Def.
-(35420, 4413, 11), -- Average M. Def.
-(35420, 4414, 2), -- Standard Type
-(35420, 4415, 3), -- One-handed Sword
-(35420, 4416, 1), -- Undead
+(35420, 4408, 1), -- HP Modifiers
+(35420, 4409, 1), -- MP Modifiers
+(35420, 4410, 11), -- P. Atk. Modifiers
+(35420, 4411, 11), -- M. Atk. Modifiers
+(35420, 4412, 11), -- P. Def. Modifiers
+(35420, 4413, 11), -- M. Def. Modifiers
+(35420, 4414, 2), -- Armor Type
+(35420, 4415, 3), -- Weapon Type
+(35420, 4416, 1), -- Races
 -- Biggerstaff
 (35421, 4045, 1), -- Resist Full Magic Attack
-(35421, 4408, 1), -- HP Increase (1x)
-(35421, 4409, 1), -- MP Increase (1x)
-(35421, 4410, 11), -- Average P. Atk.
-(35421, 4411, 11), -- Average M. Atk.
-(35421, 4412, 11), -- Average P. Def.
-(35421, 4413, 11), -- Average M. Def.
-(35421, 4414, 2), -- Standard Type
-(35421, 4415, 3), -- One-handed Sword
-(35421, 4416, 1), -- Undead
+(35421, 4408, 1), -- HP Modifiers
+(35421, 4409, 1), -- MP Modifiers
+(35421, 4410, 11), -- P. Atk. Modifiers
+(35421, 4411, 11), -- M. Atk. Modifiers
+(35421, 4412, 11), -- P. Def. Modifiers
+(35421, 4413, 11), -- M. Def. Modifiers
+(35421, 4414, 2), -- Armor Type
+(35421, 4415, 3), -- Weapon Type
+(35421, 4416, 1), -- Races
 -- Flag of Winner
 (35422, 4045, 1), -- Resist Full Magic Attack
-(35422, 4408, 1), -- HP Increase (1x)
-(35422, 4409, 1), -- MP Increase (1x)
-(35422, 4410, 11), -- Average P. Atk.
-(35422, 4411, 11), -- Average M. Atk.
-(35422, 4412, 11), -- Average P. Def.
-(35422, 4413, 11), -- Average M. Def.
-(35422, 4414, 2), -- Standard Type
-(35422, 4415, 3), -- One-handed Sword
-(35422, 4416, 19), -- Others
+(35422, 4408, 1), -- HP Modifiers
+(35422, 4409, 1), -- MP Modifiers
+(35422, 4410, 11), -- P. Atk. Modifiers
+(35422, 4411, 11), -- M. Atk. Modifiers
+(35422, 4412, 11), -- P. Def. Modifiers
+(35422, 4413, 11), -- M. Def. Modifiers
+(35422, 4414, 2), -- Armor Type
+(35422, 4415, 3), -- Weapon Type
+(35422, 4416, 19), -- Races
 -- Red Flag
 (35423, 4045, 1), -- Resist Full Magic Attack
-(35423, 4390, 1), -- Mystic Immunity
-(35423, 4408, 1), -- HP Increase (1x)
-(35423, 4409, 1), -- MP Increase (1x)
-(35423, 4410, 11), -- Average P. Atk.
-(35423, 4411, 11), -- Average M. Atk.
-(35423, 4412, 11), -- Average P. Def.
-(35423, 4413, 11), -- Average M. Def.
-(35423, 4414, 2), -- Standard Type
-(35423, 4415, 3), -- One-handed Sword
-(35423, 4416, 19), -- Others
+(35423, 4390, 1), -- NPC Abnormal Immunity
+(35423, 4408, 1), -- HP Modifiers
+(35423, 4409, 1), -- MP Modifiers
+(35423, 4410, 11), -- P. Atk. Modifiers
+(35423, 4411, 11), -- M. Atk. Modifiers
+(35423, 4412, 11), -- P. Def. Modifiers
+(35423, 4413, 11), -- M. Def. Modifiers
+(35423, 4414, 2), -- Armor Type
+(35423, 4415, 3), -- Weapon Type
+(35423, 4416, 19), -- Races
 -- Yellow Flag
 (35424, 4045, 1), -- Resist Full Magic Attack
-(35424, 4390, 1), -- Mystic Immunity
-(35424, 4408, 1), -- HP Increase (1x)
-(35424, 4409, 1), -- MP Increase (1x)
-(35424, 4410, 11), -- Average P. Atk.
-(35424, 4411, 11), -- Average M. Atk.
-(35424, 4412, 11), -- Average P. Def.
-(35424, 4413, 11), -- Average M. Def.
-(35424, 4414, 2), -- Standard Type
-(35424, 4415, 3), -- One-handed Sword
-(35424, 4416, 19), -- Others
+(35424, 4390, 1), -- NPC Abnormal Immunity
+(35424, 4408, 1), -- HP Modifiers
+(35424, 4409, 1), -- MP Modifiers
+(35424, 4410, 11), -- P. Atk. Modifiers
+(35424, 4411, 11), -- M. Atk. Modifiers
+(35424, 4412, 11), -- P. Def. Modifiers
+(35424, 4413, 11), -- M. Def. Modifiers
+(35424, 4414, 2), -- Armor Type
+(35424, 4415, 3), -- Weapon Type
+(35424, 4416, 19), -- Races
 -- Green Flag
 (35425, 4045, 1), -- Resist Full Magic Attack
-(35425, 4390, 1), -- Mystic Immunity
-(35425, 4408, 1), -- HP Increase (1x)
-(35425, 4409, 1), -- MP Increase (1x)
-(35425, 4410, 11), -- Average P. Atk.
-(35425, 4411, 11), -- Average M. Atk.
-(35425, 4412, 11), -- Average P. Def.
-(35425, 4413, 11), -- Average M. Def.
-(35425, 4414, 2), -- Standard Type
-(35425, 4415, 3), -- One-handed Sword
-(35425, 4416, 19), -- Others
+(35425, 4390, 1), -- NPC Abnormal Immunity
+(35425, 4408, 1), -- HP Modifiers
+(35425, 4409, 1), -- MP Modifiers
+(35425, 4410, 11), -- P. Atk. Modifiers
+(35425, 4411, 11), -- M. Atk. Modifiers
+(35425, 4412, 11), -- P. Def. Modifiers
+(35425, 4413, 11), -- M. Def. Modifiers
+(35425, 4414, 2), -- Armor Type
+(35425, 4415, 3), -- Weapon Type
+(35425, 4416, 19), -- Races
 -- Blue Flag
 (35426, 4045, 1), -- Resist Full Magic Attack
-(35426, 4390, 1), -- Mystic Immunity
-(35426, 4408, 1), -- HP Increase (1x)
-(35426, 4409, 1), -- MP Increase (1x)
-(35426, 4410, 11), -- Average P. Atk.
-(35426, 4411, 11), -- Average M. Atk.
-(35426, 4412, 11), -- Average P. Def.
-(35426, 4413, 11), -- Average M. Def.
-(35426, 4414, 2), -- Standard Type
-(35426, 4415, 3), -- One-handed Sword
-(35426, 4416, 19), -- Others
+(35426, 4390, 1), -- NPC Abnormal Immunity
+(35426, 4408, 1), -- HP Modifiers
+(35426, 4409, 1), -- MP Modifiers
+(35426, 4410, 11), -- P. Atk. Modifiers
+(35426, 4411, 11), -- M. Atk. Modifiers
+(35426, 4412, 11), -- P. Def. Modifiers
+(35426, 4413, 11), -- M. Def. Modifiers
+(35426, 4414, 2), -- Armor Type
+(35426, 4415, 3), -- Weapon Type
+(35426, 4416, 19), -- Races
 -- Purple Flag
 (35427, 4045, 1), -- Resist Full Magic Attack
-(35427, 4390, 1), -- Mystic Immunity
-(35427, 4408, 1), -- HP Increase (1x)
-(35427, 4409, 1), -- MP Increase (1x)
-(35427, 4410, 11), -- Average P. Atk.
-(35427, 4411, 11), -- Average M. Atk.
-(35427, 4412, 11), -- Average P. Def.
-(35427, 4413, 11), -- Average M. Def.
-(35427, 4414, 2), -- Standard Type
-(35427, 4415, 3), -- One-handed Sword
-(35427, 4416, 19), -- Others
+(35427, 4390, 1), -- NPC Abnormal Immunity
+(35427, 4408, 1), -- HP Modifiers
+(35427, 4409, 1), -- MP Modifiers
+(35427, 4410, 11), -- P. Atk. Modifiers
+(35427, 4411, 11), -- M. Atk. Modifiers
+(35427, 4412, 11), -- P. Def. Modifiers
+(35427, 4413, 11), -- M. Def. Modifiers
+(35427, 4414, 2), -- Armor Type
+(35427, 4415, 3), -- Weapon Type
+(35427, 4416, 19), -- Races
 -- Oel Mahum Berserker
 (35428, 4226, 1), -- Ban Heal
-(35428, 4408, 14), -- HP Increase (6x)
-(35428, 4409, 1), -- MP Increase (1x)
-(35428, 4410, 11), -- Average P. Atk.
-(35428, 4411, 11), -- Average M. Atk.
-(35428, 4412, 11), -- Average P. Def.
-(35428, 4413, 11), -- Average M. Def.
-(35428, 4414, 2), -- Standard Type
-(35428, 4415, 3), -- One-handed Sword
-(35428, 4416, 6), -- Humanoids
+(35428, 4408, 14), -- HP Modifiers
+(35428, 4409, 1), -- MP Modifiers
+(35428, 4410, 11), -- P. Atk. Modifiers
+(35428, 4411, 11), -- M. Atk. Modifiers
+(35428, 4412, 11), -- P. Def. Modifiers
+(35428, 4413, 11), -- M. Def. Modifiers
+(35428, 4414, 2), -- Armor Type
+(35428, 4415, 3), -- Weapon Type
+(35428, 4416, 6), -- Races
 -- Oel Mahum Scout
-(35429, 4225, 1), -- Resist Stun Attacks
-(35429, 4408, 14), -- HP Increase (6x)
-(35429, 4409, 1), -- MP Increase (1x)
-(35429, 4410, 11), -- Average P. Atk.
-(35429, 4411, 11), -- Average M. Atk.
-(35429, 4412, 11), -- Average P. Def.
-(35429, 4413, 11), -- Average M. Def.
-(35429, 4414, 2), -- Standard Type
-(35429, 4415, 3), -- One-handed Sword
-(35429, 4416, 6), -- Humanoids
+(35429, 4225, 1), -- Resist Shock
+(35429, 4408, 14), -- HP Modifiers
+(35429, 4409, 1), -- MP Modifiers
+(35429, 4410, 11), -- P. Atk. Modifiers
+(35429, 4411, 11), -- M. Atk. Modifiers
+(35429, 4412, 11), -- P. Def. Modifiers
+(35429, 4413, 11), -- M. Def. Modifiers
+(35429, 4414, 2), -- Armor Type
+(35429, 4415, 3), -- Weapon Type
+(35429, 4416, 6), -- Races
 -- Oel Mahum Leader
-(35430, 4408, 14), -- HP Increase (6x)
-(35430, 4409, 1), -- MP Increase (1x)
-(35430, 4410, 11), -- Average P. Atk.
-(35430, 4411, 11), -- Average M. Atk.
-(35430, 4412, 11), -- Average P. Def.
-(35430, 4413, 11), -- Average M. Def.
-(35430, 4414, 2), -- Standard Type
-(35430, 4415, 3), -- One-handed Sword
-(35430, 4416, 6), -- Humanoids
+(35430, 4408, 14), -- HP Modifiers
+(35430, 4409, 1), -- MP Modifiers
+(35430, 4410, 11), -- P. Atk. Modifiers
+(35430, 4411, 11), -- M. Atk. Modifiers
+(35430, 4412, 11), -- P. Def. Modifiers
+(35430, 4413, 11), -- M. Def. Modifiers
+(35430, 4414, 2), -- Armor Type
+(35430, 4415, 3), -- Weapon Type
+(35430, 4416, 6), -- Races
 -- Oel Mahum Cleric
-(35431, 4408, 14), -- HP Increase (6x)
-(35431, 4409, 1), -- MP Increase (1x)
-(35431, 4410, 11), -- Average P. Atk.
-(35431, 4411, 11), -- Average M. Atk.
-(35431, 4412, 11), -- Average P. Def.
-(35431, 4413, 11), -- Average M. Def.
-(35431, 4414, 2), -- Standard Type
-(35431, 4415, 3), -- One-handed Sword
-(35431, 4416, 6), -- Humanoids
+(35431, 4408, 14), -- HP Modifiers
+(35431, 4409, 1), -- MP Modifiers
+(35431, 4410, 11), -- P. Atk. Modifiers
+(35431, 4411, 11), -- M. Atk. Modifiers
+(35431, 4412, 11), -- P. Def. Modifiers
+(35431, 4413, 11), -- M. Def. Modifiers
+(35431, 4414, 2), -- Armor Type
+(35431, 4415, 3), -- Weapon Type
+(35431, 4416, 6), -- Races
 -- Oel Mahum Thief
-(35432, 4071, 3), -- Resist Bow/Crossbow Weapons
+(35432, 4071, 3), -- Resist Archery
 (35432, 4093, 1), -- Evasion
-(35432, 4408, 14), -- HP Increase (6x)
-(35432, 4409, 1), -- MP Increase (1x)
-(35432, 4410, 11), -- Average P. Atk.
-(35432, 4411, 11), -- Average M. Atk.
-(35432, 4412, 11), -- Average P. Def.
-(35432, 4413, 11), -- Average M. Def.
-(35432, 4414, 2), -- Standard Type
-(35432, 4415, 3), -- One-handed Sword
-(35432, 4416, 6), -- Humanoids
+(35432, 4408, 14), -- HP Modifiers
+(35432, 4409, 1), -- MP Modifiers
+(35432, 4410, 11), -- P. Atk. Modifiers
+(35432, 4411, 11), -- M. Atk. Modifiers
+(35432, 4412, 11), -- P. Def. Modifiers
+(35432, 4413, 11), -- M. Def. Modifiers
+(35432, 4414, 2), -- Armor Type
+(35432, 4415, 3), -- Weapon Type
+(35432, 4416, 6), -- Races
 -- Inner Doorman
 (35433, 4045, 1), -- Resist Full Magic Attack
-(35433, 4408, 1), -- HP Increase (1x)
-(35433, 4409, 1), -- MP Increase (1x)
-(35433, 4410, 11), -- Average P. Atk.
-(35433, 4411, 11), -- Average M. Atk.
-(35433, 4412, 11), -- Average P. Def.
-(35433, 4413, 11), -- Average M. Def.
-(35433, 4414, 2), -- Standard Type
-(35433, 4415, 3), -- One-handed Sword
-(35433, 4416, 6), -- Humanoids
+(35433, 4408, 1), -- HP Modifiers
+(35433, 4409, 1), -- MP Modifiers
+(35433, 4410, 11), -- P. Atk. Modifiers
+(35433, 4411, 11), -- M. Atk. Modifiers
+(35433, 4412, 11), -- P. Def. Modifiers
+(35433, 4413, 11), -- M. Def. Modifiers
+(35433, 4414, 2), -- Armor Type
+(35433, 4415, 3), -- Weapon Type
+(35433, 4416, 6), -- Races
 -- Inner Doorman
 (35434, 4045, 1), -- Resist Full Magic Attack
-(35434, 4408, 1), -- HP Increase (1x)
-(35434, 4409, 1), -- MP Increase (1x)
-(35434, 4410, 11), -- Average P. Atk.
-(35434, 4411, 11), -- Average M. Atk.
-(35434, 4412, 11), -- Average P. Def.
-(35434, 4413, 11), -- Average M. Def.
-(35434, 4414, 2), -- Standard Type
-(35434, 4415, 3), -- One-handed Sword
-(35434, 4416, 6), -- Humanoids
+(35434, 4408, 1), -- HP Modifiers
+(35434, 4409, 1), -- MP Modifiers
+(35434, 4410, 11), -- P. Atk. Modifiers
+(35434, 4411, 11), -- M. Atk. Modifiers
+(35434, 4412, 11), -- P. Def. Modifiers
+(35434, 4413, 11), -- M. Def. Modifiers
+(35434, 4414, 2), -- Armor Type
+(35434, 4415, 3), -- Weapon Type
+(35434, 4416, 6), -- Races
 -- Outer Doorman
 (35435, 4045, 1), -- Resist Full Magic Attack
-(35435, 4408, 1), -- HP Increase (1x)
-(35435, 4409, 1), -- MP Increase (1x)
-(35435, 4410, 11), -- Average P. Atk.
-(35435, 4411, 11), -- Average M. Atk.
-(35435, 4412, 11), -- Average P. Def.
-(35435, 4413, 11), -- Average M. Def.
-(35435, 4414, 2), -- Standard Type
-(35435, 4415, 3), -- One-handed Sword
-(35435, 4416, 6), -- Humanoids
+(35435, 4408, 1), -- HP Modifiers
+(35435, 4409, 1), -- MP Modifiers
+(35435, 4410, 11), -- P. Atk. Modifiers
+(35435, 4411, 11), -- M. Atk. Modifiers
+(35435, 4412, 11), -- P. Def. Modifiers
+(35435, 4413, 11), -- M. Def. Modifiers
+(35435, 4414, 2), -- Armor Type
+(35435, 4415, 3), -- Weapon Type
+(35435, 4416, 6), -- Races
 -- Outer Doorman
 (35436, 4045, 1), -- Resist Full Magic Attack
-(35436, 4408, 1), -- HP Increase (1x)
-(35436, 4409, 1), -- MP Increase (1x)
-(35436, 4410, 11), -- Average P. Atk.
-(35436, 4411, 11), -- Average M. Atk.
-(35436, 4412, 11), -- Average P. Def.
-(35436, 4413, 11), -- Average M. Def.
-(35436, 4414, 2), -- Standard Type
-(35436, 4415, 3), -- One-handed Sword
-(35436, 4416, 6), -- Humanoids
+(35436, 4408, 1), -- HP Modifiers
+(35436, 4409, 1), -- MP Modifiers
+(35436, 4410, 11), -- P. Atk. Modifiers
+(35436, 4411, 11), -- M. Atk. Modifiers
+(35436, 4412, 11), -- P. Def. Modifiers
+(35436, 4413, 11), -- M. Def. Modifiers
+(35436, 4414, 2), -- Armor Type
+(35436, 4415, 3), -- Weapon Type
+(35436, 4416, 6), -- Races
 -- Herald
 (35437, 4045, 1), -- Resist Full Magic Attack
-(35437, 4408, 1), -- HP Increase (1x)
-(35437, 4409, 1), -- MP Increase (1x)
-(35437, 4410, 11), -- Average P. Atk.
-(35437, 4411, 11), -- Average M. Atk.
-(35437, 4412, 11), -- Average P. Def.
-(35437, 4413, 11), -- Average M. Def.
-(35437, 4414, 2), -- Standard Type
-(35437, 4415, 3), -- One-handed Sword
-(35437, 4416, 6), -- Humanoids
+(35437, 4408, 1), -- HP Modifiers
+(35437, 4409, 1), -- MP Modifiers
+(35437, 4410, 11), -- P. Atk. Modifiers
+(35437, 4411, 11), -- M. Atk. Modifiers
+(35437, 4412, 11), -- P. Def. Modifiers
+(35437, 4413, 11), -- M. Def. Modifiers
+(35437, 4414, 2), -- Armor Type
+(35437, 4415, 3), -- Weapon Type
+(35437, 4416, 6), -- Races
 -- Chamberlain
 (35438, 4045, 1), -- Resist Full Magic Attack
-(35438, 4408, 1), -- HP Increase (1x)
-(35438, 4409, 1), -- MP Increase (1x)
-(35438, 4410, 11), -- Average P. Atk.
-(35438, 4411, 11), -- Average M. Atk.
-(35438, 4412, 11), -- Average P. Def.
-(35438, 4413, 11), -- Average M. Def.
-(35438, 4414, 2), -- Standard Type
-(35438, 4415, 3), -- One-handed Sword
-(35438, 4416, 6), -- Humanoids
+(35438, 4408, 1), -- HP Modifiers
+(35438, 4409, 1), -- MP Modifiers
+(35438, 4410, 11), -- P. Atk. Modifiers
+(35438, 4411, 11), -- M. Atk. Modifiers
+(35438, 4412, 11), -- P. Def. Modifiers
+(35438, 4413, 11), -- M. Def. Modifiers
+(35438, 4414, 2), -- Armor Type
+(35438, 4415, 3), -- Weapon Type
+(35438, 4416, 6), -- Races
 -- Carey
 (35439, 4045, 1), -- Resist Full Magic Attack
-(35439, 4408, 1), -- HP Increase (1x)
-(35439, 4409, 1), -- MP Increase (1x)
-(35439, 4410, 11), -- Average P. Atk.
-(35439, 4411, 11), -- Average M. Atk.
-(35439, 4412, 11), -- Average P. Def.
-(35439, 4413, 11), -- Average M. Def.
-(35439, 4414, 2), -- Standard Type
-(35439, 4415, 3), -- One-handed Sword
-(35439, 4416, 14), -- Humans
+(35439, 4408, 1), -- HP Modifiers
+(35439, 4409, 1), -- MP Modifiers
+(35439, 4410, 11), -- P. Atk. Modifiers
+(35439, 4411, 11), -- M. Atk. Modifiers
+(35439, 4412, 11), -- P. Def. Modifiers
+(35439, 4413, 11), -- M. Def. Modifiers
+(35439, 4414, 2), -- Armor Type
+(35439, 4415, 3), -- Weapon Type
+(35439, 4416, 14), -- Races
 -- Daniel
 (35440, 4045, 1), -- Resist Full Magic Attack
-(35440, 4408, 1), -- HP Increase (1x)
-(35440, 4409, 1), -- MP Increase (1x)
-(35440, 4410, 11), -- Average P. Atk.
-(35440, 4411, 11), -- Average M. Atk.
-(35440, 4412, 11), -- Average P. Def.
-(35440, 4413, 11), -- Average M. Def.
-(35440, 4414, 2), -- Standard Type
-(35440, 4415, 3), -- One-handed Sword
-(35440, 4416, 14), -- Humans
+(35440, 4408, 1), -- HP Modifiers
+(35440, 4409, 1), -- MP Modifiers
+(35440, 4410, 11), -- P. Atk. Modifiers
+(35440, 4411, 11), -- M. Atk. Modifiers
+(35440, 4412, 11), -- P. Def. Modifiers
+(35440, 4413, 11), -- M. Def. Modifiers
+(35440, 4414, 2), -- Armor Type
+(35440, 4415, 3), -- Weapon Type
+(35440, 4416, 14), -- Races
 -- Dianne
 (35441, 4045, 1), -- Resist Full Magic Attack
-(35441, 4408, 1), -- HP Increase (1x)
-(35441, 4409, 1), -- MP Increase (1x)
-(35441, 4410, 11), -- Average P. Atk.
-(35441, 4411, 11), -- Average M. Atk.
-(35441, 4412, 11), -- Average P. Def.
-(35441, 4413, 11), -- Average M. Def.
-(35441, 4414, 2), -- Standard Type
-(35441, 4415, 3), -- One-handed Sword
-(35441, 4416, 14), -- Humans
+(35441, 4408, 1), -- HP Modifiers
+(35441, 4409, 1), -- MP Modifiers
+(35441, 4410, 11), -- P. Atk. Modifiers
+(35441, 4411, 11), -- M. Atk. Modifiers
+(35441, 4412, 11), -- P. Def. Modifiers
+(35441, 4413, 11), -- M. Def. Modifiers
+(35441, 4414, 2), -- Armor Type
+(35441, 4415, 3), -- Weapon Type
+(35441, 4416, 14), -- Races
 -- Jacques
 (35442, 4045, 1), -- Resist Full Magic Attack
-(35442, 4408, 1), -- HP Increase (1x)
-(35442, 4409, 1), -- MP Increase (1x)
-(35442, 4410, 11), -- Average P. Atk.
-(35442, 4411, 11), -- Average M. Atk.
-(35442, 4412, 11), -- Average P. Def.
-(35442, 4413, 11), -- Average M. Def.
-(35442, 4414, 2), -- Standard Type
-(35442, 4415, 3), -- One-handed Sword
-(35442, 4416, 14), -- Humans
+(35442, 4408, 1), -- HP Modifiers
+(35442, 4409, 1), -- MP Modifiers
+(35442, 4410, 11), -- P. Atk. Modifiers
+(35442, 4411, 11), -- M. Atk. Modifiers
+(35442, 4412, 11), -- P. Def. Modifiers
+(35442, 4413, 11), -- M. Def. Modifiers
+(35442, 4414, 2), -- Armor Type
+(35442, 4415, 3), -- Weapon Type
+(35442, 4416, 14), -- Races
 -- Crissy
 (35443, 4045, 1), -- Resist Full Magic Attack
-(35443, 4408, 1), -- HP Increase (1x)
-(35443, 4409, 1), -- MP Increase (1x)
-(35443, 4410, 11), -- Average P. Atk.
-(35443, 4411, 11), -- Average M. Atk.
-(35443, 4412, 11), -- Average P. Def.
-(35443, 4413, 11), -- Average M. Def.
-(35443, 4414, 2), -- Standard Type
-(35443, 4415, 3), -- One-handed Sword
-(35443, 4416, 14), -- Humans
+(35443, 4408, 1), -- HP Modifiers
+(35443, 4409, 1), -- MP Modifiers
+(35443, 4410, 11), -- P. Atk. Modifiers
+(35443, 4411, 11), -- M. Atk. Modifiers
+(35443, 4412, 11), -- P. Def. Modifiers
+(35443, 4413, 11), -- M. Def. Modifiers
+(35443, 4414, 2), -- Armor Type
+(35443, 4415, 3), -- Weapon Type
+(35443, 4416, 14), -- Races
 -- Joff
 (35444, 4045, 1), -- Resist Full Magic Attack
-(35444, 4408, 1), -- HP Increase (1x)
-(35444, 4409, 1), -- MP Increase (1x)
-(35444, 4410, 11), -- Average P. Atk.
-(35444, 4411, 11), -- Average M. Atk.
-(35444, 4412, 11), -- Average P. Def.
-(35444, 4413, 11), -- Average M. Def.
-(35444, 4414, 2), -- Standard Type
-(35444, 4415, 3), -- One-handed Sword
-(35444, 4416, 14), -- Humans
+(35444, 4408, 1), -- HP Modifiers
+(35444, 4409, 1), -- MP Modifiers
+(35444, 4410, 11), -- P. Atk. Modifiers
+(35444, 4411, 11), -- M. Atk. Modifiers
+(35444, 4412, 11), -- P. Def. Modifiers
+(35444, 4413, 11), -- M. Def. Modifiers
+(35444, 4414, 2), -- Armor Type
+(35444, 4415, 3), -- Weapon Type
+(35444, 4416, 14), -- Races
 -- Albert
 (35445, 4045, 1), -- Resist Full Magic Attack
-(35445, 4408, 1), -- HP Increase (1x)
-(35445, 4409, 1), -- MP Increase (1x)
-(35445, 4410, 11), -- Average P. Atk.
-(35445, 4411, 11), -- Average M. Atk.
-(35445, 4412, 11), -- Average P. Def.
-(35445, 4413, 11), -- Average M. Def.
-(35445, 4414, 2), -- Standard Type
-(35445, 4415, 3), -- One-handed Sword
-(35445, 4416, 14), -- Humans
+(35445, 4408, 1), -- HP Modifiers
+(35445, 4409, 1), -- MP Modifiers
+(35445, 4410, 11), -- P. Atk. Modifiers
+(35445, 4411, 11), -- M. Atk. Modifiers
+(35445, 4412, 11), -- P. Def. Modifiers
+(35445, 4413, 11), -- M. Def. Modifiers
+(35445, 4414, 2), -- Armor Type
+(35445, 4415, 3), -- Weapon Type
+(35445, 4416, 14), -- Races
 -- Niels
 (35446, 4045, 1), -- Resist Full Magic Attack
-(35446, 4408, 1), -- HP Increase (1x)
-(35446, 4409, 1), -- MP Increase (1x)
-(35446, 4410, 11), -- Average P. Atk.
-(35446, 4411, 11), -- Average M. Atk.
-(35446, 4412, 11), -- Average P. Def.
-(35446, 4413, 11), -- Average M. Def.
-(35446, 4414, 2), -- Standard Type
-(35446, 4415, 3), -- One-handed Sword
-(35446, 4416, 14), -- Humans
+(35446, 4408, 1), -- HP Modifiers
+(35446, 4409, 1), -- MP Modifiers
+(35446, 4410, 11), -- P. Atk. Modifiers
+(35446, 4411, 11), -- M. Atk. Modifiers
+(35446, 4412, 11), -- P. Def. Modifiers
+(35446, 4413, 11), -- M. Def. Modifiers
+(35446, 4414, 2), -- Armor Type
+(35446, 4415, 3), -- Weapon Type
+(35446, 4416, 14), -- Races
 -- Korgen
 (35447, 4045, 1), -- Resist Full Magic Attack
-(35447, 4408, 1), -- HP Increase (1x)
-(35447, 4409, 1), -- MP Increase (1x)
-(35447, 4410, 11), -- Average P. Atk.
-(35447, 4411, 11), -- Average M. Atk.
-(35447, 4412, 11), -- Average P. Def.
-(35447, 4413, 11), -- Average M. Def.
-(35447, 4414, 2), -- Standard Type
-(35447, 4415, 3), -- One-handed Sword
-(35447, 4416, 14), -- Humans
+(35447, 4408, 1), -- HP Modifiers
+(35447, 4409, 1), -- MP Modifiers
+(35447, 4410, 11), -- P. Atk. Modifiers
+(35447, 4411, 11), -- M. Atk. Modifiers
+(35447, 4412, 11), -- P. Def. Modifiers
+(35447, 4413, 11), -- M. Def. Modifiers
+(35447, 4414, 2), -- Armor Type
+(35447, 4415, 3), -- Weapon Type
+(35447, 4416, 14), -- Races
 -- Rudy
 (35448, 4045, 1), -- Resist Full Magic Attack
-(35448, 4408, 1), -- HP Increase (1x)
-(35448, 4409, 1), -- MP Increase (1x)
-(35448, 4410, 11), -- Average P. Atk.
-(35448, 4411, 11), -- Average M. Atk.
-(35448, 4412, 11), -- Average P. Def.
-(35448, 4413, 11), -- Average M. Def.
-(35448, 4414, 2), -- Standard Type
-(35448, 4415, 3), -- One-handed Sword
-(35448, 4416, 14), -- Humans
+(35448, 4408, 1), -- HP Modifiers
+(35448, 4409, 1), -- MP Modifiers
+(35448, 4410, 11), -- P. Atk. Modifiers
+(35448, 4411, 11), -- M. Atk. Modifiers
+(35448, 4412, 11), -- P. Def. Modifiers
+(35448, 4413, 11), -- M. Def. Modifiers
+(35448, 4414, 2), -- Armor Type
+(35448, 4415, 3), -- Weapon Type
+(35448, 4416, 14), -- Races
 -- DiMaggio
 (35449, 4045, 1), -- Resist Full Magic Attack
-(35449, 4408, 1), -- HP Increase (1x)
-(35449, 4409, 1), -- MP Increase (1x)
-(35449, 4410, 11), -- Average P. Atk.
-(35449, 4411, 11), -- Average M. Atk.
-(35449, 4412, 11), -- Average P. Def.
-(35449, 4413, 11), -- Average M. Def.
-(35449, 4414, 2), -- Standard Type
-(35449, 4415, 3), -- One-handed Sword
-(35449, 4416, 14), -- Humans
+(35449, 4408, 1), -- HP Modifiers
+(35449, 4409, 1), -- MP Modifiers
+(35449, 4410, 11), -- P. Atk. Modifiers
+(35449, 4411, 11), -- M. Atk. Modifiers
+(35449, 4412, 11), -- P. Def. Modifiers
+(35449, 4413, 11), -- M. Def. Modifiers
+(35449, 4414, 2), -- Armor Type
+(35449, 4415, 3), -- Weapon Type
+(35449, 4416, 14), -- Races
 -- Gellar
 (35450, 4045, 1), -- Resist Full Magic Attack
-(35450, 4408, 1), -- HP Increase (1x)
-(35450, 4409, 1), -- MP Increase (1x)
-(35450, 4410, 11), -- Average P. Atk.
-(35450, 4411, 11), -- Average M. Atk.
-(35450, 4412, 11), -- Average P. Def.
-(35450, 4413, 11), -- Average M. Def.
-(35450, 4414, 2), -- Standard Type
-(35450, 4415, 3), -- One-handed Sword
-(35450, 4416, 14), -- Humans
+(35450, 4408, 1), -- HP Modifiers
+(35450, 4409, 1), -- MP Modifiers
+(35450, 4410, 11), -- P. Atk. Modifiers
+(35450, 4411, 11), -- M. Atk. Modifiers
+(35450, 4412, 11), -- P. Def. Modifiers
+(35450, 4413, 11), -- M. Def. Modifiers
+(35450, 4414, 2), -- Armor Type
+(35450, 4415, 3), -- Weapon Type
+(35450, 4416, 14), -- Races
 -- Emma
 (35451, 4045, 1), -- Resist Full Magic Attack
-(35451, 4408, 1), -- HP Increase (1x)
-(35451, 4409, 1), -- MP Increase (1x)
-(35451, 4410, 11), -- Average P. Atk.
-(35451, 4411, 11), -- Average M. Atk.
-(35451, 4412, 11), -- Average P. Def.
-(35451, 4413, 11), -- Average M. Def.
-(35451, 4414, 2), -- Standard Type
-(35451, 4415, 3), -- One-handed Sword
-(35451, 4416, 14), -- Humans
+(35451, 4408, 1), -- HP Modifiers
+(35451, 4409, 1), -- MP Modifiers
+(35451, 4410, 11), -- P. Atk. Modifiers
+(35451, 4411, 11), -- M. Atk. Modifiers
+(35451, 4412, 11), -- P. Def. Modifiers
+(35451, 4413, 11), -- M. Def. Modifiers
+(35451, 4414, 2), -- Armor Type
+(35451, 4415, 3), -- Weapon Type
+(35451, 4416, 14), -- Races
 -- Theobolt
 (35452, 4045, 1), -- Resist Full Magic Attack
-(35452, 4408, 1), -- HP Increase (1x)
-(35452, 4409, 1), -- MP Increase (1x)
-(35452, 4410, 11), -- Average P. Atk.
-(35452, 4411, 11), -- Average M. Atk.
-(35452, 4412, 11), -- Average P. Def.
-(35452, 4413, 11), -- Average M. Def.
-(35452, 4414, 2), -- Standard Type
-(35452, 4415, 3), -- One-handed Sword
-(35452, 4416, 14), -- Humans
+(35452, 4408, 1), -- HP Modifiers
+(35452, 4409, 1), -- MP Modifiers
+(35452, 4410, 11), -- P. Atk. Modifiers
+(35452, 4411, 11), -- M. Atk. Modifiers
+(35452, 4412, 11), -- P. Def. Modifiers
+(35452, 4413, 11), -- M. Def. Modifiers
+(35452, 4414, 2), -- Armor Type
+(35452, 4415, 3), -- Weapon Type
+(35452, 4416, 14), -- Races
 -- Adrienne
 (35453, 4045, 1), -- Resist Full Magic Attack
-(35453, 4408, 1), -- HP Increase (1x)
-(35453, 4409, 1), -- MP Increase (1x)
-(35453, 4410, 11), -- Average P. Atk.
-(35453, 4411, 11), -- Average M. Atk.
-(35453, 4412, 11), -- Average P. Def.
-(35453, 4413, 11), -- Average M. Def.
-(35453, 4414, 2), -- Standard Type
-(35453, 4415, 3); -- One-handed Sword
-
-INSERT INTO `npcskills` VALUES
-(35453, 4416, 14), -- Humans
+(35453, 4408, 1), -- HP Modifiers
+(35453, 4409, 1), -- MP Modifiers
+(35453, 4410, 11), -- P. Atk. Modifiers
+(35453, 4411, 11), -- M. Atk. Modifiers
+(35453, 4412, 11), -- P. Def. Modifiers
+(35453, 4413, 11), -- M. Def. Modifiers
+(35453, 4414, 2), -- Armor Type
+(35453, 4415, 3), -- Weapon Type
+(35453, 4416, 14), -- Races
 -- Rosconne
 (35454, 4045, 1), -- Resist Full Magic Attack
-(35454, 4408, 1), -- HP Increase (1x)
-(35454, 4409, 1), -- MP Increase (1x)
-(35454, 4410, 11), -- Average P. Atk.
-(35454, 4411, 11), -- Average M. Atk.
-(35454, 4412, 11), -- Average P. Def.
-(35454, 4413, 11), -- Average M. Def.
-(35454, 4414, 2), -- Standard Type
-(35454, 4415, 3), -- One-handed Sword
-(35454, 4416, 14), -- Humans
+(35454, 4408, 1), -- HP Modifiers
+(35454, 4409, 1), -- MP Modifiers
+(35454, 4410, 11), -- P. Atk. Modifiers
+(35454, 4411, 11), -- M. Atk. Modifiers
+(35454, 4412, 11), -- P. Def. Modifiers
+(35454, 4413, 11), -- M. Def. Modifiers
+(35454, 4414, 2), -- Armor Type
+(35454, 4415, 3), -- Weapon Type
+(35454, 4416, 14), -- Races
 -- Bianca
 (35455, 4045, 1), -- Resist Full Magic Attack
-(35455, 4408, 1), -- HP Increase (1x)
-(35455, 4409, 1), -- MP Increase (1x)
-(35455, 4410, 11), -- Average P. Atk.
-(35455, 4411, 11), -- Average M. Atk.
-(35455, 4412, 11), -- Average P. Def.
-(35455, 4413, 11), -- Average M. Def.
-(35455, 4414, 2), -- Standard Type
-(35455, 4415, 3), -- One-handed Sword
-(35455, 4416, 14), -- Humans
+(35455, 4408, 1), -- HP Modifiers
+(35455, 4409, 1), -- MP Modifiers
+(35455, 4410, 11), -- P. Atk. Modifiers
+(35455, 4411, 11), -- M. Atk. Modifiers
+(35455, 4412, 11), -- P. Def. Modifiers
+(35455, 4413, 11), -- M. Def. Modifiers
+(35455, 4414, 2), -- Armor Type
+(35455, 4415, 3), -- Weapon Type
+(35455, 4416, 14), -- Races
 -- Stewart
 (35456, 4045, 1), -- Resist Full Magic Attack
-(35456, 4408, 1), -- HP Increase (1x)
-(35456, 4409, 1), -- MP Increase (1x)
-(35456, 4410, 11), -- Average P. Atk.
-(35456, 4411, 11), -- Average M. Atk.
-(35456, 4412, 11), -- Average P. Def.
-(35456, 4413, 11), -- Average M. Def.
-(35456, 4414, 2), -- Standard Type
-(35456, 4415, 3), -- One-handed Sword
-(35456, 4416, 14), -- Humans
+(35456, 4408, 1), -- HP Modifiers
+(35456, 4409, 1), -- MP Modifiers
+(35456, 4410, 11), -- P. Atk. Modifiers
+(35456, 4411, 11), -- M. Atk. Modifiers
+(35456, 4412, 11), -- P. Def. Modifiers
+(35456, 4413, 11), -- M. Def. Modifiers
+(35456, 4414, 2), -- Armor Type
+(35456, 4415, 3), -- Weapon Type
+(35456, 4416, 14), -- Races
 -- Gladys
 (35457, 4045, 1), -- Resist Full Magic Attack
-(35457, 4408, 1), -- HP Increase (1x)
-(35457, 4409, 1), -- MP Increase (1x)
-(35457, 4410, 11), -- Average P. Atk.
-(35457, 4411, 11), -- Average M. Atk.
-(35457, 4412, 11), -- Average P. Def.
-(35457, 4413, 11), -- Average M. Def.
-(35457, 4414, 2), -- Standard Type
-(35457, 4415, 3), -- One-handed Sword
-(35457, 4416, 14), -- Humans
+(35457, 4408, 1), -- HP Modifiers
+(35457, 4409, 1), -- MP Modifiers
+(35457, 4410, 11), -- P. Atk. Modifiers
+(35457, 4411, 11), -- M. Atk. Modifiers
+(35457, 4412, 11), -- P. Def. Modifiers
+(35457, 4413, 11), -- M. Def. Modifiers
+(35457, 4414, 2), -- Armor Type
+(35457, 4415, 3), -- Weapon Type
+(35457, 4416, 14), -- Races
 -- Theron
 (35458, 4045, 1), -- Resist Full Magic Attack
-(35458, 4408, 1), -- HP Increase (1x)
-(35458, 4409, 1), -- MP Increase (1x)
-(35458, 4410, 11), -- Average P. Atk.
-(35458, 4411, 11), -- Average M. Atk.
-(35458, 4412, 11), -- Average P. Def.
-(35458, 4413, 11), -- Average M. Def.
-(35458, 4414, 2), -- Standard Type
-(35458, 4415, 3), -- One-handed Sword
-(35458, 4416, 14), -- Humans
+(35458, 4408, 1), -- HP Modifiers
+(35458, 4409, 1), -- MP Modifiers
+(35458, 4410, 11), -- P. Atk. Modifiers
+(35458, 4411, 11), -- M. Atk. Modifiers
+(35458, 4412, 11), -- P. Def. Modifiers
+(35458, 4413, 11), -- M. Def. Modifiers
+(35458, 4414, 2), -- Armor Type
+(35458, 4415, 3), -- Weapon Type
+(35458, 4416, 14), -- Races
 -- Regina
 (35459, 4045, 1), -- Resist Full Magic Attack
-(35459, 4408, 1), -- HP Increase (1x)
-(35459, 4409, 1), -- MP Increase (1x)
-(35459, 4410, 11), -- Average P. Atk.
-(35459, 4411, 11), -- Average M. Atk.
-(35459, 4412, 11), -- Average P. Def.
-(35459, 4413, 11), -- Average M. Def.
-(35459, 4414, 2), -- Standard Type
-(35459, 4415, 3), -- One-handed Sword
-(35459, 4416, 14), -- Humans
+(35459, 4408, 1), -- HP Modifiers
+(35459, 4409, 1), -- MP Modifiers
+(35459, 4410, 11), -- P. Atk. Modifiers
+(35459, 4411, 11), -- M. Atk. Modifiers
+(35459, 4412, 11), -- P. Def. Modifiers
+(35459, 4413, 11), -- M. Def. Modifiers
+(35459, 4414, 2), -- Armor Type
+(35459, 4415, 3), -- Weapon Type
+(35459, 4416, 14), -- Races
 -- Trey
 (35460, 4045, 1), -- Resist Full Magic Attack
-(35460, 4408, 1), -- HP Increase (1x)
-(35460, 4409, 1), -- MP Increase (1x)
-(35460, 4410, 11), -- Average P. Atk.
-(35460, 4411, 11), -- Average M. Atk.
-(35460, 4412, 11), -- Average P. Def.
-(35460, 4413, 11), -- Average M. Def.
-(35460, 4414, 2), -- Standard Type
-(35460, 4415, 3), -- One-handed Sword
-(35460, 4416, 14), -- Humans
+(35460, 4408, 1), -- HP Modifiers
+(35460, 4409, 1), -- MP Modifiers
+(35460, 4410, 11), -- P. Atk. Modifiers
+(35460, 4411, 11), -- M. Atk. Modifiers
+(35460, 4412, 11), -- P. Def. Modifiers
+(35460, 4413, 11), -- M. Def. Modifiers
+(35460, 4414, 2), -- Armor Type
+(35460, 4415, 3), -- Weapon Type
+(35460, 4416, 14), -- Races
 -- Aida
 (35461, 4045, 1), -- Resist Full Magic Attack
-(35461, 4408, 1), -- HP Increase (1x)
-(35461, 4409, 1), -- MP Increase (1x)
-(35461, 4410, 11), -- Average P. Atk.
-(35461, 4411, 11), -- Average M. Atk.
-(35461, 4412, 11), -- Average P. Def.
-(35461, 4413, 11), -- Average M. Def.
-(35461, 4414, 2), -- Standard Type
-(35461, 4415, 3), -- One-handed Sword
-(35461, 4416, 14), -- Humans
+(35461, 4408, 1), -- HP Modifiers
+(35461, 4409, 1), -- MP Modifiers
+(35461, 4410, 11), -- P. Atk. Modifiers
+(35461, 4411, 11), -- M. Atk. Modifiers
+(35461, 4412, 11), -- P. Def. Modifiers
+(35461, 4413, 11), -- M. Def. Modifiers
+(35461, 4414, 2), -- Armor Type
+(35461, 4415, 3), -- Weapon Type
+(35461, 4416, 14), -- Races
 -- Kalmer
 (35462, 4045, 1), -- Resist Full Magic Attack
-(35462, 4408, 1), -- HP Increase (1x)
-(35462, 4409, 1), -- MP Increase (1x)
-(35462, 4410, 11), -- Average P. Atk.
-(35462, 4411, 11), -- Average M. Atk.
-(35462, 4412, 11), -- Average P. Def.
-(35462, 4413, 11), -- Average M. Def.
-(35462, 4414, 2), -- Standard Type
-(35462, 4415, 3), -- One-handed Sword
-(35462, 4416, 14), -- Humans
+(35462, 4408, 1), -- HP Modifiers
+(35462, 4409, 1), -- MP Modifiers
+(35462, 4410, 11), -- P. Atk. Modifiers
+(35462, 4411, 11), -- M. Atk. Modifiers
+(35462, 4412, 11), -- P. Def. Modifiers
+(35462, 4413, 11), -- M. Def. Modifiers
+(35462, 4414, 2), -- Armor Type
+(35462, 4415, 3), -- Weapon Type
+(35462, 4416, 14), -- Races
 -- Helga
 (35463, 4045, 1), -- Resist Full Magic Attack
-(35463, 4408, 1), -- HP Increase (1x)
-(35463, 4409, 1), -- MP Increase (1x)
-(35463, 4410, 11), -- Average P. Atk.
-(35463, 4411, 11), -- Average M. Atk.
-(35463, 4412, 11), -- Average P. Def.
-(35463, 4413, 11), -- Average M. Def.
-(35463, 4414, 2), -- Standard Type
-(35463, 4415, 3), -- One-handed Sword
-(35463, 4416, 14), -- Humans
+(35463, 4408, 1), -- HP Modifiers
+(35463, 4409, 1), -- MP Modifiers
+(35463, 4410, 11), -- P. Atk. Modifiers
+(35463, 4411, 11), -- M. Atk. Modifiers
+(35463, 4412, 11), -- P. Def. Modifiers
+(35463, 4413, 11), -- M. Def. Modifiers
+(35463, 4414, 2), -- Armor Type
+(35463, 4415, 3), -- Weapon Type
+(35463, 4416, 14), -- Races
 -- Volfrem
 (35464, 4045, 1), -- Resist Full Magic Attack
-(35464, 4408, 1), -- HP Increase (1x)
-(35464, 4409, 1), -- MP Increase (1x)
-(35464, 4410, 11), -- Average P. Atk.
-(35464, 4411, 11), -- Average M. Atk.
-(35464, 4412, 11), -- Average P. Def.
-(35464, 4413, 11), -- Average M. Def.
-(35464, 4414, 2), -- Standard Type
-(35464, 4415, 3), -- One-handed Sword
-(35464, 4416, 14), -- Humans
+(35464, 4408, 1), -- HP Modifiers
+(35464, 4409, 1), -- MP Modifiers
+(35464, 4410, 11), -- P. Atk. Modifiers
+(35464, 4411, 11), -- M. Atk. Modifiers
+(35464, 4412, 11), -- P. Def. Modifiers
+(35464, 4413, 11), -- M. Def. Modifiers
+(35464, 4414, 2), -- Armor Type
+(35464, 4415, 3), -- Weapon Type
+(35464, 4416, 14), -- Races
 -- Millicent
 (35465, 4045, 1), -- Resist Full Magic Attack
-(35465, 4408, 1), -- HP Increase (1x)
-(35465, 4409, 1), -- MP Increase (1x)
-(35465, 4410, 11), -- Average P. Atk.
-(35465, 4411, 11), -- Average M. Atk.
-(35465, 4412, 11), -- Average P. Def.
-(35465, 4413, 11), -- Average M. Def.
-(35465, 4414, 2), -- Standard Type
-(35465, 4415, 3), -- One-handed Sword
-(35465, 4416, 14), -- Humans
+(35465, 4408, 1), -- HP Modifiers
+(35465, 4409, 1), -- MP Modifiers
+(35465, 4410, 11), -- P. Atk. Modifiers
+(35465, 4411, 11), -- M. Atk. Modifiers
+(35465, 4412, 11), -- P. Def. Modifiers
+(35465, 4413, 11), -- M. Def. Modifiers
+(35465, 4414, 2), -- Armor Type
+(35465, 4415, 3), -- Weapon Type
+(35465, 4416, 14), -- Races
 -- Gerard
 (35466, 4045, 1), -- Resist Full Magic Attack
-(35466, 4408, 1), -- HP Increase (1x)
-(35466, 4409, 1), -- MP Increase (1x)
-(35466, 4410, 11), -- Average P. Atk.
-(35466, 4411, 11), -- Average M. Atk.
-(35466, 4412, 11), -- Average P. Def.
-(35466, 4413, 11), -- Average M. Def.
-(35466, 4414, 2), -- Standard Type
-(35466, 4415, 3), -- One-handed Sword
-(35466, 4416, 14), -- Humans
+(35466, 4408, 1), -- HP Modifiers
+(35466, 4409, 1), -- MP Modifiers
+(35466, 4410, 11), -- P. Atk. Modifiers
+(35466, 4411, 11), -- M. Atk. Modifiers
+(35466, 4412, 11), -- P. Def. Modifiers
+(35466, 4413, 11), -- M. Def. Modifiers
+(35466, 4414, 2), -- Armor Type
+(35466, 4415, 3), -- Weapon Type
+(35466, 4416, 14), -- Races
 -- Branhillde
 (35467, 4045, 1), -- Resist Full Magic Attack
-(35467, 4408, 1), -- HP Increase (1x)
-(35467, 4409, 1), -- MP Increase (1x)
-(35467, 4410, 11), -- Average P. Atk.
-(35467, 4411, 11), -- Average M. Atk.
-(35467, 4412, 11), -- Average P. Def.
-(35467, 4413, 11), -- Average M. Def.
-(35467, 4414, 2), -- Standard Type
-(35467, 4415, 3), -- One-handed Sword
-(35467, 4416, 14), -- Humans
+(35467, 4408, 1), -- HP Modifiers
+(35467, 4409, 1), -- MP Modifiers
+(35467, 4410, 11), -- P. Atk. Modifiers
+(35467, 4411, 11), -- M. Atk. Modifiers
+(35467, 4412, 11), -- P. Def. Modifiers
+(35467, 4413, 11), -- M. Def. Modifiers
+(35467, 4414, 2), -- Armor Type
+(35467, 4415, 3), -- Weapon Type
+(35467, 4416, 14), -- Races
 -- Lambert
 (35468, 4045, 1), -- Resist Full Magic Attack
-(35468, 4408, 1), -- HP Increase (1x)
-(35468, 4409, 1), -- MP Increase (1x)
-(35468, 4410, 11), -- Average P. Atk.
-(35468, 4411, 11), -- Average M. Atk.
-(35468, 4412, 11), -- Average P. Def.
-(35468, 4413, 11), -- Average M. Def.
-(35468, 4414, 2), -- Standard Type
-(35468, 4415, 3), -- One-handed Sword
-(35468, 4416, 14), -- Humans
+(35468, 4408, 1), -- HP Modifiers
+(35468, 4409, 1), -- MP Modifiers
+(35468, 4410, 11), -- P. Atk. Modifiers
+(35468, 4411, 11), -- M. Atk. Modifiers
+(35468, 4412, 11), -- P. Def. Modifiers
+(35468, 4413, 11), -- M. Def. Modifiers
+(35468, 4414, 2), -- Armor Type
+(35468, 4415, 3), -- Weapon Type
+(35468, 4416, 14), -- Races
 -- Gods' Altar
 (35469, 4045, 1), -- Resist Full Magic Attack
-(35469, 4390, 1), -- Mystic Immunity
-(35469, 4408, 1), -- HP Increase (1x)
-(35469, 4409, 1), -- MP Increase (1x)
-(35469, 4410, 11), -- Average P. Atk.
-(35469, 4411, 11), -- Average M. Atk.
-(35469, 4412, 11), -- Average P. Def.
-(35469, 4413, 11), -- Average M. Def.
-(35469, 4414, 2), -- Standard Type
-(35469, 4415, 3), -- One-handed Sword
-(35469, 4416, 19), -- Others
+(35469, 4390, 1), -- NPC Abnormal Immunity
+(35469, 4408, 1), -- HP Modifiers
+(35469, 4409, 1), -- MP Modifiers
+(35469, 4410, 11), -- P. Atk. Modifiers
+(35469, 4411, 11), -- M. Atk. Modifiers
+(35469, 4412, 11), -- P. Def. Modifiers
+(35469, 4413, 11), -- M. Def. Modifiers
+(35469, 4414, 2), -- Armor Type
+(35469, 4415, 3), -- Weapon Type
+(35469, 4416, 19), -- Races
 -- Astair van Halter
 (35470, 4045, 1), -- Resist Full Magic Attack
-(35470, 4408, 16), -- HP Increase (8x)
-(35470, 4409, 11), -- MP Increase (3x)
-(35470, 4410, 18), -- Extremely Strong P. Atk.
-(35470, 4411, 18), -- Extremely Strong M. Atk.
-(35470, 4412, 18), -- Extremely Strong P. Def.
-(35470, 4413, 18), -- Extremely Strong M. Def.
-(35470, 4414, 2), -- Standard Type
-(35470, 4415, 3), -- One-handed Sword
-(35470, 4416, 22), -- Defending Army
+(35470, 4408, 16), -- HP Modifiers
+(35470, 4409, 11), -- MP Modifiers
+(35470, 4410, 18), -- P. Atk. Modifiers
+(35470, 4411, 18), -- M. Atk. Modifiers
+(35470, 4412, 18), -- P. Def. Modifiers
+(35470, 4413, 18), -- M. Def. Modifiers
+(35470, 4414, 2), -- Armor Type
+(35470, 4415, 3), -- Weapon Type
+(35470, 4416, 22), -- Races
 -- Royal Knight
 (35471, 4045, 1), -- Resist Full Magic Attack
-(35471, 4408, 11), -- HP Increase (3x)
-(35471, 4409, 11), -- MP Increase (3x)
-(35471, 4410, 15), -- Strong P. Atk.
-(35471, 4411, 11), -- Average M. Atk.
-(35471, 4412, 11), -- Average P. Def.
-(35471, 4413, 11), -- Average M. Def.
-(35471, 4414, 2), -- Standard Type
-(35471, 4415, 3), -- One-handed Sword
-(35471, 4416, 22), -- Defending Army
+(35471, 4408, 11), -- HP Modifiers
+(35471, 4409, 11), -- MP Modifiers
+(35471, 4410, 15), -- P. Atk. Modifiers
+(35471, 4411, 11), -- M. Atk. Modifiers
+(35471, 4412, 11), -- P. Def. Modifiers
+(35471, 4413, 11), -- M. Def. Modifiers
+(35471, 4414, 2), -- Armor Type
+(35471, 4415, 3), -- Weapon Type
+(35471, 4416, 22), -- Races
 -- Court Sorcerer
 (35472, 4045, 1), -- Resist Full Magic Attack
 (35472, 4114, 1), -- Aden Flame
-(35472, 4408, 1), -- HP Increase (1x)
-(35472, 4409, 1), -- MP Increase (1x)
-(35472, 4410, 11), -- Average P. Atk.
-(35472, 4411, 11), -- Average M. Atk.
-(35472, 4412, 11), -- Average P. Def.
-(35472, 4413, 11), -- Average M. Def.
-(35472, 4414, 2), -- Standard Type
-(35472, 4415, 5), -- Blunt Weapons
-(35472, 4416, 22), -- Defending Army
+(35472, 4408, 1), -- HP Modifiers
+(35472, 4409, 1), -- MP Modifiers
+(35472, 4410, 11), -- P. Atk. Modifiers
+(35472, 4411, 11), -- M. Atk. Modifiers
+(35472, 4412, 11), -- P. Def. Modifiers
+(35472, 4413, 11), -- M. Def. Modifiers
+(35472, 4414, 2), -- Armor Type
+(35472, 4415, 5), -- Weapon Type
+(35472, 4416, 22), -- Races
 -- Court Sorcerer
 (35473, 4045, 1), -- Resist Full Magic Attack
 (35473, 4115, 1), -- Aden Heal
-(35473, 4408, 1), -- HP Increase (1x)
-(35473, 4409, 1), -- MP Increase (1x)
-(35473, 4410, 11), -- Average P. Atk.
-(35473, 4411, 11), -- Average M. Atk.
-(35473, 4412, 11), -- Average P. Def.
-(35473, 4413, 11), -- Average M. Def.
-(35473, 4414, 2), -- Standard Type
-(35473, 4415, 5), -- Blunt Weapons
-(35473, 4416, 22), -- Defending Army
+(35473, 4408, 1), -- HP Modifiers
+(35473, 4409, 1), -- MP Modifiers
+(35473, 4410, 11), -- P. Atk. Modifiers
+(35473, 4411, 11), -- M. Atk. Modifiers
+(35473, 4412, 11), -- P. Def. Modifiers
+(35473, 4413, 11), -- M. Def. Modifiers
+(35473, 4414, 2), -- Armor Type
+(35473, 4415, 5), -- Weapon Type
+(35473, 4416, 22), -- Races
 -- Court Guard
 (35474, 4045, 1), -- Resist Full Magic Attack
-(35474, 4408, 1), -- HP Increase (1x)
-(35474, 4409, 1), -- MP Increase (1x)
-(35474, 4410, 11), -- Average P. Atk.
-(35474, 4411, 11), -- Average M. Atk.
-(35474, 4412, 11), -- Average P. Def.
-(35474, 4413, 11), -- Average M. Def.
-(35474, 4414, 2), -- Standard Type
-(35474, 4415, 11), -- Spears
-(35474, 4416, 22), -- Defending Army
+(35474, 4408, 1), -- HP Modifiers
+(35474, 4409, 1), -- MP Modifiers
+(35474, 4410, 11), -- P. Atk. Modifiers
+(35474, 4411, 11), -- M. Atk. Modifiers
+(35474, 4412, 11), -- P. Def. Modifiers
+(35474, 4413, 11), -- M. Def. Modifiers
+(35474, 4414, 2), -- Armor Type
+(35474, 4415, 11), -- Weapon Type
+(35474, 4416, 22), -- Races
 -- Guard
 (35475, 4045, 1), -- Resist Full Magic Attack
-(35475, 4408, 1), -- HP Increase (1x)
-(35475, 4409, 1), -- MP Increase (1x)
-(35475, 4410, 11), -- Average P. Atk.
-(35475, 4411, 11), -- Average M. Atk.
-(35475, 4412, 11), -- Average P. Def.
-(35475, 4413, 11), -- Average M. Def.
-(35475, 4414, 2), -- Standard Type
-(35475, 4415, 11), -- Spears
-(35475, 4416, 22), -- Defending Army
+(35475, 4408, 1), -- HP Modifiers
+(35475, 4409, 1), -- MP Modifiers
+(35475, 4410, 11), -- P. Atk. Modifiers
+(35475, 4411, 11), -- M. Atk. Modifiers
+(35475, 4412, 11), -- P. Def. Modifiers
+(35475, 4413, 11), -- M. Def. Modifiers
+(35475, 4414, 2), -- Armor Type
+(35475, 4415, 11), -- Weapon Type
+(35475, 4416, 22), -- Races
 -- Guard
 (35476, 4045, 1), -- Resist Full Magic Attack
-(35476, 4408, 1), -- HP Increase (1x)
-(35476, 4409, 1), -- MP Increase (1x)
-(35476, 4410, 11), -- Average P. Atk.
-(35476, 4411, 11), -- Average M. Atk.
-(35476, 4412, 11), -- Average P. Def.
-(35476, 4413, 11), -- Average M. Def.
-(35476, 4414, 2), -- Standard Type
-(35476, 4415, 3), -- One-handed Sword
-(35476, 4416, 22), -- Defending Army
+(35476, 4408, 1), -- HP Modifiers
+(35476, 4409, 1), -- MP Modifiers
+(35476, 4410, 11), -- P. Atk. Modifiers
+(35476, 4411, 11), -- M. Atk. Modifiers
+(35476, 4412, 11), -- P. Def. Modifiers
+(35476, 4413, 11), -- M. Def. Modifiers
+(35476, 4414, 2), -- Armor Type
+(35476, 4415, 3), -- Weapon Type
+(35476, 4416, 22), -- Races
 -- Guard
 (35477, 4045, 1), -- Resist Full Magic Attack
-(35477, 4408, 1), -- HP Increase (1x)
-(35477, 4409, 1), -- MP Increase (1x)
-(35477, 4410, 11), -- Average P. Atk.
-(35477, 4411, 11), -- Average M. Atk.
-(35477, 4412, 11), -- Average P. Def.
-(35477, 4413, 11), -- Average M. Def.
-(35477, 4414, 2), -- Standard Type
-(35477, 4415, 9), -- Bows
-(35477, 4416, 22), -- Defending Army
+(35477, 4408, 1), -- HP Modifiers
+(35477, 4409, 1), -- MP Modifiers
+(35477, 4410, 11), -- P. Atk. Modifiers
+(35477, 4411, 11), -- M. Atk. Modifiers
+(35477, 4412, 11), -- P. Def. Modifiers
+(35477, 4413, 11), -- M. Def. Modifiers
+(35477, 4414, 2), -- Armor Type
+(35477, 4415, 9), -- Weapon Type
+(35477, 4416, 22), -- Races
 -- Guard
 (35478, 4045, 1), -- Resist Full Magic Attack
-(35478, 4408, 1), -- HP Increase (1x)
-(35478, 4409, 1), -- MP Increase (1x)
-(35478, 4410, 11), -- Average P. Atk.
-(35478, 4411, 11), -- Average M. Atk.
-(35478, 4412, 11), -- Average P. Def.
-(35478, 4413, 11), -- Average M. Def.
-(35478, 4414, 2), -- Standard Type
-(35478, 4415, 11), -- Spears
-(35478, 4416, 22), -- Defending Army
+(35478, 4408, 1), -- HP Modifiers
+(35478, 4409, 1), -- MP Modifiers
+(35478, 4410, 11), -- P. Atk. Modifiers
+(35478, 4411, 11), -- M. Atk. Modifiers
+(35478, 4412, 11), -- P. Def. Modifiers
+(35478, 4413, 11), -- M. Def. Modifiers
+(35478, 4414, 2), -- Armor Type
+(35478, 4415, 11), -- Weapon Type
+(35478, 4416, 22), -- Races
 -- Guard
 (35479, 4045, 1), -- Resist Full Magic Attack
-(35479, 4408, 1), -- HP Increase (1x)
-(35479, 4409, 1), -- MP Increase (1x)
-(35479, 4410, 11), -- Average P. Atk.
-(35479, 4411, 11), -- Average M. Atk.
-(35479, 4412, 11), -- Average P. Def.
-(35479, 4413, 11), -- Average M. Def.
-(35479, 4414, 2), -- Standard Type
-(35479, 4415, 3), -- One-handed Sword
-(35479, 4416, 22), -- Defending Army
+(35479, 4408, 1), -- HP Modifiers
+(35479, 4409, 1), -- MP Modifiers
+(35479, 4410, 11), -- P. Atk. Modifiers
+(35479, 4411, 11), -- M. Atk. Modifiers
+(35479, 4412, 11), -- P. Def. Modifiers
+(35479, 4413, 11), -- M. Def. Modifiers
+(35479, 4414, 2), -- Armor Type
+(35479, 4415, 3), -- Weapon Type
+(35479, 4416, 22), -- Races
 -- Guard
 (35480, 4045, 1), -- Resist Full Magic Attack
-(35480, 4408, 1), -- HP Increase (1x)
-(35480, 4409, 1), -- MP Increase (1x)
-(35480, 4410, 11), -- Average P. Atk.
-(35480, 4411, 11), -- Average M. Atk.
-(35480, 4412, 11), -- Average P. Def.
-(35480, 4413, 11), -- Average M. Def.
-(35480, 4414, 2), -- Standard Type
-(35480, 4415, 9), -- Bows
-(35480, 4416, 22), -- Defending Army
+(35480, 4408, 1), -- HP Modifiers
+(35480, 4409, 1), -- MP Modifiers
+(35480, 4410, 11), -- P. Atk. Modifiers
+(35480, 4411, 11), -- M. Atk. Modifiers
+(35480, 4412, 11), -- P. Def. Modifiers
+(35480, 4413, 11), -- M. Def. Modifiers
+(35480, 4414, 2), -- Armor Type
+(35480, 4415, 9), -- Weapon Type
+(35480, 4416, 22), -- Races
 -- Guard
 (35481, 4045, 1), -- Resist Full Magic Attack
-(35481, 4408, 1), -- HP Increase (1x)
-(35481, 4409, 1), -- MP Increase (1x)
-(35481, 4410, 11), -- Average P. Atk.
-(35481, 4411, 11), -- Average M. Atk.
-(35481, 4412, 11), -- Average P. Def.
-(35481, 4413, 11), -- Average M. Def.
-(35481, 4414, 2), -- Standard Type
-(35481, 4415, 11), -- Spears
-(35481, 4416, 22), -- Defending Army
+(35481, 4408, 1), -- HP Modifiers
+(35481, 4409, 1), -- MP Modifiers
+(35481, 4410, 11), -- P. Atk. Modifiers
+(35481, 4411, 11), -- M. Atk. Modifiers
+(35481, 4412, 11), -- P. Def. Modifiers
+(35481, 4413, 11), -- M. Def. Modifiers
+(35481, 4414, 2), -- Armor Type
+(35481, 4415, 11), -- Weapon Type
+(35481, 4416, 22), -- Races
 -- Guard
 (35482, 4045, 1), -- Resist Full Magic Attack
-(35482, 4408, 1), -- HP Increase (1x)
-(35482, 4409, 1), -- MP Increase (1x)
-(35482, 4410, 11), -- Average P. Atk.
-(35482, 4411, 11), -- Average M. Atk.
-(35482, 4412, 11), -- Average P. Def.
-(35482, 4413, 11), -- Average M. Def.
-(35482, 4414, 2), -- Standard Type
-(35482, 4415, 3), -- One-handed Sword
-(35482, 4416, 22), -- Defending Army
+(35482, 4408, 1), -- HP Modifiers
+(35482, 4409, 1), -- MP Modifiers
+(35482, 4410, 11), -- P. Atk. Modifiers
+(35482, 4411, 11), -- M. Atk. Modifiers
+(35482, 4412, 11), -- P. Def. Modifiers
+(35482, 4413, 11), -- M. Def. Modifiers
+(35482, 4414, 2), -- Armor Type
+(35482, 4415, 3), -- Weapon Type
+(35482, 4416, 22), -- Races
 -- Guard
 (35483, 4045, 1), -- Resist Full Magic Attack
-(35483, 4408, 1), -- HP Increase (1x)
-(35483, 4409, 1), -- MP Increase (1x)
-(35483, 4410, 11), -- Average P. Atk.
-(35483, 4411, 11), -- Average M. Atk.
-(35483, 4412, 11), -- Average P. Def.
-(35483, 4413, 11), -- Average M. Def.
-(35483, 4414, 2), -- Standard Type
-(35483, 4415, 9), -- Bows
-(35483, 4416, 22), -- Defending Army
+(35483, 4408, 1), -- HP Modifiers
+(35483, 4409, 1), -- MP Modifiers
+(35483, 4410, 11), -- P. Atk. Modifiers
+(35483, 4411, 11), -- M. Atk. Modifiers
+(35483, 4412, 11), -- P. Def. Modifiers
+(35483, 4413, 11), -- M. Def. Modifiers
+(35483, 4414, 2), -- Armor Type
+(35483, 4415, 9), -- Weapon Type
+(35483, 4416, 22), -- Races
 -- Royal Knight
 (35484, 4045, 1), -- Resist Full Magic Attack
-(35484, 4408, 11), -- HP Increase (3x)
-(35484, 4409, 11), -- MP Increase (3x)
-(35484, 4410, 15), -- Strong P. Atk.
-(35484, 4411, 11), -- Average M. Atk.
-(35484, 4412, 11), -- Average P. Def.
-(35484, 4413, 11), -- Average M. Def.
-(35484, 4414, 2), -- Standard Type
-(35484, 4415, 3), -- One-handed Sword
-(35484, 4416, 22), -- Defending Army
+(35484, 4408, 11), -- HP Modifiers
+(35484, 4409, 11), -- MP Modifiers
+(35484, 4410, 15), -- P. Atk. Modifiers
+(35484, 4411, 11), -- M. Atk. Modifiers
+(35484, 4412, 11), -- P. Def. Modifiers
+(35484, 4413, 11), -- M. Def. Modifiers
+(35484, 4414, 2), -- Armor Type
+(35484, 4415, 3), -- Weapon Type
+(35484, 4416, 22), -- Races
 -- Court Sorcerer
 (35485, 4045, 1), -- Resist Full Magic Attack
 (35485, 4114, 1), -- Aden Flame
-(35485, 4408, 1), -- HP Increase (1x)
-(35485, 4409, 1), -- MP Increase (1x)
-(35485, 4410, 11), -- Average P. Atk.
-(35485, 4411, 11), -- Average M. Atk.
-(35485, 4412, 11), -- Average P. Def.
-(35485, 4413, 11), -- Average M. Def.
-(35485, 4414, 2), -- Standard Type
-(35485, 4415, 5), -- Blunt Weapons
-(35485, 4416, 22), -- Defending Army
+(35485, 4408, 1), -- HP Modifiers
+(35485, 4409, 1), -- MP Modifiers
+(35485, 4410, 11), -- P. Atk. Modifiers
+(35485, 4411, 11), -- M. Atk. Modifiers
+(35485, 4412, 11), -- P. Def. Modifiers
+(35485, 4413, 11), -- M. Def. Modifiers
+(35485, 4414, 2), -- Armor Type
+(35485, 4415, 5), -- Weapon Type
+(35485, 4416, 22), -- Races
 -- Court Sorcerer
 (35486, 4045, 1), -- Resist Full Magic Attack
 (35486, 4115, 1), -- Aden Heal
-(35486, 4408, 1), -- HP Increase (1x)
-(35486, 4409, 1), -- MP Increase (1x)
-(35486, 4410, 11), -- Average P. Atk.
-(35486, 4411, 11), -- Average M. Atk.
-(35486, 4412, 11), -- Average P. Def.
-(35486, 4413, 11), -- Average M. Def.
-(35486, 4414, 2), -- Standard Type
-(35486, 4415, 5), -- Blunt Weapons
-(35486, 4416, 22), -- Defending Army
+(35486, 4408, 1), -- HP Modifiers
+(35486, 4409, 1), -- MP Modifiers
+(35486, 4410, 11), -- P. Atk. Modifiers
+(35486, 4411, 11), -- M. Atk. Modifiers
+(35486, 4412, 11), -- P. Def. Modifiers
+(35486, 4413, 11), -- M. Def. Modifiers
+(35486, 4414, 2), -- Armor Type
+(35486, 4415, 5), -- Weapon Type
+(35486, 4416, 22), -- Races
 -- Court Guard
 (35487, 4045, 1), -- Resist Full Magic Attack
-(35487, 4408, 1), -- HP Increase (1x)
-(35487, 4409, 1), -- MP Increase (1x)
-(35487, 4410, 11), -- Average P. Atk.
-(35487, 4411, 11), -- Average M. Atk.
-(35487, 4412, 11), -- Average P. Def.
-(35487, 4413, 11), -- Average M. Def.
-(35487, 4414, 2), -- Standard Type
-(35487, 4415, 11), -- Spears
-(35487, 4416, 22), -- Defending Army
+(35487, 4408, 1), -- HP Modifiers
+(35487, 4409, 1), -- MP Modifiers
+(35487, 4410, 11), -- P. Atk. Modifiers
+(35487, 4411, 11), -- M. Atk. Modifiers
+(35487, 4412, 11), -- P. Def. Modifiers
+(35487, 4413, 11), -- M. Def. Modifiers
+(35487, 4414, 2), -- Armor Type
+(35487, 4415, 11), -- Weapon Type
+(35487, 4416, 22), -- Races
 -- Guard
 (35488, 4045, 1), -- Resist Full Magic Attack
-(35488, 4408, 1), -- HP Increase (1x)
-(35488, 4409, 1), -- MP Increase (1x)
-(35488, 4410, 11), -- Average P. Atk.
-(35488, 4411, 11), -- Average M. Atk.
-(35488, 4412, 11), -- Average P. Def.
-(35488, 4413, 11), -- Average M. Def.
-(35488, 4414, 2), -- Standard Type
-(35488, 4415, 11), -- Spears
-(35488, 4416, 22), -- Defending Army
+(35488, 4408, 1), -- HP Modifiers
+(35488, 4409, 1), -- MP Modifiers
+(35488, 4410, 11), -- P. Atk. Modifiers
+(35488, 4411, 11), -- M. Atk. Modifiers
+(35488, 4412, 11), -- P. Def. Modifiers
+(35488, 4413, 11), -- M. Def. Modifiers
+(35488, 4414, 2), -- Armor Type
+(35488, 4415, 11), -- Weapon Type
+(35488, 4416, 22), -- Races
 -- Guard
 (35489, 4045, 1), -- Resist Full Magic Attack
-(35489, 4408, 1), -- HP Increase (1x)
-(35489, 4409, 1), -- MP Increase (1x)
-(35489, 4410, 11), -- Average P. Atk.
-(35489, 4411, 11), -- Average M. Atk.
-(35489, 4412, 11), -- Average P. Def.
-(35489, 4413, 11), -- Average M. Def.
-(35489, 4414, 2), -- Standard Type
-(35489, 4415, 3), -- One-handed Sword
-(35489, 4416, 22), -- Defending Army
+(35489, 4408, 1), -- HP Modifiers
+(35489, 4409, 1), -- MP Modifiers
+(35489, 4410, 11), -- P. Atk. Modifiers
+(35489, 4411, 11), -- M. Atk. Modifiers
+(35489, 4412, 11), -- P. Def. Modifiers
+(35489, 4413, 11), -- M. Def. Modifiers
+(35489, 4414, 2), -- Armor Type
+(35489, 4415, 3), -- Weapon Type
+(35489, 4416, 22), -- Races
 -- Guard
 (35490, 4045, 1), -- Resist Full Magic Attack
-(35490, 4408, 1), -- HP Increase (1x)
-(35490, 4409, 1), -- MP Increase (1x)
-(35490, 4410, 11), -- Average P. Atk.
-(35490, 4411, 11), -- Average M. Atk.
-(35490, 4412, 11), -- Average P. Def.
-(35490, 4413, 11), -- Average M. Def.
-(35490, 4414, 2), -- Standard Type
-(35490, 4415, 9), -- Bows
-(35490, 4416, 22), -- Defending Army
+(35490, 4408, 1), -- HP Modifiers
+(35490, 4409, 1), -- MP Modifiers
+(35490, 4410, 11), -- P. Atk. Modifiers
+(35490, 4411, 11), -- M. Atk. Modifiers
+(35490, 4412, 11), -- P. Def. Modifiers
+(35490, 4413, 11), -- M. Def. Modifiers
+(35490, 4414, 2), -- Armor Type
+(35490, 4415, 9), -- Weapon Type
+(35490, 4416, 22), -- Races
 -- Guard
 (35491, 4045, 1), -- Resist Full Magic Attack
-(35491, 4408, 1), -- HP Increase (1x)
-(35491, 4409, 1), -- MP Increase (1x)
-(35491, 4410, 11), -- Average P. Atk.
-(35491, 4411, 11), -- Average M. Atk.
-(35491, 4412, 11), -- Average P. Def.
-(35491, 4413, 11), -- Average M. Def.
-(35491, 4414, 2), -- Standard Type
-(35491, 4415, 11), -- Spears
-(35491, 4416, 22), -- Defending Army
+(35491, 4408, 1), -- HP Modifiers
+(35491, 4409, 1), -- MP Modifiers
+(35491, 4410, 11), -- P. Atk. Modifiers
+(35491, 4411, 11), -- M. Atk. Modifiers
+(35491, 4412, 11), -- P. Def. Modifiers
+(35491, 4413, 11), -- M. Def. Modifiers
+(35491, 4414, 2), -- Armor Type
+(35491, 4415, 11), -- Weapon Type
+(35491, 4416, 22), -- Races
 -- Guard
 (35492, 4045, 1), -- Resist Full Magic Attack
-(35492, 4408, 1), -- HP Increase (1x)
-(35492, 4409, 1), -- MP Increase (1x)
-(35492, 4410, 11), -- Average P. Atk.
-(35492, 4411, 11), -- Average M. Atk.
-(35492, 4412, 11), -- Average P. Def.
-(35492, 4413, 11), -- Average M. Def.
-(35492, 4414, 2), -- Standard Type
-(35492, 4415, 3), -- One-handed Sword
-(35492, 4416, 22), -- Defending Army
+(35492, 4408, 1), -- HP Modifiers
+(35492, 4409, 1), -- MP Modifiers
+(35492, 4410, 11), -- P. Atk. Modifiers
+(35492, 4411, 11), -- M. Atk. Modifiers
+(35492, 4412, 11), -- P. Def. Modifiers
+(35492, 4413, 11), -- M. Def. Modifiers
+(35492, 4414, 2), -- Armor Type
+(35492, 4415, 3), -- Weapon Type
+(35492, 4416, 22), -- Races
 -- Guard
 (35493, 4045, 1), -- Resist Full Magic Attack
-(35493, 4408, 1), -- HP Increase (1x)
-(35493, 4409, 1), -- MP Increase (1x)
-(35493, 4410, 11), -- Average P. Atk.
-(35493, 4411, 11), -- Average M. Atk.
-(35493, 4412, 11), -- Average P. Def.
-(35493, 4413, 11), -- Average M. Def.
-(35493, 4414, 2), -- Standard Type
-(35493, 4415, 9), -- Bows
-(35493, 4416, 22), -- Defending Army
+(35493, 4408, 1), -- HP Modifiers
+(35493, 4409, 1), -- MP Modifiers
+(35493, 4410, 11), -- P. Atk. Modifiers
+(35493, 4411, 11), -- M. Atk. Modifiers
+(35493, 4412, 11), -- P. Def. Modifiers
+(35493, 4413, 11), -- M. Def. Modifiers
+(35493, 4414, 2), -- Armor Type
+(35493, 4415, 9), -- Weapon Type
+(35493, 4416, 22), -- Races
 -- Guard
 (35494, 4045, 1), -- Resist Full Magic Attack
-(35494, 4408, 1), -- HP Increase (1x)
-(35494, 4409, 1), -- MP Increase (1x)
-(35494, 4410, 11), -- Average P. Atk.
-(35494, 4411, 11), -- Average M. Atk.
-(35494, 4412, 11), -- Average P. Def.
-(35494, 4413, 11), -- Average M. Def.
-(35494, 4414, 2), -- Standard Type
-(35494, 4415, 11), -- Spears
-(35494, 4416, 22), -- Defending Army
+(35494, 4408, 1), -- HP Modifiers
+(35494, 4409, 1), -- MP Modifiers
+(35494, 4410, 11), -- P. Atk. Modifiers
+(35494, 4411, 11), -- M. Atk. Modifiers
+(35494, 4412, 11), -- P. Def. Modifiers
+(35494, 4413, 11), -- M. Def. Modifiers
+(35494, 4414, 2), -- Armor Type
+(35494, 4415, 11), -- Weapon Type
+(35494, 4416, 22), -- Races
 -- Guard
 (35495, 4045, 1), -- Resist Full Magic Attack
-(35495, 4408, 1), -- HP Increase (1x)
-(35495, 4409, 1), -- MP Increase (1x)
-(35495, 4410, 11), -- Average P. Atk.
-(35495, 4411, 11), -- Average M. Atk.
-(35495, 4412, 11), -- Average P. Def.
-(35495, 4413, 11), -- Average M. Def.
-(35495, 4414, 2), -- Standard Type
-(35495, 4415, 3), -- One-handed Sword
-(35495, 4416, 22), -- Defending Army
+(35495, 4408, 1), -- HP Modifiers
+(35495, 4409, 1), -- MP Modifiers
+(35495, 4410, 11), -- P. Atk. Modifiers
+(35495, 4411, 11), -- M. Atk. Modifiers
+(35495, 4412, 11), -- P. Def. Modifiers
+(35495, 4413, 11), -- M. Def. Modifiers
+(35495, 4414, 2), -- Armor Type
+(35495, 4415, 3), -- Weapon Type
+(35495, 4416, 22), -- Races
 -- Guard
 (35496, 4045, 1), -- Resist Full Magic Attack
-(35496, 4408, 1), -- HP Increase (1x)
-(35496, 4409, 1), -- MP Increase (1x)
-(35496, 4410, 11), -- Average P. Atk.
-(35496, 4411, 11), -- Average M. Atk.
-(35496, 4412, 11), -- Average P. Def.
-(35496, 4413, 11), -- Average M. Def.
-(35496, 4414, 2), -- Standard Type
-(35496, 4415, 9), -- Bows
-(35496, 4416, 22), -- Defending Army
+(35496, 4408, 1), -- HP Modifiers
+(35496, 4409, 1), -- MP Modifiers
+(35496, 4410, 11), -- P. Atk. Modifiers
+(35496, 4411, 11), -- M. Atk. Modifiers
+(35496, 4412, 11), -- P. Def. Modifiers
+(35496, 4413, 11), -- M. Def. Modifiers
+(35496, 4414, 2), -- Armor Type
+(35496, 4415, 9), -- Weapon Type
+(35496, 4416, 22), -- Races
 -- Gatekeeper
 (35497, 4045, 1), -- Resist Full Magic Attack
-(35497, 4408, 1), -- HP Increase (1x)
-(35497, 4409, 1), -- MP Increase (1x)
-(35497, 4410, 11), -- Average P. Atk.
-(35497, 4411, 11), -- Average M. Atk.
-(35497, 4412, 11), -- Average P. Def.
-(35497, 4413, 11), -- Average M. Def.
-(35497, 4414, 2), -- Standard Type
-(35497, 4415, 3), -- One-handed Sword
-(35497, 4416, 23), -- Mercenaries
+(35497, 4408, 1), -- HP Modifiers
+(35497, 4409, 1), -- MP Modifiers
+(35497, 4410, 11), -- P. Atk. Modifiers
+(35497, 4411, 11), -- M. Atk. Modifiers
+(35497, 4412, 11), -- P. Def. Modifiers
+(35497, 4413, 11), -- M. Def. Modifiers
+(35497, 4414, 2), -- Armor Type
+(35497, 4415, 3), -- Weapon Type
+(35497, 4416, 23), -- Races
 -- Gatekeeper
 (35498, 4045, 1), -- Resist Full Magic Attack
-(35498, 4408, 1), -- HP Increase (1x)
-(35498, 4409, 1), -- MP Increase (1x)
-(35498, 4410, 11), -- Average P. Atk.
-(35498, 4411, 11), -- Average M. Atk.
-(35498, 4412, 11), -- Average P. Def.
-(35498, 4413, 11), -- Average M. Def.
-(35498, 4414, 2), -- Standard Type
-(35498, 4415, 3), -- One-handed Sword
-(35498, 4416, 23), -- Mercenaries
+(35498, 4408, 1), -- HP Modifiers
+(35498, 4409, 1), -- MP Modifiers
+(35498, 4410, 11), -- P. Atk. Modifiers
+(35498, 4411, 11), -- M. Atk. Modifiers
+(35498, 4412, 11), -- P. Def. Modifiers
+(35498, 4413, 11), -- M. Def. Modifiers
+(35498, 4414, 2), -- Armor Type
+(35498, 4415, 3), -- Weapon Type
+(35498, 4416, 23), -- Races
 -- Gatekeeper
 (35499, 4045, 1), -- Resist Full Magic Attack
-(35499, 4408, 1), -- HP Increase (1x)
-(35499, 4409, 1), -- MP Increase (1x)
-(35499, 4410, 11), -- Average P. Atk.
-(35499, 4411, 11), -- Average M. Atk.
-(35499, 4412, 11), -- Average P. Def.
-(35499, 4413, 11), -- Average M. Def.
-(35499, 4414, 2), -- Standard Type
-(35499, 4415, 3), -- One-handed Sword
-(35499, 4416, 23), -- Mercenaries
+(35499, 4408, 1), -- HP Modifiers
+(35499, 4409, 1), -- MP Modifiers
+(35499, 4410, 11), -- P. Atk. Modifiers
+(35499, 4411, 11), -- M. Atk. Modifiers
+(35499, 4412, 11), -- P. Def. Modifiers
+(35499, 4413, 11), -- M. Def. Modifiers
+(35499, 4414, 2), -- Armor Type
+(35499, 4415, 3), -- Weapon Type
+(35499, 4416, 23), -- Races
 -- Gatekeeper
 (35500, 4045, 1), -- Resist Full Magic Attack
-(35500, 4408, 1), -- HP Increase (1x)
-(35500, 4409, 1), -- MP Increase (1x)
-(35500, 4410, 11), -- Average P. Atk.
-(35500, 4411, 11), -- Average M. Atk.
-(35500, 4412, 11), -- Average P. Def.
-(35500, 4413, 11), -- Average M. Def.
-(35500, 4414, 2), -- Standard Type
-(35500, 4415, 3), -- One-handed Sword
-(35500, 4416, 23), -- Mercenaries
+(35500, 4408, 1), -- HP Modifiers
+(35500, 4409, 1), -- MP Modifiers
+(35500, 4410, 11), -- P. Atk. Modifiers
+(35500, 4411, 11), -- M. Atk. Modifiers
+(35500, 4412, 11), -- P. Def. Modifiers
+(35500, 4413, 11), -- M. Def. Modifiers
+(35500, 4414, 2), -- Armor Type
+(35500, 4415, 3), -- Weapon Type
+(35500, 4416, 23), -- Races
 -- Gatekeeper
 (35501, 4045, 1), -- Resist Full Magic Attack
-(35501, 4408, 1), -- HP Increase (1x)
-(35501, 4409, 1), -- MP Increase (1x)
-(35501, 4410, 11), -- Average P. Atk.
-(35501, 4411, 11), -- Average M. Atk.
-(35501, 4412, 11), -- Average P. Def.
-(35501, 4413, 11), -- Average M. Def.
-(35501, 4414, 2), -- Standard Type
-(35501, 4415, 3), -- One-handed Sword
-(35501, 4416, 23), -- Mercenaries
+(35501, 4408, 1), -- HP Modifiers
+(35501, 4409, 1), -- MP Modifiers
+(35501, 4410, 11), -- P. Atk. Modifiers
+(35501, 4411, 11), -- M. Atk. Modifiers
+(35501, 4412, 11), -- P. Def. Modifiers
+(35501, 4413, 11), -- M. Def. Modifiers
+(35501, 4414, 2), -- Armor Type
+(35501, 4415, 3), -- Weapon Type
+(35501, 4416, 23), -- Races
 -- Mass Gatekeeper
 (35502, 4045, 1), -- Resist Full Magic Attack
-(35502, 4408, 1), -- HP Increase (1x)
-(35502, 4409, 1), -- MP Increase (1x)
-(35502, 4410, 11), -- Average P. Atk.
-(35502, 4411, 11), -- Average M. Atk.
-(35502, 4412, 11), -- Average P. Def.
-(35502, 4413, 11), -- Average M. Def.
-(35502, 4414, 2), -- Standard Type
-(35502, 4415, 3), -- One-handed Sword
-(35502, 4416, 14), -- Humans
+(35502, 4408, 1), -- HP Modifiers
+(35502, 4409, 1), -- MP Modifiers
+(35502, 4410, 11), -- P. Atk. Modifiers
+(35502, 4411, 11), -- M. Atk. Modifiers
+(35502, 4412, 11), -- P. Def. Modifiers
+(35502, 4413, 11), -- M. Def. Modifiers
+(35502, 4414, 2), -- Armor Type
+(35502, 4415, 3), -- Weapon Type
+(35502, 4416, 14), -- Races
 -- Outer Doorman
 (35503, 4045, 1), -- Resist Full Magic Attack
-(35503, 4408, 1), -- HP Increase (1x)
-(35503, 4409, 1), -- MP Increase (1x)
-(35503, 4410, 11), -- Average P. Atk.
-(35503, 4411, 11), -- Average M. Atk.
-(35503, 4412, 11), -- Average P. Def.
-(35503, 4413, 11), -- Average M. Def.
-(35503, 4414, 2), -- Standard Type
-(35503, 4415, 3), -- One-handed Sword
-(35503, 4416, 14), -- Humans
+(35503, 4408, 1), -- HP Modifiers
+(35503, 4409, 1), -- MP Modifiers
+(35503, 4410, 11), -- P. Atk. Modifiers
+(35503, 4411, 11), -- M. Atk. Modifiers
+(35503, 4412, 11), -- P. Def. Modifiers
+(35503, 4413, 11), -- M. Def. Modifiers
+(35503, 4414, 2), -- Armor Type
+(35503, 4415, 3), -- Weapon Type
+(35503, 4416, 14), -- Races
 -- Inner Doorman
 (35504, 4045, 1), -- Resist Full Magic Attack
-(35504, 4408, 1), -- HP Increase (1x)
-(35504, 4409, 1), -- MP Increase (1x)
-(35504, 4410, 11), -- Average P. Atk.
-(35504, 4411, 11), -- Average M. Atk.
-(35504, 4412, 11), -- Average P. Def.
-(35504, 4413, 11), -- Average M. Def.
-(35504, 4414, 2), -- Standard Type
-(35504, 4415, 3), -- One-handed Sword
-(35504, 4416, 14), -- Humans
+(35504, 4408, 1), -- HP Modifiers
+(35504, 4409, 1), -- MP Modifiers
+(35504, 4410, 11), -- P. Atk. Modifiers
+(35504, 4411, 11), -- M. Atk. Modifiers
+(35504, 4412, 11), -- P. Def. Modifiers
+(35504, 4413, 11), -- M. Def. Modifiers
+(35504, 4414, 2), -- Armor Type
+(35504, 4415, 3), -- Weapon Type
+(35504, 4416, 14), -- Races
 -- Inner Doorman
 (35505, 4045, 1), -- Resist Full Magic Attack
-(35505, 4408, 1), -- HP Increase (1x)
-(35505, 4409, 1), -- MP Increase (1x)
-(35505, 4410, 11), -- Average P. Atk.
-(35505, 4411, 11), -- Average M. Atk.
-(35505, 4412, 11), -- Average P. Def.
-(35505, 4413, 11), -- Average M. Def.
-(35505, 4414, 2), -- Standard Type
-(35505, 4415, 3), -- One-handed Sword
-(35505, 4416, 14), -- Humans
+(35505, 4408, 1), -- HP Modifiers
+(35505, 4409, 1), -- MP Modifiers
+(35505, 4410, 11), -- P. Atk. Modifiers
+(35505, 4411, 11), -- M. Atk. Modifiers
+(35505, 4412, 11), -- P. Def. Modifiers
+(35505, 4413, 11), -- M. Def. Modifiers
+(35505, 4414, 2), -- Armor Type
+(35505, 4415, 3), -- Weapon Type
+(35505, 4416, 14), -- Races
 -- Dungeon Gatekeeper
 (35506, 4045, 1), -- Resist Full Magic Attack
-(35506, 4408, 1), -- HP Increase (1x)
-(35506, 4409, 1), -- MP Increase (1x)
-(35506, 4410, 11), -- Average P. Atk.
-(35506, 4411, 11), -- Average M. Atk.
-(35506, 4412, 11), -- Average P. Def.
-(35506, 4413, 11), -- Average M. Def.
-(35506, 4414, 2), -- Standard Type
-(35506, 4415, 3), -- One-handed Sword
-(35506, 4416, 14), -- Humans
+(35506, 4408, 1), -- HP Modifiers
+(35506, 4409, 1), -- MP Modifiers
+(35506, 4410, 11), -- P. Atk. Modifiers
+(35506, 4411, 11), -- M. Atk. Modifiers
+(35506, 4412, 11), -- P. Def. Modifiers
+(35506, 4413, 11), -- M. Def. Modifiers
+(35506, 4414, 2), -- Armor Type
+(35506, 4415, 3), -- Weapon Type
+(35506, 4416, 14), -- Races
 -- Blacksmith
 (35507, 4045, 1), -- Resist Full Magic Attack
-(35507, 4408, 1), -- HP Increase (1x)
-(35507, 4409, 1), -- MP Increase (1x)
-(35507, 4410, 11), -- Average P. Atk.
-(35507, 4411, 11), -- Average M. Atk.
-(35507, 4412, 11), -- Average P. Def.
-(35507, 4413, 11), -- Average M. Def.
-(35507, 4414, 2), -- Standard Type
-(35507, 4415, 3), -- One-handed Sword
-(35507, 4416, 18), -- Dwarves
+(35507, 4408, 1), -- HP Modifiers
+(35507, 4409, 1), -- MP Modifiers
+(35507, 4410, 11), -- P. Atk. Modifiers
+(35507, 4411, 11), -- M. Atk. Modifiers
+(35507, 4412, 11), -- P. Def. Modifiers
+(35507, 4413, 11), -- M. Def. Modifiers
+(35507, 4414, 2), -- Armor Type
+(35507, 4415, 3), -- Weapon Type
+(35507, 4416, 18), -- Races
 -- Warehouse Keeper
 (35508, 4045, 1), -- Resist Full Magic Attack
-(35508, 4408, 1), -- HP Increase (1x)
-(35508, 4409, 1), -- MP Increase (1x)
-(35508, 4410, 11), -- Average P. Atk.
-(35508, 4411, 11), -- Average M. Atk.
-(35508, 4412, 11), -- Average P. Def.
-(35508, 4413, 11), -- Average M. Def.
-(35508, 4414, 2), -- Standard Type
-(35508, 4415, 3), -- One-handed Sword
-(35508, 4416, 18), -- Dwarves
+(35508, 4408, 1), -- HP Modifiers
+(35508, 4409, 1), -- MP Modifiers
+(35508, 4410, 11), -- P. Atk. Modifiers
+(35508, 4411, 11), -- M. Atk. Modifiers
+(35508, 4412, 11), -- P. Def. Modifiers
+(35508, 4413, 11), -- M. Def. Modifiers
+(35508, 4414, 2), -- Armor Type
+(35508, 4415, 3), -- Weapon Type
+(35508, 4416, 18), -- Races
 -- Frederick
 (35509, 4045, 1), -- Resist Full Magic Attack
-(35509, 4408, 1), -- HP Increase (1x)
-(35509, 4409, 1), -- MP Increase (1x)
-(35509, 4410, 11), -- Average P. Atk.
-(35509, 4411, 11), -- Average M. Atk.
-(35509, 4412, 11), -- Average P. Def.
-(35509, 4413, 11), -- Average M. Def.
-(35509, 4414, 2), -- Standard Type
-(35509, 4415, 3), -- One-handed Sword
-(35509, 4416, 14), -- Humans
+(35509, 4408, 1), -- HP Modifiers
+(35509, 4409, 1), -- MP Modifiers
+(35509, 4410, 11), -- P. Atk. Modifiers
+(35509, 4411, 11), -- M. Atk. Modifiers
+(35509, 4412, 11), -- P. Def. Modifiers
+(35509, 4413, 11), -- M. Def. Modifiers
+(35509, 4414, 2), -- Armor Type
+(35509, 4415, 3), -- Weapon Type
+(35509, 4416, 14), -- Races
 -- Titus
 (35510, 4045, 1), -- Resist Full Magic Attack
-(35510, 4408, 1), -- HP Increase (1x)
-(35510, 4409, 1), -- MP Increase (1x)
-(35510, 4410, 11), -- Average P. Atk.
-(35510, 4411, 11), -- Average M. Atk.
-(35510, 4412, 11), -- Average P. Def.
-(35510, 4413, 11), -- Average M. Def.
-(35510, 4414, 2), -- Standard Type
-(35510, 4415, 3), -- One-handed Sword
-(35510, 4416, 14), -- Humans
+(35510, 4408, 1), -- HP Modifiers
+(35510, 4409, 1), -- MP Modifiers
+(35510, 4410, 11), -- P. Atk. Modifiers
+(35510, 4411, 11), -- M. Atk. Modifiers
+(35510, 4412, 11), -- P. Def. Modifiers
+(35510, 4413, 11), -- M. Def. Modifiers
+(35510, 4414, 2), -- Armor Type
+(35510, 4415, 3), -- Weapon Type
+(35510, 4416, 14), -- Races
 -- Gompus
 (35511, 4045, 1), -- Resist Full Magic Attack
-(35511, 4408, 1), -- HP Increase (1x)
-(35511, 4409, 1), -- MP Increase (1x)
-(35511, 4410, 11), -- Average P. Atk.
-(35511, 4411, 11), -- Average M. Atk.
-(35511, 4412, 11), -- Average P. Def.
-(35511, 4413, 11), -- Average M. Def.
-(35511, 4414, 2), -- Standard Type
-(35511, 4415, 3), -- One-handed Sword
-(35511, 4416, 14), -- Humans
+(35511, 4408, 1), -- HP Modifiers
+(35511, 4409, 1), -- MP Modifiers
+(35511, 4410, 11), -- P. Atk. Modifiers
+(35511, 4411, 11), -- M. Atk. Modifiers
+(35511, 4412, 11), -- P. Def. Modifiers
+(35511, 4413, 11), -- M. Def. Modifiers
+(35511, 4414, 2), -- Armor Type
+(35511, 4415, 3), -- Weapon Type
+(35511, 4416, 14), -- Races
 -- Manor Manager
 (35512, 4045, 1), -- Resist Full Magic Attack
-(35512, 4408, 1), -- HP Increase (1x)
-(35512, 4409, 1), -- MP Increase (1x)
-(35512, 4410, 11), -- Average P. Atk.
-(35512, 4411, 11), -- Average M. Atk.
-(35512, 4412, 11), -- Average P. Def.
-(35512, 4413, 11), -- Average M. Def.
-(35512, 4414, 2), -- Standard Type
-(35512, 4415, 3), -- One-handed Sword
-(35512, 4416, 14), -- Humans
+(35512, 4408, 1), -- HP Modifiers
+(35512, 4409, 1), -- MP Modifiers
+(35512, 4410, 11), -- P. Atk. Modifiers
+(35512, 4411, 11), -- M. Atk. Modifiers
+(35512, 4412, 11), -- P. Def. Modifiers
+(35512, 4413, 11), -- M. Def. Modifiers
+(35512, 4414, 2), -- Armor Type
+(35512, 4415, 3), -- Weapon Type
+(35512, 4416, 14), -- Races
 -- Sherman
 (35513, 4045, 1), -- Resist Full Magic Attack
-(35513, 4408, 1), -- HP Increase (1x)
-(35513, 4409, 1), -- MP Increase (1x)
-(35513, 4410, 11), -- Average P. Atk.
-(35513, 4411, 11), -- Average M. Atk.
-(35513, 4412, 11), -- Average P. Def.
-(35513, 4413, 11), -- Average M. Def.
-(35513, 4414, 2), -- Standard Type
-(35513, 4415, 3), -- One-handed Sword
-(35513, 4416, 14), -- Humans
+(35513, 4408, 1), -- HP Modifiers
+(35513, 4409, 1), -- MP Modifiers
+(35513, 4410, 11), -- P. Atk. Modifiers
+(35513, 4411, 11), -- M. Atk. Modifiers
+(35513, 4412, 11), -- P. Def. Modifiers
+(35513, 4413, 11), -- M. Def. Modifiers
+(35513, 4414, 2), -- Armor Type
+(35513, 4415, 3), -- Weapon Type
+(35513, 4416, 14), -- Races
 -- Altar of Wind
 (35514, 4045, 1), -- Resist Full Magic Attack
-(35514, 4408, 1), -- HP Increase (1x)
-(35514, 4409, 1), -- MP Increase (1x)
-(35514, 4410, 11), -- Average P. Atk.
-(35514, 4411, 11), -- Average M. Atk.
-(35514, 4412, 11), -- Average P. Def.
-(35514, 4413, 11), -- Average M. Def.
-(35514, 4414, 2), -- Standard Type
-(35514, 4415, 3), -- One-handed Sword
-(35514, 4416, 19), -- Others
+(35514, 4408, 1), -- HP Modifiers
+(35514, 4409, 1), -- MP Modifiers
+(35514, 4410, 11), -- P. Atk. Modifiers
+(35514, 4411, 11), -- M. Atk. Modifiers
+(35514, 4412, 11), -- P. Def. Modifiers
+(35514, 4413, 11), -- M. Def. Modifiers
+(35514, 4414, 2), -- Armor Type
+(35514, 4415, 3), -- Weapon Type
+(35514, 4416, 19), -- Races
 -- Altar of Earth
 (35515, 4045, 1), -- Resist Full Magic Attack
-(35515, 4408, 1), -- HP Increase (1x)
-(35515, 4409, 1), -- MP Increase (1x)
-(35515, 4410, 11), -- Average P. Atk.
-(35515, 4411, 11), -- Average M. Atk.
-(35515, 4412, 11), -- Average P. Def.
-(35515, 4413, 11), -- Average M. Def.
-(35515, 4414, 2), -- Standard Type
-(35515, 4415, 3), -- One-handed Sword
-(35515, 4416, 19), -- Others
+(35515, 4408, 1), -- HP Modifiers
+(35515, 4409, 1), -- MP Modifiers
+(35515, 4410, 11), -- P. Atk. Modifiers
+(35515, 4411, 11), -- M. Atk. Modifiers
+(35515, 4412, 11), -- P. Def. Modifiers
+(35515, 4413, 11), -- M. Def. Modifiers
+(35515, 4414, 2), -- Armor Type
+(35515, 4415, 3), -- Weapon Type
+(35515, 4416, 19), -- Races
 -- Verus
 (35516, 4045, 1), -- Resist Full Magic Attack
-(35516, 4408, 10), -- HP Increase (2x)
-(35516, 4409, 11), -- MP Increase (3x)
-(35516, 4410, 13), -- Slightly Strong P. Atk.
-(35516, 4411, 11), -- Average M. Atk.
-(35516, 4412, 11), -- Average P. Def.
-(35516, 4413, 11), -- Average M. Def.
-(35516, 4414, 2), -- Standard Type
-(35516, 4415, 3), -- One-handed Sword
-(35516, 4416, 22), -- Defending Army
+(35516, 4408, 10), -- HP Modifiers
+(35516, 4409, 11), -- MP Modifiers
+(35516, 4410, 13), -- P. Atk. Modifiers
+(35516, 4411, 11), -- M. Atk. Modifiers
+(35516, 4412, 11), -- P. Def. Modifiers
+(35516, 4413, 11), -- M. Def. Modifiers
+(35516, 4414, 2), -- Armor Type
+(35516, 4415, 3), -- Weapon Type
+(35516, 4416, 22), -- Races
 -- Swain Ken Orwen
 (35517, 4045, 1), -- Resist Full Magic Attack
-(35517, 4408, 16), -- HP Increase (8x)
-(35517, 4409, 11), -- MP Increase (3x)
-(35517, 4410, 18), -- Extremely Strong P. Atk.
-(35517, 4411, 11), -- Average M. Atk.
-(35517, 4412, 13), -- Slightly Strong P. Def.
-(35517, 4413, 11), -- Average M. Def.
-(35517, 4414, 2), -- Standard Type
-(35517, 4415, 3), -- One-handed Sword
-(35517, 4416, 22), -- Defending Army
+(35517, 4408, 16), -- HP Modifiers
+(35517, 4409, 11), -- MP Modifiers
+(35517, 4410, 18), -- P. Atk. Modifiers
+(35517, 4411, 11), -- M. Atk. Modifiers
+(35517, 4412, 13), -- P. Def. Modifiers
+(35517, 4413, 11), -- M. Def. Modifiers
+(35517, 4414, 2), -- Armor Type
+(35517, 4415, 3), -- Weapon Type
+(35517, 4416, 22), -- Races
 -- Royal Knight
 (35518, 4045, 1), -- Resist Full Magic Attack
-(35518, 4408, 16), -- HP Increase (8x)
-(35518, 4409, 11), -- MP Increase (3x)
-(35518, 4410, 18), -- Extremely Strong P. Atk.
-(35518, 4411, 11), -- Average M. Atk.
-(35518, 4412, 11), -- Average P. Def.
-(35518, 4413, 11), -- Average M. Def.
-(35518, 4414, 2), -- Standard Type
-(35518, 4415, 3), -- One-handed Sword
-(35518, 4416, 22), -- Defending Army
+(35518, 4408, 16), -- HP Modifiers
+(35518, 4409, 11), -- MP Modifiers
+(35518, 4410, 18), -- P. Atk. Modifiers
+(35518, 4411, 11), -- M. Atk. Modifiers
+(35518, 4412, 11), -- P. Def. Modifiers
+(35518, 4413, 11), -- M. Def. Modifiers
+(35518, 4414, 2), -- Armor Type
+(35518, 4415, 3), -- Weapon Type
+(35518, 4416, 22), -- Races
 -- Court Sorcerer
 (35519, 4026, 1), -- Gludio Flame
 (35519, 4045, 1), -- Resist Full Magic Attack
-(35519, 4408, 16), -- HP Increase (8x)
-(35519, 4409, 11), -- MP Increase (3x)
-(35519, 4410, 18), -- Extremely Strong P. Atk.
-(35519, 4411, 11), -- Average M. Atk.
-(35519, 4412, 11), -- Average P. Def.
-(35519, 4413, 11), -- Average M. Def.
-(35519, 4414, 2), -- Standard Type
-(35519, 4415, 5), -- Blunt Weapons
-(35519, 4416, 22), -- Defending Army
+(35519, 4408, 16), -- HP Modifiers
+(35519, 4409, 11), -- MP Modifiers
+(35519, 4410, 18), -- P. Atk. Modifiers
+(35519, 4411, 11), -- M. Atk. Modifiers
+(35519, 4412, 11), -- P. Def. Modifiers
+(35519, 4413, 11), -- M. Def. Modifiers
+(35519, 4414, 2), -- Armor Type
+(35519, 4415, 5), -- Weapon Type
+(35519, 4416, 22), -- Races
 -- Court Sorcerer
 (35520, 4027, 1), -- Gludio Heal
 (35520, 4045, 1), -- Resist Full Magic Attack
-(35520, 4408, 16), -- HP Increase (8x)
-(35520, 4409, 11), -- MP Increase (3x)
-(35520, 4410, 18), -- Extremely Strong P. Atk.
-(35520, 4411, 11), -- Average M. Atk.
-(35520, 4412, 11), -- Average P. Def.
-(35520, 4413, 11), -- Average M. Def.
-(35520, 4414, 2), -- Standard Type
-(35520, 4415, 5), -- Blunt Weapons
-(35520, 4416, 22), -- Defending Army
+(35520, 4408, 16), -- HP Modifiers
+(35520, 4409, 11), -- MP Modifiers
+(35520, 4410, 18), -- P. Atk. Modifiers
+(35520, 4411, 11), -- M. Atk. Modifiers
+(35520, 4412, 11), -- P. Def. Modifiers
+(35520, 4413, 11), -- M. Def. Modifiers
+(35520, 4414, 2), -- Armor Type
+(35520, 4415, 5), -- Weapon Type
+(35520, 4416, 22), -- Races
 -- Court Guard
 (35521, 4045, 1), -- Resist Full Magic Attack
-(35521, 4408, 16), -- HP Increase (8x)
-(35521, 4409, 11), -- MP Increase (3x)
-(35521, 4410, 18), -- Extremely Strong P. Atk.
-(35521, 4411, 11), -- Average M. Atk.
-(35521, 4412, 11), -- Average P. Def.
-(35521, 4413, 11), -- Average M. Def.
-(35521, 4414, 2), -- Standard Type
-(35521, 4415, 11), -- Spears
-(35521, 4416, 22), -- Defending Army
+(35521, 4408, 16), -- HP Modifiers
+(35521, 4409, 11), -- MP Modifiers
+(35521, 4410, 18), -- P. Atk. Modifiers
+(35521, 4411, 11), -- M. Atk. Modifiers
+(35521, 4412, 11), -- P. Def. Modifiers
+(35521, 4413, 11), -- M. Def. Modifiers
+(35521, 4414, 2), -- Armor Type
+(35521, 4415, 11), -- Weapon Type
+(35521, 4416, 22), -- Races
 -- Guard
 (35522, 4045, 1), -- Resist Full Magic Attack
-(35522, 4408, 16), -- HP Increase (8x)
-(35522, 4409, 11), -- MP Increase (3x)
-(35522, 4410, 18), -- Extremely Strong P. Atk.
-(35522, 4411, 11), -- Average M. Atk.
-(35522, 4412, 11), -- Average P. Def.
-(35522, 4413, 11), -- Average M. Def.
-(35522, 4414, 2), -- Standard Type
-(35522, 4415, 11), -- Spears
-(35522, 4416, 22), -- Defending Army
+(35522, 4408, 16), -- HP Modifiers
+(35522, 4409, 11), -- MP Modifiers
+(35522, 4410, 18), -- P. Atk. Modifiers
+(35522, 4411, 11), -- M. Atk. Modifiers
+(35522, 4412, 11), -- P. Def. Modifiers
+(35522, 4413, 11), -- M. Def. Modifiers
+(35522, 4414, 2), -- Armor Type
+(35522, 4415, 11), -- Weapon Type
+(35522, 4416, 22), -- Races
 -- Guard
 (35523, 4045, 1), -- Resist Full Magic Attack
-(35523, 4408, 16), -- HP Increase (8x)
-(35523, 4409, 11), -- MP Increase (3x)
-(35523, 4410, 18), -- Extremely Strong P. Atk.
-(35523, 4411, 11), -- Average M. Atk.
-(35523, 4412, 11), -- Average P. Def.
-(35523, 4413, 11), -- Average M. Def.
-(35523, 4414, 2), -- Standard Type
-(35523, 4415, 3), -- One-handed Sword
-(35523, 4416, 22), -- Defending Army
+(35523, 4408, 16), -- HP Modifiers
+(35523, 4409, 11), -- MP Modifiers
+(35523, 4410, 18), -- P. Atk. Modifiers
+(35523, 4411, 11), -- M. Atk. Modifiers
+(35523, 4412, 11), -- P. Def. Modifiers
+(35523, 4413, 11), -- M. Def. Modifiers
+(35523, 4414, 2), -- Armor Type
+(35523, 4415, 3), -- Weapon Type
+(35523, 4416, 22), -- Races
 -- Guard
 (35524, 4045, 1), -- Resist Full Magic Attack
-(35524, 4408, 16), -- HP Increase (8x)
-(35524, 4409, 11), -- MP Increase (3x)
-(35524, 4410, 18), -- Extremely Strong P. Atk.
-(35524, 4411, 11), -- Average M. Atk.
-(35524, 4412, 11), -- Average P. Def.
-(35524, 4413, 11), -- Average M. Def.
-(35524, 4414, 2), -- Standard Type
-(35524, 4415, 9), -- Bows
-(35524, 4416, 22), -- Defending Army
+(35524, 4408, 16), -- HP Modifiers
+(35524, 4409, 11), -- MP Modifiers
+(35524, 4410, 18), -- P. Atk. Modifiers
+(35524, 4411, 11), -- M. Atk. Modifiers
+(35524, 4412, 11), -- P. Def. Modifiers
+(35524, 4413, 11), -- M. Def. Modifiers
+(35524, 4414, 2), -- Armor Type
+(35524, 4415, 9), -- Weapon Type
+(35524, 4416, 22), -- Races
 -- Guard
 (35525, 4045, 1), -- Resist Full Magic Attack
-(35525, 4408, 16), -- HP Increase (8x)
-(35525, 4409, 11), -- MP Increase (3x)
-(35525, 4410, 18), -- Extremely Strong P. Atk.
-(35525, 4411, 11), -- Average M. Atk.
-(35525, 4412, 11), -- Average P. Def.
-(35525, 4413, 11), -- Average M. Def.
-(35525, 4414, 2), -- Standard Type
-(35525, 4415, 11), -- Spears
-(35525, 4416, 22), -- Defending Army
+(35525, 4408, 16), -- HP Modifiers
+(35525, 4409, 11), -- MP Modifiers
+(35525, 4410, 18), -- P. Atk. Modifiers
+(35525, 4411, 11), -- M. Atk. Modifiers
+(35525, 4412, 11), -- P. Def. Modifiers
+(35525, 4413, 11), -- M. Def. Modifiers
+(35525, 4414, 2), -- Armor Type
+(35525, 4415, 11), -- Weapon Type
+(35525, 4416, 22), -- Races
 -- Guard
 (35526, 4045, 1), -- Resist Full Magic Attack
-(35526, 4408, 16), -- HP Increase (8x)
-(35526, 4409, 11), -- MP Increase (3x)
-(35526, 4410, 18), -- Extremely Strong P. Atk.
-(35526, 4411, 11), -- Average M. Atk.
-(35526, 4412, 11), -- Average P. Def.
-(35526, 4413, 11), -- Average M. Def.
-(35526, 4414, 2), -- Standard Type
-(35526, 4415, 3), -- One-handed Sword
-(35526, 4416, 22), -- Defending Army
+(35526, 4408, 16), -- HP Modifiers
+(35526, 4409, 11), -- MP Modifiers
+(35526, 4410, 18), -- P. Atk. Modifiers
+(35526, 4411, 11), -- M. Atk. Modifiers
+(35526, 4412, 11), -- P. Def. Modifiers
+(35526, 4413, 11), -- M. Def. Modifiers
+(35526, 4414, 2), -- Armor Type
+(35526, 4415, 3), -- Weapon Type
+(35526, 4416, 22), -- Races
 -- Guard
 (35527, 4045, 1), -- Resist Full Magic Attack
-(35527, 4408, 16), -- HP Increase (8x)
-(35527, 4409, 11), -- MP Increase (3x)
-(35527, 4410, 18), -- Extremely Strong P. Atk.
-(35527, 4411, 11), -- Average M. Atk.
-(35527, 4412, 11), -- Average P. Def.
-(35527, 4413, 11), -- Average M. Def.
-(35527, 4414, 2), -- Standard Type
-(35527, 4415, 9), -- Bows
-(35527, 4416, 22), -- Defending Army
+(35527, 4408, 16), -- HP Modifiers
+(35527, 4409, 11), -- MP Modifiers
+(35527, 4410, 18), -- P. Atk. Modifiers
+(35527, 4411, 11), -- M. Atk. Modifiers
+(35527, 4412, 11), -- P. Def. Modifiers
+(35527, 4413, 11), -- M. Def. Modifiers
+(35527, 4414, 2), -- Armor Type
+(35527, 4415, 9), -- Weapon Type
+(35527, 4416, 22), -- Races
 -- Guard
 (35528, 4045, 1), -- Resist Full Magic Attack
-(35528, 4408, 16), -- HP Increase (8x)
-(35528, 4409, 11), -- MP Increase (3x)
-(35528, 4410, 18), -- Extremely Strong P. Atk.
-(35528, 4411, 11), -- Average M. Atk.
-(35528, 4412, 11), -- Average P. Def.
-(35528, 4413, 11), -- Average M. Def.
-(35528, 4414, 2), -- Standard Type
-(35528, 4415, 11), -- Spears
-(35528, 4416, 22), -- Defending Army
+(35528, 4408, 16), -- HP Modifiers
+(35528, 4409, 11), -- MP Modifiers
+(35528, 4410, 18), -- P. Atk. Modifiers
+(35528, 4411, 11), -- M. Atk. Modifiers
+(35528, 4412, 11), -- P. Def. Modifiers
+(35528, 4413, 11), -- M. Def. Modifiers
+(35528, 4414, 2), -- Armor Type
+(35528, 4415, 11), -- Weapon Type
+(35528, 4416, 22), -- Races
 -- Guard
 (35529, 4045, 1), -- Resist Full Magic Attack
-(35529, 4408, 16), -- HP Increase (8x)
-(35529, 4409, 11), -- MP Increase (3x)
-(35529, 4410, 18), -- Extremely Strong P. Atk.
-(35529, 4411, 11), -- Average M. Atk.
-(35529, 4412, 11), -- Average P. Def.
-(35529, 4413, 11), -- Average M. Def.
-(35529, 4414, 2), -- Standard Type
-(35529, 4415, 3), -- One-handed Sword
-(35529, 4416, 22), -- Defending Army
+(35529, 4408, 16), -- HP Modifiers
+(35529, 4409, 11), -- MP Modifiers
+(35529, 4410, 18), -- P. Atk. Modifiers
+(35529, 4411, 11), -- M. Atk. Modifiers
+(35529, 4412, 11), -- P. Def. Modifiers
+(35529, 4413, 11), -- M. Def. Modifiers
+(35529, 4414, 2), -- Armor Type
+(35529, 4415, 3), -- Weapon Type
+(35529, 4416, 22), -- Races
 -- Guard
 (35530, 4045, 1), -- Resist Full Magic Attack
-(35530, 4408, 16), -- HP Increase (8x)
-(35530, 4409, 11), -- MP Increase (3x)
-(35530, 4410, 18), -- Extremely Strong P. Atk.
-(35530, 4411, 11), -- Average M. Atk.
-(35530, 4412, 11), -- Average P. Def.
-(35530, 4413, 11), -- Average M. Def.
-(35530, 4414, 2), -- Standard Type
-(35530, 4415, 9), -- Bows
-(35530, 4416, 22), -- Defending Army
+(35530, 4408, 16), -- HP Modifiers
+(35530, 4409, 11), -- MP Modifiers
+(35530, 4410, 18), -- P. Atk. Modifiers
+(35530, 4411, 11), -- M. Atk. Modifiers
+(35530, 4412, 11), -- P. Def. Modifiers
+(35530, 4413, 11), -- M. Def. Modifiers
+(35530, 4414, 2), -- Armor Type
+(35530, 4415, 9), -- Weapon Type
+(35530, 4416, 22), -- Races
 -- Royal Knight
 (35531, 4045, 1), -- Resist Full Magic Attack
-(35531, 4408, 16), -- HP Increase (8x)
-(35531, 4409, 11), -- MP Increase (3x)
-(35531, 4410, 18), -- Extremely Strong P. Atk.
-(35531, 4411, 11), -- Average M. Atk.
-(35531, 4412, 11), -- Average P. Def.
-(35531, 4413, 11), -- Average M. Def.
-(35531, 4414, 2), -- Standard Type
-(35531, 4415, 3), -- One-handed Sword
-(35531, 4416, 22), -- Defending Army
+(35531, 4408, 16), -- HP Modifiers
+(35531, 4409, 11), -- MP Modifiers
+(35531, 4410, 18), -- P. Atk. Modifiers
+(35531, 4411, 11), -- M. Atk. Modifiers
+(35531, 4412, 11), -- P. Def. Modifiers
+(35531, 4413, 11), -- M. Def. Modifiers
+(35531, 4414, 2), -- Armor Type
+(35531, 4415, 3), -- Weapon Type
+(35531, 4416, 22), -- Races
 -- Court Sorcerer
 (35532, 4026, 1), -- Gludio Flame
 (35532, 4045, 1), -- Resist Full Magic Attack
-(35532, 4408, 16), -- HP Increase (8x)
-(35532, 4409, 11), -- MP Increase (3x)
-(35532, 4410, 18), -- Extremely Strong P. Atk.
-(35532, 4411, 11), -- Average M. Atk.
-(35532, 4412, 11), -- Average P. Def.
-(35532, 4413, 11), -- Average M. Def.
-(35532, 4414, 2), -- Standard Type
-(35532, 4415, 5), -- Blunt Weapons
-(35532, 4416, 22), -- Defending Army
+(35532, 4408, 16), -- HP Modifiers
+(35532, 4409, 11), -- MP Modifiers
+(35532, 4410, 18), -- P. Atk. Modifiers
+(35532, 4411, 11), -- M. Atk. Modifiers
+(35532, 4412, 11), -- P. Def. Modifiers
+(35532, 4413, 11), -- M. Def. Modifiers
+(35532, 4414, 2), -- Armor Type
+(35532, 4415, 5), -- Weapon Type
+(35532, 4416, 22), -- Races
 -- Court Sorcerer
 (35533, 4027, 1), -- Gludio Heal
 (35533, 4045, 1), -- Resist Full Magic Attack
-(35533, 4408, 16), -- HP Increase (8x)
-(35533, 4409, 11), -- MP Increase (3x)
-(35533, 4410, 18), -- Extremely Strong P. Atk.
-(35533, 4411, 11), -- Average M. Atk.
-(35533, 4412, 11), -- Average P. Def.
-(35533, 4413, 11), -- Average M. Def.
-(35533, 4414, 2), -- Standard Type
-(35533, 4415, 5), -- Blunt Weapons
-(35533, 4416, 22), -- Defending Army
+(35533, 4408, 16), -- HP Modifiers
+(35533, 4409, 11), -- MP Modifiers
+(35533, 4410, 18), -- P. Atk. Modifiers
+(35533, 4411, 11), -- M. Atk. Modifiers
+(35533, 4412, 11), -- P. Def. Modifiers
+(35533, 4413, 11), -- M. Def. Modifiers
+(35533, 4414, 2), -- Armor Type
+(35533, 4415, 5), -- Weapon Type
+(35533, 4416, 22), -- Races
 -- Court Guard
 (35534, 4045, 1), -- Resist Full Magic Attack
-(35534, 4408, 16), -- HP Increase (8x)
-(35534, 4409, 11), -- MP Increase (3x)
-(35534, 4410, 18), -- Extremely Strong P. Atk.
-(35534, 4411, 11), -- Average M. Atk.
-(35534, 4412, 11), -- Average P. Def.
-(35534, 4413, 11), -- Average M. Def.
-(35534, 4414, 2), -- Standard Type
-(35534, 4415, 11), -- Spears
-(35534, 4416, 22), -- Defending Army
+(35534, 4408, 16), -- HP Modifiers
+(35534, 4409, 11), -- MP Modifiers
+(35534, 4410, 18), -- P. Atk. Modifiers
+(35534, 4411, 11), -- M. Atk. Modifiers
+(35534, 4412, 11), -- P. Def. Modifiers
+(35534, 4413, 11), -- M. Def. Modifiers
+(35534, 4414, 2), -- Armor Type
+(35534, 4415, 11), -- Weapon Type
+(35534, 4416, 22), -- Races
 -- Guard
 (35535, 4045, 1), -- Resist Full Magic Attack
-(35535, 4408, 16), -- HP Increase (8x)
-(35535, 4409, 11), -- MP Increase (3x)
-(35535, 4410, 18), -- Extremely Strong P. Atk.
-(35535, 4411, 11), -- Average M. Atk.
-(35535, 4412, 11), -- Average P. Def.
-(35535, 4413, 11), -- Average M. Def.
-(35535, 4414, 2), -- Standard Type
-(35535, 4415, 11), -- Spears
-(35535, 4416, 22), -- Defending Army
+(35535, 4408, 16), -- HP Modifiers
+(35535, 4409, 11), -- MP Modifiers
+(35535, 4410, 18), -- P. Atk. Modifiers
+(35535, 4411, 11), -- M. Atk. Modifiers
+(35535, 4412, 11), -- P. Def. Modifiers
+(35535, 4413, 11), -- M. Def. Modifiers
+(35535, 4414, 2), -- Armor Type
+(35535, 4415, 11), -- Weapon Type
+(35535, 4416, 22), -- Races
 -- Guard
 (35536, 4045, 1), -- Resist Full Magic Attack
-(35536, 4408, 16), -- HP Increase (8x)
-(35536, 4409, 11), -- MP Increase (3x)
-(35536, 4410, 18), -- Extremely Strong P. Atk.
-(35536, 4411, 11), -- Average M. Atk.
-(35536, 4412, 11), -- Average P. Def.
-(35536, 4413, 11), -- Average M. Def.
-(35536, 4414, 2), -- Standard Type
-(35536, 4415, 3), -- One-handed Sword
-(35536, 4416, 22), -- Defending Army
+(35536, 4408, 16), -- HP Modifiers
+(35536, 4409, 11), -- MP Modifiers
+(35536, 4410, 18), -- P. Atk. Modifiers
+(35536, 4411, 11), -- M. Atk. Modifiers
+(35536, 4412, 11), -- P. Def. Modifiers
+(35536, 4413, 11), -- M. Def. Modifiers
+(35536, 4414, 2), -- Armor Type
+(35536, 4415, 3), -- Weapon Type
+(35536, 4416, 22), -- Races
 -- Guard
 (35537, 4045, 1), -- Resist Full Magic Attack
-(35537, 4408, 16), -- HP Increase (8x)
-(35537, 4409, 11), -- MP Increase (3x)
-(35537, 4410, 18), -- Extremely Strong P. Atk.
-(35537, 4411, 11), -- Average M. Atk.
-(35537, 4412, 11), -- Average P. Def.
-(35537, 4413, 11), -- Average M. Def.
-(35537, 4414, 2), -- Standard Type
-(35537, 4415, 9), -- Bows
-(35537, 4416, 22), -- Defending Army
+(35537, 4408, 16), -- HP Modifiers
+(35537, 4409, 11), -- MP Modifiers
+(35537, 4410, 18), -- P. Atk. Modifiers
+(35537, 4411, 11), -- M. Atk. Modifiers
+(35537, 4412, 11), -- P. Def. Modifiers
+(35537, 4413, 11), -- M. Def. Modifiers
+(35537, 4414, 2), -- Armor Type
+(35537, 4415, 9), -- Weapon Type
+(35537, 4416, 22), -- Races
 -- Guard
 (35538, 4045, 1), -- Resist Full Magic Attack
-(35538, 4408, 16), -- HP Increase (8x)
-(35538, 4409, 11), -- MP Increase (3x)
-(35538, 4410, 18), -- Extremely Strong P. Atk.
-(35538, 4411, 11), -- Average M. Atk.
-(35538, 4412, 11), -- Average P. Def.
-(35538, 4413, 11), -- Average M. Def.
-(35538, 4414, 2), -- Standard Type
-(35538, 4415, 11), -- Spears
-(35538, 4416, 22), -- Defending Army
+(35538, 4408, 16), -- HP Modifiers
+(35538, 4409, 11), -- MP Modifiers
+(35538, 4410, 18), -- P. Atk. Modifiers
+(35538, 4411, 11), -- M. Atk. Modifiers
+(35538, 4412, 11), -- P. Def. Modifiers
+(35538, 4413, 11), -- M. Def. Modifiers
+(35538, 4414, 2), -- Armor Type
+(35538, 4415, 11), -- Weapon Type
+(35538, 4416, 22), -- Races
 -- Guard
 (35539, 4045, 1), -- Resist Full Magic Attack
-(35539, 4408, 16), -- HP Increase (8x)
-(35539, 4409, 11), -- MP Increase (3x)
-(35539, 4410, 18), -- Extremely Strong P. Atk.
-(35539, 4411, 11), -- Average M. Atk.
-(35539, 4412, 11), -- Average P. Def.
-(35539, 4413, 11), -- Average M. Def.
-(35539, 4414, 2), -- Standard Type
-(35539, 4415, 3), -- One-handed Sword
-(35539, 4416, 22), -- Defending Army
+(35539, 4408, 16), -- HP Modifiers
+(35539, 4409, 11), -- MP Modifiers
+(35539, 4410, 18), -- P. Atk. Modifiers
+(35539, 4411, 11), -- M. Atk. Modifiers
+(35539, 4412, 11), -- P. Def. Modifiers
+(35539, 4413, 11), -- M. Def. Modifiers
+(35539, 4414, 2), -- Armor Type
+(35539, 4415, 3), -- Weapon Type
+(35539, 4416, 22), -- Races
 -- Guard
 (35540, 4045, 1), -- Resist Full Magic Attack
-(35540, 4408, 16), -- HP Increase (8x)
-(35540, 4409, 11), -- MP Increase (3x)
-(35540, 4410, 18), -- Extremely Strong P. Atk.
-(35540, 4411, 11), -- Average M. Atk.
-(35540, 4412, 11), -- Average P. Def.
-(35540, 4413, 11), -- Average M. Def.
-(35540, 4414, 2), -- Standard Type
-(35540, 4415, 9), -- Bows
-(35540, 4416, 22), -- Defending Army
+(35540, 4408, 16), -- HP Modifiers
+(35540, 4409, 11), -- MP Modifiers
+(35540, 4410, 18), -- P. Atk. Modifiers
+(35540, 4411, 11), -- M. Atk. Modifiers
+(35540, 4412, 11), -- P. Def. Modifiers
+(35540, 4413, 11), -- M. Def. Modifiers
+(35540, 4414, 2), -- Armor Type
+(35540, 4415, 9), -- Weapon Type
+(35540, 4416, 22), -- Races
 -- Guard
 (35541, 4045, 1), -- Resist Full Magic Attack
-(35541, 4408, 16), -- HP Increase (8x)
-(35541, 4409, 11), -- MP Increase (3x)
-(35541, 4410, 18), -- Extremely Strong P. Atk.
-(35541, 4411, 11), -- Average M. Atk.
-(35541, 4412, 11), -- Average P. Def.
-(35541, 4413, 11), -- Average M. Def.
-(35541, 4414, 2), -- Standard Type
-(35541, 4415, 11), -- Spears
-(35541, 4416, 22), -- Defending Army
+(35541, 4408, 16), -- HP Modifiers
+(35541, 4409, 11), -- MP Modifiers
+(35541, 4410, 18), -- P. Atk. Modifiers
+(35541, 4411, 11), -- M. Atk. Modifiers
+(35541, 4412, 11), -- P. Def. Modifiers
+(35541, 4413, 11), -- M. Def. Modifiers
+(35541, 4414, 2), -- Armor Type
+(35541, 4415, 11), -- Weapon Type
+(35541, 4416, 22), -- Races
 -- Guard
 (35542, 4045, 1), -- Resist Full Magic Attack
-(35542, 4408, 16), -- HP Increase (8x)
-(35542, 4409, 11), -- MP Increase (3x)
-(35542, 4410, 18), -- Extremely Strong P. Atk.
-(35542, 4411, 11), -- Average M. Atk.
-(35542, 4412, 11), -- Average P. Def.
-(35542, 4413, 11), -- Average M. Def.
-(35542, 4414, 2), -- Standard Type
-(35542, 4415, 3), -- One-handed Sword
-(35542, 4416, 22), -- Defending Army
+(35542, 4408, 16), -- HP Modifiers
+(35542, 4409, 11), -- MP Modifiers
+(35542, 4410, 18), -- P. Atk. Modifiers
+(35542, 4411, 11), -- M. Atk. Modifiers
+(35542, 4412, 11), -- P. Def. Modifiers
+(35542, 4413, 11), -- M. Def. Modifiers
+(35542, 4414, 2), -- Armor Type
+(35542, 4415, 3), -- Weapon Type
+(35542, 4416, 22), -- Races
 -- Guard
 (35543, 4045, 1), -- Resist Full Magic Attack
-(35543, 4408, 16), -- HP Increase (8x)
-(35543, 4409, 11), -- MP Increase (3x)
-(35543, 4410, 18), -- Extremely Strong P. Atk.
-(35543, 4411, 11), -- Average M. Atk.
-(35543, 4412, 11), -- Average P. Def.
-(35543, 4413, 11), -- Average M. Def.
-(35543, 4414, 2), -- Standard Type
-(35543, 4415, 9), -- Bows
-(35543, 4416, 22), -- Defending Army
+(35543, 4408, 16), -- HP Modifiers
+(35543, 4409, 11), -- MP Modifiers
+(35543, 4410, 18), -- P. Atk. Modifiers
+(35543, 4411, 11), -- M. Atk. Modifiers
+(35543, 4412, 11), -- P. Def. Modifiers
+(35543, 4413, 11), -- M. Def. Modifiers
+(35543, 4414, 2), -- Armor Type
+(35543, 4415, 9), -- Weapon Type
+(35543, 4416, 22), -- Races
 -- Gatekeeper
 (35544, 4045, 1), -- Resist Full Magic Attack
-(35544, 4408, 1), -- HP Increase (1x)
-(35544, 4409, 1), -- MP Increase (1x)
-(35544, 4410, 11), -- Average P. Atk.
-(35544, 4411, 11), -- Average M. Atk.
-(35544, 4412, 11), -- Average P. Def.
-(35544, 4413, 11), -- Average M. Def.
-(35544, 4414, 2), -- Standard Type
-(35544, 4415, 3), -- One-handed Sword
-(35544, 4416, 23), -- Mercenaries
+(35544, 4408, 1), -- HP Modifiers
+(35544, 4409, 1), -- MP Modifiers
+(35544, 4410, 11), -- P. Atk. Modifiers
+(35544, 4411, 11), -- M. Atk. Modifiers
+(35544, 4412, 11), -- P. Def. Modifiers
+(35544, 4413, 11), -- M. Def. Modifiers
+(35544, 4414, 2), -- Armor Type
+(35544, 4415, 3), -- Weapon Type
+(35544, 4416, 23), -- Races
 -- Gatekeeper
 (35545, 4045, 1), -- Resist Full Magic Attack
-(35545, 4408, 1), -- HP Increase (1x)
-(35545, 4409, 1), -- MP Increase (1x)
-(35545, 4410, 11), -- Average P. Atk.
-(35545, 4411, 11), -- Average M. Atk.
-(35545, 4412, 11), -- Average P. Def.
-(35545, 4413, 11), -- Average M. Def.
-(35545, 4414, 2), -- Standard Type
-(35545, 4415, 3), -- One-handed Sword
-(35545, 4416, 23), -- Mercenaries
+(35545, 4408, 1), -- HP Modifiers
+(35545, 4409, 1), -- MP Modifiers
+(35545, 4410, 11), -- P. Atk. Modifiers
+(35545, 4411, 11), -- M. Atk. Modifiers
+(35545, 4412, 11), -- P. Def. Modifiers
+(35545, 4413, 11), -- M. Def. Modifiers
+(35545, 4414, 2), -- Armor Type
+(35545, 4415, 3), -- Weapon Type
+(35545, 4416, 23), -- Races
 -- Gatekeeper
 (35546, 4045, 1), -- Resist Full Magic Attack
-(35546, 4408, 1), -- HP Increase (1x)
-(35546, 4409, 1), -- MP Increase (1x)
-(35546, 4410, 11), -- Average P. Atk.
-(35546, 4411, 11), -- Average M. Atk.
-(35546, 4412, 11), -- Average P. Def.
-(35546, 4413, 11), -- Average M. Def.
-(35546, 4414, 2), -- Standard Type
-(35546, 4415, 3), -- One-handed Sword
-(35546, 4416, 23), -- Mercenaries
+(35546, 4408, 1), -- HP Modifiers
+(35546, 4409, 1), -- MP Modifiers
+(35546, 4410, 11), -- P. Atk. Modifiers
+(35546, 4411, 11), -- M. Atk. Modifiers
+(35546, 4412, 11), -- P. Def. Modifiers
+(35546, 4413, 11), -- M. Def. Modifiers
+(35546, 4414, 2), -- Armor Type
+(35546, 4415, 3), -- Weapon Type
+(35546, 4416, 23), -- Races
 -- Mass Gatekeeper
 (35547, 4045, 1), -- Resist Full Magic Attack
-(35547, 4408, 1), -- HP Increase (1x)
-(35547, 4409, 1), -- MP Increase (1x)
-(35547, 4410, 11), -- Average P. Atk.
-(35547, 4411, 11), -- Average M. Atk.
-(35547, 4412, 11), -- Average P. Def.
-(35547, 4413, 11), -- Average M. Def.
-(35547, 4414, 2), -- Standard Type
-(35547, 4415, 3), -- One-handed Sword
-(35547, 4416, 14), -- Humans
+(35547, 4408, 1), -- HP Modifiers
+(35547, 4409, 1), -- MP Modifiers
+(35547, 4410, 11), -- P. Atk. Modifiers
+(35547, 4411, 11), -- M. Atk. Modifiers
+(35547, 4412, 11), -- P. Def. Modifiers
+(35547, 4413, 11), -- M. Def. Modifiers
+(35547, 4414, 2), -- Armor Type
+(35547, 4415, 3), -- Weapon Type
+(35547, 4416, 14), -- Races
 -- Outer Doorman
 (35548, 4045, 1), -- Resist Full Magic Attack
-(35548, 4408, 1), -- HP Increase (1x)
-(35548, 4409, 1), -- MP Increase (1x)
-(35548, 4410, 11), -- Average P. Atk.
-(35548, 4411, 11), -- Average M. Atk.
-(35548, 4412, 11), -- Average P. Def.
-(35548, 4413, 11), -- Average M. Def.
-(35548, 4414, 2), -- Standard Type
-(35548, 4415, 3), -- One-handed Sword
-(35548, 4416, 14), -- Humans
+(35548, 4408, 1), -- HP Modifiers
+(35548, 4409, 1), -- MP Modifiers
+(35548, 4410, 11), -- P. Atk. Modifiers
+(35548, 4411, 11), -- M. Atk. Modifiers
+(35548, 4412, 11), -- P. Def. Modifiers
+(35548, 4413, 11), -- M. Def. Modifiers
+(35548, 4414, 2), -- Armor Type
+(35548, 4415, 3), -- Weapon Type
+(35548, 4416, 14), -- Races
 -- Inner Doorman
 (35549, 4045, 1), -- Resist Full Magic Attack
-(35549, 4408, 1), -- HP Increase (1x)
-(35549, 4409, 1), -- MP Increase (1x)
-(35549, 4410, 11), -- Average P. Atk.
-(35549, 4411, 11), -- Average M. Atk.
-(35549, 4412, 11), -- Average P. Def.
-(35549, 4413, 11), -- Average M. Def.
-(35549, 4414, 2), -- Standard Type
-(35549, 4415, 3), -- One-handed Sword
-(35549, 4416, 14), -- Humans
+(35549, 4408, 1), -- HP Modifiers
+(35549, 4409, 1), -- MP Modifiers
+(35549, 4410, 11), -- P. Atk. Modifiers
+(35549, 4411, 11), -- M. Atk. Modifiers
+(35549, 4412, 11), -- P. Def. Modifiers
+(35549, 4413, 11), -- M. Def. Modifiers
+(35549, 4414, 2), -- Armor Type
+(35549, 4415, 3), -- Weapon Type
+(35549, 4416, 14), -- Races
 -- Inner Doorman
 (35550, 4045, 1), -- Resist Full Magic Attack
-(35550, 4408, 1), -- HP Increase (1x)
-(35550, 4409, 1), -- MP Increase (1x)
-(35550, 4410, 11), -- Average P. Atk.
-(35550, 4411, 11), -- Average M. Atk.
-(35550, 4412, 11), -- Average P. Def.
-(35550, 4413, 11), -- Average M. Def.
-(35550, 4414, 2), -- Standard Type
-(35550, 4415, 3), -- One-handed Sword
-(35550, 4416, 14), -- Humans
+(35550, 4408, 1), -- HP Modifiers
+(35550, 4409, 1), -- MP Modifiers
+(35550, 4410, 11), -- P. Atk. Modifiers
+(35550, 4411, 11), -- M. Atk. Modifiers
+(35550, 4412, 11), -- P. Def. Modifiers
+(35550, 4413, 11), -- M. Def. Modifiers
+(35550, 4414, 2), -- Armor Type
+(35550, 4415, 3), -- Weapon Type
+(35550, 4416, 14), -- Races
 -- Doorman  
 (35551, 4045, 1), -- Resist Full Magic Attack
-(35551, 4408, 1), -- HP Increase (1x)
-(35551, 4409, 1), -- MP Increase (1x)
-(35551, 4410, 11), -- Average P. Atk.
-(35551, 4411, 11), -- Average M. Atk.
-(35551, 4412, 11), -- Average P. Def.
-(35551, 4413, 11), -- Average M. Def.
-(35551, 4414, 2), -- Standard Type
-(35551, 4415, 3), -- One-handed Sword
-(35551, 4416, 14), -- Humans
+(35551, 4408, 1), -- HP Modifiers
+(35551, 4409, 1), -- MP Modifiers
+(35551, 4410, 11), -- P. Atk. Modifiers
+(35551, 4411, 11), -- M. Atk. Modifiers
+(35551, 4412, 11), -- P. Def. Modifiers
+(35551, 4413, 11), -- M. Def. Modifiers
+(35551, 4414, 2), -- Armor Type
+(35551, 4415, 3), -- Weapon Type
+(35551, 4416, 14), -- Races
 -- Doorman  
 (35552, 4045, 1), -- Resist Full Magic Attack
-(35552, 4408, 1), -- HP Increase (1x)
-(35552, 4409, 1), -- MP Increase (1x)
-(35552, 4410, 11), -- Average P. Atk.
-(35552, 4411, 11), -- Average M. Atk.
-(35552, 4412, 11), -- Average P. Def.
-(35552, 4413, 11), -- Average M. Def.
-(35552, 4414, 2), -- Standard Type
-(35552, 4415, 3), -- One-handed Sword
-(35552, 4416, 14), -- Humans
+(35552, 4408, 1), -- HP Modifiers
+(35552, 4409, 1), -- MP Modifiers
+(35552, 4410, 11), -- P. Atk. Modifiers
+(35552, 4411, 11), -- M. Atk. Modifiers
+(35552, 4412, 11), -- P. Def. Modifiers
+(35552, 4413, 11), -- M. Def. Modifiers
+(35552, 4414, 2), -- Armor Type
+(35552, 4415, 3), -- Weapon Type
+(35552, 4416, 14), -- Races
 -- Blacksmith
 (35553, 4045, 1), -- Resist Full Magic Attack
-(35553, 4408, 1), -- HP Increase (1x)
-(35553, 4409, 1), -- MP Increase (1x)
-(35553, 4410, 11), -- Average P. Atk.
-(35553, 4411, 11), -- Average M. Atk.
-(35553, 4412, 11), -- Average P. Def.
-(35553, 4413, 11), -- Average M. Def.
-(35553, 4414, 2), -- Standard Type
-(35553, 4415, 3), -- One-handed Sword
-(35553, 4416, 18), -- Dwarves
+(35553, 4408, 1), -- HP Modifiers
+(35553, 4409, 1), -- MP Modifiers
+(35553, 4410, 11), -- P. Atk. Modifiers
+(35553, 4411, 11), -- M. Atk. Modifiers
+(35553, 4412, 11), -- P. Def. Modifiers
+(35553, 4413, 11), -- M. Def. Modifiers
+(35553, 4414, 2), -- Armor Type
+(35553, 4415, 3), -- Weapon Type
+(35553, 4416, 18), -- Races
 -- Warehouse Keeper
 (35554, 4045, 1), -- Resist Full Magic Attack
-(35554, 4408, 1), -- HP Increase (1x)
-(35554, 4409, 1), -- MP Increase (1x)
-(35554, 4410, 11), -- Average P. Atk.
-(35554, 4411, 11), -- Average M. Atk.
-(35554, 4412, 11), -- Average P. Def.
-(35554, 4413, 11), -- Average M. Def.
-(35554, 4414, 2), -- Standard Type
-(35554, 4415, 3), -- One-handed Sword
-(35554, 4416, 18), -- Dwarves
+(35554, 4408, 1), -- HP Modifiers
+(35554, 4409, 1), -- MP Modifiers
+(35554, 4410, 11), -- P. Atk. Modifiers
+(35554, 4411, 11), -- M. Atk. Modifiers
+(35554, 4412, 11), -- P. Def. Modifiers
+(35554, 4413, 11), -- M. Def. Modifiers
+(35554, 4414, 2), -- Armor Type
+(35554, 4415, 3), -- Weapon Type
+(35554, 4416, 18), -- Races
 -- August
 (35555, 4045, 1), -- Resist Full Magic Attack
-(35555, 4408, 1), -- HP Increase (1x)
-(35555, 4409, 1), -- MP Increase (1x)
-(35555, 4410, 11), -- Average P. Atk.
-(35555, 4411, 11), -- Average M. Atk.
-(35555, 4412, 11), -- Average P. Def.
-(35555, 4413, 11), -- Average M. Def.
-(35555, 4414, 2), -- Standard Type
-(35555, 4415, 3), -- One-handed Sword
-(35555, 4416, 14), -- Humans
+(35555, 4408, 1), -- HP Modifiers
+(35555, 4409, 1), -- MP Modifiers
+(35555, 4410, 11), -- P. Atk. Modifiers
+(35555, 4411, 11), -- M. Atk. Modifiers
+(35555, 4412, 11), -- P. Def. Modifiers
+(35555, 4413, 11), -- M. Def. Modifiers
+(35555, 4414, 2), -- Armor Type
+(35555, 4415, 3), -- Weapon Type
+(35555, 4416, 14), -- Races
 -- Gallic
 (35556, 4045, 1), -- Resist Full Magic Attack
-(35556, 4408, 1), -- HP Increase (1x)
-(35556, 4409, 1), -- MP Increase (1x)
-(35556, 4410, 11), -- Average P. Atk.
-(35556, 4411, 11), -- Average M. Atk.
-(35556, 4412, 11), -- Average P. Def.
-(35556, 4413, 11), -- Average M. Def.
-(35556, 4414, 2), -- Standard Type
-(35556, 4415, 3), -- One-handed Sword
-(35556, 4416, 14), -- Humans
+(35556, 4408, 1), -- HP Modifiers
+(35556, 4409, 1), -- MP Modifiers
+(35556, 4410, 11), -- P. Atk. Modifiers
+(35556, 4411, 11), -- M. Atk. Modifiers
+(35556, 4412, 11), -- P. Def. Modifiers
+(35556, 4413, 11), -- M. Def. Modifiers
+(35556, 4414, 2), -- Armor Type
+(35556, 4415, 3), -- Weapon Type
+(35556, 4416, 14), -- Races
 -- Kendrew
 (35557, 4045, 1), -- Resist Full Magic Attack
-(35557, 4408, 1), -- HP Increase (1x)
-(35557, 4409, 1), -- MP Increase (1x)
-(35557, 4410, 11), -- Average P. Atk.
-(35557, 4411, 11), -- Average M. Atk.
-(35557, 4412, 11), -- Average P. Def.
-(35557, 4413, 11), -- Average M. Def.
-(35557, 4414, 2), -- Standard Type
-(35557, 4415, 3), -- One-handed Sword
-(35557, 4416, 14), -- Humans
+(35557, 4408, 1), -- HP Modifiers
+(35557, 4409, 1), -- MP Modifiers
+(35557, 4410, 11), -- P. Atk. Modifiers
+(35557, 4411, 11), -- M. Atk. Modifiers
+(35557, 4412, 11), -- P. Def. Modifiers
+(35557, 4413, 11), -- M. Def. Modifiers
+(35557, 4414, 2), -- Armor Type
+(35557, 4415, 3), -- Weapon Type
+(35557, 4416, 14), -- Races
 -- Manor Manager
 (35558, 4045, 1), -- Resist Full Magic Attack
-(35558, 4408, 1), -- HP Increase (1x)
-(35558, 4409, 1), -- MP Increase (1x)
-(35558, 4410, 11), -- Average P. Atk.
-(35558, 4411, 11), -- Average M. Atk.
-(35558, 4412, 11), -- Average P. Def.
-(35558, 4413, 11), -- Average M. Def.
-(35558, 4414, 2), -- Standard Type
-(35558, 4415, 3), -- One-handed Sword
-(35558, 4416, 14), -- Humans
+(35558, 4408, 1), -- HP Modifiers
+(35558, 4409, 1), -- MP Modifiers
+(35558, 4410, 11), -- P. Atk. Modifiers
+(35558, 4411, 11), -- M. Atk. Modifiers
+(35558, 4412, 11), -- P. Def. Modifiers
+(35558, 4413, 11), -- M. Def. Modifiers
+(35558, 4414, 2), -- Armor Type
+(35558, 4415, 3), -- Weapon Type
+(35558, 4416, 14), -- Races
 -- Daguerre
 (35559, 4045, 1), -- Resist Full Magic Attack
-(35559, 4408, 1), -- HP Increase (1x)
-(35559, 4409, 1), -- MP Increase (1x)
-(35559, 4410, 11), -- Average P. Atk.
-(35559, 4411, 11), -- Average M. Atk.
-(35559, 4412, 11), -- Average P. Def.
-(35559, 4413, 11), -- Average M. Def.
-(35559, 4414, 2), -- Standard Type
-(35559, 4415, 3), -- One-handed Sword
-(35559, 4416, 14), -- Humans
+(35559, 4408, 1), -- HP Modifiers
+(35559, 4409, 1), -- MP Modifiers
+(35559, 4410, 11), -- P. Atk. Modifiers
+(35559, 4411, 11), -- M. Atk. Modifiers
+(35559, 4412, 11), -- P. Def. Modifiers
+(35559, 4413, 11), -- M. Def. Modifiers
+(35559, 4414, 2), -- Armor Type
+(35559, 4415, 3), -- Weapon Type
+(35559, 4416, 14), -- Races
 -- Mass Gatekeeper
 (35560, 4045, 1), -- Resist Full Magic Attack
-(35560, 4408, 1), -- HP Increase (1x)
-(35560, 4409, 1), -- MP Increase (1x)
-(35560, 4410, 11), -- Average P. Atk.
-(35560, 4411, 11), -- Average M. Atk.
-(35560, 4412, 11), -- Average P. Def.
-(35560, 4413, 11), -- Average M. Def.
-(35560, 4414, 2), -- Standard Type
-(35560, 4415, 3), -- One-handed Sword
-(35560, 4416, 6), -- Humanoids
+(35560, 4408, 1), -- HP Modifiers
+(35560, 4409, 1), -- MP Modifiers
+(35560, 4410, 11), -- P. Atk. Modifiers
+(35560, 4411, 11), -- M. Atk. Modifiers
+(35560, 4412, 11), -- P. Def. Modifiers
+(35560, 4413, 11), -- M. Def. Modifiers
+(35560, 4414, 2), -- Armor Type
+(35560, 4415, 3), -- Weapon Type
+(35560, 4416, 6), -- Races
 -- Mass Gatekeeper
 (35561, 4045, 1), -- Resist Full Magic Attack
-(35561, 4408, 1), -- HP Increase (1x)
-(35561, 4409, 1), -- MP Increase (1x)
-(35561, 4410, 11), -- Average P. Atk.
-(35561, 4411, 11), -- Average M. Atk.
-(35561, 4412, 11), -- Average P. Def.
-(35561, 4413, 11), -- Average M. Def.
-(35561, 4414, 2), -- Standard Type
-(35561, 4415, 3), -- One-handed Sword
-(35561, 4416, 6), -- Humanoids
+(35561, 4408, 1), -- HP Modifiers
+(35561, 4409, 1), -- MP Modifiers
+(35561, 4410, 11), -- P. Atk. Modifiers
+(35561, 4411, 11), -- M. Atk. Modifiers
+(35561, 4412, 11), -- P. Def. Modifiers
+(35561, 4413, 11), -- M. Def. Modifiers
+(35561, 4414, 2), -- Armor Type
+(35561, 4415, 3), -- Weapon Type
+(35561, 4416, 6), -- Races
 -- Mass Gatekeeper
 (35562, 4045, 1), -- Resist Full Magic Attack
-(35562, 4408, 1), -- HP Increase (1x)
-(35562, 4409, 1), -- MP Increase (1x)
-(35562, 4410, 11), -- Average P. Atk.
-(35562, 4411, 11), -- Average M. Atk.
-(35562, 4412, 11), -- Average P. Def.
-(35562, 4413, 11), -- Average M. Def.
-(35562, 4414, 2), -- Standard Type
-(35562, 4415, 3), -- One-handed Sword
-(35562, 4416, 6), -- Humanoids
+(35562, 4408, 1), -- HP Modifiers
+(35562, 4409, 1), -- MP Modifiers
+(35562, 4410, 11), -- P. Atk. Modifiers
+(35562, 4411, 11), -- M. Atk. Modifiers
+(35562, 4412, 11), -- P. Def. Modifiers
+(35562, 4413, 11), -- M. Def. Modifiers
+(35562, 4414, 2), -- Armor Type
+(35562, 4415, 3), -- Weapon Type
+(35562, 4416, 6), -- Races
 -- Mass Gatekeeper
 (35563, 4045, 1), -- Resist Full Magic Attack
-(35563, 4408, 1), -- HP Increase (1x)
-(35563, 4409, 1), -- MP Increase (1x)
-(35563, 4410, 11), -- Average P. Atk.
-(35563, 4411, 11), -- Average M. Atk.
-(35563, 4412, 11), -- Average P. Def.
-(35563, 4413, 11), -- Average M. Def.
-(35563, 4414, 2), -- Standard Type
-(35563, 4415, 3), -- One-handed Sword
-(35563, 4416, 6), -- Humanoids
+(35563, 4408, 1), -- HP Modifiers
+(35563, 4409, 1), -- MP Modifiers
+(35563, 4410, 11), -- P. Atk. Modifiers
+(35563, 4411, 11), -- M. Atk. Modifiers
+(35563, 4412, 11), -- P. Def. Modifiers
+(35563, 4413, 11), -- M. Def. Modifiers
+(35563, 4414, 2), -- Armor Type
+(35563, 4415, 3), -- Weapon Type
+(35563, 4416, 6), -- Races
 -- Mass Gatekeeper
 (35564, 4045, 1), -- Resist Full Magic Attack
-(35564, 4408, 1), -- HP Increase (1x)
-(35564, 4409, 1), -- MP Increase (1x)
-(35564, 4410, 11), -- Average P. Atk.
-(35564, 4411, 11), -- Average M. Atk.
-(35564, 4412, 11), -- Average P. Def.
-(35564, 4413, 11), -- Average M. Def.
-(35564, 4414, 2), -- Standard Type
-(35564, 4415, 3), -- One-handed Sword
-(35564, 4416, 6), -- Humanoids
+(35564, 4408, 1), -- HP Modifiers
+(35564, 4409, 1), -- MP Modifiers
+(35564, 4410, 11), -- P. Atk. Modifiers
+(35564, 4411, 11), -- M. Atk. Modifiers
+(35564, 4412, 11), -- P. Def. Modifiers
+(35564, 4413, 11), -- M. Def. Modifiers
+(35564, 4414, 2), -- Armor Type
+(35564, 4415, 3), -- Weapon Type
+(35564, 4416, 6), -- Races
 -- Mass Gatekeeper
 (35565, 4045, 1), -- Resist Full Magic Attack
-(35565, 4408, 1), -- HP Increase (1x)
-(35565, 4409, 1), -- MP Increase (1x)
-(35565, 4410, 11), -- Average P. Atk.
-(35565, 4411, 11), -- Average M. Atk.
-(35565, 4412, 11), -- Average P. Def.
-(35565, 4413, 11), -- Average M. Def.
-(35565, 4414, 2), -- Standard Type
-(35565, 4415, 3), -- One-handed Sword
-(35565, 4416, 6), -- Humanoids
+(35565, 4408, 1), -- HP Modifiers
+(35565, 4409, 1), -- MP Modifiers
+(35565, 4410, 11), -- P. Atk. Modifiers
+(35565, 4411, 11), -- M. Atk. Modifiers
+(35565, 4412, 11), -- P. Def. Modifiers
+(35565, 4413, 11), -- M. Def. Modifiers
+(35565, 4414, 2), -- Armor Type
+(35565, 4415, 3), -- Weapon Type
+(35565, 4416, 6), -- Races
 -- Ronald
 (35566, 4045, 1), -- Resist Full Magic Attack
-(35566, 4408, 1), -- HP Increase (1x)
-(35566, 4409, 1), -- MP Increase (1x)
-(35566, 4410, 11), -- Average P. Atk.
-(35566, 4411, 11), -- Average M. Atk.
-(35566, 4412, 11), -- Average P. Def.
-(35566, 4413, 11), -- Average M. Def.
-(35566, 4414, 2), -- Standard Type
-(35566, 4415, 3), -- One-handed Sword
-(35566, 4416, 14), -- Humans
+(35566, 4408, 1), -- HP Modifiers
+(35566, 4409, 1), -- MP Modifiers
+(35566, 4410, 11), -- P. Atk. Modifiers
+(35566, 4411, 11), -- M. Atk. Modifiers
+(35566, 4412, 11), -- P. Def. Modifiers
+(35566, 4413, 11), -- M. Def. Modifiers
+(35566, 4414, 2), -- Armor Type
+(35566, 4415, 3), -- Weapon Type
+(35566, 4416, 14), -- Races
 -- Emil
 (35567, 4045, 1), -- Resist Full Magic Attack
-(35567, 4408, 1), -- HP Increase (1x)
-(35567, 4409, 1), -- MP Increase (1x)
-(35567, 4410, 11), -- Average P. Atk.
-(35567, 4411, 11), -- Average M. Atk.
-(35567, 4412, 11), -- Average P. Def.
-(35567, 4413, 11), -- Average M. Def.
-(35567, 4414, 2), -- Standard Type
-(35567, 4415, 3), -- One-handed Sword
-(35567, 4416, 14), -- Humans
+(35567, 4408, 1), -- HP Modifiers
+(35567, 4409, 1), -- MP Modifiers
+(35567, 4410, 11), -- P. Atk. Modifiers
+(35567, 4411, 11), -- M. Atk. Modifiers
+(35567, 4412, 11), -- P. Def. Modifiers
+(35567, 4413, 11), -- M. Def. Modifiers
+(35567, 4414, 2), -- Armor Type
+(35567, 4415, 3), -- Weapon Type
+(35567, 4416, 14), -- Races
 -- Wayne
 (35568, 4045, 1), -- Resist Full Magic Attack
-(35568, 4408, 1), -- HP Increase (1x)
-(35568, 4409, 1), -- MP Increase (1x)
-(35568, 4410, 11), -- Average P. Atk.
-(35568, 4411, 11), -- Average M. Atk.
-(35568, 4412, 11), -- Average P. Def.
-(35568, 4413, 11), -- Average M. Def.
-(35568, 4414, 2), -- Standard Type
-(35568, 4415, 3), -- One-handed Sword
-(35568, 4416, 14), -- Humans
+(35568, 4408, 1), -- HP Modifiers
+(35568, 4409, 1), -- MP Modifiers
+(35568, 4410, 11), -- P. Atk. Modifiers
+(35568, 4411, 11), -- M. Atk. Modifiers
+(35568, 4412, 11), -- P. Def. Modifiers
+(35568, 4413, 11), -- M. Def. Modifiers
+(35568, 4414, 2), -- Armor Type
+(35568, 4415, 3), -- Weapon Type
+(35568, 4416, 14), -- Races
 -- Daniel
 (35569, 4045, 1), -- Resist Full Magic Attack
-(35569, 4408, 1), -- HP Increase (1x)
-(35569, 4409, 1), -- MP Increase (1x)
-(35569, 4410, 11), -- Average P. Atk.
-(35569, 4411, 11), -- Average M. Atk.
-(35569, 4412, 11), -- Average P. Def.
-(35569, 4413, 11), -- Average M. Def.
-(35569, 4414, 2), -- Standard Type
-(35569, 4415, 3), -- One-handed Sword
-(35569, 4416, 14), -- Humans
+(35569, 4408, 1), -- HP Modifiers
+(35569, 4409, 1), -- MP Modifiers
+(35569, 4410, 11), -- P. Atk. Modifiers
+(35569, 4411, 11), -- M. Atk. Modifiers
+(35569, 4412, 11), -- P. Def. Modifiers
+(35569, 4413, 11), -- M. Def. Modifiers
+(35569, 4414, 2), -- Armor Type
+(35569, 4415, 3), -- Weapon Type
+(35569, 4416, 14), -- Races
 -- Patty
 (35570, 4045, 1), -- Resist Full Magic Attack
-(35570, 4408, 1), -- HP Increase (1x)
-(35570, 4409, 1), -- MP Increase (1x)
-(35570, 4410, 11), -- Average P. Atk.
-(35570, 4411, 11), -- Average M. Atk.
-(35570, 4412, 11), -- Average P. Def.
-(35570, 4413, 11), -- Average M. Def.
-(35570, 4414, 2), -- Standard Type
-(35570, 4415, 3), -- One-handed Sword
-(35570, 4416, 14), -- Humans
+(35570, 4408, 1), -- HP Modifiers
+(35570, 4409, 1), -- MP Modifiers
+(35570, 4410, 11), -- P. Atk. Modifiers
+(35570, 4411, 11), -- M. Atk. Modifiers
+(35570, 4412, 11), -- P. Def. Modifiers
+(35570, 4413, 11), -- M. Def. Modifiers
+(35570, 4414, 2), -- Armor Type
+(35570, 4415, 3), -- Weapon Type
+(35570, 4416, 14), -- Races
 -- Dale
 (35571, 4045, 1), -- Resist Full Magic Attack
-(35571, 4408, 1), -- HP Increase (1x)
-(35571, 4409, 1), -- MP Increase (1x)
-(35571, 4410, 11), -- Average P. Atk.
-(35571, 4411, 11), -- Average M. Atk.
-(35571, 4412, 11), -- Average P. Def.
-(35571, 4413, 11), -- Average M. Def.
-(35571, 4414, 2), -- Standard Type
-(35571, 4415, 3), -- One-handed Sword
-(35571, 4416, 14), -- Humans
+(35571, 4408, 1), -- HP Modifiers
+(35571, 4409, 1), -- MP Modifiers
+(35571, 4410, 11), -- P. Atk. Modifiers
+(35571, 4411, 11), -- M. Atk. Modifiers
+(35571, 4412, 11), -- P. Def. Modifiers
+(35571, 4413, 11), -- M. Def. Modifiers
+(35571, 4414, 2), -- Armor Type
+(35571, 4415, 3), -- Weapon Type
+(35571, 4416, 14), -- Races
 -- Jimmy
 (35572, 4045, 1), -- Resist Full Magic Attack
-(35572, 4408, 1), -- HP Increase (1x)
-(35572, 4409, 1), -- MP Increase (1x)
-(35572, 4410, 11), -- Average P. Atk.
-(35572, 4411, 11), -- Average M. Atk.
-(35572, 4412, 11), -- Average P. Def.
-(35572, 4413, 11), -- Average M. Def.
-(35572, 4414, 2), -- Standard Type
-(35572, 4415, 3), -- One-handed Sword
-(35572, 4416, 14), -- Humans
+(35572, 4408, 1), -- HP Modifiers
+(35572, 4409, 1), -- MP Modifiers
+(35572, 4410, 11), -- P. Atk. Modifiers
+(35572, 4411, 11), -- M. Atk. Modifiers
+(35572, 4412, 11), -- P. Def. Modifiers
+(35572, 4413, 11), -- M. Def. Modifiers
+(35572, 4414, 2), -- Armor Type
+(35572, 4415, 3), -- Weapon Type
+(35572, 4416, 14), -- Races
 -- Shawn
 (35573, 4045, 1), -- Resist Full Magic Attack
-(35573, 4408, 1), -- HP Increase (1x)
-(35573, 4409, 1), -- MP Increase (1x)
-(35573, 4410, 11), -- Average P. Atk.
-(35573, 4411, 11), -- Average M. Atk.
-(35573, 4412, 11), -- Average P. Def.
-(35573, 4413, 11), -- Average M. Def.
-(35573, 4414, 2), -- Standard Type
-(35573, 4415, 3), -- One-handed Sword
-(35573, 4416, 14), -- Humans
+(35573, 4408, 1), -- HP Modifiers
+(35573, 4409, 1), -- MP Modifiers
+(35573, 4410, 11), -- P. Atk. Modifiers
+(35573, 4411, 11), -- M. Atk. Modifiers
+(35573, 4412, 11), -- P. Def. Modifiers
+(35573, 4413, 11), -- M. Def. Modifiers
+(35573, 4414, 2), -- Armor Type
+(35573, 4415, 3), -- Weapon Type
+(35573, 4416, 14), -- Races
 -- Michael
 (35574, 4045, 1), -- Resist Full Magic Attack
-(35574, 4408, 1), -- HP Increase (1x)
-(35574, 4409, 1), -- MP Increase (1x)
-(35574, 4410, 11), -- Average P. Atk.
-(35574, 4411, 11), -- Average M. Atk.
-(35574, 4412, 11), -- Average P. Def.
-(35574, 4413, 11), -- Average M. Def.
-(35574, 4414, 2), -- Standard Type
-(35574, 4415, 3), -- One-handed Sword
-(35574, 4416, 14), -- Humans
+(35574, 4408, 1), -- HP Modifiers
+(35574, 4409, 1), -- MP Modifiers
+(35574, 4410, 11), -- P. Atk. Modifiers
+(35574, 4411, 11), -- M. Atk. Modifiers
+(35574, 4412, 11), -- P. Def. Modifiers
+(35574, 4413, 11), -- M. Def. Modifiers
+(35574, 4414, 2), -- Armor Type
+(35574, 4415, 3), -- Weapon Type
+(35574, 4416, 14), -- Races
 -- Ryan
 (35575, 4045, 1), -- Resist Full Magic Attack
-(35575, 4408, 1), -- HP Increase (1x)
-(35575, 4409, 1), -- MP Increase (1x)
-(35575, 4410, 11), -- Average P. Atk.
-(35575, 4411, 11), -- Average M. Atk.
-(35575, 4412, 11), -- Average P. Def.
-(35575, 4413, 11), -- Average M. Def.
-(35575, 4414, 2), -- Standard Type
-(35575, 4415, 3), -- One-handed Sword
-(35575, 4416, 14), -- Humans
+(35575, 4408, 1), -- HP Modifiers
+(35575, 4409, 1), -- MP Modifiers
+(35575, 4410, 11), -- P. Atk. Modifiers
+(35575, 4411, 11), -- M. Atk. Modifiers
+(35575, 4412, 11), -- P. Def. Modifiers
+(35575, 4413, 11), -- M. Def. Modifiers
+(35575, 4414, 2), -- Armor Type
+(35575, 4415, 3), -- Weapon Type
+(35575, 4416, 14), -- Races
 -- Jack
 (35576, 4045, 1), -- Resist Full Magic Attack
-(35576, 4408, 1), -- HP Increase (1x)
-(35576, 4409, 1), -- MP Increase (1x)
-(35576, 4410, 11), -- Average P. Atk.
-(35576, 4411, 11), -- Average M. Atk.
-(35576, 4412, 11), -- Average P. Def.
-(35576, 4413, 11), -- Average M. Def.
-(35576, 4414, 2), -- Standard Type
-(35576, 4415, 3), -- One-handed Sword
-(35576, 4416, 14), -- Humans
+(35576, 4408, 1), -- HP Modifiers
+(35576, 4409, 1), -- MP Modifiers
+(35576, 4410, 11), -- P. Atk. Modifiers
+(35576, 4411, 11), -- M. Atk. Modifiers
+(35576, 4412, 11), -- P. Def. Modifiers
+(35576, 4413, 11), -- M. Def. Modifiers
+(35576, 4414, 2), -- Armor Type
+(35576, 4415, 3), -- Weapon Type
+(35576, 4416, 14), -- Races
 -- Harry
 (35577, 4045, 1), -- Resist Full Magic Attack
-(35577, 4408, 1), -- HP Increase (1x)
-(35577, 4409, 1), -- MP Increase (1x)
-(35577, 4410, 11), -- Average P. Atk.
-(35577, 4411, 11), -- Average M. Atk.
-(35577, 4412, 11), -- Average P. Def.
-(35577, 4413, 11), -- Average M. Def.
-(35577, 4414, 2), -- Standard Type
-(35577, 4415, 3), -- One-handed Sword
-(35577, 4416, 14), -- Humans
+(35577, 4408, 1), -- HP Modifiers
+(35577, 4409, 1), -- MP Modifiers
+(35577, 4410, 11), -- P. Atk. Modifiers
+(35577, 4411, 11), -- M. Atk. Modifiers
+(35577, 4412, 11), -- P. Def. Modifiers
+(35577, 4413, 11), -- M. Def. Modifiers
+(35577, 4414, 2), -- Armor Type
+(35577, 4415, 3), -- Weapon Type
+(35577, 4416, 14), -- Races
 -- Karuto
 (35578, 4045, 1), -- Resist Full Magic Attack
-(35578, 4408, 1), -- HP Increase (1x)
-(35578, 4409, 1), -- MP Increase (1x)
-(35578, 4410, 11), -- Average P. Atk.
-(35578, 4411, 11), -- Average M. Atk.
-(35578, 4412, 11), -- Average P. Def.
-(35578, 4413, 11), -- Average M. Def.
-(35578, 4414, 2), -- Standard Type
-(35578, 4415, 3), -- One-handed Sword
-(35578, 4416, 14), -- Humans
+(35578, 4408, 1), -- HP Modifiers
+(35578, 4409, 1), -- MP Modifiers
+(35578, 4410, 11), -- P. Atk. Modifiers
+(35578, 4411, 11), -- M. Atk. Modifiers
+(35578, 4412, 11), -- P. Def. Modifiers
+(35578, 4413, 11), -- M. Def. Modifiers
+(35578, 4414, 2), -- Armor Type
+(35578, 4415, 3), -- Weapon Type
+(35578, 4416, 14), -- Races
 -- Egon
 (35579, 4045, 1), -- Resist Full Magic Attack
-(35579, 4408, 1), -- HP Increase (1x)
-(35579, 4409, 1), -- MP Increase (1x)
-(35579, 4410, 11), -- Average P. Atk.
-(35579, 4411, 11), -- Average M. Atk.
-(35579, 4412, 11), -- Average P. Def.
-(35579, 4413, 11), -- Average M. Def.
-(35579, 4414, 2), -- Standard Type
-(35579, 4415, 3), -- One-handed Sword
-(35579, 4416, 14), -- Humans
+(35579, 4408, 1), -- HP Modifiers
+(35579, 4409, 1), -- MP Modifiers
+(35579, 4410, 11), -- P. Atk. Modifiers
+(35579, 4411, 11), -- M. Atk. Modifiers
+(35579, 4412, 11), -- P. Def. Modifiers
+(35579, 4413, 11), -- M. Def. Modifiers
+(35579, 4414, 2), -- Armor Type
+(35579, 4415, 3), -- Weapon Type
+(35579, 4416, 14), -- Races
 -- Carol
 (35580, 4045, 1), -- Resist Full Magic Attack
-(35580, 4408, 1), -- HP Increase (1x)
-(35580, 4409, 1), -- MP Increase (1x)
-(35580, 4410, 11), -- Average P. Atk.
-(35580, 4411, 11), -- Average M. Atk.
-(35580, 4412, 11), -- Average P. Def.
-(35580, 4413, 11), -- Average M. Def.
-(35580, 4414, 2), -- Standard Type
-(35580, 4415, 3), -- One-handed Sword
-(35580, 4416, 14), -- Humans
+(35580, 4408, 1), -- HP Modifiers
+(35580, 4409, 1), -- MP Modifiers
+(35580, 4410, 11), -- P. Atk. Modifiers
+(35580, 4411, 11), -- M. Atk. Modifiers
+(35580, 4412, 11), -- P. Def. Modifiers
+(35580, 4413, 11), -- M. Def. Modifiers
+(35580, 4414, 2), -- Armor Type
+(35580, 4415, 3), -- Weapon Type
+(35580, 4416, 14), -- Races
 -- Osho
 (35581, 4045, 1), -- Resist Full Magic Attack
-(35581, 4408, 1), -- HP Increase (1x)
-(35581, 4409, 1), -- MP Increase (1x)
-(35581, 4410, 11), -- Average P. Atk.
-(35581, 4411, 11), -- Average M. Atk.
-(35581, 4412, 11), -- Average P. Def.
-(35581, 4413, 11), -- Average M. Def.
-(35581, 4414, 2), -- Standard Type
-(35581, 4415, 3), -- One-handed Sword
-(35581, 4416, 14), -- Humans
+(35581, 4408, 1), -- HP Modifiers
+(35581, 4409, 1), -- MP Modifiers
+(35581, 4410, 11), -- P. Atk. Modifiers
+(35581, 4411, 11), -- M. Atk. Modifiers
+(35581, 4412, 11), -- P. Def. Modifiers
+(35581, 4413, 11), -- M. Def. Modifiers
+(35581, 4414, 2), -- Armor Type
+(35581, 4415, 3), -- Weapon Type
+(35581, 4416, 14), -- Races
 -- Stanley
 (35582, 4045, 1), -- Resist Full Magic Attack
-(35582, 4408, 1), -- HP Increase (1x)
-(35582, 4409, 1), -- MP Increase (1x)
-(35582, 4410, 11), -- Average P. Atk.
-(35582, 4411, 11), -- Average M. Atk.
-(35582, 4412, 11), -- Average P. Def.
-(35582, 4413, 11), -- Average M. Def.
-(35582, 4414, 2), -- Standard Type
-(35582, 4415, 3), -- One-handed Sword
-(35582, 4416, 14), -- Humans
+(35582, 4408, 1), -- HP Modifiers
+(35582, 4409, 1), -- MP Modifiers
+(35582, 4410, 11), -- P. Atk. Modifiers
+(35582, 4411, 11), -- M. Atk. Modifiers
+(35582, 4412, 11), -- P. Def. Modifiers
+(35582, 4413, 11), -- M. Def. Modifiers
+(35582, 4414, 2), -- Armor Type
+(35582, 4415, 3), -- Weapon Type
+(35582, 4416, 14), -- Races
 -- Walter
 (35583, 4045, 1), -- Resist Full Magic Attack
-(35583, 4408, 1), -- HP Increase (1x)
-(35583, 4409, 1), -- MP Increase (1x)
-(35583, 4410, 11), -- Average P. Atk.
-(35583, 4411, 11), -- Average M. Atk.
-(35583, 4412, 11), -- Average P. Def.
-(35583, 4413, 11), -- Average M. Def.
-(35583, 4414, 2), -- Standard Type
-(35583, 4415, 3), -- One-handed Sword
-(35583, 4416, 14), -- Humans
+(35583, 4408, 1), -- HP Modifiers
+(35583, 4409, 1), -- MP Modifiers
+(35583, 4410, 11), -- P. Atk. Modifiers
+(35583, 4411, 11), -- M. Atk. Modifiers
+(35583, 4412, 11), -- P. Def. Modifiers
+(35583, 4413, 11), -- M. Def. Modifiers
+(35583, 4414, 2), -- Armor Type
+(35583, 4415, 3), -- Weapon Type
+(35583, 4416, 14), -- Races
 -- Billy
 (35584, 4045, 1), -- Resist Full Magic Attack
-(35584, 4408, 1), -- HP Increase (1x)
-(35584, 4409, 1), -- MP Increase (1x)
-(35584, 4410, 11), -- Average P. Atk.
-(35584, 4411, 11), -- Average M. Atk.
-(35584, 4412, 11), -- Average P. Def.
-(35584, 4413, 11), -- Average M. Def.
-(35584, 4414, 2), -- Standard Type
-(35584, 4415, 3), -- One-handed Sword
-(35584, 4416, 14), -- Humans
+(35584, 4408, 1), -- HP Modifiers
+(35584, 4409, 1), -- MP Modifiers
+(35584, 4410, 11), -- P. Atk. Modifiers
+(35584, 4411, 11), -- M. Atk. Modifiers
+(35584, 4412, 11), -- P. Def. Modifiers
+(35584, 4413, 11), -- M. Def. Modifiers
+(35584, 4414, 2), -- Armor Type
+(35584, 4415, 3), -- Weapon Type
+(35584, 4416, 14), -- Races
 -- Alice
 (35585, 4045, 1), -- Resist Full Magic Attack
-(35585, 4408, 1), -- HP Increase (1x)
-(35585, 4409, 1), -- MP Increase (1x)
-(35585, 4410, 11), -- Average P. Atk.
-(35585, 4411, 11), -- Average M. Atk.
-(35585, 4412, 11), -- Average P. Def.
-(35585, 4413, 11), -- Average M. Def.
-(35585, 4414, 2), -- Standard Type
-(35585, 4415, 3), -- One-handed Sword
-(35585, 4416, 14), -- Humans
+(35585, 4408, 1), -- HP Modifiers
+(35585, 4409, 1), -- MP Modifiers
+(35585, 4410, 11), -- P. Atk. Modifiers
+(35585, 4411, 11), -- M. Atk. Modifiers
+(35585, 4412, 11), -- P. Def. Modifiers
+(35585, 4413, 11), -- M. Def. Modifiers
+(35585, 4414, 2), -- Armor Type
+(35585, 4415, 3), -- Weapon Type
+(35585, 4416, 14), -- Races
 -- Serena
 (35586, 4045, 1), -- Resist Full Magic Attack
-(35586, 4408, 1), -- HP Increase (1x)
-(35586, 4409, 1), -- MP Increase (1x)
-(35586, 4410, 11), -- Average P. Atk.
-(35586, 4411, 11), -- Average M. Atk.
-(35586, 4412, 11), -- Average P. Def.
-(35586, 4413, 11), -- Average M. Def.
-(35586, 4414, 2), -- Standard Type
-(35586, 4415, 3), -- One-handed Sword
-(35586, 4416, 14), -- Humans
+(35586, 4408, 1), -- HP Modifiers
+(35586, 4409, 1), -- MP Modifiers
+(35586, 4410, 11), -- P. Atk. Modifiers
+(35586, 4411, 11), -- M. Atk. Modifiers
+(35586, 4412, 11), -- P. Def. Modifiers
+(35586, 4413, 11), -- M. Def. Modifiers
+(35586, 4414, 2), -- Armor Type
+(35586, 4415, 3), -- Weapon Type
+(35586, 4416, 14), -- Races
 -- Neria
 (35587, 4045, 1), -- Resist Full Magic Attack
-(35587, 4408, 1), -- HP Increase (1x)
-(35587, 4409, 1), -- MP Increase (1x)
-(35587, 4410, 11), -- Average P. Atk.
-(35587, 4411, 11), -- Average M. Atk.
-(35587, 4412, 11), -- Average P. Def.
-(35587, 4413, 11), -- Average M. Def.
-(35587, 4414, 2), -- Standard Type
-(35587, 4415, 3), -- One-handed Sword
-(35587, 4416, 14), -- Humans
+(35587, 4408, 1), -- HP Modifiers
+(35587, 4409, 1), -- MP Modifiers
+(35587, 4410, 11), -- P. Atk. Modifiers
+(35587, 4411, 11), -- M. Atk. Modifiers
+(35587, 4412, 11), -- P. Def. Modifiers
+(35587, 4413, 11), -- M. Def. Modifiers
+(35587, 4414, 2), -- Armor Type
+(35587, 4415, 3), -- Weapon Type
+(35587, 4416, 14), -- Races
 -- Hot Springs Gourd
 (35588, 4045, 1), -- Resist Full Magic Attack
-(35588, 4408, 1), -- HP Increase (1x)
-(35588, 4409, 1), -- MP Increase (1x)
-(35588, 4410, 11), -- Average P. Atk.
-(35588, 4411, 11), -- Average M. Atk.
-(35588, 4412, 11), -- Average P. Def.
-(35588, 4413, 11), -- Average M. Def.
-(35588, 4414, 2), -- Standard Type
-(35588, 4415, 5), -- Blunt Weapons
-(35588, 4416, 19), -- Others
+(35588, 4408, 1), -- HP Modifiers
+(35588, 4409, 1), -- MP Modifiers
+(35588, 4410, 11), -- P. Atk. Modifiers
+(35588, 4411, 11), -- M. Atk. Modifiers
+(35588, 4412, 11), -- P. Def. Modifiers
+(35588, 4413, 11), -- M. Def. Modifiers
+(35588, 4414, 2), -- Armor Type
+(35588, 4415, 5), -- Weapon Type
+(35588, 4416, 19), -- Races
 -- Hot Springs Gourd
 (35589, 4045, 1), -- Resist Full Magic Attack
-(35589, 4408, 1), -- HP Increase (1x)
-(35589, 4409, 1), -- MP Increase (1x)
-(35589, 4410, 11), -- Average P. Atk.
-(35589, 4411, 11), -- Average M. Atk.
-(35589, 4412, 11), -- Average P. Def.
-(35589, 4413, 11), -- Average M. Def.
-(35589, 4414, 2), -- Standard Type
-(35589, 4415, 5), -- Blunt Weapons
-(35589, 4416, 19), -- Others
+(35589, 4408, 1), -- HP Modifiers
+(35589, 4409, 1), -- MP Modifiers
+(35589, 4410, 11), -- P. Atk. Modifiers
+(35589, 4411, 11), -- M. Atk. Modifiers
+(35589, 4412, 11), -- P. Def. Modifiers
+(35589, 4413, 11), -- M. Def. Modifiers
+(35589, 4414, 2), -- Armor Type
+(35589, 4415, 5), -- Weapon Type
+(35589, 4416, 19), -- Races
 -- Hot Springs Gourd
 (35590, 4045, 1), -- Resist Full Magic Attack
-(35590, 4408, 1), -- HP Increase (1x)
-(35590, 4409, 1), -- MP Increase (1x)
-(35590, 4410, 11), -- Average P. Atk.
-(35590, 4411, 11), -- Average M. Atk.
-(35590, 4412, 11), -- Average P. Def.
-(35590, 4413, 11), -- Average M. Def.
-(35590, 4414, 2), -- Standard Type
-(35590, 4415, 5), -- Blunt Weapons
-(35590, 4416, 19), -- Others
+(35590, 4408, 1), -- HP Modifiers
+(35590, 4409, 1), -- MP Modifiers
+(35590, 4410, 11), -- P. Atk. Modifiers
+(35590, 4411, 11), -- M. Atk. Modifiers
+(35590, 4412, 11), -- P. Def. Modifiers
+(35590, 4413, 11), -- M. Def. Modifiers
+(35590, 4414, 2), -- Armor Type
+(35590, 4415, 5), -- Weapon Type
+(35590, 4416, 19), -- Races
 -- Hot Springs Gourd
 (35591, 4045, 1), -- Resist Full Magic Attack
-(35591, 4408, 1), -- HP Increase (1x)
-(35591, 4409, 1), -- MP Increase (1x)
-(35591, 4410, 11), -- Average P. Atk.
-(35591, 4411, 11), -- Average M. Atk.
-(35591, 4412, 11), -- Average P. Def.
-(35591, 4413, 11), -- Average M. Def.
-(35591, 4414, 2), -- Standard Type
-(35591, 4415, 5), -- Blunt Weapons
-(35591, 4416, 19), -- Others
+(35591, 4408, 1), -- HP Modifiers
+(35591, 4409, 1), -- MP Modifiers
+(35591, 4410, 11), -- P. Atk. Modifiers
+(35591, 4411, 11), -- M. Atk. Modifiers
+(35591, 4412, 11), -- P. Def. Modifiers
+(35591, 4413, 11), -- M. Def. Modifiers
+(35591, 4414, 2), -- Armor Type
+(35591, 4415, 5), -- Weapon Type
+(35591, 4416, 19), -- Races
 -- Enraged Yeti
-(35592, 4408, 1), -- HP Increase (1x)
-(35592, 4409, 1), -- MP Increase (1x)
-(35592, 4410, 1), -- Extremely Weak P. Atk.
-(35592, 4411, 1), -- Extremely Weak M. Atk.
-(35592, 4412, 11), -- Average P. Def.
-(35592, 4413, 11), -- Average M. Def.
-(35592, 4414, 2), -- Standard Type
-(35592, 4415, 3), -- One-handed Sword
-(35592, 4416, 11), -- Giants
+(35592, 4408, 1), -- HP Modifiers
+(35592, 4409, 1), -- MP Modifiers
+(35592, 4410, 1), -- P. Atk. Modifiers
+(35592, 4411, 1), -- M. Atk. Modifiers
+(35592, 4412, 11), -- P. Def. Modifiers
+(35592, 4413, 11), -- M. Def. Modifiers
+(35592, 4414, 2), -- Armor Type
+(35592, 4415, 3), -- Weapon Type
+(35592, 4416, 11), -- Races
 -- Treasure Chest
-(35593, 4408, 1), -- HP Increase (1x)
-(35593, 4409, 1), -- MP Increase (1x)
-(35593, 4410, 1), -- Extremely Weak P. Atk.
-(35593, 4411, 1), -- Extremely Weak M. Atk.
-(35593, 4412, 11), -- Average P. Def.
-(35593, 4413, 11), -- Average M. Def.
-(35593, 4414, 2), -- Standard Type
-(35593, 4415, 3), -- One-handed Sword
-(35593, 4416, 2), -- Magic Creatures
+(35593, 4408, 1), -- HP Modifiers
+(35593, 4409, 1), -- MP Modifiers
+(35593, 4410, 1), -- P. Atk. Modifiers
+(35593, 4411, 1), -- M. Atk. Modifiers
+(35593, 4412, 11), -- P. Def. Modifiers
+(35593, 4413, 11), -- M. Def. Modifiers
+(35593, 4414, 2), -- Armor Type
+(35593, 4415, 3), -- Weapon Type
+(35593, 4416, 2), -- Races
 -- Treasure Chest
-(35594, 4408, 1), -- HP Increase (1x)
-(35594, 4409, 1), -- MP Increase (1x)
-(35594, 4410, 1), -- Extremely Weak P. Atk.
-(35594, 4411, 1), -- Extremely Weak M. Atk.
-(35594, 4412, 11), -- Average P. Def.
-(35594, 4413, 11), -- Average M. Def.
-(35594, 4414, 2), -- Standard Type
-(35594, 4415, 3), -- One-handed Sword
-(35594, 4416, 2), -- Magic Creatures
+(35594, 4408, 1), -- HP Modifiers
+(35594, 4409, 1), -- MP Modifiers
+(35594, 4410, 1), -- P. Atk. Modifiers
+(35594, 4411, 1), -- M. Atk. Modifiers
+(35594, 4412, 11), -- P. Def. Modifiers
+(35594, 4413, 11), -- M. Def. Modifiers
+(35594, 4414, 2), -- Armor Type
+(35594, 4415, 3), -- Weapon Type
+(35594, 4416, 2), -- Races
 (35594, 4992, 1), -- Stun
 -- Treasure Chest
-(35595, 4390, 1), -- Mystic Immunity
-(35595, 4408, 8), -- HP Increase (1/4x)
-(35595, 4409, 1), -- MP Increase (1x)
-(35595, 4410, 11), -- Average P. Atk.
-(35595, 4411, 11), -- Average M. Atk.
-(35595, 4412, 1), -- Extremely Weak P. Def.
-(35595, 4413, 11), -- Average M. Def.
-(35595, 4414, 2), -- Standard Type
-(35595, 4415, 3), -- One-handed Sword
-(35595, 4416, 2), -- Magic Creatures
+(35595, 4390, 1), -- NPC Abnormal Immunity
+(35595, 4408, 8), -- HP Modifiers
+(35595, 4409, 1), -- MP Modifiers
+(35595, 4410, 11), -- P. Atk. Modifiers
+(35595, 4411, 11), -- M. Atk. Modifiers
+(35595, 4412, 1), -- P. Def. Modifiers
+(35595, 4413, 11), -- M. Def. Modifiers
+(35595, 4414, 2), -- Armor Type
+(35595, 4415, 3), -- Weapon Type
+(35595, 4416, 2), -- Races
 -- Hot Springs Yeti
 (35596, 4045, 1), -- Resist Full Magic Attack
-(35596, 4408, 1), -- HP Increase (1x)
-(35596, 4409, 1), -- MP Increase (1x)
-(35596, 4410, 11), -- Average P. Atk.
-(35596, 4411, 11), -- Average M. Atk.
-(35596, 4412, 11), -- Average P. Def.
-(35596, 4413, 11), -- Average M. Def.
-(35596, 4414, 2), -- Standard Type
-(35596, 4415, 3), -- One-handed Sword
-(35596, 4416, 6), -- Humanoids
+(35596, 4408, 1), -- HP Modifiers
+(35596, 4409, 1), -- MP Modifiers
+(35596, 4410, 11), -- P. Atk. Modifiers
+(35596, 4411, 11), -- M. Atk. Modifiers
+(35596, 4412, 11), -- P. Def. Modifiers
+(35596, 4413, 11), -- M. Def. Modifiers
+(35596, 4414, 2), -- Armor Type
+(35596, 4415, 3), -- Weapon Type
+(35596, 4416, 6), -- Races
 -- Hot Springs Yeti
 (35597, 4045, 1), -- Resist Full Magic Attack
-(35597, 4408, 1), -- HP Increase (1x)
-(35597, 4409, 1), -- MP Increase (1x)
-(35597, 4410, 11), -- Average P. Atk.
-(35597, 4411, 11), -- Average M. Atk.
-(35597, 4412, 11), -- Average P. Def.
-(35597, 4413, 11), -- Average M. Def.
-(35597, 4414, 2), -- Standard Type
-(35597, 4415, 3), -- One-handed Sword
-(35597, 4416, 6), -- Humanoids
+(35597, 4408, 1), -- HP Modifiers
+(35597, 4409, 1), -- MP Modifiers
+(35597, 4410, 11), -- P. Atk. Modifiers
+(35597, 4411, 11), -- M. Atk. Modifiers
+(35597, 4412, 11), -- P. Def. Modifiers
+(35597, 4413, 11), -- M. Def. Modifiers
+(35597, 4414, 2), -- Armor Type
+(35597, 4415, 3), -- Weapon Type
+(35597, 4416, 6), -- Races
 -- Hot Springs Yeti
 (35598, 4045, 1), -- Resist Full Magic Attack
-(35598, 4408, 1), -- HP Increase (1x)
-(35598, 4409, 1), -- MP Increase (1x)
-(35598, 4410, 11), -- Average P. Atk.
-(35598, 4411, 11), -- Average M. Atk.
-(35598, 4412, 11), -- Average P. Def.
-(35598, 4413, 11), -- Average M. Def.
-(35598, 4414, 2), -- Standard Type
-(35598, 4415, 3), -- One-handed Sword
-(35598, 4416, 6), -- Humanoids
+(35598, 4408, 1), -- HP Modifiers
+(35598, 4409, 1), -- MP Modifiers
+(35598, 4410, 11), -- P. Atk. Modifiers
+(35598, 4411, 11), -- M. Atk. Modifiers
+(35598, 4412, 11), -- P. Def. Modifiers
+(35598, 4413, 11), -- M. Def. Modifiers
+(35598, 4414, 2), -- Armor Type
+(35598, 4415, 3), -- Weapon Type
+(35598, 4416, 6), -- Races
 -- Hot Springs Yeti
 (35599, 4045, 1), -- Resist Full Magic Attack
-(35599, 4408, 1), -- HP Increase (1x)
-(35599, 4409, 1), -- MP Increase (1x)
-(35599, 4410, 11), -- Average P. Atk.
-(35599, 4411, 11), -- Average M. Atk.
-(35599, 4412, 11), -- Average P. Def.
-(35599, 4413, 11), -- Average M. Def.
-(35599, 4414, 2), -- Standard Type
-(35599, 4415, 3), -- One-handed Sword
-(35599, 4416, 6), -- Humanoids
+(35599, 4408, 1), -- HP Modifiers
+(35599, 4409, 1), -- MP Modifiers
+(35599, 4410, 11), -- P. Atk. Modifiers
+(35599, 4411, 11), -- M. Atk. Modifiers
+(35599, 4412, 11), -- P. Def. Modifiers
+(35599, 4413, 11), -- M. Def. Modifiers
+(35599, 4414, 2), -- Armor Type
+(35599, 4415, 3), -- Weapon Type
+(35599, 4416, 6), -- Races
 -- Manager
 (35600, 4045, 1), -- Resist Full Magic Attack
-(35600, 4408, 1), -- HP Increase (1x)
-(35600, 4409, 1), -- MP Increase (1x)
-(35600, 4410, 11), -- Average P. Atk.
-(35600, 4411, 11), -- Average M. Atk.
-(35600, 4412, 11), -- Average P. Def.
-(35600, 4413, 11), -- Average M. Def.
-(35600, 4414, 2), -- Standard Type
-(35600, 4415, 3), -- One-handed Sword
-(35600, 4416, 6), -- Humanoids
+(35600, 4408, 1), -- HP Modifiers
+(35600, 4409, 1), -- MP Modifiers
+(35600, 4410, 11), -- P. Atk. Modifiers
+(35600, 4411, 11), -- M. Atk. Modifiers
+(35600, 4412, 11), -- P. Def. Modifiers
+(35600, 4413, 11), -- M. Def. Modifiers
+(35600, 4414, 2), -- Armor Type
+(35600, 4415, 3), -- Weapon Type
+(35600, 4416, 6), -- Races
 -- Doorman
 (35601, 4045, 1), -- Resist Full Magic Attack
-(35601, 4408, 1), -- HP Increase (1x)
-(35601, 4409, 1), -- MP Increase (1x)
-(35601, 4410, 11), -- Average P. Atk.
-(35601, 4411, 11), -- Average M. Atk.
-(35601, 4412, 11), -- Average P. Def.
-(35601, 4413, 11), -- Average M. Def.
-(35601, 4414, 2), -- Standard Type
-(35601, 4415, 3), -- One-handed Sword
-(35601, 4416, 6), -- Humanoids
+(35601, 4408, 1), -- HP Modifiers
+(35601, 4409, 1), -- MP Modifiers
+(35601, 4410, 11), -- P. Atk. Modifiers
+(35601, 4411, 11), -- M. Atk. Modifiers
+(35601, 4412, 11), -- P. Def. Modifiers
+(35601, 4413, 11), -- M. Def. Modifiers
+(35601, 4414, 2), -- Armor Type
+(35601, 4415, 3), -- Weapon Type
+(35601, 4416, 6), -- Races
 -- Doorman
 (35602, 4045, 1), -- Resist Full Magic Attack
-(35602, 4408, 1), -- HP Increase (1x)
-(35602, 4409, 1), -- MP Increase (1x)
-(35602, 4410, 11), -- Average P. Atk.
-(35602, 4411, 11), -- Average M. Atk.
-(35602, 4412, 11), -- Average P. Def.
-(35602, 4413, 11), -- Average M. Def.
-(35602, 4414, 2), -- Standard Type
-(35602, 4415, 3), -- One-handed Sword
-(35602, 4416, 6), -- Humanoids
+(35602, 4408, 1), -- HP Modifiers
+(35602, 4409, 1), -- MP Modifiers
+(35602, 4410, 11), -- P. Atk. Modifiers
+(35602, 4411, 11), -- M. Atk. Modifiers
+(35602, 4412, 11), -- P. Def. Modifiers
+(35602, 4413, 11), -- M. Def. Modifiers
+(35602, 4414, 2), -- Armor Type
+(35602, 4415, 3), -- Weapon Type
+(35602, 4416, 6), -- Races
 -- Coordinator
 (35603, 4045, 1), -- Resist Full Magic Attack
-(35603, 4408, 1), -- HP Increase (1x)
-(35603, 4409, 1), -- MP Increase (1x)
-(35603, 4410, 11), -- Average P. Atk.
-(35603, 4411, 11), -- Average M. Atk.
-(35603, 4412, 11), -- Average P. Def.
-(35603, 4413, 11), -- Average M. Def.
-(35603, 4414, 2), -- Standard Type
-(35603, 4415, 3), -- One-handed Sword
-(35603, 4416, 11), -- Giants
+(35603, 4408, 1), -- HP Modifiers
+(35603, 4409, 1), -- MP Modifiers
+(35603, 4410, 11), -- P. Atk. Modifiers
+(35603, 4411, 11), -- M. Atk. Modifiers
+(35603, 4412, 11), -- P. Def. Modifiers
+(35603, 4413, 11), -- M. Def. Modifiers
+(35603, 4414, 2), -- Armor Type
+(35603, 4415, 3), -- Weapon Type
+(35603, 4416, 11), -- Races
 -- Herald
 (35604, 4045, 1), -- Resist Full Magic Attack
-(35604, 4408, 1), -- HP Increase (1x)
-(35604, 4409, 1), -- MP Increase (1x)
-(35604, 4410, 11), -- Average P. Atk.
-(35604, 4411, 11), -- Average M. Atk.
-(35604, 4412, 11), -- Average P. Def.
-(35604, 4413, 11), -- Average M. Def.
-(35604, 4414, 2), -- Standard Type
-(35604, 4415, 3), -- One-handed Sword
-(35604, 4416, 6), -- Humanoids
+(35604, 4408, 1), -- HP Modifiers
+(35604, 4409, 1), -- MP Modifiers
+(35604, 4410, 11), -- P. Atk. Modifiers
+(35604, 4411, 11), -- M. Atk. Modifiers
+(35604, 4412, 11), -- P. Def. Modifiers
+(35604, 4413, 11), -- M. Def. Modifiers
+(35604, 4414, 2), -- Armor Type
+(35604, 4415, 3), -- Weapon Type
+(35604, 4416, 6), -- Races
 -- Angout
 (35605, 4045, 1), -- Resist Full Magic Attack
-(35605, 4408, 1), -- HP Increase (1x)
-(35605, 4409, 1), -- MP Increase (1x)
-(35605, 4410, 11), -- Average P. Atk.
-(35605, 4411, 11), -- Average M. Atk.
-(35605, 4412, 11), -- Average P. Def.
-(35605, 4413, 11), -- Average M. Def.
-(35605, 4414, 2), -- Standard Type
-(35605, 4415, 3), -- One-handed Sword
-(35605, 4416, 11), -- Giants
+(35605, 4408, 1), -- HP Modifiers
+(35605, 4409, 1), -- MP Modifiers
+(35605, 4410, 11), -- P. Atk. Modifiers
+(35605, 4411, 11), -- M. Atk. Modifiers
+(35605, 4412, 11), -- P. Def. Modifiers
+(35605, 4413, 11), -- M. Def. Modifiers
+(35605, 4414, 2), -- Armor Type
+(35605, 4415, 3), -- Weapon Type
+(35605, 4416, 11), -- Races
 -- Victor's Flag
 (35606, 4045, 1), -- Resist Full Magic Attack
-(35606, 4390, 1), -- Mystic Immunity
-(35606, 4408, 1), -- HP Increase (1x)
-(35606, 4409, 1), -- MP Increase (1x)
-(35606, 4410, 11), -- Average P. Atk.
-(35606, 4411, 11), -- Average M. Atk.
-(35606, 4412, 11), -- Average P. Def.
-(35606, 4413, 11), -- Average M. Def.
-(35606, 4414, 2), -- Standard Type
-(35606, 4415, 3), -- One-handed Sword
-(35606, 4416, 19), -- Others
+(35606, 4390, 1), -- NPC Abnormal Immunity
+(35606, 4408, 1), -- HP Modifiers
+(35606, 4409, 1), -- MP Modifiers
+(35606, 4410, 11), -- P. Atk. Modifiers
+(35606, 4411, 11), -- M. Atk. Modifiers
+(35606, 4412, 11), -- P. Def. Modifiers
+(35606, 4413, 11), -- M. Def. Modifiers
+(35606, 4414, 2), -- Armor Type
+(35606, 4415, 3), -- Weapon Type
+(35606, 4416, 19), -- Races
 -- Red Flag
 (35607, 4045, 1), -- Resist Full Magic Attack
-(35607, 4390, 1), -- Mystic Immunity
-(35607, 4408, 1), -- HP Increase (1x)
-(35607, 4409, 1), -- MP Increase (1x)
-(35607, 4410, 11), -- Average P. Atk.
-(35607, 4411, 11), -- Average M. Atk.
-(35607, 4412, 11), -- Average P. Def.
-(35607, 4413, 11), -- Average M. Def.
-(35607, 4414, 2), -- Standard Type
-(35607, 4415, 3), -- One-handed Sword
-(35607, 4416, 19), -- Others
+(35607, 4390, 1), -- NPC Abnormal Immunity
+(35607, 4408, 1), -- HP Modifiers
+(35607, 4409, 1), -- MP Modifiers
+(35607, 4410, 11), -- P. Atk. Modifiers
+(35607, 4411, 11), -- M. Atk. Modifiers
+(35607, 4412, 11), -- P. Def. Modifiers
+(35607, 4413, 11), -- M. Def. Modifiers
+(35607, 4414, 2), -- Armor Type
+(35607, 4415, 3), -- Weapon Type
+(35607, 4416, 19), -- Races
 -- Yellow Flag
 (35608, 4045, 1), -- Resist Full Magic Attack
-(35608, 4390, 1), -- Mystic Immunity
-(35608, 4408, 1), -- HP Increase (1x)
-(35608, 4409, 1), -- MP Increase (1x)
-(35608, 4410, 11), -- Average P. Atk.
-(35608, 4411, 11), -- Average M. Atk.
-(35608, 4412, 11), -- Average P. Def.
-(35608, 4413, 11), -- Average M. Def.
-(35608, 4414, 2), -- Standard Type
-(35608, 4415, 3), -- One-handed Sword
-(35608, 4416, 19), -- Others
+(35608, 4390, 1), -- NPC Abnormal Immunity
+(35608, 4408, 1), -- HP Modifiers
+(35608, 4409, 1), -- MP Modifiers
+(35608, 4410, 11), -- P. Atk. Modifiers
+(35608, 4411, 11), -- M. Atk. Modifiers
+(35608, 4412, 11), -- P. Def. Modifiers
+(35608, 4413, 11), -- M. Def. Modifiers
+(35608, 4414, 2), -- Armor Type
+(35608, 4415, 3), -- Weapon Type
+(35608, 4416, 19), -- Races
 -- Green Flag
 (35609, 4045, 1), -- Resist Full Magic Attack
-(35609, 4390, 1), -- Mystic Immunity
-(35609, 4408, 1), -- HP Increase (1x)
-(35609, 4409, 1), -- MP Increase (1x)
-(35609, 4410, 11), -- Average P. Atk.
-(35609, 4411, 11), -- Average M. Atk.
-(35609, 4412, 11), -- Average P. Def.
-(35609, 4413, 11), -- Average M. Def.
-(35609, 4414, 2), -- Standard Type
-(35609, 4415, 3), -- One-handed Sword
-(35609, 4416, 19), -- Others
+(35609, 4390, 1), -- NPC Abnormal Immunity
+(35609, 4408, 1), -- HP Modifiers
+(35609, 4409, 1), -- MP Modifiers
+(35609, 4410, 11), -- P. Atk. Modifiers
+(35609, 4411, 11), -- M. Atk. Modifiers
+(35609, 4412, 11), -- P. Def. Modifiers
+(35609, 4413, 11), -- M. Def. Modifiers
+(35609, 4414, 2), -- Armor Type
+(35609, 4415, 3), -- Weapon Type
+(35609, 4416, 19), -- Races
 -- Blue Flag
 (35610, 4045, 1), -- Resist Full Magic Attack
-(35610, 4390, 1), -- Mystic Immunity
-(35610, 4408, 1), -- HP Increase (1x)
-(35610, 4409, 1), -- MP Increase (1x)
-(35610, 4410, 11), -- Average P. Atk.
-(35610, 4411, 11), -- Average M. Atk.
-(35610, 4412, 11), -- Average P. Def.
-(35610, 4413, 11), -- Average M. Def.
-(35610, 4414, 2), -- Standard Type
-(35610, 4415, 3), -- One-handed Sword
-(35610, 4416, 19), -- Others
+(35610, 4390, 1), -- NPC Abnormal Immunity
+(35610, 4408, 1), -- HP Modifiers
+(35610, 4409, 1), -- MP Modifiers
+(35610, 4410, 11), -- P. Atk. Modifiers
+(35610, 4411, 11), -- M. Atk. Modifiers
+(35610, 4412, 11), -- P. Def. Modifiers
+(35610, 4413, 11), -- M. Def. Modifiers
+(35610, 4414, 2), -- Armor Type
+(35610, 4415, 3), -- Weapon Type
+(35610, 4416, 19), -- Races
 -- Purple Flag
 (35611, 4045, 1), -- Resist Full Magic Attack
-(35611, 4390, 1), -- Mystic Immunity
-(35611, 4408, 1), -- HP Increase (1x)
-(35611, 4409, 1), -- MP Increase (1x)
-(35611, 4410, 11), -- Average P. Atk.
-(35611, 4411, 11), -- Average M. Atk.
-(35611, 4412, 11), -- Average P. Def.
-(35611, 4413, 11), -- Average M. Def.
-(35611, 4414, 2), -- Standard Type
-(35611, 4415, 3), -- One-handed Sword
-(35611, 4416, 19), -- Others
+(35611, 4390, 1), -- NPC Abnormal Immunity
+(35611, 4408, 1), -- HP Modifiers
+(35611, 4409, 1), -- MP Modifiers
+(35611, 4410, 11), -- P. Atk. Modifiers
+(35611, 4411, 11), -- M. Atk. Modifiers
+(35611, 4412, 11), -- P. Def. Modifiers
+(35611, 4413, 11), -- M. Def. Modifiers
+(35611, 4414, 2), -- Armor Type
+(35611, 4415, 3), -- Weapon Type
+(35611, 4416, 19), -- Races
 -- Mass Gatekeeper
 (35612, 4045, 1), -- Resist Full Magic Attack
-(35612, 4408, 1), -- HP Increase (1x)
-(35612, 4409, 1), -- MP Increase (1x)
-(35612, 4410, 11), -- Average P. Atk.
-(35612, 4411, 11), -- Average M. Atk.
-(35612, 4412, 11), -- Average P. Def.
-(35612, 4413, 11), -- Average M. Def.
-(35612, 4414, 2), -- Standard Type
-(35612, 4415, 3), -- One-handed Sword
-(35612, 4416, 8), -- Angels
+(35612, 4408, 1), -- HP Modifiers
+(35612, 4409, 1), -- MP Modifiers
+(35612, 4410, 11), -- P. Atk. Modifiers
+(35612, 4411, 11), -- M. Atk. Modifiers
+(35612, 4412, 11), -- P. Def. Modifiers
+(35612, 4413, 11), -- M. Def. Modifiers
+(35612, 4414, 2), -- Armor Type
+(35612, 4415, 3), -- Weapon Type
+(35612, 4416, 8), -- Races
 -- Mass Gatekeeper
 (35613, 4045, 1), -- Resist Full Magic Attack
-(35613, 4408, 1), -- HP Increase (1x)
-(35613, 4409, 1), -- MP Increase (1x)
-(35613, 4410, 11), -- Average P. Atk.
-(35613, 4411, 11), -- Average M. Atk.
-(35613, 4412, 11), -- Average P. Def.
-(35613, 4413, 11), -- Average M. Def.
-(35613, 4414, 2), -- Standard Type
-(35613, 4415, 3), -- One-handed Sword
-(35613, 4416, 8), -- Angels
+(35613, 4408, 1), -- HP Modifiers
+(35613, 4409, 1), -- MP Modifiers
+(35613, 4410, 11), -- P. Atk. Modifiers
+(35613, 4411, 11), -- M. Atk. Modifiers
+(35613, 4412, 11), -- P. Def. Modifiers
+(35613, 4413, 11), -- M. Def. Modifiers
+(35613, 4414, 2), -- Armor Type
+(35613, 4415, 3), -- Weapon Type
+(35613, 4416, 8), -- Races
 -- Mass Gatekeeper
 (35614, 4045, 1), -- Resist Full Magic Attack
-(35614, 4408, 1), -- HP Increase (1x)
-(35614, 4409, 1), -- MP Increase (1x)
-(35614, 4410, 11), -- Average P. Atk.
-(35614, 4411, 11), -- Average M. Atk.
-(35614, 4412, 11), -- Average P. Def.
-(35614, 4413, 11), -- Average M. Def.
-(35614, 4414, 2), -- Standard Type
-(35614, 4415, 3), -- One-handed Sword
-(35614, 4416, 8), -- Angels
+(35614, 4408, 1), -- HP Modifiers
+(35614, 4409, 1), -- MP Modifiers
+(35614, 4410, 11), -- P. Atk. Modifiers
+(35614, 4411, 11), -- M. Atk. Modifiers
+(35614, 4412, 11), -- P. Def. Modifiers
+(35614, 4413, 11), -- M. Def. Modifiers
+(35614, 4414, 2), -- Armor Type
+(35614, 4415, 3), -- Weapon Type
+(35614, 4416, 8), -- Races
 -- Mass Gatekeeper
 (35615, 4045, 1), -- Resist Full Magic Attack
-(35615, 4408, 1), -- HP Increase (1x)
-(35615, 4409, 1), -- MP Increase (1x)
-(35615, 4410, 11), -- Average P. Atk.
-(35615, 4411, 11), -- Average M. Atk.
-(35615, 4412, 11), -- Average P. Def.
-(35615, 4413, 11), -- Average M. Def.
-(35615, 4414, 2), -- Standard Type
-(35615, 4415, 3), -- One-handed Sword
-(35615, 4416, 8), -- Angels
+(35615, 4408, 1), -- HP Modifiers
+(35615, 4409, 1), -- MP Modifiers
+(35615, 4410, 11), -- P. Atk. Modifiers
+(35615, 4411, 11), -- M. Atk. Modifiers
+(35615, 4412, 11), -- P. Def. Modifiers
+(35615, 4413, 11), -- M. Def. Modifiers
+(35615, 4414, 2), -- Armor Type
+(35615, 4415, 3), -- Weapon Type
+(35615, 4416, 8), -- Races
 -- Mass Gatekeeper
 (35616, 4045, 1), -- Resist Full Magic Attack
-(35616, 4408, 1), -- HP Increase (1x)
-(35616, 4409, 1), -- MP Increase (1x)
-(35616, 4410, 11), -- Average P. Atk.
-(35616, 4411, 11), -- Average M. Atk.
-(35616, 4412, 11), -- Average P. Def.
-(35616, 4413, 11), -- Average M. Def.
-(35616, 4414, 2), -- Standard Type
-(35616, 4415, 3), -- One-handed Sword
-(35616, 4416, 8), -- Angels
+(35616, 4408, 1), -- HP Modifiers
+(35616, 4409, 1), -- MP Modifiers
+(35616, 4410, 11), -- P. Atk. Modifiers
+(35616, 4411, 11); -- M. Atk. Modifiers
+
+INSERT INTO `npcskills` VALUES
+(35616, 4412, 11), -- P. Def. Modifiers
+(35616, 4413, 11), -- M. Def. Modifiers
+(35616, 4414, 2), -- Armor Type
+(35616, 4415, 3), -- Weapon Type
+(35616, 4416, 8), -- Races
 -- Mass Gatekeeper
 (35617, 4045, 1), -- Resist Full Magic Attack
-(35617, 4408, 1), -- HP Increase (1x)
-(35617, 4409, 1), -- MP Increase (1x)
-(35617, 4410, 11), -- Average P. Atk.
-(35617, 4411, 11), -- Average M. Atk.
-(35617, 4412, 11), -- Average P. Def.
-(35617, 4413, 11), -- Average M. Def.
-(35617, 4414, 2), -- Standard Type
-(35617, 4415, 3), -- One-handed Sword
-(35617, 4416, 8), -- Angels
+(35617, 4408, 1), -- HP Modifiers
+(35617, 4409, 1), -- MP Modifiers
+(35617, 4410, 11), -- P. Atk. Modifiers
+(35617, 4411, 11), -- M. Atk. Modifiers
+(35617, 4412, 11), -- P. Def. Modifiers
+(35617, 4413, 11), -- M. Def. Modifiers
+(35617, 4414, 2), -- Armor Type
+(35617, 4415, 3), -- Weapon Type
+(35617, 4416, 8), -- Races
 -- Frenzied Cougar
 (35618, 4226, 1), -- Ban Heal
-(35618, 4408, 14), -- HP Increase (6x)
-(35618, 4409, 1), -- MP Increase (1x)
-(35618, 4410, 11), -- Average P. Atk.
-(35618, 4411, 11), -- Average M. Atk.
-(35618, 4412, 11), -- Average P. Def.
-(35618, 4413, 11), -- Average M. Def.
-(35618, 4414, 2), -- Standard Type
-(35618, 4415, 3), -- One-handed Sword
-(35618, 4416, 3), -- Beasts
+(35618, 4408, 14), -- HP Modifiers
+(35618, 4409, 1), -- MP Modifiers
+(35618, 4410, 11), -- P. Atk. Modifiers
+(35618, 4411, 11), -- M. Atk. Modifiers
+(35618, 4412, 11), -- P. Def. Modifiers
+(35618, 4413, 11), -- M. Def. Modifiers
+(35618, 4414, 2), -- Armor Type
+(35618, 4415, 3), -- Weapon Type
+(35618, 4416, 3), -- Races
 -- Frenzied Buffalo
-(35619, 4225, 1), -- Resist Stun Attacks
-(35619, 4408, 14), -- HP Increase (6x)
-(35619, 4409, 1), -- MP Increase (1x)
-(35619, 4410, 11), -- Average P. Atk.
-(35619, 4411, 11), -- Average M. Atk.
-(35619, 4412, 11), -- Average P. Def.
-(35619, 4413, 11), -- Average M. Def.
-(35619, 4414, 2), -- Standard Type
-(35619, 4415, 3), -- One-handed Sword
-(35619, 4416, 3), -- Beasts
+(35619, 4225, 1), -- Resist Shock
+(35619, 4408, 14), -- HP Modifiers
+(35619, 4409, 1), -- MP Modifiers
+(35619, 4410, 11), -- P. Atk. Modifiers
+(35619, 4411, 11), -- M. Atk. Modifiers
+(35619, 4412, 11), -- P. Def. Modifiers
+(35619, 4413, 11), -- M. Def. Modifiers
+(35619, 4414, 2), -- Armor Type
+(35619, 4415, 3), -- Weapon Type
+(35619, 4416, 3), -- Races
 -- Frenzied Kookaburra
-(35620, 4408, 14), -- HP Increase (6x)
-(35620, 4409, 1), -- MP Increase (1x)
-(35620, 4410, 11), -- Average P. Atk.
-(35620, 4411, 11), -- Average M. Atk.
-(35620, 4412, 11), -- Average P. Def.
-(35620, 4413, 11), -- Average M. Def.
-(35620, 4414, 2), -- Standard Type
-(35620, 4415, 3), -- One-handed Sword
-(35620, 4416, 3), -- Beasts
+(35620, 4408, 14), -- HP Modifiers
+(35620, 4409, 1), -- MP Modifiers
+(35620, 4410, 11), -- P. Atk. Modifiers
+(35620, 4411, 11), -- M. Atk. Modifiers
+(35620, 4412, 11), -- P. Def. Modifiers
+(35620, 4413, 11), -- M. Def. Modifiers
+(35620, 4414, 2), -- Armor Type
+(35620, 4415, 3), -- Weapon Type
+(35620, 4416, 3), -- Races
 -- Frenzied Buffalo Baby
-(35621, 4408, 14), -- HP Increase (6x)
-(35621, 4409, 1), -- MP Increase (1x)
-(35621, 4410, 11), -- Average P. Atk.
-(35621, 4411, 11), -- Average M. Atk.
-(35621, 4412, 11), -- Average P. Def.
-(35621, 4413, 11), -- Average M. Def.
-(35621, 4414, 2), -- Standard Type
-(35621, 4415, 3), -- One-handed Sword
-(35621, 4416, 3), -- Beasts
+(35621, 4408, 14), -- HP Modifiers
+(35621, 4409, 1), -- MP Modifiers
+(35621, 4410, 11), -- P. Atk. Modifiers
+(35621, 4411, 11), -- M. Atk. Modifiers
+(35621, 4412, 11), -- P. Def. Modifiers
+(35621, 4413, 11), -- M. Def. Modifiers
+(35621, 4414, 2), -- Armor Type
+(35621, 4415, 3), -- Weapon Type
+(35621, 4416, 3), -- Races
 -- Frenzied Baby Cougar
-(35622, 4071, 3), -- Resist Bow/Crossbow Weapons
+(35622, 4071, 3), -- Resist Archery
 (35622, 4093, 1), -- Evasion
-(35622, 4408, 14), -- HP Increase (6x)
-(35622, 4409, 1), -- MP Increase (1x)
-(35622, 4410, 11), -- Average P. Atk.
-(35622, 4411, 11), -- Average M. Atk.
-(35622, 4412, 11), -- Average P. Def.
-(35622, 4413, 11), -- Average M. Def.
-(35622, 4414, 2), -- Standard Type
-(35622, 4415, 3), -- One-handed Sword
-(35622, 4416, 3), -- Beasts
+(35622, 4408, 14), -- HP Modifiers
+(35622, 4409, 1), -- MP Modifiers
+(35622, 4410, 11), -- P. Atk. Modifiers
+(35622, 4411, 11), -- M. Atk. Modifiers
+(35622, 4412, 11), -- P. Def. Modifiers
+(35622, 4413, 11), -- M. Def. Modifiers
+(35622, 4414, 2), -- Armor Type
+(35622, 4415, 3), -- Weapon Type
+(35622, 4416, 3), -- Races
 -- Inner Doorman
 (35623, 4045, 1), -- Resist Full Magic Attack
-(35623, 4408, 1), -- HP Increase (1x)
-(35623, 4409, 1), -- MP Increase (1x)
-(35623, 4410, 11), -- Average P. Atk.
-(35623, 4411, 11), -- Average M. Atk.
-(35623, 4412, 11), -- Average P. Def.
-(35623, 4413, 11), -- Average M. Def.
-(35623, 4414, 2), -- Standard Type
-(35623, 4415, 3), -- One-handed Sword
-(35623, 4416, 8), -- Angels
+(35623, 4408, 1), -- HP Modifiers
+(35623, 4409, 1), -- MP Modifiers
+(35623, 4410, 11), -- P. Atk. Modifiers
+(35623, 4411, 11), -- M. Atk. Modifiers
+(35623, 4412, 11), -- P. Def. Modifiers
+(35623, 4413, 11), -- M. Def. Modifiers
+(35623, 4414, 2), -- Armor Type
+(35623, 4415, 3), -- Weapon Type
+(35623, 4416, 8), -- Races
 -- Inner Doorman
 (35624, 4045, 1), -- Resist Full Magic Attack
-(35624, 4408, 1), -- HP Increase (1x)
-(35624, 4409, 1), -- MP Increase (1x)
-(35624, 4410, 11), -- Average P. Atk.
-(35624, 4411, 11), -- Average M. Atk.
-(35624, 4412, 11), -- Average P. Def.
-(35624, 4413, 11), -- Average M. Def.
-(35624, 4414, 2), -- Standard Type
-(35624, 4415, 3), -- One-handed Sword
-(35624, 4416, 8), -- Angels
+(35624, 4408, 1), -- HP Modifiers
+(35624, 4409, 1), -- MP Modifiers
+(35624, 4410, 11), -- P. Atk. Modifiers
+(35624, 4411, 11), -- M. Atk. Modifiers
+(35624, 4412, 11), -- P. Def. Modifiers
+(35624, 4413, 11), -- M. Def. Modifiers
+(35624, 4414, 2), -- Armor Type
+(35624, 4415, 3), -- Weapon Type
+(35624, 4416, 8), -- Races
 -- Outer Doorman
 (35625, 4045, 1), -- Resist Full Magic Attack
-(35625, 4408, 1), -- HP Increase (1x)
-(35625, 4409, 1), -- MP Increase (1x)
-(35625, 4410, 11), -- Average P. Atk.
-(35625, 4411, 11), -- Average M. Atk.
-(35625, 4412, 11), -- Average P. Def.
-(35625, 4413, 11), -- Average M. Def.
-(35625, 4414, 2), -- Standard Type
-(35625, 4415, 3), -- One-handed Sword
-(35625, 4416, 8), -- Angels
+(35625, 4408, 1), -- HP Modifiers
+(35625, 4409, 1), -- MP Modifiers
+(35625, 4410, 11), -- P. Atk. Modifiers
+(35625, 4411, 11), -- M. Atk. Modifiers
+(35625, 4412, 11), -- P. Def. Modifiers
+(35625, 4413, 11), -- M. Def. Modifiers
+(35625, 4414, 2), -- Armor Type
+(35625, 4415, 3), -- Weapon Type
+(35625, 4416, 8), -- Races
 -- Outer Doorman
 (35626, 4045, 1), -- Resist Full Magic Attack
-(35626, 4408, 1), -- HP Increase (1x)
-(35626, 4409, 1), -- MP Increase (1x)
-(35626, 4410, 11), -- Average P. Atk.
-(35626, 4411, 11), -- Average M. Atk.
-(35626, 4412, 11), -- Average P. Def.
-(35626, 4413, 11), -- Average M. Def.
-(35626, 4414, 2), -- Standard Type
-(35626, 4415, 3), -- One-handed Sword
-(35626, 4416, 8), -- Angels
+(35626, 4408, 1), -- HP Modifiers
+(35626, 4409, 1), -- MP Modifiers
+(35626, 4410, 11), -- P. Atk. Modifiers
+(35626, 4411, 11), -- M. Atk. Modifiers
+(35626, 4412, 11), -- P. Def. Modifiers
+(35626, 4413, 11), -- M. Def. Modifiers
+(35626, 4414, 2), -- Armor Type
+(35626, 4415, 3), -- Weapon Type
+(35626, 4416, 8), -- Races
 -- Herald
 (35627, 4045, 1), -- Resist Full Magic Attack
-(35627, 4408, 1), -- HP Increase (1x)
-(35627, 4409, 1), -- MP Increase (1x)
-(35627, 4410, 11), -- Average P. Atk.
-(35627, 4411, 11), -- Average M. Atk.
-(35627, 4412, 11), -- Average P. Def.
-(35627, 4413, 11), -- Average M. Def.
-(35627, 4414, 2), -- Standard Type
-(35627, 4415, 3), -- One-handed Sword
-(35627, 4416, 8), -- Angels
+(35627, 4408, 1), -- HP Modifiers
+(35627, 4409, 1), -- MP Modifiers
+(35627, 4410, 11), -- P. Atk. Modifiers
+(35627, 4411, 11), -- M. Atk. Modifiers
+(35627, 4412, 11), -- P. Def. Modifiers
+(35627, 4413, 11), -- M. Def. Modifiers
+(35627, 4414, 2), -- Armor Type
+(35627, 4415, 3), -- Weapon Type
+(35627, 4416, 8), -- Races
 -- Quigby
 (35628, 4045, 1), -- Resist Full Magic Attack
-(35628, 4408, 1), -- HP Increase (1x)
-(35628, 4409, 1), -- MP Increase (1x)
-(35628, 4410, 11), -- Average P. Atk.
-(35628, 4411, 11), -- Average M. Atk.
-(35628, 4412, 11), -- Average P. Def.
-(35628, 4413, 11), -- Average M. Def.
-(35628, 4414, 2), -- Standard Type
-(35628, 4415, 3), -- One-handed Sword
-(35628, 4416, 8), -- Angels
+(35628, 4408, 1), -- HP Modifiers
+(35628, 4409, 1), -- MP Modifiers
+(35628, 4410, 11), -- P. Atk. Modifiers
+(35628, 4411, 11), -- M. Atk. Modifiers
+(35628, 4412, 11), -- P. Def. Modifiers
+(35628, 4413, 11), -- M. Def. Modifiers
+(35628, 4414, 2), -- Armor Type
+(35628, 4415, 3), -- Weapon Type
+(35628, 4416, 8), -- Races
 -- Lidia von Hellmann
 (35629, 4045, 1), -- Resist Full Magic Attack
-(35629, 4071, 3), -- Resist Bow/Crossbow Weapons
-(35629, 4085, 1), -- Critical Damage
+(35629, 4071, 3), -- Resist Archery
+(35629, 4085, 1), -- Critical Power
 (35629, 4086, 1), -- Critical Chance
 (35629, 4095, 1), -- Damage Shield
-(35629, 4275, 3), -- Holy Attack Weak Point
+(35629, 4275, 3), -- Sacred Attack Weak Point
 (35629, 4278, 1), -- Dark Attack
-(35629, 4408, 1), -- HP Increase (1x)
-(35629, 4409, 1), -- MP Increase (1x)
-(35629, 4410, 11), -- Average P. Atk.
-(35629, 4411, 11), -- Average M. Atk.
-(35629, 4412, 11), -- Average P. Def.
-(35629, 4413, 11), -- Average M. Def.
-(35629, 4414, 2), -- Standard Type
-(35629, 4415, 3), -- One-handed Sword
-(35629, 4416, 9), -- Demons
-(35629, 4997, 1), -- Lidia Regeneration
-(35629, 4998, 1), -- Lidia Twister
-(35629, 4999, 1), -- Lidia Vampiric Touch
+(35629, 4408, 1), -- HP Modifiers
+(35629, 4409, 1), -- MP Modifiers
+(35629, 4410, 11), -- P. Atk. Modifiers
+(35629, 4411, 11), -- M. Atk. Modifiers
+(35629, 4412, 11), -- P. Def. Modifiers
+(35629, 4413, 11), -- M. Def. Modifiers
+(35629, 4414, 2), -- Armor Type
+(35629, 4415, 3), -- Weapon Type
+(35629, 4416, 9), -- Races
+(35629, 4997, 1), -- Lidia - Regen
+(35629, 4998, 1), -- Lidia - Twister
+(35629, 4999, 1), -- Lidia - Range Life Drain
 -- Alfred von Hellmann
 (35630, 4045, 1), -- Resist Full Magic Attack
-(35630, 4071, 3), -- Resist Bow/Crossbow Weapons
-(35630, 4085, 1), -- Critical Damage
+(35630, 4071, 3), -- Resist Archery
+(35630, 4085, 1), -- Critical Power
 (35630, 4086, 1), -- Critical Chance
 (35630, 4095, 1), -- Damage Shield
-(35630, 4275, 3), -- Holy Attack Weak Point
+(35630, 4275, 3), -- Sacred Attack Weak Point
 (35630, 4278, 1), -- Dark Attack
-(35630, 4408, 1), -- HP Increase (1x)
-(35630, 4409, 1), -- MP Increase (1x)
-(35630, 4410, 11), -- Average P. Atk.
-(35630, 4411, 11), -- Average M. Atk.
-(35630, 4412, 11), -- Average P. Def.
-(35630, 4413, 11), -- Average M. Def.
-(35630, 4414, 2), -- Standard Type
-(35630, 4415, 13), -- Two-handed Sword
-(35630, 4416, 9), -- Demons
-(35630, 5000, 1), -- Alfred Strike
-(35630, 5001, 1), -- Alfred Life Drain
+(35630, 4408, 1), -- HP Modifiers
+(35630, 4409, 1), -- MP Modifiers
+(35630, 4410, 11), -- P. Atk. Modifiers
+(35630, 4411, 11), -- M. Atk. Modifiers
+(35630, 4412, 11), -- P. Def. Modifiers
+(35630, 4413, 11), -- M. Def. Modifiers
+(35630, 4414, 2), -- Armor Type
+(35630, 4415, 13), -- Weapon Type
+(35630, 4416, 9), -- Races
+(35630, 5000, 1), -- Alfred - Super Strike
+(35630, 5001, 1), -- Alfred - Life Drain
 -- Giselle von Hellmann
 (35631, 4045, 1), -- Resist Full Magic Attack
-(35631, 4071, 3), -- Resist Bow/Crossbow Weapons
-(35631, 4085, 1), -- Critical Damage
+(35631, 4071, 3), -- Resist Archery
+(35631, 4085, 1), -- Critical Power
 (35631, 4086, 1), -- Critical Chance
 (35631, 4095, 1), -- Damage Shield
-(35631, 4275, 3), -- Holy Attack Weak Point
+(35631, 4275, 3), -- Sacred Attack Weak Point
 (35631, 4278, 1), -- Dark Attack
-(35631, 4408, 1), -- HP Increase (1x)
-(35631, 4409, 1), -- MP Increase (1x)
-(35631, 4410, 11), -- Average P. Atk.
-(35631, 4411, 11), -- Average M. Atk.
-(35631, 4412, 11), -- Average P. Def.
-(35631, 4413, 11), -- Average M. Def.
-(35631, 4414, 2), -- Standard Type
-(35631, 4415, 3), -- One-handed Sword
-(35631, 4416, 9), -- Demons
-(35631, 5002, 1), -- Giselle Vampiric Rage
-(35631, 5003, 1), -- Giselle Tempest
+(35631, 4408, 1), -- HP Modifiers
+(35631, 4409, 1), -- MP Modifiers
+(35631, 4410, 11), -- P. Atk. Modifiers
+(35631, 4411, 11), -- M. Atk. Modifiers
+(35631, 4412, 11), -- P. Def. Modifiers
+(35631, 4413, 11), -- M. Def. Modifiers
+(35631, 4414, 2), -- Armor Type
+(35631, 4415, 3), -- Weapon Type
+(35631, 4416, 9), -- Races
+(35631, 5002, 1), -- Giselle - Vampiric Rage
+(35631, 5003, 1), -- Giselle - Tempest
 -- Vampire Adept
-(35632, 4034, 6), -- Ice Bolt
+(35632, 4034, 6), -- Decrease Speed
 (35632, 4045, 1), -- Resist Full Magic Attack
-(35632, 4085, 1), -- Critical Damage
-(35632, 4275, 3), -- Holy Attack Weak Point
+(35632, 4085, 1), -- Critical Power
+(35632, 4275, 3), -- Sacred Attack Weak Point
 (35632, 4278, 1), -- Dark Attack
-(35632, 4408, 1), -- HP Increase (1x)
-(35632, 4409, 1), -- MP Increase (1x)
-(35632, 4410, 11), -- Average P. Atk.
-(35632, 4411, 11), -- Average M. Atk.
-(35632, 4412, 11), -- Average P. Def.
-(35632, 4413, 11), -- Average M. Def.
-(35632, 4414, 2), -- Standard Type
-(35632, 4415, 7), -- Daggers
-(35632, 4416, 9), -- Demons
+(35632, 4408, 1), -- HP Modifiers
+(35632, 4409, 1), -- MP Modifiers
+(35632, 4410, 11), -- P. Atk. Modifiers
+(35632, 4411, 11), -- M. Atk. Modifiers
+(35632, 4412, 11), -- P. Def. Modifiers
+(35632, 4413, 11), -- M. Def. Modifiers
+(35632, 4414, 2), -- Armor Type
+(35632, 4415, 7), -- Weapon Type
+(35632, 4416, 9), -- Races
 -- Vampire Soldier
 (35633, 4045, 1), -- Resist Full Magic Attack
-(35633, 4085, 1), -- Critical Damage
-(35633, 4275, 3), -- Holy Attack Weak Point
+(35633, 4085, 1), -- Critical Power
+(35633, 4275, 3), -- Sacred Attack Weak Point
 (35633, 4278, 1), -- Dark Attack
-(35633, 4408, 1), -- HP Increase (1x)
-(35633, 4409, 1), -- MP Increase (1x)
-(35633, 4410, 11), -- Average P. Atk.
-(35633, 4411, 11), -- Average M. Atk.
-(35633, 4412, 11), -- Average P. Def.
-(35633, 4413, 11), -- Average M. Def.
-(35633, 4414, 2), -- Standard Type
-(35633, 4415, 7), -- Daggers
-(35633, 4416, 9), -- Demons
+(35633, 4408, 1), -- HP Modifiers
+(35633, 4409, 1), -- MP Modifiers
+(35633, 4410, 11), -- P. Atk. Modifiers
+(35633, 4411, 11), -- M. Atk. Modifiers
+(35633, 4412, 11), -- P. Def. Modifiers
+(35633, 4413, 11), -- M. Def. Modifiers
+(35633, 4414, 2), -- Armor Type
+(35633, 4415, 7), -- Weapon Type
+(35633, 4416, 9), -- Races
 -- Vampire Caster
 (35634, 4045, 1), -- Resist Full Magic Attack
-(35634, 4085, 1), -- Critical Damage
-(35634, 4275, 3), -- Holy Attack Weak Point
+(35634, 4085, 1), -- Critical Power
+(35634, 4275, 3), -- Sacred Attack Weak Point
 (35634, 4278, 1), -- Dark Attack
-(35634, 4408, 1), -- HP Increase (1x)
-(35634, 4409, 1), -- MP Increase (1x)
-(35634, 4410, 11), -- Average P. Atk.
-(35634, 4411, 11), -- Average M. Atk.
-(35634, 4412, 11), -- Average P. Def.
-(35634, 4413, 11), -- Average M. Def.
-(35634, 4414, 2), -- Standard Type
-(35634, 4415, 9), -- Bows
-(35634, 4416, 9), -- Demons
-(35634, 5056, 7), -- Hurricane
+(35634, 4408, 1), -- HP Modifiers
+(35634, 4409, 1), -- MP Modifiers
+(35634, 4410, 11), -- P. Atk. Modifiers
+(35634, 4411, 11), -- M. Atk. Modifiers
+(35634, 4412, 11), -- P. Def. Modifiers
+(35634, 4413, 11), -- M. Def. Modifiers
+(35634, 4414, 2), -- Armor Type
+(35634, 4415, 9), -- Weapon Type
+(35634, 4416, 9), -- Races
+(35634, 5056, 7), -- Castle DD Wind
 -- Vampire Magister
 (35635, 4045, 1), -- Resist Full Magic Attack
-(35635, 4275, 3), -- Holy Attack Weak Point
+(35635, 4275, 3), -- Sacred Attack Weak Point
 (35635, 4278, 1), -- Dark Attack
-(35635, 4408, 1), -- HP Increase (1x)
-(35635, 4409, 1), -- MP Increase (1x)
-(35635, 4410, 11), -- Average P. Atk.
-(35635, 4411, 11), -- Average M. Atk.
-(35635, 4412, 11), -- Average P. Def.
-(35635, 4413, 11), -- Average M. Def.
-(35635, 4414, 2), -- Standard Type
-(35635, 4415, 3), -- One-handed Sword
-(35635, 4416, 9), -- Demons
-(35635, 5051, 6), -- Blazing Circle
+(35635, 4408, 1), -- HP Modifiers
+(35635, 4409, 1), -- MP Modifiers
+(35635, 4410, 11), -- P. Atk. Modifiers
+(35635, 4411, 11), -- M. Atk. Modifiers
+(35635, 4412, 11), -- P. Def. Modifiers
+(35635, 4413, 11), -- M. Def. Modifiers
+(35635, 4414, 2), -- Armor Type
+(35635, 4415, 3), -- Weapon Type
+(35635, 4416, 9), -- Races
+(35635, 5051, 6), -- Castle Self AE Fire
 -- Vampire Warlord
-(35636, 4030, 3), -- Might
+(35636, 4030, 3), -- NPC Clan Might
 (35636, 4045, 1), -- Resist Full Magic Attack
-(35636, 4071, 3), -- Resist Bow/Crossbow Weapons
-(35636, 4085, 1), -- Critical Damage
-(35636, 4275, 3), -- Holy Attack Weak Point
+(35636, 4071, 3), -- Resist Archery
+(35636, 4085, 1), -- Critical Power
+(35636, 4275, 3), -- Sacred Attack Weak Point
 (35636, 4278, 1), -- Dark Attack
-(35636, 4408, 1), -- HP Increase (1x)
-(35636, 4409, 1), -- MP Increase (1x)
-(35636, 4410, 11), -- Average P. Atk.
-(35636, 4411, 11), -- Average M. Atk.
-(35636, 4412, 11), -- Average P. Def.
-(35636, 4413, 11), -- Average M. Def.
-(35636, 4414, 2), -- Standard Type
-(35636, 4415, 13), -- Two-handed Sword
-(35636, 4416, 9), -- Demons
+(35636, 4408, 1), -- HP Modifiers
+(35636, 4409, 1), -- MP Modifiers
+(35636, 4410, 11), -- P. Atk. Modifiers
+(35636, 4411, 11), -- M. Atk. Modifiers
+(35636, 4412, 11), -- P. Def. Modifiers
+(35636, 4413, 11), -- M. Def. Modifiers
+(35636, 4414, 2), -- Armor Type
+(35636, 4415, 13), -- Weapon Type
+(35636, 4416, 9), -- Races
 -- Vampire Leader
 (35637, 4045, 1), -- Resist Full Magic Attack
-(35637, 4071, 3), -- Resist Bow/Crossbow Weapons
-(35637, 4085, 1), -- Critical Damage
-(35637, 4275, 3), -- Holy Attack Weak Point
+(35637, 4071, 3), -- Resist Archery
+(35637, 4085, 1), -- Critical Power
+(35637, 4275, 3), -- Sacred Attack Weak Point
 (35637, 4278, 1), -- Dark Attack
-(35637, 4408, 1), -- HP Increase (1x)
-(35637, 4409, 1), -- MP Increase (1x)
-(35637, 4410, 11), -- Average P. Atk.
-(35637, 4411, 11), -- Average M. Atk.
-(35637, 4412, 11), -- Average P. Def.
-(35637, 4413, 11), -- Average M. Def.
-(35637, 4414, 2), -- Standard Type
-(35637, 4415, 3), -- One-handed Sword
-(35637, 4416, 9), -- Demons
+(35637, 4408, 1), -- HP Modifiers
+(35637, 4409, 1), -- MP Modifiers
+(35637, 4410, 11), -- P. Atk. Modifiers
+(35637, 4411, 11), -- M. Atk. Modifiers
+(35637, 4412, 11), -- P. Def. Modifiers
+(35637, 4413, 11), -- M. Def. Modifiers
+(35637, 4414, 2), -- Armor Type
+(35637, 4415, 3), -- Weapon Type
+(35637, 4416, 9), -- Races
 -- Valens
 (35638, 4045, 1), -- Resist Full Magic Attack
-(35638, 4408, 1), -- HP Increase (1x)
-(35638, 4409, 1), -- MP Increase (1x)
-(35638, 4410, 11), -- Average P. Atk.
-(35638, 4411, 11), -- Average M. Atk.
-(35638, 4412, 11), -- Average P. Def.
-(35638, 4413, 11), -- Average M. Def.
-(35638, 4414, 2), -- Standard Type
-(35638, 4415, 3), -- One-handed Sword
-(35638, 4416, 9), -- Demons
+(35638, 4408, 1), -- HP Modifiers
+(35638, 4409, 1), -- MP Modifiers
+(35638, 4410, 11), -- P. Atk. Modifiers
+(35638, 4411, 11), -- M. Atk. Modifiers
+(35638, 4412, 11), -- P. Def. Modifiers
+(35638, 4413, 11), -- M. Def. Modifiers
+(35638, 4414, 2), -- Armor Type
+(35638, 4415, 3), -- Weapon Type
+(35638, 4416, 9), -- Races
 -- Jacquard
 (35639, 4045, 1), -- Resist Full Magic Attack
-(35639, 4408, 1), -- HP Increase (1x)
-(35639, 4409, 1), -- MP Increase (1x)
-(35639, 4410, 11), -- Average P. Atk.
-(35639, 4411, 11), -- Average M. Atk.
-(35639, 4412, 11), -- Average P. Def.
-(35639, 4413, 11), -- Average M. Def.
-(35639, 4414, 2), -- Standard Type
-(35639, 4415, 3), -- One-handed Sword
-(35639, 4416, 9), -- Demons
+(35639, 4408, 1), -- HP Modifiers
+(35639, 4409, 1), -- MP Modifiers
+(35639, 4410, 11), -- P. Atk. Modifiers
+(35639, 4411, 11), -- M. Atk. Modifiers
+(35639, 4412, 11), -- P. Def. Modifiers
+(35639, 4413, 11), -- M. Def. Modifiers
+(35639, 4414, 2), -- Armor Type
+(35639, 4415, 3), -- Weapon Type
+(35639, 4416, 9), -- Races
 -- Bandello
 (35640, 4045, 1), -- Resist Full Magic Attack
-(35640, 4408, 1), -- HP Increase (1x)
-(35640, 4409, 1), -- MP Increase (1x)
-(35640, 4410, 11), -- Average P. Atk.
-(35640, 4411, 11), -- Average M. Atk.
-(35640, 4412, 11), -- Average P. Def.
-(35640, 4413, 11), -- Average M. Def.
-(35640, 4414, 2), -- Standard Type
-(35640, 4415, 3), -- One-handed Sword
-(35640, 4416, 9), -- Demons
+(35640, 4408, 1), -- HP Modifiers
+(35640, 4409, 1), -- MP Modifiers
+(35640, 4410, 11), -- P. Atk. Modifiers
+(35640, 4411, 11), -- M. Atk. Modifiers
+(35640, 4412, 11), -- P. Def. Modifiers
+(35640, 4413, 11), -- M. Def. Modifiers
+(35640, 4414, 2), -- Armor Type
+(35640, 4415, 3), -- Weapon Type
+(35640, 4416, 9), -- Races
 -- Fortress Guard
 (35641, 4045, 1), -- Resist Full Magic Attack
-(35641, 4408, 1), -- HP Increase (1x)
-(35641, 4409, 1), -- MP Increase (1x)
-(35641, 4410, 11), -- Average P. Atk.
-(35641, 4411, 11), -- Average M. Atk.
-(35641, 4412, 11), -- Average P. Def.
-(35641, 4413, 11), -- Average M. Def.
-(35641, 4414, 2), -- Standard Type
-(35641, 4415, 3), -- One-handed Sword
-(35641, 4416, 9), -- Demons
+(35641, 4408, 1), -- HP Modifiers
+(35641, 4409, 1), -- MP Modifiers
+(35641, 4410, 11), -- P. Atk. Modifiers
+(35641, 4411, 11), -- M. Atk. Modifiers
+(35641, 4412, 11), -- P. Def. Modifiers
+(35641, 4413, 11), -- M. Def. Modifiers
+(35641, 4414, 2), -- Armor Type
+(35641, 4415, 3), -- Weapon Type
+(35641, 4416, 9), -- Races
 -- Fortress Guard
 (35642, 4045, 1), -- Resist Full Magic Attack
-(35642, 4408, 1), -- HP Increase (1x)
-(35642, 4409, 1), -- MP Increase (1x)
-(35642, 4410, 11), -- Average P. Atk.
-(35642, 4411, 11), -- Average M. Atk.
-(35642, 4412, 11), -- Average P. Def.
-(35642, 4413, 11), -- Average M. Def.
-(35642, 4414, 2), -- Standard Type
-(35642, 4415, 3), -- One-handed Sword
-(35642, 4416, 9), -- Demons
+(35642, 4408, 1), -- HP Modifiers
+(35642, 4409, 1), -- MP Modifiers
+(35642, 4410, 11), -- P. Atk. Modifiers
+(35642, 4411, 11), -- M. Atk. Modifiers
+(35642, 4412, 11), -- P. Def. Modifiers
+(35642, 4413, 11), -- M. Def. Modifiers
+(35642, 4414, 2), -- Armor Type
+(35642, 4415, 3), -- Weapon Type
+(35642, 4416, 9), -- Races
 -- Gate  
 (35643, 4045, 1), -- Resist Full Magic Attack
-(35643, 4390, 1), -- Mystic Immunity
-(35643, 4408, 1), -- HP Increase (1x)
-(35643, 4409, 1), -- MP Increase (1x)
-(35643, 4410, 11), -- Average P. Atk.
-(35643, 4411, 11), -- Average M. Atk.
-(35643, 4412, 11), -- Average P. Def.
-(35643, 4413, 11), -- Average M. Def.
-(35643, 4414, 2), -- Standard Type
-(35643, 4415, 3), -- One-handed Sword
-(35643, 4416, 19), -- Others
+(35643, 4390, 1), -- NPC Abnormal Immunity
+(35643, 4408, 1), -- HP Modifiers
+(35643, 4409, 1), -- MP Modifiers
+(35643, 4410, 11), -- P. Atk. Modifiers
+(35643, 4411, 11), -- M. Atk. Modifiers
+(35643, 4412, 11), -- P. Def. Modifiers
+(35643, 4413, 11), -- M. Def. Modifiers
+(35643, 4414, 2), -- Armor Type
+(35643, 4415, 3), -- Weapon Type
+(35643, 4416, 19), -- Races
 -- Manor Manager
 (35644, 4045, 1), -- Resist Full Magic Attack
-(35644, 4408, 1), -- HP Increase (1x)
-(35644, 4409, 1), -- MP Increase (1x)
-(35644, 4410, 11), -- Average P. Atk.
-(35644, 4411, 11), -- Average M. Atk.
-(35644, 4412, 11), -- Average P. Def.
-(35644, 4413, 11), -- Average M. Def.
-(35644, 4414, 2), -- Standard Type
-(35644, 4415, 3), -- One-handed Sword
-(35644, 4416, 18), -- Dwarves
+(35644, 4408, 1), -- HP Modifiers
+(35644, 4409, 1), -- MP Modifiers
+(35644, 4410, 11), -- P. Atk. Modifiers
+(35644, 4411, 11), -- M. Atk. Modifiers
+(35644, 4412, 11), -- P. Def. Modifiers
+(35644, 4413, 11), -- M. Def. Modifiers
+(35644, 4414, 2), -- Armor Type
+(35644, 4415, 3), -- Weapon Type
+(35644, 4416, 18), -- Races
 -- Manor Manager
 (35645, 4045, 1), -- Resist Full Magic Attack
-(35645, 4408, 1), -- HP Increase (1x)
-(35645, 4409, 1), -- MP Increase (1x)
-(35645, 4410, 11), -- Average P. Atk.
-(35645, 4411, 11), -- Average M. Atk.
-(35645, 4412, 11), -- Average P. Def.
-(35645, 4413, 11), -- Average M. Def.
-(35645, 4414, 2), -- Standard Type
-(35645, 4415, 3), -- One-handed Sword
-(35645, 4416, 17), -- Orcs
+(35645, 4408, 1), -- HP Modifiers
+(35645, 4409, 1), -- MP Modifiers
+(35645, 4410, 11), -- P. Atk. Modifiers
+(35645, 4411, 11), -- M. Atk. Modifiers
+(35645, 4412, 11), -- P. Def. Modifiers
+(35645, 4413, 11), -- M. Def. Modifiers
+(35645, 4414, 2), -- Armor Type
+(35645, 4415, 3), -- Weapon Type
+(35645, 4416, 17), -- Races
 -- Vampire Caster
 (35646, 4045, 1), -- Resist Full Magic Attack
-(35646, 4085, 1), -- Critical Damage
-(35646, 4275, 3), -- Holy Attack Weak Point
+(35646, 4085, 1), -- Critical Power
+(35646, 4275, 3), -- Sacred Attack Weak Point
 (35646, 4278, 1), -- Dark Attack
-(35646, 4408, 1), -- HP Increase (1x)
-(35646, 4409, 1), -- MP Increase (1x)
-(35646, 4410, 11), -- Average P. Atk.
-(35646, 4411, 11), -- Average M. Atk.
-(35646, 4412, 11), -- Average P. Def.
-(35646, 4413, 11), -- Average M. Def.
-(35646, 4414, 2), -- Standard Type
-(35646, 4415, 9), -- Bows
-(35646, 4416, 9), -- Demons
+(35646, 4408, 1), -- HP Modifiers
+(35646, 4409, 1), -- MP Modifiers
+(35646, 4410, 11), -- P. Atk. Modifiers
+(35646, 4411, 11), -- M. Atk. Modifiers
+(35646, 4412, 11), -- P. Def. Modifiers
+(35646, 4413, 11), -- M. Def. Modifiers
+(35646, 4414, 2), -- Armor Type
+(35646, 4415, 9), -- Weapon Type
+(35646, 4416, 9), -- Races
 -- Vampire Leader
 (35647, 4045, 1), -- Resist Full Magic Attack
-(35647, 4071, 3), -- Resist Bow/Crossbow Weapons
-(35647, 4085, 1), -- Critical Damage
-(35647, 4275, 3), -- Holy Attack Weak Point
+(35647, 4071, 3), -- Resist Archery
+(35647, 4085, 1), -- Critical Power
+(35647, 4275, 3), -- Sacred Attack Weak Point
 (35647, 4278, 1), -- Dark Attack
-(35647, 4408, 1), -- HP Increase (1x)
-(35647, 4409, 1); -- MP Increase (1x)
-
-INSERT INTO `npcskills` VALUES
-(35647, 4410, 11), -- Average P. Atk.
-(35647, 4411, 11), -- Average M. Atk.
-(35647, 4412, 11), -- Average P. Def.
-(35647, 4413, 11), -- Average M. Def.
-(35647, 4414, 2), -- Standard Type
-(35647, 4415, 3), -- One-handed Sword
-(35647, 4416, 9), -- Demons
+(35647, 4408, 1), -- HP Modifiers
+(35647, 4409, 1), -- MP Modifiers
+(35647, 4410, 11), -- P. Atk. Modifiers
+(35647, 4411, 11), -- M. Atk. Modifiers
+(35647, 4412, 11), -- P. Def. Modifiers
+(35647, 4413, 11), -- M. Def. Modifiers
+(35647, 4414, 2), -- Armor Type
+(35647, 4415, 3), -- Weapon Type
+(35647, 4416, 9), -- Races
 -- Court Magician
 (35648, 4045, 1), -- Resist Full Magic Attack
-(35648, 4408, 1), -- HP Increase (1x)
-(35648, 4409, 1), -- MP Increase (1x)
-(35648, 4410, 11), -- Average P. Atk.
-(35648, 4411, 11), -- Average M. Atk.
-(35648, 4412, 11), -- Average P. Def.
-(35648, 4413, 11), -- Average M. Def.
-(35648, 4414, 2), -- Standard Type
-(35648, 4415, 3), -- One-handed Sword
-(35648, 4416, 15), -- Elves
+(35648, 4408, 1), -- HP Modifiers
+(35648, 4409, 1), -- MP Modifiers
+(35648, 4410, 11), -- P. Atk. Modifiers
+(35648, 4411, 11), -- M. Atk. Modifiers
+(35648, 4412, 11), -- P. Def. Modifiers
+(35648, 4413, 11), -- M. Def. Modifiers
+(35648, 4414, 2), -- Armor Type
+(35648, 4415, 3), -- Weapon Type
+(35648, 4416, 15), -- Races
 -- Court Magician
 (35649, 4045, 1), -- Resist Full Magic Attack
-(35649, 4408, 1), -- HP Increase (1x)
-(35649, 4409, 1), -- MP Increase (1x)
-(35649, 4410, 11), -- Average P. Atk.
-(35649, 4411, 11), -- Average M. Atk.
-(35649, 4412, 11), -- Average P. Def.
-(35649, 4413, 11), -- Average M. Def.
-(35649, 4414, 2), -- Standard Type
-(35649, 4415, 3), -- One-handed Sword
-(35649, 4416, 15), -- Elves
+(35649, 4408, 1), -- HP Modifiers
+(35649, 4409, 1), -- MP Modifiers
+(35649, 4410, 11), -- P. Atk. Modifiers
+(35649, 4411, 11), -- M. Atk. Modifiers
+(35649, 4412, 11), -- P. Def. Modifiers
+(35649, 4413, 11), -- M. Def. Modifiers
+(35649, 4414, 2), -- Armor Type
+(35649, 4415, 3), -- Weapon Type
+(35649, 4416, 15), -- Races
 -- Court Magician
 (35650, 4045, 1), -- Resist Full Magic Attack
-(35650, 4408, 1), -- HP Increase (1x)
-(35650, 4409, 1), -- MP Increase (1x)
-(35650, 4410, 11), -- Average P. Atk.
-(35650, 4411, 11), -- Average M. Atk.
-(35650, 4412, 11), -- Average P. Def.
-(35650, 4413, 11), -- Average M. Def.
-(35650, 4414, 2), -- Standard Type
-(35650, 4415, 3), -- One-handed Sword
-(35650, 4416, 15), -- Elves
+(35650, 4408, 1), -- HP Modifiers
+(35650, 4409, 1), -- MP Modifiers
+(35650, 4410, 11), -- P. Atk. Modifiers
+(35650, 4411, 11), -- M. Atk. Modifiers
+(35650, 4412, 11), -- P. Def. Modifiers
+(35650, 4413, 11), -- M. Def. Modifiers
+(35650, 4414, 2), -- Armor Type
+(35650, 4415, 3), -- Weapon Type
+(35650, 4416, 15), -- Races
 -- Court Magician
 (35651, 4045, 1), -- Resist Full Magic Attack
-(35651, 4408, 1), -- HP Increase (1x)
-(35651, 4409, 1), -- MP Increase (1x)
-(35651, 4410, 11), -- Average P. Atk.
-(35651, 4411, 11), -- Average M. Atk.
-(35651, 4412, 11), -- Average P. Def.
-(35651, 4413, 11), -- Average M. Def.
-(35651, 4414, 2), -- Standard Type
-(35651, 4415, 3), -- One-handed Sword
-(35651, 4416, 15), -- Elves
+(35651, 4408, 1), -- HP Modifiers
+(35651, 4409, 1), -- MP Modifiers
+(35651, 4410, 11), -- P. Atk. Modifiers
+(35651, 4411, 11), -- M. Atk. Modifiers
+(35651, 4412, 11), -- P. Def. Modifiers
+(35651, 4413, 11), -- M. Def. Modifiers
+(35651, 4414, 2), -- Armor Type
+(35651, 4415, 3), -- Weapon Type
+(35651, 4416, 15), -- Races
 -- Court Magician
 (35652, 4045, 1), -- Resist Full Magic Attack
-(35652, 4408, 1), -- HP Increase (1x)
-(35652, 4409, 1), -- MP Increase (1x)
-(35652, 4410, 11), -- Average P. Atk.
-(35652, 4411, 11), -- Average M. Atk.
-(35652, 4412, 11), -- Average P. Def.
-(35652, 4413, 11), -- Average M. Def.
-(35652, 4414, 2), -- Standard Type
-(35652, 4415, 3), -- One-handed Sword
-(35652, 4416, 15), -- Elves
+(35652, 4408, 1), -- HP Modifiers
+(35652, 4409, 1), -- MP Modifiers
+(35652, 4410, 11), -- P. Atk. Modifiers
+(35652, 4411, 11), -- M. Atk. Modifiers
+(35652, 4412, 11), -- P. Def. Modifiers
+(35652, 4413, 11), -- M. Def. Modifiers
+(35652, 4414, 2), -- Armor Type
+(35652, 4415, 3), -- Weapon Type
+(35652, 4416, 15), -- Races
 -- Court Magician
 (35653, 4045, 1), -- Resist Full Magic Attack
-(35653, 4408, 1), -- HP Increase (1x)
-(35653, 4409, 1), -- MP Increase (1x)
-(35653, 4410, 11), -- Average P. Atk.
-(35653, 4411, 11), -- Average M. Atk.
-(35653, 4412, 11), -- Average P. Def.
-(35653, 4413, 11), -- Average M. Def.
-(35653, 4414, 2), -- Standard Type
-(35653, 4415, 3), -- One-handed Sword
-(35653, 4416, 15), -- Elves
+(35653, 4408, 1), -- HP Modifiers
+(35653, 4409, 1), -- MP Modifiers
+(35653, 4410, 11), -- P. Atk. Modifiers
+(35653, 4411, 11), -- M. Atk. Modifiers
+(35653, 4412, 11), -- P. Def. Modifiers
+(35653, 4413, 11), -- M. Def. Modifiers
+(35653, 4414, 2), -- Armor Type
+(35653, 4415, 3), -- Weapon Type
+(35653, 4416, 15), -- Races
 -- Court Magician
 (35654, 4045, 1), -- Resist Full Magic Attack
-(35654, 4408, 1), -- HP Increase (1x)
-(35654, 4409, 1), -- MP Increase (1x)
-(35654, 4410, 11), -- Average P. Atk.
-(35654, 4411, 11), -- Average M. Atk.
-(35654, 4412, 11), -- Average P. Def.
-(35654, 4413, 11), -- Average M. Def.
-(35654, 4414, 2), -- Standard Type
-(35654, 4415, 3), -- One-handed Sword
-(35654, 4416, 15), -- Elves
+(35654, 4408, 1), -- HP Modifiers
+(35654, 4409, 1), -- MP Modifiers
+(35654, 4410, 11), -- P. Atk. Modifiers
+(35654, 4411, 11), -- M. Atk. Modifiers
+(35654, 4412, 11), -- P. Def. Modifiers
+(35654, 4413, 11), -- M. Def. Modifiers
+(35654, 4414, 2), -- Armor Type
+(35654, 4415, 3), -- Weapon Type
+(35654, 4416, 15), -- Races
 -- Court Magician
 (35655, 4045, 1), -- Resist Full Magic Attack
-(35655, 4408, 1), -- HP Increase (1x)
-(35655, 4409, 1), -- MP Increase (1x)
-(35655, 4410, 11), -- Average P. Atk.
-(35655, 4411, 11), -- Average M. Atk.
-(35655, 4412, 11), -- Average P. Def.
-(35655, 4413, 11), -- Average M. Def.
-(35655, 4414, 2), -- Standard Type
-(35655, 4415, 3), -- One-handed Sword
-(35655, 4416, 15), -- Elves
+(35655, 4408, 1), -- HP Modifiers
+(35655, 4409, 1), -- MP Modifiers
+(35655, 4410, 11), -- P. Atk. Modifiers
+(35655, 4411, 11), -- M. Atk. Modifiers
+(35655, 4412, 11), -- P. Def. Modifiers
+(35655, 4413, 11), -- M. Def. Modifiers
+(35655, 4414, 2), -- Armor Type
+(35655, 4415, 3), -- Weapon Type
+(35655, 4416, 15), -- Races
 -- Court Magician
 (35656, 4045, 1), -- Resist Full Magic Attack
-(35656, 4408, 1), -- HP Increase (1x)
-(35656, 4409, 1), -- MP Increase (1x)
-(35656, 4410, 11), -- Average P. Atk.
-(35656, 4411, 11), -- Average M. Atk.
-(35656, 4412, 11), -- Average P. Def.
-(35656, 4413, 11), -- Average M. Def.
-(35656, 4414, 2), -- Standard Type
-(35656, 4415, 3), -- One-handed Sword
-(35656, 4416, 15), -- Elves
+(35656, 4408, 1), -- HP Modifiers
+(35656, 4409, 1), -- MP Modifiers
+(35656, 4410, 11), -- P. Atk. Modifiers
+(35656, 4411, 11), -- M. Atk. Modifiers
+(35656, 4412, 11), -- P. Def. Modifiers
+(35656, 4413, 11), -- M. Def. Modifiers
+(35656, 4414, 2), -- Armor Type
+(35656, 4415, 3), -- Weapon Type
+(35656, 4416, 15), -- Races
 -- Flagpole
 (35657, 4045, 1), -- Resist Full Magic Attack
-(35657, 4408, 1), -- HP Increase (1x)
-(35657, 4409, 1), -- MP Increase (1x)
-(35657, 4410, 11), -- Average P. Atk.
-(35657, 4411, 11), -- Average M. Atk.
-(35657, 4412, 11), -- Average P. Def.
-(35657, 4413, 11), -- Average M. Def.
-(35657, 4414, 2), -- Standard Type
-(35657, 4415, 3), -- One-handed Sword
-(35657, 4416, 19), -- Others
+(35657, 4408, 1), -- HP Modifiers
+(35657, 4409, 1), -- MP Modifiers
+(35657, 4410, 11), -- P. Atk. Modifiers
+(35657, 4411, 11), -- M. Atk. Modifiers
+(35657, 4412, 11), -- P. Def. Modifiers
+(35657, 4413, 11), -- M. Def. Modifiers
+(35657, 4414, 2), -- Armor Type
+(35657, 4415, 3), -- Weapon Type
+(35657, 4416, 19), -- Races
 -- Foreman
 (35658, 4045, 1), -- Resist Full Magic Attack
-(35658, 4408, 1), -- HP Increase (1x)
-(35658, 4409, 1), -- MP Increase (1x)
-(35658, 4410, 11), -- Average P. Atk.
-(35658, 4411, 11), -- Average M. Atk.
-(35658, 4412, 11), -- Average P. Def.
-(35658, 4413, 11), -- Average M. Def.
-(35658, 4414, 2), -- Standard Type
-(35658, 4415, 3), -- One-handed Sword
-(35658, 4416, 14), -- Humans
+(35658, 4408, 1), -- HP Modifiers
+(35658, 4409, 1), -- MP Modifiers
+(35658, 4410, 11), -- P. Atk. Modifiers
+(35658, 4411, 11), -- M. Atk. Modifiers
+(35658, 4412, 11), -- P. Def. Modifiers
+(35658, 4413, 11), -- M. Def. Modifiers
+(35658, 4414, 2), -- Armor Type
+(35658, 4415, 3), -- Weapon Type
+(35658, 4416, 14), -- Races
 -- Suspicious Merchant
 (35659, 4045, 1), -- Resist Full Magic Attack
-(35659, 4408, 1), -- HP Increase (1x)
-(35659, 4409, 1), -- MP Increase (1x)
-(35659, 4410, 11), -- Average P. Atk.
-(35659, 4411, 11), -- Average M. Atk.
-(35659, 4412, 11), -- Average P. Def.
-(35659, 4413, 11), -- Average M. Def.
-(35659, 4414, 2), -- Standard Type
-(35659, 4415, 3), -- One-handed Sword
-(35659, 4416, 17), -- Orcs
+(35659, 4408, 1), -- HP Modifiers
+(35659, 4409, 1), -- MP Modifiers
+(35659, 4410, 11), -- P. Atk. Modifiers
+(35659, 4411, 11), -- M. Atk. Modifiers
+(35659, 4412, 11), -- P. Def. Modifiers
+(35659, 4413, 11), -- M. Def. Modifiers
+(35659, 4414, 2), -- Armor Type
+(35659, 4415, 3), -- Weapon Type
+(35659, 4416, 17), -- Races
 -- Guard Captain
 (35660, 4045, 1), -- Resist Full Magic Attack
-(35660, 4408, 1), -- HP Increase (1x)
-(35660, 4409, 1), -- MP Increase (1x)
-(35660, 4410, 11), -- Average P. Atk.
-(35660, 4411, 11), -- Average M. Atk.
-(35660, 4412, 11), -- Average P. Def.
-(35660, 4413, 11), -- Average M. Def.
-(35660, 4414, 2), -- Standard Type
-(35660, 4415, 3), -- One-handed Sword
-(35660, 4416, 14), -- Humans
+(35660, 4408, 1), -- HP Modifiers
+(35660, 4409, 1), -- MP Modifiers
+(35660, 4410, 11), -- P. Atk. Modifiers
+(35660, 4411, 11), -- M. Atk. Modifiers
+(35660, 4412, 11), -- P. Def. Modifiers
+(35660, 4413, 11), -- M. Def. Modifiers
+(35660, 4414, 2), -- Armor Type
+(35660, 4415, 3), -- Weapon Type
+(35660, 4416, 14), -- Races
 -- Archer Captain
 (35661, 4045, 1), -- Resist Full Magic Attack
-(35661, 4408, 1), -- HP Increase (1x)
-(35661, 4409, 1), -- MP Increase (1x)
-(35661, 4410, 11), -- Average P. Atk.
-(35661, 4411, 11), -- Average M. Atk.
-(35661, 4412, 11), -- Average P. Def.
-(35661, 4413, 11), -- Average M. Def.
-(35661, 4414, 2), -- Standard Type
-(35661, 4415, 9), -- Bows
-(35661, 4416, 15), -- Elves
+(35661, 4408, 1), -- HP Modifiers
+(35661, 4409, 1), -- MP Modifiers
+(35661, 4410, 11), -- P. Atk. Modifiers
+(35661, 4411, 11), -- M. Atk. Modifiers
+(35661, 4412, 11), -- P. Def. Modifiers
+(35661, 4413, 11), -- M. Def. Modifiers
+(35661, 4414, 2), -- Armor Type
+(35661, 4415, 9), -- Weapon Type
+(35661, 4416, 15), -- Races
 -- Support Unit Captain
 (35662, 4045, 1), -- Resist Full Magic Attack
-(35662, 4408, 1), -- HP Increase (1x)
-(35662, 4409, 1), -- MP Increase (1x)
-(35662, 4410, 11), -- Average P. Atk.
-(35662, 4411, 11), -- Average M. Atk.
-(35662, 4412, 11), -- Average P. Def.
-(35662, 4413, 11), -- Average M. Def.
-(35662, 4414, 2), -- Standard Type
-(35662, 4415, 3), -- One-handed Sword
-(35662, 4416, 14), -- Humans
+(35662, 4408, 1), -- HP Modifiers
+(35662, 4409, 1), -- MP Modifiers
+(35662, 4410, 11), -- P. Atk. Modifiers
+(35662, 4411, 11), -- M. Atk. Modifiers
+(35662, 4412, 11), -- P. Def. Modifiers
+(35662, 4413, 11), -- M. Def. Modifiers
+(35662, 4414, 2), -- Armor Type
+(35662, 4415, 3), -- Weapon Type
+(35662, 4416, 14), -- Races
 -- Engineering Manager
 (35663, 4045, 1), -- Resist Full Magic Attack
-(35663, 4408, 1), -- HP Increase (1x)
-(35663, 4409, 1), -- MP Increase (1x)
-(35663, 4410, 11), -- Average P. Atk.
-(35663, 4411, 11), -- Average M. Atk.
-(35663, 4412, 11), -- Average P. Def.
-(35663, 4413, 11), -- Average M. Def.
-(35663, 4414, 2), -- Standard Type
-(35663, 4415, 3), -- One-handed Sword
-(35663, 4416, 18), -- Dwarves
+(35663, 4408, 1), -- HP Modifiers
+(35663, 4409, 1), -- MP Modifiers
+(35663, 4410, 11), -- P. Atk. Modifiers
+(35663, 4411, 11), -- M. Atk. Modifiers
+(35663, 4412, 11), -- P. Def. Modifiers
+(35663, 4413, 11), -- M. Def. Modifiers
+(35663, 4414, 2), -- Armor Type
+(35663, 4415, 3), -- Weapon Type
+(35663, 4416, 18), -- Races
 -- Logistics Officer
 (35664, 4045, 1), -- Resist Full Magic Attack
-(35664, 4408, 1), -- HP Increase (1x)
-(35664, 4409, 1), -- MP Increase (1x)
-(35664, 4410, 11), -- Average P. Atk.
-(35664, 4411, 11), -- Average M. Atk.
-(35664, 4412, 11), -- Average P. Def.
-(35664, 4413, 11), -- Average M. Def.
-(35664, 4414, 2), -- Standard Type
-(35664, 4415, 3), -- One-handed Sword
-(35664, 4416, 18), -- Dwarves
+(35664, 4408, 1), -- HP Modifiers
+(35664, 4409, 1), -- MP Modifiers
+(35664, 4410, 11), -- P. Atk. Modifiers
+(35664, 4411, 11), -- M. Atk. Modifiers
+(35664, 4412, 11), -- P. Def. Modifiers
+(35664, 4413, 11), -- M. Def. Modifiers
+(35664, 4414, 2), -- Armor Type
+(35664, 4415, 3), -- Weapon Type
+(35664, 4416, 18), -- Races
 -- Supply Box
 (35665, 4045, 1), -- Resist Full Magic Attack
-(35665, 4408, 1), -- HP Increase (1x)
-(35665, 4409, 1), -- MP Increase (1x)
-(35665, 4410, 11), -- Average P. Atk.
-(35665, 4411, 11), -- Average M. Atk.
-(35665, 4412, 11), -- Average P. Def.
-(35665, 4413, 11), -- Average M. Def.
-(35665, 4414, 2), -- Standard Type
-(35665, 4415, 3), -- One-handed Sword
-(35665, 4416, 2), -- Magic Creatures
+(35665, 4408, 1), -- HP Modifiers
+(35665, 4409, 1), -- MP Modifiers
+(35665, 4410, 11), -- P. Atk. Modifiers
+(35665, 4411, 11), -- M. Atk. Modifiers
+(35665, 4412, 11), -- P. Def. Modifiers
+(35665, 4413, 11), -- M. Def. Modifiers
+(35665, 4414, 2), -- Armor Type
+(35665, 4415, 3), -- Weapon Type
+(35665, 4416, 2), -- Races
 -- Detention Camp Warden
 (35666, 4045, 1), -- Resist Full Magic Attack
-(35666, 4408, 1), -- HP Increase (1x)
-(35666, 4409, 1), -- MP Increase (1x)
-(35666, 4410, 11), -- Average P. Atk.
-(35666, 4411, 11), -- Average M. Atk.
-(35666, 4412, 11), -- Average P. Def.
-(35666, 4413, 11), -- Average M. Def.
-(35666, 4414, 2), -- Standard Type
-(35666, 4415, 3), -- One-handed Sword
-(35666, 4416, 14), -- Humans
+(35666, 4408, 1), -- HP Modifiers
+(35666, 4409, 1), -- MP Modifiers
+(35666, 4410, 11), -- P. Atk. Modifiers
+(35666, 4411, 11), -- M. Atk. Modifiers
+(35666, 4412, 11), -- P. Def. Modifiers
+(35666, 4413, 11), -- M. Def. Modifiers
+(35666, 4414, 2), -- Armor Type
+(35666, 4415, 3), -- Weapon Type
+(35666, 4416, 14), -- Races
 -- Doorman
 (35667, 4045, 1), -- Resist Full Magic Attack
-(35667, 4408, 1), -- HP Increase (1x)
-(35667, 4409, 1), -- MP Increase (1x)
-(35667, 4410, 11), -- Average P. Atk.
-(35667, 4411, 11), -- Average M. Atk.
-(35667, 4412, 11), -- Average P. Def.
-(35667, 4413, 11), -- Average M. Def.
-(35667, 4414, 2), -- Standard Type
-(35667, 4415, 3), -- One-handed Sword
-(35667, 4416, 14), -- Humans
+(35667, 4408, 1), -- HP Modifiers
+(35667, 4409, 1), -- MP Modifiers
+(35667, 4410, 11), -- P. Atk. Modifiers
+(35667, 4411, 11), -- M. Atk. Modifiers
+(35667, 4412, 11), -- P. Def. Modifiers
+(35667, 4413, 11), -- M. Def. Modifiers
+(35667, 4414, 2), -- Armor Type
+(35667, 4415, 3), -- Weapon Type
+(35667, 4416, 14), -- Races
 -- Doorman
 (35668, 4045, 1), -- Resist Full Magic Attack
-(35668, 4408, 1), -- HP Increase (1x)
-(35668, 4409, 1), -- MP Increase (1x)
-(35668, 4410, 11), -- Average P. Atk.
-(35668, 4411, 11), -- Average M. Atk.
-(35668, 4412, 11), -- Average P. Def.
-(35668, 4413, 11), -- Average M. Def.
-(35668, 4414, 2), -- Standard Type
-(35668, 4415, 3), -- One-handed Sword
-(35668, 4416, 14), -- Humans
+(35668, 4408, 1), -- HP Modifiers
+(35668, 4409, 1), -- MP Modifiers
+(35668, 4410, 11), -- P. Atk. Modifiers
+(35668, 4411, 11), -- M. Atk. Modifiers
+(35668, 4412, 11), -- P. Def. Modifiers
+(35668, 4413, 11), -- M. Def. Modifiers
+(35668, 4414, 2), -- Armor Type
+(35668, 4415, 3), -- Weapon Type
+(35668, 4416, 14), -- Races
 -- Doorman
 (35669, 4045, 1), -- Resist Full Magic Attack
-(35669, 4408, 1), -- HP Increase (1x)
-(35669, 4409, 1), -- MP Increase (1x)
-(35669, 4410, 11), -- Average P. Atk.
-(35669, 4411, 11), -- Average M. Atk.
-(35669, 4412, 11), -- Average P. Def.
-(35669, 4413, 11), -- Average M. Def.
-(35669, 4414, 2), -- Standard Type
-(35669, 4415, 3), -- One-handed Sword
-(35669, 4416, 14), -- Humans
+(35669, 4408, 1), -- HP Modifiers
+(35669, 4409, 1), -- MP Modifiers
+(35669, 4410, 11), -- P. Atk. Modifiers
+(35669, 4411, 11), -- M. Atk. Modifiers
+(35669, 4412, 11), -- P. Def. Modifiers
+(35669, 4413, 11), -- M. Def. Modifiers
+(35669, 4414, 2), -- Armor Type
+(35669, 4415, 3), -- Weapon Type
+(35669, 4416, 14), -- Races
 -- Rebel Commander
 (35670, 4045, 1), -- Resist Full Magic Attack
-(35670, 4178, 7), -- Flame Strike
-(35670, 4195, 7), -- Twister
-(35670, 4408, 10), -- HP Increase (2x)
-(35670, 4409, 1), -- MP Increase (1x)
-(35670, 4410, 11), -- Average P. Atk.
-(35670, 4411, 17), -- Very Strong M. Atk.
-(35670, 4412, 11), -- Average P. Def.
-(35670, 4413, 11), -- Average M. Def.
-(35670, 4414, 2), -- Standard Type
-(35670, 4415, 3), -- One-handed Sword
-(35670, 4416, 16), -- Dark Elves
+(35670, 4178, 7), -- BOSS Flame Strike
+(35670, 4195, 7), -- BOSS Twister
+(35670, 4408, 10), -- HP Modifiers
+(35670, 4409, 1), -- MP Modifiers
+(35670, 4410, 11), -- P. Atk. Modifiers
+(35670, 4411, 17), -- M. Atk. Modifiers
+(35670, 4412, 11), -- P. Def. Modifiers
+(35670, 4413, 11), -- M. Def. Modifiers
+(35670, 4414, 2), -- Armor Type
+(35670, 4415, 3), -- Weapon Type
+(35670, 4416, 16), -- Races
 -- Decorated Rebel Soldier
 (35671, 4045, 1), -- Resist Full Magic Attack
-(35671, 4408, 14), -- HP Increase (6x)
-(35671, 4409, 1), -- MP Increase (1x)
-(35671, 4410, 15), -- Strong P. Atk.
-(35671, 4411, 11), -- Average M. Atk.
-(35671, 4412, 11), -- Average P. Def.
-(35671, 4413, 15), -- Strong M. Def.
-(35671, 4414, 2), -- Standard Type
-(35671, 4415, 1), -- Bare Hands
-(35671, 4416, 9), -- Demons
-(35671, 5065, 7), -- Unholy Strike
+(35671, 4408, 14), -- HP Modifiers
+(35671, 4409, 1), -- MP Modifiers
+(35671, 4410, 15), -- P. Atk. Modifiers
+(35671, 4411, 11), -- M. Atk. Modifiers
+(35671, 4412, 11), -- P. Def. Modifiers
+(35671, 4413, 15), -- M. Def. Modifiers
+(35671, 4414, 2), -- Armor Type
+(35671, 4415, 1), -- Weapon Type
+(35671, 4416, 9), -- Races
+(35671, 5065, 7), -- Castle DD Unholy
 -- Rebel Private
 (35672, 4045, 1), -- Resist Full Magic Attack
-(35672, 4408, 12), -- HP Increase (4x)
-(35672, 4409, 1), -- MP Increase (1x)
-(35672, 4410, 14), -- Strong P. Atk.
-(35672, 4411, 11), -- Average M. Atk.
-(35672, 4412, 11), -- Average P. Def.
-(35672, 4413, 11), -- Average M. Def.
-(35672, 4414, 2), -- Standard Type
-(35672, 4415, 11), -- Spears
-(35672, 4416, 14), -- Humans
+(35672, 4408, 12), -- HP Modifiers
+(35672, 4409, 1), -- MP Modifiers
+(35672, 4410, 14), -- P. Atk. Modifiers
+(35672, 4411, 11), -- M. Atk. Modifiers
+(35672, 4412, 11), -- P. Def. Modifiers
+(35672, 4413, 11), -- M. Def. Modifiers
+(35672, 4414, 2), -- Armor Type
+(35672, 4415, 11), -- Weapon Type
+(35672, 4416, 14), -- Races
 -- Court Guard
 (35673, 4045, 1), -- Resist Full Magic Attack
-(35673, 4408, 12), -- HP Increase (4x)
-(35673, 4409, 1), -- MP Increase (1x)
-(35673, 4410, 11), -- Average P. Atk.
-(35673, 4411, 11), -- Average M. Atk.
-(35673, 4412, 11), -- Average P. Def.
-(35673, 4413, 16), -- Very Strong M. Def.
-(35673, 4414, 2), -- Standard Type
-(35673, 4415, 11), -- Spears
-(35673, 4416, 22), -- Defending Army
+(35673, 4408, 12), -- HP Modifiers
+(35673, 4409, 1), -- MP Modifiers
+(35673, 4410, 11), -- P. Atk. Modifiers
+(35673, 4411, 11), -- M. Atk. Modifiers
+(35673, 4412, 11), -- P. Def. Modifiers
+(35673, 4413, 16), -- M. Def. Modifiers
+(35673, 4414, 2), -- Armor Type
+(35673, 4415, 11), -- Weapon Type
+(35673, 4416, 22), -- Races
 (35673, 5432, 1), -- Weapon Supply
 -- Guard
 (35674, 4045, 1), -- Resist Full Magic Attack
-(35674, 4408, 12), -- HP Increase (4x)
-(35674, 4409, 1), -- MP Increase (1x)
-(35674, 4410, 15), -- Strong P. Atk.
-(35674, 4411, 11), -- Average M. Atk.
-(35674, 4412, 11), -- Average P. Def.
-(35674, 4413, 11), -- Average M. Def.
-(35674, 4414, 3), -- Light Armor Type
-(35674, 4415, 9), -- Bows
-(35674, 4416, 22), -- Defending Army
+(35674, 4408, 12), -- HP Modifiers
+(35674, 4409, 1), -- MP Modifiers
+(35674, 4410, 15), -- P. Atk. Modifiers
+(35674, 4411, 11), -- M. Atk. Modifiers
+(35674, 4412, 11), -- P. Def. Modifiers
+(35674, 4413, 11), -- M. Def. Modifiers
+(35674, 4414, 3), -- Armor Type
+(35674, 4415, 9), -- Weapon Type
+(35674, 4416, 22), -- Races
 (35674, 5432, 1), -- Weapon Supply
 -- Power Control Unit
 (35675, 4045, 1), -- Resist Full Magic Attack
-(35675, 4408, 1), -- HP Increase (1x)
-(35675, 4409, 1), -- MP Increase (1x)
-(35675, 4410, 11), -- Average P. Atk.
-(35675, 4411, 11), -- Average M. Atk.
-(35675, 4412, 11), -- Average P. Def.
-(35675, 4413, 11), -- Average M. Def.
-(35675, 4414, 2), -- Standard Type
-(35675, 4415, 3), -- One-handed Sword
-(35675, 4416, 19), -- Others
+(35675, 4408, 1), -- HP Modifiers
+(35675, 4409, 1), -- MP Modifiers
+(35675, 4410, 11), -- P. Atk. Modifiers
+(35675, 4411, 11), -- M. Atk. Modifiers
+(35675, 4412, 11), -- P. Def. Modifiers
+(35675, 4413, 11), -- M. Def. Modifiers
+(35675, 4414, 2), -- Armor Type
+(35675, 4415, 3), -- Weapon Type
+(35675, 4416, 19), -- Races
 -- Dwarven Gunnery Sergeant
 (35676, 4045, 1), -- Resist Full Magic Attack
-(35676, 4408, 11), -- HP Increase (3x)
-(35676, 4409, 16), -- MP Increase (8x)
-(35676, 4410, 11), -- Average P. Atk.
-(35676, 4411, 17), -- Very Strong M. Atk.
-(35676, 4412, 11), -- Average P. Def.
-(35676, 4413, 8), -- Weak M. Def.
-(35676, 4414, 2), -- Standard Type
-(35676, 4415, 9), -- Bows
-(35676, 4416, 22), -- Defending Army
+(35676, 4408, 11), -- HP Modifiers
+(35676, 4409, 16), -- MP Modifiers
+(35676, 4410, 11), -- P. Atk. Modifiers
+(35676, 4411, 17), -- M. Atk. Modifiers
+(35676, 4412, 11), -- P. Def. Modifiers
+(35676, 4413, 8), -- M. Def. Modifiers
+(35676, 4414, 2), -- Armor Type
+(35676, 4415, 9), -- Weapon Type
+(35676, 4416, 22), -- Races
 (35676, 5432, 1), -- Weapon Supply
-(35676, 5461, 6), -- Power Shot
-(35676, 5468, 6), -- Fire Shot
+(35676, 5461, 6), -- Castle Gunner Shot
+(35676, 5468, 6), -- Castle Gunner Fire
 -- Guard Captain
 (35677, 4045, 1), -- Resist Full Magic Attack
 (35677, 4172, 6), -- Stun
-(35677, 4408, 9), -- HP Increase (1/2x)
-(35677, 4409, 1), -- MP Increase (1x)
-(35677, 4410, 8), -- Weak P. Atk.
-(35677, 4411, 11), -- Average M. Atk.
-(35677, 4412, 16), -- Very Strong P. Def.
-(35677, 4413, 11), -- Average M. Def.
-(35677, 4414, 2), -- Standard Type
-(35677, 4415, 3), -- One-handed Sword
-(35677, 4416, 22), -- Defending Army
+(35677, 4408, 9), -- HP Modifiers
+(35677, 4409, 1), -- MP Modifiers
+(35677, 4410, 8), -- P. Atk. Modifiers
+(35677, 4411, 11), -- M. Atk. Modifiers
+(35677, 4412, 16), -- P. Def. Modifiers
+(35677, 4413, 11), -- M. Def. Modifiers
+(35677, 4414, 2), -- Armor Type
+(35677, 4415, 3), -- Weapon Type
+(35677, 4416, 22), -- Races
 (35677, 4435, 5), -- Greater Resist Stun
 (35677, 4439, 5), -- Greater Resist Hold
 (35677, 4440, 5), -- Greater Resist Paralysis
-(35677, 4608, 1), -- Berserker Spirit
+(35677, 4608, 1), -- NPC Clan Buff - Berserk
 (35677, 5432, 1), -- Weapon Supply
-(35677, 5457, 1), -- Complete Recovery
+(35677, 5457, 1), -- NPC Full Recover
 -- Guard
 (35678, 4045, 1), -- Resist Full Magic Attack
-(35678, 4408, 13), -- HP Increase (5x)
-(35678, 4409, 1), -- MP Increase (1x)
-(35678, 4410, 9), -- Slightly Weak P. Atk.
-(35678, 4411, 11), -- Average M. Atk.
-(35678, 4412, 16), -- Very Strong P. Def.
-(35678, 4413, 11), -- Average M. Def.
-(35678, 4414, 2), -- Standard Type
-(35678, 4415, 3), -- One-handed Sword
-(35678, 4416, 22), -- Defending Army
+(35678, 4408, 13), -- HP Modifiers
+(35678, 4409, 1), -- MP Modifiers
+(35678, 4410, 9), -- P. Atk. Modifiers
+(35678, 4411, 11), -- M. Atk. Modifiers
+(35678, 4412, 16), -- P. Def. Modifiers
+(35678, 4413, 11), -- M. Def. Modifiers
+(35678, 4414, 2), -- Armor Type
+(35678, 4415, 3), -- Weapon Type
+(35678, 4416, 22), -- Races
 (35678, 5112, 6), -- Stun
 (35678, 5432, 1), -- Weapon Supply
 -- Guard
 (35679, 4045, 1), -- Resist Full Magic Attack
-(35679, 4408, 13), -- HP Increase (5x)
-(35679, 4409, 1), -- MP Increase (1x)
-(35679, 4410, 9), -- Slightly Weak P. Atk.
-(35679, 4411, 11), -- Average M. Atk.
-(35679, 4412, 11), -- Average P. Def.
-(35679, 4413, 16), -- Very Strong M. Def.
-(35679, 4414, 2), -- Standard Type
-(35679, 4415, 3), -- One-handed Sword
-(35679, 4416, 22), -- Defending Army
-(35679, 5045, 6), -- Power Strike
+(35679, 4408, 13), -- HP Modifiers
+(35679, 4409, 1), -- MP Modifiers
+(35679, 4410, 9), -- P. Atk. Modifiers
+(35679, 4411, 11), -- M. Atk. Modifiers
+(35679, 4412, 11), -- P. Def. Modifiers
+(35679, 4413, 16), -- M. Def. Modifiers
+(35679, 4414, 2), -- Armor Type
+(35679, 4415, 3), -- Weapon Type
+(35679, 4416, 22), -- Races
+(35679, 5045, 6), -- Castle Power Strike
 (35679, 5432, 1), -- Weapon Supply
 -- Support Unit Captain
 (35680, 4045, 1), -- Resist Full Magic Attack
-(35680, 4194, 6), -- Aura Burn
-(35680, 4196, 6), -- Decrease Speed
-(35680, 4408, 9), -- HP Increase (1/2x)
-(35680, 4409, 16), -- MP Increase (8x)
-(35680, 4410, 11), -- Average P. Atk.
-(35680, 4411, 14), -- Strong M. Atk.
-(35680, 4412, 8), -- Weak P. Def.
-(35680, 4413, 14), -- Strong M. Def.
-(35680, 4414, 3), -- Light Armor Type
-(35680, 4415, 3), -- One-handed Sword
-(35680, 4416, 22), -- Defending Army
-(35680, 5396, 1), -- Spell Force
-(35680, 5398, 1), -- Final Burn
+(35680, 4194, 6), -- BOSS Aura Burn
+(35680, 4196, 6), -- Decreases Speed
+(35680, 4408, 9), -- HP Modifiers
+(35680, 4409, 16), -- MP Modifiers
+(35680, 4410, 11), -- P. Atk. Modifiers
+(35680, 4411, 14), -- M. Atk. Modifiers
+(35680, 4412, 8), -- P. Def. Modifiers
+(35680, 4413, 14), -- M. Def. Modifiers
+(35680, 4414, 3), -- Armor Type
+(35680, 4415, 3), -- Weapon Type
+(35680, 4416, 22), -- Races
+(35680, 5396, 1), -- NPC - Spell Stance
+(35680, 5398, 1), -- NPC - Combination Force
 (35680, 5432, 1), -- Weapon Supply
-(35680, 5457, 1), -- Complete Recovery
+(35680, 5457, 1), -- NPC Full Recover
 -- Wizard
 (35681, 4045, 1), -- Resist Full Magic Attack
-(35681, 4077, 6), -- Aura Burn
-(35681, 4408, 13), -- HP Increase (5x)
-(35681, 4409, 16), -- MP Increase (8x)
-(35681, 4410, 11), -- Average P. Atk.
-(35681, 4411, 16), -- Very Strong M. Atk.
-(35681, 4412, 8), -- Weak P. Def.
-(35681, 4413, 11), -- Average M. Def.
-(35681, 4414, 3), -- Light Armor Type
-(35681, 4415, 3), -- One-handed Sword
-(35681, 4416, 22), -- Defending Army
-(35681, 5053, 6), -- Hydro Blast
-(35681, 5396, 1), -- Spell Force
+(35681, 4077, 6), -- NPC Aura Burn
+(35681, 4408, 13), -- HP Modifiers
+(35681, 4409, 16), -- MP Modifiers
+(35681, 4410, 11), -- P. Atk. Modifiers
+(35681, 4411, 16), -- M. Atk. Modifiers
+(35681, 4412, 8), -- P. Def. Modifiers
+(35681, 4413, 11), -- M. Def. Modifiers
+(35681, 4414, 3), -- Armor Type
+(35681, 4415, 3), -- Weapon Type
+(35681, 4416, 22), -- Races
+(35681, 5053, 6), -- Castle DD Water
+(35681, 5396, 1), -- NPC - Spell Stance
 (35681, 5432, 1), -- Weapon Supply
 -- Healer
 (35682, 4045, 1), -- Resist Full Magic Attack
 (35682, 4115, 1), -- Aden Heal
-(35682, 4408, 15), -- HP Increase (7x)
-(35682, 4409, 16), -- MP Increase (8x)
-(35682, 4410, 11), -- Average P. Atk.
-(35682, 4411, 17), -- Very Strong M. Atk.
-(35682, 4412, 11), -- Average P. Def.
-(35682, 4413, 16), -- Very Strong M. Def.
-(35682, 4414, 3), -- Light Armor Type
-(35682, 4415, 3), -- One-handed Sword
-(35682, 4416, 22), -- Defending Army
+(35682, 4408, 15), -- HP Modifiers
+(35682, 4409, 16), -- MP Modifiers
+(35682, 4410, 11), -- P. Atk. Modifiers
+(35682, 4411, 17), -- M. Atk. Modifiers
+(35682, 4412, 11), -- P. Def. Modifiers
+(35682, 4413, 16), -- M. Def. Modifiers
+(35682, 4414, 3), -- Armor Type
+(35682, 4415, 3), -- Weapon Type
+(35682, 4416, 22), -- Races
 (35682, 5114, 6), -- Hold
 (35682, 5432, 1), -- Weapon Supply
 -- Archer Captain
 (35683, 4045, 1), -- Resist Full Magic Attack
-(35683, 4408, 9), -- HP Increase (1/2x)
-(35683, 4409, 1), -- MP Increase (1x)
-(35683, 4410, 16), -- Very Strong P. Atk.
-(35683, 4411, 11), -- Average M. Atk.
-(35683, 4412, 8), -- Weak P. Def.
-(35683, 4413, 11), -- Average M. Def.
-(35683, 4414, 3), -- Light Armor Type
-(35683, 4415, 9), -- Bows
-(35683, 4416, 22), -- Defending Army
-(35683, 4755, 6), -- Power Shot
+(35683, 4408, 9), -- HP Modifiers
+(35683, 4409, 1), -- MP Modifiers
+(35683, 4410, 16), -- P. Atk. Modifiers
+(35683, 4411, 11), -- M. Atk. Modifiers
+(35683, 4412, 8), -- P. Def. Modifiers
+(35683, 4413, 11), -- M. Def. Modifiers
+(35683, 4414, 3), -- Armor Type
+(35683, 4415, 9), -- Weapon Type
+(35683, 4416, 22), -- Races
+(35683, 4755, 6), -- BOSS Power Shot
 (35683, 5432, 1), -- Weapon Supply
-(35683, 5457, 1), -- Complete Recovery
+(35683, 5457, 1), -- NPC Full Recover
 -- Archer
 (35684, 4045, 1), -- Resist Full Magic Attack
-(35684, 4408, 13), -- HP Increase (5x)
-(35684, 4409, 1), -- MP Increase (1x)
-(35684, 4410, 14), -- Strong P. Atk.
-(35684, 4411, 11), -- Average M. Atk.
-(35684, 4412, 8), -- Weak P. Def.
-(35684, 4413, 11), -- Average M. Def.
-(35684, 4414, 3), -- Light Armor Type
-(35684, 4415, 9), -- Bows
-(35684, 4416, 22), -- Defending Army
-(35684, 5046, 6), -- Power Shot
+(35684, 4408, 13), -- HP Modifiers
+(35684, 4409, 1), -- MP Modifiers
+(35684, 4410, 14), -- P. Atk. Modifiers
+(35684, 4411, 11), -- M. Atk. Modifiers
+(35684, 4412, 8), -- P. Def. Modifiers
+(35684, 4413, 11), -- M. Def. Modifiers
+(35684, 4414, 3), -- Armor Type
+(35684, 4415, 9), -- Weapon Type
+(35684, 4416, 22), -- Races
+(35684, 5046, 6), -- Castle Power Shot
 (35684, 5432, 1), -- Weapon Supply
 -- Ballista
 (35685, 2342, 1), -- Ballista Bomb
 (35685, 4045, 1), -- Resist Full Magic Attack
-(35685, 4408, 16), -- HP Increase (8x)
-(35685, 4409, 1), -- MP Increase (1x)
-(35685, 4410, 11), -- Average P. Atk.
-(35685, 4411, 11), -- Average M. Atk.
-(35685, 4412, 11), -- Average P. Def.
-(35685, 4413, 11), -- Average M. Def.
-(35685, 4414, 2), -- Standard Type
-(35685, 4415, 3), -- One-handed Sword
-(35685, 4416, 22), -- Defending Army
+(35685, 4408, 16), -- HP Modifiers
+(35685, 4409, 1), -- MP Modifiers
+(35685, 4410, 11), -- P. Atk. Modifiers
+(35685, 4411, 11), -- M. Atk. Modifiers
+(35685, 4412, 11), -- P. Def. Modifiers
+(35685, 4413, 11), -- M. Def. Modifiers
+(35685, 4414, 2), -- Armor Type
+(35685, 4415, 3), -- Weapon Type
+(35685, 4416, 22), -- Races
 -- Mercenary Captain
 (35686, 4045, 1), -- Resist Full Magic Attack
-(35686, 4408, 11), -- HP Increase (3x)
-(35686, 4409, 1), -- MP Increase (1x)
-(35686, 4410, 11), -- Average P. Atk.
-(35686, 4411, 11), -- Average M. Atk.
-(35686, 4412, 11), -- Average P. Def.
-(35686, 4413, 11), -- Average M. Def.
-(35686, 4414, 2), -- Standard Type
-(35686, 4415, 3), -- One-handed Sword
-(35686, 4416, 14), -- Humans
+(35686, 4408, 11), -- HP Modifiers
+(35686, 4409, 1), -- MP Modifiers
+(35686, 4410, 11), -- P. Atk. Modifiers
+(35686, 4411, 11), -- M. Atk. Modifiers
+(35686, 4412, 11), -- P. Def. Modifiers
+(35686, 4413, 11), -- M. Def. Modifiers
+(35686, 4414, 2), -- Armor Type
+(35686, 4415, 3), -- Weapon Type
+(35686, 4416, 14), -- Races
 -- Mercenary Private
 (35687, 4045, 1), -- Resist Full Magic Attack
-(35687, 4408, 11), -- HP Increase (3x)
-(35687, 4409, 1), -- MP Increase (1x)
-(35687, 4410, 13), -- Slightly Strong P. Atk.
-(35687, 4411, 11), -- Average M. Atk.
-(35687, 4412, 11), -- Average P. Def.
-(35687, 4413, 11), -- Average M. Def.
-(35687, 4414, 2), -- Standard Type
-(35687, 4415, 11), -- Spears
-(35687, 4416, 17), -- Orcs
+(35687, 4408, 11), -- HP Modifiers
+(35687, 4409, 1), -- MP Modifiers
+(35687, 4410, 13), -- P. Atk. Modifiers
+(35687, 4411, 11), -- M. Atk. Modifiers
+(35687, 4412, 11), -- P. Def. Modifiers
+(35687, 4413, 11), -- M. Def. Modifiers
+(35687, 4414, 2), -- Armor Type
+(35687, 4415, 11), -- Weapon Type
+(35687, 4416, 17), -- Races
 -- Flagpole
 (35688, 4045, 1), -- Resist Full Magic Attack
-(35688, 4408, 1), -- HP Increase (1x)
-(35688, 4409, 1), -- MP Increase (1x)
-(35688, 4410, 11), -- Average P. Atk.
-(35688, 4411, 11), -- Average M. Atk.
-(35688, 4412, 11), -- Average P. Def.
-(35688, 4413, 11), -- Average M. Def.
-(35688, 4414, 2), -- Standard Type
-(35688, 4415, 3), -- One-handed Sword
-(35688, 4416, 19), -- Others
+(35688, 4408, 1), -- HP Modifiers
+(35688, 4409, 1), -- MP Modifiers
+(35688, 4410, 11), -- P. Atk. Modifiers
+(35688, 4411, 11), -- M. Atk. Modifiers
+(35688, 4412, 11), -- P. Def. Modifiers
+(35688, 4413, 11), -- M. Def. Modifiers
+(35688, 4414, 2), -- Armor Type
+(35688, 4415, 3), -- Weapon Type
+(35688, 4416, 19), -- Races
 -- Foreman
 (35689, 4045, 1), -- Resist Full Magic Attack
-(35689, 4408, 1), -- HP Increase (1x)
-(35689, 4409, 1), -- MP Increase (1x)
-(35689, 4410, 11), -- Average P. Atk.
-(35689, 4411, 11), -- Average M. Atk.
-(35689, 4412, 11), -- Average P. Def.
-(35689, 4413, 11), -- Average M. Def.
-(35689, 4414, 2), -- Standard Type
-(35689, 4415, 3), -- One-handed Sword
-(35689, 4416, 14), -- Humans
+(35689, 4408, 1), -- HP Modifiers
+(35689, 4409, 1), -- MP Modifiers
+(35689, 4410, 11), -- P. Atk. Modifiers
+(35689, 4411, 11), -- M. Atk. Modifiers
+(35689, 4412, 11), -- P. Def. Modifiers
+(35689, 4413, 11), -- M. Def. Modifiers
+(35689, 4414, 2), -- Armor Type
+(35689, 4415, 3), -- Weapon Type
+(35689, 4416, 14), -- Races
 -- Suspicious Merchant
 (35690, 4045, 1), -- Resist Full Magic Attack
-(35690, 4408, 1), -- HP Increase (1x)
-(35690, 4409, 1), -- MP Increase (1x)
-(35690, 4410, 11), -- Average P. Atk.
-(35690, 4411, 11), -- Average M. Atk.
-(35690, 4412, 11), -- Average P. Def.
-(35690, 4413, 11), -- Average M. Def.
-(35690, 4414, 2), -- Standard Type
-(35690, 4415, 3), -- One-handed Sword
-(35690, 4416, 17), -- Orcs
+(35690, 4408, 1), -- HP Modifiers
+(35690, 4409, 1), -- MP Modifiers
+(35690, 4410, 11), -- P. Atk. Modifiers
+(35690, 4411, 11), -- M. Atk. Modifiers
+(35690, 4412, 11), -- P. Def. Modifiers
+(35690, 4413, 11), -- M. Def. Modifiers
+(35690, 4414, 2), -- Armor Type
+(35690, 4415, 3), -- Weapon Type
+(35690, 4416, 17), -- Races
 -- Guard Captain
 (35691, 4045, 1), -- Resist Full Magic Attack
-(35691, 4408, 1), -- HP Increase (1x)
-(35691, 4409, 1), -- MP Increase (1x)
-(35691, 4410, 11), -- Average P. Atk.
-(35691, 4411, 11), -- Average M. Atk.
-(35691, 4412, 11), -- Average P. Def.
-(35691, 4413, 11), -- Average M. Def.
-(35691, 4414, 2), -- Standard Type
-(35691, 4415, 3), -- One-handed Sword
-(35691, 4416, 14), -- Humans
+(35691, 4408, 1), -- HP Modifiers
+(35691, 4409, 1), -- MP Modifiers
+(35691, 4410, 11), -- P. Atk. Modifiers
+(35691, 4411, 11), -- M. Atk. Modifiers
+(35691, 4412, 11), -- P. Def. Modifiers
+(35691, 4413, 11), -- M. Def. Modifiers
+(35691, 4414, 2), -- Armor Type
+(35691, 4415, 3), -- Weapon Type
+(35691, 4416, 14), -- Races
 -- Archer Captain
 (35692, 4045, 1), -- Resist Full Magic Attack
-(35692, 4408, 1), -- HP Increase (1x)
-(35692, 4409, 1), -- MP Increase (1x)
-(35692, 4410, 11), -- Average P. Atk.
-(35692, 4411, 11), -- Average M. Atk.
-(35692, 4412, 11), -- Average P. Def.
-(35692, 4413, 11), -- Average M. Def.
-(35692, 4414, 2), -- Standard Type
-(35692, 4415, 9), -- Bows
-(35692, 4416, 15), -- Elves
+(35692, 4408, 1), -- HP Modifiers
+(35692, 4409, 1), -- MP Modifiers
+(35692, 4410, 11), -- P. Atk. Modifiers
+(35692, 4411, 11), -- M. Atk. Modifiers
+(35692, 4412, 11), -- P. Def. Modifiers
+(35692, 4413, 11), -- M. Def. Modifiers
+(35692, 4414, 2), -- Armor Type
+(35692, 4415, 9), -- Weapon Type
+(35692, 4416, 15), -- Races
 -- General
 (35693, 4045, 1), -- Resist Full Magic Attack
-(35693, 4408, 1), -- HP Increase (1x)
-(35693, 4409, 1), -- MP Increase (1x)
-(35693, 4410, 11), -- Average P. Atk.
-(35693, 4411, 11), -- Average M. Atk.
-(35693, 4412, 11), -- Average P. Def.
-(35693, 4413, 11), -- Average M. Def.
-(35693, 4414, 2), -- Standard Type
-(35693, 4415, 19), -- Dual-Sword Weapons
-(35693, 4416, 22), -- Defending Army
+(35693, 4408, 1), -- HP Modifiers
+(35693, 4409, 1), -- MP Modifiers
+(35693, 4410, 11), -- P. Atk. Modifiers
+(35693, 4411, 11), -- M. Atk. Modifiers
+(35693, 4412, 11), -- P. Def. Modifiers
+(35693, 4413, 11), -- M. Def. Modifiers
+(35693, 4414, 2), -- Armor Type
+(35693, 4415, 19), -- Weapon Type
+(35693, 4416, 22), -- Races
 -- Support Unit Captain
 (35694, 4045, 1), -- Resist Full Magic Attack
-(35694, 4408, 1), -- HP Increase (1x)
-(35694, 4409, 1), -- MP Increase (1x)
-(35694, 4410, 11), -- Average P. Atk.
-(35694, 4411, 11), -- Average M. Atk.
-(35694, 4412, 11), -- Average P. Def.
-(35694, 4413, 11), -- Average M. Def.
-(35694, 4414, 2), -- Standard Type
-(35694, 4415, 3), -- One-handed Sword
-(35694, 4416, 14), -- Humans
+(35694, 4408, 1), -- HP Modifiers
+(35694, 4409, 1), -- MP Modifiers
+(35694, 4410, 11), -- P. Atk. Modifiers
+(35694, 4411, 11), -- M. Atk. Modifiers
+(35694, 4412, 11), -- P. Def. Modifiers
+(35694, 4413, 11), -- M. Def. Modifiers
+(35694, 4414, 2), -- Armor Type
+(35694, 4415, 3), -- Weapon Type
+(35694, 4416, 14), -- Races
 -- Engineering Manager
 (35695, 4045, 1), -- Resist Full Magic Attack
-(35695, 4408, 1), -- HP Increase (1x)
-(35695, 4409, 1), -- MP Increase (1x)
-(35695, 4410, 11), -- Average P. Atk.
-(35695, 4411, 11), -- Average M. Atk.
-(35695, 4412, 11), -- Average P. Def.
-(35695, 4413, 11), -- Average M. Def.
-(35695, 4414, 2), -- Standard Type
-(35695, 4415, 3), -- One-handed Sword
-(35695, 4416, 18), -- Dwarves
+(35695, 4408, 1), -- HP Modifiers
+(35695, 4409, 1), -- MP Modifiers
+(35695, 4410, 11), -- P. Atk. Modifiers
+(35695, 4411, 11), -- M. Atk. Modifiers
+(35695, 4412, 11), -- P. Def. Modifiers
+(35695, 4413, 11), -- M. Def. Modifiers
+(35695, 4414, 2), -- Armor Type
+(35695, 4415, 3), -- Weapon Type
+(35695, 4416, 18), -- Races
 -- Logistics Officer
 (35696, 4045, 1), -- Resist Full Magic Attack
-(35696, 4408, 1), -- HP Increase (1x)
-(35696, 4409, 1), -- MP Increase (1x)
-(35696, 4410, 11), -- Average P. Atk.
-(35696, 4411, 11), -- Average M. Atk.
-(35696, 4412, 11), -- Average P. Def.
-(35696, 4413, 11), -- Average M. Def.
-(35696, 4414, 2), -- Standard Type
-(35696, 4415, 3), -- One-handed Sword
-(35696, 4416, 18), -- Dwarves
+(35696, 4408, 1), -- HP Modifiers
+(35696, 4409, 1), -- MP Modifiers
+(35696, 4410, 11), -- P. Atk. Modifiers
+(35696, 4411, 11), -- M. Atk. Modifiers
+(35696, 4412, 11), -- P. Def. Modifiers
+(35696, 4413, 11), -- M. Def. Modifiers
+(35696, 4414, 2), -- Armor Type
+(35696, 4415, 3), -- Weapon Type
+(35696, 4416, 18), -- Races
 -- Supply Box
 (35697, 4045, 1), -- Resist Full Magic Attack
-(35697, 4408, 1), -- HP Increase (1x)
-(35697, 4409, 1), -- MP Increase (1x)
-(35697, 4410, 11), -- Average P. Atk.
-(35697, 4411, 11), -- Average M. Atk.
-(35697, 4412, 11), -- Average P. Def.
-(35697, 4413, 11), -- Average M. Def.
-(35697, 4414, 2), -- Standard Type
-(35697, 4415, 3), -- One-handed Sword
-(35697, 4416, 2), -- Magic Creatures
+(35697, 4408, 1), -- HP Modifiers
+(35697, 4409, 1), -- MP Modifiers
+(35697, 4410, 11), -- P. Atk. Modifiers
+(35697, 4411, 11), -- M. Atk. Modifiers
+(35697, 4412, 11), -- P. Def. Modifiers
+(35697, 4413, 11), -- M. Def. Modifiers
+(35697, 4414, 2), -- Armor Type
+(35697, 4415, 3), -- Weapon Type
+(35697, 4416, 2), -- Races
 -- Detention Camp Warden
 (35698, 4045, 1), -- Resist Full Magic Attack
-(35698, 4408, 1), -- HP Increase (1x)
-(35698, 4409, 1), -- MP Increase (1x)
-(35698, 4410, 11), -- Average P. Atk.
-(35698, 4411, 11), -- Average M. Atk.
-(35698, 4412, 11), -- Average P. Def.
-(35698, 4413, 11), -- Average M. Def.
-(35698, 4414, 2), -- Standard Type
-(35698, 4415, 3), -- One-handed Sword
-(35698, 4416, 14), -- Humans
+(35698, 4408, 1), -- HP Modifiers
+(35698, 4409, 1), -- MP Modifiers
+(35698, 4410, 11), -- P. Atk. Modifiers
+(35698, 4411, 11), -- M. Atk. Modifiers
+(35698, 4412, 11), -- P. Def. Modifiers
+(35698, 4413, 11), -- M. Def. Modifiers
+(35698, 4414, 2), -- Armor Type
+(35698, 4415, 3), -- Weapon Type
+(35698, 4416, 14), -- Races
 -- Doorman
 (35699, 4045, 1), -- Resist Full Magic Attack
-(35699, 4408, 1), -- HP Increase (1x)
-(35699, 4409, 1), -- MP Increase (1x)
-(35699, 4410, 11), -- Average P. Atk.
-(35699, 4411, 11), -- Average M. Atk.
-(35699, 4412, 11), -- Average P. Def.
-(35699, 4413, 11), -- Average M. Def.
-(35699, 4414, 2), -- Standard Type
-(35699, 4415, 3), -- One-handed Sword
-(35699, 4416, 14), -- Humans
+(35699, 4408, 1), -- HP Modifiers
+(35699, 4409, 1), -- MP Modifiers
+(35699, 4410, 11), -- P. Atk. Modifiers
+(35699, 4411, 11), -- M. Atk. Modifiers
+(35699, 4412, 11), -- P. Def. Modifiers
+(35699, 4413, 11), -- M. Def. Modifiers
+(35699, 4414, 2), -- Armor Type
+(35699, 4415, 3), -- Weapon Type
+(35699, 4416, 14), -- Races
 -- Doorman
 (35700, 4045, 1), -- Resist Full Magic Attack
-(35700, 4408, 1), -- HP Increase (1x)
-(35700, 4409, 1), -- MP Increase (1x)
-(35700, 4410, 11), -- Average P. Atk.
-(35700, 4411, 11), -- Average M. Atk.
-(35700, 4412, 11), -- Average P. Def.
-(35700, 4413, 11), -- Average M. Def.
-(35700, 4414, 2), -- Standard Type
-(35700, 4415, 3), -- One-handed Sword
-(35700, 4416, 14), -- Humans
+(35700, 4408, 1), -- HP Modifiers
+(35700, 4409, 1), -- MP Modifiers
+(35700, 4410, 11), -- P. Atk. Modifiers
+(35700, 4411, 11), -- M. Atk. Modifiers
+(35700, 4412, 11), -- P. Def. Modifiers
+(35700, 4413, 11), -- M. Def. Modifiers
+(35700, 4414, 2), -- Armor Type
+(35700, 4415, 3), -- Weapon Type
+(35700, 4416, 14), -- Races
 -- Doorman
 (35701, 4045, 1), -- Resist Full Magic Attack
-(35701, 4408, 1), -- HP Increase (1x)
-(35701, 4409, 1), -- MP Increase (1x)
-(35701, 4410, 11), -- Average P. Atk.
-(35701, 4411, 11), -- Average M. Atk.
-(35701, 4412, 11), -- Average P. Def.
-(35701, 4413, 11), -- Average M. Def.
-(35701, 4414, 2), -- Standard Type
-(35701, 4415, 3), -- One-handed Sword
-(35701, 4416, 14), -- Humans
+(35701, 4408, 1), -- HP Modifiers
+(35701, 4409, 1), -- MP Modifiers
+(35701, 4410, 11), -- P. Atk. Modifiers
+(35701, 4411, 11), -- M. Atk. Modifiers
+(35701, 4412, 11), -- P. Def. Modifiers
+(35701, 4413, 11), -- M. Def. Modifiers
+(35701, 4414, 2), -- Armor Type
+(35701, 4415, 3), -- Weapon Type
+(35701, 4416, 14), -- Races
 -- Rebel Commander
 (35702, 4045, 1), -- Resist Full Magic Attack
-(35702, 4178, 7), -- Flame Strike
-(35702, 4195, 7), -- Twister
-(35702, 4408, 10), -- HP Increase (2x)
-(35702, 4409, 1), -- MP Increase (1x)
-(35702, 4410, 11), -- Average P. Atk.
-(35702, 4411, 17), -- Very Strong M. Atk.
-(35702, 4412, 11), -- Average P. Def.
-(35702, 4413, 11), -- Average M. Def.
-(35702, 4414, 2), -- Standard Type
-(35702, 4415, 3), -- One-handed Sword
-(35702, 4416, 16), -- Dark Elves
+(35702, 4178, 7), -- BOSS Flame Strike
+(35702, 4195, 7), -- BOSS Twister
+(35702, 4408, 10), -- HP Modifiers
+(35702, 4409, 1), -- MP Modifiers
+(35702, 4410, 11), -- P. Atk. Modifiers
+(35702, 4411, 17), -- M. Atk. Modifiers
+(35702, 4412, 11), -- P. Def. Modifiers
+(35702, 4413, 11), -- M. Def. Modifiers
+(35702, 4414, 2), -- Armor Type
+(35702, 4415, 3), -- Weapon Type
+(35702, 4416, 16), -- Races
 -- Decorated Rebel Soldier
 (35703, 4045, 1), -- Resist Full Magic Attack
-(35703, 4408, 14), -- HP Increase (6x)
-(35703, 4409, 1), -- MP Increase (1x)
-(35703, 4410, 15), -- Strong P. Atk.
-(35703, 4411, 11), -- Average M. Atk.
-(35703, 4412, 11), -- Average P. Def.
-(35703, 4413, 15), -- Strong M. Def.
-(35703, 4414, 2), -- Standard Type
-(35703, 4415, 1), -- Bare Hands
-(35703, 4416, 9), -- Demons
-(35703, 5065, 7), -- Unholy Strike
+(35703, 4408, 14), -- HP Modifiers
+(35703, 4409, 1), -- MP Modifiers
+(35703, 4410, 15), -- P. Atk. Modifiers
+(35703, 4411, 11), -- M. Atk. Modifiers
+(35703, 4412, 11), -- P. Def. Modifiers
+(35703, 4413, 15), -- M. Def. Modifiers
+(35703, 4414, 2), -- Armor Type
+(35703, 4415, 1), -- Weapon Type
+(35703, 4416, 9), -- Races
+(35703, 5065, 7), -- Castle DD Unholy
 -- Rebel Private
 (35704, 4045, 1), -- Resist Full Magic Attack
-(35704, 4408, 12), -- HP Increase (4x)
-(35704, 4409, 1), -- MP Increase (1x)
-(35704, 4410, 14), -- Strong P. Atk.
-(35704, 4411, 11), -- Average M. Atk.
-(35704, 4412, 11), -- Average P. Def.
-(35704, 4413, 11), -- Average M. Def.
-(35704, 4414, 2), -- Standard Type
-(35704, 4415, 11), -- Spears
-(35704, 4416, 14), -- Humans
+(35704, 4408, 12), -- HP Modifiers
+(35704, 4409, 1), -- MP Modifiers
+(35704, 4410, 14), -- P. Atk. Modifiers
+(35704, 4411, 11), -- M. Atk. Modifiers
+(35704, 4412, 11), -- P. Def. Modifiers
+(35704, 4413, 11), -- M. Def. Modifiers
+(35704, 4414, 2), -- Armor Type
+(35704, 4415, 11), -- Weapon Type
+(35704, 4416, 14), -- Races
 -- Court Guard
 (35705, 4045, 1), -- Resist Full Magic Attack
-(35705, 4408, 12), -- HP Increase (4x)
-(35705, 4409, 1), -- MP Increase (1x)
-(35705, 4410, 11), -- Average P. Atk.
-(35705, 4411, 11), -- Average M. Atk.
-(35705, 4412, 11), -- Average P. Def.
-(35705, 4413, 16), -- Very Strong M. Def.
-(35705, 4414, 2), -- Standard Type
-(35705, 4415, 11), -- Spears
-(35705, 4416, 22), -- Defending Army
+(35705, 4408, 12), -- HP Modifiers
+(35705, 4409, 1), -- MP Modifiers
+(35705, 4410, 11), -- P. Atk. Modifiers
+(35705, 4411, 11), -- M. Atk. Modifiers
+(35705, 4412, 11), -- P. Def. Modifiers
+(35705, 4413, 16), -- M. Def. Modifiers
+(35705, 4414, 2), -- Armor Type
+(35705, 4415, 11), -- Weapon Type
+(35705, 4416, 22), -- Races
 (35705, 5432, 1), -- Weapon Supply
 -- Guard
 (35706, 4045, 1), -- Resist Full Magic Attack
-(35706, 4408, 12), -- HP Increase (4x)
-(35706, 4409, 1), -- MP Increase (1x)
-(35706, 4410, 15), -- Strong P. Atk.
-(35706, 4411, 11), -- Average M. Atk.
-(35706, 4412, 11), -- Average P. Def.
-(35706, 4413, 11), -- Average M. Def.
-(35706, 4414, 3), -- Light Armor Type
-(35706, 4415, 9), -- Bows
-(35706, 4416, 22), -- Defending Army
+(35706, 4408, 12), -- HP Modifiers
+(35706, 4409, 1), -- MP Modifiers
+(35706, 4410, 15), -- P. Atk. Modifiers
+(35706, 4411, 11), -- M. Atk. Modifiers
+(35706, 4412, 11), -- P. Def. Modifiers
+(35706, 4413, 11), -- M. Def. Modifiers
+(35706, 4414, 3), -- Armor Type
+(35706, 4415, 9), -- Weapon Type
+(35706, 4416, 22), -- Races
 (35706, 5432, 1), -- Weapon Supply
 -- Main Machine
 (35707, 4045, 1), -- Resist Full Magic Attack
-(35707, 4408, 1), -- HP Increase (1x)
-(35707, 4409, 1), -- MP Increase (1x)
-(35707, 4410, 11), -- Average P. Atk.
-(35707, 4411, 11), -- Average M. Atk.
-(35707, 4412, 11), -- Average P. Def.
-(35707, 4413, 11), -- Average M. Def.
-(35707, 4414, 2), -- Standard Type
-(35707, 4415, 3), -- One-handed Sword
-(35707, 4416, 19), -- Others
+(35707, 4408, 1), -- HP Modifiers
+(35707, 4409, 1), -- MP Modifiers
+(35707, 4410, 11), -- P. Atk. Modifiers
+(35707, 4411, 11), -- M. Atk. Modifiers
+(35707, 4412, 11), -- P. Def. Modifiers
+(35707, 4413, 11), -- M. Def. Modifiers
+(35707, 4414, 2), -- Armor Type
+(35707, 4415, 3), -- Weapon Type
+(35707, 4416, 19), -- Races
 -- Backup Power Unit
 (35708, 4045, 1), -- Resist Full Magic Attack
-(35708, 4408, 1), -- HP Increase (1x)
-(35708, 4409, 1), -- MP Increase (1x)
-(35708, 4410, 11), -- Average P. Atk.
-(35708, 4411, 11), -- Average M. Atk.
-(35708, 4412, 11), -- Average P. Def.
-(35708, 4413, 11), -- Average M. Def.
-(35708, 4414, 2), -- Standard Type
-(35708, 4415, 3), -- One-handed Sword
-(35708, 4416, 19), -- Others
+(35708, 4408, 1), -- HP Modifiers
+(35708, 4409, 1), -- MP Modifiers
+(35708, 4410, 11), -- P. Atk. Modifiers
+(35708, 4411, 11), -- M. Atk. Modifiers
+(35708, 4412, 11), -- P. Def. Modifiers
+(35708, 4413, 11), -- M. Def. Modifiers
+(35708, 4414, 2), -- Armor Type
+(35708, 4415, 3), -- Weapon Type
+(35708, 4416, 19), -- Races
 -- Control Unit
 (35709, 4045, 1), -- Resist Full Magic Attack
-(35709, 4408, 1), -- HP Increase (1x)
-(35709, 4409, 1), -- MP Increase (1x)
-(35709, 4410, 11), -- Average P. Atk.
-(35709, 4411, 11), -- Average M. Atk.
-(35709, 4412, 11), -- Average P. Def.
-(35709, 4413, 11), -- Average M. Def.
-(35709, 4414, 2), -- Standard Type
-(35709, 4415, 3), -- One-handed Sword
-(35709, 4416, 2), -- Magic Creatures
+(35709, 4408, 1), -- HP Modifiers
+(35709, 4409, 1), -- MP Modifiers
+(35709, 4410, 11), -- P. Atk. Modifiers
+(35709, 4411, 11), -- M. Atk. Modifiers
+(35709, 4412, 11), -- P. Def. Modifiers
+(35709, 4413, 11), -- M. Def. Modifiers
+(35709, 4414, 2), -- Armor Type
+(35709, 4415, 3), -- Weapon Type
+(35709, 4416, 2), -- Races
 -- Power Control Unit
 (35710, 4045, 1), -- Resist Full Magic Attack
-(35710, 4408, 1), -- HP Increase (1x)
-(35710, 4409, 1), -- MP Increase (1x)
-(35710, 4410, 11), -- Average P. Atk.
-(35710, 4411, 11), -- Average M. Atk.
-(35710, 4412, 11), -- Average P. Def.
-(35710, 4413, 11), -- Average M. Def.
-(35710, 4414, 2), -- Standard Type
-(35710, 4415, 3), -- One-handed Sword
-(35710, 4416, 19), -- Others
+(35710, 4408, 1), -- HP Modifiers
+(35710, 4409, 1), -- MP Modifiers
+(35710, 4410, 11), -- P. Atk. Modifiers
+(35710, 4411, 11), -- M. Atk. Modifiers
+(35710, 4412, 11), -- P. Def. Modifiers
+(35710, 4413, 11), -- M. Def. Modifiers
+(35710, 4414, 2), -- Armor Type
+(35710, 4415, 3), -- Weapon Type
+(35710, 4416, 19), -- Races
 -- Dwarven Gunnery Sergeant
 (35711, 4045, 1), -- Resist Full Magic Attack
-(35711, 4408, 11), -- HP Increase (3x)
-(35711, 4409, 16), -- MP Increase (8x)
-(35711, 4410, 11), -- Average P. Atk.
-(35711, 4411, 17), -- Very Strong M. Atk.
-(35711, 4412, 11), -- Average P. Def.
-(35711, 4413, 8), -- Weak M. Def.
-(35711, 4414, 2), -- Standard Type
-(35711, 4415, 9), -- Bows
-(35711, 4416, 22), -- Defending Army
+(35711, 4408, 11), -- HP Modifiers
+(35711, 4409, 16), -- MP Modifiers
+(35711, 4410, 11), -- P. Atk. Modifiers
+(35711, 4411, 17), -- M. Atk. Modifiers
+(35711, 4412, 11), -- P. Def. Modifiers
+(35711, 4413, 8), -- M. Def. Modifiers
+(35711, 4414, 2), -- Armor Type
+(35711, 4415, 9), -- Weapon Type
+(35711, 4416, 22), -- Races
 (35711, 5432, 1), -- Weapon Supply
-(35711, 5461, 6), -- Power Shot
-(35711, 5468, 6), -- Fire Shot
+(35711, 5461, 6), -- Castle Gunner Shot
+(35711, 5468, 6), -- Castle Gunner Fire
 -- Scout Golem
 (35712, 4045, 1), -- Resist Full Magic Attack
-(35712, 4408, 6), -- HP Very High
-(35712, 4409, 1), -- MP Increase (1x)
-(35712, 4410, 11), -- Average P. Atk.
-(35712, 4411, 11), -- Average M. Atk.
-(35712, 4412, 11), -- Average P. Def.
-(35712, 4413, 16), -- Very Strong M. Def.
-(35712, 4414, 2), -- Standard Type
-(35712, 4415, 3), -- One-handed Sword
-(35712, 4416, 22), -- Defending Army
+(35712, 4408, 6), -- HP Modifiers
+(35712, 4409, 1), -- MP Modifiers
+(35712, 4410, 11), -- P. Atk. Modifiers
+(35712, 4411, 11), -- M. Atk. Modifiers
+(35712, 4412, 11), -- P. Def. Modifiers
+(35712, 4413, 16), -- M. Def. Modifiers
+(35712, 4414, 2), -- Armor Type
+(35712, 4415, 3), -- Weapon Type
+(35712, 4416, 22), -- Races
 -- Guard Captain
 (35713, 4045, 1), -- Resist Full Magic Attack
 (35713, 4172, 6), -- Stun
-(35713, 4408, 9), -- HP Increase (1/2x)
-(35713, 4409, 1), -- MP Increase (1x)
-(35713, 4410, 8), -- Weak P. Atk.
-(35713, 4411, 11), -- Average M. Atk.
-(35713, 4412, 16), -- Very Strong P. Def.
-(35713, 4413, 11), -- Average M. Def.
-(35713, 4414, 2), -- Standard Type
-(35713, 4415, 3), -- One-handed Sword
-(35713, 4416, 22), -- Defending Army
+(35713, 4408, 9), -- HP Modifiers
+(35713, 4409, 1), -- MP Modifiers
+(35713, 4410, 8), -- P. Atk. Modifiers
+(35713, 4411, 11), -- M. Atk. Modifiers
+(35713, 4412, 16), -- P. Def. Modifiers
+(35713, 4413, 11), -- M. Def. Modifiers
+(35713, 4414, 2), -- Armor Type
+(35713, 4415, 3), -- Weapon Type
+(35713, 4416, 22), -- Races
 (35713, 4435, 5), -- Greater Resist Stun
 (35713, 4439, 5), -- Greater Resist Hold
 (35713, 4440, 5), -- Greater Resist Paralysis
-(35713, 4608, 1), -- Berserker Spirit
+(35713, 4608, 1), -- NPC Clan Buff - Berserk
 (35713, 5432, 1), -- Weapon Supply
-(35713, 5457, 1), -- Complete Recovery
+(35713, 5457, 1), -- NPC Full Recover
 -- Guard
 (35714, 4045, 1), -- Resist Full Magic Attack
-(35714, 4408, 13), -- HP Increase (5x)
-(35714, 4409, 1), -- MP Increase (1x)
-(35714, 4410, 9), -- Slightly Weak P. Atk.
-(35714, 4411, 11), -- Average M. Atk.
-(35714, 4412, 16), -- Very Strong P. Def.
-(35714, 4413, 11), -- Average M. Def.
-(35714, 4414, 2), -- Standard Type
-(35714, 4415, 3), -- One-handed Sword
-(35714, 4416, 22), -- Defending Army
+(35714, 4408, 13), -- HP Modifiers
+(35714, 4409, 1), -- MP Modifiers
+(35714, 4410, 9), -- P. Atk. Modifiers
+(35714, 4411, 11), -- M. Atk. Modifiers
+(35714, 4412, 16), -- P. Def. Modifiers
+(35714, 4413, 11), -- M. Def. Modifiers
+(35714, 4414, 2), -- Armor Type
+(35714, 4415, 3), -- Weapon Type
+(35714, 4416, 22), -- Races
 (35714, 5112, 6), -- Stun
 (35714, 5432, 1), -- Weapon Supply
 -- Guard
 (35715, 4045, 1), -- Resist Full Magic Attack
-(35715, 4408, 13), -- HP Increase (5x)
-(35715, 4409, 1), -- MP Increase (1x)
-(35715, 4410, 9), -- Slightly Weak P. Atk.
-(35715, 4411, 11), -- Average M. Atk.
-(35715, 4412, 11), -- Average P. Def.
-(35715, 4413, 16), -- Very Strong M. Def.
-(35715, 4414, 2), -- Standard Type
-(35715, 4415, 3), -- One-handed Sword
-(35715, 4416, 22), -- Defending Army
-(35715, 5045, 6), -- Power Strike
+(35715, 4408, 13), -- HP Modifiers
+(35715, 4409, 1), -- MP Modifiers
+(35715, 4410, 9), -- P. Atk. Modifiers
+(35715, 4411, 11), -- M. Atk. Modifiers
+(35715, 4412, 11), -- P. Def. Modifiers
+(35715, 4413, 16), -- M. Def. Modifiers
+(35715, 4414, 2), -- Armor Type
+(35715, 4415, 3), -- Weapon Type
+(35715, 4416, 22), -- Races
+(35715, 5045, 6), -- Castle Power Strike
 (35715, 5432, 1), -- Weapon Supply
 -- Support Unit Captain
 (35716, 4045, 1), -- Resist Full Magic Attack
-(35716, 4194, 6), -- Aura Burn
-(35716, 4196, 6), -- Decrease Speed
-(35716, 4408, 9), -- HP Increase (1/2x)
-(35716, 4409, 16), -- MP Increase (8x)
-(35716, 4410, 11), -- Average P. Atk.
-(35716, 4411, 14), -- Strong M. Atk.
-(35716, 4412, 8), -- Weak P. Def.
-(35716, 4413, 14), -- Strong M. Def.
-(35716, 4414, 3), -- Light Armor Type
-(35716, 4415, 3), -- One-handed Sword
-(35716, 4416, 22), -- Defending Army
-(35716, 5396, 1), -- Spell Force
-(35716, 5398, 1), -- Final Burn
+(35716, 4194, 6), -- BOSS Aura Burn
+(35716, 4196, 6), -- Decreases Speed
+(35716, 4408, 9), -- HP Modifiers
+(35716, 4409, 16), -- MP Modifiers
+(35716, 4410, 11), -- P. Atk. Modifiers
+(35716, 4411, 14), -- M. Atk. Modifiers
+(35716, 4412, 8), -- P. Def. Modifiers
+(35716, 4413, 14), -- M. Def. Modifiers
+(35716, 4414, 3), -- Armor Type
+(35716, 4415, 3), -- Weapon Type
+(35716, 4416, 22), -- Races
+(35716, 5396, 1), -- NPC - Spell Stance
+(35716, 5398, 1), -- NPC - Combination Force
 (35716, 5432, 1), -- Weapon Supply
-(35716, 5457, 1), -- Complete Recovery
+(35716, 5457, 1), -- NPC Full Recover
 -- Wizard
 (35717, 4045, 1), -- Resist Full Magic Attack
-(35717, 4077, 6), -- Aura Burn
-(35717, 4408, 13), -- HP Increase (5x)
-(35717, 4409, 16), -- MP Increase (8x)
-(35717, 4410, 11), -- Average P. Atk.
-(35717, 4411, 16), -- Very Strong M. Atk.
-(35717, 4412, 8), -- Weak P. Def.
-(35717, 4413, 11), -- Average M. Def.
-(35717, 4414, 3), -- Light Armor Type
-(35717, 4415, 3), -- One-handed Sword
-(35717, 4416, 22), -- Defending Army
-(35717, 5053, 6), -- Hydro Blast
-(35717, 5396, 1), -- Spell Force
+(35717, 4077, 6), -- NPC Aura Burn
+(35717, 4408, 13), -- HP Modifiers
+(35717, 4409, 16), -- MP Modifiers
+(35717, 4410, 11), -- P. Atk. Modifiers
+(35717, 4411, 16), -- M. Atk. Modifiers
+(35717, 4412, 8), -- P. Def. Modifiers
+(35717, 4413, 11), -- M. Def. Modifiers
+(35717, 4414, 3), -- Armor Type
+(35717, 4415, 3), -- Weapon Type
+(35717, 4416, 22), -- Races
+(35717, 5053, 6), -- Castle DD Water
+(35717, 5396, 1), -- NPC - Spell Stance
 (35717, 5432, 1), -- Weapon Supply
 -- Healer
 (35718, 4045, 1), -- Resist Full Magic Attack
 (35718, 4115, 1), -- Aden Heal
-(35718, 4408, 15), -- HP Increase (7x)
-(35718, 4409, 16), -- MP Increase (8x)
-(35718, 4410, 11), -- Average P. Atk.
-(35718, 4411, 17), -- Very Strong M. Atk.
-(35718, 4412, 11), -- Average P. Def.
-(35718, 4413, 16), -- Very Strong M. Def.
-(35718, 4414, 3), -- Light Armor Type
-(35718, 4415, 3), -- One-handed Sword
-(35718, 4416, 22), -- Defending Army
+(35718, 4408, 15), -- HP Modifiers
+(35718, 4409, 16), -- MP Modifiers
+(35718, 4410, 11), -- P. Atk. Modifiers
+(35718, 4411, 17), -- M. Atk. Modifiers
+(35718, 4412, 11), -- P. Def. Modifiers
+(35718, 4413, 16), -- M. Def. Modifiers
+(35718, 4414, 3), -- Armor Type
+(35718, 4415, 3), -- Weapon Type
+(35718, 4416, 22), -- Races
 (35718, 5114, 6), -- Hold
 (35718, 5432, 1), -- Weapon Supply
 -- Archer Captain
 (35719, 4045, 1), -- Resist Full Magic Attack
-(35719, 4408, 9), -- HP Increase (1/2x)
-(35719, 4409, 1), -- MP Increase (1x)
-(35719, 4410, 16), -- Very Strong P. Atk.
-(35719, 4411, 11), -- Average M. Atk.
-(35719, 4412, 8), -- Weak P. Def.
-(35719, 4413, 11), -- Average M. Def.
-(35719, 4414, 3), -- Light Armor Type
-(35719, 4415, 9), -- Bows
-(35719, 4416, 22), -- Defending Army
-(35719, 4755, 6), -- Power Shot
+(35719, 4408, 9), -- HP Modifiers
+(35719, 4409, 1), -- MP Modifiers
+(35719, 4410, 16), -- P. Atk. Modifiers
+(35719, 4411, 11), -- M. Atk. Modifiers
+(35719, 4412, 8), -- P. Def. Modifiers
+(35719, 4413, 11), -- M. Def. Modifiers
+(35719, 4414, 3), -- Armor Type
+(35719, 4415, 9), -- Weapon Type
+(35719, 4416, 22), -- Races
+(35719, 4755, 6), -- BOSS Power Shot
 (35719, 5432, 1), -- Weapon Supply
-(35719, 5457, 1), -- Complete Recovery
+(35719, 5457, 1), -- NPC Full Recover
 -- Archer
 (35720, 4045, 1), -- Resist Full Magic Attack
-(35720, 4408, 13), -- HP Increase (5x)
-(35720, 4409, 1), -- MP Increase (1x)
-(35720, 4410, 14), -- Strong P. Atk.
-(35720, 4411, 11), -- Average M. Atk.
-(35720, 4412, 8), -- Weak P. Def.
-(35720, 4413, 11), -- Average M. Def.
-(35720, 4414, 3), -- Light Armor Type
-(35720, 4415, 9), -- Bows
-(35720, 4416, 22), -- Defending Army
-(35720, 5046, 6), -- Power Shot
+(35720, 4408, 13), -- HP Modifiers
+(35720, 4409, 1), -- MP Modifiers
+(35720, 4410, 14), -- P. Atk. Modifiers
+(35720, 4411, 11), -- M. Atk. Modifiers
+(35720, 4412, 8), -- P. Def. Modifiers
+(35720, 4413, 11), -- M. Def. Modifiers
+(35720, 4414, 3), -- Armor Type
+(35720, 4415, 9), -- Weapon Type
+(35720, 4416, 22), -- Races
+(35720, 5046, 6), -- Castle Power Shot
 (35720, 5432, 1), -- Weapon Supply
 -- General
 (35721, 4045, 1), -- Resist Full Magic Attack
-(35721, 4408, 9), -- HP Increase (1/2x)
-(35721, 4409, 1), -- MP Increase (1x)
-(35721, 4410, 14), -- Strong P. Atk.
-(35721, 4411, 11), -- Average M. Atk.
-(35721, 4412, 11), -- Average P. Def.
-(35721, 4413, 11), -- Average M. Def.
-(35721, 4414, 2), -- Standard Type
-(35721, 4415, 19), -- Dual-Sword Weapons
-(35721, 4416, 22), -- Defending Army
+(35721, 4408, 9), -- HP Modifiers
+(35721, 4409, 1), -- MP Modifiers
+(35721, 4410, 14), -- P. Atk. Modifiers
+(35721, 4411, 11), -- M. Atk. Modifiers
+(35721, 4412, 11), -- P. Def. Modifiers
+(35721, 4413, 11), -- M. Def. Modifiers
+(35721, 4414, 2), -- Armor Type
+(35721, 4415, 19), -- Weapon Type
+(35721, 4416, 22), -- Races
 (35721, 4725, 6), -- Stun
 (35721, 5432, 1), -- Weapon Supply
-(35721, 5457, 1), -- Complete Recovery
+(35721, 5457, 1), -- NPC Full Recover
 -- Minister 
 (35722, 4045, 1), -- Resist Full Magic Attack
-(35722, 4408, 9), -- HP Increase (1/2x)
-(35722, 4409, 1), -- MP Increase (1x)
-(35722, 4410, 14), -- Strong P. Atk.
-(35722, 4411, 11), -- Average M. Atk.
-(35722, 4412, 11), -- Average P. Def.
-(35722, 4413, 11), -- Average M. Def.
-(35722, 4414, 2), -- Standard Type
-(35722, 4415, 3), -- One-handed Sword
-(35722, 4416, 22), -- Defending Army
-(35722, 4721, 6), -- Power Strike
+(35722, 4408, 9), -- HP Modifiers
+(35722, 4409, 1), -- MP Modifiers
+(35722, 4410, 14), -- P. Atk. Modifiers
+(35722, 4411, 11), -- M. Atk. Modifiers
+(35722, 4412, 11), -- P. Def. Modifiers
+(35722, 4413, 11), -- M. Def. Modifiers
+(35722, 4414, 2), -- Armor Type
+(35722, 4415, 3), -- Weapon Type
+(35722, 4416, 22), -- Races
+(35722, 4721, 6), -- BOSS Strike
 (35722, 5432, 1), -- Weapon Supply
-(35722, 5457, 1), -- Complete Recovery
+(35722, 5457, 1), -- NPC Full Recover
 -- Ballista
 (35723, 2342, 1), -- Ballista Bomb
 (35723, 4045, 1), -- Resist Full Magic Attack
-(35723, 4408, 16), -- HP Increase (8x)
-(35723, 4409, 1), -- MP Increase (1x)
-(35723, 4410, 11), -- Average P. Atk.
-(35723, 4411, 11), -- Average M. Atk.
-(35723, 4412, 11), -- Average P. Def.
-(35723, 4413, 11), -- Average M. Def.
-(35723, 4414, 2), -- Standard Type
-(35723, 4415, 3), -- One-handed Sword
-(35723, 4416, 22), -- Defending Army
+(35723, 4408, 16), -- HP Modifiers
+(35723, 4409, 1), -- MP Modifiers
+(35723, 4410, 11), -- P. Atk. Modifiers
+(35723, 4411, 11), -- M. Atk. Modifiers
+(35723, 4412, 11), -- P. Def. Modifiers
+(35723, 4413, 11), -- M. Def. Modifiers
+(35723, 4414, 2), -- Armor Type
+(35723, 4415, 3), -- Weapon Type
+(35723, 4416, 22), -- Races
 -- Mercenary Captain
 (35724, 4045, 1), -- Resist Full Magic Attack
-(35724, 4408, 11), -- HP Increase (3x)
-(35724, 4409, 1), -- MP Increase (1x)
-(35724, 4410, 11), -- Average P. Atk.
-(35724, 4411, 11), -- Average M. Atk.
-(35724, 4412, 11), -- Average P. Def.
-(35724, 4413, 11), -- Average M. Def.
-(35724, 4414, 2), -- Standard Type
-(35724, 4415, 3), -- One-handed Sword
-(35724, 4416, 14), -- Humans
+(35724, 4408, 11), -- HP Modifiers
+(35724, 4409, 1), -- MP Modifiers
+(35724, 4410, 11), -- P. Atk. Modifiers
+(35724, 4411, 11), -- M. Atk. Modifiers
+(35724, 4412, 11), -- P. Def. Modifiers
+(35724, 4413, 11), -- M. Def. Modifiers
+(35724, 4414, 2), -- Armor Type
+(35724, 4415, 3), -- Weapon Type
+(35724, 4416, 14), -- Races
 -- Mercenary Private
 (35725, 4045, 1), -- Resist Full Magic Attack
-(35725, 4408, 11), -- HP Increase (3x)
-(35725, 4409, 1), -- MP Increase (1x)
-(35725, 4410, 13), -- Slightly Strong P. Atk.
-(35725, 4411, 11), -- Average M. Atk.
-(35725, 4412, 11), -- Average P. Def.
-(35725, 4413, 11), -- Average M. Def.
-(35725, 4414, 2), -- Standard Type
-(35725, 4415, 11), -- Spears
-(35725, 4416, 17), -- Orcs
+(35725, 4408, 11), -- HP Modifiers
+(35725, 4409, 1), -- MP Modifiers
+(35725, 4410, 13), -- P. Atk. Modifiers
+(35725, 4411, 11), -- M. Atk. Modifiers
+(35725, 4412, 11), -- P. Def. Modifiers
+(35725, 4413, 11), -- M. Def. Modifiers
+(35725, 4414, 2), -- Armor Type
+(35725, 4415, 11), -- Weapon Type
+(35725, 4416, 17), -- Races
 -- Flagpole
 (35726, 4045, 1), -- Resist Full Magic Attack
-(35726, 4408, 1), -- HP Increase (1x)
-(35726, 4409, 1), -- MP Increase (1x)
-(35726, 4410, 11), -- Average P. Atk.
-(35726, 4411, 11), -- Average M. Atk.
-(35726, 4412, 11), -- Average P. Def.
-(35726, 4413, 11), -- Average M. Def.
-(35726, 4414, 2), -- Standard Type
-(35726, 4415, 3), -- One-handed Sword
-(35726, 4416, 19), -- Others
+(35726, 4408, 1), -- HP Modifiers
+(35726, 4409, 1), -- MP Modifiers
+(35726, 4410, 11), -- P. Atk. Modifiers
+(35726, 4411, 11), -- M. Atk. Modifiers
+(35726, 4412, 11), -- P. Def. Modifiers
+(35726, 4413, 11), -- M. Def. Modifiers
+(35726, 4414, 2), -- Armor Type
+(35726, 4415, 3), -- Weapon Type
+(35726, 4416, 19), -- Races
 -- Foreman
 (35727, 4045, 1), -- Resist Full Magic Attack
-(35727, 4408, 1), -- HP Increase (1x)
-(35727, 4409, 1), -- MP Increase (1x)
-(35727, 4410, 11), -- Average P. Atk.
-(35727, 4411, 11), -- Average M. Atk.
-(35727, 4412, 11), -- Average P. Def.
-(35727, 4413, 11), -- Average M. Def.
-(35727, 4414, 2), -- Standard Type
-(35727, 4415, 3), -- One-handed Sword
-(35727, 4416, 14), -- Humans
+(35727, 4408, 1), -- HP Modifiers
+(35727, 4409, 1), -- MP Modifiers
+(35727, 4410, 11), -- P. Atk. Modifiers
+(35727, 4411, 11), -- M. Atk. Modifiers
+(35727, 4412, 11), -- P. Def. Modifiers
+(35727, 4413, 11), -- M. Def. Modifiers
+(35727, 4414, 2), -- Armor Type
+(35727, 4415, 3), -- Weapon Type
+(35727, 4416, 14), -- Races
 -- Suspicious Merchant
 (35728, 4045, 1), -- Resist Full Magic Attack
-(35728, 4408, 1), -- HP Increase (1x)
-(35728, 4409, 1), -- MP Increase (1x)
-(35728, 4410, 11), -- Average P. Atk.
-(35728, 4411, 11), -- Average M. Atk.
-(35728, 4412, 11), -- Average P. Def.
-(35728, 4413, 11), -- Average M. Def.
-(35728, 4414, 2), -- Standard Type
-(35728, 4415, 3), -- One-handed Sword
-(35728, 4416, 17), -- Orcs
+(35728, 4408, 1), -- HP Modifiers
+(35728, 4409, 1), -- MP Modifiers
+(35728, 4410, 11), -- P. Atk. Modifiers
+(35728, 4411, 11), -- M. Atk. Modifiers
+(35728, 4412, 11), -- P. Def. Modifiers
+(35728, 4413, 11), -- M. Def. Modifiers
+(35728, 4414, 2), -- Armor Type
+(35728, 4415, 3), -- Weapon Type
+(35728, 4416, 17), -- Races
 -- Guard Captain
 (35729, 4045, 1), -- Resist Full Magic Attack
-(35729, 4408, 1), -- HP Increase (1x)
-(35729, 4409, 1), -- MP Increase (1x)
-(35729, 4410, 11), -- Average P. Atk.
-(35729, 4411, 11), -- Average M. Atk.
-(35729, 4412, 11), -- Average P. Def.
-(35729, 4413, 11), -- Average M. Def.
-(35729, 4414, 2), -- Standard Type
-(35729, 4415, 3), -- One-handed Sword
-(35729, 4416, 14), -- Humans
+(35729, 4408, 1), -- HP Modifiers
+(35729, 4409, 1), -- MP Modifiers
+(35729, 4410, 11), -- P. Atk. Modifiers
+(35729, 4411, 11), -- M. Atk. Modifiers
+(35729, 4412, 11), -- P. Def. Modifiers
+(35729, 4413, 11), -- M. Def. Modifiers
+(35729, 4414, 2), -- Armor Type
+(35729, 4415, 3), -- Weapon Type
+(35729, 4416, 14), -- Races
 -- Archer Captain
 (35730, 4045, 1), -- Resist Full Magic Attack
-(35730, 4408, 1), -- HP Increase (1x)
-(35730, 4409, 1), -- MP Increase (1x)
-(35730, 4410, 11), -- Average P. Atk.
-(35730, 4411, 11), -- Average M. Atk.
-(35730, 4412, 11), -- Average P. Def.
-(35730, 4413, 11), -- Average M. Def.
-(35730, 4414, 2), -- Standard Type
-(35730, 4415, 9), -- Bows
-(35730, 4416, 15), -- Elves
+(35730, 4408, 1), -- HP Modifiers
+(35730, 4409, 1), -- MP Modifiers
+(35730, 4410, 11), -- P. Atk. Modifiers
+(35730, 4411, 11), -- M. Atk. Modifiers
+(35730, 4412, 11), -- P. Def. Modifiers
+(35730, 4413, 11), -- M. Def. Modifiers
+(35730, 4414, 2), -- Armor Type
+(35730, 4415, 9), -- Weapon Type
+(35730, 4416, 15), -- Races
 -- Support Unit Captain
 (35731, 4045, 1), -- Resist Full Magic Attack
-(35731, 4408, 1), -- HP Increase (1x)
-(35731, 4409, 1), -- MP Increase (1x)
-(35731, 4410, 11), -- Average P. Atk.
-(35731, 4411, 11), -- Average M. Atk.
-(35731, 4412, 11), -- Average P. Def.
-(35731, 4413, 11), -- Average M. Def.
-(35731, 4414, 2), -- Standard Type
-(35731, 4415, 3), -- One-handed Sword
-(35731, 4416, 14), -- Humans
+(35731, 4408, 1), -- HP Modifiers
+(35731, 4409, 1), -- MP Modifiers
+(35731, 4410, 11), -- P. Atk. Modifiers
+(35731, 4411, 11), -- M. Atk. Modifiers
+(35731, 4412, 11), -- P. Def. Modifiers
+(35731, 4413, 11), -- M. Def. Modifiers
+(35731, 4414, 2), -- Armor Type
+(35731, 4415, 3), -- Weapon Type
+(35731, 4416, 14), -- Races
 -- Engineering Manager
 (35732, 4045, 1), -- Resist Full Magic Attack
-(35732, 4408, 1), -- HP Increase (1x)
-(35732, 4409, 1), -- MP Increase (1x)
-(35732, 4410, 11), -- Average P. Atk.
-(35732, 4411, 11), -- Average M. Atk.
-(35732, 4412, 11), -- Average P. Def.
-(35732, 4413, 11), -- Average M. Def.
-(35732, 4414, 2), -- Standard Type
-(35732, 4415, 3), -- One-handed Sword
-(35732, 4416, 18), -- Dwarves
+(35732, 4408, 1), -- HP Modifiers
+(35732, 4409, 1), -- MP Modifiers
+(35732, 4410, 11), -- P. Atk. Modifiers
+(35732, 4411, 11), -- M. Atk. Modifiers
+(35732, 4412, 11), -- P. Def. Modifiers
+(35732, 4413, 11), -- M. Def. Modifiers
+(35732, 4414, 2), -- Armor Type
+(35732, 4415, 3), -- Weapon Type
+(35732, 4416, 18), -- Races
 -- Logistics Officer
 (35733, 4045, 1), -- Resist Full Magic Attack
-(35733, 4408, 1), -- HP Increase (1x)
-(35733, 4409, 1), -- MP Increase (1x)
-(35733, 4410, 11), -- Average P. Atk.
-(35733, 4411, 11), -- Average M. Atk.
-(35733, 4412, 11), -- Average P. Def.
-(35733, 4413, 11), -- Average M. Def.
-(35733, 4414, 2), -- Standard Type
-(35733, 4415, 3), -- One-handed Sword
-(35733, 4416, 18), -- Dwarves
+(35733, 4408, 1), -- HP Modifiers
+(35733, 4409, 1), -- MP Modifiers
+(35733, 4410, 11), -- P. Atk. Modifiers
+(35733, 4411, 11), -- M. Atk. Modifiers
+(35733, 4412, 11), -- P. Def. Modifiers
+(35733, 4413, 11), -- M. Def. Modifiers
+(35733, 4414, 2), -- Armor Type
+(35733, 4415, 3), -- Weapon Type
+(35733, 4416, 18), -- Races
 -- Supply Box
 (35734, 4045, 1), -- Resist Full Magic Attack
-(35734, 4408, 1), -- HP Increase (1x)
-(35734, 4409, 1), -- MP Increase (1x)
-(35734, 4410, 11), -- Average P. Atk.
-(35734, 4411, 11), -- Average M. Atk.
-(35734, 4412, 11), -- Average P. Def.
-(35734, 4413, 11), -- Average M. Def.
-(35734, 4414, 2), -- Standard Type
-(35734, 4415, 3), -- One-handed Sword
-(35734, 4416, 2), -- Magic Creatures
+(35734, 4408, 1), -- HP Modifiers
+(35734, 4409, 1), -- MP Modifiers
+(35734, 4410, 11), -- P. Atk. Modifiers
+(35734, 4411, 11), -- M. Atk. Modifiers
+(35734, 4412, 11), -- P. Def. Modifiers
+(35734, 4413, 11), -- M. Def. Modifiers
+(35734, 4414, 2), -- Armor Type
+(35734, 4415, 3), -- Weapon Type
+(35734, 4416, 2), -- Races
 -- Detention Camp Warden
 (35735, 4045, 1), -- Resist Full Magic Attack
-(35735, 4408, 1), -- HP Increase (1x)
-(35735, 4409, 1), -- MP Increase (1x)
-(35735, 4410, 11), -- Average P. Atk.
-(35735, 4411, 11), -- Average M. Atk.
-(35735, 4412, 11), -- Average P. Def.
-(35735, 4413, 11), -- Average M. Def.
-(35735, 4414, 2), -- Standard Type
-(35735, 4415, 3), -- One-handed Sword
-(35735, 4416, 14), -- Humans
+(35735, 4408, 1), -- HP Modifiers
+(35735, 4409, 1), -- MP Modifiers
+(35735, 4410, 11), -- P. Atk. Modifiers
+(35735, 4411, 11), -- M. Atk. Modifiers
+(35735, 4412, 11), -- P. Def. Modifiers
+(35735, 4413, 11), -- M. Def. Modifiers
+(35735, 4414, 2), -- Armor Type
+(35735, 4415, 3), -- Weapon Type
+(35735, 4416, 14), -- Races
 -- Doorman
 (35736, 4045, 1), -- Resist Full Magic Attack
-(35736, 4408, 1), -- HP Increase (1x)
-(35736, 4409, 1), -- MP Increase (1x)
-(35736, 4410, 11), -- Average P. Atk.
-(35736, 4411, 11), -- Average M. Atk.
-(35736, 4412, 11), -- Average P. Def.
-(35736, 4413, 11), -- Average M. Def.
-(35736, 4414, 2), -- Standard Type
-(35736, 4415, 3), -- One-handed Sword
-(35736, 4416, 14), -- Humans
+(35736, 4408, 1), -- HP Modifiers
+(35736, 4409, 1), -- MP Modifiers
+(35736, 4410, 11), -- P. Atk. Modifiers
+(35736, 4411, 11), -- M. Atk. Modifiers
+(35736, 4412, 11), -- P. Def. Modifiers
+(35736, 4413, 11), -- M. Def. Modifiers
+(35736, 4414, 2), -- Armor Type
+(35736, 4415, 3), -- Weapon Type
+(35736, 4416, 14), -- Races
 -- Doorman
 (35737, 4045, 1), -- Resist Full Magic Attack
-(35737, 4408, 1), -- HP Increase (1x)
-(35737, 4409, 1), -- MP Increase (1x)
-(35737, 4410, 11), -- Average P. Atk.
-(35737, 4411, 11), -- Average M. Atk.
-(35737, 4412, 11), -- Average P. Def.
-(35737, 4413, 11), -- Average M. Def.
-(35737, 4414, 2), -- Standard Type
-(35737, 4415, 3), -- One-handed Sword
-(35737, 4416, 14), -- Humans
+(35737, 4408, 1), -- HP Modifiers
+(35737, 4409, 1), -- MP Modifiers
+(35737, 4410, 11), -- P. Atk. Modifiers
+(35737, 4411, 11), -- M. Atk. Modifiers
+(35737, 4412, 11), -- P. Def. Modifiers
+(35737, 4413, 11), -- M. Def. Modifiers
+(35737, 4414, 2), -- Armor Type
+(35737, 4415, 3), -- Weapon Type
+(35737, 4416, 14), -- Races
 -- Doorman
 (35738, 4045, 1), -- Resist Full Magic Attack
-(35738, 4408, 1), -- HP Increase (1x)
-(35738, 4409, 1), -- MP Increase (1x)
-(35738, 4410, 11), -- Average P. Atk.
-(35738, 4411, 11), -- Average M. Atk.
-(35738, 4412, 11), -- Average P. Def.
-(35738, 4413, 11), -- Average M. Def.
-(35738, 4414, 2), -- Standard Type
-(35738, 4415, 3), -- One-handed Sword
-(35738, 4416, 14), -- Humans
+(35738, 4408, 1), -- HP Modifiers
+(35738, 4409, 1), -- MP Modifiers
+(35738, 4410, 11), -- P. Atk. Modifiers
+(35738, 4411, 11), -- M. Atk. Modifiers
+(35738, 4412, 11), -- P. Def. Modifiers
+(35738, 4413, 11), -- M. Def. Modifiers
+(35738, 4414, 2), -- Armor Type
+(35738, 4415, 3), -- Weapon Type
+(35738, 4416, 14), -- Races
 -- Rebel Commander
 (35739, 4045, 1), -- Resist Full Magic Attack
-(35739, 4178, 7), -- Flame Strike
-(35739, 4195, 7), -- Twister
-(35739, 4408, 10), -- HP Increase (2x)
-(35739, 4409, 1), -- MP Increase (1x)
-(35739, 4410, 11), -- Average P. Atk.
-(35739, 4411, 17), -- Very Strong M. Atk.
-(35739, 4412, 11), -- Average P. Def.
-(35739, 4413, 11), -- Average M. Def.
-(35739, 4414, 2), -- Standard Type
-(35739, 4415, 3), -- One-handed Sword
-(35739, 4416, 16), -- Dark Elves
+(35739, 4178, 7), -- BOSS Flame Strike
+(35739, 4195, 7), -- BOSS Twister
+(35739, 4408, 10), -- HP Modifiers
+(35739, 4409, 1), -- MP Modifiers
+(35739, 4410, 11), -- P. Atk. Modifiers
+(35739, 4411, 17), -- M. Atk. Modifiers
+(35739, 4412, 11), -- P. Def. Modifiers
+(35739, 4413, 11), -- M. Def. Modifiers
+(35739, 4414, 2), -- Armor Type
+(35739, 4415, 3), -- Weapon Type
+(35739, 4416, 16), -- Races
 -- Decorated Rebel Soldier
 (35740, 4045, 1), -- Resist Full Magic Attack
-(35740, 4408, 14), -- HP Increase (6x)
-(35740, 4409, 1), -- MP Increase (1x)
-(35740, 4410, 15), -- Strong P. Atk.
-(35740, 4411, 11), -- Average M. Atk.
-(35740, 4412, 11), -- Average P. Def.
-(35740, 4413, 15), -- Strong M. Def.
-(35740, 4414, 2), -- Standard Type
-(35740, 4415, 1), -- Bare Hands
-(35740, 4416, 9), -- Demons
-(35740, 5065, 7), -- Unholy Strike
+(35740, 4408, 14), -- HP Modifiers
+(35740, 4409, 1), -- MP Modifiers
+(35740, 4410, 15), -- P. Atk. Modifiers
+(35740, 4411, 11), -- M. Atk. Modifiers
+(35740, 4412, 11), -- P. Def. Modifiers
+(35740, 4413, 15), -- M. Def. Modifiers
+(35740, 4414, 2), -- Armor Type
+(35740, 4415, 1), -- Weapon Type
+(35740, 4416, 9), -- Races
+(35740, 5065, 7), -- Castle DD Unholy
 -- Rebel Private
 (35741, 4045, 1), -- Resist Full Magic Attack
-(35741, 4408, 12), -- HP Increase (4x)
-(35741, 4409, 1), -- MP Increase (1x)
-(35741, 4410, 14), -- Strong P. Atk.
-(35741, 4411, 11), -- Average M. Atk.
-(35741, 4412, 11), -- Average P. Def.
-(35741, 4413, 11), -- Average M. Def.
-(35741, 4414, 2), -- Standard Type
-(35741, 4415, 11), -- Spears
-(35741, 4416, 14), -- Humans
+(35741, 4408, 12), -- HP Modifiers
+(35741, 4409, 1), -- MP Modifiers
+(35741, 4410, 14), -- P. Atk. Modifiers
+(35741, 4411, 11), -- M. Atk. Modifiers
+(35741, 4412, 11), -- P. Def. Modifiers
+(35741, 4413, 11), -- M. Def. Modifiers
+(35741, 4414, 2), -- Armor Type
+(35741, 4415, 11), -- Weapon Type
+(35741, 4416, 14), -- Races
 -- Court Guard
 (35742, 4045, 1), -- Resist Full Magic Attack
-(35742, 4408, 12), -- HP Increase (4x)
-(35742, 4409, 1), -- MP Increase (1x)
-(35742, 4410, 11), -- Average P. Atk.
-(35742, 4411, 11), -- Average M. Atk.
-(35742, 4412, 11), -- Average P. Def.
-(35742, 4413, 16), -- Very Strong M. Def.
-(35742, 4414, 2), -- Standard Type
-(35742, 4415, 11), -- Spears
-(35742, 4416, 22), -- Defending Army
+(35742, 4408, 12), -- HP Modifiers
+(35742, 4409, 1), -- MP Modifiers
+(35742, 4410, 11), -- P. Atk. Modifiers
+(35742, 4411, 11), -- M. Atk. Modifiers
+(35742, 4412, 11), -- P. Def. Modifiers
+(35742, 4413, 16), -- M. Def. Modifiers
+(35742, 4414, 2), -- Armor Type
+(35742, 4415, 11), -- Weapon Type
+(35742, 4416, 22), -- Races
 (35742, 5432, 1), -- Weapon Supply
 -- Guard
 (35743, 4045, 1), -- Resist Full Magic Attack
-(35743, 4408, 12), -- HP Increase (4x)
-(35743, 4409, 1), -- MP Increase (1x)
-(35743, 4410, 15), -- Strong P. Atk.
-(35743, 4411, 11), -- Average M. Atk.
-(35743, 4412, 11), -- Average P. Def.
-(35743, 4413, 11), -- Average M. Def.
-(35743, 4414, 3), -- Light Armor Type
-(35743, 4415, 9), -- Bows
-(35743, 4416, 22), -- Defending Army
+(35743, 4408, 12), -- HP Modifiers
+(35743, 4409, 1), -- MP Modifiers
+(35743, 4410, 15), -- P. Atk. Modifiers
+(35743, 4411, 11), -- M. Atk. Modifiers
+(35743, 4412, 11), -- P. Def. Modifiers
+(35743, 4413, 11), -- M. Def. Modifiers
+(35743, 4414, 3), -- Armor Type
+(35743, 4415, 9), -- Weapon Type
+(35743, 4416, 22), -- Races
 (35743, 5432, 1), -- Weapon Supply
 -- Power Control Unit
 (35744, 4045, 1), -- Resist Full Magic Attack
-(35744, 4408, 1), -- HP Increase (1x)
-(35744, 4409, 1), -- MP Increase (1x)
-(35744, 4410, 11), -- Average P. Atk.
-(35744, 4411, 11), -- Average M. Atk.
-(35744, 4412, 11), -- Average P. Def.
-(35744, 4413, 11), -- Average M. Def.
-(35744, 4414, 2), -- Standard Type
-(35744, 4415, 3), -- One-handed Sword
-(35744, 4416, 19), -- Others
+(35744, 4408, 1), -- HP Modifiers
+(35744, 4409, 1), -- MP Modifiers
+(35744, 4410, 11), -- P. Atk. Modifiers
+(35744, 4411, 11), -- M. Atk. Modifiers
+(35744, 4412, 11), -- P. Def. Modifiers
+(35744, 4413, 11), -- M. Def. Modifiers
+(35744, 4414, 2), -- Armor Type
+(35744, 4415, 3), -- Weapon Type
+(35744, 4416, 19), -- Races
 -- Dwarven Gunnery Sergeant
 (35745, 4045, 1), -- Resist Full Magic Attack
-(35745, 4408, 11), -- HP Increase (3x)
-(35745, 4409, 16), -- MP Increase (8x)
-(35745, 4410, 11), -- Average P. Atk.
-(35745, 4411, 17), -- Very Strong M. Atk.
-(35745, 4412, 11), -- Average P. Def.
-(35745, 4413, 8), -- Weak M. Def.
-(35745, 4414, 2), -- Standard Type
-(35745, 4415, 9), -- Bows
-(35745, 4416, 22), -- Defending Army
+(35745, 4408, 11), -- HP Modifiers
+(35745, 4409, 16), -- MP Modifiers
+(35745, 4410, 11), -- P. Atk. Modifiers
+(35745, 4411, 17), -- M. Atk. Modifiers
+(35745, 4412, 11), -- P. Def. Modifiers
+(35745, 4413, 8), -- M. Def. Modifiers
+(35745, 4414, 2), -- Armor Type
+(35745, 4415, 9), -- Weapon Type
+(35745, 4416, 22), -- Races
 (35745, 5432, 1), -- Weapon Supply
-(35745, 5461, 6), -- Power Shot
-(35745, 5468, 6), -- Fire Shot
+(35745, 5461, 6), -- Castle Gunner Shot
+(35745, 5468, 6), -- Castle Gunner Fire
 -- Guard Captain
 (35746, 4045, 1), -- Resist Full Magic Attack
 (35746, 4172, 6), -- Stun
-(35746, 4408, 9), -- HP Increase (1/2x)
-(35746, 4409, 1), -- MP Increase (1x)
-(35746, 4410, 8), -- Weak P. Atk.
-(35746, 4411, 11), -- Average M. Atk.
-(35746, 4412, 16), -- Very Strong P. Def.
-(35746, 4413, 11), -- Average M. Def.
-(35746, 4414, 2), -- Standard Type
-(35746, 4415, 3), -- One-handed Sword
-(35746, 4416, 22), -- Defending Army
+(35746, 4408, 9), -- HP Modifiers
+(35746, 4409, 1), -- MP Modifiers
+(35746, 4410, 8), -- P. Atk. Modifiers
+(35746, 4411, 11), -- M. Atk. Modifiers
+(35746, 4412, 16), -- P. Def. Modifiers
+(35746, 4413, 11), -- M. Def. Modifiers
+(35746, 4414, 2), -- Armor Type
+(35746, 4415, 3), -- Weapon Type
+(35746, 4416, 22), -- Races
 (35746, 4435, 5), -- Greater Resist Stun
 (35746, 4439, 5), -- Greater Resist Hold
 (35746, 4440, 5), -- Greater Resist Paralysis
-(35746, 4608, 1), -- Berserker Spirit
+(35746, 4608, 1), -- NPC Clan Buff - Berserk
 (35746, 5432, 1), -- Weapon Supply
-(35746, 5457, 1), -- Complete Recovery
+(35746, 5457, 1), -- NPC Full Recover
 -- Guard
 (35747, 4045, 1), -- Resist Full Magic Attack
-(35747, 4408, 13), -- HP Increase (5x)
-(35747, 4409, 1), -- MP Increase (1x)
-(35747, 4410, 9), -- Slightly Weak P. Atk.
-(35747, 4411, 11), -- Average M. Atk.
-(35747, 4412, 16), -- Very Strong P. Def.
-(35747, 4413, 11), -- Average M. Def.
-(35747, 4414, 2), -- Standard Type
-(35747, 4415, 3), -- One-handed Sword
-(35747, 4416, 22), -- Defending Army
+(35747, 4408, 13), -- HP Modifiers
+(35747, 4409, 1), -- MP Modifiers
+(35747, 4410, 9), -- P. Atk. Modifiers
+(35747, 4411, 11), -- M. Atk. Modifiers
+(35747, 4412, 16), -- P. Def. Modifiers
+(35747, 4413, 11), -- M. Def. Modifiers
+(35747, 4414, 2), -- Armor Type
+(35747, 4415, 3), -- Weapon Type
+(35747, 4416, 22), -- Races
 (35747, 5112, 6), -- Stun
 (35747, 5432, 1), -- Weapon Supply
 -- Guard
 (35748, 4045, 1), -- Resist Full Magic Attack
-(35748, 4408, 13), -- HP Increase (5x)
-(35748, 4409, 1), -- MP Increase (1x)
-(35748, 4410, 9), -- Slightly Weak P. Atk.
-(35748, 4411, 11), -- Average M. Atk.
-(35748, 4412, 11), -- Average P. Def.
-(35748, 4413, 16), -- Very Strong M. Def.
-(35748, 4414, 2), -- Standard Type
-(35748, 4415, 3), -- One-handed Sword
-(35748, 4416, 22), -- Defending Army
-(35748, 5045, 6), -- Power Strike
+(35748, 4408, 13), -- HP Modifiers
+(35748, 4409, 1), -- MP Modifiers
+(35748, 4410, 9), -- P. Atk. Modifiers
+(35748, 4411, 11), -- M. Atk. Modifiers
+(35748, 4412, 11), -- P. Def. Modifiers
+(35748, 4413, 16), -- M. Def. Modifiers
+(35748, 4414, 2), -- Armor Type
+(35748, 4415, 3), -- Weapon Type
+(35748, 4416, 22), -- Races
+(35748, 5045, 6), -- Castle Power Strike
 (35748, 5432, 1), -- Weapon Supply
 -- Support Unit Captain
 (35749, 4045, 1), -- Resist Full Magic Attack
-(35749, 4194, 6), -- Aura Burn
-(35749, 4196, 6), -- Decrease Speed
-(35749, 4408, 9), -- HP Increase (1/2x)
-(35749, 4409, 16), -- MP Increase (8x)
-(35749, 4410, 11), -- Average P. Atk.
-(35749, 4411, 14), -- Strong M. Atk.
-(35749, 4412, 8), -- Weak P. Def.
-(35749, 4413, 14), -- Strong M. Def.
-(35749, 4414, 3), -- Light Armor Type
-(35749, 4415, 3), -- One-handed Sword
-(35749, 4416, 22), -- Defending Army
-(35749, 5396, 1), -- Spell Force
-(35749, 5398, 1), -- Final Burn
+(35749, 4194, 6), -- BOSS Aura Burn
+(35749, 4196, 6), -- Decreases Speed
+(35749, 4408, 9), -- HP Modifiers
+(35749, 4409, 16), -- MP Modifiers
+(35749, 4410, 11), -- P. Atk. Modifiers
+(35749, 4411, 14), -- M. Atk. Modifiers
+(35749, 4412, 8), -- P. Def. Modifiers
+(35749, 4413, 14), -- M. Def. Modifiers
+(35749, 4414, 3), -- Armor Type
+(35749, 4415, 3), -- Weapon Type
+(35749, 4416, 22), -- Races
+(35749, 5396, 1), -- NPC - Spell Stance
+(35749, 5398, 1), -- NPC - Combination Force
 (35749, 5432, 1), -- Weapon Supply
-(35749, 5457, 1), -- Complete Recovery
+(35749, 5457, 1), -- NPC Full Recover
 -- Wizard
 (35750, 4045, 1), -- Resist Full Magic Attack
-(35750, 4077, 6), -- Aura Burn
-(35750, 4408, 13), -- HP Increase (5x)
-(35750, 4409, 16), -- MP Increase (8x)
-(35750, 4410, 11), -- Average P. Atk.
-(35750, 4411, 16), -- Very Strong M. Atk.
-(35750, 4412, 8), -- Weak P. Def.
-(35750, 4413, 11), -- Average M. Def.
-(35750, 4414, 3), -- Light Armor Type
-(35750, 4415, 3), -- One-handed Sword
-(35750, 4416, 22), -- Defending Army
-(35750, 5053, 6), -- Hydro Blast
-(35750, 5396, 1), -- Spell Force
+(35750, 4077, 6), -- NPC Aura Burn
+(35750, 4408, 13), -- HP Modifiers
+(35750, 4409, 16), -- MP Modifiers
+(35750, 4410, 11), -- P. Atk. Modifiers
+(35750, 4411, 16), -- M. Atk. Modifiers
+(35750, 4412, 8), -- P. Def. Modifiers
+(35750, 4413, 11), -- M. Def. Modifiers
+(35750, 4414, 3), -- Armor Type
+(35750, 4415, 3), -- Weapon Type
+(35750, 4416, 22), -- Races
+(35750, 5053, 6), -- Castle DD Water
+(35750, 5396, 1), -- NPC - Spell Stance
 (35750, 5432, 1), -- Weapon Supply
 -- Healer
 (35751, 4045, 1), -- Resist Full Magic Attack
 (35751, 4115, 1), -- Aden Heal
-(35751, 4408, 15), -- HP Increase (7x)
-(35751, 4409, 16), -- MP Increase (8x)
-(35751, 4410, 11), -- Average P. Atk.
-(35751, 4411, 17), -- Very Strong M. Atk.
-(35751, 4412, 11), -- Average P. Def.
-(35751, 4413, 16), -- Very Strong M. Def.
-(35751, 4414, 3), -- Light Armor Type
-(35751, 4415, 3), -- One-handed Sword
-(35751, 4416, 22), -- Defending Army
+(35751, 4408, 15), -- HP Modifiers
+(35751, 4409, 16), -- MP Modifiers
+(35751, 4410, 11), -- P. Atk. Modifiers
+(35751, 4411, 17), -- M. Atk. Modifiers
+(35751, 4412, 11), -- P. Def. Modifiers
+(35751, 4413, 16), -- M. Def. Modifiers
+(35751, 4414, 3), -- Armor Type
+(35751, 4415, 3), -- Weapon Type
+(35751, 4416, 22), -- Races
 (35751, 5114, 6), -- Hold
 (35751, 5432, 1), -- Weapon Supply
 -- Archer Captain
 (35752, 4045, 1), -- Resist Full Magic Attack
-(35752, 4408, 9), -- HP Increase (1/2x)
-(35752, 4409, 1), -- MP Increase (1x)
-(35752, 4410, 16), -- Very Strong P. Atk.
-(35752, 4411, 11), -- Average M. Atk.
-(35752, 4412, 8), -- Weak P. Def.
-(35752, 4413, 11), -- Average M. Def.
-(35752, 4414, 3), -- Light Armor Type
-(35752, 4415, 9), -- Bows
-(35752, 4416, 22), -- Defending Army
-(35752, 4755, 6), -- Power Shot
+(35752, 4408, 9), -- HP Modifiers
+(35752, 4409, 1), -- MP Modifiers
+(35752, 4410, 16), -- P. Atk. Modifiers
+(35752, 4411, 11), -- M. Atk. Modifiers
+(35752, 4412, 8), -- P. Def. Modifiers
+(35752, 4413, 11), -- M. Def. Modifiers
+(35752, 4414, 3), -- Armor Type
+(35752, 4415, 9), -- Weapon Type
+(35752, 4416, 22), -- Races
+(35752, 4755, 6), -- BOSS Power Shot
 (35752, 5432, 1), -- Weapon Supply
-(35752, 5457, 1), -- Complete Recovery
+(35752, 5457, 1), -- NPC Full Recover
 -- Archer
 (35753, 4045, 1), -- Resist Full Magic Attack
-(35753, 4408, 13), -- HP Increase (5x)
-(35753, 4409, 1), -- MP Increase (1x)
-(35753, 4410, 14), -- Strong P. Atk.
-(35753, 4411, 11), -- Average M. Atk.
-(35753, 4412, 8), -- Weak P. Def.
-(35753, 4413, 11), -- Average M. Def.
-(35753, 4414, 3), -- Light Armor Type
-(35753, 4415, 9), -- Bows
-(35753, 4416, 22), -- Defending Army
-(35753, 5046, 6), -- Power Shot
+(35753, 4408, 13), -- HP Modifiers
+(35753, 4409, 1), -- MP Modifiers
+(35753, 4410, 14), -- P. Atk. Modifiers
+(35753, 4411, 11), -- M. Atk. Modifiers
+(35753, 4412, 8), -- P. Def. Modifiers
+(35753, 4413, 11), -- M. Def. Modifiers
+(35753, 4414, 3), -- Armor Type
+(35753, 4415, 9), -- Weapon Type
+(35753, 4416, 22), -- Races
+(35753, 5046, 6), -- Castle Power Shot
 (35753, 5432, 1), -- Weapon Supply
 -- Ballista
 (35754, 2342, 1), -- Ballista Bomb
 (35754, 4045, 1), -- Resist Full Magic Attack
-(35754, 4408, 16), -- HP Increase (8x)
-(35754, 4409, 1), -- MP Increase (1x)
-(35754, 4410, 11), -- Average P. Atk.
-(35754, 4411, 11), -- Average M. Atk.
-(35754, 4412, 11), -- Average P. Def.
-(35754, 4413, 11), -- Average M. Def.
-(35754, 4414, 2), -- Standard Type
-(35754, 4415, 3), -- One-handed Sword
-(35754, 4416, 22), -- Defending Army
+(35754, 4408, 16), -- HP Modifiers
+(35754, 4409, 1), -- MP Modifiers
+(35754, 4410, 11), -- P. Atk. Modifiers
+(35754, 4411, 11), -- M. Atk. Modifiers
+(35754, 4412, 11), -- P. Def. Modifiers
+(35754, 4413, 11), -- M. Def. Modifiers
+(35754, 4414, 2), -- Armor Type
+(35754, 4415, 3), -- Weapon Type
+(35754, 4416, 22), -- Races
 -- Mercenary Captain
 (35755, 4045, 1), -- Resist Full Magic Attack
-(35755, 4408, 11), -- HP Increase (3x)
-(35755, 4409, 1), -- MP Increase (1x)
-(35755, 4410, 11), -- Average P. Atk.
-(35755, 4411, 11), -- Average M. Atk.
-(35755, 4412, 11), -- Average P. Def.
-(35755, 4413, 11), -- Average M. Def.
-(35755, 4414, 2), -- Standard Type
-(35755, 4415, 3), -- One-handed Sword
-(35755, 4416, 14), -- Humans
+(35755, 4408, 11), -- HP Modifiers
+(35755, 4409, 1), -- MP Modifiers
+(35755, 4410, 11), -- P. Atk. Modifiers
+(35755, 4411, 11), -- M. Atk. Modifiers
+(35755, 4412, 11), -- P. Def. Modifiers
+(35755, 4413, 11), -- M. Def. Modifiers
+(35755, 4414, 2), -- Armor Type
+(35755, 4415, 3), -- Weapon Type
+(35755, 4416, 14), -- Races
 -- Mercenary Private
 (35756, 4045, 1), -- Resist Full Magic Attack
-(35756, 4408, 11), -- HP Increase (3x)
-(35756, 4409, 1), -- MP Increase (1x)
-(35756, 4410, 13), -- Slightly Strong P. Atk.
-(35756, 4411, 11), -- Average M. Atk.
-(35756, 4412, 11), -- Average P. Def.
-(35756, 4413, 11), -- Average M. Def.
-(35756, 4414, 2), -- Standard Type
-(35756, 4415, 11), -- Spears
-(35756, 4416, 17), -- Orcs
+(35756, 4408, 11), -- HP Modifiers
+(35756, 4409, 1), -- MP Modifiers
+(35756, 4410, 13), -- P. Atk. Modifiers
+(35756, 4411, 11), -- M. Atk. Modifiers
+(35756, 4412, 11), -- P. Def. Modifiers
+(35756, 4413, 11), -- M. Def. Modifiers
+(35756, 4414, 2), -- Armor Type
+(35756, 4415, 11), -- Weapon Type
+(35756, 4416, 17), -- Races
 -- Flagpole
 (35757, 4045, 1), -- Resist Full Magic Attack
-(35757, 4408, 1), -- HP Increase (1x)
-(35757, 4409, 1), -- MP Increase (1x)
-(35757, 4410, 11), -- Average P. Atk.
-(35757, 4411, 11), -- Average M. Atk.
-(35757, 4412, 11), -- Average P. Def.
-(35757, 4413, 11), -- Average M. Def.
-(35757, 4414, 2), -- Standard Type
-(35757, 4415, 3), -- One-handed Sword
-(35757, 4416, 19), -- Others
+(35757, 4408, 1), -- HP Modifiers
+(35757, 4409, 1), -- MP Modifiers
+(35757, 4410, 11), -- P. Atk. Modifiers
+(35757, 4411, 11), -- M. Atk. Modifiers
+(35757, 4412, 11), -- P. Def. Modifiers
+(35757, 4413, 11), -- M. Def. Modifiers
+(35757, 4414, 2), -- Armor Type
+(35757, 4415, 3), -- Weapon Type
+(35757, 4416, 19), -- Races
 -- Foreman
 (35758, 4045, 1), -- Resist Full Magic Attack
-(35758, 4408, 1), -- HP Increase (1x)
-(35758, 4409, 1), -- MP Increase (1x)
-(35758, 4410, 11), -- Average P. Atk.
-(35758, 4411, 11), -- Average M. Atk.
-(35758, 4412, 11), -- Average P. Def.
-(35758, 4413, 11), -- Average M. Def.
-(35758, 4414, 2), -- Standard Type
-(35758, 4415, 3), -- One-handed Sword
-(35758, 4416, 14), -- Humans
+(35758, 4408, 1), -- HP Modifiers
+(35758, 4409, 1), -- MP Modifiers
+(35758, 4410, 11), -- P. Atk. Modifiers
+(35758, 4411, 11), -- M. Atk. Modifiers
+(35758, 4412, 11), -- P. Def. Modifiers
+(35758, 4413, 11), -- M. Def. Modifiers
+(35758, 4414, 2), -- Armor Type
+(35758, 4415, 3), -- Weapon Type
+(35758, 4416, 14), -- Races
 -- Suspicious Merchant
 (35759, 4045, 1), -- Resist Full Magic Attack
-(35759, 4408, 1), -- HP Increase (1x)
-(35759, 4409, 1), -- MP Increase (1x)
-(35759, 4410, 11), -- Average P. Atk.
-(35759, 4411, 11), -- Average M. Atk.
-(35759, 4412, 11), -- Average P. Def.
-(35759, 4413, 11), -- Average M. Def.
-(35759, 4414, 2), -- Standard Type
-(35759, 4415, 3), -- One-handed Sword
-(35759, 4416, 17), -- Orcs
+(35759, 4408, 1), -- HP Modifiers
+(35759, 4409, 1), -- MP Modifiers
+(35759, 4410, 11), -- P. Atk. Modifiers
+(35759, 4411, 11), -- M. Atk. Modifiers
+(35759, 4412, 11), -- P. Def. Modifiers
+(35759, 4413, 11), -- M. Def. Modifiers
+(35759, 4414, 2), -- Armor Type
+(35759, 4415, 3), -- Weapon Type
+(35759, 4416, 17), -- Races
 -- Guard Captain
 (35760, 4045, 1), -- Resist Full Magic Attack
-(35760, 4408, 1), -- HP Increase (1x)
-(35760, 4409, 1), -- MP Increase (1x)
-(35760, 4410, 11), -- Average P. Atk.
-(35760, 4411, 11), -- Average M. Atk.
-(35760, 4412, 11), -- Average P. Def.
-(35760, 4413, 11), -- Average M. Def.
-(35760, 4414, 2), -- Standard Type
-(35760, 4415, 3), -- One-handed Sword
-(35760, 4416, 14), -- Humans
+(35760, 4408, 1), -- HP Modifiers
+(35760, 4409, 1), -- MP Modifiers
+(35760, 4410, 11), -- P. Atk. Modifiers
+(35760, 4411, 11), -- M. Atk. Modifiers
+(35760, 4412, 11), -- P. Def. Modifiers
+(35760, 4413, 11), -- M. Def. Modifiers
+(35760, 4414, 2), -- Armor Type
+(35760, 4415, 3), -- Weapon Type
+(35760, 4416, 14), -- Races
 -- Archer Captain
 (35761, 4045, 1), -- Resist Full Magic Attack
-(35761, 4408, 1), -- HP Increase (1x)
-(35761, 4409, 1), -- MP Increase (1x)
-(35761, 4410, 11), -- Average P. Atk.
-(35761, 4411, 11), -- Average M. Atk.
-(35761, 4412, 11), -- Average P. Def.
-(35761, 4413, 11), -- Average M. Def.
-(35761, 4414, 2), -- Standard Type
-(35761, 4415, 9), -- Bows
-(35761, 4416, 15), -- Elves
+(35761, 4408, 1), -- HP Modifiers
+(35761, 4409, 1), -- MP Modifiers
+(35761, 4410, 11), -- P. Atk. Modifiers
+(35761, 4411, 11), -- M. Atk. Modifiers
+(35761, 4412, 11), -- P. Def. Modifiers
+(35761, 4413, 11), -- M. Def. Modifiers
+(35761, 4414, 2), -- Armor Type
+(35761, 4415, 9), -- Weapon Type
+(35761, 4416, 15), -- Races
 -- General
 (35762, 4045, 1), -- Resist Full Magic Attack
-(35762, 4408, 1), -- HP Increase (1x)
-(35762, 4409, 1), -- MP Increase (1x)
-(35762, 4410, 11), -- Average P. Atk.
-(35762, 4411, 11), -- Average M. Atk.
-(35762, 4412, 11), -- Average P. Def.
-(35762, 4413, 11), -- Average M. Def.
-(35762, 4414, 2), -- Standard Type
-(35762, 4415, 19), -- Dual-Sword Weapons
-(35762, 4416, 22), -- Defending Army
+(35762, 4408, 1), -- HP Modifiers
+(35762, 4409, 1), -- MP Modifiers
+(35762, 4410, 11), -- P. Atk. Modifiers
+(35762, 4411, 11), -- M. Atk. Modifiers
+(35762, 4412, 11), -- P. Def. Modifiers
+(35762, 4413, 11), -- M. Def. Modifiers
+(35762, 4414, 2), -- Armor Type
+(35762, 4415, 19), -- Weapon Type
+(35762, 4416, 22), -- Races
 -- Support Unit Captain
 (35763, 4045, 1), -- Resist Full Magic Attack
-(35763, 4408, 1), -- HP Increase (1x)
-(35763, 4409, 1), -- MP Increase (1x)
-(35763, 4410, 11), -- Average P. Atk.
-(35763, 4411, 11), -- Average M. Atk.
-(35763, 4412, 11), -- Average P. Def.
-(35763, 4413, 11), -- Average M. Def.
-(35763, 4414, 2), -- Standard Type
-(35763, 4415, 3), -- One-handed Sword
-(35763, 4416, 14), -- Humans
+(35763, 4408, 1), -- HP Modifiers
+(35763, 4409, 1), -- MP Modifiers
+(35763, 4410, 11), -- P. Atk. Modifiers
+(35763, 4411, 11), -- M. Atk. Modifiers
+(35763, 4412, 11), -- P. Def. Modifiers
+(35763, 4413, 11), -- M. Def. Modifiers
+(35763, 4414, 2), -- Armor Type
+(35763, 4415, 3), -- Weapon Type
+(35763, 4416, 14), -- Races
 -- Engineering Manager
 (35764, 4045, 1), -- Resist Full Magic Attack
-(35764, 4408, 1), -- HP Increase (1x)
-(35764, 4409, 1), -- MP Increase (1x)
-(35764, 4410, 11), -- Average P. Atk.
-(35764, 4411, 11), -- Average M. Atk.
-(35764, 4412, 11), -- Average P. Def.
-(35764, 4413, 11), -- Average M. Def.
-(35764, 4414, 2), -- Standard Type
-(35764, 4415, 3), -- One-handed Sword
-(35764, 4416, 18), -- Dwarves
+(35764, 4408, 1), -- HP Modifiers
+(35764, 4409, 1), -- MP Modifiers
+(35764, 4410, 11), -- P. Atk. Modifiers
+(35764, 4411, 11), -- M. Atk. Modifiers
+(35764, 4412, 11), -- P. Def. Modifiers
+(35764, 4413, 11), -- M. Def. Modifiers
+(35764, 4414, 2), -- Armor Type
+(35764, 4415, 3), -- Weapon Type
+(35764, 4416, 18), -- Races
 -- Logistics Officer
 (35765, 4045, 1), -- Resist Full Magic Attack
-(35765, 4408, 1), -- HP Increase (1x)
-(35765, 4409, 1), -- MP Increase (1x)
-(35765, 4410, 11), -- Average P. Atk.
-(35765, 4411, 11), -- Average M. Atk.
-(35765, 4412, 11), -- Average P. Def.
-(35765, 4413, 11), -- Average M. Def.
-(35765, 4414, 2), -- Standard Type
-(35765, 4415, 3), -- One-handed Sword
-(35765, 4416, 18), -- Dwarves
+(35765, 4408, 1), -- HP Modifiers
+(35765, 4409, 1), -- MP Modifiers
+(35765, 4410, 11), -- P. Atk. Modifiers
+(35765, 4411, 11), -- M. Atk. Modifiers
+(35765, 4412, 11), -- P. Def. Modifiers
+(35765, 4413, 11), -- M. Def. Modifiers
+(35765, 4414, 2), -- Armor Type
+(35765, 4415, 3), -- Weapon Type
+(35765, 4416, 18), -- Races
 -- Supply Box
 (35766, 4045, 1), -- Resist Full Magic Attack
-(35766, 4408, 1), -- HP Increase (1x)
-(35766, 4409, 1), -- MP Increase (1x)
-(35766, 4410, 11), -- Average P. Atk.
-(35766, 4411, 11), -- Average M. Atk.
-(35766, 4412, 11), -- Average P. Def.
-(35766, 4413, 11), -- Average M. Def.
-(35766, 4414, 2), -- Standard Type
-(35766, 4415, 3), -- One-handed Sword
-(35766, 4416, 2), -- Magic Creatures
+(35766, 4408, 1), -- HP Modifiers
+(35766, 4409, 1), -- MP Modifiers
+(35766, 4410, 11), -- P. Atk. Modifiers
+(35766, 4411, 11), -- M. Atk. Modifiers
+(35766, 4412, 11), -- P. Def. Modifiers
+(35766, 4413, 11), -- M. Def. Modifiers
+(35766, 4414, 2), -- Armor Type
+(35766, 4415, 3), -- Weapon Type
+(35766, 4416, 2), -- Races
 -- Detention Camp Warden
 (35767, 4045, 1), -- Resist Full Magic Attack
-(35767, 4408, 1), -- HP Increase (1x)
-(35767, 4409, 1), -- MP Increase (1x)
-(35767, 4410, 11), -- Average P. Atk.
-(35767, 4411, 11), -- Average M. Atk.
-(35767, 4412, 11), -- Average P. Def.
-(35767, 4413, 11), -- Average M. Def.
-(35767, 4414, 2), -- Standard Type
-(35767, 4415, 3), -- One-handed Sword
-(35767, 4416, 14), -- Humans
+(35767, 4408, 1), -- HP Modifiers
+(35767, 4409, 1), -- MP Modifiers
+(35767, 4410, 11), -- P. Atk. Modifiers
+(35767, 4411, 11), -- M. Atk. Modifiers
+(35767, 4412, 11), -- P. Def. Modifiers
+(35767, 4413, 11), -- M. Def. Modifiers
+(35767, 4414, 2), -- Armor Type
+(35767, 4415, 3), -- Weapon Type
+(35767, 4416, 14), -- Races
 -- Doorman
 (35768, 4045, 1), -- Resist Full Magic Attack
-(35768, 4408, 1), -- HP Increase (1x)
-(35768, 4409, 1), -- MP Increase (1x)
-(35768, 4410, 11), -- Average P. Atk.
-(35768, 4411, 11), -- Average M. Atk.
-(35768, 4412, 11), -- Average P. Def.
-(35768, 4413, 11), -- Average M. Def.
-(35768, 4414, 2), -- Standard Type
-(35768, 4415, 3), -- One-handed Sword
-(35768, 4416, 14), -- Humans
+(35768, 4408, 1), -- HP Modifiers
+(35768, 4409, 1), -- MP Modifiers
+(35768, 4410, 11), -- P. Atk. Modifiers
+(35768, 4411, 11), -- M. Atk. Modifiers
+(35768, 4412, 11), -- P. Def. Modifiers
+(35768, 4413, 11), -- M. Def. Modifiers
+(35768, 4414, 2), -- Armor Type
+(35768, 4415, 3), -- Weapon Type
+(35768, 4416, 14), -- Races
 -- Doorman
 (35769, 4045, 1), -- Resist Full Magic Attack
-(35769, 4408, 1), -- HP Increase (1x)
-(35769, 4409, 1), -- MP Increase (1x)
-(35769, 4410, 11), -- Average P. Atk.
-(35769, 4411, 11), -- Average M. Atk.
-(35769, 4412, 11), -- Average P. Def.
-(35769, 4413, 11), -- Average M. Def.
-(35769, 4414, 2), -- Standard Type
-(35769, 4415, 3), -- One-handed Sword
-(35769, 4416, 14), -- Humans
+(35769, 4408, 1), -- HP Modifiers
+(35769, 4409, 1), -- MP Modifiers
+(35769, 4410, 11), -- P. Atk. Modifiers
+(35769, 4411, 11), -- M. Atk. Modifiers
+(35769, 4412, 11), -- P. Def. Modifiers
+(35769, 4413, 11), -- M. Def. Modifiers
+(35769, 4414, 2), -- Armor Type
+(35769, 4415, 3), -- Weapon Type
+(35769, 4416, 14), -- Races
 -- Doorman
 (35770, 4045, 1), -- Resist Full Magic Attack
-(35770, 4408, 1), -- HP Increase (1x)
-(35770, 4409, 1), -- MP Increase (1x)
-(35770, 4410, 11), -- Average P. Atk.
-(35770, 4411, 11), -- Average M. Atk.
-(35770, 4412, 11), -- Average P. Def.
-(35770, 4413, 11), -- Average M. Def.
-(35770, 4414, 2), -- Standard Type
-(35770, 4415, 3), -- One-handed Sword
-(35770, 4416, 14), -- Humans
+(35770, 4408, 1), -- HP Modifiers
+(35770, 4409, 1), -- MP Modifiers
+(35770, 4410, 11), -- P. Atk. Modifiers
+(35770, 4411, 11), -- M. Atk. Modifiers
+(35770, 4412, 11), -- P. Def. Modifiers
+(35770, 4413, 11), -- M. Def. Modifiers
+(35770, 4414, 2), -- Armor Type
+(35770, 4415, 3), -- Weapon Type
+(35770, 4416, 14), -- Races
 -- Rebel Commander
 (35771, 4045, 1), -- Resist Full Magic Attack
-(35771, 4178, 7), -- Flame Strike
-(35771, 4195, 7), -- Twister
-(35771, 4408, 10), -- HP Increase (2x)
-(35771, 4409, 1), -- MP Increase (1x)
-(35771, 4410, 11), -- Average P. Atk.
-(35771, 4411, 17), -- Very Strong M. Atk.
-(35771, 4412, 11), -- Average P. Def.
-(35771, 4413, 11), -- Average M. Def.
-(35771, 4414, 2), -- Standard Type
-(35771, 4415, 3), -- One-handed Sword
-(35771, 4416, 16), -- Dark Elves
+(35771, 4178, 7), -- BOSS Flame Strike
+(35771, 4195, 7), -- BOSS Twister
+(35771, 4408, 10), -- HP Modifiers
+(35771, 4409, 1), -- MP Modifiers
+(35771, 4410, 11), -- P. Atk. Modifiers
+(35771, 4411, 17), -- M. Atk. Modifiers
+(35771, 4412, 11), -- P. Def. Modifiers
+(35771, 4413, 11), -- M. Def. Modifiers
+(35771, 4414, 2), -- Armor Type
+(35771, 4415, 3), -- Weapon Type
+(35771, 4416, 16), -- Races
 -- Decorated Rebel Soldier
 (35772, 4045, 1), -- Resist Full Magic Attack
-(35772, 4408, 14), -- HP Increase (6x)
-(35772, 4409, 1), -- MP Increase (1x)
-(35772, 4410, 15), -- Strong P. Atk.
-(35772, 4411, 11), -- Average M. Atk.
-(35772, 4412, 11), -- Average P. Def.
-(35772, 4413, 15), -- Strong M. Def.
-(35772, 4414, 2), -- Standard Type
-(35772, 4415, 1), -- Bare Hands
-(35772, 4416, 9), -- Demons
-(35772, 5065, 7), -- Unholy Strike
+(35772, 4408, 14), -- HP Modifiers
+(35772, 4409, 1), -- MP Modifiers
+(35772, 4410, 15), -- P. Atk. Modifiers
+(35772, 4411, 11), -- M. Atk. Modifiers
+(35772, 4412, 11), -- P. Def. Modifiers
+(35772, 4413, 15), -- M. Def. Modifiers
+(35772, 4414, 2), -- Armor Type
+(35772, 4415, 1), -- Weapon Type
+(35772, 4416, 9), -- Races
+(35772, 5065, 7), -- Castle DD Unholy
 -- Rebel Private
 (35773, 4045, 1), -- Resist Full Magic Attack
-(35773, 4408, 12), -- HP Increase (4x)
-(35773, 4409, 1), -- MP Increase (1x)
-(35773, 4410, 14), -- Strong P. Atk.
-(35773, 4411, 11), -- Average M. Atk.
-(35773, 4412, 11), -- Average P. Def.
-(35773, 4413, 11), -- Average M. Def.
-(35773, 4414, 2), -- Standard Type
-(35773, 4415, 11), -- Spears
-(35773, 4416, 14), -- Humans
+(35773, 4408, 12), -- HP Modifiers
+(35773, 4409, 1), -- MP Modifiers
+(35773, 4410, 14), -- P. Atk. Modifiers
+(35773, 4411, 11), -- M. Atk. Modifiers
+(35773, 4412, 11), -- P. Def. Modifiers
+(35773, 4413, 11), -- M. Def. Modifiers
+(35773, 4414, 2), -- Armor Type
+(35773, 4415, 11), -- Weapon Type
+(35773, 4416, 14), -- Races
 -- Court Guard
 (35774, 4045, 1), -- Resist Full Magic Attack
-(35774, 4408, 12), -- HP Increase (4x)
-(35774, 4409, 1), -- MP Increase (1x)
-(35774, 4410, 11), -- Average P. Atk.
-(35774, 4411, 11), -- Average M. Atk.
-(35774, 4412, 11), -- Average P. Def.
-(35774, 4413, 16), -- Very Strong M. Def.
-(35774, 4414, 2), -- Standard Type
-(35774, 4415, 11), -- Spears
-(35774, 4416, 22), -- Defending Army
+(35774, 4408, 12), -- HP Modifiers
+(35774, 4409, 1), -- MP Modifiers
+(35774, 4410, 11), -- P. Atk. Modifiers
+(35774, 4411, 11), -- M. Atk. Modifiers
+(35774, 4412, 11), -- P. Def. Modifiers
+(35774, 4413, 16), -- M. Def. Modifiers
+(35774, 4414, 2), -- Armor Type
+(35774, 4415, 11), -- Weapon Type
+(35774, 4416, 22), -- Races
 (35774, 5432, 1), -- Weapon Supply
 -- Guard
 (35775, 4045, 1), -- Resist Full Magic Attack
-(35775, 4408, 12), -- HP Increase (4x)
-(35775, 4409, 1), -- MP Increase (1x)
-(35775, 4410, 15), -- Strong P. Atk.
-(35775, 4411, 11), -- Average M. Atk.
-(35775, 4412, 11), -- Average P. Def.
-(35775, 4413, 11), -- Average M. Def.
-(35775, 4414, 3), -- Light Armor Type
-(35775, 4415, 9), -- Bows
-(35775, 4416, 22), -- Defending Army
+(35775, 4408, 12), -- HP Modifiers
+(35775, 4409, 1), -- MP Modifiers
+(35775, 4410, 15), -- P. Atk. Modifiers
+(35775, 4411, 11), -- M. Atk. Modifiers
+(35775, 4412, 11), -- P. Def. Modifiers
+(35775, 4413, 11), -- M. Def. Modifiers
+(35775, 4414, 3), -- Armor Type
+(35775, 4415, 9), -- Weapon Type
+(35775, 4416, 22), -- Races
 (35775, 5432, 1), -- Weapon Supply
 -- Main Machine
 (35776, 4045, 1), -- Resist Full Magic Attack
-(35776, 4408, 1), -- HP Increase (1x)
-(35776, 4409, 1), -- MP Increase (1x)
-(35776, 4410, 11), -- Average P. Atk.
-(35776, 4411, 11), -- Average M. Atk.
-(35776, 4412, 11), -- Average P. Def.
-(35776, 4413, 11), -- Average M. Def.
-(35776, 4414, 2), -- Standard Type
-(35776, 4415, 3), -- One-handed Sword
-(35776, 4416, 19), -- Others
+(35776, 4408, 1), -- HP Modifiers
+(35776, 4409, 1), -- MP Modifiers
+(35776, 4410, 11), -- P. Atk. Modifiers
+(35776, 4411, 11), -- M. Atk. Modifiers
+(35776, 4412, 11), -- P. Def. Modifiers
+(35776, 4413, 11), -- M. Def. Modifiers
+(35776, 4414, 2), -- Armor Type
+(35776, 4415, 3), -- Weapon Type
+(35776, 4416, 19), -- Races
 -- Backup Power Unit
 (35777, 4045, 1), -- Resist Full Magic Attack
-(35777, 4408, 1), -- HP Increase (1x)
-(35777, 4409, 1), -- MP Increase (1x)
-(35777, 4410, 11), -- Average P. Atk.
-(35777, 4411, 11), -- Average M. Atk.
-(35777, 4412, 11), -- Average P. Def.
-(35777, 4413, 11), -- Average M. Def.
-(35777, 4414, 2), -- Standard Type
-(35777, 4415, 3), -- One-handed Sword
-(35777, 4416, 19), -- Others
+(35777, 4408, 1), -- HP Modifiers
+(35777, 4409, 1), -- MP Modifiers
+(35777, 4410, 11), -- P. Atk. Modifiers
+(35777, 4411, 11), -- M. Atk. Modifiers
+(35777, 4412, 11), -- P. Def. Modifiers
+(35777, 4413, 11), -- M. Def. Modifiers
+(35777, 4414, 2), -- Armor Type
+(35777, 4415, 3), -- Weapon Type
+(35777, 4416, 19), -- Races
 -- Control Unit
 (35778, 4045, 1), -- Resist Full Magic Attack
-(35778, 4408, 1), -- HP Increase (1x)
-(35778, 4409, 1), -- MP Increase (1x)
-(35778, 4410, 11), -- Average P. Atk.
-(35778, 4411, 11), -- Average M. Atk.
-(35778, 4412, 11), -- Average P. Def.
-(35778, 4413, 11), -- Average M. Def.
-(35778, 4414, 2), -- Standard Type
-(35778, 4415, 3), -- One-handed Sword
-(35778, 4416, 2), -- Magic Creatures
+(35778, 4408, 1), -- HP Modifiers
+(35778, 4409, 1), -- MP Modifiers
+(35778, 4410, 11), -- P. Atk. Modifiers
+(35778, 4411, 11), -- M. Atk. Modifiers
+(35778, 4412, 11), -- P. Def. Modifiers
+(35778, 4413, 11), -- M. Def. Modifiers
+(35778, 4414, 2), -- Armor Type
+(35778, 4415, 3), -- Weapon Type
+(35778, 4416, 2), -- Races
 -- Power Control Unit
 (35779, 4045, 1), -- Resist Full Magic Attack
-(35779, 4408, 1), -- HP Increase (1x)
-(35779, 4409, 1), -- MP Increase (1x)
-(35779, 4410, 11), -- Average P. Atk.
-(35779, 4411, 11), -- Average M. Atk.
-(35779, 4412, 11), -- Average P. Def.
-(35779, 4413, 11), -- Average M. Def.
-(35779, 4414, 2), -- Standard Type
-(35779, 4415, 3), -- One-handed Sword
-(35779, 4416, 19), -- Others
+(35779, 4408, 1), -- HP Modifiers
+(35779, 4409, 1), -- MP Modifiers
+(35779, 4410, 11), -- P. Atk. Modifiers
+(35779, 4411, 11), -- M. Atk. Modifiers
+(35779, 4412, 11), -- P. Def. Modifiers
+(35779, 4413, 11), -- M. Def. Modifiers
+(35779, 4414, 2), -- Armor Type
+(35779, 4415, 3), -- Weapon Type
+(35779, 4416, 19), -- Races
 -- Dwarven Gunnery Sergeant
 (35780, 4045, 1), -- Resist Full Magic Attack
-(35780, 4408, 11), -- HP Increase (3x)
-(35780, 4409, 16), -- MP Increase (8x)
-(35780, 4410, 11), -- Average P. Atk.
-(35780, 4411, 17), -- Very Strong M. Atk.
-(35780, 4412, 11), -- Average P. Def.
-(35780, 4413, 8), -- Weak M. Def.
-(35780, 4414, 2), -- Standard Type
-(35780, 4415, 9), -- Bows
-(35780, 4416, 22), -- Defending Army
+(35780, 4408, 11), -- HP Modifiers
+(35780, 4409, 16), -- MP Modifiers
+(35780, 4410, 11), -- P. Atk. Modifiers
+(35780, 4411, 17), -- M. Atk. Modifiers
+(35780, 4412, 11), -- P. Def. Modifiers
+(35780, 4413, 8), -- M. Def. Modifiers
+(35780, 4414, 2), -- Armor Type
+(35780, 4415, 9), -- Weapon Type
+(35780, 4416, 22), -- Races
 (35780, 5432, 1), -- Weapon Supply
-(35780, 5461, 6), -- Power Shot
-(35780, 5468, 6), -- Fire Shot
+(35780, 5461, 6), -- Castle Gunner Shot
+(35780, 5468, 6), -- Castle Gunner Fire
 -- Scout Golem
 (35781, 4045, 1), -- Resist Full Magic Attack
-(35781, 4408, 6), -- HP Very High
-(35781, 4409, 1), -- MP Increase (1x)
-(35781, 4410, 11), -- Average P. Atk.
-(35781, 4411, 11), -- Average M. Atk.
-(35781, 4412, 11), -- Average P. Def.
-(35781, 4413, 16), -- Very Strong M. Def.
-(35781, 4414, 2), -- Standard Type
-(35781, 4415, 3), -- One-handed Sword
-(35781, 4416, 22), -- Defending Army
+(35781, 4408, 6), -- HP Modifiers
+(35781, 4409, 1), -- MP Modifiers
+(35781, 4410, 11), -- P. Atk. Modifiers
+(35781, 4411, 11), -- M. Atk. Modifiers
+(35781, 4412, 11), -- P. Def. Modifiers
+(35781, 4413, 16), -- M. Def. Modifiers
+(35781, 4414, 2), -- Armor Type
+(35781, 4415, 3), -- Weapon Type
+(35781, 4416, 22), -- Races
 -- Guard Captain
 (35782, 4045, 1), -- Resist Full Magic Attack
 (35782, 4172, 6), -- Stun
-(35782, 4408, 9), -- HP Increase (1/2x)
-(35782, 4409, 1), -- MP Increase (1x)
-(35782, 4410, 8), -- Weak P. Atk.
-(35782, 4411, 11), -- Average M. Atk.
-(35782, 4412, 16), -- Very Strong P. Def.
-(35782, 4413, 11), -- Average M. Def.
-(35782, 4414, 2), -- Standard Type
-(35782, 4415, 3), -- One-handed Sword
-(35782, 4416, 22), -- Defending Army
+(35782, 4408, 9), -- HP Modifiers
+(35782, 4409, 1), -- MP Modifiers
+(35782, 4410, 8), -- P. Atk. Modifiers
+(35782, 4411, 11), -- M. Atk. Modifiers
+(35782, 4412, 16), -- P. Def. Modifiers
+(35782, 4413, 11), -- M. Def. Modifiers
+(35782, 4414, 2), -- Armor Type
+(35782, 4415, 3), -- Weapon Type
+(35782, 4416, 22), -- Races
 (35782, 4435, 5), -- Greater Resist Stun
 (35782, 4439, 5), -- Greater Resist Hold
 (35782, 4440, 5), -- Greater Resist Paralysis
-(35782, 4608, 1), -- Berserker Spirit
+(35782, 4608, 1), -- NPC Clan Buff - Berserk
 (35782, 5432, 1), -- Weapon Supply
-(35782, 5457, 1), -- Complete Recovery
+(35782, 5457, 1), -- NPC Full Recover
 -- Guard
 (35783, 4045, 1), -- Resist Full Magic Attack
-(35783, 4408, 13), -- HP Increase (5x)
-(35783, 4409, 1), -- MP Increase (1x)
-(35783, 4410, 9), -- Slightly Weak P. Atk.
-(35783, 4411, 11), -- Average M. Atk.
-(35783, 4412, 16), -- Very Strong P. Def.
-(35783, 4413, 11), -- Average M. Def.
-(35783, 4414, 2), -- Standard Type
-(35783, 4415, 3), -- One-handed Sword
-(35783, 4416, 22), -- Defending Army
+(35783, 4408, 13), -- HP Modifiers
+(35783, 4409, 1), -- MP Modifiers
+(35783, 4410, 9), -- P. Atk. Modifiers
+(35783, 4411, 11), -- M. Atk. Modifiers
+(35783, 4412, 16), -- P. Def. Modifiers
+(35783, 4413, 11), -- M. Def. Modifiers
+(35783, 4414, 2), -- Armor Type
+(35783, 4415, 3), -- Weapon Type
+(35783, 4416, 22), -- Races
 (35783, 5112, 6), -- Stun
 (35783, 5432, 1), -- Weapon Supply
 -- Guard
 (35784, 4045, 1), -- Resist Full Magic Attack
-(35784, 4408, 13), -- HP Increase (5x)
-(35784, 4409, 1), -- MP Increase (1x)
-(35784, 4410, 9), -- Slightly Weak P. Atk.
-(35784, 4411, 11), -- Average M. Atk.
-(35784, 4412, 11), -- Average P. Def.
-(35784, 4413, 16), -- Very Strong M. Def.
-(35784, 4414, 2), -- Standard Type
-(35784, 4415, 3), -- One-handed Sword
-(35784, 4416, 22), -- Defending Army
-(35784, 5045, 6), -- Power Strike
+(35784, 4408, 13), -- HP Modifiers
+(35784, 4409, 1), -- MP Modifiers
+(35784, 4410, 9), -- P. Atk. Modifiers
+(35784, 4411, 11), -- M. Atk. Modifiers
+(35784, 4412, 11), -- P. Def. Modifiers
+(35784, 4413, 16), -- M. Def. Modifiers
+(35784, 4414, 2), -- Armor Type
+(35784, 4415, 3), -- Weapon Type
+(35784, 4416, 22), -- Races
+(35784, 5045, 6), -- Castle Power Strike
 (35784, 5432, 1), -- Weapon Supply
 -- Support Unit Captain
 (35785, 4045, 1), -- Resist Full Magic Attack
-(35785, 4194, 6), -- Aura Burn
-(35785, 4196, 6), -- Decrease Speed
-(35785, 4408, 9), -- HP Increase (1/2x)
-(35785, 4409, 16), -- MP Increase (8x)
-(35785, 4410, 11), -- Average P. Atk.
-(35785, 4411, 14), -- Strong M. Atk.
-(35785, 4412, 8), -- Weak P. Def.
-(35785, 4413, 14), -- Strong M. Def.
-(35785, 4414, 3), -- Light Armor Type
-(35785, 4415, 3), -- One-handed Sword
-(35785, 4416, 22), -- Defending Army
-(35785, 5396, 1), -- Spell Force
-(35785, 5398, 1), -- Final Burn
+(35785, 4194, 6), -- BOSS Aura Burn
+(35785, 4196, 6), -- Decreases Speed
+(35785, 4408, 9), -- HP Modifiers
+(35785, 4409, 16), -- MP Modifiers
+(35785, 4410, 11), -- P. Atk. Modifiers
+(35785, 4411, 14), -- M. Atk. Modifiers
+(35785, 4412, 8), -- P. Def. Modifiers
+(35785, 4413, 14), -- M. Def. Modifiers
+(35785, 4414, 3), -- Armor Type
+(35785, 4415, 3), -- Weapon Type
+(35785, 4416, 22), -- Races
+(35785, 5396, 1), -- NPC - Spell Stance
+(35785, 5398, 1), -- NPC - Combination Force
 (35785, 5432, 1), -- Weapon Supply
-(35785, 5457, 1), -- Complete Recovery
+(35785, 5457, 1), -- NPC Full Recover
 -- Wizard
 (35786, 4045, 1), -- Resist Full Magic Attack
-(35786, 4077, 6), -- Aura Burn
-(35786, 4408, 13), -- HP Increase (5x)
-(35786, 4409, 16), -- MP Increase (8x)
-(35786, 4410, 11), -- Average P. Atk.
-(35786, 4411, 16), -- Very Strong M. Atk.
-(35786, 4412, 8), -- Weak P. Def.
-(35786, 4413, 11), -- Average M. Def.
-(35786, 4414, 3), -- Light Armor Type
-(35786, 4415, 3), -- One-handed Sword
-(35786, 4416, 22), -- Defending Army
-(35786, 5053, 6), -- Hydro Blast
-(35786, 5396, 1), -- Spell Force
+(35786, 4077, 6), -- NPC Aura Burn
+(35786, 4408, 13), -- HP Modifiers
+(35786, 4409, 16), -- MP Modifiers
+(35786, 4410, 11), -- P. Atk. Modifiers
+(35786, 4411, 16), -- M. Atk. Modifiers
+(35786, 4412, 8), -- P. Def. Modifiers
+(35786, 4413, 11), -- M. Def. Modifiers
+(35786, 4414, 3), -- Armor Type
+(35786, 4415, 3), -- Weapon Type
+(35786, 4416, 22), -- Races
+(35786, 5053, 6), -- Castle DD Water
+(35786, 5396, 1), -- NPC - Spell Stance
 (35786, 5432, 1), -- Weapon Supply
 -- Healer
 (35787, 4045, 1), -- Resist Full Magic Attack
 (35787, 4115, 1), -- Aden Heal
-(35787, 4408, 15), -- HP Increase (7x)
-(35787, 4409, 16), -- MP Increase (8x)
-(35787, 4410, 11), -- Average P. Atk.
-(35787, 4411, 17), -- Very Strong M. Atk.
-(35787, 4412, 11), -- Average P. Def.
-(35787, 4413, 16), -- Very Strong M. Def.
-(35787, 4414, 3), -- Light Armor Type
-(35787, 4415, 3), -- One-handed Sword
-(35787, 4416, 22), -- Defending Army
+(35787, 4408, 15), -- HP Modifiers
+(35787, 4409, 16), -- MP Modifiers
+(35787, 4410, 11), -- P. Atk. Modifiers
+(35787, 4411, 17), -- M. Atk. Modifiers
+(35787, 4412, 11), -- P. Def. Modifiers
+(35787, 4413, 16), -- M. Def. Modifiers
+(35787, 4414, 3), -- Armor Type
+(35787, 4415, 3), -- Weapon Type
+(35787, 4416, 22), -- Races
 (35787, 5114, 6), -- Hold
 (35787, 5432, 1), -- Weapon Supply
 -- Archer Captain
 (35788, 4045, 1), -- Resist Full Magic Attack
-(35788, 4408, 9), -- HP Increase (1/2x)
-(35788, 4409, 1), -- MP Increase (1x)
-(35788, 4410, 16), -- Very Strong P. Atk.
-(35788, 4411, 11), -- Average M. Atk.
-(35788, 4412, 8), -- Weak P. Def.
-(35788, 4413, 11), -- Average M. Def.
-(35788, 4414, 3), -- Light Armor Type
-(35788, 4415, 9), -- Bows
-(35788, 4416, 22), -- Defending Army
-(35788, 4755, 6), -- Power Shot
+(35788, 4408, 9), -- HP Modifiers
+(35788, 4409, 1), -- MP Modifiers
+(35788, 4410, 16), -- P. Atk. Modifiers
+(35788, 4411, 11), -- M. Atk. Modifiers
+(35788, 4412, 8), -- P. Def. Modifiers
+(35788, 4413, 11), -- M. Def. Modifiers
+(35788, 4414, 3), -- Armor Type
+(35788, 4415, 9), -- Weapon Type
+(35788, 4416, 22), -- Races
+(35788, 4755, 6), -- BOSS Power Shot
 (35788, 5432, 1), -- Weapon Supply
-(35788, 5457, 1), -- Complete Recovery
+(35788, 5457, 1), -- NPC Full Recover
 -- Archer
 (35789, 4045, 1), -- Resist Full Magic Attack
-(35789, 4408, 13), -- HP Increase (5x)
-(35789, 4409, 1), -- MP Increase (1x)
-(35789, 4410, 14), -- Strong P. Atk.
-(35789, 4411, 11), -- Average M. Atk.
-(35789, 4412, 8), -- Weak P. Def.
-(35789, 4413, 11), -- Average M. Def.
-(35789, 4414, 3), -- Light Armor Type
-(35789, 4415, 9), -- Bows
-(35789, 4416, 22), -- Defending Army
-(35789, 5046, 6), -- Power Shot
+(35789, 4408, 13), -- HP Modifiers
+(35789, 4409, 1), -- MP Modifiers
+(35789, 4410, 14), -- P. Atk. Modifiers
+(35789, 4411, 11), -- M. Atk. Modifiers
+(35789, 4412, 8), -- P. Def. Modifiers
+(35789, 4413, 11), -- M. Def. Modifiers
+(35789, 4414, 3), -- Armor Type
+(35789, 4415, 9), -- Weapon Type
+(35789, 4416, 22), -- Races
+(35789, 5046, 6), -- Castle Power Shot
 (35789, 5432, 1), -- Weapon Supply
 -- General
 (35790, 4045, 1), -- Resist Full Magic Attack
-(35790, 4408, 9), -- HP Increase (1/2x)
-(35790, 4409, 1), -- MP Increase (1x)
-(35790, 4410, 14), -- Strong P. Atk.
-(35790, 4411, 11), -- Average M. Atk.
-(35790, 4412, 11), -- Average P. Def.
-(35790, 4413, 11), -- Average M. Def.
-(35790, 4414, 2), -- Standard Type
-(35790, 4415, 19), -- Dual-Sword Weapons
-(35790, 4416, 22), -- Defending Army
+(35790, 4408, 9), -- HP Modifiers
+(35790, 4409, 1), -- MP Modifiers
+(35790, 4410, 14), -- P. Atk. Modifiers
+(35790, 4411, 11), -- M. Atk. Modifiers
+(35790, 4412, 11), -- P. Def. Modifiers
+(35790, 4413, 11), -- M. Def. Modifiers
+(35790, 4414, 2), -- Armor Type
+(35790, 4415, 19), -- Weapon Type
+(35790, 4416, 22), -- Races
 (35790, 4725, 6), -- Stun
 (35790, 5432, 1), -- Weapon Supply
-(35790, 5457, 1), -- Complete Recovery
+(35790, 5457, 1), -- NPC Full Recover
 -- Minister 
 (35791, 4045, 1), -- Resist Full Magic Attack
-(35791, 4408, 9), -- HP Increase (1/2x)
-(35791, 4409, 1), -- MP Increase (1x)
-(35791, 4410, 14), -- Strong P. Atk.
-(35791, 4411, 11), -- Average M. Atk.
-(35791, 4412, 11), -- Average P. Def.
-(35791, 4413, 11), -- Average M. Def.
-(35791, 4414, 2), -- Standard Type
-(35791, 4415, 3), -- One-handed Sword
-(35791, 4416, 22), -- Defending Army
-(35791, 4721, 6), -- Power Strike
+(35791, 4408, 9), -- HP Modifiers
+(35791, 4409, 1), -- MP Modifiers
+(35791, 4410, 14), -- P. Atk. Modifiers
+(35791, 4411, 11), -- M. Atk. Modifiers
+(35791, 4412, 11), -- P. Def. Modifiers
+(35791, 4413, 11), -- M. Def. Modifiers
+(35791, 4414, 2), -- Armor Type
+(35791, 4415, 3), -- Weapon Type
+(35791, 4416, 22), -- Races
+(35791, 4721, 6), -- BOSS Strike
 (35791, 5432, 1), -- Weapon Supply
-(35791, 5457, 1), -- Complete Recovery
+(35791, 5457, 1), -- NPC Full Recover
 -- Ballista
 (35792, 2342, 1), -- Ballista Bomb
 (35792, 4045, 1), -- Resist Full Magic Attack
-(35792, 4408, 16), -- HP Increase (8x)
-(35792, 4409, 1), -- MP Increase (1x)
-(35792, 4410, 11), -- Average P. Atk.
-(35792, 4411, 11), -- Average M. Atk.
-(35792, 4412, 11), -- Average P. Def.
-(35792, 4413, 11), -- Average M. Def.
-(35792, 4414, 2), -- Standard Type
-(35792, 4415, 3), -- One-handed Sword
-(35792, 4416, 22), -- Defending Army
+(35792, 4408, 16), -- HP Modifiers
+(35792, 4409, 1), -- MP Modifiers
+(35792, 4410, 11), -- P. Atk. Modifiers
+(35792, 4411, 11), -- M. Atk. Modifiers
+(35792, 4412, 11), -- P. Def. Modifiers
+(35792, 4413, 11), -- M. Def. Modifiers
+(35792, 4414, 2), -- Armor Type
+(35792, 4415, 3), -- Weapon Type
+(35792, 4416, 22), -- Races
 -- Mercenary Captain
 (35793, 4045, 1), -- Resist Full Magic Attack
-(35793, 4408, 11), -- HP Increase (3x)
-(35793, 4409, 1), -- MP Increase (1x)
-(35793, 4410, 11), -- Average P. Atk.
-(35793, 4411, 11), -- Average M. Atk.
-(35793, 4412, 11), -- Average P. Def.
-(35793, 4413, 11), -- Average M. Def.
-(35793, 4414, 2), -- Standard Type
-(35793, 4415, 3), -- One-handed Sword
-(35793, 4416, 14), -- Humans
+(35793, 4408, 11), -- HP Modifiers
+(35793, 4409, 1), -- MP Modifiers
+(35793, 4410, 11), -- P. Atk. Modifiers
+(35793, 4411, 11), -- M. Atk. Modifiers
+(35793, 4412, 11), -- P. Def. Modifiers
+(35793, 4413, 11), -- M. Def. Modifiers
+(35793, 4414, 2), -- Armor Type
+(35793, 4415, 3), -- Weapon Type
+(35793, 4416, 14), -- Races
 -- Mercenary Private
 (35794, 4045, 1), -- Resist Full Magic Attack
-(35794, 4408, 11), -- HP Increase (3x)
-(35794, 4409, 1), -- MP Increase (1x)
-(35794, 4410, 13), -- Slightly Strong P. Atk.
-(35794, 4411, 11), -- Average M. Atk.
-(35794, 4412, 11), -- Average P. Def.
-(35794, 4413, 11), -- Average M. Def.
-(35794, 4414, 2), -- Standard Type
-(35794, 4415, 11), -- Spears
-(35794, 4416, 17), -- Orcs
+(35794, 4408, 11), -- HP Modifiers
+(35794, 4409, 1), -- MP Modifiers
+(35794, 4410, 13), -- P. Atk. Modifiers
+(35794, 4411, 11), -- M. Atk. Modifiers
+(35794, 4412, 11), -- P. Def. Modifiers
+(35794, 4413, 11), -- M. Def. Modifiers
+(35794, 4414, 2); -- Armor Type
+
+INSERT INTO `npcskills` VALUES
+(35794, 4415, 11), -- Weapon Type
+(35794, 4416, 17), -- Races
 -- Flagpole
 (35795, 4045, 1), -- Resist Full Magic Attack
-(35795, 4408, 1), -- HP Increase (1x)
-(35795, 4409, 1), -- MP Increase (1x)
-(35795, 4410, 11), -- Average P. Atk.
-(35795, 4411, 11), -- Average M. Atk.
-(35795, 4412, 11), -- Average P. Def.
-(35795, 4413, 11), -- Average M. Def.
-(35795, 4414, 2), -- Standard Type
-(35795, 4415, 3), -- One-handed Sword
-(35795, 4416, 19), -- Others
+(35795, 4408, 1), -- HP Modifiers
+(35795, 4409, 1), -- MP Modifiers
+(35795, 4410, 11), -- P. Atk. Modifiers
+(35795, 4411, 11), -- M. Atk. Modifiers
+(35795, 4412, 11), -- P. Def. Modifiers
+(35795, 4413, 11), -- M. Def. Modifiers
+(35795, 4414, 2), -- Armor Type
+(35795, 4415, 3), -- Weapon Type
+(35795, 4416, 19), -- Races
 -- Foreman
 (35796, 4045, 1), -- Resist Full Magic Attack
-(35796, 4408, 1), -- HP Increase (1x)
-(35796, 4409, 1), -- MP Increase (1x)
-(35796, 4410, 11), -- Average P. Atk.
-(35796, 4411, 11), -- Average M. Atk.
-(35796, 4412, 11), -- Average P. Def.
-(35796, 4413, 11), -- Average M. Def.
-(35796, 4414, 2), -- Standard Type
-(35796, 4415, 3), -- One-handed Sword
-(35796, 4416, 14), -- Humans
+(35796, 4408, 1), -- HP Modifiers
+(35796, 4409, 1), -- MP Modifiers
+(35796, 4410, 11), -- P. Atk. Modifiers
+(35796, 4411, 11), -- M. Atk. Modifiers
+(35796, 4412, 11), -- P. Def. Modifiers
+(35796, 4413, 11), -- M. Def. Modifiers
+(35796, 4414, 2), -- Armor Type
+(35796, 4415, 3), -- Weapon Type
+(35796, 4416, 14), -- Races
 -- Suspicious Merchant
 (35797, 4045, 1), -- Resist Full Magic Attack
-(35797, 4408, 1), -- HP Increase (1x)
-(35797, 4409, 1), -- MP Increase (1x)
-(35797, 4410, 11), -- Average P. Atk.
-(35797, 4411, 11), -- Average M. Atk.
-(35797, 4412, 11), -- Average P. Def.
-(35797, 4413, 11), -- Average M. Def.
-(35797, 4414, 2), -- Standard Type
-(35797, 4415, 3), -- One-handed Sword
-(35797, 4416, 17), -- Orcs
+(35797, 4408, 1), -- HP Modifiers
+(35797, 4409, 1), -- MP Modifiers
+(35797, 4410, 11), -- P. Atk. Modifiers
+(35797, 4411, 11), -- M. Atk. Modifiers
+(35797, 4412, 11), -- P. Def. Modifiers
+(35797, 4413, 11), -- M. Def. Modifiers
+(35797, 4414, 2), -- Armor Type
+(35797, 4415, 3), -- Weapon Type
+(35797, 4416, 17), -- Races
 -- Guard Captain
 (35798, 4045, 1), -- Resist Full Magic Attack
-(35798, 4408, 1), -- HP Increase (1x)
-(35798, 4409, 1), -- MP Increase (1x)
-(35798, 4410, 11), -- Average P. Atk.
-(35798, 4411, 11), -- Average M. Atk.
-(35798, 4412, 11), -- Average P. Def.
-(35798, 4413, 11), -- Average M. Def.
-(35798, 4414, 2), -- Standard Type
-(35798, 4415, 3), -- One-handed Sword
-(35798, 4416, 14), -- Humans
+(35798, 4408, 1), -- HP Modifiers
+(35798, 4409, 1), -- MP Modifiers
+(35798, 4410, 11), -- P. Atk. Modifiers
+(35798, 4411, 11), -- M. Atk. Modifiers
+(35798, 4412, 11), -- P. Def. Modifiers
+(35798, 4413, 11), -- M. Def. Modifiers
+(35798, 4414, 2), -- Armor Type
+(35798, 4415, 3), -- Weapon Type
+(35798, 4416, 14), -- Races
 -- Archer Captain
 (35799, 4045, 1), -- Resist Full Magic Attack
-(35799, 4408, 1), -- HP Increase (1x)
-(35799, 4409, 1), -- MP Increase (1x)
-(35799, 4410, 11), -- Average P. Atk.
-(35799, 4411, 11), -- Average M. Atk.
-(35799, 4412, 11), -- Average P. Def.
-(35799, 4413, 11), -- Average M. Def.
-(35799, 4414, 2), -- Standard Type
-(35799, 4415, 9), -- Bows
-(35799, 4416, 15), -- Elves
+(35799, 4408, 1), -- HP Modifiers
+(35799, 4409, 1), -- MP Modifiers
+(35799, 4410, 11), -- P. Atk. Modifiers
+(35799, 4411, 11), -- M. Atk. Modifiers
+(35799, 4412, 11), -- P. Def. Modifiers
+(35799, 4413, 11), -- M. Def. Modifiers
+(35799, 4414, 2), -- Armor Type
+(35799, 4415, 9), -- Weapon Type
+(35799, 4416, 15), -- Races
 -- Support Unit Captain
 (35800, 4045, 1), -- Resist Full Magic Attack
-(35800, 4408, 1), -- HP Increase (1x)
-(35800, 4409, 1), -- MP Increase (1x)
-(35800, 4410, 11), -- Average P. Atk.
-(35800, 4411, 11), -- Average M. Atk.
-(35800, 4412, 11), -- Average P. Def.
-(35800, 4413, 11), -- Average M. Def.
-(35800, 4414, 2), -- Standard Type
-(35800, 4415, 3), -- One-handed Sword
-(35800, 4416, 14), -- Humans
+(35800, 4408, 1), -- HP Modifiers
+(35800, 4409, 1), -- MP Modifiers
+(35800, 4410, 11), -- P. Atk. Modifiers
+(35800, 4411, 11), -- M. Atk. Modifiers
+(35800, 4412, 11), -- P. Def. Modifiers
+(35800, 4413, 11), -- M. Def. Modifiers
+(35800, 4414, 2), -- Armor Type
+(35800, 4415, 3), -- Weapon Type
+(35800, 4416, 14), -- Races
 -- Engineering Manager
 (35801, 4045, 1), -- Resist Full Magic Attack
-(35801, 4408, 1), -- HP Increase (1x)
-(35801, 4409, 1), -- MP Increase (1x)
-(35801, 4410, 11), -- Average P. Atk.
-(35801, 4411, 11), -- Average M. Atk.
-(35801, 4412, 11), -- Average P. Def.
-(35801, 4413, 11), -- Average M. Def.
-(35801, 4414, 2), -- Standard Type
-(35801, 4415, 3), -- One-handed Sword
-(35801, 4416, 18), -- Dwarves
+(35801, 4408, 1), -- HP Modifiers
+(35801, 4409, 1), -- MP Modifiers
+(35801, 4410, 11), -- P. Atk. Modifiers
+(35801, 4411, 11), -- M. Atk. Modifiers
+(35801, 4412, 11), -- P. Def. Modifiers
+(35801, 4413, 11), -- M. Def. Modifiers
+(35801, 4414, 2), -- Armor Type
+(35801, 4415, 3), -- Weapon Type
+(35801, 4416, 18), -- Races
 -- Logistics Officer
 (35802, 4045, 1), -- Resist Full Magic Attack
-(35802, 4408, 1), -- HP Increase (1x)
-(35802, 4409, 1), -- MP Increase (1x)
-(35802, 4410, 11), -- Average P. Atk.
-(35802, 4411, 11), -- Average M. Atk.
-(35802, 4412, 11), -- Average P. Def.
-(35802, 4413, 11), -- Average M. Def.
-(35802, 4414, 2), -- Standard Type
-(35802, 4415, 3), -- One-handed Sword
-(35802, 4416, 18), -- Dwarves
+(35802, 4408, 1), -- HP Modifiers
+(35802, 4409, 1), -- MP Modifiers
+(35802, 4410, 11), -- P. Atk. Modifiers
+(35802, 4411, 11), -- M. Atk. Modifiers
+(35802, 4412, 11), -- P. Def. Modifiers
+(35802, 4413, 11), -- M. Def. Modifiers
+(35802, 4414, 2), -- Armor Type
+(35802, 4415, 3), -- Weapon Type
+(35802, 4416, 18), -- Races
 -- Supply Box
 (35803, 4045, 1), -- Resist Full Magic Attack
-(35803, 4408, 1), -- HP Increase (1x)
-(35803, 4409, 1), -- MP Increase (1x)
-(35803, 4410, 11), -- Average P. Atk.
-(35803, 4411, 11), -- Average M. Atk.
-(35803, 4412, 11), -- Average P. Def.
-(35803, 4413, 11), -- Average M. Def.
-(35803, 4414, 2), -- Standard Type
-(35803, 4415, 3), -- One-handed Sword
-(35803, 4416, 2), -- Magic Creatures
+(35803, 4408, 1), -- HP Modifiers
+(35803, 4409, 1), -- MP Modifiers
+(35803, 4410, 11), -- P. Atk. Modifiers
+(35803, 4411, 11), -- M. Atk. Modifiers
+(35803, 4412, 11), -- P. Def. Modifiers
+(35803, 4413, 11), -- M. Def. Modifiers
+(35803, 4414, 2), -- Armor Type
+(35803, 4415, 3), -- Weapon Type
+(35803, 4416, 2), -- Races
 -- Detention Camp Warden
 (35804, 4045, 1), -- Resist Full Magic Attack
-(35804, 4408, 1), -- HP Increase (1x)
-(35804, 4409, 1), -- MP Increase (1x)
-(35804, 4410, 11), -- Average P. Atk.
-(35804, 4411, 11), -- Average M. Atk.
-(35804, 4412, 11), -- Average P. Def.
-(35804, 4413, 11), -- Average M. Def.
-(35804, 4414, 2), -- Standard Type
-(35804, 4415, 3), -- One-handed Sword
-(35804, 4416, 14), -- Humans
+(35804, 4408, 1), -- HP Modifiers
+(35804, 4409, 1), -- MP Modifiers
+(35804, 4410, 11), -- P. Atk. Modifiers
+(35804, 4411, 11), -- M. Atk. Modifiers
+(35804, 4412, 11), -- P. Def. Modifiers
+(35804, 4413, 11), -- M. Def. Modifiers
+(35804, 4414, 2), -- Armor Type
+(35804, 4415, 3), -- Weapon Type
+(35804, 4416, 14), -- Races
 -- Doorman
 (35805, 4045, 1), -- Resist Full Magic Attack
-(35805, 4408, 1), -- HP Increase (1x)
-(35805, 4409, 1), -- MP Increase (1x)
-(35805, 4410, 11), -- Average P. Atk.
-(35805, 4411, 11), -- Average M. Atk.
-(35805, 4412, 11), -- Average P. Def.
-(35805, 4413, 11), -- Average M. Def.
-(35805, 4414, 2), -- Standard Type
-(35805, 4415, 3), -- One-handed Sword
-(35805, 4416, 14), -- Humans
+(35805, 4408, 1), -- HP Modifiers
+(35805, 4409, 1), -- MP Modifiers
+(35805, 4410, 11), -- P. Atk. Modifiers
+(35805, 4411, 11), -- M. Atk. Modifiers
+(35805, 4412, 11), -- P. Def. Modifiers
+(35805, 4413, 11), -- M. Def. Modifiers
+(35805, 4414, 2), -- Armor Type
+(35805, 4415, 3), -- Weapon Type
+(35805, 4416, 14), -- Races
 -- Doorman
 (35806, 4045, 1), -- Resist Full Magic Attack
-(35806, 4408, 1), -- HP Increase (1x)
-(35806, 4409, 1), -- MP Increase (1x)
-(35806, 4410, 11), -- Average P. Atk.
-(35806, 4411, 11), -- Average M. Atk.
-(35806, 4412, 11), -- Average P. Def.
-(35806, 4413, 11), -- Average M. Def.
-(35806, 4414, 2), -- Standard Type
-(35806, 4415, 3), -- One-handed Sword
-(35806, 4416, 14), -- Humans
+(35806, 4408, 1), -- HP Modifiers
+(35806, 4409, 1), -- MP Modifiers
+(35806, 4410, 11), -- P. Atk. Modifiers
+(35806, 4411, 11), -- M. Atk. Modifiers
+(35806, 4412, 11), -- P. Def. Modifiers
+(35806, 4413, 11), -- M. Def. Modifiers
+(35806, 4414, 2), -- Armor Type
+(35806, 4415, 3), -- Weapon Type
+(35806, 4416, 14), -- Races
 -- Doorman
 (35807, 4045, 1), -- Resist Full Magic Attack
-(35807, 4408, 1), -- HP Increase (1x)
-(35807, 4409, 1), -- MP Increase (1x)
-(35807, 4410, 11), -- Average P. Atk.
-(35807, 4411, 11), -- Average M. Atk.
-(35807, 4412, 11), -- Average P. Def.
-(35807, 4413, 11), -- Average M. Def.
-(35807, 4414, 2), -- Standard Type
-(35807, 4415, 3), -- One-handed Sword
-(35807, 4416, 14), -- Humans
+(35807, 4408, 1), -- HP Modifiers
+(35807, 4409, 1), -- MP Modifiers
+(35807, 4410, 11), -- P. Atk. Modifiers
+(35807, 4411, 11), -- M. Atk. Modifiers
+(35807, 4412, 11), -- P. Def. Modifiers
+(35807, 4413, 11), -- M. Def. Modifiers
+(35807, 4414, 2), -- Armor Type
+(35807, 4415, 3), -- Weapon Type
+(35807, 4416, 14), -- Races
 -- Rebel Commander
 (35808, 4045, 1), -- Resist Full Magic Attack
-(35808, 4178, 7), -- Flame Strike
-(35808, 4195, 7), -- Twister
-(35808, 4408, 10), -- HP Increase (2x)
-(35808, 4409, 1), -- MP Increase (1x)
-(35808, 4410, 11), -- Average P. Atk.
-(35808, 4411, 17), -- Very Strong M. Atk.
-(35808, 4412, 11), -- Average P. Def.
-(35808, 4413, 11), -- Average M. Def.
-(35808, 4414, 2), -- Standard Type
-(35808, 4415, 3), -- One-handed Sword
-(35808, 4416, 16), -- Dark Elves
+(35808, 4178, 7), -- BOSS Flame Strike
+(35808, 4195, 7), -- BOSS Twister
+(35808, 4408, 10), -- HP Modifiers
+(35808, 4409, 1), -- MP Modifiers
+(35808, 4410, 11), -- P. Atk. Modifiers
+(35808, 4411, 17), -- M. Atk. Modifiers
+(35808, 4412, 11), -- P. Def. Modifiers
+(35808, 4413, 11), -- M. Def. Modifiers
+(35808, 4414, 2), -- Armor Type
+(35808, 4415, 3), -- Weapon Type
+(35808, 4416, 16), -- Races
 -- Decorated Rebel Soldier
 (35809, 4045, 1), -- Resist Full Magic Attack
-(35809, 4408, 14), -- HP Increase (6x)
-(35809, 4409, 1), -- MP Increase (1x)
-(35809, 4410, 15), -- Strong P. Atk.
-(35809, 4411, 11), -- Average M. Atk.
-(35809, 4412, 11), -- Average P. Def.
-(35809, 4413, 15), -- Strong M. Def.
-(35809, 4414, 2), -- Standard Type
-(35809, 4415, 1), -- Bare Hands
-(35809, 4416, 9), -- Demons
-(35809, 5065, 7), -- Unholy Strike
+(35809, 4408, 14), -- HP Modifiers
+(35809, 4409, 1), -- MP Modifiers
+(35809, 4410, 15), -- P. Atk. Modifiers
+(35809, 4411, 11), -- M. Atk. Modifiers
+(35809, 4412, 11), -- P. Def. Modifiers
+(35809, 4413, 15), -- M. Def. Modifiers
+(35809, 4414, 2), -- Armor Type
+(35809, 4415, 1), -- Weapon Type
+(35809, 4416, 9), -- Races
+(35809, 5065, 7), -- Castle DD Unholy
 -- Rebel Private
 (35810, 4045, 1), -- Resist Full Magic Attack
-(35810, 4408, 12), -- HP Increase (4x)
-(35810, 4409, 1), -- MP Increase (1x)
-(35810, 4410, 14), -- Strong P. Atk.
-(35810, 4411, 11), -- Average M. Atk.
-(35810, 4412, 11), -- Average P. Def.
-(35810, 4413, 11), -- Average M. Def.
-(35810, 4414, 2), -- Standard Type
-(35810, 4415, 11), -- Spears
-(35810, 4416, 14), -- Humans
+(35810, 4408, 12), -- HP Modifiers
+(35810, 4409, 1), -- MP Modifiers
+(35810, 4410, 14), -- P. Atk. Modifiers
+(35810, 4411, 11), -- M. Atk. Modifiers
+(35810, 4412, 11), -- P. Def. Modifiers
+(35810, 4413, 11), -- M. Def. Modifiers
+(35810, 4414, 2), -- Armor Type
+(35810, 4415, 11), -- Weapon Type
+(35810, 4416, 14), -- Races
 -- Court Guard
 (35811, 4045, 1), -- Resist Full Magic Attack
-(35811, 4408, 12), -- HP Increase (4x)
-(35811, 4409, 1), -- MP Increase (1x)
-(35811, 4410, 11), -- Average P. Atk.
-(35811, 4411, 11), -- Average M. Atk.
-(35811, 4412, 11), -- Average P. Def.
-(35811, 4413, 16), -- Very Strong M. Def.
-(35811, 4414, 2), -- Standard Type
-(35811, 4415, 11), -- Spears
-(35811, 4416, 22), -- Defending Army
+(35811, 4408, 12), -- HP Modifiers
+(35811, 4409, 1), -- MP Modifiers
+(35811, 4410, 11), -- P. Atk. Modifiers
+(35811, 4411, 11), -- M. Atk. Modifiers
+(35811, 4412, 11), -- P. Def. Modifiers
+(35811, 4413, 16), -- M. Def. Modifiers
+(35811, 4414, 2), -- Armor Type
+(35811, 4415, 11), -- Weapon Type
+(35811, 4416, 22), -- Races
 (35811, 5432, 1), -- Weapon Supply
 -- Guard
 (35812, 4045, 1), -- Resist Full Magic Attack
-(35812, 4408, 12), -- HP Increase (4x)
-(35812, 4409, 1), -- MP Increase (1x)
-(35812, 4410, 15), -- Strong P. Atk.
-(35812, 4411, 11), -- Average M. Atk.
-(35812, 4412, 11), -- Average P. Def.
-(35812, 4413, 11), -- Average M. Def.
-(35812, 4414, 3), -- Light Armor Type
-(35812, 4415, 9), -- Bows
-(35812, 4416, 22), -- Defending Army
+(35812, 4408, 12), -- HP Modifiers
+(35812, 4409, 1), -- MP Modifiers
+(35812, 4410, 15), -- P. Atk. Modifiers
+(35812, 4411, 11), -- M. Atk. Modifiers
+(35812, 4412, 11), -- P. Def. Modifiers
+(35812, 4413, 11), -- M. Def. Modifiers
+(35812, 4414, 3), -- Armor Type
+(35812, 4415, 9), -- Weapon Type
+(35812, 4416, 22), -- Races
 (35812, 5432, 1), -- Weapon Supply
 -- Power Control Unit
 (35813, 4045, 1), -- Resist Full Magic Attack
-(35813, 4408, 1), -- HP Increase (1x)
-(35813, 4409, 1), -- MP Increase (1x)
-(35813, 4410, 11), -- Average P. Atk.
-(35813, 4411, 11), -- Average M. Atk.
-(35813, 4412, 11), -- Average P. Def.
-(35813, 4413, 11), -- Average M. Def.
-(35813, 4414, 2), -- Standard Type
-(35813, 4415, 3), -- One-handed Sword
-(35813, 4416, 19), -- Others
+(35813, 4408, 1), -- HP Modifiers
+(35813, 4409, 1), -- MP Modifiers
+(35813, 4410, 11), -- P. Atk. Modifiers
+(35813, 4411, 11), -- M. Atk. Modifiers
+(35813, 4412, 11), -- P. Def. Modifiers
+(35813, 4413, 11), -- M. Def. Modifiers
+(35813, 4414, 2), -- Armor Type
+(35813, 4415, 3), -- Weapon Type
+(35813, 4416, 19), -- Races
 -- Dwarven Gunnery Sergeant
 (35814, 4045, 1), -- Resist Full Magic Attack
-(35814, 4408, 11), -- HP Increase (3x)
-(35814, 4409, 16), -- MP Increase (8x)
-(35814, 4410, 11), -- Average P. Atk.
-(35814, 4411, 17), -- Very Strong M. Atk.
-(35814, 4412, 11), -- Average P. Def.
-(35814, 4413, 8), -- Weak M. Def.
-(35814, 4414, 2), -- Standard Type
-(35814, 4415, 9), -- Bows
-(35814, 4416, 22), -- Defending Army
+(35814, 4408, 11), -- HP Modifiers
+(35814, 4409, 16), -- MP Modifiers
+(35814, 4410, 11), -- P. Atk. Modifiers
+(35814, 4411, 17), -- M. Atk. Modifiers
+(35814, 4412, 11), -- P. Def. Modifiers
+(35814, 4413, 8), -- M. Def. Modifiers
+(35814, 4414, 2), -- Armor Type
+(35814, 4415, 9), -- Weapon Type
+(35814, 4416, 22), -- Races
 (35814, 5432, 1), -- Weapon Supply
-(35814, 5461, 6), -- Power Shot
-(35814, 5468, 6), -- Fire Shot
+(35814, 5461, 6), -- Castle Gunner Shot
+(35814, 5468, 6), -- Castle Gunner Fire
 -- Guard Captain
 (35815, 4045, 1), -- Resist Full Magic Attack
 (35815, 4172, 6), -- Stun
-(35815, 4408, 9), -- HP Increase (1/2x)
-(35815, 4409, 1), -- MP Increase (1x)
-(35815, 4410, 8), -- Weak P. Atk.
-(35815, 4411, 11), -- Average M. Atk.
-(35815, 4412, 16), -- Very Strong P. Def.
-(35815, 4413, 11), -- Average M. Def.
-(35815, 4414, 2), -- Standard Type
-(35815, 4415, 3), -- One-handed Sword
-(35815, 4416, 22), -- Defending Army
+(35815, 4408, 9), -- HP Modifiers
+(35815, 4409, 1), -- MP Modifiers
+(35815, 4410, 8), -- P. Atk. Modifiers
+(35815, 4411, 11), -- M. Atk. Modifiers
+(35815, 4412, 16), -- P. Def. Modifiers
+(35815, 4413, 11), -- M. Def. Modifiers
+(35815, 4414, 2), -- Armor Type
+(35815, 4415, 3), -- Weapon Type
+(35815, 4416, 22), -- Races
 (35815, 4435, 5), -- Greater Resist Stun
 (35815, 4439, 5), -- Greater Resist Hold
 (35815, 4440, 5), -- Greater Resist Paralysis
-(35815, 4608, 1), -- Berserker Spirit
+(35815, 4608, 1), -- NPC Clan Buff - Berserk
 (35815, 5432, 1), -- Weapon Supply
-(35815, 5457, 1), -- Complete Recovery
+(35815, 5457, 1), -- NPC Full Recover
 -- Guard
 (35816, 4045, 1), -- Resist Full Magic Attack
-(35816, 4408, 13), -- HP Increase (5x)
-(35816, 4409, 1), -- MP Increase (1x)
-(35816, 4410, 9), -- Slightly Weak P. Atk.
-(35816, 4411, 11), -- Average M. Atk.
-(35816, 4412, 16), -- Very Strong P. Def.
-(35816, 4413, 11), -- Average M. Def.
-(35816, 4414, 2), -- Standard Type
-(35816, 4415, 3), -- One-handed Sword
-(35816, 4416, 22), -- Defending Army
+(35816, 4408, 13), -- HP Modifiers
+(35816, 4409, 1), -- MP Modifiers
+(35816, 4410, 9), -- P. Atk. Modifiers
+(35816, 4411, 11), -- M. Atk. Modifiers
+(35816, 4412, 16), -- P. Def. Modifiers
+(35816, 4413, 11), -- M. Def. Modifiers
+(35816, 4414, 2), -- Armor Type
+(35816, 4415, 3), -- Weapon Type
+(35816, 4416, 22), -- Races
 (35816, 5112, 6), -- Stun
 (35816, 5432, 1), -- Weapon Supply
 -- Guard
 (35817, 4045, 1), -- Resist Full Magic Attack
-(35817, 4408, 13), -- HP Increase (5x)
-(35817, 4409, 1), -- MP Increase (1x)
-(35817, 4410, 9), -- Slightly Weak P. Atk.
-(35817, 4411, 11), -- Average M. Atk.
-(35817, 4412, 11), -- Average P. Def.
-(35817, 4413, 16), -- Very Strong M. Def.
-(35817, 4414, 2), -- Standard Type
-(35817, 4415, 3), -- One-handed Sword
-(35817, 4416, 22), -- Defending Army
-(35817, 5045, 6), -- Power Strike
+(35817, 4408, 13), -- HP Modifiers
+(35817, 4409, 1), -- MP Modifiers
+(35817, 4410, 9), -- P. Atk. Modifiers
+(35817, 4411, 11), -- M. Atk. Modifiers
+(35817, 4412, 11), -- P. Def. Modifiers
+(35817, 4413, 16), -- M. Def. Modifiers
+(35817, 4414, 2), -- Armor Type
+(35817, 4415, 3), -- Weapon Type
+(35817, 4416, 22), -- Races
+(35817, 5045, 6), -- Castle Power Strike
 (35817, 5432, 1), -- Weapon Supply
 -- Support Unit Captain
 (35818, 4045, 1), -- Resist Full Magic Attack
-(35818, 4194, 6), -- Aura Burn
-(35818, 4196, 6), -- Decrease Speed
-(35818, 4408, 9), -- HP Increase (1/2x)
-(35818, 4409, 16), -- MP Increase (8x)
-(35818, 4410, 11), -- Average P. Atk.
-(35818, 4411, 14), -- Strong M. Atk.
-(35818, 4412, 8), -- Weak P. Def.
-(35818, 4413, 14), -- Strong M. Def.
-(35818, 4414, 3), -- Light Armor Type
-(35818, 4415, 3), -- One-handed Sword
-(35818, 4416, 22), -- Defending Army
-(35818, 5396, 1), -- Spell Force
-(35818, 5398, 1), -- Final Burn
+(35818, 4194, 6), -- BOSS Aura Burn
+(35818, 4196, 6), -- Decreases Speed
+(35818, 4408, 9), -- HP Modifiers
+(35818, 4409, 16), -- MP Modifiers
+(35818, 4410, 11), -- P. Atk. Modifiers
+(35818, 4411, 14), -- M. Atk. Modifiers
+(35818, 4412, 8), -- P. Def. Modifiers
+(35818, 4413, 14), -- M. Def. Modifiers
+(35818, 4414, 3), -- Armor Type
+(35818, 4415, 3), -- Weapon Type
+(35818, 4416, 22), -- Races
+(35818, 5396, 1), -- NPC - Spell Stance
+(35818, 5398, 1), -- NPC - Combination Force
 (35818, 5432, 1), -- Weapon Supply
-(35818, 5457, 1), -- Complete Recovery
+(35818, 5457, 1), -- NPC Full Recover
 -- Wizard
 (35819, 4045, 1), -- Resist Full Magic Attack
-(35819, 4077, 6), -- Aura Burn
-(35819, 4408, 13), -- HP Increase (5x)
-(35819, 4409, 16), -- MP Increase (8x)
-(35819, 4410, 11), -- Average P. Atk.
-(35819, 4411, 16), -- Very Strong M. Atk.
-(35819, 4412, 8), -- Weak P. Def.
-(35819, 4413, 11), -- Average M. Def.
-(35819, 4414, 3), -- Light Armor Type
-(35819, 4415, 3), -- One-handed Sword
-(35819, 4416, 22), -- Defending Army
-(35819, 5053, 6), -- Hydro Blast
-(35819, 5396, 1), -- Spell Force
+(35819, 4077, 6), -- NPC Aura Burn
+(35819, 4408, 13), -- HP Modifiers
+(35819, 4409, 16), -- MP Modifiers
+(35819, 4410, 11), -- P. Atk. Modifiers
+(35819, 4411, 16), -- M. Atk. Modifiers
+(35819, 4412, 8), -- P. Def. Modifiers
+(35819, 4413, 11), -- M. Def. Modifiers
+(35819, 4414, 3), -- Armor Type
+(35819, 4415, 3), -- Weapon Type
+(35819, 4416, 22), -- Races
+(35819, 5053, 6), -- Castle DD Water
+(35819, 5396, 1), -- NPC - Spell Stance
 (35819, 5432, 1), -- Weapon Supply
 -- Healer
 (35820, 4045, 1), -- Resist Full Magic Attack
 (35820, 4115, 1), -- Aden Heal
-(35820, 4408, 15), -- HP Increase (7x)
-(35820, 4409, 16), -- MP Increase (8x)
-(35820, 4410, 11), -- Average P. Atk.
-(35820, 4411, 17), -- Very Strong M. Atk.
-(35820, 4412, 11), -- Average P. Def.
-(35820, 4413, 16), -- Very Strong M. Def.
-(35820, 4414, 3), -- Light Armor Type
-(35820, 4415, 3), -- One-handed Sword
-(35820, 4416, 22), -- Defending Army
+(35820, 4408, 15), -- HP Modifiers
+(35820, 4409, 16), -- MP Modifiers
+(35820, 4410, 11), -- P. Atk. Modifiers
+(35820, 4411, 17), -- M. Atk. Modifiers
+(35820, 4412, 11), -- P. Def. Modifiers
+(35820, 4413, 16), -- M. Def. Modifiers
+(35820, 4414, 3), -- Armor Type
+(35820, 4415, 3), -- Weapon Type
+(35820, 4416, 22), -- Races
 (35820, 5114, 6), -- Hold
 (35820, 5432, 1), -- Weapon Supply
 -- Archer Captain
 (35821, 4045, 1), -- Resist Full Magic Attack
-(35821, 4408, 9), -- HP Increase (1/2x)
-(35821, 4409, 1), -- MP Increase (1x)
-(35821, 4410, 16), -- Very Strong P. Atk.
-(35821, 4411, 11), -- Average M. Atk.
-(35821, 4412, 8), -- Weak P. Def.
-(35821, 4413, 11), -- Average M. Def.
-(35821, 4414, 3), -- Light Armor Type
-(35821, 4415, 9), -- Bows
-(35821, 4416, 22), -- Defending Army
-(35821, 4755, 6), -- Power Shot
+(35821, 4408, 9), -- HP Modifiers
+(35821, 4409, 1), -- MP Modifiers
+(35821, 4410, 16), -- P. Atk. Modifiers
+(35821, 4411, 11), -- M. Atk. Modifiers
+(35821, 4412, 8), -- P. Def. Modifiers
+(35821, 4413, 11), -- M. Def. Modifiers
+(35821, 4414, 3), -- Armor Type
+(35821, 4415, 9), -- Weapon Type
+(35821, 4416, 22), -- Races
+(35821, 4755, 6), -- BOSS Power Shot
 (35821, 5432, 1), -- Weapon Supply
-(35821, 5457, 1), -- Complete Recovery
+(35821, 5457, 1), -- NPC Full Recover
 -- Archer
 (35822, 4045, 1), -- Resist Full Magic Attack
-(35822, 4408, 13), -- HP Increase (5x)
-(35822, 4409, 1), -- MP Increase (1x)
-(35822, 4410, 14), -- Strong P. Atk.
-(35822, 4411, 11), -- Average M. Atk.
-(35822, 4412, 8), -- Weak P. Def.
-(35822, 4413, 11), -- Average M. Def.
-(35822, 4414, 3), -- Light Armor Type
-(35822, 4415, 9), -- Bows
-(35822, 4416, 22), -- Defending Army
-(35822, 5046, 6), -- Power Shot
+(35822, 4408, 13), -- HP Modifiers
+(35822, 4409, 1), -- MP Modifiers
+(35822, 4410, 14), -- P. Atk. Modifiers
+(35822, 4411, 11), -- M. Atk. Modifiers
+(35822, 4412, 8), -- P. Def. Modifiers
+(35822, 4413, 11), -- M. Def. Modifiers
+(35822, 4414, 3), -- Armor Type
+(35822, 4415, 9), -- Weapon Type
+(35822, 4416, 22), -- Races
+(35822, 5046, 6), -- Castle Power Shot
 (35822, 5432, 1), -- Weapon Supply
 -- Ballista
 (35823, 2342, 1), -- Ballista Bomb
 (35823, 4045, 1), -- Resist Full Magic Attack
-(35823, 4408, 16), -- HP Increase (8x)
-(35823, 4409, 1), -- MP Increase (1x)
-(35823, 4410, 11), -- Average P. Atk.
-(35823, 4411, 11), -- Average M. Atk.
-(35823, 4412, 11), -- Average P. Def.
-(35823, 4413, 11), -- Average M. Def.
-(35823, 4414, 2), -- Standard Type
-(35823, 4415, 3), -- One-handed Sword
-(35823, 4416, 22), -- Defending Army
+(35823, 4408, 16), -- HP Modifiers
+(35823, 4409, 1), -- MP Modifiers
+(35823, 4410, 11), -- P. Atk. Modifiers
+(35823, 4411, 11), -- M. Atk. Modifiers
+(35823, 4412, 11), -- P. Def. Modifiers
+(35823, 4413, 11), -- M. Def. Modifiers
+(35823, 4414, 2), -- Armor Type
+(35823, 4415, 3), -- Weapon Type
+(35823, 4416, 22), -- Races
 -- Mercenary Captain
 (35824, 4045, 1), -- Resist Full Magic Attack
-(35824, 4408, 11), -- HP Increase (3x)
-(35824, 4409, 1), -- MP Increase (1x)
-(35824, 4410, 11), -- Average P. Atk.
-(35824, 4411, 11), -- Average M. Atk.
-(35824, 4412, 11), -- Average P. Def.
-(35824, 4413, 11), -- Average M. Def.
-(35824, 4414, 2), -- Standard Type
-(35824, 4415, 3), -- One-handed Sword
-(35824, 4416, 14), -- Humans
+(35824, 4408, 11), -- HP Modifiers
+(35824, 4409, 1), -- MP Modifiers
+(35824, 4410, 11), -- P. Atk. Modifiers
+(35824, 4411, 11), -- M. Atk. Modifiers
+(35824, 4412, 11), -- P. Def. Modifiers
+(35824, 4413, 11), -- M. Def. Modifiers
+(35824, 4414, 2), -- Armor Type
+(35824, 4415, 3), -- Weapon Type
+(35824, 4416, 14), -- Races
 -- Mercenary Private
 (35825, 4045, 1), -- Resist Full Magic Attack
-(35825, 4408, 11), -- HP Increase (3x)
-(35825, 4409, 1), -- MP Increase (1x)
-(35825, 4410, 13), -- Slightly Strong P. Atk.
-(35825, 4411, 11), -- Average M. Atk.
-(35825, 4412, 11), -- Average P. Def.
-(35825, 4413, 11), -- Average M. Def.
-(35825, 4414, 2), -- Standard Type
-(35825, 4415, 11), -- Spears
-(35825, 4416, 17), -- Orcs
+(35825, 4408, 11), -- HP Modifiers
+(35825, 4409, 1), -- MP Modifiers
+(35825, 4410, 13), -- P. Atk. Modifiers
+(35825, 4411, 11), -- M. Atk. Modifiers
+(35825, 4412, 11), -- P. Def. Modifiers
+(35825, 4413, 11), -- M. Def. Modifiers
+(35825, 4414, 2), -- Armor Type
+(35825, 4415, 11), -- Weapon Type
+(35825, 4416, 17), -- Races
 -- Flagpole
 (35826, 4045, 1), -- Resist Full Magic Attack
-(35826, 4408, 1), -- HP Increase (1x)
-(35826, 4409, 1), -- MP Increase (1x)
-(35826, 4410, 11), -- Average P. Atk.
-(35826, 4411, 11), -- Average M. Atk.
-(35826, 4412, 11), -- Average P. Def.
-(35826, 4413, 11), -- Average M. Def.
-(35826, 4414, 2), -- Standard Type
-(35826, 4415, 3), -- One-handed Sword
-(35826, 4416, 19), -- Others
+(35826, 4408, 1), -- HP Modifiers
+(35826, 4409, 1), -- MP Modifiers
+(35826, 4410, 11), -- P. Atk. Modifiers
+(35826, 4411, 11), -- M. Atk. Modifiers
+(35826, 4412, 11), -- P. Def. Modifiers
+(35826, 4413, 11), -- M. Def. Modifiers
+(35826, 4414, 2), -- Armor Type
+(35826, 4415, 3), -- Weapon Type
+(35826, 4416, 19), -- Races
 -- Foreman
 (35827, 4045, 1), -- Resist Full Magic Attack
-(35827, 4408, 1), -- HP Increase (1x)
-(35827, 4409, 1); -- MP Increase (1x)
-
-INSERT INTO `npcskills` VALUES
-(35827, 4410, 11), -- Average P. Atk.
-(35827, 4411, 11), -- Average M. Atk.
-(35827, 4412, 11), -- Average P. Def.
-(35827, 4413, 11), -- Average M. Def.
-(35827, 4414, 2), -- Standard Type
-(35827, 4415, 3), -- One-handed Sword
-(35827, 4416, 14), -- Humans
+(35827, 4408, 1), -- HP Modifiers
+(35827, 4409, 1), -- MP Modifiers
+(35827, 4410, 11), -- P. Atk. Modifiers
+(35827, 4411, 11), -- M. Atk. Modifiers
+(35827, 4412, 11), -- P. Def. Modifiers
+(35827, 4413, 11), -- M. Def. Modifiers
+(35827, 4414, 2), -- Armor Type
+(35827, 4415, 3), -- Weapon Type
+(35827, 4416, 14), -- Races
 -- Suspicious Merchant
 (35828, 4045, 1), -- Resist Full Magic Attack
-(35828, 4408, 1), -- HP Increase (1x)
-(35828, 4409, 1), -- MP Increase (1x)
-(35828, 4410, 11), -- Average P. Atk.
-(35828, 4411, 11), -- Average M. Atk.
-(35828, 4412, 11), -- Average P. Def.
-(35828, 4413, 11), -- Average M. Def.
-(35828, 4414, 2), -- Standard Type
-(35828, 4415, 3), -- One-handed Sword
-(35828, 4416, 17), -- Orcs
+(35828, 4408, 1), -- HP Modifiers
+(35828, 4409, 1), -- MP Modifiers
+(35828, 4410, 11), -- P. Atk. Modifiers
+(35828, 4411, 11), -- M. Atk. Modifiers
+(35828, 4412, 11), -- P. Def. Modifiers
+(35828, 4413, 11), -- M. Def. Modifiers
+(35828, 4414, 2), -- Armor Type
+(35828, 4415, 3), -- Weapon Type
+(35828, 4416, 17), -- Races
 -- Guard Captain
 (35829, 4045, 1), -- Resist Full Magic Attack
-(35829, 4408, 1), -- HP Increase (1x)
-(35829, 4409, 1), -- MP Increase (1x)
-(35829, 4410, 11), -- Average P. Atk.
-(35829, 4411, 11), -- Average M. Atk.
-(35829, 4412, 11), -- Average P. Def.
-(35829, 4413, 11), -- Average M. Def.
-(35829, 4414, 2), -- Standard Type
-(35829, 4415, 3), -- One-handed Sword
-(35829, 4416, 14), -- Humans
+(35829, 4408, 1), -- HP Modifiers
+(35829, 4409, 1), -- MP Modifiers
+(35829, 4410, 11), -- P. Atk. Modifiers
+(35829, 4411, 11), -- M. Atk. Modifiers
+(35829, 4412, 11), -- P. Def. Modifiers
+(35829, 4413, 11), -- M. Def. Modifiers
+(35829, 4414, 2), -- Armor Type
+(35829, 4415, 3), -- Weapon Type
+(35829, 4416, 14), -- Races
 -- Archer Captain
 (35830, 4045, 1), -- Resist Full Magic Attack
-(35830, 4408, 1), -- HP Increase (1x)
-(35830, 4409, 1), -- MP Increase (1x)
-(35830, 4410, 11), -- Average P. Atk.
-(35830, 4411, 11), -- Average M. Atk.
-(35830, 4412, 11), -- Average P. Def.
-(35830, 4413, 11), -- Average M. Def.
-(35830, 4414, 2), -- Standard Type
-(35830, 4415, 9), -- Bows
-(35830, 4416, 15), -- Elves
+(35830, 4408, 1), -- HP Modifiers
+(35830, 4409, 1), -- MP Modifiers
+(35830, 4410, 11), -- P. Atk. Modifiers
+(35830, 4411, 11), -- M. Atk. Modifiers
+(35830, 4412, 11), -- P. Def. Modifiers
+(35830, 4413, 11), -- M. Def. Modifiers
+(35830, 4414, 2), -- Armor Type
+(35830, 4415, 9), -- Weapon Type
+(35830, 4416, 15), -- Races
 -- Support Unit Captain
 (35831, 4045, 1), -- Resist Full Magic Attack
-(35831, 4408, 1), -- HP Increase (1x)
-(35831, 4409, 1), -- MP Increase (1x)
-(35831, 4410, 11), -- Average P. Atk.
-(35831, 4411, 11), -- Average M. Atk.
-(35831, 4412, 11), -- Average P. Def.
-(35831, 4413, 11), -- Average M. Def.
-(35831, 4414, 2), -- Standard Type
-(35831, 4415, 3), -- One-handed Sword
-(35831, 4416, 14), -- Humans
+(35831, 4408, 1), -- HP Modifiers
+(35831, 4409, 1), -- MP Modifiers
+(35831, 4410, 11), -- P. Atk. Modifiers
+(35831, 4411, 11), -- M. Atk. Modifiers
+(35831, 4412, 11), -- P. Def. Modifiers
+(35831, 4413, 11), -- M. Def. Modifiers
+(35831, 4414, 2), -- Armor Type
+(35831, 4415, 3), -- Weapon Type
+(35831, 4416, 14), -- Races
 -- Engineering Manager
 (35832, 4045, 1), -- Resist Full Magic Attack
-(35832, 4408, 1), -- HP Increase (1x)
-(35832, 4409, 1), -- MP Increase (1x)
-(35832, 4410, 11), -- Average P. Atk.
-(35832, 4411, 11), -- Average M. Atk.
-(35832, 4412, 11), -- Average P. Def.
-(35832, 4413, 11), -- Average M. Def.
-(35832, 4414, 2), -- Standard Type
-(35832, 4415, 3), -- One-handed Sword
-(35832, 4416, 18), -- Dwarves
+(35832, 4408, 1), -- HP Modifiers
+(35832, 4409, 1), -- MP Modifiers
+(35832, 4410, 11), -- P. Atk. Modifiers
+(35832, 4411, 11), -- M. Atk. Modifiers
+(35832, 4412, 11), -- P. Def. Modifiers
+(35832, 4413, 11), -- M. Def. Modifiers
+(35832, 4414, 2), -- Armor Type
+(35832, 4415, 3), -- Weapon Type
+(35832, 4416, 18), -- Races
 -- Logistics Officer
 (35833, 4045, 1), -- Resist Full Magic Attack
-(35833, 4408, 1), -- HP Increase (1x)
-(35833, 4409, 1), -- MP Increase (1x)
-(35833, 4410, 11), -- Average P. Atk.
-(35833, 4411, 11), -- Average M. Atk.
-(35833, 4412, 11), -- Average P. Def.
-(35833, 4413, 11), -- Average M. Def.
-(35833, 4414, 2), -- Standard Type
-(35833, 4415, 3), -- One-handed Sword
-(35833, 4416, 18), -- Dwarves
+(35833, 4408, 1), -- HP Modifiers
+(35833, 4409, 1), -- MP Modifiers
+(35833, 4410, 11), -- P. Atk. Modifiers
+(35833, 4411, 11), -- M. Atk. Modifiers
+(35833, 4412, 11), -- P. Def. Modifiers
+(35833, 4413, 11), -- M. Def. Modifiers
+(35833, 4414, 2), -- Armor Type
+(35833, 4415, 3), -- Weapon Type
+(35833, 4416, 18), -- Races
 -- Supply Box
 (35834, 4045, 1), -- Resist Full Magic Attack
-(35834, 4408, 1), -- HP Increase (1x)
-(35834, 4409, 1), -- MP Increase (1x)
-(35834, 4410, 11), -- Average P. Atk.
-(35834, 4411, 11), -- Average M. Atk.
-(35834, 4412, 11), -- Average P. Def.
-(35834, 4413, 11), -- Average M. Def.
-(35834, 4414, 2), -- Standard Type
-(35834, 4415, 3), -- One-handed Sword
-(35834, 4416, 2), -- Magic Creatures
+(35834, 4408, 1), -- HP Modifiers
+(35834, 4409, 1), -- MP Modifiers
+(35834, 4410, 11), -- P. Atk. Modifiers
+(35834, 4411, 11), -- M. Atk. Modifiers
+(35834, 4412, 11), -- P. Def. Modifiers
+(35834, 4413, 11), -- M. Def. Modifiers
+(35834, 4414, 2), -- Armor Type
+(35834, 4415, 3), -- Weapon Type
+(35834, 4416, 2), -- Races
 -- Detention Camp Warden
 (35835, 4045, 1), -- Resist Full Magic Attack
-(35835, 4408, 1), -- HP Increase (1x)
-(35835, 4409, 1), -- MP Increase (1x)
-(35835, 4410, 11), -- Average P. Atk.
-(35835, 4411, 11), -- Average M. Atk.
-(35835, 4412, 11), -- Average P. Def.
-(35835, 4413, 11), -- Average M. Def.
-(35835, 4414, 2), -- Standard Type
-(35835, 4415, 3), -- One-handed Sword
-(35835, 4416, 14), -- Humans
+(35835, 4408, 1), -- HP Modifiers
+(35835, 4409, 1), -- MP Modifiers
+(35835, 4410, 11), -- P. Atk. Modifiers
+(35835, 4411, 11), -- M. Atk. Modifiers
+(35835, 4412, 11), -- P. Def. Modifiers
+(35835, 4413, 11), -- M. Def. Modifiers
+(35835, 4414, 2), -- Armor Type
+(35835, 4415, 3), -- Weapon Type
+(35835, 4416, 14), -- Races
 -- Doorman
 (35836, 4045, 1), -- Resist Full Magic Attack
-(35836, 4408, 1), -- HP Increase (1x)
-(35836, 4409, 1), -- MP Increase (1x)
-(35836, 4410, 11), -- Average P. Atk.
-(35836, 4411, 11), -- Average M. Atk.
-(35836, 4412, 11), -- Average P. Def.
-(35836, 4413, 11), -- Average M. Def.
-(35836, 4414, 2), -- Standard Type
-(35836, 4415, 3), -- One-handed Sword
-(35836, 4416, 14), -- Humans
+(35836, 4408, 1), -- HP Modifiers
+(35836, 4409, 1), -- MP Modifiers
+(35836, 4410, 11), -- P. Atk. Modifiers
+(35836, 4411, 11), -- M. Atk. Modifiers
+(35836, 4412, 11), -- P. Def. Modifiers
+(35836, 4413, 11), -- M. Def. Modifiers
+(35836, 4414, 2), -- Armor Type
+(35836, 4415, 3), -- Weapon Type
+(35836, 4416, 14), -- Races
 -- Doorman
 (35837, 4045, 1), -- Resist Full Magic Attack
-(35837, 4408, 1), -- HP Increase (1x)
-(35837, 4409, 1), -- MP Increase (1x)
-(35837, 4410, 11), -- Average P. Atk.
-(35837, 4411, 11), -- Average M. Atk.
-(35837, 4412, 11), -- Average P. Def.
-(35837, 4413, 11), -- Average M. Def.
-(35837, 4414, 2), -- Standard Type
-(35837, 4415, 3), -- One-handed Sword
-(35837, 4416, 14), -- Humans
+(35837, 4408, 1), -- HP Modifiers
+(35837, 4409, 1), -- MP Modifiers
+(35837, 4410, 11), -- P. Atk. Modifiers
+(35837, 4411, 11), -- M. Atk. Modifiers
+(35837, 4412, 11), -- P. Def. Modifiers
+(35837, 4413, 11), -- M. Def. Modifiers
+(35837, 4414, 2), -- Armor Type
+(35837, 4415, 3), -- Weapon Type
+(35837, 4416, 14), -- Races
 -- Doorman
 (35838, 4045, 1), -- Resist Full Magic Attack
-(35838, 4408, 1), -- HP Increase (1x)
-(35838, 4409, 1), -- MP Increase (1x)
-(35838, 4410, 11), -- Average P. Atk.
-(35838, 4411, 11), -- Average M. Atk.
-(35838, 4412, 11), -- Average P. Def.
-(35838, 4413, 11), -- Average M. Def.
-(35838, 4414, 2), -- Standard Type
-(35838, 4415, 3), -- One-handed Sword
-(35838, 4416, 14), -- Humans
+(35838, 4408, 1), -- HP Modifiers
+(35838, 4409, 1), -- MP Modifiers
+(35838, 4410, 11), -- P. Atk. Modifiers
+(35838, 4411, 11), -- M. Atk. Modifiers
+(35838, 4412, 11), -- P. Def. Modifiers
+(35838, 4413, 11), -- M. Def. Modifiers
+(35838, 4414, 2), -- Armor Type
+(35838, 4415, 3), -- Weapon Type
+(35838, 4416, 14), -- Races
 -- Rebel Commander
 (35839, 4045, 1), -- Resist Full Magic Attack
-(35839, 4178, 7), -- Flame Strike
-(35839, 4195, 7), -- Twister
-(35839, 4408, 10), -- HP Increase (2x)
-(35839, 4409, 1), -- MP Increase (1x)
-(35839, 4410, 11), -- Average P. Atk.
-(35839, 4411, 17), -- Very Strong M. Atk.
-(35839, 4412, 11), -- Average P. Def.
-(35839, 4413, 11), -- Average M. Def.
-(35839, 4414, 2), -- Standard Type
-(35839, 4415, 3), -- One-handed Sword
-(35839, 4416, 16), -- Dark Elves
+(35839, 4178, 7), -- BOSS Flame Strike
+(35839, 4195, 7), -- BOSS Twister
+(35839, 4408, 10), -- HP Modifiers
+(35839, 4409, 1), -- MP Modifiers
+(35839, 4410, 11), -- P. Atk. Modifiers
+(35839, 4411, 17), -- M. Atk. Modifiers
+(35839, 4412, 11), -- P. Def. Modifiers
+(35839, 4413, 11), -- M. Def. Modifiers
+(35839, 4414, 2), -- Armor Type
+(35839, 4415, 3), -- Weapon Type
+(35839, 4416, 16), -- Races
 -- Decorated Rebel Soldier
 (35840, 4045, 1), -- Resist Full Magic Attack
-(35840, 4408, 14), -- HP Increase (6x)
-(35840, 4409, 1), -- MP Increase (1x)
-(35840, 4410, 15), -- Strong P. Atk.
-(35840, 4411, 11), -- Average M. Atk.
-(35840, 4412, 11), -- Average P. Def.
-(35840, 4413, 15), -- Strong M. Def.
-(35840, 4414, 2), -- Standard Type
-(35840, 4415, 1), -- Bare Hands
-(35840, 4416, 9), -- Demons
-(35840, 5065, 7), -- Unholy Strike
+(35840, 4408, 14), -- HP Modifiers
+(35840, 4409, 1), -- MP Modifiers
+(35840, 4410, 15), -- P. Atk. Modifiers
+(35840, 4411, 11), -- M. Atk. Modifiers
+(35840, 4412, 11), -- P. Def. Modifiers
+(35840, 4413, 15), -- M. Def. Modifiers
+(35840, 4414, 2), -- Armor Type
+(35840, 4415, 1), -- Weapon Type
+(35840, 4416, 9), -- Races
+(35840, 5065, 7), -- Castle DD Unholy
 -- Rebel Private
 (35841, 4045, 1), -- Resist Full Magic Attack
-(35841, 4408, 12), -- HP Increase (4x)
-(35841, 4409, 1), -- MP Increase (1x)
-(35841, 4410, 14), -- Strong P. Atk.
-(35841, 4411, 11), -- Average M. Atk.
-(35841, 4412, 11), -- Average P. Def.
-(35841, 4413, 11), -- Average M. Def.
-(35841, 4414, 2), -- Standard Type
-(35841, 4415, 11), -- Spears
-(35841, 4416, 14), -- Humans
+(35841, 4408, 12), -- HP Modifiers
+(35841, 4409, 1), -- MP Modifiers
+(35841, 4410, 14), -- P. Atk. Modifiers
+(35841, 4411, 11), -- M. Atk. Modifiers
+(35841, 4412, 11), -- P. Def. Modifiers
+(35841, 4413, 11), -- M. Def. Modifiers
+(35841, 4414, 2), -- Armor Type
+(35841, 4415, 11), -- Weapon Type
+(35841, 4416, 14), -- Races
 -- Court Guard
 (35842, 4045, 1), -- Resist Full Magic Attack
-(35842, 4408, 12), -- HP Increase (4x)
-(35842, 4409, 1), -- MP Increase (1x)
-(35842, 4410, 11), -- Average P. Atk.
-(35842, 4411, 11), -- Average M. Atk.
-(35842, 4412, 11), -- Average P. Def.
-(35842, 4413, 16), -- Very Strong M. Def.
-(35842, 4414, 2), -- Standard Type
-(35842, 4415, 11), -- Spears
-(35842, 4416, 22), -- Defending Army
+(35842, 4408, 12), -- HP Modifiers
+(35842, 4409, 1), -- MP Modifiers
+(35842, 4410, 11), -- P. Atk. Modifiers
+(35842, 4411, 11), -- M. Atk. Modifiers
+(35842, 4412, 11), -- P. Def. Modifiers
+(35842, 4413, 16), -- M. Def. Modifiers
+(35842, 4414, 2), -- Armor Type
+(35842, 4415, 11), -- Weapon Type
+(35842, 4416, 22), -- Races
 (35842, 5432, 1), -- Weapon Supply
 -- Guard
 (35843, 4045, 1), -- Resist Full Magic Attack
-(35843, 4408, 12), -- HP Increase (4x)
-(35843, 4409, 1), -- MP Increase (1x)
-(35843, 4410, 15), -- Strong P. Atk.
-(35843, 4411, 11), -- Average M. Atk.
-(35843, 4412, 11), -- Average P. Def.
-(35843, 4413, 11), -- Average M. Def.
-(35843, 4414, 3), -- Light Armor Type
-(35843, 4415, 9), -- Bows
-(35843, 4416, 22), -- Defending Army
+(35843, 4408, 12), -- HP Modifiers
+(35843, 4409, 1), -- MP Modifiers
+(35843, 4410, 15), -- P. Atk. Modifiers
+(35843, 4411, 11), -- M. Atk. Modifiers
+(35843, 4412, 11), -- P. Def. Modifiers
+(35843, 4413, 11), -- M. Def. Modifiers
+(35843, 4414, 3), -- Armor Type
+(35843, 4415, 9), -- Weapon Type
+(35843, 4416, 22), -- Races
 (35843, 5432, 1), -- Weapon Supply
 -- Power Control Unit
 (35844, 4045, 1), -- Resist Full Magic Attack
-(35844, 4408, 1), -- HP Increase (1x)
-(35844, 4409, 1), -- MP Increase (1x)
-(35844, 4410, 11), -- Average P. Atk.
-(35844, 4411, 11), -- Average M. Atk.
-(35844, 4412, 11), -- Average P. Def.
-(35844, 4413, 11), -- Average M. Def.
-(35844, 4414, 2), -- Standard Type
-(35844, 4415, 3), -- One-handed Sword
-(35844, 4416, 19), -- Others
+(35844, 4408, 1), -- HP Modifiers
+(35844, 4409, 1), -- MP Modifiers
+(35844, 4410, 11), -- P. Atk. Modifiers
+(35844, 4411, 11), -- M. Atk. Modifiers
+(35844, 4412, 11), -- P. Def. Modifiers
+(35844, 4413, 11), -- M. Def. Modifiers
+(35844, 4414, 2), -- Armor Type
+(35844, 4415, 3), -- Weapon Type
+(35844, 4416, 19), -- Races
 -- Dwarven Gunnery Sergeant
 (35845, 4045, 1), -- Resist Full Magic Attack
-(35845, 4408, 11), -- HP Increase (3x)
-(35845, 4409, 16), -- MP Increase (8x)
-(35845, 4410, 11), -- Average P. Atk.
-(35845, 4411, 17), -- Very Strong M. Atk.
-(35845, 4412, 11), -- Average P. Def.
-(35845, 4413, 8), -- Weak M. Def.
-(35845, 4414, 2), -- Standard Type
-(35845, 4415, 9), -- Bows
-(35845, 4416, 22), -- Defending Army
+(35845, 4408, 11), -- HP Modifiers
+(35845, 4409, 16), -- MP Modifiers
+(35845, 4410, 11), -- P. Atk. Modifiers
+(35845, 4411, 17), -- M. Atk. Modifiers
+(35845, 4412, 11), -- P. Def. Modifiers
+(35845, 4413, 8), -- M. Def. Modifiers
+(35845, 4414, 2), -- Armor Type
+(35845, 4415, 9), -- Weapon Type
+(35845, 4416, 22), -- Races
 (35845, 5432, 1), -- Weapon Supply
-(35845, 5461, 6), -- Power Shot
-(35845, 5468, 6), -- Fire Shot
+(35845, 5461, 6), -- Castle Gunner Shot
+(35845, 5468, 6), -- Castle Gunner Fire
 -- Guard Captain
 (35846, 4045, 1), -- Resist Full Magic Attack
 (35846, 4172, 6), -- Stun
-(35846, 4408, 9), -- HP Increase (1/2x)
-(35846, 4409, 1), -- MP Increase (1x)
-(35846, 4410, 8), -- Weak P. Atk.
-(35846, 4411, 11), -- Average M. Atk.
-(35846, 4412, 16), -- Very Strong P. Def.
-(35846, 4413, 11), -- Average M. Def.
-(35846, 4414, 2), -- Standard Type
-(35846, 4415, 3), -- One-handed Sword
-(35846, 4416, 22), -- Defending Army
+(35846, 4408, 9), -- HP Modifiers
+(35846, 4409, 1), -- MP Modifiers
+(35846, 4410, 8), -- P. Atk. Modifiers
+(35846, 4411, 11), -- M. Atk. Modifiers
+(35846, 4412, 16), -- P. Def. Modifiers
+(35846, 4413, 11), -- M. Def. Modifiers
+(35846, 4414, 2), -- Armor Type
+(35846, 4415, 3), -- Weapon Type
+(35846, 4416, 22), -- Races
 (35846, 4435, 5), -- Greater Resist Stun
 (35846, 4439, 5), -- Greater Resist Hold
 (35846, 4440, 5), -- Greater Resist Paralysis
-(35846, 4608, 1), -- Berserker Spirit
+(35846, 4608, 1), -- NPC Clan Buff - Berserk
 (35846, 5432, 1), -- Weapon Supply
-(35846, 5457, 1), -- Complete Recovery
+(35846, 5457, 1), -- NPC Full Recover
 -- Guard
 (35847, 4045, 1), -- Resist Full Magic Attack
-(35847, 4408, 13), -- HP Increase (5x)
-(35847, 4409, 1), -- MP Increase (1x)
-(35847, 4410, 9), -- Slightly Weak P. Atk.
-(35847, 4411, 11), -- Average M. Atk.
-(35847, 4412, 16), -- Very Strong P. Def.
-(35847, 4413, 11), -- Average M. Def.
-(35847, 4414, 2), -- Standard Type
-(35847, 4415, 3), -- One-handed Sword
-(35847, 4416, 22), -- Defending Army
+(35847, 4408, 13), -- HP Modifiers
+(35847, 4409, 1), -- MP Modifiers
+(35847, 4410, 9), -- P. Atk. Modifiers
+(35847, 4411, 11), -- M. Atk. Modifiers
+(35847, 4412, 16), -- P. Def. Modifiers
+(35847, 4413, 11), -- M. Def. Modifiers
+(35847, 4414, 2), -- Armor Type
+(35847, 4415, 3), -- Weapon Type
+(35847, 4416, 22), -- Races
 (35847, 5112, 6), -- Stun
 (35847, 5432, 1), -- Weapon Supply
 -- Guard
 (35848, 4045, 1), -- Resist Full Magic Attack
-(35848, 4408, 13), -- HP Increase (5x)
-(35848, 4409, 1), -- MP Increase (1x)
-(35848, 4410, 9), -- Slightly Weak P. Atk.
-(35848, 4411, 11), -- Average M. Atk.
-(35848, 4412, 11), -- Average P. Def.
-(35848, 4413, 16), -- Very Strong M. Def.
-(35848, 4414, 2), -- Standard Type
-(35848, 4415, 3), -- One-handed Sword
-(35848, 4416, 22), -- Defending Army
-(35848, 5045, 6), -- Power Strike
+(35848, 4408, 13), -- HP Modifiers
+(35848, 4409, 1), -- MP Modifiers
+(35848, 4410, 9), -- P. Atk. Modifiers
+(35848, 4411, 11), -- M. Atk. Modifiers
+(35848, 4412, 11), -- P. Def. Modifiers
+(35848, 4413, 16), -- M. Def. Modifiers
+(35848, 4414, 2), -- Armor Type
+(35848, 4415, 3), -- Weapon Type
+(35848, 4416, 22), -- Races
+(35848, 5045, 6), -- Castle Power Strike
 (35848, 5432, 1), -- Weapon Supply
 -- Support Unit Captain
 (35849, 4045, 1), -- Resist Full Magic Attack
-(35849, 4194, 6), -- Aura Burn
-(35849, 4196, 6), -- Decrease Speed
-(35849, 4408, 9), -- HP Increase (1/2x)
-(35849, 4409, 16), -- MP Increase (8x)
-(35849, 4410, 11), -- Average P. Atk.
-(35849, 4411, 14), -- Strong M. Atk.
-(35849, 4412, 8), -- Weak P. Def.
-(35849, 4413, 14), -- Strong M. Def.
-(35849, 4414, 3), -- Light Armor Type
-(35849, 4415, 3), -- One-handed Sword
-(35849, 4416, 22), -- Defending Army
-(35849, 5396, 1), -- Spell Force
-(35849, 5398, 1), -- Final Burn
+(35849, 4194, 6), -- BOSS Aura Burn
+(35849, 4196, 6), -- Decreases Speed
+(35849, 4408, 9), -- HP Modifiers
+(35849, 4409, 16), -- MP Modifiers
+(35849, 4410, 11), -- P. Atk. Modifiers
+(35849, 4411, 14), -- M. Atk. Modifiers
+(35849, 4412, 8), -- P. Def. Modifiers
+(35849, 4413, 14), -- M. Def. Modifiers
+(35849, 4414, 3), -- Armor Type
+(35849, 4415, 3), -- Weapon Type
+(35849, 4416, 22), -- Races
+(35849, 5396, 1), -- NPC - Spell Stance
+(35849, 5398, 1), -- NPC - Combination Force
 (35849, 5432, 1), -- Weapon Supply
-(35849, 5457, 1), -- Complete Recovery
+(35849, 5457, 1), -- NPC Full Recover
 -- Wizard
 (35850, 4045, 1), -- Resist Full Magic Attack
-(35850, 4077, 6), -- Aura Burn
-(35850, 4408, 13), -- HP Increase (5x)
-(35850, 4409, 16), -- MP Increase (8x)
-(35850, 4410, 11), -- Average P. Atk.
-(35850, 4411, 16), -- Very Strong M. Atk.
-(35850, 4412, 8), -- Weak P. Def.
-(35850, 4413, 11), -- Average M. Def.
-(35850, 4414, 3), -- Light Armor Type
-(35850, 4415, 3), -- One-handed Sword
-(35850, 4416, 22), -- Defending Army
-(35850, 5053, 6), -- Hydro Blast
-(35850, 5396, 1), -- Spell Force
+(35850, 4077, 6), -- NPC Aura Burn
+(35850, 4408, 13), -- HP Modifiers
+(35850, 4409, 16), -- MP Modifiers
+(35850, 4410, 11), -- P. Atk. Modifiers
+(35850, 4411, 16), -- M. Atk. Modifiers
+(35850, 4412, 8), -- P. Def. Modifiers
+(35850, 4413, 11), -- M. Def. Modifiers
+(35850, 4414, 3), -- Armor Type
+(35850, 4415, 3), -- Weapon Type
+(35850, 4416, 22), -- Races
+(35850, 5053, 6), -- Castle DD Water
+(35850, 5396, 1), -- NPC - Spell Stance
 (35850, 5432, 1), -- Weapon Supply
 -- Healer
 (35851, 4045, 1), -- Resist Full Magic Attack
 (35851, 4115, 1), -- Aden Heal
-(35851, 4408, 15), -- HP Increase (7x)
-(35851, 4409, 16), -- MP Increase (8x)
-(35851, 4410, 11), -- Average P. Atk.
-(35851, 4411, 17), -- Very Strong M. Atk.
-(35851, 4412, 11), -- Average P. Def.
-(35851, 4413, 16), -- Very Strong M. Def.
-(35851, 4414, 3), -- Light Armor Type
-(35851, 4415, 3), -- One-handed Sword
-(35851, 4416, 22), -- Defending Army
+(35851, 4408, 15), -- HP Modifiers
+(35851, 4409, 16), -- MP Modifiers
+(35851, 4410, 11), -- P. Atk. Modifiers
+(35851, 4411, 17), -- M. Atk. Modifiers
+(35851, 4412, 11), -- P. Def. Modifiers
+(35851, 4413, 16), -- M. Def. Modifiers
+(35851, 4414, 3), -- Armor Type
+(35851, 4415, 3), -- Weapon Type
+(35851, 4416, 22), -- Races
 (35851, 5114, 6), -- Hold
 (35851, 5432, 1), -- Weapon Supply
 -- Archer Captain
 (35852, 4045, 1), -- Resist Full Magic Attack
-(35852, 4408, 9), -- HP Increase (1/2x)
-(35852, 4409, 1), -- MP Increase (1x)
-(35852, 4410, 16), -- Very Strong P. Atk.
-(35852, 4411, 11), -- Average M. Atk.
-(35852, 4412, 8), -- Weak P. Def.
-(35852, 4413, 11), -- Average M. Def.
-(35852, 4414, 3), -- Light Armor Type
-(35852, 4415, 9), -- Bows
-(35852, 4416, 22), -- Defending Army
-(35852, 4755, 6), -- Power Shot
+(35852, 4408, 9), -- HP Modifiers
+(35852, 4409, 1), -- MP Modifiers
+(35852, 4410, 16), -- P. Atk. Modifiers
+(35852, 4411, 11), -- M. Atk. Modifiers
+(35852, 4412, 8), -- P. Def. Modifiers
+(35852, 4413, 11), -- M. Def. Modifiers
+(35852, 4414, 3), -- Armor Type
+(35852, 4415, 9), -- Weapon Type
+(35852, 4416, 22), -- Races
+(35852, 4755, 6), -- BOSS Power Shot
 (35852, 5432, 1), -- Weapon Supply
-(35852, 5457, 1), -- Complete Recovery
+(35852, 5457, 1), -- NPC Full Recover
 -- Archer
 (35853, 4045, 1), -- Resist Full Magic Attack
-(35853, 4408, 13), -- HP Increase (5x)
-(35853, 4409, 1), -- MP Increase (1x)
-(35853, 4410, 14), -- Strong P. Atk.
-(35853, 4411, 11), -- Average M. Atk.
-(35853, 4412, 8), -- Weak P. Def.
-(35853, 4413, 11), -- Average M. Def.
-(35853, 4414, 3), -- Light Armor Type
-(35853, 4415, 9), -- Bows
-(35853, 4416, 22), -- Defending Army
-(35853, 5046, 6), -- Power Shot
+(35853, 4408, 13), -- HP Modifiers
+(35853, 4409, 1), -- MP Modifiers
+(35853, 4410, 14), -- P. Atk. Modifiers
+(35853, 4411, 11), -- M. Atk. Modifiers
+(35853, 4412, 8), -- P. Def. Modifiers
+(35853, 4413, 11), -- M. Def. Modifiers
+(35853, 4414, 3), -- Armor Type
+(35853, 4415, 9), -- Weapon Type
+(35853, 4416, 22), -- Races
+(35853, 5046, 6), -- Castle Power Shot
 (35853, 5432, 1), -- Weapon Supply
 -- Ballista
 (35854, 2342, 1), -- Ballista Bomb
 (35854, 4045, 1), -- Resist Full Magic Attack
-(35854, 4408, 16), -- HP Increase (8x)
-(35854, 4409, 1), -- MP Increase (1x)
-(35854, 4410, 11), -- Average P. Atk.
-(35854, 4411, 11), -- Average M. Atk.
-(35854, 4412, 11), -- Average P. Def.
-(35854, 4413, 11), -- Average M. Def.
-(35854, 4414, 2), -- Standard Type
-(35854, 4415, 3), -- One-handed Sword
-(35854, 4416, 22), -- Defending Army
+(35854, 4408, 16), -- HP Modifiers
+(35854, 4409, 1), -- MP Modifiers
+(35854, 4410, 11), -- P. Atk. Modifiers
+(35854, 4411, 11), -- M. Atk. Modifiers
+(35854, 4412, 11), -- P. Def. Modifiers
+(35854, 4413, 11), -- M. Def. Modifiers
+(35854, 4414, 2), -- Armor Type
+(35854, 4415, 3), -- Weapon Type
+(35854, 4416, 22), -- Races
 -- Mercenary Captain
 (35855, 4045, 1), -- Resist Full Magic Attack
-(35855, 4408, 11), -- HP Increase (3x)
-(35855, 4409, 1), -- MP Increase (1x)
-(35855, 4410, 11), -- Average P. Atk.
-(35855, 4411, 11), -- Average M. Atk.
-(35855, 4412, 11), -- Average P. Def.
-(35855, 4413, 11), -- Average M. Def.
-(35855, 4414, 2), -- Standard Type
-(35855, 4415, 3), -- One-handed Sword
-(35855, 4416, 14), -- Humans
+(35855, 4408, 11), -- HP Modifiers
+(35855, 4409, 1), -- MP Modifiers
+(35855, 4410, 11), -- P. Atk. Modifiers
+(35855, 4411, 11), -- M. Atk. Modifiers
+(35855, 4412, 11), -- P. Def. Modifiers
+(35855, 4413, 11), -- M. Def. Modifiers
+(35855, 4414, 2), -- Armor Type
+(35855, 4415, 3), -- Weapon Type
+(35855, 4416, 14), -- Races
 -- Mercenary Private
 (35856, 4045, 1), -- Resist Full Magic Attack
-(35856, 4408, 11), -- HP Increase (3x)
-(35856, 4409, 1), -- MP Increase (1x)
-(35856, 4410, 13), -- Slightly Strong P. Atk.
-(35856, 4411, 11), -- Average M. Atk.
-(35856, 4412, 11), -- Average P. Def.
-(35856, 4413, 11), -- Average M. Def.
-(35856, 4414, 2), -- Standard Type
-(35856, 4415, 11), -- Spears
-(35856, 4416, 17), -- Orcs
+(35856, 4408, 11), -- HP Modifiers
+(35856, 4409, 1), -- MP Modifiers
+(35856, 4410, 13), -- P. Atk. Modifiers
+(35856, 4411, 11), -- M. Atk. Modifiers
+(35856, 4412, 11), -- P. Def. Modifiers
+(35856, 4413, 11), -- M. Def. Modifiers
+(35856, 4414, 2), -- Armor Type
+(35856, 4415, 11), -- Weapon Type
+(35856, 4416, 17), -- Races
 -- Flagpole
 (35857, 4045, 1), -- Resist Full Magic Attack
-(35857, 4408, 1), -- HP Increase (1x)
-(35857, 4409, 1), -- MP Increase (1x)
-(35857, 4410, 11), -- Average P. Atk.
-(35857, 4411, 11), -- Average M. Atk.
-(35857, 4412, 11), -- Average P. Def.
-(35857, 4413, 11), -- Average M. Def.
-(35857, 4414, 2), -- Standard Type
-(35857, 4415, 3), -- One-handed Sword
-(35857, 4416, 19), -- Others
+(35857, 4408, 1), -- HP Modifiers
+(35857, 4409, 1), -- MP Modifiers
+(35857, 4410, 11), -- P. Atk. Modifiers
+(35857, 4411, 11), -- M. Atk. Modifiers
+(35857, 4412, 11), -- P. Def. Modifiers
+(35857, 4413, 11), -- M. Def. Modifiers
+(35857, 4414, 2), -- Armor Type
+(35857, 4415, 3), -- Weapon Type
+(35857, 4416, 19), -- Races
 -- Foreman
 (35858, 4045, 1), -- Resist Full Magic Attack
-(35858, 4408, 1), -- HP Increase (1x)
-(35858, 4409, 1), -- MP Increase (1x)
-(35858, 4410, 11), -- Average P. Atk.
-(35858, 4411, 11), -- Average M. Atk.
-(35858, 4412, 11), -- Average P. Def.
-(35858, 4413, 11), -- Average M. Def.
-(35858, 4414, 2), -- Standard Type
-(35858, 4415, 3), -- One-handed Sword
-(35858, 4416, 14), -- Humans
+(35858, 4408, 1), -- HP Modifiers
+(35858, 4409, 1), -- MP Modifiers
+(35858, 4410, 11), -- P. Atk. Modifiers
+(35858, 4411, 11), -- M. Atk. Modifiers
+(35858, 4412, 11), -- P. Def. Modifiers
+(35858, 4413, 11), -- M. Def. Modifiers
+(35858, 4414, 2), -- Armor Type
+(35858, 4415, 3), -- Weapon Type
+(35858, 4416, 14), -- Races
 -- Suspicious Merchant
 (35859, 4045, 1), -- Resist Full Magic Attack
-(35859, 4408, 1), -- HP Increase (1x)
-(35859, 4409, 1), -- MP Increase (1x)
-(35859, 4410, 11), -- Average P. Atk.
-(35859, 4411, 11), -- Average M. Atk.
-(35859, 4412, 11), -- Average P. Def.
-(35859, 4413, 11), -- Average M. Def.
-(35859, 4414, 2), -- Standard Type
-(35859, 4415, 3), -- One-handed Sword
-(35859, 4416, 17), -- Orcs
+(35859, 4408, 1), -- HP Modifiers
+(35859, 4409, 1), -- MP Modifiers
+(35859, 4410, 11), -- P. Atk. Modifiers
+(35859, 4411, 11), -- M. Atk. Modifiers
+(35859, 4412, 11), -- P. Def. Modifiers
+(35859, 4413, 11), -- M. Def. Modifiers
+(35859, 4414, 2), -- Armor Type
+(35859, 4415, 3), -- Weapon Type
+(35859, 4416, 17), -- Races
 -- Guard Captain
 (35860, 4045, 1), -- Resist Full Magic Attack
-(35860, 4408, 1), -- HP Increase (1x)
-(35860, 4409, 1), -- MP Increase (1x)
-(35860, 4410, 11), -- Average P. Atk.
-(35860, 4411, 11), -- Average M. Atk.
-(35860, 4412, 11), -- Average P. Def.
-(35860, 4413, 11), -- Average M. Def.
-(35860, 4414, 2), -- Standard Type
-(35860, 4415, 3), -- One-handed Sword
-(35860, 4416, 14), -- Humans
+(35860, 4408, 1), -- HP Modifiers
+(35860, 4409, 1), -- MP Modifiers
+(35860, 4410, 11), -- P. Atk. Modifiers
+(35860, 4411, 11), -- M. Atk. Modifiers
+(35860, 4412, 11), -- P. Def. Modifiers
+(35860, 4413, 11), -- M. Def. Modifiers
+(35860, 4414, 2), -- Armor Type
+(35860, 4415, 3), -- Weapon Type
+(35860, 4416, 14), -- Races
 -- Archer Captain
 (35861, 4045, 1), -- Resist Full Magic Attack
-(35861, 4408, 1), -- HP Increase (1x)
-(35861, 4409, 1), -- MP Increase (1x)
-(35861, 4410, 11), -- Average P. Atk.
-(35861, 4411, 11), -- Average M. Atk.
-(35861, 4412, 11), -- Average P. Def.
-(35861, 4413, 11), -- Average M. Def.
-(35861, 4414, 2), -- Standard Type
-(35861, 4415, 9), -- Bows
-(35861, 4416, 15), -- Elves
+(35861, 4408, 1), -- HP Modifiers
+(35861, 4409, 1), -- MP Modifiers
+(35861, 4410, 11), -- P. Atk. Modifiers
+(35861, 4411, 11), -- M. Atk. Modifiers
+(35861, 4412, 11), -- P. Def. Modifiers
+(35861, 4413, 11), -- M. Def. Modifiers
+(35861, 4414, 2), -- Armor Type
+(35861, 4415, 9), -- Weapon Type
+(35861, 4416, 15), -- Races
 -- General
 (35862, 4045, 1), -- Resist Full Magic Attack
-(35862, 4408, 1), -- HP Increase (1x)
-(35862, 4409, 1), -- MP Increase (1x)
-(35862, 4410, 11), -- Average P. Atk.
-(35862, 4411, 11), -- Average M. Atk.
-(35862, 4412, 11), -- Average P. Def.
-(35862, 4413, 11), -- Average M. Def.
-(35862, 4414, 2), -- Standard Type
-(35862, 4415, 19), -- Dual-Sword Weapons
-(35862, 4416, 22), -- Defending Army
+(35862, 4408, 1), -- HP Modifiers
+(35862, 4409, 1), -- MP Modifiers
+(35862, 4410, 11), -- P. Atk. Modifiers
+(35862, 4411, 11), -- M. Atk. Modifiers
+(35862, 4412, 11), -- P. Def. Modifiers
+(35862, 4413, 11), -- M. Def. Modifiers
+(35862, 4414, 2), -- Armor Type
+(35862, 4415, 19), -- Weapon Type
+(35862, 4416, 22), -- Races
 -- Support Unit Captain
 (35863, 4045, 1), -- Resist Full Magic Attack
-(35863, 4408, 1), -- HP Increase (1x)
-(35863, 4409, 1), -- MP Increase (1x)
-(35863, 4410, 11), -- Average P. Atk.
-(35863, 4411, 11), -- Average M. Atk.
-(35863, 4412, 11), -- Average P. Def.
-(35863, 4413, 11), -- Average M. Def.
-(35863, 4414, 2), -- Standard Type
-(35863, 4415, 3), -- One-handed Sword
-(35863, 4416, 14), -- Humans
+(35863, 4408, 1), -- HP Modifiers
+(35863, 4409, 1), -- MP Modifiers
+(35863, 4410, 11), -- P. Atk. Modifiers
+(35863, 4411, 11), -- M. Atk. Modifiers
+(35863, 4412, 11), -- P. Def. Modifiers
+(35863, 4413, 11), -- M. Def. Modifiers
+(35863, 4414, 2), -- Armor Type
+(35863, 4415, 3), -- Weapon Type
+(35863, 4416, 14), -- Races
 -- Engineering Manager
 (35864, 4045, 1), -- Resist Full Magic Attack
-(35864, 4408, 1), -- HP Increase (1x)
-(35864, 4409, 1), -- MP Increase (1x)
-(35864, 4410, 11), -- Average P. Atk.
-(35864, 4411, 11), -- Average M. Atk.
-(35864, 4412, 11), -- Average P. Def.
-(35864, 4413, 11), -- Average M. Def.
-(35864, 4414, 2), -- Standard Type
-(35864, 4415, 3), -- One-handed Sword
-(35864, 4416, 18), -- Dwarves
+(35864, 4408, 1), -- HP Modifiers
+(35864, 4409, 1), -- MP Modifiers
+(35864, 4410, 11), -- P. Atk. Modifiers
+(35864, 4411, 11), -- M. Atk. Modifiers
+(35864, 4412, 11), -- P. Def. Modifiers
+(35864, 4413, 11), -- M. Def. Modifiers
+(35864, 4414, 2), -- Armor Type
+(35864, 4415, 3), -- Weapon Type
+(35864, 4416, 18), -- Races
 -- Logistics Officer
 (35865, 4045, 1), -- Resist Full Magic Attack
-(35865, 4408, 1), -- HP Increase (1x)
-(35865, 4409, 1), -- MP Increase (1x)
-(35865, 4410, 11), -- Average P. Atk.
-(35865, 4411, 11), -- Average M. Atk.
-(35865, 4412, 11), -- Average P. Def.
-(35865, 4413, 11), -- Average M. Def.
-(35865, 4414, 2), -- Standard Type
-(35865, 4415, 3), -- One-handed Sword
-(35865, 4416, 18), -- Dwarves
+(35865, 4408, 1), -- HP Modifiers
+(35865, 4409, 1), -- MP Modifiers
+(35865, 4410, 11), -- P. Atk. Modifiers
+(35865, 4411, 11), -- M. Atk. Modifiers
+(35865, 4412, 11), -- P. Def. Modifiers
+(35865, 4413, 11), -- M. Def. Modifiers
+(35865, 4414, 2), -- Armor Type
+(35865, 4415, 3), -- Weapon Type
+(35865, 4416, 18), -- Races
 -- Supply Box
 (35866, 4045, 1), -- Resist Full Magic Attack
-(35866, 4408, 1), -- HP Increase (1x)
-(35866, 4409, 1), -- MP Increase (1x)
-(35866, 4410, 11), -- Average P. Atk.
-(35866, 4411, 11), -- Average M. Atk.
-(35866, 4412, 11), -- Average P. Def.
-(35866, 4413, 11), -- Average M. Def.
-(35866, 4414, 2), -- Standard Type
-(35866, 4415, 3), -- One-handed Sword
-(35866, 4416, 2), -- Magic Creatures
+(35866, 4408, 1), -- HP Modifiers
+(35866, 4409, 1), -- MP Modifiers
+(35866, 4410, 11), -- P. Atk. Modifiers
+(35866, 4411, 11), -- M. Atk. Modifiers
+(35866, 4412, 11), -- P. Def. Modifiers
+(35866, 4413, 11), -- M. Def. Modifiers
+(35866, 4414, 2), -- Armor Type
+(35866, 4415, 3), -- Weapon Type
+(35866, 4416, 2), -- Races
 -- Detention Camp Warden
 (35867, 4045, 1), -- Resist Full Magic Attack
-(35867, 4408, 1), -- HP Increase (1x)
-(35867, 4409, 1), -- MP Increase (1x)
-(35867, 4410, 11), -- Average P. Atk.
-(35867, 4411, 11), -- Average M. Atk.
-(35867, 4412, 11), -- Average P. Def.
-(35867, 4413, 11), -- Average M. Def.
-(35867, 4414, 2), -- Standard Type
-(35867, 4415, 3), -- One-handed Sword
-(35867, 4416, 14), -- Humans
+(35867, 4408, 1), -- HP Modifiers
+(35867, 4409, 1), -- MP Modifiers
+(35867, 4410, 11), -- P. Atk. Modifiers
+(35867, 4411, 11), -- M. Atk. Modifiers
+(35867, 4412, 11), -- P. Def. Modifiers
+(35867, 4413, 11), -- M. Def. Modifiers
+(35867, 4414, 2), -- Armor Type
+(35867, 4415, 3), -- Weapon Type
+(35867, 4416, 14), -- Races
 -- Doorman
 (35868, 4045, 1), -- Resist Full Magic Attack
-(35868, 4408, 1), -- HP Increase (1x)
-(35868, 4409, 1), -- MP Increase (1x)
-(35868, 4410, 11), -- Average P. Atk.
-(35868, 4411, 11), -- Average M. Atk.
-(35868, 4412, 11), -- Average P. Def.
-(35868, 4413, 11), -- Average M. Def.
-(35868, 4414, 2), -- Standard Type
-(35868, 4415, 3), -- One-handed Sword
-(35868, 4416, 14), -- Humans
+(35868, 4408, 1), -- HP Modifiers
+(35868, 4409, 1), -- MP Modifiers
+(35868, 4410, 11), -- P. Atk. Modifiers
+(35868, 4411, 11), -- M. Atk. Modifiers
+(35868, 4412, 11), -- P. Def. Modifiers
+(35868, 4413, 11), -- M. Def. Modifiers
+(35868, 4414, 2), -- Armor Type
+(35868, 4415, 3), -- Weapon Type
+(35868, 4416, 14), -- Races
 -- Doorman
 (35869, 4045, 1), -- Resist Full Magic Attack
-(35869, 4408, 1), -- HP Increase (1x)
-(35869, 4409, 1), -- MP Increase (1x)
-(35869, 4410, 11), -- Average P. Atk.
-(35869, 4411, 11), -- Average M. Atk.
-(35869, 4412, 11), -- Average P. Def.
-(35869, 4413, 11), -- Average M. Def.
-(35869, 4414, 2), -- Standard Type
-(35869, 4415, 3), -- One-handed Sword
-(35869, 4416, 14), -- Humans
+(35869, 4408, 1), -- HP Modifiers
+(35869, 4409, 1), -- MP Modifiers
+(35869, 4410, 11), -- P. Atk. Modifiers
+(35869, 4411, 11), -- M. Atk. Modifiers
+(35869, 4412, 11), -- P. Def. Modifiers
+(35869, 4413, 11), -- M. Def. Modifiers
+(35869, 4414, 2), -- Armor Type
+(35869, 4415, 3), -- Weapon Type
+(35869, 4416, 14), -- Races
 -- Doorman
 (35870, 4045, 1), -- Resist Full Magic Attack
-(35870, 4408, 1), -- HP Increase (1x)
-(35870, 4409, 1), -- MP Increase (1x)
-(35870, 4410, 11), -- Average P. Atk.
-(35870, 4411, 11), -- Average M. Atk.
-(35870, 4412, 11), -- Average P. Def.
-(35870, 4413, 11), -- Average M. Def.
-(35870, 4414, 2), -- Standard Type
-(35870, 4415, 3), -- One-handed Sword
-(35870, 4416, 14), -- Humans
+(35870, 4408, 1), -- HP Modifiers
+(35870, 4409, 1), -- MP Modifiers
+(35870, 4410, 11), -- P. Atk. Modifiers
+(35870, 4411, 11), -- M. Atk. Modifiers
+(35870, 4412, 11), -- P. Def. Modifiers
+(35870, 4413, 11), -- M. Def. Modifiers
+(35870, 4414, 2), -- Armor Type
+(35870, 4415, 3), -- Weapon Type
+(35870, 4416, 14), -- Races
 -- Rebel Commander
 (35871, 4045, 1), -- Resist Full Magic Attack
-(35871, 4178, 7), -- Flame Strike
-(35871, 4195, 7), -- Twister
-(35871, 4408, 10), -- HP Increase (2x)
-(35871, 4409, 1), -- MP Increase (1x)
-(35871, 4410, 11), -- Average P. Atk.
-(35871, 4411, 17), -- Very Strong M. Atk.
-(35871, 4412, 11), -- Average P. Def.
-(35871, 4413, 11), -- Average M. Def.
-(35871, 4414, 2), -- Standard Type
-(35871, 4415, 3), -- One-handed Sword
-(35871, 4416, 16), -- Dark Elves
+(35871, 4178, 7), -- BOSS Flame Strike
+(35871, 4195, 7), -- BOSS Twister
+(35871, 4408, 10), -- HP Modifiers
+(35871, 4409, 1), -- MP Modifiers
+(35871, 4410, 11), -- P. Atk. Modifiers
+(35871, 4411, 17), -- M. Atk. Modifiers
+(35871, 4412, 11), -- P. Def. Modifiers
+(35871, 4413, 11), -- M. Def. Modifiers
+(35871, 4414, 2), -- Armor Type
+(35871, 4415, 3), -- Weapon Type
+(35871, 4416, 16), -- Races
 -- Decorated Rebel Soldier
 (35872, 4045, 1), -- Resist Full Magic Attack
-(35872, 4408, 14), -- HP Increase (6x)
-(35872, 4409, 1), -- MP Increase (1x)
-(35872, 4410, 15), -- Strong P. Atk.
-(35872, 4411, 11), -- Average M. Atk.
-(35872, 4412, 11), -- Average P. Def.
-(35872, 4413, 15), -- Strong M. Def.
-(35872, 4414, 2), -- Standard Type
-(35872, 4415, 1), -- Bare Hands
-(35872, 4416, 9), -- Demons
-(35872, 5065, 7), -- Unholy Strike
+(35872, 4408, 14), -- HP Modifiers
+(35872, 4409, 1), -- MP Modifiers
+(35872, 4410, 15), -- P. Atk. Modifiers
+(35872, 4411, 11), -- M. Atk. Modifiers
+(35872, 4412, 11), -- P. Def. Modifiers
+(35872, 4413, 15), -- M. Def. Modifiers
+(35872, 4414, 2), -- Armor Type
+(35872, 4415, 1), -- Weapon Type
+(35872, 4416, 9), -- Races
+(35872, 5065, 7), -- Castle DD Unholy
 -- Rebel Private
 (35873, 4045, 1), -- Resist Full Magic Attack
-(35873, 4408, 12), -- HP Increase (4x)
-(35873, 4409, 1), -- MP Increase (1x)
-(35873, 4410, 14), -- Strong P. Atk.
-(35873, 4411, 11), -- Average M. Atk.
-(35873, 4412, 11), -- Average P. Def.
-(35873, 4413, 11), -- Average M. Def.
-(35873, 4414, 2), -- Standard Type
-(35873, 4415, 11), -- Spears
-(35873, 4416, 14), -- Humans
+(35873, 4408, 12), -- HP Modifiers
+(35873, 4409, 1), -- MP Modifiers
+(35873, 4410, 14), -- P. Atk. Modifiers
+(35873, 4411, 11), -- M. Atk. Modifiers
+(35873, 4412, 11), -- P. Def. Modifiers
+(35873, 4413, 11), -- M. Def. Modifiers
+(35873, 4414, 2), -- Armor Type
+(35873, 4415, 11), -- Weapon Type
+(35873, 4416, 14), -- Races
 -- Court Guard
 (35874, 4045, 1), -- Resist Full Magic Attack
-(35874, 4408, 12), -- HP Increase (4x)
-(35874, 4409, 1), -- MP Increase (1x)
-(35874, 4410, 11), -- Average P. Atk.
-(35874, 4411, 11), -- Average M. Atk.
-(35874, 4412, 11), -- Average P. Def.
-(35874, 4413, 16), -- Very Strong M. Def.
-(35874, 4414, 2), -- Standard Type
-(35874, 4415, 11), -- Spears
-(35874, 4416, 22), -- Defending Army
+(35874, 4408, 12), -- HP Modifiers
+(35874, 4409, 1), -- MP Modifiers
+(35874, 4410, 11), -- P. Atk. Modifiers
+(35874, 4411, 11), -- M. Atk. Modifiers
+(35874, 4412, 11), -- P. Def. Modifiers
+(35874, 4413, 16), -- M. Def. Modifiers
+(35874, 4414, 2), -- Armor Type
+(35874, 4415, 11), -- Weapon Type
+(35874, 4416, 22), -- Races
 (35874, 5432, 1), -- Weapon Supply
 -- Guard
 (35875, 4045, 1), -- Resist Full Magic Attack
-(35875, 4408, 12), -- HP Increase (4x)
-(35875, 4409, 1), -- MP Increase (1x)
-(35875, 4410, 15), -- Strong P. Atk.
-(35875, 4411, 11), -- Average M. Atk.
-(35875, 4412, 11), -- Average P. Def.
-(35875, 4413, 11), -- Average M. Def.
-(35875, 4414, 3), -- Light Armor Type
-(35875, 4415, 9), -- Bows
-(35875, 4416, 22), -- Defending Army
+(35875, 4408, 12), -- HP Modifiers
+(35875, 4409, 1), -- MP Modifiers
+(35875, 4410, 15), -- P. Atk. Modifiers
+(35875, 4411, 11), -- M. Atk. Modifiers
+(35875, 4412, 11), -- P. Def. Modifiers
+(35875, 4413, 11), -- M. Def. Modifiers
+(35875, 4414, 3), -- Armor Type
+(35875, 4415, 9), -- Weapon Type
+(35875, 4416, 22), -- Races
 (35875, 5432, 1), -- Weapon Supply
 -- Main Machine
 (35876, 4045, 1), -- Resist Full Magic Attack
-(35876, 4408, 1), -- HP Increase (1x)
-(35876, 4409, 1), -- MP Increase (1x)
-(35876, 4410, 11), -- Average P. Atk.
-(35876, 4411, 11), -- Average M. Atk.
-(35876, 4412, 11), -- Average P. Def.
-(35876, 4413, 11), -- Average M. Def.
-(35876, 4414, 2), -- Standard Type
-(35876, 4415, 3), -- One-handed Sword
-(35876, 4416, 19), -- Others
+(35876, 4408, 1), -- HP Modifiers
+(35876, 4409, 1), -- MP Modifiers
+(35876, 4410, 11), -- P. Atk. Modifiers
+(35876, 4411, 11), -- M. Atk. Modifiers
+(35876, 4412, 11), -- P. Def. Modifiers
+(35876, 4413, 11), -- M. Def. Modifiers
+(35876, 4414, 2), -- Armor Type
+(35876, 4415, 3), -- Weapon Type
+(35876, 4416, 19), -- Races
 -- Backup Power Unit
 (35877, 4045, 1), -- Resist Full Magic Attack
-(35877, 4408, 1), -- HP Increase (1x)
-(35877, 4409, 1), -- MP Increase (1x)
-(35877, 4410, 11), -- Average P. Atk.
-(35877, 4411, 11), -- Average M. Atk.
-(35877, 4412, 11), -- Average P. Def.
-(35877, 4413, 11), -- Average M. Def.
-(35877, 4414, 2), -- Standard Type
-(35877, 4415, 3), -- One-handed Sword
-(35877, 4416, 19), -- Others
+(35877, 4408, 1), -- HP Modifiers
+(35877, 4409, 1), -- MP Modifiers
+(35877, 4410, 11), -- P. Atk. Modifiers
+(35877, 4411, 11), -- M. Atk. Modifiers
+(35877, 4412, 11), -- P. Def. Modifiers
+(35877, 4413, 11), -- M. Def. Modifiers
+(35877, 4414, 2), -- Armor Type
+(35877, 4415, 3), -- Weapon Type
+(35877, 4416, 19), -- Races
 -- Control Unit
 (35878, 4045, 1), -- Resist Full Magic Attack
-(35878, 4408, 1), -- HP Increase (1x)
-(35878, 4409, 1), -- MP Increase (1x)
-(35878, 4410, 11), -- Average P. Atk.
-(35878, 4411, 11), -- Average M. Atk.
-(35878, 4412, 11), -- Average P. Def.
-(35878, 4413, 11), -- Average M. Def.
-(35878, 4414, 2), -- Standard Type
-(35878, 4415, 3), -- One-handed Sword
-(35878, 4416, 2), -- Magic Creatures
+(35878, 4408, 1), -- HP Modifiers
+(35878, 4409, 1), -- MP Modifiers
+(35878, 4410, 11), -- P. Atk. Modifiers
+(35878, 4411, 11), -- M. Atk. Modifiers
+(35878, 4412, 11), -- P. Def. Modifiers
+(35878, 4413, 11), -- M. Def. Modifiers
+(35878, 4414, 2), -- Armor Type
+(35878, 4415, 3), -- Weapon Type
+(35878, 4416, 2), -- Races
 -- Power Control Unit
 (35879, 4045, 1), -- Resist Full Magic Attack
-(35879, 4408, 1), -- HP Increase (1x)
-(35879, 4409, 1), -- MP Increase (1x)
-(35879, 4410, 11), -- Average P. Atk.
-(35879, 4411, 11), -- Average M. Atk.
-(35879, 4412, 11), -- Average P. Def.
-(35879, 4413, 11), -- Average M. Def.
-(35879, 4414, 2), -- Standard Type
-(35879, 4415, 3), -- One-handed Sword
-(35879, 4416, 19), -- Others
+(35879, 4408, 1), -- HP Modifiers
+(35879, 4409, 1), -- MP Modifiers
+(35879, 4410, 11), -- P. Atk. Modifiers
+(35879, 4411, 11), -- M. Atk. Modifiers
+(35879, 4412, 11), -- P. Def. Modifiers
+(35879, 4413, 11), -- M. Def. Modifiers
+(35879, 4414, 2), -- Armor Type
+(35879, 4415, 3), -- Weapon Type
+(35879, 4416, 19), -- Races
 -- Dwarven Gunnery Sergeant
 (35880, 4045, 1), -- Resist Full Magic Attack
-(35880, 4408, 11), -- HP Increase (3x)
-(35880, 4409, 16), -- MP Increase (8x)
-(35880, 4410, 11), -- Average P. Atk.
-(35880, 4411, 17), -- Very Strong M. Atk.
-(35880, 4412, 11), -- Average P. Def.
-(35880, 4413, 8), -- Weak M. Def.
-(35880, 4414, 2), -- Standard Type
-(35880, 4415, 9), -- Bows
-(35880, 4416, 22), -- Defending Army
+(35880, 4408, 11), -- HP Modifiers
+(35880, 4409, 16), -- MP Modifiers
+(35880, 4410, 11), -- P. Atk. Modifiers
+(35880, 4411, 17), -- M. Atk. Modifiers
+(35880, 4412, 11), -- P. Def. Modifiers
+(35880, 4413, 8), -- M. Def. Modifiers
+(35880, 4414, 2), -- Armor Type
+(35880, 4415, 9), -- Weapon Type
+(35880, 4416, 22), -- Races
 (35880, 5432, 1), -- Weapon Supply
-(35880, 5461, 6), -- Power Shot
-(35880, 5468, 6), -- Fire Shot
+(35880, 5461, 6), -- Castle Gunner Shot
+(35880, 5468, 6), -- Castle Gunner Fire
 -- Scout Golem
 (35881, 4045, 1), -- Resist Full Magic Attack
-(35881, 4408, 6), -- HP Very High
-(35881, 4409, 1), -- MP Increase (1x)
-(35881, 4410, 11), -- Average P. Atk.
-(35881, 4411, 11), -- Average M. Atk.
-(35881, 4412, 11), -- Average P. Def.
-(35881, 4413, 16), -- Very Strong M. Def.
-(35881, 4414, 2), -- Standard Type
-(35881, 4415, 3), -- One-handed Sword
-(35881, 4416, 22), -- Defending Army
+(35881, 4408, 6), -- HP Modifiers
+(35881, 4409, 1), -- MP Modifiers
+(35881, 4410, 11), -- P. Atk. Modifiers
+(35881, 4411, 11), -- M. Atk. Modifiers
+(35881, 4412, 11), -- P. Def. Modifiers
+(35881, 4413, 16), -- M. Def. Modifiers
+(35881, 4414, 2), -- Armor Type
+(35881, 4415, 3), -- Weapon Type
+(35881, 4416, 22), -- Races
 -- Guard Captain
 (35882, 4045, 1), -- Resist Full Magic Attack
 (35882, 4172, 6), -- Stun
-(35882, 4408, 9), -- HP Increase (1/2x)
-(35882, 4409, 1), -- MP Increase (1x)
-(35882, 4410, 8), -- Weak P. Atk.
-(35882, 4411, 11), -- Average M. Atk.
-(35882, 4412, 16), -- Very Strong P. Def.
-(35882, 4413, 11), -- Average M. Def.
-(35882, 4414, 2), -- Standard Type
-(35882, 4415, 3), -- One-handed Sword
-(35882, 4416, 22), -- Defending Army
+(35882, 4408, 9), -- HP Modifiers
+(35882, 4409, 1), -- MP Modifiers
+(35882, 4410, 8), -- P. Atk. Modifiers
+(35882, 4411, 11), -- M. Atk. Modifiers
+(35882, 4412, 16), -- P. Def. Modifiers
+(35882, 4413, 11), -- M. Def. Modifiers
+(35882, 4414, 2), -- Armor Type
+(35882, 4415, 3), -- Weapon Type
+(35882, 4416, 22), -- Races
 (35882, 4435, 5), -- Greater Resist Stun
 (35882, 4439, 5), -- Greater Resist Hold
 (35882, 4440, 5), -- Greater Resist Paralysis
-(35882, 4608, 1), -- Berserker Spirit
+(35882, 4608, 1), -- NPC Clan Buff - Berserk
 (35882, 5432, 1), -- Weapon Supply
-(35882, 5457, 1), -- Complete Recovery
+(35882, 5457, 1), -- NPC Full Recover
 -- Guard
 (35883, 4045, 1), -- Resist Full Magic Attack
-(35883, 4408, 13), -- HP Increase (5x)
-(35883, 4409, 1), -- MP Increase (1x)
-(35883, 4410, 9), -- Slightly Weak P. Atk.
-(35883, 4411, 11), -- Average M. Atk.
-(35883, 4412, 16), -- Very Strong P. Def.
-(35883, 4413, 11), -- Average M. Def.
-(35883, 4414, 2), -- Standard Type
-(35883, 4415, 3), -- One-handed Sword
-(35883, 4416, 22), -- Defending Army
+(35883, 4408, 13), -- HP Modifiers
+(35883, 4409, 1), -- MP Modifiers
+(35883, 4410, 9), -- P. Atk. Modifiers
+(35883, 4411, 11), -- M. Atk. Modifiers
+(35883, 4412, 16), -- P. Def. Modifiers
+(35883, 4413, 11), -- M. Def. Modifiers
+(35883, 4414, 2), -- Armor Type
+(35883, 4415, 3), -- Weapon Type
+(35883, 4416, 22), -- Races
 (35883, 5112, 6), -- Stun
 (35883, 5432, 1), -- Weapon Supply
 -- Guard
 (35884, 4045, 1), -- Resist Full Magic Attack
-(35884, 4408, 13), -- HP Increase (5x)
-(35884, 4409, 1), -- MP Increase (1x)
-(35884, 4410, 9), -- Slightly Weak P. Atk.
-(35884, 4411, 11), -- Average M. Atk.
-(35884, 4412, 11), -- Average P. Def.
-(35884, 4413, 16), -- Very Strong M. Def.
-(35884, 4414, 2), -- Standard Type
-(35884, 4415, 3), -- One-handed Sword
-(35884, 4416, 22), -- Defending Army
-(35884, 5045, 6), -- Power Strike
+(35884, 4408, 13), -- HP Modifiers
+(35884, 4409, 1), -- MP Modifiers
+(35884, 4410, 9), -- P. Atk. Modifiers
+(35884, 4411, 11), -- M. Atk. Modifiers
+(35884, 4412, 11), -- P. Def. Modifiers
+(35884, 4413, 16), -- M. Def. Modifiers
+(35884, 4414, 2), -- Armor Type
+(35884, 4415, 3), -- Weapon Type
+(35884, 4416, 22), -- Races
+(35884, 5045, 6), -- Castle Power Strike
 (35884, 5432, 1), -- Weapon Supply
 -- Support Unit Captain
 (35885, 4045, 1), -- Resist Full Magic Attack
-(35885, 4194, 6), -- Aura Burn
-(35885, 4196, 6), -- Decrease Speed
-(35885, 4408, 9), -- HP Increase (1/2x)
-(35885, 4409, 16), -- MP Increase (8x)
-(35885, 4410, 11), -- Average P. Atk.
-(35885, 4411, 14), -- Strong M. Atk.
-(35885, 4412, 8), -- Weak P. Def.
-(35885, 4413, 14), -- Strong M. Def.
-(35885, 4414, 3), -- Light Armor Type
-(35885, 4415, 3), -- One-handed Sword
-(35885, 4416, 22), -- Defending Army
-(35885, 5396, 1), -- Spell Force
-(35885, 5398, 1), -- Final Burn
+(35885, 4194, 6), -- BOSS Aura Burn
+(35885, 4196, 6), -- Decreases Speed
+(35885, 4408, 9), -- HP Modifiers
+(35885, 4409, 16), -- MP Modifiers
+(35885, 4410, 11), -- P. Atk. Modifiers
+(35885, 4411, 14), -- M. Atk. Modifiers
+(35885, 4412, 8), -- P. Def. Modifiers
+(35885, 4413, 14), -- M. Def. Modifiers
+(35885, 4414, 3), -- Armor Type
+(35885, 4415, 3), -- Weapon Type
+(35885, 4416, 22), -- Races
+(35885, 5396, 1), -- NPC - Spell Stance
+(35885, 5398, 1), -- NPC - Combination Force
 (35885, 5432, 1), -- Weapon Supply
-(35885, 5457, 1), -- Complete Recovery
+(35885, 5457, 1), -- NPC Full Recover
 -- Wizard
 (35886, 4045, 1), -- Resist Full Magic Attack
-(35886, 4077, 6), -- Aura Burn
-(35886, 4408, 13), -- HP Increase (5x)
-(35886, 4409, 16), -- MP Increase (8x)
-(35886, 4410, 11), -- Average P. Atk.
-(35886, 4411, 16), -- Very Strong M. Atk.
-(35886, 4412, 8), -- Weak P. Def.
-(35886, 4413, 11), -- Average M. Def.
-(35886, 4414, 3), -- Light Armor Type
-(35886, 4415, 3), -- One-handed Sword
-(35886, 4416, 22), -- Defending Army
-(35886, 5053, 6), -- Hydro Blast
-(35886, 5396, 1), -- Spell Force
+(35886, 4077, 6), -- NPC Aura Burn
+(35886, 4408, 13), -- HP Modifiers
+(35886, 4409, 16), -- MP Modifiers
+(35886, 4410, 11), -- P. Atk. Modifiers
+(35886, 4411, 16), -- M. Atk. Modifiers
+(35886, 4412, 8), -- P. Def. Modifiers
+(35886, 4413, 11), -- M. Def. Modifiers
+(35886, 4414, 3), -- Armor Type
+(35886, 4415, 3), -- Weapon Type
+(35886, 4416, 22), -- Races
+(35886, 5053, 6), -- Castle DD Water
+(35886, 5396, 1), -- NPC - Spell Stance
 (35886, 5432, 1), -- Weapon Supply
 -- Healer
 (35887, 4045, 1), -- Resist Full Magic Attack
 (35887, 4115, 1), -- Aden Heal
-(35887, 4408, 15), -- HP Increase (7x)
-(35887, 4409, 16), -- MP Increase (8x)
-(35887, 4410, 11), -- Average P. Atk.
-(35887, 4411, 17), -- Very Strong M. Atk.
-(35887, 4412, 11), -- Average P. Def.
-(35887, 4413, 16), -- Very Strong M. Def.
-(35887, 4414, 3), -- Light Armor Type
-(35887, 4415, 3), -- One-handed Sword
-(35887, 4416, 22), -- Defending Army
+(35887, 4408, 15), -- HP Modifiers
+(35887, 4409, 16), -- MP Modifiers
+(35887, 4410, 11), -- P. Atk. Modifiers
+(35887, 4411, 17), -- M. Atk. Modifiers
+(35887, 4412, 11), -- P. Def. Modifiers
+(35887, 4413, 16), -- M. Def. Modifiers
+(35887, 4414, 3), -- Armor Type
+(35887, 4415, 3), -- Weapon Type
+(35887, 4416, 22), -- Races
 (35887, 5114, 6), -- Hold
 (35887, 5432, 1), -- Weapon Supply
 -- Archer Captain
 (35888, 4045, 1), -- Resist Full Magic Attack
-(35888, 4408, 9), -- HP Increase (1/2x)
-(35888, 4409, 1), -- MP Increase (1x)
-(35888, 4410, 16), -- Very Strong P. Atk.
-(35888, 4411, 11), -- Average M. Atk.
-(35888, 4412, 8), -- Weak P. Def.
-(35888, 4413, 11), -- Average M. Def.
-(35888, 4414, 3), -- Light Armor Type
-(35888, 4415, 9), -- Bows
-(35888, 4416, 22), -- Defending Army
-(35888, 4755, 6), -- Power Shot
+(35888, 4408, 9), -- HP Modifiers
+(35888, 4409, 1), -- MP Modifiers
+(35888, 4410, 16), -- P. Atk. Modifiers
+(35888, 4411, 11), -- M. Atk. Modifiers
+(35888, 4412, 8), -- P. Def. Modifiers
+(35888, 4413, 11), -- M. Def. Modifiers
+(35888, 4414, 3), -- Armor Type
+(35888, 4415, 9), -- Weapon Type
+(35888, 4416, 22), -- Races
+(35888, 4755, 6), -- BOSS Power Shot
 (35888, 5432, 1), -- Weapon Supply
-(35888, 5457, 1), -- Complete Recovery
+(35888, 5457, 1), -- NPC Full Recover
 -- Archer
 (35889, 4045, 1), -- Resist Full Magic Attack
-(35889, 4408, 13), -- HP Increase (5x)
-(35889, 4409, 1), -- MP Increase (1x)
-(35889, 4410, 14), -- Strong P. Atk.
-(35889, 4411, 11), -- Average M. Atk.
-(35889, 4412, 8), -- Weak P. Def.
-(35889, 4413, 11), -- Average M. Def.
-(35889, 4414, 3), -- Light Armor Type
-(35889, 4415, 9), -- Bows
-(35889, 4416, 22), -- Defending Army
-(35889, 5046, 6), -- Power Shot
+(35889, 4408, 13), -- HP Modifiers
+(35889, 4409, 1), -- MP Modifiers
+(35889, 4410, 14), -- P. Atk. Modifiers
+(35889, 4411, 11), -- M. Atk. Modifiers
+(35889, 4412, 8), -- P. Def. Modifiers
+(35889, 4413, 11), -- M. Def. Modifiers
+(35889, 4414, 3), -- Armor Type
+(35889, 4415, 9), -- Weapon Type
+(35889, 4416, 22), -- Races
+(35889, 5046, 6), -- Castle Power Shot
 (35889, 5432, 1), -- Weapon Supply
 -- General
 (35890, 4045, 1), -- Resist Full Magic Attack
-(35890, 4408, 9), -- HP Increase (1/2x)
-(35890, 4409, 1), -- MP Increase (1x)
-(35890, 4410, 14), -- Strong P. Atk.
-(35890, 4411, 11), -- Average M. Atk.
-(35890, 4412, 11), -- Average P. Def.
-(35890, 4413, 11), -- Average M. Def.
-(35890, 4414, 2), -- Standard Type
-(35890, 4415, 19), -- Dual-Sword Weapons
-(35890, 4416, 22), -- Defending Army
+(35890, 4408, 9), -- HP Modifiers
+(35890, 4409, 1), -- MP Modifiers
+(35890, 4410, 14), -- P. Atk. Modifiers
+(35890, 4411, 11), -- M. Atk. Modifiers
+(35890, 4412, 11), -- P. Def. Modifiers
+(35890, 4413, 11), -- M. Def. Modifiers
+(35890, 4414, 2), -- Armor Type
+(35890, 4415, 19), -- Weapon Type
+(35890, 4416, 22), -- Races
 (35890, 4725, 6), -- Stun
 (35890, 5432, 1), -- Weapon Supply
-(35890, 5457, 1), -- Complete Recovery
+(35890, 5457, 1), -- NPC Full Recover
 -- Minister 
 (35891, 4045, 1), -- Resist Full Magic Attack
-(35891, 4408, 9), -- HP Increase (1/2x)
-(35891, 4409, 1), -- MP Increase (1x)
-(35891, 4410, 14), -- Strong P. Atk.
-(35891, 4411, 11), -- Average M. Atk.
-(35891, 4412, 11), -- Average P. Def.
-(35891, 4413, 11), -- Average M. Def.
-(35891, 4414, 2), -- Standard Type
-(35891, 4415, 3), -- One-handed Sword
-(35891, 4416, 22), -- Defending Army
-(35891, 4721, 6), -- Power Strike
+(35891, 4408, 9), -- HP Modifiers
+(35891, 4409, 1), -- MP Modifiers
+(35891, 4410, 14), -- P. Atk. Modifiers
+(35891, 4411, 11), -- M. Atk. Modifiers
+(35891, 4412, 11), -- P. Def. Modifiers
+(35891, 4413, 11), -- M. Def. Modifiers
+(35891, 4414, 2), -- Armor Type
+(35891, 4415, 3), -- Weapon Type
+(35891, 4416, 22), -- Races
+(35891, 4721, 6), -- BOSS Strike
 (35891, 5432, 1), -- Weapon Supply
-(35891, 5457, 1), -- Complete Recovery
+(35891, 5457, 1), -- NPC Full Recover
 -- Ballista
 (35892, 2342, 1), -- Ballista Bomb
 (35892, 4045, 1), -- Resist Full Magic Attack
-(35892, 4408, 16), -- HP Increase (8x)
-(35892, 4409, 1), -- MP Increase (1x)
-(35892, 4410, 11), -- Average P. Atk.
-(35892, 4411, 11), -- Average M. Atk.
-(35892, 4412, 11), -- Average P. Def.
-(35892, 4413, 11), -- Average M. Def.
-(35892, 4414, 2), -- Standard Type
-(35892, 4415, 3), -- One-handed Sword
-(35892, 4416, 22), -- Defending Army
+(35892, 4408, 16), -- HP Modifiers
+(35892, 4409, 1), -- MP Modifiers
+(35892, 4410, 11), -- P. Atk. Modifiers
+(35892, 4411, 11), -- M. Atk. Modifiers
+(35892, 4412, 11), -- P. Def. Modifiers
+(35892, 4413, 11), -- M. Def. Modifiers
+(35892, 4414, 2), -- Armor Type
+(35892, 4415, 3), -- Weapon Type
+(35892, 4416, 22), -- Races
 -- Mercenary Captain
 (35893, 4045, 1), -- Resist Full Magic Attack
-(35893, 4408, 11), -- HP Increase (3x)
-(35893, 4409, 1), -- MP Increase (1x)
-(35893, 4410, 11), -- Average P. Atk.
-(35893, 4411, 11), -- Average M. Atk.
-(35893, 4412, 11), -- Average P. Def.
-(35893, 4413, 11), -- Average M. Def.
-(35893, 4414, 2), -- Standard Type
-(35893, 4415, 3), -- One-handed Sword
-(35893, 4416, 14), -- Humans
+(35893, 4408, 11), -- HP Modifiers
+(35893, 4409, 1), -- MP Modifiers
+(35893, 4410, 11), -- P. Atk. Modifiers
+(35893, 4411, 11), -- M. Atk. Modifiers
+(35893, 4412, 11), -- P. Def. Modifiers
+(35893, 4413, 11), -- M. Def. Modifiers
+(35893, 4414, 2), -- Armor Type
+(35893, 4415, 3), -- Weapon Type
+(35893, 4416, 14), -- Races
 -- Mercenary Private
 (35894, 4045, 1), -- Resist Full Magic Attack
-(35894, 4408, 11), -- HP Increase (3x)
-(35894, 4409, 1), -- MP Increase (1x)
-(35894, 4410, 13), -- Slightly Strong P. Atk.
-(35894, 4411, 11), -- Average M. Atk.
-(35894, 4412, 11), -- Average P. Def.
-(35894, 4413, 11), -- Average M. Def.
-(35894, 4414, 2), -- Standard Type
-(35894, 4415, 11), -- Spears
-(35894, 4416, 17), -- Orcs
+(35894, 4408, 11), -- HP Modifiers
+(35894, 4409, 1), -- MP Modifiers
+(35894, 4410, 13), -- P. Atk. Modifiers
+(35894, 4411, 11), -- M. Atk. Modifiers
+(35894, 4412, 11), -- P. Def. Modifiers
+(35894, 4413, 11), -- M. Def. Modifiers
+(35894, 4414, 2), -- Armor Type
+(35894, 4415, 11), -- Weapon Type
+(35894, 4416, 17), -- Races
 -- Flagpole
 (35895, 4045, 1), -- Resist Full Magic Attack
-(35895, 4408, 1), -- HP Increase (1x)
-(35895, 4409, 1), -- MP Increase (1x)
-(35895, 4410, 11), -- Average P. Atk.
-(35895, 4411, 11), -- Average M. Atk.
-(35895, 4412, 11), -- Average P. Def.
-(35895, 4413, 11), -- Average M. Def.
-(35895, 4414, 2), -- Standard Type
-(35895, 4415, 3), -- One-handed Sword
-(35895, 4416, 19), -- Others
+(35895, 4408, 1), -- HP Modifiers
+(35895, 4409, 1), -- MP Modifiers
+(35895, 4410, 11), -- P. Atk. Modifiers
+(35895, 4411, 11), -- M. Atk. Modifiers
+(35895, 4412, 11), -- P. Def. Modifiers
+(35895, 4413, 11), -- M. Def. Modifiers
+(35895, 4414, 2), -- Armor Type
+(35895, 4415, 3), -- Weapon Type
+(35895, 4416, 19), -- Races
 -- Foreman
 (35896, 4045, 1), -- Resist Full Magic Attack
-(35896, 4408, 1), -- HP Increase (1x)
-(35896, 4409, 1), -- MP Increase (1x)
-(35896, 4410, 11), -- Average P. Atk.
-(35896, 4411, 11), -- Average M. Atk.
-(35896, 4412, 11), -- Average P. Def.
-(35896, 4413, 11), -- Average M. Def.
-(35896, 4414, 2), -- Standard Type
-(35896, 4415, 3), -- One-handed Sword
-(35896, 4416, 14), -- Humans
+(35896, 4408, 1), -- HP Modifiers
+(35896, 4409, 1), -- MP Modifiers
+(35896, 4410, 11), -- P. Atk. Modifiers
+(35896, 4411, 11), -- M. Atk. Modifiers
+(35896, 4412, 11), -- P. Def. Modifiers
+(35896, 4413, 11), -- M. Def. Modifiers
+(35896, 4414, 2), -- Armor Type
+(35896, 4415, 3), -- Weapon Type
+(35896, 4416, 14), -- Races
 -- Suspicious Merchant
 (35897, 4045, 1), -- Resist Full Magic Attack
-(35897, 4408, 1), -- HP Increase (1x)
-(35897, 4409, 1), -- MP Increase (1x)
-(35897, 4410, 11), -- Average P. Atk.
-(35897, 4411, 11), -- Average M. Atk.
-(35897, 4412, 11), -- Average P. Def.
-(35897, 4413, 11), -- Average M. Def.
-(35897, 4414, 2), -- Standard Type
-(35897, 4415, 3), -- One-handed Sword
-(35897, 4416, 17), -- Orcs
+(35897, 4408, 1), -- HP Modifiers
+(35897, 4409, 1), -- MP Modifiers
+(35897, 4410, 11), -- P. Atk. Modifiers
+(35897, 4411, 11), -- M. Atk. Modifiers
+(35897, 4412, 11), -- P. Def. Modifiers
+(35897, 4413, 11), -- M. Def. Modifiers
+(35897, 4414, 2), -- Armor Type
+(35897, 4415, 3), -- Weapon Type
+(35897, 4416, 17), -- Races
 -- Guard Captain
 (35898, 4045, 1), -- Resist Full Magic Attack
-(35898, 4408, 1), -- HP Increase (1x)
-(35898, 4409, 1), -- MP Increase (1x)
-(35898, 4410, 11), -- Average P. Atk.
-(35898, 4411, 11), -- Average M. Atk.
-(35898, 4412, 11), -- Average P. Def.
-(35898, 4413, 11), -- Average M. Def.
-(35898, 4414, 2), -- Standard Type
-(35898, 4415, 3), -- One-handed Sword
-(35898, 4416, 14), -- Humans
+(35898, 4408, 1), -- HP Modifiers
+(35898, 4409, 1), -- MP Modifiers
+(35898, 4410, 11), -- P. Atk. Modifiers
+(35898, 4411, 11), -- M. Atk. Modifiers
+(35898, 4412, 11), -- P. Def. Modifiers
+(35898, 4413, 11), -- M. Def. Modifiers
+(35898, 4414, 2), -- Armor Type
+(35898, 4415, 3), -- Weapon Type
+(35898, 4416, 14), -- Races
 -- Archer Captain
 (35899, 4045, 1), -- Resist Full Magic Attack
-(35899, 4408, 1), -- HP Increase (1x)
-(35899, 4409, 1), -- MP Increase (1x)
-(35899, 4410, 11), -- Average P. Atk.
-(35899, 4411, 11), -- Average M. Atk.
-(35899, 4412, 11), -- Average P. Def.
-(35899, 4413, 11), -- Average M. Def.
-(35899, 4414, 2), -- Standard Type
-(35899, 4415, 9), -- Bows
-(35899, 4416, 15), -- Elves
+(35899, 4408, 1), -- HP Modifiers
+(35899, 4409, 1), -- MP Modifiers
+(35899, 4410, 11), -- P. Atk. Modifiers
+(35899, 4411, 11), -- M. Atk. Modifiers
+(35899, 4412, 11), -- P. Def. Modifiers
+(35899, 4413, 11), -- M. Def. Modifiers
+(35899, 4414, 2), -- Armor Type
+(35899, 4415, 9), -- Weapon Type
+(35899, 4416, 15), -- Races
 -- Support Unit Captain
 (35900, 4045, 1), -- Resist Full Magic Attack
-(35900, 4408, 1), -- HP Increase (1x)
-(35900, 4409, 1), -- MP Increase (1x)
-(35900, 4410, 11), -- Average P. Atk.
-(35900, 4411, 11), -- Average M. Atk.
-(35900, 4412, 11), -- Average P. Def.
-(35900, 4413, 11), -- Average M. Def.
-(35900, 4414, 2), -- Standard Type
-(35900, 4415, 3), -- One-handed Sword
-(35900, 4416, 14), -- Humans
+(35900, 4408, 1), -- HP Modifiers
+(35900, 4409, 1), -- MP Modifiers
+(35900, 4410, 11), -- P. Atk. Modifiers
+(35900, 4411, 11), -- M. Atk. Modifiers
+(35900, 4412, 11), -- P. Def. Modifiers
+(35900, 4413, 11), -- M. Def. Modifiers
+(35900, 4414, 2), -- Armor Type
+(35900, 4415, 3), -- Weapon Type
+(35900, 4416, 14), -- Races
 -- Engineering Manager
 (35901, 4045, 1), -- Resist Full Magic Attack
-(35901, 4408, 1), -- HP Increase (1x)
-(35901, 4409, 1), -- MP Increase (1x)
-(35901, 4410, 11), -- Average P. Atk.
-(35901, 4411, 11), -- Average M. Atk.
-(35901, 4412, 11), -- Average P. Def.
-(35901, 4413, 11), -- Average M. Def.
-(35901, 4414, 2), -- Standard Type
-(35901, 4415, 3), -- One-handed Sword
-(35901, 4416, 18), -- Dwarves
+(35901, 4408, 1), -- HP Modifiers
+(35901, 4409, 1), -- MP Modifiers
+(35901, 4410, 11), -- P. Atk. Modifiers
+(35901, 4411, 11), -- M. Atk. Modifiers
+(35901, 4412, 11), -- P. Def. Modifiers
+(35901, 4413, 11), -- M. Def. Modifiers
+(35901, 4414, 2), -- Armor Type
+(35901, 4415, 3), -- Weapon Type
+(35901, 4416, 18), -- Races
 -- Logistics Officer
 (35902, 4045, 1), -- Resist Full Magic Attack
-(35902, 4408, 1), -- HP Increase (1x)
-(35902, 4409, 1), -- MP Increase (1x)
-(35902, 4410, 11), -- Average P. Atk.
-(35902, 4411, 11), -- Average M. Atk.
-(35902, 4412, 11), -- Average P. Def.
-(35902, 4413, 11), -- Average M. Def.
-(35902, 4414, 2), -- Standard Type
-(35902, 4415, 3), -- One-handed Sword
-(35902, 4416, 18), -- Dwarves
+(35902, 4408, 1), -- HP Modifiers
+(35902, 4409, 1), -- MP Modifiers
+(35902, 4410, 11), -- P. Atk. Modifiers
+(35902, 4411, 11), -- M. Atk. Modifiers
+(35902, 4412, 11), -- P. Def. Modifiers
+(35902, 4413, 11), -- M. Def. Modifiers
+(35902, 4414, 2), -- Armor Type
+(35902, 4415, 3), -- Weapon Type
+(35902, 4416, 18), -- Races
 -- Supply Box
 (35903, 4045, 1), -- Resist Full Magic Attack
-(35903, 4408, 1), -- HP Increase (1x)
-(35903, 4409, 1), -- MP Increase (1x)
-(35903, 4410, 11), -- Average P. Atk.
-(35903, 4411, 11), -- Average M. Atk.
-(35903, 4412, 11), -- Average P. Def.
-(35903, 4413, 11), -- Average M. Def.
-(35903, 4414, 2), -- Standard Type
-(35903, 4415, 3), -- One-handed Sword
-(35903, 4416, 2), -- Magic Creatures
+(35903, 4408, 1), -- HP Modifiers
+(35903, 4409, 1), -- MP Modifiers
+(35903, 4410, 11), -- P. Atk. Modifiers
+(35903, 4411, 11), -- M. Atk. Modifiers
+(35903, 4412, 11), -- P. Def. Modifiers
+(35903, 4413, 11), -- M. Def. Modifiers
+(35903, 4414, 2), -- Armor Type
+(35903, 4415, 3), -- Weapon Type
+(35903, 4416, 2), -- Races
 -- Detention Camp Warden
 (35904, 4045, 1), -- Resist Full Magic Attack
-(35904, 4408, 1), -- HP Increase (1x)
-(35904, 4409, 1), -- MP Increase (1x)
-(35904, 4410, 11), -- Average P. Atk.
-(35904, 4411, 11), -- Average M. Atk.
-(35904, 4412, 11), -- Average P. Def.
-(35904, 4413, 11), -- Average M. Def.
-(35904, 4414, 2), -- Standard Type
-(35904, 4415, 3), -- One-handed Sword
-(35904, 4416, 14), -- Humans
+(35904, 4408, 1), -- HP Modifiers
+(35904, 4409, 1), -- MP Modifiers
+(35904, 4410, 11), -- P. Atk. Modifiers
+(35904, 4411, 11), -- M. Atk. Modifiers
+(35904, 4412, 11), -- P. Def. Modifiers
+(35904, 4413, 11), -- M. Def. Modifiers
+(35904, 4414, 2), -- Armor Type
+(35904, 4415, 3), -- Weapon Type
+(35904, 4416, 14), -- Races
 -- Doorman
 (35905, 4045, 1), -- Resist Full Magic Attack
-(35905, 4408, 1), -- HP Increase (1x)
-(35905, 4409, 1), -- MP Increase (1x)
-(35905, 4410, 11), -- Average P. Atk.
-(35905, 4411, 11), -- Average M. Atk.
-(35905, 4412, 11), -- Average P. Def.
-(35905, 4413, 11), -- Average M. Def.
-(35905, 4414, 2), -- Standard Type
-(35905, 4415, 3), -- One-handed Sword
-(35905, 4416, 14), -- Humans
+(35905, 4408, 1), -- HP Modifiers
+(35905, 4409, 1), -- MP Modifiers
+(35905, 4410, 11), -- P. Atk. Modifiers
+(35905, 4411, 11), -- M. Atk. Modifiers
+(35905, 4412, 11), -- P. Def. Modifiers
+(35905, 4413, 11), -- M. Def. Modifiers
+(35905, 4414, 2), -- Armor Type
+(35905, 4415, 3), -- Weapon Type
+(35905, 4416, 14), -- Races
 -- Doorman
 (35906, 4045, 1), -- Resist Full Magic Attack
-(35906, 4408, 1), -- HP Increase (1x)
-(35906, 4409, 1), -- MP Increase (1x)
-(35906, 4410, 11), -- Average P. Atk.
-(35906, 4411, 11), -- Average M. Atk.
-(35906, 4412, 11), -- Average P. Def.
-(35906, 4413, 11), -- Average M. Def.
-(35906, 4414, 2), -- Standard Type
-(35906, 4415, 3), -- One-handed Sword
-(35906, 4416, 14), -- Humans
+(35906, 4408, 1), -- HP Modifiers
+(35906, 4409, 1), -- MP Modifiers
+(35906, 4410, 11), -- P. Atk. Modifiers
+(35906, 4411, 11), -- M. Atk. Modifiers
+(35906, 4412, 11), -- P. Def. Modifiers
+(35906, 4413, 11), -- M. Def. Modifiers
+(35906, 4414, 2), -- Armor Type
+(35906, 4415, 3), -- Weapon Type
+(35906, 4416, 14), -- Races
 -- Doorman
 (35907, 4045, 1), -- Resist Full Magic Attack
-(35907, 4408, 1), -- HP Increase (1x)
-(35907, 4409, 1), -- MP Increase (1x)
-(35907, 4410, 11), -- Average P. Atk.
-(35907, 4411, 11), -- Average M. Atk.
-(35907, 4412, 11), -- Average P. Def.
-(35907, 4413, 11), -- Average M. Def.
-(35907, 4414, 2), -- Standard Type
-(35907, 4415, 3), -- One-handed Sword
-(35907, 4416, 14), -- Humans
+(35907, 4408, 1), -- HP Modifiers
+(35907, 4409, 1), -- MP Modifiers
+(35907, 4410, 11), -- P. Atk. Modifiers
+(35907, 4411, 11), -- M. Atk. Modifiers
+(35907, 4412, 11), -- P. Def. Modifiers
+(35907, 4413, 11), -- M. Def. Modifiers
+(35907, 4414, 2), -- Armor Type
+(35907, 4415, 3), -- Weapon Type
+(35907, 4416, 14), -- Races
 -- Rebel Commander
 (35908, 4045, 1), -- Resist Full Magic Attack
-(35908, 4178, 7), -- Flame Strike
-(35908, 4195, 7), -- Twister
-(35908, 4408, 10), -- HP Increase (2x)
-(35908, 4409, 1), -- MP Increase (1x)
-(35908, 4410, 11), -- Average P. Atk.
-(35908, 4411, 17), -- Very Strong M. Atk.
-(35908, 4412, 11), -- Average P. Def.
-(35908, 4413, 11), -- Average M. Def.
-(35908, 4414, 2), -- Standard Type
-(35908, 4415, 3), -- One-handed Sword
-(35908, 4416, 16), -- Dark Elves
+(35908, 4178, 7), -- BOSS Flame Strike
+(35908, 4195, 7), -- BOSS Twister
+(35908, 4408, 10), -- HP Modifiers
+(35908, 4409, 1), -- MP Modifiers
+(35908, 4410, 11), -- P. Atk. Modifiers
+(35908, 4411, 17), -- M. Atk. Modifiers
+(35908, 4412, 11), -- P. Def. Modifiers
+(35908, 4413, 11), -- M. Def. Modifiers
+(35908, 4414, 2), -- Armor Type
+(35908, 4415, 3), -- Weapon Type
+(35908, 4416, 16), -- Races
 -- Decorated Rebel Soldier
 (35909, 4045, 1), -- Resist Full Magic Attack
-(35909, 4408, 14), -- HP Increase (6x)
-(35909, 4409, 1), -- MP Increase (1x)
-(35909, 4410, 15), -- Strong P. Atk.
-(35909, 4411, 11), -- Average M. Atk.
-(35909, 4412, 11), -- Average P. Def.
-(35909, 4413, 15), -- Strong M. Def.
-(35909, 4414, 2), -- Standard Type
-(35909, 4415, 1), -- Bare Hands
-(35909, 4416, 9), -- Demons
-(35909, 5065, 7), -- Unholy Strike
+(35909, 4408, 14), -- HP Modifiers
+(35909, 4409, 1), -- MP Modifiers
+(35909, 4410, 15), -- P. Atk. Modifiers
+(35909, 4411, 11), -- M. Atk. Modifiers
+(35909, 4412, 11), -- P. Def. Modifiers
+(35909, 4413, 15), -- M. Def. Modifiers
+(35909, 4414, 2), -- Armor Type
+(35909, 4415, 1), -- Weapon Type
+(35909, 4416, 9), -- Races
+(35909, 5065, 7), -- Castle DD Unholy
 -- Rebel Private
 (35910, 4045, 1), -- Resist Full Magic Attack
-(35910, 4408, 12), -- HP Increase (4x)
-(35910, 4409, 1), -- MP Increase (1x)
-(35910, 4410, 14), -- Strong P. Atk.
-(35910, 4411, 11), -- Average M. Atk.
-(35910, 4412, 11), -- Average P. Def.
-(35910, 4413, 11), -- Average M. Def.
-(35910, 4414, 2), -- Standard Type
-(35910, 4415, 11), -- Spears
-(35910, 4416, 14), -- Humans
+(35910, 4408, 12), -- HP Modifiers
+(35910, 4409, 1), -- MP Modifiers
+(35910, 4410, 14), -- P. Atk. Modifiers
+(35910, 4411, 11), -- M. Atk. Modifiers
+(35910, 4412, 11), -- P. Def. Modifiers
+(35910, 4413, 11), -- M. Def. Modifiers
+(35910, 4414, 2), -- Armor Type
+(35910, 4415, 11), -- Weapon Type
+(35910, 4416, 14), -- Races
 -- Court Guard
 (35911, 4045, 1), -- Resist Full Magic Attack
-(35911, 4408, 12), -- HP Increase (4x)
-(35911, 4409, 1), -- MP Increase (1x)
-(35911, 4410, 11), -- Average P. Atk.
-(35911, 4411, 11), -- Average M. Atk.
-(35911, 4412, 11), -- Average P. Def.
-(35911, 4413, 16), -- Very Strong M. Def.
-(35911, 4414, 2), -- Standard Type
-(35911, 4415, 11), -- Spears
-(35911, 4416, 22), -- Defending Army
+(35911, 4408, 12), -- HP Modifiers
+(35911, 4409, 1), -- MP Modifiers
+(35911, 4410, 11), -- P. Atk. Modifiers
+(35911, 4411, 11), -- M. Atk. Modifiers
+(35911, 4412, 11), -- P. Def. Modifiers
+(35911, 4413, 16), -- M. Def. Modifiers
+(35911, 4414, 2), -- Armor Type
+(35911, 4415, 11), -- Weapon Type
+(35911, 4416, 22), -- Races
 (35911, 5432, 1), -- Weapon Supply
 -- Guard
 (35912, 4045, 1), -- Resist Full Magic Attack
-(35912, 4408, 12), -- HP Increase (4x)
-(35912, 4409, 1), -- MP Increase (1x)
-(35912, 4410, 15), -- Strong P. Atk.
-(35912, 4411, 11), -- Average M. Atk.
-(35912, 4412, 11), -- Average P. Def.
-(35912, 4413, 11), -- Average M. Def.
-(35912, 4414, 3), -- Light Armor Type
-(35912, 4415, 9), -- Bows
-(35912, 4416, 22), -- Defending Army
+(35912, 4408, 12), -- HP Modifiers
+(35912, 4409, 1), -- MP Modifiers
+(35912, 4410, 15), -- P. Atk. Modifiers
+(35912, 4411, 11), -- M. Atk. Modifiers
+(35912, 4412, 11), -- P. Def. Modifiers
+(35912, 4413, 11), -- M. Def. Modifiers
+(35912, 4414, 3), -- Armor Type
+(35912, 4415, 9), -- Weapon Type
+(35912, 4416, 22), -- Races
 (35912, 5432, 1), -- Weapon Supply
 -- Power Control Unit
 (35913, 4045, 1), -- Resist Full Magic Attack
-(35913, 4408, 1), -- HP Increase (1x)
-(35913, 4409, 1), -- MP Increase (1x)
-(35913, 4410, 11), -- Average P. Atk.
-(35913, 4411, 11), -- Average M. Atk.
-(35913, 4412, 11), -- Average P. Def.
-(35913, 4413, 11), -- Average M. Def.
-(35913, 4414, 2), -- Standard Type
-(35913, 4415, 3), -- One-handed Sword
-(35913, 4416, 19), -- Others
+(35913, 4408, 1), -- HP Modifiers
+(35913, 4409, 1), -- MP Modifiers
+(35913, 4410, 11), -- P. Atk. Modifiers
+(35913, 4411, 11), -- M. Atk. Modifiers
+(35913, 4412, 11), -- P. Def. Modifiers
+(35913, 4413, 11), -- M. Def. Modifiers
+(35913, 4414, 2), -- Armor Type
+(35913, 4415, 3), -- Weapon Type
+(35913, 4416, 19), -- Races
 -- Dwarven Gunnery Sergeant
 (35914, 4045, 1), -- Resist Full Magic Attack
-(35914, 4408, 11), -- HP Increase (3x)
-(35914, 4409, 16), -- MP Increase (8x)
-(35914, 4410, 11), -- Average P. Atk.
-(35914, 4411, 17), -- Very Strong M. Atk.
-(35914, 4412, 11), -- Average P. Def.
-(35914, 4413, 8), -- Weak M. Def.
-(35914, 4414, 2), -- Standard Type
-(35914, 4415, 9), -- Bows
-(35914, 4416, 22), -- Defending Army
+(35914, 4408, 11), -- HP Modifiers
+(35914, 4409, 16), -- MP Modifiers
+(35914, 4410, 11), -- P. Atk. Modifiers
+(35914, 4411, 17), -- M. Atk. Modifiers
+(35914, 4412, 11), -- P. Def. Modifiers
+(35914, 4413, 8), -- M. Def. Modifiers
+(35914, 4414, 2), -- Armor Type
+(35914, 4415, 9), -- Weapon Type
+(35914, 4416, 22), -- Races
 (35914, 5432, 1), -- Weapon Supply
-(35914, 5461, 6), -- Power Shot
-(35914, 5468, 6), -- Fire Shot
+(35914, 5461, 6), -- Castle Gunner Shot
+(35914, 5468, 6), -- Castle Gunner Fire
 -- Guard Captain
 (35915, 4045, 1), -- Resist Full Magic Attack
 (35915, 4172, 6), -- Stun
-(35915, 4408, 9), -- HP Increase (1/2x)
-(35915, 4409, 1), -- MP Increase (1x)
-(35915, 4410, 8), -- Weak P. Atk.
-(35915, 4411, 11), -- Average M. Atk.
-(35915, 4412, 16), -- Very Strong P. Def.
-(35915, 4413, 11), -- Average M. Def.
-(35915, 4414, 2), -- Standard Type
-(35915, 4415, 3), -- One-handed Sword
-(35915, 4416, 22), -- Defending Army
+(35915, 4408, 9), -- HP Modifiers
+(35915, 4409, 1), -- MP Modifiers
+(35915, 4410, 8), -- P. Atk. Modifiers
+(35915, 4411, 11), -- M. Atk. Modifiers
+(35915, 4412, 16), -- P. Def. Modifiers
+(35915, 4413, 11), -- M. Def. Modifiers
+(35915, 4414, 2), -- Armor Type
+(35915, 4415, 3), -- Weapon Type
+(35915, 4416, 22), -- Races
 (35915, 4435, 5), -- Greater Resist Stun
 (35915, 4439, 5), -- Greater Resist Hold
 (35915, 4440, 5), -- Greater Resist Paralysis
-(35915, 4608, 1), -- Berserker Spirit
+(35915, 4608, 1), -- NPC Clan Buff - Berserk
 (35915, 5432, 1), -- Weapon Supply
-(35915, 5457, 1), -- Complete Recovery
+(35915, 5457, 1), -- NPC Full Recover
 -- Guard
 (35916, 4045, 1), -- Resist Full Magic Attack
-(35916, 4408, 13), -- HP Increase (5x)
-(35916, 4409, 1), -- MP Increase (1x)
-(35916, 4410, 9), -- Slightly Weak P. Atk.
-(35916, 4411, 11), -- Average M. Atk.
-(35916, 4412, 16), -- Very Strong P. Def.
-(35916, 4413, 11), -- Average M. Def.
-(35916, 4414, 2), -- Standard Type
-(35916, 4415, 3), -- One-handed Sword
-(35916, 4416, 22), -- Defending Army
+(35916, 4408, 13), -- HP Modifiers
+(35916, 4409, 1), -- MP Modifiers
+(35916, 4410, 9), -- P. Atk. Modifiers
+(35916, 4411, 11), -- M. Atk. Modifiers
+(35916, 4412, 16), -- P. Def. Modifiers
+(35916, 4413, 11), -- M. Def. Modifiers
+(35916, 4414, 2), -- Armor Type
+(35916, 4415, 3), -- Weapon Type
+(35916, 4416, 22), -- Races
 (35916, 5112, 6), -- Stun
 (35916, 5432, 1), -- Weapon Supply
 -- Guard
 (35917, 4045, 1), -- Resist Full Magic Attack
-(35917, 4408, 13), -- HP Increase (5x)
-(35917, 4409, 1), -- MP Increase (1x)
-(35917, 4410, 9), -- Slightly Weak P. Atk.
-(35917, 4411, 11), -- Average M. Atk.
-(35917, 4412, 11), -- Average P. Def.
-(35917, 4413, 16), -- Very Strong M. Def.
-(35917, 4414, 2), -- Standard Type
-(35917, 4415, 3), -- One-handed Sword
-(35917, 4416, 22), -- Defending Army
-(35917, 5045, 6), -- Power Strike
+(35917, 4408, 13), -- HP Modifiers
+(35917, 4409, 1), -- MP Modifiers
+(35917, 4410, 9), -- P. Atk. Modifiers
+(35917, 4411, 11), -- M. Atk. Modifiers
+(35917, 4412, 11), -- P. Def. Modifiers
+(35917, 4413, 16), -- M. Def. Modifiers
+(35917, 4414, 2), -- Armor Type
+(35917, 4415, 3), -- Weapon Type
+(35917, 4416, 22), -- Races
+(35917, 5045, 6), -- Castle Power Strike
 (35917, 5432, 1), -- Weapon Supply
 -- Support Unit Captain
 (35918, 4045, 1), -- Resist Full Magic Attack
-(35918, 4194, 6), -- Aura Burn
-(35918, 4196, 6), -- Decrease Speed
-(35918, 4408, 9), -- HP Increase (1/2x)
-(35918, 4409, 16), -- MP Increase (8x)
-(35918, 4410, 11), -- Average P. Atk.
-(35918, 4411, 14), -- Strong M. Atk.
-(35918, 4412, 8), -- Weak P. Def.
-(35918, 4413, 14), -- Strong M. Def.
-(35918, 4414, 3), -- Light Armor Type
-(35918, 4415, 3), -- One-handed Sword
-(35918, 4416, 22), -- Defending Army
-(35918, 5396, 1), -- Spell Force
-(35918, 5398, 1), -- Final Burn
+(35918, 4194, 6), -- BOSS Aura Burn
+(35918, 4196, 6), -- Decreases Speed
+(35918, 4408, 9), -- HP Modifiers
+(35918, 4409, 16), -- MP Modifiers
+(35918, 4410, 11), -- P. Atk. Modifiers
+(35918, 4411, 14), -- M. Atk. Modifiers
+(35918, 4412, 8), -- P. Def. Modifiers
+(35918, 4413, 14), -- M. Def. Modifiers
+(35918, 4414, 3), -- Armor Type
+(35918, 4415, 3), -- Weapon Type
+(35918, 4416, 22), -- Races
+(35918, 5396, 1), -- NPC - Spell Stance
+(35918, 5398, 1), -- NPC - Combination Force
 (35918, 5432, 1), -- Weapon Supply
-(35918, 5457, 1), -- Complete Recovery
+(35918, 5457, 1), -- NPC Full Recover
 -- Wizard
 (35919, 4045, 1), -- Resist Full Magic Attack
-(35919, 4077, 6), -- Aura Burn
-(35919, 4408, 13), -- HP Increase (5x)
-(35919, 4409, 16), -- MP Increase (8x)
-(35919, 4410, 11), -- Average P. Atk.
-(35919, 4411, 16), -- Very Strong M. Atk.
-(35919, 4412, 8), -- Weak P. Def.
-(35919, 4413, 11), -- Average M. Def.
-(35919, 4414, 3), -- Light Armor Type
-(35919, 4415, 3), -- One-handed Sword
-(35919, 4416, 22), -- Defending Army
-(35919, 5053, 6), -- Hydro Blast
-(35919, 5396, 1), -- Spell Force
+(35919, 4077, 6), -- NPC Aura Burn
+(35919, 4408, 13), -- HP Modifiers
+(35919, 4409, 16), -- MP Modifiers
+(35919, 4410, 11), -- P. Atk. Modifiers
+(35919, 4411, 16), -- M. Atk. Modifiers
+(35919, 4412, 8), -- P. Def. Modifiers
+(35919, 4413, 11), -- M. Def. Modifiers
+(35919, 4414, 3), -- Armor Type
+(35919, 4415, 3), -- Weapon Type
+(35919, 4416, 22), -- Races
+(35919, 5053, 6), -- Castle DD Water
+(35919, 5396, 1), -- NPC - Spell Stance
 (35919, 5432, 1), -- Weapon Supply
 -- Healer
 (35920, 4045, 1), -- Resist Full Magic Attack
 (35920, 4115, 1), -- Aden Heal
-(35920, 4408, 15), -- HP Increase (7x)
-(35920, 4409, 16), -- MP Increase (8x)
-(35920, 4410, 11), -- Average P. Atk.
-(35920, 4411, 17), -- Very Strong M. Atk.
-(35920, 4412, 11), -- Average P. Def.
-(35920, 4413, 16), -- Very Strong M. Def.
-(35920, 4414, 3), -- Light Armor Type
-(35920, 4415, 3), -- One-handed Sword
-(35920, 4416, 22), -- Defending Army
+(35920, 4408, 15), -- HP Modifiers
+(35920, 4409, 16), -- MP Modifiers
+(35920, 4410, 11), -- P. Atk. Modifiers
+(35920, 4411, 17), -- M. Atk. Modifiers
+(35920, 4412, 11), -- P. Def. Modifiers
+(35920, 4413, 16), -- M. Def. Modifiers
+(35920, 4414, 3), -- Armor Type
+(35920, 4415, 3), -- Weapon Type
+(35920, 4416, 22), -- Races
 (35920, 5114, 6), -- Hold
 (35920, 5432, 1), -- Weapon Supply
 -- Archer Captain
 (35921, 4045, 1), -- Resist Full Magic Attack
-(35921, 4408, 9), -- HP Increase (1/2x)
-(35921, 4409, 1), -- MP Increase (1x)
-(35921, 4410, 16), -- Very Strong P. Atk.
-(35921, 4411, 11), -- Average M. Atk.
-(35921, 4412, 8), -- Weak P. Def.
-(35921, 4413, 11), -- Average M. Def.
-(35921, 4414, 3), -- Light Armor Type
-(35921, 4415, 9), -- Bows
-(35921, 4416, 22), -- Defending Army
-(35921, 4755, 6), -- Power Shot
+(35921, 4408, 9), -- HP Modifiers
+(35921, 4409, 1), -- MP Modifiers
+(35921, 4410, 16), -- P. Atk. Modifiers
+(35921, 4411, 11), -- M. Atk. Modifiers
+(35921, 4412, 8), -- P. Def. Modifiers
+(35921, 4413, 11), -- M. Def. Modifiers
+(35921, 4414, 3), -- Armor Type
+(35921, 4415, 9), -- Weapon Type
+(35921, 4416, 22), -- Races
+(35921, 4755, 6), -- BOSS Power Shot
 (35921, 5432, 1), -- Weapon Supply
-(35921, 5457, 1), -- Complete Recovery
+(35921, 5457, 1), -- NPC Full Recover
 -- Archer
 (35922, 4045, 1), -- Resist Full Magic Attack
-(35922, 4408, 13), -- HP Increase (5x)
-(35922, 4409, 1), -- MP Increase (1x)
-(35922, 4410, 14), -- Strong P. Atk.
-(35922, 4411, 11), -- Average M. Atk.
-(35922, 4412, 8), -- Weak P. Def.
-(35922, 4413, 11), -- Average M. Def.
-(35922, 4414, 3), -- Light Armor Type
-(35922, 4415, 9), -- Bows
-(35922, 4416, 22), -- Defending Army
-(35922, 5046, 6), -- Power Shot
+(35922, 4408, 13), -- HP Modifiers
+(35922, 4409, 1), -- MP Modifiers
+(35922, 4410, 14), -- P. Atk. Modifiers
+(35922, 4411, 11), -- M. Atk. Modifiers
+(35922, 4412, 8), -- P. Def. Modifiers
+(35922, 4413, 11), -- M. Def. Modifiers
+(35922, 4414, 3), -- Armor Type
+(35922, 4415, 9), -- Weapon Type
+(35922, 4416, 22), -- Races
+(35922, 5046, 6), -- Castle Power Shot
 (35922, 5432, 1), -- Weapon Supply
 -- Ballista
 (35923, 2342, 1), -- Ballista Bomb
 (35923, 4045, 1), -- Resist Full Magic Attack
-(35923, 4408, 16), -- HP Increase (8x)
-(35923, 4409, 1), -- MP Increase (1x)
-(35923, 4410, 11), -- Average P. Atk.
-(35923, 4411, 11), -- Average M. Atk.
-(35923, 4412, 11), -- Average P. Def.
-(35923, 4413, 11), -- Average M. Def.
-(35923, 4414, 2), -- Standard Type
-(35923, 4415, 3), -- One-handed Sword
-(35923, 4416, 22), -- Defending Army
+(35923, 4408, 16), -- HP Modifiers
+(35923, 4409, 1), -- MP Modifiers
+(35923, 4410, 11), -- P. Atk. Modifiers
+(35923, 4411, 11), -- M. Atk. Modifiers
+(35923, 4412, 11), -- P. Def. Modifiers
+(35923, 4413, 11), -- M. Def. Modifiers
+(35923, 4414, 2), -- Armor Type
+(35923, 4415, 3), -- Weapon Type
+(35923, 4416, 22), -- Races
 -- Mercenary Captain
 (35924, 4045, 1), -- Resist Full Magic Attack
-(35924, 4408, 11), -- HP Increase (3x)
-(35924, 4409, 1), -- MP Increase (1x)
-(35924, 4410, 11), -- Average P. Atk.
-(35924, 4411, 11), -- Average M. Atk.
-(35924, 4412, 11), -- Average P. Def.
-(35924, 4413, 11), -- Average M. Def.
-(35924, 4414, 2), -- Standard Type
-(35924, 4415, 3), -- One-handed Sword
-(35924, 4416, 14), -- Humans
+(35924, 4408, 11), -- HP Modifiers
+(35924, 4409, 1), -- MP Modifiers
+(35924, 4410, 11), -- P. Atk. Modifiers
+(35924, 4411, 11), -- M. Atk. Modifiers
+(35924, 4412, 11), -- P. Def. Modifiers
+(35924, 4413, 11), -- M. Def. Modifiers
+(35924, 4414, 2), -- Armor Type
+(35924, 4415, 3), -- Weapon Type
+(35924, 4416, 14), -- Races
 -- Mercenary Private
 (35925, 4045, 1), -- Resist Full Magic Attack
-(35925, 4408, 11), -- HP Increase (3x)
-(35925, 4409, 1), -- MP Increase (1x)
-(35925, 4410, 13), -- Slightly Strong P. Atk.
-(35925, 4411, 11), -- Average M. Atk.
-(35925, 4412, 11), -- Average P. Def.
-(35925, 4413, 11), -- Average M. Def.
-(35925, 4414, 2), -- Standard Type
-(35925, 4415, 11), -- Spears
-(35925, 4416, 17), -- Orcs
+(35925, 4408, 11), -- HP Modifiers
+(35925, 4409, 1), -- MP Modifiers
+(35925, 4410, 13), -- P. Atk. Modifiers
+(35925, 4411, 11), -- M. Atk. Modifiers
+(35925, 4412, 11), -- P. Def. Modifiers
+(35925, 4413, 11), -- M. Def. Modifiers
+(35925, 4414, 2), -- Armor Type
+(35925, 4415, 11), -- Weapon Type
+(35925, 4416, 17), -- Races
 -- Flagpole
 (35926, 4045, 1), -- Resist Full Magic Attack
-(35926, 4408, 1), -- HP Increase (1x)
-(35926, 4409, 1), -- MP Increase (1x)
-(35926, 4410, 11), -- Average P. Atk.
-(35926, 4411, 11), -- Average M. Atk.
-(35926, 4412, 11), -- Average P. Def.
-(35926, 4413, 11), -- Average M. Def.
-(35926, 4414, 2), -- Standard Type
-(35926, 4415, 3), -- One-handed Sword
-(35926, 4416, 19), -- Others
+(35926, 4408, 1), -- HP Modifiers
+(35926, 4409, 1), -- MP Modifiers
+(35926, 4410, 11), -- P. Atk. Modifiers
+(35926, 4411, 11), -- M. Atk. Modifiers
+(35926, 4412, 11), -- P. Def. Modifiers
+(35926, 4413, 11), -- M. Def. Modifiers
+(35926, 4414, 2), -- Armor Type
+(35926, 4415, 3), -- Weapon Type
+(35926, 4416, 19), -- Races
 -- Foreman
 (35927, 4045, 1), -- Resist Full Magic Attack
-(35927, 4408, 1), -- HP Increase (1x)
-(35927, 4409, 1), -- MP Increase (1x)
-(35927, 4410, 11), -- Average P. Atk.
-(35927, 4411, 11), -- Average M. Atk.
-(35927, 4412, 11), -- Average P. Def.
-(35927, 4413, 11), -- Average M. Def.
-(35927, 4414, 2), -- Standard Type
-(35927, 4415, 3), -- One-handed Sword
-(35927, 4416, 14), -- Humans
+(35927, 4408, 1), -- HP Modifiers
+(35927, 4409, 1), -- MP Modifiers
+(35927, 4410, 11), -- P. Atk. Modifiers
+(35927, 4411, 11), -- M. Atk. Modifiers
+(35927, 4412, 11), -- P. Def. Modifiers
+(35927, 4413, 11), -- M. Def. Modifiers
+(35927, 4414, 2), -- Armor Type
+(35927, 4415, 3), -- Weapon Type
+(35927, 4416, 14), -- Races
 -- Suspicious Merchant
 (35928, 4045, 1), -- Resist Full Magic Attack
-(35928, 4408, 1), -- HP Increase (1x)
-(35928, 4409, 1), -- MP Increase (1x)
-(35928, 4410, 11), -- Average P. Atk.
-(35928, 4411, 11), -- Average M. Atk.
-(35928, 4412, 11), -- Average P. Def.
-(35928, 4413, 11), -- Average M. Def.
-(35928, 4414, 2), -- Standard Type
-(35928, 4415, 3), -- One-handed Sword
-(35928, 4416, 17), -- Orcs
+(35928, 4408, 1), -- HP Modifiers
+(35928, 4409, 1), -- MP Modifiers
+(35928, 4410, 11), -- P. Atk. Modifiers
+(35928, 4411, 11), -- M. Atk. Modifiers
+(35928, 4412, 11), -- P. Def. Modifiers
+(35928, 4413, 11), -- M. Def. Modifiers
+(35928, 4414, 2), -- Armor Type
+(35928, 4415, 3), -- Weapon Type
+(35928, 4416, 17), -- Races
 -- Guard Captain
 (35929, 4045, 1), -- Resist Full Magic Attack
-(35929, 4408, 1), -- HP Increase (1x)
-(35929, 4409, 1), -- MP Increase (1x)
-(35929, 4410, 11), -- Average P. Atk.
-(35929, 4411, 11), -- Average M. Atk.
-(35929, 4412, 11), -- Average P. Def.
-(35929, 4413, 11), -- Average M. Def.
-(35929, 4414, 2), -- Standard Type
-(35929, 4415, 3), -- One-handed Sword
-(35929, 4416, 14), -- Humans
+(35929, 4408, 1), -- HP Modifiers
+(35929, 4409, 1), -- MP Modifiers
+(35929, 4410, 11), -- P. Atk. Modifiers
+(35929, 4411, 11), -- M. Atk. Modifiers
+(35929, 4412, 11), -- P. Def. Modifiers
+(35929, 4413, 11), -- M. Def. Modifiers
+(35929, 4414, 2), -- Armor Type
+(35929, 4415, 3), -- Weapon Type
+(35929, 4416, 14), -- Races
 -- Archer Captain
 (35930, 4045, 1), -- Resist Full Magic Attack
-(35930, 4408, 1), -- HP Increase (1x)
-(35930, 4409, 1), -- MP Increase (1x)
-(35930, 4410, 11), -- Average P. Atk.
-(35930, 4411, 11), -- Average M. Atk.
-(35930, 4412, 11), -- Average P. Def.
-(35930, 4413, 11), -- Average M. Def.
-(35930, 4414, 2), -- Standard Type
-(35930, 4415, 9), -- Bows
-(35930, 4416, 15), -- Elves
+(35930, 4408, 1), -- HP Modifiers
+(35930, 4409, 1), -- MP Modifiers
+(35930, 4410, 11), -- P. Atk. Modifiers
+(35930, 4411, 11), -- M. Atk. Modifiers
+(35930, 4412, 11), -- P. Def. Modifiers
+(35930, 4413, 11), -- M. Def. Modifiers
+(35930, 4414, 2), -- Armor Type
+(35930, 4415, 9), -- Weapon Type
+(35930, 4416, 15), -- Races
 -- General
 (35931, 4045, 1), -- Resist Full Magic Attack
-(35931, 4408, 1), -- HP Increase (1x)
-(35931, 4409, 1), -- MP Increase (1x)
-(35931, 4410, 11), -- Average P. Atk.
-(35931, 4411, 11), -- Average M. Atk.
-(35931, 4412, 11), -- Average P. Def.
-(35931, 4413, 11), -- Average M. Def.
-(35931, 4414, 2), -- Standard Type
-(35931, 4415, 19), -- Dual-Sword Weapons
-(35931, 4416, 22), -- Defending Army
+(35931, 4408, 1), -- HP Modifiers
+(35931, 4409, 1), -- MP Modifiers
+(35931, 4410, 11), -- P. Atk. Modifiers
+(35931, 4411, 11), -- M. Atk. Modifiers
+(35931, 4412, 11), -- P. Def. Modifiers
+(35931, 4413, 11), -- M. Def. Modifiers
+(35931, 4414, 2), -- Armor Type
+(35931, 4415, 19), -- Weapon Type
+(35931, 4416, 22), -- Races
 -- Support Unit Captain
 (35932, 4045, 1), -- Resist Full Magic Attack
-(35932, 4408, 1), -- HP Increase (1x)
-(35932, 4409, 1), -- MP Increase (1x)
-(35932, 4410, 11), -- Average P. Atk.
-(35932, 4411, 11), -- Average M. Atk.
-(35932, 4412, 11), -- Average P. Def.
-(35932, 4413, 11), -- Average M. Def.
-(35932, 4414, 2), -- Standard Type
-(35932, 4415, 3), -- One-handed Sword
-(35932, 4416, 14), -- Humans
+(35932, 4408, 1), -- HP Modifiers
+(35932, 4409, 1), -- MP Modifiers
+(35932, 4410, 11), -- P. Atk. Modifiers
+(35932, 4411, 11), -- M. Atk. Modifiers
+(35932, 4412, 11), -- P. Def. Modifiers
+(35932, 4413, 11), -- M. Def. Modifiers
+(35932, 4414, 2), -- Armor Type
+(35932, 4415, 3), -- Weapon Type
+(35932, 4416, 14), -- Races
 -- Engineering Manager
 (35933, 4045, 1), -- Resist Full Magic Attack
-(35933, 4408, 1), -- HP Increase (1x)
-(35933, 4409, 1), -- MP Increase (1x)
-(35933, 4410, 11), -- Average P. Atk.
-(35933, 4411, 11), -- Average M. Atk.
-(35933, 4412, 11), -- Average P. Def.
-(35933, 4413, 11), -- Average M. Def.
-(35933, 4414, 2), -- Standard Type
-(35933, 4415, 3), -- One-handed Sword
-(35933, 4416, 18), -- Dwarves
+(35933, 4408, 1), -- HP Modifiers
+(35933, 4409, 1), -- MP Modifiers
+(35933, 4410, 11), -- P. Atk. Modifiers
+(35933, 4411, 11), -- M. Atk. Modifiers
+(35933, 4412, 11), -- P. Def. Modifiers
+(35933, 4413, 11), -- M. Def. Modifiers
+(35933, 4414, 2), -- Armor Type
+(35933, 4415, 3), -- Weapon Type
+(35933, 4416, 18), -- Races
 -- Logistics Officer
 (35934, 4045, 1), -- Resist Full Magic Attack
-(35934, 4408, 1), -- HP Increase (1x)
-(35934, 4409, 1), -- MP Increase (1x)
-(35934, 4410, 11), -- Average P. Atk.
-(35934, 4411, 11), -- Average M. Atk.
-(35934, 4412, 11), -- Average P. Def.
-(35934, 4413, 11), -- Average M. Def.
-(35934, 4414, 2), -- Standard Type
-(35934, 4415, 3), -- One-handed Sword
-(35934, 4416, 18), -- Dwarves
+(35934, 4408, 1), -- HP Modifiers
+(35934, 4409, 1), -- MP Modifiers
+(35934, 4410, 11), -- P. Atk. Modifiers
+(35934, 4411, 11), -- M. Atk. Modifiers
+(35934, 4412, 11), -- P. Def. Modifiers
+(35934, 4413, 11), -- M. Def. Modifiers
+(35934, 4414, 2), -- Armor Type
+(35934, 4415, 3), -- Weapon Type
+(35934, 4416, 18), -- Races
 -- Supply Box
 (35935, 4045, 1), -- Resist Full Magic Attack
-(35935, 4408, 1), -- HP Increase (1x)
-(35935, 4409, 1), -- MP Increase (1x)
-(35935, 4410, 11), -- Average P. Atk.
-(35935, 4411, 11), -- Average M. Atk.
-(35935, 4412, 11), -- Average P. Def.
-(35935, 4413, 11), -- Average M. Def.
-(35935, 4414, 2), -- Standard Type
-(35935, 4415, 3), -- One-handed Sword
-(35935, 4416, 2), -- Magic Creatures
+(35935, 4408, 1), -- HP Modifiers
+(35935, 4409, 1), -- MP Modifiers
+(35935, 4410, 11), -- P. Atk. Modifiers
+(35935, 4411, 11), -- M. Atk. Modifiers
+(35935, 4412, 11), -- P. Def. Modifiers
+(35935, 4413, 11), -- M. Def. Modifiers
+(35935, 4414, 2), -- Armor Type
+(35935, 4415, 3), -- Weapon Type
+(35935, 4416, 2), -- Races
 -- Detention Camp Warden
 (35936, 4045, 1), -- Resist Full Magic Attack
-(35936, 4408, 1), -- HP Increase (1x)
-(35936, 4409, 1), -- MP Increase (1x)
-(35936, 4410, 11), -- Average P. Atk.
-(35936, 4411, 11), -- Average M. Atk.
-(35936, 4412, 11), -- Average P. Def.
-(35936, 4413, 11), -- Average M. Def.
-(35936, 4414, 2), -- Standard Type
-(35936, 4415, 3), -- One-handed Sword
-(35936, 4416, 14), -- Humans
+(35936, 4408, 1), -- HP Modifiers
+(35936, 4409, 1), -- MP Modifiers
+(35936, 4410, 11), -- P. Atk. Modifiers
+(35936, 4411, 11), -- M. Atk. Modifiers
+(35936, 4412, 11), -- P. Def. Modifiers
+(35936, 4413, 11), -- M. Def. Modifiers
+(35936, 4414, 2), -- Armor Type
+(35936, 4415, 3), -- Weapon Type
+(35936, 4416, 14), -- Races
 -- Doorman
 (35937, 4045, 1), -- Resist Full Magic Attack
-(35937, 4408, 1), -- HP Increase (1x)
-(35937, 4409, 1), -- MP Increase (1x)
-(35937, 4410, 11), -- Average P. Atk.
-(35937, 4411, 11), -- Average M. Atk.
-(35937, 4412, 11), -- Average P. Def.
-(35937, 4413, 11), -- Average M. Def.
-(35937, 4414, 2), -- Standard Type
-(35937, 4415, 3), -- One-handed Sword
-(35937, 4416, 14), -- Humans
+(35937, 4408, 1), -- HP Modifiers
+(35937, 4409, 1), -- MP Modifiers
+(35937, 4410, 11), -- P. Atk. Modifiers
+(35937, 4411, 11), -- M. Atk. Modifiers
+(35937, 4412, 11), -- P. Def. Modifiers
+(35937, 4413, 11), -- M. Def. Modifiers
+(35937, 4414, 2), -- Armor Type
+(35937, 4415, 3), -- Weapon Type
+(35937, 4416, 14), -- Races
 -- Doorman
 (35938, 4045, 1), -- Resist Full Magic Attack
-(35938, 4408, 1), -- HP Increase (1x)
-(35938, 4409, 1), -- MP Increase (1x)
-(35938, 4410, 11), -- Average P. Atk.
-(35938, 4411, 11), -- Average M. Atk.
-(35938, 4412, 11), -- Average P. Def.
-(35938, 4413, 11), -- Average M. Def.
-(35938, 4414, 2), -- Standard Type
-(35938, 4415, 3), -- One-handed Sword
-(35938, 4416, 14), -- Humans
+(35938, 4408, 1), -- HP Modifiers
+(35938, 4409, 1), -- MP Modifiers
+(35938, 4410, 11), -- P. Atk. Modifiers
+(35938, 4411, 11), -- M. Atk. Modifiers
+(35938, 4412, 11), -- P. Def. Modifiers
+(35938, 4413, 11), -- M. Def. Modifiers
+(35938, 4414, 2), -- Armor Type
+(35938, 4415, 3), -- Weapon Type
+(35938, 4416, 14), -- Races
 -- Doorman
 (35939, 4045, 1), -- Resist Full Magic Attack
-(35939, 4408, 1), -- HP Increase (1x)
-(35939, 4409, 1), -- MP Increase (1x)
-(35939, 4410, 11), -- Average P. Atk.
-(35939, 4411, 11), -- Average M. Atk.
-(35939, 4412, 11), -- Average P. Def.
-(35939, 4413, 11), -- Average M. Def.
-(35939, 4414, 2), -- Standard Type
-(35939, 4415, 3), -- One-handed Sword
-(35939, 4416, 14), -- Humans
+(35939, 4408, 1), -- HP Modifiers
+(35939, 4409, 1), -- MP Modifiers
+(35939, 4410, 11), -- P. Atk. Modifiers
+(35939, 4411, 11), -- M. Atk. Modifiers
+(35939, 4412, 11), -- P. Def. Modifiers
+(35939, 4413, 11), -- M. Def. Modifiers
+(35939, 4414, 2), -- Armor Type
+(35939, 4415, 3), -- Weapon Type
+(35939, 4416, 14), -- Races
 -- Rebel Commander
 (35940, 4045, 1), -- Resist Full Magic Attack
-(35940, 4178, 7), -- Flame Strike
-(35940, 4195, 7), -- Twister
-(35940, 4408, 10), -- HP Increase (2x)
-(35940, 4409, 1), -- MP Increase (1x)
-(35940, 4410, 11), -- Average P. Atk.
-(35940, 4411, 17), -- Very Strong M. Atk.
-(35940, 4412, 11), -- Average P. Def.
-(35940, 4413, 11), -- Average M. Def.
-(35940, 4414, 2), -- Standard Type
-(35940, 4415, 3), -- One-handed Sword
-(35940, 4416, 16), -- Dark Elves
+(35940, 4178, 7), -- BOSS Flame Strike
+(35940, 4195, 7), -- BOSS Twister
+(35940, 4408, 10), -- HP Modifiers
+(35940, 4409, 1), -- MP Modifiers
+(35940, 4410, 11), -- P. Atk. Modifiers
+(35940, 4411, 17), -- M. Atk. Modifiers
+(35940, 4412, 11), -- P. Def. Modifiers
+(35940, 4413, 11), -- M. Def. Modifiers
+(35940, 4414, 2), -- Armor Type
+(35940, 4415, 3), -- Weapon Type
+(35940, 4416, 16), -- Races
 -- Decorated Rebel Soldier
 (35941, 4045, 1), -- Resist Full Magic Attack
-(35941, 4408, 14), -- HP Increase (6x)
-(35941, 4409, 1), -- MP Increase (1x)
-(35941, 4410, 15), -- Strong P. Atk.
-(35941, 4411, 11), -- Average M. Atk.
-(35941, 4412, 11), -- Average P. Def.
-(35941, 4413, 15), -- Strong M. Def.
-(35941, 4414, 2), -- Standard Type
-(35941, 4415, 1), -- Bare Hands
-(35941, 4416, 9), -- Demons
-(35941, 5065, 7), -- Unholy Strike
+(35941, 4408, 14), -- HP Modifiers
+(35941, 4409, 1), -- MP Modifiers
+(35941, 4410, 15), -- P. Atk. Modifiers
+(35941, 4411, 11), -- M. Atk. Modifiers
+(35941, 4412, 11), -- P. Def. Modifiers
+(35941, 4413, 15), -- M. Def. Modifiers
+(35941, 4414, 2), -- Armor Type
+(35941, 4415, 1), -- Weapon Type
+(35941, 4416, 9), -- Races
+(35941, 5065, 7), -- Castle DD Unholy
 -- Rebel Private
 (35942, 4045, 1), -- Resist Full Magic Attack
-(35942, 4408, 12), -- HP Increase (4x)
-(35942, 4409, 1), -- MP Increase (1x)
-(35942, 4410, 14), -- Strong P. Atk.
-(35942, 4411, 11), -- Average M. Atk.
-(35942, 4412, 11), -- Average P. Def.
-(35942, 4413, 11), -- Average M. Def.
-(35942, 4414, 2), -- Standard Type
-(35942, 4415, 11), -- Spears
-(35942, 4416, 14), -- Humans
+(35942, 4408, 12), -- HP Modifiers
+(35942, 4409, 1), -- MP Modifiers
+(35942, 4410, 14), -- P. Atk. Modifiers
+(35942, 4411, 11), -- M. Atk. Modifiers
+(35942, 4412, 11), -- P. Def. Modifiers
+(35942, 4413, 11), -- M. Def. Modifiers
+(35942, 4414, 2), -- Armor Type
+(35942, 4415, 11), -- Weapon Type
+(35942, 4416, 14), -- Races
 -- Court Guard
 (35943, 4045, 1), -- Resist Full Magic Attack
-(35943, 4408, 12), -- HP Increase (4x)
-(35943, 4409, 1), -- MP Increase (1x)
-(35943, 4410, 11), -- Average P. Atk.
-(35943, 4411, 11), -- Average M. Atk.
-(35943, 4412, 11), -- Average P. Def.
-(35943, 4413, 16), -- Very Strong M. Def.
-(35943, 4414, 2), -- Standard Type
-(35943, 4415, 11), -- Spears
-(35943, 4416, 22), -- Defending Army
+(35943, 4408, 12), -- HP Modifiers
+(35943, 4409, 1), -- MP Modifiers
+(35943, 4410, 11), -- P. Atk. Modifiers
+(35943, 4411, 11), -- M. Atk. Modifiers
+(35943, 4412, 11), -- P. Def. Modifiers
+(35943, 4413, 16), -- M. Def. Modifiers
+(35943, 4414, 2), -- Armor Type
+(35943, 4415, 11), -- Weapon Type
+(35943, 4416, 22), -- Races
 (35943, 5432, 1), -- Weapon Supply
 -- Guard
 (35944, 4045, 1), -- Resist Full Magic Attack
-(35944, 4408, 12), -- HP Increase (4x)
-(35944, 4409, 1), -- MP Increase (1x)
-(35944, 4410, 15), -- Strong P. Atk.
-(35944, 4411, 11), -- Average M. Atk.
-(35944, 4412, 11), -- Average P. Def.
-(35944, 4413, 11), -- Average M. Def.
-(35944, 4414, 3), -- Light Armor Type
-(35944, 4415, 9), -- Bows
-(35944, 4416, 22), -- Defending Army
+(35944, 4408, 12), -- HP Modifiers
+(35944, 4409, 1), -- MP Modifiers
+(35944, 4410, 15), -- P. Atk. Modifiers
+(35944, 4411, 11), -- M. Atk. Modifiers
+(35944, 4412, 11), -- P. Def. Modifiers
+(35944, 4413, 11), -- M. Def. Modifiers
+(35944, 4414, 3), -- Armor Type
+(35944, 4415, 9), -- Weapon Type
+(35944, 4416, 22), -- Races
 (35944, 5432, 1), -- Weapon Supply
 -- Main Machine
 (35945, 4045, 1), -- Resist Full Magic Attack
-(35945, 4408, 1), -- HP Increase (1x)
-(35945, 4409, 1), -- MP Increase (1x)
-(35945, 4410, 11), -- Average P. Atk.
-(35945, 4411, 11), -- Average M. Atk.
-(35945, 4412, 11), -- Average P. Def.
-(35945, 4413, 11), -- Average M. Def.
-(35945, 4414, 2), -- Standard Type
-(35945, 4415, 3), -- One-handed Sword
-(35945, 4416, 19), -- Others
+(35945, 4408, 1), -- HP Modifiers
+(35945, 4409, 1), -- MP Modifiers
+(35945, 4410, 11), -- P. Atk. Modifiers
+(35945, 4411, 11), -- M. Atk. Modifiers
+(35945, 4412, 11), -- P. Def. Modifiers
+(35945, 4413, 11), -- M. Def. Modifiers
+(35945, 4414, 2), -- Armor Type
+(35945, 4415, 3), -- Weapon Type
+(35945, 4416, 19), -- Races
 -- Backup Power Unit
 (35946, 4045, 1), -- Resist Full Magic Attack
-(35946, 4408, 1), -- HP Increase (1x)
-(35946, 4409, 1), -- MP Increase (1x)
-(35946, 4410, 11), -- Average P. Atk.
-(35946, 4411, 11), -- Average M. Atk.
-(35946, 4412, 11), -- Average P. Def.
-(35946, 4413, 11), -- Average M. Def.
-(35946, 4414, 2), -- Standard Type
-(35946, 4415, 3), -- One-handed Sword
-(35946, 4416, 19), -- Others
+(35946, 4408, 1), -- HP Modifiers
+(35946, 4409, 1), -- MP Modifiers
+(35946, 4410, 11), -- P. Atk. Modifiers
+(35946, 4411, 11), -- M. Atk. Modifiers
+(35946, 4412, 11), -- P. Def. Modifiers
+(35946, 4413, 11), -- M. Def. Modifiers
+(35946, 4414, 2), -- Armor Type
+(35946, 4415, 3), -- Weapon Type
+(35946, 4416, 19), -- Races
 -- Control Unit
 (35947, 4045, 1), -- Resist Full Magic Attack
-(35947, 4408, 1), -- HP Increase (1x)
-(35947, 4409, 1), -- MP Increase (1x)
-(35947, 4410, 11), -- Average P. Atk.
-(35947, 4411, 11), -- Average M. Atk.
-(35947, 4412, 11), -- Average P. Def.
-(35947, 4413, 11), -- Average M. Def.
-(35947, 4414, 2), -- Standard Type
-(35947, 4415, 3), -- One-handed Sword
-(35947, 4416, 2), -- Magic Creatures
+(35947, 4408, 1), -- HP Modifiers
+(35947, 4409, 1), -- MP Modifiers
+(35947, 4410, 11), -- P. Atk. Modifiers
+(35947, 4411, 11), -- M. Atk. Modifiers
+(35947, 4412, 11), -- P. Def. Modifiers
+(35947, 4413, 11), -- M. Def. Modifiers
+(35947, 4414, 2), -- Armor Type
+(35947, 4415, 3), -- Weapon Type
+(35947, 4416, 2), -- Races
 -- Power Control Unit
 (35948, 4045, 1), -- Resist Full Magic Attack
-(35948, 4408, 1), -- HP Increase (1x)
-(35948, 4409, 1), -- MP Increase (1x)
-(35948, 4410, 11), -- Average P. Atk.
-(35948, 4411, 11), -- Average M. Atk.
-(35948, 4412, 11), -- Average P. Def.
-(35948, 4413, 11), -- Average M. Def.
-(35948, 4414, 2), -- Standard Type
-(35948, 4415, 3), -- One-handed Sword
-(35948, 4416, 19), -- Others
+(35948, 4408, 1), -- HP Modifiers
+(35948, 4409, 1), -- MP Modifiers
+(35948, 4410, 11), -- P. Atk. Modifiers
+(35948, 4411, 11), -- M. Atk. Modifiers
+(35948, 4412, 11), -- P. Def. Modifiers
+(35948, 4413, 11), -- M. Def. Modifiers
+(35948, 4414, 2), -- Armor Type
+(35948, 4415, 3), -- Weapon Type
+(35948, 4416, 19), -- Races
 -- Dwarven Gunnery Sergeant
 (35949, 4045, 1), -- Resist Full Magic Attack
-(35949, 4408, 11), -- HP Increase (3x)
-(35949, 4409, 16), -- MP Increase (8x)
-(35949, 4410, 11), -- Average P. Atk.
-(35949, 4411, 17), -- Very Strong M. Atk.
-(35949, 4412, 11), -- Average P. Def.
-(35949, 4413, 8), -- Weak M. Def.
-(35949, 4414, 2), -- Standard Type
-(35949, 4415, 9), -- Bows
-(35949, 4416, 22), -- Defending Army
+(35949, 4408, 11), -- HP Modifiers
+(35949, 4409, 16), -- MP Modifiers
+(35949, 4410, 11), -- P. Atk. Modifiers
+(35949, 4411, 17), -- M. Atk. Modifiers
+(35949, 4412, 11), -- P. Def. Modifiers
+(35949, 4413, 8), -- M. Def. Modifiers
+(35949, 4414, 2), -- Armor Type
+(35949, 4415, 9), -- Weapon Type
+(35949, 4416, 22), -- Races
 (35949, 5432, 1), -- Weapon Supply
-(35949, 5461, 6), -- Power Shot
-(35949, 5468, 6), -- Fire Shot
+(35949, 5461, 6), -- Castle Gunner Shot
+(35949, 5468, 6), -- Castle Gunner Fire
 -- Scout Golem
 (35950, 4045, 1), -- Resist Full Magic Attack
-(35950, 4408, 6), -- HP Very High
-(35950, 4409, 1), -- MP Increase (1x)
-(35950, 4410, 11), -- Average P. Atk.
-(35950, 4411, 11), -- Average M. Atk.
-(35950, 4412, 11), -- Average P. Def.
-(35950, 4413, 16), -- Very Strong M. Def.
-(35950, 4414, 2), -- Standard Type
-(35950, 4415, 3), -- One-handed Sword
-(35950, 4416, 22), -- Defending Army
+(35950, 4408, 6), -- HP Modifiers
+(35950, 4409, 1), -- MP Modifiers
+(35950, 4410, 11), -- P. Atk. Modifiers
+(35950, 4411, 11), -- M. Atk. Modifiers
+(35950, 4412, 11), -- P. Def. Modifiers
+(35950, 4413, 16), -- M. Def. Modifiers
+(35950, 4414, 2), -- Armor Type
+(35950, 4415, 3), -- Weapon Type
+(35950, 4416, 22), -- Races
 -- Guard Captain
 (35951, 4045, 1), -- Resist Full Magic Attack
 (35951, 4172, 6), -- Stun
-(35951, 4408, 9), -- HP Increase (1/2x)
-(35951, 4409, 1), -- MP Increase (1x)
-(35951, 4410, 8), -- Weak P. Atk.
-(35951, 4411, 11), -- Average M. Atk.
-(35951, 4412, 16), -- Very Strong P. Def.
-(35951, 4413, 11), -- Average M. Def.
-(35951, 4414, 2), -- Standard Type
-(35951, 4415, 3), -- One-handed Sword
-(35951, 4416, 22), -- Defending Army
+(35951, 4408, 9), -- HP Modifiers
+(35951, 4409, 1), -- MP Modifiers
+(35951, 4410, 8), -- P. Atk. Modifiers
+(35951, 4411, 11), -- M. Atk. Modifiers
+(35951, 4412, 16), -- P. Def. Modifiers
+(35951, 4413, 11), -- M. Def. Modifiers
+(35951, 4414, 2), -- Armor Type
+(35951, 4415, 3), -- Weapon Type
+(35951, 4416, 22), -- Races
 (35951, 4435, 5), -- Greater Resist Stun
 (35951, 4439, 5), -- Greater Resist Hold
 (35951, 4440, 5), -- Greater Resist Paralysis
-(35951, 4608, 1), -- Berserker Spirit
+(35951, 4608, 1), -- NPC Clan Buff - Berserk
 (35951, 5432, 1), -- Weapon Supply
-(35951, 5457, 1), -- Complete Recovery
+(35951, 5457, 1), -- NPC Full Recover
 -- Guard
 (35952, 4045, 1), -- Resist Full Magic Attack
-(35952, 4408, 13), -- HP Increase (5x)
-(35952, 4409, 1), -- MP Increase (1x)
-(35952, 4410, 9), -- Slightly Weak P. Atk.
-(35952, 4411, 11), -- Average M. Atk.
-(35952, 4412, 16), -- Very Strong P. Def.
-(35952, 4413, 11), -- Average M. Def.
-(35952, 4414, 2), -- Standard Type
-(35952, 4415, 3), -- One-handed Sword
-(35952, 4416, 22), -- Defending Army
+(35952, 4408, 13), -- HP Modifiers
+(35952, 4409, 1), -- MP Modifiers
+(35952, 4410, 9), -- P. Atk. Modifiers
+(35952, 4411, 11), -- M. Atk. Modifiers
+(35952, 4412, 16), -- P. Def. Modifiers
+(35952, 4413, 11), -- M. Def. Modifiers
+(35952, 4414, 2), -- Armor Type
+(35952, 4415, 3), -- Weapon Type
+(35952, 4416, 22), -- Races
 (35952, 5112, 6), -- Stun
 (35952, 5432, 1), -- Weapon Supply
 -- Guard
 (35953, 4045, 1), -- Resist Full Magic Attack
-(35953, 4408, 13), -- HP Increase (5x)
-(35953, 4409, 1), -- MP Increase (1x)
-(35953, 4410, 9), -- Slightly Weak P. Atk.
-(35953, 4411, 11), -- Average M. Atk.
-(35953, 4412, 11), -- Average P. Def.
-(35953, 4413, 16), -- Very Strong M. Def.
-(35953, 4414, 2), -- Standard Type
-(35953, 4415, 3), -- One-handed Sword
-(35953, 4416, 22), -- Defending Army
-(35953, 5045, 6), -- Power Strike
+(35953, 4408, 13), -- HP Modifiers
+(35953, 4409, 1), -- MP Modifiers
+(35953, 4410, 9), -- P. Atk. Modifiers
+(35953, 4411, 11), -- M. Atk. Modifiers
+(35953, 4412, 11), -- P. Def. Modifiers
+(35953, 4413, 16), -- M. Def. Modifiers
+(35953, 4414, 2), -- Armor Type
+(35953, 4415, 3), -- Weapon Type
+(35953, 4416, 22), -- Races
+(35953, 5045, 6), -- Castle Power Strike
 (35953, 5432, 1), -- Weapon Supply
 -- Support Unit Captain
 (35954, 4045, 1), -- Resist Full Magic Attack
-(35954, 4194, 6), -- Aura Burn
-(35954, 4196, 6), -- Decrease Speed
-(35954, 4408, 9), -- HP Increase (1/2x)
-(35954, 4409, 16), -- MP Increase (8x)
-(35954, 4410, 11), -- Average P. Atk.
-(35954, 4411, 14), -- Strong M. Atk.
-(35954, 4412, 8), -- Weak P. Def.
-(35954, 4413, 14), -- Strong M. Def.
-(35954, 4414, 3), -- Light Armor Type
-(35954, 4415, 3), -- One-handed Sword
-(35954, 4416, 22), -- Defending Army
-(35954, 5396, 1), -- Spell Force
-(35954, 5398, 1), -- Final Burn
+(35954, 4194, 6), -- BOSS Aura Burn
+(35954, 4196, 6), -- Decreases Speed
+(35954, 4408, 9), -- HP Modifiers
+(35954, 4409, 16), -- MP Modifiers
+(35954, 4410, 11), -- P. Atk. Modifiers
+(35954, 4411, 14), -- M. Atk. Modifiers
+(35954, 4412, 8), -- P. Def. Modifiers
+(35954, 4413, 14), -- M. Def. Modifiers
+(35954, 4414, 3), -- Armor Type
+(35954, 4415, 3), -- Weapon Type
+(35954, 4416, 22), -- Races
+(35954, 5396, 1), -- NPC - Spell Stance
+(35954, 5398, 1), -- NPC - Combination Force
 (35954, 5432, 1), -- Weapon Supply
-(35954, 5457, 1), -- Complete Recovery
+(35954, 5457, 1), -- NPC Full Recover
 -- Wizard
 (35955, 4045, 1), -- Resist Full Magic Attack
-(35955, 4077, 6), -- Aura Burn
-(35955, 4408, 13), -- HP Increase (5x)
-(35955, 4409, 16), -- MP Increase (8x)
-(35955, 4410, 11), -- Average P. Atk.
-(35955, 4411, 16), -- Very Strong M. Atk.
-(35955, 4412, 8), -- Weak P. Def.
-(35955, 4413, 11), -- Average M. Def.
-(35955, 4414, 3), -- Light Armor Type
-(35955, 4415, 3), -- One-handed Sword
-(35955, 4416, 22), -- Defending Army
-(35955, 5053, 6), -- Hydro Blast
-(35955, 5396, 1), -- Spell Force
+(35955, 4077, 6), -- NPC Aura Burn
+(35955, 4408, 13), -- HP Modifiers
+(35955, 4409, 16), -- MP Modifiers
+(35955, 4410, 11), -- P. Atk. Modifiers
+(35955, 4411, 16), -- M. Atk. Modifiers
+(35955, 4412, 8), -- P. Def. Modifiers
+(35955, 4413, 11), -- M. Def. Modifiers
+(35955, 4414, 3), -- Armor Type
+(35955, 4415, 3), -- Weapon Type
+(35955, 4416, 22), -- Races
+(35955, 5053, 6), -- Castle DD Water
+(35955, 5396, 1), -- NPC - Spell Stance
 (35955, 5432, 1), -- Weapon Supply
 -- Healer
 (35956, 4045, 1), -- Resist Full Magic Attack
 (35956, 4115, 1), -- Aden Heal
-(35956, 4408, 15), -- HP Increase (7x)
-(35956, 4409, 16), -- MP Increase (8x)
-(35956, 4410, 11), -- Average P. Atk.
-(35956, 4411, 17), -- Very Strong M. Atk.
-(35956, 4412, 11), -- Average P. Def.
-(35956, 4413, 16), -- Very Strong M. Def.
-(35956, 4414, 3), -- Light Armor Type
-(35956, 4415, 3), -- One-handed Sword
-(35956, 4416, 22), -- Defending Army
+(35956, 4408, 15), -- HP Modifiers
+(35956, 4409, 16), -- MP Modifiers
+(35956, 4410, 11), -- P. Atk. Modifiers
+(35956, 4411, 17), -- M. Atk. Modifiers
+(35956, 4412, 11), -- P. Def. Modifiers
+(35956, 4413, 16), -- M. Def. Modifiers
+(35956, 4414, 3), -- Armor Type
+(35956, 4415, 3), -- Weapon Type
+(35956, 4416, 22), -- Races
 (35956, 5114, 6), -- Hold
 (35956, 5432, 1), -- Weapon Supply
 -- Archer Captain
 (35957, 4045, 1), -- Resist Full Magic Attack
-(35957, 4408, 9), -- HP Increase (1/2x)
-(35957, 4409, 1), -- MP Increase (1x)
-(35957, 4410, 16), -- Very Strong P. Atk.
-(35957, 4411, 11), -- Average M. Atk.
-(35957, 4412, 8), -- Weak P. Def.
-(35957, 4413, 11), -- Average M. Def.
-(35957, 4414, 3), -- Light Armor Type
-(35957, 4415, 9), -- Bows
-(35957, 4416, 22), -- Defending Army
-(35957, 4755, 6), -- Power Shot
+(35957, 4408, 9), -- HP Modifiers
+(35957, 4409, 1), -- MP Modifiers
+(35957, 4410, 16), -- P. Atk. Modifiers
+(35957, 4411, 11), -- M. Atk. Modifiers
+(35957, 4412, 8), -- P. Def. Modifiers
+(35957, 4413, 11), -- M. Def. Modifiers
+(35957, 4414, 3), -- Armor Type
+(35957, 4415, 9), -- Weapon Type
+(35957, 4416, 22), -- Races
+(35957, 4755, 6), -- BOSS Power Shot
 (35957, 5432, 1), -- Weapon Supply
-(35957, 5457, 1), -- Complete Recovery
+(35957, 5457, 1), -- NPC Full Recover
 -- Archer
 (35958, 4045, 1), -- Resist Full Magic Attack
-(35958, 4408, 13), -- HP Increase (5x)
-(35958, 4409, 1), -- MP Increase (1x)
-(35958, 4410, 14), -- Strong P. Atk.
-(35958, 4411, 11), -- Average M. Atk.
-(35958, 4412, 8), -- Weak P. Def.
-(35958, 4413, 11), -- Average M. Def.
-(35958, 4414, 3), -- Light Armor Type
-(35958, 4415, 9), -- Bows
-(35958, 4416, 22), -- Defending Army
-(35958, 5046, 6), -- Power Shot
+(35958, 4408, 13), -- HP Modifiers
+(35958, 4409, 1), -- MP Modifiers
+(35958, 4410, 14), -- P. Atk. Modifiers
+(35958, 4411, 11), -- M. Atk. Modifiers
+(35958, 4412, 8), -- P. Def. Modifiers
+(35958, 4413, 11), -- M. Def. Modifiers
+(35958, 4414, 3), -- Armor Type
+(35958, 4415, 9), -- Weapon Type
+(35958, 4416, 22), -- Races
+(35958, 5046, 6), -- Castle Power Shot
 (35958, 5432, 1), -- Weapon Supply
 -- General
 (35959, 4045, 1), -- Resist Full Magic Attack
-(35959, 4408, 9), -- HP Increase (1/2x)
-(35959, 4409, 1), -- MP Increase (1x)
-(35959, 4410, 14), -- Strong P. Atk.
-(35959, 4411, 11), -- Average M. Atk.
-(35959, 4412, 11), -- Average P. Def.
-(35959, 4413, 11), -- Average M. Def.
-(35959, 4414, 2), -- Standard Type
-(35959, 4415, 19), -- Dual-Sword Weapons
-(35959, 4416, 22), -- Defending Army
+(35959, 4408, 9), -- HP Modifiers
+(35959, 4409, 1), -- MP Modifiers
+(35959, 4410, 14), -- P. Atk. Modifiers
+(35959, 4411, 11), -- M. Atk. Modifiers
+(35959, 4412, 11), -- P. Def. Modifiers
+(35959, 4413, 11), -- M. Def. Modifiers
+(35959, 4414, 2), -- Armor Type
+(35959, 4415, 19), -- Weapon Type
+(35959, 4416, 22), -- Races
 (35959, 4725, 6), -- Stun
 (35959, 5432, 1), -- Weapon Supply
-(35959, 5457, 1), -- Complete Recovery
+(35959, 5457, 1), -- NPC Full Recover
 -- Minister 
 (35960, 4045, 1), -- Resist Full Magic Attack
-(35960, 4408, 9), -- HP Increase (1/2x)
-(35960, 4409, 1), -- MP Increase (1x)
-(35960, 4410, 14), -- Strong P. Atk.
-(35960, 4411, 11), -- Average M. Atk.
-(35960, 4412, 11), -- Average P. Def.
-(35960, 4413, 11), -- Average M. Def.
-(35960, 4414, 2), -- Standard Type
-(35960, 4415, 3), -- One-handed Sword
-(35960, 4416, 22), -- Defending Army
-(35960, 4721, 6), -- Power Strike
+(35960, 4408, 9), -- HP Modifiers
+(35960, 4409, 1), -- MP Modifiers
+(35960, 4410, 14), -- P. Atk. Modifiers
+(35960, 4411, 11), -- M. Atk. Modifiers
+(35960, 4412, 11), -- P. Def. Modifiers
+(35960, 4413, 11), -- M. Def. Modifiers
+(35960, 4414, 2), -- Armor Type
+(35960, 4415, 3), -- Weapon Type
+(35960, 4416, 22), -- Races
+(35960, 4721, 6), -- BOSS Strike
 (35960, 5432, 1), -- Weapon Supply
-(35960, 5457, 1), -- Complete Recovery
+(35960, 5457, 1), -- NPC Full Recover
 -- Ballista
 (35961, 2342, 1), -- Ballista Bomb
 (35961, 4045, 1), -- Resist Full Magic Attack
-(35961, 4408, 16), -- HP Increase (8x)
-(35961, 4409, 1), -- MP Increase (1x)
-(35961, 4410, 11), -- Average P. Atk.
-(35961, 4411, 11), -- Average M. Atk.
-(35961, 4412, 11), -- Average P. Def.
-(35961, 4413, 11), -- Average M. Def.
-(35961, 4414, 2), -- Standard Type
-(35961, 4415, 3), -- One-handed Sword
-(35961, 4416, 22), -- Defending Army
+(35961, 4408, 16), -- HP Modifiers
+(35961, 4409, 1), -- MP Modifiers
+(35961, 4410, 11), -- P. Atk. Modifiers
+(35961, 4411, 11), -- M. Atk. Modifiers
+(35961, 4412, 11), -- P. Def. Modifiers
+(35961, 4413, 11), -- M. Def. Modifiers
+(35961, 4414, 2), -- Armor Type
+(35961, 4415, 3), -- Weapon Type
+(35961, 4416, 22), -- Races
 -- Mercenary Captain
 (35962, 4045, 1), -- Resist Full Magic Attack
-(35962, 4408, 11), -- HP Increase (3x)
-(35962, 4409, 1), -- MP Increase (1x)
-(35962, 4410, 11), -- Average P. Atk.
-(35962, 4411, 11), -- Average M. Atk.
-(35962, 4412, 11), -- Average P. Def.
-(35962, 4413, 11), -- Average M. Def.
-(35962, 4414, 2), -- Standard Type
-(35962, 4415, 3), -- One-handed Sword
-(35962, 4416, 14), -- Humans
+(35962, 4408, 11), -- HP Modifiers
+(35962, 4409, 1), -- MP Modifiers
+(35962, 4410, 11), -- P. Atk. Modifiers
+(35962, 4411, 11), -- M. Atk. Modifiers
+(35962, 4412, 11), -- P. Def. Modifiers
+(35962, 4413, 11), -- M. Def. Modifiers
+(35962, 4414, 2), -- Armor Type
+(35962, 4415, 3), -- Weapon Type
+(35962, 4416, 14), -- Races
 -- Mercenary Private
 (35963, 4045, 1), -- Resist Full Magic Attack
-(35963, 4408, 11), -- HP Increase (3x)
-(35963, 4409, 1), -- MP Increase (1x)
-(35963, 4410, 13), -- Slightly Strong P. Atk.
-(35963, 4411, 11), -- Average M. Atk.
-(35963, 4412, 11), -- Average P. Def.
-(35963, 4413, 11), -- Average M. Def.
-(35963, 4414, 2), -- Standard Type
-(35963, 4415, 11), -- Spears
-(35963, 4416, 17), -- Orcs
+(35963, 4408, 11), -- HP Modifiers
+(35963, 4409, 1), -- MP Modifiers
+(35963, 4410, 13), -- P. Atk. Modifiers
+(35963, 4411, 11), -- M. Atk. Modifiers
+(35963, 4412, 11), -- P. Def. Modifiers
+(35963, 4413, 11), -- M. Def. Modifiers
+(35963, 4414, 2), -- Armor Type
+(35963, 4415, 11), -- Weapon Type
+(35963, 4416, 17), -- Races
 -- Flagpole
 (35964, 4045, 1), -- Resist Full Magic Attack
-(35964, 4408, 1), -- HP Increase (1x)
-(35964, 4409, 1), -- MP Increase (1x)
-(35964, 4410, 11), -- Average P. Atk.
-(35964, 4411, 11), -- Average M. Atk.
-(35964, 4412, 11), -- Average P. Def.
-(35964, 4413, 11), -- Average M. Def.
-(35964, 4414, 2), -- Standard Type
-(35964, 4415, 3), -- One-handed Sword
-(35964, 4416, 19), -- Others
+(35964, 4408, 1), -- HP Modifiers
+(35964, 4409, 1), -- MP Modifiers
+(35964, 4410, 11), -- P. Atk. Modifiers
+(35964, 4411, 11), -- M. Atk. Modifiers
+(35964, 4412, 11), -- P. Def. Modifiers
+(35964, 4413, 11), -- M. Def. Modifiers
+(35964, 4414, 2), -- Armor Type
+(35964, 4415, 3), -- Weapon Type
+(35964, 4416, 19), -- Races
 -- Foreman
 (35965, 4045, 1), -- Resist Full Magic Attack
-(35965, 4408, 1), -- HP Increase (1x)
-(35965, 4409, 1), -- MP Increase (1x)
-(35965, 4410, 11), -- Average P. Atk.
-(35965, 4411, 11), -- Average M. Atk.
-(35965, 4412, 11), -- Average P. Def.
-(35965, 4413, 11), -- Average M. Def.
-(35965, 4414, 2), -- Standard Type
-(35965, 4415, 3), -- One-handed Sword
-(35965, 4416, 14), -- Humans
+(35965, 4408, 1), -- HP Modifiers
+(35965, 4409, 1), -- MP Modifiers
+(35965, 4410, 11), -- P. Atk. Modifiers
+(35965, 4411, 11), -- M. Atk. Modifiers
+(35965, 4412, 11), -- P. Def. Modifiers
+(35965, 4413, 11), -- M. Def. Modifiers
+(35965, 4414, 2), -- Armor Type
+(35965, 4415, 3), -- Weapon Type
+(35965, 4416, 14), -- Races
 -- Suspicious Merchant
 (35966, 4045, 1), -- Resist Full Magic Attack
-(35966, 4408, 1), -- HP Increase (1x)
-(35966, 4409, 1), -- MP Increase (1x)
-(35966, 4410, 11), -- Average P. Atk.
-(35966, 4411, 11), -- Average M. Atk.
-(35966, 4412, 11), -- Average P. Def.
-(35966, 4413, 11), -- Average M. Def.
-(35966, 4414, 2), -- Standard Type
-(35966, 4415, 3), -- One-handed Sword
-(35966, 4416, 17), -- Orcs
+(35966, 4408, 1), -- HP Modifiers
+(35966, 4409, 1), -- MP Modifiers
+(35966, 4410, 11), -- P. Atk. Modifiers
+(35966, 4411, 11), -- M. Atk. Modifiers
+(35966, 4412, 11), -- P. Def. Modifiers
+(35966, 4413, 11), -- M. Def. Modifiers
+(35966, 4414, 2), -- Armor Type
+(35966, 4415, 3), -- Weapon Type
+(35966, 4416, 17), -- Races
 -- Guard Captain
 (35967, 4045, 1), -- Resist Full Magic Attack
-(35967, 4408, 1), -- HP Increase (1x)
-(35967, 4409, 1), -- MP Increase (1x)
-(35967, 4410, 11), -- Average P. Atk.
-(35967, 4411, 11), -- Average M. Atk.
-(35967, 4412, 11), -- Average P. Def.
-(35967, 4413, 11), -- Average M. Def.
-(35967, 4414, 2), -- Standard Type
-(35967, 4415, 3), -- One-handed Sword
-(35967, 4416, 14), -- Humans
+(35967, 4408, 1), -- HP Modifiers
+(35967, 4409, 1), -- MP Modifiers
+(35967, 4410, 11), -- P. Atk. Modifiers
+(35967, 4411, 11), -- M. Atk. Modifiers
+(35967, 4412, 11), -- P. Def. Modifiers
+(35967, 4413, 11), -- M. Def. Modifiers
+(35967, 4414, 2), -- Armor Type
+(35967, 4415, 3), -- Weapon Type
+(35967, 4416, 14), -- Races
 -- Archer Captain
 (35968, 4045, 1), -- Resist Full Magic Attack
-(35968, 4408, 1), -- HP Increase (1x)
-(35968, 4409, 1), -- MP Increase (1x)
-(35968, 4410, 11), -- Average P. Atk.
-(35968, 4411, 11), -- Average M. Atk.
-(35968, 4412, 11), -- Average P. Def.
-(35968, 4413, 11), -- Average M. Def.
-(35968, 4414, 2), -- Standard Type
-(35968, 4415, 9), -- Bows
-(35968, 4416, 15), -- Elves
+(35968, 4408, 1), -- HP Modifiers
+(35968, 4409, 1), -- MP Modifiers
+(35968, 4410, 11), -- P. Atk. Modifiers
+(35968, 4411, 11), -- M. Atk. Modifiers
+(35968, 4412, 11), -- P. Def. Modifiers
+(35968, 4413, 11), -- M. Def. Modifiers
+(35968, 4414, 2), -- Armor Type
+(35968, 4415, 9), -- Weapon Type
+(35968, 4416, 15), -- Races
 -- General
 (35969, 4045, 1), -- Resist Full Magic Attack
-(35969, 4408, 1), -- HP Increase (1x)
-(35969, 4409, 1), -- MP Increase (1x)
-(35969, 4410, 11), -- Average P. Atk.
-(35969, 4411, 11), -- Average M. Atk.
-(35969, 4412, 11), -- Average P. Def.
-(35969, 4413, 11), -- Average M. Def.
-(35969, 4414, 2), -- Standard Type
-(35969, 4415, 19), -- Dual-Sword Weapons
-(35969, 4416, 22), -- Defending Army
+(35969, 4408, 1), -- HP Modifiers
+(35969, 4409, 1), -- MP Modifiers
+(35969, 4410, 11), -- P. Atk. Modifiers
+(35969, 4411, 11), -- M. Atk. Modifiers
+(35969, 4412, 11), -- P. Def. Modifiers
+(35969, 4413, 11), -- M. Def. Modifiers
+(35969, 4414, 2), -- Armor Type
+(35969, 4415, 19), -- Weapon Type
+(35969, 4416, 22), -- Races
 -- Support Unit Captain
 (35970, 4045, 1), -- Resist Full Magic Attack
-(35970, 4408, 1), -- HP Increase (1x)
-(35970, 4409, 1), -- MP Increase (1x)
-(35970, 4410, 11), -- Average P. Atk.
-(35970, 4411, 11), -- Average M. Atk.
-(35970, 4412, 11), -- Average P. Def.
-(35970, 4413, 11), -- Average M. Def.
-(35970, 4414, 2), -- Standard Type
-(35970, 4415, 3), -- One-handed Sword
-(35970, 4416, 14), -- Humans
+(35970, 4408, 1), -- HP Modifiers
+(35970, 4409, 1), -- MP Modifiers
+(35970, 4410, 11), -- P. Atk. Modifiers
+(35970, 4411, 11), -- M. Atk. Modifiers
+(35970, 4412, 11), -- P. Def. Modifiers
+(35970, 4413, 11), -- M. Def. Modifiers
+(35970, 4414, 2), -- Armor Type
+(35970, 4415, 3), -- Weapon Type
+(35970, 4416, 14), -- Races
 -- Engineering Manager
 (35971, 4045, 1), -- Resist Full Magic Attack
-(35971, 4408, 1), -- HP Increase (1x)
-(35971, 4409, 1), -- MP Increase (1x)
-(35971, 4410, 11), -- Average P. Atk.
-(35971, 4411, 11), -- Average M. Atk.
-(35971, 4412, 11), -- Average P. Def.
-(35971, 4413, 11), -- Average M. Def.
-(35971, 4414, 2), -- Standard Type
-(35971, 4415, 3), -- One-handed Sword
-(35971, 4416, 18), -- Dwarves
+(35971, 4408, 1), -- HP Modifiers
+(35971, 4409, 1), -- MP Modifiers
+(35971, 4410, 11), -- P. Atk. Modifiers
+(35971, 4411, 11), -- M. Atk. Modifiers
+(35971, 4412, 11), -- P. Def. Modifiers
+(35971, 4413, 11), -- M. Def. Modifiers
+(35971, 4414, 2), -- Armor Type
+(35971, 4415, 3), -- Weapon Type
+(35971, 4416, 18), -- Races
 -- Logistics Officer
 (35972, 4045, 1), -- Resist Full Magic Attack
-(35972, 4408, 1), -- HP Increase (1x)
-(35972, 4409, 1), -- MP Increase (1x)
-(35972, 4410, 11), -- Average P. Atk.
-(35972, 4411, 11), -- Average M. Atk.
-(35972, 4412, 11), -- Average P. Def.
-(35972, 4413, 11), -- Average M. Def.
-(35972, 4414, 2), -- Standard Type
-(35972, 4415, 3), -- One-handed Sword
-(35972, 4416, 18), -- Dwarves
+(35972, 4408, 1), -- HP Modifiers
+(35972, 4409, 1), -- MP Modifiers
+(35972, 4410, 11), -- P. Atk. Modifiers
+(35972, 4411, 11), -- M. Atk. Modifiers
+(35972, 4412, 11), -- P. Def. Modifiers
+(35972, 4413, 11), -- M. Def. Modifiers
+(35972, 4414, 2), -- Armor Type
+(35972, 4415, 3), -- Weapon Type
+(35972, 4416, 18), -- Races
 -- Supply Box
 (35973, 4045, 1), -- Resist Full Magic Attack
-(35973, 4408, 1), -- HP Increase (1x)
-(35973, 4409, 1), -- MP Increase (1x)
-(35973, 4410, 11), -- Average P. Atk.
-(35973, 4411, 11), -- Average M. Atk.
-(35973, 4412, 11), -- Average P. Def.
-(35973, 4413, 11), -- Average M. Def.
-(35973, 4414, 2), -- Standard Type
-(35973, 4415, 3), -- One-handed Sword
-(35973, 4416, 2), -- Magic Creatures
+(35973, 4408, 1), -- HP Modifiers
+(35973, 4409, 1), -- MP Modifiers
+(35973, 4410, 11), -- P. Atk. Modifiers
+(35973, 4411, 11), -- M. Atk. Modifiers
+(35973, 4412, 11), -- P. Def. Modifiers
+(35973, 4413, 11), -- M. Def. Modifiers
+(35973, 4414, 2), -- Armor Type
+(35973, 4415, 3), -- Weapon Type
+(35973, 4416, 2), -- Races
 -- Detention Camp Warden
 (35974, 4045, 1), -- Resist Full Magic Attack
-(35974, 4408, 1), -- HP Increase (1x)
-(35974, 4409, 1), -- MP Increase (1x)
-(35974, 4410, 11), -- Average P. Atk.
-(35974, 4411, 11), -- Average M. Atk.
-(35974, 4412, 11), -- Average P. Def.
-(35974, 4413, 11), -- Average M. Def.
-(35974, 4414, 2), -- Standard Type
-(35974, 4415, 3), -- One-handed Sword
-(35974, 4416, 14), -- Humans
+(35974, 4408, 1), -- HP Modifiers
+(35974, 4409, 1), -- MP Modifiers
+(35974, 4410, 11), -- P. Atk. Modifiers
+(35974, 4411, 11), -- M. Atk. Modifiers
+(35974, 4412, 11), -- P. Def. Modifiers
+(35974, 4413, 11), -- M. Def. Modifiers
+(35974, 4414, 2); -- Armor Type
+
+INSERT INTO `npcskills` VALUES
+(35974, 4415, 3), -- Weapon Type
+(35974, 4416, 14), -- Races
 -- Doorman
 (35975, 4045, 1), -- Resist Full Magic Attack
-(35975, 4408, 1), -- HP Increase (1x)
-(35975, 4409, 1), -- MP Increase (1x)
-(35975, 4410, 11), -- Average P. Atk.
-(35975, 4411, 11), -- Average M. Atk.
-(35975, 4412, 11), -- Average P. Def.
-(35975, 4413, 11), -- Average M. Def.
-(35975, 4414, 2), -- Standard Type
-(35975, 4415, 3), -- One-handed Sword
-(35975, 4416, 14), -- Humans
+(35975, 4408, 1), -- HP Modifiers
+(35975, 4409, 1), -- MP Modifiers
+(35975, 4410, 11), -- P. Atk. Modifiers
+(35975, 4411, 11), -- M. Atk. Modifiers
+(35975, 4412, 11), -- P. Def. Modifiers
+(35975, 4413, 11), -- M. Def. Modifiers
+(35975, 4414, 2), -- Armor Type
+(35975, 4415, 3), -- Weapon Type
+(35975, 4416, 14), -- Races
 -- Doorman
 (35976, 4045, 1), -- Resist Full Magic Attack
-(35976, 4408, 1), -- HP Increase (1x)
-(35976, 4409, 1), -- MP Increase (1x)
-(35976, 4410, 11), -- Average P. Atk.
-(35976, 4411, 11), -- Average M. Atk.
-(35976, 4412, 11), -- Average P. Def.
-(35976, 4413, 11), -- Average M. Def.
-(35976, 4414, 2), -- Standard Type
-(35976, 4415, 3), -- One-handed Sword
-(35976, 4416, 14), -- Humans
+(35976, 4408, 1), -- HP Modifiers
+(35976, 4409, 1), -- MP Modifiers
+(35976, 4410, 11), -- P. Atk. Modifiers
+(35976, 4411, 11), -- M. Atk. Modifiers
+(35976, 4412, 11), -- P. Def. Modifiers
+(35976, 4413, 11), -- M. Def. Modifiers
+(35976, 4414, 2), -- Armor Type
+(35976, 4415, 3), -- Weapon Type
+(35976, 4416, 14), -- Races
 -- Doorman
 (35977, 4045, 1), -- Resist Full Magic Attack
-(35977, 4408, 1), -- HP Increase (1x)
-(35977, 4409, 1), -- MP Increase (1x)
-(35977, 4410, 11), -- Average P. Atk.
-(35977, 4411, 11), -- Average M. Atk.
-(35977, 4412, 11), -- Average P. Def.
-(35977, 4413, 11), -- Average M. Def.
-(35977, 4414, 2), -- Standard Type
-(35977, 4415, 3), -- One-handed Sword
-(35977, 4416, 14), -- Humans
+(35977, 4408, 1), -- HP Modifiers
+(35977, 4409, 1), -- MP Modifiers
+(35977, 4410, 11), -- P. Atk. Modifiers
+(35977, 4411, 11), -- M. Atk. Modifiers
+(35977, 4412, 11), -- P. Def. Modifiers
+(35977, 4413, 11), -- M. Def. Modifiers
+(35977, 4414, 2), -- Armor Type
+(35977, 4415, 3), -- Weapon Type
+(35977, 4416, 14), -- Races
 -- Rebel Commander
 (35978, 4045, 1), -- Resist Full Magic Attack
-(35978, 4178, 7), -- Flame Strike
-(35978, 4195, 7), -- Twister
-(35978, 4408, 10), -- HP Increase (2x)
-(35978, 4409, 1), -- MP Increase (1x)
-(35978, 4410, 11), -- Average P. Atk.
-(35978, 4411, 17), -- Very Strong M. Atk.
-(35978, 4412, 11), -- Average P. Def.
-(35978, 4413, 11), -- Average M. Def.
-(35978, 4414, 2), -- Standard Type
-(35978, 4415, 3), -- One-handed Sword
-(35978, 4416, 16), -- Dark Elves
+(35978, 4178, 7), -- BOSS Flame Strike
+(35978, 4195, 7), -- BOSS Twister
+(35978, 4408, 10), -- HP Modifiers
+(35978, 4409, 1), -- MP Modifiers
+(35978, 4410, 11), -- P. Atk. Modifiers
+(35978, 4411, 17), -- M. Atk. Modifiers
+(35978, 4412, 11), -- P. Def. Modifiers
+(35978, 4413, 11), -- M. Def. Modifiers
+(35978, 4414, 2), -- Armor Type
+(35978, 4415, 3), -- Weapon Type
+(35978, 4416, 16), -- Races
 -- Decorated Rebel Soldier
 (35979, 4045, 1), -- Resist Full Magic Attack
-(35979, 4408, 14), -- HP Increase (6x)
-(35979, 4409, 1), -- MP Increase (1x)
-(35979, 4410, 15), -- Strong P. Atk.
-(35979, 4411, 11), -- Average M. Atk.
-(35979, 4412, 11), -- Average P. Def.
-(35979, 4413, 15), -- Strong M. Def.
-(35979, 4414, 2), -- Standard Type
-(35979, 4415, 1), -- Bare Hands
-(35979, 4416, 9), -- Demons
-(35979, 5065, 7), -- Unholy Strike
+(35979, 4408, 14), -- HP Modifiers
+(35979, 4409, 1), -- MP Modifiers
+(35979, 4410, 15), -- P. Atk. Modifiers
+(35979, 4411, 11), -- M. Atk. Modifiers
+(35979, 4412, 11), -- P. Def. Modifiers
+(35979, 4413, 15), -- M. Def. Modifiers
+(35979, 4414, 2), -- Armor Type
+(35979, 4415, 1), -- Weapon Type
+(35979, 4416, 9), -- Races
+(35979, 5065, 7), -- Castle DD Unholy
 -- Rebel Private
 (35980, 4045, 1), -- Resist Full Magic Attack
-(35980, 4408, 12), -- HP Increase (4x)
-(35980, 4409, 1), -- MP Increase (1x)
-(35980, 4410, 14), -- Strong P. Atk.
-(35980, 4411, 11), -- Average M. Atk.
-(35980, 4412, 11), -- Average P. Def.
-(35980, 4413, 11), -- Average M. Def.
-(35980, 4414, 2), -- Standard Type
-(35980, 4415, 11), -- Spears
-(35980, 4416, 14), -- Humans
+(35980, 4408, 12), -- HP Modifiers
+(35980, 4409, 1), -- MP Modifiers
+(35980, 4410, 14), -- P. Atk. Modifiers
+(35980, 4411, 11), -- M. Atk. Modifiers
+(35980, 4412, 11), -- P. Def. Modifiers
+(35980, 4413, 11), -- M. Def. Modifiers
+(35980, 4414, 2), -- Armor Type
+(35980, 4415, 11), -- Weapon Type
+(35980, 4416, 14), -- Races
 -- Court Guard
 (35981, 4045, 1), -- Resist Full Magic Attack
-(35981, 4408, 12), -- HP Increase (4x)
-(35981, 4409, 1), -- MP Increase (1x)
-(35981, 4410, 11), -- Average P. Atk.
-(35981, 4411, 11), -- Average M. Atk.
-(35981, 4412, 11), -- Average P. Def.
-(35981, 4413, 16), -- Very Strong M. Def.
-(35981, 4414, 2), -- Standard Type
-(35981, 4415, 11), -- Spears
-(35981, 4416, 22), -- Defending Army
+(35981, 4408, 12), -- HP Modifiers
+(35981, 4409, 1), -- MP Modifiers
+(35981, 4410, 11), -- P. Atk. Modifiers
+(35981, 4411, 11), -- M. Atk. Modifiers
+(35981, 4412, 11), -- P. Def. Modifiers
+(35981, 4413, 16), -- M. Def. Modifiers
+(35981, 4414, 2), -- Armor Type
+(35981, 4415, 11), -- Weapon Type
+(35981, 4416, 22), -- Races
 (35981, 5432, 1), -- Weapon Supply
 -- Guard
 (35982, 4045, 1), -- Resist Full Magic Attack
-(35982, 4408, 12), -- HP Increase (4x)
-(35982, 4409, 1), -- MP Increase (1x)
-(35982, 4410, 15), -- Strong P. Atk.
-(35982, 4411, 11), -- Average M. Atk.
-(35982, 4412, 11), -- Average P. Def.
-(35982, 4413, 11), -- Average M. Def.
-(35982, 4414, 3), -- Light Armor Type
-(35982, 4415, 9), -- Bows
-(35982, 4416, 22), -- Defending Army
+(35982, 4408, 12), -- HP Modifiers
+(35982, 4409, 1), -- MP Modifiers
+(35982, 4410, 15), -- P. Atk. Modifiers
+(35982, 4411, 11), -- M. Atk. Modifiers
+(35982, 4412, 11), -- P. Def. Modifiers
+(35982, 4413, 11), -- M. Def. Modifiers
+(35982, 4414, 3), -- Armor Type
+(35982, 4415, 9), -- Weapon Type
+(35982, 4416, 22), -- Races
 (35982, 5432, 1), -- Weapon Supply
 -- Main Machine
 (35983, 4045, 1), -- Resist Full Magic Attack
-(35983, 4408, 1), -- HP Increase (1x)
-(35983, 4409, 1), -- MP Increase (1x)
-(35983, 4410, 11), -- Average P. Atk.
-(35983, 4411, 11), -- Average M. Atk.
-(35983, 4412, 11), -- Average P. Def.
-(35983, 4413, 11), -- Average M. Def.
-(35983, 4414, 2), -- Standard Type
-(35983, 4415, 3), -- One-handed Sword
-(35983, 4416, 19), -- Others
+(35983, 4408, 1), -- HP Modifiers
+(35983, 4409, 1), -- MP Modifiers
+(35983, 4410, 11), -- P. Atk. Modifiers
+(35983, 4411, 11), -- M. Atk. Modifiers
+(35983, 4412, 11), -- P. Def. Modifiers
+(35983, 4413, 11), -- M. Def. Modifiers
+(35983, 4414, 2), -- Armor Type
+(35983, 4415, 3), -- Weapon Type
+(35983, 4416, 19), -- Races
 -- Backup Power Unit
 (35984, 4045, 1), -- Resist Full Magic Attack
-(35984, 4408, 1), -- HP Increase (1x)
-(35984, 4409, 1), -- MP Increase (1x)
-(35984, 4410, 11), -- Average P. Atk.
-(35984, 4411, 11), -- Average M. Atk.
-(35984, 4412, 11), -- Average P. Def.
-(35984, 4413, 11), -- Average M. Def.
-(35984, 4414, 2), -- Standard Type
-(35984, 4415, 3), -- One-handed Sword
-(35984, 4416, 19), -- Others
+(35984, 4408, 1), -- HP Modifiers
+(35984, 4409, 1), -- MP Modifiers
+(35984, 4410, 11), -- P. Atk. Modifiers
+(35984, 4411, 11), -- M. Atk. Modifiers
+(35984, 4412, 11), -- P. Def. Modifiers
+(35984, 4413, 11), -- M. Def. Modifiers
+(35984, 4414, 2), -- Armor Type
+(35984, 4415, 3), -- Weapon Type
+(35984, 4416, 19), -- Races
 -- Control Unit
 (35985, 4045, 1), -- Resist Full Magic Attack
-(35985, 4408, 1), -- HP Increase (1x)
-(35985, 4409, 1), -- MP Increase (1x)
-(35985, 4410, 11), -- Average P. Atk.
-(35985, 4411, 11), -- Average M. Atk.
-(35985, 4412, 11), -- Average P. Def.
-(35985, 4413, 11), -- Average M. Def.
-(35985, 4414, 2), -- Standard Type
-(35985, 4415, 3), -- One-handed Sword
-(35985, 4416, 2), -- Magic Creatures
+(35985, 4408, 1), -- HP Modifiers
+(35985, 4409, 1), -- MP Modifiers
+(35985, 4410, 11), -- P. Atk. Modifiers
+(35985, 4411, 11), -- M. Atk. Modifiers
+(35985, 4412, 11), -- P. Def. Modifiers
+(35985, 4413, 11), -- M. Def. Modifiers
+(35985, 4414, 2), -- Armor Type
+(35985, 4415, 3), -- Weapon Type
+(35985, 4416, 2), -- Races
 -- Power Control Unit
 (35986, 4045, 1), -- Resist Full Magic Attack
-(35986, 4408, 1), -- HP Increase (1x)
-(35986, 4409, 1), -- MP Increase (1x)
-(35986, 4410, 11), -- Average P. Atk.
-(35986, 4411, 11), -- Average M. Atk.
-(35986, 4412, 11), -- Average P. Def.
-(35986, 4413, 11), -- Average M. Def.
-(35986, 4414, 2), -- Standard Type
-(35986, 4415, 3), -- One-handed Sword
-(35986, 4416, 19), -- Others
+(35986, 4408, 1), -- HP Modifiers
+(35986, 4409, 1), -- MP Modifiers
+(35986, 4410, 11), -- P. Atk. Modifiers
+(35986, 4411, 11), -- M. Atk. Modifiers
+(35986, 4412, 11), -- P. Def. Modifiers
+(35986, 4413, 11), -- M. Def. Modifiers
+(35986, 4414, 2), -- Armor Type
+(35986, 4415, 3), -- Weapon Type
+(35986, 4416, 19), -- Races
 -- Dwarven Gunnery Sergeant
 (35987, 4045, 1), -- Resist Full Magic Attack
-(35987, 4408, 11), -- HP Increase (3x)
-(35987, 4409, 16), -- MP Increase (8x)
-(35987, 4410, 11), -- Average P. Atk.
-(35987, 4411, 17), -- Very Strong M. Atk.
-(35987, 4412, 11), -- Average P. Def.
-(35987, 4413, 8), -- Weak M. Def.
-(35987, 4414, 2), -- Standard Type
-(35987, 4415, 9), -- Bows
-(35987, 4416, 22), -- Defending Army
+(35987, 4408, 11), -- HP Modifiers
+(35987, 4409, 16), -- MP Modifiers
+(35987, 4410, 11), -- P. Atk. Modifiers
+(35987, 4411, 17), -- M. Atk. Modifiers
+(35987, 4412, 11), -- P. Def. Modifiers
+(35987, 4413, 8), -- M. Def. Modifiers
+(35987, 4414, 2), -- Armor Type
+(35987, 4415, 9), -- Weapon Type
+(35987, 4416, 22), -- Races
 (35987, 5432, 1), -- Weapon Supply
-(35987, 5461, 6), -- Power Shot
-(35987, 5468, 6), -- Fire Shot
+(35987, 5461, 6), -- Castle Gunner Shot
+(35987, 5468, 6), -- Castle Gunner Fire
 -- Scout Golem
 (35988, 4045, 1), -- Resist Full Magic Attack
-(35988, 4408, 6), -- HP Very High
-(35988, 4409, 1), -- MP Increase (1x)
-(35988, 4410, 11), -- Average P. Atk.
-(35988, 4411, 11), -- Average M. Atk.
-(35988, 4412, 11), -- Average P. Def.
-(35988, 4413, 16), -- Very Strong M. Def.
-(35988, 4414, 2), -- Standard Type
-(35988, 4415, 3), -- One-handed Sword
-(35988, 4416, 22), -- Defending Army
+(35988, 4408, 6), -- HP Modifiers
+(35988, 4409, 1), -- MP Modifiers
+(35988, 4410, 11), -- P. Atk. Modifiers
+(35988, 4411, 11), -- M. Atk. Modifiers
+(35988, 4412, 11), -- P. Def. Modifiers
+(35988, 4413, 16), -- M. Def. Modifiers
+(35988, 4414, 2), -- Armor Type
+(35988, 4415, 3), -- Weapon Type
+(35988, 4416, 22), -- Races
 -- Guard Captain
 (35989, 4045, 1), -- Resist Full Magic Attack
 (35989, 4172, 6), -- Stun
-(35989, 4408, 9), -- HP Increase (1/2x)
-(35989, 4409, 1), -- MP Increase (1x)
-(35989, 4410, 8), -- Weak P. Atk.
-(35989, 4411, 11), -- Average M. Atk.
-(35989, 4412, 16), -- Very Strong P. Def.
-(35989, 4413, 11), -- Average M. Def.
-(35989, 4414, 2), -- Standard Type
-(35989, 4415, 3), -- One-handed Sword
-(35989, 4416, 22), -- Defending Army
+(35989, 4408, 9), -- HP Modifiers
+(35989, 4409, 1), -- MP Modifiers
+(35989, 4410, 8), -- P. Atk. Modifiers
+(35989, 4411, 11), -- M. Atk. Modifiers
+(35989, 4412, 16), -- P. Def. Modifiers
+(35989, 4413, 11), -- M. Def. Modifiers
+(35989, 4414, 2), -- Armor Type
+(35989, 4415, 3), -- Weapon Type
+(35989, 4416, 22), -- Races
 (35989, 4435, 5), -- Greater Resist Stun
 (35989, 4439, 5), -- Greater Resist Hold
 (35989, 4440, 5), -- Greater Resist Paralysis
-(35989, 4608, 1), -- Berserker Spirit
+(35989, 4608, 1), -- NPC Clan Buff - Berserk
 (35989, 5432, 1), -- Weapon Supply
-(35989, 5457, 1), -- Complete Recovery
+(35989, 5457, 1), -- NPC Full Recover
 -- Guard
 (35990, 4045, 1), -- Resist Full Magic Attack
-(35990, 4408, 13), -- HP Increase (5x)
-(35990, 4409, 1), -- MP Increase (1x)
-(35990, 4410, 9), -- Slightly Weak P. Atk.
-(35990, 4411, 11), -- Average M. Atk.
-(35990, 4412, 16), -- Very Strong P. Def.
-(35990, 4413, 11), -- Average M. Def.
-(35990, 4414, 2), -- Standard Type
-(35990, 4415, 3), -- One-handed Sword
-(35990, 4416, 22), -- Defending Army
+(35990, 4408, 13), -- HP Modifiers
+(35990, 4409, 1), -- MP Modifiers
+(35990, 4410, 9), -- P. Atk. Modifiers
+(35990, 4411, 11), -- M. Atk. Modifiers
+(35990, 4412, 16), -- P. Def. Modifiers
+(35990, 4413, 11), -- M. Def. Modifiers
+(35990, 4414, 2), -- Armor Type
+(35990, 4415, 3), -- Weapon Type
+(35990, 4416, 22), -- Races
 (35990, 5112, 6), -- Stun
 (35990, 5432, 1), -- Weapon Supply
 -- Guard
 (35991, 4045, 1), -- Resist Full Magic Attack
-(35991, 4408, 13), -- HP Increase (5x)
-(35991, 4409, 1), -- MP Increase (1x)
-(35991, 4410, 9), -- Slightly Weak P. Atk.
-(35991, 4411, 11), -- Average M. Atk.
-(35991, 4412, 11), -- Average P. Def.
-(35991, 4413, 16), -- Very Strong M. Def.
-(35991, 4414, 2), -- Standard Type
-(35991, 4415, 3), -- One-handed Sword
-(35991, 4416, 22), -- Defending Army
-(35991, 5045, 6), -- Power Strike
+(35991, 4408, 13), -- HP Modifiers
+(35991, 4409, 1), -- MP Modifiers
+(35991, 4410, 9), -- P. Atk. Modifiers
+(35991, 4411, 11), -- M. Atk. Modifiers
+(35991, 4412, 11), -- P. Def. Modifiers
+(35991, 4413, 16), -- M. Def. Modifiers
+(35991, 4414, 2), -- Armor Type
+(35991, 4415, 3), -- Weapon Type
+(35991, 4416, 22), -- Races
+(35991, 5045, 6), -- Castle Power Strike
 (35991, 5432, 1), -- Weapon Supply
 -- Support Unit Captain
 (35992, 4045, 1), -- Resist Full Magic Attack
-(35992, 4194, 6), -- Aura Burn
-(35992, 4196, 6), -- Decrease Speed
-(35992, 4408, 9), -- HP Increase (1/2x)
-(35992, 4409, 16), -- MP Increase (8x)
-(35992, 4410, 11), -- Average P. Atk.
-(35992, 4411, 14), -- Strong M. Atk.
-(35992, 4412, 8), -- Weak P. Def.
-(35992, 4413, 14), -- Strong M. Def.
-(35992, 4414, 3), -- Light Armor Type
-(35992, 4415, 3), -- One-handed Sword
-(35992, 4416, 22), -- Defending Army
-(35992, 5396, 1), -- Spell Force
-(35992, 5398, 1), -- Final Burn
+(35992, 4194, 6), -- BOSS Aura Burn
+(35992, 4196, 6), -- Decreases Speed
+(35992, 4408, 9), -- HP Modifiers
+(35992, 4409, 16), -- MP Modifiers
+(35992, 4410, 11), -- P. Atk. Modifiers
+(35992, 4411, 14), -- M. Atk. Modifiers
+(35992, 4412, 8), -- P. Def. Modifiers
+(35992, 4413, 14), -- M. Def. Modifiers
+(35992, 4414, 3), -- Armor Type
+(35992, 4415, 3), -- Weapon Type
+(35992, 4416, 22), -- Races
+(35992, 5396, 1), -- NPC - Spell Stance
+(35992, 5398, 1), -- NPC - Combination Force
 (35992, 5432, 1), -- Weapon Supply
-(35992, 5457, 1), -- Complete Recovery
+(35992, 5457, 1), -- NPC Full Recover
 -- Wizard
 (35993, 4045, 1), -- Resist Full Magic Attack
-(35993, 4077, 6), -- Aura Burn
-(35993, 4408, 13), -- HP Increase (5x)
-(35993, 4409, 16), -- MP Increase (8x)
-(35993, 4410, 11), -- Average P. Atk.
-(35993, 4411, 16), -- Very Strong M. Atk.
-(35993, 4412, 8), -- Weak P. Def.
-(35993, 4413, 11), -- Average M. Def.
-(35993, 4414, 3), -- Light Armor Type
-(35993, 4415, 3), -- One-handed Sword
-(35993, 4416, 22), -- Defending Army
-(35993, 5053, 6), -- Hydro Blast
-(35993, 5396, 1), -- Spell Force
+(35993, 4077, 6), -- NPC Aura Burn
+(35993, 4408, 13), -- HP Modifiers
+(35993, 4409, 16), -- MP Modifiers
+(35993, 4410, 11), -- P. Atk. Modifiers
+(35993, 4411, 16), -- M. Atk. Modifiers
+(35993, 4412, 8), -- P. Def. Modifiers
+(35993, 4413, 11), -- M. Def. Modifiers
+(35993, 4414, 3), -- Armor Type
+(35993, 4415, 3), -- Weapon Type
+(35993, 4416, 22), -- Races
+(35993, 5053, 6), -- Castle DD Water
+(35993, 5396, 1), -- NPC - Spell Stance
 (35993, 5432, 1), -- Weapon Supply
 -- Healer
 (35994, 4045, 1), -- Resist Full Magic Attack
 (35994, 4115, 1), -- Aden Heal
-(35994, 4408, 15), -- HP Increase (7x)
-(35994, 4409, 16), -- MP Increase (8x)
-(35994, 4410, 11), -- Average P. Atk.
-(35994, 4411, 17), -- Very Strong M. Atk.
-(35994, 4412, 11), -- Average P. Def.
-(35994, 4413, 16), -- Very Strong M. Def.
-(35994, 4414, 3), -- Light Armor Type
-(35994, 4415, 3), -- One-handed Sword
-(35994, 4416, 22), -- Defending Army
+(35994, 4408, 15), -- HP Modifiers
+(35994, 4409, 16), -- MP Modifiers
+(35994, 4410, 11), -- P. Atk. Modifiers
+(35994, 4411, 17), -- M. Atk. Modifiers
+(35994, 4412, 11), -- P. Def. Modifiers
+(35994, 4413, 16), -- M. Def. Modifiers
+(35994, 4414, 3), -- Armor Type
+(35994, 4415, 3), -- Weapon Type
+(35994, 4416, 22), -- Races
 (35994, 5114, 6), -- Hold
 (35994, 5432, 1), -- Weapon Supply
 -- Archer Captain
 (35995, 4045, 1), -- Resist Full Magic Attack
-(35995, 4408, 9), -- HP Increase (1/2x)
-(35995, 4409, 1), -- MP Increase (1x)
-(35995, 4410, 16), -- Very Strong P. Atk.
-(35995, 4411, 11), -- Average M. Atk.
-(35995, 4412, 8), -- Weak P. Def.
-(35995, 4413, 11), -- Average M. Def.
-(35995, 4414, 3), -- Light Armor Type
-(35995, 4415, 9), -- Bows
-(35995, 4416, 22), -- Defending Army
-(35995, 4755, 6), -- Power Shot
+(35995, 4408, 9), -- HP Modifiers
+(35995, 4409, 1), -- MP Modifiers
+(35995, 4410, 16), -- P. Atk. Modifiers
+(35995, 4411, 11), -- M. Atk. Modifiers
+(35995, 4412, 8), -- P. Def. Modifiers
+(35995, 4413, 11), -- M. Def. Modifiers
+(35995, 4414, 3), -- Armor Type
+(35995, 4415, 9), -- Weapon Type
+(35995, 4416, 22), -- Races
+(35995, 4755, 6), -- BOSS Power Shot
 (35995, 5432, 1), -- Weapon Supply
-(35995, 5457, 1), -- Complete Recovery
+(35995, 5457, 1), -- NPC Full Recover
 -- Archer
 (35996, 4045, 1), -- Resist Full Magic Attack
-(35996, 4408, 13), -- HP Increase (5x)
-(35996, 4409, 1), -- MP Increase (1x)
-(35996, 4410, 14), -- Strong P. Atk.
-(35996, 4411, 11), -- Average M. Atk.
-(35996, 4412, 8), -- Weak P. Def.
-(35996, 4413, 11), -- Average M. Def.
-(35996, 4414, 3), -- Light Armor Type
-(35996, 4415, 9), -- Bows
-(35996, 4416, 22), -- Defending Army
-(35996, 5046, 6), -- Power Shot
+(35996, 4408, 13), -- HP Modifiers
+(35996, 4409, 1), -- MP Modifiers
+(35996, 4410, 14), -- P. Atk. Modifiers
+(35996, 4411, 11), -- M. Atk. Modifiers
+(35996, 4412, 8), -- P. Def. Modifiers
+(35996, 4413, 11), -- M. Def. Modifiers
+(35996, 4414, 3), -- Armor Type
+(35996, 4415, 9), -- Weapon Type
+(35996, 4416, 22), -- Races
+(35996, 5046, 6), -- Castle Power Shot
 (35996, 5432, 1), -- Weapon Supply
 -- General
 (35997, 4045, 1), -- Resist Full Magic Attack
-(35997, 4408, 9), -- HP Increase (1/2x)
-(35997, 4409, 1), -- MP Increase (1x)
-(35997, 4410, 14), -- Strong P. Atk.
-(35997, 4411, 11), -- Average M. Atk.
-(35997, 4412, 11), -- Average P. Def.
-(35997, 4413, 11), -- Average M. Def.
-(35997, 4414, 2), -- Standard Type
-(35997, 4415, 19), -- Dual-Sword Weapons
-(35997, 4416, 22), -- Defending Army
+(35997, 4408, 9), -- HP Modifiers
+(35997, 4409, 1), -- MP Modifiers
+(35997, 4410, 14), -- P. Atk. Modifiers
+(35997, 4411, 11), -- M. Atk. Modifiers
+(35997, 4412, 11), -- P. Def. Modifiers
+(35997, 4413, 11), -- M. Def. Modifiers
+(35997, 4414, 2), -- Armor Type
+(35997, 4415, 19), -- Weapon Type
+(35997, 4416, 22), -- Races
 (35997, 4725, 6), -- Stun
 (35997, 5432, 1), -- Weapon Supply
-(35997, 5457, 1), -- Complete Recovery
+(35997, 5457, 1), -- NPC Full Recover
 -- Minister 
 (35998, 4045, 1), -- Resist Full Magic Attack
-(35998, 4408, 9), -- HP Increase (1/2x)
-(35998, 4409, 1), -- MP Increase (1x)
-(35998, 4410, 14), -- Strong P. Atk.
-(35998, 4411, 11), -- Average M. Atk.
-(35998, 4412, 11), -- Average P. Def.
-(35998, 4413, 11), -- Average M. Def.
-(35998, 4414, 2), -- Standard Type
-(35998, 4415, 3), -- One-handed Sword
-(35998, 4416, 22), -- Defending Army
-(35998, 4721, 6), -- Power Strike
+(35998, 4408, 9), -- HP Modifiers
+(35998, 4409, 1), -- MP Modifiers
+(35998, 4410, 14), -- P. Atk. Modifiers
+(35998, 4411, 11), -- M. Atk. Modifiers
+(35998, 4412, 11), -- P. Def. Modifiers
+(35998, 4413, 11), -- M. Def. Modifiers
+(35998, 4414, 2), -- Armor Type
+(35998, 4415, 3), -- Weapon Type
+(35998, 4416, 22), -- Races
+(35998, 4721, 6), -- BOSS Strike
 (35998, 5432, 1), -- Weapon Supply
-(35998, 5457, 1), -- Complete Recovery
+(35998, 5457, 1), -- NPC Full Recover
 -- Ballista
 (35999, 2342, 1), -- Ballista Bomb
 (35999, 4045, 1), -- Resist Full Magic Attack
-(35999, 4408, 16), -- HP Increase (8x)
-(35999, 4409, 1), -- MP Increase (1x)
-(35999, 4410, 11), -- Average P. Atk.
-(35999, 4411, 11), -- Average M. Atk.
-(35999, 4412, 11), -- Average P. Def.
-(35999, 4413, 11), -- Average M. Def.
-(35999, 4414, 2), -- Standard Type
-(35999, 4415, 3), -- One-handed Sword
-(35999, 4416, 22), -- Defending Army
+(35999, 4408, 16), -- HP Modifiers
+(35999, 4409, 1), -- MP Modifiers
+(35999, 4410, 11), -- P. Atk. Modifiers
+(35999, 4411, 11), -- M. Atk. Modifiers
+(35999, 4412, 11), -- P. Def. Modifiers
+(35999, 4413, 11), -- M. Def. Modifiers
+(35999, 4414, 2), -- Armor Type
+(35999, 4415, 3), -- Weapon Type
+(35999, 4416, 22), -- Races
 -- Mercenary Captain
 (36000, 4045, 1), -- Resist Full Magic Attack
-(36000, 4408, 11), -- HP Increase (3x)
-(36000, 4409, 1), -- MP Increase (1x)
-(36000, 4410, 11), -- Average P. Atk.
-(36000, 4411, 11), -- Average M. Atk.
-(36000, 4412, 11), -- Average P. Def.
-(36000, 4413, 11), -- Average M. Def.
-(36000, 4414, 2), -- Standard Type
-(36000, 4415, 3), -- One-handed Sword
-(36000, 4416, 14), -- Humans
+(36000, 4408, 11), -- HP Modifiers
+(36000, 4409, 1), -- MP Modifiers
+(36000, 4410, 11), -- P. Atk. Modifiers
+(36000, 4411, 11), -- M. Atk. Modifiers
+(36000, 4412, 11), -- P. Def. Modifiers
+(36000, 4413, 11), -- M. Def. Modifiers
+(36000, 4414, 2), -- Armor Type
+(36000, 4415, 3), -- Weapon Type
+(36000, 4416, 14), -- Races
 -- Mercenary Private
 (36001, 4045, 1), -- Resist Full Magic Attack
-(36001, 4408, 11), -- HP Increase (3x)
-(36001, 4409, 1), -- MP Increase (1x)
-(36001, 4410, 13), -- Slightly Strong P. Atk.
-(36001, 4411, 11), -- Average M. Atk.
-(36001, 4412, 11), -- Average P. Def.
-(36001, 4413, 11), -- Average M. Def.
-(36001, 4414, 2), -- Standard Type
-(36001, 4415, 11), -- Spears
-(36001, 4416, 17), -- Orcs
+(36001, 4408, 11), -- HP Modifiers
+(36001, 4409, 1), -- MP Modifiers
+(36001, 4410, 13), -- P. Atk. Modifiers
+(36001, 4411, 11), -- M. Atk. Modifiers
+(36001, 4412, 11), -- P. Def. Modifiers
+(36001, 4413, 11), -- M. Def. Modifiers
+(36001, 4414, 2), -- Armor Type
+(36001, 4415, 11), -- Weapon Type
+(36001, 4416, 17), -- Races
 -- Flagpole
 (36002, 4045, 1), -- Resist Full Magic Attack
-(36002, 4408, 1), -- HP Increase (1x)
-(36002, 4409, 1), -- MP Increase (1x)
-(36002, 4410, 11), -- Average P. Atk.
-(36002, 4411, 11), -- Average M. Atk.
-(36002, 4412, 11), -- Average P. Def.
-(36002, 4413, 11), -- Average M. Def.
-(36002, 4414, 2), -- Standard Type
-(36002, 4415, 3), -- One-handed Sword
-(36002, 4416, 19), -- Others
+(36002, 4408, 1), -- HP Modifiers
+(36002, 4409, 1), -- MP Modifiers
+(36002, 4410, 11), -- P. Atk. Modifiers
+(36002, 4411, 11), -- M. Atk. Modifiers
+(36002, 4412, 11), -- P. Def. Modifiers
+(36002, 4413, 11), -- M. Def. Modifiers
+(36002, 4414, 2), -- Armor Type
+(36002, 4415, 3), -- Weapon Type
+(36002, 4416, 19), -- Races
 -- Foreman
 (36003, 4045, 1), -- Resist Full Magic Attack
-(36003, 4408, 1), -- HP Increase (1x)
-(36003, 4409, 1), -- MP Increase (1x)
-(36003, 4410, 11), -- Average P. Atk.
-(36003, 4411, 11), -- Average M. Atk.
-(36003, 4412, 11), -- Average P. Def.
-(36003, 4413, 11), -- Average M. Def.
-(36003, 4414, 2), -- Standard Type
-(36003, 4415, 3), -- One-handed Sword
-(36003, 4416, 14), -- Humans
+(36003, 4408, 1), -- HP Modifiers
+(36003, 4409, 1), -- MP Modifiers
+(36003, 4410, 11), -- P. Atk. Modifiers
+(36003, 4411, 11), -- M. Atk. Modifiers
+(36003, 4412, 11), -- P. Def. Modifiers
+(36003, 4413, 11), -- M. Def. Modifiers
+(36003, 4414, 2), -- Armor Type
+(36003, 4415, 3), -- Weapon Type
+(36003, 4416, 14), -- Races
 -- Suspicious Merchant
 (36004, 4045, 1), -- Resist Full Magic Attack
-(36004, 4408, 1), -- HP Increase (1x)
-(36004, 4409, 1), -- MP Increase (1x)
-(36004, 4410, 11), -- Average P. Atk.
-(36004, 4411, 11), -- Average M. Atk.
-(36004, 4412, 11), -- Average P. Def.
-(36004, 4413, 11), -- Average M. Def.
-(36004, 4414, 2), -- Standard Type
-(36004, 4415, 3), -- One-handed Sword
-(36004, 4416, 17), -- Orcs
+(36004, 4408, 1), -- HP Modifiers
+(36004, 4409, 1), -- MP Modifiers
+(36004, 4410, 11), -- P. Atk. Modifiers
+(36004, 4411, 11), -- M. Atk. Modifiers
+(36004, 4412, 11), -- P. Def. Modifiers
+(36004, 4413, 11), -- M. Def. Modifiers
+(36004, 4414, 2), -- Armor Type
+(36004, 4415, 3), -- Weapon Type
+(36004, 4416, 17), -- Races
 -- Guard Captain
 (36005, 4045, 1), -- Resist Full Magic Attack
-(36005, 4408, 1), -- HP Increase (1x)
-(36005, 4409, 1), -- MP Increase (1x)
-(36005, 4410, 11), -- Average P. Atk.
-(36005, 4411, 11), -- Average M. Atk.
-(36005, 4412, 11), -- Average P. Def.
-(36005, 4413, 11), -- Average M. Def.
-(36005, 4414, 2), -- Standard Type
-(36005, 4415, 3), -- One-handed Sword
-(36005, 4416, 14), -- Humans
+(36005, 4408, 1), -- HP Modifiers
+(36005, 4409, 1), -- MP Modifiers
+(36005, 4410, 11), -- P. Atk. Modifiers
+(36005, 4411, 11), -- M. Atk. Modifiers
+(36005, 4412, 11), -- P. Def. Modifiers
+(36005, 4413, 11), -- M. Def. Modifiers
+(36005, 4414, 2), -- Armor Type
+(36005, 4415, 3), -- Weapon Type
+(36005, 4416, 14), -- Races
 -- Archer Captain
 (36006, 4045, 1), -- Resist Full Magic Attack
-(36006, 4408, 1), -- HP Increase (1x)
-(36006, 4409, 1), -- MP Increase (1x)
-(36006, 4410, 11), -- Average P. Atk.
-(36006, 4411, 11), -- Average M. Atk.
-(36006, 4412, 11), -- Average P. Def.
-(36006, 4413, 11); -- Average M. Def.
-
-INSERT INTO `npcskills` VALUES
-(36006, 4414, 2), -- Standard Type
-(36006, 4415, 9), -- Bows
-(36006, 4416, 15), -- Elves
+(36006, 4408, 1), -- HP Modifiers
+(36006, 4409, 1), -- MP Modifiers
+(36006, 4410, 11), -- P. Atk. Modifiers
+(36006, 4411, 11), -- M. Atk. Modifiers
+(36006, 4412, 11), -- P. Def. Modifiers
+(36006, 4413, 11), -- M. Def. Modifiers
+(36006, 4414, 2), -- Armor Type
+(36006, 4415, 9), -- Weapon Type
+(36006, 4416, 15), -- Races
 -- Support Unit Captain
 (36007, 4045, 1), -- Resist Full Magic Attack
-(36007, 4408, 1), -- HP Increase (1x)
-(36007, 4409, 1), -- MP Increase (1x)
-(36007, 4410, 11), -- Average P. Atk.
-(36007, 4411, 11), -- Average M. Atk.
-(36007, 4412, 11), -- Average P. Def.
-(36007, 4413, 11), -- Average M. Def.
-(36007, 4414, 2), -- Standard Type
-(36007, 4415, 3), -- One-handed Sword
-(36007, 4416, 14), -- Humans
+(36007, 4408, 1), -- HP Modifiers
+(36007, 4409, 1), -- MP Modifiers
+(36007, 4410, 11), -- P. Atk. Modifiers
+(36007, 4411, 11), -- M. Atk. Modifiers
+(36007, 4412, 11), -- P. Def. Modifiers
+(36007, 4413, 11), -- M. Def. Modifiers
+(36007, 4414, 2), -- Armor Type
+(36007, 4415, 3), -- Weapon Type
+(36007, 4416, 14), -- Races
 -- Engineering Manager
 (36008, 4045, 1), -- Resist Full Magic Attack
-(36008, 4408, 1), -- HP Increase (1x)
-(36008, 4409, 1), -- MP Increase (1x)
-(36008, 4410, 11), -- Average P. Atk.
-(36008, 4411, 11), -- Average M. Atk.
-(36008, 4412, 11), -- Average P. Def.
-(36008, 4413, 11), -- Average M. Def.
-(36008, 4414, 2), -- Standard Type
-(36008, 4415, 3), -- One-handed Sword
-(36008, 4416, 18), -- Dwarves
+(36008, 4408, 1), -- HP Modifiers
+(36008, 4409, 1), -- MP Modifiers
+(36008, 4410, 11), -- P. Atk. Modifiers
+(36008, 4411, 11), -- M. Atk. Modifiers
+(36008, 4412, 11), -- P. Def. Modifiers
+(36008, 4413, 11), -- M. Def. Modifiers
+(36008, 4414, 2), -- Armor Type
+(36008, 4415, 3), -- Weapon Type
+(36008, 4416, 18), -- Races
 -- Logistics Officer
 (36009, 4045, 1), -- Resist Full Magic Attack
-(36009, 4408, 1), -- HP Increase (1x)
-(36009, 4409, 1), -- MP Increase (1x)
-(36009, 4410, 11), -- Average P. Atk.
-(36009, 4411, 11), -- Average M. Atk.
-(36009, 4412, 11), -- Average P. Def.
-(36009, 4413, 11), -- Average M. Def.
-(36009, 4414, 2), -- Standard Type
-(36009, 4415, 3), -- One-handed Sword
-(36009, 4416, 18), -- Dwarves
+(36009, 4408, 1), -- HP Modifiers
+(36009, 4409, 1), -- MP Modifiers
+(36009, 4410, 11), -- P. Atk. Modifiers
+(36009, 4411, 11), -- M. Atk. Modifiers
+(36009, 4412, 11), -- P. Def. Modifiers
+(36009, 4413, 11), -- M. Def. Modifiers
+(36009, 4414, 2), -- Armor Type
+(36009, 4415, 3), -- Weapon Type
+(36009, 4416, 18), -- Races
 -- Supply Box
 (36010, 4045, 1), -- Resist Full Magic Attack
-(36010, 4408, 1), -- HP Increase (1x)
-(36010, 4409, 1), -- MP Increase (1x)
-(36010, 4410, 11), -- Average P. Atk.
-(36010, 4411, 11), -- Average M. Atk.
-(36010, 4412, 11), -- Average P. Def.
-(36010, 4413, 11), -- Average M. Def.
-(36010, 4414, 2), -- Standard Type
-(36010, 4415, 3), -- One-handed Sword
-(36010, 4416, 2), -- Magic Creatures
+(36010, 4408, 1), -- HP Modifiers
+(36010, 4409, 1), -- MP Modifiers
+(36010, 4410, 11), -- P. Atk. Modifiers
+(36010, 4411, 11), -- M. Atk. Modifiers
+(36010, 4412, 11), -- P. Def. Modifiers
+(36010, 4413, 11), -- M. Def. Modifiers
+(36010, 4414, 2), -- Armor Type
+(36010, 4415, 3), -- Weapon Type
+(36010, 4416, 2), -- Races
 -- Detention Camp Warden
 (36011, 4045, 1), -- Resist Full Magic Attack
-(36011, 4408, 1), -- HP Increase (1x)
-(36011, 4409, 1), -- MP Increase (1x)
-(36011, 4410, 11), -- Average P. Atk.
-(36011, 4411, 11), -- Average M. Atk.
-(36011, 4412, 11), -- Average P. Def.
-(36011, 4413, 11), -- Average M. Def.
-(36011, 4414, 2), -- Standard Type
-(36011, 4415, 3), -- One-handed Sword
-(36011, 4416, 14), -- Humans
+(36011, 4408, 1), -- HP Modifiers
+(36011, 4409, 1), -- MP Modifiers
+(36011, 4410, 11), -- P. Atk. Modifiers
+(36011, 4411, 11), -- M. Atk. Modifiers
+(36011, 4412, 11), -- P. Def. Modifiers
+(36011, 4413, 11), -- M. Def. Modifiers
+(36011, 4414, 2), -- Armor Type
+(36011, 4415, 3), -- Weapon Type
+(36011, 4416, 14), -- Races
 -- Doorman
 (36012, 4045, 1), -- Resist Full Magic Attack
-(36012, 4408, 1), -- HP Increase (1x)
-(36012, 4409, 1), -- MP Increase (1x)
-(36012, 4410, 11), -- Average P. Atk.
-(36012, 4411, 11), -- Average M. Atk.
-(36012, 4412, 11), -- Average P. Def.
-(36012, 4413, 11), -- Average M. Def.
-(36012, 4414, 2), -- Standard Type
-(36012, 4415, 3), -- One-handed Sword
-(36012, 4416, 14), -- Humans
+(36012, 4408, 1), -- HP Modifiers
+(36012, 4409, 1), -- MP Modifiers
+(36012, 4410, 11), -- P. Atk. Modifiers
+(36012, 4411, 11), -- M. Atk. Modifiers
+(36012, 4412, 11), -- P. Def. Modifiers
+(36012, 4413, 11), -- M. Def. Modifiers
+(36012, 4414, 2), -- Armor Type
+(36012, 4415, 3), -- Weapon Type
+(36012, 4416, 14), -- Races
 -- Doorman
 (36013, 4045, 1), -- Resist Full Magic Attack
-(36013, 4408, 1), -- HP Increase (1x)
-(36013, 4409, 1), -- MP Increase (1x)
-(36013, 4410, 11), -- Average P. Atk.
-(36013, 4411, 11), -- Average M. Atk.
-(36013, 4412, 11), -- Average P. Def.
-(36013, 4413, 11), -- Average M. Def.
-(36013, 4414, 2), -- Standard Type
-(36013, 4415, 3), -- One-handed Sword
-(36013, 4416, 14), -- Humans
+(36013, 4408, 1), -- HP Modifiers
+(36013, 4409, 1), -- MP Modifiers
+(36013, 4410, 11), -- P. Atk. Modifiers
+(36013, 4411, 11), -- M. Atk. Modifiers
+(36013, 4412, 11), -- P. Def. Modifiers
+(36013, 4413, 11), -- M. Def. Modifiers
+(36013, 4414, 2), -- Armor Type
+(36013, 4415, 3), -- Weapon Type
+(36013, 4416, 14), -- Races
 -- Doorman
 (36014, 4045, 1), -- Resist Full Magic Attack
-(36014, 4408, 1), -- HP Increase (1x)
-(36014, 4409, 1), -- MP Increase (1x)
-(36014, 4410, 11), -- Average P. Atk.
-(36014, 4411, 11), -- Average M. Atk.
-(36014, 4412, 11), -- Average P. Def.
-(36014, 4413, 11), -- Average M. Def.
-(36014, 4414, 2), -- Standard Type
-(36014, 4415, 3), -- One-handed Sword
-(36014, 4416, 14), -- Humans
+(36014, 4408, 1), -- HP Modifiers
+(36014, 4409, 1), -- MP Modifiers
+(36014, 4410, 11), -- P. Atk. Modifiers
+(36014, 4411, 11), -- M. Atk. Modifiers
+(36014, 4412, 11), -- P. Def. Modifiers
+(36014, 4413, 11), -- M. Def. Modifiers
+(36014, 4414, 2), -- Armor Type
+(36014, 4415, 3), -- Weapon Type
+(36014, 4416, 14), -- Races
 -- Rebel Commander
 (36015, 4045, 1), -- Resist Full Magic Attack
-(36015, 4178, 7), -- Flame Strike
-(36015, 4195, 7), -- Twister
-(36015, 4408, 10), -- HP Increase (2x)
-(36015, 4409, 1), -- MP Increase (1x)
-(36015, 4410, 11), -- Average P. Atk.
-(36015, 4411, 17), -- Very Strong M. Atk.
-(36015, 4412, 11), -- Average P. Def.
-(36015, 4413, 11), -- Average M. Def.
-(36015, 4414, 2), -- Standard Type
-(36015, 4415, 3), -- One-handed Sword
-(36015, 4416, 16), -- Dark Elves
+(36015, 4178, 7), -- BOSS Flame Strike
+(36015, 4195, 7), -- BOSS Twister
+(36015, 4408, 10), -- HP Modifiers
+(36015, 4409, 1), -- MP Modifiers
+(36015, 4410, 11), -- P. Atk. Modifiers
+(36015, 4411, 17), -- M. Atk. Modifiers
+(36015, 4412, 11), -- P. Def. Modifiers
+(36015, 4413, 11), -- M. Def. Modifiers
+(36015, 4414, 2), -- Armor Type
+(36015, 4415, 3), -- Weapon Type
+(36015, 4416, 16), -- Races
 -- Decorated Rebel Soldier
 (36016, 4045, 1), -- Resist Full Magic Attack
-(36016, 4408, 14), -- HP Increase (6x)
-(36016, 4409, 1), -- MP Increase (1x)
-(36016, 4410, 15), -- Strong P. Atk.
-(36016, 4411, 11), -- Average M. Atk.
-(36016, 4412, 11), -- Average P. Def.
-(36016, 4413, 15), -- Strong M. Def.
-(36016, 4414, 2), -- Standard Type
-(36016, 4415, 1), -- Bare Hands
-(36016, 4416, 9), -- Demons
-(36016, 5065, 7), -- Unholy Strike
+(36016, 4408, 14), -- HP Modifiers
+(36016, 4409, 1), -- MP Modifiers
+(36016, 4410, 15), -- P. Atk. Modifiers
+(36016, 4411, 11), -- M. Atk. Modifiers
+(36016, 4412, 11), -- P. Def. Modifiers
+(36016, 4413, 15), -- M. Def. Modifiers
+(36016, 4414, 2), -- Armor Type
+(36016, 4415, 1), -- Weapon Type
+(36016, 4416, 9), -- Races
+(36016, 5065, 7), -- Castle DD Unholy
 -- Rebel Private
 (36017, 4045, 1), -- Resist Full Magic Attack
-(36017, 4408, 12), -- HP Increase (4x)
-(36017, 4409, 1), -- MP Increase (1x)
-(36017, 4410, 14), -- Strong P. Atk.
-(36017, 4411, 11), -- Average M. Atk.
-(36017, 4412, 11), -- Average P. Def.
-(36017, 4413, 11), -- Average M. Def.
-(36017, 4414, 2), -- Standard Type
-(36017, 4415, 11), -- Spears
-(36017, 4416, 14), -- Humans
+(36017, 4408, 12), -- HP Modifiers
+(36017, 4409, 1), -- MP Modifiers
+(36017, 4410, 14), -- P. Atk. Modifiers
+(36017, 4411, 11), -- M. Atk. Modifiers
+(36017, 4412, 11), -- P. Def. Modifiers
+(36017, 4413, 11), -- M. Def. Modifiers
+(36017, 4414, 2), -- Armor Type
+(36017, 4415, 11), -- Weapon Type
+(36017, 4416, 14), -- Races
 -- Court Guard
 (36018, 4045, 1), -- Resist Full Magic Attack
-(36018, 4408, 12), -- HP Increase (4x)
-(36018, 4409, 1), -- MP Increase (1x)
-(36018, 4410, 11), -- Average P. Atk.
-(36018, 4411, 11), -- Average M. Atk.
-(36018, 4412, 11), -- Average P. Def.
-(36018, 4413, 16), -- Very Strong M. Def.
-(36018, 4414, 2), -- Standard Type
-(36018, 4415, 11), -- Spears
-(36018, 4416, 22), -- Defending Army
+(36018, 4408, 12), -- HP Modifiers
+(36018, 4409, 1), -- MP Modifiers
+(36018, 4410, 11), -- P. Atk. Modifiers
+(36018, 4411, 11), -- M. Atk. Modifiers
+(36018, 4412, 11), -- P. Def. Modifiers
+(36018, 4413, 16), -- M. Def. Modifiers
+(36018, 4414, 2), -- Armor Type
+(36018, 4415, 11), -- Weapon Type
+(36018, 4416, 22), -- Races
 (36018, 5432, 1), -- Weapon Supply
 -- Guard
 (36019, 4045, 1), -- Resist Full Magic Attack
-(36019, 4408, 12), -- HP Increase (4x)
-(36019, 4409, 1), -- MP Increase (1x)
-(36019, 4410, 15), -- Strong P. Atk.
-(36019, 4411, 11), -- Average M. Atk.
-(36019, 4412, 11), -- Average P. Def.
-(36019, 4413, 11), -- Average M. Def.
-(36019, 4414, 3), -- Light Armor Type
-(36019, 4415, 9), -- Bows
-(36019, 4416, 22), -- Defending Army
+(36019, 4408, 12), -- HP Modifiers
+(36019, 4409, 1), -- MP Modifiers
+(36019, 4410, 15), -- P. Atk. Modifiers
+(36019, 4411, 11), -- M. Atk. Modifiers
+(36019, 4412, 11), -- P. Def. Modifiers
+(36019, 4413, 11), -- M. Def. Modifiers
+(36019, 4414, 3), -- Armor Type
+(36019, 4415, 9), -- Weapon Type
+(36019, 4416, 22), -- Races
 (36019, 5432, 1), -- Weapon Supply
 -- Power Control Unit
 (36020, 4045, 1), -- Resist Full Magic Attack
-(36020, 4408, 1), -- HP Increase (1x)
-(36020, 4409, 1), -- MP Increase (1x)
-(36020, 4410, 11), -- Average P. Atk.
-(36020, 4411, 11), -- Average M. Atk.
-(36020, 4412, 11), -- Average P. Def.
-(36020, 4413, 11), -- Average M. Def.
-(36020, 4414, 2), -- Standard Type
-(36020, 4415, 3), -- One-handed Sword
-(36020, 4416, 19), -- Others
+(36020, 4408, 1), -- HP Modifiers
+(36020, 4409, 1), -- MP Modifiers
+(36020, 4410, 11), -- P. Atk. Modifiers
+(36020, 4411, 11), -- M. Atk. Modifiers
+(36020, 4412, 11), -- P. Def. Modifiers
+(36020, 4413, 11), -- M. Def. Modifiers
+(36020, 4414, 2), -- Armor Type
+(36020, 4415, 3), -- Weapon Type
+(36020, 4416, 19), -- Races
 -- Dwarven Gunnery Sergeant
 (36021, 4045, 1), -- Resist Full Magic Attack
-(36021, 4408, 11), -- HP Increase (3x)
-(36021, 4409, 16), -- MP Increase (8x)
-(36021, 4410, 11), -- Average P. Atk.
-(36021, 4411, 17), -- Very Strong M. Atk.
-(36021, 4412, 11), -- Average P. Def.
-(36021, 4413, 8), -- Weak M. Def.
-(36021, 4414, 2), -- Standard Type
-(36021, 4415, 9), -- Bows
-(36021, 4416, 22), -- Defending Army
+(36021, 4408, 11), -- HP Modifiers
+(36021, 4409, 16), -- MP Modifiers
+(36021, 4410, 11), -- P. Atk. Modifiers
+(36021, 4411, 17), -- M. Atk. Modifiers
+(36021, 4412, 11), -- P. Def. Modifiers
+(36021, 4413, 8), -- M. Def. Modifiers
+(36021, 4414, 2), -- Armor Type
+(36021, 4415, 9), -- Weapon Type
+(36021, 4416, 22), -- Races
 (36021, 5432, 1), -- Weapon Supply
-(36021, 5461, 6), -- Power Shot
-(36021, 5468, 6), -- Fire Shot
+(36021, 5461, 6), -- Castle Gunner Shot
+(36021, 5468, 6), -- Castle Gunner Fire
 -- Guard Captain
 (36022, 4045, 1), -- Resist Full Magic Attack
 (36022, 4172, 6), -- Stun
-(36022, 4408, 9), -- HP Increase (1/2x)
-(36022, 4409, 1), -- MP Increase (1x)
-(36022, 4410, 8), -- Weak P. Atk.
-(36022, 4411, 11), -- Average M. Atk.
-(36022, 4412, 16), -- Very Strong P. Def.
-(36022, 4413, 11), -- Average M. Def.
-(36022, 4414, 2), -- Standard Type
-(36022, 4415, 3), -- One-handed Sword
-(36022, 4416, 22), -- Defending Army
+(36022, 4408, 9), -- HP Modifiers
+(36022, 4409, 1), -- MP Modifiers
+(36022, 4410, 8), -- P. Atk. Modifiers
+(36022, 4411, 11), -- M. Atk. Modifiers
+(36022, 4412, 16), -- P. Def. Modifiers
+(36022, 4413, 11), -- M. Def. Modifiers
+(36022, 4414, 2), -- Armor Type
+(36022, 4415, 3), -- Weapon Type
+(36022, 4416, 22), -- Races
 (36022, 4435, 5), -- Greater Resist Stun
 (36022, 4439, 5), -- Greater Resist Hold
 (36022, 4440, 5), -- Greater Resist Paralysis
-(36022, 4608, 1), -- Berserker Spirit
+(36022, 4608, 1), -- NPC Clan Buff - Berserk
 (36022, 5432, 1), -- Weapon Supply
-(36022, 5457, 1), -- Complete Recovery
+(36022, 5457, 1), -- NPC Full Recover
 -- Guard
 (36023, 4045, 1), -- Resist Full Magic Attack
-(36023, 4408, 13), -- HP Increase (5x)
-(36023, 4409, 1), -- MP Increase (1x)
-(36023, 4410, 9), -- Slightly Weak P. Atk.
-(36023, 4411, 11), -- Average M. Atk.
-(36023, 4412, 16), -- Very Strong P. Def.
-(36023, 4413, 11), -- Average M. Def.
-(36023, 4414, 2), -- Standard Type
-(36023, 4415, 3), -- One-handed Sword
-(36023, 4416, 22), -- Defending Army
+(36023, 4408, 13), -- HP Modifiers
+(36023, 4409, 1), -- MP Modifiers
+(36023, 4410, 9), -- P. Atk. Modifiers
+(36023, 4411, 11), -- M. Atk. Modifiers
+(36023, 4412, 16), -- P. Def. Modifiers
+(36023, 4413, 11), -- M. Def. Modifiers
+(36023, 4414, 2), -- Armor Type
+(36023, 4415, 3), -- Weapon Type
+(36023, 4416, 22), -- Races
 (36023, 5112, 6), -- Stun
 (36023, 5432, 1), -- Weapon Supply
 -- Guard
 (36024, 4045, 1), -- Resist Full Magic Attack
-(36024, 4408, 13), -- HP Increase (5x)
-(36024, 4409, 1), -- MP Increase (1x)
-(36024, 4410, 9), -- Slightly Weak P. Atk.
-(36024, 4411, 11), -- Average M. Atk.
-(36024, 4412, 11), -- Average P. Def.
-(36024, 4413, 16), -- Very Strong M. Def.
-(36024, 4414, 2), -- Standard Type
-(36024, 4415, 3), -- One-handed Sword
-(36024, 4416, 22), -- Defending Army
-(36024, 5045, 6), -- Power Strike
+(36024, 4408, 13), -- HP Modifiers
+(36024, 4409, 1), -- MP Modifiers
+(36024, 4410, 9), -- P. Atk. Modifiers
+(36024, 4411, 11), -- M. Atk. Modifiers
+(36024, 4412, 11), -- P. Def. Modifiers
+(36024, 4413, 16), -- M. Def. Modifiers
+(36024, 4414, 2), -- Armor Type
+(36024, 4415, 3), -- Weapon Type
+(36024, 4416, 22), -- Races
+(36024, 5045, 6), -- Castle Power Strike
 (36024, 5432, 1), -- Weapon Supply
 -- Support Unit Captain
 (36025, 4045, 1), -- Resist Full Magic Attack
-(36025, 4194, 6), -- Aura Burn
-(36025, 4196, 6), -- Decrease Speed
-(36025, 4408, 9), -- HP Increase (1/2x)
-(36025, 4409, 16), -- MP Increase (8x)
-(36025, 4410, 11), -- Average P. Atk.
-(36025, 4411, 14), -- Strong M. Atk.
-(36025, 4412, 8), -- Weak P. Def.
-(36025, 4413, 14), -- Strong M. Def.
-(36025, 4414, 3), -- Light Armor Type
-(36025, 4415, 3), -- One-handed Sword
-(36025, 4416, 22), -- Defending Army
-(36025, 5396, 1), -- Spell Force
-(36025, 5398, 1), -- Final Burn
+(36025, 4194, 6), -- BOSS Aura Burn
+(36025, 4196, 6), -- Decreases Speed
+(36025, 4408, 9), -- HP Modifiers
+(36025, 4409, 16), -- MP Modifiers
+(36025, 4410, 11), -- P. Atk. Modifiers
+(36025, 4411, 14), -- M. Atk. Modifiers
+(36025, 4412, 8), -- P. Def. Modifiers
+(36025, 4413, 14), -- M. Def. Modifiers
+(36025, 4414, 3), -- Armor Type
+(36025, 4415, 3), -- Weapon Type
+(36025, 4416, 22), -- Races
+(36025, 5396, 1), -- NPC - Spell Stance
+(36025, 5398, 1), -- NPC - Combination Force
 (36025, 5432, 1), -- Weapon Supply
-(36025, 5457, 1), -- Complete Recovery
+(36025, 5457, 1), -- NPC Full Recover
 -- Wizard
 (36026, 4045, 1), -- Resist Full Magic Attack
-(36026, 4077, 6), -- Aura Burn
-(36026, 4408, 13), -- HP Increase (5x)
-(36026, 4409, 16), -- MP Increase (8x)
-(36026, 4410, 11), -- Average P. Atk.
-(36026, 4411, 16), -- Very Strong M. Atk.
-(36026, 4412, 8), -- Weak P. Def.
-(36026, 4413, 11), -- Average M. Def.
-(36026, 4414, 3), -- Light Armor Type
-(36026, 4415, 3), -- One-handed Sword
-(36026, 4416, 22), -- Defending Army
-(36026, 5053, 6), -- Hydro Blast
-(36026, 5396, 1), -- Spell Force
+(36026, 4077, 6), -- NPC Aura Burn
+(36026, 4408, 13), -- HP Modifiers
+(36026, 4409, 16), -- MP Modifiers
+(36026, 4410, 11), -- P. Atk. Modifiers
+(36026, 4411, 16), -- M. Atk. Modifiers
+(36026, 4412, 8), -- P. Def. Modifiers
+(36026, 4413, 11), -- M. Def. Modifiers
+(36026, 4414, 3), -- Armor Type
+(36026, 4415, 3), -- Weapon Type
+(36026, 4416, 22), -- Races
+(36026, 5053, 6), -- Castle DD Water
+(36026, 5396, 1), -- NPC - Spell Stance
 (36026, 5432, 1), -- Weapon Supply
 -- Healer
 (36027, 4045, 1), -- Resist Full Magic Attack
 (36027, 4115, 1), -- Aden Heal
-(36027, 4408, 15), -- HP Increase (7x)
-(36027, 4409, 16), -- MP Increase (8x)
-(36027, 4410, 11), -- Average P. Atk.
-(36027, 4411, 17), -- Very Strong M. Atk.
-(36027, 4412, 11), -- Average P. Def.
-(36027, 4413, 16), -- Very Strong M. Def.
-(36027, 4414, 3), -- Light Armor Type
-(36027, 4415, 3), -- One-handed Sword
-(36027, 4416, 22), -- Defending Army
+(36027, 4408, 15), -- HP Modifiers
+(36027, 4409, 16), -- MP Modifiers
+(36027, 4410, 11), -- P. Atk. Modifiers
+(36027, 4411, 17), -- M. Atk. Modifiers
+(36027, 4412, 11), -- P. Def. Modifiers
+(36027, 4413, 16), -- M. Def. Modifiers
+(36027, 4414, 3), -- Armor Type
+(36027, 4415, 3), -- Weapon Type
+(36027, 4416, 22), -- Races
 (36027, 5114, 6), -- Hold
 (36027, 5432, 1), -- Weapon Supply
 -- Archer Captain
 (36028, 4045, 1), -- Resist Full Magic Attack
-(36028, 4408, 9), -- HP Increase (1/2x)
-(36028, 4409, 1), -- MP Increase (1x)
-(36028, 4410, 16), -- Very Strong P. Atk.
-(36028, 4411, 11), -- Average M. Atk.
-(36028, 4412, 8), -- Weak P. Def.
-(36028, 4413, 11), -- Average M. Def.
-(36028, 4414, 3), -- Light Armor Type
-(36028, 4415, 9), -- Bows
-(36028, 4416, 22), -- Defending Army
-(36028, 4755, 6), -- Power Shot
+(36028, 4408, 9), -- HP Modifiers
+(36028, 4409, 1), -- MP Modifiers
+(36028, 4410, 16), -- P. Atk. Modifiers
+(36028, 4411, 11), -- M. Atk. Modifiers
+(36028, 4412, 8), -- P. Def. Modifiers
+(36028, 4413, 11), -- M. Def. Modifiers
+(36028, 4414, 3), -- Armor Type
+(36028, 4415, 9), -- Weapon Type
+(36028, 4416, 22), -- Races
+(36028, 4755, 6), -- BOSS Power Shot
 (36028, 5432, 1), -- Weapon Supply
-(36028, 5457, 1), -- Complete Recovery
+(36028, 5457, 1), -- NPC Full Recover
 -- Archer
 (36029, 4045, 1), -- Resist Full Magic Attack
-(36029, 4408, 13), -- HP Increase (5x)
-(36029, 4409, 1), -- MP Increase (1x)
-(36029, 4410, 14), -- Strong P. Atk.
-(36029, 4411, 11), -- Average M. Atk.
-(36029, 4412, 8), -- Weak P. Def.
-(36029, 4413, 11), -- Average M. Def.
-(36029, 4414, 3), -- Light Armor Type
-(36029, 4415, 9), -- Bows
-(36029, 4416, 22), -- Defending Army
-(36029, 5046, 6), -- Power Shot
+(36029, 4408, 13), -- HP Modifiers
+(36029, 4409, 1), -- MP Modifiers
+(36029, 4410, 14), -- P. Atk. Modifiers
+(36029, 4411, 11), -- M. Atk. Modifiers
+(36029, 4412, 8), -- P. Def. Modifiers
+(36029, 4413, 11), -- M. Def. Modifiers
+(36029, 4414, 3), -- Armor Type
+(36029, 4415, 9), -- Weapon Type
+(36029, 4416, 22), -- Races
+(36029, 5046, 6), -- Castle Power Shot
 (36029, 5432, 1), -- Weapon Supply
 -- Ballista
 (36030, 2342, 1), -- Ballista Bomb
 (36030, 4045, 1), -- Resist Full Magic Attack
-(36030, 4408, 16), -- HP Increase (8x)
-(36030, 4409, 1), -- MP Increase (1x)
-(36030, 4410, 11), -- Average P. Atk.
-(36030, 4411, 11), -- Average M. Atk.
-(36030, 4412, 11), -- Average P. Def.
-(36030, 4413, 11), -- Average M. Def.
-(36030, 4414, 2), -- Standard Type
-(36030, 4415, 3), -- One-handed Sword
-(36030, 4416, 22), -- Defending Army
+(36030, 4408, 16), -- HP Modifiers
+(36030, 4409, 1), -- MP Modifiers
+(36030, 4410, 11), -- P. Atk. Modifiers
+(36030, 4411, 11), -- M. Atk. Modifiers
+(36030, 4412, 11), -- P. Def. Modifiers
+(36030, 4413, 11), -- M. Def. Modifiers
+(36030, 4414, 2), -- Armor Type
+(36030, 4415, 3), -- Weapon Type
+(36030, 4416, 22), -- Races
 -- Mercenary Captain
 (36031, 4045, 1), -- Resist Full Magic Attack
-(36031, 4408, 11), -- HP Increase (3x)
-(36031, 4409, 1), -- MP Increase (1x)
-(36031, 4410, 11), -- Average P. Atk.
-(36031, 4411, 11), -- Average M. Atk.
-(36031, 4412, 11), -- Average P. Def.
-(36031, 4413, 11), -- Average M. Def.
-(36031, 4414, 2), -- Standard Type
-(36031, 4415, 3), -- One-handed Sword
-(36031, 4416, 14), -- Humans
+(36031, 4408, 11), -- HP Modifiers
+(36031, 4409, 1), -- MP Modifiers
+(36031, 4410, 11), -- P. Atk. Modifiers
+(36031, 4411, 11), -- M. Atk. Modifiers
+(36031, 4412, 11), -- P. Def. Modifiers
+(36031, 4413, 11), -- M. Def. Modifiers
+(36031, 4414, 2), -- Armor Type
+(36031, 4415, 3), -- Weapon Type
+(36031, 4416, 14), -- Races
 -- Mercenary Private
 (36032, 4045, 1), -- Resist Full Magic Attack
-(36032, 4408, 11), -- HP Increase (3x)
-(36032, 4409, 1), -- MP Increase (1x)
-(36032, 4410, 13), -- Slightly Strong P. Atk.
-(36032, 4411, 11), -- Average M. Atk.
-(36032, 4412, 11), -- Average P. Def.
-(36032, 4413, 11), -- Average M. Def.
-(36032, 4414, 2), -- Standard Type
-(36032, 4415, 11), -- Spears
-(36032, 4416, 17), -- Orcs
+(36032, 4408, 11), -- HP Modifiers
+(36032, 4409, 1), -- MP Modifiers
+(36032, 4410, 13), -- P. Atk. Modifiers
+(36032, 4411, 11), -- M. Atk. Modifiers
+(36032, 4412, 11), -- P. Def. Modifiers
+(36032, 4413, 11), -- M. Def. Modifiers
+(36032, 4414, 2), -- Armor Type
+(36032, 4415, 11), -- Weapon Type
+(36032, 4416, 17), -- Races
 -- Flagpole
 (36033, 4045, 1), -- Resist Full Magic Attack
-(36033, 4408, 1), -- HP Increase (1x)
-(36033, 4409, 1), -- MP Increase (1x)
-(36033, 4410, 11), -- Average P. Atk.
-(36033, 4411, 11), -- Average M. Atk.
-(36033, 4412, 11), -- Average P. Def.
-(36033, 4413, 11), -- Average M. Def.
-(36033, 4414, 2), -- Standard Type
-(36033, 4415, 3), -- One-handed Sword
-(36033, 4416, 19), -- Others
+(36033, 4408, 1), -- HP Modifiers
+(36033, 4409, 1), -- MP Modifiers
+(36033, 4410, 11), -- P. Atk. Modifiers
+(36033, 4411, 11), -- M. Atk. Modifiers
+(36033, 4412, 11), -- P. Def. Modifiers
+(36033, 4413, 11), -- M. Def. Modifiers
+(36033, 4414, 2), -- Armor Type
+(36033, 4415, 3), -- Weapon Type
+(36033, 4416, 19), -- Races
 -- Foreman
 (36034, 4045, 1), -- Resist Full Magic Attack
-(36034, 4408, 1), -- HP Increase (1x)
-(36034, 4409, 1), -- MP Increase (1x)
-(36034, 4410, 11), -- Average P. Atk.
-(36034, 4411, 11), -- Average M. Atk.
-(36034, 4412, 11), -- Average P. Def.
-(36034, 4413, 11), -- Average M. Def.
-(36034, 4414, 2), -- Standard Type
-(36034, 4415, 3), -- One-handed Sword
-(36034, 4416, 14), -- Humans
+(36034, 4408, 1), -- HP Modifiers
+(36034, 4409, 1), -- MP Modifiers
+(36034, 4410, 11), -- P. Atk. Modifiers
+(36034, 4411, 11), -- M. Atk. Modifiers
+(36034, 4412, 11), -- P. Def. Modifiers
+(36034, 4413, 11), -- M. Def. Modifiers
+(36034, 4414, 2), -- Armor Type
+(36034, 4415, 3), -- Weapon Type
+(36034, 4416, 14), -- Races
 -- Suspicious Merchant
 (36035, 4045, 1), -- Resist Full Magic Attack
-(36035, 4408, 1), -- HP Increase (1x)
-(36035, 4409, 1), -- MP Increase (1x)
-(36035, 4410, 11), -- Average P. Atk.
-(36035, 4411, 11), -- Average M. Atk.
-(36035, 4412, 11), -- Average P. Def.
-(36035, 4413, 11), -- Average M. Def.
-(36035, 4414, 2), -- Standard Type
-(36035, 4415, 3), -- One-handed Sword
-(36035, 4416, 17), -- Orcs
+(36035, 4408, 1), -- HP Modifiers
+(36035, 4409, 1), -- MP Modifiers
+(36035, 4410, 11), -- P. Atk. Modifiers
+(36035, 4411, 11), -- M. Atk. Modifiers
+(36035, 4412, 11), -- P. Def. Modifiers
+(36035, 4413, 11), -- M. Def. Modifiers
+(36035, 4414, 2), -- Armor Type
+(36035, 4415, 3), -- Weapon Type
+(36035, 4416, 17), -- Races
 -- Guard Captain
 (36036, 4045, 1), -- Resist Full Magic Attack
-(36036, 4408, 1), -- HP Increase (1x)
-(36036, 4409, 1), -- MP Increase (1x)
-(36036, 4410, 11), -- Average P. Atk.
-(36036, 4411, 11), -- Average M. Atk.
-(36036, 4412, 11), -- Average P. Def.
-(36036, 4413, 11), -- Average M. Def.
-(36036, 4414, 2), -- Standard Type
-(36036, 4415, 3), -- One-handed Sword
-(36036, 4416, 14), -- Humans
+(36036, 4408, 1), -- HP Modifiers
+(36036, 4409, 1), -- MP Modifiers
+(36036, 4410, 11), -- P. Atk. Modifiers
+(36036, 4411, 11), -- M. Atk. Modifiers
+(36036, 4412, 11), -- P. Def. Modifiers
+(36036, 4413, 11), -- M. Def. Modifiers
+(36036, 4414, 2), -- Armor Type
+(36036, 4415, 3), -- Weapon Type
+(36036, 4416, 14), -- Races
 -- Archer Captain
 (36037, 4045, 1), -- Resist Full Magic Attack
-(36037, 4408, 1), -- HP Increase (1x)
-(36037, 4409, 1), -- MP Increase (1x)
-(36037, 4410, 11), -- Average P. Atk.
-(36037, 4411, 11), -- Average M. Atk.
-(36037, 4412, 11), -- Average P. Def.
-(36037, 4413, 11), -- Average M. Def.
-(36037, 4414, 2), -- Standard Type
-(36037, 4415, 9), -- Bows
-(36037, 4416, 15), -- Elves
+(36037, 4408, 1), -- HP Modifiers
+(36037, 4409, 1), -- MP Modifiers
+(36037, 4410, 11), -- P. Atk. Modifiers
+(36037, 4411, 11), -- M. Atk. Modifiers
+(36037, 4412, 11), -- P. Def. Modifiers
+(36037, 4413, 11), -- M. Def. Modifiers
+(36037, 4414, 2), -- Armor Type
+(36037, 4415, 9), -- Weapon Type
+(36037, 4416, 15), -- Races
 -- General
 (36038, 4045, 1), -- Resist Full Magic Attack
-(36038, 4408, 1), -- HP Increase (1x)
-(36038, 4409, 1), -- MP Increase (1x)
-(36038, 4410, 11), -- Average P. Atk.
-(36038, 4411, 11), -- Average M. Atk.
-(36038, 4412, 11), -- Average P. Def.
-(36038, 4413, 11), -- Average M. Def.
-(36038, 4414, 2), -- Standard Type
-(36038, 4415, 19), -- Dual-Sword Weapons
-(36038, 4416, 22), -- Defending Army
+(36038, 4408, 1), -- HP Modifiers
+(36038, 4409, 1), -- MP Modifiers
+(36038, 4410, 11), -- P. Atk. Modifiers
+(36038, 4411, 11), -- M. Atk. Modifiers
+(36038, 4412, 11), -- P. Def. Modifiers
+(36038, 4413, 11), -- M. Def. Modifiers
+(36038, 4414, 2), -- Armor Type
+(36038, 4415, 19), -- Weapon Type
+(36038, 4416, 22), -- Races
 -- Support Unit Captain
 (36039, 4045, 1), -- Resist Full Magic Attack
-(36039, 4408, 1), -- HP Increase (1x)
-(36039, 4409, 1), -- MP Increase (1x)
-(36039, 4410, 11), -- Average P. Atk.
-(36039, 4411, 11), -- Average M. Atk.
-(36039, 4412, 11), -- Average P. Def.
-(36039, 4413, 11), -- Average M. Def.
-(36039, 4414, 2), -- Standard Type
-(36039, 4415, 3), -- One-handed Sword
-(36039, 4416, 14), -- Humans
+(36039, 4408, 1), -- HP Modifiers
+(36039, 4409, 1), -- MP Modifiers
+(36039, 4410, 11), -- P. Atk. Modifiers
+(36039, 4411, 11), -- M. Atk. Modifiers
+(36039, 4412, 11), -- P. Def. Modifiers
+(36039, 4413, 11), -- M. Def. Modifiers
+(36039, 4414, 2), -- Armor Type
+(36039, 4415, 3), -- Weapon Type
+(36039, 4416, 14), -- Races
 -- Engineering Manager
 (36040, 4045, 1), -- Resist Full Magic Attack
-(36040, 4408, 1), -- HP Increase (1x)
-(36040, 4409, 1), -- MP Increase (1x)
-(36040, 4410, 11), -- Average P. Atk.
-(36040, 4411, 11), -- Average M. Atk.
-(36040, 4412, 11), -- Average P. Def.
-(36040, 4413, 11), -- Average M. Def.
-(36040, 4414, 2), -- Standard Type
-(36040, 4415, 3), -- One-handed Sword
-(36040, 4416, 18), -- Dwarves
+(36040, 4408, 1), -- HP Modifiers
+(36040, 4409, 1), -- MP Modifiers
+(36040, 4410, 11), -- P. Atk. Modifiers
+(36040, 4411, 11), -- M. Atk. Modifiers
+(36040, 4412, 11), -- P. Def. Modifiers
+(36040, 4413, 11), -- M. Def. Modifiers
+(36040, 4414, 2), -- Armor Type
+(36040, 4415, 3), -- Weapon Type
+(36040, 4416, 18), -- Races
 -- Logistics Officer
 (36041, 4045, 1), -- Resist Full Magic Attack
-(36041, 4408, 1), -- HP Increase (1x)
-(36041, 4409, 1), -- MP Increase (1x)
-(36041, 4410, 11), -- Average P. Atk.
-(36041, 4411, 11), -- Average M. Atk.
-(36041, 4412, 11), -- Average P. Def.
-(36041, 4413, 11), -- Average M. Def.
-(36041, 4414, 2), -- Standard Type
-(36041, 4415, 3), -- One-handed Sword
-(36041, 4416, 18), -- Dwarves
+(36041, 4408, 1), -- HP Modifiers
+(36041, 4409, 1), -- MP Modifiers
+(36041, 4410, 11), -- P. Atk. Modifiers
+(36041, 4411, 11), -- M. Atk. Modifiers
+(36041, 4412, 11), -- P. Def. Modifiers
+(36041, 4413, 11), -- M. Def. Modifiers
+(36041, 4414, 2), -- Armor Type
+(36041, 4415, 3), -- Weapon Type
+(36041, 4416, 18), -- Races
 -- Supply Box
 (36042, 4045, 1), -- Resist Full Magic Attack
-(36042, 4408, 1), -- HP Increase (1x)
-(36042, 4409, 1), -- MP Increase (1x)
-(36042, 4410, 11), -- Average P. Atk.
-(36042, 4411, 11), -- Average M. Atk.
-(36042, 4412, 11), -- Average P. Def.
-(36042, 4413, 11), -- Average M. Def.
-(36042, 4414, 2), -- Standard Type
-(36042, 4415, 3), -- One-handed Sword
-(36042, 4416, 2), -- Magic Creatures
+(36042, 4408, 1), -- HP Modifiers
+(36042, 4409, 1), -- MP Modifiers
+(36042, 4410, 11), -- P. Atk. Modifiers
+(36042, 4411, 11), -- M. Atk. Modifiers
+(36042, 4412, 11), -- P. Def. Modifiers
+(36042, 4413, 11), -- M. Def. Modifiers
+(36042, 4414, 2), -- Armor Type
+(36042, 4415, 3), -- Weapon Type
+(36042, 4416, 2), -- Races
 -- Detention Camp Warden
 (36043, 4045, 1), -- Resist Full Magic Attack
-(36043, 4408, 1), -- HP Increase (1x)
-(36043, 4409, 1), -- MP Increase (1x)
-(36043, 4410, 11), -- Average P. Atk.
-(36043, 4411, 11), -- Average M. Atk.
-(36043, 4412, 11), -- Average P. Def.
-(36043, 4413, 11), -- Average M. Def.
-(36043, 4414, 2), -- Standard Type
-(36043, 4415, 3), -- One-handed Sword
-(36043, 4416, 14), -- Humans
+(36043, 4408, 1), -- HP Modifiers
+(36043, 4409, 1), -- MP Modifiers
+(36043, 4410, 11), -- P. Atk. Modifiers
+(36043, 4411, 11), -- M. Atk. Modifiers
+(36043, 4412, 11), -- P. Def. Modifiers
+(36043, 4413, 11), -- M. Def. Modifiers
+(36043, 4414, 2), -- Armor Type
+(36043, 4415, 3), -- Weapon Type
+(36043, 4416, 14), -- Races
 -- Doorman
 (36044, 4045, 1), -- Resist Full Magic Attack
-(36044, 4408, 1), -- HP Increase (1x)
-(36044, 4409, 1), -- MP Increase (1x)
-(36044, 4410, 11), -- Average P. Atk.
-(36044, 4411, 11), -- Average M. Atk.
-(36044, 4412, 11), -- Average P. Def.
-(36044, 4413, 11), -- Average M. Def.
-(36044, 4414, 2), -- Standard Type
-(36044, 4415, 3), -- One-handed Sword
-(36044, 4416, 14), -- Humans
+(36044, 4408, 1), -- HP Modifiers
+(36044, 4409, 1), -- MP Modifiers
+(36044, 4410, 11), -- P. Atk. Modifiers
+(36044, 4411, 11), -- M. Atk. Modifiers
+(36044, 4412, 11), -- P. Def. Modifiers
+(36044, 4413, 11), -- M. Def. Modifiers
+(36044, 4414, 2), -- Armor Type
+(36044, 4415, 3), -- Weapon Type
+(36044, 4416, 14), -- Races
 -- Doorman
 (36045, 4045, 1), -- Resist Full Magic Attack
-(36045, 4408, 1), -- HP Increase (1x)
-(36045, 4409, 1), -- MP Increase (1x)
-(36045, 4410, 11), -- Average P. Atk.
-(36045, 4411, 11), -- Average M. Atk.
-(36045, 4412, 11), -- Average P. Def.
-(36045, 4413, 11), -- Average M. Def.
-(36045, 4414, 2), -- Standard Type
-(36045, 4415, 3), -- One-handed Sword
-(36045, 4416, 14), -- Humans
+(36045, 4408, 1), -- HP Modifiers
+(36045, 4409, 1), -- MP Modifiers
+(36045, 4410, 11), -- P. Atk. Modifiers
+(36045, 4411, 11), -- M. Atk. Modifiers
+(36045, 4412, 11), -- P. Def. Modifiers
+(36045, 4413, 11), -- M. Def. Modifiers
+(36045, 4414, 2), -- Armor Type
+(36045, 4415, 3), -- Weapon Type
+(36045, 4416, 14), -- Races
 -- Doorman
 (36046, 4045, 1), -- Resist Full Magic Attack
-(36046, 4408, 1), -- HP Increase (1x)
-(36046, 4409, 1), -- MP Increase (1x)
-(36046, 4410, 11), -- Average P. Atk.
-(36046, 4411, 11), -- Average M. Atk.
-(36046, 4412, 11), -- Average P. Def.
-(36046, 4413, 11), -- Average M. Def.
-(36046, 4414, 2), -- Standard Type
-(36046, 4415, 3), -- One-handed Sword
-(36046, 4416, 14), -- Humans
+(36046, 4408, 1), -- HP Modifiers
+(36046, 4409, 1), -- MP Modifiers
+(36046, 4410, 11), -- P. Atk. Modifiers
+(36046, 4411, 11), -- M. Atk. Modifiers
+(36046, 4412, 11), -- P. Def. Modifiers
+(36046, 4413, 11), -- M. Def. Modifiers
+(36046, 4414, 2), -- Armor Type
+(36046, 4415, 3), -- Weapon Type
+(36046, 4416, 14), -- Races
 -- Rebel Commander
 (36047, 4045, 1), -- Resist Full Magic Attack
-(36047, 4178, 7), -- Flame Strike
-(36047, 4195, 7), -- Twister
-(36047, 4408, 10), -- HP Increase (2x)
-(36047, 4409, 1), -- MP Increase (1x)
-(36047, 4410, 11), -- Average P. Atk.
-(36047, 4411, 17), -- Very Strong M. Atk.
-(36047, 4412, 11), -- Average P. Def.
-(36047, 4413, 11), -- Average M. Def.
-(36047, 4414, 2), -- Standard Type
-(36047, 4415, 3), -- One-handed Sword
-(36047, 4416, 16), -- Dark Elves
+(36047, 4178, 7), -- BOSS Flame Strike
+(36047, 4195, 7), -- BOSS Twister
+(36047, 4408, 10), -- HP Modifiers
+(36047, 4409, 1), -- MP Modifiers
+(36047, 4410, 11), -- P. Atk. Modifiers
+(36047, 4411, 17), -- M. Atk. Modifiers
+(36047, 4412, 11), -- P. Def. Modifiers
+(36047, 4413, 11), -- M. Def. Modifiers
+(36047, 4414, 2), -- Armor Type
+(36047, 4415, 3), -- Weapon Type
+(36047, 4416, 16), -- Races
 -- Decorated Rebel Soldier
 (36048, 4045, 1), -- Resist Full Magic Attack
-(36048, 4408, 14), -- HP Increase (6x)
-(36048, 4409, 1), -- MP Increase (1x)
-(36048, 4410, 15), -- Strong P. Atk.
-(36048, 4411, 11), -- Average M. Atk.
-(36048, 4412, 11), -- Average P. Def.
-(36048, 4413, 15), -- Strong M. Def.
-(36048, 4414, 2), -- Standard Type
-(36048, 4415, 1), -- Bare Hands
-(36048, 4416, 9), -- Demons
-(36048, 5065, 7), -- Unholy Strike
+(36048, 4408, 14), -- HP Modifiers
+(36048, 4409, 1), -- MP Modifiers
+(36048, 4410, 15), -- P. Atk. Modifiers
+(36048, 4411, 11), -- M. Atk. Modifiers
+(36048, 4412, 11), -- P. Def. Modifiers
+(36048, 4413, 15), -- M. Def. Modifiers
+(36048, 4414, 2), -- Armor Type
+(36048, 4415, 1), -- Weapon Type
+(36048, 4416, 9), -- Races
+(36048, 5065, 7), -- Castle DD Unholy
 -- Rebel Private
 (36049, 4045, 1), -- Resist Full Magic Attack
-(36049, 4408, 12), -- HP Increase (4x)
-(36049, 4409, 1), -- MP Increase (1x)
-(36049, 4410, 14), -- Strong P. Atk.
-(36049, 4411, 11), -- Average M. Atk.
-(36049, 4412, 11), -- Average P. Def.
-(36049, 4413, 11), -- Average M. Def.
-(36049, 4414, 2), -- Standard Type
-(36049, 4415, 11), -- Spears
-(36049, 4416, 14), -- Humans
+(36049, 4408, 12), -- HP Modifiers
+(36049, 4409, 1), -- MP Modifiers
+(36049, 4410, 14), -- P. Atk. Modifiers
+(36049, 4411, 11), -- M. Atk. Modifiers
+(36049, 4412, 11), -- P. Def. Modifiers
+(36049, 4413, 11), -- M. Def. Modifiers
+(36049, 4414, 2), -- Armor Type
+(36049, 4415, 11), -- Weapon Type
+(36049, 4416, 14), -- Races
 -- Court Guard
 (36050, 4045, 1), -- Resist Full Magic Attack
-(36050, 4408, 12), -- HP Increase (4x)
-(36050, 4409, 1), -- MP Increase (1x)
-(36050, 4410, 11), -- Average P. Atk.
-(36050, 4411, 11), -- Average M. Atk.
-(36050, 4412, 11), -- Average P. Def.
-(36050, 4413, 16), -- Very Strong M. Def.
-(36050, 4414, 2), -- Standard Type
-(36050, 4415, 11), -- Spears
-(36050, 4416, 22), -- Defending Army
+(36050, 4408, 12), -- HP Modifiers
+(36050, 4409, 1), -- MP Modifiers
+(36050, 4410, 11), -- P. Atk. Modifiers
+(36050, 4411, 11), -- M. Atk. Modifiers
+(36050, 4412, 11), -- P. Def. Modifiers
+(36050, 4413, 16), -- M. Def. Modifiers
+(36050, 4414, 2), -- Armor Type
+(36050, 4415, 11), -- Weapon Type
+(36050, 4416, 22), -- Races
 (36050, 5432, 1), -- Weapon Supply
 -- Guard
 (36051, 4045, 1), -- Resist Full Magic Attack
-(36051, 4408, 12), -- HP Increase (4x)
-(36051, 4409, 1), -- MP Increase (1x)
-(36051, 4410, 15), -- Strong P. Atk.
-(36051, 4411, 11), -- Average M. Atk.
-(36051, 4412, 11), -- Average P. Def.
-(36051, 4413, 11), -- Average M. Def.
-(36051, 4414, 3), -- Light Armor Type
-(36051, 4415, 9), -- Bows
-(36051, 4416, 22), -- Defending Army
+(36051, 4408, 12), -- HP Modifiers
+(36051, 4409, 1), -- MP Modifiers
+(36051, 4410, 15), -- P. Atk. Modifiers
+(36051, 4411, 11), -- M. Atk. Modifiers
+(36051, 4412, 11), -- P. Def. Modifiers
+(36051, 4413, 11), -- M. Def. Modifiers
+(36051, 4414, 3), -- Armor Type
+(36051, 4415, 9), -- Weapon Type
+(36051, 4416, 22), -- Races
 (36051, 5432, 1), -- Weapon Supply
 -- Main Machine
 (36052, 4045, 1), -- Resist Full Magic Attack
-(36052, 4408, 1), -- HP Increase (1x)
-(36052, 4409, 1), -- MP Increase (1x)
-(36052, 4410, 11), -- Average P. Atk.
-(36052, 4411, 11), -- Average M. Atk.
-(36052, 4412, 11), -- Average P. Def.
-(36052, 4413, 11), -- Average M. Def.
-(36052, 4414, 2), -- Standard Type
-(36052, 4415, 3), -- One-handed Sword
-(36052, 4416, 19), -- Others
+(36052, 4408, 1), -- HP Modifiers
+(36052, 4409, 1), -- MP Modifiers
+(36052, 4410, 11), -- P. Atk. Modifiers
+(36052, 4411, 11), -- M. Atk. Modifiers
+(36052, 4412, 11), -- P. Def. Modifiers
+(36052, 4413, 11), -- M. Def. Modifiers
+(36052, 4414, 2), -- Armor Type
+(36052, 4415, 3), -- Weapon Type
+(36052, 4416, 19), -- Races
 -- Backup Power Unit
 (36053, 4045, 1), -- Resist Full Magic Attack
-(36053, 4408, 1), -- HP Increase (1x)
-(36053, 4409, 1), -- MP Increase (1x)
-(36053, 4410, 11), -- Average P. Atk.
-(36053, 4411, 11), -- Average M. Atk.
-(36053, 4412, 11), -- Average P. Def.
-(36053, 4413, 11), -- Average M. Def.
-(36053, 4414, 2), -- Standard Type
-(36053, 4415, 3), -- One-handed Sword
-(36053, 4416, 19), -- Others
+(36053, 4408, 1), -- HP Modifiers
+(36053, 4409, 1), -- MP Modifiers
+(36053, 4410, 11), -- P. Atk. Modifiers
+(36053, 4411, 11), -- M. Atk. Modifiers
+(36053, 4412, 11), -- P. Def. Modifiers
+(36053, 4413, 11), -- M. Def. Modifiers
+(36053, 4414, 2), -- Armor Type
+(36053, 4415, 3), -- Weapon Type
+(36053, 4416, 19), -- Races
 -- Control Unit
 (36054, 4045, 1), -- Resist Full Magic Attack
-(36054, 4408, 1), -- HP Increase (1x)
-(36054, 4409, 1), -- MP Increase (1x)
-(36054, 4410, 11), -- Average P. Atk.
-(36054, 4411, 11), -- Average M. Atk.
-(36054, 4412, 11), -- Average P. Def.
-(36054, 4413, 11), -- Average M. Def.
-(36054, 4414, 2), -- Standard Type
-(36054, 4415, 3), -- One-handed Sword
-(36054, 4416, 2), -- Magic Creatures
+(36054, 4408, 1), -- HP Modifiers
+(36054, 4409, 1), -- MP Modifiers
+(36054, 4410, 11), -- P. Atk. Modifiers
+(36054, 4411, 11), -- M. Atk. Modifiers
+(36054, 4412, 11), -- P. Def. Modifiers
+(36054, 4413, 11), -- M. Def. Modifiers
+(36054, 4414, 2), -- Armor Type
+(36054, 4415, 3), -- Weapon Type
+(36054, 4416, 2), -- Races
 -- Power Control Unit
 (36055, 4045, 1), -- Resist Full Magic Attack
-(36055, 4408, 1), -- HP Increase (1x)
-(36055, 4409, 1), -- MP Increase (1x)
-(36055, 4410, 11), -- Average P. Atk.
-(36055, 4411, 11), -- Average M. Atk.
-(36055, 4412, 11), -- Average P. Def.
-(36055, 4413, 11), -- Average M. Def.
-(36055, 4414, 2), -- Standard Type
-(36055, 4415, 3), -- One-handed Sword
-(36055, 4416, 19), -- Others
+(36055, 4408, 1), -- HP Modifiers
+(36055, 4409, 1), -- MP Modifiers
+(36055, 4410, 11), -- P. Atk. Modifiers
+(36055, 4411, 11), -- M. Atk. Modifiers
+(36055, 4412, 11), -- P. Def. Modifiers
+(36055, 4413, 11), -- M. Def. Modifiers
+(36055, 4414, 2), -- Armor Type
+(36055, 4415, 3), -- Weapon Type
+(36055, 4416, 19), -- Races
 -- Dwarven Gunnery Sergeant
 (36056, 4045, 1), -- Resist Full Magic Attack
-(36056, 4408, 11), -- HP Increase (3x)
-(36056, 4409, 16), -- MP Increase (8x)
-(36056, 4410, 11), -- Average P. Atk.
-(36056, 4411, 17), -- Very Strong M. Atk.
-(36056, 4412, 11), -- Average P. Def.
-(36056, 4413, 8), -- Weak M. Def.
-(36056, 4414, 2), -- Standard Type
-(36056, 4415, 9), -- Bows
-(36056, 4416, 22), -- Defending Army
+(36056, 4408, 11), -- HP Modifiers
+(36056, 4409, 16), -- MP Modifiers
+(36056, 4410, 11), -- P. Atk. Modifiers
+(36056, 4411, 17), -- M. Atk. Modifiers
+(36056, 4412, 11), -- P. Def. Modifiers
+(36056, 4413, 8), -- M. Def. Modifiers
+(36056, 4414, 2), -- Armor Type
+(36056, 4415, 9), -- Weapon Type
+(36056, 4416, 22), -- Races
 (36056, 5432, 1), -- Weapon Supply
-(36056, 5461, 6), -- Power Shot
-(36056, 5468, 6), -- Fire Shot
+(36056, 5461, 6), -- Castle Gunner Shot
+(36056, 5468, 6), -- Castle Gunner Fire
 -- Scout Golem
 (36057, 4045, 1), -- Resist Full Magic Attack
-(36057, 4408, 6), -- HP Very High
-(36057, 4409, 1), -- MP Increase (1x)
-(36057, 4410, 11), -- Average P. Atk.
-(36057, 4411, 11), -- Average M. Atk.
-(36057, 4412, 11), -- Average P. Def.
-(36057, 4413, 16), -- Very Strong M. Def.
-(36057, 4414, 2), -- Standard Type
-(36057, 4415, 3), -- One-handed Sword
-(36057, 4416, 22), -- Defending Army
+(36057, 4408, 6), -- HP Modifiers
+(36057, 4409, 1), -- MP Modifiers
+(36057, 4410, 11), -- P. Atk. Modifiers
+(36057, 4411, 11), -- M. Atk. Modifiers
+(36057, 4412, 11), -- P. Def. Modifiers
+(36057, 4413, 16), -- M. Def. Modifiers
+(36057, 4414, 2), -- Armor Type
+(36057, 4415, 3), -- Weapon Type
+(36057, 4416, 22), -- Races
 -- Guard Captain
 (36058, 4045, 1), -- Resist Full Magic Attack
 (36058, 4172, 6), -- Stun
-(36058, 4408, 9), -- HP Increase (1/2x)
-(36058, 4409, 1), -- MP Increase (1x)
-(36058, 4410, 8), -- Weak P. Atk.
-(36058, 4411, 11), -- Average M. Atk.
-(36058, 4412, 16), -- Very Strong P. Def.
-(36058, 4413, 11), -- Average M. Def.
-(36058, 4414, 2), -- Standard Type
-(36058, 4415, 3), -- One-handed Sword
-(36058, 4416, 22), -- Defending Army
+(36058, 4408, 9), -- HP Modifiers
+(36058, 4409, 1), -- MP Modifiers
+(36058, 4410, 8), -- P. Atk. Modifiers
+(36058, 4411, 11), -- M. Atk. Modifiers
+(36058, 4412, 16), -- P. Def. Modifiers
+(36058, 4413, 11), -- M. Def. Modifiers
+(36058, 4414, 2), -- Armor Type
+(36058, 4415, 3), -- Weapon Type
+(36058, 4416, 22), -- Races
 (36058, 4435, 5), -- Greater Resist Stun
 (36058, 4439, 5), -- Greater Resist Hold
 (36058, 4440, 5), -- Greater Resist Paralysis
-(36058, 4608, 1), -- Berserker Spirit
+(36058, 4608, 1), -- NPC Clan Buff - Berserk
 (36058, 5432, 1), -- Weapon Supply
-(36058, 5457, 1), -- Complete Recovery
+(36058, 5457, 1), -- NPC Full Recover
 -- Guard
 (36059, 4045, 1), -- Resist Full Magic Attack
-(36059, 4408, 13), -- HP Increase (5x)
-(36059, 4409, 1), -- MP Increase (1x)
-(36059, 4410, 9), -- Slightly Weak P. Atk.
-(36059, 4411, 11), -- Average M. Atk.
-(36059, 4412, 16), -- Very Strong P. Def.
-(36059, 4413, 11), -- Average M. Def.
-(36059, 4414, 2), -- Standard Type
-(36059, 4415, 3), -- One-handed Sword
-(36059, 4416, 22), -- Defending Army
+(36059, 4408, 13), -- HP Modifiers
+(36059, 4409, 1), -- MP Modifiers
+(36059, 4410, 9), -- P. Atk. Modifiers
+(36059, 4411, 11), -- M. Atk. Modifiers
+(36059, 4412, 16), -- P. Def. Modifiers
+(36059, 4413, 11), -- M. Def. Modifiers
+(36059, 4414, 2), -- Armor Type
+(36059, 4415, 3), -- Weapon Type
+(36059, 4416, 22), -- Races
 (36059, 5112, 6), -- Stun
 (36059, 5432, 1), -- Weapon Supply
 -- Guard
 (36060, 4045, 1), -- Resist Full Magic Attack
-(36060, 4408, 13), -- HP Increase (5x)
-(36060, 4409, 1), -- MP Increase (1x)
-(36060, 4410, 9), -- Slightly Weak P. Atk.
-(36060, 4411, 11), -- Average M. Atk.
-(36060, 4412, 11), -- Average P. Def.
-(36060, 4413, 16), -- Very Strong M. Def.
-(36060, 4414, 2), -- Standard Type
-(36060, 4415, 3), -- One-handed Sword
-(36060, 4416, 22), -- Defending Army
-(36060, 5045, 6), -- Power Strike
+(36060, 4408, 13), -- HP Modifiers
+(36060, 4409, 1), -- MP Modifiers
+(36060, 4410, 9), -- P. Atk. Modifiers
+(36060, 4411, 11), -- M. Atk. Modifiers
+(36060, 4412, 11), -- P. Def. Modifiers
+(36060, 4413, 16), -- M. Def. Modifiers
+(36060, 4414, 2), -- Armor Type
+(36060, 4415, 3), -- Weapon Type
+(36060, 4416, 22), -- Races
+(36060, 5045, 6), -- Castle Power Strike
 (36060, 5432, 1), -- Weapon Supply
 -- Support Unit Captain
 (36061, 4045, 1), -- Resist Full Magic Attack
-(36061, 4194, 6), -- Aura Burn
-(36061, 4196, 6), -- Decrease Speed
-(36061, 4408, 9), -- HP Increase (1/2x)
-(36061, 4409, 16), -- MP Increase (8x)
-(36061, 4410, 11), -- Average P. Atk.
-(36061, 4411, 14), -- Strong M. Atk.
-(36061, 4412, 8), -- Weak P. Def.
-(36061, 4413, 14), -- Strong M. Def.
-(36061, 4414, 3), -- Light Armor Type
-(36061, 4415, 3), -- One-handed Sword
-(36061, 4416, 22), -- Defending Army
-(36061, 5396, 1), -- Spell Force
-(36061, 5398, 1), -- Final Burn
+(36061, 4194, 6), -- BOSS Aura Burn
+(36061, 4196, 6), -- Decreases Speed
+(36061, 4408, 9), -- HP Modifiers
+(36061, 4409, 16), -- MP Modifiers
+(36061, 4410, 11), -- P. Atk. Modifiers
+(36061, 4411, 14), -- M. Atk. Modifiers
+(36061, 4412, 8), -- P. Def. Modifiers
+(36061, 4413, 14), -- M. Def. Modifiers
+(36061, 4414, 3), -- Armor Type
+(36061, 4415, 3), -- Weapon Type
+(36061, 4416, 22), -- Races
+(36061, 5396, 1), -- NPC - Spell Stance
+(36061, 5398, 1), -- NPC - Combination Force
 (36061, 5432, 1), -- Weapon Supply
-(36061, 5457, 1), -- Complete Recovery
+(36061, 5457, 1), -- NPC Full Recover
 -- Wizard
 (36062, 4045, 1), -- Resist Full Magic Attack
-(36062, 4077, 6), -- Aura Burn
-(36062, 4408, 13), -- HP Increase (5x)
-(36062, 4409, 16), -- MP Increase (8x)
-(36062, 4410, 11), -- Average P. Atk.
-(36062, 4411, 16), -- Very Strong M. Atk.
-(36062, 4412, 8), -- Weak P. Def.
-(36062, 4413, 11), -- Average M. Def.
-(36062, 4414, 3), -- Light Armor Type
-(36062, 4415, 3), -- One-handed Sword
-(36062, 4416, 22), -- Defending Army
-(36062, 5053, 6), -- Hydro Blast
-(36062, 5396, 1), -- Spell Force
+(36062, 4077, 6), -- NPC Aura Burn
+(36062, 4408, 13), -- HP Modifiers
+(36062, 4409, 16), -- MP Modifiers
+(36062, 4410, 11), -- P. Atk. Modifiers
+(36062, 4411, 16), -- M. Atk. Modifiers
+(36062, 4412, 8), -- P. Def. Modifiers
+(36062, 4413, 11), -- M. Def. Modifiers
+(36062, 4414, 3), -- Armor Type
+(36062, 4415, 3), -- Weapon Type
+(36062, 4416, 22), -- Races
+(36062, 5053, 6), -- Castle DD Water
+(36062, 5396, 1), -- NPC - Spell Stance
 (36062, 5432, 1), -- Weapon Supply
 -- Healer
 (36063, 4045, 1), -- Resist Full Magic Attack
 (36063, 4115, 1), -- Aden Heal
-(36063, 4408, 15), -- HP Increase (7x)
-(36063, 4409, 16), -- MP Increase (8x)
-(36063, 4410, 11), -- Average P. Atk.
-(36063, 4411, 17), -- Very Strong M. Atk.
-(36063, 4412, 11), -- Average P. Def.
-(36063, 4413, 16), -- Very Strong M. Def.
-(36063, 4414, 3), -- Light Armor Type
-(36063, 4415, 3), -- One-handed Sword
-(36063, 4416, 22), -- Defending Army
+(36063, 4408, 15), -- HP Modifiers
+(36063, 4409, 16), -- MP Modifiers
+(36063, 4410, 11), -- P. Atk. Modifiers
+(36063, 4411, 17), -- M. Atk. Modifiers
+(36063, 4412, 11), -- P. Def. Modifiers
+(36063, 4413, 16), -- M. Def. Modifiers
+(36063, 4414, 3), -- Armor Type
+(36063, 4415, 3), -- Weapon Type
+(36063, 4416, 22), -- Races
 (36063, 5114, 6), -- Hold
 (36063, 5432, 1), -- Weapon Supply
 -- Archer Captain
 (36064, 4045, 1), -- Resist Full Magic Attack
-(36064, 4408, 9), -- HP Increase (1/2x)
-(36064, 4409, 1), -- MP Increase (1x)
-(36064, 4410, 16), -- Very Strong P. Atk.
-(36064, 4411, 11), -- Average M. Atk.
-(36064, 4412, 8), -- Weak P. Def.
-(36064, 4413, 11), -- Average M. Def.
-(36064, 4414, 3), -- Light Armor Type
-(36064, 4415, 9), -- Bows
-(36064, 4416, 22), -- Defending Army
-(36064, 4755, 6), -- Power Shot
+(36064, 4408, 9), -- HP Modifiers
+(36064, 4409, 1), -- MP Modifiers
+(36064, 4410, 16), -- P. Atk. Modifiers
+(36064, 4411, 11), -- M. Atk. Modifiers
+(36064, 4412, 8), -- P. Def. Modifiers
+(36064, 4413, 11), -- M. Def. Modifiers
+(36064, 4414, 3), -- Armor Type
+(36064, 4415, 9), -- Weapon Type
+(36064, 4416, 22), -- Races
+(36064, 4755, 6), -- BOSS Power Shot
 (36064, 5432, 1), -- Weapon Supply
-(36064, 5457, 1), -- Complete Recovery
+(36064, 5457, 1), -- NPC Full Recover
 -- Archer
 (36065, 4045, 1), -- Resist Full Magic Attack
-(36065, 4408, 13), -- HP Increase (5x)
-(36065, 4409, 1), -- MP Increase (1x)
-(36065, 4410, 14), -- Strong P. Atk.
-(36065, 4411, 11), -- Average M. Atk.
-(36065, 4412, 8), -- Weak P. Def.
-(36065, 4413, 11), -- Average M. Def.
-(36065, 4414, 3), -- Light Armor Type
-(36065, 4415, 9), -- Bows
-(36065, 4416, 22), -- Defending Army
-(36065, 5046, 6), -- Power Shot
+(36065, 4408, 13), -- HP Modifiers
+(36065, 4409, 1), -- MP Modifiers
+(36065, 4410, 14), -- P. Atk. Modifiers
+(36065, 4411, 11), -- M. Atk. Modifiers
+(36065, 4412, 8), -- P. Def. Modifiers
+(36065, 4413, 11), -- M. Def. Modifiers
+(36065, 4414, 3), -- Armor Type
+(36065, 4415, 9), -- Weapon Type
+(36065, 4416, 22), -- Races
+(36065, 5046, 6), -- Castle Power Shot
 (36065, 5432, 1), -- Weapon Supply
 -- General
 (36066, 4045, 1), -- Resist Full Magic Attack
-(36066, 4408, 9), -- HP Increase (1/2x)
-(36066, 4409, 1), -- MP Increase (1x)
-(36066, 4410, 14), -- Strong P. Atk.
-(36066, 4411, 11), -- Average M. Atk.
-(36066, 4412, 11), -- Average P. Def.
-(36066, 4413, 11), -- Average M. Def.
-(36066, 4414, 2), -- Standard Type
-(36066, 4415, 19), -- Dual-Sword Weapons
-(36066, 4416, 22), -- Defending Army
+(36066, 4408, 9), -- HP Modifiers
+(36066, 4409, 1), -- MP Modifiers
+(36066, 4410, 14), -- P. Atk. Modifiers
+(36066, 4411, 11), -- M. Atk. Modifiers
+(36066, 4412, 11), -- P. Def. Modifiers
+(36066, 4413, 11), -- M. Def. Modifiers
+(36066, 4414, 2), -- Armor Type
+(36066, 4415, 19), -- Weapon Type
+(36066, 4416, 22), -- Races
 (36066, 4725, 6), -- Stun
 (36066, 5432, 1), -- Weapon Supply
-(36066, 5457, 1), -- Complete Recovery
+(36066, 5457, 1), -- NPC Full Recover
 -- Minister
 (36067, 4045, 1), -- Resist Full Magic Attack
-(36067, 4408, 9), -- HP Increase (1/2x)
-(36067, 4409, 1), -- MP Increase (1x)
-(36067, 4410, 14), -- Strong P. Atk.
-(36067, 4411, 11), -- Average M. Atk.
-(36067, 4412, 11), -- Average P. Def.
-(36067, 4413, 11), -- Average M. Def.
-(36067, 4414, 2), -- Standard Type
-(36067, 4415, 3), -- One-handed Sword
-(36067, 4416, 22), -- Defending Army
-(36067, 4721, 6), -- Power Strike
+(36067, 4408, 9), -- HP Modifiers
+(36067, 4409, 1), -- MP Modifiers
+(36067, 4410, 14), -- P. Atk. Modifiers
+(36067, 4411, 11), -- M. Atk. Modifiers
+(36067, 4412, 11), -- P. Def. Modifiers
+(36067, 4413, 11), -- M. Def. Modifiers
+(36067, 4414, 2), -- Armor Type
+(36067, 4415, 3), -- Weapon Type
+(36067, 4416, 22), -- Races
+(36067, 4721, 6), -- BOSS Strike
 (36067, 5432, 1), -- Weapon Supply
-(36067, 5457, 1), -- Complete Recovery
+(36067, 5457, 1), -- NPC Full Recover
 -- Ballista
 (36068, 2342, 1), -- Ballista Bomb
 (36068, 4045, 1), -- Resist Full Magic Attack
-(36068, 4408, 16), -- HP Increase (8x)
-(36068, 4409, 1), -- MP Increase (1x)
-(36068, 4410, 11), -- Average P. Atk.
-(36068, 4411, 11), -- Average M. Atk.
-(36068, 4412, 11), -- Average P. Def.
-(36068, 4413, 11), -- Average M. Def.
-(36068, 4414, 2), -- Standard Type
-(36068, 4415, 3), -- One-handed Sword
-(36068, 4416, 22), -- Defending Army
+(36068, 4408, 16), -- HP Modifiers
+(36068, 4409, 1), -- MP Modifiers
+(36068, 4410, 11), -- P. Atk. Modifiers
+(36068, 4411, 11), -- M. Atk. Modifiers
+(36068, 4412, 11), -- P. Def. Modifiers
+(36068, 4413, 11), -- M. Def. Modifiers
+(36068, 4414, 2), -- Armor Type
+(36068, 4415, 3), -- Weapon Type
+(36068, 4416, 22), -- Races
 -- Mercenary Captain
 (36069, 4045, 1), -- Resist Full Magic Attack
-(36069, 4408, 11), -- HP Increase (3x)
-(36069, 4409, 1), -- MP Increase (1x)
-(36069, 4410, 11), -- Average P. Atk.
-(36069, 4411, 11), -- Average M. Atk.
-(36069, 4412, 11), -- Average P. Def.
-(36069, 4413, 11), -- Average M. Def.
-(36069, 4414, 2), -- Standard Type
-(36069, 4415, 3), -- One-handed Sword
-(36069, 4416, 14), -- Humans
+(36069, 4408, 11), -- HP Modifiers
+(36069, 4409, 1), -- MP Modifiers
+(36069, 4410, 11), -- P. Atk. Modifiers
+(36069, 4411, 11), -- M. Atk. Modifiers
+(36069, 4412, 11), -- P. Def. Modifiers
+(36069, 4413, 11), -- M. Def. Modifiers
+(36069, 4414, 2), -- Armor Type
+(36069, 4415, 3), -- Weapon Type
+(36069, 4416, 14), -- Races
 -- Mercenary Private
 (36070, 4045, 1), -- Resist Full Magic Attack
-(36070, 4408, 11), -- HP Increase (3x)
-(36070, 4409, 1), -- MP Increase (1x)
-(36070, 4410, 13), -- Slightly Strong P. Atk.
-(36070, 4411, 11), -- Average M. Atk.
-(36070, 4412, 11), -- Average P. Def.
-(36070, 4413, 11), -- Average M. Def.
-(36070, 4414, 2), -- Standard Type
-(36070, 4415, 11), -- Spears
-(36070, 4416, 17), -- Orcs
+(36070, 4408, 11), -- HP Modifiers
+(36070, 4409, 1), -- MP Modifiers
+(36070, 4410, 13), -- P. Atk. Modifiers
+(36070, 4411, 11), -- M. Atk. Modifiers
+(36070, 4412, 11), -- P. Def. Modifiers
+(36070, 4413, 11), -- M. Def. Modifiers
+(36070, 4414, 2), -- Armor Type
+(36070, 4415, 11), -- Weapon Type
+(36070, 4416, 17), -- Races
 -- Flagpole
 (36071, 4045, 1), -- Resist Full Magic Attack
-(36071, 4408, 1), -- HP Increase (1x)
-(36071, 4409, 1), -- MP Increase (1x)
-(36071, 4410, 11), -- Average P. Atk.
-(36071, 4411, 11), -- Average M. Atk.
-(36071, 4412, 11), -- Average P. Def.
-(36071, 4413, 11), -- Average M. Def.
-(36071, 4414, 2), -- Standard Type
-(36071, 4415, 3), -- One-handed Sword
-(36071, 4416, 19), -- Others
+(36071, 4408, 1), -- HP Modifiers
+(36071, 4409, 1), -- MP Modifiers
+(36071, 4410, 11), -- P. Atk. Modifiers
+(36071, 4411, 11), -- M. Atk. Modifiers
+(36071, 4412, 11), -- P. Def. Modifiers
+(36071, 4413, 11), -- M. Def. Modifiers
+(36071, 4414, 2), -- Armor Type
+(36071, 4415, 3), -- Weapon Type
+(36071, 4416, 19), -- Races
 -- Foreman
 (36072, 4045, 1), -- Resist Full Magic Attack
-(36072, 4408, 1), -- HP Increase (1x)
-(36072, 4409, 1), -- MP Increase (1x)
-(36072, 4410, 11), -- Average P. Atk.
-(36072, 4411, 11), -- Average M. Atk.
-(36072, 4412, 11), -- Average P. Def.
-(36072, 4413, 11), -- Average M. Def.
-(36072, 4414, 2), -- Standard Type
-(36072, 4415, 3), -- One-handed Sword
-(36072, 4416, 14), -- Humans
+(36072, 4408, 1), -- HP Modifiers
+(36072, 4409, 1), -- MP Modifiers
+(36072, 4410, 11), -- P. Atk. Modifiers
+(36072, 4411, 11), -- M. Atk. Modifiers
+(36072, 4412, 11), -- P. Def. Modifiers
+(36072, 4413, 11), -- M. Def. Modifiers
+(36072, 4414, 2), -- Armor Type
+(36072, 4415, 3), -- Weapon Type
+(36072, 4416, 14), -- Races
 -- Suspicious Merchant
 (36073, 4045, 1), -- Resist Full Magic Attack
-(36073, 4408, 1), -- HP Increase (1x)
-(36073, 4409, 1), -- MP Increase (1x)
-(36073, 4410, 11), -- Average P. Atk.
-(36073, 4411, 11), -- Average M. Atk.
-(36073, 4412, 11), -- Average P. Def.
-(36073, 4413, 11), -- Average M. Def.
-(36073, 4414, 2), -- Standard Type
-(36073, 4415, 3), -- One-handed Sword
-(36073, 4416, 17), -- Orcs
+(36073, 4408, 1), -- HP Modifiers
+(36073, 4409, 1), -- MP Modifiers
+(36073, 4410, 11), -- P. Atk. Modifiers
+(36073, 4411, 11), -- M. Atk. Modifiers
+(36073, 4412, 11), -- P. Def. Modifiers
+(36073, 4413, 11), -- M. Def. Modifiers
+(36073, 4414, 2), -- Armor Type
+(36073, 4415, 3), -- Weapon Type
+(36073, 4416, 17), -- Races
 -- Guard Captain
 (36074, 4045, 1), -- Resist Full Magic Attack
-(36074, 4408, 1), -- HP Increase (1x)
-(36074, 4409, 1), -- MP Increase (1x)
-(36074, 4410, 11), -- Average P. Atk.
-(36074, 4411, 11), -- Average M. Atk.
-(36074, 4412, 11), -- Average P. Def.
-(36074, 4413, 11), -- Average M. Def.
-(36074, 4414, 2), -- Standard Type
-(36074, 4415, 3), -- One-handed Sword
-(36074, 4416, 14), -- Humans
+(36074, 4408, 1), -- HP Modifiers
+(36074, 4409, 1), -- MP Modifiers
+(36074, 4410, 11), -- P. Atk. Modifiers
+(36074, 4411, 11), -- M. Atk. Modifiers
+(36074, 4412, 11), -- P. Def. Modifiers
+(36074, 4413, 11), -- M. Def. Modifiers
+(36074, 4414, 2), -- Armor Type
+(36074, 4415, 3), -- Weapon Type
+(36074, 4416, 14), -- Races
 -- Archer Captain
 (36075, 4045, 1), -- Resist Full Magic Attack
-(36075, 4408, 1), -- HP Increase (1x)
-(36075, 4409, 1), -- MP Increase (1x)
-(36075, 4410, 11), -- Average P. Atk.
-(36075, 4411, 11), -- Average M. Atk.
-(36075, 4412, 11), -- Average P. Def.
-(36075, 4413, 11), -- Average M. Def.
-(36075, 4414, 2), -- Standard Type
-(36075, 4415, 9), -- Bows
-(36075, 4416, 15), -- Elves
+(36075, 4408, 1), -- HP Modifiers
+(36075, 4409, 1), -- MP Modifiers
+(36075, 4410, 11), -- P. Atk. Modifiers
+(36075, 4411, 11), -- M. Atk. Modifiers
+(36075, 4412, 11), -- P. Def. Modifiers
+(36075, 4413, 11), -- M. Def. Modifiers
+(36075, 4414, 2), -- Armor Type
+(36075, 4415, 9), -- Weapon Type
+(36075, 4416, 15), -- Races
 -- General
 (36076, 4045, 1), -- Resist Full Magic Attack
-(36076, 4408, 1), -- HP Increase (1x)
-(36076, 4409, 1), -- MP Increase (1x)
-(36076, 4410, 11), -- Average P. Atk.
-(36076, 4411, 11), -- Average M. Atk.
-(36076, 4412, 11), -- Average P. Def.
-(36076, 4413, 11), -- Average M. Def.
-(36076, 4414, 2), -- Standard Type
-(36076, 4415, 19), -- Dual-Sword Weapons
-(36076, 4416, 22), -- Defending Army
+(36076, 4408, 1), -- HP Modifiers
+(36076, 4409, 1), -- MP Modifiers
+(36076, 4410, 11), -- P. Atk. Modifiers
+(36076, 4411, 11), -- M. Atk. Modifiers
+(36076, 4412, 11), -- P. Def. Modifiers
+(36076, 4413, 11), -- M. Def. Modifiers
+(36076, 4414, 2), -- Armor Type
+(36076, 4415, 19), -- Weapon Type
+(36076, 4416, 22), -- Races
 -- Support Unit Captain
 (36077, 4045, 1), -- Resist Full Magic Attack
-(36077, 4408, 1), -- HP Increase (1x)
-(36077, 4409, 1), -- MP Increase (1x)
-(36077, 4410, 11), -- Average P. Atk.
-(36077, 4411, 11), -- Average M. Atk.
-(36077, 4412, 11), -- Average P. Def.
-(36077, 4413, 11), -- Average M. Def.
-(36077, 4414, 2), -- Standard Type
-(36077, 4415, 3), -- One-handed Sword
-(36077, 4416, 14), -- Humans
+(36077, 4408, 1), -- HP Modifiers
+(36077, 4409, 1), -- MP Modifiers
+(36077, 4410, 11), -- P. Atk. Modifiers
+(36077, 4411, 11), -- M. Atk. Modifiers
+(36077, 4412, 11), -- P. Def. Modifiers
+(36077, 4413, 11), -- M. Def. Modifiers
+(36077, 4414, 2), -- Armor Type
+(36077, 4415, 3), -- Weapon Type
+(36077, 4416, 14), -- Races
 -- Engineering Manager
 (36078, 4045, 1), -- Resist Full Magic Attack
-(36078, 4408, 1), -- HP Increase (1x)
-(36078, 4409, 1), -- MP Increase (1x)
-(36078, 4410, 11), -- Average P. Atk.
-(36078, 4411, 11), -- Average M. Atk.
-(36078, 4412, 11), -- Average P. Def.
-(36078, 4413, 11), -- Average M. Def.
-(36078, 4414, 2), -- Standard Type
-(36078, 4415, 3), -- One-handed Sword
-(36078, 4416, 18), -- Dwarves
+(36078, 4408, 1), -- HP Modifiers
+(36078, 4409, 1), -- MP Modifiers
+(36078, 4410, 11), -- P. Atk. Modifiers
+(36078, 4411, 11), -- M. Atk. Modifiers
+(36078, 4412, 11), -- P. Def. Modifiers
+(36078, 4413, 11), -- M. Def. Modifiers
+(36078, 4414, 2), -- Armor Type
+(36078, 4415, 3), -- Weapon Type
+(36078, 4416, 18), -- Races
 -- Logistics Officer
 (36079, 4045, 1), -- Resist Full Magic Attack
-(36079, 4408, 1), -- HP Increase (1x)
-(36079, 4409, 1), -- MP Increase (1x)
-(36079, 4410, 11), -- Average P. Atk.
-(36079, 4411, 11), -- Average M. Atk.
-(36079, 4412, 11), -- Average P. Def.
-(36079, 4413, 11), -- Average M. Def.
-(36079, 4414, 2), -- Standard Type
-(36079, 4415, 3), -- One-handed Sword
-(36079, 4416, 18), -- Dwarves
+(36079, 4408, 1), -- HP Modifiers
+(36079, 4409, 1), -- MP Modifiers
+(36079, 4410, 11), -- P. Atk. Modifiers
+(36079, 4411, 11), -- M. Atk. Modifiers
+(36079, 4412, 11), -- P. Def. Modifiers
+(36079, 4413, 11), -- M. Def. Modifiers
+(36079, 4414, 2), -- Armor Type
+(36079, 4415, 3), -- Weapon Type
+(36079, 4416, 18), -- Races
 -- Supply Box
 (36080, 4045, 1), -- Resist Full Magic Attack
-(36080, 4408, 1), -- HP Increase (1x)
-(36080, 4409, 1), -- MP Increase (1x)
-(36080, 4410, 11), -- Average P. Atk.
-(36080, 4411, 11), -- Average M. Atk.
-(36080, 4412, 11), -- Average P. Def.
-(36080, 4413, 11), -- Average M. Def.
-(36080, 4414, 2), -- Standard Type
-(36080, 4415, 3), -- One-handed Sword
-(36080, 4416, 2), -- Magic Creatures
+(36080, 4408, 1), -- HP Modifiers
+(36080, 4409, 1), -- MP Modifiers
+(36080, 4410, 11), -- P. Atk. Modifiers
+(36080, 4411, 11), -- M. Atk. Modifiers
+(36080, 4412, 11), -- P. Def. Modifiers
+(36080, 4413, 11), -- M. Def. Modifiers
+(36080, 4414, 2), -- Armor Type
+(36080, 4415, 3), -- Weapon Type
+(36080, 4416, 2), -- Races
 -- Detention Camp Warden
 (36081, 4045, 1), -- Resist Full Magic Attack
-(36081, 4408, 1), -- HP Increase (1x)
-(36081, 4409, 1), -- MP Increase (1x)
-(36081, 4410, 11), -- Average P. Atk.
-(36081, 4411, 11), -- Average M. Atk.
-(36081, 4412, 11), -- Average P. Def.
-(36081, 4413, 11), -- Average M. Def.
-(36081, 4414, 2), -- Standard Type
-(36081, 4415, 3), -- One-handed Sword
-(36081, 4416, 14), -- Humans
+(36081, 4408, 1), -- HP Modifiers
+(36081, 4409, 1), -- MP Modifiers
+(36081, 4410, 11), -- P. Atk. Modifiers
+(36081, 4411, 11), -- M. Atk. Modifiers
+(36081, 4412, 11), -- P. Def. Modifiers
+(36081, 4413, 11), -- M. Def. Modifiers
+(36081, 4414, 2), -- Armor Type
+(36081, 4415, 3), -- Weapon Type
+(36081, 4416, 14), -- Races
 -- Doorman
 (36082, 4045, 1), -- Resist Full Magic Attack
-(36082, 4408, 1), -- HP Increase (1x)
-(36082, 4409, 1), -- MP Increase (1x)
-(36082, 4410, 11), -- Average P. Atk.
-(36082, 4411, 11), -- Average M. Atk.
-(36082, 4412, 11), -- Average P. Def.
-(36082, 4413, 11), -- Average M. Def.
-(36082, 4414, 2), -- Standard Type
-(36082, 4415, 3), -- One-handed Sword
-(36082, 4416, 14), -- Humans
+(36082, 4408, 1), -- HP Modifiers
+(36082, 4409, 1), -- MP Modifiers
+(36082, 4410, 11), -- P. Atk. Modifiers
+(36082, 4411, 11), -- M. Atk. Modifiers
+(36082, 4412, 11), -- P. Def. Modifiers
+(36082, 4413, 11), -- M. Def. Modifiers
+(36082, 4414, 2), -- Armor Type
+(36082, 4415, 3), -- Weapon Type
+(36082, 4416, 14), -- Races
 -- Doorman
 (36083, 4045, 1), -- Resist Full Magic Attack
-(36083, 4408, 1), -- HP Increase (1x)
-(36083, 4409, 1), -- MP Increase (1x)
-(36083, 4410, 11), -- Average P. Atk.
-(36083, 4411, 11), -- Average M. Atk.
-(36083, 4412, 11), -- Average P. Def.
-(36083, 4413, 11), -- Average M. Def.
-(36083, 4414, 2), -- Standard Type
-(36083, 4415, 3), -- One-handed Sword
-(36083, 4416, 14), -- Humans
+(36083, 4408, 1), -- HP Modifiers
+(36083, 4409, 1), -- MP Modifiers
+(36083, 4410, 11), -- P. Atk. Modifiers
+(36083, 4411, 11), -- M. Atk. Modifiers
+(36083, 4412, 11), -- P. Def. Modifiers
+(36083, 4413, 11), -- M. Def. Modifiers
+(36083, 4414, 2), -- Armor Type
+(36083, 4415, 3), -- Weapon Type
+(36083, 4416, 14), -- Races
 -- Doorman
 (36084, 4045, 1), -- Resist Full Magic Attack
-(36084, 4408, 1), -- HP Increase (1x)
-(36084, 4409, 1), -- MP Increase (1x)
-(36084, 4410, 11), -- Average P. Atk.
-(36084, 4411, 11), -- Average M. Atk.
-(36084, 4412, 11), -- Average P. Def.
-(36084, 4413, 11), -- Average M. Def.
-(36084, 4414, 2), -- Standard Type
-(36084, 4415, 3), -- One-handed Sword
-(36084, 4416, 14), -- Humans
+(36084, 4408, 1), -- HP Modifiers
+(36084, 4409, 1), -- MP Modifiers
+(36084, 4410, 11), -- P. Atk. Modifiers
+(36084, 4411, 11), -- M. Atk. Modifiers
+(36084, 4412, 11), -- P. Def. Modifiers
+(36084, 4413, 11), -- M. Def. Modifiers
+(36084, 4414, 2), -- Armor Type
+(36084, 4415, 3), -- Weapon Type
+(36084, 4416, 14), -- Races
 -- Rebel Commander
 (36085, 4045, 1), -- Resist Full Magic Attack
-(36085, 4178, 7), -- Flame Strike
-(36085, 4195, 7), -- Twister
-(36085, 4408, 10), -- HP Increase (2x)
-(36085, 4409, 1), -- MP Increase (1x)
-(36085, 4410, 11), -- Average P. Atk.
-(36085, 4411, 17), -- Very Strong M. Atk.
-(36085, 4412, 11), -- Average P. Def.
-(36085, 4413, 11), -- Average M. Def.
-(36085, 4414, 2), -- Standard Type
-(36085, 4415, 3), -- One-handed Sword
-(36085, 4416, 16), -- Dark Elves
+(36085, 4178, 7), -- BOSS Flame Strike
+(36085, 4195, 7), -- BOSS Twister
+(36085, 4408, 10), -- HP Modifiers
+(36085, 4409, 1), -- MP Modifiers
+(36085, 4410, 11), -- P. Atk. Modifiers
+(36085, 4411, 17), -- M. Atk. Modifiers
+(36085, 4412, 11), -- P. Def. Modifiers
+(36085, 4413, 11), -- M. Def. Modifiers
+(36085, 4414, 2), -- Armor Type
+(36085, 4415, 3), -- Weapon Type
+(36085, 4416, 16), -- Races
 -- Decorated Rebel Soldier
 (36086, 4045, 1), -- Resist Full Magic Attack
-(36086, 4408, 14), -- HP Increase (6x)
-(36086, 4409, 1), -- MP Increase (1x)
-(36086, 4410, 15), -- Strong P. Atk.
-(36086, 4411, 11), -- Average M. Atk.
-(36086, 4412, 11), -- Average P. Def.
-(36086, 4413, 15), -- Strong M. Def.
-(36086, 4414, 2), -- Standard Type
-(36086, 4415, 1), -- Bare Hands
-(36086, 4416, 9), -- Demons
-(36086, 5065, 7), -- Unholy Strike
+(36086, 4408, 14), -- HP Modifiers
+(36086, 4409, 1), -- MP Modifiers
+(36086, 4410, 15), -- P. Atk. Modifiers
+(36086, 4411, 11), -- M. Atk. Modifiers
+(36086, 4412, 11), -- P. Def. Modifiers
+(36086, 4413, 15), -- M. Def. Modifiers
+(36086, 4414, 2), -- Armor Type
+(36086, 4415, 1), -- Weapon Type
+(36086, 4416, 9), -- Races
+(36086, 5065, 7), -- Castle DD Unholy
 -- Rebel Private
 (36087, 4045, 1), -- Resist Full Magic Attack
-(36087, 4408, 12), -- HP Increase (4x)
-(36087, 4409, 1), -- MP Increase (1x)
-(36087, 4410, 14), -- Strong P. Atk.
-(36087, 4411, 11), -- Average M. Atk.
-(36087, 4412, 11), -- Average P. Def.
-(36087, 4413, 11), -- Average M. Def.
-(36087, 4414, 2), -- Standard Type
-(36087, 4415, 11), -- Spears
-(36087, 4416, 14), -- Humans
+(36087, 4408, 12), -- HP Modifiers
+(36087, 4409, 1), -- MP Modifiers
+(36087, 4410, 14), -- P. Atk. Modifiers
+(36087, 4411, 11), -- M. Atk. Modifiers
+(36087, 4412, 11), -- P. Def. Modifiers
+(36087, 4413, 11), -- M. Def. Modifiers
+(36087, 4414, 2), -- Armor Type
+(36087, 4415, 11), -- Weapon Type
+(36087, 4416, 14), -- Races
 -- Court Guard
 (36088, 4045, 1), -- Resist Full Magic Attack
-(36088, 4408, 12), -- HP Increase (4x)
-(36088, 4409, 1), -- MP Increase (1x)
-(36088, 4410, 11), -- Average P. Atk.
-(36088, 4411, 11), -- Average M. Atk.
-(36088, 4412, 11), -- Average P. Def.
-(36088, 4413, 16), -- Very Strong M. Def.
-(36088, 4414, 2), -- Standard Type
-(36088, 4415, 11), -- Spears
-(36088, 4416, 22), -- Defending Army
+(36088, 4408, 12), -- HP Modifiers
+(36088, 4409, 1), -- MP Modifiers
+(36088, 4410, 11), -- P. Atk. Modifiers
+(36088, 4411, 11), -- M. Atk. Modifiers
+(36088, 4412, 11), -- P. Def. Modifiers
+(36088, 4413, 16), -- M. Def. Modifiers
+(36088, 4414, 2), -- Armor Type
+(36088, 4415, 11), -- Weapon Type
+(36088, 4416, 22), -- Races
 (36088, 5432, 1), -- Weapon Supply
 -- Guard
 (36089, 4045, 1), -- Resist Full Magic Attack
-(36089, 4408, 12), -- HP Increase (4x)
-(36089, 4409, 1), -- MP Increase (1x)
-(36089, 4410, 15), -- Strong P. Atk.
-(36089, 4411, 11), -- Average M. Atk.
-(36089, 4412, 11), -- Average P. Def.
-(36089, 4413, 11), -- Average M. Def.
-(36089, 4414, 3), -- Light Armor Type
-(36089, 4415, 9), -- Bows
-(36089, 4416, 22), -- Defending Army
+(36089, 4408, 12), -- HP Modifiers
+(36089, 4409, 1), -- MP Modifiers
+(36089, 4410, 15), -- P. Atk. Modifiers
+(36089, 4411, 11), -- M. Atk. Modifiers
+(36089, 4412, 11), -- P. Def. Modifiers
+(36089, 4413, 11), -- M. Def. Modifiers
+(36089, 4414, 3), -- Armor Type
+(36089, 4415, 9), -- Weapon Type
+(36089, 4416, 22), -- Races
 (36089, 5432, 1), -- Weapon Supply
 -- Main Machine
 (36090, 4045, 1), -- Resist Full Magic Attack
-(36090, 4408, 1), -- HP Increase (1x)
-(36090, 4409, 1), -- MP Increase (1x)
-(36090, 4410, 11), -- Average P. Atk.
-(36090, 4411, 11), -- Average M. Atk.
-(36090, 4412, 11), -- Average P. Def.
-(36090, 4413, 11), -- Average M. Def.
-(36090, 4414, 2), -- Standard Type
-(36090, 4415, 3), -- One-handed Sword
-(36090, 4416, 19), -- Others
+(36090, 4408, 1), -- HP Modifiers
+(36090, 4409, 1), -- MP Modifiers
+(36090, 4410, 11), -- P. Atk. Modifiers
+(36090, 4411, 11), -- M. Atk. Modifiers
+(36090, 4412, 11), -- P. Def. Modifiers
+(36090, 4413, 11), -- M. Def. Modifiers
+(36090, 4414, 2), -- Armor Type
+(36090, 4415, 3), -- Weapon Type
+(36090, 4416, 19), -- Races
 -- Backup Power Unit
 (36091, 4045, 1), -- Resist Full Magic Attack
-(36091, 4408, 1), -- HP Increase (1x)
-(36091, 4409, 1), -- MP Increase (1x)
-(36091, 4410, 11), -- Average P. Atk.
-(36091, 4411, 11), -- Average M. Atk.
-(36091, 4412, 11), -- Average P. Def.
-(36091, 4413, 11), -- Average M. Def.
-(36091, 4414, 2), -- Standard Type
-(36091, 4415, 3), -- One-handed Sword
-(36091, 4416, 19), -- Others
+(36091, 4408, 1), -- HP Modifiers
+(36091, 4409, 1), -- MP Modifiers
+(36091, 4410, 11), -- P. Atk. Modifiers
+(36091, 4411, 11), -- M. Atk. Modifiers
+(36091, 4412, 11), -- P. Def. Modifiers
+(36091, 4413, 11), -- M. Def. Modifiers
+(36091, 4414, 2), -- Armor Type
+(36091, 4415, 3), -- Weapon Type
+(36091, 4416, 19), -- Races
 -- Control Unit
 (36092, 4045, 1), -- Resist Full Magic Attack
-(36092, 4408, 1), -- HP Increase (1x)
-(36092, 4409, 1), -- MP Increase (1x)
-(36092, 4410, 11), -- Average P. Atk.
-(36092, 4411, 11), -- Average M. Atk.
-(36092, 4412, 11), -- Average P. Def.
-(36092, 4413, 11), -- Average M. Def.
-(36092, 4414, 2), -- Standard Type
-(36092, 4415, 3), -- One-handed Sword
-(36092, 4416, 2), -- Magic Creatures
+(36092, 4408, 1), -- HP Modifiers
+(36092, 4409, 1), -- MP Modifiers
+(36092, 4410, 11), -- P. Atk. Modifiers
+(36092, 4411, 11), -- M. Atk. Modifiers
+(36092, 4412, 11), -- P. Def. Modifiers
+(36092, 4413, 11), -- M. Def. Modifiers
+(36092, 4414, 2), -- Armor Type
+(36092, 4415, 3), -- Weapon Type
+(36092, 4416, 2), -- Races
 -- Power Control Unit
 (36093, 4045, 1), -- Resist Full Magic Attack
-(36093, 4408, 1), -- HP Increase (1x)
-(36093, 4409, 1), -- MP Increase (1x)
-(36093, 4410, 11), -- Average P. Atk.
-(36093, 4411, 11), -- Average M. Atk.
-(36093, 4412, 11), -- Average P. Def.
-(36093, 4413, 11), -- Average M. Def.
-(36093, 4414, 2), -- Standard Type
-(36093, 4415, 3), -- One-handed Sword
-(36093, 4416, 19), -- Others
+(36093, 4408, 1), -- HP Modifiers
+(36093, 4409, 1), -- MP Modifiers
+(36093, 4410, 11), -- P. Atk. Modifiers
+(36093, 4411, 11), -- M. Atk. Modifiers
+(36093, 4412, 11), -- P. Def. Modifiers
+(36093, 4413, 11), -- M. Def. Modifiers
+(36093, 4414, 2), -- Armor Type
+(36093, 4415, 3), -- Weapon Type
+(36093, 4416, 19), -- Races
 -- Dwarven Gunnery Sergeant
 (36094, 4045, 1), -- Resist Full Magic Attack
-(36094, 4408, 11), -- HP Increase (3x)
-(36094, 4409, 16), -- MP Increase (8x)
-(36094, 4410, 11), -- Average P. Atk.
-(36094, 4411, 17), -- Very Strong M. Atk.
-(36094, 4412, 11), -- Average P. Def.
-(36094, 4413, 8), -- Weak M. Def.
-(36094, 4414, 2), -- Standard Type
-(36094, 4415, 9), -- Bows
-(36094, 4416, 22), -- Defending Army
+(36094, 4408, 11), -- HP Modifiers
+(36094, 4409, 16), -- MP Modifiers
+(36094, 4410, 11), -- P. Atk. Modifiers
+(36094, 4411, 17), -- M. Atk. Modifiers
+(36094, 4412, 11), -- P. Def. Modifiers
+(36094, 4413, 8), -- M. Def. Modifiers
+(36094, 4414, 2), -- Armor Type
+(36094, 4415, 9), -- Weapon Type
+(36094, 4416, 22), -- Races
 (36094, 5432, 1), -- Weapon Supply
-(36094, 5461, 6), -- Power Shot
-(36094, 5468, 6), -- Fire Shot
+(36094, 5461, 6), -- Castle Gunner Shot
+(36094, 5468, 6), -- Castle Gunner Fire
 -- Scout Golem
 (36095, 4045, 1), -- Resist Full Magic Attack
-(36095, 4408, 6), -- HP Very High
-(36095, 4409, 1), -- MP Increase (1x)
-(36095, 4410, 11), -- Average P. Atk.
-(36095, 4411, 11), -- Average M. Atk.
-(36095, 4412, 11), -- Average P. Def.
-(36095, 4413, 16), -- Very Strong M. Def.
-(36095, 4414, 2), -- Standard Type
-(36095, 4415, 3), -- One-handed Sword
-(36095, 4416, 22), -- Defending Army
+(36095, 4408, 6), -- HP Modifiers
+(36095, 4409, 1), -- MP Modifiers
+(36095, 4410, 11), -- P. Atk. Modifiers
+(36095, 4411, 11), -- M. Atk. Modifiers
+(36095, 4412, 11), -- P. Def. Modifiers
+(36095, 4413, 16), -- M. Def. Modifiers
+(36095, 4414, 2), -- Armor Type
+(36095, 4415, 3), -- Weapon Type
+(36095, 4416, 22), -- Races
 -- Guard Captain
 (36096, 4045, 1), -- Resist Full Magic Attack
 (36096, 4172, 6), -- Stun
-(36096, 4408, 9), -- HP Increase (1/2x)
-(36096, 4409, 1), -- MP Increase (1x)
-(36096, 4410, 8), -- Weak P. Atk.
-(36096, 4411, 11), -- Average M. Atk.
-(36096, 4412, 16), -- Very Strong P. Def.
-(36096, 4413, 11), -- Average M. Def.
-(36096, 4414, 2), -- Standard Type
-(36096, 4415, 3), -- One-handed Sword
-(36096, 4416, 22), -- Defending Army
+(36096, 4408, 9), -- HP Modifiers
+(36096, 4409, 1), -- MP Modifiers
+(36096, 4410, 8), -- P. Atk. Modifiers
+(36096, 4411, 11), -- M. Atk. Modifiers
+(36096, 4412, 16), -- P. Def. Modifiers
+(36096, 4413, 11), -- M. Def. Modifiers
+(36096, 4414, 2), -- Armor Type
+(36096, 4415, 3), -- Weapon Type
+(36096, 4416, 22), -- Races
 (36096, 4435, 5), -- Greater Resist Stun
 (36096, 4439, 5), -- Greater Resist Hold
 (36096, 4440, 5), -- Greater Resist Paralysis
-(36096, 4608, 1), -- Berserker Spirit
+(36096, 4608, 1), -- NPC Clan Buff - Berserk
 (36096, 5432, 1), -- Weapon Supply
-(36096, 5457, 1), -- Complete Recovery
+(36096, 5457, 1), -- NPC Full Recover
 -- Guard
 (36097, 4045, 1), -- Resist Full Magic Attack
-(36097, 4408, 13), -- HP Increase (5x)
-(36097, 4409, 1), -- MP Increase (1x)
-(36097, 4410, 9), -- Slightly Weak P. Atk.
-(36097, 4411, 11), -- Average M. Atk.
-(36097, 4412, 16), -- Very Strong P. Def.
-(36097, 4413, 11), -- Average M. Def.
-(36097, 4414, 2), -- Standard Type
-(36097, 4415, 3), -- One-handed Sword
-(36097, 4416, 22), -- Defending Army
+(36097, 4408, 13), -- HP Modifiers
+(36097, 4409, 1), -- MP Modifiers
+(36097, 4410, 9), -- P. Atk. Modifiers
+(36097, 4411, 11), -- M. Atk. Modifiers
+(36097, 4412, 16), -- P. Def. Modifiers
+(36097, 4413, 11), -- M. Def. Modifiers
+(36097, 4414, 2), -- Armor Type
+(36097, 4415, 3), -- Weapon Type
+(36097, 4416, 22), -- Races
 (36097, 5112, 6), -- Stun
 (36097, 5432, 1), -- Weapon Supply
 -- Guard
 (36098, 4045, 1), -- Resist Full Magic Attack
-(36098, 4408, 13), -- HP Increase (5x)
-(36098, 4409, 1), -- MP Increase (1x)
-(36098, 4410, 9), -- Slightly Weak P. Atk.
-(36098, 4411, 11), -- Average M. Atk.
-(36098, 4412, 11), -- Average P. Def.
-(36098, 4413, 16), -- Very Strong M. Def.
-(36098, 4414, 2), -- Standard Type
-(36098, 4415, 3), -- One-handed Sword
-(36098, 4416, 22), -- Defending Army
-(36098, 5045, 6), -- Power Strike
+(36098, 4408, 13), -- HP Modifiers
+(36098, 4409, 1), -- MP Modifiers
+(36098, 4410, 9), -- P. Atk. Modifiers
+(36098, 4411, 11), -- M. Atk. Modifiers
+(36098, 4412, 11), -- P. Def. Modifiers
+(36098, 4413, 16), -- M. Def. Modifiers
+(36098, 4414, 2), -- Armor Type
+(36098, 4415, 3), -- Weapon Type
+(36098, 4416, 22), -- Races
+(36098, 5045, 6), -- Castle Power Strike
 (36098, 5432, 1), -- Weapon Supply
 -- Support Unit Captain
 (36099, 4045, 1), -- Resist Full Magic Attack
-(36099, 4194, 6), -- Aura Burn
-(36099, 4196, 6), -- Decrease Speed
-(36099, 4408, 9), -- HP Increase (1/2x)
-(36099, 4409, 16), -- MP Increase (8x)
-(36099, 4410, 11), -- Average P. Atk.
-(36099, 4411, 14), -- Strong M. Atk.
-(36099, 4412, 8), -- Weak P. Def.
-(36099, 4413, 14), -- Strong M. Def.
-(36099, 4414, 3), -- Light Armor Type
-(36099, 4415, 3), -- One-handed Sword
-(36099, 4416, 22), -- Defending Army
-(36099, 5396, 1), -- Spell Force
-(36099, 5398, 1), -- Final Burn
+(36099, 4194, 6), -- BOSS Aura Burn
+(36099, 4196, 6), -- Decreases Speed
+(36099, 4408, 9), -- HP Modifiers
+(36099, 4409, 16), -- MP Modifiers
+(36099, 4410, 11), -- P. Atk. Modifiers
+(36099, 4411, 14), -- M. Atk. Modifiers
+(36099, 4412, 8), -- P. Def. Modifiers
+(36099, 4413, 14), -- M. Def. Modifiers
+(36099, 4414, 3), -- Armor Type
+(36099, 4415, 3), -- Weapon Type
+(36099, 4416, 22), -- Races
+(36099, 5396, 1), -- NPC - Spell Stance
+(36099, 5398, 1), -- NPC - Combination Force
 (36099, 5432, 1), -- Weapon Supply
-(36099, 5457, 1), -- Complete Recovery
+(36099, 5457, 1), -- NPC Full Recover
 -- Wizard
 (36100, 4045, 1), -- Resist Full Magic Attack
-(36100, 4077, 6), -- Aura Burn
-(36100, 4408, 13), -- HP Increase (5x)
-(36100, 4409, 16), -- MP Increase (8x)
-(36100, 4410, 11), -- Average P. Atk.
-(36100, 4411, 16), -- Very Strong M. Atk.
-(36100, 4412, 8), -- Weak P. Def.
-(36100, 4413, 11), -- Average M. Def.
-(36100, 4414, 3), -- Light Armor Type
-(36100, 4415, 3), -- One-handed Sword
-(36100, 4416, 22), -- Defending Army
-(36100, 5053, 6), -- Hydro Blast
-(36100, 5396, 1), -- Spell Force
+(36100, 4077, 6), -- NPC Aura Burn
+(36100, 4408, 13), -- HP Modifiers
+(36100, 4409, 16), -- MP Modifiers
+(36100, 4410, 11), -- P. Atk. Modifiers
+(36100, 4411, 16), -- M. Atk. Modifiers
+(36100, 4412, 8), -- P. Def. Modifiers
+(36100, 4413, 11), -- M. Def. Modifiers
+(36100, 4414, 3), -- Armor Type
+(36100, 4415, 3), -- Weapon Type
+(36100, 4416, 22), -- Races
+(36100, 5053, 6), -- Castle DD Water
+(36100, 5396, 1), -- NPC - Spell Stance
 (36100, 5432, 1), -- Weapon Supply
 -- Healer
 (36101, 4045, 1), -- Resist Full Magic Attack
 (36101, 4115, 1), -- Aden Heal
-(36101, 4408, 15), -- HP Increase (7x)
-(36101, 4409, 16), -- MP Increase (8x)
-(36101, 4410, 11), -- Average P. Atk.
-(36101, 4411, 17), -- Very Strong M. Atk.
-(36101, 4412, 11), -- Average P. Def.
-(36101, 4413, 16), -- Very Strong M. Def.
-(36101, 4414, 3), -- Light Armor Type
-(36101, 4415, 3), -- One-handed Sword
-(36101, 4416, 22), -- Defending Army
+(36101, 4408, 15), -- HP Modifiers
+(36101, 4409, 16), -- MP Modifiers
+(36101, 4410, 11), -- P. Atk. Modifiers
+(36101, 4411, 17), -- M. Atk. Modifiers
+(36101, 4412, 11), -- P. Def. Modifiers
+(36101, 4413, 16), -- M. Def. Modifiers
+(36101, 4414, 3), -- Armor Type
+(36101, 4415, 3), -- Weapon Type
+(36101, 4416, 22), -- Races
 (36101, 5114, 6), -- Hold
 (36101, 5432, 1), -- Weapon Supply
 -- Archer Captain
 (36102, 4045, 1), -- Resist Full Magic Attack
-(36102, 4408, 9), -- HP Increase (1/2x)
-(36102, 4409, 1), -- MP Increase (1x)
-(36102, 4410, 16), -- Very Strong P. Atk.
-(36102, 4411, 11), -- Average M. Atk.
-(36102, 4412, 8), -- Weak P. Def.
-(36102, 4413, 11), -- Average M. Def.
-(36102, 4414, 3), -- Light Armor Type
-(36102, 4415, 9), -- Bows
-(36102, 4416, 22), -- Defending Army
-(36102, 4755, 6), -- Power Shot
+(36102, 4408, 9), -- HP Modifiers
+(36102, 4409, 1), -- MP Modifiers
+(36102, 4410, 16), -- P. Atk. Modifiers
+(36102, 4411, 11), -- M. Atk. Modifiers
+(36102, 4412, 8), -- P. Def. Modifiers
+(36102, 4413, 11), -- M. Def. Modifiers
+(36102, 4414, 3), -- Armor Type
+(36102, 4415, 9), -- Weapon Type
+(36102, 4416, 22), -- Races
+(36102, 4755, 6), -- BOSS Power Shot
 (36102, 5432, 1), -- Weapon Supply
-(36102, 5457, 1), -- Complete Recovery
+(36102, 5457, 1), -- NPC Full Recover
 -- Archer
 (36103, 4045, 1), -- Resist Full Magic Attack
-(36103, 4408, 13), -- HP Increase (5x)
-(36103, 4409, 1), -- MP Increase (1x)
-(36103, 4410, 14), -- Strong P. Atk.
-(36103, 4411, 11), -- Average M. Atk.
-(36103, 4412, 8), -- Weak P. Def.
-(36103, 4413, 11), -- Average M. Def.
-(36103, 4414, 3), -- Light Armor Type
-(36103, 4415, 9), -- Bows
-(36103, 4416, 22), -- Defending Army
-(36103, 5046, 6), -- Power Shot
+(36103, 4408, 13), -- HP Modifiers
+(36103, 4409, 1), -- MP Modifiers
+(36103, 4410, 14), -- P. Atk. Modifiers
+(36103, 4411, 11), -- M. Atk. Modifiers
+(36103, 4412, 8), -- P. Def. Modifiers
+(36103, 4413, 11), -- M. Def. Modifiers
+(36103, 4414, 3), -- Armor Type
+(36103, 4415, 9), -- Weapon Type
+(36103, 4416, 22), -- Races
+(36103, 5046, 6), -- Castle Power Shot
 (36103, 5432, 1), -- Weapon Supply
 -- General
 (36104, 4045, 1), -- Resist Full Magic Attack
-(36104, 4408, 9), -- HP Increase (1/2x)
-(36104, 4409, 1), -- MP Increase (1x)
-(36104, 4410, 14), -- Strong P. Atk.
-(36104, 4411, 11), -- Average M. Atk.
-(36104, 4412, 11), -- Average P. Def.
-(36104, 4413, 11), -- Average M. Def.
-(36104, 4414, 2), -- Standard Type
-(36104, 4415, 19), -- Dual-Sword Weapons
-(36104, 4416, 22), -- Defending Army
+(36104, 4408, 9), -- HP Modifiers
+(36104, 4409, 1), -- MP Modifiers
+(36104, 4410, 14), -- P. Atk. Modifiers
+(36104, 4411, 11), -- M. Atk. Modifiers
+(36104, 4412, 11), -- P. Def. Modifiers
+(36104, 4413, 11), -- M. Def. Modifiers
+(36104, 4414, 2), -- Armor Type
+(36104, 4415, 19), -- Weapon Type
+(36104, 4416, 22), -- Races
 (36104, 4725, 6), -- Stun
 (36104, 5432, 1), -- Weapon Supply
-(36104, 5457, 1), -- Complete Recovery
+(36104, 5457, 1), -- NPC Full Recover
 -- Minister
 (36105, 4045, 1), -- Resist Full Magic Attack
-(36105, 4408, 9), -- HP Increase (1/2x)
-(36105, 4409, 1), -- MP Increase (1x)
-(36105, 4410, 14), -- Strong P. Atk.
-(36105, 4411, 11), -- Average M. Atk.
-(36105, 4412, 11), -- Average P. Def.
-(36105, 4413, 11), -- Average M. Def.
-(36105, 4414, 2), -- Standard Type
-(36105, 4415, 3), -- One-handed Sword
-(36105, 4416, 22), -- Defending Army
-(36105, 4721, 6), -- Power Strike
+(36105, 4408, 9), -- HP Modifiers
+(36105, 4409, 1), -- MP Modifiers
+(36105, 4410, 14), -- P. Atk. Modifiers
+(36105, 4411, 11), -- M. Atk. Modifiers
+(36105, 4412, 11), -- P. Def. Modifiers
+(36105, 4413, 11), -- M. Def. Modifiers
+(36105, 4414, 2), -- Armor Type
+(36105, 4415, 3), -- Weapon Type
+(36105, 4416, 22), -- Races
+(36105, 4721, 6), -- BOSS Strike
 (36105, 5432, 1), -- Weapon Supply
-(36105, 5457, 1), -- Complete Recovery
+(36105, 5457, 1), -- NPC Full Recover
 -- Ballista
 (36106, 2342, 1), -- Ballista Bomb
 (36106, 4045, 1), -- Resist Full Magic Attack
-(36106, 4408, 16), -- HP Increase (8x)
-(36106, 4409, 1), -- MP Increase (1x)
-(36106, 4410, 11), -- Average P. Atk.
-(36106, 4411, 11), -- Average M. Atk.
-(36106, 4412, 11), -- Average P. Def.
-(36106, 4413, 11), -- Average M. Def.
-(36106, 4414, 2), -- Standard Type
-(36106, 4415, 3), -- One-handed Sword
-(36106, 4416, 22), -- Defending Army
+(36106, 4408, 16), -- HP Modifiers
+(36106, 4409, 1), -- MP Modifiers
+(36106, 4410, 11), -- P. Atk. Modifiers
+(36106, 4411, 11), -- M. Atk. Modifiers
+(36106, 4412, 11), -- P. Def. Modifiers
+(36106, 4413, 11), -- M. Def. Modifiers
+(36106, 4414, 2), -- Armor Type
+(36106, 4415, 3), -- Weapon Type
+(36106, 4416, 22), -- Races
 -- Mercenary Captain
 (36107, 4045, 1), -- Resist Full Magic Attack
-(36107, 4408, 11), -- HP Increase (3x)
-(36107, 4409, 1), -- MP Increase (1x)
-(36107, 4410, 11), -- Average P. Atk.
-(36107, 4411, 11), -- Average M. Atk.
-(36107, 4412, 11), -- Average P. Def.
-(36107, 4413, 11), -- Average M. Def.
-(36107, 4414, 2), -- Standard Type
-(36107, 4415, 3), -- One-handed Sword
-(36107, 4416, 14), -- Humans
+(36107, 4408, 11), -- HP Modifiers
+(36107, 4409, 1), -- MP Modifiers
+(36107, 4410, 11), -- P. Atk. Modifiers
+(36107, 4411, 11), -- M. Atk. Modifiers
+(36107, 4412, 11), -- P. Def. Modifiers
+(36107, 4413, 11), -- M. Def. Modifiers
+(36107, 4414, 2), -- Armor Type
+(36107, 4415, 3), -- Weapon Type
+(36107, 4416, 14), -- Races
 -- Mercenary Private
 (36108, 4045, 1), -- Resist Full Magic Attack
-(36108, 4408, 11), -- HP Increase (3x)
-(36108, 4409, 1), -- MP Increase (1x)
-(36108, 4410, 13), -- Slightly Strong P. Atk.
-(36108, 4411, 11), -- Average M. Atk.
-(36108, 4412, 11), -- Average P. Def.
-(36108, 4413, 11), -- Average M. Def.
-(36108, 4414, 2), -- Standard Type
-(36108, 4415, 11), -- Spears
-(36108, 4416, 17), -- Orcs
+(36108, 4408, 11), -- HP Modifiers
+(36108, 4409, 1), -- MP Modifiers
+(36108, 4410, 13), -- P. Atk. Modifiers
+(36108, 4411, 11), -- M. Atk. Modifiers
+(36108, 4412, 11), -- P. Def. Modifiers
+(36108, 4413, 11), -- M. Def. Modifiers
+(36108, 4414, 2), -- Armor Type
+(36108, 4415, 11), -- Weapon Type
+(36108, 4416, 17), -- Races
 -- Flagpole
 (36109, 4045, 1), -- Resist Full Magic Attack
-(36109, 4408, 1), -- HP Increase (1x)
-(36109, 4409, 1), -- MP Increase (1x)
-(36109, 4410, 11), -- Average P. Atk.
-(36109, 4411, 11), -- Average M. Atk.
-(36109, 4412, 11), -- Average P. Def.
-(36109, 4413, 11), -- Average M. Def.
-(36109, 4414, 2), -- Standard Type
-(36109, 4415, 3), -- One-handed Sword
-(36109, 4416, 19), -- Others
+(36109, 4408, 1), -- HP Modifiers
+(36109, 4409, 1), -- MP Modifiers
+(36109, 4410, 11), -- P. Atk. Modifiers
+(36109, 4411, 11), -- M. Atk. Modifiers
+(36109, 4412, 11), -- P. Def. Modifiers
+(36109, 4413, 11), -- M. Def. Modifiers
+(36109, 4414, 2), -- Armor Type
+(36109, 4415, 3), -- Weapon Type
+(36109, 4416, 19), -- Races
 -- Foreman
 (36110, 4045, 1), -- Resist Full Magic Attack
-(36110, 4408, 1), -- HP Increase (1x)
-(36110, 4409, 1), -- MP Increase (1x)
-(36110, 4410, 11), -- Average P. Atk.
-(36110, 4411, 11), -- Average M. Atk.
-(36110, 4412, 11), -- Average P. Def.
-(36110, 4413, 11), -- Average M. Def.
-(36110, 4414, 2), -- Standard Type
-(36110, 4415, 3), -- One-handed Sword
-(36110, 4416, 14), -- Humans
+(36110, 4408, 1), -- HP Modifiers
+(36110, 4409, 1), -- MP Modifiers
+(36110, 4410, 11), -- P. Atk. Modifiers
+(36110, 4411, 11), -- M. Atk. Modifiers
+(36110, 4412, 11), -- P. Def. Modifiers
+(36110, 4413, 11), -- M. Def. Modifiers
+(36110, 4414, 2), -- Armor Type
+(36110, 4415, 3), -- Weapon Type
+(36110, 4416, 14), -- Races
 -- Suspicious Merchant
 (36111, 4045, 1), -- Resist Full Magic Attack
-(36111, 4408, 1), -- HP Increase (1x)
-(36111, 4409, 1), -- MP Increase (1x)
-(36111, 4410, 11), -- Average P. Atk.
-(36111, 4411, 11), -- Average M. Atk.
-(36111, 4412, 11), -- Average P. Def.
-(36111, 4413, 11), -- Average M. Def.
-(36111, 4414, 2), -- Standard Type
-(36111, 4415, 3), -- One-handed Sword
-(36111, 4416, 17), -- Orcs
+(36111, 4408, 1), -- HP Modifiers
+(36111, 4409, 1), -- MP Modifiers
+(36111, 4410, 11), -- P. Atk. Modifiers
+(36111, 4411, 11), -- M. Atk. Modifiers
+(36111, 4412, 11), -- P. Def. Modifiers
+(36111, 4413, 11), -- M. Def. Modifiers
+(36111, 4414, 2), -- Armor Type
+(36111, 4415, 3), -- Weapon Type
+(36111, 4416, 17), -- Races
 -- Guard Captain
 (36112, 4045, 1), -- Resist Full Magic Attack
-(36112, 4408, 1), -- HP Increase (1x)
-(36112, 4409, 1), -- MP Increase (1x)
-(36112, 4410, 11), -- Average P. Atk.
-(36112, 4411, 11), -- Average M. Atk.
-(36112, 4412, 11), -- Average P. Def.
-(36112, 4413, 11), -- Average M. Def.
-(36112, 4414, 2), -- Standard Type
-(36112, 4415, 3), -- One-handed Sword
-(36112, 4416, 14), -- Humans
+(36112, 4408, 1), -- HP Modifiers
+(36112, 4409, 1), -- MP Modifiers
+(36112, 4410, 11), -- P. Atk. Modifiers
+(36112, 4411, 11), -- M. Atk. Modifiers
+(36112, 4412, 11), -- P. Def. Modifiers
+(36112, 4413, 11), -- M. Def. Modifiers
+(36112, 4414, 2), -- Armor Type
+(36112, 4415, 3), -- Weapon Type
+(36112, 4416, 14), -- Races
 -- Archer Captain
 (36113, 4045, 1), -- Resist Full Magic Attack
-(36113, 4408, 1), -- HP Increase (1x)
-(36113, 4409, 1), -- MP Increase (1x)
-(36113, 4410, 11), -- Average P. Atk.
-(36113, 4411, 11), -- Average M. Atk.
-(36113, 4412, 11), -- Average P. Def.
-(36113, 4413, 11), -- Average M. Def.
-(36113, 4414, 2), -- Standard Type
-(36113, 4415, 9), -- Bows
-(36113, 4416, 15), -- Elves
+(36113, 4408, 1), -- HP Modifiers
+(36113, 4409, 1), -- MP Modifiers
+(36113, 4410, 11), -- P. Atk. Modifiers
+(36113, 4411, 11), -- M. Atk. Modifiers
+(36113, 4412, 11), -- P. Def. Modifiers
+(36113, 4413, 11), -- M. Def. Modifiers
+(36113, 4414, 2), -- Armor Type
+(36113, 4415, 9), -- Weapon Type
+(36113, 4416, 15), -- Races
 -- Support Unit Captain
 (36114, 4045, 1), -- Resist Full Magic Attack
-(36114, 4408, 1), -- HP Increase (1x)
-(36114, 4409, 1), -- MP Increase (1x)
-(36114, 4410, 11), -- Average P. Atk.
-(36114, 4411, 11), -- Average M. Atk.
-(36114, 4412, 11), -- Average P. Def.
-(36114, 4413, 11), -- Average M. Def.
-(36114, 4414, 2), -- Standard Type
-(36114, 4415, 3), -- One-handed Sword
-(36114, 4416, 14), -- Humans
+(36114, 4408, 1), -- HP Modifiers
+(36114, 4409, 1), -- MP Modifiers
+(36114, 4410, 11), -- P. Atk. Modifiers
+(36114, 4411, 11), -- M. Atk. Modifiers
+(36114, 4412, 11), -- P. Def. Modifiers
+(36114, 4413, 11), -- M. Def. Modifiers
+(36114, 4414, 2), -- Armor Type
+(36114, 4415, 3), -- Weapon Type
+(36114, 4416, 14), -- Races
 -- Engineering Manager
 (36115, 4045, 1), -- Resist Full Magic Attack
-(36115, 4408, 1), -- HP Increase (1x)
-(36115, 4409, 1), -- MP Increase (1x)
-(36115, 4410, 11), -- Average P. Atk.
-(36115, 4411, 11), -- Average M. Atk.
-(36115, 4412, 11), -- Average P. Def.
-(36115, 4413, 11), -- Average M. Def.
-(36115, 4414, 2), -- Standard Type
-(36115, 4415, 3), -- One-handed Sword
-(36115, 4416, 18), -- Dwarves
+(36115, 4408, 1), -- HP Modifiers
+(36115, 4409, 1), -- MP Modifiers
+(36115, 4410, 11), -- P. Atk. Modifiers
+(36115, 4411, 11), -- M. Atk. Modifiers
+(36115, 4412, 11), -- P. Def. Modifiers
+(36115, 4413, 11), -- M. Def. Modifiers
+(36115, 4414, 2), -- Armor Type
+(36115, 4415, 3), -- Weapon Type
+(36115, 4416, 18), -- Races
 -- Logistics Officer
 (36116, 4045, 1), -- Resist Full Magic Attack
-(36116, 4408, 1), -- HP Increase (1x)
-(36116, 4409, 1), -- MP Increase (1x)
-(36116, 4410, 11), -- Average P. Atk.
-(36116, 4411, 11), -- Average M. Atk.
-(36116, 4412, 11), -- Average P. Def.
-(36116, 4413, 11), -- Average M. Def.
-(36116, 4414, 2), -- Standard Type
-(36116, 4415, 3), -- One-handed Sword
-(36116, 4416, 18), -- Dwarves
+(36116, 4408, 1), -- HP Modifiers
+(36116, 4409, 1), -- MP Modifiers
+(36116, 4410, 11), -- P. Atk. Modifiers
+(36116, 4411, 11), -- M. Atk. Modifiers
+(36116, 4412, 11), -- P. Def. Modifiers
+(36116, 4413, 11), -- M. Def. Modifiers
+(36116, 4414, 2), -- Armor Type
+(36116, 4415, 3), -- Weapon Type
+(36116, 4416, 18), -- Races
 -- Supply Box
 (36117, 4045, 1), -- Resist Full Magic Attack
-(36117, 4408, 1), -- HP Increase (1x)
-(36117, 4409, 1), -- MP Increase (1x)
-(36117, 4410, 11), -- Average P. Atk.
-(36117, 4411, 11), -- Average M. Atk.
-(36117, 4412, 11), -- Average P. Def.
-(36117, 4413, 11), -- Average M. Def.
-(36117, 4414, 2), -- Standard Type
-(36117, 4415, 3), -- One-handed Sword
-(36117, 4416, 2), -- Magic Creatures
+(36117, 4408, 1), -- HP Modifiers
+(36117, 4409, 1), -- MP Modifiers
+(36117, 4410, 11), -- P. Atk. Modifiers
+(36117, 4411, 11), -- M. Atk. Modifiers
+(36117, 4412, 11), -- P. Def. Modifiers
+(36117, 4413, 11), -- M. Def. Modifiers
+(36117, 4414, 2), -- Armor Type
+(36117, 4415, 3), -- Weapon Type
+(36117, 4416, 2), -- Races
 -- Detention Camp Warden
 (36118, 4045, 1), -- Resist Full Magic Attack
-(36118, 4408, 1), -- HP Increase (1x)
-(36118, 4409, 1), -- MP Increase (1x)
-(36118, 4410, 11), -- Average P. Atk.
-(36118, 4411, 11), -- Average M. Atk.
-(36118, 4412, 11), -- Average P. Def.
-(36118, 4413, 11), -- Average M. Def.
-(36118, 4414, 2), -- Standard Type
-(36118, 4415, 3), -- One-handed Sword
-(36118, 4416, 14), -- Humans
+(36118, 4408, 1), -- HP Modifiers
+(36118, 4409, 1), -- MP Modifiers
+(36118, 4410, 11), -- P. Atk. Modifiers
+(36118, 4411, 11), -- M. Atk. Modifiers
+(36118, 4412, 11), -- P. Def. Modifiers
+(36118, 4413, 11), -- M. Def. Modifiers
+(36118, 4414, 2), -- Armor Type
+(36118, 4415, 3), -- Weapon Type
+(36118, 4416, 14), -- Races
 -- Doorman
 (36119, 4045, 1), -- Resist Full Magic Attack
-(36119, 4408, 1), -- HP Increase (1x)
-(36119, 4409, 1), -- MP Increase (1x)
-(36119, 4410, 11), -- Average P. Atk.
-(36119, 4411, 11), -- Average M. Atk.
-(36119, 4412, 11), -- Average P. Def.
-(36119, 4413, 11), -- Average M. Def.
-(36119, 4414, 2), -- Standard Type
-(36119, 4415, 3), -- One-handed Sword
-(36119, 4416, 14), -- Humans
+(36119, 4408, 1), -- HP Modifiers
+(36119, 4409, 1), -- MP Modifiers
+(36119, 4410, 11), -- P. Atk. Modifiers
+(36119, 4411, 11), -- M. Atk. Modifiers
+(36119, 4412, 11), -- P. Def. Modifiers
+(36119, 4413, 11), -- M. Def. Modifiers
+(36119, 4414, 2), -- Armor Type
+(36119, 4415, 3), -- Weapon Type
+(36119, 4416, 14), -- Races
 -- Doorman
 (36120, 4045, 1), -- Resist Full Magic Attack
-(36120, 4408, 1), -- HP Increase (1x)
-(36120, 4409, 1), -- MP Increase (1x)
-(36120, 4410, 11), -- Average P. Atk.
-(36120, 4411, 11), -- Average M. Atk.
-(36120, 4412, 11), -- Average P. Def.
-(36120, 4413, 11), -- Average M. Def.
-(36120, 4414, 2), -- Standard Type
-(36120, 4415, 3), -- One-handed Sword
-(36120, 4416, 14), -- Humans
+(36120, 4408, 1), -- HP Modifiers
+(36120, 4409, 1), -- MP Modifiers
+(36120, 4410, 11), -- P. Atk. Modifiers
+(36120, 4411, 11), -- M. Atk. Modifiers
+(36120, 4412, 11), -- P. Def. Modifiers
+(36120, 4413, 11), -- M. Def. Modifiers
+(36120, 4414, 2), -- Armor Type
+(36120, 4415, 3), -- Weapon Type
+(36120, 4416, 14), -- Races
 -- Doorman
 (36121, 4045, 1), -- Resist Full Magic Attack
-(36121, 4408, 1), -- HP Increase (1x)
-(36121, 4409, 1), -- MP Increase (1x)
-(36121, 4410, 11), -- Average P. Atk.
-(36121, 4411, 11), -- Average M. Atk.
-(36121, 4412, 11), -- Average P. Def.
-(36121, 4413, 11), -- Average M. Def.
-(36121, 4414, 2), -- Standard Type
-(36121, 4415, 3), -- One-handed Sword
-(36121, 4416, 14), -- Humans
+(36121, 4408, 1), -- HP Modifiers
+(36121, 4409, 1), -- MP Modifiers
+(36121, 4410, 11), -- P. Atk. Modifiers
+(36121, 4411, 11), -- M. Atk. Modifiers
+(36121, 4412, 11), -- P. Def. Modifiers
+(36121, 4413, 11), -- M. Def. Modifiers
+(36121, 4414, 2), -- Armor Type
+(36121, 4415, 3), -- Weapon Type
+(36121, 4416, 14), -- Races
 -- Rebel Commander
 (36122, 4045, 1), -- Resist Full Magic Attack
-(36122, 4178, 7), -- Flame Strike
-(36122, 4195, 7), -- Twister
-(36122, 4408, 10), -- HP Increase (2x)
-(36122, 4409, 1), -- MP Increase (1x)
-(36122, 4410, 11), -- Average P. Atk.
-(36122, 4411, 17), -- Very Strong M. Atk.
-(36122, 4412, 11), -- Average P. Def.
-(36122, 4413, 11), -- Average M. Def.
-(36122, 4414, 2), -- Standard Type
-(36122, 4415, 3), -- One-handed Sword
-(36122, 4416, 16), -- Dark Elves
+(36122, 4178, 7), -- BOSS Flame Strike
+(36122, 4195, 7), -- BOSS Twister
+(36122, 4408, 10), -- HP Modifiers
+(36122, 4409, 1), -- MP Modifiers
+(36122, 4410, 11), -- P. Atk. Modifiers
+(36122, 4411, 17), -- M. Atk. Modifiers
+(36122, 4412, 11), -- P. Def. Modifiers
+(36122, 4413, 11), -- M. Def. Modifiers
+(36122, 4414, 2), -- Armor Type
+(36122, 4415, 3), -- Weapon Type
+(36122, 4416, 16), -- Races
 -- Decorated Rebel Soldier
 (36123, 4045, 1), -- Resist Full Magic Attack
-(36123, 4408, 14), -- HP Increase (6x)
-(36123, 4409, 1), -- MP Increase (1x)
-(36123, 4410, 15), -- Strong P. Atk.
-(36123, 4411, 11), -- Average M. Atk.
-(36123, 4412, 11), -- Average P. Def.
-(36123, 4413, 15), -- Strong M. Def.
-(36123, 4414, 2), -- Standard Type
-(36123, 4415, 1), -- Bare Hands
-(36123, 4416, 9), -- Demons
-(36123, 5065, 7), -- Unholy Strike
+(36123, 4408, 14), -- HP Modifiers
+(36123, 4409, 1), -- MP Modifiers
+(36123, 4410, 15), -- P. Atk. Modifiers
+(36123, 4411, 11), -- M. Atk. Modifiers
+(36123, 4412, 11), -- P. Def. Modifiers
+(36123, 4413, 15), -- M. Def. Modifiers
+(36123, 4414, 2), -- Armor Type
+(36123, 4415, 1), -- Weapon Type
+(36123, 4416, 9), -- Races
+(36123, 5065, 7), -- Castle DD Unholy
 -- Rebel Private
 (36124, 4045, 1), -- Resist Full Magic Attack
-(36124, 4408, 12), -- HP Increase (4x)
-(36124, 4409, 1), -- MP Increase (1x)
-(36124, 4410, 14), -- Strong P. Atk.
-(36124, 4411, 11), -- Average M. Atk.
-(36124, 4412, 11), -- Average P. Def.
-(36124, 4413, 11), -- Average M. Def.
-(36124, 4414, 2), -- Standard Type
-(36124, 4415, 11), -- Spears
-(36124, 4416, 14), -- Humans
+(36124, 4408, 12), -- HP Modifiers
+(36124, 4409, 1), -- MP Modifiers
+(36124, 4410, 14), -- P. Atk. Modifiers
+(36124, 4411, 11), -- M. Atk. Modifiers
+(36124, 4412, 11), -- P. Def. Modifiers
+(36124, 4413, 11), -- M. Def. Modifiers
+(36124, 4414, 2), -- Armor Type
+(36124, 4415, 11), -- Weapon Type
+(36124, 4416, 14), -- Races
 -- Court Guard
 (36125, 4045, 1), -- Resist Full Magic Attack
-(36125, 4408, 12), -- HP Increase (4x)
-(36125, 4409, 1), -- MP Increase (1x)
-(36125, 4410, 11), -- Average P. Atk.
-(36125, 4411, 11), -- Average M. Atk.
-(36125, 4412, 11), -- Average P. Def.
-(36125, 4413, 16), -- Very Strong M. Def.
-(36125, 4414, 2), -- Standard Type
-(36125, 4415, 11), -- Spears
-(36125, 4416, 22), -- Defending Army
+(36125, 4408, 12), -- HP Modifiers
+(36125, 4409, 1), -- MP Modifiers
+(36125, 4410, 11), -- P. Atk. Modifiers
+(36125, 4411, 11), -- M. Atk. Modifiers
+(36125, 4412, 11), -- P. Def. Modifiers
+(36125, 4413, 16), -- M. Def. Modifiers
+(36125, 4414, 2), -- Armor Type
+(36125, 4415, 11), -- Weapon Type
+(36125, 4416, 22), -- Races
 (36125, 5432, 1), -- Weapon Supply
 -- Guard
 (36126, 4045, 1), -- Resist Full Magic Attack
-(36126, 4408, 12), -- HP Increase (4x)
-(36126, 4409, 1), -- MP Increase (1x)
-(36126, 4410, 15), -- Strong P. Atk.
-(36126, 4411, 11), -- Average M. Atk.
-(36126, 4412, 11), -- Average P. Def.
-(36126, 4413, 11), -- Average M. Def.
-(36126, 4414, 3), -- Light Armor Type
-(36126, 4415, 9), -- Bows
-(36126, 4416, 22), -- Defending Army
+(36126, 4408, 12), -- HP Modifiers
+(36126, 4409, 1), -- MP Modifiers
+(36126, 4410, 15), -- P. Atk. Modifiers
+(36126, 4411, 11), -- M. Atk. Modifiers
+(36126, 4412, 11), -- P. Def. Modifiers
+(36126, 4413, 11), -- M. Def. Modifiers
+(36126, 4414, 3), -- Armor Type
+(36126, 4415, 9), -- Weapon Type
+(36126, 4416, 22), -- Races
 (36126, 5432, 1), -- Weapon Supply
 -- Power Control Unit
 (36127, 4045, 1), -- Resist Full Magic Attack
-(36127, 4408, 1), -- HP Increase (1x)
-(36127, 4409, 1), -- MP Increase (1x)
-(36127, 4410, 11), -- Average P. Atk.
-(36127, 4411, 11), -- Average M. Atk.
-(36127, 4412, 11), -- Average P. Def.
-(36127, 4413, 11), -- Average M. Def.
-(36127, 4414, 2), -- Standard Type
-(36127, 4415, 3), -- One-handed Sword
-(36127, 4416, 19), -- Others
+(36127, 4408, 1), -- HP Modifiers
+(36127, 4409, 1), -- MP Modifiers
+(36127, 4410, 11), -- P. Atk. Modifiers
+(36127, 4411, 11), -- M. Atk. Modifiers
+(36127, 4412, 11), -- P. Def. Modifiers
+(36127, 4413, 11), -- M. Def. Modifiers
+(36127, 4414, 2), -- Armor Type
+(36127, 4415, 3), -- Weapon Type
+(36127, 4416, 19), -- Races
 -- Dwarven Gunnery Sergeant
 (36128, 4045, 1), -- Resist Full Magic Attack
-(36128, 4408, 11), -- HP Increase (3x)
-(36128, 4409, 16), -- MP Increase (8x)
-(36128, 4410, 11), -- Average P. Atk.
-(36128, 4411, 17), -- Very Strong M. Atk.
-(36128, 4412, 11), -- Average P. Def.
-(36128, 4413, 8), -- Weak M. Def.
-(36128, 4414, 2), -- Standard Type
-(36128, 4415, 9), -- Bows
-(36128, 4416, 22), -- Defending Army
+(36128, 4408, 11), -- HP Modifiers
+(36128, 4409, 16), -- MP Modifiers
+(36128, 4410, 11), -- P. Atk. Modifiers
+(36128, 4411, 17), -- M. Atk. Modifiers
+(36128, 4412, 11), -- P. Def. Modifiers
+(36128, 4413, 8), -- M. Def. Modifiers
+(36128, 4414, 2), -- Armor Type
+(36128, 4415, 9), -- Weapon Type
+(36128, 4416, 22), -- Races
 (36128, 5432, 1), -- Weapon Supply
-(36128, 5461, 6), -- Power Shot
-(36128, 5468, 6), -- Fire Shot
+(36128, 5461, 6), -- Castle Gunner Shot
+(36128, 5468, 6), -- Castle Gunner Fire
 -- Guard Captain
 (36129, 4045, 1), -- Resist Full Magic Attack
 (36129, 4172, 6), -- Stun
-(36129, 4408, 9), -- HP Increase (1/2x)
-(36129, 4409, 1), -- MP Increase (1x)
-(36129, 4410, 8), -- Weak P. Atk.
-(36129, 4411, 11), -- Average M. Atk.
-(36129, 4412, 16), -- Very Strong P. Def.
-(36129, 4413, 11), -- Average M. Def.
-(36129, 4414, 2), -- Standard Type
-(36129, 4415, 3), -- One-handed Sword
-(36129, 4416, 22), -- Defending Army
+(36129, 4408, 9), -- HP Modifiers
+(36129, 4409, 1), -- MP Modifiers
+(36129, 4410, 8), -- P. Atk. Modifiers
+(36129, 4411, 11), -- M. Atk. Modifiers
+(36129, 4412, 16), -- P. Def. Modifiers
+(36129, 4413, 11), -- M. Def. Modifiers
+(36129, 4414, 2), -- Armor Type
+(36129, 4415, 3), -- Weapon Type
+(36129, 4416, 22), -- Races
 (36129, 4435, 5), -- Greater Resist Stun
 (36129, 4439, 5), -- Greater Resist Hold
 (36129, 4440, 5), -- Greater Resist Paralysis
-(36129, 4608, 1), -- Berserker Spirit
+(36129, 4608, 1), -- NPC Clan Buff - Berserk
 (36129, 5432, 1), -- Weapon Supply
-(36129, 5457, 1), -- Complete Recovery
+(36129, 5457, 1), -- NPC Full Recover
 -- Guard
 (36130, 4045, 1), -- Resist Full Magic Attack
-(36130, 4408, 13), -- HP Increase (5x)
-(36130, 4409, 1), -- MP Increase (1x)
-(36130, 4410, 9), -- Slightly Weak P. Atk.
-(36130, 4411, 11), -- Average M. Atk.
-(36130, 4412, 16), -- Very Strong P. Def.
-(36130, 4413, 11), -- Average M. Def.
-(36130, 4414, 2), -- Standard Type
-(36130, 4415, 3), -- One-handed Sword
-(36130, 4416, 22), -- Defending Army
+(36130, 4408, 13), -- HP Modifiers
+(36130, 4409, 1), -- MP Modifiers
+(36130, 4410, 9), -- P. Atk. Modifiers
+(36130, 4411, 11), -- M. Atk. Modifiers
+(36130, 4412, 16), -- P. Def. Modifiers
+(36130, 4413, 11), -- M. Def. Modifiers
+(36130, 4414, 2), -- Armor Type
+(36130, 4415, 3), -- Weapon Type
+(36130, 4416, 22), -- Races
 (36130, 5112, 6), -- Stun
 (36130, 5432, 1), -- Weapon Supply
 -- Guard
 (36131, 4045, 1), -- Resist Full Magic Attack
-(36131, 4408, 13), -- HP Increase (5x)
-(36131, 4409, 1), -- MP Increase (1x)
-(36131, 4410, 9), -- Slightly Weak P. Atk.
-(36131, 4411, 11), -- Average M. Atk.
-(36131, 4412, 11), -- Average P. Def.
-(36131, 4413, 16), -- Very Strong M. Def.
-(36131, 4414, 2), -- Standard Type
-(36131, 4415, 3), -- One-handed Sword
-(36131, 4416, 22), -- Defending Army
-(36131, 5045, 6), -- Power Strike
+(36131, 4408, 13), -- HP Modifiers
+(36131, 4409, 1), -- MP Modifiers
+(36131, 4410, 9), -- P. Atk. Modifiers
+(36131, 4411, 11), -- M. Atk. Modifiers
+(36131, 4412, 11), -- P. Def. Modifiers
+(36131, 4413, 16), -- M. Def. Modifiers
+(36131, 4414, 2), -- Armor Type
+(36131, 4415, 3), -- Weapon Type
+(36131, 4416, 22), -- Races
+(36131, 5045, 6), -- Castle Power Strike
 (36131, 5432, 1), -- Weapon Supply
 -- Support Unit Captain
 (36132, 4045, 1), -- Resist Full Magic Attack
-(36132, 4194, 6), -- Aura Burn
-(36132, 4196, 6), -- Decrease Speed
-(36132, 4408, 9), -- HP Increase (1/2x)
-(36132, 4409, 16), -- MP Increase (8x)
-(36132, 4410, 11), -- Average P. Atk.
-(36132, 4411, 14), -- Strong M. Atk.
-(36132, 4412, 8), -- Weak P. Def.
-(36132, 4413, 14), -- Strong M. Def.
-(36132, 4414, 3), -- Light Armor Type
-(36132, 4415, 3), -- One-handed Sword
-(36132, 4416, 22), -- Defending Army
-(36132, 5396, 1), -- Spell Force
-(36132, 5398, 1), -- Final Burn
+(36132, 4194, 6), -- BOSS Aura Burn
+(36132, 4196, 6), -- Decreases Speed
+(36132, 4408, 9), -- HP Modifiers
+(36132, 4409, 16), -- MP Modifiers
+(36132, 4410, 11), -- P. Atk. Modifiers
+(36132, 4411, 14), -- M. Atk. Modifiers
+(36132, 4412, 8), -- P. Def. Modifiers
+(36132, 4413, 14), -- M. Def. Modifiers
+(36132, 4414, 3), -- Armor Type
+(36132, 4415, 3), -- Weapon Type
+(36132, 4416, 22), -- Races
+(36132, 5396, 1), -- NPC - Spell Stance
+(36132, 5398, 1), -- NPC - Combination Force
 (36132, 5432, 1), -- Weapon Supply
-(36132, 5457, 1), -- Complete Recovery
+(36132, 5457, 1), -- NPC Full Recover
 -- Wizard
 (36133, 4045, 1), -- Resist Full Magic Attack
-(36133, 4077, 6), -- Aura Burn
-(36133, 4408, 13), -- HP Increase (5x)
-(36133, 4409, 16), -- MP Increase (8x)
-(36133, 4410, 11), -- Average P. Atk.
-(36133, 4411, 16), -- Very Strong M. Atk.
-(36133, 4412, 8), -- Weak P. Def.
-(36133, 4413, 11), -- Average M. Def.
-(36133, 4414, 3), -- Light Armor Type
-(36133, 4415, 3), -- One-handed Sword
-(36133, 4416, 22), -- Defending Army
-(36133, 5053, 6), -- Hydro Blast
-(36133, 5396, 1), -- Spell Force
+(36133, 4077, 6), -- NPC Aura Burn
+(36133, 4408, 13), -- HP Modifiers
+(36133, 4409, 16), -- MP Modifiers
+(36133, 4410, 11), -- P. Atk. Modifiers
+(36133, 4411, 16), -- M. Atk. Modifiers
+(36133, 4412, 8), -- P. Def. Modifiers
+(36133, 4413, 11), -- M. Def. Modifiers
+(36133, 4414, 3), -- Armor Type
+(36133, 4415, 3), -- Weapon Type
+(36133, 4416, 22), -- Races
+(36133, 5053, 6), -- Castle DD Water
+(36133, 5396, 1), -- NPC - Spell Stance
 (36133, 5432, 1), -- Weapon Supply
 -- Healer
 (36134, 4045, 1), -- Resist Full Magic Attack
 (36134, 4115, 1), -- Aden Heal
-(36134, 4408, 15), -- HP Increase (7x)
-(36134, 4409, 16), -- MP Increase (8x)
-(36134, 4410, 11), -- Average P. Atk.
-(36134, 4411, 17), -- Very Strong M. Atk.
-(36134, 4412, 11), -- Average P. Def.
-(36134, 4413, 16), -- Very Strong M. Def.
-(36134, 4414, 3), -- Light Armor Type
-(36134, 4415, 3), -- One-handed Sword
-(36134, 4416, 22), -- Defending Army
+(36134, 4408, 15), -- HP Modifiers
+(36134, 4409, 16), -- MP Modifiers
+(36134, 4410, 11), -- P. Atk. Modifiers
+(36134, 4411, 17), -- M. Atk. Modifiers
+(36134, 4412, 11), -- P. Def. Modifiers
+(36134, 4413, 16), -- M. Def. Modifiers
+(36134, 4414, 3), -- Armor Type
+(36134, 4415, 3), -- Weapon Type
+(36134, 4416, 22), -- Races
 (36134, 5114, 6), -- Hold
 (36134, 5432, 1), -- Weapon Supply
 -- Archer Captain
 (36135, 4045, 1), -- Resist Full Magic Attack
-(36135, 4408, 9), -- HP Increase (1/2x)
-(36135, 4409, 1), -- MP Increase (1x)
-(36135, 4410, 16), -- Very Strong P. Atk.
-(36135, 4411, 11), -- Average M. Atk.
-(36135, 4412, 8), -- Weak P. Def.
-(36135, 4413, 11), -- Average M. Def.
-(36135, 4414, 3), -- Light Armor Type
-(36135, 4415, 9), -- Bows
-(36135, 4416, 22), -- Defending Army
-(36135, 4755, 6), -- Power Shot
+(36135, 4408, 9), -- HP Modifiers
+(36135, 4409, 1), -- MP Modifiers
+(36135, 4410, 16), -- P. Atk. Modifiers
+(36135, 4411, 11), -- M. Atk. Modifiers
+(36135, 4412, 8), -- P. Def. Modifiers
+(36135, 4413, 11), -- M. Def. Modifiers
+(36135, 4414, 3), -- Armor Type
+(36135, 4415, 9), -- Weapon Type
+(36135, 4416, 22), -- Races
+(36135, 4755, 6), -- BOSS Power Shot
 (36135, 5432, 1), -- Weapon Supply
-(36135, 5457, 1), -- Complete Recovery
+(36135, 5457, 1), -- NPC Full Recover
 -- Archer
 (36136, 4045, 1), -- Resist Full Magic Attack
-(36136, 4408, 13), -- HP Increase (5x)
-(36136, 4409, 1), -- MP Increase (1x)
-(36136, 4410, 14), -- Strong P. Atk.
-(36136, 4411, 11), -- Average M. Atk.
-(36136, 4412, 8), -- Weak P. Def.
-(36136, 4413, 11), -- Average M. Def.
-(36136, 4414, 3), -- Light Armor Type
-(36136, 4415, 9), -- Bows
-(36136, 4416, 22), -- Defending Army
-(36136, 5046, 6), -- Power Shot
+(36136, 4408, 13), -- HP Modifiers
+(36136, 4409, 1), -- MP Modifiers
+(36136, 4410, 14), -- P. Atk. Modifiers
+(36136, 4411, 11), -- M. Atk. Modifiers
+(36136, 4412, 8), -- P. Def. Modifiers
+(36136, 4413, 11), -- M. Def. Modifiers
+(36136, 4414, 3), -- Armor Type
+(36136, 4415, 9), -- Weapon Type
+(36136, 4416, 22), -- Races
+(36136, 5046, 6), -- Castle Power Shot
 (36136, 5432, 1), -- Weapon Supply
 -- Ballista
 (36137, 2342, 1), -- Ballista Bomb
 (36137, 4045, 1), -- Resist Full Magic Attack
-(36137, 4408, 16), -- HP Increase (8x)
-(36137, 4409, 1), -- MP Increase (1x)
-(36137, 4410, 11), -- Average P. Atk.
-(36137, 4411, 11), -- Average M. Atk.
-(36137, 4412, 11), -- Average P. Def.
-(36137, 4413, 11), -- Average M. Def.
-(36137, 4414, 2), -- Standard Type
-(36137, 4415, 3), -- One-handed Sword
-(36137, 4416, 22), -- Defending Army
+(36137, 4408, 16), -- HP Modifiers
+(36137, 4409, 1), -- MP Modifiers
+(36137, 4410, 11), -- P. Atk. Modifiers
+(36137, 4411, 11), -- M. Atk. Modifiers
+(36137, 4412, 11), -- P. Def. Modifiers
+(36137, 4413, 11), -- M. Def. Modifiers
+(36137, 4414, 2), -- Armor Type
+(36137, 4415, 3), -- Weapon Type
+(36137, 4416, 22), -- Races
 -- Mercenary Captain
 (36138, 4045, 1), -- Resist Full Magic Attack
-(36138, 4408, 11), -- HP Increase (3x)
-(36138, 4409, 1), -- MP Increase (1x)
-(36138, 4410, 11), -- Average P. Atk.
-(36138, 4411, 11), -- Average M. Atk.
-(36138, 4412, 11), -- Average P. Def.
-(36138, 4413, 11), -- Average M. Def.
-(36138, 4414, 2), -- Standard Type
-(36138, 4415, 3), -- One-handed Sword
-(36138, 4416, 14), -- Humans
+(36138, 4408, 11), -- HP Modifiers
+(36138, 4409, 1), -- MP Modifiers
+(36138, 4410, 11), -- P. Atk. Modifiers
+(36138, 4411, 11), -- M. Atk. Modifiers
+(36138, 4412, 11), -- P. Def. Modifiers
+(36138, 4413, 11), -- M. Def. Modifiers
+(36138, 4414, 2), -- Armor Type
+(36138, 4415, 3), -- Weapon Type
+(36138, 4416, 14), -- Races
 -- Mercenary Private
 (36139, 4045, 1), -- Resist Full Magic Attack
-(36139, 4408, 11), -- HP Increase (3x)
-(36139, 4409, 1), -- MP Increase (1x)
-(36139, 4410, 13), -- Slightly Strong P. Atk.
-(36139, 4411, 11), -- Average M. Atk.
-(36139, 4412, 11), -- Average P. Def.
-(36139, 4413, 11), -- Average M. Def.
-(36139, 4414, 2), -- Standard Type
-(36139, 4415, 11), -- Spears
-(36139, 4416, 17), -- Orcs
+(36139, 4408, 11), -- HP Modifiers
+(36139, 4409, 1), -- MP Modifiers
+(36139, 4410, 13), -- P. Atk. Modifiers
+(36139, 4411, 11), -- M. Atk. Modifiers
+(36139, 4412, 11), -- P. Def. Modifiers
+(36139, 4413, 11), -- M. Def. Modifiers
+(36139, 4414, 2), -- Armor Type
+(36139, 4415, 11), -- Weapon Type
+(36139, 4416, 17), -- Races
 -- Flagpole
 (36140, 4045, 1), -- Resist Full Magic Attack
-(36140, 4408, 1), -- HP Increase (1x)
-(36140, 4409, 1), -- MP Increase (1x)
-(36140, 4410, 11), -- Average P. Atk.
-(36140, 4411, 11), -- Average M. Atk.
-(36140, 4412, 11), -- Average P. Def.
-(36140, 4413, 11), -- Average M. Def.
-(36140, 4414, 2), -- Standard Type
-(36140, 4415, 3), -- One-handed Sword
-(36140, 4416, 19), -- Others
+(36140, 4408, 1), -- HP Modifiers
+(36140, 4409, 1), -- MP Modifiers
+(36140, 4410, 11), -- P. Atk. Modifiers
+(36140, 4411, 11), -- M. Atk. Modifiers
+(36140, 4412, 11), -- P. Def. Modifiers
+(36140, 4413, 11), -- M. Def. Modifiers
+(36140, 4414, 2), -- Armor Type
+(36140, 4415, 3), -- Weapon Type
+(36140, 4416, 19), -- Races
 -- Foreman
 (36141, 4045, 1), -- Resist Full Magic Attack
-(36141, 4408, 1), -- HP Increase (1x)
-(36141, 4409, 1), -- MP Increase (1x)
-(36141, 4410, 11), -- Average P. Atk.
-(36141, 4411, 11), -- Average M. Atk.
-(36141, 4412, 11), -- Average P. Def.
-(36141, 4413, 11), -- Average M. Def.
-(36141, 4414, 2), -- Standard Type
-(36141, 4415, 3), -- One-handed Sword
-(36141, 4416, 14), -- Humans
+(36141, 4408, 1), -- HP Modifiers
+(36141, 4409, 1), -- MP Modifiers
+(36141, 4410, 11), -- P. Atk. Modifiers
+(36141, 4411, 11), -- M. Atk. Modifiers
+(36141, 4412, 11), -- P. Def. Modifiers
+(36141, 4413, 11), -- M. Def. Modifiers
+(36141, 4414, 2), -- Armor Type
+(36141, 4415, 3), -- Weapon Type
+(36141, 4416, 14), -- Races
 -- Suspicious Merchant
 (36142, 4045, 1), -- Resist Full Magic Attack
-(36142, 4408, 1), -- HP Increase (1x)
-(36142, 4409, 1), -- MP Increase (1x)
-(36142, 4410, 11), -- Average P. Atk.
-(36142, 4411, 11), -- Average M. Atk.
-(36142, 4412, 11), -- Average P. Def.
-(36142, 4413, 11), -- Average M. Def.
-(36142, 4414, 2), -- Standard Type
-(36142, 4415, 3), -- One-handed Sword
-(36142, 4416, 17), -- Orcs
+(36142, 4408, 1), -- HP Modifiers
+(36142, 4409, 1), -- MP Modifiers
+(36142, 4410, 11), -- P. Atk. Modifiers
+(36142, 4411, 11), -- M. Atk. Modifiers
+(36142, 4412, 11), -- P. Def. Modifiers
+(36142, 4413, 11), -- M. Def. Modifiers
+(36142, 4414, 2), -- Armor Type
+(36142, 4415, 3), -- Weapon Type
+(36142, 4416, 17), -- Races
 -- Guard Captain
 (36143, 4045, 1), -- Resist Full Magic Attack
-(36143, 4408, 1), -- HP Increase (1x)
-(36143, 4409, 1), -- MP Increase (1x)
-(36143, 4410, 11), -- Average P. Atk.
-(36143, 4411, 11), -- Average M. Atk.
-(36143, 4412, 11), -- Average P. Def.
-(36143, 4413, 11), -- Average M. Def.
-(36143, 4414, 2), -- Standard Type
-(36143, 4415, 3), -- One-handed Sword
-(36143, 4416, 14), -- Humans
+(36143, 4408, 1), -- HP Modifiers
+(36143, 4409, 1), -- MP Modifiers
+(36143, 4410, 11), -- P. Atk. Modifiers
+(36143, 4411, 11), -- M. Atk. Modifiers
+(36143, 4412, 11), -- P. Def. Modifiers
+(36143, 4413, 11), -- M. Def. Modifiers
+(36143, 4414, 2), -- Armor Type
+(36143, 4415, 3), -- Weapon Type
+(36143, 4416, 14), -- Races
 -- Archer Captain
 (36144, 4045, 1), -- Resist Full Magic Attack
-(36144, 4408, 1), -- HP Increase (1x)
-(36144, 4409, 1), -- MP Increase (1x)
-(36144, 4410, 11), -- Average P. Atk.
-(36144, 4411, 11), -- Average M. Atk.
-(36144, 4412, 11), -- Average P. Def.
-(36144, 4413, 11), -- Average M. Def.
-(36144, 4414, 2), -- Standard Type
-(36144, 4415, 9), -- Bows
-(36144, 4416, 15), -- Elves
+(36144, 4408, 1), -- HP Modifiers
+(36144, 4409, 1), -- MP Modifiers
+(36144, 4410, 11), -- P. Atk. Modifiers
+(36144, 4411, 11), -- M. Atk. Modifiers
+(36144, 4412, 11), -- P. Def. Modifiers
+(36144, 4413, 11), -- M. Def. Modifiers
+(36144, 4414, 2), -- Armor Type
+(36144, 4415, 9), -- Weapon Type
+(36144, 4416, 15), -- Races
 -- Support Unit Captain
 (36145, 4045, 1), -- Resist Full Magic Attack
-(36145, 4408, 1), -- HP Increase (1x)
-(36145, 4409, 1), -- MP Increase (1x)
-(36145, 4410, 11), -- Average P. Atk.
-(36145, 4411, 11), -- Average M. Atk.
-(36145, 4412, 11), -- Average P. Def.
-(36145, 4413, 11), -- Average M. Def.
-(36145, 4414, 2), -- Standard Type
-(36145, 4415, 3), -- One-handed Sword
-(36145, 4416, 14), -- Humans
+(36145, 4408, 1), -- HP Modifiers
+(36145, 4409, 1), -- MP Modifiers
+(36145, 4410, 11), -- P. Atk. Modifiers
+(36145, 4411, 11), -- M. Atk. Modifiers
+(36145, 4412, 11), -- P. Def. Modifiers
+(36145, 4413, 11), -- M. Def. Modifiers
+(36145, 4414, 2), -- Armor Type
+(36145, 4415, 3), -- Weapon Type
+(36145, 4416, 14), -- Races
 -- Engineering Manager
 (36146, 4045, 1), -- Resist Full Magic Attack
-(36146, 4408, 1), -- HP Increase (1x)
-(36146, 4409, 1), -- MP Increase (1x)
-(36146, 4410, 11), -- Average P. Atk.
-(36146, 4411, 11), -- Average M. Atk.
-(36146, 4412, 11), -- Average P. Def.
-(36146, 4413, 11), -- Average M. Def.
-(36146, 4414, 2), -- Standard Type
-(36146, 4415, 3), -- One-handed Sword
-(36146, 4416, 18), -- Dwarves
+(36146, 4408, 1), -- HP Modifiers
+(36146, 4409, 1), -- MP Modifiers
+(36146, 4410, 11), -- P. Atk. Modifiers
+(36146, 4411, 11), -- M. Atk. Modifiers
+(36146, 4412, 11), -- P. Def. Modifiers
+(36146, 4413, 11), -- M. Def. Modifiers
+(36146, 4414, 2), -- Armor Type
+(36146, 4415, 3), -- Weapon Type
+(36146, 4416, 18), -- Races
 -- Logistics Officer
 (36147, 4045, 1), -- Resist Full Magic Attack
-(36147, 4408, 1), -- HP Increase (1x)
-(36147, 4409, 1), -- MP Increase (1x)
-(36147, 4410, 11), -- Average P. Atk.
-(36147, 4411, 11), -- Average M. Atk.
-(36147, 4412, 11), -- Average P. Def.
-(36147, 4413, 11), -- Average M. Def.
-(36147, 4414, 2), -- Standard Type
-(36147, 4415, 3), -- One-handed Sword
-(36147, 4416, 18), -- Dwarves
+(36147, 4408, 1), -- HP Modifiers
+(36147, 4409, 1), -- MP Modifiers
+(36147, 4410, 11), -- P. Atk. Modifiers
+(36147, 4411, 11), -- M. Atk. Modifiers
+(36147, 4412, 11), -- P. Def. Modifiers
+(36147, 4413, 11), -- M. Def. Modifiers
+(36147, 4414, 2), -- Armor Type
+(36147, 4415, 3), -- Weapon Type
+(36147, 4416, 18), -- Races
 -- Supply Box
 (36148, 4045, 1), -- Resist Full Magic Attack
-(36148, 4408, 1), -- HP Increase (1x)
-(36148, 4409, 1), -- MP Increase (1x)
-(36148, 4410, 11), -- Average P. Atk.
-(36148, 4411, 11), -- Average M. Atk.
-(36148, 4412, 11), -- Average P. Def.
-(36148, 4413, 11), -- Average M. Def.
-(36148, 4414, 2), -- Standard Type
-(36148, 4415, 3), -- One-handed Sword
-(36148, 4416, 2), -- Magic Creatures
+(36148, 4408, 1), -- HP Modifiers
+(36148, 4409, 1), -- MP Modifiers
+(36148, 4410, 11), -- P. Atk. Modifiers
+(36148, 4411, 11), -- M. Atk. Modifiers
+(36148, 4412, 11), -- P. Def. Modifiers
+(36148, 4413, 11), -- M. Def. Modifiers
+(36148, 4414, 2), -- Armor Type
+(36148, 4415, 3), -- Weapon Type
+(36148, 4416, 2), -- Races
 -- Detention Camp Warden
 (36149, 4045, 1), -- Resist Full Magic Attack
-(36149, 4408, 1), -- HP Increase (1x)
-(36149, 4409, 1), -- MP Increase (1x)
-(36149, 4410, 11), -- Average P. Atk.
-(36149, 4411, 11), -- Average M. Atk.
-(36149, 4412, 11), -- Average P. Def.
-(36149, 4413, 11), -- Average M. Def.
-(36149, 4414, 2), -- Standard Type
-(36149, 4415, 3), -- One-handed Sword
-(36149, 4416, 14), -- Humans
+(36149, 4408, 1), -- HP Modifiers
+(36149, 4409, 1), -- MP Modifiers
+(36149, 4410, 11), -- P. Atk. Modifiers
+(36149, 4411, 11), -- M. Atk. Modifiers
+(36149, 4412, 11), -- P. Def. Modifiers
+(36149, 4413, 11), -- M. Def. Modifiers
+(36149, 4414, 2), -- Armor Type
+(36149, 4415, 3), -- Weapon Type
+(36149, 4416, 14), -- Races
 -- Doorman
 (36150, 4045, 1), -- Resist Full Magic Attack
-(36150, 4408, 1), -- HP Increase (1x)
-(36150, 4409, 1), -- MP Increase (1x)
-(36150, 4410, 11), -- Average P. Atk.
-(36150, 4411, 11), -- Average M. Atk.
-(36150, 4412, 11), -- Average P. Def.
-(36150, 4413, 11), -- Average M. Def.
-(36150, 4414, 2), -- Standard Type
-(36150, 4415, 3), -- One-handed Sword
-(36150, 4416, 14), -- Humans
+(36150, 4408, 1), -- HP Modifiers
+(36150, 4409, 1), -- MP Modifiers
+(36150, 4410, 11), -- P. Atk. Modifiers
+(36150, 4411, 11), -- M. Atk. Modifiers
+(36150, 4412, 11), -- P. Def. Modifiers
+(36150, 4413, 11), -- M. Def. Modifiers
+(36150, 4414, 2), -- Armor Type
+(36150, 4415, 3), -- Weapon Type
+(36150, 4416, 14), -- Races
 -- Doorman
 (36151, 4045, 1), -- Resist Full Magic Attack
-(36151, 4408, 1), -- HP Increase (1x)
-(36151, 4409, 1), -- MP Increase (1x)
-(36151, 4410, 11), -- Average P. Atk.
-(36151, 4411, 11), -- Average M. Atk.
-(36151, 4412, 11), -- Average P. Def.
-(36151, 4413, 11), -- Average M. Def.
-(36151, 4414, 2), -- Standard Type
-(36151, 4415, 3), -- One-handed Sword
-(36151, 4416, 14), -- Humans
+(36151, 4408, 1), -- HP Modifiers
+(36151, 4409, 1), -- MP Modifiers
+(36151, 4410, 11), -- P. Atk. Modifiers
+(36151, 4411, 11), -- M. Atk. Modifiers
+(36151, 4412, 11), -- P. Def. Modifiers
+(36151, 4413, 11), -- M. Def. Modifiers
+(36151, 4414, 2), -- Armor Type
+(36151, 4415, 3), -- Weapon Type
+(36151, 4416, 14), -- Races
 -- Doorman
 (36152, 4045, 1), -- Resist Full Magic Attack
-(36152, 4408, 1), -- HP Increase (1x)
-(36152, 4409, 1), -- MP Increase (1x)
-(36152, 4410, 11), -- Average P. Atk.
-(36152, 4411, 11), -- Average M. Atk.
-(36152, 4412, 11), -- Average P. Def.
-(36152, 4413, 11), -- Average M. Def.
-(36152, 4414, 2), -- Standard Type
-(36152, 4415, 3), -- One-handed Sword
-(36152, 4416, 14), -- Humans
+(36152, 4408, 1), -- HP Modifiers
+(36152, 4409, 1), -- MP Modifiers
+(36152, 4410, 11), -- P. Atk. Modifiers
+(36152, 4411, 11), -- M. Atk. Modifiers
+(36152, 4412, 11), -- P. Def. Modifiers
+(36152, 4413, 11), -- M. Def. Modifiers
+(36152, 4414, 2), -- Armor Type
+(36152, 4415, 3), -- Weapon Type
+(36152, 4416, 14), -- Races
 -- Rebel Commander
 (36153, 4045, 1), -- Resist Full Magic Attack
-(36153, 4178, 7), -- Flame Strike
-(36153, 4195, 7), -- Twister
-(36153, 4408, 10), -- HP Increase (2x)
-(36153, 4409, 1), -- MP Increase (1x)
-(36153, 4410, 11), -- Average P. Atk.
-(36153, 4411, 17), -- Very Strong M. Atk.
-(36153, 4412, 11), -- Average P. Def.
-(36153, 4413, 11), -- Average M. Def.
-(36153, 4414, 2), -- Standard Type
-(36153, 4415, 3), -- One-handed Sword
-(36153, 4416, 16), -- Dark Elves
+(36153, 4178, 7), -- BOSS Flame Strike
+(36153, 4195, 7), -- BOSS Twister
+(36153, 4408, 10), -- HP Modifiers
+(36153, 4409, 1), -- MP Modifiers
+(36153, 4410, 11), -- P. Atk. Modifiers
+(36153, 4411, 17), -- M. Atk. Modifiers
+(36153, 4412, 11), -- P. Def. Modifiers
+(36153, 4413, 11), -- M. Def. Modifiers
+(36153, 4414, 2), -- Armor Type
+(36153, 4415, 3), -- Weapon Type
+(36153, 4416, 16); -- Races
+
+INSERT INTO `npcskills` VALUES
 -- Decorated Rebel Soldier
 (36154, 4045, 1), -- Resist Full Magic Attack
-(36154, 4408, 14), -- HP Increase (6x)
-(36154, 4409, 1), -- MP Increase (1x)
-(36154, 4410, 15), -- Strong P. Atk.
-(36154, 4411, 11), -- Average M. Atk.
-(36154, 4412, 11), -- Average P. Def.
-(36154, 4413, 15), -- Strong M. Def.
-(36154, 4414, 2), -- Standard Type
-(36154, 4415, 1), -- Bare Hands
-(36154, 4416, 9), -- Demons
-(36154, 5065, 7), -- Unholy Strike
+(36154, 4408, 14), -- HP Modifiers
+(36154, 4409, 1), -- MP Modifiers
+(36154, 4410, 15), -- P. Atk. Modifiers
+(36154, 4411, 11), -- M. Atk. Modifiers
+(36154, 4412, 11), -- P. Def. Modifiers
+(36154, 4413, 15), -- M. Def. Modifiers
+(36154, 4414, 2), -- Armor Type
+(36154, 4415, 1), -- Weapon Type
+(36154, 4416, 9), -- Races
+(36154, 5065, 7), -- Castle DD Unholy
 -- Rebel Private
 (36155, 4045, 1), -- Resist Full Magic Attack
-(36155, 4408, 12), -- HP Increase (4x)
-(36155, 4409, 1), -- MP Increase (1x)
-(36155, 4410, 14), -- Strong P. Atk.
-(36155, 4411, 11), -- Average M. Atk.
-(36155, 4412, 11), -- Average P. Def.
-(36155, 4413, 11), -- Average M. Def.
-(36155, 4414, 2), -- Standard Type
-(36155, 4415, 11), -- Spears
-(36155, 4416, 14), -- Humans
+(36155, 4408, 12), -- HP Modifiers
+(36155, 4409, 1), -- MP Modifiers
+(36155, 4410, 14), -- P. Atk. Modifiers
+(36155, 4411, 11), -- M. Atk. Modifiers
+(36155, 4412, 11), -- P. Def. Modifiers
+(36155, 4413, 11), -- M. Def. Modifiers
+(36155, 4414, 2), -- Armor Type
+(36155, 4415, 11), -- Weapon Type
+(36155, 4416, 14), -- Races
 -- Court Guard
 (36156, 4045, 1), -- Resist Full Magic Attack
-(36156, 4408, 12), -- HP Increase (4x)
-(36156, 4409, 1), -- MP Increase (1x)
-(36156, 4410, 11), -- Average P. Atk.
-(36156, 4411, 11), -- Average M. Atk.
-(36156, 4412, 11), -- Average P. Def.
-(36156, 4413, 16), -- Very Strong M. Def.
-(36156, 4414, 2), -- Standard Type
-(36156, 4415, 11), -- Spears
-(36156, 4416, 22), -- Defending Army
+(36156, 4408, 12), -- HP Modifiers
+(36156, 4409, 1), -- MP Modifiers
+(36156, 4410, 11), -- P. Atk. Modifiers
+(36156, 4411, 11), -- M. Atk. Modifiers
+(36156, 4412, 11), -- P. Def. Modifiers
+(36156, 4413, 16), -- M. Def. Modifiers
+(36156, 4414, 2), -- Armor Type
+(36156, 4415, 11), -- Weapon Type
+(36156, 4416, 22), -- Races
 (36156, 5432, 1), -- Weapon Supply
 -- Guard
 (36157, 4045, 1), -- Resist Full Magic Attack
-(36157, 4408, 12), -- HP Increase (4x)
-(36157, 4409, 1), -- MP Increase (1x)
-(36157, 4410, 15), -- Strong P. Atk.
-(36157, 4411, 11), -- Average M. Atk.
-(36157, 4412, 11), -- Average P. Def.
-(36157, 4413, 11), -- Average M. Def.
-(36157, 4414, 3), -- Light Armor Type
-(36157, 4415, 9), -- Bows
-(36157, 4416, 22), -- Defending Army
+(36157, 4408, 12), -- HP Modifiers
+(36157, 4409, 1), -- MP Modifiers
+(36157, 4410, 15), -- P. Atk. Modifiers
+(36157, 4411, 11), -- M. Atk. Modifiers
+(36157, 4412, 11), -- P. Def. Modifiers
+(36157, 4413, 11), -- M. Def. Modifiers
+(36157, 4414, 3), -- Armor Type
+(36157, 4415, 9), -- Weapon Type
+(36157, 4416, 22), -- Races
 (36157, 5432, 1), -- Weapon Supply
 -- Power Control Unit
 (36158, 4045, 1), -- Resist Full Magic Attack
-(36158, 4408, 1), -- HP Increase (1x)
-(36158, 4409, 1), -- MP Increase (1x)
-(36158, 4410, 11), -- Average P. Atk.
-(36158, 4411, 11), -- Average M. Atk.
-(36158, 4412, 11), -- Average P. Def.
-(36158, 4413, 11), -- Average M. Def.
-(36158, 4414, 2), -- Standard Type
-(36158, 4415, 3), -- One-handed Sword
-(36158, 4416, 19), -- Others
+(36158, 4408, 1), -- HP Modifiers
+(36158, 4409, 1), -- MP Modifiers
+(36158, 4410, 11), -- P. Atk. Modifiers
+(36158, 4411, 11), -- M. Atk. Modifiers
+(36158, 4412, 11), -- P. Def. Modifiers
+(36158, 4413, 11), -- M. Def. Modifiers
+(36158, 4414, 2), -- Armor Type
+(36158, 4415, 3), -- Weapon Type
+(36158, 4416, 19), -- Races
 -- Dwarven Gunnery Sergeant
 (36159, 4045, 1), -- Resist Full Magic Attack
-(36159, 4408, 11), -- HP Increase (3x)
-(36159, 4409, 16), -- MP Increase (8x)
-(36159, 4410, 11), -- Average P. Atk.
-(36159, 4411, 17), -- Very Strong M. Atk.
-(36159, 4412, 11), -- Average P. Def.
-(36159, 4413, 8), -- Weak M. Def.
-(36159, 4414, 2), -- Standard Type
-(36159, 4415, 9), -- Bows
-(36159, 4416, 22), -- Defending Army
+(36159, 4408, 11), -- HP Modifiers
+(36159, 4409, 16), -- MP Modifiers
+(36159, 4410, 11), -- P. Atk. Modifiers
+(36159, 4411, 17), -- M. Atk. Modifiers
+(36159, 4412, 11), -- P. Def. Modifiers
+(36159, 4413, 8), -- M. Def. Modifiers
+(36159, 4414, 2), -- Armor Type
+(36159, 4415, 9), -- Weapon Type
+(36159, 4416, 22), -- Races
 (36159, 5432, 1), -- Weapon Supply
-(36159, 5461, 6), -- Power Shot
-(36159, 5468, 6), -- Fire Shot
+(36159, 5461, 6), -- Castle Gunner Shot
+(36159, 5468, 6), -- Castle Gunner Fire
 -- Guard Captain
 (36160, 4045, 1), -- Resist Full Magic Attack
 (36160, 4172, 6), -- Stun
-(36160, 4408, 9), -- HP Increase (1/2x)
-(36160, 4409, 1), -- MP Increase (1x)
-(36160, 4410, 8), -- Weak P. Atk.
-(36160, 4411, 11), -- Average M. Atk.
-(36160, 4412, 16), -- Very Strong P. Def.
-(36160, 4413, 11), -- Average M. Def.
-(36160, 4414, 2), -- Standard Type
-(36160, 4415, 3), -- One-handed Sword
-(36160, 4416, 22), -- Defending Army
+(36160, 4408, 9), -- HP Modifiers
+(36160, 4409, 1), -- MP Modifiers
+(36160, 4410, 8), -- P. Atk. Modifiers
+(36160, 4411, 11), -- M. Atk. Modifiers
+(36160, 4412, 16), -- P. Def. Modifiers
+(36160, 4413, 11), -- M. Def. Modifiers
+(36160, 4414, 2), -- Armor Type
+(36160, 4415, 3), -- Weapon Type
+(36160, 4416, 22), -- Races
 (36160, 4435, 5), -- Greater Resist Stun
 (36160, 4439, 5), -- Greater Resist Hold
 (36160, 4440, 5), -- Greater Resist Paralysis
-(36160, 4608, 1), -- Berserker Spirit
+(36160, 4608, 1), -- NPC Clan Buff - Berserk
 (36160, 5432, 1), -- Weapon Supply
-(36160, 5457, 1), -- Complete Recovery
+(36160, 5457, 1), -- NPC Full Recover
 -- Guard
 (36161, 4045, 1), -- Resist Full Magic Attack
-(36161, 4408, 13), -- HP Increase (5x)
-(36161, 4409, 1), -- MP Increase (1x)
-(36161, 4410, 9), -- Slightly Weak P. Atk.
-(36161, 4411, 11), -- Average M. Atk.
-(36161, 4412, 16), -- Very Strong P. Def.
-(36161, 4413, 11), -- Average M. Def.
-(36161, 4414, 2), -- Standard Type
-(36161, 4415, 3), -- One-handed Sword
-(36161, 4416, 22), -- Defending Army
+(36161, 4408, 13), -- HP Modifiers
+(36161, 4409, 1), -- MP Modifiers
+(36161, 4410, 9), -- P. Atk. Modifiers
+(36161, 4411, 11), -- M. Atk. Modifiers
+(36161, 4412, 16), -- P. Def. Modifiers
+(36161, 4413, 11), -- M. Def. Modifiers
+(36161, 4414, 2), -- Armor Type
+(36161, 4415, 3), -- Weapon Type
+(36161, 4416, 22), -- Races
 (36161, 5112, 6), -- Stun
 (36161, 5432, 1), -- Weapon Supply
 -- Guard
 (36162, 4045, 1), -- Resist Full Magic Attack
-(36162, 4408, 13), -- HP Increase (5x)
-(36162, 4409, 1), -- MP Increase (1x)
-(36162, 4410, 9), -- Slightly Weak P. Atk.
-(36162, 4411, 11), -- Average M. Atk.
-(36162, 4412, 11), -- Average P. Def.
-(36162, 4413, 16), -- Very Strong M. Def.
-(36162, 4414, 2), -- Standard Type
-(36162, 4415, 3), -- One-handed Sword
-(36162, 4416, 22), -- Defending Army
-(36162, 5045, 6), -- Power Strike
+(36162, 4408, 13), -- HP Modifiers
+(36162, 4409, 1), -- MP Modifiers
+(36162, 4410, 9), -- P. Atk. Modifiers
+(36162, 4411, 11), -- M. Atk. Modifiers
+(36162, 4412, 11), -- P. Def. Modifiers
+(36162, 4413, 16), -- M. Def. Modifiers
+(36162, 4414, 2), -- Armor Type
+(36162, 4415, 3), -- Weapon Type
+(36162, 4416, 22), -- Races
+(36162, 5045, 6), -- Castle Power Strike
 (36162, 5432, 1), -- Weapon Supply
 -- Support Unit Captain
 (36163, 4045, 1), -- Resist Full Magic Attack
-(36163, 4194, 6), -- Aura Burn
-(36163, 4196, 6), -- Decrease Speed
-(36163, 4408, 9), -- HP Increase (1/2x)
-(36163, 4409, 16), -- MP Increase (8x)
-(36163, 4410, 11), -- Average P. Atk.
-(36163, 4411, 14), -- Strong M. Atk.
-(36163, 4412, 8), -- Weak P. Def.
-(36163, 4413, 14), -- Strong M. Def.
-(36163, 4414, 3), -- Light Armor Type
-(36163, 4415, 3), -- One-handed Sword
-(36163, 4416, 22), -- Defending Army
-(36163, 5396, 1), -- Spell Force
-(36163, 5398, 1), -- Final Burn
+(36163, 4194, 6), -- BOSS Aura Burn
+(36163, 4196, 6), -- Decreases Speed
+(36163, 4408, 9), -- HP Modifiers
+(36163, 4409, 16), -- MP Modifiers
+(36163, 4410, 11), -- P. Atk. Modifiers
+(36163, 4411, 14), -- M. Atk. Modifiers
+(36163, 4412, 8), -- P. Def. Modifiers
+(36163, 4413, 14), -- M. Def. Modifiers
+(36163, 4414, 3), -- Armor Type
+(36163, 4415, 3), -- Weapon Type
+(36163, 4416, 22), -- Races
+(36163, 5396, 1), -- NPC - Spell Stance
+(36163, 5398, 1), -- NPC - Combination Force
 (36163, 5432, 1), -- Weapon Supply
-(36163, 5457, 1), -- Complete Recovery
+(36163, 5457, 1), -- NPC Full Recover
 -- Wizard
 (36164, 4045, 1), -- Resist Full Magic Attack
-(36164, 4077, 6), -- Aura Burn
-(36164, 4408, 13), -- HP Increase (5x)
-(36164, 4409, 16), -- MP Increase (8x)
-(36164, 4410, 11), -- Average P. Atk.
-(36164, 4411, 16), -- Very Strong M. Atk.
-(36164, 4412, 8), -- Weak P. Def.
-(36164, 4413, 11), -- Average M. Def.
-(36164, 4414, 3), -- Light Armor Type
-(36164, 4415, 3), -- One-handed Sword
-(36164, 4416, 22), -- Defending Army
-(36164, 5053, 6), -- Hydro Blast
-(36164, 5396, 1), -- Spell Force
+(36164, 4077, 6), -- NPC Aura Burn
+(36164, 4408, 13), -- HP Modifiers
+(36164, 4409, 16), -- MP Modifiers
+(36164, 4410, 11), -- P. Atk. Modifiers
+(36164, 4411, 16), -- M. Atk. Modifiers
+(36164, 4412, 8), -- P. Def. Modifiers
+(36164, 4413, 11), -- M. Def. Modifiers
+(36164, 4414, 3), -- Armor Type
+(36164, 4415, 3), -- Weapon Type
+(36164, 4416, 22), -- Races
+(36164, 5053, 6), -- Castle DD Water
+(36164, 5396, 1), -- NPC - Spell Stance
 (36164, 5432, 1), -- Weapon Supply
 -- Healer
 (36165, 4045, 1), -- Resist Full Magic Attack
 (36165, 4115, 1), -- Aden Heal
-(36165, 4408, 15), -- HP Increase (7x)
-(36165, 4409, 16), -- MP Increase (8x)
-(36165, 4410, 11), -- Average P. Atk.
-(36165, 4411, 17), -- Very Strong M. Atk.
-(36165, 4412, 11), -- Average P. Def.
-(36165, 4413, 16), -- Very Strong M. Def.
-(36165, 4414, 3), -- Light Armor Type
-(36165, 4415, 3), -- One-handed Sword
-(36165, 4416, 22), -- Defending Army
+(36165, 4408, 15), -- HP Modifiers
+(36165, 4409, 16), -- MP Modifiers
+(36165, 4410, 11), -- P. Atk. Modifiers
+(36165, 4411, 17), -- M. Atk. Modifiers
+(36165, 4412, 11), -- P. Def. Modifiers
+(36165, 4413, 16), -- M. Def. Modifiers
+(36165, 4414, 3), -- Armor Type
+(36165, 4415, 3), -- Weapon Type
+(36165, 4416, 22), -- Races
 (36165, 5114, 6), -- Hold
 (36165, 5432, 1), -- Weapon Supply
 -- Archer Captain
 (36166, 4045, 1), -- Resist Full Magic Attack
-(36166, 4408, 9), -- HP Increase (1/2x)
-(36166, 4409, 1), -- MP Increase (1x)
-(36166, 4410, 16), -- Very Strong P. Atk.
-(36166, 4411, 11), -- Average M. Atk.
-(36166, 4412, 8), -- Weak P. Def.
-(36166, 4413, 11), -- Average M. Def.
-(36166, 4414, 3), -- Light Armor Type
-(36166, 4415, 9), -- Bows
-(36166, 4416, 22), -- Defending Army
-(36166, 4755, 6), -- Power Shot
+(36166, 4408, 9), -- HP Modifiers
+(36166, 4409, 1), -- MP Modifiers
+(36166, 4410, 16), -- P. Atk. Modifiers
+(36166, 4411, 11), -- M. Atk. Modifiers
+(36166, 4412, 8), -- P. Def. Modifiers
+(36166, 4413, 11), -- M. Def. Modifiers
+(36166, 4414, 3), -- Armor Type
+(36166, 4415, 9), -- Weapon Type
+(36166, 4416, 22), -- Races
+(36166, 4755, 6), -- BOSS Power Shot
 (36166, 5432, 1), -- Weapon Supply
-(36166, 5457, 1), -- Complete Recovery
+(36166, 5457, 1), -- NPC Full Recover
 -- Archer
 (36167, 4045, 1), -- Resist Full Magic Attack
-(36167, 4408, 13), -- HP Increase (5x)
-(36167, 4409, 1), -- MP Increase (1x)
-(36167, 4410, 14), -- Strong P. Atk.
-(36167, 4411, 11), -- Average M. Atk.
-(36167, 4412, 8), -- Weak P. Def.
-(36167, 4413, 11), -- Average M. Def.
-(36167, 4414, 3), -- Light Armor Type
-(36167, 4415, 9), -- Bows
-(36167, 4416, 22), -- Defending Army
-(36167, 5046, 6), -- Power Shot
+(36167, 4408, 13), -- HP Modifiers
+(36167, 4409, 1), -- MP Modifiers
+(36167, 4410, 14), -- P. Atk. Modifiers
+(36167, 4411, 11), -- M. Atk. Modifiers
+(36167, 4412, 8), -- P. Def. Modifiers
+(36167, 4413, 11), -- M. Def. Modifiers
+(36167, 4414, 3), -- Armor Type
+(36167, 4415, 9), -- Weapon Type
+(36167, 4416, 22), -- Races
+(36167, 5046, 6), -- Castle Power Shot
 (36167, 5432, 1), -- Weapon Supply
 -- Ballista
 (36168, 2342, 1), -- Ballista Bomb
 (36168, 4045, 1), -- Resist Full Magic Attack
-(36168, 4408, 16), -- HP Increase (8x)
-(36168, 4409, 1), -- MP Increase (1x)
-(36168, 4410, 11), -- Average P. Atk.
-(36168, 4411, 11), -- Average M. Atk.
-(36168, 4412, 11), -- Average P. Def.
-(36168, 4413, 11), -- Average M. Def.
-(36168, 4414, 2), -- Standard Type
-(36168, 4415, 3), -- One-handed Sword
-(36168, 4416, 22), -- Defending Army
+(36168, 4408, 16), -- HP Modifiers
+(36168, 4409, 1), -- MP Modifiers
+(36168, 4410, 11), -- P. Atk. Modifiers
+(36168, 4411, 11), -- M. Atk. Modifiers
+(36168, 4412, 11), -- P. Def. Modifiers
+(36168, 4413, 11), -- M. Def. Modifiers
+(36168, 4414, 2), -- Armor Type
+(36168, 4415, 3), -- Weapon Type
+(36168, 4416, 22), -- Races
 -- Mercenary Captain
 (36169, 4045, 1), -- Resist Full Magic Attack
-(36169, 4408, 11), -- HP Increase (3x)
-(36169, 4409, 1), -- MP Increase (1x)
-(36169, 4410, 11), -- Average P. Atk.
-(36169, 4411, 11), -- Average M. Atk.
-(36169, 4412, 11), -- Average P. Def.
-(36169, 4413, 11), -- Average M. Def.
-(36169, 4414, 2), -- Standard Type
-(36169, 4415, 3), -- One-handed Sword
-(36169, 4416, 14), -- Humans
+(36169, 4408, 11), -- HP Modifiers
+(36169, 4409, 1), -- MP Modifiers
+(36169, 4410, 11), -- P. Atk. Modifiers
+(36169, 4411, 11), -- M. Atk. Modifiers
+(36169, 4412, 11), -- P. Def. Modifiers
+(36169, 4413, 11), -- M. Def. Modifiers
+(36169, 4414, 2), -- Armor Type
+(36169, 4415, 3), -- Weapon Type
+(36169, 4416, 14), -- Races
 -- Mercenary Private
 (36170, 4045, 1), -- Resist Full Magic Attack
-(36170, 4408, 11), -- HP Increase (3x)
-(36170, 4409, 1), -- MP Increase (1x)
-(36170, 4410, 13), -- Slightly Strong P. Atk.
-(36170, 4411, 11), -- Average M. Atk.
-(36170, 4412, 11), -- Average P. Def.
-(36170, 4413, 11), -- Average M. Def.
-(36170, 4414, 2), -- Standard Type
-(36170, 4415, 11), -- Spears
-(36170, 4416, 17), -- Orcs
+(36170, 4408, 11), -- HP Modifiers
+(36170, 4409, 1), -- MP Modifiers
+(36170, 4410, 13), -- P. Atk. Modifiers
+(36170, 4411, 11), -- M. Atk. Modifiers
+(36170, 4412, 11), -- P. Def. Modifiers
+(36170, 4413, 11), -- M. Def. Modifiers
+(36170, 4414, 2), -- Armor Type
+(36170, 4415, 11), -- Weapon Type
+(36170, 4416, 17), -- Races
 -- Flagpole
 (36171, 4045, 1), -- Resist Full Magic Attack
-(36171, 4408, 1), -- HP Increase (1x)
-(36171, 4409, 1), -- MP Increase (1x)
-(36171, 4410, 11), -- Average P. Atk.
-(36171, 4411, 11), -- Average M. Atk.
-(36171, 4412, 11), -- Average P. Def.
-(36171, 4413, 11), -- Average M. Def.
-(36171, 4414, 2), -- Standard Type
-(36171, 4415, 3), -- One-handed Sword
-(36171, 4416, 19), -- Others
+(36171, 4408, 1), -- HP Modifiers
+(36171, 4409, 1), -- MP Modifiers
+(36171, 4410, 11), -- P. Atk. Modifiers
+(36171, 4411, 11), -- M. Atk. Modifiers
+(36171, 4412, 11), -- P. Def. Modifiers
+(36171, 4413, 11), -- M. Def. Modifiers
+(36171, 4414, 2), -- Armor Type
+(36171, 4415, 3), -- Weapon Type
+(36171, 4416, 19), -- Races
 -- Foreman
 (36172, 4045, 1), -- Resist Full Magic Attack
-(36172, 4408, 1), -- HP Increase (1x)
-(36172, 4409, 1), -- MP Increase (1x)
-(36172, 4410, 11), -- Average P. Atk.
-(36172, 4411, 11), -- Average M. Atk.
-(36172, 4412, 11), -- Average P. Def.
-(36172, 4413, 11), -- Average M. Def.
-(36172, 4414, 2), -- Standard Type
-(36172, 4415, 3), -- One-handed Sword
-(36172, 4416, 14), -- Humans
+(36172, 4408, 1), -- HP Modifiers
+(36172, 4409, 1), -- MP Modifiers
+(36172, 4410, 11), -- P. Atk. Modifiers
+(36172, 4411, 11), -- M. Atk. Modifiers
+(36172, 4412, 11), -- P. Def. Modifiers
+(36172, 4413, 11), -- M. Def. Modifiers
+(36172, 4414, 2), -- Armor Type
+(36172, 4415, 3), -- Weapon Type
+(36172, 4416, 14), -- Races
 -- Suspicious Merchant
 (36173, 4045, 1), -- Resist Full Magic Attack
-(36173, 4408, 1), -- HP Increase (1x)
-(36173, 4409, 1), -- MP Increase (1x)
-(36173, 4410, 11), -- Average P. Atk.
-(36173, 4411, 11), -- Average M. Atk.
-(36173, 4412, 11), -- Average P. Def.
-(36173, 4413, 11), -- Average M. Def.
-(36173, 4414, 2), -- Standard Type
-(36173, 4415, 3), -- One-handed Sword
-(36173, 4416, 17), -- Orcs
+(36173, 4408, 1), -- HP Modifiers
+(36173, 4409, 1), -- MP Modifiers
+(36173, 4410, 11), -- P. Atk. Modifiers
+(36173, 4411, 11), -- M. Atk. Modifiers
+(36173, 4412, 11), -- P. Def. Modifiers
+(36173, 4413, 11), -- M. Def. Modifiers
+(36173, 4414, 2), -- Armor Type
+(36173, 4415, 3), -- Weapon Type
+(36173, 4416, 17), -- Races
 -- Guard Captain
 (36174, 4045, 1), -- Resist Full Magic Attack
-(36174, 4408, 1), -- HP Increase (1x)
-(36174, 4409, 1), -- MP Increase (1x)
-(36174, 4410, 11), -- Average P. Atk.
-(36174, 4411, 11), -- Average M. Atk.
-(36174, 4412, 11), -- Average P. Def.
-(36174, 4413, 11), -- Average M. Def.
-(36174, 4414, 2), -- Standard Type
-(36174, 4415, 3), -- One-handed Sword
-(36174, 4416, 14), -- Humans
+(36174, 4408, 1), -- HP Modifiers
+(36174, 4409, 1), -- MP Modifiers
+(36174, 4410, 11), -- P. Atk. Modifiers
+(36174, 4411, 11), -- M. Atk. Modifiers
+(36174, 4412, 11), -- P. Def. Modifiers
+(36174, 4413, 11), -- M. Def. Modifiers
+(36174, 4414, 2), -- Armor Type
+(36174, 4415, 3), -- Weapon Type
+(36174, 4416, 14), -- Races
 -- Archer Captain
 (36175, 4045, 1), -- Resist Full Magic Attack
-(36175, 4408, 1), -- HP Increase (1x)
-(36175, 4409, 1), -- MP Increase (1x)
-(36175, 4410, 11), -- Average P. Atk.
-(36175, 4411, 11), -- Average M. Atk.
-(36175, 4412, 11), -- Average P. Def.
-(36175, 4413, 11), -- Average M. Def.
-(36175, 4414, 2), -- Standard Type
-(36175, 4415, 9), -- Bows
-(36175, 4416, 15), -- Elves
+(36175, 4408, 1), -- HP Modifiers
+(36175, 4409, 1), -- MP Modifiers
+(36175, 4410, 11), -- P. Atk. Modifiers
+(36175, 4411, 11), -- M. Atk. Modifiers
+(36175, 4412, 11), -- P. Def. Modifiers
+(36175, 4413, 11), -- M. Def. Modifiers
+(36175, 4414, 2), -- Armor Type
+(36175, 4415, 9), -- Weapon Type
+(36175, 4416, 15), -- Races
 -- General
 (36176, 4045, 1), -- Resist Full Magic Attack
-(36176, 4408, 1), -- HP Increase (1x)
-(36176, 4409, 1), -- MP Increase (1x)
-(36176, 4410, 11), -- Average P. Atk.
-(36176, 4411, 11), -- Average M. Atk.
-(36176, 4412, 11), -- Average P. Def.
-(36176, 4413, 11), -- Average M. Def.
-(36176, 4414, 2), -- Standard Type
-(36176, 4415, 19), -- Dual-Sword Weapons
-(36176, 4416, 22), -- Defending Army
+(36176, 4408, 1), -- HP Modifiers
+(36176, 4409, 1), -- MP Modifiers
+(36176, 4410, 11), -- P. Atk. Modifiers
+(36176, 4411, 11), -- M. Atk. Modifiers
+(36176, 4412, 11), -- P. Def. Modifiers
+(36176, 4413, 11), -- M. Def. Modifiers
+(36176, 4414, 2), -- Armor Type
+(36176, 4415, 19), -- Weapon Type
+(36176, 4416, 22), -- Races
 -- Support Unit Captain
 (36177, 4045, 1), -- Resist Full Magic Attack
-(36177, 4408, 1), -- HP Increase (1x)
-(36177, 4409, 1), -- MP Increase (1x)
-(36177, 4410, 11), -- Average P. Atk.
-(36177, 4411, 11), -- Average M. Atk.
-(36177, 4412, 11), -- Average P. Def.
-(36177, 4413, 11), -- Average M. Def.
-(36177, 4414, 2), -- Standard Type
-(36177, 4415, 3), -- One-handed Sword
-(36177, 4416, 14), -- Humans
+(36177, 4408, 1), -- HP Modifiers
+(36177, 4409, 1), -- MP Modifiers
+(36177, 4410, 11), -- P. Atk. Modifiers
+(36177, 4411, 11), -- M. Atk. Modifiers
+(36177, 4412, 11), -- P. Def. Modifiers
+(36177, 4413, 11), -- M. Def. Modifiers
+(36177, 4414, 2), -- Armor Type
+(36177, 4415, 3), -- Weapon Type
+(36177, 4416, 14), -- Races
 -- Engineering Manager
 (36178, 4045, 1), -- Resist Full Magic Attack
-(36178, 4408, 1), -- HP Increase (1x)
-(36178, 4409, 1), -- MP Increase (1x)
-(36178, 4410, 11), -- Average P. Atk.
-(36178, 4411, 11), -- Average M. Atk.
-(36178, 4412, 11), -- Average P. Def.
-(36178, 4413, 11), -- Average M. Def.
-(36178, 4414, 2), -- Standard Type
-(36178, 4415, 3), -- One-handed Sword
-(36178, 4416, 18), -- Dwarves
+(36178, 4408, 1), -- HP Modifiers
+(36178, 4409, 1), -- MP Modifiers
+(36178, 4410, 11), -- P. Atk. Modifiers
+(36178, 4411, 11), -- M. Atk. Modifiers
+(36178, 4412, 11), -- P. Def. Modifiers
+(36178, 4413, 11), -- M. Def. Modifiers
+(36178, 4414, 2), -- Armor Type
+(36178, 4415, 3), -- Weapon Type
+(36178, 4416, 18), -- Races
 -- Logistics Officer
 (36179, 4045, 1), -- Resist Full Magic Attack
-(36179, 4408, 1), -- HP Increase (1x)
-(36179, 4409, 1), -- MP Increase (1x)
-(36179, 4410, 11), -- Average P. Atk.
-(36179, 4411, 11), -- Average M. Atk.
-(36179, 4412, 11), -- Average P. Def.
-(36179, 4413, 11), -- Average M. Def.
-(36179, 4414, 2), -- Standard Type
-(36179, 4415, 3), -- One-handed Sword
-(36179, 4416, 18), -- Dwarves
+(36179, 4408, 1), -- HP Modifiers
+(36179, 4409, 1), -- MP Modifiers
+(36179, 4410, 11), -- P. Atk. Modifiers
+(36179, 4411, 11), -- M. Atk. Modifiers
+(36179, 4412, 11), -- P. Def. Modifiers
+(36179, 4413, 11), -- M. Def. Modifiers
+(36179, 4414, 2), -- Armor Type
+(36179, 4415, 3), -- Weapon Type
+(36179, 4416, 18), -- Races
 -- Supply Box
 (36180, 4045, 1), -- Resist Full Magic Attack
-(36180, 4408, 1), -- HP Increase (1x)
-(36180, 4409, 1), -- MP Increase (1x)
-(36180, 4410, 11), -- Average P. Atk.
-(36180, 4411, 11), -- Average M. Atk.
-(36180, 4412, 11), -- Average P. Def.
-(36180, 4413, 11), -- Average M. Def.
-(36180, 4414, 2), -- Standard Type
-(36180, 4415, 3), -- One-handed Sword
-(36180, 4416, 2), -- Magic Creatures
+(36180, 4408, 1), -- HP Modifiers
+(36180, 4409, 1), -- MP Modifiers
+(36180, 4410, 11), -- P. Atk. Modifiers
+(36180, 4411, 11), -- M. Atk. Modifiers
+(36180, 4412, 11), -- P. Def. Modifiers
+(36180, 4413, 11), -- M. Def. Modifiers
+(36180, 4414, 2), -- Armor Type
+(36180, 4415, 3), -- Weapon Type
+(36180, 4416, 2), -- Races
 -- Detention Camp Warden
 (36181, 4045, 1), -- Resist Full Magic Attack
-(36181, 4408, 1), -- HP Increase (1x)
-(36181, 4409, 1), -- MP Increase (1x)
-(36181, 4410, 11), -- Average P. Atk.
-(36181, 4411, 11), -- Average M. Atk.
-(36181, 4412, 11), -- Average P. Def.
-(36181, 4413, 11), -- Average M. Def.
-(36181, 4414, 2), -- Standard Type
-(36181, 4415, 3), -- One-handed Sword
-(36181, 4416, 14), -- Humans
+(36181, 4408, 1), -- HP Modifiers
+(36181, 4409, 1), -- MP Modifiers
+(36181, 4410, 11), -- P. Atk. Modifiers
+(36181, 4411, 11), -- M. Atk. Modifiers
+(36181, 4412, 11), -- P. Def. Modifiers
+(36181, 4413, 11), -- M. Def. Modifiers
+(36181, 4414, 2), -- Armor Type
+(36181, 4415, 3), -- Weapon Type
+(36181, 4416, 14), -- Races
 -- Doorman
 (36182, 4045, 1), -- Resist Full Magic Attack
-(36182, 4408, 1), -- HP Increase (1x)
-(36182, 4409, 1), -- MP Increase (1x)
-(36182, 4410, 11), -- Average P. Atk.
-(36182, 4411, 11), -- Average M. Atk.
-(36182, 4412, 11), -- Average P. Def.
-(36182, 4413, 11), -- Average M. Def.
-(36182, 4414, 2), -- Standard Type
-(36182, 4415, 3), -- One-handed Sword
-(36182, 4416, 14), -- Humans
+(36182, 4408, 1), -- HP Modifiers
+(36182, 4409, 1), -- MP Modifiers
+(36182, 4410, 11), -- P. Atk. Modifiers
+(36182, 4411, 11), -- M. Atk. Modifiers
+(36182, 4412, 11), -- P. Def. Modifiers
+(36182, 4413, 11), -- M. Def. Modifiers
+(36182, 4414, 2), -- Armor Type
+(36182, 4415, 3), -- Weapon Type
+(36182, 4416, 14), -- Races
 -- Doorman
 (36183, 4045, 1), -- Resist Full Magic Attack
-(36183, 4408, 1), -- HP Increase (1x)
-(36183, 4409, 1), -- MP Increase (1x)
-(36183, 4410, 11), -- Average P. Atk.
-(36183, 4411, 11), -- Average M. Atk.
-(36183, 4412, 11), -- Average P. Def.
-(36183, 4413, 11), -- Average M. Def.
-(36183, 4414, 2), -- Standard Type
-(36183, 4415, 3), -- One-handed Sword
-(36183, 4416, 14), -- Humans
+(36183, 4408, 1), -- HP Modifiers
+(36183, 4409, 1), -- MP Modifiers
+(36183, 4410, 11), -- P. Atk. Modifiers
+(36183, 4411, 11), -- M. Atk. Modifiers
+(36183, 4412, 11), -- P. Def. Modifiers
+(36183, 4413, 11), -- M. Def. Modifiers
+(36183, 4414, 2), -- Armor Type
+(36183, 4415, 3), -- Weapon Type
+(36183, 4416, 14), -- Races
 -- Doorman
 (36184, 4045, 1), -- Resist Full Magic Attack
-(36184, 4408, 1), -- HP Increase (1x)
-(36184, 4409, 1), -- MP Increase (1x)
-(36184, 4410, 11), -- Average P. Atk.
-(36184, 4411, 11), -- Average M. Atk.
-(36184, 4412, 11), -- Average P. Def.
-(36184, 4413, 11), -- Average M. Def.
-(36184, 4414, 2), -- Standard Type
-(36184, 4415, 3), -- One-handed Sword
-(36184, 4416, 14), -- Humans
+(36184, 4408, 1), -- HP Modifiers
+(36184, 4409, 1), -- MP Modifiers
+(36184, 4410, 11), -- P. Atk. Modifiers
+(36184, 4411, 11), -- M. Atk. Modifiers
+(36184, 4412, 11), -- P. Def. Modifiers
+(36184, 4413, 11), -- M. Def. Modifiers
+(36184, 4414, 2), -- Armor Type
+(36184, 4415, 3), -- Weapon Type
+(36184, 4416, 14), -- Races
 -- Rebel Commander
 (36185, 4045, 1), -- Resist Full Magic Attack
-(36185, 4178, 7), -- Flame Strike
-(36185, 4195, 7), -- Twister
-(36185, 4408, 10), -- HP Increase (2x)
-(36185, 4409, 1), -- MP Increase (1x)
-(36185, 4410, 11), -- Average P. Atk.
-(36185, 4411, 17), -- Very Strong M. Atk.
-(36185, 4412, 11), -- Average P. Def.
-(36185, 4413, 11), -- Average M. Def.
-(36185, 4414, 2), -- Standard Type
-(36185, 4415, 3), -- One-handed Sword
-(36185, 4416, 16), -- Dark Elves
+(36185, 4178, 7), -- BOSS Flame Strike
+(36185, 4195, 7), -- BOSS Twister
+(36185, 4408, 10), -- HP Modifiers
+(36185, 4409, 1), -- MP Modifiers
+(36185, 4410, 11), -- P. Atk. Modifiers
+(36185, 4411, 17), -- M. Atk. Modifiers
+(36185, 4412, 11), -- P. Def. Modifiers
+(36185, 4413, 11), -- M. Def. Modifiers
+(36185, 4414, 2), -- Armor Type
+(36185, 4415, 3), -- Weapon Type
+(36185, 4416, 16), -- Races
 -- Decorated Rebel Soldier
 (36186, 4045, 1), -- Resist Full Magic Attack
-(36186, 4408, 14), -- HP Increase (6x)
-(36186, 4409, 1), -- MP Increase (1x)
-(36186, 4410, 15), -- Strong P. Atk.
-(36186, 4411, 11); -- Average M. Atk.
-
-INSERT INTO `npcskills` VALUES
-(36186, 4412, 11), -- Average P. Def.
-(36186, 4413, 15), -- Strong M. Def.
-(36186, 4414, 2), -- Standard Type
-(36186, 4415, 1), -- Bare Hands
-(36186, 4416, 9), -- Demons
-(36186, 5065, 7), -- Unholy Strike
+(36186, 4408, 14), -- HP Modifiers
+(36186, 4409, 1), -- MP Modifiers
+(36186, 4410, 15), -- P. Atk. Modifiers
+(36186, 4411, 11), -- M. Atk. Modifiers
+(36186, 4412, 11), -- P. Def. Modifiers
+(36186, 4413, 15), -- M. Def. Modifiers
+(36186, 4414, 2), -- Armor Type
+(36186, 4415, 1), -- Weapon Type
+(36186, 4416, 9), -- Races
+(36186, 5065, 7), -- Castle DD Unholy
 -- Rebel Private
 (36187, 4045, 1), -- Resist Full Magic Attack
-(36187, 4408, 12), -- HP Increase (4x)
-(36187, 4409, 1), -- MP Increase (1x)
-(36187, 4410, 14), -- Strong P. Atk.
-(36187, 4411, 11), -- Average M. Atk.
-(36187, 4412, 11), -- Average P. Def.
-(36187, 4413, 11), -- Average M. Def.
-(36187, 4414, 2), -- Standard Type
-(36187, 4415, 11), -- Spears
-(36187, 4416, 14), -- Humans
+(36187, 4408, 12), -- HP Modifiers
+(36187, 4409, 1), -- MP Modifiers
+(36187, 4410, 14), -- P. Atk. Modifiers
+(36187, 4411, 11), -- M. Atk. Modifiers
+(36187, 4412, 11), -- P. Def. Modifiers
+(36187, 4413, 11), -- M. Def. Modifiers
+(36187, 4414, 2), -- Armor Type
+(36187, 4415, 11), -- Weapon Type
+(36187, 4416, 14), -- Races
 -- Court Guard
 (36188, 4045, 1), -- Resist Full Magic Attack
-(36188, 4408, 12), -- HP Increase (4x)
-(36188, 4409, 1), -- MP Increase (1x)
-(36188, 4410, 11), -- Average P. Atk.
-(36188, 4411, 11), -- Average M. Atk.
-(36188, 4412, 11), -- Average P. Def.
-(36188, 4413, 16), -- Very Strong M. Def.
-(36188, 4414, 2), -- Standard Type
-(36188, 4415, 11), -- Spears
-(36188, 4416, 22), -- Defending Army
+(36188, 4408, 12), -- HP Modifiers
+(36188, 4409, 1), -- MP Modifiers
+(36188, 4410, 11), -- P. Atk. Modifiers
+(36188, 4411, 11), -- M. Atk. Modifiers
+(36188, 4412, 11), -- P. Def. Modifiers
+(36188, 4413, 16), -- M. Def. Modifiers
+(36188, 4414, 2), -- Armor Type
+(36188, 4415, 11), -- Weapon Type
+(36188, 4416, 22), -- Races
 (36188, 5432, 1), -- Weapon Supply
 -- Guard
 (36189, 4045, 1), -- Resist Full Magic Attack
-(36189, 4408, 12), -- HP Increase (4x)
-(36189, 4409, 1), -- MP Increase (1x)
-(36189, 4410, 15), -- Strong P. Atk.
-(36189, 4411, 11), -- Average M. Atk.
-(36189, 4412, 11), -- Average P. Def.
-(36189, 4413, 11), -- Average M. Def.
-(36189, 4414, 3), -- Light Armor Type
-(36189, 4415, 9), -- Bows
-(36189, 4416, 22), -- Defending Army
+(36189, 4408, 12), -- HP Modifiers
+(36189, 4409, 1), -- MP Modifiers
+(36189, 4410, 15), -- P. Atk. Modifiers
+(36189, 4411, 11), -- M. Atk. Modifiers
+(36189, 4412, 11), -- P. Def. Modifiers
+(36189, 4413, 11), -- M. Def. Modifiers
+(36189, 4414, 3), -- Armor Type
+(36189, 4415, 9), -- Weapon Type
+(36189, 4416, 22), -- Races
 (36189, 5432, 1), -- Weapon Supply
 -- Main Machine
 (36190, 4045, 1), -- Resist Full Magic Attack
-(36190, 4408, 1), -- HP Increase (1x)
-(36190, 4409, 1), -- MP Increase (1x)
-(36190, 4410, 11), -- Average P. Atk.
-(36190, 4411, 11), -- Average M. Atk.
-(36190, 4412, 11), -- Average P. Def.
-(36190, 4413, 11), -- Average M. Def.
-(36190, 4414, 2), -- Standard Type
-(36190, 4415, 3), -- One-handed Sword
-(36190, 4416, 19), -- Others
+(36190, 4408, 1), -- HP Modifiers
+(36190, 4409, 1), -- MP Modifiers
+(36190, 4410, 11), -- P. Atk. Modifiers
+(36190, 4411, 11), -- M. Atk. Modifiers
+(36190, 4412, 11), -- P. Def. Modifiers
+(36190, 4413, 11), -- M. Def. Modifiers
+(36190, 4414, 2), -- Armor Type
+(36190, 4415, 3), -- Weapon Type
+(36190, 4416, 19), -- Races
 -- Backup Power Unit
 (36191, 4045, 1), -- Resist Full Magic Attack
-(36191, 4408, 1), -- HP Increase (1x)
-(36191, 4409, 1), -- MP Increase (1x)
-(36191, 4410, 11), -- Average P. Atk.
-(36191, 4411, 11), -- Average M. Atk.
-(36191, 4412, 11), -- Average P. Def.
-(36191, 4413, 11), -- Average M. Def.
-(36191, 4414, 2), -- Standard Type
-(36191, 4415, 3), -- One-handed Sword
-(36191, 4416, 19), -- Others
+(36191, 4408, 1), -- HP Modifiers
+(36191, 4409, 1), -- MP Modifiers
+(36191, 4410, 11), -- P. Atk. Modifiers
+(36191, 4411, 11), -- M. Atk. Modifiers
+(36191, 4412, 11), -- P. Def. Modifiers
+(36191, 4413, 11), -- M. Def. Modifiers
+(36191, 4414, 2), -- Armor Type
+(36191, 4415, 3), -- Weapon Type
+(36191, 4416, 19), -- Races
 -- Control Unit
 (36192, 4045, 1), -- Resist Full Magic Attack
-(36192, 4408, 1), -- HP Increase (1x)
-(36192, 4409, 1), -- MP Increase (1x)
-(36192, 4410, 11), -- Average P. Atk.
-(36192, 4411, 11), -- Average M. Atk.
-(36192, 4412, 11), -- Average P. Def.
-(36192, 4413, 11), -- Average M. Def.
-(36192, 4414, 2), -- Standard Type
-(36192, 4415, 3), -- One-handed Sword
-(36192, 4416, 2), -- Magic Creatures
+(36192, 4408, 1), -- HP Modifiers
+(36192, 4409, 1), -- MP Modifiers
+(36192, 4410, 11), -- P. Atk. Modifiers
+(36192, 4411, 11), -- M. Atk. Modifiers
+(36192, 4412, 11), -- P. Def. Modifiers
+(36192, 4413, 11), -- M. Def. Modifiers
+(36192, 4414, 2), -- Armor Type
+(36192, 4415, 3), -- Weapon Type
+(36192, 4416, 2), -- Races
 -- Power Control Unit
 (36193, 4045, 1), -- Resist Full Magic Attack
-(36193, 4408, 1), -- HP Increase (1x)
-(36193, 4409, 1), -- MP Increase (1x)
-(36193, 4410, 11), -- Average P. Atk.
-(36193, 4411, 11), -- Average M. Atk.
-(36193, 4412, 11), -- Average P. Def.
-(36193, 4413, 11), -- Average M. Def.
-(36193, 4414, 2), -- Standard Type
-(36193, 4415, 3), -- One-handed Sword
-(36193, 4416, 19), -- Others
+(36193, 4408, 1), -- HP Modifiers
+(36193, 4409, 1), -- MP Modifiers
+(36193, 4410, 11), -- P. Atk. Modifiers
+(36193, 4411, 11), -- M. Atk. Modifiers
+(36193, 4412, 11), -- P. Def. Modifiers
+(36193, 4413, 11), -- M. Def. Modifiers
+(36193, 4414, 2), -- Armor Type
+(36193, 4415, 3), -- Weapon Type
+(36193, 4416, 19), -- Races
 -- Dwarven Gunnery Sergeant
 (36194, 4045, 1), -- Resist Full Magic Attack
-(36194, 4408, 11), -- HP Increase (3x)
-(36194, 4409, 16), -- MP Increase (8x)
-(36194, 4410, 11), -- Average P. Atk.
-(36194, 4411, 17), -- Very Strong M. Atk.
-(36194, 4412, 11), -- Average P. Def.
-(36194, 4413, 8), -- Weak M. Def.
-(36194, 4414, 2), -- Standard Type
-(36194, 4415, 9), -- Bows
-(36194, 4416, 22), -- Defending Army
+(36194, 4408, 11), -- HP Modifiers
+(36194, 4409, 16), -- MP Modifiers
+(36194, 4410, 11), -- P. Atk. Modifiers
+(36194, 4411, 17), -- M. Atk. Modifiers
+(36194, 4412, 11), -- P. Def. Modifiers
+(36194, 4413, 8), -- M. Def. Modifiers
+(36194, 4414, 2), -- Armor Type
+(36194, 4415, 9), -- Weapon Type
+(36194, 4416, 22), -- Races
 (36194, 5432, 1), -- Weapon Supply
-(36194, 5461, 6), -- Power Shot
-(36194, 5468, 6), -- Fire Shot
+(36194, 5461, 6), -- Castle Gunner Shot
+(36194, 5468, 6), -- Castle Gunner Fire
 -- Scout Golem
 (36195, 4045, 1), -- Resist Full Magic Attack
-(36195, 4408, 6), -- HP Very High
-(36195, 4409, 1), -- MP Increase (1x)
-(36195, 4410, 11), -- Average P. Atk.
-(36195, 4411, 11), -- Average M. Atk.
-(36195, 4412, 11), -- Average P. Def.
-(36195, 4413, 16), -- Very Strong M. Def.
-(36195, 4414, 2), -- Standard Type
-(36195, 4415, 3), -- One-handed Sword
-(36195, 4416, 22), -- Defending Army
+(36195, 4408, 6), -- HP Modifiers
+(36195, 4409, 1), -- MP Modifiers
+(36195, 4410, 11), -- P. Atk. Modifiers
+(36195, 4411, 11), -- M. Atk. Modifiers
+(36195, 4412, 11), -- P. Def. Modifiers
+(36195, 4413, 16), -- M. Def. Modifiers
+(36195, 4414, 2), -- Armor Type
+(36195, 4415, 3), -- Weapon Type
+(36195, 4416, 22), -- Races
 -- Guard Captain
 (36196, 4045, 1), -- Resist Full Magic Attack
 (36196, 4172, 6), -- Stun
-(36196, 4408, 9), -- HP Increase (1/2x)
-(36196, 4409, 1), -- MP Increase (1x)
-(36196, 4410, 8), -- Weak P. Atk.
-(36196, 4411, 11), -- Average M. Atk.
-(36196, 4412, 16), -- Very Strong P. Def.
-(36196, 4413, 11), -- Average M. Def.
-(36196, 4414, 2), -- Standard Type
-(36196, 4415, 3), -- One-handed Sword
-(36196, 4416, 22), -- Defending Army
+(36196, 4408, 9), -- HP Modifiers
+(36196, 4409, 1), -- MP Modifiers
+(36196, 4410, 8), -- P. Atk. Modifiers
+(36196, 4411, 11), -- M. Atk. Modifiers
+(36196, 4412, 16), -- P. Def. Modifiers
+(36196, 4413, 11), -- M. Def. Modifiers
+(36196, 4414, 2), -- Armor Type
+(36196, 4415, 3), -- Weapon Type
+(36196, 4416, 22), -- Races
 (36196, 4435, 5), -- Greater Resist Stun
 (36196, 4439, 5), -- Greater Resist Hold
 (36196, 4440, 5), -- Greater Resist Paralysis
-(36196, 4608, 1), -- Berserker Spirit
+(36196, 4608, 1), -- NPC Clan Buff - Berserk
 (36196, 5432, 1), -- Weapon Supply
-(36196, 5457, 1), -- Complete Recovery
+(36196, 5457, 1), -- NPC Full Recover
 -- Guard
 (36197, 4045, 1), -- Resist Full Magic Attack
-(36197, 4408, 13), -- HP Increase (5x)
-(36197, 4409, 1), -- MP Increase (1x)
-(36197, 4410, 9), -- Slightly Weak P. Atk.
-(36197, 4411, 11), -- Average M. Atk.
-(36197, 4412, 16), -- Very Strong P. Def.
-(36197, 4413, 11), -- Average M. Def.
-(36197, 4414, 2), -- Standard Type
-(36197, 4415, 3), -- One-handed Sword
-(36197, 4416, 22), -- Defending Army
+(36197, 4408, 13), -- HP Modifiers
+(36197, 4409, 1), -- MP Modifiers
+(36197, 4410, 9), -- P. Atk. Modifiers
+(36197, 4411, 11), -- M. Atk. Modifiers
+(36197, 4412, 16), -- P. Def. Modifiers
+(36197, 4413, 11), -- M. Def. Modifiers
+(36197, 4414, 2), -- Armor Type
+(36197, 4415, 3), -- Weapon Type
+(36197, 4416, 22), -- Races
 (36197, 5112, 6), -- Stun
 (36197, 5432, 1), -- Weapon Supply
 -- Guard
 (36198, 4045, 1), -- Resist Full Magic Attack
-(36198, 4408, 13), -- HP Increase (5x)
-(36198, 4409, 1), -- MP Increase (1x)
-(36198, 4410, 9), -- Slightly Weak P. Atk.
-(36198, 4411, 11), -- Average M. Atk.
-(36198, 4412, 11), -- Average P. Def.
-(36198, 4413, 16), -- Very Strong M. Def.
-(36198, 4414, 2), -- Standard Type
-(36198, 4415, 3), -- One-handed Sword
-(36198, 4416, 22), -- Defending Army
-(36198, 5045, 6), -- Power Strike
+(36198, 4408, 13), -- HP Modifiers
+(36198, 4409, 1), -- MP Modifiers
+(36198, 4410, 9), -- P. Atk. Modifiers
+(36198, 4411, 11), -- M. Atk. Modifiers
+(36198, 4412, 11), -- P. Def. Modifiers
+(36198, 4413, 16), -- M. Def. Modifiers
+(36198, 4414, 2), -- Armor Type
+(36198, 4415, 3), -- Weapon Type
+(36198, 4416, 22), -- Races
+(36198, 5045, 6), -- Castle Power Strike
 (36198, 5432, 1), -- Weapon Supply
 -- Support Unit Captain
 (36199, 4045, 1), -- Resist Full Magic Attack
-(36199, 4194, 6), -- Aura Burn
-(36199, 4196, 6), -- Decrease Speed
-(36199, 4408, 9), -- HP Increase (1/2x)
-(36199, 4409, 16), -- MP Increase (8x)
-(36199, 4410, 11), -- Average P. Atk.
-(36199, 4411, 14), -- Strong M. Atk.
-(36199, 4412, 8), -- Weak P. Def.
-(36199, 4413, 14), -- Strong M. Def.
-(36199, 4414, 3), -- Light Armor Type
-(36199, 4415, 3), -- One-handed Sword
-(36199, 4416, 22), -- Defending Army
-(36199, 5396, 1), -- Spell Force
-(36199, 5398, 1), -- Final Burn
+(36199, 4194, 6), -- BOSS Aura Burn
+(36199, 4196, 6), -- Decreases Speed
+(36199, 4408, 9), -- HP Modifiers
+(36199, 4409, 16), -- MP Modifiers
+(36199, 4410, 11), -- P. Atk. Modifiers
+(36199, 4411, 14), -- M. Atk. Modifiers
+(36199, 4412, 8), -- P. Def. Modifiers
+(36199, 4413, 14), -- M. Def. Modifiers
+(36199, 4414, 3), -- Armor Type
+(36199, 4415, 3), -- Weapon Type
+(36199, 4416, 22), -- Races
+(36199, 5396, 1), -- NPC - Spell Stance
+(36199, 5398, 1), -- NPC - Combination Force
 (36199, 5432, 1), -- Weapon Supply
-(36199, 5457, 1), -- Complete Recovery
+(36199, 5457, 1), -- NPC Full Recover
 -- Wizard
 (36200, 4045, 1), -- Resist Full Magic Attack
-(36200, 4077, 6), -- Aura Burn
-(36200, 4408, 13), -- HP Increase (5x)
-(36200, 4409, 16), -- MP Increase (8x)
-(36200, 4410, 11), -- Average P. Atk.
-(36200, 4411, 16), -- Very Strong M. Atk.
-(36200, 4412, 8), -- Weak P. Def.
-(36200, 4413, 11), -- Average M. Def.
-(36200, 4414, 3), -- Light Armor Type
-(36200, 4415, 3), -- One-handed Sword
-(36200, 4416, 22), -- Defending Army
-(36200, 5053, 6), -- Hydro Blast
-(36200, 5396, 1), -- Spell Force
+(36200, 4077, 6), -- NPC Aura Burn
+(36200, 4408, 13), -- HP Modifiers
+(36200, 4409, 16), -- MP Modifiers
+(36200, 4410, 11), -- P. Atk. Modifiers
+(36200, 4411, 16), -- M. Atk. Modifiers
+(36200, 4412, 8), -- P. Def. Modifiers
+(36200, 4413, 11), -- M. Def. Modifiers
+(36200, 4414, 3), -- Armor Type
+(36200, 4415, 3), -- Weapon Type
+(36200, 4416, 22), -- Races
+(36200, 5053, 6), -- Castle DD Water
+(36200, 5396, 1), -- NPC - Spell Stance
 (36200, 5432, 1), -- Weapon Supply
 -- Healer
 (36201, 4045, 1), -- Resist Full Magic Attack
 (36201, 4115, 1), -- Aden Heal
-(36201, 4408, 15), -- HP Increase (7x)
-(36201, 4409, 16), -- MP Increase (8x)
-(36201, 4410, 11), -- Average P. Atk.
-(36201, 4411, 17), -- Very Strong M. Atk.
-(36201, 4412, 11), -- Average P. Def.
-(36201, 4413, 16), -- Very Strong M. Def.
-(36201, 4414, 3), -- Light Armor Type
-(36201, 4415, 3), -- One-handed Sword
-(36201, 4416, 22), -- Defending Army
+(36201, 4408, 15), -- HP Modifiers
+(36201, 4409, 16), -- MP Modifiers
+(36201, 4410, 11), -- P. Atk. Modifiers
+(36201, 4411, 17), -- M. Atk. Modifiers
+(36201, 4412, 11), -- P. Def. Modifiers
+(36201, 4413, 16), -- M. Def. Modifiers
+(36201, 4414, 3), -- Armor Type
+(36201, 4415, 3), -- Weapon Type
+(36201, 4416, 22), -- Races
 (36201, 5114, 6), -- Hold
 (36201, 5432, 1), -- Weapon Supply
 -- Archer Captain
 (36202, 4045, 1), -- Resist Full Magic Attack
-(36202, 4408, 9), -- HP Increase (1/2x)
-(36202, 4409, 1), -- MP Increase (1x)
-(36202, 4410, 16), -- Very Strong P. Atk.
-(36202, 4411, 11), -- Average M. Atk.
-(36202, 4412, 8), -- Weak P. Def.
-(36202, 4413, 11), -- Average M. Def.
-(36202, 4414, 3), -- Light Armor Type
-(36202, 4415, 9), -- Bows
-(36202, 4416, 22), -- Defending Army
-(36202, 4755, 6), -- Power Shot
+(36202, 4408, 9), -- HP Modifiers
+(36202, 4409, 1), -- MP Modifiers
+(36202, 4410, 16), -- P. Atk. Modifiers
+(36202, 4411, 11), -- M. Atk. Modifiers
+(36202, 4412, 8), -- P. Def. Modifiers
+(36202, 4413, 11), -- M. Def. Modifiers
+(36202, 4414, 3), -- Armor Type
+(36202, 4415, 9), -- Weapon Type
+(36202, 4416, 22), -- Races
+(36202, 4755, 6), -- BOSS Power Shot
 (36202, 5432, 1), -- Weapon Supply
-(36202, 5457, 1), -- Complete Recovery
+(36202, 5457, 1), -- NPC Full Recover
 -- Archer
 (36203, 4045, 1), -- Resist Full Magic Attack
-(36203, 4408, 13), -- HP Increase (5x)
-(36203, 4409, 1), -- MP Increase (1x)
-(36203, 4410, 14), -- Strong P. Atk.
-(36203, 4411, 11), -- Average M. Atk.
-(36203, 4412, 8), -- Weak P. Def.
-(36203, 4413, 11), -- Average M. Def.
-(36203, 4414, 3), -- Light Armor Type
-(36203, 4415, 9), -- Bows
-(36203, 4416, 22), -- Defending Army
-(36203, 5046, 6), -- Power Shot
+(36203, 4408, 13), -- HP Modifiers
+(36203, 4409, 1), -- MP Modifiers
+(36203, 4410, 14), -- P. Atk. Modifiers
+(36203, 4411, 11), -- M. Atk. Modifiers
+(36203, 4412, 8), -- P. Def. Modifiers
+(36203, 4413, 11), -- M. Def. Modifiers
+(36203, 4414, 3), -- Armor Type
+(36203, 4415, 9), -- Weapon Type
+(36203, 4416, 22), -- Races
+(36203, 5046, 6), -- Castle Power Shot
 (36203, 5432, 1), -- Weapon Supply
 -- General
 (36204, 4045, 1), -- Resist Full Magic Attack
-(36204, 4408, 9), -- HP Increase (1/2x)
-(36204, 4409, 1), -- MP Increase (1x)
-(36204, 4410, 14), -- Strong P. Atk.
-(36204, 4411, 11), -- Average M. Atk.
-(36204, 4412, 11), -- Average P. Def.
-(36204, 4413, 11), -- Average M. Def.
-(36204, 4414, 2), -- Standard Type
-(36204, 4415, 19), -- Dual-Sword Weapons
-(36204, 4416, 22), -- Defending Army
+(36204, 4408, 9), -- HP Modifiers
+(36204, 4409, 1), -- MP Modifiers
+(36204, 4410, 14), -- P. Atk. Modifiers
+(36204, 4411, 11), -- M. Atk. Modifiers
+(36204, 4412, 11), -- P. Def. Modifiers
+(36204, 4413, 11), -- M. Def. Modifiers
+(36204, 4414, 2), -- Armor Type
+(36204, 4415, 19), -- Weapon Type
+(36204, 4416, 22), -- Races
 (36204, 4725, 6), -- Stun
 (36204, 5432, 1), -- Weapon Supply
-(36204, 5457, 1), -- Complete Recovery
+(36204, 5457, 1), -- NPC Full Recover
 -- Minister
 (36205, 4045, 1), -- Resist Full Magic Attack
-(36205, 4408, 9), -- HP Increase (1/2x)
-(36205, 4409, 1), -- MP Increase (1x)
-(36205, 4410, 14), -- Strong P. Atk.
-(36205, 4411, 11), -- Average M. Atk.
-(36205, 4412, 11), -- Average P. Def.
-(36205, 4413, 11), -- Average M. Def.
-(36205, 4414, 2), -- Standard Type
-(36205, 4415, 3), -- One-handed Sword
-(36205, 4416, 22), -- Defending Army
-(36205, 4721, 6), -- Power Strike
+(36205, 4408, 9), -- HP Modifiers
+(36205, 4409, 1), -- MP Modifiers
+(36205, 4410, 14), -- P. Atk. Modifiers
+(36205, 4411, 11), -- M. Atk. Modifiers
+(36205, 4412, 11), -- P. Def. Modifiers
+(36205, 4413, 11), -- M. Def. Modifiers
+(36205, 4414, 2), -- Armor Type
+(36205, 4415, 3), -- Weapon Type
+(36205, 4416, 22), -- Races
+(36205, 4721, 6), -- BOSS Strike
 (36205, 5432, 1), -- Weapon Supply
-(36205, 5457, 1), -- Complete Recovery
+(36205, 5457, 1), -- NPC Full Recover
 -- Ballista
 (36206, 2342, 1), -- Ballista Bomb
 (36206, 4045, 1), -- Resist Full Magic Attack
-(36206, 4408, 16), -- HP Increase (8x)
-(36206, 4409, 1), -- MP Increase (1x)
-(36206, 4410, 11), -- Average P. Atk.
-(36206, 4411, 11), -- Average M. Atk.
-(36206, 4412, 11), -- Average P. Def.
-(36206, 4413, 11), -- Average M. Def.
-(36206, 4414, 2), -- Standard Type
-(36206, 4415, 3), -- One-handed Sword
-(36206, 4416, 22), -- Defending Army
+(36206, 4408, 16), -- HP Modifiers
+(36206, 4409, 1), -- MP Modifiers
+(36206, 4410, 11), -- P. Atk. Modifiers
+(36206, 4411, 11), -- M. Atk. Modifiers
+(36206, 4412, 11), -- P. Def. Modifiers
+(36206, 4413, 11), -- M. Def. Modifiers
+(36206, 4414, 2), -- Armor Type
+(36206, 4415, 3), -- Weapon Type
+(36206, 4416, 22), -- Races
 -- Mercenary Captain
 (36207, 4045, 1), -- Resist Full Magic Attack
-(36207, 4408, 11), -- HP Increase (3x)
-(36207, 4409, 1), -- MP Increase (1x)
-(36207, 4410, 11), -- Average P. Atk.
-(36207, 4411, 11), -- Average M. Atk.
-(36207, 4412, 11), -- Average P. Def.
-(36207, 4413, 11), -- Average M. Def.
-(36207, 4414, 2), -- Standard Type
-(36207, 4415, 3), -- One-handed Sword
-(36207, 4416, 14), -- Humans
+(36207, 4408, 11), -- HP Modifiers
+(36207, 4409, 1), -- MP Modifiers
+(36207, 4410, 11), -- P. Atk. Modifiers
+(36207, 4411, 11), -- M. Atk. Modifiers
+(36207, 4412, 11), -- P. Def. Modifiers
+(36207, 4413, 11), -- M. Def. Modifiers
+(36207, 4414, 2), -- Armor Type
+(36207, 4415, 3), -- Weapon Type
+(36207, 4416, 14), -- Races
 -- Mercenary Private
 (36208, 4045, 1), -- Resist Full Magic Attack
-(36208, 4408, 11), -- HP Increase (3x)
-(36208, 4409, 1), -- MP Increase (1x)
-(36208, 4410, 13), -- Slightly Strong P. Atk.
-(36208, 4411, 11), -- Average M. Atk.
-(36208, 4412, 11), -- Average P. Def.
-(36208, 4413, 11), -- Average M. Def.
-(36208, 4414, 2), -- Standard Type
-(36208, 4415, 11), -- Spears
-(36208, 4416, 17), -- Orcs
+(36208, 4408, 11), -- HP Modifiers
+(36208, 4409, 1), -- MP Modifiers
+(36208, 4410, 13), -- P. Atk. Modifiers
+(36208, 4411, 11), -- M. Atk. Modifiers
+(36208, 4412, 11), -- P. Def. Modifiers
+(36208, 4413, 11), -- M. Def. Modifiers
+(36208, 4414, 2), -- Armor Type
+(36208, 4415, 11), -- Weapon Type
+(36208, 4416, 17), -- Races
 -- Flagpole
 (36209, 4045, 1), -- Resist Full Magic Attack
-(36209, 4408, 1), -- HP Increase (1x)
-(36209, 4409, 1), -- MP Increase (1x)
-(36209, 4410, 11), -- Average P. Atk.
-(36209, 4411, 11), -- Average M. Atk.
-(36209, 4412, 11), -- Average P. Def.
-(36209, 4413, 11), -- Average M. Def.
-(36209, 4414, 2), -- Standard Type
-(36209, 4415, 3), -- One-handed Sword
-(36209, 4416, 19), -- Others
+(36209, 4408, 1), -- HP Modifiers
+(36209, 4409, 1), -- MP Modifiers
+(36209, 4410, 11), -- P. Atk. Modifiers
+(36209, 4411, 11), -- M. Atk. Modifiers
+(36209, 4412, 11), -- P. Def. Modifiers
+(36209, 4413, 11), -- M. Def. Modifiers
+(36209, 4414, 2), -- Armor Type
+(36209, 4415, 3), -- Weapon Type
+(36209, 4416, 19), -- Races
 -- Foreman
 (36210, 4045, 1), -- Resist Full Magic Attack
-(36210, 4408, 1), -- HP Increase (1x)
-(36210, 4409, 1), -- MP Increase (1x)
-(36210, 4410, 11), -- Average P. Atk.
-(36210, 4411, 11), -- Average M. Atk.
-(36210, 4412, 11), -- Average P. Def.
-(36210, 4413, 11), -- Average M. Def.
-(36210, 4414, 2), -- Standard Type
-(36210, 4415, 3), -- One-handed Sword
-(36210, 4416, 14), -- Humans
+(36210, 4408, 1), -- HP Modifiers
+(36210, 4409, 1), -- MP Modifiers
+(36210, 4410, 11), -- P. Atk. Modifiers
+(36210, 4411, 11), -- M. Atk. Modifiers
+(36210, 4412, 11), -- P. Def. Modifiers
+(36210, 4413, 11), -- M. Def. Modifiers
+(36210, 4414, 2), -- Armor Type
+(36210, 4415, 3), -- Weapon Type
+(36210, 4416, 14), -- Races
 -- Suspicious Merchant
 (36211, 4045, 1), -- Resist Full Magic Attack
-(36211, 4408, 1), -- HP Increase (1x)
-(36211, 4409, 1), -- MP Increase (1x)
-(36211, 4410, 11), -- Average P. Atk.
-(36211, 4411, 11), -- Average M. Atk.
-(36211, 4412, 11), -- Average P. Def.
-(36211, 4413, 11), -- Average M. Def.
-(36211, 4414, 2), -- Standard Type
-(36211, 4415, 3), -- One-handed Sword
-(36211, 4416, 17), -- Orcs
+(36211, 4408, 1), -- HP Modifiers
+(36211, 4409, 1), -- MP Modifiers
+(36211, 4410, 11), -- P. Atk. Modifiers
+(36211, 4411, 11), -- M. Atk. Modifiers
+(36211, 4412, 11), -- P. Def. Modifiers
+(36211, 4413, 11), -- M. Def. Modifiers
+(36211, 4414, 2), -- Armor Type
+(36211, 4415, 3), -- Weapon Type
+(36211, 4416, 17), -- Races
 -- Guard Captain
 (36212, 4045, 1), -- Resist Full Magic Attack
-(36212, 4408, 1), -- HP Increase (1x)
-(36212, 4409, 1), -- MP Increase (1x)
-(36212, 4410, 11), -- Average P. Atk.
-(36212, 4411, 11), -- Average M. Atk.
-(36212, 4412, 11), -- Average P. Def.
-(36212, 4413, 11), -- Average M. Def.
-(36212, 4414, 2), -- Standard Type
-(36212, 4415, 3), -- One-handed Sword
-(36212, 4416, 14), -- Humans
+(36212, 4408, 1), -- HP Modifiers
+(36212, 4409, 1), -- MP Modifiers
+(36212, 4410, 11), -- P. Atk. Modifiers
+(36212, 4411, 11), -- M. Atk. Modifiers
+(36212, 4412, 11), -- P. Def. Modifiers
+(36212, 4413, 11), -- M. Def. Modifiers
+(36212, 4414, 2), -- Armor Type
+(36212, 4415, 3), -- Weapon Type
+(36212, 4416, 14), -- Races
 -- Archer Captain
 (36213, 4045, 1), -- Resist Full Magic Attack
-(36213, 4408, 1), -- HP Increase (1x)
-(36213, 4409, 1), -- MP Increase (1x)
-(36213, 4410, 11), -- Average P. Atk.
-(36213, 4411, 11), -- Average M. Atk.
-(36213, 4412, 11), -- Average P. Def.
-(36213, 4413, 11), -- Average M. Def.
-(36213, 4414, 2), -- Standard Type
-(36213, 4415, 9), -- Bows
-(36213, 4416, 15), -- Elves
+(36213, 4408, 1), -- HP Modifiers
+(36213, 4409, 1), -- MP Modifiers
+(36213, 4410, 11), -- P. Atk. Modifiers
+(36213, 4411, 11), -- M. Atk. Modifiers
+(36213, 4412, 11), -- P. Def. Modifiers
+(36213, 4413, 11), -- M. Def. Modifiers
+(36213, 4414, 2), -- Armor Type
+(36213, 4415, 9), -- Weapon Type
+(36213, 4416, 15), -- Races
 -- General
 (36214, 4045, 1), -- Resist Full Magic Attack
-(36214, 4408, 1), -- HP Increase (1x)
-(36214, 4409, 1), -- MP Increase (1x)
-(36214, 4410, 11), -- Average P. Atk.
-(36214, 4411, 11), -- Average M. Atk.
-(36214, 4412, 11), -- Average P. Def.
-(36214, 4413, 11), -- Average M. Def.
-(36214, 4414, 2), -- Standard Type
-(36214, 4415, 19), -- Dual-Sword Weapons
-(36214, 4416, 22), -- Defending Army
+(36214, 4408, 1), -- HP Modifiers
+(36214, 4409, 1), -- MP Modifiers
+(36214, 4410, 11), -- P. Atk. Modifiers
+(36214, 4411, 11), -- M. Atk. Modifiers
+(36214, 4412, 11), -- P. Def. Modifiers
+(36214, 4413, 11), -- M. Def. Modifiers
+(36214, 4414, 2), -- Armor Type
+(36214, 4415, 19), -- Weapon Type
+(36214, 4416, 22), -- Races
 -- Support Unit Captain
 (36215, 4045, 1), -- Resist Full Magic Attack
-(36215, 4408, 1), -- HP Increase (1x)
-(36215, 4409, 1), -- MP Increase (1x)
-(36215, 4410, 11), -- Average P. Atk.
-(36215, 4411, 11), -- Average M. Atk.
-(36215, 4412, 11), -- Average P. Def.
-(36215, 4413, 11), -- Average M. Def.
-(36215, 4414, 2), -- Standard Type
-(36215, 4415, 3), -- One-handed Sword
-(36215, 4416, 14), -- Humans
+(36215, 4408, 1), -- HP Modifiers
+(36215, 4409, 1), -- MP Modifiers
+(36215, 4410, 11), -- P. Atk. Modifiers
+(36215, 4411, 11), -- M. Atk. Modifiers
+(36215, 4412, 11), -- P. Def. Modifiers
+(36215, 4413, 11), -- M. Def. Modifiers
+(36215, 4414, 2), -- Armor Type
+(36215, 4415, 3), -- Weapon Type
+(36215, 4416, 14), -- Races
 -- Engineering Manager
 (36216, 4045, 1), -- Resist Full Magic Attack
-(36216, 4408, 1), -- HP Increase (1x)
-(36216, 4409, 1), -- MP Increase (1x)
-(36216, 4410, 11), -- Average P. Atk.
-(36216, 4411, 11), -- Average M. Atk.
-(36216, 4412, 11), -- Average P. Def.
-(36216, 4413, 11), -- Average M. Def.
-(36216, 4414, 2), -- Standard Type
-(36216, 4415, 3), -- One-handed Sword
-(36216, 4416, 18), -- Dwarves
+(36216, 4408, 1), -- HP Modifiers
+(36216, 4409, 1), -- MP Modifiers
+(36216, 4410, 11), -- P. Atk. Modifiers
+(36216, 4411, 11), -- M. Atk. Modifiers
+(36216, 4412, 11), -- P. Def. Modifiers
+(36216, 4413, 11), -- M. Def. Modifiers
+(36216, 4414, 2), -- Armor Type
+(36216, 4415, 3), -- Weapon Type
+(36216, 4416, 18), -- Races
 -- Logistics Officer
 (36217, 4045, 1), -- Resist Full Magic Attack
-(36217, 4408, 1), -- HP Increase (1x)
-(36217, 4409, 1), -- MP Increase (1x)
-(36217, 4410, 11), -- Average P. Atk.
-(36217, 4411, 11), -- Average M. Atk.
-(36217, 4412, 11), -- Average P. Def.
-(36217, 4413, 11), -- Average M. Def.
-(36217, 4414, 2), -- Standard Type
-(36217, 4415, 3), -- One-handed Sword
-(36217, 4416, 18), -- Dwarves
+(36217, 4408, 1), -- HP Modifiers
+(36217, 4409, 1), -- MP Modifiers
+(36217, 4410, 11), -- P. Atk. Modifiers
+(36217, 4411, 11), -- M. Atk. Modifiers
+(36217, 4412, 11), -- P. Def. Modifiers
+(36217, 4413, 11), -- M. Def. Modifiers
+(36217, 4414, 2), -- Armor Type
+(36217, 4415, 3), -- Weapon Type
+(36217, 4416, 18), -- Races
 -- Supply Box
 (36218, 4045, 1), -- Resist Full Magic Attack
-(36218, 4408, 1), -- HP Increase (1x)
-(36218, 4409, 1), -- MP Increase (1x)
-(36218, 4410, 11), -- Average P. Atk.
-(36218, 4411, 11), -- Average M. Atk.
-(36218, 4412, 11), -- Average P. Def.
-(36218, 4413, 11), -- Average M. Def.
-(36218, 4414, 2), -- Standard Type
-(36218, 4415, 3), -- One-handed Sword
-(36218, 4416, 2), -- Magic Creatures
+(36218, 4408, 1), -- HP Modifiers
+(36218, 4409, 1), -- MP Modifiers
+(36218, 4410, 11), -- P. Atk. Modifiers
+(36218, 4411, 11), -- M. Atk. Modifiers
+(36218, 4412, 11), -- P. Def. Modifiers
+(36218, 4413, 11), -- M. Def. Modifiers
+(36218, 4414, 2), -- Armor Type
+(36218, 4415, 3), -- Weapon Type
+(36218, 4416, 2), -- Races
 -- Detention Camp Warden
 (36219, 4045, 1), -- Resist Full Magic Attack
-(36219, 4408, 1), -- HP Increase (1x)
-(36219, 4409, 1), -- MP Increase (1x)
-(36219, 4410, 11), -- Average P. Atk.
-(36219, 4411, 11), -- Average M. Atk.
-(36219, 4412, 11), -- Average P. Def.
-(36219, 4413, 11), -- Average M. Def.
-(36219, 4414, 2), -- Standard Type
-(36219, 4415, 3), -- One-handed Sword
-(36219, 4416, 14), -- Humans
+(36219, 4408, 1), -- HP Modifiers
+(36219, 4409, 1), -- MP Modifiers
+(36219, 4410, 11), -- P. Atk. Modifiers
+(36219, 4411, 11), -- M. Atk. Modifiers
+(36219, 4412, 11), -- P. Def. Modifiers
+(36219, 4413, 11), -- M. Def. Modifiers
+(36219, 4414, 2), -- Armor Type
+(36219, 4415, 3), -- Weapon Type
+(36219, 4416, 14), -- Races
 -- Doorman
 (36220, 4045, 1), -- Resist Full Magic Attack
-(36220, 4408, 1), -- HP Increase (1x)
-(36220, 4409, 1), -- MP Increase (1x)
-(36220, 4410, 11), -- Average P. Atk.
-(36220, 4411, 11), -- Average M. Atk.
-(36220, 4412, 11), -- Average P. Def.
-(36220, 4413, 11), -- Average M. Def.
-(36220, 4414, 2), -- Standard Type
-(36220, 4415, 3), -- One-handed Sword
-(36220, 4416, 14), -- Humans
+(36220, 4408, 1), -- HP Modifiers
+(36220, 4409, 1), -- MP Modifiers
+(36220, 4410, 11), -- P. Atk. Modifiers
+(36220, 4411, 11), -- M. Atk. Modifiers
+(36220, 4412, 11), -- P. Def. Modifiers
+(36220, 4413, 11), -- M. Def. Modifiers
+(36220, 4414, 2), -- Armor Type
+(36220, 4415, 3), -- Weapon Type
+(36220, 4416, 14), -- Races
 -- Doorman
 (36221, 4045, 1), -- Resist Full Magic Attack
-(36221, 4408, 1), -- HP Increase (1x)
-(36221, 4409, 1), -- MP Increase (1x)
-(36221, 4410, 11), -- Average P. Atk.
-(36221, 4411, 11), -- Average M. Atk.
-(36221, 4412, 11), -- Average P. Def.
-(36221, 4413, 11), -- Average M. Def.
-(36221, 4414, 2), -- Standard Type
-(36221, 4415, 3), -- One-handed Sword
-(36221, 4416, 14), -- Humans
+(36221, 4408, 1), -- HP Modifiers
+(36221, 4409, 1), -- MP Modifiers
+(36221, 4410, 11), -- P. Atk. Modifiers
+(36221, 4411, 11), -- M. Atk. Modifiers
+(36221, 4412, 11), -- P. Def. Modifiers
+(36221, 4413, 11), -- M. Def. Modifiers
+(36221, 4414, 2), -- Armor Type
+(36221, 4415, 3), -- Weapon Type
+(36221, 4416, 14), -- Races
 -- Doorman
 (36222, 4045, 1), -- Resist Full Magic Attack
-(36222, 4408, 1), -- HP Increase (1x)
-(36222, 4409, 1), -- MP Increase (1x)
-(36222, 4410, 11), -- Average P. Atk.
-(36222, 4411, 11), -- Average M. Atk.
-(36222, 4412, 11), -- Average P. Def.
-(36222, 4413, 11), -- Average M. Def.
-(36222, 4414, 2), -- Standard Type
-(36222, 4415, 3), -- One-handed Sword
-(36222, 4416, 14), -- Humans
+(36222, 4408, 1), -- HP Modifiers
+(36222, 4409, 1), -- MP Modifiers
+(36222, 4410, 11), -- P. Atk. Modifiers
+(36222, 4411, 11), -- M. Atk. Modifiers
+(36222, 4412, 11), -- P. Def. Modifiers
+(36222, 4413, 11), -- M. Def. Modifiers
+(36222, 4414, 2), -- Armor Type
+(36222, 4415, 3), -- Weapon Type
+(36222, 4416, 14), -- Races
 -- Rebel Commander
 (36223, 4045, 1), -- Resist Full Magic Attack
-(36223, 4178, 7), -- Flame Strike
-(36223, 4195, 7), -- Twister
-(36223, 4408, 10), -- HP Increase (2x)
-(36223, 4409, 1), -- MP Increase (1x)
-(36223, 4410, 11), -- Average P. Atk.
-(36223, 4411, 17), -- Very Strong M. Atk.
-(36223, 4412, 11), -- Average P. Def.
-(36223, 4413, 11), -- Average M. Def.
-(36223, 4414, 2), -- Standard Type
-(36223, 4415, 3), -- One-handed Sword
-(36223, 4416, 16), -- Dark Elves
+(36223, 4178, 7), -- BOSS Flame Strike
+(36223, 4195, 7), -- BOSS Twister
+(36223, 4408, 10), -- HP Modifiers
+(36223, 4409, 1), -- MP Modifiers
+(36223, 4410, 11), -- P. Atk. Modifiers
+(36223, 4411, 17), -- M. Atk. Modifiers
+(36223, 4412, 11), -- P. Def. Modifiers
+(36223, 4413, 11), -- M. Def. Modifiers
+(36223, 4414, 2), -- Armor Type
+(36223, 4415, 3), -- Weapon Type
+(36223, 4416, 16), -- Races
 -- Decorated Rebel Soldier
 (36224, 4045, 1), -- Resist Full Magic Attack
-(36224, 4408, 14), -- HP Increase (6x)
-(36224, 4409, 1), -- MP Increase (1x)
-(36224, 4410, 15), -- Strong P. Atk.
-(36224, 4411, 11), -- Average M. Atk.
-(36224, 4412, 11), -- Average P. Def.
-(36224, 4413, 15), -- Strong M. Def.
-(36224, 4414, 2), -- Standard Type
-(36224, 4415, 1), -- Bare Hands
-(36224, 4416, 9), -- Demons
-(36224, 5065, 7), -- Unholy Strike
+(36224, 4408, 14), -- HP Modifiers
+(36224, 4409, 1), -- MP Modifiers
+(36224, 4410, 15), -- P. Atk. Modifiers
+(36224, 4411, 11), -- M. Atk. Modifiers
+(36224, 4412, 11), -- P. Def. Modifiers
+(36224, 4413, 15), -- M. Def. Modifiers
+(36224, 4414, 2), -- Armor Type
+(36224, 4415, 1), -- Weapon Type
+(36224, 4416, 9), -- Races
+(36224, 5065, 7), -- Castle DD Unholy
 -- Rebel Private
 (36225, 4045, 1), -- Resist Full Magic Attack
-(36225, 4408, 12), -- HP Increase (4x)
-(36225, 4409, 1), -- MP Increase (1x)
-(36225, 4410, 14), -- Strong P. Atk.
-(36225, 4411, 11), -- Average M. Atk.
-(36225, 4412, 11), -- Average P. Def.
-(36225, 4413, 11), -- Average M. Def.
-(36225, 4414, 2), -- Standard Type
-(36225, 4415, 11), -- Spears
-(36225, 4416, 14), -- Humans
+(36225, 4408, 12), -- HP Modifiers
+(36225, 4409, 1), -- MP Modifiers
+(36225, 4410, 14), -- P. Atk. Modifiers
+(36225, 4411, 11), -- M. Atk. Modifiers
+(36225, 4412, 11), -- P. Def. Modifiers
+(36225, 4413, 11), -- M. Def. Modifiers
+(36225, 4414, 2), -- Armor Type
+(36225, 4415, 11), -- Weapon Type
+(36225, 4416, 14), -- Races
 -- Court Guard
 (36226, 4045, 1), -- Resist Full Magic Attack
-(36226, 4408, 12), -- HP Increase (4x)
-(36226, 4409, 1), -- MP Increase (1x)
-(36226, 4410, 11), -- Average P. Atk.
-(36226, 4411, 11), -- Average M. Atk.
-(36226, 4412, 11), -- Average P. Def.
-(36226, 4413, 16), -- Very Strong M. Def.
-(36226, 4414, 2), -- Standard Type
-(36226, 4415, 11), -- Spears
-(36226, 4416, 22), -- Defending Army
+(36226, 4408, 12), -- HP Modifiers
+(36226, 4409, 1), -- MP Modifiers
+(36226, 4410, 11), -- P. Atk. Modifiers
+(36226, 4411, 11), -- M. Atk. Modifiers
+(36226, 4412, 11), -- P. Def. Modifiers
+(36226, 4413, 16), -- M. Def. Modifiers
+(36226, 4414, 2), -- Armor Type
+(36226, 4415, 11), -- Weapon Type
+(36226, 4416, 22), -- Races
 (36226, 5432, 1), -- Weapon Supply
 -- Guard
 (36227, 4045, 1), -- Resist Full Magic Attack
-(36227, 4408, 12), -- HP Increase (4x)
-(36227, 4409, 1), -- MP Increase (1x)
-(36227, 4410, 15), -- Strong P. Atk.
-(36227, 4411, 11), -- Average M. Atk.
-(36227, 4412, 11), -- Average P. Def.
-(36227, 4413, 11), -- Average M. Def.
-(36227, 4414, 3), -- Light Armor Type
-(36227, 4415, 9), -- Bows
-(36227, 4416, 22), -- Defending Army
+(36227, 4408, 12), -- HP Modifiers
+(36227, 4409, 1), -- MP Modifiers
+(36227, 4410, 15), -- P. Atk. Modifiers
+(36227, 4411, 11), -- M. Atk. Modifiers
+(36227, 4412, 11), -- P. Def. Modifiers
+(36227, 4413, 11), -- M. Def. Modifiers
+(36227, 4414, 3), -- Armor Type
+(36227, 4415, 9), -- Weapon Type
+(36227, 4416, 22), -- Races
 (36227, 5432, 1), -- Weapon Supply
 -- Main Machine
 (36228, 4045, 1), -- Resist Full Magic Attack
-(36228, 4408, 1), -- HP Increase (1x)
-(36228, 4409, 1), -- MP Increase (1x)
-(36228, 4410, 11), -- Average P. Atk.
-(36228, 4411, 11), -- Average M. Atk.
-(36228, 4412, 11), -- Average P. Def.
-(36228, 4413, 11), -- Average M. Def.
-(36228, 4414, 2), -- Standard Type
-(36228, 4415, 3), -- One-handed Sword
-(36228, 4416, 19), -- Others
+(36228, 4408, 1), -- HP Modifiers
+(36228, 4409, 1), -- MP Modifiers
+(36228, 4410, 11), -- P. Atk. Modifiers
+(36228, 4411, 11), -- M. Atk. Modifiers
+(36228, 4412, 11), -- P. Def. Modifiers
+(36228, 4413, 11), -- M. Def. Modifiers
+(36228, 4414, 2), -- Armor Type
+(36228, 4415, 3), -- Weapon Type
+(36228, 4416, 19), -- Races
 -- Backup Power Unit
 (36229, 4045, 1), -- Resist Full Magic Attack
-(36229, 4408, 1), -- HP Increase (1x)
-(36229, 4409, 1), -- MP Increase (1x)
-(36229, 4410, 11), -- Average P. Atk.
-(36229, 4411, 11), -- Average M. Atk.
-(36229, 4412, 11), -- Average P. Def.
-(36229, 4413, 11), -- Average M. Def.
-(36229, 4414, 2), -- Standard Type
-(36229, 4415, 3), -- One-handed Sword
-(36229, 4416, 19), -- Others
+(36229, 4408, 1), -- HP Modifiers
+(36229, 4409, 1), -- MP Modifiers
+(36229, 4410, 11), -- P. Atk. Modifiers
+(36229, 4411, 11), -- M. Atk. Modifiers
+(36229, 4412, 11), -- P. Def. Modifiers
+(36229, 4413, 11), -- M. Def. Modifiers
+(36229, 4414, 2), -- Armor Type
+(36229, 4415, 3), -- Weapon Type
+(36229, 4416, 19), -- Races
 -- Control Unit
 (36230, 4045, 1), -- Resist Full Magic Attack
-(36230, 4408, 1), -- HP Increase (1x)
-(36230, 4409, 1), -- MP Increase (1x)
-(36230, 4410, 11), -- Average P. Atk.
-(36230, 4411, 11), -- Average M. Atk.
-(36230, 4412, 11), -- Average P. Def.
-(36230, 4413, 11), -- Average M. Def.
-(36230, 4414, 2), -- Standard Type
-(36230, 4415, 3), -- One-handed Sword
-(36230, 4416, 2), -- Magic Creatures
+(36230, 4408, 1), -- HP Modifiers
+(36230, 4409, 1), -- MP Modifiers
+(36230, 4410, 11), -- P. Atk. Modifiers
+(36230, 4411, 11), -- M. Atk. Modifiers
+(36230, 4412, 11), -- P. Def. Modifiers
+(36230, 4413, 11), -- M. Def. Modifiers
+(36230, 4414, 2), -- Armor Type
+(36230, 4415, 3), -- Weapon Type
+(36230, 4416, 2), -- Races
 -- Power Control Unit
 (36231, 4045, 1), -- Resist Full Magic Attack
-(36231, 4408, 1), -- HP Increase (1x)
-(36231, 4409, 1), -- MP Increase (1x)
-(36231, 4410, 11), -- Average P. Atk.
-(36231, 4411, 11), -- Average M. Atk.
-(36231, 4412, 11), -- Average P. Def.
-(36231, 4413, 11), -- Average M. Def.
-(36231, 4414, 2), -- Standard Type
-(36231, 4415, 3), -- One-handed Sword
-(36231, 4416, 19), -- Others
+(36231, 4408, 1), -- HP Modifiers
+(36231, 4409, 1), -- MP Modifiers
+(36231, 4410, 11), -- P. Atk. Modifiers
+(36231, 4411, 11), -- M. Atk. Modifiers
+(36231, 4412, 11), -- P. Def. Modifiers
+(36231, 4413, 11), -- M. Def. Modifiers
+(36231, 4414, 2), -- Armor Type
+(36231, 4415, 3), -- Weapon Type
+(36231, 4416, 19), -- Races
 -- Dwarven Gunnery Sergeant
 (36232, 4045, 1), -- Resist Full Magic Attack
-(36232, 4408, 11), -- HP Increase (3x)
-(36232, 4409, 16), -- MP Increase (8x)
-(36232, 4410, 11), -- Average P. Atk.
-(36232, 4411, 17), -- Very Strong M. Atk.
-(36232, 4412, 11), -- Average P. Def.
-(36232, 4413, 8), -- Weak M. Def.
-(36232, 4414, 2), -- Standard Type
-(36232, 4415, 9), -- Bows
-(36232, 4416, 22), -- Defending Army
+(36232, 4408, 11), -- HP Modifiers
+(36232, 4409, 16), -- MP Modifiers
+(36232, 4410, 11), -- P. Atk. Modifiers
+(36232, 4411, 17), -- M. Atk. Modifiers
+(36232, 4412, 11), -- P. Def. Modifiers
+(36232, 4413, 8), -- M. Def. Modifiers
+(36232, 4414, 2), -- Armor Type
+(36232, 4415, 9), -- Weapon Type
+(36232, 4416, 22), -- Races
 (36232, 5432, 1), -- Weapon Supply
-(36232, 5461, 6), -- Power Shot
-(36232, 5468, 6), -- Fire Shot
+(36232, 5461, 6), -- Castle Gunner Shot
+(36232, 5468, 6), -- Castle Gunner Fire
 -- Scout Golem
 (36233, 4045, 1), -- Resist Full Magic Attack
-(36233, 4408, 6), -- HP Very High
-(36233, 4409, 1), -- MP Increase (1x)
-(36233, 4410, 11), -- Average P. Atk.
-(36233, 4411, 11), -- Average M. Atk.
-(36233, 4412, 11), -- Average P. Def.
-(36233, 4413, 16), -- Very Strong M. Def.
-(36233, 4414, 2), -- Standard Type
-(36233, 4415, 3), -- One-handed Sword
-(36233, 4416, 22), -- Defending Army
+(36233, 4408, 6), -- HP Modifiers
+(36233, 4409, 1), -- MP Modifiers
+(36233, 4410, 11), -- P. Atk. Modifiers
+(36233, 4411, 11), -- M. Atk. Modifiers
+(36233, 4412, 11), -- P. Def. Modifiers
+(36233, 4413, 16), -- M. Def. Modifiers
+(36233, 4414, 2), -- Armor Type
+(36233, 4415, 3), -- Weapon Type
+(36233, 4416, 22), -- Races
 -- Guard Captain
 (36234, 4045, 1), -- Resist Full Magic Attack
 (36234, 4172, 6), -- Stun
-(36234, 4408, 9), -- HP Increase (1/2x)
-(36234, 4409, 1), -- MP Increase (1x)
-(36234, 4410, 8), -- Weak P. Atk.
-(36234, 4411, 11), -- Average M. Atk.
-(36234, 4412, 16), -- Very Strong P. Def.
-(36234, 4413, 11), -- Average M. Def.
-(36234, 4414, 2), -- Standard Type
-(36234, 4415, 3), -- One-handed Sword
-(36234, 4416, 22), -- Defending Army
+(36234, 4408, 9), -- HP Modifiers
+(36234, 4409, 1), -- MP Modifiers
+(36234, 4410, 8), -- P. Atk. Modifiers
+(36234, 4411, 11), -- M. Atk. Modifiers
+(36234, 4412, 16), -- P. Def. Modifiers
+(36234, 4413, 11), -- M. Def. Modifiers
+(36234, 4414, 2), -- Armor Type
+(36234, 4415, 3), -- Weapon Type
+(36234, 4416, 22), -- Races
 (36234, 4435, 5), -- Greater Resist Stun
 (36234, 4439, 5), -- Greater Resist Hold
 (36234, 4440, 5), -- Greater Resist Paralysis
-(36234, 4608, 1), -- Berserker Spirit
+(36234, 4608, 1), -- NPC Clan Buff - Berserk
 (36234, 5432, 1), -- Weapon Supply
-(36234, 5457, 1), -- Complete Recovery
+(36234, 5457, 1), -- NPC Full Recover
 -- Guard
 (36235, 4045, 1), -- Resist Full Magic Attack
-(36235, 4408, 13), -- HP Increase (5x)
-(36235, 4409, 1), -- MP Increase (1x)
-(36235, 4410, 9), -- Slightly Weak P. Atk.
-(36235, 4411, 11), -- Average M. Atk.
-(36235, 4412, 16), -- Very Strong P. Def.
-(36235, 4413, 11), -- Average M. Def.
-(36235, 4414, 2), -- Standard Type
-(36235, 4415, 3), -- One-handed Sword
-(36235, 4416, 22), -- Defending Army
+(36235, 4408, 13), -- HP Modifiers
+(36235, 4409, 1), -- MP Modifiers
+(36235, 4410, 9), -- P. Atk. Modifiers
+(36235, 4411, 11), -- M. Atk. Modifiers
+(36235, 4412, 16), -- P. Def. Modifiers
+(36235, 4413, 11), -- M. Def. Modifiers
+(36235, 4414, 2), -- Armor Type
+(36235, 4415, 3), -- Weapon Type
+(36235, 4416, 22), -- Races
 (36235, 5112, 6), -- Stun
 (36235, 5432, 1), -- Weapon Supply
 -- Guard
 (36236, 4045, 1), -- Resist Full Magic Attack
-(36236, 4408, 13), -- HP Increase (5x)
-(36236, 4409, 1), -- MP Increase (1x)
-(36236, 4410, 9), -- Slightly Weak P. Atk.
-(36236, 4411, 11), -- Average M. Atk.
-(36236, 4412, 11), -- Average P. Def.
-(36236, 4413, 16), -- Very Strong M. Def.
-(36236, 4414, 2), -- Standard Type
-(36236, 4415, 3), -- One-handed Sword
-(36236, 4416, 22), -- Defending Army
-(36236, 5045, 6), -- Power Strike
+(36236, 4408, 13), -- HP Modifiers
+(36236, 4409, 1), -- MP Modifiers
+(36236, 4410, 9), -- P. Atk. Modifiers
+(36236, 4411, 11), -- M. Atk. Modifiers
+(36236, 4412, 11), -- P. Def. Modifiers
+(36236, 4413, 16), -- M. Def. Modifiers
+(36236, 4414, 2), -- Armor Type
+(36236, 4415, 3), -- Weapon Type
+(36236, 4416, 22), -- Races
+(36236, 5045, 6), -- Castle Power Strike
 (36236, 5432, 1), -- Weapon Supply
 -- Support Unit Captain
 (36237, 4045, 1), -- Resist Full Magic Attack
-(36237, 4194, 6), -- Aura Burn
-(36237, 4196, 6), -- Decrease Speed
-(36237, 4408, 9), -- HP Increase (1/2x)
-(36237, 4409, 16), -- MP Increase (8x)
-(36237, 4410, 11), -- Average P. Atk.
-(36237, 4411, 14), -- Strong M. Atk.
-(36237, 4412, 8), -- Weak P. Def.
-(36237, 4413, 14), -- Strong M. Def.
-(36237, 4414, 3), -- Light Armor Type
-(36237, 4415, 3), -- One-handed Sword
-(36237, 4416, 22), -- Defending Army
-(36237, 5396, 1), -- Spell Force
-(36237, 5398, 1), -- Final Burn
+(36237, 4194, 6), -- BOSS Aura Burn
+(36237, 4196, 6), -- Decreases Speed
+(36237, 4408, 9), -- HP Modifiers
+(36237, 4409, 16), -- MP Modifiers
+(36237, 4410, 11), -- P. Atk. Modifiers
+(36237, 4411, 14), -- M. Atk. Modifiers
+(36237, 4412, 8), -- P. Def. Modifiers
+(36237, 4413, 14), -- M. Def. Modifiers
+(36237, 4414, 3), -- Armor Type
+(36237, 4415, 3), -- Weapon Type
+(36237, 4416, 22), -- Races
+(36237, 5396, 1), -- NPC - Spell Stance
+(36237, 5398, 1), -- NPC - Combination Force
 (36237, 5432, 1), -- Weapon Supply
-(36237, 5457, 1), -- Complete Recovery
+(36237, 5457, 1), -- NPC Full Recover
 -- Wizard
 (36238, 4045, 1), -- Resist Full Magic Attack
-(36238, 4077, 6), -- Aura Burn
-(36238, 4408, 13), -- HP Increase (5x)
-(36238, 4409, 16), -- MP Increase (8x)
-(36238, 4410, 11), -- Average P. Atk.
-(36238, 4411, 16), -- Very Strong M. Atk.
-(36238, 4412, 8), -- Weak P. Def.
-(36238, 4413, 11), -- Average M. Def.
-(36238, 4414, 3), -- Light Armor Type
-(36238, 4415, 3), -- One-handed Sword
-(36238, 4416, 22), -- Defending Army
-(36238, 5053, 6), -- Hydro Blast
-(36238, 5396, 1), -- Spell Force
+(36238, 4077, 6), -- NPC Aura Burn
+(36238, 4408, 13), -- HP Modifiers
+(36238, 4409, 16), -- MP Modifiers
+(36238, 4410, 11), -- P. Atk. Modifiers
+(36238, 4411, 16), -- M. Atk. Modifiers
+(36238, 4412, 8), -- P. Def. Modifiers
+(36238, 4413, 11), -- M. Def. Modifiers
+(36238, 4414, 3), -- Armor Type
+(36238, 4415, 3), -- Weapon Type
+(36238, 4416, 22), -- Races
+(36238, 5053, 6), -- Castle DD Water
+(36238, 5396, 1), -- NPC - Spell Stance
 (36238, 5432, 1), -- Weapon Supply
 -- Healer
 (36239, 4045, 1), -- Resist Full Magic Attack
 (36239, 4115, 1), -- Aden Heal
-(36239, 4408, 15), -- HP Increase (7x)
-(36239, 4409, 16), -- MP Increase (8x)
-(36239, 4410, 11), -- Average P. Atk.
-(36239, 4411, 17), -- Very Strong M. Atk.
-(36239, 4412, 11), -- Average P. Def.
-(36239, 4413, 16), -- Very Strong M. Def.
-(36239, 4414, 3), -- Light Armor Type
-(36239, 4415, 3), -- One-handed Sword
-(36239, 4416, 22), -- Defending Army
+(36239, 4408, 15), -- HP Modifiers
+(36239, 4409, 16), -- MP Modifiers
+(36239, 4410, 11), -- P. Atk. Modifiers
+(36239, 4411, 17), -- M. Atk. Modifiers
+(36239, 4412, 11), -- P. Def. Modifiers
+(36239, 4413, 16), -- M. Def. Modifiers
+(36239, 4414, 3), -- Armor Type
+(36239, 4415, 3), -- Weapon Type
+(36239, 4416, 22), -- Races
 (36239, 5114, 6), -- Hold
 (36239, 5432, 1), -- Weapon Supply
 -- Archer Captain
 (36240, 4045, 1), -- Resist Full Magic Attack
-(36240, 4408, 9), -- HP Increase (1/2x)
-(36240, 4409, 1), -- MP Increase (1x)
-(36240, 4410, 16), -- Very Strong P. Atk.
-(36240, 4411, 11), -- Average M. Atk.
-(36240, 4412, 8), -- Weak P. Def.
-(36240, 4413, 11), -- Average M. Def.
-(36240, 4414, 3), -- Light Armor Type
-(36240, 4415, 9), -- Bows
-(36240, 4416, 22), -- Defending Army
-(36240, 4755, 6), -- Power Shot
+(36240, 4408, 9), -- HP Modifiers
+(36240, 4409, 1), -- MP Modifiers
+(36240, 4410, 16), -- P. Atk. Modifiers
+(36240, 4411, 11), -- M. Atk. Modifiers
+(36240, 4412, 8), -- P. Def. Modifiers
+(36240, 4413, 11), -- M. Def. Modifiers
+(36240, 4414, 3), -- Armor Type
+(36240, 4415, 9), -- Weapon Type
+(36240, 4416, 22), -- Races
+(36240, 4755, 6), -- BOSS Power Shot
 (36240, 5432, 1), -- Weapon Supply
-(36240, 5457, 1), -- Complete Recovery
+(36240, 5457, 1), -- NPC Full Recover
 -- Archer
 (36241, 4045, 1), -- Resist Full Magic Attack
-(36241, 4408, 13), -- HP Increase (5x)
-(36241, 4409, 1), -- MP Increase (1x)
-(36241, 4410, 14), -- Strong P. Atk.
-(36241, 4411, 11), -- Average M. Atk.
-(36241, 4412, 8), -- Weak P. Def.
-(36241, 4413, 11), -- Average M. Def.
-(36241, 4414, 3), -- Light Armor Type
-(36241, 4415, 9), -- Bows
-(36241, 4416, 22), -- Defending Army
-(36241, 5046, 6), -- Power Shot
+(36241, 4408, 13), -- HP Modifiers
+(36241, 4409, 1), -- MP Modifiers
+(36241, 4410, 14), -- P. Atk. Modifiers
+(36241, 4411, 11), -- M. Atk. Modifiers
+(36241, 4412, 8), -- P. Def. Modifiers
+(36241, 4413, 11), -- M. Def. Modifiers
+(36241, 4414, 3), -- Armor Type
+(36241, 4415, 9), -- Weapon Type
+(36241, 4416, 22), -- Races
+(36241, 5046, 6), -- Castle Power Shot
 (36241, 5432, 1), -- Weapon Supply
 -- General
 (36242, 4045, 1), -- Resist Full Magic Attack
-(36242, 4408, 9), -- HP Increase (1/2x)
-(36242, 4409, 1), -- MP Increase (1x)
-(36242, 4410, 14), -- Strong P. Atk.
-(36242, 4411, 11), -- Average M. Atk.
-(36242, 4412, 11), -- Average P. Def.
-(36242, 4413, 11), -- Average M. Def.
-(36242, 4414, 2), -- Standard Type
-(36242, 4415, 19), -- Dual-Sword Weapons
-(36242, 4416, 22), -- Defending Army
+(36242, 4408, 9), -- HP Modifiers
+(36242, 4409, 1), -- MP Modifiers
+(36242, 4410, 14), -- P. Atk. Modifiers
+(36242, 4411, 11), -- M. Atk. Modifiers
+(36242, 4412, 11), -- P. Def. Modifiers
+(36242, 4413, 11), -- M. Def. Modifiers
+(36242, 4414, 2), -- Armor Type
+(36242, 4415, 19), -- Weapon Type
+(36242, 4416, 22), -- Races
 (36242, 4725, 6), -- Stun
 (36242, 5432, 1), -- Weapon Supply
-(36242, 5457, 1), -- Complete Recovery
+(36242, 5457, 1), -- NPC Full Recover
 -- Minister 
 (36243, 4045, 1), -- Resist Full Magic Attack
-(36243, 4408, 9), -- HP Increase (1/2x)
-(36243, 4409, 1), -- MP Increase (1x)
-(36243, 4410, 14), -- Strong P. Atk.
-(36243, 4411, 11), -- Average M. Atk.
-(36243, 4412, 11), -- Average P. Def.
-(36243, 4413, 11), -- Average M. Def.
-(36243, 4414, 2), -- Standard Type
-(36243, 4415, 3), -- One-handed Sword
-(36243, 4416, 22), -- Defending Army
-(36243, 4721, 6), -- Power Strike
+(36243, 4408, 9), -- HP Modifiers
+(36243, 4409, 1), -- MP Modifiers
+(36243, 4410, 14), -- P. Atk. Modifiers
+(36243, 4411, 11), -- M. Atk. Modifiers
+(36243, 4412, 11), -- P. Def. Modifiers
+(36243, 4413, 11), -- M. Def. Modifiers
+(36243, 4414, 2), -- Armor Type
+(36243, 4415, 3), -- Weapon Type
+(36243, 4416, 22), -- Races
+(36243, 4721, 6), -- BOSS Strike
 (36243, 5432, 1), -- Weapon Supply
-(36243, 5457, 1), -- Complete Recovery
+(36243, 5457, 1), -- NPC Full Recover
 -- Ballista
 (36244, 2342, 1), -- Ballista Bomb
 (36244, 4045, 1), -- Resist Full Magic Attack
-(36244, 4408, 16), -- HP Increase (8x)
-(36244, 4409, 1), -- MP Increase (1x)
-(36244, 4410, 11), -- Average P. Atk.
-(36244, 4411, 11), -- Average M. Atk.
-(36244, 4412, 11), -- Average P. Def.
-(36244, 4413, 11), -- Average M. Def.
-(36244, 4414, 2), -- Standard Type
-(36244, 4415, 3), -- One-handed Sword
-(36244, 4416, 22), -- Defending Army
+(36244, 4408, 16), -- HP Modifiers
+(36244, 4409, 1), -- MP Modifiers
+(36244, 4410, 11), -- P. Atk. Modifiers
+(36244, 4411, 11), -- M. Atk. Modifiers
+(36244, 4412, 11), -- P. Def. Modifiers
+(36244, 4413, 11), -- M. Def. Modifiers
+(36244, 4414, 2), -- Armor Type
+(36244, 4415, 3), -- Weapon Type
+(36244, 4416, 22), -- Races
 -- Mercenary Captain
 (36245, 4045, 1), -- Resist Full Magic Attack
-(36245, 4408, 11), -- HP Increase (3x)
-(36245, 4409, 1), -- MP Increase (1x)
-(36245, 4410, 11), -- Average P. Atk.
-(36245, 4411, 11), -- Average M. Atk.
-(36245, 4412, 11), -- Average P. Def.
-(36245, 4413, 11), -- Average M. Def.
-(36245, 4414, 2), -- Standard Type
-(36245, 4415, 3), -- One-handed Sword
-(36245, 4416, 14), -- Humans
+(36245, 4408, 11), -- HP Modifiers
+(36245, 4409, 1), -- MP Modifiers
+(36245, 4410, 11), -- P. Atk. Modifiers
+(36245, 4411, 11), -- M. Atk. Modifiers
+(36245, 4412, 11), -- P. Def. Modifiers
+(36245, 4413, 11), -- M. Def. Modifiers
+(36245, 4414, 2), -- Armor Type
+(36245, 4415, 3), -- Weapon Type
+(36245, 4416, 14), -- Races
 -- Mercenary Private
 (36246, 4045, 1), -- Resist Full Magic Attack
-(36246, 4408, 11), -- HP Increase (3x)
-(36246, 4409, 1), -- MP Increase (1x)
-(36246, 4410, 13), -- Slightly Strong P. Atk.
-(36246, 4411, 11), -- Average M. Atk.
-(36246, 4412, 11), -- Average P. Def.
-(36246, 4413, 11), -- Average M. Def.
-(36246, 4414, 2), -- Standard Type
-(36246, 4415, 11), -- Spears
-(36246, 4416, 17), -- Orcs
+(36246, 4408, 11), -- HP Modifiers
+(36246, 4409, 1), -- MP Modifiers
+(36246, 4410, 13), -- P. Atk. Modifiers
+(36246, 4411, 11), -- M. Atk. Modifiers
+(36246, 4412, 11), -- P. Def. Modifiers
+(36246, 4413, 11), -- M. Def. Modifiers
+(36246, 4414, 2), -- Armor Type
+(36246, 4415, 11), -- Weapon Type
+(36246, 4416, 17), -- Races
 -- Flagpole
 (36247, 4045, 1), -- Resist Full Magic Attack
-(36247, 4408, 1), -- HP Increase (1x)
-(36247, 4409, 1), -- MP Increase (1x)
-(36247, 4410, 11), -- Average P. Atk.
-(36247, 4411, 11), -- Average M. Atk.
-(36247, 4412, 11), -- Average P. Def.
-(36247, 4413, 11), -- Average M. Def.
-(36247, 4414, 2), -- Standard Type
-(36247, 4415, 3), -- One-handed Sword
-(36247, 4416, 19), -- Others
+(36247, 4408, 1), -- HP Modifiers
+(36247, 4409, 1), -- MP Modifiers
+(36247, 4410, 11), -- P. Atk. Modifiers
+(36247, 4411, 11), -- M. Atk. Modifiers
+(36247, 4412, 11), -- P. Def. Modifiers
+(36247, 4413, 11), -- M. Def. Modifiers
+(36247, 4414, 2), -- Armor Type
+(36247, 4415, 3), -- Weapon Type
+(36247, 4416, 19), -- Races
 -- Foreman
 (36248, 4045, 1), -- Resist Full Magic Attack
-(36248, 4408, 1), -- HP Increase (1x)
-(36248, 4409, 1), -- MP Increase (1x)
-(36248, 4410, 11), -- Average P. Atk.
-(36248, 4411, 11), -- Average M. Atk.
-(36248, 4412, 11), -- Average P. Def.
-(36248, 4413, 11), -- Average M. Def.
-(36248, 4414, 2), -- Standard Type
-(36248, 4415, 3), -- One-handed Sword
-(36248, 4416, 14), -- Humans
+(36248, 4408, 1), -- HP Modifiers
+(36248, 4409, 1), -- MP Modifiers
+(36248, 4410, 11), -- P. Atk. Modifiers
+(36248, 4411, 11), -- M. Atk. Modifiers
+(36248, 4412, 11), -- P. Def. Modifiers
+(36248, 4413, 11), -- M. Def. Modifiers
+(36248, 4414, 2), -- Armor Type
+(36248, 4415, 3), -- Weapon Type
+(36248, 4416, 14), -- Races
 -- Suspicious Merchant
 (36249, 4045, 1), -- Resist Full Magic Attack
-(36249, 4408, 1), -- HP Increase (1x)
-(36249, 4409, 1), -- MP Increase (1x)
-(36249, 4410, 11), -- Average P. Atk.
-(36249, 4411, 11), -- Average M. Atk.
-(36249, 4412, 11), -- Average P. Def.
-(36249, 4413, 11), -- Average M. Def.
-(36249, 4414, 2), -- Standard Type
-(36249, 4415, 3), -- One-handed Sword
-(36249, 4416, 17), -- Orcs
+(36249, 4408, 1), -- HP Modifiers
+(36249, 4409, 1), -- MP Modifiers
+(36249, 4410, 11), -- P. Atk. Modifiers
+(36249, 4411, 11), -- M. Atk. Modifiers
+(36249, 4412, 11), -- P. Def. Modifiers
+(36249, 4413, 11), -- M. Def. Modifiers
+(36249, 4414, 2), -- Armor Type
+(36249, 4415, 3), -- Weapon Type
+(36249, 4416, 17), -- Races
 -- Guard Captain
 (36250, 4045, 1), -- Resist Full Magic Attack
-(36250, 4408, 1), -- HP Increase (1x)
-(36250, 4409, 1), -- MP Increase (1x)
-(36250, 4410, 11), -- Average P. Atk.
-(36250, 4411, 11), -- Average M. Atk.
-(36250, 4412, 11), -- Average P. Def.
-(36250, 4413, 11), -- Average M. Def.
-(36250, 4414, 2), -- Standard Type
-(36250, 4415, 3), -- One-handed Sword
-(36250, 4416, 14), -- Humans
+(36250, 4408, 1), -- HP Modifiers
+(36250, 4409, 1), -- MP Modifiers
+(36250, 4410, 11), -- P. Atk. Modifiers
+(36250, 4411, 11), -- M. Atk. Modifiers
+(36250, 4412, 11), -- P. Def. Modifiers
+(36250, 4413, 11), -- M. Def. Modifiers
+(36250, 4414, 2), -- Armor Type
+(36250, 4415, 3), -- Weapon Type
+(36250, 4416, 14), -- Races
 -- Archer Captain
 (36251, 4045, 1), -- Resist Full Magic Attack
-(36251, 4408, 1), -- HP Increase (1x)
-(36251, 4409, 1), -- MP Increase (1x)
-(36251, 4410, 11), -- Average P. Atk.
-(36251, 4411, 11), -- Average M. Atk.
-(36251, 4412, 11), -- Average P. Def.
-(36251, 4413, 11), -- Average M. Def.
-(36251, 4414, 2), -- Standard Type
-(36251, 4415, 9), -- Bows
-(36251, 4416, 15), -- Elves
+(36251, 4408, 1), -- HP Modifiers
+(36251, 4409, 1), -- MP Modifiers
+(36251, 4410, 11), -- P. Atk. Modifiers
+(36251, 4411, 11), -- M. Atk. Modifiers
+(36251, 4412, 11), -- P. Def. Modifiers
+(36251, 4413, 11), -- M. Def. Modifiers
+(36251, 4414, 2), -- Armor Type
+(36251, 4415, 9), -- Weapon Type
+(36251, 4416, 15), -- Races
 -- General
 (36252, 4045, 1), -- Resist Full Magic Attack
-(36252, 4408, 1), -- HP Increase (1x)
-(36252, 4409, 1), -- MP Increase (1x)
-(36252, 4410, 11), -- Average P. Atk.
-(36252, 4411, 11), -- Average M. Atk.
-(36252, 4412, 11), -- Average P. Def.
-(36252, 4413, 11), -- Average M. Def.
-(36252, 4414, 2), -- Standard Type
-(36252, 4415, 19), -- Dual-Sword Weapons
-(36252, 4416, 22), -- Defending Army
+(36252, 4408, 1), -- HP Modifiers
+(36252, 4409, 1), -- MP Modifiers
+(36252, 4410, 11), -- P. Atk. Modifiers
+(36252, 4411, 11), -- M. Atk. Modifiers
+(36252, 4412, 11), -- P. Def. Modifiers
+(36252, 4413, 11), -- M. Def. Modifiers
+(36252, 4414, 2), -- Armor Type
+(36252, 4415, 19), -- Weapon Type
+(36252, 4416, 22), -- Races
 -- Support Unit Captain
 (36253, 4045, 1), -- Resist Full Magic Attack
-(36253, 4408, 1), -- HP Increase (1x)
-(36253, 4409, 1), -- MP Increase (1x)
-(36253, 4410, 11), -- Average P. Atk.
-(36253, 4411, 11), -- Average M. Atk.
-(36253, 4412, 11), -- Average P. Def.
-(36253, 4413, 11), -- Average M. Def.
-(36253, 4414, 2), -- Standard Type
-(36253, 4415, 3), -- One-handed Sword
-(36253, 4416, 14), -- Humans
+(36253, 4408, 1), -- HP Modifiers
+(36253, 4409, 1), -- MP Modifiers
+(36253, 4410, 11), -- P. Atk. Modifiers
+(36253, 4411, 11), -- M. Atk. Modifiers
+(36253, 4412, 11), -- P. Def. Modifiers
+(36253, 4413, 11), -- M. Def. Modifiers
+(36253, 4414, 2), -- Armor Type
+(36253, 4415, 3), -- Weapon Type
+(36253, 4416, 14), -- Races
 -- Engineering Manager
 (36254, 4045, 1), -- Resist Full Magic Attack
-(36254, 4408, 1), -- HP Increase (1x)
-(36254, 4409, 1), -- MP Increase (1x)
-(36254, 4410, 11), -- Average P. Atk.
-(36254, 4411, 11), -- Average M. Atk.
-(36254, 4412, 11), -- Average P. Def.
-(36254, 4413, 11), -- Average M. Def.
-(36254, 4414, 2), -- Standard Type
-(36254, 4415, 3), -- One-handed Sword
-(36254, 4416, 18), -- Dwarves
+(36254, 4408, 1), -- HP Modifiers
+(36254, 4409, 1), -- MP Modifiers
+(36254, 4410, 11), -- P. Atk. Modifiers
+(36254, 4411, 11), -- M. Atk. Modifiers
+(36254, 4412, 11), -- P. Def. Modifiers
+(36254, 4413, 11), -- M. Def. Modifiers
+(36254, 4414, 2), -- Armor Type
+(36254, 4415, 3), -- Weapon Type
+(36254, 4416, 18), -- Races
 -- Logistics Officer
 (36255, 4045, 1), -- Resist Full Magic Attack
-(36255, 4408, 1), -- HP Increase (1x)
-(36255, 4409, 1), -- MP Increase (1x)
-(36255, 4410, 11), -- Average P. Atk.
-(36255, 4411, 11), -- Average M. Atk.
-(36255, 4412, 11), -- Average P. Def.
-(36255, 4413, 11), -- Average M. Def.
-(36255, 4414, 2), -- Standard Type
-(36255, 4415, 3), -- One-handed Sword
-(36255, 4416, 18), -- Dwarves
+(36255, 4408, 1), -- HP Modifiers
+(36255, 4409, 1), -- MP Modifiers
+(36255, 4410, 11), -- P. Atk. Modifiers
+(36255, 4411, 11), -- M. Atk. Modifiers
+(36255, 4412, 11), -- P. Def. Modifiers
+(36255, 4413, 11), -- M. Def. Modifiers
+(36255, 4414, 2), -- Armor Type
+(36255, 4415, 3), -- Weapon Type
+(36255, 4416, 18), -- Races
 -- Supply Box
 (36256, 4045, 1), -- Resist Full Magic Attack
-(36256, 4408, 1), -- HP Increase (1x)
-(36256, 4409, 1), -- MP Increase (1x)
-(36256, 4410, 11), -- Average P. Atk.
-(36256, 4411, 11), -- Average M. Atk.
-(36256, 4412, 11), -- Average P. Def.
-(36256, 4413, 11), -- Average M. Def.
-(36256, 4414, 2), -- Standard Type
-(36256, 4415, 3), -- One-handed Sword
-(36256, 4416, 2), -- Magic Creatures
+(36256, 4408, 1), -- HP Modifiers
+(36256, 4409, 1), -- MP Modifiers
+(36256, 4410, 11), -- P. Atk. Modifiers
+(36256, 4411, 11), -- M. Atk. Modifiers
+(36256, 4412, 11), -- P. Def. Modifiers
+(36256, 4413, 11), -- M. Def. Modifiers
+(36256, 4414, 2), -- Armor Type
+(36256, 4415, 3), -- Weapon Type
+(36256, 4416, 2), -- Races
 -- Detention Camp Warden
 (36257, 4045, 1), -- Resist Full Magic Attack
-(36257, 4408, 1), -- HP Increase (1x)
-(36257, 4409, 1), -- MP Increase (1x)
-(36257, 4410, 11), -- Average P. Atk.
-(36257, 4411, 11), -- Average M. Atk.
-(36257, 4412, 11), -- Average P. Def.
-(36257, 4413, 11), -- Average M. Def.
-(36257, 4414, 2), -- Standard Type
-(36257, 4415, 3), -- One-handed Sword
-(36257, 4416, 14), -- Humans
+(36257, 4408, 1), -- HP Modifiers
+(36257, 4409, 1), -- MP Modifiers
+(36257, 4410, 11), -- P. Atk. Modifiers
+(36257, 4411, 11), -- M. Atk. Modifiers
+(36257, 4412, 11), -- P. Def. Modifiers
+(36257, 4413, 11), -- M. Def. Modifiers
+(36257, 4414, 2), -- Armor Type
+(36257, 4415, 3), -- Weapon Type
+(36257, 4416, 14), -- Races
 -- Doorman
 (36258, 4045, 1), -- Resist Full Magic Attack
-(36258, 4408, 1), -- HP Increase (1x)
-(36258, 4409, 1), -- MP Increase (1x)
-(36258, 4410, 11), -- Average P. Atk.
-(36258, 4411, 11), -- Average M. Atk.
-(36258, 4412, 11), -- Average P. Def.
-(36258, 4413, 11), -- Average M. Def.
-(36258, 4414, 2), -- Standard Type
-(36258, 4415, 3), -- One-handed Sword
-(36258, 4416, 14), -- Humans
+(36258, 4408, 1), -- HP Modifiers
+(36258, 4409, 1), -- MP Modifiers
+(36258, 4410, 11), -- P. Atk. Modifiers
+(36258, 4411, 11), -- M. Atk. Modifiers
+(36258, 4412, 11), -- P. Def. Modifiers
+(36258, 4413, 11), -- M. Def. Modifiers
+(36258, 4414, 2), -- Armor Type
+(36258, 4415, 3), -- Weapon Type
+(36258, 4416, 14), -- Races
 -- Doorman
 (36259, 4045, 1), -- Resist Full Magic Attack
-(36259, 4408, 1), -- HP Increase (1x)
-(36259, 4409, 1), -- MP Increase (1x)
-(36259, 4410, 11), -- Average P. Atk.
-(36259, 4411, 11), -- Average M. Atk.
-(36259, 4412, 11), -- Average P. Def.
-(36259, 4413, 11), -- Average M. Def.
-(36259, 4414, 2), -- Standard Type
-(36259, 4415, 3), -- One-handed Sword
-(36259, 4416, 14), -- Humans
+(36259, 4408, 1), -- HP Modifiers
+(36259, 4409, 1), -- MP Modifiers
+(36259, 4410, 11), -- P. Atk. Modifiers
+(36259, 4411, 11), -- M. Atk. Modifiers
+(36259, 4412, 11), -- P. Def. Modifiers
+(36259, 4413, 11), -- M. Def. Modifiers
+(36259, 4414, 2), -- Armor Type
+(36259, 4415, 3), -- Weapon Type
+(36259, 4416, 14), -- Races
 -- Doorman
 (36260, 4045, 1), -- Resist Full Magic Attack
-(36260, 4408, 1), -- HP Increase (1x)
-(36260, 4409, 1), -- MP Increase (1x)
-(36260, 4410, 11), -- Average P. Atk.
-(36260, 4411, 11), -- Average M. Atk.
-(36260, 4412, 11), -- Average P. Def.
-(36260, 4413, 11), -- Average M. Def.
-(36260, 4414, 2), -- Standard Type
-(36260, 4415, 3), -- One-handed Sword
-(36260, 4416, 14), -- Humans
+(36260, 4408, 1), -- HP Modifiers
+(36260, 4409, 1), -- MP Modifiers
+(36260, 4410, 11), -- P. Atk. Modifiers
+(36260, 4411, 11), -- M. Atk. Modifiers
+(36260, 4412, 11), -- P. Def. Modifiers
+(36260, 4413, 11), -- M. Def. Modifiers
+(36260, 4414, 2), -- Armor Type
+(36260, 4415, 3), -- Weapon Type
+(36260, 4416, 14), -- Races
 -- Rebel Commander
 (36261, 4045, 1), -- Resist Full Magic Attack
-(36261, 4178, 7), -- Flame Strike
-(36261, 4195, 7), -- Twister
-(36261, 4408, 10), -- HP Increase (2x)
-(36261, 4409, 1), -- MP Increase (1x)
-(36261, 4410, 11), -- Average P. Atk.
-(36261, 4411, 17), -- Very Strong M. Atk.
-(36261, 4412, 11), -- Average P. Def.
-(36261, 4413, 11), -- Average M. Def.
-(36261, 4414, 2), -- Standard Type
-(36261, 4415, 3), -- One-handed Sword
-(36261, 4416, 16), -- Dark Elves
+(36261, 4178, 7), -- BOSS Flame Strike
+(36261, 4195, 7), -- BOSS Twister
+(36261, 4408, 10), -- HP Modifiers
+(36261, 4409, 1), -- MP Modifiers
+(36261, 4410, 11), -- P. Atk. Modifiers
+(36261, 4411, 17), -- M. Atk. Modifiers
+(36261, 4412, 11), -- P. Def. Modifiers
+(36261, 4413, 11), -- M. Def. Modifiers
+(36261, 4414, 2), -- Armor Type
+(36261, 4415, 3), -- Weapon Type
+(36261, 4416, 16), -- Races
 -- Decorated Rebel Soldier
 (36262, 4045, 1), -- Resist Full Magic Attack
-(36262, 4408, 14), -- HP Increase (6x)
-(36262, 4409, 1), -- MP Increase (1x)
-(36262, 4410, 15), -- Strong P. Atk.
-(36262, 4411, 11), -- Average M. Atk.
-(36262, 4412, 11), -- Average P. Def.
-(36262, 4413, 15), -- Strong M. Def.
-(36262, 4414, 2), -- Standard Type
-(36262, 4415, 1), -- Bare Hands
-(36262, 4416, 9), -- Demons
-(36262, 5065, 7), -- Unholy Strike
+(36262, 4408, 14), -- HP Modifiers
+(36262, 4409, 1), -- MP Modifiers
+(36262, 4410, 15), -- P. Atk. Modifiers
+(36262, 4411, 11), -- M. Atk. Modifiers
+(36262, 4412, 11), -- P. Def. Modifiers
+(36262, 4413, 15), -- M. Def. Modifiers
+(36262, 4414, 2), -- Armor Type
+(36262, 4415, 1), -- Weapon Type
+(36262, 4416, 9), -- Races
+(36262, 5065, 7), -- Castle DD Unholy
 -- Rebel Private
 (36263, 4045, 1), -- Resist Full Magic Attack
-(36263, 4408, 12), -- HP Increase (4x)
-(36263, 4409, 1), -- MP Increase (1x)
-(36263, 4410, 14), -- Strong P. Atk.
-(36263, 4411, 11), -- Average M. Atk.
-(36263, 4412, 11), -- Average P. Def.
-(36263, 4413, 11), -- Average M. Def.
-(36263, 4414, 2), -- Standard Type
-(36263, 4415, 11), -- Spears
-(36263, 4416, 14), -- Humans
+(36263, 4408, 12), -- HP Modifiers
+(36263, 4409, 1), -- MP Modifiers
+(36263, 4410, 14), -- P. Atk. Modifiers
+(36263, 4411, 11), -- M. Atk. Modifiers
+(36263, 4412, 11), -- P. Def. Modifiers
+(36263, 4413, 11), -- M. Def. Modifiers
+(36263, 4414, 2), -- Armor Type
+(36263, 4415, 11), -- Weapon Type
+(36263, 4416, 14), -- Races
 -- Court Guard
 (36264, 4045, 1), -- Resist Full Magic Attack
-(36264, 4408, 12), -- HP Increase (4x)
-(36264, 4409, 1), -- MP Increase (1x)
-(36264, 4410, 11), -- Average P. Atk.
-(36264, 4411, 11), -- Average M. Atk.
-(36264, 4412, 11), -- Average P. Def.
-(36264, 4413, 16), -- Very Strong M. Def.
-(36264, 4414, 2), -- Standard Type
-(36264, 4415, 11), -- Spears
-(36264, 4416, 22), -- Defending Army
+(36264, 4408, 12), -- HP Modifiers
+(36264, 4409, 1), -- MP Modifiers
+(36264, 4410, 11), -- P. Atk. Modifiers
+(36264, 4411, 11), -- M. Atk. Modifiers
+(36264, 4412, 11), -- P. Def. Modifiers
+(36264, 4413, 16), -- M. Def. Modifiers
+(36264, 4414, 2), -- Armor Type
+(36264, 4415, 11), -- Weapon Type
+(36264, 4416, 22), -- Races
 (36264, 5432, 1), -- Weapon Supply
 -- Guard
 (36265, 4045, 1), -- Resist Full Magic Attack
-(36265, 4408, 12), -- HP Increase (4x)
-(36265, 4409, 1), -- MP Increase (1x)
-(36265, 4410, 15), -- Strong P. Atk.
-(36265, 4411, 11), -- Average M. Atk.
-(36265, 4412, 11), -- Average P. Def.
-(36265, 4413, 11), -- Average M. Def.
-(36265, 4414, 3), -- Light Armor Type
-(36265, 4415, 9), -- Bows
-(36265, 4416, 22), -- Defending Army
+(36265, 4408, 12), -- HP Modifiers
+(36265, 4409, 1), -- MP Modifiers
+(36265, 4410, 15), -- P. Atk. Modifiers
+(36265, 4411, 11), -- M. Atk. Modifiers
+(36265, 4412, 11), -- P. Def. Modifiers
+(36265, 4413, 11), -- M. Def. Modifiers
+(36265, 4414, 3), -- Armor Type
+(36265, 4415, 9), -- Weapon Type
+(36265, 4416, 22), -- Races
 (36265, 5432, 1), -- Weapon Supply
 -- Main Machine
 (36266, 4045, 1), -- Resist Full Magic Attack
-(36266, 4408, 1), -- HP Increase (1x)
-(36266, 4409, 1), -- MP Increase (1x)
-(36266, 4410, 11), -- Average P. Atk.
-(36266, 4411, 11), -- Average M. Atk.
-(36266, 4412, 11), -- Average P. Def.
-(36266, 4413, 11), -- Average M. Def.
-(36266, 4414, 2), -- Standard Type
-(36266, 4415, 3), -- One-handed Sword
-(36266, 4416, 19), -- Others
+(36266, 4408, 1), -- HP Modifiers
+(36266, 4409, 1), -- MP Modifiers
+(36266, 4410, 11), -- P. Atk. Modifiers
+(36266, 4411, 11), -- M. Atk. Modifiers
+(36266, 4412, 11), -- P. Def. Modifiers
+(36266, 4413, 11), -- M. Def. Modifiers
+(36266, 4414, 2), -- Armor Type
+(36266, 4415, 3), -- Weapon Type
+(36266, 4416, 19), -- Races
 -- Backup Power Unit
 (36267, 4045, 1), -- Resist Full Magic Attack
-(36267, 4408, 1), -- HP Increase (1x)
-(36267, 4409, 1), -- MP Increase (1x)
-(36267, 4410, 11), -- Average P. Atk.
-(36267, 4411, 11), -- Average M. Atk.
-(36267, 4412, 11), -- Average P. Def.
-(36267, 4413, 11), -- Average M. Def.
-(36267, 4414, 2), -- Standard Type
-(36267, 4415, 3), -- One-handed Sword
-(36267, 4416, 19), -- Others
+(36267, 4408, 1), -- HP Modifiers
+(36267, 4409, 1), -- MP Modifiers
+(36267, 4410, 11), -- P. Atk. Modifiers
+(36267, 4411, 11), -- M. Atk. Modifiers
+(36267, 4412, 11), -- P. Def. Modifiers
+(36267, 4413, 11), -- M. Def. Modifiers
+(36267, 4414, 2), -- Armor Type
+(36267, 4415, 3), -- Weapon Type
+(36267, 4416, 19), -- Races
 -- Control Unit
 (36268, 4045, 1), -- Resist Full Magic Attack
-(36268, 4408, 1), -- HP Increase (1x)
-(36268, 4409, 1), -- MP Increase (1x)
-(36268, 4410, 11), -- Average P. Atk.
-(36268, 4411, 11), -- Average M. Atk.
-(36268, 4412, 11), -- Average P. Def.
-(36268, 4413, 11), -- Average M. Def.
-(36268, 4414, 2), -- Standard Type
-(36268, 4415, 3), -- One-handed Sword
-(36268, 4416, 2), -- Magic Creatures
+(36268, 4408, 1), -- HP Modifiers
+(36268, 4409, 1), -- MP Modifiers
+(36268, 4410, 11), -- P. Atk. Modifiers
+(36268, 4411, 11), -- M. Atk. Modifiers
+(36268, 4412, 11), -- P. Def. Modifiers
+(36268, 4413, 11), -- M. Def. Modifiers
+(36268, 4414, 2), -- Armor Type
+(36268, 4415, 3), -- Weapon Type
+(36268, 4416, 2), -- Races
 -- Power Control Unit
 (36269, 4045, 1), -- Resist Full Magic Attack
-(36269, 4408, 1), -- HP Increase (1x)
-(36269, 4409, 1), -- MP Increase (1x)
-(36269, 4410, 11), -- Average P. Atk.
-(36269, 4411, 11), -- Average M. Atk.
-(36269, 4412, 11), -- Average P. Def.
-(36269, 4413, 11), -- Average M. Def.
-(36269, 4414, 2), -- Standard Type
-(36269, 4415, 3), -- One-handed Sword
-(36269, 4416, 19), -- Others
+(36269, 4408, 1), -- HP Modifiers
+(36269, 4409, 1), -- MP Modifiers
+(36269, 4410, 11), -- P. Atk. Modifiers
+(36269, 4411, 11), -- M. Atk. Modifiers
+(36269, 4412, 11), -- P. Def. Modifiers
+(36269, 4413, 11), -- M. Def. Modifiers
+(36269, 4414, 2), -- Armor Type
+(36269, 4415, 3), -- Weapon Type
+(36269, 4416, 19), -- Races
 -- Dwarven Gunnery Sergeant
 (36270, 4045, 1), -- Resist Full Magic Attack
-(36270, 4408, 11), -- HP Increase (3x)
-(36270, 4409, 16), -- MP Increase (8x)
-(36270, 4410, 11), -- Average P. Atk.
-(36270, 4411, 17), -- Very Strong M. Atk.
-(36270, 4412, 11), -- Average P. Def.
-(36270, 4413, 8), -- Weak M. Def.
-(36270, 4414, 2), -- Standard Type
-(36270, 4415, 9), -- Bows
-(36270, 4416, 22), -- Defending Army
+(36270, 4408, 11), -- HP Modifiers
+(36270, 4409, 16), -- MP Modifiers
+(36270, 4410, 11), -- P. Atk. Modifiers
+(36270, 4411, 17), -- M. Atk. Modifiers
+(36270, 4412, 11), -- P. Def. Modifiers
+(36270, 4413, 8), -- M. Def. Modifiers
+(36270, 4414, 2), -- Armor Type
+(36270, 4415, 9), -- Weapon Type
+(36270, 4416, 22), -- Races
 (36270, 5432, 1), -- Weapon Supply
-(36270, 5461, 6), -- Power Shot
-(36270, 5468, 6), -- Fire Shot
+(36270, 5461, 6), -- Castle Gunner Shot
+(36270, 5468, 6), -- Castle Gunner Fire
 -- Scout Golem
 (36271, 4045, 1), -- Resist Full Magic Attack
-(36271, 4408, 6), -- HP Very High
-(36271, 4409, 1), -- MP Increase (1x)
-(36271, 4410, 11), -- Average P. Atk.
-(36271, 4411, 11), -- Average M. Atk.
-(36271, 4412, 11), -- Average P. Def.
-(36271, 4413, 16), -- Very Strong M. Def.
-(36271, 4414, 2), -- Standard Type
-(36271, 4415, 3), -- One-handed Sword
-(36271, 4416, 22), -- Defending Army
+(36271, 4408, 6), -- HP Modifiers
+(36271, 4409, 1), -- MP Modifiers
+(36271, 4410, 11), -- P. Atk. Modifiers
+(36271, 4411, 11), -- M. Atk. Modifiers
+(36271, 4412, 11), -- P. Def. Modifiers
+(36271, 4413, 16), -- M. Def. Modifiers
+(36271, 4414, 2), -- Armor Type
+(36271, 4415, 3), -- Weapon Type
+(36271, 4416, 22), -- Races
 -- Guard Captain
 (36272, 4045, 1), -- Resist Full Magic Attack
 (36272, 4172, 6), -- Stun
-(36272, 4408, 9), -- HP Increase (1/2x)
-(36272, 4409, 1), -- MP Increase (1x)
-(36272, 4410, 8), -- Weak P. Atk.
-(36272, 4411, 11), -- Average M. Atk.
-(36272, 4412, 16), -- Very Strong P. Def.
-(36272, 4413, 11), -- Average M. Def.
-(36272, 4414, 2), -- Standard Type
-(36272, 4415, 3), -- One-handed Sword
-(36272, 4416, 22), -- Defending Army
+(36272, 4408, 9), -- HP Modifiers
+(36272, 4409, 1), -- MP Modifiers
+(36272, 4410, 8), -- P. Atk. Modifiers
+(36272, 4411, 11), -- M. Atk. Modifiers
+(36272, 4412, 16), -- P. Def. Modifiers
+(36272, 4413, 11), -- M. Def. Modifiers
+(36272, 4414, 2), -- Armor Type
+(36272, 4415, 3), -- Weapon Type
+(36272, 4416, 22), -- Races
 (36272, 4435, 5), -- Greater Resist Stun
 (36272, 4439, 5), -- Greater Resist Hold
 (36272, 4440, 5), -- Greater Resist Paralysis
-(36272, 4608, 1), -- Berserker Spirit
+(36272, 4608, 1), -- NPC Clan Buff - Berserk
 (36272, 5432, 1), -- Weapon Supply
-(36272, 5457, 1), -- Complete Recovery
+(36272, 5457, 1), -- NPC Full Recover
 -- Guard
 (36273, 4045, 1), -- Resist Full Magic Attack
-(36273, 4408, 13), -- HP Increase (5x)
-(36273, 4409, 1), -- MP Increase (1x)
-(36273, 4410, 9), -- Slightly Weak P. Atk.
-(36273, 4411, 11), -- Average M. Atk.
-(36273, 4412, 16), -- Very Strong P. Def.
-(36273, 4413, 11), -- Average M. Def.
-(36273, 4414, 2), -- Standard Type
-(36273, 4415, 3), -- One-handed Sword
-(36273, 4416, 22), -- Defending Army
+(36273, 4408, 13), -- HP Modifiers
+(36273, 4409, 1), -- MP Modifiers
+(36273, 4410, 9), -- P. Atk. Modifiers
+(36273, 4411, 11), -- M. Atk. Modifiers
+(36273, 4412, 16), -- P. Def. Modifiers
+(36273, 4413, 11), -- M. Def. Modifiers
+(36273, 4414, 2), -- Armor Type
+(36273, 4415, 3), -- Weapon Type
+(36273, 4416, 22), -- Races
 (36273, 5112, 6), -- Stun
 (36273, 5432, 1), -- Weapon Supply
 -- Guard
 (36274, 4045, 1), -- Resist Full Magic Attack
-(36274, 4408, 13), -- HP Increase (5x)
-(36274, 4409, 1), -- MP Increase (1x)
-(36274, 4410, 9), -- Slightly Weak P. Atk.
-(36274, 4411, 11), -- Average M. Atk.
-(36274, 4412, 11), -- Average P. Def.
-(36274, 4413, 16), -- Very Strong M. Def.
-(36274, 4414, 2), -- Standard Type
-(36274, 4415, 3), -- One-handed Sword
-(36274, 4416, 22), -- Defending Army
-(36274, 5045, 6), -- Power Strike
+(36274, 4408, 13), -- HP Modifiers
+(36274, 4409, 1), -- MP Modifiers
+(36274, 4410, 9), -- P. Atk. Modifiers
+(36274, 4411, 11), -- M. Atk. Modifiers
+(36274, 4412, 11), -- P. Def. Modifiers
+(36274, 4413, 16), -- M. Def. Modifiers
+(36274, 4414, 2), -- Armor Type
+(36274, 4415, 3), -- Weapon Type
+(36274, 4416, 22), -- Races
+(36274, 5045, 6), -- Castle Power Strike
 (36274, 5432, 1), -- Weapon Supply
 -- Support Unit Captain
 (36275, 4045, 1), -- Resist Full Magic Attack
-(36275, 4194, 6), -- Aura Burn
-(36275, 4196, 6), -- Decrease Speed
-(36275, 4408, 9), -- HP Increase (1/2x)
-(36275, 4409, 16), -- MP Increase (8x)
-(36275, 4410, 11), -- Average P. Atk.
-(36275, 4411, 14), -- Strong M. Atk.
-(36275, 4412, 8), -- Weak P. Def.
-(36275, 4413, 14), -- Strong M. Def.
-(36275, 4414, 3), -- Light Armor Type
-(36275, 4415, 3), -- One-handed Sword
-(36275, 4416, 22), -- Defending Army
-(36275, 5396, 1), -- Spell Force
-(36275, 5398, 1), -- Final Burn
+(36275, 4194, 6), -- BOSS Aura Burn
+(36275, 4196, 6), -- Decreases Speed
+(36275, 4408, 9), -- HP Modifiers
+(36275, 4409, 16), -- MP Modifiers
+(36275, 4410, 11), -- P. Atk. Modifiers
+(36275, 4411, 14), -- M. Atk. Modifiers
+(36275, 4412, 8), -- P. Def. Modifiers
+(36275, 4413, 14), -- M. Def. Modifiers
+(36275, 4414, 3), -- Armor Type
+(36275, 4415, 3), -- Weapon Type
+(36275, 4416, 22), -- Races
+(36275, 5396, 1), -- NPC - Spell Stance
+(36275, 5398, 1), -- NPC - Combination Force
 (36275, 5432, 1), -- Weapon Supply
-(36275, 5457, 1), -- Complete Recovery
+(36275, 5457, 1), -- NPC Full Recover
 -- Wizard
 (36276, 4045, 1), -- Resist Full Magic Attack
-(36276, 4077, 6), -- Aura Burn
-(36276, 4408, 13), -- HP Increase (5x)
-(36276, 4409, 16), -- MP Increase (8x)
-(36276, 4410, 11), -- Average P. Atk.
-(36276, 4411, 16), -- Very Strong M. Atk.
-(36276, 4412, 8), -- Weak P. Def.
-(36276, 4413, 11), -- Average M. Def.
-(36276, 4414, 3), -- Light Armor Type
-(36276, 4415, 3), -- One-handed Sword
-(36276, 4416, 22), -- Defending Army
-(36276, 5053, 6), -- Hydro Blast
-(36276, 5396, 1), -- Spell Force
+(36276, 4077, 6), -- NPC Aura Burn
+(36276, 4408, 13), -- HP Modifiers
+(36276, 4409, 16), -- MP Modifiers
+(36276, 4410, 11), -- P. Atk. Modifiers
+(36276, 4411, 16), -- M. Atk. Modifiers
+(36276, 4412, 8), -- P. Def. Modifiers
+(36276, 4413, 11), -- M. Def. Modifiers
+(36276, 4414, 3), -- Armor Type
+(36276, 4415, 3), -- Weapon Type
+(36276, 4416, 22), -- Races
+(36276, 5053, 6), -- Castle DD Water
+(36276, 5396, 1), -- NPC - Spell Stance
 (36276, 5432, 1), -- Weapon Supply
 -- Healer
 (36277, 4045, 1), -- Resist Full Magic Attack
 (36277, 4115, 1), -- Aden Heal
-(36277, 4408, 15), -- HP Increase (7x)
-(36277, 4409, 16), -- MP Increase (8x)
-(36277, 4410, 11), -- Average P. Atk.
-(36277, 4411, 17), -- Very Strong M. Atk.
-(36277, 4412, 11), -- Average P. Def.
-(36277, 4413, 16), -- Very Strong M. Def.
-(36277, 4414, 3), -- Light Armor Type
-(36277, 4415, 3), -- One-handed Sword
-(36277, 4416, 22), -- Defending Army
+(36277, 4408, 15), -- HP Modifiers
+(36277, 4409, 16), -- MP Modifiers
+(36277, 4410, 11), -- P. Atk. Modifiers
+(36277, 4411, 17), -- M. Atk. Modifiers
+(36277, 4412, 11), -- P. Def. Modifiers
+(36277, 4413, 16), -- M. Def. Modifiers
+(36277, 4414, 3), -- Armor Type
+(36277, 4415, 3), -- Weapon Type
+(36277, 4416, 22), -- Races
 (36277, 5114, 6), -- Hold
 (36277, 5432, 1), -- Weapon Supply
 -- Archer Captain
 (36278, 4045, 1), -- Resist Full Magic Attack
-(36278, 4408, 9), -- HP Increase (1/2x)
-(36278, 4409, 1), -- MP Increase (1x)
-(36278, 4410, 16), -- Very Strong P. Atk.
-(36278, 4411, 11), -- Average M. Atk.
-(36278, 4412, 8), -- Weak P. Def.
-(36278, 4413, 11), -- Average M. Def.
-(36278, 4414, 3), -- Light Armor Type
-(36278, 4415, 9), -- Bows
-(36278, 4416, 22), -- Defending Army
-(36278, 4755, 6), -- Power Shot
+(36278, 4408, 9), -- HP Modifiers
+(36278, 4409, 1), -- MP Modifiers
+(36278, 4410, 16), -- P. Atk. Modifiers
+(36278, 4411, 11), -- M. Atk. Modifiers
+(36278, 4412, 8), -- P. Def. Modifiers
+(36278, 4413, 11), -- M. Def. Modifiers
+(36278, 4414, 3), -- Armor Type
+(36278, 4415, 9), -- Weapon Type
+(36278, 4416, 22), -- Races
+(36278, 4755, 6), -- BOSS Power Shot
 (36278, 5432, 1), -- Weapon Supply
-(36278, 5457, 1), -- Complete Recovery
+(36278, 5457, 1), -- NPC Full Recover
 -- Archer
 (36279, 4045, 1), -- Resist Full Magic Attack
-(36279, 4408, 13), -- HP Increase (5x)
-(36279, 4409, 1), -- MP Increase (1x)
-(36279, 4410, 14), -- Strong P. Atk.
-(36279, 4411, 11), -- Average M. Atk.
-(36279, 4412, 8), -- Weak P. Def.
-(36279, 4413, 11), -- Average M. Def.
-(36279, 4414, 3), -- Light Armor Type
-(36279, 4415, 9), -- Bows
-(36279, 4416, 22), -- Defending Army
-(36279, 5046, 6), -- Power Shot
+(36279, 4408, 13), -- HP Modifiers
+(36279, 4409, 1), -- MP Modifiers
+(36279, 4410, 14), -- P. Atk. Modifiers
+(36279, 4411, 11), -- M. Atk. Modifiers
+(36279, 4412, 8), -- P. Def. Modifiers
+(36279, 4413, 11), -- M. Def. Modifiers
+(36279, 4414, 3), -- Armor Type
+(36279, 4415, 9), -- Weapon Type
+(36279, 4416, 22), -- Races
+(36279, 5046, 6), -- Castle Power Shot
 (36279, 5432, 1), -- Weapon Supply
 -- General
 (36280, 4045, 1), -- Resist Full Magic Attack
-(36280, 4408, 9), -- HP Increase (1/2x)
-(36280, 4409, 1), -- MP Increase (1x)
-(36280, 4410, 14), -- Strong P. Atk.
-(36280, 4411, 11), -- Average M. Atk.
-(36280, 4412, 11), -- Average P. Def.
-(36280, 4413, 11), -- Average M. Def.
-(36280, 4414, 2), -- Standard Type
-(36280, 4415, 19), -- Dual-Sword Weapons
-(36280, 4416, 22), -- Defending Army
+(36280, 4408, 9), -- HP Modifiers
+(36280, 4409, 1), -- MP Modifiers
+(36280, 4410, 14), -- P. Atk. Modifiers
+(36280, 4411, 11), -- M. Atk. Modifiers
+(36280, 4412, 11), -- P. Def. Modifiers
+(36280, 4413, 11), -- M. Def. Modifiers
+(36280, 4414, 2), -- Armor Type
+(36280, 4415, 19), -- Weapon Type
+(36280, 4416, 22), -- Races
 (36280, 4725, 6), -- Stun
 (36280, 5432, 1), -- Weapon Supply
-(36280, 5457, 1), -- Complete Recovery
+(36280, 5457, 1), -- NPC Full Recover
 -- Minister
 (36281, 4045, 1), -- Resist Full Magic Attack
-(36281, 4408, 9), -- HP Increase (1/2x)
-(36281, 4409, 1), -- MP Increase (1x)
-(36281, 4410, 14), -- Strong P. Atk.
-(36281, 4411, 11), -- Average M. Atk.
-(36281, 4412, 11), -- Average P. Def.
-(36281, 4413, 11), -- Average M. Def.
-(36281, 4414, 2), -- Standard Type
-(36281, 4415, 3), -- One-handed Sword
-(36281, 4416, 22), -- Defending Army
-(36281, 4721, 6), -- Power Strike
+(36281, 4408, 9), -- HP Modifiers
+(36281, 4409, 1), -- MP Modifiers
+(36281, 4410, 14), -- P. Atk. Modifiers
+(36281, 4411, 11), -- M. Atk. Modifiers
+(36281, 4412, 11), -- P. Def. Modifiers
+(36281, 4413, 11), -- M. Def. Modifiers
+(36281, 4414, 2), -- Armor Type
+(36281, 4415, 3), -- Weapon Type
+(36281, 4416, 22), -- Races
+(36281, 4721, 6), -- BOSS Strike
 (36281, 5432, 1), -- Weapon Supply
-(36281, 5457, 1), -- Complete Recovery
+(36281, 5457, 1), -- NPC Full Recover
 -- Ballista
 (36282, 2342, 1), -- Ballista Bomb
 (36282, 4045, 1), -- Resist Full Magic Attack
-(36282, 4408, 16), -- HP Increase (8x)
-(36282, 4409, 1), -- MP Increase (1x)
-(36282, 4410, 11), -- Average P. Atk.
-(36282, 4411, 11), -- Average M. Atk.
-(36282, 4412, 11), -- Average P. Def.
-(36282, 4413, 11), -- Average M. Def.
-(36282, 4414, 2), -- Standard Type
-(36282, 4415, 3), -- One-handed Sword
-(36282, 4416, 22), -- Defending Army
+(36282, 4408, 16), -- HP Modifiers
+(36282, 4409, 1), -- MP Modifiers
+(36282, 4410, 11), -- P. Atk. Modifiers
+(36282, 4411, 11), -- M. Atk. Modifiers
+(36282, 4412, 11), -- P. Def. Modifiers
+(36282, 4413, 11), -- M. Def. Modifiers
+(36282, 4414, 2), -- Armor Type
+(36282, 4415, 3), -- Weapon Type
+(36282, 4416, 22), -- Races
 -- Mercenary Captain
 (36283, 4045, 1), -- Resist Full Magic Attack
-(36283, 4408, 11), -- HP Increase (3x)
-(36283, 4409, 1), -- MP Increase (1x)
-(36283, 4410, 11), -- Average P. Atk.
-(36283, 4411, 11), -- Average M. Atk.
-(36283, 4412, 11), -- Average P. Def.
-(36283, 4413, 11), -- Average M. Def.
-(36283, 4414, 2), -- Standard Type
-(36283, 4415, 3), -- One-handed Sword
-(36283, 4416, 14), -- Humans
+(36283, 4408, 11), -- HP Modifiers
+(36283, 4409, 1), -- MP Modifiers
+(36283, 4410, 11), -- P. Atk. Modifiers
+(36283, 4411, 11), -- M. Atk. Modifiers
+(36283, 4412, 11), -- P. Def. Modifiers
+(36283, 4413, 11), -- M. Def. Modifiers
+(36283, 4414, 2), -- Armor Type
+(36283, 4415, 3), -- Weapon Type
+(36283, 4416, 14), -- Races
 -- Mercenary Private
 (36284, 4045, 1), -- Resist Full Magic Attack
-(36284, 4408, 11), -- HP Increase (3x)
-(36284, 4409, 1), -- MP Increase (1x)
-(36284, 4410, 13), -- Slightly Strong P. Atk.
-(36284, 4411, 11), -- Average M. Atk.
-(36284, 4412, 11), -- Average P. Def.
-(36284, 4413, 11), -- Average M. Def.
-(36284, 4414, 2), -- Standard Type
-(36284, 4415, 11), -- Spears
-(36284, 4416, 17), -- Orcs
+(36284, 4408, 11), -- HP Modifiers
+(36284, 4409, 1), -- MP Modifiers
+(36284, 4410, 13), -- P. Atk. Modifiers
+(36284, 4411, 11), -- M. Atk. Modifiers
+(36284, 4412, 11), -- P. Def. Modifiers
+(36284, 4413, 11), -- M. Def. Modifiers
+(36284, 4414, 2), -- Armor Type
+(36284, 4415, 11), -- Weapon Type
+(36284, 4416, 17), -- Races
 -- Flagpole
 (36285, 4045, 1), -- Resist Full Magic Attack
-(36285, 4408, 1), -- HP Increase (1x)
-(36285, 4409, 1), -- MP Increase (1x)
-(36285, 4410, 11), -- Average P. Atk.
-(36285, 4411, 11), -- Average M. Atk.
-(36285, 4412, 11), -- Average P. Def.
-(36285, 4413, 11), -- Average M. Def.
-(36285, 4414, 2), -- Standard Type
-(36285, 4415, 3), -- One-handed Sword
-(36285, 4416, 19), -- Others
+(36285, 4408, 1), -- HP Modifiers
+(36285, 4409, 1), -- MP Modifiers
+(36285, 4410, 11), -- P. Atk. Modifiers
+(36285, 4411, 11), -- M. Atk. Modifiers
+(36285, 4412, 11), -- P. Def. Modifiers
+(36285, 4413, 11), -- M. Def. Modifiers
+(36285, 4414, 2), -- Armor Type
+(36285, 4415, 3), -- Weapon Type
+(36285, 4416, 19), -- Races
 -- Foreman
 (36286, 4045, 1), -- Resist Full Magic Attack
-(36286, 4408, 1), -- HP Increase (1x)
-(36286, 4409, 1), -- MP Increase (1x)
-(36286, 4410, 11), -- Average P. Atk.
-(36286, 4411, 11), -- Average M. Atk.
-(36286, 4412, 11), -- Average P. Def.
-(36286, 4413, 11), -- Average M. Def.
-(36286, 4414, 2), -- Standard Type
-(36286, 4415, 3), -- One-handed Sword
-(36286, 4416, 14), -- Humans
+(36286, 4408, 1), -- HP Modifiers
+(36286, 4409, 1), -- MP Modifiers
+(36286, 4410, 11), -- P. Atk. Modifiers
+(36286, 4411, 11), -- M. Atk. Modifiers
+(36286, 4412, 11), -- P. Def. Modifiers
+(36286, 4413, 11), -- M. Def. Modifiers
+(36286, 4414, 2), -- Armor Type
+(36286, 4415, 3), -- Weapon Type
+(36286, 4416, 14), -- Races
 -- Suspicious Merchant
 (36287, 4045, 1), -- Resist Full Magic Attack
-(36287, 4408, 1), -- HP Increase (1x)
-(36287, 4409, 1), -- MP Increase (1x)
-(36287, 4410, 11), -- Average P. Atk.
-(36287, 4411, 11), -- Average M. Atk.
-(36287, 4412, 11), -- Average P. Def.
-(36287, 4413, 11), -- Average M. Def.
-(36287, 4414, 2), -- Standard Type
-(36287, 4415, 3), -- One-handed Sword
-(36287, 4416, 17), -- Orcs
+(36287, 4408, 1), -- HP Modifiers
+(36287, 4409, 1), -- MP Modifiers
+(36287, 4410, 11), -- P. Atk. Modifiers
+(36287, 4411, 11), -- M. Atk. Modifiers
+(36287, 4412, 11), -- P. Def. Modifiers
+(36287, 4413, 11), -- M. Def. Modifiers
+(36287, 4414, 2), -- Armor Type
+(36287, 4415, 3), -- Weapon Type
+(36287, 4416, 17), -- Races
 -- Guard Captain
 (36288, 4045, 1), -- Resist Full Magic Attack
-(36288, 4408, 1), -- HP Increase (1x)
-(36288, 4409, 1), -- MP Increase (1x)
-(36288, 4410, 11), -- Average P. Atk.
-(36288, 4411, 11), -- Average M. Atk.
-(36288, 4412, 11), -- Average P. Def.
-(36288, 4413, 11), -- Average M. Def.
-(36288, 4414, 2), -- Standard Type
-(36288, 4415, 3), -- One-handed Sword
-(36288, 4416, 14), -- Humans
+(36288, 4408, 1), -- HP Modifiers
+(36288, 4409, 1), -- MP Modifiers
+(36288, 4410, 11), -- P. Atk. Modifiers
+(36288, 4411, 11), -- M. Atk. Modifiers
+(36288, 4412, 11), -- P. Def. Modifiers
+(36288, 4413, 11), -- M. Def. Modifiers
+(36288, 4414, 2), -- Armor Type
+(36288, 4415, 3), -- Weapon Type
+(36288, 4416, 14), -- Races
 -- Archer Captain
 (36289, 4045, 1), -- Resist Full Magic Attack
-(36289, 4408, 1), -- HP Increase (1x)
-(36289, 4409, 1), -- MP Increase (1x)
-(36289, 4410, 11), -- Average P. Atk.
-(36289, 4411, 11), -- Average M. Atk.
-(36289, 4412, 11), -- Average P. Def.
-(36289, 4413, 11), -- Average M. Def.
-(36289, 4414, 2), -- Standard Type
-(36289, 4415, 9), -- Bows
-(36289, 4416, 15), -- Elves
+(36289, 4408, 1), -- HP Modifiers
+(36289, 4409, 1), -- MP Modifiers
+(36289, 4410, 11), -- P. Atk. Modifiers
+(36289, 4411, 11), -- M. Atk. Modifiers
+(36289, 4412, 11), -- P. Def. Modifiers
+(36289, 4413, 11), -- M. Def. Modifiers
+(36289, 4414, 2), -- Armor Type
+(36289, 4415, 9), -- Weapon Type
+(36289, 4416, 15), -- Races
 -- Support Unit Captain
 (36290, 4045, 1), -- Resist Full Magic Attack
-(36290, 4408, 1), -- HP Increase (1x)
-(36290, 4409, 1), -- MP Increase (1x)
-(36290, 4410, 11), -- Average P. Atk.
-(36290, 4411, 11), -- Average M. Atk.
-(36290, 4412, 11), -- Average P. Def.
-(36290, 4413, 11), -- Average M. Def.
-(36290, 4414, 2), -- Standard Type
-(36290, 4415, 3), -- One-handed Sword
-(36290, 4416, 14), -- Humans
+(36290, 4408, 1), -- HP Modifiers
+(36290, 4409, 1), -- MP Modifiers
+(36290, 4410, 11), -- P. Atk. Modifiers
+(36290, 4411, 11), -- M. Atk. Modifiers
+(36290, 4412, 11), -- P. Def. Modifiers
+(36290, 4413, 11), -- M. Def. Modifiers
+(36290, 4414, 2), -- Armor Type
+(36290, 4415, 3), -- Weapon Type
+(36290, 4416, 14), -- Races
 -- Engineering Manager
 (36291, 4045, 1), -- Resist Full Magic Attack
-(36291, 4408, 1), -- HP Increase (1x)
-(36291, 4409, 1), -- MP Increase (1x)
-(36291, 4410, 11), -- Average P. Atk.
-(36291, 4411, 11), -- Average M. Atk.
-(36291, 4412, 11), -- Average P. Def.
-(36291, 4413, 11), -- Average M. Def.
-(36291, 4414, 2), -- Standard Type
-(36291, 4415, 3), -- One-handed Sword
-(36291, 4416, 18), -- Dwarves
+(36291, 4408, 1), -- HP Modifiers
+(36291, 4409, 1), -- MP Modifiers
+(36291, 4410, 11), -- P. Atk. Modifiers
+(36291, 4411, 11), -- M. Atk. Modifiers
+(36291, 4412, 11), -- P. Def. Modifiers
+(36291, 4413, 11), -- M. Def. Modifiers
+(36291, 4414, 2), -- Armor Type
+(36291, 4415, 3), -- Weapon Type
+(36291, 4416, 18), -- Races
 -- Logistics Officer
 (36292, 4045, 1), -- Resist Full Magic Attack
-(36292, 4408, 1), -- HP Increase (1x)
-(36292, 4409, 1), -- MP Increase (1x)
-(36292, 4410, 11), -- Average P. Atk.
-(36292, 4411, 11), -- Average M. Atk.
-(36292, 4412, 11), -- Average P. Def.
-(36292, 4413, 11), -- Average M. Def.
-(36292, 4414, 2), -- Standard Type
-(36292, 4415, 3), -- One-handed Sword
-(36292, 4416, 18), -- Dwarves
+(36292, 4408, 1), -- HP Modifiers
+(36292, 4409, 1), -- MP Modifiers
+(36292, 4410, 11), -- P. Atk. Modifiers
+(36292, 4411, 11), -- M. Atk. Modifiers
+(36292, 4412, 11), -- P. Def. Modifiers
+(36292, 4413, 11), -- M. Def. Modifiers
+(36292, 4414, 2), -- Armor Type
+(36292, 4415, 3), -- Weapon Type
+(36292, 4416, 18), -- Races
 -- Supply Box
 (36293, 4045, 1), -- Resist Full Magic Attack
-(36293, 4408, 1), -- HP Increase (1x)
-(36293, 4409, 1), -- MP Increase (1x)
-(36293, 4410, 11), -- Average P. Atk.
-(36293, 4411, 11), -- Average M. Atk.
-(36293, 4412, 11), -- Average P. Def.
-(36293, 4413, 11), -- Average M. Def.
-(36293, 4414, 2), -- Standard Type
-(36293, 4415, 3), -- One-handed Sword
-(36293, 4416, 2), -- Magic Creatures
+(36293, 4408, 1), -- HP Modifiers
+(36293, 4409, 1), -- MP Modifiers
+(36293, 4410, 11), -- P. Atk. Modifiers
+(36293, 4411, 11), -- M. Atk. Modifiers
+(36293, 4412, 11), -- P. Def. Modifiers
+(36293, 4413, 11), -- M. Def. Modifiers
+(36293, 4414, 2), -- Armor Type
+(36293, 4415, 3), -- Weapon Type
+(36293, 4416, 2), -- Races
 -- Detention Camp Warden
 (36294, 4045, 1), -- Resist Full Magic Attack
-(36294, 4408, 1), -- HP Increase (1x)
-(36294, 4409, 1), -- MP Increase (1x)
-(36294, 4410, 11), -- Average P. Atk.
-(36294, 4411, 11), -- Average M. Atk.
-(36294, 4412, 11), -- Average P. Def.
-(36294, 4413, 11), -- Average M. Def.
-(36294, 4414, 2), -- Standard Type
-(36294, 4415, 3), -- One-handed Sword
-(36294, 4416, 14), -- Humans
+(36294, 4408, 1), -- HP Modifiers
+(36294, 4409, 1), -- MP Modifiers
+(36294, 4410, 11), -- P. Atk. Modifiers
+(36294, 4411, 11), -- M. Atk. Modifiers
+(36294, 4412, 11), -- P. Def. Modifiers
+(36294, 4413, 11), -- M. Def. Modifiers
+(36294, 4414, 2), -- Armor Type
+(36294, 4415, 3), -- Weapon Type
+(36294, 4416, 14), -- Races
 -- Doorman
 (36295, 4045, 1), -- Resist Full Magic Attack
-(36295, 4408, 1), -- HP Increase (1x)
-(36295, 4409, 1), -- MP Increase (1x)
-(36295, 4410, 11), -- Average P. Atk.
-(36295, 4411, 11), -- Average M. Atk.
-(36295, 4412, 11), -- Average P. Def.
-(36295, 4413, 11), -- Average M. Def.
-(36295, 4414, 2), -- Standard Type
-(36295, 4415, 3), -- One-handed Sword
-(36295, 4416, 14), -- Humans
+(36295, 4408, 1), -- HP Modifiers
+(36295, 4409, 1), -- MP Modifiers
+(36295, 4410, 11), -- P. Atk. Modifiers
+(36295, 4411, 11), -- M. Atk. Modifiers
+(36295, 4412, 11), -- P. Def. Modifiers
+(36295, 4413, 11), -- M. Def. Modifiers
+(36295, 4414, 2), -- Armor Type
+(36295, 4415, 3), -- Weapon Type
+(36295, 4416, 14), -- Races
 -- Doorman
 (36296, 4045, 1), -- Resist Full Magic Attack
-(36296, 4408, 1), -- HP Increase (1x)
-(36296, 4409, 1), -- MP Increase (1x)
-(36296, 4410, 11), -- Average P. Atk.
-(36296, 4411, 11), -- Average M. Atk.
-(36296, 4412, 11), -- Average P. Def.
-(36296, 4413, 11), -- Average M. Def.
-(36296, 4414, 2), -- Standard Type
-(36296, 4415, 3), -- One-handed Sword
-(36296, 4416, 14), -- Humans
+(36296, 4408, 1), -- HP Modifiers
+(36296, 4409, 1), -- MP Modifiers
+(36296, 4410, 11), -- P. Atk. Modifiers
+(36296, 4411, 11), -- M. Atk. Modifiers
+(36296, 4412, 11), -- P. Def. Modifiers
+(36296, 4413, 11), -- M. Def. Modifiers
+(36296, 4414, 2), -- Armor Type
+(36296, 4415, 3), -- Weapon Type
+(36296, 4416, 14), -- Races
 -- Doorman
 (36297, 4045, 1), -- Resist Full Magic Attack
-(36297, 4408, 1), -- HP Increase (1x)
-(36297, 4409, 1), -- MP Increase (1x)
-(36297, 4410, 11), -- Average P. Atk.
-(36297, 4411, 11), -- Average M. Atk.
-(36297, 4412, 11), -- Average P. Def.
-(36297, 4413, 11), -- Average M. Def.
-(36297, 4414, 2), -- Standard Type
-(36297, 4415, 3), -- One-handed Sword
-(36297, 4416, 14), -- Humans
+(36297, 4408, 1), -- HP Modifiers
+(36297, 4409, 1), -- MP Modifiers
+(36297, 4410, 11), -- P. Atk. Modifiers
+(36297, 4411, 11), -- M. Atk. Modifiers
+(36297, 4412, 11), -- P. Def. Modifiers
+(36297, 4413, 11), -- M. Def. Modifiers
+(36297, 4414, 2), -- Armor Type
+(36297, 4415, 3), -- Weapon Type
+(36297, 4416, 14), -- Races
 -- Rebel Commander
 (36298, 4045, 1), -- Resist Full Magic Attack
-(36298, 4178, 7), -- Flame Strike
-(36298, 4195, 7), -- Twister
-(36298, 4408, 10), -- HP Increase (2x)
-(36298, 4409, 1), -- MP Increase (1x)
-(36298, 4410, 11), -- Average P. Atk.
-(36298, 4411, 17), -- Very Strong M. Atk.
-(36298, 4412, 11), -- Average P. Def.
-(36298, 4413, 11), -- Average M. Def.
-(36298, 4414, 2), -- Standard Type
-(36298, 4415, 3), -- One-handed Sword
-(36298, 4416, 16), -- Dark Elves
+(36298, 4178, 7), -- BOSS Flame Strike
+(36298, 4195, 7), -- BOSS Twister
+(36298, 4408, 10), -- HP Modifiers
+(36298, 4409, 1), -- MP Modifiers
+(36298, 4410, 11), -- P. Atk. Modifiers
+(36298, 4411, 17), -- M. Atk. Modifiers
+(36298, 4412, 11), -- P. Def. Modifiers
+(36298, 4413, 11), -- M. Def. Modifiers
+(36298, 4414, 2), -- Armor Type
+(36298, 4415, 3), -- Weapon Type
+(36298, 4416, 16), -- Races
 -- Decorated Rebel Soldier
 (36299, 4045, 1), -- Resist Full Magic Attack
-(36299, 4408, 14), -- HP Increase (6x)
-(36299, 4409, 1), -- MP Increase (1x)
-(36299, 4410, 15), -- Strong P. Atk.
-(36299, 4411, 11), -- Average M. Atk.
-(36299, 4412, 11), -- Average P. Def.
-(36299, 4413, 15), -- Strong M. Def.
-(36299, 4414, 2), -- Standard Type
-(36299, 4415, 1), -- Bare Hands
-(36299, 4416, 9), -- Demons
-(36299, 5065, 7), -- Unholy Strike
+(36299, 4408, 14), -- HP Modifiers
+(36299, 4409, 1), -- MP Modifiers
+(36299, 4410, 15), -- P. Atk. Modifiers
+(36299, 4411, 11), -- M. Atk. Modifiers
+(36299, 4412, 11), -- P. Def. Modifiers
+(36299, 4413, 15), -- M. Def. Modifiers
+(36299, 4414, 2), -- Armor Type
+(36299, 4415, 1), -- Weapon Type
+(36299, 4416, 9), -- Races
+(36299, 5065, 7), -- Castle DD Unholy
 -- Rebel Private
 (36300, 4045, 1), -- Resist Full Magic Attack
-(36300, 4408, 12), -- HP Increase (4x)
-(36300, 4409, 1), -- MP Increase (1x)
-(36300, 4410, 14), -- Strong P. Atk.
-(36300, 4411, 11), -- Average M. Atk.
-(36300, 4412, 11), -- Average P. Def.
-(36300, 4413, 11), -- Average M. Def.
-(36300, 4414, 2), -- Standard Type
-(36300, 4415, 11), -- Spears
-(36300, 4416, 14), -- Humans
+(36300, 4408, 12), -- HP Modifiers
+(36300, 4409, 1), -- MP Modifiers
+(36300, 4410, 14), -- P. Atk. Modifiers
+(36300, 4411, 11), -- M. Atk. Modifiers
+(36300, 4412, 11), -- P. Def. Modifiers
+(36300, 4413, 11), -- M. Def. Modifiers
+(36300, 4414, 2), -- Armor Type
+(36300, 4415, 11), -- Weapon Type
+(36300, 4416, 14), -- Races
 -- Court Guard
 (36301, 4045, 1), -- Resist Full Magic Attack
-(36301, 4408, 12), -- HP Increase (4x)
-(36301, 4409, 1), -- MP Increase (1x)
-(36301, 4410, 11), -- Average P. Atk.
-(36301, 4411, 11), -- Average M. Atk.
-(36301, 4412, 11), -- Average P. Def.
-(36301, 4413, 16), -- Very Strong M. Def.
-(36301, 4414, 2), -- Standard Type
-(36301, 4415, 11), -- Spears
-(36301, 4416, 22), -- Defending Army
+(36301, 4408, 12), -- HP Modifiers
+(36301, 4409, 1), -- MP Modifiers
+(36301, 4410, 11), -- P. Atk. Modifiers
+(36301, 4411, 11), -- M. Atk. Modifiers
+(36301, 4412, 11), -- P. Def. Modifiers
+(36301, 4413, 16), -- M. Def. Modifiers
+(36301, 4414, 2), -- Armor Type
+(36301, 4415, 11), -- Weapon Type
+(36301, 4416, 22), -- Races
 (36301, 5432, 1), -- Weapon Supply
 -- Guard
 (36302, 4045, 1), -- Resist Full Magic Attack
-(36302, 4408, 12), -- HP Increase (4x)
-(36302, 4409, 1), -- MP Increase (1x)
-(36302, 4410, 15), -- Strong P. Atk.
-(36302, 4411, 11), -- Average M. Atk.
-(36302, 4412, 11), -- Average P. Def.
-(36302, 4413, 11), -- Average M. Def.
-(36302, 4414, 3), -- Light Armor Type
-(36302, 4415, 9), -- Bows
-(36302, 4416, 22), -- Defending Army
+(36302, 4408, 12), -- HP Modifiers
+(36302, 4409, 1), -- MP Modifiers
+(36302, 4410, 15), -- P. Atk. Modifiers
+(36302, 4411, 11), -- M. Atk. Modifiers
+(36302, 4412, 11), -- P. Def. Modifiers
+(36302, 4413, 11), -- M. Def. Modifiers
+(36302, 4414, 3), -- Armor Type
+(36302, 4415, 9), -- Weapon Type
+(36302, 4416, 22), -- Races
 (36302, 5432, 1), -- Weapon Supply
 -- Power Control Unit
 (36303, 4045, 1), -- Resist Full Magic Attack
-(36303, 4408, 1), -- HP Increase (1x)
-(36303, 4409, 1), -- MP Increase (1x)
-(36303, 4410, 11), -- Average P. Atk.
-(36303, 4411, 11), -- Average M. Atk.
-(36303, 4412, 11), -- Average P. Def.
-(36303, 4413, 11), -- Average M. Def.
-(36303, 4414, 2), -- Standard Type
-(36303, 4415, 3), -- One-handed Sword
-(36303, 4416, 19), -- Others
+(36303, 4408, 1), -- HP Modifiers
+(36303, 4409, 1), -- MP Modifiers
+(36303, 4410, 11), -- P. Atk. Modifiers
+(36303, 4411, 11), -- M. Atk. Modifiers
+(36303, 4412, 11), -- P. Def. Modifiers
+(36303, 4413, 11), -- M. Def. Modifiers
+(36303, 4414, 2), -- Armor Type
+(36303, 4415, 3), -- Weapon Type
+(36303, 4416, 19), -- Races
 -- Dwarven Gunnery Sergeant
 (36304, 4045, 1), -- Resist Full Magic Attack
-(36304, 4408, 11), -- HP Increase (3x)
-(36304, 4409, 16), -- MP Increase (8x)
-(36304, 4410, 11), -- Average P. Atk.
-(36304, 4411, 17), -- Very Strong M. Atk.
-(36304, 4412, 11), -- Average P. Def.
-(36304, 4413, 8), -- Weak M. Def.
-(36304, 4414, 2), -- Standard Type
-(36304, 4415, 9), -- Bows
-(36304, 4416, 22), -- Defending Army
+(36304, 4408, 11), -- HP Modifiers
+(36304, 4409, 16), -- MP Modifiers
+(36304, 4410, 11), -- P. Atk. Modifiers
+(36304, 4411, 17), -- M. Atk. Modifiers
+(36304, 4412, 11), -- P. Def. Modifiers
+(36304, 4413, 8), -- M. Def. Modifiers
+(36304, 4414, 2), -- Armor Type
+(36304, 4415, 9), -- Weapon Type
+(36304, 4416, 22), -- Races
 (36304, 5432, 1), -- Weapon Supply
-(36304, 5461, 6), -- Power Shot
-(36304, 5468, 6), -- Fire Shot
+(36304, 5461, 6), -- Castle Gunner Shot
+(36304, 5468, 6), -- Castle Gunner Fire
 -- Guard Captain
 (36305, 4045, 1), -- Resist Full Magic Attack
 (36305, 4172, 6), -- Stun
-(36305, 4408, 9), -- HP Increase (1/2x)
-(36305, 4409, 1), -- MP Increase (1x)
-(36305, 4410, 8), -- Weak P. Atk.
-(36305, 4411, 11), -- Average M. Atk.
-(36305, 4412, 16), -- Very Strong P. Def.
-(36305, 4413, 11), -- Average M. Def.
-(36305, 4414, 2), -- Standard Type
-(36305, 4415, 3), -- One-handed Sword
-(36305, 4416, 22), -- Defending Army
+(36305, 4408, 9), -- HP Modifiers
+(36305, 4409, 1), -- MP Modifiers
+(36305, 4410, 8), -- P. Atk. Modifiers
+(36305, 4411, 11), -- M. Atk. Modifiers
+(36305, 4412, 16), -- P. Def. Modifiers
+(36305, 4413, 11), -- M. Def. Modifiers
+(36305, 4414, 2), -- Armor Type
+(36305, 4415, 3), -- Weapon Type
+(36305, 4416, 22), -- Races
 (36305, 4435, 5), -- Greater Resist Stun
 (36305, 4439, 5), -- Greater Resist Hold
 (36305, 4440, 5), -- Greater Resist Paralysis
-(36305, 4608, 1), -- Berserker Spirit
+(36305, 4608, 1), -- NPC Clan Buff - Berserk
 (36305, 5432, 1), -- Weapon Supply
-(36305, 5457, 1), -- Complete Recovery
+(36305, 5457, 1), -- NPC Full Recover
 -- Guard
 (36306, 4045, 1), -- Resist Full Magic Attack
-(36306, 4408, 13), -- HP Increase (5x)
-(36306, 4409, 1), -- MP Increase (1x)
-(36306, 4410, 9), -- Slightly Weak P. Atk.
-(36306, 4411, 11), -- Average M. Atk.
-(36306, 4412, 16), -- Very Strong P. Def.
-(36306, 4413, 11), -- Average M. Def.
-(36306, 4414, 2), -- Standard Type
-(36306, 4415, 3), -- One-handed Sword
-(36306, 4416, 22), -- Defending Army
+(36306, 4408, 13), -- HP Modifiers
+(36306, 4409, 1), -- MP Modifiers
+(36306, 4410, 9), -- P. Atk. Modifiers
+(36306, 4411, 11), -- M. Atk. Modifiers
+(36306, 4412, 16), -- P. Def. Modifiers
+(36306, 4413, 11), -- M. Def. Modifiers
+(36306, 4414, 2), -- Armor Type
+(36306, 4415, 3), -- Weapon Type
+(36306, 4416, 22), -- Races
 (36306, 5112, 6), -- Stun
 (36306, 5432, 1), -- Weapon Supply
 -- Guard
 (36307, 4045, 1), -- Resist Full Magic Attack
-(36307, 4408, 13), -- HP Increase (5x)
-(36307, 4409, 1), -- MP Increase (1x)
-(36307, 4410, 9), -- Slightly Weak P. Atk.
-(36307, 4411, 11), -- Average M. Atk.
-(36307, 4412, 11), -- Average P. Def.
-(36307, 4413, 16), -- Very Strong M. Def.
-(36307, 4414, 2), -- Standard Type
-(36307, 4415, 3), -- One-handed Sword
-(36307, 4416, 22), -- Defending Army
-(36307, 5045, 6), -- Power Strike
+(36307, 4408, 13), -- HP Modifiers
+(36307, 4409, 1), -- MP Modifiers
+(36307, 4410, 9), -- P. Atk. Modifiers
+(36307, 4411, 11), -- M. Atk. Modifiers
+(36307, 4412, 11), -- P. Def. Modifiers
+(36307, 4413, 16), -- M. Def. Modifiers
+(36307, 4414, 2), -- Armor Type
+(36307, 4415, 3), -- Weapon Type
+(36307, 4416, 22), -- Races
+(36307, 5045, 6), -- Castle Power Strike
 (36307, 5432, 1), -- Weapon Supply
 -- Support Unit Captain
 (36308, 4045, 1), -- Resist Full Magic Attack
-(36308, 4194, 6), -- Aura Burn
-(36308, 4196, 6), -- Decrease Speed
-(36308, 4408, 9), -- HP Increase (1/2x)
-(36308, 4409, 16), -- MP Increase (8x)
-(36308, 4410, 11), -- Average P. Atk.
-(36308, 4411, 14), -- Strong M. Atk.
-(36308, 4412, 8), -- Weak P. Def.
-(36308, 4413, 14), -- Strong M. Def.
-(36308, 4414, 3), -- Light Armor Type
-(36308, 4415, 3), -- One-handed Sword
-(36308, 4416, 22), -- Defending Army
-(36308, 5396, 1), -- Spell Force
-(36308, 5398, 1), -- Final Burn
+(36308, 4194, 6), -- BOSS Aura Burn
+(36308, 4196, 6), -- Decreases Speed
+(36308, 4408, 9), -- HP Modifiers
+(36308, 4409, 16), -- MP Modifiers
+(36308, 4410, 11), -- P. Atk. Modifiers
+(36308, 4411, 14), -- M. Atk. Modifiers
+(36308, 4412, 8), -- P. Def. Modifiers
+(36308, 4413, 14), -- M. Def. Modifiers
+(36308, 4414, 3), -- Armor Type
+(36308, 4415, 3), -- Weapon Type
+(36308, 4416, 22), -- Races
+(36308, 5396, 1), -- NPC - Spell Stance
+(36308, 5398, 1), -- NPC - Combination Force
 (36308, 5432, 1), -- Weapon Supply
-(36308, 5457, 1), -- Complete Recovery
+(36308, 5457, 1), -- NPC Full Recover
 -- Wizard
 (36309, 4045, 1), -- Resist Full Magic Attack
-(36309, 4077, 6), -- Aura Burn
-(36309, 4408, 13), -- HP Increase (5x)
-(36309, 4409, 16), -- MP Increase (8x)
-(36309, 4410, 11), -- Average P. Atk.
-(36309, 4411, 16), -- Very Strong M. Atk.
-(36309, 4412, 8), -- Weak P. Def.
-(36309, 4413, 11), -- Average M. Def.
-(36309, 4414, 3), -- Light Armor Type
-(36309, 4415, 3), -- One-handed Sword
-(36309, 4416, 22), -- Defending Army
-(36309, 5053, 6), -- Hydro Blast
-(36309, 5396, 1), -- Spell Force
+(36309, 4077, 6), -- NPC Aura Burn
+(36309, 4408, 13), -- HP Modifiers
+(36309, 4409, 16), -- MP Modifiers
+(36309, 4410, 11), -- P. Atk. Modifiers
+(36309, 4411, 16), -- M. Atk. Modifiers
+(36309, 4412, 8), -- P. Def. Modifiers
+(36309, 4413, 11), -- M. Def. Modifiers
+(36309, 4414, 3), -- Armor Type
+(36309, 4415, 3), -- Weapon Type
+(36309, 4416, 22), -- Races
+(36309, 5053, 6), -- Castle DD Water
+(36309, 5396, 1), -- NPC - Spell Stance
 (36309, 5432, 1), -- Weapon Supply
 -- Healer
 (36310, 4045, 1), -- Resist Full Magic Attack
 (36310, 4115, 1), -- Aden Heal
-(36310, 4408, 15), -- HP Increase (7x)
-(36310, 4409, 16), -- MP Increase (8x)
-(36310, 4410, 11), -- Average P. Atk.
-(36310, 4411, 17), -- Very Strong M. Atk.
-(36310, 4412, 11), -- Average P. Def.
-(36310, 4413, 16), -- Very Strong M. Def.
-(36310, 4414, 3), -- Light Armor Type
-(36310, 4415, 3), -- One-handed Sword
-(36310, 4416, 22), -- Defending Army
+(36310, 4408, 15), -- HP Modifiers
+(36310, 4409, 16), -- MP Modifiers
+(36310, 4410, 11), -- P. Atk. Modifiers
+(36310, 4411, 17), -- M. Atk. Modifiers
+(36310, 4412, 11), -- P. Def. Modifiers
+(36310, 4413, 16), -- M. Def. Modifiers
+(36310, 4414, 3), -- Armor Type
+(36310, 4415, 3), -- Weapon Type
+(36310, 4416, 22), -- Races
 (36310, 5114, 6), -- Hold
 (36310, 5432, 1), -- Weapon Supply
 -- Archer Captain
 (36311, 4045, 1), -- Resist Full Magic Attack
-(36311, 4408, 9), -- HP Increase (1/2x)
-(36311, 4409, 1), -- MP Increase (1x)
-(36311, 4410, 16), -- Very Strong P. Atk.
-(36311, 4411, 11), -- Average M. Atk.
-(36311, 4412, 8), -- Weak P. Def.
-(36311, 4413, 11), -- Average M. Def.
-(36311, 4414, 3), -- Light Armor Type
-(36311, 4415, 9), -- Bows
-(36311, 4416, 22), -- Defending Army
-(36311, 4755, 6), -- Power Shot
+(36311, 4408, 9), -- HP Modifiers
+(36311, 4409, 1), -- MP Modifiers
+(36311, 4410, 16), -- P. Atk. Modifiers
+(36311, 4411, 11), -- M. Atk. Modifiers
+(36311, 4412, 8), -- P. Def. Modifiers
+(36311, 4413, 11), -- M. Def. Modifiers
+(36311, 4414, 3), -- Armor Type
+(36311, 4415, 9), -- Weapon Type
+(36311, 4416, 22), -- Races
+(36311, 4755, 6), -- BOSS Power Shot
 (36311, 5432, 1), -- Weapon Supply
-(36311, 5457, 1), -- Complete Recovery
+(36311, 5457, 1), -- NPC Full Recover
 -- Archer
 (36312, 4045, 1), -- Resist Full Magic Attack
-(36312, 4408, 13), -- HP Increase (5x)
-(36312, 4409, 1), -- MP Increase (1x)
-(36312, 4410, 14), -- Strong P. Atk.
-(36312, 4411, 11), -- Average M. Atk.
-(36312, 4412, 8), -- Weak P. Def.
-(36312, 4413, 11), -- Average M. Def.
-(36312, 4414, 3), -- Light Armor Type
-(36312, 4415, 9), -- Bows
-(36312, 4416, 22), -- Defending Army
-(36312, 5046, 6), -- Power Shot
+(36312, 4408, 13), -- HP Modifiers
+(36312, 4409, 1), -- MP Modifiers
+(36312, 4410, 14), -- P. Atk. Modifiers
+(36312, 4411, 11), -- M. Atk. Modifiers
+(36312, 4412, 8), -- P. Def. Modifiers
+(36312, 4413, 11), -- M. Def. Modifiers
+(36312, 4414, 3), -- Armor Type
+(36312, 4415, 9), -- Weapon Type
+(36312, 4416, 22), -- Races
+(36312, 5046, 6), -- Castle Power Shot
 (36312, 5432, 1), -- Weapon Supply
 -- Ballista
 (36313, 2342, 1), -- Ballista Bomb
 (36313, 4045, 1), -- Resist Full Magic Attack
-(36313, 4408, 16), -- HP Increase (8x)
-(36313, 4409, 1), -- MP Increase (1x)
-(36313, 4410, 11), -- Average P. Atk.
-(36313, 4411, 11), -- Average M. Atk.
-(36313, 4412, 11), -- Average P. Def.
-(36313, 4413, 11), -- Average M. Def.
-(36313, 4414, 2), -- Standard Type
-(36313, 4415, 3), -- One-handed Sword
-(36313, 4416, 22), -- Defending Army
+(36313, 4408, 16), -- HP Modifiers
+(36313, 4409, 1), -- MP Modifiers
+(36313, 4410, 11), -- P. Atk. Modifiers
+(36313, 4411, 11), -- M. Atk. Modifiers
+(36313, 4412, 11), -- P. Def. Modifiers
+(36313, 4413, 11), -- M. Def. Modifiers
+(36313, 4414, 2), -- Armor Type
+(36313, 4415, 3), -- Weapon Type
+(36313, 4416, 22), -- Races
 -- Mercenary Captain
 (36314, 4045, 1), -- Resist Full Magic Attack
-(36314, 4408, 11), -- HP Increase (3x)
-(36314, 4409, 1), -- MP Increase (1x)
-(36314, 4410, 11), -- Average P. Atk.
-(36314, 4411, 11), -- Average M. Atk.
-(36314, 4412, 11), -- Average P. Def.
-(36314, 4413, 11), -- Average M. Def.
-(36314, 4414, 2), -- Standard Type
-(36314, 4415, 3), -- One-handed Sword
-(36314, 4416, 14), -- Humans
+(36314, 4408, 11), -- HP Modifiers
+(36314, 4409, 1), -- MP Modifiers
+(36314, 4410, 11), -- P. Atk. Modifiers
+(36314, 4411, 11), -- M. Atk. Modifiers
+(36314, 4412, 11), -- P. Def. Modifiers
+(36314, 4413, 11), -- M. Def. Modifiers
+(36314, 4414, 2), -- Armor Type
+(36314, 4415, 3), -- Weapon Type
+(36314, 4416, 14), -- Races
 -- Mercenary Private
 (36315, 4045, 1), -- Resist Full Magic Attack
-(36315, 4408, 11), -- HP Increase (3x)
-(36315, 4409, 1), -- MP Increase (1x)
-(36315, 4410, 13), -- Slightly Strong P. Atk.
-(36315, 4411, 11), -- Average M. Atk.
-(36315, 4412, 11), -- Average P. Def.
-(36315, 4413, 11), -- Average M. Def.
-(36315, 4414, 2), -- Standard Type
-(36315, 4415, 11), -- Spears
-(36315, 4416, 17), -- Orcs
+(36315, 4408, 11), -- HP Modifiers
+(36315, 4409, 1), -- MP Modifiers
+(36315, 4410, 13), -- P. Atk. Modifiers
+(36315, 4411, 11), -- M. Atk. Modifiers
+(36315, 4412, 11), -- P. Def. Modifiers
+(36315, 4413, 11), -- M. Def. Modifiers
+(36315, 4414, 2), -- Armor Type
+(36315, 4415, 11), -- Weapon Type
+(36315, 4416, 17), -- Races
 -- Flagpole
 (36316, 4045, 1), -- Resist Full Magic Attack
-(36316, 4408, 1), -- HP Increase (1x)
-(36316, 4409, 1), -- MP Increase (1x)
-(36316, 4410, 11), -- Average P. Atk.
-(36316, 4411, 11), -- Average M. Atk.
-(36316, 4412, 11), -- Average P. Def.
-(36316, 4413, 11), -- Average M. Def.
-(36316, 4414, 2), -- Standard Type
-(36316, 4415, 3), -- One-handed Sword
-(36316, 4416, 19), -- Others
+(36316, 4408, 1), -- HP Modifiers
+(36316, 4409, 1), -- MP Modifiers
+(36316, 4410, 11), -- P. Atk. Modifiers
+(36316, 4411, 11), -- M. Atk. Modifiers
+(36316, 4412, 11), -- P. Def. Modifiers
+(36316, 4413, 11), -- M. Def. Modifiers
+(36316, 4414, 2), -- Armor Type
+(36316, 4415, 3), -- Weapon Type
+(36316, 4416, 19), -- Races
 -- Foreman
 (36317, 4045, 1), -- Resist Full Magic Attack
-(36317, 4408, 1), -- HP Increase (1x)
-(36317, 4409, 1), -- MP Increase (1x)
-(36317, 4410, 11), -- Average P. Atk.
-(36317, 4411, 11), -- Average M. Atk.
-(36317, 4412, 11), -- Average P. Def.
-(36317, 4413, 11), -- Average M. Def.
-(36317, 4414, 2), -- Standard Type
-(36317, 4415, 3), -- One-handed Sword
-(36317, 4416, 14), -- Humans
+(36317, 4408, 1), -- HP Modifiers
+(36317, 4409, 1), -- MP Modifiers
+(36317, 4410, 11), -- P. Atk. Modifiers
+(36317, 4411, 11), -- M. Atk. Modifiers
+(36317, 4412, 11), -- P. Def. Modifiers
+(36317, 4413, 11), -- M. Def. Modifiers
+(36317, 4414, 2), -- Armor Type
+(36317, 4415, 3), -- Weapon Type
+(36317, 4416, 14), -- Races
 -- Suspicious Merchant
 (36318, 4045, 1), -- Resist Full Magic Attack
-(36318, 4408, 1), -- HP Increase (1x)
-(36318, 4409, 1), -- MP Increase (1x)
-(36318, 4410, 11), -- Average P. Atk.
-(36318, 4411, 11), -- Average M. Atk.
-(36318, 4412, 11), -- Average P. Def.
-(36318, 4413, 11), -- Average M. Def.
-(36318, 4414, 2), -- Standard Type
-(36318, 4415, 3), -- One-handed Sword
-(36318, 4416, 17), -- Orcs
+(36318, 4408, 1), -- HP Modifiers
+(36318, 4409, 1), -- MP Modifiers
+(36318, 4410, 11), -- P. Atk. Modifiers
+(36318, 4411, 11), -- M. Atk. Modifiers
+(36318, 4412, 11), -- P. Def. Modifiers
+(36318, 4413, 11), -- M. Def. Modifiers
+(36318, 4414, 2), -- Armor Type
+(36318, 4415, 3), -- Weapon Type
+(36318, 4416, 17), -- Races
 -- Guard Captain
 (36319, 4045, 1), -- Resist Full Magic Attack
-(36319, 4408, 1), -- HP Increase (1x)
-(36319, 4409, 1), -- MP Increase (1x)
-(36319, 4410, 11), -- Average P. Atk.
-(36319, 4411, 11), -- Average M. Atk.
-(36319, 4412, 11), -- Average P. Def.
-(36319, 4413, 11), -- Average M. Def.
-(36319, 4414, 2), -- Standard Type
-(36319, 4415, 3), -- One-handed Sword
-(36319, 4416, 14), -- Humans
+(36319, 4408, 1), -- HP Modifiers
+(36319, 4409, 1), -- MP Modifiers
+(36319, 4410, 11), -- P. Atk. Modifiers
+(36319, 4411, 11), -- M. Atk. Modifiers
+(36319, 4412, 11), -- P. Def. Modifiers
+(36319, 4413, 11), -- M. Def. Modifiers
+(36319, 4414, 2), -- Armor Type
+(36319, 4415, 3), -- Weapon Type
+(36319, 4416, 14), -- Races
 -- Archer Captain
 (36320, 4045, 1), -- Resist Full Magic Attack
-(36320, 4408, 1), -- HP Increase (1x)
-(36320, 4409, 1), -- MP Increase (1x)
-(36320, 4410, 11), -- Average P. Atk.
-(36320, 4411, 11), -- Average M. Atk.
-(36320, 4412, 11), -- Average P. Def.
-(36320, 4413, 11), -- Average M. Def.
-(36320, 4414, 2), -- Standard Type
-(36320, 4415, 9), -- Bows
-(36320, 4416, 15), -- Elves
+(36320, 4408, 1), -- HP Modifiers
+(36320, 4409, 1), -- MP Modifiers
+(36320, 4410, 11), -- P. Atk. Modifiers
+(36320, 4411, 11), -- M. Atk. Modifiers
+(36320, 4412, 11), -- P. Def. Modifiers
+(36320, 4413, 11), -- M. Def. Modifiers
+(36320, 4414, 2), -- Armor Type
+(36320, 4415, 9), -- Weapon Type
+(36320, 4416, 15), -- Races
 -- General
 (36321, 4045, 1), -- Resist Full Magic Attack
-(36321, 4408, 1), -- HP Increase (1x)
-(36321, 4409, 1), -- MP Increase (1x)
-(36321, 4410, 11), -- Average P. Atk.
-(36321, 4411, 11), -- Average M. Atk.
-(36321, 4412, 11), -- Average P. Def.
-(36321, 4413, 11), -- Average M. Def.
-(36321, 4414, 2), -- Standard Type
-(36321, 4415, 19), -- Dual-Sword Weapons
-(36321, 4416, 22), -- Defending Army
+(36321, 4408, 1), -- HP Modifiers
+(36321, 4409, 1), -- MP Modifiers
+(36321, 4410, 11), -- P. Atk. Modifiers
+(36321, 4411, 11), -- M. Atk. Modifiers
+(36321, 4412, 11), -- P. Def. Modifiers
+(36321, 4413, 11), -- M. Def. Modifiers
+(36321, 4414, 2), -- Armor Type
+(36321, 4415, 19), -- Weapon Type
+(36321, 4416, 22), -- Races
 -- Support Unit Captain
 (36322, 4045, 1), -- Resist Full Magic Attack
-(36322, 4408, 1), -- HP Increase (1x)
-(36322, 4409, 1), -- MP Increase (1x)
-(36322, 4410, 11), -- Average P. Atk.
-(36322, 4411, 11), -- Average M. Atk.
-(36322, 4412, 11), -- Average P. Def.
-(36322, 4413, 11), -- Average M. Def.
-(36322, 4414, 2), -- Standard Type
-(36322, 4415, 3), -- One-handed Sword
-(36322, 4416, 14), -- Humans
+(36322, 4408, 1), -- HP Modifiers
+(36322, 4409, 1), -- MP Modifiers
+(36322, 4410, 11), -- P. Atk. Modifiers
+(36322, 4411, 11), -- M. Atk. Modifiers
+(36322, 4412, 11), -- P. Def. Modifiers
+(36322, 4413, 11), -- M. Def. Modifiers
+(36322, 4414, 2), -- Armor Type
+(36322, 4415, 3), -- Weapon Type
+(36322, 4416, 14), -- Races
 -- Engineering Manager
 (36323, 4045, 1), -- Resist Full Magic Attack
-(36323, 4408, 1), -- HP Increase (1x)
-(36323, 4409, 1), -- MP Increase (1x)
-(36323, 4410, 11), -- Average P. Atk.
-(36323, 4411, 11), -- Average M. Atk.
-(36323, 4412, 11), -- Average P. Def.
-(36323, 4413, 11), -- Average M. Def.
-(36323, 4414, 2), -- Standard Type
-(36323, 4415, 3), -- One-handed Sword
-(36323, 4416, 18), -- Dwarves
+(36323, 4408, 1), -- HP Modifiers
+(36323, 4409, 1), -- MP Modifiers
+(36323, 4410, 11), -- P. Atk. Modifiers
+(36323, 4411, 11), -- M. Atk. Modifiers
+(36323, 4412, 11), -- P. Def. Modifiers
+(36323, 4413, 11), -- M. Def. Modifiers
+(36323, 4414, 2), -- Armor Type
+(36323, 4415, 3), -- Weapon Type
+(36323, 4416, 18), -- Races
 -- Logistics Officer
 (36324, 4045, 1), -- Resist Full Magic Attack
-(36324, 4408, 1), -- HP Increase (1x)
-(36324, 4409, 1), -- MP Increase (1x)
-(36324, 4410, 11), -- Average P. Atk.
-(36324, 4411, 11), -- Average M. Atk.
-(36324, 4412, 11), -- Average P. Def.
-(36324, 4413, 11), -- Average M. Def.
-(36324, 4414, 2), -- Standard Type
-(36324, 4415, 3), -- One-handed Sword
-(36324, 4416, 18), -- Dwarves
+(36324, 4408, 1), -- HP Modifiers
+(36324, 4409, 1), -- MP Modifiers
+(36324, 4410, 11), -- P. Atk. Modifiers
+(36324, 4411, 11), -- M. Atk. Modifiers
+(36324, 4412, 11), -- P. Def. Modifiers
+(36324, 4413, 11), -- M. Def. Modifiers
+(36324, 4414, 2), -- Armor Type
+(36324, 4415, 3), -- Weapon Type
+(36324, 4416, 18), -- Races
 -- Supply Box
 (36325, 4045, 1), -- Resist Full Magic Attack
-(36325, 4408, 1), -- HP Increase (1x)
-(36325, 4409, 1), -- MP Increase (1x)
-(36325, 4410, 11), -- Average P. Atk.
-(36325, 4411, 11), -- Average M. Atk.
-(36325, 4412, 11), -- Average P. Def.
-(36325, 4413, 11), -- Average M. Def.
-(36325, 4414, 2), -- Standard Type
-(36325, 4415, 3), -- One-handed Sword
-(36325, 4416, 2), -- Magic Creatures
+(36325, 4408, 1), -- HP Modifiers
+(36325, 4409, 1), -- MP Modifiers
+(36325, 4410, 11), -- P. Atk. Modifiers
+(36325, 4411, 11), -- M. Atk. Modifiers
+(36325, 4412, 11), -- P. Def. Modifiers
+(36325, 4413, 11), -- M. Def. Modifiers
+(36325, 4414, 2), -- Armor Type
+(36325, 4415, 3), -- Weapon Type
+(36325, 4416, 2), -- Races
 -- Detention Camp Warden
 (36326, 4045, 1), -- Resist Full Magic Attack
-(36326, 4408, 1), -- HP Increase (1x)
-(36326, 4409, 1), -- MP Increase (1x)
-(36326, 4410, 11), -- Average P. Atk.
-(36326, 4411, 11), -- Average M. Atk.
-(36326, 4412, 11), -- Average P. Def.
-(36326, 4413, 11), -- Average M. Def.
-(36326, 4414, 2), -- Standard Type
-(36326, 4415, 3), -- One-handed Sword
-(36326, 4416, 14), -- Humans
+(36326, 4408, 1), -- HP Modifiers
+(36326, 4409, 1), -- MP Modifiers
+(36326, 4410, 11), -- P. Atk. Modifiers
+(36326, 4411, 11), -- M. Atk. Modifiers
+(36326, 4412, 11), -- P. Def. Modifiers
+(36326, 4413, 11), -- M. Def. Modifiers
+(36326, 4414, 2), -- Armor Type
+(36326, 4415, 3), -- Weapon Type
+(36326, 4416, 14), -- Races
 -- Doorman
 (36327, 4045, 1), -- Resist Full Magic Attack
-(36327, 4408, 1), -- HP Increase (1x)
-(36327, 4409, 1), -- MP Increase (1x)
-(36327, 4410, 11), -- Average P. Atk.
-(36327, 4411, 11), -- Average M. Atk.
-(36327, 4412, 11), -- Average P. Def.
-(36327, 4413, 11), -- Average M. Def.
-(36327, 4414, 2), -- Standard Type
-(36327, 4415, 3), -- One-handed Sword
-(36327, 4416, 14), -- Humans
+(36327, 4408, 1), -- HP Modifiers
+(36327, 4409, 1), -- MP Modifiers
+(36327, 4410, 11), -- P. Atk. Modifiers
+(36327, 4411, 11), -- M. Atk. Modifiers
+(36327, 4412, 11), -- P. Def. Modifiers
+(36327, 4413, 11), -- M. Def. Modifiers
+(36327, 4414, 2), -- Armor Type
+(36327, 4415, 3), -- Weapon Type
+(36327, 4416, 14), -- Races
 -- Doorman
 (36328, 4045, 1), -- Resist Full Magic Attack
-(36328, 4408, 1), -- HP Increase (1x)
-(36328, 4409, 1), -- MP Increase (1x)
-(36328, 4410, 11), -- Average P. Atk.
-(36328, 4411, 11), -- Average M. Atk.
-(36328, 4412, 11), -- Average P. Def.
-(36328, 4413, 11), -- Average M. Def.
-(36328, 4414, 2), -- Standard Type
-(36328, 4415, 3), -- One-handed Sword
-(36328, 4416, 14), -- Humans
+(36328, 4408, 1), -- HP Modifiers
+(36328, 4409, 1), -- MP Modifiers
+(36328, 4410, 11), -- P. Atk. Modifiers
+(36328, 4411, 11), -- M. Atk. Modifiers
+(36328, 4412, 11), -- P. Def. Modifiers
+(36328, 4413, 11), -- M. Def. Modifiers
+(36328, 4414, 2), -- Armor Type
+(36328, 4415, 3), -- Weapon Type
+(36328, 4416, 14), -- Races
 -- Doorman
 (36329, 4045, 1), -- Resist Full Magic Attack
-(36329, 4408, 1), -- HP Increase (1x)
-(36329, 4409, 1), -- MP Increase (1x)
-(36329, 4410, 11), -- Average P. Atk.
-(36329, 4411, 11), -- Average M. Atk.
-(36329, 4412, 11), -- Average P. Def.
-(36329, 4413, 11), -- Average M. Def.
-(36329, 4414, 2), -- Standard Type
-(36329, 4415, 3), -- One-handed Sword
-(36329, 4416, 14), -- Humans
+(36329, 4408, 1), -- HP Modifiers
+(36329, 4409, 1), -- MP Modifiers
+(36329, 4410, 11), -- P. Atk. Modifiers
+(36329, 4411, 11), -- M. Atk. Modifiers
+(36329, 4412, 11), -- P. Def. Modifiers
+(36329, 4413, 11), -- M. Def. Modifiers
+(36329, 4414, 2), -- Armor Type
+(36329, 4415, 3), -- Weapon Type
+(36329, 4416, 14), -- Races
 -- Rebel Commander
 (36330, 4045, 1), -- Resist Full Magic Attack
-(36330, 4178, 7), -- Flame Strike
-(36330, 4195, 7), -- Twister
-(36330, 4408, 10), -- HP Increase (2x)
-(36330, 4409, 1), -- MP Increase (1x)
-(36330, 4410, 11), -- Average P. Atk.
-(36330, 4411, 17), -- Very Strong M. Atk.
-(36330, 4412, 11), -- Average P. Def.
-(36330, 4413, 11), -- Average M. Def.
-(36330, 4414, 2), -- Standard Type
-(36330, 4415, 3), -- One-handed Sword
-(36330, 4416, 16), -- Dark Elves
+(36330, 4178, 7), -- BOSS Flame Strike
+(36330, 4195, 7), -- BOSS Twister
+(36330, 4408, 10), -- HP Modifiers
+(36330, 4409, 1), -- MP Modifiers
+(36330, 4410, 11), -- P. Atk. Modifiers
+(36330, 4411, 17), -- M. Atk. Modifiers
+(36330, 4412, 11), -- P. Def. Modifiers
+(36330, 4413, 11), -- M. Def. Modifiers
+(36330, 4414, 2), -- Armor Type
+(36330, 4415, 3), -- Weapon Type
+(36330, 4416, 16), -- Races
 -- Decorated Rebel Soldier
 (36331, 4045, 1), -- Resist Full Magic Attack
-(36331, 4408, 14), -- HP Increase (6x)
-(36331, 4409, 1), -- MP Increase (1x)
-(36331, 4410, 15), -- Strong P. Atk.
-(36331, 4411, 11), -- Average M. Atk.
-(36331, 4412, 11), -- Average P. Def.
-(36331, 4413, 15), -- Strong M. Def.
-(36331, 4414, 2), -- Standard Type
-(36331, 4415, 1), -- Bare Hands
-(36331, 4416, 9), -- Demons
-(36331, 5065, 7), -- Unholy Strike
+(36331, 4408, 14), -- HP Modifiers
+(36331, 4409, 1), -- MP Modifiers
+(36331, 4410, 15), -- P. Atk. Modifiers
+(36331, 4411, 11), -- M. Atk. Modifiers
+(36331, 4412, 11), -- P. Def. Modifiers
+(36331, 4413, 15), -- M. Def. Modifiers
+(36331, 4414, 2), -- Armor Type
+(36331, 4415, 1), -- Weapon Type
+(36331, 4416, 9), -- Races
+(36331, 5065, 7), -- Castle DD Unholy
 -- Rebel Private
 (36332, 4045, 1), -- Resist Full Magic Attack
-(36332, 4408, 12), -- HP Increase (4x)
-(36332, 4409, 1), -- MP Increase (1x)
-(36332, 4410, 14), -- Strong P. Atk.
-(36332, 4411, 11), -- Average M. Atk.
-(36332, 4412, 11), -- Average P. Def.
-(36332, 4413, 11), -- Average M. Def.
-(36332, 4414, 2), -- Standard Type
-(36332, 4415, 11), -- Spears
-(36332, 4416, 14), -- Humans
+(36332, 4408, 12), -- HP Modifiers
+(36332, 4409, 1), -- MP Modifiers
+(36332, 4410, 14), -- P. Atk. Modifiers
+(36332, 4411, 11), -- M. Atk. Modifiers
+(36332, 4412, 11), -- P. Def. Modifiers
+(36332, 4413, 11), -- M. Def. Modifiers
+(36332, 4414, 2), -- Armor Type
+(36332, 4415, 11), -- Weapon Type
+(36332, 4416, 14), -- Races
 -- Court Guard
 (36333, 4045, 1), -- Resist Full Magic Attack
-(36333, 4408, 12), -- HP Increase (4x)
-(36333, 4409, 1), -- MP Increase (1x)
-(36333, 4410, 11), -- Average P. Atk.
-(36333, 4411, 11), -- Average M. Atk.
-(36333, 4412, 11), -- Average P. Def.
-(36333, 4413, 16), -- Very Strong M. Def.
-(36333, 4414, 2), -- Standard Type
-(36333, 4415, 11), -- Spears
-(36333, 4416, 22), -- Defending Army
+(36333, 4408, 12), -- HP Modifiers
+(36333, 4409, 1); -- MP Modifiers
+
+INSERT INTO `npcskills` VALUES
+(36333, 4410, 11), -- P. Atk. Modifiers
+(36333, 4411, 11), -- M. Atk. Modifiers
+(36333, 4412, 11), -- P. Def. Modifiers
+(36333, 4413, 16), -- M. Def. Modifiers
+(36333, 4414, 2), -- Armor Type
+(36333, 4415, 11), -- Weapon Type
+(36333, 4416, 22), -- Races
 (36333, 5432, 1), -- Weapon Supply
 -- Guard
 (36334, 4045, 1), -- Resist Full Magic Attack
-(36334, 4408, 12), -- HP Increase (4x)
-(36334, 4409, 1), -- MP Increase (1x)
-(36334, 4410, 15), -- Strong P. Atk.
-(36334, 4411, 11), -- Average M. Atk.
-(36334, 4412, 11), -- Average P. Def.
-(36334, 4413, 11), -- Average M. Def.
-(36334, 4414, 3), -- Light Armor Type
-(36334, 4415, 9), -- Bows
-(36334, 4416, 22), -- Defending Army
+(36334, 4408, 12), -- HP Modifiers
+(36334, 4409, 1), -- MP Modifiers
+(36334, 4410, 15), -- P. Atk. Modifiers
+(36334, 4411, 11), -- M. Atk. Modifiers
+(36334, 4412, 11), -- P. Def. Modifiers
+(36334, 4413, 11), -- M. Def. Modifiers
+(36334, 4414, 3), -- Armor Type
+(36334, 4415, 9), -- Weapon Type
+(36334, 4416, 22), -- Races
 (36334, 5432, 1), -- Weapon Supply
 -- Main Machine
 (36335, 4045, 1), -- Resist Full Magic Attack
-(36335, 4408, 1), -- HP Increase (1x)
-(36335, 4409, 1), -- MP Increase (1x)
-(36335, 4410, 11), -- Average P. Atk.
-(36335, 4411, 11), -- Average M. Atk.
-(36335, 4412, 11), -- Average P. Def.
-(36335, 4413, 11), -- Average M. Def.
-(36335, 4414, 2), -- Standard Type
-(36335, 4415, 3), -- One-handed Sword
-(36335, 4416, 19), -- Others
+(36335, 4408, 1), -- HP Modifiers
+(36335, 4409, 1), -- MP Modifiers
+(36335, 4410, 11), -- P. Atk. Modifiers
+(36335, 4411, 11), -- M. Atk. Modifiers
+(36335, 4412, 11), -- P. Def. Modifiers
+(36335, 4413, 11), -- M. Def. Modifiers
+(36335, 4414, 2), -- Armor Type
+(36335, 4415, 3), -- Weapon Type
+(36335, 4416, 19), -- Races
 -- Backup Power Unit
 (36336, 4045, 1), -- Resist Full Magic Attack
-(36336, 4408, 1), -- HP Increase (1x)
-(36336, 4409, 1), -- MP Increase (1x)
-(36336, 4410, 11), -- Average P. Atk.
-(36336, 4411, 11), -- Average M. Atk.
-(36336, 4412, 11), -- Average P. Def.
-(36336, 4413, 11), -- Average M. Def.
-(36336, 4414, 2), -- Standard Type
-(36336, 4415, 3), -- One-handed Sword
-(36336, 4416, 19), -- Others
+(36336, 4408, 1), -- HP Modifiers
+(36336, 4409, 1), -- MP Modifiers
+(36336, 4410, 11), -- P. Atk. Modifiers
+(36336, 4411, 11), -- M. Atk. Modifiers
+(36336, 4412, 11), -- P. Def. Modifiers
+(36336, 4413, 11), -- M. Def. Modifiers
+(36336, 4414, 2), -- Armor Type
+(36336, 4415, 3), -- Weapon Type
+(36336, 4416, 19), -- Races
 -- Control Unit
 (36337, 4045, 1), -- Resist Full Magic Attack
-(36337, 4408, 1), -- HP Increase (1x)
-(36337, 4409, 1), -- MP Increase (1x)
-(36337, 4410, 11), -- Average P. Atk.
-(36337, 4411, 11), -- Average M. Atk.
-(36337, 4412, 11), -- Average P. Def.
-(36337, 4413, 11), -- Average M. Def.
-(36337, 4414, 2), -- Standard Type
-(36337, 4415, 3), -- One-handed Sword
-(36337, 4416, 2), -- Magic Creatures
+(36337, 4408, 1), -- HP Modifiers
+(36337, 4409, 1), -- MP Modifiers
+(36337, 4410, 11), -- P. Atk. Modifiers
+(36337, 4411, 11), -- M. Atk. Modifiers
+(36337, 4412, 11), -- P. Def. Modifiers
+(36337, 4413, 11), -- M. Def. Modifiers
+(36337, 4414, 2), -- Armor Type
+(36337, 4415, 3), -- Weapon Type
+(36337, 4416, 2), -- Races
 -- Power Control Unit
 (36338, 4045, 1), -- Resist Full Magic Attack
-(36338, 4408, 1), -- HP Increase (1x)
-(36338, 4409, 1), -- MP Increase (1x)
-(36338, 4410, 11), -- Average P. Atk.
-(36338, 4411, 11), -- Average M. Atk.
-(36338, 4412, 11), -- Average P. Def.
-(36338, 4413, 11), -- Average M. Def.
-(36338, 4414, 2), -- Standard Type
-(36338, 4415, 3), -- One-handed Sword
-(36338, 4416, 19), -- Others
+(36338, 4408, 1), -- HP Modifiers
+(36338, 4409, 1), -- MP Modifiers
+(36338, 4410, 11), -- P. Atk. Modifiers
+(36338, 4411, 11), -- M. Atk. Modifiers
+(36338, 4412, 11), -- P. Def. Modifiers
+(36338, 4413, 11), -- M. Def. Modifiers
+(36338, 4414, 2), -- Armor Type
+(36338, 4415, 3), -- Weapon Type
+(36338, 4416, 19), -- Races
 -- Dwarven Gunnery Sergeant
 (36339, 4045, 1), -- Resist Full Magic Attack
-(36339, 4408, 11), -- HP Increase (3x)
-(36339, 4409, 16), -- MP Increase (8x)
-(36339, 4410, 11), -- Average P. Atk.
-(36339, 4411, 17), -- Very Strong M. Atk.
-(36339, 4412, 11), -- Average P. Def.
-(36339, 4413, 8), -- Weak M. Def.
-(36339, 4414, 2), -- Standard Type
-(36339, 4415, 9), -- Bows
-(36339, 4416, 22), -- Defending Army
+(36339, 4408, 11), -- HP Modifiers
+(36339, 4409, 16), -- MP Modifiers
+(36339, 4410, 11), -- P. Atk. Modifiers
+(36339, 4411, 17), -- M. Atk. Modifiers
+(36339, 4412, 11), -- P. Def. Modifiers
+(36339, 4413, 8), -- M. Def. Modifiers
+(36339, 4414, 2), -- Armor Type
+(36339, 4415, 9), -- Weapon Type
+(36339, 4416, 22), -- Races
 (36339, 5432, 1), -- Weapon Supply
-(36339, 5461, 6), -- Power Shot
-(36339, 5468, 6), -- Fire Shot
+(36339, 5461, 6), -- Castle Gunner Shot
+(36339, 5468, 6), -- Castle Gunner Fire
 -- Scout Golem
 (36340, 4045, 1), -- Resist Full Magic Attack
-(36340, 4408, 6), -- HP Very High
-(36340, 4409, 1), -- MP Increase (1x)
-(36340, 4410, 11), -- Average P. Atk.
-(36340, 4411, 11), -- Average M. Atk.
-(36340, 4412, 11), -- Average P. Def.
-(36340, 4413, 16), -- Very Strong M. Def.
-(36340, 4414, 2), -- Standard Type
-(36340, 4415, 3), -- One-handed Sword
-(36340, 4416, 22), -- Defending Army
+(36340, 4408, 6), -- HP Modifiers
+(36340, 4409, 1), -- MP Modifiers
+(36340, 4410, 11), -- P. Atk. Modifiers
+(36340, 4411, 11), -- M. Atk. Modifiers
+(36340, 4412, 11), -- P. Def. Modifiers
+(36340, 4413, 16), -- M. Def. Modifiers
+(36340, 4414, 2), -- Armor Type
+(36340, 4415, 3), -- Weapon Type
+(36340, 4416, 22), -- Races
 -- Guard Captain
 (36341, 4045, 1), -- Resist Full Magic Attack
 (36341, 4172, 6), -- Stun
-(36341, 4408, 9), -- HP Increase (1/2x)
-(36341, 4409, 1), -- MP Increase (1x)
-(36341, 4410, 8), -- Weak P. Atk.
-(36341, 4411, 11), -- Average M. Atk.
-(36341, 4412, 16), -- Very Strong P. Def.
-(36341, 4413, 11), -- Average M. Def.
-(36341, 4414, 2), -- Standard Type
-(36341, 4415, 3), -- One-handed Sword
-(36341, 4416, 22), -- Defending Army
+(36341, 4408, 9), -- HP Modifiers
+(36341, 4409, 1), -- MP Modifiers
+(36341, 4410, 8), -- P. Atk. Modifiers
+(36341, 4411, 11), -- M. Atk. Modifiers
+(36341, 4412, 16), -- P. Def. Modifiers
+(36341, 4413, 11), -- M. Def. Modifiers
+(36341, 4414, 2), -- Armor Type
+(36341, 4415, 3), -- Weapon Type
+(36341, 4416, 22), -- Races
 (36341, 4435, 5), -- Greater Resist Stun
 (36341, 4439, 5), -- Greater Resist Hold
 (36341, 4440, 5), -- Greater Resist Paralysis
-(36341, 4608, 1), -- Berserker Spirit
+(36341, 4608, 1), -- NPC Clan Buff - Berserk
 (36341, 5432, 1), -- Weapon Supply
-(36341, 5457, 1), -- Complete Recovery
+(36341, 5457, 1), -- NPC Full Recover
 -- Guard
 (36342, 4045, 1), -- Resist Full Magic Attack
-(36342, 4408, 13), -- HP Increase (5x)
-(36342, 4409, 1), -- MP Increase (1x)
-(36342, 4410, 9), -- Slightly Weak P. Atk.
-(36342, 4411, 11), -- Average M. Atk.
-(36342, 4412, 16), -- Very Strong P. Def.
-(36342, 4413, 11), -- Average M. Def.
-(36342, 4414, 2), -- Standard Type
-(36342, 4415, 3), -- One-handed Sword
-(36342, 4416, 22), -- Defending Army
+(36342, 4408, 13), -- HP Modifiers
+(36342, 4409, 1), -- MP Modifiers
+(36342, 4410, 9), -- P. Atk. Modifiers
+(36342, 4411, 11), -- M. Atk. Modifiers
+(36342, 4412, 16), -- P. Def. Modifiers
+(36342, 4413, 11), -- M. Def. Modifiers
+(36342, 4414, 2), -- Armor Type
+(36342, 4415, 3), -- Weapon Type
+(36342, 4416, 22), -- Races
 (36342, 5112, 6), -- Stun
 (36342, 5432, 1), -- Weapon Supply
 -- Guard
 (36343, 4045, 1), -- Resist Full Magic Attack
-(36343, 4408, 13), -- HP Increase (5x)
-(36343, 4409, 1), -- MP Increase (1x)
-(36343, 4410, 9), -- Slightly Weak P. Atk.
-(36343, 4411, 11), -- Average M. Atk.
-(36343, 4412, 11), -- Average P. Def.
-(36343, 4413, 16), -- Very Strong M. Def.
-(36343, 4414, 2), -- Standard Type
-(36343, 4415, 3), -- One-handed Sword
-(36343, 4416, 22), -- Defending Army
-(36343, 5045, 6), -- Power Strike
+(36343, 4408, 13), -- HP Modifiers
+(36343, 4409, 1), -- MP Modifiers
+(36343, 4410, 9), -- P. Atk. Modifiers
+(36343, 4411, 11), -- M. Atk. Modifiers
+(36343, 4412, 11), -- P. Def. Modifiers
+(36343, 4413, 16), -- M. Def. Modifiers
+(36343, 4414, 2), -- Armor Type
+(36343, 4415, 3), -- Weapon Type
+(36343, 4416, 22), -- Races
+(36343, 5045, 6), -- Castle Power Strike
 (36343, 5432, 1), -- Weapon Supply
 -- Support Unit Captain
 (36344, 4045, 1), -- Resist Full Magic Attack
-(36344, 4194, 6), -- Aura Burn
-(36344, 4196, 6), -- Decrease Speed
-(36344, 4408, 9), -- HP Increase (1/2x)
-(36344, 4409, 16), -- MP Increase (8x)
-(36344, 4410, 11), -- Average P. Atk.
-(36344, 4411, 14), -- Strong M. Atk.
-(36344, 4412, 8), -- Weak P. Def.
-(36344, 4413, 14), -- Strong M. Def.
-(36344, 4414, 3), -- Light Armor Type
-(36344, 4415, 3), -- One-handed Sword
-(36344, 4416, 22), -- Defending Army
-(36344, 5396, 1), -- Spell Force
-(36344, 5398, 1), -- Final Burn
+(36344, 4194, 6), -- BOSS Aura Burn
+(36344, 4196, 6), -- Decreases Speed
+(36344, 4408, 9), -- HP Modifiers
+(36344, 4409, 16), -- MP Modifiers
+(36344, 4410, 11), -- P. Atk. Modifiers
+(36344, 4411, 14), -- M. Atk. Modifiers
+(36344, 4412, 8), -- P. Def. Modifiers
+(36344, 4413, 14), -- M. Def. Modifiers
+(36344, 4414, 3), -- Armor Type
+(36344, 4415, 3), -- Weapon Type
+(36344, 4416, 22), -- Races
+(36344, 5396, 1), -- NPC - Spell Stance
+(36344, 5398, 1), -- NPC - Combination Force
 (36344, 5432, 1), -- Weapon Supply
-(36344, 5457, 1), -- Complete Recovery
+(36344, 5457, 1), -- NPC Full Recover
 -- Wizard
 (36345, 4045, 1), -- Resist Full Magic Attack
-(36345, 4077, 6), -- Aura Burn
-(36345, 4408, 13), -- HP Increase (5x)
-(36345, 4409, 16), -- MP Increase (8x)
-(36345, 4410, 11), -- Average P. Atk.
-(36345, 4411, 16), -- Very Strong M. Atk.
-(36345, 4412, 8), -- Weak P. Def.
-(36345, 4413, 11), -- Average M. Def.
-(36345, 4414, 3), -- Light Armor Type
-(36345, 4415, 3), -- One-handed Sword
-(36345, 4416, 22), -- Defending Army
-(36345, 5053, 6), -- Hydro Blast
-(36345, 5396, 1), -- Spell Force
+(36345, 4077, 6), -- NPC Aura Burn
+(36345, 4408, 13), -- HP Modifiers
+(36345, 4409, 16), -- MP Modifiers
+(36345, 4410, 11), -- P. Atk. Modifiers
+(36345, 4411, 16), -- M. Atk. Modifiers
+(36345, 4412, 8), -- P. Def. Modifiers
+(36345, 4413, 11), -- M. Def. Modifiers
+(36345, 4414, 3), -- Armor Type
+(36345, 4415, 3), -- Weapon Type
+(36345, 4416, 22), -- Races
+(36345, 5053, 6), -- Castle DD Water
+(36345, 5396, 1), -- NPC - Spell Stance
 (36345, 5432, 1), -- Weapon Supply
 -- Healer
 (36346, 4045, 1), -- Resist Full Magic Attack
 (36346, 4115, 1), -- Aden Heal
-(36346, 4408, 15), -- HP Increase (7x)
-(36346, 4409, 16), -- MP Increase (8x)
-(36346, 4410, 11), -- Average P. Atk.
-(36346, 4411, 17), -- Very Strong M. Atk.
-(36346, 4412, 11), -- Average P. Def.
-(36346, 4413, 16), -- Very Strong M. Def.
-(36346, 4414, 3), -- Light Armor Type
-(36346, 4415, 3), -- One-handed Sword
-(36346, 4416, 22), -- Defending Army
+(36346, 4408, 15), -- HP Modifiers
+(36346, 4409, 16), -- MP Modifiers
+(36346, 4410, 11), -- P. Atk. Modifiers
+(36346, 4411, 17), -- M. Atk. Modifiers
+(36346, 4412, 11), -- P. Def. Modifiers
+(36346, 4413, 16), -- M. Def. Modifiers
+(36346, 4414, 3), -- Armor Type
+(36346, 4415, 3), -- Weapon Type
+(36346, 4416, 22), -- Races
 (36346, 5114, 6), -- Hold
 (36346, 5432, 1), -- Weapon Supply
 -- Archer Captain
 (36347, 4045, 1), -- Resist Full Magic Attack
-(36347, 4408, 9), -- HP Increase (1/2x)
-(36347, 4409, 1), -- MP Increase (1x)
-(36347, 4410, 16), -- Very Strong P. Atk.
-(36347, 4411, 11), -- Average M. Atk.
-(36347, 4412, 8), -- Weak P. Def.
-(36347, 4413, 11), -- Average M. Def.
-(36347, 4414, 3), -- Light Armor Type
-(36347, 4415, 9), -- Bows
-(36347, 4416, 22), -- Defending Army
-(36347, 4755, 6), -- Power Shot
+(36347, 4408, 9), -- HP Modifiers
+(36347, 4409, 1), -- MP Modifiers
+(36347, 4410, 16), -- P. Atk. Modifiers
+(36347, 4411, 11), -- M. Atk. Modifiers
+(36347, 4412, 8), -- P. Def. Modifiers
+(36347, 4413, 11), -- M. Def. Modifiers
+(36347, 4414, 3), -- Armor Type
+(36347, 4415, 9), -- Weapon Type
+(36347, 4416, 22), -- Races
+(36347, 4755, 6), -- BOSS Power Shot
 (36347, 5432, 1), -- Weapon Supply
-(36347, 5457, 1), -- Complete Recovery
+(36347, 5457, 1), -- NPC Full Recover
 -- Archer
 (36348, 4045, 1), -- Resist Full Magic Attack
-(36348, 4408, 13), -- HP Increase (5x)
-(36348, 4409, 1), -- MP Increase (1x)
-(36348, 4410, 14), -- Strong P. Atk.
-(36348, 4411, 11), -- Average M. Atk.
-(36348, 4412, 8), -- Weak P. Def.
-(36348, 4413, 11), -- Average M. Def.
-(36348, 4414, 3), -- Light Armor Type
-(36348, 4415, 9), -- Bows
-(36348, 4416, 22), -- Defending Army
-(36348, 5046, 6), -- Power Shot
+(36348, 4408, 13), -- HP Modifiers
+(36348, 4409, 1), -- MP Modifiers
+(36348, 4410, 14), -- P. Atk. Modifiers
+(36348, 4411, 11), -- M. Atk. Modifiers
+(36348, 4412, 8), -- P. Def. Modifiers
+(36348, 4413, 11), -- M. Def. Modifiers
+(36348, 4414, 3), -- Armor Type
+(36348, 4415, 9), -- Weapon Type
+(36348, 4416, 22), -- Races
+(36348, 5046, 6), -- Castle Power Shot
 (36348, 5432, 1), -- Weapon Supply
 -- General
 (36349, 4045, 1), -- Resist Full Magic Attack
-(36349, 4408, 9), -- HP Increase (1/2x)
-(36349, 4409, 1), -- MP Increase (1x)
-(36349, 4410, 14), -- Strong P. Atk.
-(36349, 4411, 11), -- Average M. Atk.
-(36349, 4412, 11), -- Average P. Def.
-(36349, 4413, 11), -- Average M. Def.
-(36349, 4414, 2), -- Standard Type
-(36349, 4415, 19), -- Dual-Sword Weapons
-(36349, 4416, 22), -- Defending Army
+(36349, 4408, 9), -- HP Modifiers
+(36349, 4409, 1), -- MP Modifiers
+(36349, 4410, 14), -- P. Atk. Modifiers
+(36349, 4411, 11), -- M. Atk. Modifiers
+(36349, 4412, 11), -- P. Def. Modifiers
+(36349, 4413, 11), -- M. Def. Modifiers
+(36349, 4414, 2), -- Armor Type
+(36349, 4415, 19), -- Weapon Type
+(36349, 4416, 22), -- Races
 (36349, 4725, 6), -- Stun
 (36349, 5432, 1), -- Weapon Supply
-(36349, 5457, 1), -- Complete Recovery
+(36349, 5457, 1), -- NPC Full Recover
 -- Minister
 (36350, 4045, 1), -- Resist Full Magic Attack
-(36350, 4408, 9), -- HP Increase (1/2x)
-(36350, 4409, 1), -- MP Increase (1x)
-(36350, 4410, 14), -- Strong P. Atk.
-(36350, 4411, 11), -- Average M. Atk.
-(36350, 4412, 11), -- Average P. Def.
-(36350, 4413, 11), -- Average M. Def.
-(36350, 4414, 2), -- Standard Type
-(36350, 4415, 3), -- One-handed Sword
-(36350, 4416, 22), -- Defending Army
-(36350, 4721, 6), -- Power Strike
+(36350, 4408, 9), -- HP Modifiers
+(36350, 4409, 1), -- MP Modifiers
+(36350, 4410, 14), -- P. Atk. Modifiers
+(36350, 4411, 11), -- M. Atk. Modifiers
+(36350, 4412, 11), -- P. Def. Modifiers
+(36350, 4413, 11), -- M. Def. Modifiers
+(36350, 4414, 2), -- Armor Type
+(36350, 4415, 3), -- Weapon Type
+(36350, 4416, 22), -- Races
+(36350, 4721, 6), -- BOSS Strike
 (36350, 5432, 1), -- Weapon Supply
-(36350, 5457, 1), -- Complete Recovery
+(36350, 5457, 1), -- NPC Full Recover
 -- Ballista
 (36351, 2342, 1), -- Ballista Bomb
 (36351, 4045, 1), -- Resist Full Magic Attack
-(36351, 4408, 16), -- HP Increase (8x)
-(36351, 4409, 1), -- MP Increase (1x)
-(36351, 4410, 11), -- Average P. Atk.
-(36351, 4411, 11), -- Average M. Atk.
-(36351, 4412, 11), -- Average P. Def.
-(36351, 4413, 11), -- Average M. Def.
-(36351, 4414, 2), -- Standard Type
-(36351, 4415, 3), -- One-handed Sword
-(36351, 4416, 22), -- Defending Army
+(36351, 4408, 16), -- HP Modifiers
+(36351, 4409, 1), -- MP Modifiers
+(36351, 4410, 11), -- P. Atk. Modifiers
+(36351, 4411, 11), -- M. Atk. Modifiers
+(36351, 4412, 11), -- P. Def. Modifiers
+(36351, 4413, 11), -- M. Def. Modifiers
+(36351, 4414, 2), -- Armor Type
+(36351, 4415, 3), -- Weapon Type
+(36351, 4416, 22), -- Races
 -- Mercenary Captain
 (36352, 4045, 1), -- Resist Full Magic Attack
-(36352, 4408, 11), -- HP Increase (3x)
-(36352, 4409, 1), -- MP Increase (1x)
-(36352, 4410, 11), -- Average P. Atk.
-(36352, 4411, 11), -- Average M. Atk.
-(36352, 4412, 11), -- Average P. Def.
-(36352, 4413, 11), -- Average M. Def.
-(36352, 4414, 2), -- Standard Type
-(36352, 4415, 3), -- One-handed Sword
-(36352, 4416, 14), -- Humans
+(36352, 4408, 11), -- HP Modifiers
+(36352, 4409, 1), -- MP Modifiers
+(36352, 4410, 11), -- P. Atk. Modifiers
+(36352, 4411, 11), -- M. Atk. Modifiers
+(36352, 4412, 11), -- P. Def. Modifiers
+(36352, 4413, 11), -- M. Def. Modifiers
+(36352, 4414, 2), -- Armor Type
+(36352, 4415, 3), -- Weapon Type
+(36352, 4416, 14), -- Races
 -- Mercenary Private
 (36353, 4045, 1), -- Resist Full Magic Attack
-(36353, 4408, 11), -- HP Increase (3x)
-(36353, 4409, 1), -- MP Increase (1x)
-(36353, 4410, 13), -- Slightly Strong P. Atk.
-(36353, 4411, 11), -- Average M. Atk.
-(36353, 4412, 11), -- Average P. Def.
-(36353, 4413, 11), -- Average M. Def.
-(36353, 4414, 2), -- Standard Type
-(36353, 4415, 11), -- Spears
-(36353, 4416, 17), -- Orcs
+(36353, 4408, 11), -- HP Modifiers
+(36353, 4409, 1), -- MP Modifiers
+(36353, 4410, 13), -- P. Atk. Modifiers
+(36353, 4411, 11), -- M. Atk. Modifiers
+(36353, 4412, 11), -- P. Def. Modifiers
+(36353, 4413, 11), -- M. Def. Modifiers
+(36353, 4414, 2), -- Armor Type
+(36353, 4415, 11), -- Weapon Type
+(36353, 4416, 17), -- Races
 -- Flagpole
 (36354, 4045, 1), -- Resist Full Magic Attack
-(36354, 4408, 1), -- HP Increase (1x)
-(36354, 4409, 1), -- MP Increase (1x)
-(36354, 4410, 11), -- Average P. Atk.
-(36354, 4411, 11), -- Average M. Atk.
-(36354, 4412, 11), -- Average P. Def.
-(36354, 4413, 11), -- Average M. Def.
-(36354, 4414, 2), -- Standard Type
-(36354, 4415, 3), -- One-handed Sword
-(36354, 4416, 19), -- Others
+(36354, 4408, 1), -- HP Modifiers
+(36354, 4409, 1), -- MP Modifiers
+(36354, 4410, 11), -- P. Atk. Modifiers
+(36354, 4411, 11), -- M. Atk. Modifiers
+(36354, 4412, 11), -- P. Def. Modifiers
+(36354, 4413, 11), -- M. Def. Modifiers
+(36354, 4414, 2), -- Armor Type
+(36354, 4415, 3), -- Weapon Type
+(36354, 4416, 19), -- Races
 -- Foreman
 (36355, 4045, 1), -- Resist Full Magic Attack
-(36355, 4408, 1), -- HP Increase (1x)
-(36355, 4409, 1), -- MP Increase (1x)
-(36355, 4410, 11), -- Average P. Atk.
-(36355, 4411, 11), -- Average M. Atk.
-(36355, 4412, 11), -- Average P. Def.
-(36355, 4413, 11), -- Average M. Def.
-(36355, 4414, 2), -- Standard Type
-(36355, 4415, 3), -- One-handed Sword
-(36355, 4416, 14), -- Humans
+(36355, 4408, 1), -- HP Modifiers
+(36355, 4409, 1), -- MP Modifiers
+(36355, 4410, 11), -- P. Atk. Modifiers
+(36355, 4411, 11), -- M. Atk. Modifiers
+(36355, 4412, 11), -- P. Def. Modifiers
+(36355, 4413, 11), -- M. Def. Modifiers
+(36355, 4414, 2), -- Armor Type
+(36355, 4415, 3), -- Weapon Type
+(36355, 4416, 14), -- Races
 -- Suspicious Merchant
 (36356, 4045, 1), -- Resist Full Magic Attack
-(36356, 4408, 1), -- HP Increase (1x)
-(36356, 4409, 1), -- MP Increase (1x)
-(36356, 4410, 11), -- Average P. Atk.
-(36356, 4411, 11), -- Average M. Atk.
-(36356, 4412, 11), -- Average P. Def.
-(36356, 4413, 11), -- Average M. Def.
-(36356, 4414, 2), -- Standard Type
-(36356, 4415, 3), -- One-handed Sword
-(36356, 4416, 17), -- Orcs
+(36356, 4408, 1), -- HP Modifiers
+(36356, 4409, 1), -- MP Modifiers
+(36356, 4410, 11), -- P. Atk. Modifiers
+(36356, 4411, 11), -- M. Atk. Modifiers
+(36356, 4412, 11), -- P. Def. Modifiers
+(36356, 4413, 11), -- M. Def. Modifiers
+(36356, 4414, 2), -- Armor Type
+(36356, 4415, 3), -- Weapon Type
+(36356, 4416, 17), -- Races
 -- Guard Captain
 (36357, 4045, 1), -- Resist Full Magic Attack
-(36357, 4408, 1), -- HP Increase (1x)
-(36357, 4409, 1), -- MP Increase (1x)
-(36357, 4410, 11), -- Average P. Atk.
-(36357, 4411, 11), -- Average M. Atk.
-(36357, 4412, 11), -- Average P. Def.
-(36357, 4413, 11), -- Average M. Def.
-(36357, 4414, 2), -- Standard Type
-(36357, 4415, 3), -- One-handed Sword
-(36357, 4416, 14), -- Humans
+(36357, 4408, 1), -- HP Modifiers
+(36357, 4409, 1), -- MP Modifiers
+(36357, 4410, 11), -- P. Atk. Modifiers
+(36357, 4411, 11), -- M. Atk. Modifiers
+(36357, 4412, 11), -- P. Def. Modifiers
+(36357, 4413, 11), -- M. Def. Modifiers
+(36357, 4414, 2), -- Armor Type
+(36357, 4415, 3), -- Weapon Type
+(36357, 4416, 14), -- Races
 -- Archer Captain
 (36358, 4045, 1), -- Resist Full Magic Attack
-(36358, 4408, 1), -- HP Increase (1x)
-(36358, 4409, 1), -- MP Increase (1x)
-(36358, 4410, 11), -- Average P. Atk.
-(36358, 4411, 11), -- Average M. Atk.
-(36358, 4412, 11), -- Average P. Def.
-(36358, 4413, 11), -- Average M. Def.
-(36358, 4414, 2), -- Standard Type
-(36358, 4415, 9), -- Bows
-(36358, 4416, 15), -- Elves
+(36358, 4408, 1), -- HP Modifiers
+(36358, 4409, 1), -- MP Modifiers
+(36358, 4410, 11), -- P. Atk. Modifiers
+(36358, 4411, 11), -- M. Atk. Modifiers
+(36358, 4412, 11), -- P. Def. Modifiers
+(36358, 4413, 11), -- M. Def. Modifiers
+(36358, 4414, 2), -- Armor Type
+(36358, 4415, 9), -- Weapon Type
+(36358, 4416, 15), -- Races
 -- General
 (36359, 4045, 1), -- Resist Full Magic Attack
-(36359, 4408, 1), -- HP Increase (1x)
-(36359, 4409, 1), -- MP Increase (1x)
-(36359, 4410, 11), -- Average P. Atk.
-(36359, 4411, 11), -- Average M. Atk.
-(36359, 4412, 11), -- Average P. Def.
-(36359, 4413, 11), -- Average M. Def.
-(36359, 4414, 2), -- Standard Type
-(36359, 4415, 19), -- Dual-Sword Weapons
-(36359, 4416, 22), -- Defending Army
+(36359, 4408, 1), -- HP Modifiers
+(36359, 4409, 1), -- MP Modifiers
+(36359, 4410, 11), -- P. Atk. Modifiers
+(36359, 4411, 11), -- M. Atk. Modifiers
+(36359, 4412, 11), -- P. Def. Modifiers
+(36359, 4413, 11), -- M. Def. Modifiers
+(36359, 4414, 2), -- Armor Type
+(36359, 4415, 19), -- Weapon Type
+(36359, 4416, 22), -- Races
 -- Support Unit Captain
 (36360, 4045, 1), -- Resist Full Magic Attack
-(36360, 4408, 1), -- HP Increase (1x)
-(36360, 4409, 1), -- MP Increase (1x)
-(36360, 4410, 11), -- Average P. Atk.
-(36360, 4411, 11), -- Average M. Atk.
-(36360, 4412, 11), -- Average P. Def.
-(36360, 4413, 11), -- Average M. Def.
-(36360, 4414, 2), -- Standard Type
-(36360, 4415, 3), -- One-handed Sword
-(36360, 4416, 14), -- Humans
+(36360, 4408, 1), -- HP Modifiers
+(36360, 4409, 1), -- MP Modifiers
+(36360, 4410, 11), -- P. Atk. Modifiers
+(36360, 4411, 11), -- M. Atk. Modifiers
+(36360, 4412, 11), -- P. Def. Modifiers
+(36360, 4413, 11), -- M. Def. Modifiers
+(36360, 4414, 2), -- Armor Type
+(36360, 4415, 3), -- Weapon Type
+(36360, 4416, 14), -- Races
 -- Engineering Manager
 (36361, 4045, 1), -- Resist Full Magic Attack
-(36361, 4408, 1), -- HP Increase (1x)
-(36361, 4409, 1), -- MP Increase (1x)
-(36361, 4410, 11), -- Average P. Atk.
-(36361, 4411, 11), -- Average M. Atk.
-(36361, 4412, 11), -- Average P. Def.
-(36361, 4413, 11), -- Average M. Def.
-(36361, 4414, 2), -- Standard Type
-(36361, 4415, 3), -- One-handed Sword
-(36361, 4416, 18), -- Dwarves
+(36361, 4408, 1), -- HP Modifiers
+(36361, 4409, 1), -- MP Modifiers
+(36361, 4410, 11), -- P. Atk. Modifiers
+(36361, 4411, 11), -- M. Atk. Modifiers
+(36361, 4412, 11), -- P. Def. Modifiers
+(36361, 4413, 11), -- M. Def. Modifiers
+(36361, 4414, 2), -- Armor Type
+(36361, 4415, 3), -- Weapon Type
+(36361, 4416, 18), -- Races
 -- Logistics Officer
 (36362, 4045, 1), -- Resist Full Magic Attack
-(36362, 4408, 1), -- HP Increase (1x)
-(36362, 4409, 1), -- MP Increase (1x)
-(36362, 4410, 11), -- Average P. Atk.
-(36362, 4411, 11), -- Average M. Atk.
-(36362, 4412, 11), -- Average P. Def.
-(36362, 4413, 11), -- Average M. Def.
-(36362, 4414, 2), -- Standard Type
-(36362, 4415, 3), -- One-handed Sword
-(36362, 4416, 18), -- Dwarves
+(36362, 4408, 1), -- HP Modifiers
+(36362, 4409, 1), -- MP Modifiers
+(36362, 4410, 11), -- P. Atk. Modifiers
+(36362, 4411, 11), -- M. Atk. Modifiers
+(36362, 4412, 11), -- P. Def. Modifiers
+(36362, 4413, 11), -- M. Def. Modifiers
+(36362, 4414, 2), -- Armor Type
+(36362, 4415, 3), -- Weapon Type
+(36362, 4416, 18), -- Races
 -- Supply Box
 (36363, 4045, 1), -- Resist Full Magic Attack
-(36363, 4408, 1), -- HP Increase (1x)
-(36363, 4409, 1), -- MP Increase (1x)
-(36363, 4410, 11), -- Average P. Atk.
-(36363, 4411, 11), -- Average M. Atk.
-(36363, 4412, 11), -- Average P. Def.
-(36363, 4413, 11), -- Average M. Def.
-(36363, 4414, 2), -- Standard Type
-(36363, 4415, 3), -- One-handed Sword
-(36363, 4416, 2), -- Magic Creatures
+(36363, 4408, 1), -- HP Modifiers
+(36363, 4409, 1), -- MP Modifiers
+(36363, 4410, 11), -- P. Atk. Modifiers
+(36363, 4411, 11), -- M. Atk. Modifiers
+(36363, 4412, 11), -- P. Def. Modifiers
+(36363, 4413, 11), -- M. Def. Modifiers
+(36363, 4414, 2), -- Armor Type
+(36363, 4415, 3), -- Weapon Type
+(36363, 4416, 2), -- Races
 -- Detention Camp Warden
 (36364, 4045, 1), -- Resist Full Magic Attack
-(36364, 4408, 1), -- HP Increase (1x)
-(36364, 4409, 1), -- MP Increase (1x)
-(36364, 4410, 11), -- Average P. Atk.
-(36364, 4411, 11), -- Average M. Atk.
-(36364, 4412, 11), -- Average P. Def.
-(36364, 4413, 11), -- Average M. Def.
-(36364, 4414, 2), -- Standard Type
-(36364, 4415, 3), -- One-handed Sword
-(36364, 4416, 14), -- Humans
+(36364, 4408, 1), -- HP Modifiers
+(36364, 4409, 1), -- MP Modifiers
+(36364, 4410, 11), -- P. Atk. Modifiers
+(36364, 4411, 11), -- M. Atk. Modifiers
+(36364, 4412, 11), -- P. Def. Modifiers
+(36364, 4413, 11), -- M. Def. Modifiers
+(36364, 4414, 2), -- Armor Type
+(36364, 4415, 3), -- Weapon Type
+(36364, 4416, 14), -- Races
 -- Doorman
 (36365, 4045, 1), -- Resist Full Magic Attack
-(36365, 4408, 1), -- HP Increase (1x)
-(36365, 4409, 1), -- MP Increase (1x)
-(36365, 4410, 11), -- Average P. Atk.
-(36365, 4411, 11); -- Average M. Atk.
-
-INSERT INTO `npcskills` VALUES
-(36365, 4412, 11), -- Average P. Def.
-(36365, 4413, 11), -- Average M. Def.
-(36365, 4414, 2), -- Standard Type
-(36365, 4415, 3), -- One-handed Sword
-(36365, 4416, 14), -- Humans
+(36365, 4408, 1), -- HP Modifiers
+(36365, 4409, 1), -- MP Modifiers
+(36365, 4410, 11), -- P. Atk. Modifiers
+(36365, 4411, 11), -- M. Atk. Modifiers
+(36365, 4412, 11), -- P. Def. Modifiers
+(36365, 4413, 11), -- M. Def. Modifiers
+(36365, 4414, 2), -- Armor Type
+(36365, 4415, 3), -- Weapon Type
+(36365, 4416, 14), -- Races
 -- Doorman
 (36366, 4045, 1), -- Resist Full Magic Attack
-(36366, 4408, 1), -- HP Increase (1x)
-(36366, 4409, 1), -- MP Increase (1x)
-(36366, 4410, 11), -- Average P. Atk.
-(36366, 4411, 11), -- Average M. Atk.
-(36366, 4412, 11), -- Average P. Def.
-(36366, 4413, 11), -- Average M. Def.
-(36366, 4414, 2), -- Standard Type
-(36366, 4415, 3), -- One-handed Sword
-(36366, 4416, 14), -- Humans
+(36366, 4408, 1), -- HP Modifiers
+(36366, 4409, 1), -- MP Modifiers
+(36366, 4410, 11), -- P. Atk. Modifiers
+(36366, 4411, 11), -- M. Atk. Modifiers
+(36366, 4412, 11), -- P. Def. Modifiers
+(36366, 4413, 11), -- M. Def. Modifiers
+(36366, 4414, 2), -- Armor Type
+(36366, 4415, 3), -- Weapon Type
+(36366, 4416, 14), -- Races
 -- Doorman
 (36367, 4045, 1), -- Resist Full Magic Attack
-(36367, 4408, 1), -- HP Increase (1x)
-(36367, 4409, 1), -- MP Increase (1x)
-(36367, 4410, 11), -- Average P. Atk.
-(36367, 4411, 11), -- Average M. Atk.
-(36367, 4412, 11), -- Average P. Def.
-(36367, 4413, 11), -- Average M. Def.
-(36367, 4414, 2), -- Standard Type
-(36367, 4415, 3), -- One-handed Sword
-(36367, 4416, 14), -- Humans
+(36367, 4408, 1), -- HP Modifiers
+(36367, 4409, 1), -- MP Modifiers
+(36367, 4410, 11), -- P. Atk. Modifiers
+(36367, 4411, 11), -- M. Atk. Modifiers
+(36367, 4412, 11), -- P. Def. Modifiers
+(36367, 4413, 11), -- M. Def. Modifiers
+(36367, 4414, 2), -- Armor Type
+(36367, 4415, 3), -- Weapon Type
+(36367, 4416, 14), -- Races
 -- Rebel Commander
 (36368, 4045, 1), -- Resist Full Magic Attack
-(36368, 4178, 7), -- Flame Strike
-(36368, 4195, 7), -- Twister
-(36368, 4408, 10), -- HP Increase (2x)
-(36368, 4409, 1), -- MP Increase (1x)
-(36368, 4410, 11), -- Average P. Atk.
-(36368, 4411, 17), -- Very Strong M. Atk.
-(36368, 4412, 11), -- Average P. Def.
-(36368, 4413, 11), -- Average M. Def.
-(36368, 4414, 2), -- Standard Type
-(36368, 4415, 3), -- One-handed Sword
-(36368, 4416, 16), -- Dark Elves
+(36368, 4178, 7), -- BOSS Flame Strike
+(36368, 4195, 7), -- BOSS Twister
+(36368, 4408, 10), -- HP Modifiers
+(36368, 4409, 1), -- MP Modifiers
+(36368, 4410, 11), -- P. Atk. Modifiers
+(36368, 4411, 17), -- M. Atk. Modifiers
+(36368, 4412, 11), -- P. Def. Modifiers
+(36368, 4413, 11), -- M. Def. Modifiers
+(36368, 4414, 2), -- Armor Type
+(36368, 4415, 3), -- Weapon Type
+(36368, 4416, 16), -- Races
 -- Decorated Rebel Soldier
 (36369, 4045, 1), -- Resist Full Magic Attack
-(36369, 4408, 14), -- HP Increase (6x)
-(36369, 4409, 1), -- MP Increase (1x)
-(36369, 4410, 15), -- Strong P. Atk.
-(36369, 4411, 11), -- Average M. Atk.
-(36369, 4412, 11), -- Average P. Def.
-(36369, 4413, 15), -- Strong M. Def.
-(36369, 4414, 2), -- Standard Type
-(36369, 4415, 1), -- Bare Hands
-(36369, 4416, 9), -- Demons
-(36369, 5065, 7), -- Unholy Strike
+(36369, 4408, 14), -- HP Modifiers
+(36369, 4409, 1), -- MP Modifiers
+(36369, 4410, 15), -- P. Atk. Modifiers
+(36369, 4411, 11), -- M. Atk. Modifiers
+(36369, 4412, 11), -- P. Def. Modifiers
+(36369, 4413, 15), -- M. Def. Modifiers
+(36369, 4414, 2), -- Armor Type
+(36369, 4415, 1), -- Weapon Type
+(36369, 4416, 9), -- Races
+(36369, 5065, 7), -- Castle DD Unholy
 -- Rebel Private
 (36370, 4045, 1), -- Resist Full Magic Attack
-(36370, 4408, 12), -- HP Increase (4x)
-(36370, 4409, 1), -- MP Increase (1x)
-(36370, 4410, 14), -- Strong P. Atk.
-(36370, 4411, 11), -- Average M. Atk.
-(36370, 4412, 11), -- Average P. Def.
-(36370, 4413, 11), -- Average M. Def.
-(36370, 4414, 2), -- Standard Type
-(36370, 4415, 11), -- Spears
-(36370, 4416, 14), -- Humans
+(36370, 4408, 12), -- HP Modifiers
+(36370, 4409, 1), -- MP Modifiers
+(36370, 4410, 14), -- P. Atk. Modifiers
+(36370, 4411, 11), -- M. Atk. Modifiers
+(36370, 4412, 11), -- P. Def. Modifiers
+(36370, 4413, 11), -- M. Def. Modifiers
+(36370, 4414, 2), -- Armor Type
+(36370, 4415, 11), -- Weapon Type
+(36370, 4416, 14), -- Races
 -- Court Guard
 (36371, 4045, 1), -- Resist Full Magic Attack
-(36371, 4408, 12), -- HP Increase (4x)
-(36371, 4409, 1), -- MP Increase (1x)
-(36371, 4410, 11), -- Average P. Atk.
-(36371, 4411, 11), -- Average M. Atk.
-(36371, 4412, 11), -- Average P. Def.
-(36371, 4413, 16), -- Very Strong M. Def.
-(36371, 4414, 2), -- Standard Type
-(36371, 4415, 11), -- Spears
-(36371, 4416, 22), -- Defending Army
+(36371, 4408, 12), -- HP Modifiers
+(36371, 4409, 1), -- MP Modifiers
+(36371, 4410, 11), -- P. Atk. Modifiers
+(36371, 4411, 11), -- M. Atk. Modifiers
+(36371, 4412, 11), -- P. Def. Modifiers
+(36371, 4413, 16), -- M. Def. Modifiers
+(36371, 4414, 2), -- Armor Type
+(36371, 4415, 11), -- Weapon Type
+(36371, 4416, 22), -- Races
 (36371, 5432, 1), -- Weapon Supply
 -- Guard
 (36372, 4045, 1), -- Resist Full Magic Attack
-(36372, 4408, 12), -- HP Increase (4x)
-(36372, 4409, 1), -- MP Increase (1x)
-(36372, 4410, 15), -- Strong P. Atk.
-(36372, 4411, 11), -- Average M. Atk.
-(36372, 4412, 11), -- Average P. Def.
-(36372, 4413, 11), -- Average M. Def.
-(36372, 4414, 3), -- Light Armor Type
-(36372, 4415, 9), -- Bows
-(36372, 4416, 22), -- Defending Army
+(36372, 4408, 12), -- HP Modifiers
+(36372, 4409, 1), -- MP Modifiers
+(36372, 4410, 15), -- P. Atk. Modifiers
+(36372, 4411, 11), -- M. Atk. Modifiers
+(36372, 4412, 11), -- P. Def. Modifiers
+(36372, 4413, 11), -- M. Def. Modifiers
+(36372, 4414, 3), -- Armor Type
+(36372, 4415, 9), -- Weapon Type
+(36372, 4416, 22), -- Races
 (36372, 5432, 1), -- Weapon Supply
 -- Main Machine
 (36373, 4045, 1), -- Resist Full Magic Attack
-(36373, 4408, 1), -- HP Increase (1x)
-(36373, 4409, 1), -- MP Increase (1x)
-(36373, 4410, 11), -- Average P. Atk.
-(36373, 4411, 11), -- Average M. Atk.
-(36373, 4412, 11), -- Average P. Def.
-(36373, 4413, 11), -- Average M. Def.
-(36373, 4414, 2), -- Standard Type
-(36373, 4415, 3), -- One-handed Sword
-(36373, 4416, 19), -- Others
+(36373, 4408, 1), -- HP Modifiers
+(36373, 4409, 1), -- MP Modifiers
+(36373, 4410, 11), -- P. Atk. Modifiers
+(36373, 4411, 11), -- M. Atk. Modifiers
+(36373, 4412, 11), -- P. Def. Modifiers
+(36373, 4413, 11), -- M. Def. Modifiers
+(36373, 4414, 2), -- Armor Type
+(36373, 4415, 3), -- Weapon Type
+(36373, 4416, 19), -- Races
 -- Backup Power Unit
 (36374, 4045, 1), -- Resist Full Magic Attack
-(36374, 4408, 1), -- HP Increase (1x)
-(36374, 4409, 1), -- MP Increase (1x)
-(36374, 4410, 11), -- Average P. Atk.
-(36374, 4411, 11), -- Average M. Atk.
-(36374, 4412, 11), -- Average P. Def.
-(36374, 4413, 11), -- Average M. Def.
-(36374, 4414, 2), -- Standard Type
-(36374, 4415, 3), -- One-handed Sword
-(36374, 4416, 19), -- Others
+(36374, 4408, 1), -- HP Modifiers
+(36374, 4409, 1), -- MP Modifiers
+(36374, 4410, 11), -- P. Atk. Modifiers
+(36374, 4411, 11), -- M. Atk. Modifiers
+(36374, 4412, 11), -- P. Def. Modifiers
+(36374, 4413, 11), -- M. Def. Modifiers
+(36374, 4414, 2), -- Armor Type
+(36374, 4415, 3), -- Weapon Type
+(36374, 4416, 19), -- Races
 -- Control Unit
 (36375, 4045, 1), -- Resist Full Magic Attack
-(36375, 4408, 1), -- HP Increase (1x)
-(36375, 4409, 1), -- MP Increase (1x)
-(36375, 4410, 11), -- Average P. Atk.
-(36375, 4411, 11), -- Average M. Atk.
-(36375, 4412, 11), -- Average P. Def.
-(36375, 4413, 11), -- Average M. Def.
-(36375, 4414, 2), -- Standard Type
-(36375, 4415, 3), -- One-handed Sword
-(36375, 4416, 2), -- Magic Creatures
+(36375, 4408, 1), -- HP Modifiers
+(36375, 4409, 1), -- MP Modifiers
+(36375, 4410, 11), -- P. Atk. Modifiers
+(36375, 4411, 11), -- M. Atk. Modifiers
+(36375, 4412, 11), -- P. Def. Modifiers
+(36375, 4413, 11), -- M. Def. Modifiers
+(36375, 4414, 2), -- Armor Type
+(36375, 4415, 3), -- Weapon Type
+(36375, 4416, 2), -- Races
 -- Power Control Unit
 (36376, 4045, 1), -- Resist Full Magic Attack
-(36376, 4408, 1), -- HP Increase (1x)
-(36376, 4409, 1), -- MP Increase (1x)
-(36376, 4410, 11), -- Average P. Atk.
-(36376, 4411, 11), -- Average M. Atk.
-(36376, 4412, 11), -- Average P. Def.
-(36376, 4413, 11), -- Average M. Def.
-(36376, 4414, 2), -- Standard Type
-(36376, 4415, 3), -- One-handed Sword
-(36376, 4416, 19), -- Others
+(36376, 4408, 1), -- HP Modifiers
+(36376, 4409, 1), -- MP Modifiers
+(36376, 4410, 11), -- P. Atk. Modifiers
+(36376, 4411, 11), -- M. Atk. Modifiers
+(36376, 4412, 11), -- P. Def. Modifiers
+(36376, 4413, 11), -- M. Def. Modifiers
+(36376, 4414, 2), -- Armor Type
+(36376, 4415, 3), -- Weapon Type
+(36376, 4416, 19), -- Races
 -- Dwarven Gunnery Sergeant
 (36377, 4045, 1), -- Resist Full Magic Attack
-(36377, 4408, 11), -- HP Increase (3x)
-(36377, 4409, 16), -- MP Increase (8x)
-(36377, 4410, 11), -- Average P. Atk.
-(36377, 4411, 17), -- Very Strong M. Atk.
-(36377, 4412, 11), -- Average P. Def.
-(36377, 4413, 8), -- Weak M. Def.
-(36377, 4414, 2), -- Standard Type
-(36377, 4415, 9), -- Bows
-(36377, 4416, 22), -- Defending Army
+(36377, 4408, 11), -- HP Modifiers
+(36377, 4409, 16), -- MP Modifiers
+(36377, 4410, 11), -- P. Atk. Modifiers
+(36377, 4411, 17), -- M. Atk. Modifiers
+(36377, 4412, 11), -- P. Def. Modifiers
+(36377, 4413, 8), -- M. Def. Modifiers
+(36377, 4414, 2), -- Armor Type
+(36377, 4415, 9), -- Weapon Type
+(36377, 4416, 22), -- Races
 (36377, 5432, 1), -- Weapon Supply
-(36377, 5461, 6), -- Power Shot
-(36377, 5468, 6), -- Fire Shot
+(36377, 5461, 6), -- Castle Gunner Shot
+(36377, 5468, 6), -- Castle Gunner Fire
 -- Scout Golem
 (36378, 4045, 1), -- Resist Full Magic Attack
-(36378, 4408, 6), -- HP Very High
-(36378, 4409, 1), -- MP Increase (1x)
-(36378, 4410, 11), -- Average P. Atk.
-(36378, 4411, 11), -- Average M. Atk.
-(36378, 4412, 11), -- Average P. Def.
-(36378, 4413, 16), -- Very Strong M. Def.
-(36378, 4414, 2), -- Standard Type
-(36378, 4415, 3), -- One-handed Sword
-(36378, 4416, 22), -- Defending Army
+(36378, 4408, 6), -- HP Modifiers
+(36378, 4409, 1), -- MP Modifiers
+(36378, 4410, 11), -- P. Atk. Modifiers
+(36378, 4411, 11), -- M. Atk. Modifiers
+(36378, 4412, 11), -- P. Def. Modifiers
+(36378, 4413, 16), -- M. Def. Modifiers
+(36378, 4414, 2), -- Armor Type
+(36378, 4415, 3), -- Weapon Type
+(36378, 4416, 22), -- Races
 -- Guard Captain
 (36379, 4045, 1), -- Resist Full Magic Attack
 (36379, 4172, 6), -- Stun
-(36379, 4408, 9), -- HP Increase (1/2x)
-(36379, 4409, 1), -- MP Increase (1x)
-(36379, 4410, 8), -- Weak P. Atk.
-(36379, 4411, 11), -- Average M. Atk.
-(36379, 4412, 16), -- Very Strong P. Def.
-(36379, 4413, 11), -- Average M. Def.
-(36379, 4414, 2), -- Standard Type
-(36379, 4415, 3), -- One-handed Sword
-(36379, 4416, 22), -- Defending Army
+(36379, 4408, 9), -- HP Modifiers
+(36379, 4409, 1), -- MP Modifiers
+(36379, 4410, 8), -- P. Atk. Modifiers
+(36379, 4411, 11), -- M. Atk. Modifiers
+(36379, 4412, 16), -- P. Def. Modifiers
+(36379, 4413, 11), -- M. Def. Modifiers
+(36379, 4414, 2), -- Armor Type
+(36379, 4415, 3), -- Weapon Type
+(36379, 4416, 22), -- Races
 (36379, 4435, 5), -- Greater Resist Stun
 (36379, 4439, 5), -- Greater Resist Hold
 (36379, 4440, 5), -- Greater Resist Paralysis
-(36379, 4608, 1), -- Berserker Spirit
+(36379, 4608, 1), -- NPC Clan Buff - Berserk
 (36379, 5432, 1), -- Weapon Supply
-(36379, 5457, 1), -- Complete Recovery
+(36379, 5457, 1), -- NPC Full Recover
 -- Guard
 (36380, 4045, 1), -- Resist Full Magic Attack
-(36380, 4408, 13), -- HP Increase (5x)
-(36380, 4409, 1), -- MP Increase (1x)
-(36380, 4410, 9), -- Slightly Weak P. Atk.
-(36380, 4411, 11), -- Average M. Atk.
-(36380, 4412, 16), -- Very Strong P. Def.
-(36380, 4413, 11), -- Average M. Def.
-(36380, 4414, 2), -- Standard Type
-(36380, 4415, 3), -- One-handed Sword
-(36380, 4416, 22), -- Defending Army
+(36380, 4408, 13), -- HP Modifiers
+(36380, 4409, 1), -- MP Modifiers
+(36380, 4410, 9), -- P. Atk. Modifiers
+(36380, 4411, 11), -- M. Atk. Modifiers
+(36380, 4412, 16), -- P. Def. Modifiers
+(36380, 4413, 11), -- M. Def. Modifiers
+(36380, 4414, 2), -- Armor Type
+(36380, 4415, 3), -- Weapon Type
+(36380, 4416, 22), -- Races
 (36380, 5112, 6), -- Stun
 (36380, 5432, 1), -- Weapon Supply
 -- Guard
 (36381, 4045, 1), -- Resist Full Magic Attack
-(36381, 4408, 13), -- HP Increase (5x)
-(36381, 4409, 1), -- MP Increase (1x)
-(36381, 4410, 9), -- Slightly Weak P. Atk.
-(36381, 4411, 11), -- Average M. Atk.
-(36381, 4412, 11), -- Average P. Def.
-(36381, 4413, 16), -- Very Strong M. Def.
-(36381, 4414, 2), -- Standard Type
-(36381, 4415, 3), -- One-handed Sword
-(36381, 4416, 22), -- Defending Army
-(36381, 5045, 6), -- Power Strike
+(36381, 4408, 13), -- HP Modifiers
+(36381, 4409, 1), -- MP Modifiers
+(36381, 4410, 9), -- P. Atk. Modifiers
+(36381, 4411, 11), -- M. Atk. Modifiers
+(36381, 4412, 11), -- P. Def. Modifiers
+(36381, 4413, 16), -- M. Def. Modifiers
+(36381, 4414, 2), -- Armor Type
+(36381, 4415, 3), -- Weapon Type
+(36381, 4416, 22), -- Races
+(36381, 5045, 6), -- Castle Power Strike
 (36381, 5432, 1), -- Weapon Supply
 -- Support Unit Captain
 (36382, 4045, 1), -- Resist Full Magic Attack
-(36382, 4194, 6), -- Aura Burn
-(36382, 4196, 6), -- Decrease Speed
-(36382, 4408, 9), -- HP Increase (1/2x)
-(36382, 4409, 16), -- MP Increase (8x)
-(36382, 4410, 11), -- Average P. Atk.
-(36382, 4411, 14), -- Strong M. Atk.
-(36382, 4412, 8), -- Weak P. Def.
-(36382, 4413, 14), -- Strong M. Def.
-(36382, 4414, 3), -- Light Armor Type
-(36382, 4415, 3), -- One-handed Sword
-(36382, 4416, 22), -- Defending Army
-(36382, 5396, 1), -- Spell Force
-(36382, 5398, 1), -- Final Burn
+(36382, 4194, 6), -- BOSS Aura Burn
+(36382, 4196, 6), -- Decreases Speed
+(36382, 4408, 9), -- HP Modifiers
+(36382, 4409, 16), -- MP Modifiers
+(36382, 4410, 11), -- P. Atk. Modifiers
+(36382, 4411, 14), -- M. Atk. Modifiers
+(36382, 4412, 8), -- P. Def. Modifiers
+(36382, 4413, 14), -- M. Def. Modifiers
+(36382, 4414, 3), -- Armor Type
+(36382, 4415, 3), -- Weapon Type
+(36382, 4416, 22), -- Races
+(36382, 5396, 1), -- NPC - Spell Stance
+(36382, 5398, 1), -- NPC - Combination Force
 (36382, 5432, 1), -- Weapon Supply
-(36382, 5457, 1), -- Complete Recovery
+(36382, 5457, 1), -- NPC Full Recover
 -- Wizard
 (36383, 4045, 1), -- Resist Full Magic Attack
-(36383, 4077, 6), -- Aura Burn
-(36383, 4408, 13), -- HP Increase (5x)
-(36383, 4409, 16), -- MP Increase (8x)
-(36383, 4410, 11), -- Average P. Atk.
-(36383, 4411, 16), -- Very Strong M. Atk.
-(36383, 4412, 8), -- Weak P. Def.
-(36383, 4413, 11), -- Average M. Def.
-(36383, 4414, 3), -- Light Armor Type
-(36383, 4415, 3), -- One-handed Sword
-(36383, 4416, 22), -- Defending Army
-(36383, 5053, 6), -- Hydro Blast
-(36383, 5396, 1), -- Spell Force
+(36383, 4077, 6), -- NPC Aura Burn
+(36383, 4408, 13), -- HP Modifiers
+(36383, 4409, 16), -- MP Modifiers
+(36383, 4410, 11), -- P. Atk. Modifiers
+(36383, 4411, 16), -- M. Atk. Modifiers
+(36383, 4412, 8), -- P. Def. Modifiers
+(36383, 4413, 11), -- M. Def. Modifiers
+(36383, 4414, 3), -- Armor Type
+(36383, 4415, 3), -- Weapon Type
+(36383, 4416, 22), -- Races
+(36383, 5053, 6), -- Castle DD Water
+(36383, 5396, 1), -- NPC - Spell Stance
 (36383, 5432, 1), -- Weapon Supply
 -- Healer
 (36384, 4045, 1), -- Resist Full Magic Attack
 (36384, 4115, 1), -- Aden Heal
-(36384, 4408, 15), -- HP Increase (7x)
-(36384, 4409, 16), -- MP Increase (8x)
-(36384, 4410, 11), -- Average P. Atk.
-(36384, 4411, 17), -- Very Strong M. Atk.
-(36384, 4412, 11), -- Average P. Def.
-(36384, 4413, 16), -- Very Strong M. Def.
-(36384, 4414, 3), -- Light Armor Type
-(36384, 4415, 3), -- One-handed Sword
-(36384, 4416, 22), -- Defending Army
+(36384, 4408, 15), -- HP Modifiers
+(36384, 4409, 16), -- MP Modifiers
+(36384, 4410, 11), -- P. Atk. Modifiers
+(36384, 4411, 17), -- M. Atk. Modifiers
+(36384, 4412, 11), -- P. Def. Modifiers
+(36384, 4413, 16), -- M. Def. Modifiers
+(36384, 4414, 3), -- Armor Type
+(36384, 4415, 3), -- Weapon Type
+(36384, 4416, 22), -- Races
 (36384, 5114, 6), -- Hold
 (36384, 5432, 1), -- Weapon Supply
 -- Archer Captain
 (36385, 4045, 1), -- Resist Full Magic Attack
-(36385, 4408, 9), -- HP Increase (1/2x)
-(36385, 4409, 1), -- MP Increase (1x)
-(36385, 4410, 16), -- Very Strong P. Atk.
-(36385, 4411, 11), -- Average M. Atk.
-(36385, 4412, 8), -- Weak P. Def.
-(36385, 4413, 11), -- Average M. Def.
-(36385, 4414, 3), -- Light Armor Type
-(36385, 4415, 9), -- Bows
-(36385, 4416, 22), -- Defending Army
-(36385, 4755, 6), -- Power Shot
+(36385, 4408, 9), -- HP Modifiers
+(36385, 4409, 1), -- MP Modifiers
+(36385, 4410, 16), -- P. Atk. Modifiers
+(36385, 4411, 11), -- M. Atk. Modifiers
+(36385, 4412, 8), -- P. Def. Modifiers
+(36385, 4413, 11), -- M. Def. Modifiers
+(36385, 4414, 3), -- Armor Type
+(36385, 4415, 9), -- Weapon Type
+(36385, 4416, 22), -- Races
+(36385, 4755, 6), -- BOSS Power Shot
 (36385, 5432, 1), -- Weapon Supply
-(36385, 5457, 1), -- Complete Recovery
+(36385, 5457, 1), -- NPC Full Recover
 -- Archer
 (36386, 4045, 1), -- Resist Full Magic Attack
-(36386, 4408, 13), -- HP Increase (5x)
-(36386, 4409, 1), -- MP Increase (1x)
-(36386, 4410, 14), -- Strong P. Atk.
-(36386, 4411, 11), -- Average M. Atk.
-(36386, 4412, 8), -- Weak P. Def.
-(36386, 4413, 11), -- Average M. Def.
-(36386, 4414, 3), -- Light Armor Type
-(36386, 4415, 9), -- Bows
-(36386, 4416, 22), -- Defending Army
-(36386, 5046, 6), -- Power Shot
+(36386, 4408, 13), -- HP Modifiers
+(36386, 4409, 1), -- MP Modifiers
+(36386, 4410, 14), -- P. Atk. Modifiers
+(36386, 4411, 11), -- M. Atk. Modifiers
+(36386, 4412, 8), -- P. Def. Modifiers
+(36386, 4413, 11), -- M. Def. Modifiers
+(36386, 4414, 3), -- Armor Type
+(36386, 4415, 9), -- Weapon Type
+(36386, 4416, 22), -- Races
+(36386, 5046, 6), -- Castle Power Shot
 (36386, 5432, 1), -- Weapon Supply
 -- General
 (36387, 4045, 1), -- Resist Full Magic Attack
-(36387, 4408, 9), -- HP Increase (1/2x)
-(36387, 4409, 1), -- MP Increase (1x)
-(36387, 4410, 14), -- Strong P. Atk.
-(36387, 4411, 11), -- Average M. Atk.
-(36387, 4412, 11), -- Average P. Def.
-(36387, 4413, 11), -- Average M. Def.
-(36387, 4414, 2), -- Standard Type
-(36387, 4415, 19), -- Dual-Sword Weapons
-(36387, 4416, 22), -- Defending Army
+(36387, 4408, 9), -- HP Modifiers
+(36387, 4409, 1), -- MP Modifiers
+(36387, 4410, 14), -- P. Atk. Modifiers
+(36387, 4411, 11), -- M. Atk. Modifiers
+(36387, 4412, 11), -- P. Def. Modifiers
+(36387, 4413, 11), -- M. Def. Modifiers
+(36387, 4414, 2), -- Armor Type
+(36387, 4415, 19), -- Weapon Type
+(36387, 4416, 22), -- Races
 (36387, 4725, 6), -- Stun
 (36387, 5432, 1), -- Weapon Supply
-(36387, 5457, 1), -- Complete Recovery
+(36387, 5457, 1), -- NPC Full Recover
 -- Minister
 (36388, 4045, 1), -- Resist Full Magic Attack
-(36388, 4408, 9), -- HP Increase (1/2x)
-(36388, 4409, 1), -- MP Increase (1x)
-(36388, 4410, 14), -- Strong P. Atk.
-(36388, 4411, 11), -- Average M. Atk.
-(36388, 4412, 11), -- Average P. Def.
-(36388, 4413, 11), -- Average M. Def.
-(36388, 4414, 2), -- Standard Type
-(36388, 4415, 3), -- One-handed Sword
-(36388, 4416, 22), -- Defending Army
-(36388, 4721, 6), -- Power Strike
+(36388, 4408, 9), -- HP Modifiers
+(36388, 4409, 1), -- MP Modifiers
+(36388, 4410, 14), -- P. Atk. Modifiers
+(36388, 4411, 11), -- M. Atk. Modifiers
+(36388, 4412, 11), -- P. Def. Modifiers
+(36388, 4413, 11), -- M. Def. Modifiers
+(36388, 4414, 2), -- Armor Type
+(36388, 4415, 3), -- Weapon Type
+(36388, 4416, 22), -- Races
+(36388, 4721, 6), -- BOSS Strike
 (36388, 5432, 1), -- Weapon Supply
-(36388, 5457, 1), -- Complete Recovery
+(36388, 5457, 1), -- NPC Full Recover
 -- Ballista
 (36389, 2342, 1), -- Ballista Bomb
 (36389, 4045, 1), -- Resist Full Magic Attack
-(36389, 4408, 16), -- HP Increase (8x)
-(36389, 4409, 1), -- MP Increase (1x)
-(36389, 4410, 11), -- Average P. Atk.
-(36389, 4411, 11), -- Average M. Atk.
-(36389, 4412, 11), -- Average P. Def.
-(36389, 4413, 11), -- Average M. Def.
-(36389, 4414, 2), -- Standard Type
-(36389, 4415, 3), -- One-handed Sword
-(36389, 4416, 22), -- Defending Army
+(36389, 4408, 16), -- HP Modifiers
+(36389, 4409, 1), -- MP Modifiers
+(36389, 4410, 11), -- P. Atk. Modifiers
+(36389, 4411, 11), -- M. Atk. Modifiers
+(36389, 4412, 11), -- P. Def. Modifiers
+(36389, 4413, 11), -- M. Def. Modifiers
+(36389, 4414, 2), -- Armor Type
+(36389, 4415, 3), -- Weapon Type
+(36389, 4416, 22), -- Races
 -- Mercenary Captain
 (36390, 4045, 1), -- Resist Full Magic Attack
-(36390, 4408, 11), -- HP Increase (3x)
-(36390, 4409, 1), -- MP Increase (1x)
-(36390, 4410, 11), -- Average P. Atk.
-(36390, 4411, 11), -- Average M. Atk.
-(36390, 4412, 11), -- Average P. Def.
-(36390, 4413, 11), -- Average M. Def.
-(36390, 4414, 2), -- Standard Type
-(36390, 4415, 3), -- One-handed Sword
-(36390, 4416, 14), -- Humans
+(36390, 4408, 11), -- HP Modifiers
+(36390, 4409, 1), -- MP Modifiers
+(36390, 4410, 11), -- P. Atk. Modifiers
+(36390, 4411, 11), -- M. Atk. Modifiers
+(36390, 4412, 11), -- P. Def. Modifiers
+(36390, 4413, 11), -- M. Def. Modifiers
+(36390, 4414, 2), -- Armor Type
+(36390, 4415, 3), -- Weapon Type
+(36390, 4416, 14), -- Races
 -- Mercenary Private
 (36391, 4045, 1), -- Resist Full Magic Attack
-(36391, 4408, 11), -- HP Increase (3x)
-(36391, 4409, 1), -- MP Increase (1x)
-(36391, 4410, 13), -- Slightly Strong P. Atk.
-(36391, 4411, 11), -- Average M. Atk.
-(36391, 4412, 11), -- Average P. Def.
-(36391, 4413, 11), -- Average M. Def.
-(36391, 4414, 2), -- Standard Type
-(36391, 4415, 11), -- Spears
-(36391, 4416, 17), -- Orcs
+(36391, 4408, 11), -- HP Modifiers
+(36391, 4409, 1), -- MP Modifiers
+(36391, 4410, 13), -- P. Atk. Modifiers
+(36391, 4411, 11), -- M. Atk. Modifiers
+(36391, 4412, 11), -- P. Def. Modifiers
+(36391, 4413, 11), -- M. Def. Modifiers
+(36391, 4414, 2), -- Armor Type
+(36391, 4415, 11), -- Weapon Type
+(36391, 4416, 17), -- Races
 -- Improvised Explosive
 (36392, 4045, 1), -- Resist Full Magic Attack
-(36392, 4408, 1), -- HP Increase (1x)
-(36392, 4409, 1), -- MP Increase (1x)
-(36392, 4410, 11), -- Average P. Atk.
-(36392, 4411, 11), -- Average M. Atk.
-(36392, 4412, 11), -- Average P. Def.
-(36392, 4413, 11), -- Average M. Def.
-(36392, 4414, 2), -- Standard Type
-(36392, 4415, 3), -- One-handed Sword
-(36392, 4416, 6), -- Humanoids
+(36392, 4408, 1), -- HP Modifiers
+(36392, 4409, 1), -- MP Modifiers
+(36392, 4410, 11), -- P. Atk. Modifiers
+(36392, 4411, 11), -- M. Atk. Modifiers
+(36392, 4412, 11), -- P. Def. Modifiers
+(36392, 4413, 11), -- M. Def. Modifiers
+(36392, 4414, 2), -- Armor Type
+(36392, 4415, 3), -- Weapon Type
+(36392, 4416, 6), -- Races
 -- Special Envoy
 (36393, 4045, 1), -- Resist Full Magic Attack
-(36393, 4408, 1), -- HP Increase (1x)
-(36393, 4409, 1), -- MP Increase (1x)
-(36393, 4410, 11), -- Average P. Atk.
-(36393, 4411, 11), -- Average M. Atk.
-(36393, 4412, 11), -- Average P. Def.
-(36393, 4413, 11), -- Average M. Def.
-(36393, 4414, 2), -- Standard Type
-(36393, 4415, 3), -- One-handed Sword
-(36393, 4416, 14), -- Humans
+(36393, 4408, 1), -- HP Modifiers
+(36393, 4409, 1), -- MP Modifiers
+(36393, 4410, 11), -- P. Atk. Modifiers
+(36393, 4411, 11), -- M. Atk. Modifiers
+(36393, 4412, 11), -- P. Def. Modifiers
+(36393, 4413, 11), -- M. Def. Modifiers
+(36393, 4414, 2), -- Armor Type
+(36393, 4415, 3), -- Weapon Type
+(36393, 4416, 14), -- Races
 -- Special Envoy
 (36394, 4045, 1), -- Resist Full Magic Attack
-(36394, 4408, 1), -- HP Increase (1x)
-(36394, 4409, 1), -- MP Increase (1x)
-(36394, 4410, 11), -- Average P. Atk.
-(36394, 4411, 11), -- Average M. Atk.
-(36394, 4412, 11), -- Average P. Def.
-(36394, 4413, 11), -- Average M. Def.
-(36394, 4414, 2), -- Standard Type
-(36394, 4415, 3), -- One-handed Sword
-(36394, 4416, 14), -- Humans
+(36394, 4408, 1), -- HP Modifiers
+(36394, 4409, 1), -- MP Modifiers
+(36394, 4410, 11), -- P. Atk. Modifiers
+(36394, 4411, 11), -- M. Atk. Modifiers
+(36394, 4412, 11), -- P. Def. Modifiers
+(36394, 4413, 11), -- M. Def. Modifiers
+(36394, 4414, 2), -- Armor Type
+(36394, 4415, 3), -- Weapon Type
+(36394, 4416, 14), -- Races
 -- Special Envoy
 (36395, 4045, 1), -- Resist Full Magic Attack
-(36395, 4408, 1), -- HP Increase (1x)
-(36395, 4409, 1), -- MP Increase (1x)
-(36395, 4410, 11), -- Average P. Atk.
-(36395, 4411, 11), -- Average M. Atk.
-(36395, 4412, 11), -- Average P. Def.
-(36395, 4413, 11), -- Average M. Def.
-(36395, 4414, 2), -- Standard Type
-(36395, 4415, 3), -- One-handed Sword
-(36395, 4416, 14), -- Humans
+(36395, 4408, 1), -- HP Modifiers
+(36395, 4409, 1), -- MP Modifiers
+(36395, 4410, 11), -- P. Atk. Modifiers
+(36395, 4411, 11), -- M. Atk. Modifiers
+(36395, 4412, 11), -- P. Def. Modifiers
+(36395, 4413, 11), -- M. Def. Modifiers
+(36395, 4414, 2), -- Armor Type
+(36395, 4415, 3), -- Weapon Type
+(36395, 4416, 14), -- Races
 -- Special Envoy
 (36396, 4045, 1), -- Resist Full Magic Attack
-(36396, 4408, 1), -- HP Increase (1x)
-(36396, 4409, 1), -- MP Increase (1x)
-(36396, 4410, 11), -- Average P. Atk.
-(36396, 4411, 11), -- Average M. Atk.
-(36396, 4412, 11), -- Average P. Def.
-(36396, 4413, 11), -- Average M. Def.
-(36396, 4414, 2), -- Standard Type
-(36396, 4415, 3), -- One-handed Sword
-(36396, 4416, 14), -- Humans
+(36396, 4408, 1), -- HP Modifiers
+(36396, 4409, 1), -- MP Modifiers
+(36396, 4410, 11), -- P. Atk. Modifiers
+(36396, 4411, 11), -- M. Atk. Modifiers
+(36396, 4412, 11), -- P. Def. Modifiers
+(36396, 4413, 11), -- M. Def. Modifiers
+(36396, 4414, 2), -- Armor Type
+(36396, 4415, 3), -- Weapon Type
+(36396, 4416, 14), -- Races
 -- Special Envoy
 (36397, 4045, 1), -- Resist Full Magic Attack
-(36397, 4408, 1), -- HP Increase (1x)
-(36397, 4409, 1), -- MP Increase (1x)
-(36397, 4410, 11), -- Average P. Atk.
-(36397, 4411, 11), -- Average M. Atk.
-(36397, 4412, 11), -- Average P. Def.
-(36397, 4413, 11), -- Average M. Def.
-(36397, 4414, 2), -- Standard Type
-(36397, 4415, 3), -- One-handed Sword
-(36397, 4416, 16), -- Dark Elves
+(36397, 4408, 1), -- HP Modifiers
+(36397, 4409, 1), -- MP Modifiers
+(36397, 4410, 11), -- P. Atk. Modifiers
+(36397, 4411, 11), -- M. Atk. Modifiers
+(36397, 4412, 11), -- P. Def. Modifiers
+(36397, 4413, 11), -- M. Def. Modifiers
+(36397, 4414, 2), -- Armor Type
+(36397, 4415, 3), -- Weapon Type
+(36397, 4416, 16), -- Races
 -- Special Envoy
 (36398, 4045, 1), -- Resist Full Magic Attack
-(36398, 4408, 1), -- HP Increase (1x)
-(36398, 4409, 1), -- MP Increase (1x)
-(36398, 4410, 11), -- Average P. Atk.
-(36398, 4411, 11), -- Average M. Atk.
-(36398, 4412, 11), -- Average P. Def.
-(36398, 4413, 11), -- Average M. Def.
-(36398, 4414, 2), -- Standard Type
-(36398, 4415, 3), -- One-handed Sword
-(36398, 4416, 14), -- Humans
+(36398, 4408, 1), -- HP Modifiers
+(36398, 4409, 1), -- MP Modifiers
+(36398, 4410, 11), -- P. Atk. Modifiers
+(36398, 4411, 11), -- M. Atk. Modifiers
+(36398, 4412, 11), -- P. Def. Modifiers
+(36398, 4413, 11), -- M. Def. Modifiers
+(36398, 4414, 2), -- Armor Type
+(36398, 4415, 3), -- Weapon Type
+(36398, 4416, 14), -- Races
 -- Special Envoy
 (36399, 4045, 1), -- Resist Full Magic Attack
-(36399, 4408, 1), -- HP Increase (1x)
-(36399, 4409, 1), -- MP Increase (1x)
-(36399, 4410, 11), -- Average P. Atk.
-(36399, 4411, 11), -- Average M. Atk.
-(36399, 4412, 11), -- Average P. Def.
-(36399, 4413, 11), -- Average M. Def.
-(36399, 4414, 2), -- Standard Type
-(36399, 4415, 3), -- One-handed Sword
-(36399, 4416, 14), -- Humans
+(36399, 4408, 1), -- HP Modifiers
+(36399, 4409, 1), -- MP Modifiers
+(36399, 4410, 11), -- P. Atk. Modifiers
+(36399, 4411, 11), -- M. Atk. Modifiers
+(36399, 4412, 11), -- P. Def. Modifiers
+(36399, 4413, 11), -- M. Def. Modifiers
+(36399, 4414, 2), -- Armor Type
+(36399, 4415, 3), -- Weapon Type
+(36399, 4416, 14), -- Races
 -- Special Envoy
 (36400, 4045, 1), -- Resist Full Magic Attack
-(36400, 4408, 1), -- HP Increase (1x)
-(36400, 4409, 1), -- MP Increase (1x)
-(36400, 4410, 11), -- Average P. Atk.
-(36400, 4411, 11), -- Average M. Atk.
-(36400, 4412, 11), -- Average P. Def.
-(36400, 4413, 11), -- Average M. Def.
-(36400, 4414, 2), -- Standard Type
-(36400, 4415, 3), -- One-handed Sword
-(36400, 4416, 15), -- Elves
+(36400, 4408, 1), -- HP Modifiers
+(36400, 4409, 1), -- MP Modifiers
+(36400, 4410, 11), -- P. Atk. Modifiers
+(36400, 4411, 11), -- M. Atk. Modifiers
+(36400, 4412, 11), -- P. Def. Modifiers
+(36400, 4413, 11), -- M. Def. Modifiers
+(36400, 4414, 2), -- Armor Type
+(36400, 4415, 3), -- Weapon Type
+(36400, 4416, 15), -- Races
 -- Special Envoy
 (36401, 4045, 1), -- Resist Full Magic Attack
-(36401, 4408, 1), -- HP Increase (1x)
-(36401, 4409, 1), -- MP Increase (1x)
-(36401, 4410, 11), -- Average P. Atk.
-(36401, 4411, 11), -- Average M. Atk.
-(36401, 4412, 11), -- Average P. Def.
-(36401, 4413, 11), -- Average M. Def.
-(36401, 4414, 2), -- Standard Type
-(36401, 4415, 3), -- One-handed Sword
-(36401, 4416, 14), -- Humans
+(36401, 4408, 1), -- HP Modifiers
+(36401, 4409, 1), -- MP Modifiers
+(36401, 4410, 11), -- P. Atk. Modifiers
+(36401, 4411, 11), -- M. Atk. Modifiers
+(36401, 4412, 11), -- P. Def. Modifiers
+(36401, 4413, 11), -- M. Def. Modifiers
+(36401, 4414, 2), -- Armor Type
+(36401, 4415, 3), -- Weapon Type
+(36401, 4416, 14), -- Races
 -- Olympiad Host
 (36402, 4045, 1), -- Resist Full Magic Attack
-(36402, 4408, 1), -- HP Increase (1x)
-(36402, 4409, 1), -- MP Increase (1x)
-(36402, 4410, 11), -- Average P. Atk.
-(36402, 4411, 11), -- Average M. Atk.
-(36402, 4412, 11), -- Average P. Def.
-(36402, 4413, 11), -- Average M. Def.
-(36402, 4414, 2), -- Standard Type
-(36402, 4415, 3), -- One-handed Sword
-(36402, 4416, 14), -- Humans
+(36402, 4408, 1), -- HP Modifiers
+(36402, 4409, 1), -- MP Modifiers
+(36402, 4410, 11), -- P. Atk. Modifiers
+(36402, 4411, 11), -- M. Atk. Modifiers
+(36402, 4412, 11), -- P. Def. Modifiers
+(36402, 4413, 11), -- M. Def. Modifiers
+(36402, 4414, 2), -- Armor Type
+(36402, 4415, 3), -- Weapon Type
+(36402, 4416, 14), -- Races
 -- Warden
 (36403, 4045, 1), -- Resist Full Magic Attack
-(36403, 4408, 1), -- HP Increase (1x)
-(36403, 4409, 1), -- MP Increase (1x)
-(36403, 4410, 11), -- Average P. Atk.
-(36403, 4411, 11), -- Average M. Atk.
-(36403, 4412, 11), -- Average P. Def.
-(36403, 4413, 11), -- Average M. Def.
-(36403, 4414, 2), -- Standard Type
-(36403, 4415, 3), -- One-handed Sword
-(36403, 4416, 14), -- Humans
+(36403, 4408, 1), -- HP Modifiers
+(36403, 4409, 1), -- MP Modifiers
+(36403, 4410, 11), -- P. Atk. Modifiers
+(36403, 4411, 11), -- M. Atk. Modifiers
+(36403, 4412, 11), -- P. Def. Modifiers
+(36403, 4413, 11), -- M. Def. Modifiers
+(36403, 4414, 2), -- Armor Type
+(36403, 4415, 3), -- Weapon Type
+(36403, 4416, 14), -- Races
 -- Warden
 (36404, 4045, 1), -- Resist Full Magic Attack
-(36404, 4408, 1), -- HP Increase (1x)
-(36404, 4409, 1), -- MP Increase (1x)
-(36404, 4410, 11), -- Average P. Atk.
-(36404, 4411, 11), -- Average M. Atk.
-(36404, 4412, 11), -- Average P. Def.
-(36404, 4413, 11), -- Average M. Def.
-(36404, 4414, 2), -- Standard Type
-(36404, 4415, 3), -- One-handed Sword
-(36404, 4416, 14), -- Humans
+(36404, 4408, 1), -- HP Modifiers
+(36404, 4409, 1), -- MP Modifiers
+(36404, 4410, 11), -- P. Atk. Modifiers
+(36404, 4411, 11), -- M. Atk. Modifiers
+(36404, 4412, 11), -- P. Def. Modifiers
+(36404, 4413, 11), -- M. Def. Modifiers
+(36404, 4414, 2), -- Armor Type
+(36404, 4415, 3), -- Weapon Type
+(36404, 4416, 14), -- Races
 -- Warden
 (36405, 4045, 1), -- Resist Full Magic Attack
-(36405, 4408, 1), -- HP Increase (1x)
-(36405, 4409, 1), -- MP Increase (1x)
-(36405, 4410, 11), -- Average P. Atk.
-(36405, 4411, 11), -- Average M. Atk.
-(36405, 4412, 11), -- Average P. Def.
-(36405, 4413, 11), -- Average M. Def.
-(36405, 4414, 2), -- Standard Type
-(36405, 4415, 3), -- One-handed Sword
-(36405, 4416, 14), -- Humans
+(36405, 4408, 1), -- HP Modifiers
+(36405, 4409, 1), -- MP Modifiers
+(36405, 4410, 11), -- P. Atk. Modifiers
+(36405, 4411, 11), -- M. Atk. Modifiers
+(36405, 4412, 11), -- P. Def. Modifiers
+(36405, 4413, 11), -- M. Def. Modifiers
+(36405, 4414, 2), -- Armor Type
+(36405, 4415, 3), -- Weapon Type
+(36405, 4416, 14), -- Races
 -- Warden
 (36406, 4045, 1), -- Resist Full Magic Attack
-(36406, 4408, 1), -- HP Increase (1x)
-(36406, 4409, 1), -- MP Increase (1x)
-(36406, 4410, 11), -- Average P. Atk.
-(36406, 4411, 11), -- Average M. Atk.
-(36406, 4412, 11), -- Average P. Def.
-(36406, 4413, 11), -- Average M. Def.
-(36406, 4414, 2), -- Standard Type
-(36406, 4415, 3), -- One-handed Sword
-(36406, 4416, 14), -- Humans
+(36406, 4408, 1), -- HP Modifiers
+(36406, 4409, 1), -- MP Modifiers
+(36406, 4410, 11), -- P. Atk. Modifiers
+(36406, 4411, 11), -- M. Atk. Modifiers
+(36406, 4412, 11), -- P. Def. Modifiers
+(36406, 4413, 11), -- M. Def. Modifiers
+(36406, 4414, 2), -- Armor Type
+(36406, 4415, 3), -- Weapon Type
+(36406, 4416, 14), -- Races
 -- Warden
 (36407, 4045, 1), -- Resist Full Magic Attack
-(36407, 4408, 1), -- HP Increase (1x)
-(36407, 4409, 1), -- MP Increase (1x)
-(36407, 4410, 11), -- Average P. Atk.
-(36407, 4411, 11), -- Average M. Atk.
-(36407, 4412, 11), -- Average P. Def.
-(36407, 4413, 11), -- Average M. Def.
-(36407, 4414, 2), -- Standard Type
-(36407, 4415, 3), -- One-handed Sword
-(36407, 4416, 14), -- Humans
+(36407, 4408, 1), -- HP Modifiers
+(36407, 4409, 1), -- MP Modifiers
+(36407, 4410, 11), -- P. Atk. Modifiers
+(36407, 4411, 11), -- M. Atk. Modifiers
+(36407, 4412, 11), -- P. Def. Modifiers
+(36407, 4413, 11), -- M. Def. Modifiers
+(36407, 4414, 2), -- Armor Type
+(36407, 4415, 3), -- Weapon Type
+(36407, 4416, 14), -- Races
 -- Warden
 (36408, 4045, 1), -- Resist Full Magic Attack
-(36408, 4408, 1), -- HP Increase (1x)
-(36408, 4409, 1), -- MP Increase (1x)
-(36408, 4410, 11), -- Average P. Atk.
-(36408, 4411, 11), -- Average M. Atk.
-(36408, 4412, 11), -- Average P. Def.
-(36408, 4413, 11), -- Average M. Def.
-(36408, 4414, 2), -- Standard Type
-(36408, 4415, 3), -- One-handed Sword
-(36408, 4416, 14), -- Humans
+(36408, 4408, 1), -- HP Modifiers
+(36408, 4409, 1), -- MP Modifiers
+(36408, 4410, 11), -- P. Atk. Modifiers
+(36408, 4411, 11), -- M. Atk. Modifiers
+(36408, 4412, 11), -- P. Def. Modifiers
+(36408, 4413, 11), -- M. Def. Modifiers
+(36408, 4414, 2), -- Armor Type
+(36408, 4415, 3), -- Weapon Type
+(36408, 4416, 14), -- Races
 -- Warden
 (36409, 4045, 1), -- Resist Full Magic Attack
-(36409, 4408, 1), -- HP Increase (1x)
-(36409, 4409, 1), -- MP Increase (1x)
-(36409, 4410, 11), -- Average P. Atk.
-(36409, 4411, 11), -- Average M. Atk.
-(36409, 4412, 11), -- Average P. Def.
-(36409, 4413, 11), -- Average M. Def.
-(36409, 4414, 2), -- Standard Type
-(36409, 4415, 3), -- One-handed Sword
-(36409, 4416, 14), -- Humans
+(36409, 4408, 1), -- HP Modifiers
+(36409, 4409, 1), -- MP Modifiers
+(36409, 4410, 11), -- P. Atk. Modifiers
+(36409, 4411, 11), -- M. Atk. Modifiers
+(36409, 4412, 11), -- P. Def. Modifiers
+(36409, 4413, 11), -- M. Def. Modifiers
+(36409, 4414, 2), -- Armor Type
+(36409, 4415, 3), -- Weapon Type
+(36409, 4416, 14), -- Races
 -- Warden
 (36410, 4045, 1), -- Resist Full Magic Attack
-(36410, 4408, 1), -- HP Increase (1x)
-(36410, 4409, 1), -- MP Increase (1x)
-(36410, 4410, 11), -- Average P. Atk.
-(36410, 4411, 11), -- Average M. Atk.
-(36410, 4412, 11), -- Average P. Def.
-(36410, 4413, 11), -- Average M. Def.
-(36410, 4414, 2), -- Standard Type
-(36410, 4415, 3), -- One-handed Sword
-(36410, 4416, 14), -- Humans
+(36410, 4408, 1), -- HP Modifiers
+(36410, 4409, 1), -- MP Modifiers
+(36410, 4410, 11), -- P. Atk. Modifiers
+(36410, 4411, 11), -- M. Atk. Modifiers
+(36410, 4412, 11), -- P. Def. Modifiers
+(36410, 4413, 11), -- M. Def. Modifiers
+(36410, 4414, 2), -- Armor Type
+(36410, 4415, 3), -- Weapon Type
+(36410, 4416, 14), -- Races
 -- Warden
 (36411, 4045, 1), -- Resist Full Magic Attack
-(36411, 4408, 1), -- HP Increase (1x)
-(36411, 4409, 1), -- MP Increase (1x)
-(36411, 4410, 11), -- Average P. Atk.
-(36411, 4411, 11), -- Average M. Atk.
-(36411, 4412, 11), -- Average P. Def.
-(36411, 4413, 11), -- Average M. Def.
-(36411, 4414, 2), -- Standard Type
-(36411, 4415, 3), -- One-handed Sword
-(36411, 4416, 14), -- Humans
+(36411, 4408, 1), -- HP Modifiers
+(36411, 4409, 1), -- MP Modifiers
+(36411, 4410, 11), -- P. Atk. Modifiers
+(36411, 4411, 11), -- M. Atk. Modifiers
+(36411, 4412, 11), -- P. Def. Modifiers
+(36411, 4413, 11), -- M. Def. Modifiers
+(36411, 4414, 2), -- Armor Type
+(36411, 4415, 3), -- Weapon Type
+(36411, 4416, 14), -- Races
 -- Fortress Trap
-(36412, 4390, 1), -- Mystic Immunity
-(36412, 4408, 1), -- HP Increase (1x)
-(36412, 4409, 1), -- MP Increase (1x)
-(36412, 4410, 11), -- Average P. Atk.
-(36412, 4411, 11), -- Average M. Atk.
-(36412, 4412, 11), -- Average P. Def.
-(36412, 4413, 11), -- Average M. Def.
-(36412, 4414, 2), -- Standard Type
-(36412, 4415, 1), -- Bare Hands
-(36412, 4416, 2), -- Magic Creatures
+(36412, 4390, 1), -- NPC Abnormal Immunity
+(36412, 4408, 1), -- HP Modifiers
+(36412, 4409, 1), -- MP Modifiers
+(36412, 4410, 11), -- P. Atk. Modifiers
+(36412, 4411, 11), -- M. Atk. Modifiers
+(36412, 4412, 11), -- P. Def. Modifiers
+(36412, 4413, 11), -- M. Def. Modifiers
+(36412, 4414, 2), -- Armor Type
+(36412, 4415, 1), -- Weapon Type
+(36412, 4416, 2), -- Races
 -- Fortress Trap
-(36413, 4390, 1), -- Mystic Immunity
-(36413, 4408, 1), -- HP Increase (1x)
-(36413, 4409, 1), -- MP Increase (1x)
-(36413, 4410, 11), -- Average P. Atk.
-(36413, 4411, 11), -- Average M. Atk.
-(36413, 4412, 11), -- Average P. Def.
-(36413, 4413, 11), -- Average M. Def.
-(36413, 4414, 2), -- Standard Type
-(36413, 4415, 1), -- Bare Hands
-(36413, 4416, 2), -- Magic Creatures
+(36413, 4390, 1), -- NPC Abnormal Immunity
+(36413, 4408, 1), -- HP Modifiers
+(36413, 4409, 1), -- MP Modifiers
+(36413, 4410, 11), -- P. Atk. Modifiers
+(36413, 4411, 11), -- M. Atk. Modifiers
+(36413, 4412, 11), -- P. Def. Modifiers
+(36413, 4413, 11), -- M. Def. Modifiers
+(36413, 4414, 2), -- Armor Type
+(36413, 4415, 1), -- Weapon Type
+(36413, 4416, 2), -- Races
 -- Fortress Trap
-(36414, 4390, 1), -- Mystic Immunity
-(36414, 4408, 1), -- HP Increase (1x)
-(36414, 4409, 1), -- MP Increase (1x)
-(36414, 4410, 11), -- Average P. Atk.
-(36414, 4411, 11), -- Average M. Atk.
-(36414, 4412, 11), -- Average P. Def.
-(36414, 4413, 11), -- Average M. Def.
-(36414, 4414, 2), -- Standard Type
-(36414, 4415, 1), -- Bare Hands
-(36414, 4416, 2), -- Magic Creatures
+(36414, 4390, 1), -- NPC Abnormal Immunity
+(36414, 4408, 1), -- HP Modifiers
+(36414, 4409, 1), -- MP Modifiers
+(36414, 4410, 11), -- P. Atk. Modifiers
+(36414, 4411, 11), -- M. Atk. Modifiers
+(36414, 4412, 11), -- P. Def. Modifiers
+(36414, 4413, 11), -- M. Def. Modifiers
+(36414, 4414, 2), -- Armor Type
+(36414, 4415, 1), -- Weapon Type
+(36414, 4416, 2), -- Races
 -- Fortress Trap
-(36415, 4390, 1), -- Mystic Immunity
-(36415, 4408, 1), -- HP Increase (1x)
-(36415, 4409, 1), -- MP Increase (1x)
-(36415, 4410, 11), -- Average P. Atk.
-(36415, 4411, 11), -- Average M. Atk.
-(36415, 4412, 11), -- Average P. Def.
-(36415, 4413, 11), -- Average M. Def.
-(36415, 4414, 2), -- Standard Type
-(36415, 4415, 1), -- Bare Hands
-(36415, 4416, 2), -- Magic Creatures
+(36415, 4390, 1), -- NPC Abnormal Immunity
+(36415, 4408, 1), -- HP Modifiers
+(36415, 4409, 1), -- MP Modifiers
+(36415, 4410, 11), -- P. Atk. Modifiers
+(36415, 4411, 11), -- M. Atk. Modifiers
+(36415, 4412, 11), -- P. Def. Modifiers
+(36415, 4413, 11), -- M. Def. Modifiers
+(36415, 4414, 2), -- Armor Type
+(36415, 4415, 1), -- Weapon Type
+(36415, 4416, 2), -- Races
 -- Fortress Trap
-(36416, 4390, 1), -- Mystic Immunity
-(36416, 4408, 1), -- HP Increase (1x)
-(36416, 4409, 1), -- MP Increase (1x)
-(36416, 4410, 11), -- Average P. Atk.
-(36416, 4411, 11), -- Average M. Atk.
-(36416, 4412, 11), -- Average P. Def.
-(36416, 4413, 11), -- Average M. Def.
-(36416, 4414, 2), -- Standard Type
-(36416, 4415, 1), -- Bare Hands
-(36416, 4416, 2), -- Magic Creatures
+(36416, 4390, 1), -- NPC Abnormal Immunity
+(36416, 4408, 1), -- HP Modifiers
+(36416, 4409, 1), -- MP Modifiers
+(36416, 4410, 11), -- P. Atk. Modifiers
+(36416, 4411, 11), -- M. Atk. Modifiers
+(36416, 4412, 11), -- P. Def. Modifiers
+(36416, 4413, 11), -- M. Def. Modifiers
+(36416, 4414, 2), -- Armor Type
+(36416, 4415, 1), -- Weapon Type
+(36416, 4416, 2), -- Races
 -- Fortress Trap
-(36417, 4390, 1), -- Mystic Immunity
-(36417, 4408, 1), -- HP Increase (1x)
-(36417, 4409, 1), -- MP Increase (1x)
-(36417, 4410, 11), -- Average P. Atk.
-(36417, 4411, 11), -- Average M. Atk.
-(36417, 4412, 11), -- Average P. Def.
-(36417, 4413, 11), -- Average M. Def.
-(36417, 4414, 2), -- Standard Type
-(36417, 4415, 1), -- Bare Hands
-(36417, 4416, 2), -- Magic Creatures
+(36417, 4390, 1), -- NPC Abnormal Immunity
+(36417, 4408, 1), -- HP Modifiers
+(36417, 4409, 1), -- MP Modifiers
+(36417, 4410, 11), -- P. Atk. Modifiers
+(36417, 4411, 11), -- M. Atk. Modifiers
+(36417, 4412, 11), -- P. Def. Modifiers
+(36417, 4413, 11), -- M. Def. Modifiers
+(36417, 4414, 2), -- Armor Type
+(36417, 4415, 1), -- Weapon Type
+(36417, 4416, 2), -- Races
 -- Fortress Trap
-(36418, 4390, 1), -- Mystic Immunity
-(36418, 4408, 1), -- HP Increase (1x)
-(36418, 4409, 1), -- MP Increase (1x)
-(36418, 4410, 11), -- Average P. Atk.
-(36418, 4411, 11), -- Average M. Atk.
-(36418, 4412, 11), -- Average P. Def.
-(36418, 4413, 11), -- Average M. Def.
-(36418, 4414, 2), -- Standard Type
-(36418, 4415, 1), -- Bare Hands
-(36418, 4416, 2), -- Magic Creatures
+(36418, 4390, 1), -- NPC Abnormal Immunity
+(36418, 4408, 1), -- HP Modifiers
+(36418, 4409, 1), -- MP Modifiers
+(36418, 4410, 11), -- P. Atk. Modifiers
+(36418, 4411, 11), -- M. Atk. Modifiers
+(36418, 4412, 11), -- P. Def. Modifiers
+(36418, 4413, 11), -- M. Def. Modifiers
+(36418, 4414, 2), -- Armor Type
+(36418, 4415, 1), -- Weapon Type
+(36418, 4416, 2), -- Races
 -- Fortress Trap
-(36419, 4390, 1), -- Mystic Immunity
-(36419, 4408, 1), -- HP Increase (1x)
-(36419, 4409, 1), -- MP Increase (1x)
-(36419, 4410, 11), -- Average P. Atk.
-(36419, 4411, 11), -- Average M. Atk.
-(36419, 4412, 11), -- Average P. Def.
-(36419, 4413, 11), -- Average M. Def.
-(36419, 4414, 2), -- Standard Type
-(36419, 4415, 1), -- Bare Hands
-(36419, 4416, 2), -- Magic Creatures
+(36419, 4390, 1), -- NPC Abnormal Immunity
+(36419, 4408, 1), -- HP Modifiers
+(36419, 4409, 1), -- MP Modifiers
+(36419, 4410, 11), -- P. Atk. Modifiers
+(36419, 4411, 11), -- M. Atk. Modifiers
+(36419, 4412, 11), -- P. Def. Modifiers
+(36419, 4413, 11), -- M. Def. Modifiers
+(36419, 4414, 2), -- Armor Type
+(36419, 4415, 1), -- Weapon Type
+(36419, 4416, 2), -- Races
 -- Fortress Trap
-(36420, 4390, 1), -- Mystic Immunity
-(36420, 4408, 1), -- HP Increase (1x)
-(36420, 4409, 1), -- MP Increase (1x)
-(36420, 4410, 11), -- Average P. Atk.
-(36420, 4411, 11), -- Average M. Atk.
-(36420, 4412, 11), -- Average P. Def.
-(36420, 4413, 11), -- Average M. Def.
-(36420, 4414, 2), -- Standard Type
-(36420, 4415, 1), -- Bare Hands
-(36420, 4416, 2), -- Magic Creatures
+(36420, 4390, 1), -- NPC Abnormal Immunity
+(36420, 4408, 1), -- HP Modifiers
+(36420, 4409, 1), -- MP Modifiers
+(36420, 4410, 11), -- P. Atk. Modifiers
+(36420, 4411, 11), -- M. Atk. Modifiers
+(36420, 4412, 11), -- P. Def. Modifiers
+(36420, 4413, 11), -- M. Def. Modifiers
+(36420, 4414, 2), -- Armor Type
+(36420, 4415, 1), -- Weapon Type
+(36420, 4416, 2), -- Races
 -- Fortress Trap
-(36421, 4390, 1), -- Mystic Immunity
-(36421, 4408, 1), -- HP Increase (1x)
-(36421, 4409, 1), -- MP Increase (1x)
-(36421, 4410, 11), -- Average P. Atk.
-(36421, 4411, 11), -- Average M. Atk.
-(36421, 4412, 11), -- Average P. Def.
-(36421, 4413, 11), -- Average M. Def.
-(36421, 4414, 2), -- Standard Type
-(36421, 4415, 1), -- Bare Hands
-(36421, 4416, 2), -- Magic Creatures
+(36421, 4390, 1), -- NPC Abnormal Immunity
+(36421, 4408, 1), -- HP Modifiers
+(36421, 4409, 1), -- MP Modifiers
+(36421, 4410, 11), -- P. Atk. Modifiers
+(36421, 4411, 11), -- M. Atk. Modifiers
+(36421, 4412, 11), -- P. Def. Modifiers
+(36421, 4413, 11), -- M. Def. Modifiers
+(36421, 4414, 2), -- Armor Type
+(36421, 4415, 1), -- Weapon Type
+(36421, 4416, 2), -- Races
 -- Fortress Trap
-(36422, 4390, 1), -- Mystic Immunity
-(36422, 4408, 1), -- HP Increase (1x)
-(36422, 4409, 1), -- MP Increase (1x)
-(36422, 4410, 11), -- Average P. Atk.
-(36422, 4411, 11), -- Average M. Atk.
-(36422, 4412, 11), -- Average P. Def.
-(36422, 4413, 11), -- Average M. Def.
-(36422, 4414, 2), -- Standard Type
-(36422, 4415, 1), -- Bare Hands
-(36422, 4416, 2), -- Magic Creatures
+(36422, 4390, 1), -- NPC Abnormal Immunity
+(36422, 4408, 1), -- HP Modifiers
+(36422, 4409, 1), -- MP Modifiers
+(36422, 4410, 11), -- P. Atk. Modifiers
+(36422, 4411, 11), -- M. Atk. Modifiers
+(36422, 4412, 11), -- P. Def. Modifiers
+(36422, 4413, 11), -- M. Def. Modifiers
+(36422, 4414, 2), -- Armor Type
+(36422, 4415, 1), -- Weapon Type
+(36422, 4416, 2), -- Races
 -- Fortress Trap
-(36423, 4390, 1), -- Mystic Immunity
-(36423, 4408, 1), -- HP Increase (1x)
-(36423, 4409, 1), -- MP Increase (1x)
-(36423, 4410, 11), -- Average P. Atk.
-(36423, 4411, 11), -- Average M. Atk.
-(36423, 4412, 11), -- Average P. Def.
-(36423, 4413, 11), -- Average M. Def.
-(36423, 4414, 2), -- Standard Type
-(36423, 4415, 1), -- Bare Hands
-(36423, 4416, 2), -- Magic Creatures
+(36423, 4390, 1), -- NPC Abnormal Immunity
+(36423, 4408, 1), -- HP Modifiers
+(36423, 4409, 1), -- MP Modifiers
+(36423, 4410, 11), -- P. Atk. Modifiers
+(36423, 4411, 11), -- M. Atk. Modifiers
+(36423, 4412, 11), -- P. Def. Modifiers
+(36423, 4413, 11), -- M. Def. Modifiers
+(36423, 4414, 2), -- Armor Type
+(36423, 4415, 1), -- Weapon Type
+(36423, 4416, 2), -- Races
 -- Fortress Trap
-(36424, 4390, 1), -- Mystic Immunity
-(36424, 4408, 1), -- HP Increase (1x)
-(36424, 4409, 1), -- MP Increase (1x)
-(36424, 4410, 11), -- Average P. Atk.
-(36424, 4411, 11), -- Average M. Atk.
-(36424, 4412, 11), -- Average P. Def.
-(36424, 4413, 11), -- Average M. Def.
-(36424, 4414, 2), -- Standard Type
-(36424, 4415, 1), -- Bare Hands
-(36424, 4416, 2), -- Magic Creatures
+(36424, 4390, 1), -- NPC Abnormal Immunity
+(36424, 4408, 1), -- HP Modifiers
+(36424, 4409, 1), -- MP Modifiers
+(36424, 4410, 11), -- P. Atk. Modifiers
+(36424, 4411, 11), -- M. Atk. Modifiers
+(36424, 4412, 11), -- P. Def. Modifiers
+(36424, 4413, 11), -- M. Def. Modifiers
+(36424, 4414, 2), -- Armor Type
+(36424, 4415, 1), -- Weapon Type
+(36424, 4416, 2), -- Races
 -- Fortress Trap
-(36425, 4390, 1), -- Mystic Immunity
-(36425, 4408, 1), -- HP Increase (1x)
-(36425, 4409, 1), -- MP Increase (1x)
-(36425, 4410, 11), -- Average P. Atk.
-(36425, 4411, 11), -- Average M. Atk.
-(36425, 4412, 11), -- Average P. Def.
-(36425, 4413, 11), -- Average M. Def.
-(36425, 4414, 2), -- Standard Type
-(36425, 4415, 1), -- Bare Hands
-(36425, 4416, 2), -- Magic Creatures
+(36425, 4390, 1), -- NPC Abnormal Immunity
+(36425, 4408, 1), -- HP Modifiers
+(36425, 4409, 1), -- MP Modifiers
+(36425, 4410, 11), -- P. Atk. Modifiers
+(36425, 4411, 11), -- M. Atk. Modifiers
+(36425, 4412, 11), -- P. Def. Modifiers
+(36425, 4413, 11), -- M. Def. Modifiers
+(36425, 4414, 2), -- Armor Type
+(36425, 4415, 1), -- Weapon Type
+(36425, 4416, 2), -- Races
 -- Fortress Trap
-(36426, 4390, 1), -- Mystic Immunity
-(36426, 4408, 1), -- HP Increase (1x)
-(36426, 4409, 1), -- MP Increase (1x)
-(36426, 4410, 11), -- Average P. Atk.
-(36426, 4411, 11), -- Average M. Atk.
-(36426, 4412, 11), -- Average P. Def.
-(36426, 4413, 11), -- Average M. Def.
-(36426, 4414, 2), -- Standard Type
-(36426, 4415, 1), -- Bare Hands
-(36426, 4416, 2), -- Magic Creatures
+(36426, 4390, 1), -- NPC Abnormal Immunity
+(36426, 4408, 1), -- HP Modifiers
+(36426, 4409, 1), -- MP Modifiers
+(36426, 4410, 11), -- P. Atk. Modifiers
+(36426, 4411, 11), -- M. Atk. Modifiers
+(36426, 4412, 11), -- P. Def. Modifiers
+(36426, 4413, 11), -- M. Def. Modifiers
+(36426, 4414, 2), -- Armor Type
+(36426, 4415, 1), -- Weapon Type
+(36426, 4416, 2), -- Races
 -- Fortress Trap
-(36427, 4390, 1), -- Mystic Immunity
-(36427, 4408, 1), -- HP Increase (1x)
-(36427, 4409, 1), -- MP Increase (1x)
-(36427, 4410, 11), -- Average P. Atk.
-(36427, 4411, 11), -- Average M. Atk.
-(36427, 4412, 11), -- Average P. Def.
-(36427, 4413, 11), -- Average M. Def.
-(36427, 4414, 2), -- Standard Type
-(36427, 4415, 1), -- Bare Hands
-(36427, 4416, 2), -- Magic Creatures
+(36427, 4390, 1), -- NPC Abnormal Immunity
+(36427, 4408, 1), -- HP Modifiers
+(36427, 4409, 1), -- MP Modifiers
+(36427, 4410, 11), -- P. Atk. Modifiers
+(36427, 4411, 11), -- M. Atk. Modifiers
+(36427, 4412, 11), -- P. Def. Modifiers
+(36427, 4413, 11), -- M. Def. Modifiers
+(36427, 4414, 2), -- Armor Type
+(36427, 4415, 1), -- Weapon Type
+(36427, 4416, 2), -- Races
 -- Fortress Trap
-(36428, 4390, 1), -- Mystic Immunity
-(36428, 4408, 1), -- HP Increase (1x)
-(36428, 4409, 1), -- MP Increase (1x)
-(36428, 4410, 11), -- Average P. Atk.
-(36428, 4411, 11), -- Average M. Atk.
-(36428, 4412, 11), -- Average P. Def.
-(36428, 4413, 11), -- Average M. Def.
-(36428, 4414, 2), -- Standard Type
-(36428, 4415, 1), -- Bare Hands
-(36428, 4416, 2), -- Magic Creatures
+(36428, 4390, 1), -- NPC Abnormal Immunity
+(36428, 4408, 1), -- HP Modifiers
+(36428, 4409, 1), -- MP Modifiers
+(36428, 4410, 11), -- P. Atk. Modifiers
+(36428, 4411, 11), -- M. Atk. Modifiers
+(36428, 4412, 11), -- P. Def. Modifiers
+(36428, 4413, 11), -- M. Def. Modifiers
+(36428, 4414, 2), -- Armor Type
+(36428, 4415, 1), -- Weapon Type
+(36428, 4416, 2), -- Races
 -- Fortress Trap
-(36429, 4390, 1), -- Mystic Immunity
-(36429, 4408, 1), -- HP Increase (1x)
-(36429, 4409, 1), -- MP Increase (1x)
-(36429, 4410, 11), -- Average P. Atk.
-(36429, 4411, 11), -- Average M. Atk.
-(36429, 4412, 11), -- Average P. Def.
-(36429, 4413, 11), -- Average M. Def.
-(36429, 4414, 2), -- Standard Type
-(36429, 4415, 1), -- Bare Hands
-(36429, 4416, 2), -- Magic Creatures
+(36429, 4390, 1), -- NPC Abnormal Immunity
+(36429, 4408, 1), -- HP Modifiers
+(36429, 4409, 1), -- MP Modifiers
+(36429, 4410, 11), -- P. Atk. Modifiers
+(36429, 4411, 11), -- M. Atk. Modifiers
+(36429, 4412, 11), -- P. Def. Modifiers
+(36429, 4413, 11), -- M. Def. Modifiers
+(36429, 4414, 2), -- Armor Type
+(36429, 4415, 1), -- Weapon Type
+(36429, 4416, 2), -- Races
 -- Fortress Trap
-(36430, 4390, 1), -- Mystic Immunity
-(36430, 4408, 1), -- HP Increase (1x)
-(36430, 4409, 1), -- MP Increase (1x)
-(36430, 4410, 11), -- Average P. Atk.
-(36430, 4411, 11), -- Average M. Atk.
-(36430, 4412, 11), -- Average P. Def.
-(36430, 4413, 11), -- Average M. Def.
-(36430, 4414, 2), -- Standard Type
-(36430, 4415, 1), -- Bare Hands
-(36430, 4416, 2), -- Magic Creatures
+(36430, 4390, 1), -- NPC Abnormal Immunity
+(36430, 4408, 1), -- HP Modifiers
+(36430, 4409, 1), -- MP Modifiers
+(36430, 4410, 11), -- P. Atk. Modifiers
+(36430, 4411, 11), -- M. Atk. Modifiers
+(36430, 4412, 11), -- P. Def. Modifiers
+(36430, 4413, 11), -- M. Def. Modifiers
+(36430, 4414, 2), -- Armor Type
+(36430, 4415, 1), -- Weapon Type
+(36430, 4416, 2), -- Races
 -- Fortress Trap
-(36431, 4390, 1), -- Mystic Immunity
-(36431, 4408, 1), -- HP Increase (1x)
-(36431, 4409, 1), -- MP Increase (1x)
-(36431, 4410, 11), -- Average P. Atk.
-(36431, 4411, 11), -- Average M. Atk.
-(36431, 4412, 11), -- Average P. Def.
-(36431, 4413, 11), -- Average M. Def.
-(36431, 4414, 2), -- Standard Type
-(36431, 4415, 1), -- Bare Hands
-(36431, 4416, 2), -- Magic Creatures
+(36431, 4390, 1), -- NPC Abnormal Immunity
+(36431, 4408, 1), -- HP Modifiers
+(36431, 4409, 1), -- MP Modifiers
+(36431, 4410, 11), -- P. Atk. Modifiers
+(36431, 4411, 11), -- M. Atk. Modifiers
+(36431, 4412, 11), -- P. Def. Modifiers
+(36431, 4413, 11), -- M. Def. Modifiers
+(36431, 4414, 2), -- Armor Type
+(36431, 4415, 1), -- Weapon Type
+(36431, 4416, 2), -- Races
 -- Fortress Trap
-(36432, 4390, 1), -- Mystic Immunity
-(36432, 4408, 1), -- HP Increase (1x)
-(36432, 4409, 1), -- MP Increase (1x)
-(36432, 4410, 11), -- Average P. Atk.
-(36432, 4411, 11), -- Average M. Atk.
-(36432, 4412, 11), -- Average P. Def.
-(36432, 4413, 11), -- Average M. Def.
-(36432, 4414, 2), -- Standard Type
-(36432, 4415, 1), -- Bare Hands
-(36432, 4416, 2), -- Magic Creatures
+(36432, 4390, 1), -- NPC Abnormal Immunity
+(36432, 4408, 1), -- HP Modifiers
+(36432, 4409, 1), -- MP Modifiers
+(36432, 4410, 11), -- P. Atk. Modifiers
+(36432, 4411, 11), -- M. Atk. Modifiers
+(36432, 4412, 11), -- P. Def. Modifiers
+(36432, 4413, 11), -- M. Def. Modifiers
+(36432, 4414, 2), -- Armor Type
+(36432, 4415, 1), -- Weapon Type
+(36432, 4416, 2), -- Races
 -- Special Envoy
 (36433, 4045, 1), -- Resist Full Magic Attack
-(36433, 4408, 1), -- HP Increase (1x)
-(36433, 4409, 1), -- MP Increase (1x)
-(36433, 4410, 11), -- Average P. Atk.
-(36433, 4411, 11), -- Average M. Atk.
-(36433, 4412, 11), -- Average P. Def.
-(36433, 4413, 11), -- Average M. Def.
-(36433, 4414, 2), -- Standard Type
-(36433, 4415, 3), -- One-handed Sword
-(36433, 4416, 14), -- Humans
+(36433, 4408, 1), -- HP Modifiers
+(36433, 4409, 1), -- MP Modifiers
+(36433, 4410, 11), -- P. Atk. Modifiers
+(36433, 4411, 11), -- M. Atk. Modifiers
+(36433, 4412, 11), -- P. Def. Modifiers
+(36433, 4413, 11), -- M. Def. Modifiers
+(36433, 4414, 2), -- Armor Type
+(36433, 4415, 3), -- Weapon Type
+(36433, 4416, 14), -- Races
 -- Special Envoy
 (36434, 4045, 1), -- Resist Full Magic Attack
-(36434, 4408, 1), -- HP Increase (1x)
-(36434, 4409, 1), -- MP Increase (1x)
-(36434, 4410, 11), -- Average P. Atk.
-(36434, 4411, 11), -- Average M. Atk.
-(36434, 4412, 11), -- Average P. Def.
-(36434, 4413, 11), -- Average M. Def.
-(36434, 4414, 2), -- Standard Type
-(36434, 4415, 3), -- One-handed Sword
-(36434, 4416, 18), -- Dwarves
+(36434, 4408, 1), -- HP Modifiers
+(36434, 4409, 1), -- MP Modifiers
+(36434, 4410, 11), -- P. Atk. Modifiers
+(36434, 4411, 11), -- M. Atk. Modifiers
+(36434, 4412, 11), -- P. Def. Modifiers
+(36434, 4413, 11), -- M. Def. Modifiers
+(36434, 4414, 2), -- Armor Type
+(36434, 4415, 3), -- Weapon Type
+(36434, 4416, 18), -- Races
 -- Special Envoy
 (36435, 4045, 1), -- Resist Full Magic Attack
-(36435, 4408, 1), -- HP Increase (1x)
-(36435, 4409, 1), -- MP Increase (1x)
-(36435, 4410, 11), -- Average P. Atk.
-(36435, 4411, 11), -- Average M. Atk.
-(36435, 4412, 11), -- Average P. Def.
-(36435, 4413, 11), -- Average M. Def.
-(36435, 4414, 2), -- Standard Type
-(36435, 4415, 3), -- One-handed Sword
-(36435, 4416, 14), -- Humans
+(36435, 4408, 1), -- HP Modifiers
+(36435, 4409, 1), -- MP Modifiers
+(36435, 4410, 11), -- P. Atk. Modifiers
+(36435, 4411, 11), -- M. Atk. Modifiers
+(36435, 4412, 11), -- P. Def. Modifiers
+(36435, 4413, 11), -- M. Def. Modifiers
+(36435, 4414, 2), -- Armor Type
+(36435, 4415, 3), -- Weapon Type
+(36435, 4416, 14), -- Races
 -- Special Envoy
 (36436, 4045, 1), -- Resist Full Magic Attack
-(36436, 4408, 1), -- HP Increase (1x)
-(36436, 4409, 1), -- MP Increase (1x)
-(36436, 4410, 11), -- Average P. Atk.
-(36436, 4411, 11), -- Average M. Atk.
-(36436, 4412, 11), -- Average P. Def.
-(36436, 4413, 11), -- Average M. Def.
-(36436, 4414, 2), -- Standard Type
-(36436, 4415, 3), -- One-handed Sword
-(36436, 4416, 14), -- Humans
+(36436, 4408, 1), -- HP Modifiers
+(36436, 4409, 1), -- MP Modifiers
+(36436, 4410, 11), -- P. Atk. Modifiers
+(36436, 4411, 11), -- M. Atk. Modifiers
+(36436, 4412, 11), -- P. Def. Modifiers
+(36436, 4413, 11), -- M. Def. Modifiers
+(36436, 4414, 2), -- Armor Type
+(36436, 4415, 3), -- Weapon Type
+(36436, 4416, 14), -- Races
 -- Special Envoy
 (36437, 4045, 1), -- Resist Full Magic Attack
-(36437, 4408, 1), -- HP Increase (1x)
-(36437, 4409, 1), -- MP Increase (1x)
-(36437, 4410, 11), -- Average P. Atk.
-(36437, 4411, 11), -- Average M. Atk.
-(36437, 4412, 11), -- Average P. Def.
-(36437, 4413, 11), -- Average M. Def.
-(36437, 4414, 2), -- Standard Type
-(36437, 4415, 3), -- One-handed Sword
-(36437, 4416, 14), -- Humans
+(36437, 4408, 1), -- HP Modifiers
+(36437, 4409, 1), -- MP Modifiers
+(36437, 4410, 11), -- P. Atk. Modifiers
+(36437, 4411, 11), -- M. Atk. Modifiers
+(36437, 4412, 11), -- P. Def. Modifiers
+(36437, 4413, 11), -- M. Def. Modifiers
+(36437, 4414, 2), -- Armor Type
+(36437, 4415, 3), -- Weapon Type
+(36437, 4416, 14), -- Races
 -- Special Envoy
 (36438, 4045, 1), -- Resist Full Magic Attack
-(36438, 4408, 1), -- HP Increase (1x)
-(36438, 4409, 1), -- MP Increase (1x)
-(36438, 4410, 11), -- Average P. Atk.
-(36438, 4411, 11), -- Average M. Atk.
-(36438, 4412, 11), -- Average P. Def.
-(36438, 4413, 11), -- Average M. Def.
-(36438, 4414, 2), -- Standard Type
-(36438, 4415, 3), -- One-handed Sword
-(36438, 4416, 16), -- Dark Elves
+(36438, 4408, 1), -- HP Modifiers
+(36438, 4409, 1), -- MP Modifiers
+(36438, 4410, 11), -- P. Atk. Modifiers
+(36438, 4411, 11), -- M. Atk. Modifiers
+(36438, 4412, 11), -- P. Def. Modifiers
+(36438, 4413, 11), -- M. Def. Modifiers
+(36438, 4414, 2), -- Armor Type
+(36438, 4415, 3), -- Weapon Type
+(36438, 4416, 16), -- Races
 -- Special Envoy
 (36439, 4045, 1), -- Resist Full Magic Attack
-(36439, 4408, 1), -- HP Increase (1x)
-(36439, 4409, 1), -- MP Increase (1x)
-(36439, 4410, 11), -- Average P. Atk.
-(36439, 4411, 11), -- Average M. Atk.
-(36439, 4412, 11), -- Average P. Def.
-(36439, 4413, 11), -- Average M. Def.
-(36439, 4414, 2), -- Standard Type
-(36439, 4415, 3), -- One-handed Sword
-(36439, 4416, 14), -- Humans
+(36439, 4408, 1), -- HP Modifiers
+(36439, 4409, 1), -- MP Modifiers
+(36439, 4410, 11), -- P. Atk. Modifiers
+(36439, 4411, 11), -- M. Atk. Modifiers
+(36439, 4412, 11), -- P. Def. Modifiers
+(36439, 4413, 11), -- M. Def. Modifiers
+(36439, 4414, 2), -- Armor Type
+(36439, 4415, 3), -- Weapon Type
+(36439, 4416, 14), -- Races
 -- Special Envoy
 (36440, 4045, 1), -- Resist Full Magic Attack
-(36440, 4408, 1), -- HP Increase (1x)
-(36440, 4409, 1), -- MP Increase (1x)
-(36440, 4410, 11), -- Average P. Atk.
-(36440, 4411, 11), -- Average M. Atk.
-(36440, 4412, 11), -- Average P. Def.
-(36440, 4413, 11), -- Average M. Def.
-(36440, 4414, 2), -- Standard Type
-(36440, 4415, 3), -- One-handed Sword
-(36440, 4416, 14), -- Humans
+(36440, 4408, 1), -- HP Modifiers
+(36440, 4409, 1), -- MP Modifiers
+(36440, 4410, 11), -- P. Atk. Modifiers
+(36440, 4411, 11), -- M. Atk. Modifiers
+(36440, 4412, 11), -- P. Def. Modifiers
+(36440, 4413, 11), -- M. Def. Modifiers
+(36440, 4414, 2), -- Armor Type
+(36440, 4415, 3), -- Weapon Type
+(36440, 4416, 14), -- Races
 -- Special Envoy
 (36441, 4045, 1), -- Resist Full Magic Attack
-(36441, 4408, 1), -- HP Increase (1x)
-(36441, 4409, 1), -- MP Increase (1x)
-(36441, 4410, 11), -- Average P. Atk.
-(36441, 4411, 11), -- Average M. Atk.
-(36441, 4412, 11), -- Average P. Def.
-(36441, 4413, 11), -- Average M. Def.
-(36441, 4414, 2), -- Standard Type
-(36441, 4415, 3), -- One-handed Sword
-(36441, 4416, 14), -- Humans
+(36441, 4408, 1), -- HP Modifiers
+(36441, 4409, 1), -- MP Modifiers
+(36441, 4410, 11), -- P. Atk. Modifiers
+(36441, 4411, 11), -- M. Atk. Modifiers
+(36441, 4412, 11), -- P. Def. Modifiers
+(36441, 4413, 11), -- M. Def. Modifiers
+(36441, 4414, 2), -- Armor Type
+(36441, 4415, 3), -- Weapon Type
+(36441, 4416, 14), -- Races
 -- Special Envoy
 (36442, 4045, 1), -- Resist Full Magic Attack
-(36442, 4408, 1), -- HP Increase (1x)
-(36442, 4409, 1), -- MP Increase (1x)
-(36442, 4410, 11), -- Average P. Atk.
-(36442, 4411, 11), -- Average M. Atk.
-(36442, 4412, 11), -- Average P. Def.
-(36442, 4413, 11), -- Average M. Def.
-(36442, 4414, 2), -- Standard Type
-(36442, 4415, 3), -- One-handed Sword
-(36442, 4416, 16), -- Dark Elves
+(36442, 4408, 1), -- HP Modifiers
+(36442, 4409, 1), -- MP Modifiers
+(36442, 4410, 11), -- P. Atk. Modifiers
+(36442, 4411, 11), -- M. Atk. Modifiers
+(36442, 4412, 11), -- P. Def. Modifiers
+(36442, 4413, 11), -- M. Def. Modifiers
+(36442, 4414, 2), -- Armor Type
+(36442, 4415, 3), -- Weapon Type
+(36442, 4416, 16), -- Races
 -- Special Envoy
 (36443, 4045, 1), -- Resist Full Magic Attack
-(36443, 4408, 1), -- HP Increase (1x)
-(36443, 4409, 1), -- MP Increase (1x)
-(36443, 4410, 11), -- Average P. Atk.
-(36443, 4411, 11), -- Average M. Atk.
-(36443, 4412, 11), -- Average P. Def.
-(36443, 4413, 11), -- Average M. Def.
-(36443, 4414, 2), -- Standard Type
-(36443, 4415, 3), -- One-handed Sword
-(36443, 4416, 16), -- Dark Elves
+(36443, 4408, 1), -- HP Modifiers
+(36443, 4409, 1), -- MP Modifiers
+(36443, 4410, 11), -- P. Atk. Modifiers
+(36443, 4411, 11), -- M. Atk. Modifiers
+(36443, 4412, 11), -- P. Def. Modifiers
+(36443, 4413, 11), -- M. Def. Modifiers
+(36443, 4414, 2), -- Armor Type
+(36443, 4415, 3), -- Weapon Type
+(36443, 4416, 16), -- Races
 -- Special Envoy
 (36444, 4045, 1), -- Resist Full Magic Attack
-(36444, 4408, 1), -- HP Increase (1x)
-(36444, 4409, 1), -- MP Increase (1x)
-(36444, 4410, 11), -- Average P. Atk.
-(36444, 4411, 11), -- Average M. Atk.
-(36444, 4412, 11), -- Average P. Def.
-(36444, 4413, 11), -- Average M. Def.
-(36444, 4414, 2), -- Standard Type
-(36444, 4415, 3), -- One-handed Sword
-(36444, 4416, 14), -- Humans
+(36444, 4408, 1), -- HP Modifiers
+(36444, 4409, 1), -- MP Modifiers
+(36444, 4410, 11), -- P. Atk. Modifiers
+(36444, 4411, 11), -- M. Atk. Modifiers
+(36444, 4412, 11), -- P. Def. Modifiers
+(36444, 4413, 11), -- M. Def. Modifiers
+(36444, 4414, 2), -- Armor Type
+(36444, 4415, 3), -- Weapon Type
+(36444, 4416, 14), -- Races
 -- Special Envoy
 (36445, 4045, 1), -- Resist Full Magic Attack
-(36445, 4408, 1), -- HP Increase (1x)
-(36445, 4409, 1), -- MP Increase (1x)
-(36445, 4410, 11), -- Average P. Atk.
-(36445, 4411, 11), -- Average M. Atk.
-(36445, 4412, 11), -- Average P. Def.
-(36445, 4413, 11), -- Average M. Def.
-(36445, 4414, 2), -- Standard Type
-(36445, 4415, 3), -- One-handed Sword
-(36445, 4416, 14), -- Humans
+(36445, 4408, 1), -- HP Modifiers
+(36445, 4409, 1), -- MP Modifiers
+(36445, 4410, 11), -- P. Atk. Modifiers
+(36445, 4411, 11), -- M. Atk. Modifiers
+(36445, 4412, 11), -- P. Def. Modifiers
+(36445, 4413, 11), -- M. Def. Modifiers
+(36445, 4414, 2), -- Armor Type
+(36445, 4415, 3), -- Weapon Type
+(36445, 4416, 14), -- Races
 -- Special Envoy
 (36446, 4045, 1), -- Resist Full Magic Attack
-(36446, 4408, 1), -- HP Increase (1x)
-(36446, 4409, 1), -- MP Increase (1x)
-(36446, 4410, 11), -- Average P. Atk.
-(36446, 4411, 11), -- Average M. Atk.
-(36446, 4412, 11), -- Average P. Def.
-(36446, 4413, 11), -- Average M. Def.
-(36446, 4414, 2), -- Standard Type
-(36446, 4415, 3), -- One-handed Sword
-(36446, 4416, 16), -- Dark Elves
+(36446, 4408, 1), -- HP Modifiers
+(36446, 4409, 1), -- MP Modifiers
+(36446, 4410, 11), -- P. Atk. Modifiers
+(36446, 4411, 11), -- M. Atk. Modifiers
+(36446, 4412, 11), -- P. Def. Modifiers
+(36446, 4413, 11), -- M. Def. Modifiers
+(36446, 4414, 2), -- Armor Type
+(36446, 4415, 3), -- Weapon Type
+(36446, 4416, 16), -- Races
 -- Special Envoy
 (36447, 4045, 1), -- Resist Full Magic Attack
-(36447, 4408, 1), -- HP Increase (1x)
-(36447, 4409, 1), -- MP Increase (1x)
-(36447, 4410, 11), -- Average P. Atk.
-(36447, 4411, 11), -- Average M. Atk.
-(36447, 4412, 11), -- Average P. Def.
-(36447, 4413, 11), -- Average M. Def.
-(36447, 4414, 2), -- Standard Type
-(36447, 4415, 3), -- One-handed Sword
-(36447, 4416, 14), -- Humans
+(36447, 4408, 1), -- HP Modifiers
+(36447, 4409, 1), -- MP Modifiers
+(36447, 4410, 11), -- P. Atk. Modifiers
+(36447, 4411, 11), -- M. Atk. Modifiers
+(36447, 4412, 11), -- P. Def. Modifiers
+(36447, 4413, 11), -- M. Def. Modifiers
+(36447, 4414, 2), -- Armor Type
+(36447, 4415, 3), -- Weapon Type
+(36447, 4416, 14), -- Races
 -- Special Envoy
 (36448, 4045, 1), -- Resist Full Magic Attack
-(36448, 4408, 1), -- HP Increase (1x)
-(36448, 4409, 1), -- MP Increase (1x)
-(36448, 4410, 11), -- Average P. Atk.
-(36448, 4411, 11), -- Average M. Atk.
-(36448, 4412, 11), -- Average P. Def.
-(36448, 4413, 11), -- Average M. Def.
-(36448, 4414, 2), -- Standard Type
-(36448, 4415, 3), -- One-handed Sword
-(36448, 4416, 14), -- Humans
+(36448, 4408, 1), -- HP Modifiers
+(36448, 4409, 1), -- MP Modifiers
+(36448, 4410, 11), -- P. Atk. Modifiers
+(36448, 4411, 11), -- M. Atk. Modifiers
+(36448, 4412, 11), -- P. Def. Modifiers
+(36448, 4413, 11), -- M. Def. Modifiers
+(36448, 4414, 2), -- Armor Type
+(36448, 4415, 3), -- Weapon Type
+(36448, 4416, 14), -- Races
 -- Special Envoy
 (36449, 4045, 1), -- Resist Full Magic Attack
-(36449, 4408, 1), -- HP Increase (1x)
-(36449, 4409, 1), -- MP Increase (1x)
-(36449, 4410, 11), -- Average P. Atk.
-(36449, 4411, 11), -- Average M. Atk.
-(36449, 4412, 11), -- Average P. Def.
-(36449, 4413, 11), -- Average M. Def.
-(36449, 4414, 2), -- Standard Type
-(36449, 4415, 3), -- One-handed Sword
-(36449, 4416, 14), -- Humans
+(36449, 4408, 1), -- HP Modifiers
+(36449, 4409, 1), -- MP Modifiers
+(36449, 4410, 11), -- P. Atk. Modifiers
+(36449, 4411, 11), -- M. Atk. Modifiers
+(36449, 4412, 11), -- P. Def. Modifiers
+(36449, 4413, 11), -- M. Def. Modifiers
+(36449, 4414, 2), -- Armor Type
+(36449, 4415, 3), -- Weapon Type
+(36449, 4416, 14), -- Races
 -- Special Envoy
 (36450, 4045, 1), -- Resist Full Magic Attack
-(36450, 4408, 1), -- HP Increase (1x)
-(36450, 4409, 1), -- MP Increase (1x)
-(36450, 4410, 11), -- Average P. Atk.
-(36450, 4411, 11), -- Average M. Atk.
-(36450, 4412, 11), -- Average P. Def.
-(36450, 4413, 11), -- Average M. Def.
-(36450, 4414, 2), -- Standard Type
-(36450, 4415, 3), -- One-handed Sword
-(36450, 4416, 15), -- Elves
+(36450, 4408, 1), -- HP Modifiers
+(36450, 4409, 1), -- MP Modifiers
+(36450, 4410, 11), -- P. Atk. Modifiers
+(36450, 4411, 11), -- M. Atk. Modifiers
+(36450, 4412, 11), -- P. Def. Modifiers
+(36450, 4413, 11), -- M. Def. Modifiers
+(36450, 4414, 2), -- Armor Type
+(36450, 4415, 3), -- Weapon Type
+(36450, 4416, 15), -- Races
 -- Special Envoy
 (36451, 4045, 1), -- Resist Full Magic Attack
-(36451, 4408, 1), -- HP Increase (1x)
-(36451, 4409, 1), -- MP Increase (1x)
-(36451, 4410, 11), -- Average P. Atk.
-(36451, 4411, 11), -- Average M. Atk.
-(36451, 4412, 11), -- Average P. Def.
-(36451, 4413, 11), -- Average M. Def.
-(36451, 4414, 2), -- Standard Type
-(36451, 4415, 3), -- One-handed Sword
-(36451, 4416, 14), -- Humans
+(36451, 4408, 1), -- HP Modifiers
+(36451, 4409, 1), -- MP Modifiers
+(36451, 4410, 11), -- P. Atk. Modifiers
+(36451, 4411, 11), -- M. Atk. Modifiers
+(36451, 4412, 11), -- P. Def. Modifiers
+(36451, 4413, 11), -- M. Def. Modifiers
+(36451, 4414, 2), -- Armor Type
+(36451, 4415, 3), -- Weapon Type
+(36451, 4416, 14), -- Races
 -- Special Envoy
 (36452, 4045, 1), -- Resist Full Magic Attack
-(36452, 4408, 1), -- HP Increase (1x)
-(36452, 4409, 1), -- MP Increase (1x)
-(36452, 4410, 11), -- Average P. Atk.
-(36452, 4411, 11), -- Average M. Atk.
-(36452, 4412, 11), -- Average P. Def.
-(36452, 4413, 11), -- Average M. Def.
-(36452, 4414, 2), -- Standard Type
-(36452, 4415, 3), -- One-handed Sword
-(36452, 4416, 14), -- Humans
+(36452, 4408, 1), -- HP Modifiers
+(36452, 4409, 1), -- MP Modifiers
+(36452, 4410, 11), -- P. Atk. Modifiers
+(36452, 4411, 11), -- M. Atk. Modifiers
+(36452, 4412, 11), -- P. Def. Modifiers
+(36452, 4413, 11), -- M. Def. Modifiers
+(36452, 4414, 2), -- Armor Type
+(36452, 4415, 3), -- Weapon Type
+(36452, 4416, 14), -- Races
 -- Special Envoy
 (36453, 4045, 1), -- Resist Full Magic Attack
-(36453, 4408, 1), -- HP Increase (1x)
-(36453, 4409, 1), -- MP Increase (1x)
-(36453, 4410, 11), -- Average P. Atk.
-(36453, 4411, 11), -- Average M. Atk.
-(36453, 4412, 11), -- Average P. Def.
-(36453, 4413, 11), -- Average M. Def.
-(36453, 4414, 2), -- Standard Type
-(36453, 4415, 3), -- One-handed Sword
-(36453, 4416, 14), -- Humans
+(36453, 4408, 1), -- HP Modifiers
+(36453, 4409, 1), -- MP Modifiers
+(36453, 4410, 11), -- P. Atk. Modifiers
+(36453, 4411, 11), -- M. Atk. Modifiers
+(36453, 4412, 11), -- P. Def. Modifiers
+(36453, 4413, 11), -- M. Def. Modifiers
+(36453, 4414, 2), -- Armor Type
+(36453, 4415, 3), -- Weapon Type
+(36453, 4416, 14), -- Races
 -- Special Envoy
 (36454, 4045, 1), -- Resist Full Magic Attack
-(36454, 4408, 1), -- HP Increase (1x)
-(36454, 4409, 1), -- MP Increase (1x)
-(36454, 4410, 11), -- Average P. Atk.
-(36454, 4411, 11), -- Average M. Atk.
-(36454, 4412, 11), -- Average P. Def.
-(36454, 4413, 11), -- Average M. Def.
-(36454, 4414, 2), -- Standard Type
-(36454, 4415, 3), -- One-handed Sword
-(36454, 4416, 14), -- Humans
+(36454, 4408, 1), -- HP Modifiers
+(36454, 4409, 1), -- MP Modifiers
+(36454, 4410, 11), -- P. Atk. Modifiers
+(36454, 4411, 11), -- M. Atk. Modifiers
+(36454, 4412, 11), -- P. Def. Modifiers
+(36454, 4413, 11), -- M. Def. Modifiers
+(36454, 4414, 2), -- Armor Type
+(36454, 4415, 3), -- Weapon Type
+(36454, 4416, 14), -- Races
 -- Special Envoy
 (36455, 4045, 1), -- Resist Full Magic Attack
-(36455, 4408, 1), -- HP Increase (1x)
-(36455, 4409, 1), -- MP Increase (1x)
-(36455, 4410, 11), -- Average P. Atk.
-(36455, 4411, 11), -- Average M. Atk.
-(36455, 4412, 11), -- Average P. Def.
-(36455, 4413, 11), -- Average M. Def.
-(36455, 4414, 2), -- Standard Type
-(36455, 4415, 3), -- One-handed Sword
-(36455, 4416, 18), -- Dwarves
+(36455, 4408, 1), -- HP Modifiers
+(36455, 4409, 1), -- MP Modifiers
+(36455, 4410, 11), -- P. Atk. Modifiers
+(36455, 4411, 11), -- M. Atk. Modifiers
+(36455, 4412, 11), -- P. Def. Modifiers
+(36455, 4413, 11), -- M. Def. Modifiers
+(36455, 4414, 2), -- Armor Type
+(36455, 4415, 3), -- Weapon Type
+(36455, 4416, 18), -- Races
 -- Manor Manager
 (36456, 4045, 1), -- Resist Full Magic Attack
-(36456, 4408, 1), -- HP Increase (1x)
-(36456, 4409, 1), -- MP Increase (1x)
-(36456, 4410, 11), -- Average P. Atk.
-(36456, 4411, 11), -- Average M. Atk.
-(36456, 4412, 11), -- Average P. Def.
-(36456, 4413, 11), -- Average M. Def.
-(36456, 4414, 2), -- Standard Type
-(36456, 4415, 3), -- One-handed Sword
-(36456, 4416, 25), -- Kamael
+(36456, 4408, 1), -- HP Modifiers
+(36456, 4409, 1), -- MP Modifiers
+(36456, 4410, 11), -- P. Atk. Modifiers
+(36456, 4411, 11), -- M. Atk. Modifiers
+(36456, 4412, 11), -- P. Def. Modifiers
+(36456, 4413, 11), -- M. Def. Modifiers
+(36456, 4414, 2), -- Armor Type
+(36456, 4415, 3), -- Weapon Type
+(36456, 4416, 25), -- Races
 -- Wyvern Manager
 (36457, 4045, 1), -- Resist Full Magic Attack
-(36457, 4408, 1), -- HP Increase (1x)
-(36457, 4409, 1), -- MP Increase (1x)
-(36457, 4410, 11), -- Average P. Atk.
-(36457, 4411, 11), -- Average M. Atk.
-(36457, 4412, 11), -- Average P. Def.
-(36457, 4413, 11), -- Average M. Def.
-(36457, 4414, 2), -- Standard Type
-(36457, 4415, 3), -- One-handed Sword
-(36457, 4416, 14), -- Humans
+(36457, 4408, 1), -- HP Modifiers
+(36457, 4409, 1), -- MP Modifiers
+(36457, 4410, 11), -- P. Atk. Modifiers
+(36457, 4411, 11), -- M. Atk. Modifiers
+(36457, 4412, 11), -- P. Def. Modifiers
+(36457, 4413, 11), -- M. Def. Modifiers
+(36457, 4414, 2), -- Armor Type
+(36457, 4415, 3), -- Weapon Type
+(36457, 4416, 14), -- Races
 -- Wyvern Manager
 (36458, 4045, 1), -- Resist Full Magic Attack
-(36458, 4408, 1), -- HP Increase (1x)
-(36458, 4409, 1), -- MP Increase (1x)
-(36458, 4410, 11), -- Average P. Atk.
-(36458, 4411, 11), -- Average M. Atk.
-(36458, 4412, 11), -- Average P. Def.
-(36458, 4413, 11), -- Average M. Def.
-(36458, 4414, 2), -- Standard Type
-(36458, 4415, 3), -- One-handed Sword
-(36458, 4416, 14), -- Humans
+(36458, 4408, 1), -- HP Modifiers
+(36458, 4409, 1), -- MP Modifiers
+(36458, 4410, 11), -- P. Atk. Modifiers
+(36458, 4411, 11), -- M. Atk. Modifiers
+(36458, 4412, 11), -- P. Def. Modifiers
+(36458, 4413, 11), -- M. Def. Modifiers
+(36458, 4414, 2), -- Armor Type
+(36458, 4415, 3), -- Weapon Type
+(36458, 4416, 14), -- Races
 -- Wyvern Manager
 (36459, 4045, 1), -- Resist Full Magic Attack
-(36459, 4408, 1), -- HP Increase (1x)
-(36459, 4409, 1), -- MP Increase (1x)
-(36459, 4410, 11), -- Average P. Atk.
-(36459, 4411, 11), -- Average M. Atk.
-(36459, 4412, 11), -- Average P. Def.
-(36459, 4413, 11), -- Average M. Def.
-(36459, 4414, 2), -- Standard Type
-(36459, 4415, 3), -- One-handed Sword
-(36459, 4416, 14), -- Humans
+(36459, 4408, 1), -- HP Modifiers
+(36459, 4409, 1), -- MP Modifiers
+(36459, 4410, 11), -- P. Atk. Modifiers
+(36459, 4411, 11), -- M. Atk. Modifiers
+(36459, 4412, 11), -- P. Def. Modifiers
+(36459, 4413, 11), -- M. Def. Modifiers
+(36459, 4414, 2), -- Armor Type
+(36459, 4415, 3), -- Weapon Type
+(36459, 4416, 14), -- Races
 -- Wyvern Manager
 (36460, 4045, 1), -- Resist Full Magic Attack
-(36460, 4408, 1), -- HP Increase (1x)
-(36460, 4409, 1), -- MP Increase (1x)
-(36460, 4410, 11), -- Average P. Atk.
-(36460, 4411, 11), -- Average M. Atk.
-(36460, 4412, 11), -- Average P. Def.
-(36460, 4413, 11), -- Average M. Def.
-(36460, 4414, 2), -- Standard Type
-(36460, 4415, 3), -- One-handed Sword
-(36460, 4416, 14), -- Humans
+(36460, 4408, 1), -- HP Modifiers
+(36460, 4409, 1), -- MP Modifiers
+(36460, 4410, 11), -- P. Atk. Modifiers
+(36460, 4411, 11), -- M. Atk. Modifiers
+(36460, 4412, 11), -- P. Def. Modifiers
+(36460, 4413, 11), -- M. Def. Modifiers
+(36460, 4414, 2), -- Armor Type
+(36460, 4415, 3), -- Weapon Type
+(36460, 4416, 14), -- Races
 -- Wyvern Manager
 (36461, 4045, 1), -- Resist Full Magic Attack
-(36461, 4408, 1), -- HP Increase (1x)
-(36461, 4409, 1), -- MP Increase (1x)
-(36461, 4410, 11), -- Average P. Atk.
-(36461, 4411, 11), -- Average M. Atk.
-(36461, 4412, 11), -- Average P. Def.
-(36461, 4413, 11), -- Average M. Def.
-(36461, 4414, 2), -- Standard Type
-(36461, 4415, 3), -- One-handed Sword
-(36461, 4416, 14), -- Humans
+(36461, 4408, 1), -- HP Modifiers
+(36461, 4409, 1), -- MP Modifiers
+(36461, 4410, 11), -- P. Atk. Modifiers
+(36461, 4411, 11), -- M. Atk. Modifiers
+(36461, 4412, 11), -- P. Def. Modifiers
+(36461, 4413, 11), -- M. Def. Modifiers
+(36461, 4414, 2), -- Armor Type
+(36461, 4415, 3), -- Weapon Type
+(36461, 4416, 14), -- Races
 -- Wyvern Manager
 (36462, 4045, 1), -- Resist Full Magic Attack
-(36462, 4408, 1), -- HP Increase (1x)
-(36462, 4409, 1), -- MP Increase (1x)
-(36462, 4410, 11), -- Average P. Atk.
-(36462, 4411, 11), -- Average M. Atk.
-(36462, 4412, 11), -- Average P. Def.
-(36462, 4413, 11), -- Average M. Def.
-(36462, 4414, 2), -- Standard Type
-(36462, 4415, 3), -- One-handed Sword
-(36462, 4416, 14), -- Humans
+(36462, 4408, 1), -- HP Modifiers
+(36462, 4409, 1), -- MP Modifiers
+(36462, 4410, 11), -- P. Atk. Modifiers
+(36462, 4411, 11), -- M. Atk. Modifiers
+(36462, 4412, 11), -- P. Def. Modifiers
+(36462, 4413, 11), -- M. Def. Modifiers
+(36462, 4414, 2), -- Armor Type
+(36462, 4415, 3), -- Weapon Type
+(36462, 4416, 14), -- Races
 -- Wyvern Manager
 (36463, 4045, 1), -- Resist Full Magic Attack
-(36463, 4408, 1), -- HP Increase (1x)
-(36463, 4409, 1), -- MP Increase (1x)
-(36463, 4410, 11), -- Average P. Atk.
-(36463, 4411, 11), -- Average M. Atk.
-(36463, 4412, 11), -- Average P. Def.
-(36463, 4413, 11), -- Average M. Def.
-(36463, 4414, 2), -- Standard Type
-(36463, 4415, 3), -- One-handed Sword
-(36463, 4416, 14), -- Humans
+(36463, 4408, 1), -- HP Modifiers
+(36463, 4409, 1), -- MP Modifiers
+(36463, 4410, 11), -- P. Atk. Modifiers
+(36463, 4411, 11), -- M. Atk. Modifiers
+(36463, 4412, 11), -- P. Def. Modifiers
+(36463, 4413, 11), -- M. Def. Modifiers
+(36463, 4414, 2), -- Armor Type
+(36463, 4415, 3), -- Weapon Type
+(36463, 4416, 14), -- Races
 -- Wyvern Manager
 (36464, 4045, 1), -- Resist Full Magic Attack
-(36464, 4408, 1), -- HP Increase (1x)
-(36464, 4409, 1), -- MP Increase (1x)
-(36464, 4410, 11), -- Average P. Atk.
-(36464, 4411, 11), -- Average M. Atk.
-(36464, 4412, 11), -- Average P. Def.
-(36464, 4413, 11), -- Average M. Def.
-(36464, 4414, 2), -- Standard Type
-(36464, 4415, 3), -- One-handed Sword
-(36464, 4416, 14), -- Humans
+(36464, 4408, 1), -- HP Modifiers
+(36464, 4409, 1), -- MP Modifiers
+(36464, 4410, 11), -- P. Atk. Modifiers
+(36464, 4411, 11), -- M. Atk. Modifiers
+(36464, 4412, 11), -- P. Def. Modifiers
+(36464, 4413, 11), -- M. Def. Modifiers
+(36464, 4414, 2), -- Armor Type
+(36464, 4415, 3), -- Weapon Type
+(36464, 4416, 14), -- Races
 -- Wyvern Manager
 (36465, 4045, 1), -- Resist Full Magic Attack
-(36465, 4408, 1), -- HP Increase (1x)
-(36465, 4409, 1), -- MP Increase (1x)
-(36465, 4410, 11), -- Average P. Atk.
-(36465, 4411, 11), -- Average M. Atk.
-(36465, 4412, 11), -- Average P. Def.
-(36465, 4413, 11), -- Average M. Def.
-(36465, 4414, 2), -- Standard Type
-(36465, 4415, 3), -- One-handed Sword
-(36465, 4416, 14), -- Humans
+(36465, 4408, 1), -- HP Modifiers
+(36465, 4409, 1), -- MP Modifiers
+(36465, 4410, 11), -- P. Atk. Modifiers
+(36465, 4411, 11), -- M. Atk. Modifiers
+(36465, 4412, 11), -- P. Def. Modifiers
+(36465, 4413, 11), -- M. Def. Modifiers
+(36465, 4414, 2), -- Armor Type
+(36465, 4415, 3), -- Weapon Type
+(36465, 4416, 14), -- Races
 -- Wyvern Manager
 (36466, 4045, 1), -- Resist Full Magic Attack
-(36466, 4408, 1), -- HP Increase (1x)
-(36466, 4409, 1), -- MP Increase (1x)
-(36466, 4410, 11), -- Average P. Atk.
-(36466, 4411, 11), -- Average M. Atk.
-(36466, 4412, 11), -- Average P. Def.
-(36466, 4413, 11), -- Average M. Def.
-(36466, 4414, 2), -- Standard Type
-(36466, 4415, 3), -- One-handed Sword
-(36466, 4416, 14), -- Humans
+(36466, 4408, 1), -- HP Modifiers
+(36466, 4409, 1), -- MP Modifiers
+(36466, 4410, 11), -- P. Atk. Modifiers
+(36466, 4411, 11), -- M. Atk. Modifiers
+(36466, 4412, 11), -- P. Def. Modifiers
+(36466, 4413, 11), -- M. Def. Modifiers
+(36466, 4414, 2), -- Armor Type
+(36466, 4415, 3), -- Weapon Type
+(36466, 4416, 14), -- Races
 -- Wyvern Manager
 (36467, 4045, 1), -- Resist Full Magic Attack
-(36467, 4408, 1), -- HP Increase (1x)
-(36467, 4409, 1), -- MP Increase (1x)
-(36467, 4410, 11), -- Average P. Atk.
-(36467, 4411, 11), -- Average M. Atk.
-(36467, 4412, 11), -- Average P. Def.
-(36467, 4413, 11), -- Average M. Def.
-(36467, 4414, 2), -- Standard Type
-(36467, 4415, 3), -- One-handed Sword
-(36467, 4416, 14), -- Humans
+(36467, 4408, 1), -- HP Modifiers
+(36467, 4409, 1), -- MP Modifiers
+(36467, 4410, 11), -- P. Atk. Modifiers
+(36467, 4411, 11), -- M. Atk. Modifiers
+(36467, 4412, 11), -- P. Def. Modifiers
+(36467, 4413, 11), -- M. Def. Modifiers
+(36467, 4414, 2), -- Armor Type
+(36467, 4415, 3), -- Weapon Type
+(36467, 4416, 14), -- Races
 -- Wyvern Manager
 (36468, 4045, 1), -- Resist Full Magic Attack
-(36468, 4408, 1), -- HP Increase (1x)
-(36468, 4409, 1), -- MP Increase (1x)
-(36468, 4410, 11), -- Average P. Atk.
-(36468, 4411, 11), -- Average M. Atk.
-(36468, 4412, 11), -- Average P. Def.
-(36468, 4413, 11), -- Average M. Def.
-(36468, 4414, 2), -- Standard Type
-(36468, 4415, 3), -- One-handed Sword
-(36468, 4416, 14), -- Humans
+(36468, 4408, 1), -- HP Modifiers
+(36468, 4409, 1), -- MP Modifiers
+(36468, 4410, 11), -- P. Atk. Modifiers
+(36468, 4411, 11), -- M. Atk. Modifiers
+(36468, 4412, 11), -- P. Def. Modifiers
+(36468, 4413, 11), -- M. Def. Modifiers
+(36468, 4414, 2), -- Armor Type
+(36468, 4415, 3), -- Weapon Type
+(36468, 4416, 14), -- Races
 -- Wyvern Manager
 (36469, 4045, 1), -- Resist Full Magic Attack
-(36469, 4408, 1), -- HP Increase (1x)
-(36469, 4409, 1), -- MP Increase (1x)
-(36469, 4410, 11), -- Average P. Atk.
-(36469, 4411, 11), -- Average M. Atk.
-(36469, 4412, 11), -- Average P. Def.
-(36469, 4413, 11), -- Average M. Def.
-(36469, 4414, 2), -- Standard Type
-(36469, 4415, 3), -- One-handed Sword
-(36469, 4416, 14), -- Humans
+(36469, 4408, 1), -- HP Modifiers
+(36469, 4409, 1), -- MP Modifiers
+(36469, 4410, 11), -- P. Atk. Modifiers
+(36469, 4411, 11), -- M. Atk. Modifiers
+(36469, 4412, 11), -- P. Def. Modifiers
+(36469, 4413, 11), -- M. Def. Modifiers
+(36469, 4414, 2), -- Armor Type
+(36469, 4415, 3), -- Weapon Type
+(36469, 4416, 14), -- Races
 -- Wyvern Manager
 (36470, 4045, 1), -- Resist Full Magic Attack
-(36470, 4408, 1), -- HP Increase (1x)
-(36470, 4409, 1), -- MP Increase (1x)
-(36470, 4410, 11), -- Average P. Atk.
-(36470, 4411, 11), -- Average M. Atk.
-(36470, 4412, 11), -- Average P. Def.
-(36470, 4413, 11), -- Average M. Def.
-(36470, 4414, 2), -- Standard Type
-(36470, 4415, 3), -- One-handed Sword
-(36470, 4416, 14), -- Humans
+(36470, 4408, 1), -- HP Modifiers
+(36470, 4409, 1), -- MP Modifiers
+(36470, 4410, 11), -- P. Atk. Modifiers
+(36470, 4411, 11), -- M. Atk. Modifiers
+(36470, 4412, 11), -- P. Def. Modifiers
+(36470, 4413, 11), -- M. Def. Modifiers
+(36470, 4414, 2), -- Armor Type
+(36470, 4415, 3), -- Weapon Type
+(36470, 4416, 14), -- Races
 -- Wyvern Manager
 (36471, 4045, 1), -- Resist Full Magic Attack
-(36471, 4408, 1), -- HP Increase (1x)
-(36471, 4409, 1), -- MP Increase (1x)
-(36471, 4410, 11), -- Average P. Atk.
-(36471, 4411, 11), -- Average M. Atk.
-(36471, 4412, 11), -- Average P. Def.
-(36471, 4413, 11), -- Average M. Def.
-(36471, 4414, 2), -- Standard Type
-(36471, 4415, 3), -- One-handed Sword
-(36471, 4416, 14), -- Humans
+(36471, 4408, 1), -- HP Modifiers
+(36471, 4409, 1), -- MP Modifiers
+(36471, 4410, 11), -- P. Atk. Modifiers
+(36471, 4411, 11), -- M. Atk. Modifiers
+(36471, 4412, 11), -- P. Def. Modifiers
+(36471, 4413, 11), -- M. Def. Modifiers
+(36471, 4414, 2), -- Armor Type
+(36471, 4415, 3), -- Weapon Type
+(36471, 4416, 14), -- Races
 -- Wyvern Manager
 (36472, 4045, 1), -- Resist Full Magic Attack
-(36472, 4408, 1), -- HP Increase (1x)
-(36472, 4409, 1), -- MP Increase (1x)
-(36472, 4410, 11), -- Average P. Atk.
-(36472, 4411, 11), -- Average M. Atk.
-(36472, 4412, 11), -- Average P. Def.
-(36472, 4413, 11), -- Average M. Def.
-(36472, 4414, 2), -- Standard Type
-(36472, 4415, 3), -- One-handed Sword
-(36472, 4416, 14), -- Humans
+(36472, 4408, 1), -- HP Modifiers
+(36472, 4409, 1), -- MP Modifiers
+(36472, 4410, 11), -- P. Atk. Modifiers
+(36472, 4411, 11), -- M. Atk. Modifiers
+(36472, 4412, 11), -- P. Def. Modifiers
+(36472, 4413, 11), -- M. Def. Modifiers
+(36472, 4414, 2), -- Armor Type
+(36472, 4415, 3), -- Weapon Type
+(36472, 4416, 14), -- Races
 -- Wyvern Manager
 (36473, 4045, 1), -- Resist Full Magic Attack
-(36473, 4408, 1), -- HP Increase (1x)
-(36473, 4409, 1), -- MP Increase (1x)
-(36473, 4410, 11), -- Average P. Atk.
-(36473, 4411, 11), -- Average M. Atk.
-(36473, 4412, 11), -- Average P. Def.
-(36473, 4413, 11), -- Average M. Def.
-(36473, 4414, 2), -- Standard Type
-(36473, 4415, 3), -- One-handed Sword
-(36473, 4416, 14), -- Humans
+(36473, 4408, 1), -- HP Modifiers
+(36473, 4409, 1), -- MP Modifiers
+(36473, 4410, 11), -- P. Atk. Modifiers
+(36473, 4411, 11), -- M. Atk. Modifiers
+(36473, 4412, 11), -- P. Def. Modifiers
+(36473, 4413, 11), -- M. Def. Modifiers
+(36473, 4414, 2), -- Armor Type
+(36473, 4415, 3), -- Weapon Type
+(36473, 4416, 14), -- Races
 -- Wyvern Manager
 (36474, 4045, 1), -- Resist Full Magic Attack
-(36474, 4408, 1), -- HP Increase (1x)
-(36474, 4409, 1), -- MP Increase (1x)
-(36474, 4410, 11), -- Average P. Atk.
-(36474, 4411, 11), -- Average M. Atk.
-(36474, 4412, 11), -- Average P. Def.
-(36474, 4413, 11), -- Average M. Def.
-(36474, 4414, 2), -- Standard Type
-(36474, 4415, 3), -- One-handed Sword
-(36474, 4416, 14), -- Humans
+(36474, 4408, 1), -- HP Modifiers
+(36474, 4409, 1), -- MP Modifiers
+(36474, 4410, 11), -- P. Atk. Modifiers
+(36474, 4411, 11), -- M. Atk. Modifiers
+(36474, 4412, 11), -- P. Def. Modifiers
+(36474, 4413, 11), -- M. Def. Modifiers
+(36474, 4414, 2), -- Armor Type
+(36474, 4415, 3), -- Weapon Type
+(36474, 4416, 14), -- Races
 -- Wyvern Manager
 (36475, 4045, 1), -- Resist Full Magic Attack
-(36475, 4408, 1), -- HP Increase (1x)
-(36475, 4409, 1), -- MP Increase (1x)
-(36475, 4410, 11), -- Average P. Atk.
-(36475, 4411, 11), -- Average M. Atk.
-(36475, 4412, 11), -- Average P. Def.
-(36475, 4413, 11), -- Average M. Def.
-(36475, 4414, 2), -- Standard Type
-(36475, 4415, 3), -- One-handed Sword
-(36475, 4416, 14), -- Humans
+(36475, 4408, 1), -- HP Modifiers
+(36475, 4409, 1), -- MP Modifiers
+(36475, 4410, 11), -- P. Atk. Modifiers
+(36475, 4411, 11), -- M. Atk. Modifiers
+(36475, 4412, 11), -- P. Def. Modifiers
+(36475, 4413, 11), -- M. Def. Modifiers
+(36475, 4414, 2), -- Armor Type
+(36475, 4415, 3), -- Weapon Type
+(36475, 4416, 14), -- Races
 -- Wyvern Manager
 (36476, 4045, 1), -- Resist Full Magic Attack
-(36476, 4408, 1), -- HP Increase (1x)
-(36476, 4409, 1), -- MP Increase (1x)
-(36476, 4410, 11), -- Average P. Atk.
-(36476, 4411, 11), -- Average M. Atk.
-(36476, 4412, 11), -- Average P. Def.
-(36476, 4413, 11), -- Average M. Def.
-(36476, 4414, 2), -- Standard Type
-(36476, 4415, 3), -- One-handed Sword
-(36476, 4416, 14), -- Humans
+(36476, 4408, 1), -- HP Modifiers
+(36476, 4409, 1), -- MP Modifiers
+(36476, 4410, 11), -- P. Atk. Modifiers
+(36476, 4411, 11), -- M. Atk. Modifiers
+(36476, 4412, 11), -- P. Def. Modifiers
+(36476, 4413, 11), -- M. Def. Modifiers
+(36476, 4414, 2), -- Armor Type
+(36476, 4415, 3), -- Weapon Type
+(36476, 4416, 14), -- Races
 -- Wyvern Manager
 (36477, 4045, 1), -- Resist Full Magic Attack
-(36477, 4408, 1), -- HP Increase (1x)
-(36477, 4409, 1), -- MP Increase (1x)
-(36477, 4410, 11), -- Average P. Atk.
-(36477, 4411, 11), -- Average M. Atk.
-(36477, 4412, 11), -- Average P. Def.
-(36477, 4413, 11), -- Average M. Def.
-(36477, 4414, 2), -- Standard Type
-(36477, 4415, 3), -- One-handed Sword
-(36477, 4416, 14), -- Humans
+(36477, 4408, 1), -- HP Modifiers
+(36477, 4409, 1), -- MP Modifiers
+(36477, 4410, 11), -- P. Atk. Modifiers
+(36477, 4411, 11), -- M. Atk. Modifiers
+(36477, 4412, 11), -- P. Def. Modifiers
+(36477, 4413, 11), -- M. Def. Modifiers
+(36477, 4414, 2), -- Armor Type
+(36477, 4415, 3), -- Weapon Type
+(36477, 4416, 14), -- Races
 -- Mickey
 (36478, 4045, 1), -- Resist Full Magic Attack
-(36478, 4408, 1), -- HP Increase (1x)
-(36478, 4409, 1), -- MP Increase (1x)
-(36478, 4410, 11), -- Average P. Atk.
-(36478, 4411, 11), -- Average M. Atk.
-(36478, 4412, 11), -- Average P. Def.
-(36478, 4413, 11), -- Average M. Def.
-(36478, 4414, 2), -- Standard Type
-(36478, 4415, 3), -- One-handed Sword
-(36478, 4416, 18), -- Dwarves
+(36478, 4408, 1), -- HP Modifiers
+(36478, 4409, 1), -- MP Modifiers
+(36478, 4410, 11), -- P. Atk. Modifiers
+(36478, 4411, 11), -- M. Atk. Modifiers
+(36478, 4412, 11), -- P. Def. Modifiers
+(36478, 4413, 11), -- M. Def. Modifiers
+(36478, 4414, 2), -- Armor Type
+(36478, 4415, 3), -- Weapon Type
+(36478, 4416, 18), -- Races
 -- Rapidus
 (36479, 4045, 1), -- Resist Full Magic Attack
-(36479, 4408, 1), -- HP Increase (1x)
-(36479, 4409, 1), -- MP Increase (1x)
-(36479, 4410, 11), -- Average P. Atk.
-(36479, 4411, 11), -- Average M. Atk.
-(36479, 4412, 11), -- Average P. Def.
-(36479, 4413, 11), -- Average M. Def.
-(36479, 4414, 2), -- Standard Type
-(36479, 4415, 3), -- One-handed Sword
-(36479, 4416, 14), -- Humans
+(36479, 4408, 1), -- HP Modifiers
+(36479, 4409, 1), -- MP Modifiers
+(36479, 4410, 11), -- P. Atk. Modifiers
+(36479, 4411, 11), -- M. Atk. Modifiers
+(36479, 4412, 11), -- P. Def. Modifiers
+(36479, 4413, 11), -- M. Def. Modifiers
+(36479, 4414, 2), -- Armor Type
+(36479, 4415, 3), -- Weapon Type
+(36479, 4416, 14), -- Races
 -- Scipio
 (36480, 4045, 1), -- Resist Full Magic Attack
-(36480, 4408, 1), -- HP Increase (1x)
-(36480, 4409, 1), -- MP Increase (1x)
-(36480, 4410, 11), -- Average P. Atk.
-(36480, 4411, 11), -- Average M. Atk.
-(36480, 4412, 11), -- Average P. Def.
-(36480, 4413, 11), -- Average M. Def.
-(36480, 4414, 2), -- Standard Type
-(36480, 4415, 3), -- One-handed Sword
-(36480, 4416, 14), -- Humans
+(36480, 4408, 1), -- HP Modifiers
+(36480, 4409, 1), -- MP Modifiers
+(36480, 4410, 11), -- P. Atk. Modifiers
+(36480, 4411, 11), -- M. Atk. Modifiers
+(36480, 4412, 11), -- P. Def. Modifiers
+(36480, 4413, 11), -- M. Def. Modifiers
+(36480, 4414, 2), -- Armor Type
+(36480, 4415, 3), -- Weapon Type
+(36480, 4416, 14), -- Races
 -- Mercenary Captain
 (36481, 4045, 1), -- Resist Full Magic Attack
-(36481, 4408, 1), -- HP Increase (1x)
-(36481, 4409, 1), -- MP Increase (1x)
-(36481, 4410, 11), -- Average P. Atk.
-(36481, 4411, 11), -- Average M. Atk.
-(36481, 4412, 11), -- Average P. Def.
-(36481, 4413, 11), -- Average M. Def.
-(36481, 4414, 2), -- Standard Type
-(36481, 4415, 3), -- One-handed Sword
-(36481, 4416, 14), -- Humans
+(36481, 4408, 1), -- HP Modifiers
+(36481, 4409, 1), -- MP Modifiers
+(36481, 4410, 11), -- P. Atk. Modifiers
+(36481, 4411, 11), -- M. Atk. Modifiers
+(36481, 4412, 11), -- P. Def. Modifiers
+(36481, 4413, 11), -- M. Def. Modifiers
+(36481, 4414, 2), -- Armor Type
+(36481, 4415, 3), -- Weapon Type
+(36481, 4416, 14), -- Races
 -- Mercenary Captain
 (36482, 4045, 1), -- Resist Full Magic Attack
-(36482, 4408, 1), -- HP Increase (1x)
-(36482, 4409, 1), -- MP Increase (1x)
-(36482, 4410, 11), -- Average P. Atk.
-(36482, 4411, 11), -- Average M. Atk.
-(36482, 4412, 11), -- Average P. Def.
-(36482, 4413, 11), -- Average M. Def.
-(36482, 4414, 2), -- Standard Type
-(36482, 4415, 3), -- One-handed Sword
-(36482, 4416, 14), -- Humans
+(36482, 4408, 1), -- HP Modifiers
+(36482, 4409, 1), -- MP Modifiers
+(36482, 4410, 11), -- P. Atk. Modifiers
+(36482, 4411, 11), -- M. Atk. Modifiers
+(36482, 4412, 11), -- P. Def. Modifiers
+(36482, 4413, 11), -- M. Def. Modifiers
+(36482, 4414, 2), -- Armor Type
+(36482, 4415, 3), -- Weapon Type
+(36482, 4416, 14), -- Races
 -- Mercenary Captain
 (36483, 4045, 1), -- Resist Full Magic Attack
-(36483, 4408, 1), -- HP Increase (1x)
-(36483, 4409, 1), -- MP Increase (1x)
-(36483, 4410, 11), -- Average P. Atk.
-(36483, 4411, 11), -- Average M. Atk.
-(36483, 4412, 11), -- Average P. Def.
-(36483, 4413, 11), -- Average M. Def.
-(36483, 4414, 2), -- Standard Type
-(36483, 4415, 3), -- One-handed Sword
-(36483, 4416, 14), -- Humans
+(36483, 4408, 1), -- HP Modifiers
+(36483, 4409, 1), -- MP Modifiers
+(36483, 4410, 11), -- P. Atk. Modifiers
+(36483, 4411, 11), -- M. Atk. Modifiers
+(36483, 4412, 11), -- P. Def. Modifiers
+(36483, 4413, 11), -- M. Def. Modifiers
+(36483, 4414, 2), -- Armor Type
+(36483, 4415, 3), -- Weapon Type
+(36483, 4416, 14), -- Races
 -- Mercenary Captain
 (36484, 4045, 1), -- Resist Full Magic Attack
-(36484, 4408, 1), -- HP Increase (1x)
-(36484, 4409, 1), -- MP Increase (1x)
-(36484, 4410, 11), -- Average P. Atk.
-(36484, 4411, 11), -- Average M. Atk.
-(36484, 4412, 11), -- Average P. Def.
-(36484, 4413, 11), -- Average M. Def.
-(36484, 4414, 2), -- Standard Type
-(36484, 4415, 3), -- One-handed Sword
-(36484, 4416, 14), -- Humans
+(36484, 4408, 1), -- HP Modifiers
+(36484, 4409, 1), -- MP Modifiers
+(36484, 4410, 11), -- P. Atk. Modifiers
+(36484, 4411, 11), -- M. Atk. Modifiers
+(36484, 4412, 11), -- P. Def. Modifiers
+(36484, 4413, 11), -- M. Def. Modifiers
+(36484, 4414, 2), -- Armor Type
+(36484, 4415, 3), -- Weapon Type
+(36484, 4416, 14), -- Races
 -- Mercenary Captain
 (36485, 4045, 1), -- Resist Full Magic Attack
-(36485, 4408, 1), -- HP Increase (1x)
-(36485, 4409, 1), -- MP Increase (1x)
-(36485, 4410, 11), -- Average P. Atk.
-(36485, 4411, 11), -- Average M. Atk.
-(36485, 4412, 11), -- Average P. Def.
-(36485, 4413, 11), -- Average M. Def.
-(36485, 4414, 2), -- Standard Type
-(36485, 4415, 3), -- One-handed Sword
-(36485, 4416, 14), -- Humans
+(36485, 4408, 1), -- HP Modifiers
+(36485, 4409, 1), -- MP Modifiers
+(36485, 4410, 11), -- P. Atk. Modifiers
+(36485, 4411, 11), -- M. Atk. Modifiers
+(36485, 4412, 11), -- P. Def. Modifiers
+(36485, 4413, 11), -- M. Def. Modifiers
+(36485, 4414, 2), -- Armor Type
+(36485, 4415, 3), -- Weapon Type
+(36485, 4416, 14), -- Races
 -- Mercenary Captain
 (36486, 4045, 1), -- Resist Full Magic Attack
-(36486, 4408, 1), -- HP Increase (1x)
-(36486, 4409, 1), -- MP Increase (1x)
-(36486, 4410, 11), -- Average P. Atk.
-(36486, 4411, 11), -- Average M. Atk.
-(36486, 4412, 11), -- Average P. Def.
-(36486, 4413, 11), -- Average M. Def.
-(36486, 4414, 2), -- Standard Type
-(36486, 4415, 3), -- One-handed Sword
-(36486, 4416, 14), -- Humans
+(36486, 4408, 1), -- HP Modifiers
+(36486, 4409, 1), -- MP Modifiers
+(36486, 4410, 11), -- P. Atk. Modifiers
+(36486, 4411, 11), -- M. Atk. Modifiers
+(36486, 4412, 11), -- P. Def. Modifiers
+(36486, 4413, 11), -- M. Def. Modifiers
+(36486, 4414, 2), -- Armor Type
+(36486, 4415, 3), -- Weapon Type
+(36486, 4416, 14), -- Races
 -- Mercenary Captain
 (36487, 4045, 1), -- Resist Full Magic Attack
-(36487, 4408, 1), -- HP Increase (1x)
-(36487, 4409, 1), -- MP Increase (1x)
-(36487, 4410, 11), -- Average P. Atk.
-(36487, 4411, 11), -- Average M. Atk.
-(36487, 4412, 11), -- Average P. Def.
-(36487, 4413, 11), -- Average M. Def.
-(36487, 4414, 2), -- Standard Type
-(36487, 4415, 3), -- One-handed Sword
-(36487, 4416, 14), -- Humans
+(36487, 4408, 1), -- HP Modifiers
+(36487, 4409, 1), -- MP Modifiers
+(36487, 4410, 11), -- P. Atk. Modifiers
+(36487, 4411, 11), -- M. Atk. Modifiers
+(36487, 4412, 11), -- P. Def. Modifiers
+(36487, 4413, 11), -- M. Def. Modifiers
+(36487, 4414, 2), -- Armor Type
+(36487, 4415, 3), -- Weapon Type
+(36487, 4416, 14), -- Races
 -- Mercenary Captain
 (36488, 4045, 1), -- Resist Full Magic Attack
-(36488, 4408, 1), -- HP Increase (1x)
-(36488, 4409, 1), -- MP Increase (1x)
-(36488, 4410, 11), -- Average P. Atk.
-(36488, 4411, 11), -- Average M. Atk.
-(36488, 4412, 11), -- Average P. Def.
-(36488, 4413, 11), -- Average M. Def.
-(36488, 4414, 2), -- Standard Type
-(36488, 4415, 3), -- One-handed Sword
-(36488, 4416, 14), -- Humans
+(36488, 4408, 1), -- HP Modifiers
+(36488, 4409, 1), -- MP Modifiers
+(36488, 4410, 11), -- P. Atk. Modifiers
+(36488, 4411, 11), -- M. Atk. Modifiers
+(36488, 4412, 11), -- P. Def. Modifiers
+(36488, 4413, 11), -- M. Def. Modifiers
+(36488, 4414, 2), -- Armor Type
+(36488, 4415, 3), -- Weapon Type
+(36488, 4416, 14), -- Races
 -- Mercenary Captain
 (36489, 4045, 1), -- Resist Full Magic Attack
-(36489, 4408, 1), -- HP Increase (1x)
-(36489, 4409, 1), -- MP Increase (1x)
-(36489, 4410, 11), -- Average P. Atk.
-(36489, 4411, 11), -- Average M. Atk.
-(36489, 4412, 11), -- Average P. Def.
-(36489, 4413, 11), -- Average M. Def.
-(36489, 4414, 2), -- Standard Type
-(36489, 4415, 3), -- One-handed Sword
-(36489, 4416, 14), -- Humans
+(36489, 4408, 1), -- HP Modifiers
+(36489, 4409, 1), -- MP Modifiers
+(36489, 4410, 11), -- P. Atk. Modifiers
+(36489, 4411, 11), -- M. Atk. Modifiers
+(36489, 4412, 11), -- P. Def. Modifiers
+(36489, 4413, 11), -- M. Def. Modifiers
+(36489, 4414, 2), -- Armor Type
+(36489, 4415, 3), -- Weapon Type
+(36489, 4416, 14), -- Races
 -- Territory Manager
 (36490, 4045, 1), -- Resist Full Magic Attack
-(36490, 4408, 1), -- HP Increase (1x)
-(36490, 4409, 1), -- MP Increase (1x)
-(36490, 4410, 11), -- Average P. Atk.
-(36490, 4411, 11), -- Average M. Atk.
-(36490, 4412, 11), -- Average P. Def.
-(36490, 4413, 11), -- Average M. Def.
-(36490, 4414, 2), -- Standard Type
-(36490, 4415, 3), -- One-handed Sword
-(36490, 4416, 14), -- Humans
+(36490, 4408, 1), -- HP Modifiers
+(36490, 4409, 1), -- MP Modifiers
+(36490, 4410, 11), -- P. Atk. Modifiers
+(36490, 4411, 11), -- M. Atk. Modifiers
+(36490, 4412, 11), -- P. Def. Modifiers
+(36490, 4413, 11), -- M. Def. Modifiers
+(36490, 4414, 2), -- Armor Type
+(36490, 4415, 3), -- Weapon Type
+(36490, 4416, 14), -- Races
 -- Territory Manager
 (36491, 4045, 1), -- Resist Full Magic Attack
-(36491, 4408, 1), -- HP Increase (1x)
-(36491, 4409, 1), -- MP Increase (1x)
-(36491, 4410, 11), -- Average P. Atk.
-(36491, 4411, 11), -- Average M. Atk.
-(36491, 4412, 11), -- Average P. Def.
-(36491, 4413, 11), -- Average M. Def.
-(36491, 4414, 2), -- Standard Type
-(36491, 4415, 3), -- One-handed Sword
-(36491, 4416, 14), -- Humans
+(36491, 4408, 1), -- HP Modifiers
+(36491, 4409, 1), -- MP Modifiers
+(36491, 4410, 11), -- P. Atk. Modifiers
+(36491, 4411, 11), -- M. Atk. Modifiers
+(36491, 4412, 11), -- P. Def. Modifiers
+(36491, 4413, 11), -- M. Def. Modifiers
+(36491, 4414, 2), -- Armor Type
+(36491, 4415, 3), -- Weapon Type
+(36491, 4416, 14), -- Races
 -- Territory Manager
 (36492, 4045, 1), -- Resist Full Magic Attack
-(36492, 4408, 1), -- HP Increase (1x)
-(36492, 4409, 1), -- MP Increase (1x)
-(36492, 4410, 11), -- Average P. Atk.
-(36492, 4411, 11), -- Average M. Atk.
-(36492, 4412, 11), -- Average P. Def.
-(36492, 4413, 11), -- Average M. Def.
-(36492, 4414, 2), -- Standard Type
-(36492, 4415, 3), -- One-handed Sword
-(36492, 4416, 14), -- Humans
+(36492, 4408, 1), -- HP Modifiers
+(36492, 4409, 1), -- MP Modifiers
+(36492, 4410, 11), -- P. Atk. Modifiers
+(36492, 4411, 11), -- M. Atk. Modifiers
+(36492, 4412, 11), -- P. Def. Modifiers
+(36492, 4413, 11), -- M. Def. Modifiers
+(36492, 4414, 2), -- Armor Type
+(36492, 4415, 3), -- Weapon Type
+(36492, 4416, 14), -- Races
 -- Territory Manager
 (36493, 4045, 1), -- Resist Full Magic Attack
-(36493, 4408, 1), -- HP Increase (1x)
-(36493, 4409, 1), -- MP Increase (1x)
-(36493, 4410, 11), -- Average P. Atk.
-(36493, 4411, 11), -- Average M. Atk.
-(36493, 4412, 11), -- Average P. Def.
-(36493, 4413, 11), -- Average M. Def.
-(36493, 4414, 2), -- Standard Type
-(36493, 4415, 3), -- One-handed Sword
-(36493, 4416, 14), -- Humans
+(36493, 4408, 1), -- HP Modifiers
+(36493, 4409, 1), -- MP Modifiers
+(36493, 4410, 11), -- P. Atk. Modifiers
+(36493, 4411, 11), -- M. Atk. Modifiers
+(36493, 4412, 11), -- P. Def. Modifiers
+(36493, 4413, 11), -- M. Def. Modifiers
+(36493, 4414, 2), -- Armor Type
+(36493, 4415, 3), -- Weapon Type
+(36493, 4416, 14), -- Races
 -- Territory Manager
 (36494, 4045, 1), -- Resist Full Magic Attack
-(36494, 4408, 1), -- HP Increase (1x)
-(36494, 4409, 1), -- MP Increase (1x)
-(36494, 4410, 11), -- Average P. Atk.
-(36494, 4411, 11), -- Average M. Atk.
-(36494, 4412, 11), -- Average P. Def.
-(36494, 4413, 11), -- Average M. Def.
-(36494, 4414, 2), -- Standard Type
-(36494, 4415, 3), -- One-handed Sword
-(36494, 4416, 14), -- Humans
+(36494, 4408, 1), -- HP Modifiers
+(36494, 4409, 1), -- MP Modifiers
+(36494, 4410, 11), -- P. Atk. Modifiers
+(36494, 4411, 11), -- M. Atk. Modifiers
+(36494, 4412, 11), -- P. Def. Modifiers
+(36494, 4413, 11), -- M. Def. Modifiers
+(36494, 4414, 2), -- Armor Type
+(36494, 4415, 3), -- Weapon Type
+(36494, 4416, 14), -- Races
 -- Territory Manager
 (36495, 4045, 1), -- Resist Full Magic Attack
-(36495, 4408, 1), -- HP Increase (1x)
-(36495, 4409, 1), -- MP Increase (1x)
-(36495, 4410, 11), -- Average P. Atk.
-(36495, 4411, 11), -- Average M. Atk.
-(36495, 4412, 11), -- Average P. Def.
-(36495, 4413, 11), -- Average M. Def.
-(36495, 4414, 2), -- Standard Type
-(36495, 4415, 3), -- One-handed Sword
-(36495, 4416, 14), -- Humans
+(36495, 4408, 1), -- HP Modifiers
+(36495, 4409, 1), -- MP Modifiers
+(36495, 4410, 11), -- P. Atk. Modifiers
+(36495, 4411, 11), -- M. Atk. Modifiers
+(36495, 4412, 11), -- P. Def. Modifiers
+(36495, 4413, 11), -- M. Def. Modifiers
+(36495, 4414, 2), -- Armor Type
+(36495, 4415, 3), -- Weapon Type
+(36495, 4416, 14), -- Races
 -- Territory Manager
 (36496, 4045, 1), -- Resist Full Magic Attack
-(36496, 4408, 1), -- HP Increase (1x)
-(36496, 4409, 1), -- MP Increase (1x)
-(36496, 4410, 11), -- Average P. Atk.
-(36496, 4411, 11), -- Average M. Atk.
-(36496, 4412, 11), -- Average P. Def.
-(36496, 4413, 11), -- Average M. Def.
-(36496, 4414, 2), -- Standard Type
-(36496, 4415, 3), -- One-handed Sword
-(36496, 4416, 14), -- Humans
+(36496, 4408, 1), -- HP Modifiers
+(36496, 4409, 1), -- MP Modifiers
+(36496, 4410, 11), -- P. Atk. Modifiers
+(36496, 4411, 11), -- M. Atk. Modifiers
+(36496, 4412, 11), -- P. Def. Modifiers
+(36496, 4413, 11), -- M. Def. Modifiers
+(36496, 4414, 2), -- Armor Type
+(36496, 4415, 3), -- Weapon Type
+(36496, 4416, 14), -- Races
 -- Territory Manager
 (36497, 4045, 1), -- Resist Full Magic Attack
-(36497, 4408, 1), -- HP Increase (1x)
-(36497, 4409, 1), -- MP Increase (1x)
-(36497, 4410, 11), -- Average P. Atk.
-(36497, 4411, 11), -- Average M. Atk.
-(36497, 4412, 11), -- Average P. Def.
-(36497, 4413, 11), -- Average M. Def.
-(36497, 4414, 2), -- Standard Type
-(36497, 4415, 3), -- One-handed Sword
-(36497, 4416, 14), -- Humans
+(36497, 4408, 1), -- HP Modifiers
+(36497, 4409, 1), -- MP Modifiers
+(36497, 4410, 11), -- P. Atk. Modifiers
+(36497, 4411, 11), -- M. Atk. Modifiers
+(36497, 4412, 11), -- P. Def. Modifiers
+(36497, 4413, 11), -- M. Def. Modifiers
+(36497, 4414, 2), -- Armor Type
+(36497, 4415, 3), -- Weapon Type
+(36497, 4416, 14), -- Races
 -- Territory Manager
 (36498, 4045, 1), -- Resist Full Magic Attack
-(36498, 4408, 1), -- HP Increase (1x)
-(36498, 4409, 1), -- MP Increase (1x)
-(36498, 4410, 11), -- Average P. Atk.
-(36498, 4411, 11), -- Average M. Atk.
-(36498, 4412, 11), -- Average P. Def.
-(36498, 4413, 11), -- Average M. Def.
-(36498, 4414, 2), -- Standard Type
-(36498, 4415, 3), -- One-handed Sword
-(36498, 4416, 14), -- Humans
+(36498, 4408, 1), -- HP Modifiers
+(36498, 4409, 1), -- MP Modifiers
+(36498, 4410, 11), -- P. Atk. Modifiers
+(36498, 4411, 11), -- M. Atk. Modifiers
+(36498, 4412, 11), -- P. Def. Modifiers
+(36498, 4413, 11), -- M. Def. Modifiers
+(36498, 4414, 2), -- Armor Type
+(36498, 4415, 3), -- Weapon Type
+(36498, 4416, 14), -- Races
 -- Territory Catapult
 (36499, 4045, 1), -- Resist Full Magic Attack
-(36499, 4390, 1), -- Mystic Immunity
-(36499, 4408, 1), -- HP Increase (1x)
-(36499, 4409, 1), -- MP Increase (1x)
-(36499, 4410, 11), -- Average P. Atk.
-(36499, 4411, 11), -- Average M. Atk.
-(36499, 4412, 11), -- Average P. Def.
-(36499, 4413, 11), -- Average M. Def.
-(36499, 4414, 2), -- Standard Type
-(36499, 4415, 3), -- One-handed Sword
-(36499, 4416, 2), -- Magic Creatures
+(36499, 4390, 1), -- NPC Abnormal Immunity
+(36499, 4408, 1), -- HP Modifiers
+(36499, 4409, 1), -- MP Modifiers
+(36499, 4410, 11), -- P. Atk. Modifiers
+(36499, 4411, 11), -- M. Atk. Modifiers
+(36499, 4412, 11), -- P. Def. Modifiers
+(36499, 4413, 11), -- M. Def. Modifiers
+(36499, 4414, 2), -- Armor Type
+(36499, 4415, 3), -- Weapon Type
+(36499, 4416, 2), -- Races
 -- Territory Catapult
 (36500, 4045, 1), -- Resist Full Magic Attack
-(36500, 4390, 1), -- Mystic Immunity
-(36500, 4408, 1), -- HP Increase (1x)
-(36500, 4409, 1), -- MP Increase (1x)
-(36500, 4410, 11), -- Average P. Atk.
-(36500, 4411, 11), -- Average M. Atk.
-(36500, 4412, 11), -- Average P. Def.
-(36500, 4413, 11), -- Average M. Def.
-(36500, 4414, 2), -- Standard Type
-(36500, 4415, 3), -- One-handed Sword
-(36500, 4416, 2), -- Magic Creatures
+(36500, 4390, 1), -- NPC Abnormal Immunity
+(36500, 4408, 1), -- HP Modifiers
+(36500, 4409, 1), -- MP Modifiers
+(36500, 4410, 11), -- P. Atk. Modifiers
+(36500, 4411, 11), -- M. Atk. Modifiers
+(36500, 4412, 11), -- P. Def. Modifiers
+(36500, 4413, 11), -- M. Def. Modifiers
+(36500, 4414, 2), -- Armor Type
+(36500, 4415, 3), -- Weapon Type
+(36500, 4416, 2), -- Races
 -- Territory Catapult
 (36501, 4045, 1), -- Resist Full Magic Attack
-(36501, 4390, 1), -- Mystic Immunity
-(36501, 4408, 1), -- HP Increase (1x)
-(36501, 4409, 1), -- MP Increase (1x)
-(36501, 4410, 11), -- Average P. Atk.
-(36501, 4411, 11), -- Average M. Atk.
-(36501, 4412, 11), -- Average P. Def.
-(36501, 4413, 11), -- Average M. Def.
-(36501, 4414, 2), -- Standard Type
-(36501, 4415, 3), -- One-handed Sword
-(36501, 4416, 2), -- Magic Creatures
+(36501, 4390, 1), -- NPC Abnormal Immunity
+(36501, 4408, 1), -- HP Modifiers
+(36501, 4409, 1), -- MP Modifiers
+(36501, 4410, 11), -- P. Atk. Modifiers
+(36501, 4411, 11), -- M. Atk. Modifiers
+(36501, 4412, 11), -- P. Def. Modifiers
+(36501, 4413, 11), -- M. Def. Modifiers
+(36501, 4414, 2), -- Armor Type
+(36501, 4415, 3), -- Weapon Type
+(36501, 4416, 2), -- Races
 -- Territory Catapult
 (36502, 4045, 1), -- Resist Full Magic Attack
-(36502, 4390, 1), -- Mystic Immunity
-(36502, 4408, 1), -- HP Increase (1x)
-(36502, 4409, 1), -- MP Increase (1x)
-(36502, 4410, 11), -- Average P. Atk.
-(36502, 4411, 11), -- Average M. Atk.
-(36502, 4412, 11), -- Average P. Def.
-(36502, 4413, 11), -- Average M. Def.
-(36502, 4414, 2), -- Standard Type
-(36502, 4415, 3), -- One-handed Sword
-(36502, 4416, 2), -- Magic Creatures
+(36502, 4390, 1), -- NPC Abnormal Immunity
+(36502, 4408, 1), -- HP Modifiers
+(36502, 4409, 1), -- MP Modifiers
+(36502, 4410, 11), -- P. Atk. Modifiers
+(36502, 4411, 11), -- M. Atk. Modifiers
+(36502, 4412, 11), -- P. Def. Modifiers
+(36502, 4413, 11), -- M. Def. Modifiers
+(36502, 4414, 2), -- Armor Type
+(36502, 4415, 3), -- Weapon Type
+(36502, 4416, 2), -- Races
 -- Territory Catapult
 (36503, 4045, 1), -- Resist Full Magic Attack
-(36503, 4390, 1), -- Mystic Immunity
-(36503, 4408, 1), -- HP Increase (1x)
-(36503, 4409, 1), -- MP Increase (1x)
-(36503, 4410, 11), -- Average P. Atk.
-(36503, 4411, 11), -- Average M. Atk.
-(36503, 4412, 11), -- Average P. Def.
-(36503, 4413, 11), -- Average M. Def.
-(36503, 4414, 2), -- Standard Type
-(36503, 4415, 3), -- One-handed Sword
-(36503, 4416, 2), -- Magic Creatures
+(36503, 4390, 1), -- NPC Abnormal Immunity
+(36503, 4408, 1), -- HP Modifiers
+(36503, 4409, 1), -- MP Modifiers
+(36503, 4410, 11), -- P. Atk. Modifiers
+(36503, 4411, 11), -- M. Atk. Modifiers
+(36503, 4412, 11), -- P. Def. Modifiers
+(36503, 4413, 11), -- M. Def. Modifiers
+(36503, 4414, 2), -- Armor Type
+(36503, 4415, 3), -- Weapon Type
+(36503, 4416, 2), -- Races
 -- Territory Catapult
 (36504, 4045, 1), -- Resist Full Magic Attack
-(36504, 4390, 1), -- Mystic Immunity
-(36504, 4408, 1), -- HP Increase (1x)
-(36504, 4409, 1), -- MP Increase (1x)
-(36504, 4410, 11), -- Average P. Atk.
-(36504, 4411, 11), -- Average M. Atk.
-(36504, 4412, 11), -- Average P. Def.
-(36504, 4413, 11), -- Average M. Def.
-(36504, 4414, 2), -- Standard Type
-(36504, 4415, 3), -- One-handed Sword
-(36504, 4416, 2), -- Magic Creatures
+(36504, 4390, 1), -- NPC Abnormal Immunity
+(36504, 4408, 1), -- HP Modifiers
+(36504, 4409, 1), -- MP Modifiers
+(36504, 4410, 11), -- P. Atk. Modifiers
+(36504, 4411, 11), -- M. Atk. Modifiers
+(36504, 4412, 11), -- P. Def. Modifiers
+(36504, 4413, 11), -- M. Def. Modifiers
+(36504, 4414, 2), -- Armor Type
+(36504, 4415, 3), -- Weapon Type
+(36504, 4416, 2), -- Races
 -- Territory Catapult
 (36505, 4045, 1), -- Resist Full Magic Attack
-(36505, 4390, 1), -- Mystic Immunity
-(36505, 4408, 1), -- HP Increase (1x)
-(36505, 4409, 1), -- MP Increase (1x)
-(36505, 4410, 11), -- Average P. Atk.
-(36505, 4411, 11), -- Average M. Atk.
-(36505, 4412, 11), -- Average P. Def.
-(36505, 4413, 11), -- Average M. Def.
-(36505, 4414, 2), -- Standard Type
-(36505, 4415, 3), -- One-handed Sword
-(36505, 4416, 2), -- Magic Creatures
+(36505, 4390, 1), -- NPC Abnormal Immunity
+(36505, 4408, 1), -- HP Modifiers
+(36505, 4409, 1), -- MP Modifiers
+(36505, 4410, 11), -- P. Atk. Modifiers
+(36505, 4411, 11), -- M. Atk. Modifiers
+(36505, 4412, 11), -- P. Def. Modifiers
+(36505, 4413, 11), -- M. Def. Modifiers
+(36505, 4414, 2), -- Armor Type
+(36505, 4415, 3), -- Weapon Type
+(36505, 4416, 2), -- Races
 -- Territory Catapult
 (36506, 4045, 1), -- Resist Full Magic Attack
-(36506, 4390, 1), -- Mystic Immunity
-(36506, 4408, 1), -- HP Increase (1x)
-(36506, 4409, 1), -- MP Increase (1x)
-(36506, 4410, 11), -- Average P. Atk.
-(36506, 4411, 11), -- Average M. Atk.
-(36506, 4412, 11), -- Average P. Def.
-(36506, 4413, 11), -- Average M. Def.
-(36506, 4414, 2), -- Standard Type
-(36506, 4415, 3), -- One-handed Sword
-(36506, 4416, 2), -- Magic Creatures
+(36506, 4390, 1), -- NPC Abnormal Immunity
+(36506, 4408, 1), -- HP Modifiers
+(36506, 4409, 1), -- MP Modifiers
+(36506, 4410, 11), -- P. Atk. Modifiers
+(36506, 4411, 11), -- M. Atk. Modifiers
+(36506, 4412, 11), -- P. Def. Modifiers
+(36506, 4413, 11), -- M. Def. Modifiers
+(36506, 4414, 2), -- Armor Type
+(36506, 4415, 3), -- Weapon Type
+(36506, 4416, 2), -- Races
 -- Territory Catapult
 (36507, 4045, 1), -- Resist Full Magic Attack
-(36507, 4390, 1), -- Mystic Immunity
-(36507, 4408, 1), -- HP Increase (1x)
-(36507, 4409, 1), -- MP Increase (1x)
-(36507, 4410, 11), -- Average P. Atk.
-(36507, 4411, 11), -- Average M. Atk.
-(36507, 4412, 11), -- Average P. Def.
-(36507, 4413, 11), -- Average M. Def.
-(36507, 4414, 2), -- Standard Type
-(36507, 4415, 3), -- One-handed Sword
-(36507, 4416, 2), -- Magic Creatures
+(36507, 4390, 1), -- NPC Abnormal Immunity
+(36507, 4408, 1), -- HP Modifiers
+(36507, 4409, 1), -- MP Modifiers
+(36507, 4410, 11), -- P. Atk. Modifiers
+(36507, 4411, 11), -- M. Atk. Modifiers
+(36507, 4412, 11), -- P. Def. Modifiers
+(36507, 4413, 11), -- M. Def. Modifiers
+(36507, 4414, 2), -- Armor Type
+(36507, 4415, 3), -- Weapon Type
+(36507, 4416, 2), -- Races
 -- Military Association Leader
 (36508, 4045, 1), -- Resist Full Magic Attack
-(36508, 4408, 1), -- HP Increase (1x)
-(36508, 4409, 1), -- MP Increase (1x)
-(36508, 4410, 11), -- Average P. Atk.
-(36508, 4411, 11), -- Average M. Atk.
-(36508, 4412, 11), -- Average P. Def.
-(36508, 4413, 11), -- Average M. Def.
-(36508, 4414, 2), -- Standard Type
-(36508, 4415, 3), -- One-handed Sword
-(36508, 4416, 22), -- Defending Army
+(36508, 4408, 1), -- HP Modifiers
+(36508, 4409, 1), -- MP Modifiers
+(36508, 4410, 11), -- P. Atk. Modifiers
+(36508, 4411, 11), -- M. Atk. Modifiers
+(36508, 4412, 11), -- P. Def. Modifiers
+(36508, 4413, 11), -- M. Def. Modifiers
+(36508, 4414, 2), -- Armor Type
+(36508, 4415, 3), -- Weapon Type
+(36508, 4416, 22), -- Races
 -- Territory Border Guard
 (36509, 4045, 1), -- Resist Full Magic Attack
-(36509, 4408, 16), -- HP Increase (8x)
-(36509, 4409, 11), -- MP Increase (3x)
-(36509, 4410, 18), -- Extremely Strong P. Atk.
-(36509, 4411, 11), -- Average M. Atk.
-(36509, 4412, 11), -- Average P. Def.
-(36509, 4413, 11), -- Average M. Def.
-(36509, 4414, 2), -- Standard Type
-(36509, 4415, 3), -- One-handed Sword
-(36509, 4416, 22), -- Defending Army
+(36509, 4408, 16), -- HP Modifiers
+(36509, 4409, 11), -- MP Modifiers
+(36509, 4410, 18), -- P. Atk. Modifiers
+(36509, 4411, 11), -- M. Atk. Modifiers
+(36509, 4412, 11), -- P. Def. Modifiers
+(36509, 4413, 11), -- M. Def. Modifiers
+(36509, 4414, 2), -- Armor Type
+(36509, 4415, 3), -- Weapon Type
+(36509, 4416, 22), -- Races
 -- Religious Association Leader
 (36510, 4045, 1), -- Resist Full Magic Attack
-(36510, 4077, 8), -- Aura Burn
-(36510, 4408, 1), -- HP Increase (1x)
-(36510, 4409, 1), -- MP Increase (1x)
-(36510, 4410, 11), -- Average P. Atk.
-(36510, 4411, 11), -- Average M. Atk.
-(36510, 4412, 11), -- Average P. Def.
-(36510, 4413, 11), -- Average M. Def.
-(36510, 4414, 2), -- Standard Type
-(36510, 4415, 3), -- One-handed Sword
-(36510, 4416, 22), -- Defending Army
-(36510, 5056, 8), -- Hurricane
+(36510, 4077, 8), -- NPC Aura Burn
+(36510, 4408, 1), -- HP Modifiers
+(36510, 4409, 1), -- MP Modifiers
+(36510, 4410, 11), -- P. Atk. Modifiers
+(36510, 4411, 11), -- M. Atk. Modifiers
+(36510, 4412, 11), -- P. Def. Modifiers
+(36510, 4413, 11), -- M. Def. Modifiers
+(36510, 4414, 2), -- Armor Type
+(36510, 4415, 3), -- Weapon Type
+(36510, 4416, 22), -- Races
+(36510, 5056, 8), -- Castle DD Wind
 -- Territory Guard
 (36511, 4045, 1), -- Resist Full Magic Attack
-(36511, 4408, 16), -- HP Increase (8x)
-(36511, 4409, 11), -- MP Increase (3x)
-(36511, 4410, 18), -- Extremely Strong P. Atk.
-(36511, 4411, 11), -- Average M. Atk.
-(36511, 4412, 11), -- Average P. Def.
-(36511, 4413, 11), -- Average M. Def.
-(36511, 4414, 2), -- Standard Type
-(36511, 4415, 3), -- One-handed Sword
-(36511, 4416, 22), -- Defending Army
+(36511, 4408, 16), -- HP Modifiers
+(36511, 4409, 11), -- MP Modifiers
+(36511, 4410, 18), -- P. Atk. Modifiers
+(36511, 4411, 11), -- M. Atk. Modifiers
+(36511, 4412, 11), -- P. Def. Modifiers
+(36511, 4413, 11), -- M. Def. Modifiers
+(36511, 4414, 2), -- Armor Type
+(36511, 4415, 3), -- Weapon Type
+(36511, 4416, 22), -- Races
 -- Territory Border Guard
 (36512, 4045, 1), -- Resist Full Magic Attack
-(36512, 4408, 16), -- HP Increase (8x)
-(36512, 4409, 11), -- MP Increase (3x)
-(36512, 4410, 18), -- Extremely Strong P. Atk.
-(36512, 4411, 11), -- Average M. Atk.
-(36512, 4412, 11), -- Average P. Def.
-(36512, 4413, 11), -- Average M. Def.
-(36512, 4414, 2), -- Standard Type
-(36512, 4415, 9), -- Bows
-(36512, 4416, 22), -- Defending Army
+(36512, 4408, 16), -- HP Modifiers
+(36512, 4409, 11), -- MP Modifiers
+(36512, 4410, 18), -- P. Atk. Modifiers
+(36512, 4411, 11), -- M. Atk. Modifiers
+(36512, 4412, 11), -- P. Def. Modifiers
+(36512, 4413, 11), -- M. Def. Modifiers
+(36512, 4414, 2), -- Armor Type
+(36512, 4415, 9), -- Weapon Type
+(36512, 4416, 22), -- Races
 -- Economic Association Leader
 (36513, 4045, 1), -- Resist Full Magic Attack
-(36513, 4408, 1), -- HP Increase (1x)
-(36513, 4409, 1), -- MP Increase (1x)
-(36513, 4410, 11), -- Average P. Atk.
-(36513, 4411, 11), -- Average M. Atk.
-(36513, 4412, 11), -- Average P. Def.
-(36513, 4413, 11), -- Average M. Def.
-(36513, 4414, 2), -- Standard Type
-(36513, 4415, 3), -- One-handed Sword
-(36513, 4416, 14), -- Humans
+(36513, 4408, 1), -- HP Modifiers
+(36513, 4409, 1), -- MP Modifiers
+(36513, 4410, 11), -- P. Atk. Modifiers
+(36513, 4411, 11), -- M. Atk. Modifiers
+(36513, 4412, 11), -- P. Def. Modifiers
+(36513, 4413, 11), -- M. Def. Modifiers
+(36513, 4414, 2), -- Armor Type
+(36513, 4415, 3), -- Weapon Type
+(36513, 4416, 14), -- Races
 -- Military Association Leader
 (36514, 4045, 1), -- Resist Full Magic Attack
-(36514, 4408, 1), -- HP Increase (1x)
-(36514, 4409, 1), -- MP Increase (1x)
-(36514, 4410, 11), -- Average P. Atk.
-(36514, 4411, 11), -- Average M. Atk.
-(36514, 4412, 11), -- Average P. Def.
-(36514, 4413, 11), -- Average M. Def.
-(36514, 4414, 2), -- Standard Type
-(36514, 4415, 3), -- One-handed Sword
-(36514, 4416, 22), -- Defending Army
+(36514, 4408, 1), -- HP Modifiers
+(36514, 4409, 1), -- MP Modifiers
+(36514, 4410, 11), -- P. Atk. Modifiers
+(36514, 4411, 11), -- M. Atk. Modifiers
+(36514, 4412, 11), -- P. Def. Modifiers
+(36514, 4413, 11), -- M. Def. Modifiers
+(36514, 4414, 2), -- Armor Type
+(36514, 4415, 3), -- Weapon Type
+(36514, 4416, 22), -- Races
 -- Territory Border Guard
 (36515, 4045, 1), -- Resist Full Magic Attack
-(36515, 4408, 16), -- HP Increase (8x)
-(36515, 4409, 11), -- MP Increase (3x)
-(36515, 4410, 18), -- Extremely Strong P. Atk.
-(36515, 4411, 11), -- Average M. Atk.
-(36515, 4412, 11), -- Average P. Def.
-(36515, 4413, 11), -- Average M. Def.
-(36515, 4414, 2), -- Standard Type
-(36515, 4415, 3), -- One-handed Sword
-(36515, 4416, 22), -- Defending Army
+(36515, 4408, 16), -- HP Modifiers
+(36515, 4409, 11), -- MP Modifiers
+(36515, 4410, 18), -- P. Atk. Modifiers
+(36515, 4411, 11), -- M. Atk. Modifiers
+(36515, 4412, 11), -- P. Def. Modifiers
+(36515, 4413, 11), -- M. Def. Modifiers
+(36515, 4414, 2), -- Armor Type
+(36515, 4415, 3), -- Weapon Type
+(36515, 4416, 22), -- Races
 -- Religious Association Leader
 (36516, 4045, 1), -- Resist Full Magic Attack
-(36516, 4077, 8), -- Aura Burn
-(36516, 4408, 1), -- HP Increase (1x)
-(36516, 4409, 1), -- MP Increase (1x)
-(36516, 4410, 11), -- Average P. Atk.
-(36516, 4411, 11), -- Average M. Atk.
-(36516, 4412, 11), -- Average P. Def.
-(36516, 4413, 11), -- Average M. Def.
-(36516, 4414, 2), -- Standard Type
-(36516, 4415, 3), -- One-handed Sword
-(36516, 4416, 22), -- Defending Army
-(36516, 5056, 8), -- Hurricane
+(36516, 4077, 8), -- NPC Aura Burn
+(36516, 4408, 1), -- HP Modifiers
+(36516, 4409, 1), -- MP Modifiers
+(36516, 4410, 11), -- P. Atk. Modifiers
+(36516, 4411, 11), -- M. Atk. Modifiers
+(36516, 4412, 11), -- P. Def. Modifiers
+(36516, 4413, 11), -- M. Def. Modifiers
+(36516, 4414, 2), -- Armor Type
+(36516, 4415, 3), -- Weapon Type
+(36516, 4416, 22), -- Races
+(36516, 5056, 8), -- Castle DD Wind
 -- Territory Guard
 (36517, 4045, 1), -- Resist Full Magic Attack
-(36517, 4408, 16), -- HP Increase (8x)
-(36517, 4409, 11), -- MP Increase (3x)
-(36517, 4410, 18), -- Extremely Strong P. Atk.
-(36517, 4411, 11), -- Average M. Atk.
-(36517, 4412, 11), -- Average P. Def.
-(36517, 4413, 11), -- Average M. Def.
-(36517, 4414, 2), -- Standard Type
-(36517, 4415, 3), -- One-handed Sword
-(36517, 4416, 22), -- Defending Army
+(36517, 4408, 16), -- HP Modifiers
+(36517, 4409, 11), -- MP Modifiers
+(36517, 4410, 18), -- P. Atk. Modifiers
+(36517, 4411, 11), -- M. Atk. Modifiers
+(36517, 4412, 11), -- P. Def. Modifiers
+(36517, 4413, 11), -- M. Def. Modifiers
+(36517, 4414, 2), -- Armor Type
+(36517, 4415, 3), -- Weapon Type
+(36517, 4416, 22), -- Races
 -- Territory Border Guard
 (36518, 4045, 1), -- Resist Full Magic Attack
-(36518, 4408, 16), -- HP Increase (8x)
-(36518, 4409, 11), -- MP Increase (3x)
-(36518, 4410, 18), -- Extremely Strong P. Atk.
-(36518, 4411, 11), -- Average M. Atk.
-(36518, 4412, 11), -- Average P. Def.
-(36518, 4413, 11), -- Average M. Def.
-(36518, 4414, 2), -- Standard Type
-(36518, 4415, 9), -- Bows
-(36518, 4416, 22), -- Defending Army
+(36518, 4408, 16), -- HP Modifiers
+(36518, 4409, 11), -- MP Modifiers
+(36518, 4410, 18), -- P. Atk. Modifiers
+(36518, 4411, 11), -- M. Atk. Modifiers
+(36518, 4412, 11), -- P. Def. Modifiers
+(36518, 4413, 11), -- M. Def. Modifiers
+(36518, 4414, 2), -- Armor Type
+(36518, 4415, 9), -- Weapon Type
+(36518, 4416, 22), -- Races
 -- Economic Association Leader
 (36519, 4045, 1), -- Resist Full Magic Attack
-(36519, 4408, 1), -- HP Increase (1x)
-(36519, 4409, 1), -- MP Increase (1x)
-(36519, 4410, 11), -- Average P. Atk.
-(36519, 4411, 11), -- Average M. Atk.
-(36519, 4412, 11), -- Average P. Def.
-(36519, 4413, 11), -- Average M. Def.
-(36519, 4414, 2), -- Standard Type
-(36519, 4415, 3), -- One-handed Sword
-(36519, 4416, 14), -- Humans
+(36519, 4408, 1), -- HP Modifiers
+(36519, 4409, 1), -- MP Modifiers
+(36519, 4410, 11), -- P. Atk. Modifiers
+(36519, 4411, 11), -- M. Atk. Modifiers
+(36519, 4412, 11), -- P. Def. Modifiers
+(36519, 4413, 11), -- M. Def. Modifiers
+(36519, 4414, 2), -- Armor Type
+(36519, 4415, 3), -- Weapon Type
+(36519, 4416, 14), -- Races
 -- Military Association Leader
 (36520, 4045, 1), -- Resist Full Magic Attack
-(36520, 4408, 1), -- HP Increase (1x)
-(36520, 4409, 1), -- MP Increase (1x)
-(36520, 4410, 11), -- Average P. Atk.
-(36520, 4411, 11), -- Average M. Atk.
-(36520, 4412, 11), -- Average P. Def.
-(36520, 4413, 11), -- Average M. Def.
-(36520, 4414, 2), -- Standard Type
-(36520, 4415, 3), -- One-handed Sword
-(36520, 4416, 22), -- Defending Army
+(36520, 4408, 1), -- HP Modifiers
+(36520, 4409, 1), -- MP Modifiers
+(36520, 4410, 11), -- P. Atk. Modifiers
+(36520, 4411, 11), -- M. Atk. Modifiers
+(36520, 4412, 11), -- P. Def. Modifiers
+(36520, 4413, 11), -- M. Def. Modifiers
+(36520, 4414, 2), -- Armor Type
+(36520, 4415, 3), -- Weapon Type
+(36520, 4416, 22), -- Races
 -- Territory Border Guard
 (36521, 4045, 1), -- Resist Full Magic Attack
-(36521, 4408, 16), -- HP Increase (8x)
-(36521, 4409, 11), -- MP Increase (3x)
-(36521, 4410, 18), -- Extremely Strong P. Atk.
-(36521, 4411, 11), -- Average M. Atk.
-(36521, 4412, 11), -- Average P. Def.
-(36521, 4413, 11), -- Average M. Def.
-(36521, 4414, 2), -- Standard Type
-(36521, 4415, 3), -- One-handed Sword
-(36521, 4416, 22), -- Defending Army
+(36521, 4408, 16), -- HP Modifiers
+(36521, 4409, 11), -- MP Modifiers
+(36521, 4410, 18), -- P. Atk. Modifiers
+(36521, 4411, 11), -- M. Atk. Modifiers
+(36521, 4412, 11), -- P. Def. Modifiers
+(36521, 4413, 11), -- M. Def. Modifiers
+(36521, 4414, 2), -- Armor Type
+(36521, 4415, 3), -- Weapon Type
+(36521, 4416, 22), -- Races
 -- Religious Association Leader
 (36522, 4045, 1), -- Resist Full Magic Attack
-(36522, 4077, 8), -- Aura Burn
-(36522, 4408, 1), -- HP Increase (1x)
-(36522, 4409, 1), -- MP Increase (1x)
-(36522, 4410, 11), -- Average P. Atk.
-(36522, 4411, 11), -- Average M. Atk.
-(36522, 4412, 11), -- Average P. Def.
-(36522, 4413, 11), -- Average M. Def.
-(36522, 4414, 2), -- Standard Type
-(36522, 4415, 3), -- One-handed Sword
-(36522, 4416, 22), -- Defending Army
-(36522, 5056, 8), -- Hurricane
+(36522, 4077, 8), -- NPC Aura Burn
+(36522, 4408, 1), -- HP Modifiers
+(36522, 4409, 1), -- MP Modifiers
+(36522, 4410, 11), -- P. Atk. Modifiers
+(36522, 4411, 11), -- M. Atk. Modifiers
+(36522, 4412, 11), -- P. Def. Modifiers
+(36522, 4413, 11), -- M. Def. Modifiers
+(36522, 4414, 2), -- Armor Type
+(36522, 4415, 3), -- Weapon Type
+(36522, 4416, 22), -- Races
+(36522, 5056, 8), -- Castle DD Wind
 -- Territory Guard
 (36523, 4045, 1), -- Resist Full Magic Attack
-(36523, 4408, 16), -- HP Increase (8x)
-(36523, 4409, 11), -- MP Increase (3x)
-(36523, 4410, 18), -- Extremely Strong P. Atk.
-(36523, 4411, 11), -- Average M. Atk.
-(36523, 4412, 11), -- Average P. Def.
-(36523, 4413, 11), -- Average M. Def.
-(36523, 4414, 2), -- Standard Type
-(36523, 4415, 3), -- One-handed Sword
-(36523, 4416, 22), -- Defending Army
+(36523, 4408, 16), -- HP Modifiers
+(36523, 4409, 11), -- MP Modifiers
+(36523, 4410, 18), -- P. Atk. Modifiers
+(36523, 4411, 11); -- M. Atk. Modifiers
+
+INSERT INTO `npcskills` VALUES
+(36523, 4412, 11), -- P. Def. Modifiers
+(36523, 4413, 11), -- M. Def. Modifiers
+(36523, 4414, 2), -- Armor Type
+(36523, 4415, 3), -- Weapon Type
+(36523, 4416, 22), -- Races
 -- Territory Border Guard
 (36524, 4045, 1), -- Resist Full Magic Attack
-(36524, 4408, 16), -- HP Increase (8x)
-(36524, 4409, 11), -- MP Increase (3x)
-(36524, 4410, 18), -- Extremely Strong P. Atk.
-(36524, 4411, 11), -- Average M. Atk.
-(36524, 4412, 11), -- Average P. Def.
-(36524, 4413, 11), -- Average M. Def.
-(36524, 4414, 2), -- Standard Type
-(36524, 4415, 9), -- Bows
-(36524, 4416, 22), -- Defending Army
+(36524, 4408, 16), -- HP Modifiers
+(36524, 4409, 11), -- MP Modifiers
+(36524, 4410, 18), -- P. Atk. Modifiers
+(36524, 4411, 11), -- M. Atk. Modifiers
+(36524, 4412, 11), -- P. Def. Modifiers
+(36524, 4413, 11), -- M. Def. Modifiers
+(36524, 4414, 2), -- Armor Type
+(36524, 4415, 9), -- Weapon Type
+(36524, 4416, 22), -- Races
 -- Economic Association Leader
 (36525, 4045, 1), -- Resist Full Magic Attack
-(36525, 4408, 1), -- HP Increase (1x)
-(36525, 4409, 1), -- MP Increase (1x)
-(36525, 4410, 11), -- Average P. Atk.
-(36525, 4411, 11), -- Average M. Atk.
-(36525, 4412, 11), -- Average P. Def.
-(36525, 4413, 11), -- Average M. Def.
-(36525, 4414, 2), -- Standard Type
-(36525, 4415, 3), -- One-handed Sword
-(36525, 4416, 14), -- Humans
+(36525, 4408, 1), -- HP Modifiers
+(36525, 4409, 1), -- MP Modifiers
+(36525, 4410, 11), -- P. Atk. Modifiers
+(36525, 4411, 11), -- M. Atk. Modifiers
+(36525, 4412, 11), -- P. Def. Modifiers
+(36525, 4413, 11), -- M. Def. Modifiers
+(36525, 4414, 2), -- Armor Type
+(36525, 4415, 3), -- Weapon Type
+(36525, 4416, 14), -- Races
 -- Military Association Leader
 (36526, 4045, 1), -- Resist Full Magic Attack
-(36526, 4408, 1), -- HP Increase (1x)
-(36526, 4409, 1), -- MP Increase (1x)
-(36526, 4410, 11), -- Average P. Atk.
-(36526, 4411, 11), -- Average M. Atk.
-(36526, 4412, 11), -- Average P. Def.
-(36526, 4413, 11), -- Average M. Def.
-(36526, 4414, 2), -- Standard Type
-(36526, 4415, 3), -- One-handed Sword
-(36526, 4416, 22), -- Defending Army
+(36526, 4408, 1), -- HP Modifiers
+(36526, 4409, 1), -- MP Modifiers
+(36526, 4410, 11), -- P. Atk. Modifiers
+(36526, 4411, 11), -- M. Atk. Modifiers
+(36526, 4412, 11), -- P. Def. Modifiers
+(36526, 4413, 11), -- M. Def. Modifiers
+(36526, 4414, 2), -- Armor Type
+(36526, 4415, 3), -- Weapon Type
+(36526, 4416, 22), -- Races
 -- Territory Border Guard
 (36527, 4045, 1), -- Resist Full Magic Attack
-(36527, 4408, 16), -- HP Increase (8x)
-(36527, 4409, 11), -- MP Increase (3x)
-(36527, 4410, 18), -- Extremely Strong P. Atk.
-(36527, 4411, 11), -- Average M. Atk.
-(36527, 4412, 11), -- Average P. Def.
-(36527, 4413, 11), -- Average M. Def.
-(36527, 4414, 2), -- Standard Type
-(36527, 4415, 3), -- One-handed Sword
-(36527, 4416, 22), -- Defending Army
+(36527, 4408, 16), -- HP Modifiers
+(36527, 4409, 11), -- MP Modifiers
+(36527, 4410, 18), -- P. Atk. Modifiers
+(36527, 4411, 11), -- M. Atk. Modifiers
+(36527, 4412, 11), -- P. Def. Modifiers
+(36527, 4413, 11), -- M. Def. Modifiers
+(36527, 4414, 2), -- Armor Type
+(36527, 4415, 3), -- Weapon Type
+(36527, 4416, 22), -- Races
 -- Religious Association Leader
 (36528, 4045, 1), -- Resist Full Magic Attack
-(36528, 4077, 8), -- Aura Burn
-(36528, 4408, 1), -- HP Increase (1x)
-(36528, 4409, 1), -- MP Increase (1x)
-(36528, 4410, 11), -- Average P. Atk.
-(36528, 4411, 11), -- Average M. Atk.
-(36528, 4412, 11), -- Average P. Def.
-(36528, 4413, 11), -- Average M. Def.
-(36528, 4414, 2), -- Standard Type
-(36528, 4415, 3), -- One-handed Sword
-(36528, 4416, 22), -- Defending Army
-(36528, 5056, 8), -- Hurricane
+(36528, 4077, 8), -- NPC Aura Burn
+(36528, 4408, 1), -- HP Modifiers
+(36528, 4409, 1), -- MP Modifiers
+(36528, 4410, 11), -- P. Atk. Modifiers
+(36528, 4411, 11), -- M. Atk. Modifiers
+(36528, 4412, 11), -- P. Def. Modifiers
+(36528, 4413, 11), -- M. Def. Modifiers
+(36528, 4414, 2), -- Armor Type
+(36528, 4415, 3), -- Weapon Type
+(36528, 4416, 22), -- Races
+(36528, 5056, 8), -- Castle DD Wind
 -- Territory Guard
 (36529, 4045, 1), -- Resist Full Magic Attack
-(36529, 4408, 16), -- HP Increase (8x)
-(36529, 4409, 11), -- MP Increase (3x)
-(36529, 4410, 18), -- Extremely Strong P. Atk.
-(36529, 4411, 11), -- Average M. Atk.
-(36529, 4412, 11), -- Average P. Def.
-(36529, 4413, 11), -- Average M. Def.
-(36529, 4414, 2), -- Standard Type
-(36529, 4415, 3), -- One-handed Sword
-(36529, 4416, 22), -- Defending Army
+(36529, 4408, 16), -- HP Modifiers
+(36529, 4409, 11), -- MP Modifiers
+(36529, 4410, 18), -- P. Atk. Modifiers
+(36529, 4411, 11), -- M. Atk. Modifiers
+(36529, 4412, 11), -- P. Def. Modifiers
+(36529, 4413, 11), -- M. Def. Modifiers
+(36529, 4414, 2), -- Armor Type
+(36529, 4415, 3), -- Weapon Type
+(36529, 4416, 22), -- Races
 -- Territory Border Guard
 (36530, 4045, 1), -- Resist Full Magic Attack
-(36530, 4408, 16), -- HP Increase (8x)
-(36530, 4409, 11), -- MP Increase (3x)
-(36530, 4410, 18), -- Extremely Strong P. Atk.
-(36530, 4411, 11), -- Average M. Atk.
-(36530, 4412, 11), -- Average P. Def.
-(36530, 4413, 11), -- Average M. Def.
-(36530, 4414, 2), -- Standard Type
-(36530, 4415, 9), -- Bows
-(36530, 4416, 22), -- Defending Army
+(36530, 4408, 16), -- HP Modifiers
+(36530, 4409, 11), -- MP Modifiers
+(36530, 4410, 18), -- P. Atk. Modifiers
+(36530, 4411, 11), -- M. Atk. Modifiers
+(36530, 4412, 11), -- P. Def. Modifiers
+(36530, 4413, 11), -- M. Def. Modifiers
+(36530, 4414, 2), -- Armor Type
+(36530, 4415, 9), -- Weapon Type
+(36530, 4416, 22), -- Races
 -- Economic Association Leader
 (36531, 4045, 1), -- Resist Full Magic Attack
-(36531, 4408, 1), -- HP Increase (1x)
-(36531, 4409, 1), -- MP Increase (1x)
-(36531, 4410, 11), -- Average P. Atk.
-(36531, 4411, 11), -- Average M. Atk.
-(36531, 4412, 11), -- Average P. Def.
-(36531, 4413, 11), -- Average M. Def.
-(36531, 4414, 2), -- Standard Type
-(36531, 4415, 3), -- One-handed Sword
-(36531, 4416, 14), -- Humans
+(36531, 4408, 1), -- HP Modifiers
+(36531, 4409, 1), -- MP Modifiers
+(36531, 4410, 11), -- P. Atk. Modifiers
+(36531, 4411, 11), -- M. Atk. Modifiers
+(36531, 4412, 11), -- P. Def. Modifiers
+(36531, 4413, 11), -- M. Def. Modifiers
+(36531, 4414, 2), -- Armor Type
+(36531, 4415, 3), -- Weapon Type
+(36531, 4416, 14), -- Races
 -- Military Association Leader
 (36532, 4045, 1), -- Resist Full Magic Attack
-(36532, 4408, 1), -- HP Increase (1x)
-(36532, 4409, 1), -- MP Increase (1x)
-(36532, 4410, 11), -- Average P. Atk.
-(36532, 4411, 11), -- Average M. Atk.
-(36532, 4412, 11), -- Average P. Def.
-(36532, 4413, 11), -- Average M. Def.
-(36532, 4414, 2), -- Standard Type
-(36532, 4415, 3), -- One-handed Sword
-(36532, 4416, 22), -- Defending Army
+(36532, 4408, 1), -- HP Modifiers
+(36532, 4409, 1), -- MP Modifiers
+(36532, 4410, 11), -- P. Atk. Modifiers
+(36532, 4411, 11), -- M. Atk. Modifiers
+(36532, 4412, 11), -- P. Def. Modifiers
+(36532, 4413, 11), -- M. Def. Modifiers
+(36532, 4414, 2), -- Armor Type
+(36532, 4415, 3), -- Weapon Type
+(36532, 4416, 22), -- Races
 -- Territory Border Guard
 (36533, 4045, 1), -- Resist Full Magic Attack
-(36533, 4408, 16), -- HP Increase (8x)
-(36533, 4409, 11), -- MP Increase (3x)
-(36533, 4410, 18), -- Extremely Strong P. Atk.
-(36533, 4411, 11), -- Average M. Atk.
-(36533, 4412, 11), -- Average P. Def.
-(36533, 4413, 11), -- Average M. Def.
-(36533, 4414, 2), -- Standard Type
-(36533, 4415, 3), -- One-handed Sword
-(36533, 4416, 22), -- Defending Army
+(36533, 4408, 16), -- HP Modifiers
+(36533, 4409, 11), -- MP Modifiers
+(36533, 4410, 18), -- P. Atk. Modifiers
+(36533, 4411, 11), -- M. Atk. Modifiers
+(36533, 4412, 11), -- P. Def. Modifiers
+(36533, 4413, 11), -- M. Def. Modifiers
+(36533, 4414, 2), -- Armor Type
+(36533, 4415, 3), -- Weapon Type
+(36533, 4416, 22), -- Races
 -- Religious Association Leader
 (36534, 4045, 1), -- Resist Full Magic Attack
-(36534, 4077, 8), -- Aura Burn
-(36534, 4408, 1), -- HP Increase (1x)
-(36534, 4409, 1), -- MP Increase (1x)
-(36534, 4410, 11), -- Average P. Atk.
-(36534, 4411, 11), -- Average M. Atk.
-(36534, 4412, 11), -- Average P. Def.
-(36534, 4413, 11), -- Average M. Def.
-(36534, 4414, 2), -- Standard Type
-(36534, 4415, 3), -- One-handed Sword
-(36534, 4416, 22), -- Defending Army
-(36534, 5056, 8), -- Hurricane
+(36534, 4077, 8), -- NPC Aura Burn
+(36534, 4408, 1), -- HP Modifiers
+(36534, 4409, 1), -- MP Modifiers
+(36534, 4410, 11), -- P. Atk. Modifiers
+(36534, 4411, 11), -- M. Atk. Modifiers
+(36534, 4412, 11), -- P. Def. Modifiers
+(36534, 4413, 11), -- M. Def. Modifiers
+(36534, 4414, 2), -- Armor Type
+(36534, 4415, 3), -- Weapon Type
+(36534, 4416, 22), -- Races
+(36534, 5056, 8), -- Castle DD Wind
 -- Territory Guard
 (36535, 4045, 1), -- Resist Full Magic Attack
-(36535, 4408, 16), -- HP Increase (8x)
-(36535, 4409, 11), -- MP Increase (3x)
-(36535, 4410, 18), -- Extremely Strong P. Atk.
-(36535, 4411, 11), -- Average M. Atk.
-(36535, 4412, 11), -- Average P. Def.
-(36535, 4413, 11), -- Average M. Def.
-(36535, 4414, 2), -- Standard Type
-(36535, 4415, 3), -- One-handed Sword
-(36535, 4416, 22), -- Defending Army
+(36535, 4408, 16), -- HP Modifiers
+(36535, 4409, 11), -- MP Modifiers
+(36535, 4410, 18), -- P. Atk. Modifiers
+(36535, 4411, 11), -- M. Atk. Modifiers
+(36535, 4412, 11), -- P. Def. Modifiers
+(36535, 4413, 11), -- M. Def. Modifiers
+(36535, 4414, 2), -- Armor Type
+(36535, 4415, 3), -- Weapon Type
+(36535, 4416, 22), -- Races
 -- Territory Border Guard
 (36536, 4045, 1), -- Resist Full Magic Attack
-(36536, 4408, 16), -- HP Increase (8x)
-(36536, 4409, 11), -- MP Increase (3x)
-(36536, 4410, 18), -- Extremely Strong P. Atk.
-(36536, 4411, 11), -- Average M. Atk.
-(36536, 4412, 11), -- Average P. Def.
-(36536, 4413, 11), -- Average M. Def.
-(36536, 4414, 2), -- Standard Type
-(36536, 4415, 9), -- Bows
-(36536, 4416, 22), -- Defending Army
+(36536, 4408, 16), -- HP Modifiers
+(36536, 4409, 11), -- MP Modifiers
+(36536, 4410, 18), -- P. Atk. Modifiers
+(36536, 4411, 11), -- M. Atk. Modifiers
+(36536, 4412, 11), -- P. Def. Modifiers
+(36536, 4413, 11), -- M. Def. Modifiers
+(36536, 4414, 2), -- Armor Type
+(36536, 4415, 9), -- Weapon Type
+(36536, 4416, 22), -- Races
 -- Economic Association Leader
 (36537, 4045, 1), -- Resist Full Magic Attack
-(36537, 4408, 1), -- HP Increase (1x)
-(36537, 4409, 1), -- MP Increase (1x)
-(36537, 4410, 11), -- Average P. Atk.
-(36537, 4411, 11), -- Average M. Atk.
-(36537, 4412, 11), -- Average P. Def.
-(36537, 4413, 11), -- Average M. Def.
-(36537, 4414, 2), -- Standard Type
-(36537, 4415, 3), -- One-handed Sword
-(36537, 4416, 14), -- Humans
+(36537, 4408, 1), -- HP Modifiers
+(36537, 4409, 1), -- MP Modifiers
+(36537, 4410, 11), -- P. Atk. Modifiers
+(36537, 4411, 11), -- M. Atk. Modifiers
+(36537, 4412, 11), -- P. Def. Modifiers
+(36537, 4413, 11), -- M. Def. Modifiers
+(36537, 4414, 2), -- Armor Type
+(36537, 4415, 3), -- Weapon Type
+(36537, 4416, 14), -- Races
 -- Military Association Leader
 (36538, 4045, 1), -- Resist Full Magic Attack
-(36538, 4408, 1), -- HP Increase (1x)
-(36538, 4409, 1), -- MP Increase (1x)
-(36538, 4410, 11), -- Average P. Atk.
-(36538, 4411, 11), -- Average M. Atk.
-(36538, 4412, 11), -- Average P. Def.
-(36538, 4413, 11), -- Average M. Def.
-(36538, 4414, 2), -- Standard Type
-(36538, 4415, 3), -- One-handed Sword
-(36538, 4416, 22), -- Defending Army
+(36538, 4408, 1), -- HP Modifiers
+(36538, 4409, 1), -- MP Modifiers
+(36538, 4410, 11), -- P. Atk. Modifiers
+(36538, 4411, 11), -- M. Atk. Modifiers
+(36538, 4412, 11), -- P. Def. Modifiers
+(36538, 4413, 11), -- M. Def. Modifiers
+(36538, 4414, 2), -- Armor Type
+(36538, 4415, 3), -- Weapon Type
+(36538, 4416, 22), -- Races
 -- Territory Border Guard
 (36539, 4045, 1), -- Resist Full Magic Attack
-(36539, 4408, 16), -- HP Increase (8x)
-(36539, 4409, 11), -- MP Increase (3x)
-(36539, 4410, 18), -- Extremely Strong P. Atk.
-(36539, 4411, 11), -- Average M. Atk.
-(36539, 4412, 11), -- Average P. Def.
-(36539, 4413, 11), -- Average M. Def.
-(36539, 4414, 2), -- Standard Type
-(36539, 4415, 3), -- One-handed Sword
-(36539, 4416, 22), -- Defending Army
+(36539, 4408, 16), -- HP Modifiers
+(36539, 4409, 11), -- MP Modifiers
+(36539, 4410, 18), -- P. Atk. Modifiers
+(36539, 4411, 11), -- M. Atk. Modifiers
+(36539, 4412, 11), -- P. Def. Modifiers
+(36539, 4413, 11), -- M. Def. Modifiers
+(36539, 4414, 2), -- Armor Type
+(36539, 4415, 3), -- Weapon Type
+(36539, 4416, 22), -- Races
 -- Religious Association Leader
 (36540, 4045, 1), -- Resist Full Magic Attack
-(36540, 4077, 8), -- Aura Burn
-(36540, 4408, 1), -- HP Increase (1x)
-(36540, 4409, 1), -- MP Increase (1x)
-(36540, 4410, 11), -- Average P. Atk.
-(36540, 4411, 11), -- Average M. Atk.
-(36540, 4412, 11), -- Average P. Def.
-(36540, 4413, 11), -- Average M. Def.
-(36540, 4414, 2), -- Standard Type
-(36540, 4415, 3), -- One-handed Sword
-(36540, 4416, 22), -- Defending Army
-(36540, 5056, 8), -- Hurricane
+(36540, 4077, 8), -- NPC Aura Burn
+(36540, 4408, 1), -- HP Modifiers
+(36540, 4409, 1), -- MP Modifiers
+(36540, 4410, 11), -- P. Atk. Modifiers
+(36540, 4411, 11), -- M. Atk. Modifiers
+(36540, 4412, 11), -- P. Def. Modifiers
+(36540, 4413, 11), -- M. Def. Modifiers
+(36540, 4414, 2), -- Armor Type
+(36540, 4415, 3), -- Weapon Type
+(36540, 4416, 22), -- Races
+(36540, 5056, 8), -- Castle DD Wind
 -- Territory Guard
 (36541, 4045, 1), -- Resist Full Magic Attack
-(36541, 4408, 16), -- HP Increase (8x)
-(36541, 4409, 11), -- MP Increase (3x)
-(36541, 4410, 18), -- Extremely Strong P. Atk.
-(36541, 4411, 11), -- Average M. Atk.
-(36541, 4412, 11), -- Average P. Def.
-(36541, 4413, 11), -- Average M. Def.
-(36541, 4414, 2), -- Standard Type
-(36541, 4415, 3), -- One-handed Sword
-(36541, 4416, 22), -- Defending Army
+(36541, 4408, 16), -- HP Modifiers
+(36541, 4409, 11), -- MP Modifiers
+(36541, 4410, 18), -- P. Atk. Modifiers
+(36541, 4411, 11), -- M. Atk. Modifiers
+(36541, 4412, 11), -- P. Def. Modifiers
+(36541, 4413, 11), -- M. Def. Modifiers
+(36541, 4414, 2), -- Armor Type
+(36541, 4415, 3), -- Weapon Type
+(36541, 4416, 22), -- Races
 -- Territory Border Guard
 (36542, 4045, 1), -- Resist Full Magic Attack
-(36542, 4408, 16), -- HP Increase (8x)
-(36542, 4409, 11), -- MP Increase (3x)
-(36542, 4410, 18), -- Extremely Strong P. Atk.
-(36542, 4411, 11), -- Average M. Atk.
-(36542, 4412, 11), -- Average P. Def.
-(36542, 4413, 11), -- Average M. Def.
-(36542, 4414, 2), -- Standard Type
-(36542, 4415, 9), -- Bows
-(36542, 4416, 22), -- Defending Army
+(36542, 4408, 16), -- HP Modifiers
+(36542, 4409, 11), -- MP Modifiers
+(36542, 4410, 18), -- P. Atk. Modifiers
+(36542, 4411, 11), -- M. Atk. Modifiers
+(36542, 4412, 11), -- P. Def. Modifiers
+(36542, 4413, 11), -- M. Def. Modifiers
+(36542, 4414, 2), -- Armor Type
+(36542, 4415, 9), -- Weapon Type
+(36542, 4416, 22), -- Races
 -- Economic Association Leader
 (36543, 4045, 1), -- Resist Full Magic Attack
-(36543, 4408, 1), -- HP Increase (1x)
-(36543, 4409, 1), -- MP Increase (1x)
-(36543, 4410, 11), -- Average P. Atk.
-(36543, 4411, 11), -- Average M. Atk.
-(36543, 4412, 11), -- Average P. Def.
-(36543, 4413, 11), -- Average M. Def.
-(36543, 4414, 2), -- Standard Type
-(36543, 4415, 3), -- One-handed Sword
-(36543, 4416, 14), -- Humans
+(36543, 4408, 1), -- HP Modifiers
+(36543, 4409, 1), -- MP Modifiers
+(36543, 4410, 11), -- P. Atk. Modifiers
+(36543, 4411, 11), -- M. Atk. Modifiers
+(36543, 4412, 11), -- P. Def. Modifiers
+(36543, 4413, 11), -- M. Def. Modifiers
+(36543, 4414, 2), -- Armor Type
+(36543, 4415, 3), -- Weapon Type
+(36543, 4416, 14), -- Races
 -- Military Association Leader
 (36544, 4045, 1), -- Resist Full Magic Attack
-(36544, 4408, 1), -- HP Increase (1x)
-(36544, 4409, 1), -- MP Increase (1x)
-(36544, 4410, 11), -- Average P. Atk.
-(36544, 4411, 11), -- Average M. Atk.
-(36544, 4412, 11), -- Average P. Def.
-(36544, 4413, 11), -- Average M. Def.
-(36544, 4414, 2), -- Standard Type
-(36544, 4415, 3), -- One-handed Sword
-(36544, 4416, 22), -- Defending Army
+(36544, 4408, 1), -- HP Modifiers
+(36544, 4409, 1), -- MP Modifiers
+(36544, 4410, 11), -- P. Atk. Modifiers
+(36544, 4411, 11), -- M. Atk. Modifiers
+(36544, 4412, 11), -- P. Def. Modifiers
+(36544, 4413, 11), -- M. Def. Modifiers
+(36544, 4414, 2), -- Armor Type
+(36544, 4415, 3), -- Weapon Type
+(36544, 4416, 22), -- Races
 -- Territory Border Guard
 (36545, 4045, 1), -- Resist Full Magic Attack
-(36545, 4408, 16), -- HP Increase (8x)
-(36545, 4409, 11), -- MP Increase (3x)
-(36545, 4410, 18), -- Extremely Strong P. Atk.
-(36545, 4411, 11), -- Average M. Atk.
-(36545, 4412, 11), -- Average P. Def.
-(36545, 4413, 11), -- Average M. Def.
-(36545, 4414, 2), -- Standard Type
-(36545, 4415, 3), -- One-handed Sword
-(36545, 4416, 22), -- Defending Army
+(36545, 4408, 16), -- HP Modifiers
+(36545, 4409, 11), -- MP Modifiers
+(36545, 4410, 18), -- P. Atk. Modifiers
+(36545, 4411, 11), -- M. Atk. Modifiers
+(36545, 4412, 11), -- P. Def. Modifiers
+(36545, 4413, 11), -- M. Def. Modifiers
+(36545, 4414, 2), -- Armor Type
+(36545, 4415, 3), -- Weapon Type
+(36545, 4416, 22), -- Races
 -- Religious Association Leader
 (36546, 4045, 1), -- Resist Full Magic Attack
-(36546, 4077, 8), -- Aura Burn
-(36546, 4408, 1), -- HP Increase (1x)
-(36546, 4409, 1), -- MP Increase (1x)
-(36546, 4410, 11), -- Average P. Atk.
-(36546, 4411, 11), -- Average M. Atk.
-(36546, 4412, 11), -- Average P. Def.
-(36546, 4413, 11), -- Average M. Def.
-(36546, 4414, 2), -- Standard Type
-(36546, 4415, 3), -- One-handed Sword
-(36546, 4416, 22), -- Defending Army
-(36546, 5056, 8), -- Hurricane
+(36546, 4077, 8), -- NPC Aura Burn
+(36546, 4408, 1), -- HP Modifiers
+(36546, 4409, 1), -- MP Modifiers
+(36546, 4410, 11), -- P. Atk. Modifiers
+(36546, 4411, 11), -- M. Atk. Modifiers
+(36546, 4412, 11), -- P. Def. Modifiers
+(36546, 4413, 11), -- M. Def. Modifiers
+(36546, 4414, 2), -- Armor Type
+(36546, 4415, 3), -- Weapon Type
+(36546, 4416, 22), -- Races
+(36546, 5056, 8), -- Castle DD Wind
 -- Territory Guard
 (36547, 4045, 1), -- Resist Full Magic Attack
-(36547, 4408, 16), -- HP Increase (8x)
-(36547, 4409, 11), -- MP Increase (3x)
-(36547, 4410, 18), -- Extremely Strong P. Atk.
-(36547, 4411, 11), -- Average M. Atk.
-(36547, 4412, 11), -- Average P. Def.
-(36547, 4413, 11), -- Average M. Def.
-(36547, 4414, 2), -- Standard Type
-(36547, 4415, 3), -- One-handed Sword
-(36547, 4416, 22), -- Defending Army
+(36547, 4408, 16), -- HP Modifiers
+(36547, 4409, 11), -- MP Modifiers
+(36547, 4410, 18), -- P. Atk. Modifiers
+(36547, 4411, 11), -- M. Atk. Modifiers
+(36547, 4412, 11), -- P. Def. Modifiers
+(36547, 4413, 11), -- M. Def. Modifiers
+(36547, 4414, 2), -- Armor Type
+(36547, 4415, 3), -- Weapon Type
+(36547, 4416, 22), -- Races
 -- Territory Border Guard
 (36548, 4045, 1), -- Resist Full Magic Attack
-(36548, 4408, 16), -- HP Increase (8x)
-(36548, 4409, 11), -- MP Increase (3x)
-(36548, 4410, 18), -- Extremely Strong P. Atk.
-(36548, 4411, 11), -- Average M. Atk.
-(36548, 4412, 11), -- Average P. Def.
-(36548, 4413, 11), -- Average M. Def.
-(36548, 4414, 2), -- Standard Type
-(36548, 4415, 9), -- Bows
-(36548, 4416, 22), -- Defending Army
+(36548, 4408, 16), -- HP Modifiers
+(36548, 4409, 11), -- MP Modifiers
+(36548, 4410, 18), -- P. Atk. Modifiers
+(36548, 4411, 11), -- M. Atk. Modifiers
+(36548, 4412, 11), -- P. Def. Modifiers
+(36548, 4413, 11), -- M. Def. Modifiers
+(36548, 4414, 2), -- Armor Type
+(36548, 4415, 9), -- Weapon Type
+(36548, 4416, 22), -- Races
 -- Economic Association Leader
 (36549, 4045, 1), -- Resist Full Magic Attack
-(36549, 4408, 1), -- HP Increase (1x)
-(36549, 4409, 1), -- MP Increase (1x)
-(36549, 4410, 11), -- Average P. Atk.
-(36549, 4411, 11), -- Average M. Atk.
-(36549, 4412, 11), -- Average P. Def.
-(36549, 4413, 11), -- Average M. Def.
-(36549, 4414, 2), -- Standard Type
-(36549, 4415, 3), -- One-handed Sword
-(36549, 4416, 14), -- Humans
+(36549, 4408, 1), -- HP Modifiers
+(36549, 4409, 1), -- MP Modifiers
+(36549, 4410, 11), -- P. Atk. Modifiers
+(36549, 4411, 11), -- M. Atk. Modifiers
+(36549, 4412, 11), -- P. Def. Modifiers
+(36549, 4413, 11), -- M. Def. Modifiers
+(36549, 4414, 2), -- Armor Type
+(36549, 4415, 3), -- Weapon Type
+(36549, 4416, 14), -- Races
 -- Military Association Leader
 (36550, 4045, 1), -- Resist Full Magic Attack
-(36550, 4408, 1), -- HP Increase (1x)
-(36550, 4409, 1), -- MP Increase (1x)
-(36550, 4410, 11), -- Average P. Atk.
-(36550, 4411, 11), -- Average M. Atk.
-(36550, 4412, 11), -- Average P. Def.
-(36550, 4413, 11), -- Average M. Def.
-(36550, 4414, 2), -- Standard Type
-(36550, 4415, 3), -- One-handed Sword
-(36550, 4416, 22), -- Defending Army
+(36550, 4408, 1), -- HP Modifiers
+(36550, 4409, 1), -- MP Modifiers
+(36550, 4410, 11), -- P. Atk. Modifiers
+(36550, 4411, 11), -- M. Atk. Modifiers
+(36550, 4412, 11), -- P. Def. Modifiers
+(36550, 4413, 11), -- M. Def. Modifiers
+(36550, 4414, 2), -- Armor Type
+(36550, 4415, 3), -- Weapon Type
+(36550, 4416, 22), -- Races
 -- Territory Border Guard
 (36551, 4045, 1), -- Resist Full Magic Attack
-(36551, 4408, 16), -- HP Increase (8x)
-(36551, 4409, 11), -- MP Increase (3x)
-(36551, 4410, 18), -- Extremely Strong P. Atk.
-(36551, 4411, 11), -- Average M. Atk.
-(36551, 4412, 11), -- Average P. Def.
-(36551, 4413, 11), -- Average M. Def.
-(36551, 4414, 2), -- Standard Type
-(36551, 4415, 3), -- One-handed Sword
-(36551, 4416, 22), -- Defending Army
+(36551, 4408, 16), -- HP Modifiers
+(36551, 4409, 11), -- MP Modifiers
+(36551, 4410, 18), -- P. Atk. Modifiers
+(36551, 4411, 11), -- M. Atk. Modifiers
+(36551, 4412, 11), -- P. Def. Modifiers
+(36551, 4413, 11), -- M. Def. Modifiers
+(36551, 4414, 2), -- Armor Type
+(36551, 4415, 3), -- Weapon Type
+(36551, 4416, 22), -- Races
 -- Religious Association Leader
 (36552, 4045, 1), -- Resist Full Magic Attack
-(36552, 4077, 8), -- Aura Burn
-(36552, 4408, 1), -- HP Increase (1x)
-(36552, 4409, 1), -- MP Increase (1x)
-(36552, 4410, 11), -- Average P. Atk.
-(36552, 4411, 11), -- Average M. Atk.
-(36552, 4412, 11), -- Average P. Def.
-(36552, 4413, 11), -- Average M. Def.
-(36552, 4414, 2), -- Standard Type
-(36552, 4415, 3), -- One-handed Sword
-(36552, 4416, 22), -- Defending Army
-(36552, 5056, 8), -- Hurricane
+(36552, 4077, 8), -- NPC Aura Burn
+(36552, 4408, 1), -- HP Modifiers
+(36552, 4409, 1), -- MP Modifiers
+(36552, 4410, 11), -- P. Atk. Modifiers
+(36552, 4411, 11), -- M. Atk. Modifiers
+(36552, 4412, 11), -- P. Def. Modifiers
+(36552, 4413, 11), -- M. Def. Modifiers
+(36552, 4414, 2), -- Armor Type
+(36552, 4415, 3), -- Weapon Type
+(36552, 4416, 22), -- Races
+(36552, 5056, 8), -- Castle DD Wind
 -- Territory Guard
 (36553, 4045, 1), -- Resist Full Magic Attack
-(36553, 4408, 16), -- HP Increase (8x)
-(36553, 4409, 11), -- MP Increase (3x)
-(36553, 4410, 18), -- Extremely Strong P. Atk.
-(36553, 4411, 11), -- Average M. Atk.
-(36553, 4412, 11), -- Average P. Def.
-(36553, 4413, 11), -- Average M. Def.
-(36553, 4414, 2), -- Standard Type
-(36553, 4415, 3), -- One-handed Sword
-(36553, 4416, 22), -- Defending Army
+(36553, 4408, 16), -- HP Modifiers
+(36553, 4409, 11), -- MP Modifiers
+(36553, 4410, 18), -- P. Atk. Modifiers
+(36553, 4411, 11), -- M. Atk. Modifiers
+(36553, 4412, 11), -- P. Def. Modifiers
+(36553, 4413, 11), -- M. Def. Modifiers
+(36553, 4414, 2), -- Armor Type
+(36553, 4415, 3), -- Weapon Type
+(36553, 4416, 22), -- Races
 -- Territory Border Guard
 (36554, 4045, 1), -- Resist Full Magic Attack
-(36554, 4408, 16), -- HP Increase (8x)
-(36554, 4409, 11), -- MP Increase (3x)
-(36554, 4410, 18), -- Extremely Strong P. Atk.
-(36554, 4411, 11), -- Average M. Atk.
-(36554, 4412, 11), -- Average P. Def.
-(36554, 4413, 11), -- Average M. Def.
-(36554, 4414, 2), -- Standard Type
-(36554, 4415, 9), -- Bows
-(36554, 4416, 22), -- Defending Army
+(36554, 4408, 16), -- HP Modifiers
+(36554, 4409, 11), -- MP Modifiers
+(36554, 4410, 18), -- P. Atk. Modifiers
+(36554, 4411, 11), -- M. Atk. Modifiers
+(36554, 4412, 11), -- P. Def. Modifiers
+(36554, 4413, 11), -- M. Def. Modifiers
+(36554, 4414, 2), -- Armor Type
+(36554, 4415, 9), -- Weapon Type
+(36554, 4416, 22), -- Races
 -- Economic Association Leader
 (36555, 4045, 1), -- Resist Full Magic Attack
-(36555, 4408, 1), -- HP Increase (1x)
-(36555, 4409, 1), -- MP Increase (1x)
-(36555, 4410, 11), -- Average P. Atk.
-(36555, 4411, 11), -- Average M. Atk.
-(36555, 4412, 11), -- Average P. Def.
-(36555, 4413, 11), -- Average M. Def.
-(36555, 4414, 2), -- Standard Type
-(36555, 4415, 3), -- One-handed Sword
-(36555, 4416, 14), -- Humans
+(36555, 4408, 1), -- HP Modifiers
+(36555, 4409, 1), -- MP Modifiers
+(36555, 4410, 11), -- P. Atk. Modifiers
+(36555, 4411, 11), -- M. Atk. Modifiers
+(36555, 4412, 11), -- P. Def. Modifiers
+(36555, 4413, 11), -- M. Def. Modifiers
+(36555, 4414, 2), -- Armor Type
+(36555, 4415, 3), -- Weapon Type
+(36555, 4416, 14), -- Races
 -- Military Association Leader
 (36556, 4045, 1), -- Resist Full Magic Attack
-(36556, 4408, 1), -- HP Increase (1x)
-(36556, 4409, 1), -- MP Increase (1x)
-(36556, 4410, 11), -- Average P. Atk.
-(36556, 4411, 11), -- Average M. Atk.
-(36556, 4412, 11), -- Average P. Def.
-(36556, 4413, 11), -- Average M. Def.
-(36556, 4414, 2), -- Standard Type
-(36556, 4415, 3), -- One-handed Sword
-(36556, 4416, 22), -- Defending Army
+(36556, 4408, 1), -- HP Modifiers
+(36556, 4409, 1), -- MP Modifiers
+(36556, 4410, 11), -- P. Atk. Modifiers
+(36556, 4411, 11), -- M. Atk. Modifiers
+(36556, 4412, 11), -- P. Def. Modifiers
+(36556, 4413, 11), -- M. Def. Modifiers
+(36556, 4414, 2), -- Armor Type
+(36556, 4415, 3), -- Weapon Type
+(36556, 4416, 22), -- Races
 -- Territory Border Guard
 (36557, 4045, 1), -- Resist Full Magic Attack
-(36557, 4408, 16), -- HP Increase (8x)
-(36557, 4409, 11), -- MP Increase (3x)
-(36557, 4410, 18), -- Extremely Strong P. Atk.
-(36557, 4411, 11), -- Average M. Atk.
-(36557, 4412, 11), -- Average P. Def.
-(36557, 4413, 11), -- Average M. Def.
-(36557, 4414, 2), -- Standard Type
-(36557, 4415, 3), -- One-handed Sword
-(36557, 4416, 22), -- Defending Army
+(36557, 4408, 16), -- HP Modifiers
+(36557, 4409, 11), -- MP Modifiers
+(36557, 4410, 18), -- P. Atk. Modifiers
+(36557, 4411, 11), -- M. Atk. Modifiers
+(36557, 4412, 11), -- P. Def. Modifiers
+(36557, 4413, 11), -- M. Def. Modifiers
+(36557, 4414, 2), -- Armor Type
+(36557, 4415, 3), -- Weapon Type
+(36557, 4416, 22), -- Races
 -- Religious Association Leader
 (36558, 4045, 1), -- Resist Full Magic Attack
-(36558, 4077, 8), -- Aura Burn
-(36558, 4408, 1), -- HP Increase (1x)
-(36558, 4409, 1), -- MP Increase (1x)
-(36558, 4410, 11), -- Average P. Atk.
-(36558, 4411, 11), -- Average M. Atk.
-(36558, 4412, 11), -- Average P. Def.
-(36558, 4413, 11); -- Average M. Def.
-
-INSERT INTO `npcskills` VALUES
-(36558, 4414, 2), -- Standard Type
-(36558, 4415, 3), -- One-handed Sword
-(36558, 4416, 22), -- Defending Army
-(36558, 5056, 8), -- Hurricane
+(36558, 4077, 8), -- NPC Aura Burn
+(36558, 4408, 1), -- HP Modifiers
+(36558, 4409, 1), -- MP Modifiers
+(36558, 4410, 11), -- P. Atk. Modifiers
+(36558, 4411, 11), -- M. Atk. Modifiers
+(36558, 4412, 11), -- P. Def. Modifiers
+(36558, 4413, 11), -- M. Def. Modifiers
+(36558, 4414, 2), -- Armor Type
+(36558, 4415, 3), -- Weapon Type
+(36558, 4416, 22), -- Races
+(36558, 5056, 8), -- Castle DD Wind
 -- Territory Guard
 (36559, 4045, 1), -- Resist Full Magic Attack
-(36559, 4408, 16), -- HP Increase (8x)
-(36559, 4409, 11), -- MP Increase (3x)
-(36559, 4410, 18), -- Extremely Strong P. Atk.
-(36559, 4411, 11), -- Average M. Atk.
-(36559, 4412, 11), -- Average P. Def.
-(36559, 4413, 11), -- Average M. Def.
-(36559, 4414, 2), -- Standard Type
-(36559, 4415, 3), -- One-handed Sword
-(36559, 4416, 22), -- Defending Army
+(36559, 4408, 16), -- HP Modifiers
+(36559, 4409, 11), -- MP Modifiers
+(36559, 4410, 18), -- P. Atk. Modifiers
+(36559, 4411, 11), -- M. Atk. Modifiers
+(36559, 4412, 11), -- P. Def. Modifiers
+(36559, 4413, 11), -- M. Def. Modifiers
+(36559, 4414, 2), -- Armor Type
+(36559, 4415, 3), -- Weapon Type
+(36559, 4416, 22), -- Races
 -- Territory Border Guard
 (36560, 4045, 1), -- Resist Full Magic Attack
-(36560, 4408, 16), -- HP Increase (8x)
-(36560, 4409, 11), -- MP Increase (3x)
-(36560, 4410, 18), -- Extremely Strong P. Atk.
-(36560, 4411, 11), -- Average M. Atk.
-(36560, 4412, 11), -- Average P. Def.
-(36560, 4413, 11), -- Average M. Def.
-(36560, 4414, 2), -- Standard Type
-(36560, 4415, 9), -- Bows
-(36560, 4416, 22), -- Defending Army
+(36560, 4408, 16), -- HP Modifiers
+(36560, 4409, 11), -- MP Modifiers
+(36560, 4410, 18), -- P. Atk. Modifiers
+(36560, 4411, 11), -- M. Atk. Modifiers
+(36560, 4412, 11), -- P. Def. Modifiers
+(36560, 4413, 11), -- M. Def. Modifiers
+(36560, 4414, 2), -- Armor Type
+(36560, 4415, 9), -- Weapon Type
+(36560, 4416, 22), -- Races
 -- Economic Association Leader
 (36561, 4045, 1), -- Resist Full Magic Attack
-(36561, 4408, 1), -- HP Increase (1x)
-(36561, 4409, 1), -- MP Increase (1x)
-(36561, 4410, 11), -- Average P. Atk.
-(36561, 4411, 11), -- Average M. Atk.
-(36561, 4412, 11), -- Average P. Def.
-(36561, 4413, 11), -- Average M. Def.
-(36561, 4414, 2), -- Standard Type
-(36561, 4415, 3), -- One-handed Sword
-(36561, 4416, 14), -- Humans
+(36561, 4408, 1), -- HP Modifiers
+(36561, 4409, 1), -- MP Modifiers
+(36561, 4410, 11), -- P. Atk. Modifiers
+(36561, 4411, 11), -- M. Atk. Modifiers
+(36561, 4412, 11), -- P. Def. Modifiers
+(36561, 4413, 11), -- M. Def. Modifiers
+(36561, 4414, 2), -- Armor Type
+(36561, 4415, 3), -- Weapon Type
+(36561, 4416, 14), -- Races
 -- Seduced Knight
 (36562, 4045, 1), -- Resist Full Magic Attack
-(36562, 4408, 1), -- HP Increase (1x)
-(36562, 4409, 3), -- MP Medium-High
-(36562, 4410, 11), -- Average P. Atk.
-(36562, 4411, 11), -- Average M. Atk.
-(36562, 4412, 11), -- Average P. Def.
-(36562, 4413, 11), -- Average M. Def.
-(36562, 4414, 2), -- Standard Type
-(36562, 4415, 3), -- One-handed Sword
-(36562, 4416, 14), -- Humans
-(36562, 4720, 8), -- Power Strike
-(36562, 5044, 3), -- Ultimate Defense
+(36562, 4408, 1), -- HP Modifiers
+(36562, 4409, 3), -- MP Modifiers
+(36562, 4410, 11), -- P. Atk. Modifiers
+(36562, 4411, 11), -- M. Atk. Modifiers
+(36562, 4412, 11), -- P. Def. Modifiers
+(36562, 4413, 11), -- M. Def. Modifiers
+(36562, 4414, 2), -- Armor Type
+(36562, 4415, 3), -- Weapon Type
+(36562, 4416, 14), -- Races
+(36562, 4720, 8), -- BOSS Strike
+(36562, 5044, 3), -- NPC Ultimate Defense
 (36562, 5970, 1), -- Seduced Knight's Help
 -- Seduced Ranger
 (36563, 4045, 1), -- Resist Full Magic Attack
-(36563, 4408, 1), -- HP Increase (1x)
-(36563, 4409, 3), -- MP Medium-High
-(36563, 4410, 11), -- Average P. Atk.
-(36563, 4411, 11), -- Average M. Atk.
-(36563, 4412, 11), -- Average P. Def.
-(36563, 4413, 11), -- Average M. Def.
-(36563, 4414, 3), -- Light Armor Type
-(36563, 4415, 9), -- Bows
-(36563, 4416, 15), -- Elves
-(36563, 4755, 8), -- Power Shot
+(36563, 4408, 1), -- HP Modifiers
+(36563, 4409, 3), -- MP Modifiers
+(36563, 4410, 11), -- P. Atk. Modifiers
+(36563, 4411, 11), -- M. Atk. Modifiers
+(36563, 4412, 11), -- P. Def. Modifiers
+(36563, 4413, 11), -- M. Def. Modifiers
+(36563, 4414, 3), -- Armor Type
+(36563, 4415, 9), -- Weapon Type
+(36563, 4416, 15), -- Races
+(36563, 4755, 8), -- BOSS Power Shot
 (36563, 5968, 2), -- Rapid Shot
 (36563, 5971, 1), -- Seduced Ranger's Help
 -- Seduced Mage
 (36564, 4045, 1), -- Resist Full Magic Attack
-(36564, 4192, 8), -- Vampiric Touch
-(36564, 4194, 8), -- Aura Burn
-(36564, 4408, 1), -- HP Increase (1x)
-(36564, 4409, 11), -- MP Increase (3x)
-(36564, 4410, 11), -- Average P. Atk.
-(36564, 4411, 11), -- Average M. Atk.
-(36564, 4412, 11), -- Average P. Def.
-(36564, 4413, 11), -- Average M. Def.
-(36564, 4414, 3), -- Light Armor Type
-(36564, 4415, 5), -- Blunt Weapons
-(36564, 4416, 14), -- Humans
+(36564, 4192, 8), -- BOSS HP Drain
+(36564, 4194, 8), -- BOSS Aura Burn
+(36564, 4408, 1), -- HP Modifiers
+(36564, 4409, 11), -- MP Modifiers
+(36564, 4410, 11), -- P. Atk. Modifiers
+(36564, 4411, 11), -- M. Atk. Modifiers
+(36564, 4412, 11), -- P. Def. Modifiers
+(36564, 4413, 11), -- M. Def. Modifiers
+(36564, 4414, 3), -- Armor Type
+(36564, 4415, 5), -- Weapon Type
+(36564, 4416, 14), -- Races
 (36564, 5972, 1), -- Seduced Wizard's Help
 -- Seduced Warrior
 (36565, 4045, 1), -- Resist Full Magic Attack
-(36565, 4408, 1), -- HP Increase (1x)
-(36565, 4409, 3), -- MP Medium-High
-(36565, 4410, 11), -- Average P. Atk.
-(36565, 4411, 11), -- Average M. Atk.
-(36565, 4412, 11), -- Average P. Def.
-(36565, 4413, 11), -- Average M. Def.
-(36565, 4414, 3), -- Light Armor Type
-(36565, 4415, 1), -- Bare Hands
-(36565, 4416, 17), -- Orcs
+(36565, 4408, 1), -- HP Modifiers
+(36565, 4409, 3), -- MP Modifiers
+(36565, 4410, 11), -- P. Atk. Modifiers
+(36565, 4411, 11), -- M. Atk. Modifiers
+(36565, 4412, 11), -- P. Def. Modifiers
+(36565, 4413, 11), -- M. Def. Modifiers
+(36565, 4414, 3), -- Armor Type
+(36565, 4415, 1), -- Weapon Type
+(36565, 4416, 17), -- Races
 (36565, 4725, 8), -- Stun
 (36565, 5969, 2), -- Punch of Doom
 (36565, 5973, 1), -- Seduced Warrior's Help
 -- Seduced Knight
 (36566, 4045, 1), -- Resist Full Magic Attack
-(36566, 4408, 1), -- HP Increase (1x)
-(36566, 4409, 3), -- MP Medium-High
-(36566, 4410, 11), -- Average P. Atk.
-(36566, 4411, 11), -- Average M. Atk.
-(36566, 4412, 11), -- Average P. Def.
-(36566, 4413, 11), -- Average M. Def.
-(36566, 4414, 2), -- Standard Type
-(36566, 4415, 3), -- One-handed Sword
-(36566, 4416, 14), -- Humans
-(36566, 4720, 7), -- Power Strike
-(36566, 5044, 2), -- Ultimate Defense
+(36566, 4408, 1), -- HP Modifiers
+(36566, 4409, 3), -- MP Modifiers
+(36566, 4410, 11), -- P. Atk. Modifiers
+(36566, 4411, 11), -- M. Atk. Modifiers
+(36566, 4412, 11), -- P. Def. Modifiers
+(36566, 4413, 11), -- M. Def. Modifiers
+(36566, 4414, 2), -- Armor Type
+(36566, 4415, 3), -- Weapon Type
+(36566, 4416, 14), -- Races
+(36566, 4720, 7), -- BOSS Strike
+(36566, 5044, 2), -- NPC Ultimate Defense
 (36566, 5970, 1), -- Seduced Knight's Help
 -- Seduced Ranger
 (36567, 4045, 1), -- Resist Full Magic Attack
-(36567, 4408, 1), -- HP Increase (1x)
-(36567, 4409, 3), -- MP Medium-High
-(36567, 4410, 11), -- Average P. Atk.
-(36567, 4411, 11), -- Average M. Atk.
-(36567, 4412, 11), -- Average P. Def.
-(36567, 4413, 11), -- Average M. Def.
-(36567, 4414, 3), -- Light Armor Type
-(36567, 4415, 9), -- Bows
-(36567, 4416, 15), -- Elves
-(36567, 4755, 7), -- Power Shot
+(36567, 4408, 1), -- HP Modifiers
+(36567, 4409, 3), -- MP Modifiers
+(36567, 4410, 11), -- P. Atk. Modifiers
+(36567, 4411, 11), -- M. Atk. Modifiers
+(36567, 4412, 11), -- P. Def. Modifiers
+(36567, 4413, 11), -- M. Def. Modifiers
+(36567, 4414, 3), -- Armor Type
+(36567, 4415, 9), -- Weapon Type
+(36567, 4416, 15), -- Races
+(36567, 4755, 7), -- BOSS Power Shot
 (36567, 5968, 1), -- Rapid Shot
 (36567, 5971, 1), -- Seduced Ranger's Help
 -- Seduced Mage
 (36568, 4045, 1), -- Resist Full Magic Attack
-(36568, 4192, 7), -- Vampiric Touch
-(36568, 4194, 7), -- Aura Burn
-(36568, 4408, 1), -- HP Increase (1x)
-(36568, 4409, 11), -- MP Increase (3x)
-(36568, 4410, 11), -- Average P. Atk.
-(36568, 4411, 11), -- Average M. Atk.
-(36568, 4412, 11), -- Average P. Def.
-(36568, 4413, 11), -- Average M. Def.
-(36568, 4414, 3), -- Light Armor Type
-(36568, 4415, 5), -- Blunt Weapons
-(36568, 4416, 14), -- Humans
+(36568, 4192, 7), -- BOSS HP Drain
+(36568, 4194, 7), -- BOSS Aura Burn
+(36568, 4408, 1), -- HP Modifiers
+(36568, 4409, 11), -- MP Modifiers
+(36568, 4410, 11), -- P. Atk. Modifiers
+(36568, 4411, 11), -- M. Atk. Modifiers
+(36568, 4412, 11), -- P. Def. Modifiers
+(36568, 4413, 11), -- M. Def. Modifiers
+(36568, 4414, 3), -- Armor Type
+(36568, 4415, 5), -- Weapon Type
+(36568, 4416, 14), -- Races
 (36568, 5972, 1), -- Seduced Wizard's Help
 -- Seduced Warrior
 (36569, 4045, 1), -- Resist Full Magic Attack
-(36569, 4408, 1), -- HP Increase (1x)
-(36569, 4409, 3), -- MP Medium-High
-(36569, 4410, 11), -- Average P. Atk.
-(36569, 4411, 11), -- Average M. Atk.
-(36569, 4412, 11), -- Average P. Def.
-(36569, 4413, 11), -- Average M. Def.
-(36569, 4414, 3), -- Light Armor Type
-(36569, 4415, 1), -- Bare Hands
-(36569, 4416, 17), -- Orcs
+(36569, 4408, 1), -- HP Modifiers
+(36569, 4409, 3), -- MP Modifiers
+(36569, 4410, 11), -- P. Atk. Modifiers
+(36569, 4411, 11), -- M. Atk. Modifiers
+(36569, 4412, 11), -- P. Def. Modifiers
+(36569, 4413, 11), -- M. Def. Modifiers
+(36569, 4414, 3), -- Armor Type
+(36569, 4415, 1), -- Weapon Type
+(36569, 4416, 17), -- Races
 (36569, 4725, 7), -- Stun
 (36569, 5969, 1), -- Punch of Doom
 (36569, 5973, 1), -- Seduced Warrior's Help
 -- Emery Compressor
-(36570, 4408, 1), -- HP Increase (1x)
-(36570, 4409, 1), -- MP Increase (1x)
-(36570, 4410, 11), -- Average P. Atk.
-(36570, 4411, 11), -- Average M. Atk.
-(36570, 4412, 11), -- Average P. Def.
-(36570, 4413, 11), -- Average M. Def.
-(36570, 4414, 2), -- Standard Type
-(36570, 4415, 3), -- One-handed Sword
-(36570, 4416, 2), -- Magic Creatures
+(36570, 4408, 1), -- HP Modifiers
+(36570, 4409, 1), -- MP Modifiers
+(36570, 4410, 11), -- P. Atk. Modifiers
+(36570, 4411, 11), -- M. Atk. Modifiers
+(36570, 4412, 11), -- P. Def. Modifiers
+(36570, 4413, 11), -- M. Def. Modifiers
+(36570, 4414, 2), -- Armor Type
+(36570, 4415, 3), -- Weapon Type
+(36570, 4416, 2), -- Races
 -- Vortex
-(36571, 4408, 1), -- HP Increase (1x)
-(36571, 4409, 1), -- MP Increase (1x)
-(36571, 4410, 11), -- Average P. Atk.
-(36571, 4411, 11), -- Average M. Atk.
-(36571, 4412, 11), -- Average P. Def.
-(36571, 4413, 11), -- Average M. Def.
-(36571, 4414, 2), -- Standard Type
-(36571, 4415, 3), -- One-handed Sword
-(36571, 4416, 2), -- Magic Creatures
+(36571, 4408, 1), -- HP Modifiers
+(36571, 4409, 1), -- MP Modifiers
+(36571, 4410, 11), -- P. Atk. Modifiers
+(36571, 4411, 11), -- M. Atk. Modifiers
+(36571, 4412, 11), -- P. Def. Modifiers
+(36571, 4413, 11), -- M. Def. Modifiers
+(36571, 4414, 2), -- Armor Type
+(36571, 4415, 3), -- Weapon Type
+(36571, 4416, 2), -- Races
 -- Gludio Ward
 (36572, 4045, 1), -- Resist Full Magic Attack
-(36572, 4390, 1), -- Mystic Immunity
-(36572, 4408, 1), -- HP Increase (1x)
-(36572, 4409, 1), -- MP Increase (1x)
-(36572, 4410, 11), -- Average P. Atk.
-(36572, 4411, 11), -- Average M. Atk.
-(36572, 4412, 11), -- Average P. Def.
-(36572, 4413, 11), -- Average M. Def.
-(36572, 4414, 2), -- Standard Type
-(36572, 4415, 3), -- One-handed Sword
-(36572, 4416, 2), -- Magic Creatures
+(36572, 4390, 1), -- NPC Abnormal Immunity
+(36572, 4408, 1), -- HP Modifiers
+(36572, 4409, 1), -- MP Modifiers
+(36572, 4410, 11), -- P. Atk. Modifiers
+(36572, 4411, 11), -- M. Atk. Modifiers
+(36572, 4412, 11), -- P. Def. Modifiers
+(36572, 4413, 11), -- M. Def. Modifiers
+(36572, 4414, 2), -- Armor Type
+(36572, 4415, 3), -- Weapon Type
+(36572, 4416, 2), -- Races
 -- Dion Ward
 (36573, 4045, 1), -- Resist Full Magic Attack
-(36573, 4390, 1), -- Mystic Immunity
-(36573, 4408, 1), -- HP Increase (1x)
-(36573, 4409, 1), -- MP Increase (1x)
-(36573, 4410, 11), -- Average P. Atk.
-(36573, 4411, 11), -- Average M. Atk.
-(36573, 4412, 11), -- Average P. Def.
-(36573, 4413, 11), -- Average M. Def.
-(36573, 4414, 2), -- Standard Type
-(36573, 4415, 3), -- One-handed Sword
-(36573, 4416, 2), -- Magic Creatures
+(36573, 4390, 1), -- NPC Abnormal Immunity
+(36573, 4408, 1), -- HP Modifiers
+(36573, 4409, 1), -- MP Modifiers
+(36573, 4410, 11), -- P. Atk. Modifiers
+(36573, 4411, 11), -- M. Atk. Modifiers
+(36573, 4412, 11), -- P. Def. Modifiers
+(36573, 4413, 11), -- M. Def. Modifiers
+(36573, 4414, 2), -- Armor Type
+(36573, 4415, 3), -- Weapon Type
+(36573, 4416, 2), -- Races
 -- Giran Ward
 (36574, 4045, 1), -- Resist Full Magic Attack
-(36574, 4390, 1), -- Mystic Immunity
-(36574, 4408, 1), -- HP Increase (1x)
-(36574, 4409, 1), -- MP Increase (1x)
-(36574, 4410, 11), -- Average P. Atk.
-(36574, 4411, 11), -- Average M. Atk.
-(36574, 4412, 11), -- Average P. Def.
-(36574, 4413, 11), -- Average M. Def.
-(36574, 4414, 2), -- Standard Type
-(36574, 4415, 3), -- One-handed Sword
-(36574, 4416, 2), -- Magic Creatures
+(36574, 4390, 1), -- NPC Abnormal Immunity
+(36574, 4408, 1), -- HP Modifiers
+(36574, 4409, 1), -- MP Modifiers
+(36574, 4410, 11), -- P. Atk. Modifiers
+(36574, 4411, 11), -- M. Atk. Modifiers
+(36574, 4412, 11), -- P. Def. Modifiers
+(36574, 4413, 11), -- M. Def. Modifiers
+(36574, 4414, 2), -- Armor Type
+(36574, 4415, 3), -- Weapon Type
+(36574, 4416, 2), -- Races
 -- Oren Ward
 (36575, 4045, 1), -- Resist Full Magic Attack
-(36575, 4390, 1), -- Mystic Immunity
-(36575, 4408, 1), -- HP Increase (1x)
-(36575, 4409, 1), -- MP Increase (1x)
-(36575, 4410, 11), -- Average P. Atk.
-(36575, 4411, 11), -- Average M. Atk.
-(36575, 4412, 11), -- Average P. Def.
-(36575, 4413, 11), -- Average M. Def.
-(36575, 4414, 2), -- Standard Type
-(36575, 4415, 3), -- One-handed Sword
-(36575, 4416, 2), -- Magic Creatures
+(36575, 4390, 1), -- NPC Abnormal Immunity
+(36575, 4408, 1), -- HP Modifiers
+(36575, 4409, 1), -- MP Modifiers
+(36575, 4410, 11), -- P. Atk. Modifiers
+(36575, 4411, 11), -- M. Atk. Modifiers
+(36575, 4412, 11), -- P. Def. Modifiers
+(36575, 4413, 11), -- M. Def. Modifiers
+(36575, 4414, 2), -- Armor Type
+(36575, 4415, 3), -- Weapon Type
+(36575, 4416, 2), -- Races
 -- Aden Ward
 (36576, 4045, 1), -- Resist Full Magic Attack
-(36576, 4390, 1), -- Mystic Immunity
-(36576, 4408, 1), -- HP Increase (1x)
-(36576, 4409, 1), -- MP Increase (1x)
-(36576, 4410, 11), -- Average P. Atk.
-(36576, 4411, 11), -- Average M. Atk.
-(36576, 4412, 11), -- Average P. Def.
-(36576, 4413, 11), -- Average M. Def.
-(36576, 4414, 2), -- Standard Type
-(36576, 4415, 3), -- One-handed Sword
-(36576, 4416, 2), -- Magic Creatures
+(36576, 4390, 1), -- NPC Abnormal Immunity
+(36576, 4408, 1), -- HP Modifiers
+(36576, 4409, 1), -- MP Modifiers
+(36576, 4410, 11), -- P. Atk. Modifiers
+(36576, 4411, 11), -- M. Atk. Modifiers
+(36576, 4412, 11), -- P. Def. Modifiers
+(36576, 4413, 11), -- M. Def. Modifiers
+(36576, 4414, 2), -- Armor Type
+(36576, 4415, 3), -- Weapon Type
+(36576, 4416, 2), -- Races
 -- Innadril Ward
 (36577, 4045, 1), -- Resist Full Magic Attack
-(36577, 4390, 1), -- Mystic Immunity
-(36577, 4408, 1), -- HP Increase (1x)
-(36577, 4409, 1), -- MP Increase (1x)
-(36577, 4410, 11), -- Average P. Atk.
-(36577, 4411, 11), -- Average M. Atk.
-(36577, 4412, 11), -- Average P. Def.
-(36577, 4413, 11), -- Average M. Def.
-(36577, 4414, 2), -- Standard Type
-(36577, 4415, 3), -- One-handed Sword
-(36577, 4416, 2), -- Magic Creatures
+(36577, 4390, 1), -- NPC Abnormal Immunity
+(36577, 4408, 1), -- HP Modifiers
+(36577, 4409, 1), -- MP Modifiers
+(36577, 4410, 11), -- P. Atk. Modifiers
+(36577, 4411, 11), -- M. Atk. Modifiers
+(36577, 4412, 11), -- P. Def. Modifiers
+(36577, 4413, 11), -- M. Def. Modifiers
+(36577, 4414, 2), -- Armor Type
+(36577, 4415, 3), -- Weapon Type
+(36577, 4416, 2), -- Races
 -- Goddard Ward
 (36578, 4045, 1), -- Resist Full Magic Attack
-(36578, 4390, 1), -- Mystic Immunity
-(36578, 4408, 1), -- HP Increase (1x)
-(36578, 4409, 1), -- MP Increase (1x)
-(36578, 4410, 11), -- Average P. Atk.
-(36578, 4411, 11), -- Average M. Atk.
-(36578, 4412, 11), -- Average P. Def.
-(36578, 4413, 11), -- Average M. Def.
-(36578, 4414, 2), -- Standard Type
-(36578, 4415, 3), -- One-handed Sword
-(36578, 4416, 2), -- Magic Creatures
+(36578, 4390, 1), -- NPC Abnormal Immunity
+(36578, 4408, 1), -- HP Modifiers
+(36578, 4409, 1), -- MP Modifiers
+(36578, 4410, 11), -- P. Atk. Modifiers
+(36578, 4411, 11), -- M. Atk. Modifiers
+(36578, 4412, 11), -- P. Def. Modifiers
+(36578, 4413, 11), -- M. Def. Modifiers
+(36578, 4414, 2), -- Armor Type
+(36578, 4415, 3), -- Weapon Type
+(36578, 4416, 2), -- Races
 -- Rune Ward
 (36579, 4045, 1), -- Resist Full Magic Attack
-(36579, 4390, 1), -- Mystic Immunity
-(36579, 4408, 1), -- HP Increase (1x)
-(36579, 4409, 1), -- MP Increase (1x)
-(36579, 4410, 11), -- Average P. Atk.
-(36579, 4411, 11), -- Average M. Atk.
-(36579, 4412, 11), -- Average P. Def.
-(36579, 4413, 11), -- Average M. Def.
-(36579, 4414, 2), -- Standard Type
-(36579, 4415, 3), -- One-handed Sword
-(36579, 4416, 2), -- Magic Creatures
+(36579, 4390, 1), -- NPC Abnormal Immunity
+(36579, 4408, 1), -- HP Modifiers
+(36579, 4409, 1), -- MP Modifiers
+(36579, 4410, 11), -- P. Atk. Modifiers
+(36579, 4411, 11), -- M. Atk. Modifiers
+(36579, 4412, 11), -- P. Def. Modifiers
+(36579, 4413, 11), -- M. Def. Modifiers
+(36579, 4414, 2), -- Armor Type
+(36579, 4415, 3), -- Weapon Type
+(36579, 4416, 2), -- Races
 -- Schuttgart Ward
 (36580, 4045, 1), -- Resist Full Magic Attack
-(36580, 4390, 1), -- Mystic Immunity
-(36580, 4408, 1), -- HP Increase (1x)
-(36580, 4409, 1), -- MP Increase (1x)
-(36580, 4410, 11), -- Average P. Atk.
-(36580, 4411, 11), -- Average M. Atk.
-(36580, 4412, 11), -- Average P. Def.
-(36580, 4413, 11), -- Average M. Def.
-(36580, 4414, 2), -- Standard Type
-(36580, 4415, 3), -- One-handed Sword
-(36580, 4416, 2), -- Magic Creatures
+(36580, 4390, 1), -- NPC Abnormal Immunity
+(36580, 4408, 1), -- HP Modifiers
+(36580, 4409, 1), -- MP Modifiers
+(36580, 4410, 11), -- P. Atk. Modifiers
+(36580, 4411, 11), -- M. Atk. Modifiers
+(36580, 4412, 11), -- P. Def. Modifiers
+(36580, 4413, 11), -- M. Def. Modifiers
+(36580, 4414, 2), -- Armor Type
+(36580, 4415, 3), -- Weapon Type
+(36580, 4416, 2), -- Races
 -- Territory Catapult
 (36581, 4045, 1), -- Resist Full Magic Attack
-(36581, 4408, 1), -- HP Increase (1x)
-(36581, 4409, 1), -- MP Increase (1x)
-(36581, 4410, 11), -- Average P. Atk.
-(36581, 4411, 11), -- Average M. Atk.
-(36581, 4412, 11), -- Average P. Def.
-(36581, 4413, 11), -- Average M. Def.
-(36581, 4414, 2), -- Standard Type
-(36581, 4415, 3), -- One-handed Sword
-(36581, 4416, 2), -- Magic Creatures
+(36581, 4408, 1), -- HP Modifiers
+(36581, 4409, 1), -- MP Modifiers
+(36581, 4410, 11), -- P. Atk. Modifiers
+(36581, 4411, 11), -- M. Atk. Modifiers
+(36581, 4412, 11), -- P. Def. Modifiers
+(36581, 4413, 11), -- M. Def. Modifiers
+(36581, 4414, 2), -- Armor Type
+(36581, 4415, 3), -- Weapon Type
+(36581, 4416, 2), -- Races
 -- Territory Catapult
 (36582, 4045, 1), -- Resist Full Magic Attack
-(36582, 4408, 1), -- HP Increase (1x)
-(36582, 4409, 1), -- MP Increase (1x)
-(36582, 4410, 11), -- Average P. Atk.
-(36582, 4411, 11), -- Average M. Atk.
-(36582, 4412, 11), -- Average P. Def.
-(36582, 4413, 11), -- Average M. Def.
-(36582, 4414, 2), -- Standard Type
-(36582, 4415, 3), -- One-handed Sword
-(36582, 4416, 2), -- Magic Creatures
+(36582, 4408, 1), -- HP Modifiers
+(36582, 4409, 1), -- MP Modifiers
+(36582, 4410, 11), -- P. Atk. Modifiers
+(36582, 4411, 11), -- M. Atk. Modifiers
+(36582, 4412, 11), -- P. Def. Modifiers
+(36582, 4413, 11), -- M. Def. Modifiers
+(36582, 4414, 2), -- Armor Type
+(36582, 4415, 3), -- Weapon Type
+(36582, 4416, 2), -- Races
 -- Territory Catapult
 (36583, 4045, 1), -- Resist Full Magic Attack
-(36583, 4408, 1), -- HP Increase (1x)
-(36583, 4409, 1), -- MP Increase (1x)
-(36583, 4410, 11), -- Average P. Atk.
-(36583, 4411, 11), -- Average M. Atk.
-(36583, 4412, 11), -- Average P. Def.
-(36583, 4413, 11), -- Average M. Def.
-(36583, 4414, 2), -- Standard Type
-(36583, 4415, 3), -- One-handed Sword
-(36583, 4416, 2), -- Magic Creatures
+(36583, 4408, 1), -- HP Modifiers
+(36583, 4409, 1), -- MP Modifiers
+(36583, 4410, 11), -- P. Atk. Modifiers
+(36583, 4411, 11), -- M. Atk. Modifiers
+(36583, 4412, 11), -- P. Def. Modifiers
+(36583, 4413, 11), -- M. Def. Modifiers
+(36583, 4414, 2), -- Armor Type
+(36583, 4415, 3), -- Weapon Type
+(36583, 4416, 2), -- Races
 -- Territory Catapult
 (36584, 4045, 1), -- Resist Full Magic Attack
-(36584, 4408, 1), -- HP Increase (1x)
-(36584, 4409, 1), -- MP Increase (1x)
-(36584, 4410, 11), -- Average P. Atk.
-(36584, 4411, 11), -- Average M. Atk.
-(36584, 4412, 11), -- Average P. Def.
-(36584, 4413, 11), -- Average M. Def.
-(36584, 4414, 2), -- Standard Type
-(36584, 4415, 3), -- One-handed Sword
-(36584, 4416, 2), -- Magic Creatures
+(36584, 4408, 1), -- HP Modifiers
+(36584, 4409, 1), -- MP Modifiers
+(36584, 4410, 11), -- P. Atk. Modifiers
+(36584, 4411, 11), -- M. Atk. Modifiers
+(36584, 4412, 11), -- P. Def. Modifiers
+(36584, 4413, 11), -- M. Def. Modifiers
+(36584, 4414, 2), -- Armor Type
+(36584, 4415, 3), -- Weapon Type
+(36584, 4416, 2), -- Races
 -- Territory Catapult
 (36585, 4045, 1), -- Resist Full Magic Attack
-(36585, 4408, 1), -- HP Increase (1x)
-(36585, 4409, 1), -- MP Increase (1x)
-(36585, 4410, 11), -- Average P. Atk.
-(36585, 4411, 11), -- Average M. Atk.
-(36585, 4412, 11), -- Average P. Def.
-(36585, 4413, 11), -- Average M. Def.
-(36585, 4414, 2), -- Standard Type
-(36585, 4415, 3), -- One-handed Sword
-(36585, 4416, 2), -- Magic Creatures
+(36585, 4408, 1), -- HP Modifiers
+(36585, 4409, 1), -- MP Modifiers
+(36585, 4410, 11), -- P. Atk. Modifiers
+(36585, 4411, 11), -- M. Atk. Modifiers
+(36585, 4412, 11), -- P. Def. Modifiers
+(36585, 4413, 11), -- M. Def. Modifiers
+(36585, 4414, 2), -- Armor Type
+(36585, 4415, 3), -- Weapon Type
+(36585, 4416, 2), -- Races
 -- Territory Catapult
 (36586, 4045, 1), -- Resist Full Magic Attack
-(36586, 4408, 1), -- HP Increase (1x)
-(36586, 4409, 1), -- MP Increase (1x)
-(36586, 4410, 11), -- Average P. Atk.
-(36586, 4411, 11), -- Average M. Atk.
-(36586, 4412, 11), -- Average P. Def.
-(36586, 4413, 11), -- Average M. Def.
-(36586, 4414, 2), -- Standard Type
-(36586, 4415, 3), -- One-handed Sword
-(36586, 4416, 2), -- Magic Creatures
+(36586, 4408, 1), -- HP Modifiers
+(36586, 4409, 1), -- MP Modifiers
+(36586, 4410, 11), -- P. Atk. Modifiers
+(36586, 4411, 11), -- M. Atk. Modifiers
+(36586, 4412, 11), -- P. Def. Modifiers
+(36586, 4413, 11), -- M. Def. Modifiers
+(36586, 4414, 2), -- Armor Type
+(36586, 4415, 3), -- Weapon Type
+(36586, 4416, 2), -- Races
 -- Territory Catapult
 (36587, 4045, 1), -- Resist Full Magic Attack
-(36587, 4408, 1), -- HP Increase (1x)
-(36587, 4409, 1), -- MP Increase (1x)
-(36587, 4410, 11), -- Average P. Atk.
-(36587, 4411, 11), -- Average M. Atk.
-(36587, 4412, 11), -- Average P. Def.
-(36587, 4413, 11), -- Average M. Def.
-(36587, 4414, 2), -- Standard Type
-(36587, 4415, 3), -- One-handed Sword
-(36587, 4416, 2), -- Magic Creatures
+(36587, 4408, 1), -- HP Modifiers
+(36587, 4409, 1), -- MP Modifiers
+(36587, 4410, 11), -- P. Atk. Modifiers
+(36587, 4411, 11), -- M. Atk. Modifiers
+(36587, 4412, 11), -- P. Def. Modifiers
+(36587, 4413, 11), -- M. Def. Modifiers
+(36587, 4414, 2), -- Armor Type
+(36587, 4415, 3), -- Weapon Type
+(36587, 4416, 2), -- Races
 -- Territory Catapult
 (36588, 4045, 1), -- Resist Full Magic Attack
-(36588, 4408, 1), -- HP Increase (1x)
-(36588, 4409, 1), -- MP Increase (1x)
-(36588, 4410, 11), -- Average P. Atk.
-(36588, 4411, 11), -- Average M. Atk.
-(36588, 4412, 11), -- Average P. Def.
-(36588, 4413, 11), -- Average M. Def.
-(36588, 4414, 2), -- Standard Type
-(36588, 4415, 3), -- One-handed Sword
-(36588, 4416, 2), -- Magic Creatures
+(36588, 4408, 1), -- HP Modifiers
+(36588, 4409, 1), -- MP Modifiers
+(36588, 4410, 11), -- P. Atk. Modifiers
+(36588, 4411, 11), -- M. Atk. Modifiers
+(36588, 4412, 11), -- P. Def. Modifiers
+(36588, 4413, 11), -- M. Def. Modifiers
+(36588, 4414, 2), -- Armor Type
+(36588, 4415, 3), -- Weapon Type
+(36588, 4416, 2), -- Races
 -- Territory Catapult
 (36589, 4045, 1), -- Resist Full Magic Attack
-(36589, 4408, 1), -- HP Increase (1x)
-(36589, 4409, 1), -- MP Increase (1x)
-(36589, 4410, 11), -- Average P. Atk.
-(36589, 4411, 11), -- Average M. Atk.
-(36589, 4412, 11), -- Average P. Def.
-(36589, 4413, 11), -- Average M. Def.
-(36589, 4414, 2), -- Standard Type
-(36589, 4415, 3), -- One-handed Sword
-(36589, 4416, 2), -- Magic Creatures
+(36589, 4408, 1), -- HP Modifiers
+(36589, 4409, 1), -- MP Modifiers
+(36589, 4410, 11), -- P. Atk. Modifiers
+(36589, 4411, 11), -- M. Atk. Modifiers
+(36589, 4412, 11), -- P. Def. Modifiers
+(36589, 4413, 11), -- M. Def. Modifiers
+(36589, 4414, 2), -- Armor Type
+(36589, 4415, 3), -- Weapon Type
+(36589, 4416, 2), -- Races
 -- Outpost
 (36590, 4045, 1), -- Resist Full Magic Attack
-(36590, 4408, 1), -- HP Increase (1x)
-(36590, 4409, 1), -- MP Increase (1x)
-(36590, 4410, 11), -- Average P. Atk.
-(36590, 4411, 11), -- Average M. Atk.
-(36590, 4412, 11), -- Average P. Def.
-(36590, 4413, 11), -- Average M. Def.
-(36590, 4414, 2), -- Standard Type
-(36590, 4415, 3), -- One-handed Sword
-(36590, 4416, 2), -- Magic Creatures
+(36590, 4408, 1), -- HP Modifiers
+(36590, 4409, 1), -- MP Modifiers
+(36590, 4410, 11), -- P. Atk. Modifiers
+(36590, 4411, 11), -- M. Atk. Modifiers
+(36590, 4412, 11), -- P. Def. Modifiers
+(36590, 4413, 11), -- M. Def. Modifiers
+(36590, 4414, 2), -- Armor Type
+(36590, 4415, 3), -- Weapon Type
+(36590, 4416, 2), -- Races
 -- Supplies Safe
 (36591, 4045, 1), -- Resist Full Magic Attack
-(36591, 4390, 1), -- Mystic Immunity
-(36591, 4408, 16), -- HP Increase (8x)
-(36591, 4409, 1), -- MP Increase (1x)
-(36591, 4410, 11), -- Average P. Atk.
-(36591, 4411, 11), -- Average M. Atk.
-(36591, 4412, 11), -- Average P. Def.
-(36591, 4413, 11), -- Average M. Def.
-(36591, 4414, 2), -- Standard Type
-(36591, 4415, 3), -- One-handed Sword
-(36591, 4416, 2), -- Magic Creatures
+(36591, 4390, 1), -- NPC Abnormal Immunity
+(36591, 4408, 16), -- HP Modifiers
+(36591, 4409, 1), -- MP Modifiers
+(36591, 4410, 11), -- P. Atk. Modifiers
+(36591, 4411, 11), -- M. Atk. Modifiers
+(36591, 4412, 11), -- P. Def. Modifiers
+(36591, 4413, 11), -- M. Def. Modifiers
+(36591, 4414, 2), -- Armor Type
+(36591, 4415, 3), -- Weapon Type
+(36591, 4416, 2), -- Races
 -- Supplies Safe
 (36592, 4045, 1), -- Resist Full Magic Attack
-(36592, 4390, 1), -- Mystic Immunity
-(36592, 4408, 16), -- HP Increase (8x)
-(36592, 4409, 1), -- MP Increase (1x)
-(36592, 4410, 11), -- Average P. Atk.
-(36592, 4411, 11), -- Average M. Atk.
-(36592, 4412, 11), -- Average P. Def.
-(36592, 4413, 11), -- Average M. Def.
-(36592, 4414, 2), -- Standard Type
-(36592, 4415, 3), -- One-handed Sword
-(36592, 4416, 2), -- Magic Creatures
+(36592, 4390, 1), -- NPC Abnormal Immunity
+(36592, 4408, 16), -- HP Modifiers
+(36592, 4409, 1), -- MP Modifiers
+(36592, 4410, 11), -- P. Atk. Modifiers
+(36592, 4411, 11), -- M. Atk. Modifiers
+(36592, 4412, 11), -- P. Def. Modifiers
+(36592, 4413, 11), -- M. Def. Modifiers
+(36592, 4414, 2), -- Armor Type
+(36592, 4415, 3), -- Weapon Type
+(36592, 4416, 2), -- Races
 -- Supplies Safe
 (36593, 4045, 1), -- Resist Full Magic Attack
-(36593, 4390, 1), -- Mystic Immunity
-(36593, 4408, 16), -- HP Increase (8x)
-(36593, 4409, 1), -- MP Increase (1x)
-(36593, 4410, 11), -- Average P. Atk.
-(36593, 4411, 11), -- Average M. Atk.
-(36593, 4412, 11), -- Average P. Def.
-(36593, 4413, 11), -- Average M. Def.
-(36593, 4414, 2), -- Standard Type
-(36593, 4415, 3), -- One-handed Sword
-(36593, 4416, 2), -- Magic Creatures
+(36593, 4390, 1), -- NPC Abnormal Immunity
+(36593, 4408, 16), -- HP Modifiers
+(36593, 4409, 1), -- MP Modifiers
+(36593, 4410, 11), -- P. Atk. Modifiers
+(36593, 4411, 11), -- M. Atk. Modifiers
+(36593, 4412, 11), -- P. Def. Modifiers
+(36593, 4413, 11), -- M. Def. Modifiers
+(36593, 4414, 2), -- Armor Type
+(36593, 4415, 3), -- Weapon Type
+(36593, 4416, 2), -- Races
 -- Supplies Safe
 (36594, 4045, 1), -- Resist Full Magic Attack
-(36594, 4390, 1), -- Mystic Immunity
-(36594, 4408, 16), -- HP Increase (8x)
-(36594, 4409, 1), -- MP Increase (1x)
-(36594, 4410, 11), -- Average P. Atk.
-(36594, 4411, 11), -- Average M. Atk.
-(36594, 4412, 11), -- Average P. Def.
-(36594, 4413, 11), -- Average M. Def.
-(36594, 4414, 2), -- Standard Type
-(36594, 4415, 3), -- One-handed Sword
-(36594, 4416, 2), -- Magic Creatures
+(36594, 4390, 1), -- NPC Abnormal Immunity
+(36594, 4408, 16), -- HP Modifiers
+(36594, 4409, 1), -- MP Modifiers
+(36594, 4410, 11), -- P. Atk. Modifiers
+(36594, 4411, 11), -- M. Atk. Modifiers
+(36594, 4412, 11), -- P. Def. Modifiers
+(36594, 4413, 11), -- M. Def. Modifiers
+(36594, 4414, 2), -- Armor Type
+(36594, 4415, 3), -- Weapon Type
+(36594, 4416, 2), -- Races
 -- Supplies Safe
 (36595, 4045, 1), -- Resist Full Magic Attack
-(36595, 4390, 1), -- Mystic Immunity
-(36595, 4408, 16), -- HP Increase (8x)
-(36595, 4409, 1), -- MP Increase (1x)
-(36595, 4410, 11), -- Average P. Atk.
-(36595, 4411, 11), -- Average M. Atk.
-(36595, 4412, 11), -- Average P. Def.
-(36595, 4413, 11), -- Average M. Def.
-(36595, 4414, 2), -- Standard Type
-(36595, 4415, 3), -- One-handed Sword
-(36595, 4416, 2), -- Magic Creatures
+(36595, 4390, 1), -- NPC Abnormal Immunity
+(36595, 4408, 16), -- HP Modifiers
+(36595, 4409, 1), -- MP Modifiers
+(36595, 4410, 11), -- P. Atk. Modifiers
+(36595, 4411, 11), -- M. Atk. Modifiers
+(36595, 4412, 11), -- P. Def. Modifiers
+(36595, 4413, 11), -- M. Def. Modifiers
+(36595, 4414, 2), -- Armor Type
+(36595, 4415, 3), -- Weapon Type
+(36595, 4416, 2), -- Races
 -- Supplies Safe
 (36596, 4045, 1), -- Resist Full Magic Attack
-(36596, 4390, 1), -- Mystic Immunity
-(36596, 4408, 16), -- HP Increase (8x)
-(36596, 4409, 1), -- MP Increase (1x)
-(36596, 4410, 11), -- Average P. Atk.
-(36596, 4411, 11), -- Average M. Atk.
-(36596, 4412, 11), -- Average P. Def.
-(36596, 4413, 11), -- Average M. Def.
-(36596, 4414, 2), -- Standard Type
-(36596, 4415, 3), -- One-handed Sword
-(36596, 4416, 2), -- Magic Creatures
+(36596, 4390, 1), -- NPC Abnormal Immunity
+(36596, 4408, 16), -- HP Modifiers
+(36596, 4409, 1), -- MP Modifiers
+(36596, 4410, 11), -- P. Atk. Modifiers
+(36596, 4411, 11), -- M. Atk. Modifiers
+(36596, 4412, 11), -- P. Def. Modifiers
+(36596, 4413, 11), -- M. Def. Modifiers
+(36596, 4414, 2), -- Armor Type
+(36596, 4415, 3), -- Weapon Type
+(36596, 4416, 2), -- Races
 -- Supplies Safe
 (36597, 4045, 1), -- Resist Full Magic Attack
-(36597, 4390, 1), -- Mystic Immunity
-(36597, 4408, 16), -- HP Increase (8x)
-(36597, 4409, 1), -- MP Increase (1x)
-(36597, 4410, 11), -- Average P. Atk.
-(36597, 4411, 11), -- Average M. Atk.
-(36597, 4412, 11), -- Average P. Def.
-(36597, 4413, 11), -- Average M. Def.
-(36597, 4414, 2), -- Standard Type
-(36597, 4415, 3), -- One-handed Sword
-(36597, 4416, 2), -- Magic Creatures
+(36597, 4390, 1), -- NPC Abnormal Immunity
+(36597, 4408, 16), -- HP Modifiers
+(36597, 4409, 1), -- MP Modifiers
+(36597, 4410, 11), -- P. Atk. Modifiers
+(36597, 4411, 11), -- M. Atk. Modifiers
+(36597, 4412, 11), -- P. Def. Modifiers
+(36597, 4413, 11), -- M. Def. Modifiers
+(36597, 4414, 2), -- Armor Type
+(36597, 4415, 3), -- Weapon Type
+(36597, 4416, 2), -- Races
 -- Supplies Safe
 (36598, 4045, 1), -- Resist Full Magic Attack
-(36598, 4390, 1), -- Mystic Immunity
-(36598, 4408, 16), -- HP Increase (8x)
-(36598, 4409, 1), -- MP Increase (1x)
-(36598, 4410, 11), -- Average P. Atk.
-(36598, 4411, 11), -- Average M. Atk.
-(36598, 4412, 11), -- Average P. Def.
-(36598, 4413, 11), -- Average M. Def.
-(36598, 4414, 2), -- Standard Type
-(36598, 4415, 3), -- One-handed Sword
-(36598, 4416, 2), -- Magic Creatures
+(36598, 4390, 1), -- NPC Abnormal Immunity
+(36598, 4408, 16), -- HP Modifiers
+(36598, 4409, 1), -- MP Modifiers
+(36598, 4410, 11), -- P. Atk. Modifiers
+(36598, 4411, 11), -- M. Atk. Modifiers
+(36598, 4412, 11), -- P. Def. Modifiers
+(36598, 4413, 11), -- M. Def. Modifiers
+(36598, 4414, 2), -- Armor Type
+(36598, 4415, 3), -- Weapon Type
+(36598, 4416, 2), -- Races
 -- Supplies Safe
 (36599, 4045, 1), -- Resist Full Magic Attack
-(36599, 4390, 1), -- Mystic Immunity
-(36599, 4408, 16), -- HP Increase (8x)
-(36599, 4409, 1), -- MP Increase (1x)
-(36599, 4410, 11), -- Average P. Atk.
-(36599, 4411, 11), -- Average M. Atk.
-(36599, 4412, 11), -- Average P. Def.
-(36599, 4413, 11), -- Average M. Def.
-(36599, 4414, 2), -- Standard Type
-(36599, 4415, 3), -- One-handed Sword
-(36599, 4416, 2); -- Magic Creatures
+(36599, 4390, 1), -- NPC Abnormal Immunity
+(36599, 4408, 16), -- HP Modifiers
+(36599, 4409, 1), -- MP Modifiers
+(36599, 4410, 11), -- P. Atk. Modifiers
+(36599, 4411, 11), -- M. Atk. Modifiers
+(36599, 4412, 11), -- P. Def. Modifiers
+(36599, 4413, 11), -- M. Def. Modifiers
+(36599, 4414, 2), -- Armor Type
+(36599, 4415, 3), -- Weapon Type
+(36599, 4416, 2); -- Races
diff --git a/L2J_DataPack_BETA/dist/sql/game/raidboss_spawnlist.sql b/L2J_DataPack_BETA/dist/sql/game/raidboss_spawnlist.sql
index 7888e1be55..768b12dc7f 100644
--- a/L2J_DataPack_BETA/dist/sql/game/raidboss_spawnlist.sql
+++ b/L2J_DataPack_BETA/dist/sql/game/raidboss_spawnlist.sql
@@ -40,7 +40,7 @@ INSERT IGNORE INTO `raidboss_spawnlist` (`boss_id`,`loc_x`,`loc_y`,`loc_z`,`head
 (25064,96891,93825,-3720,0,43200,129600,218810,1062), -- Wizard Of Storm Teruk (40)
 (25067,94992,-23168,-2176,0,43200,129600,554640,1784), -- Captain Of Red Flag Shaka (52)
 (25070,125600,50100,-3600,0,43200,129600,451391,1975), -- Enchanted Forest Watcher Ruell (55)
-(25073,143265,110044,-3944,0,43200,129600,875948,2917), -- Bloody Priest Rudelto (69)
+-- (25073,143265,110044,-3944,0,43200,129600,875948,2917), -- Bloody Priest Rudelto (69) (Not spawned anymore in H5)
 (25076,-60976,127552,-2960,0,43200,129600,103092,575), -- Princess Molrang (25)
 (25079,53712,102656,-1072,0,43200,129600,168366,731), -- Cat's Eye Bandit (30)
 (25082,88512,140576,-3483,0,43200,129600,206753,1028), -- Leader Of Cat Gang (39)
@@ -54,7 +54,7 @@ INSERT IGNORE INTO `raidboss_spawnlist` (`boss_id`,`loc_x`,`loc_y`,`loc_z`,`head
 (25102,113840,84256,-2480,0,43200,129600,576831,1355), -- Shacram (45)
 (25103,135872,94592,-3735,0,43200,129600,451391,1975), -- Sorcerer Isirr (55)
 (25106,173880,-11412,-2880,0,43200,129600,526218,2301), -- Ghost Of The Well Lidia (60)
-(25109,152660,110387,-5520,0,43200,129600,935092,3274), -- Antharas Priest Cloe (74)
+-- (25109,152660,110387,-5520,0,43200,129600,935092,3274), -- Antharas Priest Cloe (74) (Not spawned anymore in H5)
 (25112,116128,139392,-3640,0,43200,129600,127782,731), -- Agent Of Beres, Meana (30)
 (25115,125789,207644,-3752,0,43200,129600,294846,1062), -- Icarus Sample 1 (40)
 (25118,50896,146576,-3645,0,43200,129600,330579,893), -- Guilotine, Warden Of The Execution Grounds (35)
@@ -81,7 +81,7 @@ INSERT IGNORE INTO `raidboss_spawnlist` (`boss_id`,`loc_x`,`loc_y`,`loc_z`,`head
 (25169,-54464,170288,-3136,0,43200,129600,336732,731), -- Ragraman (30)
 (25170,26064,121808,-3738,0,43200,129600,195371,994), -- Lizardmen Leader Hellion (38)
 (25173,75968,110784,-2512,0,43200,129600,288415,1355), -- Tiger King Karuta (45)
-(25176,92544,115232,-3200,0,43200,129600,451391,1975), -- Black Lily (55)
+-- (25176,92544,115232,-3200,0,43200,129600,451391,1975), -- Black Lily (55) (Not spawned anymore in H5)
 (25179,167152,53120,-4148,0,43200,129600,526218,2301), -- Guardian Of The Statue Of Giant Karum (60)
 (25182,41966,215417,-3728,0,43200,129600,512194,2235), -- Demon Kurikups (59)
 (25185,99732,204331,-3784,0,43200,129600,165289,893), -- Tasaba Patriarch Hellena (35)
@@ -95,14 +95,14 @@ INSERT IGNORE INTO `raidboss_spawnlist` (`boss_id`,`loc_x`,`loc_y`,`loc_z`,`head
 (25208,109663,213615,-3624,0,43200,129600,218810,1062), -- Water Couatle Ateka (40)
 (25211,113456,198118,-3689,0,43200,129600,174646,927), -- Sebek (36)
 (25214,111582,209341,-3687,0,43200,129600,218810,1062), -- Fafurion's Page Sika (40)
-(25217,89904,105712,-3292,0,43200,129600,369009,1660), -- Cursed Clara (50)
+-- (25217,89904,105712,-3292,0,43200,129600,369009,1660), -- Cursed Clara (50) (Not spawned anymore in H5)
 (25220,113551,17083,-2120,0,43200,129600,924022,3202), -- Death Lord Hallate (73)
 (25223,43152,152352,-2848,0,43200,129600,165289,893), -- Soul Collector Acheron (35)
 (25226,104240,-3664,-3392,0,43200,129600,768537,2435), -- Roaring Lord Kastor (62)
 (25229,137568,-19488,-3552,0,43200,129600,1891801,3347), -- Storm Winged Naga (75)
 (25230,66672,46704,-3920,0,43200,129600,482650,2104), -- Timak Seer Ragoth (57)
 (25233,185800,-26500,-2000,0,43200,129600,1256671,2917), -- Spirit Of Andras, The Betrayer (69)
-(25234,120080,111248,-3047,0,43200,129600,1052436,2301), -- Ancient Weird Drake (60)
+-- (25234,120080,111248,-3047,0,43200,129600,1052436,2301), -- Ancient Weird Drake (60) (Not spawned anymore in H5)
 (25235,116400,-62528,-3264,0,43200,129600,912634,3130), -- Vanor Chief Kandra (72)
 (25238,155000,85400,-3200,0,43200,129600,512194,2235), -- Abyss Brukunt (59)
 (25241,165984,88048,-2384,0,43200,129600,624464,1975), -- Harit Hero Tamash (55)
@@ -175,7 +175,7 @@ INSERT IGNORE INTO `raidboss_spawnlist` (`boss_id`,`loc_x`,`loc_y`,`loc_z`,`head
 (25398,5000,189000,-3728,0,43200,129600,165289,893), -- Eye Of Beleth (35)
 (25401,117808,102880,-3600,0,43200,129600,141034,795), -- Skyla (32)
 (25404,35992,191312,-3104,0,43200,129600,148507,827), -- Corsair Captain Kylon (33)
-(25407,115072,112272,-3018,0,43200,129600,526218,2301), -- Lord Ishka (60)
+-- (25407,115072,112272,-3018,0,43200,129600,526218,2301), -- Lord Ishka (60) (Not spawned anymore in H5)
 (25410,72192,125424,-3657,0,43200,129600,218810,1062), -- Road Scavenger Leader (40)
 -- (25412,0,0,0,0,0,0,0,0), -- Necrosentinel Royal Guard (47) (Not spawned anymore in H5)
 (25415,128352,138464,-3467,0,43200,129600,218810,1062), -- Nakondas (40)
@@ -319,7 +319,7 @@ INSERT IGNORE INTO `raidboss_spawnlist` (`boss_id`,`loc_x`,`loc_y`,`loc_z`,`head
 -- (29060,106000,-128000,-3000,0,43200,129600,1566263,9999), -- Captain Of The Ice Queen's Royal Guard (59) (Spawn by Quest)
 -- (29062,-16373,-53562,-10197,0,43200,129600,275385,9999), -- Andreas Van Halter (80) -- stats to be done (Spawn by Quest)
 -- (29065,26528,-8244,-2007,0,43200,129600,1639965,9999), -- Sailren (80) -- stats to be done (Spawn by Quest)
-(29095,141569,-45908,-2387,0,43200,129600,2289038,4553); -- Gordon (80) -- walking around Goddard
+(29095,141569,-45908,-2387,0,43200,129600,2289038,4553), -- Gordon (80) -- walking around Goddard
 -- (29096,0,0,0,0,0,0,0,0), -- Anais (80) (Not spawned anymore in H5)
 -- (29099,0,0,0,0,0,0,0,0), -- Baylor (83) (stats to be done)
 -- (29129,0,0,0,0,0,0,0,0), -- Lost Captain (29) (Spawned by Kamaloka's instance)
@@ -329,4 +329,7 @@ INSERT IGNORE INTO `raidboss_spawnlist` (`boss_id`,`loc_x`,`loc_y`,`loc_z`,`head
 -- (29141,0,0,0,0,0,0,0,0), -- Lost Captain (69) (Spawned by Kamaloka's instance)
 -- (29144,0,0,0,0,0,0,0,0), -- Lost Captain (78) (Spawned by Kamaloka's instance)
 -- (29147,0,0,0,0,0,0,0,0), -- Lost Captain (81) (Spawned by Kamaloka's instance)
--- (29186,0,0,0,0,0,0,0,0), -- Balor (85) (stats to be done)
\ No newline at end of file
+-- (29186,0,0,0,0,0,0,0,0), -- Balor (85) (stats to be done)
+(25725,152316,110439,-5520,36811,43200,129600,6165648,20499), -- Drake Lord (85)
+(25726,145734,120031,-3912,45303,43200,129600,6165648,20499), -- Behemoth Leader (85)
+(25727,148482,117859,-3712,36584,43200,129600,6165648,20499); -- Dragon Beast (85)
\ No newline at end of file
diff --git a/L2J_DataPack_BETA/dist/sql/game/spawnlist.sql b/L2J_DataPack_BETA/dist/sql/game/spawnlist.sql
index a27161575f..edac2c2f79 100644
--- a/L2J_DataPack_BETA/dist/sql/game/spawnlist.sql
+++ b/L2J_DataPack_BETA/dist/sql/game/spawnlist.sql
@@ -20919,6 +20919,19 @@ INSERT INTO `spawnlist` VALUES
 ("Partisan_Hideaway", 1, 20063, 55399, 120923, -3184, 0, 0, 10496, 60, 0, 0),
 ("Partisan_Hideaway", 1, 20063, 52591, 120912, -3208, 0, 0, 19539, 60, 0, 0),
 ("Partisan_Hideaway", 1, 20063, 52616, 121037, -3224, 0, 0, 18145, 60, 0, 0),
+-- Drake
+("death_pass", 1, 20137, 64775, 108234, -3304, 0, 0, 15362, 60, 0, 0),
+("death_pass", 1, 20137, 64888, 116561, -3664, 0, 0, 22741, 60, 0, 0),
+("death_pass", 1, 20137, 64912, 104780, -3744, 0, 0, 51861, 60, 0, 0),
+("death_pass", 1, 20137, 64938, 114814, -3632, 0, 0, 11382, 60, 0, 0),
+("death_pass", 1, 20137, 65005, 116620, -3648, 0, 0, 7821, 60, 0, 0),
+("death_pass", 1, 20137, 64748, 103272, -3576, 0, 0, 44935, 60, 0, 0),
+("death_pass", 1, 20137, 64720, 105647, -3664, 0, 0, 54611, 60, 0, 0),
+("death_pass", 1, 20137, 64679, 105095, -3728, 0, 0, 65136, 60, 0, 0),
+("death_pass", 1, 20137, 64563, 115378, -3584, 0, 0, 49971, 60, 0, 0),
+("death_pass", 1, 20137, 64547, 108031, -3304, 0, 0, 36710, 60, 0, 0),
+("death_pass", 1, 20137, 64293, 107904, -3272, 0, 0, 34186, 60, 0, 0),
+("death_pass", 1, 20137, 63299, 104943, -3736, 0, 0, 7668, 60, 0, 0),
 -- Dire Wolf
 ("dion15_2022_07", 1, 20205, 36714, 130826, -3201, 0, 0, 61042, 24, 0, 0),
 -- Ol Mahum Guerilla
@@ -21286,6 +21299,19 @@ INSERT INTO `spawnlist` VALUES
 ("Partisan_Hideaway", 1, 20211, 51007, 108032, -1472, 0, 0, 13709, 60, 0, 0),
 ("Partisan_Hideaway", 1, 20211, 47272, 107091, -1160, 0, 0, 18405, 60, 0, 0),
 ("Partisan_Hideaway", 1, 20211, 48430, 106389, -1264, 0, 0, 46529, 60, 0, 0),
+-- Thunder Wyrm
+("death_pass", 1, 20243, 65076, 115896, -3640, 0, 0, 26696, 60, 0, 0),
+("death_pass", 1, 20243, 65065, 114619, -3632, 0, 0, 57661, 60, 0, 0),
+("death_pass", 1, 20243, 65052, 105868, -3608, 0, 0, 31179, 60, 0, 0),
+("death_pass", 1, 20243, 64889, 108449, -3264, 0, 0, 62247, 60, 0, 0),
+("death_pass", 1, 20243, 65148, 116342, -3648, 0, 0, 17842, 60, 0, 0),
+("death_pass", 1, 20243, 64832, 107546, -3352, 0, 0, 50045, 60, 0, 0),
+("death_pass", 1, 20243, 64674, 115709, -3608, 0, 0, 28661, 60, 0, 0),
+("death_pass", 1, 20243, 64599, 104454, -3768, 0, 0, 17542, 60, 0, 0),
+("death_pass", 1, 20243, 64377, 108078, -3272, 0, 0, 41627, 60, 0, 0),
+("death_pass", 1, 20243, 63280, 104375, -3768, 0, 0, 30861, 60, 0, 0),
+("death_pass", 1, 20243, 62176, 103988, -3512, 0, 0, 50153, 60, 0, 0),
+("death_pass", 1, 20243, 64602, 107640, -3344, 0, 0, 53522, 60, 0, 0),
 -- Monster Eye Gazer
 ("dion15_2022_10", 1, 20266, 33419, 131007, -3294, 0, 0, 33276, 24, 0, 0),
 ("dion15_2022_10", 1, 20266, 34538, 130753, -3294, 0, 0, 34344, 24, 0, 0),
@@ -21362,9 +21388,6 @@ INSERT INTO `spawnlist` VALUES
 ("Partisan_Hideaway", 1, 20549, 45907, 105930, -864, 0, 0, 24158, 60, 0, 0),
 ("Partisan_Hideaway", 1, 20549, 46790, 106507, -864, 0, 0, 2954, 60, 0, 0),
 ("Partisan_Hideaway", 1, 20549, 50211, 108013, -1096, 0, 0, 54583, 60, 0, 0),
--- Road Scavenger
-("giran06_2221_01", 1, 20551, 65390, 109624, -3665, 0, 0, 39371, 22, 0, 0),
-("giran06_2221_01", 1, 20551, 65406, 115883, -3656, 0, 0, 42368, 22, 0, 0),
 -- Talakin
 ("Partisan_Hideaway", 1, 20755, 47221, 108608, -2008, 0, 0, 59720, 80, 0, 0),
 ("Partisan_Hideaway", 1, 20755, 50974, 109162, -1448, 0, 0, 57008, 80, 0, 0),
@@ -21646,6 +21669,12 @@ INSERT INTO `spawnlist` VALUES
 ("giran06_npc2221_05", 1, 30751, 62008, 107589, -1893, 0, 0, 0, 60, 0, 0),
 -- Shamhai
 ("giran01_npc2121_01", 1, 30752, 64001, 126486, -2016, 0, 0, 0, 60, 0, 0),
+-- Corpse Of Fritz
+("death_pass", 1, 30761, 64819, 115911, -3632, 0, 0, 42000, 60, 0, 0),
+-- Corpse Of Lutz
+("death_pass", 1, 30762, 65205, 109495, -3664, 0, 0, 42000, 60, 0, 0),
+-- Corpse Of Kurtz
+("death_pass", 1, 30763, 64113, 103060, -3544, 0, 0, 42000, 60, 0, 0),
 -- Gatekeeper Ziggurat
 ("ssq07_npc2121_02", 1, 31096, 45248, 124352, -5411, 0, 0, 16500, 60, 0, 0),
 -- Gatekeeper Ziggurat
@@ -22496,7 +22525,8 @@ INSERT INTO `spawnlist` VALUES
 ("giran08_2124_001", 1, 20832, 48186, 206243, -3517, 0, 0, 25573, 55, 0, 0),
 ("giran08_2124_001", 1, 20832, 48527, 206731, -3556, 0, 0, 0, 55, 0, 0),
 ("giran08_2124_001", 1, 20832, 48023, 206909, -3556, 0, 0, 0, 55, 0, 0),
-("giran08_2124_001", 1, 20832, 48224, 207621, -3556, 0, 0, 0, 55, 0, 0),
+("giran08_2124_001", 1, 20832, 48224, 207621, -3556, 0, 0, 0, 55, 0, 0);
+INSERT INTO `spawnlist` VALUES
 ("giran08_2124_001", 1, 20832, 48655, 206012, -3520, 0, 0, 0, 55, 0, 0),
 -- Zaken's Archer
 ("giran08_2124_001", 1, 20833, 38004, 197058, -4657, 0, 0, 30376, 55, 0, 0),
@@ -22523,8 +22553,7 @@ INSERT INTO `spawnlist` VALUES
 -- Zaken's Seer
 ("giran08_2124_017", 1, 20835, 49767, 209034, -3772, 0, 0, 0, 55, 0, 0),
 ("giran08_2124_017", 1, 20835, 50827, 208730, -3728, 0, 0, 0, 55, 0, 0),
-("giran08_2124_017", 1, 20835, 50573, 209034, -3772, 0, 0, 0, 55, 0, 0);
-INSERT INTO `spawnlist` VALUES
+("giran08_2124_017", 1, 20835, 50573, 209034, -3772, 0, 0, 0, 55, 0, 0),
 ("giran08_2124_017", 1, 20835, 49868, 208500, -3772, 0, 0, 0, 55, 0, 0),
 ("giran08_2124_017", 1, 20835, 49566, 208046, -3725, 0, 0, 39680, 55, 0, 0),
 ("giran08_2124_017", 1, 20835, 50191, 208050, -3728, 0, 0, 0, 55, 0, 0),
@@ -24723,7 +24752,8 @@ INSERT INTO `spawnlist` VALUES
 -- Crown of Splendor
 ("rune08_2215_46", 1, 21536, 80748, -92375, -3117, 0, 0, 39764, 48, 0, 0),
 ("rune08_2215_46", 1, 21536, 82751, -90950, -2958, 0, 0, 2500, 48, 0, 0),
-("rune08_2215_46", 1, 21536, 83554, -89739, -2759, 0, 0, 49349, 48, 0, 0),
+("rune08_2215_46", 1, 21536, 83554, -89739, -2759, 0, 0, 49349, 48, 0, 0);
+INSERT INTO `spawnlist` VALUES
 ("rune08_2215_46", 1, 21536, 85813, -90123, -2759, 0, 0, 52079, 48, 0, 0),
 ("rune08_2215_46", 1, 21536, 86767, -88858, -2756, 0, 0, 988, 48, 0, 0),
 ("rune08_2215_46", 1, 21536, 88867, -91875, -2843, 0, 0, 0, 48, 0, 0),
@@ -24749,8 +24779,7 @@ INSERT INTO `spawnlist` VALUES
 ("rune08_2215_46", 1, 21537, 90517, -91964, -2767, 0, 0, 59756, 48, 0, 0),
 ("rune08_2215_46", 1, 21537, 92518, -90400, -2800, 0, 0, 15400, 48, 0, 0),
 ("rune08_2215_46", 1, 21537, 95891, -91346, -2846, 0, 0, 0, 48, 0, 0),
-("rune08_2215_46", 1, 21537, 96076, -89431, -2799, 0, 0, 56890, 48, 0, 0);
-INSERT INTO `spawnlist` VALUES
+("rune08_2215_46", 1, 21537, 96076, -89431, -2799, 0, 0, 56890, 48, 0, 0),
 ("rune08_2215_46", 1, 21537, 95326, -86113, -2795, 0, 0, 20832, 48, 0, 0),
 ("rune08_2215_46", 1, 21537, 95751, -87185, -2797, 0, 0, 54205, 48, 0, 0),
 ("rune08_2215_46", 1, 21537, 95444, -86898, -2894, 0, 0, 0, 48, 0, 0),
@@ -26891,7 +26920,8 @@ INSERT INTO `spawnlist` VALUES
 -- Timak Orc Troop Leader
 ("oren28_2219_p01", 1, 20767, 71123, 36354, -3187, 0, 0, 60566, 40, 0, 0),
 ("oren28_2219_p01", 1, 20767, 71170, 38508, -3355, 0, 0, 26099, 40, 0, 0),
-("oren28_2219_p01", 1, 20767, 69127, 38435, -3574, 0, 0, 27762, 40, 0, 0),
+("oren28_2219_p01", 1, 20767, 69127, 38435, -3574, 0, 0, 27762, 40, 0, 0);
+INSERT INTO `spawnlist` VALUES
 ("oren28_2219_p01", 1, 20767, 67180, 36564, -3638, 0, 0, 0, 40, 0, 0),
 ("oren28_2219_p01", 1, 20767, 66395, 41284, -3736, 0, 0, 0, 40, 0, 0),
 ("oren28_2219_p01", 1, 20767, 68049, 41006, -3686, 0, 0, 61624, 40, 0, 0),
@@ -26916,8 +26946,7 @@ INSERT INTO `spawnlist` VALUES
 ("oren28_2219_p01", 1, 20767, 65591, 56340, -3524, 0, 0, 29843, 40, 0, 0),
 ("oren28_2219_p01", 1, 20767, 70921, 57560, -3424, 0, 0, 54121, 40, 0, 0),
 ("oren28_2219_p01", 1, 20767, 69522, 60748, -3521, 0, 0, 27695, 40, 0, 0),
-("oren28_2219_p01", 1, 20767, 70013, 58739, -3625, 0, 0, 38227, 40, 0, 0);
-INSERT INTO `spawnlist` VALUES
+("oren28_2219_p01", 1, 20767, 70013, 58739, -3625, 0, 0, 38227, 40, 0, 0),
 ("oren28_2219_p01", 1, 20767, 71541, 58990, -3322, 0, 0, 24718, 40, 0, 0),
 ("oren28_2219_p01", 1, 20767, 72386, 62548, -3384, 0, 0, 0, 40, 0, 0),
 ("oren28_2219_p01", 1, 20767, 72303, 63099, -3384, 0, 0, 0, 40, 0, 0),
@@ -27894,10 +27923,6 @@ INSERT INTO `spawnlist` VALUES
 
 -- [22_20]
 
--- Treasure Chest
-("giran06_tb2221_13", 1, 18271, 71298, 97113, -3722, 0, 0, 48252, 60, 0, 0),
-("giran06_tb2221_13", 1, 18271, 74532, 96576, -3674, 0, 0, 57630, 60, 0, 0),
-("giran06_tb2221_13", 1, 18271, 80080, 97867, -3609, 0, 0, 62031, 60, 0, 0),
 -- Fantasy Mushroom
 ("plains_of_lizardmen", 1, 18864, 92135, 83982, -3680, 0, 0, 0, 60, 0, 0),
 ("plains_of_lizardmen", 1, 18864, 91045, 87849, -3424, 0, 0, 0, 60, 0, 0),
@@ -28143,34 +28168,6 @@ INSERT INTO `spawnlist` VALUES
 ("Sel_Mahum_Training_Grounds", 1, 18933, 93408, 69072, -3616, 0, 0, 0, 60, 0, 0),
 ("Sel_Mahum_Training_Grounds", 1, 18933, 94144, 68144, -3640, 0, 0, 0, 60, 0, 0),
 ("Sel_Mahum_Training_Grounds", 1, 18933, 85344, 65712, -3232, 0, 0, 0, 60, 0, 0),
--- Fettered Soul
-("giran06_2221_14", 1, 20552, 68393, 98192, -3764, 0, 0, 0, 22, 0, 0),
-("giran06_2221_14", 1, 20552, 78349, 97826, -3657, 0, 0, 56559, 22, 0, 0),
-("giran06_2221_14", 1, 20552, 82485, 98094, -3591, 0, 0, 39092, 22, 0, 0),
-("giran06_2221_14", 1, 20552, 92414, 96721, -3697, 0, 0, 41498, 22, 0, 0),
-("giran06_2221_14", 1, 20552, 90625, 96739, -3640, 0, 0, 53442, 22, 0, 0),
-("giran06_2221_14", 1, 20552, 91837, 98126, -3736, 0, 0, 0, 22, 0, 0),
-("giran06_2221_14", 1, 20552, 97937, 97337, -3663, 0, 0, 56650, 22, 0, 0),
-("giran06_2221_14", 1, 20552, 96579, 98244, -3704, 0, 0, 38212, 22, 0, 0),
--- Windsus
-("giran06_2221_14", 1, 20553, 69704, 96510, -3661, 0, 0, 29354, 22, 0, 0),
-("giran06_2221_14", 1, 20553, 74186, 97709, -3537, 0, 0, 18177, 22, 0, 0),
-("giran06_2221_14", 1, 20553, 73187, 96616, -3690, 0, 0, 58230, 22, 0, 0),
-("giran06_2221_14", 1, 20553, 78048, 96945, -3688, 0, 0, 40095, 22, 0, 0),
-("giran06_2221_14", 1, 20553, 76394, 97144, -3640, 0, 0, 58128, 22, 0, 0),
-("giran06_2221_14", 1, 20553, 85982, 98105, -3629, 0, 0, 24190, 22, 0, 0),
-("giran06_2221_14", 1, 20553, 89736, 97496, -3645, 0, 0, 26152, 22, 0, 0),
-("giran06_2221_14", 1, 20553, 87875, 97980, -3602, 0, 0, 28937, 22, 0, 0),
-("giran06_2221_14", 1, 20553, 97323, 98243, -3706, 0, 0, 45877, 22, 0, 0),
--- Grandis
-("giran06_2221_14", 1, 20554, 69691, 97847, -3725, 0, 0, 39840, 22, 0, 0),
-("giran06_2221_14", 1, 20554, 75792, 98159, -3480, 0, 0, 62183, 22, 0, 0),
-("giran06_2221_14", 1, 20554, 79200, 97830, -3637, 0, 0, 32199, 22, 0, 0),
-("giran06_2221_14", 1, 20554, 80741, 98254, -3571, 0, 0, 404, 22, 0, 0),
-("giran06_2221_14", 1, 20554, 77013, 98054, -3598, 0, 0, 30923, 22, 0, 0),
-("giran06_2221_14", 1, 20554, 84126, 97554, -3672, 0, 0, 0, 22, 0, 0),
-("giran06_2221_14", 1, 20554, 93370, 98115, -3647, 0, 0, 48476, 22, 0, 0),
-("giran06_2221_14", 1, 20554, 91622, 96508, -3655, 0, 0, 36974, 22, 0, 0),
 -- Leto Lizardman
 ("plains_of_lizardmen_old", 1, 20577, 94897, 75596, -3504, 0, 0, 37092, 60, 0, 0),
 ("plains_of_lizardmen_old", 1, 20577, 96849, 79312, -3664, 0, 0, 18021, 60, 0, 0),
@@ -29064,134 +29061,64 @@ INSERT INTO `spawnlist` VALUES
 
 -- [22_21]
 
+-- Blood Queen
+("death_pass", 1, 18001, 81262, 106319, -2888, 0, 0, 48973, 60, 0, 0),
+("death_pass", 1, 18001, 80572, 106240, -2968, 0, 0, 54907, 60, 0, 0),
+("death_pass", 1, 18001, 79663, 105583, -3136, 0, 0, 56776, 60, 0, 0),
 -- Treasure Chest
 ("Breka_Str_Gorg_Garden", 1, 18268, 80217, 123466, -2216, 0, 0, 0, 60, 0, 0),
 ("Breka_Str_Gorg_Garden", 1, 18268, 84292, 130381, -3584, 0, 0, 0, 60, 0, 0),
 -- Treasure Chest
 ("Breka_Str_Gorg_Garden", 1, 18269, 94618, 130968, -3472, 0, 0, 0, 60, 0, 0),
 -- Treasure Chest
-("gludio04_tb1923_16", 1, 18270, 70691, 101784, -3721, 0, 0, 49351, 60, 0, 0),
 ("gludio04_tb1923_16", 1, 18270, 70982, 102920, -3796, 0, 0, 0, 60, 0, 0),
-("gludio04_tb1923_16", 1, 18270, 68878, 104998, -3718, 0, 0, 65258, 60, 0, 0),
-("gludio04_tb1923_16", 1, 18270, 70978, 104276, -3652, 0, 0, 60238, 60, 0, 0);
-INSERT INTO `spawnlist` VALUES
-("gludio04_tb1923_16", 1, 18270, 70216, 107089, -3686, 0, 0, 24807, 60, 0, 0),
-("gludio04_tb1923_16", 1, 18270, 70464, 107568, -3784, 0, 0, 0, 60, 0, 0),
-("gludio04_tb1923_16", 1, 18270, 67956, 107205, -3704, 0, 0, 2801, 60, 0, 0),
-("gludio04_tb1923_16", 1, 18270, 67214, 107099, -3690, 0, 0, 3312, 60, 0, 0),
-("gludio04_tb1923_16", 1, 18270, 66860, 108792, -3686, 0, 0, 51386, 60, 0, 0),
-("gludio04_tb1923_16", 1, 18270, 66217, 109940, -3673, 0, 0, 27875, 60, 0, 0),
-("gludio04_tb1923_16", 1, 18270, 66614, 111038, -3686, 0, 0, 45602, 60, 0, 0),
-("gludio04_tb1923_16", 1, 18270, 67000, 112537, -3699, 0, 0, 63868, 60, 0, 0),
-("gludio04_tb1923_16", 1, 18270, 66623, 113847, -3680, 0, 0, 32192, 60, 0, 0),
 ("gludio04_tb1923_16", 1, 18270, 66672, 114192, -3780, 0, 0, 0, 60, 0, 0),
-("gludio04_tb1923_16", 1, 18270, 68862, 105856, -3723, 0, 0, 38960, 60, 0, 0),
-("gludio04_tb1923_16", 1, 18270, 70860, 113440, -3723, 0, 0, 12465, 60, 0, 0),
-("gludio04_tb1923_16", 1, 18270, 67962, 119333, -3653, 0, 0, 11548, 60, 0, 0),
-("gludio04_tb1923_16", 1, 18270, 66516, 117497, -3712, 0, 0, 8405, 60, 0, 0),
-("gludio04_tb1923_16", 1, 18270, 69270, 119205, -3466, 0, 0, 40132, 60, 0, 0),
-("gludio04_tb1923_16", 1, 18270, 71706, 118502, -3650, 0, 0, 53710, 60, 0, 0),
-("gludio04_tb1923_16", 1, 18270, 66358, 103087, -3530, 0, 0, 5866, 60, 0, 0),
-("gludio04_tb1923_16", 1, 18270, 65593, 104770, -3696, 0, 0, 25666, 60, 0, 0),
--- Treasure Chest
-("giran06_tb2221_13", 1, 18271, 71024, 122948, -3680, 0, 0, 0, 60, 0, 0),
-("giran06_tb2221_13", 1, 18271, 71527, 123126, -3680, 0, 0, 0, 60, 0, 0),
-("giran06_tb2221_13", 1, 18271, 71220, 124815, -3561, 0, 0, 46350, 60, 0, 0),
-("giran06_tb2221_13", 1, 18271, 72474, 125314, -3645, 0, 0, 5792, 60, 0, 0),
-("giran06_tb2221_13", 1, 18271, 71349, 99277, -3661, 0, 0, 37181, 60, 0, 0),
-("giran06_tb2221_13", 1, 18271, 73097, 98529, -3522, 0, 0, 33068, 60, 0, 0),
-("giran06_tb2221_13", 1, 18271, 77790, 101234, -3493, 0, 0, 40960, 60, 0, 0),
-("giran06_tb2221_13", 1, 18271, 78731, 104249, -3444, 0, 0, 12465, 60, 0, 0),
-("giran06_tb2221_13", 1, 18271, 77504, 98664, -3579, 0, 0, 59599, 60, 0, 0),
-("giran06_tb2221_13", 1, 18271, 82407, 101921, -3385, 0, 0, 22905, 60, 0, 0),
-("giran06_tb2221_13", 1, 18271, 80091, 104037, -3391, 0, 0, 21944, 60, 0, 0),
-("giran06_tb2221_13", 1, 18271, 83893, 101361, -3385, 0, 0, 13070, 60, 0, 0),
-("giran06_tb2221_13", 1, 18271, 83467, 98803, -3602, 0, 0, 10315, 60, 0, 0),
-("giran06_tb2221_13", 1, 18271, 89161, 98725, -3489, 0, 0, 1243, 60, 0, 0),
-("giran06_tb2221_13", 1, 18271, 90730, 98660, -3736, 0, 0, 0, 60, 0, 0),
-("giran06_tb2221_13", 1, 18271, 98298, 103602, -3133, 0, 0, 16969, 60, 0, 0),
 -- Treasure Chest
-("dion18_tb2021_12", 1, 18273, 79589, 115727, -3723, 0, 0, 37600, 41, 0, 0),
-("dion18_tb2021_12", 1, 18273, 86613, 114897, -3058, 0, 0, 59916, 41, 0, 0),
-("dion18_tb2021_12", 1, 18273, 82951, 117511, -3046, 0, 0, 27759, 41, 0, 0),
-("dion18_tb2021_12", 1, 18273, 85447, 118771, -3045, 0, 0, 8540, 41, 0, 0),
-("dion18_tb2021_12", 1, 18273, 84099, 120421, -2981, 0, 0, 14398, 41, 0, 0),
-("dion18_tb2021_12", 1, 18273, 84221, 118117, -2993, 0, 0, 59083, 41, 0, 0),
-("dion18_tb2021_12", 1, 18273, 85591, 118988, -3031, 0, 0, 0, 41, 0, 0),
-("dion18_tb2021_12", 1, 18273, 85792, 119379, -3005, 0, 0, 24261, 41, 0, 0),
-("dion18_tb2021_12", 1, 18273, 89304, 119458, -3060, 0, 0, 0, 41, 0, 0),
-("dion18_tb2021_12", 1, 18273, 89084, 119735, -3047, 0, 0, 43970, 41, 0, 0),
-("dion18_tb2021_12", 1, 18273, 86179, 120549, -3020, 0, 0, 33176, 41, 0, 0),
 ("dion18_tb2021_12", 1, 18273, 89278, 118128, -3184, 0, 0, 0, 41, 0, 0),
 -- Treasure Chest
-("giran03_tb2221_19", 1, 18274, 91748, 111362, -3312, 0, 0, 0, 60, 0, 0),
-("giran03_tb2221_19", 1, 18274, 91647, 111896, -3312, 0, 0, 0, 60, 0, 0),
-("giran03_tb2221_19", 1, 18274, 94335, 114783, -3103, 0, 0, 12095, 60, 0, 0),
-("giran03_tb2221_19", 1, 18274, 92151, 111718, -3312, 0, 0, 0, 60, 0, 0),
-("giran03_tb2221_19", 1, 18274, 91748, 111718, -3312, 0, 0, 0, 60, 0, 0),
-("giran03_tb2221_19", 1, 18274, 91093, 111960, -2995, 0, 0, 54804, 60, 0, 0),
-("giran03_tb2221_19", 1, 18274, 81834, 109823, -3132, 0, 0, 29241, 60, 0, 0),
-("giran03_tb2221_19", 1, 18274, 80332, 110402, -3050, 0, 0, 30102, 60, 0, 0),
+("giran03_tb2221_19", 1, 18274, 91748, 111362, -3312, 0, 0, 0, 60, 0, 0);
+INSERT INTO `spawnlist` VALUES
 ("giran03_tb2221_19", 1, 18274, 84754, 109736, -3852, 0, 0, 0, 60, 0, 0),
-("giran03_tb2221_19", 1, 18274, 85788, 110417, -3752, 0, 0, 9956, 60, 0, 0),
-("giran03_tb2221_19", 1, 18274, 84499, 110510, -3768, 0, 0, 51848, 60, 0, 0),
-("giran03_tb2221_19", 1, 18274, 87321, 111002, -3803, 0, 0, 4979, 60, 0, 0),
--- Treasure Chest
-("giran03_tb2221_46", 1, 18275, 85500, 107967, -3262, 0, 0, 0, 60, 0, 0),
-("giran03_tb2221_46", 1, 18275, 86279, 108515, -3176, 0, 0, 0, 60, 0, 0),
-("giran03_tb2221_46", 1, 18275, 85493, 108642, -3200, 0, 0, 0, 60, 0, 0),
-("giran03_tb2221_46", 1, 18275, 86264, 108118, -3181, 0, 0, 0, 60, 0, 0),
-("giran03_tb2221_46", 1, 18275, 87250, 108061, -3116, 0, 0, 0, 60, 0, 0),
-("giran03_tb2221_46", 1, 18275, 88161, 107579, -3097, 0, 0, 0, 60, 0, 0),
-("giran03_tb2221_46", 1, 18275, 88744, 106735, -3192, 0, 0, 0, 60, 0, 0),
-("giran03_tb2221_46", 1, 18275, 89870, 107364, -3115, 0, 0, 0, 60, 0, 0),
-("giran03_tb2221_46", 1, 18275, 89834, 108055, -3029, 0, 0, 11451, 60, 0, 0),
-("giran03_tb2221_46", 1, 18275, 90631, 108246, -3051, 0, 0, 0, 60, 0, 0),
-("giran03_tb2221_46", 1, 18275, 87149, 106925, -3136, 0, 0, 53562, 60, 0, 0),
-("giran03_tb2221_46", 1, 18275, 90899, 107165, -3099, 0, 0, 0, 60, 0, 0),
+-- Cave Maiden
+("death_pass", 1, 20134, 75599, 108193, -2624, 0, 0, 34263, 60, 0, 0),
+("death_pass", 1, 20134, 76944, 108355, -2760, 0, 0, 4791, 60, 0, 0),
+("death_pass", 1, 20134, 77527, 107065, -2960, 0, 0, 8052, 60, 0, 0),
+("death_pass", 1, 20134, 78432, 104475, -3384, 0, 0, 1566, 60, 0, 0),
+("death_pass", 1, 20134, 78680, 104613, -3368, 0, 0, 52913, 60, 0, 0),
+("death_pass", 1, 20134, 78714, 106288, -3024, 0, 0, 31078, 60, 0, 0),
+("death_pass", 1, 20134, 79265, 106250, -3064, 0, 0, 42291, 60, 0, 0),
+("death_pass", 1, 20134, 75537, 108845, -2560, 0, 0, 7250, 60, 0, 0),
+("death_pass", 1, 20134, 79042, 104531, -3392, 0, 0, 32918, 60, 0, 0),
+("death_pass", 1, 20134, 75335, 107025, -2744, 0, 0, 55035, 60, 0, 0),
+-- Drake
+("death_pass", 1, 20137, 66452, 109733, -3680, 0, 0, 19896, 60, 0, 0),
+("death_pass", 1, 20137, 67363, 105015, -3592, 0, 0, 28481, 60, 0, 0),
+("death_pass", 1, 20137, 67217, 105674, -3616, 0, 0, 41139, 60, 0, 0),
+("death_pass", 1, 20137, 67073, 104759, -3592, 0, 0, 54566, 60, 0, 0),
+("death_pass", 1, 20137, 66701, 110941, -3688, 0, 0, 47665, 60, 0, 0),
+("death_pass", 1, 20137, 66466, 110256, -3680, 0, 0, 8437, 60, 0, 0),
 -- Headless Knight
-("giran03_2221_15", 1, 20146, 94299, 117876, -3020, 0, 0, 3557, 36, 0, 0),
-("giran03_2221_15", 1, 20146, 93435, 117376, -3092, 0, 0, 0, 36, 0, 0),
-("giran03_2221_15", 1, 20146, 94596, 112655, -3016, 0, 0, 3717, 36, 0, 0),
-("giran03_2221_15", 1, 20146, 93325, 112667, -3053, 0, 0, 62475, 36, 0, 0),
-("giran03_2221_15", 1, 20146, 94700, 115414, -3105, 0, 0, 7102, 36, 0, 0),
-("giran03_2221_15", 1, 20146, 93333, 114795, -3207, 0, 0, 9268, 36, 0, 0),
-("giran03_2221_15", 1, 20146, 89278, 111952, -3288, 0, 0, 0, 36, 0, 0),
-("giran03_2221_15", 1, 20146, 85897, 112111, -3061, 0, 0, 0, 36, 0, 0),
-("giran03_2221_15", 1, 20146, 92448, 109602, -3780, 0, 0, 40989, 36, 0, 0),
-("giran03_2221_15", 1, 20146, 96550, 110236, -3723, 0, 0, 3566, 36, 0, 0),
-("giran03_2221_15", 1, 20146, 94299, 109273, -3652, 0, 0, 55285, 36, 0, 0),
-("giran03_2221_15", 1, 20146, 95824, 109216, -3820, 0, 0, 0, 36, 0, 0),
-("giran03_2221_15", 1, 20146, 94677, 112495, -3008, 0, 0, 0, 36, 0, 0),
-("giran03_2221_15", 1, 20146, 89597, 112501, -3083, 0, 0, 32216, 36, 0, 0),
-("giran03_2221_15", 1, 20146, 83140, 108928, -3121, 0, 0, 0, 36, 0, 0),
-("giran03_2221_15", 1, 20146, 81442, 109351, -3070, 0, 0, 0, 36, 0, 0),
-("giran03_2221_15", 1, 20146, 86445, 109035, -3159, 0, 0, 0, 36, 0, 0),
-("giran03_2221_15", 1, 20146, 82335, 108992, -3141, 0, 0, 57299, 36, 0, 0),
-("giran03_2221_15", 1, 20146, 84797, 107816, -3224, 0, 0, 51486, 36, 0, 0),
-("giran03_2221_15", 1, 20146, 89974, 106587, -3194, 0, 0, 56439, 36, 0, 0),
-("giran03_2221_15", 1, 20146, 90933, 107315, -3095, 0, 0, 0, 36, 0, 0),
-("giran03_2221_15", 1, 20146, 92054, 107416, -3140, 0, 0, 0, 36, 0, 0),
-("giran03_2221_15", 1, 20146, 92530, 107648, -3037, 0, 0, 63695, 36, 0, 0),
-("giran03_2221_15", 1, 20146, 94347, 107672, -3022, 0, 0, 65438, 36, 0, 0),
+("death_pass", 1, 20146, 75406, 107398, -2712, 0, 0, 9357, 60, 0, 0),
+("death_pass", 1, 20146, 76970, 106796, -2952, 0, 0, 43295, 60, 0, 0),
 -- Wyrm
-("giran06_2221_01", 1, 20176, 66302, 101321, -3607, 0, 0, 48396, 22, 0, 0),
-("giran06_2221_01", 1, 20176, 69755, 103394, -3640, 0, 0, 60689, 22, 0, 0),
-("giran06_2221_01", 1, 20176, 67226, 105613, -3618, 0, 0, 32533, 22, 0, 0),
-("giran06_2221_01", 1, 20176, 70831, 105990, -3723, 0, 0, 19549, 22, 0, 0),
-("giran06_2221_01", 1, 20176, 67638, 108547, -3688, 0, 0, 36564, 22, 0, 0),
-("giran06_2221_01", 1, 20176, 68178, 109431, -3628, 0, 0, 62725, 22, 0, 0),
-("giran06_2221_01", 1, 20176, 66542, 111777, -3690, 0, 0, 62208, 22, 0, 0),
-("giran06_2221_01", 1, 20176, 67693, 113984, -3618, 0, 0, 34897, 22, 0, 0),
-("giran06_2221_01", 1, 20176, 70036, 114812, -3532, 0, 0, 1849, 22, 0, 0),
-("giran06_2221_01", 1, 20176, 65665, 116638, -3695, 0, 0, 16567, 22, 0, 0),
-("giran06_2221_01", 1, 20176, 70855, 112719, -3723, 0, 0, 20708, 22, 0, 0),
-("giran06_2221_01", 1, 20176, 69667, 112090, -3788, 0, 0, 0, 22, 0, 0),
-("giran06_2221_01", 1, 20176, 69236, 117375, -3557, 0, 0, 656, 22, 0, 0),
-("giran06_2221_01", 1, 20176, 67030, 121727, -3739, 0, 0, 22017, 22, 0, 0),
-("giran06_2221_01", 1, 20176, 66558, 118624, -3784, 0, 0, 0, 22, 0, 0),
-("giran06_2221_01", 1, 20176, 69842, 119686, -3469, 0, 0, 54553, 22, 0, 0),
-("giran06_2221_01", 1, 20176, 70880, 122015, -3544, 0, 0, 45200, 22, 0, 0),
+("death_pass", 1, 20176, 66695, 121981, -3736, 0, 0, 799, 60, 0, 0),
+("death_pass", 1, 20176, 67295, 112838, -3688, 0, 0, 24049, 60, 0, 0),
+("death_pass", 1, 20176, 65677, 114327, -3672, 0, 0, 41382, 60, 0, 0),
+("death_pass", 1, 20176, 65816, 102774, -3512, 0, 0, 20616, 60, 0, 0),
+("death_pass", 1, 20176, 66072, 106028, -3624, 0, 0, 8791, 60, 0, 0),
+("death_pass", 1, 20176, 66673, 120600, -3728, 0, 0, 5823, 60, 0, 0),
+("death_pass", 1, 20176, 67252, 117065, -3632, 0, 0, 63683, 60, 0, 0),
+("death_pass", 1, 20176, 67355, 110930, -3704, 0, 0, 36964, 60, 0, 0),
+("death_pass", 1, 20176, 68129, 107490, -3696, 0, 0, 21956, 60, 0, 0),
+("death_pass", 1, 20176, 69050, 105991, -3720, 0, 0, 41172, 60, 0, 0),
+("death_pass", 1, 20176, 67165, 117517, -3656, 0, 0, 40678, 60, 0, 0),
+("death_pass", 1, 20176, 73005, 101287, -3176, 0, 0, 45207, 60, 0, 0),
+("death_pass", 1, 20176, 71061, 124563, -3552, 0, 0, 2849, 60, 0, 0),
+("death_pass", 1, 20176, 70871, 120640, -3576, 0, 0, 11112, 60, 0, 0),
+("death_pass", 1, 20176, 70513, 116404, -3416, 0, 0, 64041, 60, 0, 0),
+("death_pass", 1, 20176, 70103, 104661, -3672, 0, 0, 4033, 60, 0, 0),
+("death_pass", 1, 20176, 70122, 116252, -3384, 0, 0, 7029, 60, 0, 0),
+("death_pass", 1, 20176, 66749, 121078, -3736, 0, 0, 20677, 60, 0, 0),
 -- Amber Basilisk
 ("Breka_Str_Gorg_Garden", 1, 20199, 78248, 129482, -3600, 0, 0, 17950, 35, 0, 0),
 ("Breka_Str_Gorg_Garden", 1, 20199, 77940, 127783, -3456, 0, 0, 8963, 35, 0, 0),
@@ -29210,141 +29137,54 @@ INSERT INTO `spawnlist` VALUES
 ("Breka_Str_Gorg_Garden", 1, 20199, 94859, 130596, -3424, 0, 0, 453, 35, 0, 0),
 ("Breka_Str_Gorg_Garden", 1, 20199, 96554, 129327, -3120, 0, 0, 0, 35, 0, 0),
 -- Shackle
-("oren29_2218_26", 1, 20235, 76495, 117031, -3720, 0, 0, 0, 24, 0, 0),
-("oren29_2218_26", 1, 20235, 79093, 115604, -3701, 0, 0, 0, 24, 0, 0),
-("oren29_2218_26", 1, 20235, 78571, 116364, -3787, 0, 0, 27518, 24, 0, 0),
-("oren29_2218_26", 1, 20235, 74041, 117488, -3769, 0, 0, 33293, 24, 0, 0),
-("oren29_2218_26", 1, 20235, 84518, 117700, -2997, 0, 0, 64586, 24, 0, 0),
-("oren29_2218_26", 1, 20235, 84773, 116572, -3058, 0, 0, 54057, 24, 0, 0),
-("oren29_2218_26", 1, 20235, 84082, 118389, -2996, 0, 0, 63813, 24, 0, 0),
-("oren29_2218_26", 1, 20235, 78763, 116903, -3756, 0, 0, 22755, 24, 0, 0),
-("oren29_2218_26", 1, 20235, 82295, 113965, -3116, 0, 0, 0, 24, 0, 0),
-("oren29_2218_26", 1, 20235, 82281, 113854, -3116, 0, 0, 0, 24, 0, 0),
-("oren29_2218_26", 1, 20235, 79353, 113298, -3277, 0, 0, 0, 24, 0, 0),
-("oren29_2218_26", 1, 20235, 79739, 113678, -3792, 0, 0, 0, 24, 0, 0),
+("death_pass", 1, 20235, 75679, 106209, -2832, 0, 0, 8026, 60, 0, 0),
+("death_pass", 1, 20235, 74645, 105344, -2704, 0, 0, 1088, 60, 0, 0),
 -- Cave Servant
-("giran03_2221_02", 1, 20236, 76558, 117155, -3748, 0, 0, 0, 36, 0, 0),
-("giran03_2221_02", 1, 20236, 79098, 116058, -3737, 0, 0, 0, 36, 0, 0),
-("giran03_2221_02", 1, 20236, 80427, 115690, -3646, 0, 0, 5167, 36, 0, 0),
-("giran03_2221_02", 1, 20236, 79479, 115491, -3723, 0, 0, 1339, 36, 0, 0),
-("giran03_2221_02", 1, 20236, 87139, 121045, -3057, 0, 0, 58565, 36, 0, 0),
-("giran03_2221_02", 1, 20236, 87216, 114635, -3020, 0, 0, 60359, 36, 0, 0),
-("giran03_2221_02", 1, 20236, 83564, 117719, -2992, 0, 0, 30710, 36, 0, 0),
-("giran03_2221_02", 1, 20236, 82114, 116976, -3336, 0, 0, 0, 36, 0, 0),
-("giran03_2221_02", 1, 20236, 81540, 113600, -3111, 0, 0, 0, 36, 0, 0),
-("giran03_2221_02", 1, 20236, 84961, 119777, -2954, 0, 0, 0, 36, 0, 0),
-("giran03_2221_02", 1, 20236, 90409, 117460, -3140, 0, 0, 0, 36, 0, 0),
-("giran03_2221_02", 1, 20236, 91300, 118201, -3058, 0, 0, 57344, 36, 0, 0),
-("giran03_2221_02", 1, 20236, 80285, 114000, -3723, 0, 0, 921, 36, 0, 0),
+("death_pass", 1, 20236, 75760, 105482, -2824, 0, 0, 38411, 60, 0, 0),
+("death_pass", 1, 20236, 75234, 106109, -2752, 0, 0, 1405, 60, 0, 0),
 -- Cave Servant Archer
-("giran03_2221_05", 1, 20237, 85016, 119310, -3001, 0, 0, 5199, 36, 0, 0),
-("giran03_2221_05", 1, 20237, 83364, 118881, -2998, 0, 0, 38804, 36, 0, 0),
-("giran03_2221_05", 1, 20237, 84139, 119627, -2943, 0, 0, 32556, 36, 0, 0),
-("giran03_2221_05", 1, 20237, 87259, 119928, -3058, 0, 0, 36903, 36, 0, 0),
-("giran03_2221_05", 1, 20237, 90483, 119338, -3058, 0, 0, 22608, 36, 0, 0),
-("giran03_2221_05", 1, 20237, 89379, 117950, -3184, 0, 0, 0, 36, 0, 0),
-("giran03_2221_05", 1, 20237, 81427, 111842, -3613, 0, 0, 0, 36, 0, 0),
+("death_pass", 1, 20237, 76825, 105686, -3024, 0, 0, 32506, 60, 0, 0),
+("death_pass", 1, 20237, 77720, 104736, -3288, 0, 0, 48355, 60, 0, 0),
 -- Cave Servant Warrior
-("giran03_2221_05", 1, 20238, 79939, 116309, -3633, 0, 0, 28939, 36, 0, 0),
-("giran03_2221_05", 1, 20238, 85573, 115498, -3058, 0, 0, 58033, 36, 0, 0),
-("giran03_2221_05", 1, 20238, 84492, 120877, -3035, 0, 0, 23922, 36, 0, 0),
-("giran03_2221_05", 1, 20238, 86401, 118802, -3108, 0, 0, 0, 36, 0, 0),
-("giran03_2221_05", 1, 20238, 89781, 117950, -3184, 0, 0, 0, 36, 0, 0),
-("giran03_2221_05", 1, 20238, 89580, 117594, -3184, 0, 0, 0, 36, 0, 0),
-("giran03_2221_05", 1, 20238, 92630, 117732, -3092, 0, 0, 0, 36, 0, 0),
-("giran03_2221_05", 1, 20238, 81824, 112472, -3172, 0, 0, 0, 36, 0, 0),
-("giran03_2221_05", 1, 20238, 82025, 112472, -3172, 0, 0, 0, 36, 0, 0),
-("giran03_2221_05", 1, 20238, 81456, 113852, -3652, 0, 0, 0, 36, 0, 0),
-("giran03_2221_05", 1, 20238, 81795, 114288, -3270, 0, 0, 62119, 36, 0, 0),
-("giran03_2221_05", 1, 20238, 80750, 113214, -3682, 0, 0, 19944, 36, 0, 0),
-("giran03_2221_05", 1, 20238, 81782, 109872, -3848, 0, 0, 0, 36, 0, 0),
-("giran03_2221_05", 1, 20238, 81681, 110050, -3848, 0, 0, 0, 36, 0, 0),
-("giran03_2221_05", 1, 20238, 82071, 110825, -3700, 0, 0, 10771, 36, 0, 0),
-("giran03_2221_05", 1, 20238, 84754, 109736, -3852, 0, 0, 0, 36, 0, 0),
-("giran03_2221_05", 1, 20238, 85404, 110712, -3716, 0, 0, 11844, 36, 0, 0),
-("giran03_2221_05", 1, 20238, 85654, 110082, -3776, 0, 0, 0, 36, 0, 0),
-("giran03_2221_05", 1, 20238, 88565, 110798, -3739, 0, 0, 39920, 36, 0, 0),
-("giran03_2221_05", 1, 20238, 87618, 110322, -3756, 0, 0, 39079, 36, 0, 0),
-("giran03_2221_05", 1, 20238, 81380, 109199, -3062, 0, 0, 0, 36, 0, 0),
-("giran03_2221_05", 1, 20238, 80553, 110006, -3058, 0, 0, 57260, 36, 0, 0),
-("giran03_2221_05", 1, 20238, 83862, 109175, -3105, 0, 0, 701, 36, 0, 0),
-("giran03_2221_05", 1, 20238, 85555, 107545, -3235, 0, 0, 0, 36, 0, 0),
-("giran03_2221_05", 1, 20238, 85669, 108012, -3240, 0, 0, 0, 36, 0, 0),
-("giran03_2221_05", 1, 20238, 86214, 108543, -3193, 0, 0, 0, 36, 0, 0),
+("death_pass", 1, 20238, 77737, 105282, -3216, 0, 0, 20207, 60, 0, 0),
+("death_pass", 1, 20238, 76292, 106346, -2784, 0, 0, 18249, 60, 0, 0),
 -- Cave Servant Captain
-("giran03_2221_08", 1, 20239, 86804, 119158, -3108, 0, 0, 0, 36, 0, 0),
-("giran03_2221_08", 1, 20239, 86703, 118980, -3108, 0, 0, 0, 36, 0, 0),
-("giran03_2221_08", 1, 20239, 89430, 120290, -3034, 0, 0, 24798, 36, 0, 0),
-("giran03_2221_08", 1, 20239, 92464, 119149, -2965, 0, 0, 24568, 36, 0, 0),
-("giran03_2221_08", 1, 20239, 93334, 117554, -3092, 0, 0, 0, 36, 0, 0),
-("giran03_2221_08", 1, 20239, 85734, 111472, -3432, 0, 0, 0, 36, 0, 0),
-("giran03_2221_08", 1, 20239, 84033, 112626, -3053, 0, 0, 27541, 36, 0, 0),
-("giran03_2221_08", 1, 20239, 81370, 111895, -3616, 0, 0, 27060, 36, 0, 0),
-("giran03_2221_08", 1, 20239, 82227, 112472, -3172, 0, 0, 0, 36, 0, 0),
-("giran03_2221_08", 1, 20239, 83476, 110379, -3790, 0, 0, 43790, 36, 0, 0),
-("giran03_2221_08", 1, 20239, 81786, 111140, -3639, 0, 0, 0, 36, 0, 0),
-("giran03_2221_08", 1, 20239, 84201, 110961, -3668, 0, 0, 28930, 36, 0, 0),
-("giran03_2221_08", 1, 20239, 87475, 110801, -3791, 0, 0, 908, 36, 0, 0),
-("giran03_2221_08", 1, 20239, 86826, 110370, -3735, 0, 0, 34677, 36, 0, 0),
-("giran03_2221_08", 1, 20239, 85157, 109380, -3852, 0, 0, 0, 36, 0, 0),
-("giran03_2221_08", 1, 20239, 88640, 111082, -3757, 0, 0, 30717, 36, 0, 0),
-("giran03_2221_08", 1, 20239, 79225, 111377, -2976, 0, 0, 24874, 36, 0, 0),
-("giran03_2221_08", 1, 20239, 81081, 109345, -3059, 0, 0, 0, 36, 0, 0),
-("giran03_2221_08", 1, 20239, 82633, 109525, -3171, 0, 0, 29578, 36, 0, 0),
-("giran03_2221_08", 1, 20239, 85318, 107544, -3220, 0, 0, 0, 36, 0, 0),
-("giran03_2221_08", 1, 20239, 84254, 108394, -3172, 0, 0, 0, 36, 0, 0),
-("giran03_2221_08", 1, 20239, 83600, 108421, -3061, 0, 0, 0, 36, 0, 0),
-("giran03_2221_08", 1, 20239, 87178, 107308, -3125, 0, 0, 0, 36, 0, 0),
-("giran03_2221_08", 1, 20239, 87110, 108599, -3078, 0, 0, 24970, 36, 0, 0),
-("giran03_2221_08", 1, 20239, 88128, 106739, -3171, 0, 0, 27555, 36, 0, 0),
+("death_pass", 1, 20239, 75808, 106163, -2840, 0, 0, 15453, 60, 0, 0),
+("death_pass", 1, 20239, 75680, 105886, -2832, 0, 0, 37034, 60, 0, 0),
 -- Royal Cave Servant
-("giran03_2221_19", 1, 20240, 91889, 112240, -2957, 0, 0, 42849, 36, 0, 0),
-("giran03_2221_19", 1, 20240, 93166, 112161, -2974, 0, 0, 56966, 36, 0, 0),
-("giran03_2221_19", 1, 20240, 92069, 113046, -2957, 0, 0, 39747, 36, 0, 0),
-("giran03_2221_19", 1, 20240, 93955, 113239, -3080, 0, 0, 3925, 36, 0, 0),
-("giran03_2221_19", 1, 20240, 91085, 112685, -2908, 0, 0, 46108, 36, 0, 0),
-("giran03_2221_19", 1, 20240, 89881, 111952, -3288, 0, 0, 0, 36, 0, 0),
-("giran03_2221_19", 1, 20240, 89479, 111952, -3288, 0, 0, 0, 36, 0, 0),
-("giran03_2221_19", 1, 20240, 88354, 112354, -3279, 0, 0, 1653, 36, 0, 0),
-("giran03_2221_19", 1, 20240, 87149, 112006, -3408, 0, 0, 0, 36, 0, 0),
-("giran03_2221_19", 1, 20240, 85633, 111650, -3432, 0, 0, 0, 36, 0, 0),
-("giran03_2221_19", 1, 20240, 82728, 111957, -3524, 0, 0, 5318, 36, 0, 0),
-("giran03_2221_19", 1, 20240, 83495, 111289, -3612, 0, 0, 41149, 36, 0, 0),
-("giran03_2221_19", 1, 20240, 90454, 111143, -3696, 0, 0, 23646, 36, 0, 0),
-("giran03_2221_19", 1, 20240, 93566, 109768, -3667, 0, 0, 27291, 36, 0, 0),
-("giran03_2221_19", 1, 20240, 91596, 110399, -3804, 0, 0, 61119, 36, 0, 0),
-("giran03_2221_19", 1, 20240, 94463, 110060, -3697, 0, 0, 26991, 36, 0, 0),
-("giran03_2221_19", 1, 20240, 95330, 109593, -3645, 0, 0, 5536, 36, 0, 0),
-("giran03_2221_19", 1, 20240, 98129, 109578, -3717, 0, 0, 644, 36, 0, 0),
-("giran03_2221_19", 1, 20240, 96547, 111575, -3494, 0, 0, 59479, 36, 0, 0),
-("giran03_2221_19", 1, 20240, 94242, 112769, -3030, 0, 0, 61275, 36, 0, 0),
-("giran03_2221_19", 1, 20240, 88174, 106143, -3173, 0, 0, 22588, 36, 0, 0),
-("giran03_2221_19", 1, 20240, 89111, 105860, -3184, 0, 0, 50104, 36, 0, 0),
-("giran03_2221_19", 1, 20240, 89505, 108729, -3017, 0, 0, 25601, 36, 0, 0),
-("giran03_2221_19", 1, 20240, 91546, 107372, -3060, 0, 0, 0, 36, 0, 0),
-("giran03_2221_19", 1, 20240, 90688, 106530, -3117, 0, 0, 9633, 36, 0, 0),
-("giran03_2221_19", 1, 20240, 91310, 107812, -3059, 0, 0, 61469, 36, 0, 0),
-("giran03_2221_19", 1, 20240, 97269, 109380, -3660, 0, 0, 37033, 36, 0, 0),
-("giran03_2221_19", 1, 20240, 96096, 108074, -3184, 0, 0, 12133, 36, 0, 0),
+("death_pass", 1, 20240, 75805, 107820, -2696, 0, 0, 2039, 60, 0, 0),
+("death_pass", 1, 20240, 75982, 108549, -2640, 0, 0, 7960, 60, 0, 0),
 -- Hunter Gargoyle
-("oren31_2217_08", 1, 20241, 91779, 114595, -3086, 0, 0, 4684, 41, 0, 0),
-("oren31_2217_08", 1, 20241, 92254, 112139, -2969, 0, 0, 63822, 41, 0, 0),
-("oren31_2217_08", 1, 20241, 89730, 112910, -3035, 0, 0, 4893, 41, 0, 0),
-("oren31_2217_08", 1, 20241, 93932, 114496, -3100, 0, 0, 38356, 41, 0, 0),
-("oren31_2217_08", 1, 20241, 89541, 111155, -3651, 0, 0, 31096, 41, 0, 0),
-("oren31_2217_08", 1, 20241, 91984, 109867, -3778, 0, 0, 23975, 41, 0, 0),
-("oren31_2217_08", 1, 20241, 94240, 109715, -3691, 0, 0, 854, 41, 0, 0),
-("oren31_2217_08", 1, 20241, 95615, 110331, -3697, 0, 0, 25138, 41, 0, 0),
-("oren31_2217_08", 1, 20241, 96264, 109803, -3528, 0, 0, 0, 41, 0, 0),
-("oren31_2217_08", 1, 20241, 95171, 111878, -3140, 0, 0, 0, 41, 0, 0),
-("oren31_2217_08", 1, 20241, 91626, 108410, -3041, 0, 0, 45999, 41, 0, 0),
-("oren31_2217_08", 1, 20241, 88559, 106357, -3184, 0, 0, 0, 41, 0, 0),
-("oren31_2217_08", 1, 20241, 88406, 107960, -3058, 0, 0, 26197, 41, 0, 0),
-("oren31_2217_08", 1, 20241, 89221, 105562, -3192, 0, 0, 0, 41, 0, 0),
-("oren31_2217_08", 1, 20241, 91325, 107123, -3062, 0, 0, 0, 41, 0, 0),
-("oren31_2217_08", 1, 20241, 89192, 107422, -3085, 0, 0, 46689, 41, 0, 0),
-("oren31_2217_08", 1, 20241, 93509, 107601, -3034, 0, 0, 64910, 41, 0, 0),
-("oren31_2217_08", 1, 20241, 95044, 107688, -3052, 0, 0, 1513, 41, 0, 0),
+("death_pass", 1, 20241, 75931, 108121, -2672, 0, 0, 12684, 60, 0, 0),
+("death_pass", 1, 20241, 75810, 107801, -2696, 0, 0, 28366, 60, 0, 0),
+-- Dustwind Gargoyle
+("death_pass", 1, 20242, 78545, 106015, -3088, 0, 0, 39258, 60, 0, 0),
+-- Thunder Wyrm
+("death_pass", 1, 20243, 67094, 105276, -3600, 0, 0, 28363, 60, 0, 0),
+("death_pass", 1, 20243, 66191, 109897, -3672, 0, 0, 22984, 60, 0, 0),
+("death_pass", 1, 20243, 66389, 104552, -3592, 0, 0, 19327, 60, 0, 0),
+("death_pass", 1, 20243, 66470, 110037, -3672, 0, 0, 46992, 60, 0, 0),
+("death_pass", 1, 20243, 66645, 111258, -3688, 0, 0, 32519, 60, 0, 0),
+("death_pass", 1, 20243, 67189, 106124, -3664, 0, 0, 17178, 60, 0, 0),
+-- Maluk Succubus
+("death_pass", 1, 20244, 78809, 101644, -3576, 0, 0, 20589, 60, 0, 0),
+("death_pass", 1, 20244, 77870, 103001, -3464, 0, 0, 55081, 60, 0, 0),
+("death_pass", 1, 20244, 74895, 102003, -2936, 0, 0, 23217, 60, 0, 0),
+-- Maluk Succubus Turen
+("death_pass", 1, 20245, 75949, 101961, -3120, 0, 0, 45988, 60, 0, 0),
+("death_pass", 1, 20245, 75088, 103032, -2848, 0, 0, 175, 60, 0, 0),
+("death_pass", 1, 20245, 76153, 104090, -3016, 0, 0, 6746, 60, 0, 0),
+-- Cave Keeper
+("death_pass", 1, 20246, 77099, 107245, -2920, 0, 0, 53156, 60, 0, 0),
+("death_pass", 1, 20246, 77934, 106459, -3040, 0, 0, 42277, 60, 0, 0),
+("death_pass", 1, 20246, 78057, 104514, -3360, 0, 0, 31982, 60, 0, 0),
+("death_pass", 1, 20246, 78754, 106471, -3000, 0, 0, 27101, 60, 0, 0),
+("death_pass", 1, 20246, 79762, 106095, -3064, 0, 0, 2129, 60, 0, 0),
+("death_pass", 1, 20246, 80321, 105226, -3128, 0, 0, 34557, 60, 0, 0),
+("death_pass", 1, 20246, 80597, 106481, -2952, 0, 0, 63380, 60, 0, 0),
+("death_pass", 1, 20246, 76552, 108285, -2752, 0, 0, 56427, 60, 0, 0),
+("death_pass", 1, 20246, 75240, 108023, -2592, 0, 0, 12685, 60, 0, 0),
+("death_pass", 1, 20246, 76796, 107960, -2792, 0, 0, 15030, 60, 0, 0),
 -- Breka Orc
 ("Breka_Str_Gorg_Garden", 1, 20267, 77624, 128265, -3456, 0, 0, 9243, 33, 0, 0),
 ("Breka_Str_Gorg_Garden", 1, 20267, 78320, 128692, -3456, 0, 0, 8949, 33, 0, 0),
@@ -29416,132 +29256,431 @@ INSERT INTO `spawnlist` VALUES
 ("Breka_Str_Gorg_Garden", 1, 20271, 92444, 124082, -2448, 0, 0, 0, 33, 0, 0),
 ("Breka_Str_Gorg_Garden", 1, 20271, 92444, 125822, -2672, 0, 0, 0, 33, 0, 0),
 -- Guardian Basilisk
-("giran06_2221_01", 1, 20550, 65829, 102637, -3515, 0, 0, 16135, 22, 0, 0),
-("giran06_2221_01", 1, 20550, 68036, 103913, -3171, 0, 0, 17382, 22, 0, 0),
-("giran06_2221_01", 1, 20550, 69341, 104994, -3784, 0, 0, 0, 22, 0, 0),
-("giran06_2221_01", 1, 20550, 71238, 110590, -3723, 0, 0, 14102, 22, 0, 0),
-("giran06_2221_01", 1, 20550, 71483, 107797, -3723, 0, 0, 3306, 22, 0, 0),
-("giran06_2221_01", 1, 20550, 66256, 106618, -3599, 0, 0, 39267, 22, 0, 0),
-("giran06_2221_01", 1, 20550, 65897, 109766, -3666, 0, 0, 31482, 22, 0, 0),
-("giran06_2221_01", 1, 20550, 67296, 109960, -3715, 0, 0, 61005, 22, 0, 0),
-("giran06_2221_01", 1, 20550, 67441, 112939, -3673, 0, 0, 1723, 22, 0, 0),
-("giran06_2221_01", 1, 20550, 67151, 114586, -3669, 0, 0, 63651, 22, 0, 0),
-("giran06_2221_01", 1, 20550, 65708, 114956, -3671, 0, 0, 38726, 22, 0, 0),
-("giran06_2221_01", 1, 20550, 69556, 113838, -3657, 0, 0, 22813, 22, 0, 0),
-("giran06_2221_01", 1, 20550, 69465, 112446, -3788, 0, 0, 0, 22, 0, 0),
-("giran06_2221_01", 1, 20550, 71339, 114268, -3723, 0, 0, 8679, 22, 0, 0),
-("giran06_2221_01", 1, 20550, 68503, 119239, -3558, 0, 0, 57545, 22, 0, 0),
-("giran06_2221_01", 1, 20550, 68379, 116340, -3482, 0, 0, 49711, 22, 0, 0),
-("giran06_2221_01", 1, 20550, 67353, 120752, -3739, 0, 0, 454, 22, 0, 0),
-("giran06_2221_01", 1, 20550, 69483, 120510, -3533, 0, 0, 31848, 22, 0, 0),
-("giran06_2221_01", 1, 20550, 71632, 121616, -3628, 0, 0, 21989, 22, 0, 0),
-("giran06_2221_01", 1, 20550, 70923, 123126, -3680, 0, 0, 0, 22, 0, 0),
+("death_pass", 1, 20550, 69307, 113023, -3720, 0, 0, 53356, 60, 0, 0),
+("death_pass", 1, 20550, 69106, 105602, -3720, 0, 0, 55467, 60, 0, 0),
+("death_pass", 1, 20550, 68983, 120095, -3560, 0, 0, 1808, 60, 0, 0),
+("death_pass", 1, 20550, 68892, 120911, -3632, 0, 0, 8404, 60, 0, 0),
+("death_pass", 1, 20550, 67909, 109816, -3632, 0, 0, 55418, 60, 0, 0),
+("death_pass", 1, 20550, 70767, 120104, -3592, 0, 0, 62880, 60, 0, 0),
+("death_pass", 1, 20550, 70832, 103667, -3632, 0, 0, 51474, 60, 0, 0),
+("death_pass", 1, 20550, 70940, 124013, -3568, 0, 0, 18121, 60, 0, 0),
+("death_pass", 1, 20550, 71397, 114514, -3720, 0, 0, 38503, 60, 0, 0),
+("death_pass", 1, 20550, 71565, 109816, -3704, 0, 0, 47275, 60, 0, 0),
+("death_pass", 1, 20550, 71619, 111393, -3720, 0, 0, 44488, 60, 0, 0),
+("death_pass", 1, 20550, 71678, 121968, -3624, 0, 0, 35062, 60, 0, 0),
+("death_pass", 1, 20550, 67711, 121115, -3736, 0, 0, 10167, 60, 0, 0),
+("death_pass", 1, 20550, 67445, 112818, -3680, 0, 0, 25738, 60, 0, 0),
+("death_pass", 1, 20550, 70433, 114931, -3568, 0, 0, 62158, 60, 0, 0),
+("death_pass", 1, 20550, 65955, 110295, -3664, 0, 0, 51852, 60, 0, 0),
+("death_pass", 1, 20550, 66768, 109917, -3680, 0, 0, 13027, 60, 0, 0),
+("death_pass", 1, 20550, 66875, 103132, -3600, 0, 0, 38903, 60, 0, 0),
+("death_pass", 1, 20550, 67254, 115252, -3632, 0, 0, 16383, 60, 0, 0),
+("death_pass", 1, 20550, 67305, 117913, -3640, 0, 0, 9972, 60, 0, 0),
 -- Road Scavenger
-("giran06_2221_01", 1, 20551, 66879, 103609, -3601, 0, 0, 8493, 22, 0, 0),
-("giran06_2221_01", 1, 20551, 66340, 104388, -3586, 0, 0, 18653, 22, 0, 0),
-("giran06_2221_01", 1, 20551, 70470, 103194, -3635, 0, 0, 7580, 22, 0, 0),
-("giran06_2221_01", 1, 20551, 70545, 105044, -3715, 0, 0, 411, 22, 0, 0),
-("giran06_2221_01", 1, 20551, 69252, 105382, -3723, 0, 0, 56160, 22, 0, 0),
-("giran06_2221_01", 1, 20551, 71080, 108956, -3723, 0, 0, 19180, 22, 0, 0),
-("giran06_2221_01", 1, 20551, 66161, 105533, -3646, 0, 0, 63101, 22, 0, 0),
-("giran06_2221_01", 1, 20551, 65734, 111750, -3651, 0, 0, 34948, 22, 0, 0),
-("giran06_2221_01", 1, 20551, 66873, 114192, -3780, 0, 0, 0, 22, 0, 0),
-("giran06_2221_01", 1, 20551, 70882, 114090, -3724, 0, 0, 7038, 22, 0, 0),
-("giran06_2221_01", 1, 20551, 68854, 114566, -3489, 0, 0, 1609, 22, 0, 0),
-("giran06_2221_01", 1, 20551, 71328, 111392, -3723, 0, 0, 12977, 22, 0, 0),
-("giran06_2221_01", 1, 20551, 70490, 109356, -3714, 0, 0, 46016, 22, 0, 0),
-("giran06_2221_01", 1, 20551, 70299, 112894, -3723, 0, 0, 41022, 22, 0, 0),
-("giran06_2221_01", 1, 20551, 67563, 118268, -3784, 0, 0, 0, 22, 0, 0),
-("giran06_2221_01", 1, 20551, 71304, 119566, -3716, 0, 0, 0, 22, 0, 0),
-("giran06_2221_01", 1, 20551, 71184, 120665, -3620, 0, 0, 57344, 22, 0, 0),
+("death_pass", 1, 20551, 67331, 115629, -3608, 0, 0, 41444, 60, 0, 0),
+("death_pass", 1, 20551, 67417, 115864, -3608, 0, 0, 42389, 60, 0, 0),
+("death_pass", 1, 20551, 68094, 109467, -3624, 0, 0, 43506, 60, 0, 0),
+("death_pass", 1, 20551, 69032, 113628, -3656, 0, 0, 60901, 60, 0, 0),
+("death_pass", 1, 20551, 69162, 105653, -3720, 0, 0, 19615, 60, 0, 0),
+("death_pass", 1, 20551, 69728, 106692, -3656, 0, 0, 3871, 60, 0, 0),
+("death_pass", 1, 20551, 69755, 113498, -3712, 0, 0, 55333, 60, 0, 0),
+("death_pass", 1, 20551, 70295, 112677, -3720, 0, 0, 9488, 60, 0, 0),
+("death_pass", 1, 20551, 70666, 109203, -3720, 0, 0, 14042, 60, 0, 0),
+("death_pass", 1, 20551, 70916, 121229, -3544, 0, 0, 49717, 60, 0, 0),
+("death_pass", 1, 20551, 71171, 104749, -3672, 0, 0, 45112, 60, 0, 0),
+("death_pass", 1, 20551, 71337, 123137, -3592, 0, 0, 20185, 60, 0, 0),
+("death_pass", 1, 20551, 67322, 101357, -3680, 0, 0, 43881, 60, 0, 0),
+("death_pass", 1, 20551, 67151, 113720, -3632, 0, 0, 22480, 60, 0, 0),
+("death_pass", 1, 20551, 66226, 110603, -3672, 0, 0, 27421, 60, 0, 0),
+("death_pass", 1, 20551, 66482, 121382, -3736, 0, 0, 59803, 60, 0, 0),
+("death_pass", 1, 20551, 66652, 114738, -3696, 0, 0, 2333, 60, 0, 0),
+("death_pass", 1, 20551, 66956, 105947, -3640, 0, 0, 436, 60, 0, 0),
+("death_pass", 1, 20551, 67029, 121952, -3736, 0, 0, 36867, 60, 0, 0),
 -- Fettered Soul
-("giran06_2221_14", 1, 20552, 71251, 125624, -3580, 0, 0, 48131, 22, 0, 0),
-("giran06_2221_14", 1, 20552, 72091, 124818, -3848, 0, 0, 0, 22, 0, 0),
-("giran06_2221_14", 1, 20552, 67712, 98526, -3723, 0, 0, 461, 22, 0, 0),
-("giran06_2221_14", 1, 20552, 68696, 99082, -3764, 0, 0, 0, 22, 0, 0),
-("giran06_2221_14", 1, 20552, 72271, 98421, -3649, 0, 0, 34124, 22, 0, 0),
-("giran06_2221_14", 1, 20552, 73652, 98941, -3403, 0, 0, 29272, 22, 0, 0),
-("giran06_2221_14", 1, 20552, 79878, 104851, -3265, 0, 0, 33754, 22, 0, 0),
-("giran06_2221_14", 1, 20552, 74832, 99345, -3310, 0, 0, 37322, 22, 0, 0),
-("giran06_2221_14", 1, 20552, 79206, 101329, -3596, 0, 0, 48705, 22, 0, 0),
-("giran06_2221_14", 1, 20552, 81845, 105482, -2867, 0, 0, 3199, 22, 0, 0),
-("giran06_2221_14", 1, 20552, 76503, 98718, -3475, 0, 0, 15615, 22, 0, 0),
-("giran06_2221_14", 1, 20552, 77374, 99006, -3736, 0, 0, 0, 22, 0, 0),
-("giran06_2221_14", 1, 20552, 75557, 101055, -3185, 0, 0, 12159, 22, 0, 0),
-("giran06_2221_14", 1, 20552, 81712, 98878, -3599, 0, 0, 26920, 22, 0, 0),
-("giran06_2221_14", 1, 20552, 81523, 100442, -3488, 0, 0, 0, 22, 0, 0),
-("giran06_2221_14", 1, 20552, 86420, 99338, -3573, 0, 0, 49554, 22, 0, 0),
-("giran06_2221_14", 1, 20552, 83111, 99554, -3612, 0, 0, 48244, 22, 0, 0),
-("giran06_2221_14", 1, 20552, 83882, 100626, -3385, 0, 0, 43124, 22, 0, 0),
-("giran06_2221_14", 1, 20552, 90328, 98660, -3736, 0, 0, 0, 22, 0, 0),
-("giran06_2221_14", 1, 20552, 95099, 100377, -3509, 0, 0, 16732, 22, 0, 0),
-("giran06_2221_14", 1, 20552, 93555, 100811, -3444, 0, 0, 48826, 22, 0, 0),
-("giran06_2221_14", 1, 20552, 90832, 99550, -3736, 0, 0, 0, 22, 0, 0),
-("giran06_2221_14", 1, 20552, 98242, 100642, -3559, 0, 0, 50682, 22, 0, 0),
+("death_pass", 1, 20552, 84306, 99475, -3608, 0, 0, 36281, 60, 0, 0),
+("death_pass", 1, 20552, 84248, 100945, -3384, 0, 0, 53309, 60, 0, 0),
+("death_pass", 1, 20552, 81845, 102590, -3384, 0, 0, 2309, 60, 0, 0),
+("death_pass", 1, 20552, 78298, 99129, -3576, 0, 0, 54340, 60, 0, 0),
+("death_pass", 1, 20552, 78039, 103427, -3440, 0, 0, 21338, 60, 0, 0),
+("death_pass", 1, 20552, 77084, 99830, -3448, 0, 0, 1852, 60, 0, 0),
+("death_pass", 1, 20552, 76268, 100487, -3280, 0, 0, 32246, 60, 0, 0),
+("death_pass", 1, 20552, 76541, 99640, -3368, 0, 0, 23849, 60, 0, 0),
+("death_pass", 1, 20552, 76016, 99428, -3344, 0, 0, 6281, 60, 0, 0),
+("death_pass", 1, 20552, 75740, 102096, -3072, 0, 0, 37605, 60, 0, 0),
+("death_pass", 1, 20552, 75550, 102273, -3008, 0, 0, 24877, 60, 0, 0),
+("death_pass", 1, 20552, 84667, 99470, -3600, 0, 0, 22018, 60, 0, 0),
+("death_pass", 1, 20552, 84730, 100342, -3384, 0, 0, 10250, 60, 0, 0),
+("death_pass", 1, 20552, 95124, 101031, -3392, 0, 0, 20745, 60, 0, 0),
+("death_pass", 1, 20552, 95488, 100446, -3512, 0, 0, 9342, 60, 0, 0),
+("death_pass", 1, 20552, 92530, 102247, -3224, 0, 0, 18218, 60, 0, 0),
+("death_pass", 1, 20552, 92392, 101618, -3344, 0, 0, 43399, 60, 0, 0),
+("death_pass", 1, 20552, 92156, 102525, -3160, 0, 0, 56601, 60, 0, 0),
+("death_pass", 1, 20552, 92142, 102833, -3072, 0, 0, 26055, 60, 0, 0),
+("death_pass", 1, 20552, 87957, 99572, -3504, 0, 0, 64818, 60, 0, 0),
+("death_pass", 1, 20552, 93558, 101705, -3312, 0, 0, 18017, 60, 0, 0),
+("death_pass", 1, 20552, 75278, 100277, -3248, 0, 0, 26996, 60, 0, 0),
+("death_pass", 1, 20552, 72134, 100626, -3680, 0, 0, 44930, 60, 0, 0),
+("death_pass", 1, 20552, 69273, 101572, -3720, 0, 0, 7430, 60, 0, 0),
+("death_pass", 1, 20552, 69322, 101284, -3720, 0, 0, 36260, 60, 0, 0),
+("death_pass", 1, 20552, 69764, 99865, -3640, 0, 0, 24575, 60, 0, 0),
+("death_pass", 1, 20552, 70140, 126278, -3696, 0, 0, 6874, 60, 0, 0),
+("death_pass", 1, 20552, 71934, 125551, -3640, 0, 0, 20649, 60, 0, 0),
+("death_pass", 1, 20552, 71845, 126310, -3640, 0, 0, 51795, 60, 0, 0),
+("death_pass", 1, 20552, 71724, 125914, -3632, 0, 0, 14513, 60, 0, 0),
+("death_pass", 1, 20552, 71592, 125914, -3616, 0, 0, 54439, 60, 0, 0),
+("death_pass", 1, 20552, 70800, 127370, -3656, 0, 0, 43360, 60, 0, 0),
+("death_pass", 1, 20552, 70666, 125526, -3584, 0, 0, 39180, 60, 0, 0),
+("death_pass", 1, 20552, 70255, 99926, -3640, 0, 0, 56618, 60, 0, 0),
 -- Windsus
-("giran06_2221_14", 1, 20553, 71364, 127229, -3652, 0, 0, 15774, 22, 0, 0),
-("giran06_2221_14", 1, 20553, 69775, 99796, -3641, 0, 0, 35936, 22, 0, 0),
-("giran06_2221_14", 1, 20553, 70758, 98400, -3719, 0, 0, 56672, 22, 0, 0),
-("giran06_2221_14", 1, 20553, 76239, 108805, -2662, 0, 0, 24560, 22, 0, 0),
-("giran06_2221_14", 1, 20553, 79188, 105712, -3123, 0, 0, 6173, 22, 0, 0),
-("giran06_2221_14", 1, 20553, 77852, 105627, -3176, 0, 0, 46500, 22, 0, 0),
-("giran06_2221_14", 1, 20553, 76567, 110137, -2510, 0, 0, 15201, 22, 0, 0),
-("giran06_2221_14", 1, 20553, 76989, 100395, -3409, 0, 0, 38696, 22, 0, 0),
-("giran06_2221_14", 1, 20553, 78941, 100448, -3569, 0, 0, 4402, 22, 0, 0),
-("giran06_2221_14", 1, 20553, 79824, 102667, -3553, 0, 0, 31567, 22, 0, 0),
-("giran06_2221_14", 1, 20553, 81318, 102725, -3385, 0, 0, 62804, 22, 0, 0),
-("giran06_2221_14", 1, 20553, 84813, 98521, -3612, 0, 0, 40398, 22, 0, 0),
-("giran06_2221_14", 1, 20553, 86905, 101093, -3406, 0, 0, 17798, 22, 0, 0),
-("giran06_2221_14", 1, 20553, 83406, 101428, -3385, 0, 0, 18571, 22, 0, 0),
-("giran06_2221_14", 1, 20553, 93563, 99650, -3547, 0, 0, 49662, 22, 0, 0),
-("giran06_2221_14", 1, 20553, 90931, 100376, -3450, 0, 0, 29580, 22, 0, 0),
-("giran06_2221_14", 1, 20553, 87409, 98501, -3587, 0, 0, 57513, 22, 0, 0),
-("giran06_2221_14", 1, 20553, 88453, 100853, -3359, 0, 0, 19260, 22, 0, 0),
-("giran06_2221_14", 1, 20553, 94773, 104026, -2888, 0, 0, 15294, 22, 0, 0),
-("giran06_2221_14", 1, 20553, 98021, 102026, -3427, 0, 0, 27312, 22, 0, 0),
-("giran06_2221_14", 1, 20553, 96564, 103862, -2989, 0, 0, 32142, 22, 0, 0),
-("giran06_2221_14", 1, 20553, 96247, 101828, -3310, 0, 0, 44921, 22, 0, 0),
+("death_pass", 1, 20553, 85634, 99343, -3584, 0, 0, 36641, 60, 0, 0),
+("death_pass", 1, 20553, 84918, 99452, -3592, 0, 0, 20997, 60, 0, 0),
+("death_pass", 1, 20553, 83212, 102210, -3384, 0, 0, 48409, 60, 0, 0),
+("death_pass", 1, 20553, 81803, 101898, -3384, 0, 0, 21219, 60, 0, 0),
+("death_pass", 1, 20553, 80418, 98822, -3592, 0, 0, 25698, 60, 0, 0),
+("death_pass", 1, 20553, 80309, 100313, -3600, 0, 0, 9357, 60, 0, 0),
+("death_pass", 1, 20553, 79122, 98913, -3600, 0, 0, 7074, 60, 0, 0),
+("death_pass", 1, 20553, 78549, 100223, -3544, 0, 0, 21130, 60, 0, 0),
+("death_pass", 1, 20553, 76021, 103508, -3024, 0, 0, 36538, 60, 0, 0),
+("death_pass", 1, 20553, 85901, 99597, -3576, 0, 0, 59900, 60, 0, 0),
+("death_pass", 1, 20553, 86008, 98961, -3584, 0, 0, 49302, 60, 0, 0),
+("death_pass", 1, 20553, 92748, 99646, -3536, 0, 0, 25751, 60, 0, 0),
+("death_pass", 1, 20553, 96590, 100863, -3552, 0, 0, 57029, 60, 0, 0),
+("death_pass", 1, 20553, 96317, 102794, -3120, 0, 0, 15634, 60, 0, 0),
+("death_pass", 1, 20553, 95987, 103359, -2976, 0, 0, 59044, 60, 0, 0),
+("death_pass", 1, 20553, 95741, 100612, -3480, 0, 0, 18823, 60, 0, 0),
+("death_pass", 1, 20553, 93918, 103095, -2968, 0, 0, 52791, 60, 0, 0),
+("death_pass", 1, 20553, 92965, 102730, -3104, 0, 0, 453, 60, 0, 0),
+("death_pass", 1, 20553, 74945, 103459, -2720, 0, 0, 58734, 60, 0, 0),
+("death_pass", 1, 20553, 74584, 102400, -2776, 0, 0, 49153, 60, 0, 0),
+("death_pass", 1, 20553, 73672, 98871, -3400, 0, 0, 62275, 60, 0, 0),
+("death_pass", 1, 20553, 68420, 99280, -3720, 0, 0, 5544, 60, 0, 0),
+("death_pass", 1, 20553, 69428, 101429, -3720, 0, 0, 9347, 60, 0, 0),
+("death_pass", 1, 20553, 70048, 101084, -3712, 0, 0, 26055, 60, 0, 0),
+("death_pass", 1, 20553, 70800, 127006, -3656, 0, 0, 31079, 60, 0, 0),
+("death_pass", 1, 20553, 74058, 99370, -3304, 0, 0, 3024, 60, 0, 0),
+("death_pass", 1, 20553, 72516, 125368, -3648, 0, 0, 8780, 60, 0, 0),
+("death_pass", 1, 20553, 71617, 99454, -3656, 0, 0, 56641, 60, 0, 0),
+("death_pass", 1, 20553, 71617, 125667, -3616, 0, 0, 14579, 60, 0, 0),
+("death_pass", 1, 20553, 70864, 100824, -3688, 0, 0, 28895, 60, 0, 0),
 -- Grandis
-("giran06_2221_14", 1, 20554, 71789, 124640, -3848, 0, 0, 0, 22, 0, 0),
-("giran06_2221_14", 1, 20554, 71890, 125174, -3848, 0, 0, 0, 22, 0, 0),
-("giran06_2221_14", 1, 20554, 69385, 100962, -3723, 0, 0, 12416, 22, 0, 0),
-("giran06_2221_14", 1, 20554, 65577, 98665, -3572, 0, 0, 27668, 22, 0, 0),
-("giran06_2221_14", 1, 20554, 71023, 100330, -3666, 0, 0, 40238, 22, 0, 0),
-("giran06_2221_14", 1, 20554, 72540, 99664, -3604, 0, 0, 13399, 22, 0, 0),
-("giran06_2221_14", 1, 20554, 76501, 102879, -3162, 0, 0, 12034, 22, 0, 0),
-("giran06_2221_14", 1, 20554, 76780, 101186, -3640, 0, 0, 0, 22, 0, 0),
-("giran06_2221_14", 1, 20554, 77224, 106344, -3048, 0, 0, 31383, 22, 0, 0),
-("giran06_2221_14", 1, 20554, 77123, 107654, -2867, 0, 0, 51373, 22, 0, 0),
-("giran06_2221_14", 1, 20554, 76369, 99744, -3361, 0, 0, 47734, 22, 0, 0),
-("giran06_2221_14", 1, 20554, 80234, 101051, -3609, 0, 0, 48585, 22, 0, 0),
-("giran06_2221_14", 1, 20554, 79857, 99706, -3603, 0, 0, 46539, 22, 0, 0),
-("giran06_2221_14", 1, 20554, 85047, 99839, -3582, 0, 0, 44110, 22, 0, 0),
-("giran06_2221_14", 1, 20554, 85710, 102238, -3218, 0, 0, 13299, 22, 0, 0),
-("giran06_2221_14", 1, 20554, 86532, 100613, -3396, 0, 0, 52744, 22, 0, 0),
-("giran06_2221_14", 1, 20554, 93391, 102131, -3236, 0, 0, 51773, 22, 0, 0),
-("giran06_2221_14", 1, 20554, 89729, 98997, -3457, 0, 0, 4040, 22, 0, 0),
-("giran06_2221_14", 1, 20554, 95005, 98351, -3647, 0, 0, 312, 22, 0, 0),
-("giran06_2221_14", 1, 20554, 94809, 102020, -3198, 0, 0, 26527, 22, 0, 0),
-("giran06_2221_14", 1, 20554, 92534, 100046, -3516, 0, 0, 63095, 22, 0, 0),
-("giran06_2221_14", 1, 20554, 92942, 103524, -2897, 0, 0, 34468, 22, 0, 0),
-("giran06_2221_14", 1, 20554, 96953, 100084, -3643, 0, 0, 52319, 22, 0, 0),
--- Dragon Bearer Chief
-("giran03_2221_p05", 1, 20758, 85587, 120404, -2993, 0, 0, 7922, 60, 0, 0),
-("giran03_2221_p05", 1, 20758, 81160, 116526, -3368, 0, 0, 39095, 60, 0, 0),
-("giran03_2221_p05", 1, 20758, 84890, 118513, -3039, 0, 0, 0, 60, 0, 0),
-("giran03_2221_p05", 1, 20758, 86602, 118802, -3108, 0, 0, 0, 60, 0, 0),
-("giran03_2221_p05", 1, 20758, 90705, 117760, -3104, 0, 0, 0, 60, 0, 0),
-("giran03_2221_p05", 1, 20758, 87968, 120342, -3058, 0, 0, 27013, 60, 0, 0),
-("giran03_2221_p05", 1, 20758, 92574, 112616, -2958, 0, 0, 6671, 60, 0, 0),
-("giran03_2221_p05", 1, 20758, 92577, 115020, -3185, 0, 0, 38679, 60, 0, 0),
-("giran03_2221_p05", 1, 20758, 85592, 108046, -3247, 0, 0, 0, 60, 0, 0),
-("giran03_2221_p05", 1, 20758, 85739, 108710, -3200, 0, 0, 0, 60, 0, 0),
-("giran03_2221_p05", 1, 20758, 88629, 106802, -3167, 0, 0, 0, 60, 0, 0),
-("giran03_2221_p05", 1, 20758, 89561, 106996, -3155, 0, 0, 0, 60, 0, 0),
+("death_pass", 1, 20554, 83551, 100606, -3384, 0, 0, 18697, 60, 0, 0),
+("death_pass", 1, 20554, 81313, 102332, -3384, 0, 0, 52606, 60, 0, 0),
+("death_pass", 1, 20554, 78892, 101004, -3576, 0, 0, 52681, 60, 0, 0),
+("death_pass", 1, 20554, 78794, 100822, -3552, 0, 0, 44779, 60, 0, 0),
+("death_pass", 1, 20554, 86687, 101611, -3328, 0, 0, 38277, 60, 0, 0),
+("death_pass", 1, 20554, 78677, 101421, -3560, 0, 0, 39664, 60, 0, 0),
+("death_pass", 1, 20554, 77851, 100307, -3504, 0, 0, 56359, 60, 0, 0),
+("death_pass", 1, 20554, 77484, 100194, -3480, 0, 0, 31451, 60, 0, 0),
+("death_pass", 1, 20554, 76972, 101694, -3352, 0, 0, 4099, 60, 0, 0),
+("death_pass", 1, 20554, 76783, 103022, -3224, 0, 0, 20549, 60, 0, 0),
+("death_pass", 1, 20554, 75980, 98968, -3368, 0, 0, 54997, 60, 0, 0),
+("death_pass", 1, 20554, 87544, 100578, -3472, 0, 0, 10860, 60, 0, 0),
+("death_pass", 1, 20554, 87586, 99373, -3544, 0, 0, 29777, 60, 0, 0),
+("death_pass", 1, 20554, 94598, 100332, -3496, 0, 0, 50447, 60, 0, 0),
+("death_pass", 1, 20554, 96122, 100002, -3600, 0, 0, 25451, 60, 0, 0),
+("death_pass", 1, 20554, 96438, 103818, -2968, 0, 0, 56073, 60, 0, 0),
+("death_pass", 1, 20554, 96598, 101357, -3464, 0, 0, 61561, 60, 0, 0),
+("death_pass", 1, 20554, 97196, 100309, -3592, 0, 0, 4070, 60, 0, 0),
+("death_pass", 1, 20554, 94377, 102912, -2992, 0, 0, 17884, 60, 0, 0),
+("death_pass", 1, 20554, 91731, 98931, -3536, 0, 0, 60597, 60, 0, 0),
+("death_pass", 1, 20554, 91420, 99977, -3488, 0, 0, 56082, 60, 0, 0),
+("death_pass", 1, 20554, 88748, 100826, -3344, 0, 0, 21011, 60, 0, 0),
+("death_pass", 1, 20554, 75917, 98748, -3400, 0, 0, 14018, 60, 0, 0),
+("death_pass", 1, 20554, 72082, 99916, -3656, 0, 0, 23797, 60, 0, 0),
+("death_pass", 1, 20554, 71724, 127006, -3664, 0, 0, 46411, 60, 0, 0),
+("death_pass", 1, 20554, 68988, 100284, -3720, 0, 0, 5636, 60, 0, 0),
+("death_pass", 1, 20554, 69092, 99688, -3672, 0, 0, 102, 60, 0, 0),
+("death_pass", 1, 20554, 69322, 99460, -3656, 0, 0, 60089, 60, 0, 0),
+("death_pass", 1, 20554, 69364, 101042, -3720, 0, 0, 35870, 60, 0, 0),
+("death_pass", 1, 20554, 69549, 101094, -3720, 0, 0, 34102, 60, 0, 0),
+("death_pass", 1, 20554, 71460, 125914, -3608, 0, 0, 2979, 60, 0, 0),
+("death_pass", 1, 20554, 71460, 124822, -3592, 0, 0, 58858, 60, 0, 0),
+("death_pass", 1, 20554, 71064, 127188, -3640, 0, 0, 65013, 60, 0, 0),
+("death_pass", 1, 20554, 70932, 126642, -3640, 0, 0, 29408, 60, 0, 0),
+("death_pass", 1, 20554, 70622, 126495, -3648, 0, 0, 29960, 60, 0, 0),
+("death_pass", 1, 20554, 70438, 101255, -3720, 0, 0, 62154, 60, 0, 0),
+("death_pass", 1, 20554, 70018, 101990, -3712, 0, 0, 4096, 60, 0, 0),
+-- Maluk Knight
+("death_pass", 1, 20625, 76887, 110529, -2368, 0, 0, 88, 60, 0, 0),
+("death_pass", 1, 20625, 76008, 110004, -2560, 0, 0, 50278, 60, 0, 0),
+-- Maluk Berserker
+("death_pass", 1, 20626, 75736, 111152, -2488, 0, 0, 14104, 60, 0, 0),
+("death_pass", 1, 20626, 75119, 111033, -2400, 0, 0, 12505, 60, 0, 0),
+-- Maluk Lord
+("death_pass", 1, 20627, 75156, 111390, -2416, 0, 0, 20634, 60, 0, 0),
+("death_pass", 1, 20627, 75101, 110724, -2416, 0, 0, 33892, 60, 0, 0),
+-- Limal Karinness
+("death_pass", 1, 20628, 75444, 110961, -2472, 0, 0, 44491, 60, 0, 0),
+("death_pass", 1, 20628, 77472, 109284, -2568, 0, 0, 32641, 60, 0, 0),
+-- Karik
+("death_pass", 1, 20629, 75767, 109281, -2576, 0, 0, 47731, 60, 0, 0),
+("death_pass", 1, 20629, 74806, 111232, -2320, 0, 0, 21559, 60, 0, 0),
+-- Pytan
+("death_pass", 1, 20761, 77749, 110222, -2248, 0, 0, 11778, 60, 0, 0),
+("death_pass", 1, 20761, 74638, 111152, -2288, 0, 0, 47995, 60, 0, 0),
+-- Bloody Lady
+("death_pass", 1, 21084, 78813, 105602, -3128, 0, 0, 27103, 60, 0, 0),
+-- Bloody Guardian
+("death_pass", 1, 21090, 75614, 111489, -2448, 0, 0, 22834, 60, 0, 0),
+("death_pass", 1, 21090, 76182, 109537, -2608, 0, 0, 5070, 60, 0, 0),
+("death_pass", 1, 21090, 76587, 109820, -2560, 0, 0, 51607, 60, 0, 0),
+("death_pass", 1, 21090, 76651, 108827, -2672, 0, 0, 8435, 60, 0, 0),
+-- Bloody Keeper
+("death_pass", 1, 21091, 77566, 110532, -2240, 0, 0, 5248, 60, 0, 0),
+("death_pass", 1, 21091, 77017, 110532, -2344, 0, 0, 42954, 60, 0, 0),
+("death_pass", 1, 21091, 76651, 110067, -2512, 0, 0, 11757, 60, 0, 0),
+("death_pass", 1, 21091, 76468, 109757, -2576, 0, 0, 18139, 60, 0, 0),
+("death_pass", 1, 21091, 75919, 110377, -2528, 0, 0, 16526, 60, 0, 0),
+("death_pass", 1, 21091, 75187, 110067, -2464, 0, 0, 55934, 60, 0, 0),
+("death_pass", 1, 21091, 74638, 111152, -2288, 0, 0, 23837, 60, 0, 0),
+-- Bloody Mystic
+("death_pass", 1, 21092, 77200, 111152, -2192, 0, 0, 41328, 60, 0, 0),
+("death_pass", 1, 21092, 77200, 109757, -2504, 0, 0, 36865, 60, 0, 0),
+("death_pass", 1, 21092, 77017, 110842, -2304, 0, 0, 57219, 60, 0, 0),
+("death_pass", 1, 21092, 77017, 110687, -2320, 0, 0, 33974, 60, 0, 0),
+("death_pass", 1, 21092, 76834, 111462, -2264, 0, 0, 26518, 60, 0, 0),
+("death_pass", 1, 21092, 76834, 110997, -2304, 0, 0, 48346, 60, 0, 0),
+("death_pass", 1, 21092, 76468, 110687, -2440, 0, 0, 23103, 60, 0, 0),
+("death_pass", 1, 21092, 76468, 110377, -2480, 0, 0, 8085, 60, 0, 0),
 -- Treasure Chest
 ("Breka_Str_Gorg_Garden", 1, 21804, 77420, 130408, -3624, 0, 0, 0, 60, 0, 0),
 ("Breka_Str_Gorg_Garden", 1, 21804, 80721, 126396, -2776, 0, 0, 0, 60, 0, 0),
 ("Breka_Str_Gorg_Garden", 1, 21804, 79058, 122444, -2232, 0, 0, 0, 60, 0, 0),
+-- Drakos
+("dragon_valley", 1, 22815, 78894, 117339, -3720, 0, 0, 40702, 60, 0, 0),
+("dragon_valley", 1, 22815, 79411, 116082, -3720, 0, 0, 44481, 60, 0, 0),
+("dragon_valley", 1, 22815, 79989, 114142, -3720, 0, 0, 63585, 60, 0, 0),
+("dragon_valley", 1, 22815, 80148, 116297, -3600, 0, 0, 25773, 60, 0, 0),
+("dragon_valley", 1, 22815, 80284, 115613, -3648, 0, 0, 15063, 60, 0, 0),
+("dragon_valley", 1, 22815, 80848, 109550, -3056, 0, 0, 43753, 60, 0, 0),
+("dragon_valley", 1, 22815, 81010, 110028, -3056, 0, 0, 51402, 60, 0, 0),
+("dragon_valley", 1, 22815, 81123, 109671, -3056, 0, 0, 27615, 60, 0, 0),
+("dragon_valley", 1, 22815, 81153, 109547, -3056, 0, 0, 42570, 60, 0, 0),
+("dragon_valley", 1, 22815, 81432, 114430, -3424, 0, 0, 28587, 60, 0, 0),
+("dragon_valley", 1, 22815, 81482, 109228, -3064, 0, 0, 55519, 60, 0, 0),
+("dragon_valley", 1, 22815, 81569, 114406, -3360, 0, 0, 47010, 60, 0, 0),
+("dragon_valley", 1, 22815, 81725, 114323, -3296, 0, 0, 59141, 60, 0, 0),
+("dragon_valley", 1, 22815, 81879, 109164, -3112, 0, 0, 61085, 60, 0, 0),
+("dragon_valley", 1, 22815, 81961, 109584, -3128, 0, 0, 52130, 60, 0, 0),
+("dragon_valley", 1, 22815, 81978, 114015, -3200, 0, 0, 59676, 60, 0, 0),
+("dragon_valley", 1, 22815, 82182, 109291, -3144, 0, 0, 49126, 60, 0, 0),
+("dragon_valley", 1, 22815, 82256, 117662, -3064, 0, 0, 26837, 60, 0, 0),
+("dragon_valley", 1, 22815, 82368, 109074, -3144, 0, 0, 38662, 60, 0, 0),
+("dragon_valley", 1, 22815, 82798, 109087, -3152, 0, 0, 30474, 60, 0, 0),
+("dragon_valley", 1, 22815, 82880, 109426, -3168, 0, 0, 17118, 60, 0, 0),
+("dragon_valley", 1, 22815, 82881, 109170, -3152, 0, 0, 40348, 60, 0, 0),
+("dragon_valley", 1, 22815, 82980, 108537, -3056, 0, 0, 55376, 60, 0, 0),
+("dragon_valley", 1, 22815, 83103, 109147, -3128, 0, 0, 16675, 60, 0, 0),
+("dragon_valley", 1, 22815, 83120, 112808, -3040, 0, 0, 44767, 60, 0, 0),
+("dragon_valley", 1, 22815, 83120, 113081, -3056, 0, 0, 9393, 60, 0, 0),
+("dragon_valley", 1, 22815, 83342, 113115, -3056, 0, 0, 24629, 60, 0, 0),
+("dragon_valley", 1, 22815, 83419, 109055, -3104, 0, 0, 31900, 60, 0, 0),
+("dragon_valley", 1, 22815, 83477, 119323, -2960, 0, 0, 64239, 60, 0, 0),
+("dragon_valley", 1, 22815, 83589, 109504, -3208, 0, 0, 16712, 60, 0, 0),
+("dragon_valley", 1, 22815, 83619, 108809, -3088, 0, 0, 41823, 60, 0, 0),
+("dragon_valley", 1, 22815, 83630, 117384, -2992, 0, 0, 3092, 60, 0, 0),
+("dragon_valley", 1, 22815, 83670, 112792, -3048, 0, 0, 27290, 60, 0, 0),
+("dragon_valley", 1, 22815, 83733, 108837, -3088, 0, 0, 37605, 60, 0, 0),
+("dragon_valley", 1, 22815, 83740, 112080, -3080, 0, 0, 45924, 60, 0, 0),
+("dragon_valley", 1, 22815, 83864, 112262, -3048, 0, 0, 14368, 60, 0, 0),
+("dragon_valley", 1, 22815, 83864, 112990, -3056, 0, 0, 21755, 60, 0, 0),
+("dragon_valley", 1, 22815, 83884, 119257, -2968, 0, 0, 33337, 60, 0, 0),
+("dragon_valley", 1, 22815, 83922, 117337, -2992, 0, 0, 58966, 60, 0, 0),
+("dragon_valley", 1, 22815, 84123, 118853, -3024, 0, 0, 19895, 60, 0, 0),
+("dragon_valley", 1, 22815, 84354, 117934, -2992, 0, 0, 9880, 60, 0, 0),
+("dragon_valley", 1, 22815, 84513, 112005, -3032, 0, 0, 48178, 60, 0, 0),
+("dragon_valley", 1, 22815, 84602, 117921, -3000, 0, 0, 16231, 60, 0, 0),
+("dragon_valley", 1, 22815, 84608, 112626, -3056, 0, 0, 9119, 60, 0, 0),
+("dragon_valley", 1, 22815, 84692, 118384, -3008, 0, 0, 20225, 60, 0, 0),
+("dragon_valley", 1, 22815, 84738, 111885, -3064, 0, 0, 31792, 60, 0, 0),
+("dragon_valley", 1, 22815, 84859, 117207, -3008, 0, 0, 61346, 60, 0, 0),
+("dragon_valley", 1, 22815, 84859, 117661, -3008, 0, 0, 9729, 60, 0, 0),
+("dragon_valley", 1, 22815, 85166, 111932, -3080, 0, 0, 65520, 60, 0, 0),
+("dragon_valley", 1, 22815, 85212, 112312, -3056, 0, 0, 48446, 60, 0, 0),
+("dragon_valley", 1, 22815, 85476, 111697, -3104, 0, 0, 48048, 60, 0, 0),
+("dragon_valley", 1, 22815, 85604, 119802, -2976, 0, 0, 10347, 60, 0, 0),
+("dragon_valley", 1, 22815, 85743, 119909, -2976, 0, 0, 29120, 60, 0, 0),
+("dragon_valley", 1, 22815, 85793, 111884, -3064, 0, 0, 58575, 60, 0, 0),
+("dragon_valley", 1, 22815, 86196, 120204, -2992, 0, 0, 35700, 60, 0, 0),
+("dragon_valley", 1, 22815, 86250, 111562, -3176, 0, 0, 19208, 60, 0, 0),
+("dragon_valley", 1, 22815, 86637, 112372, -3240, 0, 0, 12968, 60, 0, 0),
+("dragon_valley", 1, 22815, 86766, 111742, -3296, 0, 0, 23775, 60, 0, 0),
+("dragon_valley", 1, 22815, 86766, 111787, -3264, 0, 0, 33013, 60, 0, 0),
+("dragon_valley", 1, 22815, 86895, 111832, -3280, 0, 0, 55594, 60, 0, 0),
+("dragon_valley", 1, 22815, 87026, 112180, -3264, 0, 0, 15714, 60, 0, 0),
+("dragon_valley", 1, 22815, 87335, 112180, -3280, 0, 0, 47737, 60, 0, 0),
+("dragon_valley", 1, 22815, 87768, 112120, -3288, 0, 0, 35560, 60, 0, 0),
+("dragon_valley", 1, 22815, 87868, 119696, -3056, 0, 0, 55247, 60, 0, 0),
+("dragon_valley", 1, 22815, 88056, 112488, -3296, 0, 0, 31809, 60, 0, 0),
+("dragon_valley", 1, 22815, 88262, 112224, -3272, 0, 0, 29744, 60, 0, 0),
+("dragon_valley", 1, 22815, 88365, 112488, -3280, 0, 0, 1317, 60, 0, 0),
+("dragon_valley", 1, 22815, 88369, 112208, -3264, 0, 0, 16864, 60, 0, 0),
+("dragon_valley", 1, 22815, 88468, 112224, -3256, 0, 0, 11978, 60, 0, 0),
+("dragon_valley", 1, 22815, 76971, 117518, -3718, 0, 0, 4767, 10, 0, 0),
+-- Mesmer Drake
+("dragon_valley", 1, 22820, 80733, 109807, -3056, 0, 0, 30185, 60, 0, 0),
+("dragon_valley", 1, 22820, 83346, 112987, -3048, 0, 0, 64221, 60, 0, 0),
+("dragon_valley", 1, 22820, 86980, 120934, -3040, 0, 0, 25947, 60, 0, 0),
+-- Emerald Drake
+("dragon_valley", 1, 22829, 95286, 112420, -3056, 0, 0, 58614, 60, 0, 0),
+("dragon_valley", 1, 22829, 94525, 113255, -3048, 0, 0, 3890, 60, 0, 0),
+("dragon_valley", 1, 22829, 92568, 111424, -2992, 0, 0, 40200, 60, 0, 0),
+("dragon_valley", 1, 22829, 92417, 113193, -3072, 0, 0, 58635, 60, 0, 0),
+("dragon_valley", 1, 22829, 94000, 114106, -3104, 0, 0, 50469, 60, 0, 0),
+("dragon_valley", 1, 22829, 93092, 113939, -3072, 0, 0, 55155, 60, 0, 0),
+("dragon_valley", 1, 22829, 90842, 112419, -2976, 0, 0, 27743, 60, 0, 0),
+("dragon_valley", 1, 22829, 91620, 114699, -3072, 0, 0, 29132, 60, 0, 0),
+("dragon_valley", 1, 22829, 90957, 113455, -3000, 0, 0, 42583, 60, 0, 0),
+("dragon_valley", 1, 22829, 91879, 114756, -3072, 0, 0, 51861, 60, 0, 0),
+("dragon_valley", 1, 22829, 92729, 118211, -3056, 0, 0, 54319, 60, 0, 0),
+("dragon_valley", 1, 22829, 92742, 119584, -2976, 0, 0, 54888, 60, 0, 0),
+-- Gem Dragon
+("dragon_valley", 1, 22830, 85273, 107338, -3184, 0, 0, 0, 60, 0, 0),
+("dragon_valley", 1, 22830, 86853, 107757, -3144, 0, 0, 17964, 60, 0, 0),
+("dragon_valley", 1, 22830, 87808, 106723, -3168, 0, 0, 35868, 60, 0, 0),
+("dragon_valley", 1, 22830, 86450, 107602, -3160, 0, 0, 41830, 60, 0, 0),
+("dragon_valley", 1, 22830, 86923, 107500, -3136, 0, 0, 17078, 60, 0, 0),
+("dragon_valley", 1, 22830, 87951, 106705, -3168, 0, 0, 29364, 60, 0, 0),
+("dragon_valley", 1, 22830, 88049, 106868, -3160, 0, 0, 22582, 60, 0, 0),
+("dragon_valley", 1, 22830, 86397, 107800, -3160, 0, 0, 64157, 60, 0, 0),
+("dragon_valley", 1, 22830, 86501, 108106, -3160, 0, 0, 57031, 60, 0, 0),
+("dragon_valley", 1, 22830, 86746, 107097, -3128, 0, 0, 64236, 60, 0, 0),
+("dragon_valley", 1, 22830, 88083, 106028, -3160, 0, 0, 48203, 60, 0, 0),
+("dragon_valley", 1, 22830, 87972, 106154, -3176, 0, 0, 44676, 60, 0, 0),
+("dragon_valley", 1, 22830, 88060, 105959, -3144, 0, 0, 47282, 60, 0, 0),
+("dragon_valley", 1, 22830, 89695, 106289, -3208, 0, 0, 36005, 60, 0, 0),
+("dragon_valley", 1, 22830, 89169, 105635, -3168, 0, 0, 33432, 60, 0, 0),
+("dragon_valley", 1, 22830, 89105, 105827, -3176, 0, 0, 33432, 60, 0, 0),
+("dragon_valley", 1, 22830, 88744, 105470, -3088, 0, 0, 55115, 60, 0, 0),
+("dragon_valley", 1, 22830, 89216, 105586, -3192, 0, 0, 33148, 60, 0, 0),
+("dragon_valley", 1, 22830, 87859, 106229, -3176, 0, 0, 38941, 60, 0, 0),
+("dragon_valley", 1, 22830, 89980, 107030, -3160, 0, 0, 9643, 60, 0, 0),
+("dragon_valley", 1, 22830, 89774, 107933, -3024, 0, 0, 15858, 60, 0, 0),
+("dragon_valley", 1, 22830, 89854, 108023, -3024, 0, 0, 40626, 60, 0, 0),
+("dragon_valley", 1, 22830, 89883, 107917, -3024, 0, 0, 10728, 60, 0, 0),
+("dragon_valley", 1, 22830, 87959, 106429, -3184, 0, 0, 40109, 60, 0, 0),
+("dragon_valley", 1, 22830, 87985, 106726, -3168, 0, 0, 33528, 60, 0, 0),
+("dragon_valley", 1, 22830, 87928, 106525, -3168, 0, 0, 37288, 60, 0, 0),
+("dragon_valley", 1, 22830, 89767, 107724, -3040, 0, 0, 57528, 60, 0, 0),
+("dragon_valley", 1, 22830, 88738, 108415, -3032, 0, 0, 51676, 60, 0, 0),
+("dragon_valley", 1, 22830, 88299, 108088, -3056, 0, 0, 44795, 60, 0, 0),
+("dragon_valley", 1, 22830, 88140, 107924, -3056, 0, 0, 47512, 60, 0, 0),
+("dragon_valley", 1, 22830, 88051, 108187, -3056, 0, 0, 42744, 60, 0, 0),
+("dragon_valley", 1, 22830, 90271, 108210, -3048, 0, 0, 3768, 60, 0, 0),
+("dragon_valley", 1, 22830, 90066, 107822, -3040, 0, 0, 38876, 60, 0, 0),
+("dragon_valley", 1, 22830, 90993, 108232, -3040, 0, 0, 29202, 60, 0, 0),
+("dragon_valley", 1, 22830, 91013, 107964, -3056, 0, 0, 45048, 60, 0, 0),
+("dragon_valley", 1, 22830, 91039, 107845, -3056, 0, 0, 41464, 60, 0, 0),
+("dragon_valley", 1, 22830, 90955, 106671, -3064, 0, 0, 47006, 60, 0, 0),
+("dragon_valley", 1, 22830, 90331, 106494, -3184, 0, 0, 62947, 60, 0, 0),
+("dragon_valley", 1, 22830, 90422, 106692, -3160, 0, 0, 63190, 60, 0, 0),
+("dragon_valley", 1, 22830, 91639, 108061, -3040, 0, 0, 5634, 60, 0, 0),
+("dragon_valley", 1, 22830, 91575, 108034, -3040, 0, 0, 5940, 60, 0, 0),
+("dragon_valley", 1, 22830, 91717, 107877, -3056, 0, 0, 5249, 60, 0, 0),
+("dragon_valley", 1, 22830, 91418, 108358, -3040, 0, 0, 10980, 60, 0, 0),
+("dragon_valley", 1, 22830, 92120, 108698, -3080, 0, 0, 0, 60, 0, 0),
+("dragon_valley", 1, 22830, 93747, 107705, -3000, 0, 0, 8057, 60, 0, 0),
+("dragon_valley", 1, 22830, 93750, 107496, -3000, 0, 0, 31117, 60, 0, 0),
+("dragon_valley", 1, 22830, 92663, 107470, -2976, 0, 0, 56405, 60, 0, 0),
+("dragon_valley", 1, 22830, 92272, 107807, -3040, 0, 0, 47561, 60, 0, 0),
+("dragon_valley", 1, 22830, 92332, 107659, -3032, 0, 0, 59052, 60, 0, 0),
+("dragon_valley", 1, 22830, 95671, 107670, -3088, 0, 0, 59818, 60, 0, 0),
+("dragon_valley", 1, 22830, 95558, 108048, -3096, 0, 0, 8510, 60, 0, 0),
+("dragon_valley", 1, 22830, 94890, 107781, -3056, 0, 0, 0, 60, 0, 0),
+("dragon_valley", 1, 22830, 94311, 107782, -3016, 0, 0, 5359, 60, 0, 0),
+("dragon_valley", 1, 22830, 94932, 109944, -3704, 0, 0, 32895, 60, 0, 0),
+("dragon_valley", 1, 22830, 95340, 109765, -3656, 0, 0, 13494, 60, 0, 0),
+("dragon_valley", 1, 22830, 95367, 110544, -3656, 0, 0, 60184, 60, 0, 0),
+("dragon_valley", 1, 22830, 95890, 110024, -3656, 0, 0, 521, 60, 0, 0),
+("dragon_valley", 1, 22830, 95316, 110597, -3672, 0, 0, 19319, 60, 0, 0),
+("dragon_valley", 1, 22830, 95258, 109790, -3656, 0, 0, 9643, 60, 0, 0),
+("dragon_valley", 1, 22830, 95012, 110416, -3688, 0, 0, 26800, 60, 0, 0),
+("dragon_valley", 1, 22830, 94437, 110119, -3696, 0, 0, 29913, 60, 0, 0),
+("dragon_valley", 1, 22830, 95877, 109865, -3600, 0, 0, 0, 60, 0, 0),
+("dragon_valley", 1, 22830, 96880, 109688, -3696, 0, 0, 45092, 60, 0, 0),
+("dragon_valley", 1, 22830, 96843, 109651, -3696, 0, 0, 41714, 60, 0, 0),
+("dragon_valley", 1, 22830, 97070, 109697, -3704, 0, 0, 23728, 60, 0, 0),
+("dragon_valley", 1, 22830, 96837, 109593, -3696, 0, 0, 51410, 60, 0, 0),
+("dragon_valley", 1, 22830, 97463, 109673, -3680, 0, 0, 62490, 60, 0, 0),
+("dragon_valley", 1, 22830, 96837, 109637, -3696, 0, 0, 32816, 60, 0, 0),
+-- Dust Dragon Tracker
+("dragon_valley", 1, 22834, 89602, 108262, -3032, 0, 0, 3788, 60, 0, 0),
+("dragon_valley", 1, 22834, 94790, 107669, -3050, 0, 0, 54609, 10, 0, 0),
+-- Necromancer of the Valley
+("dragon_valley", 1, 22858, 76441, 117265, -3748, 0, 0, 52663, 10, 0, 0),
+("dragon_valley", 1, 22858, 77388, 116948, -3805, 0, 0, 62442, 10, 0, 0),
+("dragon_valley", 1, 22858, 79307, 114981, -3736, 0, 0, 29888, 60, 0, 0),
+("dragon_valley", 1, 22858, 79610, 115090, -3720, 0, 0, 60337, 60, 0, 0),
+("dragon_valley", 1, 22858, 79850, 116774, -3480, 0, 0, 32417, 60, 0, 0),
+("dragon_valley", 1, 22858, 80257, 115482, -3672, 0, 0, 58221, 60, 0, 0),
+("dragon_valley", 1, 22858, 80684, 113310, -3688, 0, 0, 43772, 60, 0, 0),
+("dragon_valley", 1, 22858, 80802, 112558, -3656, 0, 0, 6912, 60, 0, 0),
+("dragon_valley", 1, 22858, 80802, 112840, -3656, 0, 0, 19666, 60, 0, 0),
+("dragon_valley", 1, 22858, 80861, 112370, -3656, 0, 0, 36273, 60, 0, 0),
+("dragon_valley", 1, 22858, 80861, 113122, -3656, 0, 0, 57663, 60, 0, 0),
+("dragon_valley", 1, 22858, 81214, 111962, -3632, 0, 0, 44392, 60, 0, 0),
+("dragon_valley", 1, 22858, 81215, 112652, -3616, 0, 0, 29978, 60, 0, 0),
+("dragon_valley", 1, 22858, 81274, 111994, -3624, 0, 0, 45716, 60, 0, 0),
+("dragon_valley", 1, 22858, 81286, 111719, -3608, 0, 0, 20959, 60, 0, 0),
+("dragon_valley", 1, 22858, 81398, 111693, -3600, 0, 0, 24100, 60, 0, 0),
+("dragon_valley", 1, 22858, 81760, 112025, -3576, 0, 0, 19401, 60, 0, 0),
+("dragon_valley", 1, 22858, 81897, 110574, -3688, 0, 0, 56507, 60, 0, 0),
+("dragon_valley", 1, 22858, 82052, 110574, -3712, 0, 0, 53345, 60, 0, 0),
+("dragon_valley", 1, 22858, 82180, 117125, -3104, 0, 0, 57961, 60, 0, 0),
+("dragon_valley", 1, 22858, 82207, 111744, -3552, 0, 0, 46345, 60, 0, 0),
+("dragon_valley", 1, 22858, 82362, 110808, -3728, 0, 0, 3829, 60, 0, 0),
+("dragon_valley", 1, 22858, 82362, 111159, -3680, 0, 0, 60011, 60, 0, 0),
+("dragon_valley", 1, 22858, 82889, 118342, -3008, 0, 0, 38095, 60, 0, 0),
+("dragon_valley", 1, 22858, 83465, 117291, -3000, 0, 0, 34304, 60, 0, 0),
+("dragon_valley", 1, 22858, 83598, 118247, -2984, 0, 0, 47060, 60, 0, 0),
+("dragon_valley", 1, 22858, 83858, 117142, -2992, 0, 0, 56519, 60, 0, 0),
+("dragon_valley", 1, 22858, 83912, 110181, -3744, 0, 0, 33297, 60, 0, 0),
+("dragon_valley", 1, 22858, 84067, 110808, -3688, 0, 0, 12826, 60, 0, 0),
+("dragon_valley", 1, 22858, 84377, 110223, -3776, 0, 0, 45111, 60, 0, 0),
+("dragon_valley", 1, 22858, 84574, 118284, -3008, 0, 0, 46769, 60, 0, 0),
+("dragon_valley", 1, 22858, 84574, 118584, -3032, 0, 0, 53367, 60, 0, 0),
+("dragon_valley", 1, 22858, 84707, 117589, -3000, 0, 0, 1221, 60, 0, 0),
+("dragon_valley", 1, 22858, 84859, 117888, -3008, 0, 0, 20867, 60, 0, 0),
+("dragon_valley", 1, 22858, 85066, 111018, -3664, 0, 0, 31112, 60, 0, 0),
+("dragon_valley", 1, 22858, 85518, 118984, -3024, 0, 0, 58522, 60, 0, 0),
+("dragon_valley", 1, 22858, 85538, 109928, -3728, 0, 0, 28971, 60, 0, 0),
+("dragon_valley", 1, 22858, 85752, 120003, -2968, 0, 0, 49679, 60, 0, 0),
+("dragon_valley", 1, 22858, 85900, 119802, -2992, 0, 0, 14237, 60, 0, 0),
+("dragon_valley", 1, 22858, 86069, 110772, -3672, 0, 0, 24807, 60, 0, 0),
+("dragon_valley", 1, 22858, 86305, 110239, -3736, 0, 0, 25777, 60, 0, 0),
+("dragon_valley", 1, 22858, 86317, 110704, -3696, 0, 0, 38992, 60, 0, 0),
+("dragon_valley", 1, 22858, 86468, 110508, -3720, 0, 0, 4099, 60, 0, 0),
+("dragon_valley", 1, 22858, 86604, 111232, -3632, 0, 0, 34302, 60, 0, 0),
+("dragon_valley", 1, 22858, 87965, 118882, -3056, 0, 0, 27154, 60, 0, 0),
+("dragon_valley", 1, 22858, 88039, 110919, -3760, 0, 0, 15453, 60, 0, 0),
+("dragon_valley", 1, 22858, 88956, 111372, -3688, 0, 0, 61229, 60, 0, 0),
+("dragon_valley", 1, 22858, 89311, 111335, -3632, 0, 0, 61506, 60, 0, 0),
+("dragon_valley", 1, 22858, 89576, 111120, -3656, 0, 0, 55013, 60, 0, 0),
+("dragon_valley", 1, 22858, 89749, 111371, -3648, 0, 0, 5009, 60, 0, 0),
+("dragon_valley", 1, 22858, 89845, 111060, -3664, 0, 0, 54532, 60, 0, 0),
+("dragon_valley", 1, 22858, 90004, 111051, -3656, 0, 0, 57262, 60, 0, 0),
+("dragon_valley", 1, 22858, 90196, 111162, -3656, 0, 0, 11362, 60, 0, 0),
+("dragon_valley", 1, 22858, 90224, 111454, -3648, 0, 0, 13504, 60, 0, 0),
+-- Howl
+("dragon_valley", 1, 22859, 86101, 107610, -3187, 0, 0, 43555, 60, 0, 0),
+("dragon_valley", 1, 22859, 87129, 112224, -3264, 0, 0, 0, 60, 0, 0),
+("dragon_valley", 1, 22859, 85752, 119612, -2992, 0, 0, 43083, 60, 0, 0),
+-- Hungry Parasitic Leech
+("dragon_valley", 1, 22860, 89965, 113399, -3000, 0, 0, 42926, 60, 0, 0),
+("dragon_valley", 1, 22860, 90192, 113347, -2992, 0, 0, 51788, 60, 0, 0),
+("dragon_valley", 1, 22860, 90347, 112936, -3000, 0, 0, 25906, 60, 0, 0),
+("dragon_valley", 1, 22860, 90154, 113318, -2992, 0, 0, 31964, 60, 0, 0),
+("dragon_valley", 1, 22860, 89971, 113245, -3000, 0, 0, 31629, 60, 0, 0),
+("dragon_valley", 1, 22860, 90515, 113155, -2992, 0, 0, 954, 60, 0, 0),
+("dragon_valley", 1, 22860, 90180, 112870, -3008, 0, 0, 34929, 60, 0, 0),
+("dragon_valley", 1, 22860, 90031, 112713, -3016, 0, 0, 39085, 60, 0, 0),
+("dragon_valley", 1, 22860, 90358, 118618, -2992, 0, 0, 11576, 60, 0, 0),
+("dragon_valley", 1, 22860, 90025, 118697, -3008, 0, 0, 37942, 60, 0, 0),
+("dragon_valley", 1, 22860, 90216, 118488, -2976, 0, 0, 20581, 60, 0, 0),
+("dragon_valley", 1, 22860, 90304, 118640, -2992, 0, 0, 47998, 60, 0, 0),
+("dragon_valley", 1, 22860, 90064, 120306, -3056, 0, 0, 35976, 60, 0, 0),
+("dragon_valley", 1, 22860, 90246, 120202, -3048, 0, 0, 63564, 60, 0, 0),
+("dragon_valley", 1, 22860, 90710, 118706, -3056, 0, 0, 428, 60, 0, 0),
 -- Torai
 ("giran06_npc2221_04", 1, 30557, 70932, 124558, -3560, 0, 0, 32768, 60, 0, 0),
 -- Voltar
@@ -29549,7 +29688,16 @@ INSERT INTO `spawnlist` VALUES
 -- Orim
 ("giran06_npc2221_02", 1, 30630, 69976, 109692, -3702, 0, 0, 0, 60, 0, 0),
 -- Gilmore
-("giran03_npc2221_01", 1, 30754, 73211, 118492, -3693, 0, 0, 40960, 60, 0, 0),
+("dragon_valley", 1, 30754, 73211, 118492, -3696, 0, 0, 40960, 60, 0, 0),
+-- 
+("dragon_valley", 1, 32723, 90734, 106231, -3120, 0, 0, 24488, 60, 0, 0),
+("dragon_valley", 1, 32723, 91563, 109541, -3744, 0, 0, 248, 60, 0, 0),
+("dragon_valley", 1, 32723, 93110, 111366, -2976, 0, 0, 25280, 60, 0, 0),
+("dragon_valley", 1, 32723, 90459, 120761, -2992, 0, 0, 50504, 60, 0, 0),
+-- Separated Soul
+("dragon_valley", 1, 32870, 73306, 118423, -3704, 0, 0, 42339, 60, 0, 0),
+-- Dragon Vortex
+("dragon_valley", 1, 32871, 92225, 113873, -3062, 0, 0, 0, 60, 0, 0),
 
 -- [22_22]
 
@@ -31144,7 +31292,8 @@ INSERT INTO `spawnlist` VALUES
 ("Reedfield", 1, 22658, 87491, 224867, -3736, 0, 0, 61126, 60, 0, 0),
 ("Reedfield", 1, 22658, 88022, 223939, -3760, 0, 0, 64663, 60, 0, 0),
 ("Reedfield", 1, 22658, 84101, 223468, -3712, 0, 0, 62648, 60, 0, 0),
-("Reedfield", 1, 22658, 84476, 224648, -3760, 0, 0, 1270, 60, 0, 0),
+("Reedfield", 1, 22658, 84476, 224648, -3760, 0, 0, 1270, 60, 0, 0);
+INSERT INTO `spawnlist` VALUES
 ("Reedfield", 1, 22658, 84256, 224066, -3760, 0, 0, 31821, 60, 0, 0),
 ("Reedfield", 1, 22658, 82982, 224491, -3760, 0, 0, 45398, 60, 0, 0),
 ("Reedfield", 1, 22658, 82765, 225324, -3760, 0, 0, 47010, 60, 0, 0),
@@ -31277,8 +31426,7 @@ INSERT INTO `spawnlist` VALUES
 ("dion18_tb2021_01", 1, 18272, 77664, 251884, -9848, 0, 0, 5912, 41, 0, 0),
 ("dion18_tb2021_01", 1, 18272, 76701, 252083, -9337, 0, 0, 0, 41, 0, 0),
 ("dion18_tb2021_01", 1, 18272, 78999, 249724, -10361, 0, 0, 0, 41, 0, 0),
-("dion18_tb2021_01", 1, 18272, 78072, 249997, -9849, 0, 0, 0, 41, 0, 0);
-INSERT INTO `spawnlist` VALUES
+("dion18_tb2021_01", 1, 18272, 78072, 249997, -9849, 0, 0, 0, 41, 0, 0),
 ("dion18_tb2021_01", 1, 18272, 78819, 250526, -10361, 0, 0, 0, 41, 0, 0),
 ("dion18_tb2021_01", 1, 18272, 78572, 251407, -10361, 0, 0, 0, 41, 0, 0),
 ("dion18_tb2021_01", 1, 18272, 81515, 247996, -10359, 0, 0, 57869, 41, 0, 0),
@@ -32920,7 +33068,7 @@ INSERT INTO `spawnlist` VALUES
 ("unset", 1, 32028, 112801, -76510, 85, 0, 0, 0, 60, 0, 0),
 -- Greymore
 ("MonasteryOfSilence_NPC", 1, 32757, 119120, -80576, -2688, 0, 0, 33792, 60, 0, 0),
--- Escort Checkers
+-- 
 ("escort_checker_q0457", 1, 32764, 108457, -87835, -2888, 0, 0, 0, 60, 0, 0),
 ("escort_checker_q0457", 1, 32764, 122985, -74841, -2880, 0, 0, 0, 60, 0, 0),
 -- Aquilani
@@ -33366,7 +33514,8 @@ INSERT INTO `spawnlist` VALUES
 ("godard28_2316_29", 1, 21361, 121347, -55448, -2287, 0, 0, 46764, 109, 0, 0),
 ("godard28_2316_29", 1, 21361, 121168, -53903, -2388, 0, 0, 11202, 109, 0, 0),
 ("godard28_2316_29", 1, 21361, 121130, -54768, -2544, 0, 0, 0, 109, 0, 0),
-("godard28_2316_29", 1, 21361, 120160, -59060, -2372, 0, 0, 0, 109, 0, 0),
+("godard28_2316_29", 1, 21361, 120160, -59060, -2372, 0, 0, 0, 109, 0, 0);
+INSERT INTO `spawnlist` VALUES
 ("godard28_2316_29", 1, 21361, 119253, -58170, -2372, 0, 0, 0, 109, 0, 0),
 ("godard28_2316_29", 1, 21361, 120865, -58526, -2372, 0, 0, 0, 109, 0, 0),
 ("godard28_2316_29", 1, 21361, 120342, -58191, -2083, 0, 0, 63996, 109, 0, 0),
@@ -33495,8 +33644,7 @@ INSERT INTO `spawnlist` VALUES
 ("godard28_2316_33", 1, 21366, 110933, -54906, -2845, 0, 0, 26464, 109, 0, 0),
 ("godard28_2316_33", 1, 21366, 107443, -48418, -2018, 0, 0, 49889, 109, 0, 0),
 ("godard28_2316_33", 1, 21366, 108179, -47912, -2300, 0, 0, 0, 109, 0, 0),
-("godard28_2316_33", 1, 21366, 107975, -46163, -1998, 0, 0, 14662, 109, 0, 0);
-INSERT INTO `spawnlist` VALUES
+("godard28_2316_33", 1, 21366, 107975, -46163, -1998, 0, 0, 14662, 109, 0, 0),
 ("godard28_2316_33", 1, 21366, 108544, -47212, -2146, 0, 0, 48933, 109, 0, 0),
 ("godard28_2316_33", 1, 21366, 109483, -45784, -2266, 0, 0, 24808, 109, 0, 0),
 ("godard28_2316_33", 1, 21366, 109861, -46624, -1950, 0, 0, 0, 109, 0, 0),
@@ -35285,10 +35433,6 @@ INSERT INTO `spawnlist` VALUES
 ("dion18_tb2021_12", 1, 18273, 123007, 79665, -2269, 0, 0, 16805, 41, 0, 0),
 ("dion18_tb2021_12", 1, 18273, 111507, 87875, -2904, 0, 0, 33905, 41, 0, 0),
 ("dion18_tb2021_12", 1, 18273, 111103, 88769, -2582, 0, 0, 57011, 41, 0, 0),
--- Fettered Soul
-("giran06_2221_14", 1, 20552, 103905, 98168, -2787, 0, 0, 607, 22, 0, 0),
--- Grandis
-("giran06_2221_14", 1, 20554, 100173, 98102, -3723, 0, 0, 12107, 22, 0, 0),
 -- Karul Bugbear
 ("aden24_2320_05", 1, 20600, 104694, 80575, -2586, 0, 0, 0, 25, 0, 0),
 ("aden24_2320_05", 1, 20600, 104281, 80375, -2483, 0, 0, 29974, 25, 0, 0),
@@ -35604,7 +35748,10 @@ INSERT INTO `spawnlist` VALUES
 -- Adventurers' Guide
 ("unset", 1, 32327, 116935, 77258, -2688, 0, 0, 40960, 60, 0, 0),
 -- Dimensional Merchant
-("unset", 1, 32478, 115656, 76620, -2664, 0, 0, 60000, 60, 0, 0),
+("unset", 1, 32478, 115656, 76620, -2664, 0, 0, 60000, 60, 0, 0);
+INSERT INTO `spawnlist` VALUES
+-- Separated Soul
+("dragon_valley", 1, 32864, 117173, 76850, -2695, 0, 0, 36510, 60, 0, 0),
 -- Metar
 ("aden14_npc2320_125", 1, 32887, 117410, 75082, -2648, 0, 0, 15377, 60, 0, 0),
 -- Manor Manager
@@ -35612,126 +35759,9 @@ INSERT INTO `spawnlist` VALUES
 
 -- [23_21]
 
--- Blood Queen
-("giran03_2321_15", 1, 18001, 120155, 113611, -3688, 0, 0, 50367, 36, 0, 0),
-("giran03_2321_15", 1, 18001, 122099, 115207, -3712, 0, 0, 4635, 36, 0, 0),
-("giran03_2321_15", 1, 18001, 118881, 116196, -3768, 0, 0, 22878, 36, 0, 0),
-("giran03_2321_15", 1, 18001, 123040, 114492, -3760, 0, 0, 10293, 36, 0, 0),
-("giran03_2321_15", 1, 18001, 125163, 114739, -3720, 0, 0, 24165, 36, 0, 0),
-("giran03_2321_15", 1, 18001, 125920, 115302, -3728, 0, 0, 27078, 36, 0, 0),
-("giran03_2321_15", 1, 18001, 128609, 113759, -3680, 0, 0, 38062, 36, 0, 0),
-("giran03_2321_15", 1, 18001, 127543, 113377, -3664, 0, 0, 55217, 36, 0, 0),
-("giran03_2321_15", 1, 18001, 126400, 113125, -3512, 0, 0, 11118, 36, 0, 0),
-("giran03_2321_15", 1, 18001, 125561, 111901, -3191, 0, 0, 3200, 36, 0, 0),
-("giran03_2321_15", 1, 18001, 124280, 111555, -3056, 0, 0, 19834, 36, 0, 0),
 -- Treasure Chest
 ("Breka_Str_Gorg_Garden", 1, 18269, 118479, 130712, -3472, 0, 0, 0, 60, 0, 0),
 ("Breka_Str_Gorg_Garden", 1, 18269, 122952, 129126, -3224, 0, 0, 0, 60, 0, 0),
--- Treasure Chest
-("giran06_tb2221_13", 1, 18271, 98479, 98650, -3764, 0, 0, 0, 60, 0, 0),
-("giran06_tb2221_13", 1, 18271, 104125, 103390, -3620, 0, 0, 40850, 60, 0, 0),
-("giran06_tb2221_13", 1, 18271, 102188, 105716, -3190, 0, 0, 20508, 60, 0, 0),
--- Treasure Chest
-("giran03_tb2321_06", 1, 18276, 102891, 119017, -3680, 0, 0, 40336, 60, 0, 0),
-("giran03_tb2321_06", 1, 18276, 103660, 121042, -3728, 0, 0, 41340, 60, 0, 0),
-("giran03_tb2321_06", 1, 18276, 107223, 119944, -3664, 0, 0, 25494, 60, 0, 0),
-("giran03_tb2321_06", 1, 18276, 107492, 122404, -3712, 0, 0, 11246, 60, 0, 0),
-("giran03_tb2321_06", 1, 18276, 109120, 120996, -3728, 0, 0, 35171, 60, 0, 0),
-("giran03_tb2321_06", 1, 18276, 113968, 121561, -3744, 0, 0, 59223, 60, 0, 0),
-("giran03_tb2321_06", 1, 18276, 108018, 121215, -3696, 0, 0, 42944, 60, 0, 0),
-("giran03_tb2321_06", 1, 18276, 109609, 123510, -3632, 0, 0, 52607, 60, 0, 0),
-("giran03_tb2321_06", 1, 18276, 113860, 119506, -3680, 0, 0, 35545, 60, 0, 0),
-("giran03_tb2321_06", 1, 18276, 116405, 120589, -3680, 0, 0, 2388, 60, 0, 0),
-("giran03_tb2321_06", 1, 18276, 119176, 116533, -3760, 0, 0, 1827, 60, 0, 0),
-("giran03_tb2321_06", 1, 18276, 116701, 118009, -3728, 0, 0, 19649, 60, 0, 0),
--- Treasure Chest
-("giran03_tb2321_15", 1, 18277, 120861, 116120, -3664, 0, 0, 11771, 60, 0, 0),
-("giran03_tb2321_15", 1, 18277, 120429, 112695, -3680, 0, 0, 36240, 60, 0, 0),
-("giran03_tb2321_15", 1, 18277, 130540, 114433, -3760, 0, 0, 1165, 60, 0, 0),
-("giran03_tb2321_15", 1, 18277, 127774, 114039, -3568, 0, 0, 49566, 60, 0, 0),
-("giran03_tb2321_15", 1, 18277, 125016, 110216, -3104, 0, 0, 0, 60, 0, 0),
-("giran03_tb2321_15", 1, 18277, 125169, 110951, -3136, 0, 0, 17859, 60, 0, 0),
-("giran03_tb2321_15", 1, 18277, 123391, 108647, -3040, 0, 0, 65318, 60, 0, 0),
-("giran03_tb2321_15", 1, 18277, 124429, 108907, -3008, 0, 0, 62322, 60, 0, 0),
-("giran03_tb2321_15", 1, 18277, 120943, 107659, -2976, 0, 0, 52232, 60, 0, 0),
-("giran03_tb2321_15", 1, 18277, 120165, 110945, -3056, 0, 0, 18663, 60, 0, 0),
-("giran03_tb2321_15", 1, 18277, 120256, 108517, -2960, 0, 0, 0, 60, 0, 0),
-("giran03_tb2321_15", 1, 18277, 121394, 109619, -2944, 0, 0, 2475, 60, 0, 0),
--- Treasure Chest
-("giran03_tb2321_24", 1, 18278, 115678, 109886, -3040, 0, 0, 60749, 60, 0, 0),
-("giran03_tb2321_24", 1, 18278, 116405, 110094, -3024, 0, 0, 0, 60, 0, 0),
-("giran03_tb2321_24", 1, 18278, 119752, 110288, -3056, 0, 0, 3943, 60, 0, 0),
-("giran03_tb2321_24", 1, 18278, 122636, 108635, -3040, 0, 0, 57414, 60, 0, 0),
-("giran03_tb2321_24", 1, 18278, 120519, 120289, -3056, 0, 0, 7625, 60, 0, 0),
-("giran03_tb2321_24", 1, 18278, 120675, 121861, -3008, 0, 0, 16991, 60, 0, 0),
-("giran03_tb2321_24", 1, 18278, 121320, 118640, -3040, 0, 0, 0, 60, 0, 0),
-("giran03_tb2321_24", 1, 18278, 121421, 119174, -3120, 0, 0, 0, 60, 0, 0),
-("giran03_tb2321_24", 1, 18278, 121118, 118996, -3072, 0, 0, 0, 60, 0, 0),
-("giran03_tb2321_24", 1, 18278, 121208, 120898, -3056, 0, 0, 22493, 60, 0, 0),
-("giran03_tb2321_24", 1, 18278, 123275, 119443, -3184, 0, 0, 28555, 60, 0, 0),
-("giran03_tb2321_24", 1, 18278, 125783, 117764, -3056, 0, 0, 32315, 60, 0, 0),
--- Cave Maiden
-("giran03_2321_15", 1, 20134, 121642, 112445, -3848, 0, 0, 56334, 36, 0, 0),
-("giran03_2321_15", 1, 20134, 122251, 112680, -3840, 0, 0, 11531, 36, 0, 0),
-("giran03_2321_15", 1, 20134, 119647, 112701, -3696, 0, 0, 34029, 36, 0, 0),
-("giran03_2321_15", 1, 20134, 124739, 115092, -3712, 0, 0, 3818, 36, 0, 0),
-("giran03_2321_15", 1, 20134, 122703, 113755, -3824, 0, 0, 7828, 36, 0, 0),
-("giran03_2321_15", 1, 20134, 129885, 114126, -3760, 0, 0, 62198, 36, 0, 0),
-("giran03_2321_15", 1, 20134, 130288, 114751, -3784, 0, 0, 6274, 36, 0, 0),
-("giran03_2321_15", 1, 20134, 128246, 114645, -3600, 0, 0, 60229, 36, 0, 0),
-("giran03_2321_15", 1, 20134, 126259, 112403, -3368, 0, 0, 10817, 36, 0, 0),
-("giran03_2321_15", 1, 20134, 124842, 110635, -3120, 0, 0, 40920, 36, 0, 0),
-("giran03_2321_15", 1, 20134, 123703, 108271, -2968, 0, 0, 62388, 36, 0, 0),
-("giran03_2321_15", 1, 20134, 121190, 109702, -2992, 0, 0, 5940, 36, 0, 0),
-("giran03_2321_15", 1, 20134, 121150, 108659, -2984, 0, 0, 26321, 36, 0, 0),
-("giran03_2321_15", 1, 20134, 122077, 109186, -2912, 0, 0, 32145, 36, 0, 0),
-("giran03_2321_15", 1, 20134, 123998, 108879, -3032, 0, 0, 3500, 36, 0, 0),
-("giran03_2321_15", 1, 20134, 117865, 109618, -2856, 0, 0, 32252, 36, 0, 0),
-("giran03_2321_15", 1, 20134, 120578, 119445, -3056, 0, 0, 0, 36, 0, 0),
-("giran03_2321_15", 1, 20134, 120168, 110056, -3056, 0, 0, 10318, 36, 0, 0),
-("giran03_2321_15", 1, 20134, 117178, 110441, -2984, 0, 0, 30368, 36, 0, 0),
-("giran03_2321_15", 1, 20134, 117817, 110174, -2944, 0, 0, 40927, 36, 0, 0),
-("giran03_2321_15", 1, 20134, 122570, 119237, -3168, 0, 0, 30045, 36, 0, 0),
-("giran03_2321_15", 1, 20134, 121110, 119651, -3072, 0, 0, 50475, 36, 0, 0),
-("giran03_2321_15", 1, 20134, 124370, 119015, -3104, 0, 0, 27626, 36, 0, 0),
-("giran03_2321_15", 1, 20134, 125292, 118033, -3056, 0, 0, 54877, 36, 0, 0),
-("giran03_2321_15", 1, 20134, 126745, 115826, -3728, 0, 0, 46623, 36, 0, 0),
--- Drake
-("giran03_2321_12", 1, 20137, 113889, 120828, -3776, 0, 0, 37604, 36, 0, 0),
-("giran03_2321_12", 1, 20137, 114632, 120017, -3720, 0, 0, 62154, 36, 0, 0),
-("giran03_2321_12", 1, 20137, 117459, 120129, -3664, 0, 0, 58957, 36, 0, 0),
-("giran03_2321_12", 1, 20137, 117191, 117435, -3728, 0, 0, 61530, 36, 0, 0),
-("giran03_2321_12", 1, 20137, 117835, 118866, -3672, 0, 0, 15741, 36, 0, 0),
-("giran03_2321_12", 1, 20137, 120046, 115531, -3736, 0, 0, 28613, 36, 0, 0),
-("giran03_2321_12", 1, 20137, 121805, 116067, -3600, 0, 0, 31971, 36, 0, 0),
-("giran03_2321_12", 1, 20137, 123507, 115822, -3624, 0, 0, 17032, 36, 0, 0),
-("giran03_2321_12", 1, 20137, 122480, 113212, -3848, 0, 0, 3810, 36, 0, 0),
-("giran03_2321_12", 1, 20137, 119677, 113254, -3696, 0, 0, 47537, 36, 0, 0),
-("giran03_2321_12", 1, 20137, 121059, 112117, -3784, 0, 0, 0, 36, 0, 0),
-("giran03_2321_12", 1, 20137, 124445, 109320, -3112, 0, 0, 7210, 36, 0, 0),
-("giran03_2321_12", 1, 20137, 121544, 108577, -2984, 0, 0, 44618, 36, 0, 0),
-("giran03_2321_12", 1, 20137, 122969, 108369, -3048, 0, 0, 45609, 36, 0, 0),
-("giran03_2321_12", 1, 20137, 119859, 110470, -3056, 0, 0, 21311, 36, 0, 0),
-("giran03_2321_12", 1, 20137, 120980, 108128, -2976, 0, 0, 0, 36, 0, 0),
-("giran03_2321_12", 1, 20137, 112766, 109993, -2984, 0, 0, 0, 36, 0, 0),
-("giran03_2321_12", 1, 20137, 119502, 109030, -2960, 0, 0, 0, 36, 0, 0),
-("giran03_2321_12", 1, 20137, 118732, 110187, -2960, 0, 0, 1357, 36, 0, 0),
-("giran03_2321_12", 1, 20137, 116606, 110094, -3024, 0, 0, 0, 36, 0, 0),
-("giran03_2321_12", 1, 20137, 112331, 110381, -2984, 0, 0, 41026, 36, 0, 0),
-("giran03_2321_12", 1, 20137, 115113, 109972, -3032, 0, 0, 63149, 36, 0, 0),
-("giran03_2321_12", 1, 20137, 113885, 111944, -3128, 0, 0, 19699, 36, 0, 0),
-("giran03_2321_12", 1, 20137, 114686, 109088, -2920, 0, 0, 0, 36, 0, 0),
-("giran03_2321_12", 1, 20137, 111347, 110816, -3048, 0, 0, 29818, 36, 0, 0),
-("giran03_2321_12", 1, 20137, 117705, 123092, -3128, 0, 0, 279, 36, 0, 0),
-("giran03_2321_12", 1, 20137, 116288, 123087, -3176, 0, 0, 14739, 36, 0, 0),
-("giran03_2321_12", 1, 20137, 119348, 122332, -3040, 0, 0, 28105, 36, 0, 0),
-("giran03_2321_12", 1, 20137, 120182, 122431, -3008, 0, 0, 64517, 36, 0, 0),
-("giran03_2321_12", 1, 20137, 120596, 120918, -3056, 0, 0, 23209, 36, 0, 0),
-("giran03_2321_12", 1, 20137, 121385, 121756, -2992, 0, 0, 60687, 36, 0, 0),
-("giran03_2321_12", 1, 20137, 123878, 118951, -3152, 0, 0, 59497, 36, 0, 0),
-("giran03_2321_12", 1, 20137, 121779, 119908, -3104, 0, 0, 5415, 36, 0, 0),
-("giran03_2321_12", 1, 20137, 125852, 118476, -3088, 0, 0, 62890, 36, 0, 0),
-("giran03_2321_12", 1, 20137, 126677, 117521, -3232, 0, 0, 41792, 36, 0, 0),
 -- Medusa
 ("Breka_Str_Gorg_Garden", 1, 20158, 117211, 127356, -2512, 0, 0, 0, 27, 0, 0),
 ("Breka_Str_Gorg_Garden", 1, 20158, 118162, 128472, -2904, 0, 0, 0, 27, 0, 0),
@@ -35740,8 +35770,7 @@ INSERT INTO `spawnlist` VALUES
 ("Breka_Str_Gorg_Garden", 1, 20158, 119747, 129960, -3400, 0, 0, 0, 27, 0, 0),
 ("Breka_Str_Gorg_Garden", 1, 20158, 119747, 129216, -3200, 0, 0, 0, 27, 0, 0),
 ("Breka_Str_Gorg_Garden", 1, 20158, 122538, 128482, -3160, 0, 0, 0, 27, 0, 0),
-("Breka_Str_Gorg_Garden", 1, 20158, 123987, 127677, -3208, 0, 0, 0, 27, 0, 0);
-INSERT INTO `spawnlist` VALUES
+("Breka_Str_Gorg_Garden", 1, 20158, 123987, 127677, -3208, 0, 0, 0, 27, 0, 0),
 ("Breka_Str_Gorg_Garden", 1, 20158, 123573, 130736, -3048, 0, 0, 0, 27, 0, 0),
 ("Breka_Str_Gorg_Garden", 1, 20158, 125022, 129770, -2912, 0, 0, 0, 27, 0, 0),
 -- Wyrm
@@ -35754,148 +35783,6 @@ INSERT INTO `spawnlist` VALUES
 ("Breka_Str_Gorg_Garden", 1, 20176, 122538, 129126, -3248, 0, 0, 0, 22, 0, 0),
 ("Breka_Str_Gorg_Garden", 1, 20176, 122538, 129770, -3296, 0, 0, 0, 22, 0, 0),
 ("Breka_Str_Gorg_Garden", 1, 20176, 123159, 129931, -3232, 0, 0, 0, 22, 0, 0),
--- Hunter Gargoyle
-("oren31_2217_08", 1, 20241, 99147, 110092, -3681, 0, 0, 38010, 41, 0, 0),
-("oren31_2217_08", 1, 20241, 100240, 110977, -3660, 0, 0, 3698, 41, 0, 0),
-("oren31_2217_08", 1, 20241, 102320, 113742, -3721, 0, 0, 23554, 41, 0, 0),
--- Dustwind Gargoyle
-("giran03_2321_02", 1, 20242, 101410, 111012, -3656, 0, 0, 1011, 36, 0, 0),
-("giran03_2321_02", 1, 20242, 102718, 112494, -3704, 0, 0, 8285, 36, 0, 0),
-("giran03_2321_02", 1, 20242, 102550, 111244, -3720, 0, 0, 49826, 36, 0, 0),
-("giran03_2321_02", 1, 20242, 101391, 112602, -3688, 0, 0, 29284, 36, 0, 0),
-("giran03_2321_02", 1, 20242, 101474, 114573, -3728, 0, 0, 16384, 36, 0, 0),
-("giran03_2321_02", 1, 20242, 101370, 115895, -3728, 0, 0, 46322, 36, 0, 0),
-("giran03_2321_02", 1, 20242, 101269, 121256, -3720, 0, 0, 21284, 36, 0, 0),
-("giran03_2321_02", 1, 20242, 101148, 118213, -3680, 0, 0, 45639, 36, 0, 0),
-("giran03_2321_02", 1, 20242, 102613, 121969, -3664, 0, 0, 49815, 36, 0, 0),
-("giran03_2321_02", 1, 20242, 104851, 122573, -3730, 0, 0, 10995, 36, 0, 0),
-("giran03_2321_02", 1, 20242, 102550, 123293, -3656, 0, 0, 36950, 36, 0, 0),
-("giran03_2321_02", 1, 20242, 102495, 120084, -3584, 0, 0, 0, 36, 0, 0),
-("giran03_2321_02", 1, 20242, 102389, 121324, -3624, 0, 0, 38182, 36, 0, 0),
-("giran03_2321_02", 1, 20242, 107984, 120401, -3728, 0, 0, 10902, 36, 0, 0),
--- Thunder Wyrm
-("giran03_2321_04", 1, 20243, 101618, 113798, -3704, 0, 0, 46871, 36, 0, 0),
-("giran03_2321_04", 1, 20243, 102132, 112133, -3680, 0, 0, 12504, 36, 0, 0),
-("giran03_2321_04", 1, 20243, 101324, 116543, -3696, 0, 0, 49732, 36, 0, 0),
-("giran03_2321_04", 1, 20243, 101723, 122338, -3648, 0, 0, 16526, 36, 0, 0),
-("giran03_2321_04", 1, 20243, 103938, 124238, -3712, 0, 0, 31123, 36, 0, 0),
-("giran03_2321_04", 1, 20243, 101734, 118764, -3600, 0, 0, 0, 36, 0, 0),
-("giran03_2321_04", 1, 20243, 103420, 119740, -3664, 0, 0, 37951, 36, 0, 0),
-("giran03_2321_04", 1, 20243, 106806, 122996, -3688, 0, 0, 58910, 36, 0, 0),
-("giran03_2321_04", 1, 20243, 104627, 120648, -3672, 0, 0, 36600, 36, 0, 0),
-("giran03_2321_04", 1, 20243, 102456, 124128, -3704, 0, 0, 14104, 36, 0, 0),
-("giran03_2321_04", 1, 20243, 107559, 121198, -3696, 0, 0, 52507, 36, 0, 0),
-("giran03_2321_04", 1, 20243, 106395, 122386, -3622, 0, 0, 42490, 36, 0, 0),
-("giran03_2321_04", 1, 20243, 107567, 122065, -3704, 0, 0, 29504, 36, 0, 0),
-("giran03_2321_04", 1, 20243, 108316, 122212, -3672, 0, 0, 12132, 36, 0, 0),
-("giran03_2321_04", 1, 20243, 111172, 123366, -3696, 0, 0, 56778, 36, 0, 0),
-("giran03_2321_04", 1, 20243, 109888, 125409, -3688, 0, 0, 54461, 36, 0, 0),
-("giran03_2321_04", 1, 20243, 111630, 121152, -2392, 0, 0, 0, 36, 0, 0),
-("giran03_2321_04", 1, 20243, 109565, 112339, -3184, 0, 0, 38594, 36, 0, 0),
-("giran03_2321_04", 1, 20243, 109148, 113592, -3048, 0, 0, 39937, 36, 0, 0),
-("giran03_2321_04", 1, 20243, 108512, 117042, -3056, 0, 0, 48609, 36, 0, 0),
-("giran03_2321_04", 1, 20243, 109024, 115999, -3096, 0, 0, 21852, 36, 0, 0),
-("giran03_2321_04", 1, 20243, 109510, 114386, -3072, 0, 0, 51128, 36, 0, 0),
-("giran03_2321_04", 1, 20243, 113695, 115879, -3248, 0, 0, 8776, 36, 0, 0),
-("giran03_2321_04", 1, 20243, 114692, 115310, -3232, 0, 0, 57376, 36, 0, 0),
--- Maluk Succubus
-("giran03_2321_07", 1, 20244, 101437, 119510, -3496, 0, 0, 46240, 36, 0, 0),
-("giran03_2321_07", 1, 20244, 102037, 118586, -3672, 0, 0, 0, 36, 0, 0),
-("giran03_2321_07", 1, 20244, 103301, 120084, -3656, 0, 0, 0, 36, 0, 0),
-("giran03_2321_07", 1, 20244, 102796, 120633, -3640, 0, 0, 47721, 36, 0, 0),
-("giran03_2321_07", 1, 20244, 103904, 120084, -3624, 0, 0, 0, 36, 0, 0),
-("giran03_2321_07", 1, 20244, 105951, 123557, -3656, 0, 0, 20767, 36, 0, 0),
-("giran03_2321_07", 1, 20244, 108312, 120789, -3720, 0, 0, 6371, 36, 0, 0),
-("giran03_2321_07", 1, 20244, 106887, 121384, -3680, 0, 0, 37561, 36, 0, 0),
-("giran03_2321_07", 1, 20244, 108851, 121658, -3728, 0, 0, 0, 36, 0, 0),
-("giran03_2321_07", 1, 20244, 112304, 122281, -3728, 0, 0, 1505, 36, 0, 0),
-("giran03_2321_07", 1, 20244, 109339, 123682, -3632, 0, 0, 0, 36, 0, 0),
-("giran03_2321_07", 1, 20244, 109340, 126502, -3712, 0, 0, 17548, 36, 0, 0),
-("giran03_2321_07", 1, 20244, 111630, 121308, -2400, 0, 0, 0, 36, 0, 0),
-("giran03_2321_07", 1, 20244, 111832, 121308, -2400, 0, 0, 0, 36, 0, 0),
-("giran03_2321_07", 1, 20244, 114115, 119741, -3720, 0, 0, 28306, 36, 0, 0),
-("giran03_2321_07", 1, 20244, 113898, 119410, -3672, 0, 0, 0, 36, 0, 0),
-("giran03_2321_07", 1, 20244, 117509, 118064, -3728, 0, 0, 43012, 36, 0, 0),
-("giran03_2321_07", 1, 20244, 121221, 115856, -3608, 0, 0, 62346, 36, 0, 0),
-("giran03_2321_07", 1, 20244, 119176, 116533, -3752, 0, 0, 1827, 36, 0, 0),
-("giran03_2321_07", 1, 20244, 113000, 109312, -3008, 0, 0, 0, 36, 0, 0),
-("giran03_2321_07", 1, 20244, 113198, 110161, -2992, 0, 0, 34248, 36, 0, 0),
-("giran03_2321_07", 1, 20244, 113291, 112430, -3096, 0, 0, 34750, 36, 0, 0),
-("giran03_2321_07", 1, 20244, 113659, 112919, -3064, 0, 0, 18427, 36, 0, 0),
-("giran03_2321_07", 1, 20244, 114053, 110961, -3088, 0, 0, 9290, 36, 0, 0),
-("giran03_2321_07", 1, 20244, 112285, 111703, -2768, 0, 0, 6461, 36, 0, 0),
-("giran03_2321_07", 1, 20244, 111289, 112919, -2784, 0, 0, 27254, 36, 0, 0),
-("giran03_2321_07", 1, 20244, 111500, 109984, -3016, 0, 0, 0, 36, 0, 0),
-("giran03_2321_07", 1, 20244, 110458, 110757, -3088, 0, 0, 59699, 36, 0, 0),
-("giran03_2321_07", 1, 20244, 109370, 112199, -3160, 0, 0, 20798, 36, 0, 0),
-("giran03_2321_07", 1, 20244, 109948, 111704, -3208, 0, 0, 62236, 36, 0, 0),
-("giran03_2321_07", 1, 20244, 108839, 113026, -3056, 0, 0, 37862, 36, 0, 0),
-("giran03_2321_07", 1, 20244, 108317, 112096, -3024, 0, 0, 0, 36, 0, 0),
-("giran03_2321_07", 1, 20244, 108329, 117803, -3056, 0, 0, 20631, 36, 0, 0),
-("giran03_2321_07", 1, 20244, 108949, 116658, -3064, 0, 0, 55795, 36, 0, 0),
-("giran03_2321_07", 1, 20244, 111615, 118995, -3064, 0, 0, 24385, 36, 0, 0),
-("giran03_2321_07", 1, 20244, 112665, 115144, -3224, 0, 0, 0, 36, 0, 0),
-("giran03_2321_07", 1, 20244, 111912, 116935, -3016, 0, 0, 21171, 36, 0, 0),
-("giran03_2321_07", 1, 20244, 116000, 114136, -3040, 0, 0, 0, 36, 0, 0),
-("giran03_2321_07", 1, 20244, 115136, 122450, -3592, 0, 0, 7833, 36, 0, 0),
-("giran03_2321_07", 1, 20244, 119199, 121791, -2976, 0, 0, 0, 36, 0, 0),
--- Maluk Succubus Turen
-("giran03_2321_09", 1, 20245, 109325, 121264, -3728, 0, 0, 42852, 36, 0, 0),
-("giran03_2321_09", 1, 20245, 109869, 121687, -3728, 0, 0, 61006, 36, 0, 0),
-("giran03_2321_09", 1, 20245, 109362, 123962, -3640, 0, 0, 0, 36, 0, 0),
-("giran03_2321_09", 1, 20245, 109347, 124624, -3688, 0, 0, 0, 36, 0, 0),
-("giran03_2321_09", 1, 20245, 112033, 121308, -2392, 0, 0, 0, 36, 0, 0),
-("giran03_2321_09", 1, 20245, 116274, 118588, -3728, 0, 0, 56983, 36, 0, 0),
-("giran03_2321_09", 1, 20245, 116020, 119596, -3688, 0, 0, 19439, 36, 0, 0),
-("giran03_2321_09", 1, 20245, 118256, 118228, -3672, 0, 0, 0, 36, 0, 0),
-("giran03_2321_09", 1, 20245, 118356, 118406, -3632, 0, 0, 0, 36, 0, 0),
-("giran03_2321_09", 1, 20245, 119482, 116901, -3728, 0, 0, 1783, 36, 0, 0),
-("giran03_2321_09", 1, 20245, 117597, 116506, -3728, 0, 0, 0, 36, 0, 0),
-("giran03_2321_09", 1, 20245, 116313, 117734, -3728, 0, 0, 48128, 36, 0, 0),
-("giran03_2321_09", 1, 20245, 113000, 109490, -3000, 0, 0, 0, 36, 0, 0),
-("giran03_2321_09", 1, 20245, 112520, 109707, -2984, 0, 0, 57344, 36, 0, 0),
-("giran03_2321_09", 1, 20245, 114375, 112576, -3096, 0, 0, 10939, 36, 0, 0),
-("giran03_2321_09", 1, 20245, 114141, 111554, -3128, 0, 0, 0, 36, 0, 0),
-("giran03_2321_09", 1, 20245, 108925, 111783, -3072, 0, 0, 29028, 36, 0, 0),
-("giran03_2321_09", 1, 20245, 111817, 112084, -2776, 0, 0, 54734, 36, 0, 0),
-("giran03_2321_09", 1, 20245, 112034, 112442, -2776, 0, 0, 10859, 36, 0, 0),
-("giran03_2321_09", 1, 20245, 114435, 110187, -3008, 0, 0, 65309, 36, 0, 0),
-("giran03_2321_09", 1, 20245, 111659, 110431, -3048, 0, 0, 58322, 36, 0, 0),
-("giran03_2321_09", 1, 20245, 110452, 111422, -3160, 0, 0, 61212, 36, 0, 0),
-("giran03_2321_09", 1, 20245, 112100, 115278, -3224, 0, 0, 0, 36, 0, 0),
-("giran03_2321_09", 1, 20245, 112839, 115563, -3232, 0, 0, 32489, 36, 0, 0),
-("giran03_2321_09", 1, 20245, 112200, 115100, -3200, 0, 0, 0, 36, 0, 0),
-("giran03_2321_09", 1, 20245, 112610, 113094, -2776, 0, 0, 0, 36, 0, 0),
-("giran03_2321_09", 1, 20245, 116079, 114326, -3064, 0, 0, 0, 36, 0, 0),
-("giran03_2321_09", 1, 20245, 116047, 123024, -3216, 0, 0, 3692, 36, 0, 0),
-("giran03_2321_09", 1, 20245, 118524, 122673, -3056, 0, 0, 63430, 36, 0, 0),
--- Cave Keeper
-("giran03_2321_15", 1, 20246, 122483, 111473, -3808, 0, 0, 51813, 36, 0, 0),
-("giran03_2321_15", 1, 20246, 121073, 113385, -3752, 0, 0, 0, 36, 0, 0),
-("giran03_2321_15", 1, 20246, 126775, 115009, -3728, 0, 0, 1469, 36, 0, 0),
-("giran03_2321_15", 1, 20246, 121447, 112925, -3808, 0, 0, 809, 36, 0, 0),
-("giran03_2321_15", 1, 20246, 120669, 112778, -3696, 0, 0, 35199, 36, 0, 0),
-("giran03_2321_15", 1, 20246, 121238, 114987, -3656, 0, 0, 32522, 36, 0, 0),
-("giran03_2321_15", 1, 20246, 127052, 113045, -3616, 0, 0, 28246, 36, 0, 0),
-("giran03_2321_15", 1, 20246, 126516, 114417, -3624, 0, 0, 59905, 36, 0, 0),
-("giran03_2321_15", 1, 20246, 128664, 115789, -3760, 0, 0, 11642, 36, 0, 0),
-("giran03_2321_15", 1, 20246, 125016, 110216, -3104, 0, 0, 0, 36, 0, 0),
-("giran03_2321_15", 1, 20246, 125307, 111303, -3144, 0, 0, 59478, 36, 0, 0),
-("giran03_2321_15", 1, 20246, 125559, 110863, -3089, 0, 0, 0, 36, 0, 0),
-("giran03_2321_15", 1, 20246, 122994, 108930, -2976, 0, 0, 28870, 36, 0, 0),
-("giran03_2321_15", 1, 20246, 122698, 108377, -3040, 0, 0, 37587, 36, 0, 0),
-("giran03_2321_15", 1, 20246, 121924, 107841, -2944, 0, 0, 39524, 36, 0, 0),
-("giran03_2321_15", 1, 20246, 120668, 107881, -2960, 0, 0, 56291, 36, 0, 0),
-("giran03_2321_15", 1, 20246, 120371, 108717, -2944, 0, 0, 50849, 36, 0, 0),
-("giran03_2321_15", 1, 20246, 120481, 110154, -3032, 0, 0, 64541, 36, 0, 0),
-("giran03_2321_15", 1, 20246, 120082, 109073, -2936, 0, 0, 45537, 36, 0, 0),
-("giran03_2321_15", 1, 20246, 119749, 110978, -3048, 0, 0, 57208, 36, 0, 0),
-("giran03_2321_15", 1, 20246, 116645, 109948, -3048, 0, 0, 42176, 36, 0, 0),
-("giran03_2321_15", 1, 20246, 123728, 119725, -3152, 0, 0, 3492, 36, 0, 0),
-("giran03_2321_15", 1, 20246, 119806, 121556, -2992, 0, 0, 48762, 36, 0, 0),
-("giran03_2321_15", 1, 20246, 122761, 119694, -3168, 0, 0, 57344, 36, 0, 0),
-("giran03_2321_15", 1, 20246, 122000, 119104, -3120, 0, 0, 0, 36, 0, 0),
-("giran03_2321_15", 1, 20246, 125405, 118774, -3088, 0, 0, 15345, 36, 0, 0),
 -- Turak Bugbear Warrior
 ("Breka_Str_Gorg_Garden", 1, 20249, 115943, 127542, -2600, 0, 0, 0, 27, 0, 0),
 ("Breka_Str_Gorg_Garden", 1, 20249, 116894, 129588, -3216, 0, 0, 0, 27, 0, 0),
@@ -35907,44 +35794,394 @@ INSERT INTO `spawnlist` VALUES
 ("Breka_Str_Gorg_Garden", 1, 20249, 122745, 130414, -3328, 0, 0, 0, 27, 0, 0),
 ("Breka_Str_Gorg_Garden", 1, 20249, 121917, 129770, -3384, 0, 0, 0, 27, 0, 0),
 -- Fettered Soul
-("giran06_2221_14", 1, 20552, 99717, 98515, -3693, 0, 0, 36767, 22, 0, 0),
-("giran06_2221_14", 1, 20552, 99453, 101420, -3501, 0, 0, 21387, 22, 0, 0),
-("giran06_2221_14", 1, 20552, 98445, 99257, -3640, 0, 0, 56919, 22, 0, 0),
-("giran06_2221_14", 1, 20552, 101004, 104062, -3520, 0, 0, 0, 22, 0, 0),
+("death_pass", 1, 20552, 98804, 100268, -3568, 0, 0, 38058, 60, 0, 0),
+("death_pass", 1, 20552, 99723, 102322, -3400, 0, 0, 31181, 60, 0, 0),
+("death_pass", 1, 20552, 98888, 100421, -3560, 0, 0, 28510, 60, 0, 0),
+("death_pass", 1, 20552, 101404, 104305, -3320, 0, 0, 43804, 60, 0, 0),
+("death_pass", 1, 20552, 101666, 105351, -3184, 0, 0, 31727, 60, 0, 0),
+("death_pass", 1, 20552, 102508, 102463, -3544, 0, 0, 32975, 60, 0, 0),
+("death_pass", 1, 20552, 103597, 100380, -3488, 0, 0, 63749, 60, 0, 0),
+("death_pass", 1, 20552, 104757, 102410, -3592, 0, 0, 26777, 60, 0, 0),
 -- Windsus
-("giran06_2221_14", 1, 20553, 99843, 102818, -3346, 0, 0, 19747, 22, 0, 0),
-("giran06_2221_14", 1, 20553, 100396, 101129, -3592, 0, 0, 17049, 22, 0, 0),
-("giran06_2221_14", 1, 20553, 101205, 104062, -3520, 0, 0, 0, 22, 0, 0),
+("death_pass", 1, 20553, 99742, 101844, -3472, 0, 0, 31498, 60, 0, 0),
+("death_pass", 1, 20553, 99193, 102108, -3424, 0, 0, 45585, 60, 0, 0),
+("death_pass", 1, 20553, 98878, 103595, -3144, 0, 0, 64415, 60, 0, 0),
+("death_pass", 1, 20553, 100039, 101639, -3496, 0, 0, 43245, 60, 0, 0),
+("death_pass", 1, 20553, 100648, 101055, -3600, 0, 0, 6636, 60, 0, 0),
+("death_pass", 1, 20553, 101289, 100648, -3608, 0, 0, 6411, 60, 0, 0),
+("death_pass", 1, 20553, 102193, 105999, -3144, 0, 0, 56545, 60, 0, 0),
 -- Grandis
-("giran06_2221_14", 1, 20554, 102154, 98449, -3512, 0, 0, 53298, 22, 0, 0),
-("giran06_2221_14", 1, 20554, 101625, 99646, -3640, 0, 0, 56337, 22, 0, 0),
-("giran06_2221_14", 1, 20554, 99660, 99664, -3647, 0, 0, 3949, 22, 0, 0),
-("giran06_2221_14", 1, 20554, 100992, 98902, -3708, 0, 0, 29011, 22, 0, 0),
-("giran06_2221_14", 1, 20554, 101219, 104723, -3220, 0, 0, 43064, 22, 0, 0),
--- Dragon Bearer Chief
-("giran03_2221_p05", 1, 20758, 101893, 118089, -3661, 0, 0, 40490, 60, 0, 0),
-("giran03_2221_p05", 1, 20758, 102810, 122327, -3660, 0, 0, 17787, 60, 0, 0),
-("giran03_2221_p05", 1, 20758, 104589, 122240, -3792, 0, 0, 42329, 60, 0, 0),
-("giran03_2221_p05", 1, 20758, 106268, 120501, -3682, 0, 0, 44301, 60, 0, 0),
-("giran03_2221_p05", 1, 20758, 110796, 123030, -3697, 0, 0, 62552, 60, 0, 0),
-("giran03_2221_p05", 1, 20758, 109311, 122405, -3677, 0, 0, 28132, 60, 0, 0),
-("giran03_2221_p05", 1, 20758, 109865, 124435, -3646, 0, 0, 20769, 60, 0, 0),
-("giran03_2221_p05", 1, 20758, 118446, 116831, -3725, 0, 0, 22210, 60, 0, 0),
-("giran03_2221_p05", 1, 20758, 120521, 113457, -3712, 0, 0, 25530, 60, 0, 0),
-("giran03_2221_p05", 1, 20758, 120291, 114742, -3657, 0, 0, 39200, 60, 0, 0),
-("giran03_2221_p05", 1, 20758, 122519, 116168, -3607, 0, 0, 8157, 60, 0, 0),
-("giran03_2221_p05", 1, 20758, 129513, 115165, -3803, 0, 0, 10426, 60, 0, 0),
-("giran03_2221_p05", 1, 20758, 127410, 114163, -3513, 0, 0, 30171, 60, 0, 0),
-("giran03_2221_p05", 1, 20758, 125080, 109474, -3059, 0, 0, 6050, 60, 0, 0),
-("giran03_2221_p05", 1, 20758, 121738, 109408, -2904, 0, 0, 16509, 60, 0, 0),
-("giran03_2221_p05", 1, 20758, 123751, 108606, -3013, 0, 0, 1191, 60, 0, 0),
-("giran03_2221_p05", 1, 20758, 120351, 109285, -2996, 0, 0, 0, 60, 0, 0),
-("giran03_2221_p05", 1, 20758, 114079, 110477, -3053, 0, 0, 19541, 60, 0, 0),
-("giran03_2221_p05", 1, 20758, 120774, 122293, -2962, 0, 0, 13396, 60, 0, 0),
-("giran03_2221_p05", 1, 20758, 126260, 117879, -3079, 0, 0, 53269, 60, 0, 0),
-("giran03_2221_p05", 1, 20758, 121359, 120400, -3046, 0, 0, 18562, 60, 0, 0),
+("death_pass", 1, 20554, 98845, 98804, -3656, 0, 0, 1397, 60, 0, 0),
+("death_pass", 1, 20554, 99290, 98891, -3664, 0, 0, 58743, 60, 0, 0),
+("death_pass", 1, 20554, 100079, 100930, -3584, 0, 0, 60353, 60, 0, 0),
+("death_pass", 1, 20554, 102629, 103547, -3512, 0, 0, 27938, 60, 0, 0),
+("death_pass", 1, 20554, 102635, 100050, -3552, 0, 0, 46774, 60, 0, 0),
+("death_pass", 1, 20554, 102734, 106295, -3160, 0, 0, 9490, 60, 0, 0),
+("death_pass", 1, 20554, 105452, 101542, -3296, 0, 0, 27749, 60, 0, 0),
 -- Treasure Chest
 ("Breka_Str_Gorg_Garden", 1, 21805, 125229, 129448, -2936, 0, 0, 0, 60, 0, 0),
+-- Drakos Warrior
+("dragon_valley", 1, 22822, 110058, 111108, -3112, 0, 0, 37246, 60, 0, 0),
+("dragon_valley", 1, 22822, 112267, 109706, -2984, 0, 0, 35646, 60, 0, 0),
+("dragon_valley", 1, 22822, 111195, 110538, -3056, 0, 0, 51658, 60, 0, 0),
+("dragon_valley", 1, 22822, 112662, 109861, -2976, 0, 0, 27873, 60, 0, 0),
+("dragon_valley", 1, 22822, 114190, 112505, -3096, 0, 0, 18973, 60, 0, 0),
+("dragon_valley", 1, 22822, 118328, 109680, -2944, 0, 0, 17374, 60, 0, 0),
+("dragon_valley", 1, 22822, 117054, 110588, -2984, 0, 0, 62291, 60, 0, 0),
+("dragon_valley", 1, 22822, 117510, 111040, -3048, 0, 0, 45986, 60, 0, 0),
+("dragon_valley", 1, 22822, 120708, 108088, -2960, 0, 0, 60432, 60, 0, 0),
+("dragon_valley", 1, 22822, 119213, 110259, -3032, 0, 0, 41095, 60, 0, 0),
+("dragon_valley", 1, 22822, 119904, 108475, -2960, 0, 0, 23399, 60, 0, 0),
+("dragon_valley", 1, 22822, 119807, 109227, -2944, 0, 0, 7294, 60, 0, 0),
+("dragon_valley", 1, 22822, 120304, 110514, -3056, 0, 0, 60181, 60, 0, 0),
+("dragon_valley", 1, 22822, 121215, 107989, -2984, 0, 0, 64871, 60, 0, 0),
+("dragon_valley", 1, 22822, 122159, 107708, -2936, 0, 0, 40258, 60, 0, 0),
+("dragon_valley", 1, 22822, 121934, 109097, -2912, 0, 0, 53339, 60, 0, 0),
+("dragon_valley", 1, 22822, 123510, 108281, -3016, 0, 0, 53989, 60, 0, 0),
+("dragon_valley", 1, 22822, 123849, 108928, -3040, 0, 0, 17264, 60, 0, 0),
+("dragon_valley", 1, 22822, 125011, 109658, -3072, 0, 0, 2105, 60, 0, 0),
+("dragon_valley", 1, 22822, 124541, 108644, -2992, 0, 0, 49295, 60, 0, 0),
+-- Drakos Assassin
+("dragon_valley", 1, 22823, 103816, 116380, -3056, 0, 0, 62746, 60, 0, 0),
+("dragon_valley", 1, 22823, 103876, 116247, -3056, 0, 0, 3789, 60, 0, 0),
+("dragon_valley", 1, 22823, 105626, 117884, -3024, 0, 0, 0, 60, 0, 0),
+("dragon_valley", 1, 22823, 104774, 117220, -3056, 0, 0, 0, 60, 0, 0),
+("dragon_valley", 1, 22823, 104694, 117187, -3056, 0, 0, 6043, 60, 0, 0),
+("dragon_valley", 1, 22823, 106539, 117799, -3024, 0, 0, 32538, 60, 0, 0),
+("dragon_valley", 1, 22823, 108816, 116843, -3056, 0, 0, 19317, 60, 0, 0),
+("dragon_valley", 1, 22823, 109031, 116771, -3056, 0, 0, 23769, 60, 0, 0),
+("dragon_valley", 1, 22823, 109499, 116241, -3088, 0, 0, 17028, 60, 0, 0),
+("dragon_valley", 1, 22823, 108384, 117497, -3056, 0, 0, 61496, 60, 0, 0),
+("dragon_valley", 1, 22823, 109052, 118147, -3032, 0, 0, 12631, 60, 0, 0),
+("dragon_valley", 1, 22823, 108785, 118194, -3104, 0, 0, 40996, 60, 0, 0),
+("dragon_valley", 1, 22823, 108790, 118195, -3104, 0, 0, 0, 60, 0, 0),
+("dragon_valley", 1, 22823, 109023, 118387, -3128, 0, 0, 14062, 60, 0, 0),
+("dragon_valley", 1, 22823, 108926, 118087, -3048, 0, 0, 52532, 60, 0, 0),
+("dragon_valley", 1, 22823, 109090, 113613, -3032, 0, 0, 19911, 60, 0, 0),
+("dragon_valley", 1, 22823, 109718, 114499, -3040, 0, 0, 13900, 60, 0, 0),
+("dragon_valley", 1, 22823, 116345, 109735, -3048, 0, 0, 42271, 60, 0, 0),
+("dragon_valley", 1, 22823, 116038, 110008, -3032, 0, 0, 39284, 60, 0, 0),
+("dragon_valley", 1, 22823, 116994, 110034, -2976, 0, 0, 19828, 60, 0, 0),
+("dragon_valley", 1, 22823, 116653, 110353, -3000, 0, 0, 43573, 60, 0, 0),
+("dragon_valley", 1, 22823, 117466, 109877, -2936, 0, 0, 60435, 60, 0, 0),
+("dragon_valley", 1, 22823, 117692, 110919, -3040, 0, 0, 41301, 60, 0, 0),
+("dragon_valley", 1, 22823, 117176, 111196, -3032, 0, 0, 24732, 60, 0, 0),
+("dragon_valley", 1, 22823, 117678, 111555, -3056, 0, 0, 24785, 60, 0, 0),
+("dragon_valley", 1, 22823, 117490, 111037, -3048, 0, 0, 56664, 60, 0, 0),
+("dragon_valley", 1, 22823, 117981, 110897, -3040, 0, 0, 58684, 60, 0, 0),
+("dragon_valley", 1, 22823, 117479, 111139, -3056, 0, 0, 51546, 60, 0, 0),
+("dragon_valley", 1, 22823, 120949, 107678, -2968, 0, 0, 3402, 60, 0, 0),
+("dragon_valley", 1, 22823, 119798, 110152, -3056, 0, 0, 40069, 60, 0, 0),
+("dragon_valley", 1, 22823, 118852, 109991, -2960, 0, 0, 11015, 60, 0, 0),
+("dragon_valley", 1, 22823, 119271, 109299, -2984, 0, 0, 743, 60, 0, 0),
+("dragon_valley", 1, 22823, 120111, 110497, -3056, 0, 0, 1869, 60, 0, 0),
+("dragon_valley", 1, 22823, 120275, 110644, -3056, 0, 0, 12248, 60, 0, 0),
+("dragon_valley", 1, 22823, 121724, 107503, -2992, 0, 0, 63215, 60, 0, 0),
+("dragon_valley", 1, 22823, 120832, 108202, -2960, 0, 0, 24819, 60, 0, 0),
+("dragon_valley", 1, 22823, 123330, 108239, -3032, 0, 0, 743, 60, 0, 0),
+("dragon_valley", 1, 22823, 124538, 109478, -3096, 0, 0, 49559, 60, 0, 0),
+("dragon_valley", 1, 22823, 125053, 110303, -3096, 0, 0, 62368, 60, 0, 0),
+("dragon_valley", 1, 22823, 124966, 109947, -3096, 0, 0, 63293, 60, 0, 0),
+("dragon_valley", 1, 22823, 124992, 109702, -3080, 0, 0, 10993, 60, 0, 0),
+("dragon_valley", 1, 22823, 124264, 108431, -2952, 0, 0, 37605, 60, 0, 0),
+("dragon_valley", 1, 22823, 124624, 110916, -3112, 0, 0, 57816, 60, 0, 0),
+("dragon_valley", 1, 22823, 124936, 110884, -3128, 0, 0, 43592, 60, 0, 0),
+("dragon_valley", 1, 22823, 125476, 111960, -3192, 0, 0, 62746, 60, 0, 0),
+("dragon_valley", 1, 22823, 126213, 112012, -3280, 0, 0, 56873, 60, 0, 0),
+("dragon_valley", 1, 22823, 126624, 112939, -3536, 0, 0, 2198, 60, 0, 0),
+("dragon_valley", 1, 22823, 125701, 112925, -2480, 0, 0, 20021, 60, 0, 0),
+-- Drakos Guardian
+("dragon_valley", 1, 22824, 111557, 113013, -2776, 0, 0, 62946, 60, 0, 0),
+("dragon_valley", 1, 22824, 111635, 112947, -2776, 0, 0, 61884, 60, 0, 0),
+("dragon_valley", 1, 22824, 110653, 113012, -2792, 0, 0, 22020, 60, 0, 0),
+("dragon_valley", 1, 22824, 110836, 112896, -2784, 0, 0, 18149, 60, 0, 0),
+("dragon_valley", 1, 22824, 110768, 112586, -2824, 0, 0, 49088, 60, 0, 0),
+("dragon_valley", 1, 22824, 110622, 112779, -2832, 0, 0, 40261, 60, 0, 0),
+("dragon_valley", 1, 22824, 112370, 115501, -3208, 0, 0, 30501, 60, 0, 0),
+("dragon_valley", 1, 22824, 111985, 116318, -3056, 0, 0, 15344, 60, 0, 0),
+("dragon_valley", 1, 22824, 112813, 115325, -3224, 0, 0, 59413, 60, 0, 0),
+("dragon_valley", 1, 22824, 112730, 115113, -3216, 0, 0, 55286, 60, 0, 0),
+("dragon_valley", 1, 22824, 111720, 116343, -3048, 0, 0, 36652, 60, 0, 0),
+("dragon_valley", 1, 22824, 111754, 116318, -3056, 0, 0, 35925, 60, 0, 0),
+("dragon_valley", 1, 22824, 111952, 116273, -3056, 0, 0, 50195, 60, 0, 0),
+("dragon_valley", 1, 22824, 112837, 117916, -3088, 0, 0, 48565, 60, 0, 0),
+("dragon_valley", 1, 22824, 112866, 117876, -3096, 0, 0, 51550, 60, 0, 0),
+("dragon_valley", 1, 22824, 112286, 118520, -3080, 0, 0, 6303, 60, 0, 0),
+("dragon_valley", 1, 22824, 111897, 117845, -3008, 0, 0, 9231, 60, 0, 0),
+("dragon_valley", 1, 22824, 112027, 116905, -2992, 0, 0, 27988, 60, 0, 0),
+("dragon_valley", 1, 22824, 112711, 118440, -3080, 0, 0, 62578, 60, 0, 0),
+("dragon_valley", 1, 22824, 110559, 112834, -2832, 0, 0, 35412, 60, 0, 0),
+("dragon_valley", 1, 22824, 110821, 112859, -2792, 0, 0, 23709, 60, 0, 0),
+("dragon_valley", 1, 22824, 111419, 112771, -2776, 0, 0, 62647, 60, 0, 0),
+("dragon_valley", 1, 22824, 112240, 111585, -2744, 0, 0, 42359, 60, 0, 0),
+("dragon_valley", 1, 22824, 112107, 111731, -2768, 0, 0, 41816, 60, 0, 0),
+("dragon_valley", 1, 22824, 110825, 112408, -2832, 0, 0, 40383, 60, 0, 0),
+("dragon_valley", 1, 22824, 110787, 112307, -2824, 0, 0, 36143, 60, 0, 0),
+("dragon_valley", 1, 22824, 110938, 112292, -2792, 0, 0, 16068, 60, 0, 0),
+("dragon_valley", 1, 22824, 110828, 110112, -3008, 0, 0, 0, 60, 0, 0),
+("dragon_valley", 1, 22824, 114299, 109866, -2992, 0, 0, 35841, 60, 0, 0),
+("dragon_valley", 1, 22824, 114031, 110029, -2992, 0, 0, 53726, 60, 0, 0),
+("dragon_valley", 1, 22824, 114154, 109849, -2984, 0, 0, 53742, 60, 0, 0),
+("dragon_valley", 1, 22824, 113944, 109843, -2976, 0, 0, 53724, 60, 0, 0),
+("dragon_valley", 1, 22824, 114428, 112744, -3056, 0, 0, 9335, 60, 0, 0),
+("dragon_valley", 1, 22824, 113001, 111555, -2752, 0, 0, 63261, 60, 0, 0),
+("dragon_valley", 1, 22824, 112898, 111587, -2752, 0, 0, 64876, 60, 0, 0),
+("dragon_valley", 1, 22824, 112820, 111620, -2728, 0, 0, 49953, 60, 0, 0),
+("dragon_valley", 1, 22824, 114350, 112887, -3056, 0, 0, 20810, 60, 0, 0),
+("dragon_valley", 1, 22824, 114599, 112953, -3032, 0, 0, 20890, 60, 0, 0),
+("dragon_valley", 1, 22824, 114494, 112724, -3040, 0, 0, 6647, 60, 0, 0),
+("dragon_valley", 1, 22824, 114425, 112563, -3064, 0, 0, 1816, 60, 0, 0),
+("dragon_valley", 1, 22824, 114421, 110007, -3008, 0, 0, 43118, 60, 0, 0),
+("dragon_valley", 1, 22824, 114638, 109622, -3008, 0, 0, 37436, 60, 0, 0),
+("dragon_valley", 1, 22824, 114648, 109320, -2960, 0, 0, 37764, 60, 0, 0),
+("dragon_valley", 1, 22824, 114515, 110126, -2992, 0, 0, 36843, 60, 0, 0),
+("dragon_valley", 1, 22824, 114672, 109640, -3008, 0, 0, 40778, 60, 0, 0),
+("dragon_valley", 1, 22824, 114450, 112856, -3040, 0, 0, 20901, 60, 0, 0),
+("dragon_valley", 1, 22824, 112655, 117857, -3072, 0, 0, 43116, 60, 0, 0),
+("dragon_valley", 1, 22824, 114422, 115128, -3208, 0, 0, 14715, 60, 0, 0),
+("dragon_valley", 1, 22824, 115885, 114909, -3096, 0, 0, 28556, 60, 0, 0),
+("dragon_valley", 1, 22824, 116314, 114509, -3072, 0, 0, 238, 60, 0, 0),
+("dragon_valley", 1, 22824, 114563, 115701, -3256, 0, 0, 9891, 60, 0, 0),
+("dragon_valley", 1, 22824, 115191, 115437, -3176, 0, 0, 5367, 60, 0, 0),
+("dragon_valley", 1, 22824, 116273, 114504, -3072, 0, 0, 16384, 60, 0, 0),
+("dragon_valley", 1, 22824, 115890, 115009, -3088, 0, 0, 13321, 60, 0, 0),
+("dragon_valley", 1, 22824, 114342, 115185, -3208, 0, 0, 33457, 60, 0, 0),
+("dragon_valley", 1, 22824, 113733, 116523, -3168, 0, 0, 42804, 60, 0, 0),
+("dragon_valley", 1, 22824, 114141, 116178, -3200, 0, 0, 21474, 60, 0, 0),
+("dragon_valley", 1, 22824, 113682, 116705, -3144, 0, 0, 60498, 60, 0, 0),
+("dragon_valley", 1, 22824, 113636, 116510, -3176, 0, 0, 54356, 60, 0, 0),
+("dragon_valley", 1, 22824, 112979, 116209, -3152, 0, 0, 45777, 60, 0, 0),
+("dragon_valley", 1, 22824, 113849, 116494, -3160, 0, 0, 59187, 60, 0, 0),
+("dragon_valley", 1, 22824, 113825, 116299, -3200, 0, 0, 52854, 60, 0, 0),
+("dragon_valley", 1, 22824, 114201, 115093, -3208, 0, 0, 33450, 60, 0, 0),
+("dragon_valley", 1, 22824, 114329, 115322, -3232, 0, 0, 33432, 60, 0, 0),
+("dragon_valley", 1, 22824, 113017, 116563, -3104, 0, 0, 2262, 60, 0, 0),
+("dragon_valley", 1, 22824, 113936, 116512, -3168, 0, 0, 65333, 60, 0, 0),
+("dragon_valley", 1, 22824, 112748, 115406, -3224, 0, 0, 57680, 60, 0, 0),
+("dragon_valley", 1, 22824, 114632, 115362, -3240, 0, 0, 6953, 60, 0, 0),
+("dragon_valley", 1, 22824, 112798, 115652, -3216, 0, 0, 60500, 60, 0, 0),
+("dragon_valley", 1, 22824, 112429, 115960, -3176, 0, 0, 17653, 60, 0, 0),
+("dragon_valley", 1, 22824, 114356, 114851, -3160, 0, 0, 32419, 60, 0, 0),
+("dragon_valley", 1, 22824, 112958, 115157, -3216, 0, 0, 58980, 60, 0, 0),
+-- Giant Noxious Scorpion
+("dragon_valley", 1, 22825, 105679, 123253, -3624, 0, 0, 6109, 60, 0, 0),
+("dragon_valley", 1, 22825, 108419, 122091, -3672, 0, 0, 55286, 60, 0, 0),
+("dragon_valley", 1, 22825, 108402, 120989, -3696, 0, 0, 45797, 60, 0, 0),
+("dragon_valley", 1, 22825, 104407, 122027, -3800, 0, 0, 9104, 60, 0, 0),
+("dragon_valley", 1, 22825, 107969, 122600, -3656, 0, 0, 55339, 60, 0, 0),
+("dragon_valley", 1, 22825, 106094, 122534, -3600, 0, 0, 36526, 60, 0, 0),
+("dragon_valley", 1, 22825, 103552, 123701, -3720, 0, 0, 37662, 60, 0, 0),
+("dragon_valley", 1, 22825, 103235, 121521, -3720, 0, 0, 31740, 60, 0, 0),
+("dragon_valley", 1, 22825, 102352, 121920, -3640, 0, 0, 899, 60, 0, 0),
+("dragon_valley", 1, 22825, 104399, 120906, -3688, 0, 0, 27097, 60, 0, 0),
+("dragon_valley", 1, 22825, 106161, 120048, -3712, 0, 0, 36205, 60, 0, 0),
+("dragon_valley", 1, 22825, 106864, 120370, -3688, 0, 0, 46768, 60, 0, 0),
+-- Noxious Scorpion
+("dragon_valley", 1, 22826, 100503, 111340, -3672, 0, 0, 10584, 60, 0, 0),
+("dragon_valley", 1, 22826, 101112, 110699, -3664, 0, 0, 47157, 60, 0, 0),
+("dragon_valley", 1, 22826, 102071, 114626, -3720, 0, 0, 20685, 60, 0, 0),
+("dragon_valley", 1, 22826, 101735, 114725, -3720, 0, 0, 23401, 60, 0, 0),
+("dragon_valley", 1, 22826, 101788, 113664, -3688, 0, 0, 6542, 60, 0, 0),
+("dragon_valley", 1, 22826, 101634, 112921, -3680, 0, 0, 3912, 60, 0, 0),
+("dragon_valley", 1, 22826, 101776, 112952, -3680, 0, 0, 4463, 60, 0, 0),
+("dragon_valley", 1, 22826, 101697, 113143, -3688, 0, 0, 5470, 60, 0, 0),
+("dragon_valley", 1, 22826, 101418, 113366, -3704, 0, 0, 10615, 60, 0, 0),
+("dragon_valley", 1, 22826, 101417, 113255, -3704, 0, 0, 15150, 60, 0, 0),
+("dragon_valley", 1, 22826, 101596, 113227, -3696, 0, 0, 62423, 60, 0, 0),
+("dragon_valley", 1, 22826, 102836, 111136, -3696, 0, 0, 38784, 60, 0, 0),
+("dragon_valley", 1, 22826, 103282, 111764, -3704, 0, 0, 5180, 60, 0, 0),
+("dragon_valley", 1, 22826, 102161, 112921, -3696, 0, 0, 19922, 60, 0, 0),
+("dragon_valley", 1, 22826, 101598, 115835, -3720, 0, 0, 42952, 60, 0, 0),
+("dragon_valley", 1, 22826, 101637, 115749, -3720, 0, 0, 64568, 60, 0, 0),
+("dragon_valley", 1, 22826, 101395, 115849, -3720, 0, 0, 41906, 60, 0, 0),
+("dragon_valley", 1, 22826, 101105, 118590, -3672, 0, 0, 8964, 60, 0, 0),
+("dragon_valley", 1, 22826, 100753, 117552, -3720, 0, 0, 38713, 60, 0, 0),
+("dragon_valley", 1, 22826, 101087, 116843, -3680, 0, 0, 30191, 60, 0, 0),
+("dragon_valley", 1, 22826, 100898, 117604, -3712, 0, 0, 27130, 60, 0, 0),
+("dragon_valley", 1, 22826, 101416, 116969, -3688, 0, 0, 42364, 60, 0, 0),
+("dragon_valley", 1, 22826, 100958, 117024, -3672, 0, 0, 3681, 60, 0, 0),
+("dragon_valley", 1, 22826, 101728, 117967, -3664, 0, 0, 21910, 60, 0, 0),
+("dragon_valley", 1, 22826, 106155, 120703, -3680, 0, 0, 3097, 60, 0, 0),
+("dragon_valley", 1, 22826, 106258, 120827, -3680, 0, 0, 14073, 60, 0, 0),
+("dragon_valley", 1, 22826, 106095, 120887, -3672, 0, 0, 25850, 60, 0, 0),
+("dragon_valley", 1, 22826, 106308, 120169, -3696, 0, 0, 5078, 60, 0, 0),
+("dragon_valley", 1, 22826, 106268, 120154, -3696, 0, 0, 13636, 60, 0, 0),
+("dragon_valley", 1, 22826, 106111, 120232, -3672, 0, 0, 22986, 60, 0, 0),
+("dragon_valley", 1, 22826, 106133, 120185, -3704, 0, 0, 25373, 60, 0, 0),
+("dragon_valley", 1, 22826, 106810, 120577, -3688, 0, 0, 19901, 60, 0, 0),
+("dragon_valley", 1, 22826, 106939, 120576, -3680, 0, 0, 8801, 60, 0, 0),
+("dragon_valley", 1, 22826, 106911, 120609, -3680, 0, 0, 11746, 60, 0, 0),
+("dragon_valley", 1, 22826, 106660, 120520, -3688, 0, 0, 27960, 60, 0, 0),
+("dragon_valley", 1, 22826, 107007, 120060, -3664, 0, 0, 25907, 60, 0, 0),
+("dragon_valley", 1, 22826, 106887, 120091, -3672, 0, 0, 20564, 60, 0, 0),
+("dragon_valley", 1, 22826, 106725, 120148, -3680, 0, 0, 20256, 60, 0, 0),
+("dragon_valley", 1, 22826, 106389, 122322, -3632, 0, 0, 31058, 60, 0, 0),
+("dragon_valley", 1, 22826, 106289, 122502, -3616, 0, 0, 60047, 60, 0, 0),
+("dragon_valley", 1, 22826, 106238, 121933, -3640, 0, 0, 15548, 60, 0, 0),
+("dragon_valley", 1, 22826, 104513, 120719, -3680, 0, 0, 34230, 60, 0, 0),
+("dragon_valley", 1, 22826, 101283, 121191, -3712, 0, 0, 22872, 60, 0, 0),
+("dragon_valley", 1, 22826, 104346, 120617, -3664, 0, 0, 32965, 60, 0, 0),
+("dragon_valley", 1, 22826, 104244, 122361, -3792, 0, 0, 2618, 60, 0, 0),
+("dragon_valley", 1, 22826, 103872, 122911, -3720, 0, 0, 19901, 60, 0, 0),
+("dragon_valley", 1, 22826, 105835, 121520, -3688, 0, 0, 13618, 60, 0, 0),
+("dragon_valley", 1, 22826, 103341, 121830, -3720, 0, 0, 36205, 60, 0, 0),
+("dragon_valley", 1, 22826, 105362, 124319, -3704, 0, 0, 19875, 60, 0, 0),
+("dragon_valley", 1, 22826, 104938, 124379, -3712, 0, 0, 32703, 60, 0, 0),
+("dragon_valley", 1, 22826, 106477, 122831, -3672, 0, 0, 57284, 60, 0, 0),
+("dragon_valley", 1, 22826, 104269, 121963, -3800, 0, 0, 9386, 60, 0, 0),
+("dragon_valley", 1, 22826, 105598, 121448, -3752, 0, 0, 38515, 60, 0, 0),
+("dragon_valley", 1, 22826, 105669, 121676, -3720, 0, 0, 23912, 60, 0, 0),
+("dragon_valley", 1, 22826, 104334, 120647, -3664, 0, 0, 31800, 60, 0, 0),
+("dragon_valley", 1, 22826, 104507, 120759, -3680, 0, 0, 30961, 60, 0, 0),
+("dragon_valley", 1, 22826, 108412, 122240, -3664, 0, 0, 2120, 60, 0, 0),
+("dragon_valley", 1, 22826, 108178, 122249, -3664, 0, 0, 16978, 60, 0, 0),
+("dragon_valley", 1, 22826, 108633, 121047, -3720, 0, 0, 9763, 60, 0, 0),
+("dragon_valley", 1, 22826, 108326, 122234, -3664, 0, 0, 6776, 60, 0, 0),
+("dragon_valley", 1, 22826, 107916, 122396, -3672, 0, 0, 53359, 60, 0, 0),
+("dragon_valley", 1, 22826, 108402, 121151, -3696, 0, 0, 26779, 60, 0, 0),
+("dragon_valley", 1, 22826, 106911, 122302, -3672, 0, 0, 6454, 60, 0, 0),
+("dragon_valley", 1, 22826, 107954, 122846, -3600, 0, 0, 10364, 60, 0, 0),
+("dragon_valley", 1, 22826, 107900, 122766, -3640, 0, 0, 4098, 60, 0, 0),
+("dragon_valley", 1, 22826, 108117, 122824, -3608, 0, 0, 3014, 60, 0, 0),
+("dragon_valley", 1, 22826, 108032, 122795, -3632, 0, 0, 3338, 60, 0, 0),
+("dragon_valley", 1, 22826, 108342, 122229, -3664, 0, 0, 4554, 60, 0, 0),
+("dragon_valley", 1, 22826, 108073, 122537, -3656, 0, 0, 58483, 60, 0, 0),
+("dragon_valley", 1, 22826, 107750, 122368, -3664, 0, 0, 53359, 60, 0, 0),
+("dragon_valley", 1, 22826, 108371, 121223, -3696, 0, 0, 26972, 60, 0, 0),
+("dragon_valley", 1, 22826, 108627, 121116, -3720, 0, 0, 12404, 60, 0, 0),
+-- Batwing Drake
+("dragon_valley", 1, 22827, 116971, 117493, -3720, 0, 0, 55047, 60, 0, 0),
+("dragon_valley", 1, 22827, 118130, 116744, -3720, 0, 0, 21979, 60, 0, 0),
+("dragon_valley", 1, 22827, 120094, 112302, -3680, 0, 0, 5825, 60, 0, 0),
+("dragon_valley", 1, 22827, 121235, 112475, -3792, 0, 0, 27743, 60, 0, 0),
+("dragon_valley", 1, 22827, 122463, 116802, -3643, 0, 0, 61876, 60, 0, 0),
+("dragon_valley", 1, 22827, 121822, 116945, -3660, 0, 0, 45317, 60, 0, 0),
+("dragon_valley", 1, 22827, 122002, 120804, -3072, 0, 0, 26091, 60, 0, 0),
+("dragon_valley", 1, 22827, 121057, 115665, -3608, 0, 0, 20190, 60, 0, 0),
+("dragon_valley", 1, 22827, 122633, 115445, -3664, 0, 0, 63807, 60, 0, 0),
+("dragon_valley", 1, 22827, 120767, 120259, -3056, 0, 0, 30785, 60, 0, 0),
+("dragon_valley", 1, 22827, 120022, 121944, -3032, 0, 0, 0, 60, 0, 0),
+-- Parasitic Leech
+("dragon_valley", 1, 22828, 126144, 114596, -3688, 0, 0, 26188, 60, 0, 0),
+("dragon_valley", 1, 22828, 125291, 115083, -3720, 0, 0, 58314, 60, 0, 0),
+("dragon_valley", 1, 22828, 124967, 115173, -3720, 0, 0, 24176, 60, 0, 0),
+("dragon_valley", 1, 22828, 125150, 115214, -3720, 0, 0, 10003, 60, 0, 0),
+("dragon_valley", 1, 22828, 125824, 114990, -3720, 0, 0, 44740, 60, 0, 0),
+("dragon_valley", 1, 22828, 125540, 114990, -3720, 0, 0, 14230, 60, 0, 0),
+("dragon_valley", 1, 22828, 125854, 115203, -3720, 0, 0, 49910, 60, 0, 0),
+("dragon_valley", 1, 22828, 125469, 114842, -3720, 0, 0, 49090, 60, 0, 0),
+("dragon_valley", 1, 22828, 126005, 114772, -3712, 0, 0, 59062, 60, 0, 0),
+("dragon_valley", 1, 22828, 125802, 115108, -3720, 0, 0, 1909, 60, 0, 0),
+("dragon_valley", 1, 22828, 123883, 119280, -3128, 0, 0, 40992, 60, 0, 0),
+("dragon_valley", 1, 22828, 123871, 119284, -3128, 0, 0, 41577, 60, 0, 0),
+("dragon_valley", 1, 22828, 123950, 118999, -3120, 0, 0, 54215, 60, 0, 0),
+("dragon_valley", 1, 22828, 121411, 119044, -3104, 0, 0, 22667, 60, 0, 0),
+("dragon_valley", 1, 22828, 121690, 118966, -3112, 0, 0, 60587, 60, 0, 0),
+("dragon_valley", 1, 22828, 121626, 119107, -3112, 0, 0, 9405, 60, 0, 0),
+("dragon_valley", 1, 22828, 120708, 116860, -3632, 0, 0, 44437, 60, 0, 0),
+("dragon_valley", 1, 22828, 120298, 116980, -3616, 0, 0, 28947, 60, 0, 0),
+("dragon_valley", 1, 22828, 120726, 116743, -3632, 0, 0, 56297, 60, 0, 0),
+("dragon_valley", 1, 22828, 120814, 116972, -3624, 0, 0, 22411, 60, 0, 0),
+("dragon_valley", 1, 22828, 118952, 122584, -3056, 0, 0, 9811, 60, 0, 0),
+("dragon_valley", 1, 22828, 118656, 122684, -3056, 0, 0, 21815, 60, 0, 0),
+("dragon_valley", 1, 22828, 118747, 122487, -3024, 0, 0, 44837, 60, 0, 0),
+("dragon_valley", 1, 22828, 118766, 122728, -3056, 0, 0, 36589, 60, 0, 0),
+("dragon_valley", 1, 22828, 116761, 122910, -3120, 0, 0, 55732, 60, 0, 0),
+("dragon_valley", 1, 22828, 117416, 123179, -3096, 0, 0, 22411, 60, 0, 0),
+("dragon_valley", 1, 22828, 118447, 122942, -3056, 0, 0, 65482, 60, 0, 0),
+("dragon_valley", 1, 22828, 117826, 122789, -3088, 0, 0, 39821, 60, 0, 0),
+("dragon_valley", 1, 22828, 116876, 123005, -3120, 0, 0, 53933, 60, 0, 0),
+("dragon_valley", 1, 22828, 117271, 122700, -3112, 0, 0, 17461, 60, 0, 0),
+("dragon_valley", 1, 22828, 117749, 122992, -3112, 0, 0, 50766, 60, 0, 0),
+("dragon_valley", 1, 22828, 120448, 116760, -3640, 0, 0, 31676, 60, 0, 0),
+-- Dragon Tracker of the Valley
+("dragon_valley", 1, 22831, 113097, 110311, -3000, 0, 0, 30799, 60, 0, 0),
+-- Dragon Scout of the Valley
+("dragon_valley", 1, 22832, 113482, 115162, -3200, 0, 0, 64293, 60, 0, 0),
+("dragon_valley", 1, 22832, 122135, 108852, -2961, 0, 0, 36885, 10, 0, 0),
+-- Sand Drake Tracker
+("dragon_valley", 1, 22833, 123997, 108488, -2986, 0, 0, 58062, 60, 0, 0),
+("dragon_valley", 1, 22833, 114890, 115234, -3217, 0, 0, 59684, 60, 0, 0),
+-- Dust Dragon Tracker
+("dragon_valley", 1, 22834, 109329, 115546, -3112, 0, 0, 18198, 60, 0, 0),
+("dragon_valley", 1, 22834, 119960, 109355, -2962, 0, 0, 26432, 10, 0, 0),
+("dragon_valley", 1, 22834, 111281, 110266, -3043, 0, 0, 31060, 10, 0, 0),
+-- Hungry Parasitic Leech
+("dragon_valley", 1, 22860, 122868, 115636, -3632, 0, 0, 26803, 60, 0, 0),
+("dragon_valley", 1, 22860, 122861, 115697, -3632, 0, 0, 21516, 60, 0, 0),
+("dragon_valley", 1, 22860, 122845, 115694, -3632, 0, 0, 22621, 60, 0, 0),
+("dragon_valley", 1, 22860, 122833, 115674, -3632, 0, 0, 25110, 60, 0, 0),
+("dragon_valley", 1, 22860, 122828, 115684, -3632, 0, 0, 26188, 60, 0, 0),
+("dragon_valley", 1, 22860, 122848, 115659, -3632, 0, 0, 25581, 60, 0, 0),
+("dragon_valley", 1, 22860, 122851, 115714, -3632, 0, 0, 22199, 60, 0, 0),
+("dragon_valley", 1, 22860, 122886, 115702, -3632, 0, 0, 20494, 60, 0, 0),
+("dragon_valley", 1, 22860, 122893, 115694, -3632, 0, 0, 18405, 60, 0, 0),
+("dragon_valley", 1, 22860, 122860, 115660, -3632, 0, 0, 3968, 60, 0, 0),
+("dragon_valley", 1, 22860, 122870, 115643, -3632, 0, 0, 22988, 60, 0, 0),
+("dragon_valley", 1, 22860, 122866, 115705, -3632, 0, 0, 21645, 60, 0, 0),
+("dragon_valley", 1, 22860, 122877, 115671, -3632, 0, 0, 22069, 60, 0, 0),
+("dragon_valley", 1, 22860, 122864, 115732, -3632, 0, 0, 18293, 60, 0, 0),
+("dragon_valley", 1, 22860, 117871, 118926, -3656, 0, 0, 57501, 60, 0, 0),
+("dragon_valley", 1, 22860, 117793, 118898, -3664, 0, 0, 57570, 60, 0, 0),
+("dragon_valley", 1, 22860, 117860, 118648, -3680, 0, 0, 57300, 60, 0, 0),
+("dragon_valley", 1, 22860, 116883, 119262, -3688, 0, 0, 27846, 60, 0, 0),
+("dragon_valley", 1, 22860, 117361, 120131, -3664, 0, 0, 32435, 60, 0, 0),
+("dragon_valley", 1, 22860, 117383, 119967, -3648, 0, 0, 33195, 60, 0, 0),
+("dragon_valley", 1, 22860, 116869, 119588, -3672, 0, 0, 40734, 60, 0, 0),
+("dragon_valley", 1, 22860, 116670, 119611, -3696, 0, 0, 41939, 60, 0, 0),
+("dragon_valley", 1, 22860, 116893, 119745, -3688, 0, 0, 41605, 60, 0, 0),
+("dragon_valley", 1, 22860, 115038, 119811, -3688, 0, 0, 25828, 60, 0, 0),
+("dragon_valley", 1, 22860, 115071, 119793, -3696, 0, 0, 23905, 60, 0, 0),
+("dragon_valley", 1, 22860, 115116, 119725, -3688, 0, 0, 56874, 60, 0, 0),
+("dragon_valley", 1, 22860, 115078, 119751, -3696, 0, 0, 24174, 60, 0, 0),
+("dragon_valley", 1, 22860, 115095, 119748, -3688, 0, 0, 26870, 60, 0, 0),
+("dragon_valley", 1, 22860, 115105, 119759, -3688, 0, 0, 58590, 60, 0, 0),
+("dragon_valley", 1, 22860, 115102, 119771, -3688, 0, 0, 23970, 60, 0, 0),
+("dragon_valley", 1, 22860, 115102, 119760, -3688, 0, 0, 25715, 60, 0, 0),
+("dragon_valley", 1, 22860, 115078, 119762, -3696, 0, 0, 28184, 60, 0, 0),
+("dragon_valley", 1, 22860, 115022, 119814, -3688, 0, 0, 26599, 60, 0, 0),
+("dragon_valley", 1, 22860, 115146, 119687, -3688, 0, 0, 54626, 60, 0, 0),
+("dragon_valley", 1, 22860, 115205, 119669, -3680, 0, 0, 57210, 60, 0, 0),
+("dragon_valley", 1, 22860, 115077, 119726, -3696, 0, 0, 29591, 60, 0, 0),
+("dragon_valley", 1, 22860, 115178, 119686, -3680, 0, 0, 58420, 60, 0, 0),
+("dragon_valley", 1, 22860, 118097, 118001, -3688, 0, 0, 63720, 60, 0, 0),
+("dragon_valley", 1, 22860, 118106, 118008, -3688, 0, 0, 0, 60, 0, 0),
+("dragon_valley", 1, 22860, 118119, 118033, -3672, 0, 0, 9538, 60, 0, 0),
+("dragon_valley", 1, 22860, 118104, 118032, -3672, 0, 0, 1722, 60, 0, 0),
+("dragon_valley", 1, 22860, 117991, 117959, -3704, 0, 0, 38277, 60, 0, 0),
+("dragon_valley", 1, 22860, 117991, 118002, -3704, 0, 0, 15905, 60, 0, 0),
+("dragon_valley", 1, 22860, 118027, 117966, -3704, 0, 0, 9614, 60, 0, 0),
+("dragon_valley", 1, 22860, 118025, 117988, -3704, 0, 0, 9825, 60, 0, 0),
+("dragon_valley", 1, 22860, 118002, 117960, -3704, 0, 0, 0, 60, 0, 0),
+("dragon_valley", 1, 22860, 118098, 117989, -3688, 0, 0, 7384, 60, 0, 0),
+("dragon_valley", 1, 22860, 118090, 118006, -3688, 0, 0, 42553, 60, 0, 0),
+("dragon_valley", 1, 22860, 118034, 118015, -3696, 0, 0, 43827, 60, 0, 0),
+("dragon_valley", 1, 22860, 118149, 118041, -3680, 0, 0, 4022, 60, 0, 0),
+("dragon_valley", 1, 22860, 118081, 117975, -3696, 0, 0, 3898, 60, 0, 0),
+-- Hard Noxious Scorpion
+("dragon_valley", 1, 22861, 103663, 123497, -3720, 0, 0, 15548, 60, 0, 0),
+("dragon_valley", 1, 22861, 109714, 121003, -3720, 0, 0, 58928, 60, 0, 0),
+("dragon_valley", 1, 22861, 108630, 122761, -3648, 0, 0, 22255, 60, 0, 0),
+("dragon_valley", 1, 22861, 110346, 121414, -3720, 0, 0, 13765, 60, 0, 0),
+("dragon_valley", 1, 22861, 105879, 122520, -3600, 0, 0, 61998, 60, 0, 0),
+("dragon_valley", 1, 22861, 109828, 121647, -3712, 0, 0, 8551, 60, 0, 0),
+("dragon_valley", 1, 22861, 101387, 119500, -3496, 0, 0, 23018, 60, 0, 0),
+("dragon_valley", 1, 22861, 102372, 120690, -3568, 0, 0, 36347, 60, 0, 0),
+("dragon_valley", 1, 22861, 101485, 119746, -3520, 0, 0, 34628, 60, 0, 0),
+-- Drakos Hunter
+("dragon_valley", 1, 22862, 108416, 116886, -3056, 0, 0, 27536, 60, 0, 0),
+("dragon_valley", 1, 22862, 108973, 115872, -3096, 0, 0, 39165, 60, 0, 0),
+("dragon_valley", 1, 22862, 109197, 115301, -3104, 0, 0, 35841, 60, 0, 0),
+("dragon_valley", 1, 22862, 109020, 117143, -3048, 0, 0, 25271, 60, 0, 0),
+("dragon_valley", 1, 22862, 108654, 113360, -3032, 0, 0, 35181, 60, 0, 0),
+("dragon_valley", 1, 22862, 109570, 113788, -3048, 0, 0, 11784, 60, 0, 0),
+("dragon_valley", 1, 22862, 115520, 110105, -3024, 0, 0, 17266, 60, 0, 0),
+("dragon_valley", 1, 22862, 115797, 109969, -3032, 0, 0, 20810, 60, 0, 0),
+("dragon_valley", 1, 22862, 124639, 111106, -3112, 0, 0, 51410, 60, 0, 0),
+("dragon_valley", 1, 22862, 125589, 110960, -3096, 0, 0, 4719, 60, 0, 0),
+("dragon_valley", 1, 22862, 125203, 110509, -3080, 0, 0, 39888, 60, 0, 0),
+-- Blackdagger Wing
+("dragon_valley", 1, 25721, 121876, 114727, -3728, 0, 0, 19188, 60, 0, 0),
 -- Stenoa Gorgon Queen
 ("giran01_qm2321_01", 1, 27108, 116288, 127056, -2559, 0, 0, 0, 180, 0, 0),
 ("Breka_Str_Gorg_Garden", 1, 27108, 118058, 128406, -2880, 0, 0, 0, 60, 0, 0),
@@ -35952,18 +36189,12 @@ INSERT INTO `spawnlist` VALUES
 ("Breka_Str_Gorg_Garden", 1, 27109, 118118, 128474, -2904, 0, 0, 0, 60, 0, 0),
 -- Athrea
 ("giran02_npc2321_06", 1, 30758, 102069, 103120, -3504, 0, 0, 6000, 60, 0, 0),
--- Corpse Of Fritz
-("giran03_npc2321_14", 1, 30761, 103898, 116896, -3024, 0, 0, 0, 60, 0, 0),
--- Corpse Of Lutz
-("giran03_npc2321_15", 1, 30762, 112268, 112761, -2784, 0, 0, 0, 60, 0, 0),
--- Corpse Of Kurtz
-("giran03_npc2321_16", 1, 30763, 124664, 110047, -3104, 0, 0, 0, 60, 0, 0),
 -- Hardin
 ("giran02_npc2321_01", 1, 30832, 105745, 114255, -3136, 0, 0, 49152, 60, 0, 0),
 -- Kaspar
-("giran02_npc2321_03", 1, 30833, 104870, 113221, -3192, 0, 0, 4096, 60, 0, 0),
+("dragon_valley", 1, 30833, 104870, 113221, -3184, 0, 0, 4096, 60, 0, 0),
 -- Cema
-("giran02_npc2321_13", 1, 30834, 105792, 114290, -3176, 0, 0, 49000, 60, 0, 0),
+("dragon_valley", 1, 30834, 105792, 114290, -3136, 0, 0, 49000, 60, 0, 0),
 -- Icarus
 ("giran02_npc2321_02", 1, 30835, 106581, 113352, -3192, 0, 0, 28672, 60, 0, 0),
 -- Minerva
@@ -35973,15 +36204,38 @@ INSERT INTO `spawnlist` VALUES
 -- Galman
 ("giran03_npc2321_11", 1, 31044, 122904, 110828, -3728, 0, 0, 24576, 60, 0, 0),
 -- Kitzka
-("giran03_npc2321_11", 1, 31045, 122716, 110720, -3728, 0, 0, 16384, 60, 0, 0),
+("dragon_valley", 1, 31045, 99361, 109843, -3664, 0, 0, 22121, 60, 0, 0),
 -- Galadrid
 ("giran02_npc2321_12", 1, 31580, 106608, 113296, -3192, 0, 0, 30000, 60, 0, 0),
 -- Anastia
-("giran02_npc2321_12", 1, 31581, 106608, 113392, -3192, 0, 0, 30000, 60, 0, 0),
+("dragon_valley", 1, 31581, 106636, 113392, -3192, 0, 0, 30000, 60, 0, 0),
 -- Mordred
-("giran02_npc2321_11", 1, 31582, 104840, 113260, -3192, 0, 0, 0, 60, 0, 0),
+("dragon_valley", 1, 31582, 104840, 113260, -3184, 0, 0, 0, 60, 0, 0),
 -- Adventure Guildsman
 ("giran02_npc2321_15", 1, 31810, 105850, 109807, -3200, 0, 0, 46000, 60, 0, 0),
+-- 
+("dragon_valley", 1, 32723, 101578, 110546, -3664, 0, 0, 16368, 60, 0, 0),
+("dragon_valley", 1, 32723, 107958, 117417, -3032, 0, 0, 7408, 60, 0, 0),
+("dragon_valley", 1, 32723, 108507, 113011, -3048, 0, 0, 64254, 60, 0, 0),
+("dragon_valley", 1, 32723, 117668, 109610, -2856, 0, 0, 14600, 60, 0, 0),
+("dragon_valley", 1, 32723, 120450, 112338, -3720, 0, 0, 17352, 60, 0, 0),
+("dragon_valley", 1, 32723, 124117, 111817, -3056, 0, 0, 2344, 60, 0, 0),
+("dragon_valley", 1, 32723, 125846, 111064, -3072, 0, 0, 41488, 60, 0, 0),
+("dragon_valley", 1, 32723, 112078, 122904, -3720, 0, 0, 52240, 60, 0, 0),
+("dragon_valley", 1, 32723, 122141, 113458, -3792, 0, 0, 63888, 60, 0, 0),
+("dragon_valley", 1, 32723, 110480, 121632, -3704, 0, 0, 27816, 60, 0, 0),
+-- Separated Soul
+("dragon_valley", 1, 32865, 99111, 110361, -3688, 0, 0, 54054, 60, 0, 0),
+-- Separated Soul
+("dragon_valley", 1, 32866, 116946, 113555, -3056, 0, 0, 9540, 60, 0, 0),
+-- Separated Soul
+("dragon_valley", 1, 32867, 113071, 121043, -3712, 0, 0, 2002, 60, 0, 0),
+-- Dragon Vortex
+("dragon_valley", 1, 32871, 108924, 111992, -3028, 0, 0, 0, 60, 0, 0),
+("dragon_valley", 1, 32871, 110116, 125500, -3664, 0, 0, 0, 60, 0, 0),
+("dragon_valley", 1, 32871, 121172, 113348, -3776, 0, 0, 0, 60, 0, 0),
+-- Ruiman
+("dragon_valley", 1, 32890, 99434, 109868, -3664, 0, 0, 21929, 60, 0, 0),
 
 -- [23_22]
 
@@ -36079,10 +36333,6 @@ INSERT INTO `spawnlist` VALUES
 ("Breka_Str_Gorg_Garden", 1, 20176, 107284, 135232, -3264, 0, 0, 9182, 22, 0, 0),
 ("Breka_Str_Gorg_Garden", 1, 20176, 108235, 137206, -3264, 0, 0, 60492, 22, 0, 0),
 -- Turak Bugbear
-("Breka_Str_Gorg_Garden", 1, 20248, 100162, 132042, -3360, 0, 0, 0, 27, 0, 0),
-("Breka_Str_Gorg_Garden", 1, 20248, 99242, 136170, -3552, 0, 0, 0, 27, 0, 0),
-("Breka_Str_Gorg_Garden", 1, 20248, 101636, 134201, -3576, 0, 0, 58755, 27, 0, 0),
-("Breka_Str_Gorg_Garden", 1, 20248, 101588, 133530, -3520, 0, 0, 25002, 27, 0, 0),
 ("Breka_Str_Gorg_Garden", 1, 20248, 103776, 131444, -3152, 0, 0, 9359, 27, 0, 0),
 ("Breka_Str_Gorg_Garden", 1, 20248, 103684, 133182, -3448, 0, 0, 1618, 27, 0, 0),
 ("Breka_Str_Gorg_Garden", 1, 20248, 102684, 133757, -3512, 0, 0, 1390, 27, 0, 0),
@@ -36102,6 +36352,10 @@ INSERT INTO `spawnlist` VALUES
 ("Breka_Str_Gorg_Garden", 1, 20248, 100772, 147083, -3720, 0, 0, 1922, 27, 0, 0),
 ("Breka_Str_Gorg_Garden", 1, 20248, 99854, 148353, -3520, 0, 0, 0, 27, 0, 0),
 ("Breka_Str_Gorg_Garden", 1, 20248, 101022, 149475, -3560, 0, 0, 0, 27, 0, 0),
+("Breka_Str_Gorg_Garden", 1, 20248, 100162, 132042, -3360, 0, 0, 0, 27, 0, 0),
+("Breka_Str_Gorg_Garden", 1, 20248, 99242, 136170, -3552, 0, 0, 0, 27, 0, 0),
+("Breka_Str_Gorg_Garden", 1, 20248, 101636, 134201, -3576, 0, 0, 58755, 27, 0, 0),
+("Breka_Str_Gorg_Garden", 1, 20248, 101588, 133530, -3520, 0, 0, 25002, 27, 0, 0),
 -- Turak Bugbear Warrior
 ("Breka_Str_Gorg_Garden", 1, 20249, 100162, 131784, -3296, 0, 0, 0, 27, 0, 0),
 ("Breka_Str_Gorg_Garden", 1, 20249, 99472, 134106, -3560, 0, 0, 0, 27, 0, 0),
@@ -37780,7 +38034,8 @@ INSERT INTO `spawnlist` VALUES
 ("godard05_2414_06", 1, 21323, 153706, -106201, -2745, 0, 0, 10968, 70, 0, 0),
 ("godard05_2414_06", 1, 21323, 154193, -107009, -2703, 0, 0, 42286, 70, 0, 0),
 ("godard05_2414_06", 1, 21323, 140228, -107931, -3696, 0, 0, 25488, 70, 0, 0),
-("godard05_2414_06", 1, 21323, 141356, -105506, -3584, 0, 0, 0, 70, 0, 0),
+("godard05_2414_06", 1, 21323, 141356, -105506, -3584, 0, 0, 0, 70, 0, 0);
+INSERT INTO `spawnlist` VALUES
 ("godard05_2414_06", 1, 21323, 140819, -107594, -3652, 0, 0, 41411, 70, 0, 0),
 -- Jeremy
 ("godard05_npc2414_01", 1, 31521, 149520, -112704, -2065, 0, 0, 10000, 60, 0, 0),
@@ -38036,8 +38291,7 @@ INSERT INTO `spawnlist` VALUES
 ("godard12_2415_01", 1, 21326, 135907, -88067, -3815, 0, 0, 0, 120, 0, 0),
 ("godard12_2415_01", 1, 21326, 137390, -87506, -4139, 0, 0, 0, 120, 0, 0),
 ("godard12_2415_01", 1, 21326, 157393, -85450, -4008, 0, 0, 0, 120, 0, 0),
-("godard12_2415_01", 1, 21326, 157466, -84003, -3810, 0, 0, 15763, 120, 0, 0);
-INSERT INTO `spawnlist` VALUES
+("godard12_2415_01", 1, 21326, 157466, -84003, -3810, 0, 0, 15763, 120, 0, 0),
 ("godard12_2415_01", 1, 21326, 158300, -85628, -4008, 0, 0, 0, 120, 0, 0),
 ("godard12_2415_01", 1, 21326, 157748, -84301, -3775, 0, 0, 30591, 120, 0, 0),
 ("godard12_2415_01", 1, 21326, 156778, -84901, -3958, 0, 0, 23848, 120, 0, 0),
@@ -40019,7 +40273,8 @@ INSERT INTO `spawnlist` VALUES
 ("aden27_2418_17", 1, 20664, 162896, 6900, -3647, 0, 0, 16384, 23, 0, 0),
 ("aden27_2418_17", 1, 20664, 161698, 4956, -4164, 0, 0, 0, 23, 0, 0),
 ("aden27_2418_17", 1, 20664, 158640, 3658, -4448, 0, 0, 0, 23, 0, 0),
-("aden27_2418_17", 1, 20664, 158136, 2768, -4288, 0, 0, 0, 23, 0, 0),
+("aden27_2418_17", 1, 20664, 158136, 2768, -4288, 0, 0, 0, 23, 0, 0);
+INSERT INTO `spawnlist` VALUES
 ("aden27_2418_17", 1, 20664, 158640, 3302, -4408, 0, 0, 0, 23, 0, 0),
 ("aden27_2418_17", 1, 20664, 157633, 3302, -4376, 0, 0, 0, 23, 0, 0),
 ("aden27_2418_17", 1, 20664, 158842, 4014, -4504, 0, 0, 0, 23, 0, 0),
@@ -40273,8 +40528,7 @@ INSERT INTO `spawnlist` VALUES
 -- Kendra
 ("aden13_npc2418_12", 1, 30851, 149216, 25648, -2121, 0, 0, 49152, 60, 0, 0),
 -- Sinden
-("aden13_npc2418_12", 1, 30852, 148960, 25408, -2121, 0, 0, 0, 60, 0, 0);
-INSERT INTO `spawnlist` VALUES
+("aden13_npc2418_12", 1, 30852, 148960, 25408, -2121, 0, 0, 0, 60, 0, 0),
 -- Raien
 ("aden13_npc2418_12", 1, 30853, 149488, 25504, -2121, 0, 0, 32768, 60, 0, 0),
 -- Drikiyan
@@ -41226,869 +41480,734 @@ INSERT INTO `spawnlist` VALUES
 
 -- Heart of Warding
 ("giran04_npc2421_03", 1, 13001, 154695, 121097, -3757, 0, 0, 0, 60, 0, 0),
--- Treasure Chest
-("giran03_tb2321_24", 1, 18278, 136163, 113776, -3721, 0, 0, 4873, 60, 0, 0),
-("giran03_tb2321_24", 1, 18278, 135096, 114508, -3721, 0, 0, 22631, 60, 0, 0),
-("giran03_tb2321_24", 1, 18278, 136360, 115006, -3721, 0, 0, 55338, 60, 0, 0),
-("giran03_tb2321_24", 1, 18278, 135720, 114266, -3718, 0, 0, 0, 60, 0, 0),
-("giran03_tb2321_24", 1, 18278, 136460, 113763, -3721, 0, 0, 39725, 60, 0, 0),
-("giran03_tb2321_24", 1, 18278, 137950, 114405, -3721, 0, 0, 2719, 60, 0, 0),
-("giran03_tb2321_24", 1, 18278, 136447, 114040, -3723, 0, 0, 0, 60, 0, 0),
-("giran03_tb2321_24", 1, 18278, 136850, 114396, -3723, 0, 0, 0, 60, 0, 0),
-("giran03_tb2321_24", 1, 18278, 140458, 113783, -3723, 0, 0, 0, 60, 0, 0),
-("giran03_tb2321_24", 1, 18278, 140082, 114225, -3723, 0, 0, 0, 60, 0, 0),
-("giran03_tb2321_24", 1, 18278, 139780, 114403, -3723, 0, 0, 0, 60, 0, 0),
-("giran03_tb2321_24", 1, 18278, 139679, 114225, -3723, 0, 0, 0, 60, 0, 0),
-("giran03_tb2321_24", 1, 18278, 143190, 114008, -3723, 0, 0, 0, 60, 0, 0),
-("giran03_tb2321_24", 1, 18278, 143492, 114186, -3723, 0, 0, 0, 60, 0, 0),
-("giran03_tb2321_24", 1, 18278, 143852, 114241, -3723, 0, 0, 0, 60, 0, 0),
-("giran03_tb2321_24", 1, 18278, 143593, 114364, -3723, 0, 0, 0, 60, 0, 0),
-("giran03_tb2321_24", 1, 18278, 145264, 115202, -3723, 0, 0, 15913, 60, 0, 0),
-("giran03_tb2321_24", 1, 18278, 144737, 115207, -3723, 0, 0, 0, 60, 0, 0),
-("giran03_tb2321_24", 1, 18278, 145605, 115545, -3721, 0, 0, 39479, 60, 0, 0),
-("giran03_tb2321_24", 1, 18278, 145039, 115029, -3723, 0, 0, 0, 60, 0, 0),
-("giran03_tb2321_24", 1, 18278, 146375, 115994, -3726, 0, 0, 0, 60, 0, 0),
-("giran03_tb2321_24", 1, 18278, 147227, 116124, -3721, 0, 0, 59246, 60, 0, 0),
-("giran03_tb2321_24", 1, 18278, 146664, 116342, -3723, 0, 0, 0, 60, 0, 0),
-("giran03_tb2321_24", 1, 18278, 146967, 116520, -3723, 0, 0, 0, 60, 0, 0),
--- Treasure Chest
-("giran05_tb2421_10", 1, 18279, 147404, 116497, -3700, 0, 0, 39562, 360, 0, 0),
-("giran05_tb2421_10", 1, 18279, 148127, 117278, -3700, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_10", 1, 18279, 147322, 117540, -3723, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_10", 1, 18279, 147593, 117139, -3717, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_10", 1, 18279, 140797, 112420, -3725, 0, 0, 2092, 360, 0, 0),
-("giran05_tb2421_10", 1, 18279, 141262, 114527, -3725, 0, 0, 62075, 360, 0, 0),
-("giran05_tb2421_10", 1, 18279, 140577, 114763, -3725, 0, 0, 12655, 360, 0, 0),
-("giran05_tb2421_10", 1, 18279, 140554, 112817, -3723, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_10", 1, 18279, 141314, 112190, -3723, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_10", 1, 18279, 141876, 112331, -3808, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_10", 1, 18279, 141775, 112153, -3808, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_10", 1, 18279, 141674, 112331, -3808, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_10", 1, 18279, 142669, 111556, -3983, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_10", 1, 18279, 142583, 111989, -3947, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_10", 1, 18279, 142972, 112090, -3983, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_10", 1, 18279, 143096, 111783, -3945, 0, 0, 26757, 360, 0, 0),
-("giran05_tb2421_10", 1, 18279, 142569, 108917, -3945, 0, 0, 25855, 360, 0, 0),
-("giran05_tb2421_10", 1, 18279, 143141, 108538, -3990, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_10", 1, 18279, 142833, 108736, -3945, 0, 0, 16499, 360, 0, 0),
-("giran05_tb2421_10", 1, 18279, 142838, 108716, -3990, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_10", 1, 18279, 140650, 107592, -3945, 0, 0, 45770, 360, 0, 0),
-("giran05_tb2421_10", 1, 18279, 140672, 110689, -3945, 0, 0, 20895, 360, 0, 0),
-("giran05_tb2421_10", 1, 18279, 141510, 109138, -3945, 0, 0, 6337, 360, 0, 0),
-("giran05_tb2421_10", 1, 18279, 140388, 108457, -3945, 0, 0, 6021, 360, 0, 0),
-("giran05_tb2421_10", 1, 18279, 141785, 107254, -3940, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_10", 1, 18279, 142446, 107280, -3945, 0, 0, 16491, 360, 0, 0),
-("giran05_tb2421_10", 1, 18279, 142193, 107131, -3945, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_10", 1, 18279, 142278, 106910, -3945, 0, 0, 7661, 360, 0, 0),
-("giran05_tb2421_10", 1, 18279, 145259, 107971, -3938, 0, 0, 51289, 360, 0, 0),
-("giran05_tb2421_10", 1, 18279, 145055, 107884, -4000, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_10", 1, 18279, 144853, 107528, -4000, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_10", 1, 18279, 144649, 107346, -3945, 0, 0, 30721, 360, 0, 0),
-("giran05_tb2421_10", 1, 18279, 147013, 109066, -3945, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_10", 1, 18279, 147566, 109454, -3945, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_10", 1, 18279, 147616, 109066, -3945, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_10", 1, 18279, 147315, 109244, -3945, 0, 0, 0, 360, 0, 0),
--- Treasure Chest
-("giran05_tb2421_20", 1, 18280, 140234, 117251, -3965, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_20", 1, 18280, 140234, 117607, -3965, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_20", 1, 18280, 140032, 117607, -3965, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_20", 1, 18280, 140436, 117607, -3965, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_20", 1, 18280, 142403, 116107, -3913, 0, 0, 10084, 360, 0, 0),
-("giran05_tb2421_20", 1, 18280, 142682, 116240, -3965, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_20", 1, 18280, 142111, 116328, -3913, 0, 0, 13357, 360, 0, 0),
-("giran05_tb2421_20", 1, 18280, 142379, 116478, -3913, 0, 0, 1951, 360, 0, 0),
-("giran05_tb2421_20", 1, 18280, 141795, 118929, -3908, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_20", 1, 18280, 141956, 119290, -3913, 0, 0, 21198, 360, 0, 0),
-("giran05_tb2421_20", 1, 18280, 142683, 119806, -3913, 0, 0, 6688, 360, 0, 0),
-("giran05_tb2421_20", 1, 18280, 142119, 119171, -3913, 0, 0, 9060, 360, 0, 0),
-("giran05_tb2421_20", 1, 18280, 142736, 121550, -3913, 0, 0, 65438, 360, 0, 0),
-("giran05_tb2421_20", 1, 18280, 140567, 120681, -3946, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_20", 1, 18280, 140769, 120681, -3946, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_20", 1, 18280, 140971, 121037, -3946, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_20", 1, 18280, 140330, 121280, -3913, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_20", 1, 18280, 140733, 121636, -3913, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_20", 1, 18280, 141292, 121276, -3913, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_20", 1, 18280, 141223, 121785, -3913, 0, 0, 60564, 360, 0, 0),
-("giran05_tb2421_20", 1, 18280, 141249, 121016, -3951, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_20", 1, 18280, 144137, 120304, -3913, 0, 0, 57755, 360, 0, 0),
-("giran05_tb2421_20", 1, 18280, 141348, 121524, -3913, 0, 0, 34881, 360, 0, 0),
-("giran05_tb2421_20", 1, 18280, 141450, 121016, -3913, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_20", 1, 18280, 143036, 120094, -3913, 0, 0, 20733, 360, 0, 0),
-("giran05_tb2421_20", 1, 18280, 143501, 120400, -3913, 0, 0, 52507, 360, 0, 0),
-("giran05_tb2421_20", 1, 18280, 143678, 119918, -3913, 0, 0, 18366, 360, 0, 0),
-("giran05_tb2421_20", 1, 18280, 142500, 119705, -3913, 0, 0, 36917, 360, 0, 0),
-("giran05_tb2421_20", 1, 18280, 144782, 121444, -3913, 0, 0, 58964, 360, 0, 0),
-("giran05_tb2421_20", 1, 18280, 146114, 121120, -3913, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_20", 1, 18280, 143657, 120659, -3913, 0, 0, 31901, 360, 0, 0),
-("giran05_tb2421_20", 1, 18280, 142195, 121493, -3913, 0, 0, 31319, 360, 0, 0),
-("giran05_tb2421_20", 1, 18280, 146074, 120847, -3953, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_20", 1, 18280, 146293, 121657, -3913, 0, 0, 13706, 360, 0, 0),
-("giran05_tb2421_20", 1, 18280, 146376, 121381, -3913, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_20", 1, 18280, 146228, 121086, -3913, 0, 0, 0, 360, 0, 0),
--- Treasure Chest
-("giran05_tb2421_29", 1, 18281, 146006, 119128, -3913, 0, 0, 29026, 360, 0, 0),
-("giran05_tb2421_29", 1, 18281, 145976, 119407, -3898, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_29", 1, 18281, 145919, 119790, -3913, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_29", 1, 18281, 145973, 119585, -3953, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_29", 1, 18281, 144672, 117097, -3913, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_29", 1, 18281, 144826, 117617, -3913, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_29", 1, 18281, 144812, 117351, -3949, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_29", 1, 18281, 145113, 117173, -3949, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_29", 1, 18281, 145726, 117077, -3955, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_29", 1, 18281, 146028, 117611, -3955, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_29", 1, 18281, 145900, 117342, -3913, 0, 0, 43628, 360, 0, 0),
-("giran05_tb2421_29", 1, 18281, 146129, 117433, -3955, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_29", 1, 18281, 148926, 119461, -4866, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_29", 1, 18281, 149434, 119505, -4924, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_29", 1, 18281, 149335, 120910, -4863, 0, 0, 18969, 360, 0, 0),
-("giran05_tb2421_29", 1, 18281, 149128, 120186, -4863, 0, 0, 14104, 360, 0, 0),
-("giran05_tb2421_29", 1, 18281, 152765, 116830, -5255, 0, 0, 33476, 360, 0, 0),
-("giran05_tb2421_29", 1, 18281, 153310, 116602, -5295, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_29", 1, 18281, 154390, 116553, -5255, 0, 0, 62690, 360, 0, 0),
-("giran05_tb2421_29", 1, 18281, 153274, 115944, -5255, 0, 0, 53064, 360, 0, 0),
-("giran05_tb2421_29", 1, 18281, 150747, 114224, -5458, 0, 0, 60624, 360, 0, 0),
-("giran05_tb2421_29", 1, 18281, 150292, 114475, -5519, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_29", 1, 18281, 150492, 114831, -5519, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_29", 1, 18281, 150694, 114831, -5519, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_29", 1, 18281, 148730, 114517, -5476, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_29", 1, 18281, 149148, 114409, -5517, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_29", 1, 18281, 149248, 114587, -5517, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_29", 1, 18281, 148644, 114587, -5517, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_29", 1, 18281, 153533, 111147, -5567, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_29", 1, 18281, 153735, 111859, -5567, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_29", 1, 18281, 153835, 111325, -5567, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_29", 1, 18281, 153432, 111325, -5567, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_29", 1, 18281, 151047, 111290, -5521, 0, 0, 9126, 360, 0, 0),
-("giran05_tb2421_29", 1, 18281, 150564, 111054, -5555, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_29", 1, 18281, 150581, 111869, -5521, 0, 0, 36522, 360, 0, 0),
-("giran05_tb2421_29", 1, 18281, 150665, 111232, -5555, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_29", 1, 18281, 153199, 107970, -5194, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_29", 1, 18281, 153602, 108326, -5194, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_29", 1, 18281, 153401, 108682, -5194, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_29", 1, 18281, 153502, 108504, -5194, 0, 0, 0, 360, 0, 0),
--- Treasure Chest
-("giran05_tb2421_59", 1, 18282, 152061, 109290, -5157, 0, 0, 61430, 360, 0, 0),
-("giran05_tb2421_59", 1, 18282, 150642, 109215, -5159, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_59", 1, 18282, 152808, 109287, -5157, 0, 0, 65494, 360, 0, 0),
-("giran05_tb2421_59", 1, 18282, 150865, 109552, -5153, 0, 0, 7006, 360, 0, 0),
-("giran05_tb2421_59", 1, 18282, 151826, 107486, -4969, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_59", 1, 18282, 152534, 107520, -5095, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_59", 1, 18282, 152189, 107620, -5033, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_59", 1, 18282, 152992, 107704, -5155, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_59", 1, 18282, 146352, 110774, -3545, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_59", 1, 18282, 146408, 111042, -3561, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_59", 1, 18282, 146662, 111499, -3538, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_59", 1, 18282, 146472, 109425, -3428, 0, 0, 49957, 360, 0, 0),
-("giran05_tb2421_59", 1, 18282, 146509, 111929, -3576, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_59", 1, 18282, 146843, 112442, -3773, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_59", 1, 18282, 146642, 112086, -3773, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_59", 1, 18282, 146944, 112264, -3773, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_59", 1, 18282, 147488, 112391, -3724, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_59", 1, 18282, 147318, 112218, -3765, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_59", 1, 18282, 147520, 112218, -3765, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_59", 1, 18282, 147453, 112074, -3721, 0, 0, 19534, 360, 0, 0),
-("giran05_tb2421_59", 1, 18282, 148859, 112973, -3770, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_59", 1, 18282, 148597, 112550, -3721, 0, 0, 8109, 360, 0, 0),
-("giran05_tb2421_59", 1, 18282, 148859, 113329, -3770, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_59", 1, 18282, 149125, 113687, -3721, 0, 0, 5593, 360, 0, 0),
-("giran05_tb2421_59", 1, 18282, 148758, 114662, -5478, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_59", 1, 18282, 148613, 115665, -3721, 0, 0, 20696, 360, 0, 0),
-("giran05_tb2421_59", 1, 18282, 149074, 115196, -3723, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_59", 1, 18282, 149060, 114840, -3762, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_59", 1, 18282, 149494, 115894, -3783, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_59", 1, 18282, 149695, 116250, -3783, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_59", 1, 18282, 149393, 116072, -3783, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_59", 1, 18282, 149219, 115070, -3726, 0, 0, 0, 360, 0, 0),
--- Treasure Chest
-("giran05_tb2421_81", 1, 18283, 150452, 117302, -3728, 0, 0, 7409, 360, 0, 0),
-("giran05_tb2421_81", 1, 18283, 150608, 117742, -3757, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_81", 1, 18283, 150911, 117920, -3757, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_81", 1, 18283, 150810, 117742, -3757, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_81", 1, 18283, 151081, 117992, -5102, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_81", 1, 18283, 151575, 118474, -3898, 0, 0, 65320, 360, 0, 0),
-("giran05_tb2421_81", 1, 18283, 150873, 117953, -3675, 0, 0, 39785, 360, 0, 0),
-("giran05_tb2421_81", 1, 18283, 151339, 118330, -3854, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_81", 1, 18283, 152125, 119033, -3803, 0, 0, 21825, 360, 0, 0),
-("giran05_tb2421_81", 1, 18283, 151585, 118556, -3949, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_81", 1, 18283, 151793, 118780, -3868, 0, 0, 12491, 360, 0, 0),
-("giran05_tb2421_81", 1, 18283, 152396, 118954, -3804, 0, 0, 57865, 360, 0, 0),
-("giran05_tb2421_81", 1, 18283, 152623, 119030, -3801, 0, 0, 3071, 360, 0, 0),
-("giran05_tb2421_81", 1, 18283, 153753, 119273, -3805, 0, 0, 65272, 360, 0, 0),
-("giran05_tb2421_81", 1, 18283, 152234, 119237, -3801, 0, 0, 5191, 360, 0, 0),
-("giran05_tb2421_81", 1, 18283, 152628, 119317, -3781, 0, 0, 41360, 360, 0, 0),
-("giran05_tb2421_81", 1, 18283, 153604, 118732, -3805, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_81", 1, 18283, 153609, 118653, -3805, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_81", 1, 18283, 153838, 118417, -3845, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_81", 1, 18283, 154319, 118541, -3805, 0, 0, 64787, 360, 0, 0),
-("giran05_tb2421_81", 1, 18283, 151963, 120179, -3851, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_81", 1, 18283, 151671, 120709, -3791, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_81", 1, 18283, 152165, 120891, -3851, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_81", 1, 18283, 151963, 120891, -3851, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_81", 1, 18283, 151938, 121126, -3870, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_81", 1, 18283, 151636, 121660, -3870, 0, 0, 0, 360, 0, 0),
-("giran05_tb2421_81", 1, 18283, 151922, 121774, -3805, 0, 0, 58363, 360, 0, 0),
-("giran05_tb2421_81", 1, 18283, 152084, 121490, -3797, 0, 0, 48273, 360, 0, 0),
--- Cave Beast
-("giran05_2421_01", 1, 20620, 135526, 114622, -3721, 0, 0, 0, 250, 0, 0),
-("giran05_2421_01", 1, 20620, 135627, 114444, -3721, 0, 0, 0, 250, 0, 0),
-("giran05_2421_01", 1, 20620, 136418, 114807, -3721, 0, 0, 17539, 250, 0, 0),
-("giran05_2421_01", 1, 20620, 137577, 114447, -3721, 0, 0, 64417, 250, 0, 0),
-("giran05_2421_01", 1, 20620, 136749, 114218, -3721, 0, 0, 0, 250, 0, 0),
-("giran05_2421_01", 1, 20620, 141016, 114351, -3719, 0, 0, 36045, 250, 0, 0),
-("giran05_2421_01", 1, 20620, 140688, 114755, -3721, 0, 0, 6582, 250, 0, 0),
-("giran05_2421_01", 1, 20620, 139710, 114079, -3724, 0, 0, 0, 250, 0, 0),
-("giran05_2421_01", 1, 20620, 140751, 113333, -3721, 0, 0, 46697, 250, 0, 0),
-("giran05_2421_01", 1, 20620, 144957, 114438, -3721, 0, 0, 1489, 250, 0, 0),
-("giran05_2421_01", 1, 20620, 143602, 114201, -3723, 0, 0, 0, 250, 0, 0),
-("giran05_2421_01", 1, 20620, 143763, 114800, -3721, 0, 0, 30549, 250, 0, 0),
-("giran05_2421_01", 1, 20620, 144630, 114851, -3720, 0, 0, 63875, 250, 0, 0),
-("giran05_2421_01", 1, 20620, 140600, 112885, -3727, 0, 0, 0, 250, 0, 0),
-("giran05_2421_01", 1, 20620, 141158, 112817, -3712, 0, 0, 0, 250, 0, 0),
-("giran05_2421_01", 1, 20620, 141775, 112509, -3720, 0, 0, 0, 250, 0, 0),
-("giran05_2421_01", 1, 20620, 141272, 112331, -3648, 0, 0, 0, 250, 0, 0),
-("giran05_2421_01", 1, 20620, 144011, 112747, -3945, 0, 0, 2054, 250, 0, 0),
-("giran05_2421_01", 1, 20620, 142971, 111734, -3949, 0, 0, 0, 250, 0, 0),
-("giran05_2421_01", 1, 20620, 142770, 112090, -3949, 0, 0, 0, 250, 0, 0),
-("giran05_2421_01", 1, 20620, 143906, 112129, -3945, 0, 0, 17146, 250, 0, 0),
-("giran05_2421_01", 1, 20620, 142768, 108853, -3949, 0, 0, 60287, 250, 0, 0),
--- Death Wave
-("giran05_2421_01", 1, 20621, 135627, 114800, -3721, 0, 0, 0, 250, 0, 0),
-("giran05_2421_01", 1, 20621, 135027, 114337, -3721, 0, 0, 29413, 250, 0, 0),
-("giran05_2421_01", 1, 20621, 135914, 115030, -3725, 0, 0, 35295, 250, 0, 0),
-("giran05_2421_01", 1, 20621, 136547, 114218, -3721, 0, 0, 0, 250, 0, 0),
-("giran05_2421_01", 1, 20621, 136648, 114396, -3721, 0, 0, 0, 250, 0, 0),
-("giran05_2421_01", 1, 20621, 137015, 114387, -3721, 0, 0, 14977, 250, 0, 0),
-("giran05_2421_01", 1, 20621, 140183, 114047, -3723, 0, 0, 0, 250, 0, 0),
-("giran05_2421_01", 1, 20621, 140701, 115219, -3725, 0, 0, 14048, 250, 0, 0),
-("giran05_2421_01", 1, 20621, 140902, 114391, -3709, 0, 0, 61304, 250, 0, 0),
-("giran05_2421_01", 1, 20621, 140719, 113800, -3718, 0, 0, 2903, 250, 0, 0),
-("giran05_2421_01", 1, 20621, 143799, 114392, -3723, 0, 0, 0, 250, 0, 0),
-("giran05_2421_01", 1, 20621, 143589, 114524, -3723, 0, 0, 0, 250, 0, 0),
-("giran05_2421_01", 1, 20621, 143794, 114720, -3723, 0, 0, 0, 250, 0, 0),
-("giran05_2421_01", 1, 20621, 144724, 114578, -3710, 0, 0, 61817, 250, 0, 0),
-("giran05_2421_01", 1, 20621, 144186, 114705, -3716, 0, 0, 37270, 250, 0, 0),
-("giran05_2421_01", 1, 20621, 148488, 114927, -5473, 0, 0, 61713, 250, 0, 0),
-("giran05_2421_01", 1, 20621, 147067, 116810, -3700, 0, 0, 11114, 250, 0, 0),
-("giran05_2421_01", 1, 20621, 146554, 116415, -3721, 0, 0, 0, 250, 0, 0),
-("giran05_2421_01", 1, 20621, 148361, 118438, -3721, 0, 0, 8053, 250, 0, 0),
-("giran05_2421_01", 1, 20621, 140775, 112271, -3721, 0, 0, 48770, 250, 0, 0),
-("giran05_2421_01", 1, 20621, 141233, 113014, -3725, 0, 0, 1838, 250, 0, 0),
-("giran05_2421_01", 1, 20621, 141574, 112153, -3725, 0, 0, 0, 250, 0, 0),
-("giran05_2421_01", 1, 20621, 141741, 112215, -3720, 0, 0, 0, 250, 0, 0),
-("giran05_2421_01", 1, 20621, 143120, 112578, -3948, 0, 0, 0, 250, 0, 0),
-("giran05_2421_01", 1, 20621, 143475, 112268, -3944, 0, 0, 0, 250, 0, 0),
-("giran05_2421_01", 1, 20621, 143183, 112119, -3930, 0, 0, 43259, 250, 0, 0),
-("giran05_2421_01", 1, 20621, 144152, 112302, -3945, 0, 0, 3325, 250, 0, 0),
-("giran05_2421_01", 1, 20621, 140273, 119489, -3906, 0, 0, 21061, 250, 0, 0),
-("giran05_2421_01", 1, 20621, 140377, 114913, -3725, 0, 0, 46338, 250, 0, 0),
-("giran05_2421_01", 1, 20621, 141021, 118083, -3913, 0, 0, 57169, 250, 0, 0),
-("giran05_2421_01", 1, 20621, 140375, 119987, -3913, 0, 0, 18355, 250, 0, 0),
-("giran05_2421_01", 1, 20621, 139831, 118675, -3965, 0, 0, 0, 250, 0, 0),
--- Maluk Soldier
-("giran05_2421_08", 1, 20622, 148454, 115044, -5473, 0, 0, 64450, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 145240, 115385, -3721, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 145727, 115737, -3709, 0, 0, 10090, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 145140, 115563, -3760, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 147469, 116342, -3721, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 147268, 116342, -3721, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 146866, 116342, -3721, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 148279, 118041, -3721, 0, 0, 7527, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 148202, 117706, -3721, 0, 0, 16776, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 147322, 117540, -3753, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 148210, 117493, -3721, 0, 0, 23306, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 142939, 108182, -3949, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 143343, 108894, -3949, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 141381, 109140, -3945, 0, 0, 8305, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 140719, 108460, -3940, 0, 0, 45234, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 140206, 109919, -3930, 0, 0, 45586, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 140426, 108534, -3948, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 140434, 109295, -3948, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 140369, 109574, -3947, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 141152, 109128, -3945, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 140646, 109945, -3933, 0, 0, 55019, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 140397, 108178, -3945, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 142266, 107098, -3945, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 142413, 107064, -3949, 0, 0, 45172, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 142240, 107300, -3945, 0, 0, 34259, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 142625, 107222, -3945, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 143183, 107181, -3945, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 145125, 109237, -3949, 0, 0, 25929, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 145356, 108418, -3949, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 144314, 108546, -3948, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 144853, 108596, -3949, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 144551, 107350, -3949, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 145759, 108062, -3949, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 140335, 118141, -3965, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 140939, 117429, -3965, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 140739, 118853, -3965, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 140857, 118441, -3918, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 139931, 117785, -3965, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 140034, 118319, -3965, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 142830, 116438, -3904, 0, 0, 1853, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 141876, 117308, -3965, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 143386, 117130, -3965, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 143286, 116596, -3965, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 142481, 116952, -3965, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 142582, 117486, -3965, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 143163, 116355, -3899, 0, 0, 59927, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 142480, 116596, -3965, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 143186, 117486, -3965, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 141526, 119058, -3915, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 142060, 118690, -3898, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 142402, 119310, -3913, 0, 0, 48539, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 141990, 118789, -3897, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 140760, 120486, -3916, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 140421, 120450, -3913, 0, 0, 40401, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 140449, 121811, -3913, 0, 0, 15279, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 141034, 121458, -3963, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 144945, 118692, -3913, 0, 0, 56349, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 141725, 121638, -3913, 0, 0, 30150, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 142727, 119960, -3913, 0, 0, 31085, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 143074, 120567, -3953, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 143980, 121457, -3953, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 142228, 121443, -3913, 0, 0, 25973, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 144281, 121635, -3953, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 142646, 121221, -3913, 0, 0, 26398, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 144641, 118863, -3913, 0, 0, 55285, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 142974, 121101, -3953, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 144237, 121123, -3913, 0, 0, 60087, 300, 0, 0),
-("giran05_2421_08", 1, 20622, 144286, 119933, -3913, 0, 0, 27060, 300, 0, 0),
--- Plando
-("giran05_2421_08", 1, 20623, 145042, 114954, -3721, 0, 0, 42921, 300, 0, 0),
-("giran05_2421_08", 1, 20623, 146427, 116211, -3721, 0, 0, 5896, 300, 0, 0),
-("giran05_2421_08", 1, 20623, 147372, 116126, -3721, 0, 0, 48473, 300, 0, 0),
-("giran05_2421_08", 1, 20623, 146207, 116179, -3721, 0, 0, 34739, 300, 0, 0),
-("giran05_2421_08", 1, 20623, 148690, 116996, -3721, 0, 0, 53762, 300, 0, 0),
-("giran05_2421_08", 1, 20623, 147311, 116998, -3721, 0, 0, 41616, 300, 0, 0),
-("giran05_2421_08", 1, 20623, 148431, 117718, -3753, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20623, 147785, 117335, -3712, 0, 0, 45698, 300, 0, 0),
-("giran05_2421_08", 1, 20623, 143342, 108538, -3949, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20623, 143040, 108360, -3949, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20623, 140132, 109488, -3945, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20623, 141050, 108238, -3945, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20623, 140868, 109858, -3945, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20623, 141816, 109268, -3945, 0, 0, 59611, 300, 0, 0),
-("giran05_2421_08", 1, 20623, 142531, 107649, -3952, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20623, 143034, 107115, -3952, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20623, 144451, 108596, -3949, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20623, 145161, 108819, -3949, 0, 0, 9351, 300, 0, 0),
-("giran05_2421_08", 1, 20623, 144248, 108240, -3949, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20623, 144651, 107884, -3949, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20623, 140549, 117807, -3912, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20623, 140840, 118675, -3965, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20623, 141040, 118319, -3965, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20623, 143220, 116077, -3913, 0, 0, 3961, 300, 0, 0),
-("giran05_2421_08", 1, 20623, 142178, 117130, -3965, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20623, 142380, 117486, -3965, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20623, 142360, 119317, -3955, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20623, 142248, 118830, -3901, 0, 0, 51394, 300, 0, 0),
-("giran05_2421_08", 1, 20623, 142671, 120923, -3953, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20623, 144382, 121457, -3953, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20623, 142772, 120389, -3953, 0, 0, 0, 300, 0, 0),
-("giran05_2421_08", 1, 20623, 143275, 120211, -3953, 0, 0, 0, 300, 0, 0),
--- Cave Howler
-("giran05_2421_10", 1, 20624, 147322, 117139, -3717, 0, 0, 0, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 148874, 117901, -3697, 0, 0, 56428, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 147536, 117365, -3697, 0, 0, 33568, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 148575, 117239, -3712, 0, 0, 45293, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 143099, 108745, -3949, 0, 0, 10386, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 143242, 109072, -3949, 0, 0, 0, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 140619, 108972, -3948, 0, 0, 0, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 140847, 109398, -3945, 0, 0, 13955, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 141152, 108416, -3945, 0, 0, 0, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 140849, 108238, -3945, 0, 0, 0, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 140558, 109131, -3951, 0, 0, 0, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 140851, 110418, -3945, 0, 0, 20341, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 140331, 110346, -3945, 0, 0, 0, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 140457, 110701, -3945, 0, 0, 0, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 141205, 109706, -3945, 0, 0, 59666, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 143524, 107268, -3945, 0, 0, 64818, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 142946, 107211, -3945, 0, 0, 0, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 142726, 107317, -3945, 0, 0, 2965, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 142162, 107335, -3945, 0, 0, 65295, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 141945, 107189, -3930, 0, 0, 6288, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 145351, 110264, -3949, 0, 0, 17767, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 142546, 106973, -3949, 0, 0, 35713, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 145206, 108226, -3931, 0, 0, 47842, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 145271, 109663, -3942, 0, 0, 17172, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 144163, 108173, -3945, 0, 0, 0, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 148129, 110422, -3945, 0, 0, 15055, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 147585, 110634, -3945, 0, 0, 32659, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 147901, 109357, -3945, 0, 0, 0, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 147919, 109600, -3945, 0, 0, 0, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 146980, 110693, -3945, 0, 0, 28406, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 148120, 109244, -3949, 0, 0, 0, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 140667, 117769, -3912, 0, 0, 0, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 142332, 117282, -3917, 0, 0, 60760, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 140214, 116836, -3906, 0, 0, 21906, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 140677, 118067, -3917, 0, 0, 10396, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 140537, 118497, -3965, 0, 0, 0, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 139932, 117429, -3965, 0, 0, 0, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 141831, 117304, -3913, 0, 0, 23384, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 142884, 117664, -3965, 0, 0, 0, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 142984, 116418, -3965, 0, 0, 0, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 143084, 116952, -3965, 0, 0, 0, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 142823, 117183, -3913, 0, 0, 42203, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 142119, 116966, -3913, 0, 0, 26957, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 141696, 117255, -3913, 0, 0, 0, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 142782, 116062, -3965, 0, 0, 0, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 141723, 116938, -3916, 0, 0, 0, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 143487, 116952, -3965, 0, 0, 0, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 142477, 118665, -3911, 0, 0, 11019, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 140978, 119168, -3913, 0, 0, 28970, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 141663, 119126, -3913, 0, 0, 2194, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 142686, 118802, -3913, 0, 0, 57643, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 140970, 120681, -3946, 0, 0, 0, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 140440, 120998, -3913, 0, 0, 24481, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 140688, 120839, -3904, 0, 0, 0, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 140531, 121636, -3963, 0, 0, 0, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 141853, 121372, -3951, 0, 0, 0, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 141451, 121372, -3951, 0, 0, 0, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 143672, 121118, -3907, 0, 0, 11627, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 143476, 121279, -3953, 0, 0, 0, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 143656, 119898, -3913, 0, 0, 18477, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 142872, 120567, -3953, 0, 0, 0, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 143589, 120194, -3913, 0, 0, 3231, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 144342, 120903, -3907, 0, 0, 26778, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 142627, 121153, -3908, 0, 0, 27167, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 143946, 120198, -3913, 0, 0, 6378, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 144483, 121279, -3953, 0, 0, 0, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 143275, 120567, -3953, 0, 0, 0, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 145022, 121673, -3913, 0, 0, 6981, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 146237, 121727, -3913, 0, 0, 63894, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 145818, 119490, -3913, 0, 0, 48420, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 146223, 121296, -3913, 0, 0, 27245, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 145859, 119187, -3913, 0, 0, 56304, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 145846, 119635, -3913, 0, 0, 57778, 260, 0, 0),
-("giran05_2421_10", 1, 20624, 145470, 120119, -3953, 0, 0, 0, 260, 0, 0),
--- Maluk Knight
-("giran05_2421_17", 1, 20625, 144349, 108062, -3945, 0, 0, 0, 300, 0, 0),
-("giran05_2421_17", 1, 20625, 144240, 108428, -3945, 0, 0, 0, 300, 0, 0),
-("giran05_2421_17", 1, 20625, 145557, 108418, -3945, 0, 0, 0, 300, 0, 0),
-("giran05_2421_17", 1, 20625, 144953, 108062, -3945, 0, 0, 0, 300, 0, 0),
-("giran05_2421_17", 1, 20625, 145457, 108952, -3945, 0, 0, 0, 300, 0, 0),
-("giran05_2421_17", 1, 20625, 145457, 108596, -3945, 0, 0, 0, 300, 0, 0),
-("giran05_2421_17", 1, 20625, 147394, 110429, -3949, 0, 0, 24090, 300, 0, 0),
-("giran05_2421_17", 1, 20625, 147775, 109384, -3949, 0, 0, 51510, 300, 0, 0),
-("giran05_2421_17", 1, 20625, 147919, 110668, -3949, 0, 0, 0, 300, 0, 0),
-("giran05_2421_17", 1, 20625, 148120, 109600, -3949, 0, 0, 0, 300, 0, 0),
-("giran05_2421_17", 1, 20625, 147629, 110171, -3949, 0, 0, 27620, 300, 0, 0),
-("giran05_2421_17", 1, 20625, 147417, 109778, -3949, 0, 0, 0, 300, 0, 0),
-("giran05_2421_17", 1, 20625, 147518, 109956, -3949, 0, 0, 0, 300, 0, 0),
-("giran05_2421_17", 1, 20625, 145628, 121846, -3913, 0, 0, 3446, 300, 0, 0),
-("giran05_2421_17", 1, 20625, 145339, 120471, -3913, 0, 0, 0, 300, 0, 0),
-("giran05_2421_17", 1, 20625, 145988, 120124, -3913, 0, 0, 47081, 300, 0, 0),
-("giran05_2421_17", 1, 20625, 146233, 121351, -3913, 0, 0, 49041, 300, 0, 0),
-("giran05_2421_17", 1, 20625, 145847, 120665, -3913, 0, 0, 60045, 300, 0, 0),
-("giran05_2421_17", 1, 20625, 145997, 119771, -3913, 0, 0, 41149, 300, 0, 0),
-("giran05_2421_17", 1, 20625, 145973, 119229, -3953, 0, 0, 0, 300, 0, 0),
-("giran05_2421_17", 1, 20625, 144892, 117071, -3913, 0, 0, 1919, 300, 0, 0),
-("giran05_2421_17", 1, 20625, 146370, 117781, -3875, 0, 0, 6575, 300, 0, 0),
-("giran05_2421_17", 1, 20625, 145114, 117529, -3913, 0, 0, 0, 300, 0, 0),
-("giran05_2421_17", 1, 20625, 145554, 117287, -3913, 0, 0, 33047, 300, 0, 0),
-("giran05_2421_17", 1, 20625, 146802, 118333, -3986, 0, 0, 15608, 300, 0, 0),
-("giran05_2421_17", 1, 20625, 145647, 117478, -3913, 0, 0, 58119, 300, 0, 0),
-("giran05_2421_17", 1, 20625, 148843, 119475, -4866, 0, 0, 0, 300, 0, 0),
-("giran05_2421_17", 1, 20625, 148099, 120906, -4815, 0, 0, 0, 300, 0, 0),
-("giran05_2421_17", 1, 20625, 148237, 120556, -4866, 0, 0, 0, 300, 0, 0),
-("giran05_2421_17", 1, 20625, 148369, 120188, -4863, 0, 0, 9009, 300, 0, 0),
-("giran05_2421_17", 1, 20625, 149133, 121107, -4924, 0, 0, 0, 300, 0, 0),
-("giran05_2421_17", 1, 20625, 149134, 121463, -4924, 0, 0, 0, 300, 0, 0),
-("giran05_2421_17", 1, 20625, 150051, 120842, -4863, 0, 0, 0, 300, 0, 0),
-("giran05_2421_17", 1, 20625, 149328, 119840, -4863, 0, 0, 46100, 300, 0, 0),
-("giran05_2421_17", 1, 20625, 148831, 120573, -4924, 0, 0, 0, 300, 0, 0),
-("giran05_2421_17", 1, 20625, 148519, 119585, -4848, 0, 0, 0, 300, 0, 0),
--- Maluk Berserker
-("giran05_2421_18", 1, 20626, 148161, 110743, -3949, 0, 0, 23518, 300, 0, 0),
-("giran05_2421_18", 1, 20626, 147516, 109600, -3949, 0, 0, 0, 300, 0, 0),
-("giran05_2421_18", 1, 20626, 147819, 110846, -3949, 0, 0, 0, 300, 0, 0),
-("giran05_2421_18", 1, 20626, 148151, 109864, -3933, 0, 0, 53939, 300, 0, 0),
-("giran05_2421_18", 1, 20626, 148223, 110241, -3949, 0, 0, 3062, 300, 0, 0),
-("giran05_2421_18", 1, 20626, 148321, 109244, -3949, 0, 0, 0, 300, 0, 0),
-("giran05_2421_18", 1, 20626, 145810, 120024, -3912, 0, 0, 0, 300, 0, 0),
-("giran05_2421_18", 1, 20626, 145600, 119658, -3913, 0, 0, 4075, 300, 0, 0),
-("giran05_2421_18", 1, 20626, 145772, 119229, -3953, 0, 0, 0, 300, 0, 0),
-("giran05_2421_18", 1, 20626, 144812, 118063, -3913, 0, 0, 0, 300, 0, 0),
-("giran05_2421_18", 1, 20626, 144675, 118394, -3913, 0, 0, 18381, 300, 0, 0),
-("giran05_2421_18", 1, 20626, 144698, 117743, -3913, 0, 0, 43794, 300, 0, 0),
-("giran05_2421_18", 1, 20626, 145880, 117753, -3869, 0, 0, 27313, 300, 0, 0),
-("giran05_2421_18", 1, 20626, 145424, 117255, -3955, 0, 0, 0, 300, 0, 0),
-("giran05_2421_18", 1, 20626, 144931, 117925, -3913, 0, 0, 31317, 300, 0, 0),
-("giran05_2421_18", 1, 20626, 149654, 119950, -4863, 0, 0, 18530, 300, 0, 0),
-("giran05_2421_18", 1, 20626, 147818, 121038, -4782, 0, 0, 20240, 300, 0, 0),
-("giran05_2421_18", 1, 20626, 148740, 119680, -4846, 0, 0, 0, 300, 0, 0),
-("giran05_2421_18", 1, 20626, 149133, 120395, -4924, 0, 0, 0, 300, 0, 0),
-("giran05_2421_18", 1, 20626, 148409, 120428, -4863, 0, 0, 7709, 300, 0, 0),
-("giran05_2421_18", 1, 20626, 149133, 120751, -4924, 0, 0, 0, 300, 0, 0),
-("giran05_2421_18", 1, 20626, 148939, 120878, -4863, 0, 0, 31461, 300, 0, 0),
-("giran05_2421_18", 1, 20626, 149233, 120217, -4924, 0, 0, 0, 300, 0, 0),
-("giran05_2421_18", 1, 20626, 149847, 121080, -4863, 0, 0, 63107, 300, 0, 0),
-("giran05_2421_18", 1, 20626, 148206, 121165, -4784, 0, 0, 52054, 300, 0, 0),
--- Maluk Lord
-("giran05_2421_29", 1, 20627, 145580, 120584, -3913, 0, 0, 19918, 300, 0, 0),
-("giran05_2421_29", 1, 20627, 145594, 120243, -3913, 0, 0, 37557, 300, 0, 0),
-("giran05_2421_29", 1, 20627, 145707, 119843, -3913, 0, 0, 49719, 300, 0, 0),
-("giran05_2421_29", 1, 20627, 145231, 117887, -3913, 0, 0, 12228, 300, 0, 0),
-("giran05_2421_29", 1, 20627, 144887, 117696, -3913, 0, 0, 33264, 300, 0, 0),
-("giran05_2421_29", 1, 20627, 143561, 117718, -3913, 0, 0, 0, 300, 0, 0),
-("giran05_2421_29", 1, 20627, 145735, 117316, -3913, 0, 0, 40241, 300, 0, 0),
-("giran05_2421_29", 1, 20627, 144975, 118297, -3913, 0, 0, 49874, 300, 0, 0),
-("giran05_2421_29", 1, 20627, 145373, 117714, -3913, 0, 0, 7806, 300, 0, 0),
-("giran05_2421_29", 1, 20627, 147953, 121212, -4776, 0, 0, 3703, 300, 0, 0),
-("giran05_2421_29", 1, 20627, 148932, 121463, -4924, 0, 0, 0, 300, 0, 0),
-("giran05_2421_29", 1, 20627, 148398, 120505, -4866, 0, 0, 0, 300, 0, 0),
-("giran05_2421_29", 1, 20627, 149328, 120373, -4863, 0, 0, 59929, 300, 0, 0),
-("giran05_2421_29", 1, 20627, 148629, 120573, -4924, 0, 0, 0, 300, 0, 0),
-("giran05_2421_29", 1, 20627, 149497, 120829, -4863, 0, 0, 19149, 300, 0, 0),
-("giran05_2421_29", 1, 20627, 149774, 119375, -4863, 0, 0, 20880, 300, 0, 0),
-("giran05_2421_29", 1, 20627, 147701, 121222, -4789, 0, 0, 6192, 300, 0, 0),
-("giran05_2421_29", 1, 20627, 148516, 121398, -4857, 0, 0, 27389, 300, 0, 0),
-("giran05_2421_29", 1, 20627, 150065, 118805, -4845, 0, 0, 56152, 300, 0, 0),
-("giran05_2421_29", 1, 20627, 148088, 121068, -4778, 0, 0, 39944, 300, 0, 0),
-("giran05_2421_29", 1, 20627, 152424, 117028, -5255, 0, 0, 55315, 300, 0, 0),
-("giran05_2421_29", 1, 20627, 153134, 116474, -5255, 0, 0, 24364, 300, 0, 0),
-("giran05_2421_29", 1, 20627, 153566, 114724, -5255, 0, 0, 30021, 300, 0, 0),
-("giran05_2421_29", 1, 20627, 153346, 115504, -5296, 0, 0, 0, 300, 0, 0),
-("giran05_2421_29", 1, 20627, 154652, 115419, -5255, 0, 0, 10183, 300, 0, 0),
-("giran05_2421_29", 1, 20627, 154001, 114590, -5246, 0, 0, 16590, 300, 0, 0),
-("giran05_2421_29", 1, 20627, 154629, 115062, -5255, 0, 0, 49390, 300, 0, 0),
-("giran05_2421_29", 1, 20627, 154548, 116245, -5255, 0, 0, 54698, 300, 0, 0),
--- Limal Karinness
-("giran05_2421_38", 1, 20628, 148730, 120395, -4924, 0, 0, 0, 300, 0, 0),
-("giran05_2421_38", 1, 20628, 149568, 119649, -4863, 0, 0, 51498, 300, 0, 0),
-("giran05_2421_38", 1, 20628, 148108, 121508, -4812, 0, 0, 11353, 300, 0, 0),
-("giran05_2421_38", 1, 20628, 148415, 119968, -4863, 0, 0, 1569, 300, 0, 0),
-("giran05_2421_38", 1, 20628, 148469, 119751, -4852, 0, 0, 0, 300, 0, 0),
-("giran05_2421_38", 1, 20628, 153690, 116932, -5255, 0, 0, 35660, 300, 0, 0),
-("giran05_2421_38", 1, 20628, 153486, 115054, -5255, 0, 0, 24856, 300, 0, 0),
-("giran05_2421_38", 1, 20628, 153719, 114526, -5255, 0, 0, 8050, 300, 0, 0),
-("giran05_2421_38", 1, 20628, 154812, 115385, -5258, 0, 0, 0, 300, 0, 0),
-("giran05_2421_38", 1, 20628, 150897, 115591, -5473, 0, 0, 12447, 300, 0, 0),
-("giran05_2421_38", 1, 20628, 150924, 116001, -5473, 0, 0, 15699, 300, 0, 0),
-("giran05_2421_38", 1, 20628, 149866, 115373, -5473, 0, 0, 39425, 300, 0, 0),
-("giran05_2421_38", 1, 20628, 150795, 114653, -5519, 0, 0, 0, 300, 0, 0),
-("giran05_2421_38", 1, 20628, 150190, 114653, -5519, 0, 0, 0, 300, 0, 0),
-("giran05_2421_38", 1, 20628, 150997, 115009, -5519, 0, 0, 0, 300, 0, 0),
-("giran05_2421_38", 1, 20628, 148801, 114498, -5476, 0, 0, 0, 300, 0, 0),
-("giran05_2421_38", 1, 20628, 149148, 114765, -5517, 0, 0, 0, 300, 0, 0),
-("giran05_2421_38", 1, 20628, 153486, 111104, -5524, 0, 0, 0, 300, 0, 0),
-("giran05_2421_38", 1, 20628, 154365, 111958, -5521, 0, 0, 59466, 300, 0, 0),
-("giran05_2421_38", 1, 20628, 153130, 111859, -5567, 0, 0, 0, 300, 0, 0),
-("giran05_2421_38", 1, 20628, 150723, 110843, -5521, 0, 0, 54079, 300, 0, 0),
-("giran05_2421_38", 1, 20628, 150665, 111588, -5555, 0, 0, 0, 300, 0, 0),
-("giran05_2421_38", 1, 20628, 150076, 112230, -5505, 0, 0, 1236, 300, 0, 0),
-("giran05_2421_38", 1, 20628, 150048, 109880, -5197, 0, 0, 0, 300, 0, 0),
-("giran05_2421_38", 1, 20628, 149435, 110863, -5460, 0, 0, 15417, 300, 0, 0),
-("giran05_2421_38", 1, 20628, 151620, 109423, -5198, 0, 0, 0, 300, 0, 0),
-("giran05_2421_38", 1, 20628, 153082, 108720, -5204, 0, 0, 0, 300, 0, 0),
-("giran05_2421_38", 1, 20628, 153683, 108895, -5187, 0, 0, 0, 300, 0, 0),
-("giran05_2421_38", 1, 20628, 153108, 107965, -5156, 0, 0, 0, 300, 0, 0),
-("giran05_2421_38", 1, 20628, 154594, 108106, -5156, 0, 0, 0, 300, 0, 0),
-("giran05_2421_38", 1, 20628, 152426, 107541, -5075, 0, 0, 0, 300, 0, 0),
-("giran05_2421_38", 1, 20628, 152342, 107589, -5061, 0, 0, 0, 300, 0, 0),
-("giran05_2421_38", 1, 20628, 151661, 107398, -4941, 0, 0, 0, 300, 0, 0),
--- Karik
-("giran05_2421_45", 1, 20629, 154181, 116772, -5251, 0, 0, 1015, 300, 0, 0),
-("giran05_2421_45", 1, 20629, 151745, 117400, -5242, 0, 0, 58338, 300, 0, 0),
-("giran05_2421_45", 1, 20629, 154030, 114877, -5241, 0, 0, 62971, 300, 0, 0),
-("giran05_2421_45", 1, 20629, 152942, 115148, -5296, 0, 0, 0, 300, 0, 0),
-("giran05_2421_45", 1, 20629, 153245, 115016, -5255, 0, 0, 26210, 300, 0, 0),
-("giran05_2421_45", 1, 20629, 154424, 114643, -5255, 0, 0, 45936, 300, 0, 0),
-("giran05_2421_45", 1, 20629, 154632, 115833, -5255, 0, 0, 51052, 300, 0, 0),
-("giran05_2421_45", 1, 20629, 150896, 114475, -5519, 0, 0, 0, 300, 0, 0),
-("giran05_2421_45", 1, 20629, 150127, 115092, -5476, 0, 0, 0, 300, 0, 0),
-("giran05_2421_45", 1, 20629, 153718, 112528, -5525, 0, 0, 52202, 300, 0, 0),
-("giran05_2421_45", 1, 20629, 150997, 115365, -5519, 0, 0, 0, 300, 0, 0),
-("giran05_2421_45", 1, 20629, 151198, 115721, -5519, 0, 0, 0, 300, 0, 0),
-("giran05_2421_45", 1, 20629, 153458, 112423, -5525, 0, 0, 47871, 300, 0, 0),
-("giran05_2421_45", 1, 20629, 151615, 115393, -5473, 0, 0, 65335, 300, 0, 0),
-("giran05_2421_45", 1, 20629, 150291, 114475, -5519, 0, 0, 0, 300, 0, 0),
-("giran05_2421_45", 1, 20629, 154262, 112576, -5525, 0, 0, 17443, 300, 0, 0),
-("giran05_2421_45", 1, 20629, 151601, 115009, -5519, 0, 0, 0, 300, 0, 0),
-("giran05_2421_45", 1, 20629, 153525, 112966, -5525, 0, 0, 59753, 300, 0, 0),
-("giran05_2421_45", 1, 20629, 150376, 115689, -5477, 0, 0, 23804, 300, 0, 0),
-("giran05_2421_45", 1, 20629, 149265, 115292, -5477, 0, 0, 36312, 300, 0, 0),
-("giran05_2421_45", 1, 20629, 149847, 114841, -5473, 0, 0, 64338, 300, 0, 0),
-("giran05_2421_45", 1, 20629, 153533, 111859, -5567, 0, 0, 0, 300, 0, 0),
-("giran05_2421_45", 1, 20629, 153361, 111540, -5525, 0, 0, 42755, 300, 0, 0),
-("giran05_2421_45", 1, 20629, 153679, 110847, -5525, 0, 0, 65367, 300, 0, 0),
-("giran05_2421_45", 1, 20629, 152929, 111503, -5567, 0, 0, 0, 300, 0, 0),
-("giran05_2421_45", 1, 20629, 152239, 111492, -5521, 0, 0, 40452, 300, 0, 0),
-("giran05_2421_45", 1, 20629, 153972, 111141, -5507, 0, 0, 42357, 300, 0, 0),
-("giran05_2421_45", 1, 20629, 150968, 111410, -5555, 0, 0, 0, 300, 0, 0),
-("giran05_2421_45", 1, 20629, 149959, 112122, -5555, 0, 0, 0, 300, 0, 0),
-("giran05_2421_45", 1, 20629, 150161, 111410, -5555, 0, 0, 0, 300, 0, 0),
-("giran05_2421_45", 1, 20629, 150363, 111054, -5555, 0, 0, 0, 300, 0, 0),
-("giran05_2421_45", 1, 20629, 150769, 112414, -5525, 0, 0, 30412, 300, 0, 0),
-("giran05_2421_45", 1, 20629, 151443, 111283, -5521, 0, 0, 65212, 300, 0, 0),
-("giran05_2421_45", 1, 20629, 149938, 111911, -5523, 0, 0, 0, 300, 0, 0),
-("giran05_2421_45", 1, 20629, 149444, 109869, -5234, 0, 0, 0, 300, 0, 0),
-("giran05_2421_45", 1, 20629, 149659, 109717, -5214, 0, 0, 0, 300, 0, 0),
-("giran05_2421_45", 1, 20629, 151316, 109341, -5137, 0, 0, 61707, 300, 0, 0),
-("giran05_2421_45", 1, 20629, 149408, 110543, -5409, 0, 0, 47862, 300, 0, 0),
-("giran05_2421_45", 1, 20629, 152189, 109252, -5157, 0, 0, 63255, 300, 0, 0),
-("giran05_2421_45", 1, 20629, 152027, 107585, -5007, 0, 0, 58350, 300, 0, 0),
-("giran05_2421_45", 1, 20629, 153245, 108251, -5157, 0, 0, 8071, 300, 0, 0),
-("giran05_2421_45", 1, 20629, 153183, 108898, -5204, 0, 0, 0, 300, 0, 0),
-("giran05_2421_45", 1, 20629, 153037, 108921, -5156, 0, 0, 0, 300, 0, 0),
-("giran05_2421_45", 1, 20629, 152576, 107806, -5104, 0, 0, 16983, 300, 0, 0),
-("giran05_2421_45", 1, 20629, 148751, 108067, -4284, 0, 0, 41009, 300, 0, 0),
-("giran05_2421_45", 1, 20629, 149980, 108125, -4598, 0, 0, 14326, 300, 0, 0),
-("giran05_2421_45", 1, 20629, 153704, 108860, -5194, 0, 0, 0, 300, 0, 0),
-("giran05_2421_45", 1, 20629, 148277, 107525, -4161, 0, 0, 39479, 300, 0, 0),
-("giran05_2421_45", 1, 20629, 154784, 108545, -5196, 0, 0, 0, 300, 0, 0),
-("giran05_2421_45", 1, 20629, 154003, 108559, -5153, 0, 0, 33174, 300, 0, 0),
-("giran05_2421_45", 1, 20629, 149382, 108417, -4447, 0, 0, 21729, 300, 0, 0),
-("giran05_2421_45", 1, 20629, 150356, 107594, -4698, 0, 0, 26976, 300, 0, 0),
-("giran05_2421_45", 1, 20629, 153615, 107552, -5190, 0, 0, 0, 300, 0, 0),
-("giran05_2421_45", 1, 20629, 151291, 107333, -4878, 0, 0, 34404, 300, 0, 0),
-("giran05_2421_45", 1, 20629, 153318, 107373, -5139, 0, 0, 11012, 300, 0, 0),
--- Pytan
-("giran05_2421_p04", 1, 20761, 140095, 114313, -3724, 0, 0, 0, 400, 0, 0),
-("giran05_2421_p04", 1, 20761, 143190, 114008, -3775, 0, 0, 0, 400, 0, 0),
-("giran05_2421_p04", 1, 20761, 148438, 117825, -3712, 0, 0, 7402, 400, 0, 0),
-("giran05_2421_p04", 1, 20761, 144305, 112288, -3936, 0, 0, 5089, 400, 0, 0),
-("giran05_2421_p04", 1, 20761, 140572, 107941, -3945, 0, 0, 17718, 400, 0, 0),
-("giran05_2421_p04", 1, 20761, 140583, 108315, -3951, 0, 0, 0, 400, 0, 0),
-("giran05_2421_p04", 1, 20761, 144327, 107500, -3945, 0, 0, 20957, 400, 0, 0),
-("giran05_2421_p04", 1, 20761, 144858, 107878, -3945, 0, 0, 6054, 400, 0, 0),
-("giran05_2421_p04", 1, 20761, 147705, 109800, -3949, 0, 0, 18123, 400, 0, 0),
-("giran05_2421_p04", 1, 20761, 147938, 110402, -3945, 0, 0, 5834, 400, 0, 0),
-("giran05_2421_p04", 1, 20761, 140322, 117293, -3913, 0, 0, 6918, 400, 0, 0),
-("giran05_2421_p04", 1, 20761, 142361, 116226, -3915, 0, 0, 0, 400, 0, 0),
-("giran05_2421_p04", 1, 20761, 142857, 117854, -3913, 0, 0, 14377, 400, 0, 0),
-("giran05_2421_p04", 1, 20761, 143237, 120112, -3918, 0, 0, 0, 400, 0, 0),
-("giran05_2421_p04", 1, 20761, 143258, 121174, -3913, 0, 0, 15212, 400, 0, 0),
-("giran05_2421_p04", 1, 20761, 149432, 121272, -4863, 0, 0, 11911, 400, 0, 0),
-("giran05_2421_p04", 1, 20761, 148701, 120876, -4863, 0, 0, 20359, 400, 0, 0),
--- Bloody Lady
-("giran05_2421_01", 1, 21084, 135571, 114137, -3721, 0, 0, 18940, 250, 0, 0),
-("giran05_2421_01", 1, 21084, 135526, 114266, -3721, 0, 0, 0, 250, 0, 0),
-("giran05_2421_01", 1, 21084, 136341, 113831, -3721, 0, 0, 48238, 250, 0, 0),
-("giran05_2421_01", 1, 21084, 136711, 114610, -3711, 0, 0, 27295, 250, 0, 0),
-("giran05_2421_01", 1, 21084, 136648, 114040, -3721, 0, 0, 0, 250, 0, 0),
-("giran05_2421_01", 1, 21084, 139901, 113995, -3724, 0, 0, 0, 250, 0, 0),
-("giran05_2421_01", 1, 21084, 139580, 114403, -3721, 0, 0, 0, 250, 0, 0),
-("giran05_2421_01", 1, 21084, 140328, 113953, -3724, 0, 0, 0, 250, 0, 0),
-("giran05_2421_01", 1, 21084, 144691, 114342, -3712, 0, 0, 64837, 250, 0, 0),
-("giran05_2421_01", 1, 21084, 143895, 114542, -3723, 0, 0, 0, 250, 0, 0),
-("giran05_2421_01", 1, 21084, 143768, 114328, -3723, 0, 0, 0, 250, 0, 0),
-("giran05_2421_01", 1, 21084, 140809, 112652, -3725, 0, 0, 40138, 250, 0, 0),
-("giran05_2421_01", 1, 21084, 140720, 112622, -3723, 0, 0, 0, 250, 0, 0),
-("giran05_2421_01", 1, 21084, 141648, 112394, -3725, 0, 0, 4794, 250, 0, 0),
-("giran05_2421_01", 1, 21084, 141875, 111975, -3725, 0, 0, 0, 250, 0, 0),
-("giran05_2421_01", 1, 21084, 144265, 112712, -3949, 0, 0, 63512, 250, 0, 0),
-("giran05_2421_01", 1, 21084, 143498, 112616, -3949, 0, 0, 33665, 250, 0, 0),
-("giran05_2421_01", 1, 21084, 143031, 112220, -3925, 0, 0, 29632, 250, 0, 0),
-("giran05_2421_01", 1, 21084, 143676, 112268, -3949, 0, 0, 0, 250, 0, 0),
--- Bloody Sniper
-("giran05_2421_50", 1, 21085, 150537, 114306, -5463, 0, 0, 30925, 300, 0, 0),
-("giran05_2421_50", 1, 21085, 154337, 111789, -5525, 0, 0, 54642, 300, 0, 0),
-("giran05_2421_50", 1, 21085, 150190, 115365, -5519, 0, 0, 0, 300, 0, 0),
-("giran05_2421_50", 1, 21085, 152565, 111583, -5525, 0, 0, 39383, 300, 0, 0),
-("giran05_2421_50", 1, 21085, 148524, 114795, -5473, 0, 0, 65314, 300, 0, 0),
-("giran05_2421_50", 1, 21085, 149142, 114818, -5473, 0, 0, 40778, 300, 0, 0),
-("giran05_2421_50", 1, 21085, 153897, 112238, -5521, 0, 0, 52254, 300, 0, 0),
-("giran05_2421_50", 1, 21085, 153117, 113007, -5521, 0, 0, 57238, 300, 0, 0),
-("giran05_2421_50", 1, 21085, 150867, 110876, -5555, 0, 0, 0, 300, 0, 0),
-("giran05_2421_50", 1, 21085, 150968, 111766, -5555, 0, 0, 0, 300, 0, 0),
-("giran05_2421_50", 1, 21085, 150375, 112511, -5509, 0, 0, 10488, 300, 0, 0),
-("giran05_2421_50", 1, 21085, 149963, 109599, -5180, 0, 0, 0, 300, 0, 0),
-("giran05_2421_50", 1, 21085, 151505, 109187, -5157, 0, 0, 64939, 300, 0, 0),
-("giran05_2421_50", 1, 21085, 152306, 109262, -5153, 0, 0, 293, 300, 0, 0),
-("giran05_2421_50", 1, 21085, 152996, 109329, -5153, 0, 0, 6096, 300, 0, 0),
-("giran05_2421_50", 1, 21085, 153582, 109073, -5187, 0, 0, 0, 300, 0, 0),
-("giran05_2421_50", 1, 21085, 153803, 108326, -5194, 0, 0, 0, 300, 0, 0),
-("giran05_2421_50", 1, 21085, 154530, 108596, -5153, 0, 0, 7225, 300, 0, 0),
-("giran05_2421_50", 1, 21085, 153011, 107552, -5155, 0, 0, 0, 300, 0, 0),
-("giran05_2421_50", 1, 21085, 152544, 107368, -5094, 0, 0, 0, 300, 0, 0),
--- Bloody Liviona
-("giran05_2421_53", 1, 21086, 153520, 111315, -5524, 0, 0, 0, 300, 0, 0),
-("giran05_2421_53", 1, 21086, 153734, 111503, -5567, 0, 0, 0, 300, 0, 0),
-("giran05_2421_53", 1, 21086, 154237, 111681, -5567, 0, 0, 0, 300, 0, 0),
-("giran05_2421_53", 1, 21086, 154187, 112104, -5521, 0, 0, 7867, 300, 0, 0),
-("giran05_2421_53", 1, 21086, 150709, 111197, -5524, 0, 0, 0, 300, 0, 0),
-("giran05_2421_53", 1, 21086, 150028, 111718, -5521, 0, 0, 29927, 300, 0, 0),
-("giran05_2421_53", 1, 21086, 150312, 111709, -5521, 0, 0, 65119, 300, 0, 0),
-("giran05_2421_53", 1, 21086, 150464, 112300, -5555, 0, 0, 0, 300, 0, 0),
-("giran05_2421_53", 1, 21086, 150363, 111766, -5555, 0, 0, 0, 300, 0, 0),
-("giran05_2421_53", 1, 21086, 149527, 111147, -5490, 0, 0, 44734, 300, 0, 0),
-("giran05_2421_53", 1, 21086, 150248, 109604, -5134, 0, 0, 0, 300, 0, 0),
-("giran05_2421_53", 1, 21086, 150746, 109548, -5155, 0, 0, 0, 300, 0, 0),
-("giran05_2421_53", 1, 21086, 151116, 108889, -5198, 0, 0, 0, 300, 0, 0),
-("giran05_2421_53", 1, 21086, 151061, 109314, -5142, 0, 0, 2006, 300, 0, 0),
-("giran05_2421_53", 1, 21086, 153313, 109226, -5194, 0, 0, 0, 300, 0, 0),
-("giran05_2421_53", 1, 21086, 153709, 108656, -5153, 0, 0, 59709, 300, 0, 0),
-("giran05_2421_53", 1, 21086, 153784, 109073, -5187, 0, 0, 0, 300, 0, 0),
-("giran05_2421_53", 1, 21086, 153904, 108148, -5194, 0, 0, 0, 300, 0, 0),
-("giran05_2421_53", 1, 21086, 153300, 108504, -5194, 0, 0, 0, 300, 0, 0),
-("giran05_2421_53", 1, 21086, 154481, 108367, -5196, 0, 0, 0, 300, 0, 0),
-("giran05_2421_53", 1, 21086, 154683, 108723, -5196, 0, 0, 0, 300, 0, 0),
-("giran05_2421_53", 1, 21086, 153303, 107870, -5156, 0, 0, 0, 300, 0, 0),
-("giran05_2421_53", 1, 21086, 152910, 107018, -5155, 0, 0, 0, 300, 0, 0),
-("giran05_2421_53", 1, 21086, 153654, 107338, -5155, 0, 0, 0, 300, 0, 0),
-("giran05_2421_53", 1, 21086, 152709, 107730, -5155, 0, 0, 0, 300, 0, 0),
-("giran05_2421_53", 1, 21086, 150532, 107125, -4873, 0, 0, 0, 300, 0, 0),
-("giran05_2421_53", 1, 21086, 148902, 107871, -4473, 0, 0, 0, 300, 0, 0),
-("giran05_2421_53", 1, 21086, 147093, 107626, -3952, 0, 0, 0, 300, 0, 0),
--- Bloody Knight
-("giran05_2421_68", 1, 21087, 150431, 107303, -4873, 0, 0, 0, 300, 0, 0),
-("giran05_2421_68", 1, 21087, 149103, 108227, -4473, 0, 0, 0, 300, 0, 0),
-("giran05_2421_68", 1, 21087, 147654, 107251, -4042, 0, 0, 0, 300, 0, 0),
-("giran05_2421_68", 1, 21087, 146304, 110537, -3530, 0, 0, 0, 300, 0, 0),
-("giran05_2421_68", 1, 21087, 146305, 111019, -3560, 0, 0, 49059, 300, 0, 0),
-("giran05_2421_68", 1, 21087, 146541, 111908, -3515, 0, 0, 0, 300, 0, 0),
-("giran05_2421_68", 1, 21087, 147245, 112086, -3723, 0, 0, 0, 300, 0, 0),
-("giran05_2421_68", 1, 21087, 149813, 115004, -5412, 0, 0, 36942, 300, 0, 0),
-("giran05_2421_68", 1, 21087, 145962, 112538, -3721, 0, 0, 25688, 300, 0, 0),
-("giran05_2421_68", 1, 21087, 146342, 112581, -3721, 0, 0, 9884, 300, 0, 0),
-("giran05_2421_68", 1, 21087, 147346, 112264, -3773, 0, 0, 0, 300, 0, 0),
-("giran05_2421_68", 1, 21087, 147443, 112197, -3724, 0, 0, 0, 300, 0, 0),
-("giran05_2421_68", 1, 21087, 147621, 112396, -3765, 0, 0, 0, 300, 0, 0),
-("giran05_2421_68", 1, 21087, 147722, 112574, -3765, 0, 0, 0, 300, 0, 0),
-("giran05_2421_68", 1, 21087, 147721, 112218, -3765, 0, 0, 0, 300, 0, 0),
-("giran05_2421_68", 1, 21087, 148325, 112218, -3765, 0, 0, 0, 300, 0, 0),
-("giran05_2421_68", 1, 21087, 148415, 112782, -3721, 0, 0, 36449, 300, 0, 0),
-("giran05_2421_68", 1, 21087, 149262, 113329, -3770, 0, 0, 0, 300, 0, 0),
-("giran05_2421_68", 1, 21087, 148960, 113151, -3770, 0, 0, 0, 300, 0, 0),
-("giran05_2421_68", 1, 21087, 149260, 113757, -3721, 0, 0, 50569, 300, 0, 0),
-("giran05_2421_68", 1, 21087, 149160, 115374, -3762, 0, 0, 0, 300, 0, 0),
-("giran05_2421_68", 1, 21087, 148960, 115018, -3762, 0, 0, 0, 300, 0, 0),
-("giran05_2421_68", 1, 21087, 148960, 115374, -3762, 0, 0, 0, 300, 0, 0),
-("giran05_2421_68", 1, 21087, 149233, 115969, -3700, 0, 0, 64696, 300, 0, 0),
-("giran05_2421_68", 1, 21087, 149546, 115970, -3705, 0, 0, 0, 300, 0, 0),
-("giran05_2421_68", 1, 21087, 149493, 116214, -3702, 0, 0, 8901, 300, 0, 0),
-("giran05_2421_68", 1, 21087, 150112, 116970, -3702, 0, 0, 8039, 300, 0, 0),
-("giran05_2421_68", 1, 21087, 152792, 116913, -5259, 0, 0, 27632, 300, 0, 0),
-("giran05_2421_68", 1, 21087, 150513, 118381, -4895, 0, 0, 22144, 300, 0, 0),
-("giran05_2421_68", 1, 21087, 151097, 118085, -3726, 0, 0, 25050, 300, 0, 0),
-("giran05_2421_68", 1, 21087, 151737, 118637, -3900, 0, 0, 42657, 300, 0, 0),
-("giran05_2421_68", 1, 21087, 150932, 118045, -3694, 0, 0, 20668, 300, 0, 0),
-("giran05_2421_68", 1, 21087, 152187, 119195, -3799, 0, 0, 40374, 300, 0, 0),
-("giran05_2421_68", 1, 21087, 153045, 119746, -3856, 0, 0, 0, 300, 0, 0),
-("giran05_2421_68", 1, 21087, 152339, 119924, -3856, 0, 0, 0, 300, 0, 0),
-("giran05_2421_68", 1, 21087, 152122, 120662, -3805, 0, 0, 17950, 300, 0, 0),
-("giran05_2421_68", 1, 21087, 152260, 119621, -3783, 0, 0, 64381, 300, 0, 0),
-("giran05_2421_68", 1, 21087, 153957, 118651, -3805, 0, 0, 7058, 300, 0, 0),
-("giran05_2421_68", 1, 21087, 153737, 118951, -3845, 0, 0, 0, 300, 0, 0),
-("giran05_2421_68", 1, 21087, 153592, 118906, -3805, 0, 0, 4477, 300, 0, 0),
-("giran05_2421_68", 1, 21087, 154222, 119163, -3805, 0, 0, 20664, 300, 0, 0),
-("giran05_2421_68", 1, 21087, 154327, 118979, -3805, 0, 0, 25221, 300, 0, 0),
-("giran05_2421_68", 1, 21087, 153956, 119188, -3805, 0, 0, 29709, 300, 0, 0),
-("giran05_2421_68", 1, 21087, 152161, 120055, -3805, 0, 0, 17663, 300, 0, 0),
-("giran05_2421_68", 1, 21087, 152163, 120838, -3808, 0, 0, 0, 300, 0, 0),
-("giran05_2421_68", 1, 21087, 152161, 120554, -3805, 0, 0, 60089, 300, 0, 0),
-("giran05_2421_68", 1, 21087, 151847, 121119, -3808, 0, 0, 0, 300, 0, 0),
-("giran05_2421_68", 1, 21087, 151952, 121648, -3805, 0, 0, 63189, 300, 0, 0),
-("giran05_2421_68", 1, 21087, 151806, 120936, -3805, 0, 0, 39732, 300, 0, 0),
-("giran05_2421_68", 1, 21087, 152442, 121660, -3870, 0, 0, 0, 300, 0, 0),
--- Bloody Banshee
-("giran05_2421_75", 1, 21088, 150910, 117920, -3757, 0, 0, 0, 300, 0, 0),
-("giran05_2421_75", 1, 21088, 153332, 116768, -5285, 0, 0, 62799, 300, 0, 0),
-("giran05_2421_75", 1, 21088, 151585, 118556, -3949, 0, 0, 0, 300, 0, 0),
-("giran05_2421_75", 1, 21088, 152239, 119746, -3856, 0, 0, 0, 300, 0, 0),
-("giran05_2421_75", 1, 21088, 152843, 119034, -3856, 0, 0, 0, 300, 0, 0),
-("giran05_2421_75", 1, 21088, 153902, 118613, -3805, 0, 0, 8682, 300, 0, 0),
-("giran05_2421_75", 1, 21088, 154034, 118844, -3805, 0, 0, 708, 300, 0, 0),
-("giran05_2421_75", 1, 21088, 153517, 119407, -3805, 0, 0, 27942, 300, 0, 0),
-("giran05_2421_75", 1, 21088, 152104, 121727, -3805, 0, 0, 37536, 300, 0, 0),
-("giran05_2421_75", 1, 21088, 153510, 121474, -3805, 0, 0, 59447, 300, 0, 0),
-("giran05_2421_75", 1, 21088, 146433, 110522, -3529, 0, 0, 0, 300, 0, 0),
-("giran05_2421_75", 1, 21088, 146548, 112878, -3721, 0, 0, 49452, 300, 0, 0),
-("giran05_2421_75", 1, 21088, 147604, 112795, -3721, 0, 0, 62104, 300, 0, 0),
-("giran05_2421_75", 1, 21088, 146944, 112620, -3773, 0, 0, 0, 300, 0, 0),
-("giran05_2421_75", 1, 21088, 148212, 111847, -3724, 0, 0, 0, 300, 0, 0),
-("giran05_2421_75", 1, 21088, 148062, 111957, -3721, 0, 0, 54432, 300, 0, 0),
-("giran05_2421_75", 1, 21088, 147447, 112580, -3723, 0, 0, 0, 300, 0, 0),
-("giran05_2421_75", 1, 21088, 149093, 112933, -3723, 0, 0, 0, 300, 0, 0),
-("giran05_2421_75", 1, 21088, 149261, 115552, -3762, 0, 0, 0, 300, 0, 0),
-("giran05_2421_75", 1, 21088, 149121, 114636, -3721, 0, 0, 64554, 300, 0, 0),
-("giran05_2421_75", 1, 21088, 149393, 116428, -3783, 0, 0, 0, 300, 0, 0),
--- Bloody Lord
-("giran05_2421_75", 1, 21089, 148001, 107243, -4104, 0, 0, 59961, 300, 0, 0),
-("giran05_2421_75", 1, 21089, 146268, 111973, -3579, 0, 0, 16196, 300, 0, 0),
-("giran05_2421_75", 1, 21089, 148972, 114642, -5473, 0, 0, 65020, 300, 0, 0),
-("giran05_2421_75", 1, 21089, 145981, 111411, -3547, 0, 0, 47511, 300, 0, 0),
-("giran05_2421_75", 1, 21089, 146565, 111223, -3559, 0, 0, 60621, 300, 0, 0),
-("giran05_2421_75", 1, 21089, 146037, 112798, -3773, 0, 0, 0, 300, 0, 0),
-("giran05_2421_75", 1, 21089, 146415, 111657, -3565, 0, 0, 13681, 300, 0, 0),
-("giran05_2421_75", 1, 21089, 149023, 112146, -3725, 0, 0, 60819, 300, 0, 0),
-("giran05_2421_75", 1, 21089, 147054, 112796, -3721, 0, 0, 64035, 300, 0, 0),
-("giran05_2421_75", 1, 21089, 147145, 112264, -3773, 0, 0, 0, 300, 0, 0),
-("giran05_2421_75", 1, 21089, 147419, 112752, -3765, 0, 0, 0, 300, 0, 0),
-("giran05_2421_75", 1, 21089, 148703, 112025, -3706, 0, 0, 909, 300, 0, 0),
-("giran05_2421_75", 1, 21089, 146632, 112758, -3725, 0, 0, 60331, 300, 0, 0),
-("giran05_2421_75", 1, 21089, 148682, 112729, -3725, 0, 0, 30636, 300, 0, 0),
-("giran05_2421_75", 1, 21089, 147847, 112086, -3724, 0, 0, 0, 300, 0, 0),
-("giran05_2421_75", 1, 21089, 148931, 113385, -3724, 0, 0, 0, 300, 0, 0),
-("giran05_2421_75", 1, 21089, 149040, 115863, -3730, 0, 0, 15868, 300, 0, 0),
-("giran05_2421_75", 1, 21089, 150499, 114802, -5477, 0, 0, 59422, 300, 0, 0),
-("giran05_2421_75", 1, 21089, 149327, 114923, -3724, 0, 0, 0, 300, 0, 0),
-("giran05_2421_75", 1, 21089, 148857, 115199, -5477, 0, 0, 17611, 300, 0, 0),
-("giran05_2421_75", 1, 21089, 150414, 117111, -3701, 0, 0, 8313, 300, 0, 0),
-("giran05_2421_75", 1, 21089, 149261, 115196, -3762, 0, 0, 0, 300, 0, 0),
-("giran05_2421_75", 1, 21089, 149897, 116962, -3783, 0, 0, 0, 300, 0, 0),
-("giran05_2421_75", 1, 21089, 149813, 116527, -3702, 0, 0, 35861, 300, 0, 0),
-("giran05_2421_75", 1, 21089, 152606, 120169, -3755, 0, 0, 11047, 300, 0, 0),
-("giran05_2421_75", 1, 21089, 150746, 118211, -4988, 0, 0, 28589, 300, 0, 0),
-("giran05_2421_75", 1, 21089, 150644, 117659, -3710, 0, 0, 11211, 300, 0, 0),
-("giran05_2421_75", 1, 21089, 151403, 118331, -3868, 0, 0, 63249, 300, 0, 0),
-("giran05_2421_75", 1, 21089, 151294, 118253, -3826, 0, 0, 24576, 300, 0, 0),
-("giran05_2421_75", 1, 21089, 151787, 118556, -3949, 0, 0, 0, 300, 0, 0),
-("giran05_2421_75", 1, 21089, 151337, 117708, -5177, 0, 0, 56824, 300, 0, 0),
-("giran05_2421_75", 1, 21089, 152214, 119396, -3799, 0, 0, 20939, 300, 0, 0),
-("giran05_2421_75", 1, 21089, 153129, 119668, -3805, 0, 0, 26592, 300, 0, 0),
-("giran05_2421_75", 1, 21089, 152340, 118856, -3856, 0, 0, 0, 300, 0, 0),
-("giran05_2421_75", 1, 21089, 152715, 119690, -3805, 0, 0, 17295, 300, 0, 0),
-("giran05_2421_75", 1, 21089, 153941, 119048, -3809, 0, 0, 61087, 300, 0, 0),
-("giran05_2421_75", 1, 21089, 151800, 119418, -3808, 0, 0, 0, 300, 0, 0),
-("giran05_2421_75", 1, 21089, 153644, 119358, -3805, 0, 0, 29436, 300, 0, 0),
-("giran05_2421_75", 1, 21089, 154240, 118417, -3845, 0, 0, 0, 300, 0, 0),
-("giran05_2421_75", 1, 21089, 153451, 118856, -3807, 0, 0, 0, 300, 0, 0),
-("giran05_2421_75", 1, 21089, 153435, 119129, -3845, 0, 0, 0, 300, 0, 0),
-("giran05_2421_75", 1, 21089, 154512, 118643, -3805, 0, 0, 3390, 300, 0, 0),
-("giran05_2421_75", 1, 21089, 153838, 118773, -3845, 0, 0, 0, 300, 0, 0),
-("giran05_2421_75", 1, 21089, 153233, 119129, -3845, 0, 0, 0, 300, 0, 0),
-("giran05_2421_75", 1, 21089, 152064, 120357, -3851, 0, 0, 0, 300, 0, 0),
-("giran05_2421_75", 1, 21089, 152018, 121167, -3805, 0, 0, 45234, 300, 0, 0),
-("giran05_2421_75", 1, 21089, 153613, 121669, -3809, 0, 0, 49, 300, 0, 0),
-("giran05_2421_75", 1, 21089, 153029, 121858, -3805, 0, 0, 26329, 300, 0, 0),
-("giran05_2421_75", 1, 21089, 152189, 121586, -3805, 0, 0, 64853, 300, 0, 0),
-("giran05_2421_75", 1, 21089, 152473, 121840, -3805, 0, 0, 28995, 300, 0, 0),
-("giran05_2421_75", 1, 21089, 151819, 121339, -3805, 0, 0, 38170, 300, 0, 0),
--- Bloody Guardian
-("giran05_2421_p50", 1, 21090, 151914, 115147, -5467, 0, 0, 3284, 400, 0, 0),
-("giran05_2421_p50", 1, 21090, 151261, 115013, -5473, 0, 0, 19351, 400, 0, 0),
-("giran05_2421_p50", 1, 21090, 150986, 114416, -5453, 0, 0, 39972, 400, 0, 0),
-("giran05_2421_p50", 1, 21090, 149460, 115116, -5473, 0, 0, 28649, 400, 0, 0),
-("giran05_2421_p50", 1, 21090, 150741, 115208, -5460, 0, 0, 36194, 400, 0, 0),
-("giran05_2421_p50", 1, 21090, 153629, 111150, -5521, 0, 0, 32495, 400, 0, 0),
-("giran05_2421_p50", 1, 21090, 152963, 111754, -5524, 0, 0, 37869, 400, 0, 0),
-("giran05_2421_p50", 1, 21090, 149781, 111310, -5496, 0, 0, 5290, 400, 0, 0),
-("giran05_2421_p50", 1, 21090, 150701, 111384, -5521, 0, 0, 53346, 400, 0, 0),
-("giran05_2421_p50", 1, 21090, 150392, 112038, -5521, 0, 0, 12679, 400, 0, 0),
-("giran05_2421_p50", 1, 21090, 152852, 107455, -5144, 0, 0, 0, 400, 0, 0),
-("giran05_2421_p50", 1, 21090, 153309, 107735, -5153, 0, 0, 1985, 400, 0, 0),
-("giran05_2421_p50", 1, 21090, 146625, 111993, -3597, 0, 0, 0, 400, 0, 0),
-("giran05_2421_p50", 1, 21090, 148158, 112118, -3721, 0, 0, 60920, 400, 0, 0),
-("giran05_2421_p50", 1, 21090, 147170, 112449, -3721, 0, 0, 34048, 400, 0, 0),
-("giran05_2421_p50", 1, 21090, 146523, 112371, -3701, 0, 0, 16698, 400, 0, 0),
-("giran05_2421_p50", 1, 21090, 147551, 112147, -3724, 0, 0, 0, 400, 0, 0),
-("giran05_2421_p50", 1, 21090, 148579, 111816, -3712, 0, 0, 65143, 400, 0, 0),
-("giran05_2421_p50", 1, 21090, 148946, 112659, -3721, 0, 0, 6852, 400, 0, 0),
-("giran05_2421_p50", 1, 21090, 149277, 114661, -3721, 0, 0, 62016, 400, 0, 0),
-("giran05_2421_p50", 1, 21090, 149191, 114267, -3721, 0, 0, 15478, 400, 0, 0),
-("giran05_2421_p50", 1, 21090, 148775, 115600, -3721, 0, 0, 20865, 400, 0, 0),
-("giran05_2421_p50", 1, 21090, 152333, 119191, -3800, 0, 0, 61627, 400, 0, 0),
-("giran05_2421_p50", 1, 21090, 152891, 119935, -3805, 0, 0, 59597, 400, 0, 0),
-("giran05_2421_p50", 1, 21090, 152352, 120280, -3805, 0, 0, 11999, 400, 0, 0),
-("giran05_2421_p50", 1, 21090, 153583, 118729, -3805, 0, 0, 0, 400, 0, 0),
-("giran05_2421_p50", 1, 21090, 153844, 118507, -3805, 0, 0, 64106, 400, 0, 0),
-("giran05_2421_p50", 1, 21090, 154186, 118829, -3805, 0, 0, 58529, 400, 0, 0),
-("giran05_2421_p50", 1, 21090, 151711, 120975, -3805, 0, 0, 20205, 400, 0, 0),
-("giran05_2421_p50", 1, 21090, 152754, 121826, -3805, 0, 0, 28081, 400, 0, 0),
+-- 
+("dragon_valley", 1, 18968, 139821, 113937, -3720, 0, 0, 2366, 60, 0, 0),
+-- Maluk Leader
+("lair_of_antharas", 1, 22838, 142161, 114240, -3720, 0, 0, 62868, 60, 0, 0),
+("lair_of_antharas", 1, 22838, 142520, 116838, -3912, 0, 0, 28917, 60, 0, 0),
+("lair_of_antharas", 1, 22838, 142650, 116701, -3912, 0, 0, 61235, 60, 0, 0),
+("lair_of_antharas", 1, 22838, 142691, 117971, -3912, 0, 0, 9346, 60, 0, 0),
+("lair_of_antharas", 1, 22838, 142966, 113731, -3720, 0, 0, 58330, 60, 0, 0),
+("lair_of_antharas", 1, 22838, 143347, 114704, -3720, 0, 0, 45797, 60, 0, 0),
+("lair_of_antharas", 1, 22838, 143441, 117592, -3912, 0, 0, 8809, 60, 0, 0),
+("lair_of_antharas", 1, 22838, 143454, 112724, -3944, 0, 0, 25847, 60, 0, 0),
+("lair_of_antharas", 1, 22838, 143465, 116617, -3912, 0, 0, 4417, 60, 0, 0),
+("lair_of_antharas", 1, 22838, 143544, 110356, -3944, 0, 0, 5179, 60, 0, 0),
+("lair_of_antharas", 1, 22838, 143932, 109922, -3944, 0, 0, 5251, 60, 0, 0),
+("lair_of_antharas", 1, 22838, 144360, 112784, -3944, 0, 0, 29848, 60, 0, 0),
+("lair_of_antharas", 1, 22838, 148071, 107208, -4112, 0, 0, 42395, 60, 0, 0),
+("lair_of_antharas", 1, 22838, 148305, 107386, -4168, 0, 0, 50371, 60, 0, 0),
+("lair_of_antharas", 1, 22838, 149234, 108441, -4408, 0, 0, 1643, 60, 0, 0),
+("lair_of_antharas", 1, 22838, 149268, 108519, -4416, 0, 0, 12696, 60, 0, 0),
+("lair_of_antharas", 1, 22838, 149548, 109890, -5232, 0, 0, 53156, 60, 0, 0),
+("lair_of_antharas", 1, 22838, 149835, 109705, -5200, 0, 0, 20804, 60, 0, 0),
+("lair_of_antharas", 1, 22838, 149885, 108337, -4568, 0, 0, 12242, 60, 0, 0),
+("lair_of_antharas", 1, 22838, 149951, 108085, -4584, 0, 0, 52949, 60, 0, 0),
+("lair_of_antharas", 1, 22838, 150050, 112140, -5512, 0, 0, 11565, 60, 0, 0),
+("lair_of_antharas", 1, 22838, 150206, 112655, -5512, 0, 0, 39558, 60, 0, 0),
+("lair_of_antharas", 1, 22838, 150759, 111748, -5520, 0, 0, 8174, 60, 0, 0),
+("lair_of_antharas", 1, 22838, 151011, 109169, -5144, 0, 0, 64369, 60, 0, 0),
+("lair_of_antharas", 1, 22838, 151133, 111025, -5504, 0, 0, 22246, 60, 0, 0),
+("lair_of_antharas", 1, 22838, 151258, 109569, -5152, 0, 0, 33232, 60, 0, 0),
+("lair_of_antharas", 1, 22838, 151778, 120915, -3808, 0, 0, 41618, 60, 0, 0),
+("lair_of_antharas", 1, 22838, 151986, 121226, -3808, 0, 0, 54087, 60, 0, 0),
+("lair_of_antharas", 1, 22838, 152012, 119187, -3800, 0, 0, 34466, 60, 0, 0),
+("lair_of_antharas", 1, 22838, 152114, 119387, -3800, 0, 0, 2400, 60, 0, 0),
+("lair_of_antharas", 1, 22838, 152183, 120455, -3808, 0, 0, 4148, 60, 0, 0),
+("lair_of_antharas", 1, 22838, 152210, 121576, -3808, 0, 0, 8042, 60, 0, 0),
+("lair_of_antharas", 1, 22838, 152222, 119713, -3784, 0, 0, 57336, 60, 0, 0),
+("lair_of_antharas", 1, 22838, 152236, 119152, -3800, 0, 0, 7530, 60, 0, 0),
+("lair_of_antharas", 1, 22838, 152393, 121801, -3808, 0, 0, 46907, 60, 0, 0),
+("lair_of_antharas", 1, 22838, 153208, 119031, -3792, 0, 0, 62602, 60, 0, 0),
+("lair_of_antharas", 1, 22838, 153370, 118899, -3800, 0, 0, 53288, 60, 0, 0),
+("lair_of_antharas", 1, 22838, 153775, 118569, -3808, 0, 0, 14617, 60, 0, 0),
+("lair_of_antharas", 1, 22838, 153935, 118590, -3808, 0, 0, 59598, 60, 0, 0),
+("lair_of_antharas", 1, 22838, 153958, 118612, -3808, 0, 0, 32906, 60, 0, 0),
+("lair_of_antharas", 1, 22838, 154342, 118701, -3808, 0, 0, 37416, 60, 0, 0),
+-- Maluk Warlord
+("lair_of_antharas", 1, 22839, 135387, 114004, -3720, 0, 0, 31144, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 135493, 113954, -3720, 0, 0, 42129, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 136501, 113861, -3720, 0, 0, 11646, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 136505, 114034, -3720, 0, 0, 30759, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 139678, 114452, -3720, 0, 0, 24513, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 139822, 114769, -3712, 0, 0, 53450, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 139896, 118919, -3912, 0, 0, 41582, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 139969, 118984, -3912, 0, 0, 45988, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 140049, 119008, -3904, 0, 0, 43020, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 140136, 119385, -3896, 0, 0, 18431, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 140241, 121532, -3896, 0, 0, 9249, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 140280, 119454, -3904, 0, 0, 8518, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 140383, 118880, -3912, 0, 0, 36781, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 140389, 118888, -3912, 0, 0, 36207, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 140463, 120645, -3912, 0, 0, 1186, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 140607, 113284, -3720, 0, 0, 35212, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 140719, 118905, -3912, 0, 0, 17037, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 140840, 113257, -3720, 0, 0, 11937, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 140842, 113010, -3720, 0, 0, 22782, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 140852, 120768, -3896, 0, 0, 12560, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 140938, 114846, -3720, 0, 0, 190, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 141038, 121856, -3912, 0, 0, 11105, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 141230, 121589, -3912, 0, 0, 20790, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 141299, 112325, -3712, 0, 0, 5110, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 141598, 112653, -3720, 0, 0, 40716, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 141631, 112838, -3720, 0, 0, 17648, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 141631, 121424, -3912, 0, 0, 61519, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 141777, 114368, -3720, 0, 0, 42395, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 141866, 114705, -3720, 0, 0, 15991, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 141936, 117367, -3912, 0, 0, 42476, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 142308, 114055, -3720, 0, 0, 52692, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 142433, 121350, -3912, 0, 0, 57137, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 142437, 119134, -3912, 0, 0, 53627, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 142499, 117253, -3912, 0, 0, 53524, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 142509, 119643, -3912, 0, 0, 39673, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 142645, 121117, -3912, 0, 0, 52591, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 142801, 121416, -3912, 0, 0, 59706, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 143043, 121337, -3912, 0, 0, 37424, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 143369, 110159, -3944, 0, 0, 33290, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 143384, 117980, -3912, 0, 0, 13983, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 143436, 114440, -3720, 0, 0, 52976, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 143450, 117611, -3912, 0, 0, 14546, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 143472, 116859, -3912, 0, 0, 1578, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 143491, 117424, -3912, 0, 0, 5927, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 143491, 120864, -3912, 0, 0, 26743, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 143623, 112728, -3944, 0, 0, 31723, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 143709, 117749, -3912, 0, 0, 14503, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 143742, 112860, -3944, 0, 0, 48718, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 143945, 112711, -3944, 0, 0, 15453, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 144013, 109831, -3944, 0, 0, 40185, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 144107, 121282, -3912, 0, 0, 16558, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 144115, 109900, -3944, 0, 0, 4810, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 144264, 121006, -3904, 0, 0, 7859, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 144265, 119611, -3912, 0, 0, 51697, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 144365, 112898, -3944, 0, 0, 18801, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 144390, 119227, -3896, 0, 0, 55424, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 144520, 118282, -3912, 0, 0, 33030, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 144554, 118785, -3912, 0, 0, 9051, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 144580, 121133, -3912, 0, 0, 43413, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 144735, 107765, -3944, 0, 0, 7636, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 144738, 118876, -3912, 0, 0, 25811, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 145029, 109004, -3944, 0, 0, 33930, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 145084, 107516, -3944, 0, 0, 41287, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 145101, 118440, -3912, 0, 0, 16690, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 145164, 109330, -3944, 0, 0, 10335, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 145215, 109289, -3936, 0, 0, 62875, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 145255, 117636, -3912, 0, 0, 40254, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 145312, 117766, -3912, 0, 0, 55367, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 145320, 109749, -3936, 0, 0, 31986, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 145333, 117827, -3912, 0, 0, 57343, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 145351, 117519, -3912, 0, 0, 24143, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 145476, 109998, -3928, 0, 0, 63153, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 145761, 109272, -3944, 0, 0, 50592, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 146898, 110495, -3944, 0, 0, 20732, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 147019, 107891, -3904, 0, 0, 6011, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 147211, 109507, -3856, 0, 0, 36198, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 147351, 107520, -3992, 0, 0, 37706, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 147536, 109715, -3944, 0, 0, 54595, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 147734, 109662, -3944, 0, 0, 40756, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 147772, 110397, -3944, 0, 0, 31223, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 147803, 107159, -4064, 0, 0, 34591, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 147891, 107332, -4080, 0, 0, 62897, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 149502, 110612, -5424, 0, 0, 13828, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 149664, 116418, -3704, 0, 0, 35851, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 149790, 108306, -4544, 0, 0, 44123, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 149817, 110143, -5280, 0, 0, 25068, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 149846, 107984, -4560, 0, 0, 26799, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 149962, 117011, -3704, 0, 0, 29045, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 149972, 111213, -5504, 0, 0, 26091, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 150128, 112140, -5512, 0, 0, 46459, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 150299, 116988, -3696, 0, 0, 56443, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 150372, 107535, -4696, 0, 0, 47856, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 150494, 107329, -4728, 0, 0, 2897, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 150518, 110904, -5520, 0, 0, 35847, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 150518, 111419, -5520, 0, 0, 7720, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 150580, 117690, -3720, 0, 0, 19107, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 150674, 111007, -5520, 0, 0, 17521, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 150674, 111419, -5520, 0, 0, 60443, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 150688, 117607, -3696, 0, 0, 14903, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 150702, 109313, -5152, 0, 0, 30980, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 150830, 111934, -5520, 0, 0, 55248, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 150830, 112140, -5520, 0, 0, 2378, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 150854, 111091, -5520, 0, 0, 48558, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 150977, 109592, -5152, 0, 0, 20481, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 151336, 118308, -3848, 0, 0, 16397, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 151581, 118375, -3896, 0, 0, 1572, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 151666, 118631, -3896, 0, 0, 15422, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 151675, 118641, -3888, 0, 0, 52329, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 151733, 120869, -3808, 0, 0, 44053, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 151958, 120547, -3808, 0, 0, 41854, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 151986, 121476, -3800, 0, 0, 38418, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 152014, 119512, -3800, 0, 0, 23303, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 152179, 119020, -3800, 0, 0, 9391, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 152264, 120168, -3808, 0, 0, 28689, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 152273, 120777, -3808, 0, 0, 59076, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 152282, 119149, -3800, 0, 0, 15683, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 152322, 121826, -3808, 0, 0, 56909, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 152475, 119256, -3792, 0, 0, 50561, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 152488, 107513, -5080, 0, 0, 27921, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 152490, 121826, -3808, 0, 0, 41413, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 152658, 122126, -3808, 0, 0, 41517, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 152875, 107638, -5152, 0, 0, 11625, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 153009, 109343, -5152, 0, 0, 39028, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 153029, 119430, -3808, 0, 0, 11361, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 153237, 108524, -5128, 0, 0, 4211, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 153261, 109048, -5152, 0, 0, 47770, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 153289, 119361, -3792, 0, 0, 46621, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 153451, 118833, -3808, 0, 0, 4017, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 153451, 118899, -3808, 0, 0, 47991, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 153487, 108111, -5152, 0, 0, 50135, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 153532, 119229, -3808, 0, 0, 56344, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 153606, 112538, -5520, 0, 0, 38687, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 153655, 108684, -5152, 0, 0, 43352, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 153663, 109022, -5152, 0, 0, 47501, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 153673, 109159, -5152, 0, 0, 54376, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 153697, 107128, -5152, 0, 0, 23083, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 153697, 109579, -5136, 0, 0, 4446, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 153752, 109451, -5152, 0, 0, 63213, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 153765, 107638, -5152, 0, 0, 14013, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 153775, 118965, -3808, 0, 0, 21699, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 153891, 112423, -5520, 0, 0, 51771, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 153954, 111998, -5496, 0, 0, 44120, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 154018, 118305, -3808, 0, 0, 12435, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 154057, 112141, -5512, 0, 0, 2385, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 154099, 118305, -3808, 0, 0, 45058, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 154116, 111956, -5520, 0, 0, 48679, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 154180, 119097, -3808, 0, 0, 61378, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 154240, 112300, -5520, 0, 0, 1048, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 154647, 108754, -5152, 0, 0, 14336, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 154664, 108818, -5152, 0, 0, 11977, 60, 0, 0),
+("lair_of_antharas", 1, 22839, 143275, 108651, -3949, 0, 0, 39989, 10, 0, 0),
+("lair_of_antharas", 1, 22839, 143283, 108917, -3949, 0, 0, 29153, 10, 0, 0),
+("lair_of_antharas", 1, 22839, 141311, 109118, -3949, 0, 0, 55435, 10, 0, 0),
+("lair_of_antharas", 1, 22839, 142624, 107120, -3949, 0, 0, 59434, 10, 0, 0),
+("lair_of_antharas", 1, 22839, 142414, 107540, -3949, 0, 0, 22307, 10, 0, 0),
+("lair_of_antharas", 1, 22839, 142653, 107433, -3949, 0, 0, 504, 10, 0, 0),
+("lair_of_antharas", 1, 22839, 140755, 109784, -3949, 0, 0, 16121, 10, 0, 0),
+("lair_of_antharas", 1, 22839, 140326, 110174, -3938, 0, 0, 30422, 10, 0, 0),
+("lair_of_antharas", 1, 22839, 140554, 108742, -3949, 0, 0, 34798, 10, 0, 0),
+-- Maluk Hunter
+("lair_of_antharas", 1, 22840, 143249, 108762, -3949, 0, 0, 436, 10, 0, 0),
+("lair_of_antharas", 1, 22840, 141220, 109860, -3949, 0, 0, 11692, 10, 0, 0),
+("lair_of_antharas", 1, 22840, 140847, 109972, -3939, 0, 0, 29725, 10, 0, 0),
+("lair_of_antharas", 1, 22840, 141966, 107327, -3947, 0, 0, 33016, 10, 0, 0),
+("lair_of_antharas", 1, 22840, 142137, 107532, -3949, 0, 0, 9132, 10, 0, 0),
+("lair_of_antharas", 1, 22840, 142475, 107237, -3949, 0, 0, 58051, 10, 0, 0),
+("lair_of_antharas", 1, 22840, 135404, 114232, -3720, 0, 0, 14985, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 135597, 114072, -3720, 0, 0, 48212, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 136503, 114030, -3720, 0, 0, 44884, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 137026, 114332, -3720, 0, 0, 56954, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 140101, 114769, -3704, 0, 0, 46957, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 140129, 119180, -3896, 0, 0, 41084, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 140236, 121369, -3912, 0, 0, 5312, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 140287, 115154, -3720, 0, 0, 9511, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 140323, 120924, -3912, 0, 0, 8438, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 140384, 119398, -3912, 0, 0, 1282, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 140527, 121665, -3912, 0, 0, 47071, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 140682, 113240, -3720, 0, 0, 11094, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 140702, 119210, -3912, 0, 0, 38806, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 140792, 113227, -3720, 0, 0, 11469, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 140839, 118840, -3912, 0, 0, 0, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 140927, 120917, -3912, 0, 0, 3466, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 141009, 112851, -3720, 0, 0, 1405, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 141031, 114692, -3720, 0, 0, 46699, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 141129, 121274, -3912, 0, 0, 19739, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 141407, 114312, -3720, 0, 0, 34492, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 141494, 112659, -3720, 0, 0, 11094, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 141540, 112781, -3720, 0, 0, 54468, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 141611, 121712, -3912, 0, 0, 26634, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 141697, 112487, -3720, 0, 0, 11231, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 141827, 117172, -3912, 0, 0, 33463, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 142071, 114028, -3720, 0, 0, 52317, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 142175, 119181, -3912, 0, 0, 60079, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 142502, 117088, -3912, 0, 0, 38838, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 142632, 118885, -3912, 0, 0, 26922, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 143013, 121299, -3912, 0, 0, 55542, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 143034, 117069, -3912, 0, 0, 54710, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 143236, 117046, -3912, 0, 0, 10606, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 143274, 114360, -3720, 0, 0, 29603, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 143281, 120439, -3912, 0, 0, 64024, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 143378, 112043, -3944, 0, 0, 8500, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 143559, 110179, -3944, 0, 0, 32943, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 144065, 112822, -3944, 0, 0, 23529, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 144173, 110400, -3944, 0, 0, 1751, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 144185, 121314, -3912, 0, 0, 60467, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 144469, 119058, -3896, 0, 0, 56447, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 144524, 118569, -3912, 0, 0, 11626, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 144559, 107636, -3944, 0, 0, 2555, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 144564, 107391, -3944, 0, 0, 65185, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 144574, 118915, -3912, 0, 0, 20180, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 144807, 107761, -3944, 0, 0, 39142, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 145178, 109780, -3944, 0, 0, 29793, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 145387, 117518, -3912, 0, 0, 43326, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 145405, 109596, -3944, 0, 0, 14661, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 145468, 117343, -3912, 0, 0, 63066, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 146947, 110217, -3944, 0, 0, 42683, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 147558, 110646, -3944, 0, 0, 21219, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 147735, 110232, -3944, 0, 0, 87, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 148613, 108032, -4248, 0, 0, 51008, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 148796, 107943, -4288, 0, 0, 34050, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 149549, 110543, -5400, 0, 0, 1954, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 149823, 116640, -3704, 0, 0, 58335, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 149938, 116809, -3704, 0, 0, 55622, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 150128, 112552, -5512, 0, 0, 17790, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 150362, 112449, -5512, 0, 0, 52295, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 150686, 117732, -3704, 0, 0, 40961, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 150908, 111934, -5520, 0, 0, 56354, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 150986, 112037, -5520, 0, 0, 60721, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 151362, 109185, -5136, 0, 0, 54195, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 151447, 118423, -3880, 0, 0, 33980, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 151714, 109306, -5152, 0, 0, 13276, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 151890, 119321, -3800, 0, 0, 35031, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 151913, 120685, -3808, 0, 0, 45505, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 151928, 118714, -3856, 0, 0, 60467, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 151930, 121226, -3808, 0, 0, 44291, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 152042, 121776, -3808, 0, 0, 13927, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 152179, 119348, -3800, 0, 0, 47170, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 152318, 120547, -3808, 0, 0, 720, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 152363, 120547, -3808, 0, 0, 21536, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 152434, 121876, -3808, 0, 0, 20489, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 152507, 121821, -3808, 0, 0, 34208, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 152736, 119765, -3808, 0, 0, 34450, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 152782, 120190, -3808, 0, 0, 6036, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 153029, 119430, -3808, 0, 0, 7213, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 153162, 108978, -5152, 0, 0, 25130, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 153451, 119427, -3808, 0, 0, 63222, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 153604, 107733, -5152, 0, 0, 14474, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 153619, 109463, -5152, 0, 0, 55430, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 153656, 109018, -5152, 0, 0, 56092, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 153694, 118899, -3808, 0, 0, 8963, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 153776, 107534, -5152, 0, 0, 15075, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 153808, 107356, -5152, 0, 0, 5414, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 153844, 112292, -5520, 0, 0, 36125, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 154041, 108532, -5152, 0, 0, 58825, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 154100, 111444, -5512, 0, 0, 51026, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 154264, 111275, -5512, 0, 0, 34322, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 154338, 112410, -5520, 0, 0, 44779, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 154504, 118503, -3808, 0, 0, 31626, 60, 0, 0),
+("lair_of_antharas", 1, 22840, 154788, 108769, -5152, 0, 0, 6327, 60, 0, 0),
+-- Maluk Princess
+("lair_of_antharas", 1, 22841, 135212, 114412, -3720, 0, 0, 47519, 60, 0, 0),
+("lair_of_antharas", 1, 22841, 135282, 114004, -3720, 0, 0, 41104, 60, 0, 0),
+("lair_of_antharas", 1, 22841, 136585, 114085, -3720, 0, 0, 46410, 60, 0, 0),
+("lair_of_antharas", 1, 22841, 136601, 114640, -3720, 0, 0, 6089, 60, 0, 0),
+("lair_of_antharas", 1, 22841, 140161, 114169, -3720, 0, 0, 51091, 60, 0, 0),
+("lair_of_antharas", 1, 22841, 140194, 114769, -3720, 0, 0, 14184, 60, 0, 0),
+("lair_of_antharas", 1, 22841, 140668, 113385, -3720, 0, 0, 37639, 60, 0, 0),
+("lair_of_antharas", 1, 22841, 140976, 112819, -3720, 0, 0, 55649, 60, 0, 0),
+("lair_of_antharas", 1, 22841, 141386, 114238, -3720, 0, 0, 35212, 60, 0, 0),
+("lair_of_antharas", 1, 22841, 141672, 112802, -3720, 0, 0, 12414, 60, 0, 0),
+("lair_of_antharas", 1, 22841, 141973, 112226, -3760, 0, 0, 51234, 60, 0, 0),
+("lair_of_antharas", 1, 22841, 142366, 116797, -3912, 0, 0, 48844, 60, 0, 0),
+("lair_of_antharas", 1, 22841, 143015, 120998, -3912, 0, 0, 17839, 60, 0, 0),
+("lair_of_antharas", 1, 22841, 143183, 116245, -3904, 0, 0, 55900, 60, 0, 0),
+("lair_of_antharas", 1, 22841, 143311, 112665, -3944, 0, 0, 4314, 60, 0, 0),
+("lair_of_antharas", 1, 22841, 143475, 110424, -3944, 0, 0, 19126, 60, 0, 0),
+("lair_of_antharas", 1, 22841, 143595, 117261, -3912, 0, 0, 15086, 60, 0, 0),
+("lair_of_antharas", 1, 22841, 144033, 112728, -3944, 0, 0, 26055, 60, 0, 0),
+("lair_of_antharas", 1, 22841, 144281, 119526, -3912, 0, 0, 51619, 60, 0, 0),
+("lair_of_antharas", 1, 22841, 144408, 119480, -3912, 0, 0, 44269, 60, 0, 0),
+("lair_of_antharas", 1, 22841, 144442, 112726, -3944, 0, 0, 13884, 60, 0, 0),
+("lair_of_antharas", 1, 22841, 144590, 121150, -3912, 0, 0, 32767, 60, 0, 0),
+("lair_of_antharas", 1, 22841, 144773, 107932, -3944, 0, 0, 50077, 60, 0, 0),
+("lair_of_antharas", 1, 22841, 144814, 121729, -3912, 0, 0, 16383, 60, 0, 0),
+("lair_of_antharas", 1, 22841, 144930, 121288, -3912, 0, 0, 43371, 60, 0, 0),
+("lair_of_antharas", 1, 22841, 145369, 121640, -3912, 0, 0, 2166, 60, 0, 0),
+("lair_of_antharas", 1, 22841, 145377, 108580, -3944, 0, 0, 41165, 60, 0, 0),
+("lair_of_antharas", 1, 22841, 145649, 110266, -3904, 0, 0, 2860, 60, 0, 0),
+("lair_of_antharas", 1, 22841, 146910, 107640, -3936, 0, 0, 64024, 60, 0, 0),
+("lair_of_antharas", 1, 22841, 147161, 107545, -3960, 0, 0, 55992, 60, 0, 0),
+("lair_of_antharas", 1, 22841, 149767, 109245, -5176, 0, 0, 55447, 60, 0, 0),
+("lair_of_antharas", 1, 22841, 149894, 111213, -5488, 0, 0, 18971, 60, 0, 0),
+("lair_of_antharas", 1, 22841, 149894, 111316, -5496, 0, 0, 55545, 60, 0, 0),
+("lair_of_antharas", 1, 22841, 150052, 116812, -3704, 0, 0, 15839, 60, 0, 0),
+("lair_of_antharas", 1, 22841, 150413, 107445, -4704, 0, 0, 4835, 60, 0, 0),
+("lair_of_antharas", 1, 22841, 150596, 111625, -5520, 0, 0, 16110, 60, 0, 0),
+("lair_of_antharas", 1, 22841, 150674, 112140, -5520, 0, 0, 13340, 60, 0, 0),
+("lair_of_antharas", 1, 22841, 150705, 117988, -3680, 0, 0, 42207, 60, 0, 0),
+("lair_of_antharas", 1, 22841, 150843, 107400, -4792, 0, 0, 11833, 60, 0, 0),
+("lair_of_antharas", 1, 22841, 151064, 111007, -5512, 0, 0, 65452, 60, 0, 0),
+("lair_of_antharas", 1, 22841, 151125, 109589, -5152, 0, 0, 9182, 60, 0, 0),
+("lair_of_antharas", 1, 22841, 151449, 118447, -3872, 0, 0, 60982, 60, 0, 0),
+("lair_of_antharas", 1, 22841, 151800, 118717, -3880, 0, 0, 3925, 60, 0, 0),
+("lair_of_antharas", 1, 22841, 151823, 120501, -3792, 0, 0, 39247, 60, 0, 0),
+("lair_of_antharas", 1, 22841, 151839, 119348, -3800, 0, 0, 6197, 60, 0, 0),
+("lair_of_antharas", 1, 22841, 151866, 119384, -3800, 0, 0, 36545, 60, 0, 0),
+("lair_of_antharas", 1, 22841, 152042, 121476, -3800, 0, 0, 33705, 60, 0, 0),
+("lair_of_antharas", 1, 22841, 152138, 120823, -3808, 0, 0, 4891, 60, 0, 0),
+("lair_of_antharas", 1, 22841, 152210, 121876, -3808, 0, 0, 56920, 60, 0, 0),
+("lair_of_antharas", 1, 22841, 152402, 119135, -3800, 0, 0, 44627, 60, 0, 0),
+("lair_of_antharas", 1, 22841, 152767, 107788, -5128, 0, 0, 56884, 60, 0, 0),
+("lair_of_antharas", 1, 22841, 153244, 107663, -5144, 0, 0, 22120, 60, 0, 0),
+("lair_of_antharas", 1, 22841, 153321, 109038, -5152, 0, 0, 28755, 60, 0, 0),
+("lair_of_antharas", 1, 22841, 153370, 119031, -3784, 0, 0, 40285, 60, 0, 0),
+("lair_of_antharas", 1, 22841, 153370, 119229, -3792, 0, 0, 40107, 60, 0, 0),
+("lair_of_antharas", 1, 22841, 153466, 108319, -5152, 0, 0, 52679, 60, 0, 0),
+("lair_of_antharas", 1, 22841, 153613, 109231, -5152, 0, 0, 33433, 60, 0, 0),
+("lair_of_antharas", 1, 22841, 153662, 109556, -5136, 0, 0, 60112, 60, 0, 0),
+("lair_of_antharas", 1, 22841, 153694, 118899, -3808, 0, 0, 36822, 60, 0, 0),
+("lair_of_antharas", 1, 22841, 154342, 118371, -3808, 0, 0, 11457, 60, 0, 0),
+("lair_of_antharas", 1, 22841, 154430, 108448, -5152, 0, 0, 14109, 60, 0, 0),
+-- Maluk Banshee
+("lair_of_antharas", 1, 22842, 140380, 119390, -3912, 0, 0, 40508, 60, 0, 0),
+("lair_of_antharas", 1, 22842, 140407, 118914, -3912, 0, 0, 26720, 60, 0, 0),
+("lair_of_antharas", 1, 22842, 140433, 119631, -3912, 0, 0, 59760, 60, 0, 0),
+("lair_of_antharas", 1, 22842, 145002, 117535, -3912, 0, 0, 49847, 60, 0, 0),
+("lair_of_antharas", 1, 22842, 145332, 117392, -3912, 0, 0, 7720, 60, 0, 0),
+("lair_of_antharas", 1, 22842, 147421, 110419, -3944, 0, 0, 27725, 60, 0, 0),
+("lair_of_antharas", 1, 22842, 147489, 109484, -3944, 0, 0, 57602, 60, 0, 0),
+("lair_of_antharas", 1, 22842, 153218, 111842, -5520, 0, 0, 54195, 60, 0, 0),
+("lair_of_antharas", 1, 22842, 153711, 112525, -5520, 0, 0, 7945, 60, 0, 0),
+("lair_of_antharas", 1, 22842, 142719, 107331, -3949, 0, 0, 57343, 10, 0, 0),
+("lair_of_antharas", 1, 22842, 140761, 110328, -3949, 0, 0, 15711, 10, 0, 0),
+("lair_of_antharas", 1, 22842, 141360, 109748, -3949, 0, 0, 57736, 10, 0, 0),
+-- Maluk Sniper 
+("lair_of_antharas", 1, 22843, 142968, 108610, -3949, 0, 0, 22972, 10, 0, 0),
+("lair_of_antharas", 1, 22843, 142490, 106968, -3951, 0, 0, 50440, 10, 0, 0),
+("lair_of_antharas", 1, 22843, 140192, 119341, -3904, 0, 0, 9735, 60, 0, 0),
+("lair_of_antharas", 1, 22843, 140231, 119513, -3904, 0, 0, 5258, 60, 0, 0),
+("lair_of_antharas", 1, 22843, 140260, 119563, -3904, 0, 0, 21987, 60, 0, 0),
+("lair_of_antharas", 1, 22843, 140512, 119126, -3912, 0, 0, 29202, 60, 0, 0),
+("lair_of_antharas", 1, 22843, 141937, 118838, -3896, 0, 0, 6093, 60, 0, 0),
+("lair_of_antharas", 1, 22843, 142385, 120989, -3904, 0, 0, 50927, 60, 0, 0),
+("lair_of_antharas", 1, 22843, 142730, 119487, -3912, 0, 0, 19752, 60, 0, 0),
+("lair_of_antharas", 1, 22843, 142847, 120989, -3912, 0, 0, 45795, 60, 0, 0),
+("lair_of_antharas", 1, 22843, 143875, 121019, -3904, 0, 0, 47168, 60, 0, 0),
+("lair_of_antharas", 1, 22843, 144209, 119965, -3912, 0, 0, 60404, 60, 0, 0),
+("lair_of_antharas", 1, 22843, 144438, 108157, -3944, 0, 0, 58351, 60, 0, 0),
+("lair_of_antharas", 1, 22843, 144725, 121688, -3912, 0, 0, 5517, 60, 0, 0),
+("lair_of_antharas", 1, 22843, 144797, 118080, -3912, 0, 0, 64393, 60, 0, 0),
+("lair_of_antharas", 1, 22843, 145295, 109029, -3944, 0, 0, 30235, 60, 0, 0),
+("lair_of_antharas", 1, 22843, 145321, 107729, -3944, 0, 0, 47873, 60, 0, 0),
+("lair_of_antharas", 1, 22843, 145405, 108905, -3944, 0, 0, 20494, 60, 0, 0),
+("lair_of_antharas", 1, 22843, 145476, 121882, -3912, 0, 0, 12952, 60, 0, 0),
+("lair_of_antharas", 1, 22843, 145563, 117665, -3912, 0, 0, 62647, 60, 0, 0),
+("lair_of_antharas", 1, 22843, 145649, 110266, -3904, 0, 0, 12566, 60, 0, 0),
+("lair_of_antharas", 1, 22843, 147514, 110338, -3944, 0, 0, 10290, 60, 0, 0),
+("lair_of_antharas", 1, 22843, 150299, 117054, -3696, 0, 0, 20411, 60, 0, 0),
+("lair_of_antharas", 1, 22843, 150576, 117671, -3720, 0, 0, 43321, 60, 0, 0),
+("lair_of_antharas", 1, 22843, 151375, 118408, -3856, 0, 0, 24709, 60, 0, 0),
+("lair_of_antharas", 1, 22843, 151778, 118611, -3904, 0, 0, 43894, 60, 0, 0),
+("lair_of_antharas", 1, 22843, 152717, 107901, -5120, 0, 0, 928, 60, 0, 0),
+("lair_of_antharas", 1, 22843, 153106, 109051, -5152, 0, 0, 45594, 60, 0, 0),
+("lair_of_antharas", 1, 22843, 153446, 107739, -5152, 0, 0, 6834, 60, 0, 0),
+("lair_of_antharas", 1, 22843, 153481, 107307, -5152, 0, 0, 10999, 60, 0, 0),
+("lair_of_antharas", 1, 22843, 153660, 108281, -5152, 0, 0, 24593, 60, 0, 0),
+("lair_of_antharas", 1, 22843, 153666, 109147, -5152, 0, 0, 53989, 60, 0, 0),
+("lair_of_antharas", 1, 22843, 153689, 109467, -5152, 0, 0, 29258, 60, 0, 0),
+("lair_of_antharas", 1, 22843, 153904, 112091, -5504, 0, 0, 15287, 60, 0, 0),
+("lair_of_antharas", 1, 22843, 153952, 111337, -5512, 0, 0, 21035, 60, 0, 0),
+("lair_of_antharas", 1, 22843, 154635, 108715, -5152, 0, 0, 62542, 60, 0, 0),
+("lair_of_antharas", 1, 22843, 141118, 108394, -3949, 0, 0, 15805, 10, 0, 0),
+-- Dragon Knight
+("lair_of_antharas", 1, 22844, 140452, 113743, -3720, 0, 0, 28047, 60, 0, 0),
+("lair_of_antharas", 1, 22844, 140478, 118582, -3912, 0, 0, 12565, 60, 0, 0),
+("lair_of_antharas", 1, 22844, 142804, 120412, -3912, 0, 0, 20330, 60, 0, 0),
+("lair_of_antharas", 1, 22844, 142893, 116826, -3912, 0, 0, 24640, 60, 0, 0),
+("lair_of_antharas", 1, 22844, 142893, 116916, -3912, 0, 0, 53240, 60, 0, 0),
+("lair_of_antharas", 1, 22844, 143698, 112344, -3944, 0, 0, 37829, 60, 0, 0),
+("lair_of_antharas", 1, 22844, 144989, 108873, -3944, 0, 0, 1216, 60, 0, 0),
+("lair_of_antharas", 1, 22844, 145079, 108958, -3944, 0, 0, 59504, 60, 0, 0),
+("lair_of_antharas", 1, 22844, 145369, 121640, -3912, 0, 0, 6937, 60, 0, 0),
+("lair_of_antharas", 1, 22844, 147406, 110523, -3944, 0, 0, 64642, 60, 0, 0),
+("lair_of_antharas", 1, 22844, 153666, 107483, -5152, 0, 0, 12882, 60, 0, 0),
+("lair_of_antharas", 1, 22844, 154072, 111178, -5512, 0, 0, 45319, 60, 0, 0),
+-- Drake Leader
+("lair_of_antharas", 1, 22848, 146738, 113015, -3725, 0, 0, 3458, 60, 0, 0),
+("lair_of_antharas", 1, 22848, 146616, 112973, -3725, 0, 0, 15384, 60, 0, 0),
+("lair_of_antharas", 1, 22848, 146301, 112849, -3725, 0, 0, 18230, 60, 0, 0),
+("lair_of_antharas", 1, 22848, 146726, 112511, -3727, 0, 0, 48166, 60, 0, 0),
+("lair_of_antharas", 1, 22848, 146773, 112827, -3725, 0, 0, 46352, 60, 0, 0),
+("lair_of_antharas", 1, 22848, 145953, 112750, -3725, 0, 0, 57109, 60, 0, 0),
+("lair_of_antharas", 1, 22848, 146538, 112709, -3725, 0, 0, 11191, 60, 0, 0),
+("lair_of_antharas", 1, 22848, 145983, 112794, -3725, 0, 0, 23699, 60, 0, 0),
+("lair_of_antharas", 1, 22848, 146247, 112541, -3725, 0, 0, 45701, 60, 0, 0),
+("lair_of_antharas", 1, 22848, 146438, 112525, -3725, 0, 0, 31249, 60, 0, 0),
+("lair_of_antharas", 1, 22848, 146101, 112812, -3725, 0, 0, 20753, 60, 0, 0),
+("lair_of_antharas", 1, 22848, 148611, 121436, -4864, 0, 0, 12777, 60, 0, 0),
+("lair_of_antharas", 1, 22848, 147008, 112896, -3725, 0, 0, 39187, 60, 0, 0),
+("lair_of_antharas", 1, 22848, 147259, 112937, -3725, 0, 0, 1688, 60, 0, 0),
+("lair_of_antharas", 1, 22848, 147107, 112966, -3725, 0, 0, 3386, 60, 0, 0),
+("lair_of_antharas", 1, 22848, 146801, 112863, -3725, 0, 0, 47057, 60, 0, 0),
+("lair_of_antharas", 1, 22848, 149261, 119685, -4864, 0, 0, 3742, 60, 0, 0),
+("lair_of_antharas", 1, 22848, 151768, 115130, -5472, 0, 0, 14565, 60, 0, 0),
+("lair_of_antharas", 1, 22848, 152029, 120592, -3808, 0, 0, 54603, 60, 0, 0),
+("lair_of_antharas", 1, 22848, 152264, 119512, -3784, 0, 0, 61701, 60, 0, 0),
+("lair_of_antharas", 1, 22848, 152698, 119086, -3792, 0, 0, 41723, 60, 0, 0),
+-- Drake Warrior
+("lair_of_antharas", 1, 22849, 145690, 112729, -3727, 0, 0, 56649, 60, 0, 0),
+("lair_of_antharas", 1, 22849, 145817, 112579, -3725, 0, 0, 56479, 60, 0, 0),
+("lair_of_antharas", 1, 22849, 146231, 112710, -3725, 0, 0, 60039, 60, 0, 0),
+("lair_of_antharas", 1, 22849, 146616, 112973, -3725, 0, 0, 15384, 60, 0, 0),
+("lair_of_antharas", 1, 22849, 147157, 112590, -3715, 0, 0, 62948, 60, 0, 0),
+("lair_of_antharas", 1, 22849, 145788, 112866, -3727, 0, 0, 59148, 60, 0, 0),
+("lair_of_antharas", 1, 22849, 146144, 112734, -3725, 0, 0, 58629, 60, 0, 0),
+("lair_of_antharas", 1, 22849, 146765, 112305, -3725, 0, 0, 47200, 60, 0, 0),
+("lair_of_antharas", 1, 22849, 146797, 112474, -3725, 0, 0, 60525, 60, 0, 0),
+("lair_of_antharas", 1, 22849, 146992, 113055, -3725, 0, 0, 23792, 60, 0, 0),
+("lair_of_antharas", 1, 22849, 145833, 112769, -3725, 0, 0, 54986, 60, 0, 0),
+("lair_of_antharas", 1, 22849, 146402, 112499, -3725, 0, 0, 27648, 60, 0, 0),
+("lair_of_antharas", 1, 22849, 146070, 112691, -3725, 0, 0, 58024, 60, 0, 0),
+("lair_of_antharas", 1, 22849, 147164, 112855, -3725, 0, 0, 16108, 60, 0, 0),
+("lair_of_antharas", 1, 22849, 145786, 112924, -3725, 0, 0, 56254, 60, 0, 0),
+("lair_of_antharas", 1, 22849, 147103, 112724, -3705, 0, 0, 28942, 60, 0, 0),
+("lair_of_antharas", 1, 22849, 145781, 112722, -3725, 0, 0, 36339, 60, 0, 0),
+("lair_of_antharas", 1, 22849, 146131, 112819, -3725, 0, 0, 25669, 60, 0, 0),
+("lair_of_antharas", 1, 22849, 146834, 112460, -3725, 0, 0, 16704, 60, 0, 0),
+("lair_of_antharas", 1, 22849, 146430, 112775, -3725, 0, 0, 27046, 60, 0, 0),
+("lair_of_antharas", 1, 22849, 146160, 112600, -3725, 0, 0, 26552, 60, 0, 0),
+("lair_of_antharas", 1, 22849, 146836, 112395, -3725, 0, 0, 46608, 60, 0, 0),
+("lair_of_antharas", 1, 22849, 146333, 112682, -3727, 0, 0, 41772, 60, 0, 0),
+("lair_of_antharas", 1, 22849, 145852, 112757, -3725, 0, 0, 36240, 60, 0, 0),
+("lair_of_antharas", 1, 22849, 146092, 112508, -3725, 0, 0, 42512, 60, 0, 0),
+("lair_of_antharas", 1, 22849, 146723, 112599, -3725, 0, 0, 27046, 60, 0, 0),
+("lair_of_antharas", 1, 22849, 146834, 112608, -3725, 0, 0, 16383, 60, 0, 0),
+("lair_of_antharas", 1, 22849, 146466, 112825, -3725, 0, 0, 32567, 60, 0, 0),
+("lair_of_antharas", 1, 22849, 146796, 112342, -3725, 0, 0, 42213, 60, 0, 0),
+("lair_of_antharas", 1, 22849, 146887, 112458, -3725, 0, 0, 28531, 60, 0, 0),
+("lair_of_antharas", 1, 22849, 146519, 112867, -3725, 0, 0, 35911, 60, 0, 0),
+("lair_of_antharas", 1, 22849, 146743, 112884, -3725, 0, 0, 16336, 60, 0, 0),
+("lair_of_antharas", 1, 22849, 146333, 112829, -3725, 0, 0, 34870, 60, 0, 0),
+("lair_of_antharas", 1, 22849, 147142, 112831, -3725, 0, 0, 29154, 60, 0, 0),
+("lair_of_antharas", 1, 22849, 146824, 112976, -3727, 0, 0, 9993, 60, 0, 0),
+("lair_of_antharas", 1, 22849, 146342, 112656, -3725, 0, 0, 44060, 60, 0, 0),
+("lair_of_antharas", 1, 22849, 147039, 112903, -3725, 0, 0, 10261, 60, 0, 0),
+("lair_of_antharas", 1, 22849, 146205, 112494, -3725, 0, 0, 41830, 60, 0, 0),
+("lair_of_antharas", 1, 22849, 149287, 119761, -4864, 0, 0, 32441, 60, 0, 0),
+("lair_of_antharas", 1, 22849, 149331, 119655, -4864, 0, 0, 48668, 60, 0, 0),
+("lair_of_antharas", 1, 22849, 151692, 115165, -5472, 0, 0, 46976, 60, 0, 0),
+("lair_of_antharas", 1, 22849, 151918, 115130, -5464, 0, 0, 0, 60, 0, 0),
+("lair_of_antharas", 1, 22849, 151959, 120555, -3808, 0, 0, 64333, 60, 0, 0),
+("lair_of_antharas", 1, 22849, 151980, 120515, -3808, 0, 0, 4062, 60, 0, 0),
+("lair_of_antharas", 1, 22849, 152024, 120560, -3808, 0, 0, 50400, 60, 0, 0),
+("lair_of_antharas", 1, 22849, 152264, 119512, -3784, 0, 0, 0, 60, 0, 0),
+("lair_of_antharas", 1, 22849, 152698, 119235, -3784, 0, 0, 41906, 60, 0, 0),
+("lair_of_antharas", 1, 22849, 152760, 119216, -3784, 0, 0, 63099, 60, 0, 0),
+-- Drake Scout
+("lair_of_antharas", 1, 22850, 146886, 112468, -3725, 0, 0, 35598, 60, 0, 0),
+("lair_of_antharas", 1, 22850, 145999, 112712, -3725, 0, 0, 56270, 60, 0, 0),
+("lair_of_antharas", 1, 22850, 146335, 112659, -3725, 0, 0, 20520, 60, 0, 0),
+("lair_of_antharas", 1, 22850, 146806, 112947, -3727, 0, 0, 57343, 60, 0, 0),
+("lair_of_antharas", 1, 22850, 147082, 112609, -3701, 0, 0, 47268, 60, 0, 0),
+("lair_of_antharas", 1, 22850, 146706, 112835, -3725, 0, 0, 18749, 60, 0, 0),
+("lair_of_antharas", 1, 22850, 146322, 112765, -3725, 0, 0, 17758, 60, 0, 0),
+("lair_of_antharas", 1, 22850, 146062, 112882, -3725, 0, 0, 21685, 60, 0, 0),
+("lair_of_antharas", 1, 22850, 146885, 112672, -3725, 0, 0, 31403, 60, 0, 0),
+("lair_of_antharas", 1, 22850, 146741, 112446, -3725, 0, 0, 35856, 60, 0, 0),
+("lair_of_antharas", 1, 22850, 148504, 121330, -4848, 0, 0, 0, 60, 0, 0),
+("lair_of_antharas", 1, 22850, 148553, 121424, -4864, 0, 0, 37148, 60, 0, 0),
+("lair_of_antharas", 1, 22850, 148659, 121381, -4864, 0, 0, 4063, 60, 0, 0),
+("lair_of_antharas", 1, 22850, 146660, 112757, -3725, 0, 0, 43114, 60, 0, 0),
+("lair_of_antharas", 1, 22850, 152264, 119512, -3784, 0, 0, 0, 60, 0, 0),
+("lair_of_antharas", 1, 22850, 152605, 119152, -3792, 0, 0, 16996, 60, 0, 0),
+("lair_of_antharas", 1, 22850, 152648, 119046, -3800, 0, 0, 0, 60, 0, 0),
+-- Drake Mage
+("lair_of_antharas", 1, 22851, 146151, 112645, -3725, 0, 0, 50345, 60, 0, 0),
+("lair_of_antharas", 1, 22851, 146883, 112753, -3725, 0, 0, 59241, 60, 0, 0),
+("lair_of_antharas", 1, 22851, 146603, 112946, -3725, 0, 0, 8131, 60, 0, 0),
+("lair_of_antharas", 1, 22851, 145959, 112794, -3725, 0, 0, 40142, 60, 0, 0),
+("lair_of_antharas", 1, 22851, 146859, 112482, -3725, 0, 0, 34036, 60, 0, 0),
+("lair_of_antharas", 1, 22851, 146838, 112955, -3725, 0, 0, 30127, 60, 0, 0),
+("lair_of_antharas", 1, 22851, 146439, 112836, -3725, 0, 0, 28822, 60, 0, 0),
+("lair_of_antharas", 1, 22851, 149111, 119685, -4864, 0, 0, 37179, 60, 0, 0),
+("lair_of_antharas", 1, 22851, 149155, 119791, -4864, 0, 0, 3814, 60, 0, 0),
+("lair_of_antharas", 1, 22851, 151768, 115279, -5472, 0, 0, 55966, 60, 0, 0),
+("lair_of_antharas", 1, 22851, 151869, 115209, -5472, 0, 0, 46973, 60, 0, 0),
+("lair_of_antharas", 1, 22851, 152016, 120566, -3808, 0, 0, 60212, 60, 0, 0),
+("lair_of_antharas", 1, 22851, 152264, 119512, -3784, 0, 0, 0, 60, 0, 0),
+-- Dragon Guard
+("lair_of_antharas", 1, 22852, 146892, 118405, -4000, 0, 0, 25946, 60, 0, 0),
+("lair_of_antharas", 1, 22852, 147112, 118679, -4096, 0, 0, 27291, 60, 0, 0),
+("lair_of_antharas", 1, 22852, 147120, 118835, -4136, 0, 0, 61839, 60, 0, 0),
+("lair_of_antharas", 1, 22852, 147182, 118894, -4160, 0, 0, 62659, 60, 0, 0),
+("lair_of_antharas", 1, 22852, 147414, 121076, -4760, 0, 0, 33297, 60, 0, 0),
+("lair_of_antharas", 1, 22852, 147453, 120989, -4752, 0, 0, 28332, 60, 0, 0),
+("lair_of_antharas", 1, 22852, 147546, 120885, -4760, 0, 0, 56939, 60, 0, 0),
+("lair_of_antharas", 1, 22852, 147610, 120941, -4776, 0, 0, 60732, 60, 0, 0),
+("lair_of_antharas", 1, 22852, 151068, 117883, -5104, 0, 0, 3093, 60, 0, 0),
+("lair_of_antharas", 1, 22852, 151112, 117840, -5120, 0, 0, 18958, 60, 0, 0),
+("lair_of_antharas", 1, 22852, 151113, 117893, -5112, 0, 0, 20640, 60, 0, 0),
+("lair_of_antharas", 1, 22852, 151125, 117907, -5112, 0, 0, 22400, 60, 0, 0),
+("lair_of_antharas", 1, 22852, 151783, 117126, -5240, 0, 0, 40262, 60, 0, 0),
+("lair_of_antharas", 1, 22852, 151844, 117065, -5240, 0, 0, 47375, 60, 0, 0),
+("lair_of_antharas", 1, 22852, 151851, 117171, -5240, 0, 0, 7073, 60, 0, 0),
+("lair_of_antharas", 1, 22852, 151929, 113687, -5512, 0, 0, 3257, 60, 0, 0),
+("lair_of_antharas", 1, 22852, 151945, 117471, -5240, 0, 0, 62371, 60, 0, 0),
+("lair_of_antharas", 1, 22852, 152022, 117519, -5240, 0, 0, 8241, 60, 0, 0),
+("lair_of_antharas", 1, 22852, 152023, 113576, -5512, 0, 0, 60374, 60, 0, 0),
+("lair_of_antharas", 1, 22852, 152041, 113469, -5512, 0, 0, 64961, 60, 0, 0),
+("lair_of_antharas", 1, 22852, 152088, 113644, -5512, 0, 0, 37210, 60, 0, 0),
+("lair_of_antharas", 1, 22852, 152168, 113886, -5520, 0, 0, 31986, 60, 0, 0),
+("lair_of_antharas", 1, 22852, 152298, 113600, -5520, 0, 0, 58776, 60, 0, 0),
+-- Dragon Mage
+("lair_of_antharas", 1, 22853, 146902, 118790, -4104, 0, 0, 4738, 60, 0, 0),
+("lair_of_antharas", 1, 22853, 146949, 119078, -4200, 0, 0, 35085, 60, 0, 0),
+("lair_of_antharas", 1, 22853, 146965, 119054, -4192, 0, 0, 1471, 60, 0, 0),
+("lair_of_antharas", 1, 22853, 147202, 118965, -4184, 0, 0, 64387, 60, 0, 0),
+("lair_of_antharas", 1, 22853, 147403, 121108, -4760, 0, 0, 18116, 60, 0, 0),
+("lair_of_antharas", 1, 22853, 147429, 120801, -4728, 0, 0, 59827, 60, 0, 0),
+("lair_of_antharas", 1, 22853, 147474, 120965, -4752, 0, 0, 34766, 60, 0, 0),
+("lair_of_antharas", 1, 22853, 147517, 120953, -4760, 0, 0, 52308, 60, 0, 0),
+("lair_of_antharas", 1, 22853, 151082, 117849, -5112, 0, 0, 8196, 60, 0, 0),
+("lair_of_antharas", 1, 22853, 151138, 117897, -5120, 0, 0, 49479, 60, 0, 0),
+("lair_of_antharas", 1, 22853, 151794, 113563, -5520, 0, 0, 1148, 60, 0, 0),
+("lair_of_antharas", 1, 22853, 151826, 117220, -5240, 0, 0, 7497, 60, 0, 0),
+("lair_of_antharas", 1, 22853, 151845, 117268, -5240, 0, 0, 1975, 60, 0, 0),
+("lair_of_antharas", 1, 22853, 151917, 117342, -5240, 0, 0, 13441, 60, 0, 0),
+("lair_of_antharas", 1, 22853, 151939, 113713, -5520, 0, 0, 12745, 60, 0, 0),
+("lair_of_antharas", 1, 22853, 151959, 117312, -5240, 0, 0, 13331, 60, 0, 0),
+("lair_of_antharas", 1, 22853, 152016, 113748, -5520, 0, 0, 27092, 60, 0, 0),
+("lair_of_antharas", 1, 22853, 152032, 117336, -5240, 0, 0, 11936, 60, 0, 0),
+("lair_of_antharas", 1, 22853, 152075, 113725, -5512, 0, 0, 3779, 60, 0, 0),
+("lair_of_antharas", 1, 22853, 152122, 113634, -5504, 0, 0, 34529, 60, 0, 0),
+("lair_of_antharas", 1, 22853, 152417, 113914, -5520, 0, 0, 13416, 60, 0, 0),
+-- Bloody Karik
+("lair_of_antharas", 1, 22854, 148373, 121648, -4864, 0, 0, 30711, 60, 0, 0),
+("lair_of_antharas", 1, 22854, 148436, 115123, -5472, 0, 0, 63664, 60, 0, 0),
+("lair_of_antharas", 1, 22854, 148436, 115174, -5472, 0, 0, 2044, 60, 0, 0),
+("lair_of_antharas", 1, 22854, 148478, 120366, -4864, 0, 0, 64421, 60, 0, 0),
+("lair_of_antharas", 1, 22854, 148580, 120122, -4848, 0, 0, 24182, 60, 0, 0),
+("lair_of_antharas", 1, 22854, 148628, 120209, -4848, 0, 0, 6946, 60, 0, 0),
+("lair_of_antharas", 1, 22854, 148649, 114803, -5472, 0, 0, 60401, 60, 0, 0),
+("lair_of_antharas", 1, 22854, 148862, 115225, -5472, 0, 0, 46741, 60, 0, 0),
+("lair_of_antharas", 1, 22854, 149004, 115327, -5472, 0, 0, 56302, 60, 0, 0),
+("lair_of_antharas", 1, 22854, 149029, 121521, -4864, 0, 0, 21891, 60, 0, 0),
+("lair_of_antharas", 1, 22854, 149115, 120905, -4864, 0, 0, 1262, 60, 0, 0),
+("lair_of_antharas", 1, 22854, 149211, 120682, -4864, 0, 0, 24182, 60, 0, 0),
+("lair_of_antharas", 1, 22854, 149313, 121673, -4864, 0, 0, 29608, 60, 0, 0),
+("lair_of_antharas", 1, 22854, 149369, 119608, -4864, 0, 0, 3322, 60, 0, 0),
+("lair_of_antharas", 1, 22854, 149427, 121106, -4864, 0, 0, 105, 60, 0, 0),
+("lair_of_antharas", 1, 22854, 149440, 114944, -5472, 0, 0, 10141, 60, 0, 0),
+("lair_of_antharas", 1, 22854, 149530, 121368, -4864, 0, 0, 6365, 60, 0, 0),
+("lair_of_antharas", 1, 22854, 149696, 121024, -4864, 0, 0, 18060, 60, 0, 0),
+("lair_of_antharas", 1, 22854, 149737, 115015, -5472, 0, 0, 33618, 60, 0, 0),
+("lair_of_antharas", 1, 22854, 149763, 121163, -4864, 0, 0, 26665, 60, 0, 0),
+("lair_of_antharas", 1, 22854, 149775, 114691, -776, 0, 0, 5808, 60, 0, 0),
+("lair_of_antharas", 1, 22854, 149861, 120490, -4848, 0, 0, 17950, 60, 0, 0),
+("lair_of_antharas", 1, 22854, 150004, 121503, -4864, 0, 0, 34719, 60, 0, 0),
+("lair_of_antharas", 1, 22854, 150122, 114436, -5472, 0, 0, 31375, 60, 0, 0),
+("lair_of_antharas", 1, 22854, 150421, 114251, -5464, 0, 0, 20134, 60, 0, 0),
+("lair_of_antharas", 1, 22854, 150650, 114215, -5464, 0, 0, 17916, 60, 0, 0),
+("lair_of_antharas", 1, 22854, 150752, 114983, -5464, 0, 0, 51782, 60, 0, 0),
+("lair_of_antharas", 1, 22854, 150778, 114979, -5472, 0, 0, 631, 60, 0, 0),
+("lair_of_antharas", 1, 22854, 150840, 115591, -5472, 0, 0, 59979, 60, 0, 0),
+("lair_of_antharas", 1, 22854, 150978, 114834, -5472, 0, 0, 52411, 60, 0, 0),
+("lair_of_antharas", 1, 22854, 150988, 115928, -5472, 0, 0, 65431, 60, 0, 0),
+("lair_of_antharas", 1, 22854, 151051, 115430, -5472, 0, 0, 30667, 60, 0, 0),
+("lair_of_antharas", 1, 22854, 151077, 114852, -5472, 0, 0, 39190, 60, 0, 0),
+("lair_of_antharas", 1, 22854, 151260, 115332, -5472, 0, 0, 8339, 60, 0, 0),
+("lair_of_antharas", 1, 22854, 151360, 115492, -5472, 0, 0, 13777, 60, 0, 0),
+("lair_of_antharas", 1, 22854, 151364, 115463, -5472, 0, 0, 43586, 60, 0, 0),
+("lair_of_antharas", 1, 22854, 151466, 114887, -5472, 0, 0, 16416, 60, 0, 0),
+("lair_of_antharas", 1, 22854, 151598, 115245, -5472, 0, 0, 23100, 60, 0, 0),
+("lair_of_antharas", 1, 22854, 153280, 115145, -5256, 0, 0, 5441, 60, 0, 0),
+("lair_of_antharas", 1, 22854, 153338, 115286, -5256, 0, 0, 55719, 60, 0, 0),
+("lair_of_antharas", 1, 22854, 153345, 116378, -5256, 0, 0, 63286, 60, 0, 0),
+("lair_of_antharas", 1, 22854, 153356, 115116, -5256, 0, 0, 21892, 60, 0, 0),
+("lair_of_antharas", 1, 22854, 153399, 115809, -5256, 0, 0, 14820, 60, 0, 0),
+("lair_of_antharas", 1, 22854, 153786, 117142, -5256, 0, 0, 24518, 60, 0, 0),
+("lair_of_antharas", 1, 22854, 153858, 116627, -776, 0, 0, 53574, 60, 0, 0),
+("lair_of_antharas", 1, 22854, 153944, 114824, -5240, 0, 0, 29569, 60, 0, 0),
+("lair_of_antharas", 1, 22854, 153984, 116818, -5256, 0, 0, 7821, 60, 0, 0),
+("lair_of_antharas", 1, 22854, 154153, 114577, -5240, 0, 0, 54603, 60, 0, 0),
+("lair_of_antharas", 1, 22854, 154410, 114708, -5256, 0, 0, 41132, 60, 0, 0),
+("lair_of_antharas", 1, 22854, 154455, 115126, -5256, 0, 0, 2632, 60, 0, 0),
+("lair_of_antharas", 1, 22854, 154512, 115724, -5256, 0, 0, 28321, 60, 0, 0),
+("lair_of_antharas", 1, 22854, 154704, 116244, -5256, 0, 0, 18172, 60, 0, 0),
+("lair_of_antharas", 1, 22854, 154781, 116032, -5256, 0, 0, 8537, 60, 0, 0),
+-- Bloody Berserker
+("lair_of_antharas", 1, 22855, 148342, 121708, -4864, 0, 0, 9164, 60, 0, 0),
+("lair_of_antharas", 1, 22855, 148450, 120096, -4864, 0, 0, 25681, 60, 0, 0),
+("lair_of_antharas", 1, 22855, 148507, 114868, -5472, 0, 0, 63338, 60, 0, 0),
+("lair_of_antharas", 1, 22855, 149026, 120516, -4864, 0, 0, 56844, 60, 0, 0),
+("lair_of_antharas", 1, 22855, 149075, 115072, -5472, 0, 0, 8244, 60, 0, 0),
+("lair_of_antharas", 1, 22855, 149162, 120403, -4864, 0, 0, 20937, 60, 0, 0),
+("lair_of_antharas", 1, 22855, 149339, 119817, -4864, 0, 0, 41401, 60, 0, 0),
+("lair_of_antharas", 1, 22855, 149437, 119907, -4864, 0, 0, 62314, 60, 0, 0),
+("lair_of_antharas", 1, 22855, 149441, 120159, -4864, 0, 0, 36738, 60, 0, 0),
+("lair_of_antharas", 1, 22855, 149581, 115203, -5472, 0, 0, 65153, 60, 0, 0),
+("lair_of_antharas", 1, 22855, 149787, 120248, -4848, 0, 0, 41034, 60, 0, 0),
+("lair_of_antharas", 1, 22855, 149808, 120266, -4848, 0, 0, 59710, 60, 0, 0),
+("lair_of_antharas", 1, 22855, 150056, 120855, -4864, 0, 0, 60949, 60, 0, 0),
+("lair_of_antharas", 1, 22855, 150073, 121263, -4864, 0, 0, 7695, 60, 0, 0),
+("lair_of_antharas", 1, 22855, 150412, 115470, -5472, 0, 0, 49140, 60, 0, 0),
+("lair_of_antharas", 1, 22855, 150881, 115684, -5472, 0, 0, 2364, 60, 0, 0),
+("lair_of_antharas", 1, 22855, 151189, 115646, -5472, 0, 0, 7695, 60, 0, 0),
+("lair_of_antharas", 1, 22855, 151269, 114641, -5472, 0, 0, 32908, 60, 0, 0),
+("lair_of_antharas", 1, 22855, 151535, 115454, -5472, 0, 0, 24182, 60, 0, 0),
+("lair_of_antharas", 1, 22855, 151737, 115208, -5472, 0, 0, 62247, 60, 0, 0),
+("lair_of_antharas", 1, 22855, 153138, 115093, -5256, 0, 0, 61917, 60, 0, 0),
+("lair_of_antharas", 1, 22855, 153269, 116015, -5256, 0, 0, 13537, 60, 0, 0),
+("lair_of_antharas", 1, 22855, 153291, 115144, -5256, 0, 0, 7103, 60, 0, 0),
+("lair_of_antharas", 1, 22855, 153338, 115122, -5256, 0, 0, 19202, 60, 0, 0),
+("lair_of_antharas", 1, 22855, 153394, 115185, -5256, 0, 0, 34902, 60, 0, 0),
+("lair_of_antharas", 1, 22855, 153395, 115168, -5256, 0, 0, 32411, 60, 0, 0),
+("lair_of_antharas", 1, 22855, 153758, 114520, -5256, 0, 0, 10539, 60, 0, 0),
+("lair_of_antharas", 1, 22855, 153895, 115016, -5256, 0, 0, 35244, 60, 0, 0),
+("lair_of_antharas", 1, 22855, 154126, 114954, -5248, 0, 0, 42071, 60, 0, 0),
+("lair_of_antharas", 1, 22855, 154385, 115126, -5256, 0, 0, 65114, 60, 0, 0),
+("lair_of_antharas", 1, 22855, 154560, 116244, -5256, 0, 0, 43694, 60, 0, 0),
+-- Bloody Karinness
+("lair_of_antharas", 1, 22856, 148183, 120932, -4808, 0, 0, 19501, 60, 0, 0),
+("lair_of_antharas", 1, 22856, 148478, 121372, -4848, 0, 0, 22259, 60, 0, 0),
+("lair_of_antharas", 1, 22856, 148732, 119914, -4864, 0, 0, 56421, 60, 0, 0),
+("lair_of_antharas", 1, 22856, 149001, 120671, -4864, 0, 0, 53547, 60, 0, 0),
+("lair_of_antharas", 1, 22856, 149004, 114664, -5472, 0, 0, 56093, 60, 0, 0),
+("lair_of_antharas", 1, 22856, 149112, 115283, -5472, 0, 0, 57068, 60, 0, 0),
+("lair_of_antharas", 1, 22856, 149190, 119944, -4864, 0, 0, 63478, 60, 0, 0),
+("lair_of_antharas", 1, 22856, 149263, 119691, -4864, 0, 0, 36947, 60, 0, 0),
+("lair_of_antharas", 1, 22856, 149460, 119603, -4864, 0, 0, 42760, 60, 0, 0),
+("lair_of_antharas", 1, 22856, 149501, 115123, -5472, 0, 0, 42232, 60, 0, 0),
+("lair_of_antharas", 1, 22856, 149542, 120906, -3480, 0, 0, 4050, 60, 0, 0),
+("lair_of_antharas", 1, 22856, 149605, 115178, -5472, 0, 0, 5441, 60, 0, 0),
+("lair_of_antharas", 1, 22856, 149722, 115244, -5472, 0, 0, 0, 60, 0, 0),
+("lair_of_antharas", 1, 22856, 149722, 115264, -5472, 0, 0, 0, 60, 0, 0),
+("lair_of_antharas", 1, 22856, 149722, 115284, -5472, 0, 0, 0, 60, 0, 0),
+("lair_of_antharas", 1, 22856, 149722, 115304, -5472, 0, 0, 0, 60, 0, 0),
+("lair_of_antharas", 1, 22856, 149722, 115324, -5472, 0, 0, 0, 60, 0, 0),
+("lair_of_antharas", 1, 22856, 149904, 121036, -3552, 0, 0, 9985, 60, 0, 0),
+("lair_of_antharas", 1, 22856, 150048, 120573, -3704, 0, 0, 0, 60, 0, 0),
+("lair_of_antharas", 1, 22856, 150176, 114401, -5472, 0, 0, 47501, 60, 0, 0),
+("lair_of_antharas", 1, 22856, 150207, 114206, -5464, 0, 0, 40778, 60, 0, 0),
+("lair_of_antharas", 1, 22856, 150229, 121320, -4864, 0, 0, 44317, 60, 0, 0),
+("lair_of_antharas", 1, 22856, 150242, 114791, -5472, 0, 0, 54275, 60, 0, 0),
+("lair_of_antharas", 1, 22856, 150487, 115290, -5464, 0, 0, 60585, 60, 0, 0),
+("lair_of_antharas", 1, 22856, 150640, 115745, -5472, 0, 0, 5225, 60, 0, 0),
+("lair_of_antharas", 1, 22856, 150994, 115452, -5472, 0, 0, 24698, 60, 0, 0),
+("lair_of_antharas", 1, 22856, 151225, 115450, -5472, 0, 0, 52229, 60, 0, 0),
+("lair_of_antharas", 1, 22856, 151447, 115000, -5472, 0, 0, 52259, 60, 0, 0),
+("lair_of_antharas", 1, 22856, 151471, 115245, -5472, 0, 0, 43516, 60, 0, 0),
+("lair_of_antharas", 1, 22856, 153170, 115104, -5256, 0, 0, 34187, 60, 0, 0),
+("lair_of_antharas", 1, 22856, 153249, 116038, -5256, 0, 0, 5448, 60, 0, 0),
+("lair_of_antharas", 1, 22856, 153285, 115193, -5256, 0, 0, 60061, 60, 0, 0),
+("lair_of_antharas", 1, 22856, 153347, 115131, -5256, 0, 0, 21817, 60, 0, 0),
+("lair_of_antharas", 1, 22856, 153535, 116733, -776, 0, 0, 50206, 60, 0, 0),
+("lair_of_antharas", 1, 22856, 153615, 114741, -5248, 0, 0, 62141, 60, 0, 0),
+("lair_of_antharas", 1, 22856, 153786, 117034, -5256, 0, 0, 8177, 60, 0, 0),
+("lair_of_antharas", 1, 22856, 153895, 114851, -5240, 0, 0, 62632, 60, 0, 0),
+("lair_of_antharas", 1, 22856, 154057, 114782, -5240, 0, 0, 36404, 60, 0, 0),
+("lair_of_antharas", 1, 22856, 154096, 114831, -5240, 0, 0, 35135, 60, 0, 0),
+("lair_of_antharas", 1, 22856, 154385, 114466, -5256, 0, 0, 51496, 60, 0, 0),
+("lair_of_antharas", 1, 22856, 154422, 116819, -776, 0, 0, 26489, 60, 0, 0),
+("lair_of_antharas", 1, 22856, 154512, 116114, -5256, 0, 0, 33341, 60, 0, 0),
+("lair_of_antharas", 1, 22856, 154525, 115071, -5256, 0, 0, 1387, 60, 0, 0),
+("lair_of_antharas", 1, 22856, 154643, 115046, -5256, 0, 0, 61796, 60, 0, 0),
+("lair_of_antharas", 1, 22856, 154752, 116439, -5256, 0, 0, 27708, 60, 0, 0),
+("lair_of_antharas", 1, 22856, 154755, 114862, -5256, 0, 0, 57467, 60, 0, 0),
+-- Knoriks
+("lair_of_antharas", 1, 22857, 140633, 114472, -3725, 0, 0, 44315, 10, 0, 0),
+("lair_of_antharas", 1, 22857, 147896, 110033, -3941, 0, 0, 50191, 10, 0, 0),
+("lair_of_antharas", 1, 22857, 142480, 119635, -3916, 0, 0, 29350, 10, 0, 0),
+("lair_of_antharas", 1, 22857, 143007, 108951, -3948, 0, 0, 26923, 10, 0, 0),
+("lair_of_antharas", 1, 22857, 152585, 110480, -5524, 0, 0, 17587, 10, 0, 0),
+("lair_of_antharas", 1, 22857, 146113, 112674, -3720, 0, 0, 63739, 10, 0, 0),
+("lair_of_antharas", 1, 22857, 146901, 116472, -3698, 0, 0, 16515, 10, 0, 0),
 -- Theodric
-("giran03_npc2421_02", 1, 30755, 131176, 114676, -3718, 0, 0, 40960, 60, 0, 0),
+("dragon_valley", 1, 30755, 131176, 114676, -3720, 0, 0, 21124, 60, 0, 0),
+-- Separated Soul
+("lair_of_antharas", 1, 32868, 148558, 110541, -3944, 0, 0, 28938, 60, 0, 0),
+-- Separated Soul
+("lair_of_antharas", 1, 32869, 146014, 111226, -3560, 0, 0, 2366, 60, 0, 0),
+-- Separated Soul
+("lair_of_antharas", 1, 32891, 131156, 114177, -3704, 0, 0, 27664, 60, 0, 0),
 
 -- [24_22]
 
@@ -42388,7 +42507,8 @@ INSERT INTO `spawnlist` VALUES
 ("Isle_of_Prayer", 1, 22259, 140946, 189363, -3616, 0, 0, 18190, 60, 0, 0),
 ("Isle_of_Prayer", 1, 22259, 149040, 191410, -3760, 0, 0, 27003, 60, 0, 0),
 ("Isle_of_Prayer", 1, 22259, 153278, 191642, -3736, 0, 0, 31978, 60, 0, 0),
-("Isle_of_Prayer", 1, 22259, 150995, 190324, -3752, 0, 0, 27812, 60, 0, 0),
+("Isle_of_Prayer", 1, 22259, 150995, 190324, -3752, 0, 0, 27812, 60, 0, 0);
+INSERT INTO `spawnlist` VALUES
 ("Isle_of_Prayer", 1, 22259, 147597, 188553, -3760, 0, 0, 48090, 60, 0, 0),
 ("Isle_of_Prayer", 1, 22259, 148443, 188579, -3752, 0, 0, 33914, 60, 0, 0),
 ("Isle_of_Prayer", 1, 22259, 149626, 189378, -3736, 0, 0, 45498, 60, 0, 0),
@@ -42485,8 +42605,7 @@ INSERT INTO `spawnlist` VALUES
 ("Isle_of_Prayer", 1, 22261, 154430, 177295, -3504, 0, 0, 62582, 60, 0, 0),
 ("Isle_of_Prayer", 1, 22261, 154202, 178699, -3464, 0, 0, 43002, 60, 0, 0),
 ("Isle_of_Prayer", 1, 22261, 155778, 178749, -3472, 0, 0, 14151, 60, 0, 0),
-("Isle_of_Prayer", 1, 22261, 160343, 177690, -3320, 0, 0, 57890, 60, 0, 0);
-INSERT INTO `spawnlist` VALUES
+("Isle_of_Prayer", 1, 22261, 160343, 177690, -3320, 0, 0, 57890, 60, 0, 0),
 ("Isle_of_Prayer", 1, 22261, 158271, 182804, -3720, 0, 0, 0, 60, 0, 0),
 ("Isle_of_Prayer", 1, 22261, 158809, 173249, -3360, 0, 0, 14258, 60, 0, 0),
 ("Isle_of_Prayer", 1, 22261, 160343, 173686, -3472, 0, 0, 53681, 60, 0, 0),
@@ -44524,7 +44643,8 @@ INSERT INTO `spawnlist` VALUES
 -- Judges' Sepulcher Manager
 ("godard19_npc2515_41", 1, 31924, 175606, -82853, -7200, 0, 0, -16248, 60, 0, 0),
 -- Baron's Hall Gatekeeper
-("4Sepulchers", 1, 31925, 182692, -85393, -7218, 0, 0, 32768, 60, 0, 0),
+("4Sepulchers", 1, 31925, 182692, -85393, -7218, 0, 0, 32768, 60, 0, 0);
+INSERT INTO `spawnlist` VALUES
 -- Viscount's Hall Gatekeeper
 ("4Sepulchers", 1, 31926, 184501, -85393, -7218, 0, 0, 32768, 60, 0, 0),
 -- Count's Hall Gatekeeper
@@ -44648,8 +44768,7 @@ INSERT INTO `spawnlist` VALUES
 ("godard26_2516_18", 1, 21298, 176211, -36761, -3379, 0, 0, 55902, 60, 0, 0),
 ("godard26_2516_18", 1, 21298, 176749, -38947, -3465, 0, 0, 0, 60, 0, 0),
 -- Buffalo Slave
-("godard26_2516_18", 1, 21299, 177460, -49772, -3390, 0, 0, 5974, 60, 0, 0);
-INSERT INTO `spawnlist` VALUES
+("godard26_2516_18", 1, 21299, 177460, -49772, -3390, 0, 0, 5974, 60, 0, 0),
 ("godard26_2516_18", 1, 21299, 175938, -51634, -3478, 0, 0, 50028, 60, 0, 0),
 ("godard26_2516_18", 1, 21299, 174859, -50933, -3454, 0, 0, 22203, 60, 0, 0),
 ("godard26_2516_18", 1, 21299, 177941, -49242, -3356, 0, 0, 16269, 60, 0, 0),
@@ -46682,7 +46801,8 @@ INSERT INTO `spawnlist` VALUES
 ("aden22_2519_11", 1, 21019, 170742, 37547, -4386, 0, 0, 19323, 27, 0, 0),
 ("aden22_2519_11", 1, 21019, 175725, 38433, -4697, 0, 0, 420, 27, 0, 0),
 ("aden22_2519_11", 1, 21019, 178126, 37585, -4824, 0, 0, 12669, 27, 0, 0),
-("aden22_2519_11", 1, 21019, 180707, 37497, -4790, 0, 0, 2670, 27, 0, 0),
+("aden22_2519_11", 1, 21019, 180707, 37497, -4790, 0, 0, 2670, 27, 0, 0);
+INSERT INTO `spawnlist` VALUES
 ("aden22_2519_11", 1, 21019, 183925, 38418, -3837, 0, 0, 49786, 27, 0, 0),
 ("aden22_2519_11", 1, 21019, 182385, 35435, -4005, 0, 0, 43526, 27, 0, 0),
 ("aden22_2519_11", 1, 21019, 181153, 42452, -3708, 0, 0, 61479, 27, 0, 0),
@@ -46781,8 +46901,7 @@ INSERT INTO `spawnlist` VALUES
 ("giants_cave", 1, 22661, 192622, 62688, -6032, 0, 0, 0, 60, 0, 0),
 ("giants_cave", 1, 22661, 193381, 61854, -6032, 0, 0, 3455, 60, 0, 0),
 ("giants_cave", 1, 22661, 193481, 62857, -6096, 0, 0, 7512, 60, 0, 0),
-("giants_cave", 1, 22661, 193074, 62438, -4976, 0, 0, 26808, 60, 0, 0);
-INSERT INTO `spawnlist` VALUES
+("giants_cave", 1, 22661, 193074, 62438, -4976, 0, 0, 26808, 60, 0, 0),
 ("giants_cave", 1, 22661, 184170, 58089, -3991, 0, 0, 22783, 60, 0, 0),
 ("giants_cave", 1, 22661, 185841, 57527, -4574, 0, 0, 12969, 60, 0, 0),
 ("giants_cave", 1, 22661, 186762, 57497, -4571, 0, 0, 26123, 60, 0, 0),
@@ -46983,18 +47102,19 @@ INSERT INTO `spawnlist` VALUES
 ("giants_cave", 1, 22673, 179105, 60117, -3992, 0, 0, 60524, 60, 0, 0),
 ("giants_cave", 1, 22673, 181679, 60275, -3992, 0, 0, 58054, 60, 0, 0),
 ("giants_cave", 1, 22673, 182276, 60013, -3992, 0, 0, 7210, 60, 0, 0),
-("giants_cave", 1, 22673, 182475, 59685, -3992, 0, 0, 58614, 60, 0, 0),
-("giants_cave", 1, 22673, 182020, 60087, -3992, 0, 0, 39120, 60, 0, 0),
-("giants_cave", 1, 22673, 181491, 62075, -3992, 0, 0, 51385, 60, 0, 0),
-("giants_cave", 1, 22673, 182455, 61507, -3992, 0, 0, 64161, 60, 0, 0),
-("giants_cave", 1, 22673, 181863, 59256, -3992, 0, 0, 18411, 60, 0, 0),
-("giants_cave", 1, 22673, 179117, 55423, -3968, 0, 0, 64101, 60, 0, 0),
-("giants_cave", 1, 22673, 178917, 54764, -3992, 0, 0, 38379, 60, 0, 0),
-("giants_cave", 1, 22673, 189806, 54526, -4368, 0, 0, 39139, 60, 0, 0),
-("giants_cave", 1, 22673, 189868, 53976, -4368, 0, 0, 21418, 60, 0, 0),
-("giants_cave", 1, 22673, 190074, 53820, -4368, 0, 0, 54437, 60, 0, 0),
-("giants_cave", 1, 22673, 189656, 53085, -4368, 0, 0, 4515, 60, 0, 0),
-("giants_cave", 1, 22673, 190379, 52404, -4368, 0, 0, 6574, 60, 0, 0),
+("giants_cave", 1, 22673, 179883, 54789, -3983, 0, 0, 59264, 60, 0, 0),
+("giants_cave", 1, 22673, 179526, 55162, -3969, 0, 0, 59995, 60, 0, 0),
+("giants_cave", 1, 22673, 177970, 54094, -3969, 0, 0, 33975, 60, 0, 0),
+("giants_cave", 1, 22673, 177815, 54683, -3969, 0, 0, 41093, 60, 0, 0),
+("giants_cave", 1, 22673, 177422, 54465, -3969, 0, 0, 53724, 60, 0, 0),
+("giants_cave", 1, 22673, 179571, 53599, -3969, 0, 0, 49764, 60, 0, 0),
+("giants_cave", 1, 22673, 193487, 52495, -4368, 0, 0, 31264, 60, 0, 0),
+("giants_cave", 1, 22673, 192676, 52145, -4368, 0, 0, 14496, 60, 0, 0),
+("giants_cave", 1, 22673, 193584, 52698, -4368, 0, 0, 7812, 60, 0, 0),
+("giants_cave", 1, 22673, 186135, 47567, -4344, 0, 0, 6469, 60, 0, 0),
+("giants_cave", 1, 22673, 178909, 59446, -3994, 0, 0, 56014, 60, 0, 0),
+("giants_cave", 1, 22673, 180406, 59833, -3991, 0, 0, 33184, 60, 0, 0),
+("giants_cave", 1, 22673, 190129, 52015, -4368, 0, 0, 0, 60, 0, 0),
 ("giants_cave", 1, 22673, 190487, 53026, -4368, 0, 0, 49100, 60, 0, 0),
 ("giants_cave", 1, 22673, 190755, 52413, -4368, 0, 0, 33914, 60, 0, 0),
 ("giants_cave", 1, 22673, 191017, 53249, -4368, 0, 0, 4056, 60, 0, 0),
@@ -47004,23 +47124,21 @@ INSERT INTO `spawnlist` VALUES
 ("giants_cave", 1, 22673, 191456, 52781, -4368, 0, 0, 18775, 60, 0, 0),
 ("giants_cave", 1, 22673, 191843, 51868, -4368, 0, 0, 49587, 60, 0, 0),
 ("giants_cave", 1, 22673, 193549, 52941, -4368, 0, 0, 7274, 60, 0, 0),
+("giants_cave", 1, 22673, 190379, 52404, -4368, 0, 0, 6574, 60, 0, 0),
+("giants_cave", 1, 22673, 189656, 53085, -4368, 0, 0, 4515, 60, 0, 0),
+("giants_cave", 1, 22673, 190074, 53820, -4368, 0, 0, 54437, 60, 0, 0),
+("giants_cave", 1, 22673, 182475, 59685, -3992, 0, 0, 58614, 60, 0, 0),
+("giants_cave", 1, 22673, 182020, 60087, -3992, 0, 0, 39120, 60, 0, 0),
+("giants_cave", 1, 22673, 181491, 62075, -3992, 0, 0, 51385, 60, 0, 0),
+("giants_cave", 1, 22673, 182455, 61507, -3992, 0, 0, 64161, 60, 0, 0),
+("giants_cave", 1, 22673, 181863, 59256, -3992, 0, 0, 18411, 60, 0, 0),
+("giants_cave", 1, 22673, 179117, 55423, -3968, 0, 0, 64101, 60, 0, 0),
+("giants_cave", 1, 22673, 178917, 54764, -3992, 0, 0, 38379, 60, 0, 0),
+("giants_cave", 1, 22673, 189806, 54526, -4368, 0, 0, 39139, 60, 0, 0),
+("giants_cave", 1, 22673, 189868, 53976, -4368, 0, 0, 21418, 60, 0, 0),
 ("giants_cave", 1, 22673, 193984, 52089, -4368, 0, 0, 46330, 60, 0, 0),
 ("giants_cave", 1, 22673, 193510, 51951, -4368, 0, 0, 16938, 60, 0, 0),
 ("giants_cave", 1, 22673, 193494, 53080, -4368, 0, 0, 31900, 60, 0, 0),
-("giants_cave", 1, 22673, 194281, 52031, -4368, 0, 0, 47094, 60, 0, 0),
-("giants_cave", 1, 22673, 193865, 53100, -4368, 0, 0, 35477, 60, 0, 0),
-("giants_cave", 1, 22673, 194048, 52543, -4368, 0, 0, 36299, 60, 0, 0),
-("giants_cave", 1, 22673, 194210, 52643, -4368, 0, 0, 50377, 60, 0, 0),
-("giants_cave", 1, 22673, 190658, 50992, -4368, 0, 0, 24724, 60, 0, 0),
-("giants_cave", 1, 22673, 191856, 50361, -4368, 0, 0, 40627, 60, 0, 0),
-("giants_cave", 1, 22673, 180477, 59216, -3992, 0, 0, 0, 60, 0, 0),
-("giants_cave", 1, 22673, 186015, 48671, -4368, 0, 0, 26371, 60, 0, 0),
-("giants_cave", 1, 22673, 185630, 48235, -4360, 0, 0, 39985, 60, 0, 0),
-("giants_cave", 1, 22673, 185413, 48453, -4360, 0, 0, 1918, 60, 0, 0),
-("giants_cave", 1, 22673, 184917, 49101, -4344, 0, 0, 20833, 60, 0, 0),
-("giants_cave", 1, 22673, 186284, 47602, -4344, 0, 0, 51428, 60, 0, 0),
-("giants_cave", 1, 22673, 186135, 47567, -4344, 0, 0, 6469, 60, 0, 0),
-("giants_cave", 1, 22673, 190129, 52015, -4368, 0, 0, 0, 60, 0, 0),
 ("giants_cave", 1, 22673, 191552, 51948, -4368, 0, 0, 0, 60, 0, 0),
 ("giants_cave", 1, 22673, 192146, 53016, -4368, 0, 0, 0, 60, 0, 0),
 ("giants_cave", 1, 22673, 192674, 52482, -4368, 0, 0, 0, 60, 0, 0),
@@ -47031,58 +47149,61 @@ INSERT INTO `spawnlist` VALUES
 ("giants_cave", 1, 22673, 182631, 62220, -3991, 0, 0, 40216, 60, 0, 0),
 ("giants_cave", 1, 22673, 181661, 62184, -3994, 0, 0, 51947, 60, 0, 0),
 ("giants_cave", 1, 22673, 179259, 60224, -3991, 0, 0, 60161, 60, 0, 0),
-("giants_cave", 1, 22673, 180406, 59833, -3991, 0, 0, 33184, 60, 0, 0),
-("giants_cave", 1, 22673, 178909, 59446, -3994, 0, 0, 56014, 60, 0, 0),
-("giants_cave", 1, 22673, 179883, 54789, -3983, 0, 0, 59264, 60, 0, 0),
-("giants_cave", 1, 22673, 179526, 55162, -3969, 0, 0, 59995, 60, 0, 0),
-("giants_cave", 1, 22673, 177970, 54094, -3969, 0, 0, 33975, 60, 0, 0),
-("giants_cave", 1, 22673, 177815, 54683, -3969, 0, 0, 41093, 60, 0, 0),
-("giants_cave", 1, 22673, 177422, 54465, -3969, 0, 0, 53724, 60, 0, 0),
-("giants_cave", 1, 22673, 179571, 53599, -3969, 0, 0, 49764, 60, 0, 0),
-("giants_cave", 1, 22673, 193487, 52495, -4368, 0, 0, 31264, 60, 0, 0),
-("giants_cave", 1, 22673, 192676, 52145, -4368, 0, 0, 14496, 60, 0, 0),
-("giants_cave", 1, 22673, 193584, 52698, -4368, 0, 0, 7812, 60, 0, 0),
+("giants_cave", 1, 22673, 191856, 50361, -4368, 0, 0, 40627, 60, 0, 0),
+("giants_cave", 1, 22673, 184917, 49101, -4344, 0, 0, 20833, 60, 0, 0),
+("giants_cave", 1, 22673, 186284, 47602, -4344, 0, 0, 51428, 60, 0, 0),
+("giants_cave", 1, 22673, 194281, 52031, -4368, 0, 0, 47094, 60, 0, 0),
+("giants_cave", 1, 22673, 193865, 53100, -4368, 0, 0, 35477, 60, 0, 0),
+("giants_cave", 1, 22673, 194048, 52543, -4368, 0, 0, 36299, 60, 0, 0),
+("giants_cave", 1, 22673, 194210, 52643, -4368, 0, 0, 50377, 60, 0, 0),
+("giants_cave", 1, 22673, 190658, 50992, -4368, 0, 0, 24724, 60, 0, 0),
+("giants_cave", 1, 22673, 180477, 59216, -3992, 0, 0, 0, 60, 0, 0),
+("giants_cave", 1, 22673, 186015, 48671, -4368, 0, 0, 26371, 60, 0, 0),
+("giants_cave", 1, 22673, 185630, 48235, -4360, 0, 0, 39985, 60, 0, 0),
+("giants_cave", 1, 22673, 185413, 48453, -4360, 0, 0, 1918, 60, 0, 0),
 -- Imagro
-("giants_cave", 1, 22674, 173196, 54550, -4344, 0, 0, 9765, 60, 0, 0),
-("giants_cave", 1, 22674, 178263, 55416, -3976, 0, 0, 35767, 60, 0, 0),
-("giants_cave", 1, 22674, 174055, 61523, -4368, 0, 0, 57418, 60, 0, 0),
-("giants_cave", 1, 22674, 173459, 61683, -4368, 0, 0, 32412, 60, 0, 0),
-("giants_cave", 1, 22674, 175323, 61508, -4368, 0, 0, 9717, 60, 0, 0),
-("giants_cave", 1, 22674, 174321, 62809, -4368, 0, 0, 50780, 60, 0, 0),
-("giants_cave", 1, 22674, 179749, 60244, -3992, 0, 0, 44622, 60, 0, 0),
-("giants_cave", 1, 22674, 181113, 59594, -3992, 0, 0, 50551, 60, 0, 0),
-("giants_cave", 1, 22674, 182209, 61419, -3992, 0, 0, 18665, 60, 0, 0),
-("giants_cave", 1, 22674, 182730, 61902, -3992, 0, 0, 21233, 60, 0, 0),
-("giants_cave", 1, 22674, 180126, 59053, -3992, 0, 0, 6520, 60, 0, 0),
+("giants_cave", 1, 22674, 191925, 50118, -4368, 0, 0, 12171, 60, 0, 0),
+("giants_cave", 1, 22674, 191533, 50018, -4368, 0, 0, 44783, 60, 0, 0),
+("giants_cave", 1, 22674, 189972, 51776, -4368, 0, 0, 39616, 60, 0, 0),
+("giants_cave", 1, 22674, 178743, 54627, -3992, 0, 0, 51298, 60, 0, 0),
+("giants_cave", 1, 22674, 182232, 58680, -3991, 0, 0, 16784, 60, 0, 0),
+("giants_cave", 1, 22674, 181542, 62468, -3991, 0, 0, 51128, 60, 0, 0),
+("giants_cave", 1, 22674, 190323, 52907, -4368, 0, 0, 8399, 60, 0, 0),
+("giants_cave", 1, 22674, 189655, 54197, -4368, 0, 0, 1623, 60, 0, 0),
+("giants_cave", 1, 22674, 189928, 53756, -4368, 0, 0, 37303, 60, 0, 0),
+("giants_cave", 1, 22674, 190216, 54406, -4368, 0, 0, 15818, 60, 0, 0),
+("giants_cave", 1, 22674, 175997, 61306, -4371, 0, 0, 23801, 60, 0, 0),
+("giants_cave", 1, 22674, 178742, 53996, -3968, 0, 0, 7448, 60, 0, 0),
+("giants_cave", 1, 22674, 191502, 49504, -4368, 0, 0, 4820, 60, 0, 0),
 ("giants_cave", 1, 22674, 181008, 60197, -3991, 0, 0, 55863, 60, 0, 0),
-("giants_cave", 1, 22674, 179791, 59663, -3994, 0, 0, 51308, 60, 0, 0),
-("giants_cave", 1, 22674, 178966, 59195, -3991, 0, 0, 63960, 60, 0, 0),
-("giants_cave", 1, 22674, 180283, 58729, -3991, 0, 0, 64811, 60, 0, 0),
-("giants_cave", 1, 22674, 180612, 58750, -3991, 0, 0, 64234, 60, 0, 0),
-("giants_cave", 1, 22674, 179917, 55104, -3969, 0, 0, 59615, 60, 0, 0),
-("giants_cave", 1, 22674, 177779, 54327, -3971, 0, 0, 39343, 60, 0, 0),
-("giants_cave", 1, 22674, 181599, 58721, -3992, 0, 0, 0, 60, 0, 0),
-("giants_cave", 1, 22674, 180940, 59890, -3991, 0, 0, 0, 60, 0, 0),
-("giants_cave", 1, 22674, 182456, 60167, -3991, 0, 0, 18749, 60, 0, 0),
+("giants_cave", 1, 22674, 181903, 61920, -3991, 0, 0, 39163, 60, 0, 0),
+("giants_cave", 1, 22674, 174939, 55588, -4368, 0, 0, 11686, 60, 0, 0),
 ("giants_cave", 1, 22674, 173200, 56058, -4346, 0, 0, 55768, 60, 0, 0),
+("giants_cave", 1, 22674, 182456, 60167, -3991, 0, 0, 18749, 60, 0, 0),
+("giants_cave", 1, 22674, 180940, 59890, -3991, 0, 0, 0, 60, 0, 0),
+("giants_cave", 1, 22674, 181599, 58721, -3992, 0, 0, 0, 60, 0, 0),
+("giants_cave", 1, 22674, 177779, 54327, -3971, 0, 0, 39343, 60, 0, 0),
+("giants_cave", 1, 22674, 179917, 55104, -3969, 0, 0, 59615, 60, 0, 0),
+("giants_cave", 1, 22674, 180612, 58750, -3991, 0, 0, 64234, 60, 0, 0),
+("giants_cave", 1, 22674, 180283, 58729, -3991, 0, 0, 64811, 60, 0, 0),
+("giants_cave", 1, 22674, 178966, 59195, -3991, 0, 0, 63960, 60, 0, 0),
+("giants_cave", 1, 22674, 179791, 59663, -3994, 0, 0, 51308, 60, 0, 0),
+("giants_cave", 1, 22674, 180126, 59053, -3992, 0, 0, 6520, 60, 0, 0),
 ("giants_cave", 1, 22674, 185840, 50239, -4344, 0, 0, 39481, 60, 0, 0),
 ("giants_cave", 1, 22674, 184942, 48964, -4344, 0, 0, 8602, 60, 0, 0),
-("giants_cave", 1, 22674, 186285, 48261, -4368, 0, 0, 7776, 60, 0, 0),
+("giants_cave", 1, 22674, 173288, 55471, -4346, 0, 0, 50920, 60, 0, 0),
+("giants_cave", 1, 22674, 186059, 48802, -4368, 0, 0, 44393, 60, 0, 0),
+("giants_cave", 1, 22674, 185877, 49444, -4368, 0, 0, 45783, 60, 0, 0),
+("giants_cave", 1, 22674, 185495, 50107, -4344, 0, 0, 12963, 60, 0, 0),
+("giants_cave", 1, 22674, 179321, 59471, -3992, 0, 0, 24959, 60, 0, 0),
+("giants_cave", 1, 22674, 180469, 59135, -3992, 0, 0, 50767, 60, 0, 0),
+("giants_cave", 1, 22674, 179916, 59216, -3992, 0, 0, 0, 60, 0, 0),
+("giants_cave", 1, 22674, 179355, 60008, -3992, 0, 0, 0, 60, 0, 0),
 ("giants_cave", 1, 22674, 184797, 49130, -4344, 0, 0, 2719, 60, 0, 0),
 ("giants_cave", 1, 22674, 175410, 61955, -4371, 0, 0, 44840, 60, 0, 0),
-("giants_cave", 1, 22674, 179355, 60008, -3992, 0, 0, 0, 60, 0, 0),
-("giants_cave", 1, 22674, 179916, 59216, -3992, 0, 0, 0, 60, 0, 0),
-("giants_cave", 1, 22674, 180469, 59135, -3992, 0, 0, 50767, 60, 0, 0),
-("giants_cave", 1, 22674, 179321, 59471, -3992, 0, 0, 24959, 60, 0, 0),
-("giants_cave", 1, 22674, 185495, 50107, -4344, 0, 0, 12963, 60, 0, 0),
-("giants_cave", 1, 22674, 185877, 49444, -4368, 0, 0, 45783, 60, 0, 0),
-("giants_cave", 1, 22674, 186059, 48802, -4368, 0, 0, 44393, 60, 0, 0),
-("giants_cave", 1, 22674, 173288, 55471, -4346, 0, 0, 50920, 60, 0, 0),
-("giants_cave", 1, 22674, 174939, 55588, -4368, 0, 0, 11686, 60, 0, 0),
-("giants_cave", 1, 22674, 174804, 54595, -4346, 0, 0, 64797, 60, 0, 0),
-("giants_cave", 1, 22674, 184753, 49327, -4344, 0, 0, 60458, 60, 0, 0),
-("giants_cave", 1, 22674, 190689, 52589, -4368, 0, 0, 35337, 60, 0, 0),
-("giants_cave", 1, 22674, 186579, 48114, -4352, 0, 0, 3355, 60, 0, 0),
+("giants_cave", 1, 22674, 186285, 48261, -4368, 0, 0, 7776, 60, 0, 0),
+("giants_cave", 1, 22674, 182730, 61902, -3992, 0, 0, 21233, 60, 0, 0),
+("giants_cave", 1, 22674, 182209, 61419, -3992, 0, 0, 18665, 60, 0, 0),
 ("giants_cave", 1, 22674, 185673, 49265, -4368, 0, 0, 52672, 60, 0, 0),
 ("giants_cave", 1, 22674, 187132, 48103, -4344, 0, 0, 16036, 60, 0, 0),
 ("giants_cave", 1, 22674, 186039, 48439, -4368, 0, 0, 11444, 60, 0, 0),
@@ -47095,33 +47216,25 @@ INSERT INTO `spawnlist` VALUES
 ("giants_cave", 1, 22674, 173933, 62108, -4371, 0, 0, 45902, 60, 0, 0),
 ("giants_cave", 1, 22674, 173800, 62851, -4368, 0, 0, 48981, 60, 0, 0),
 ("giants_cave", 1, 22674, 182155, 62698, -3991, 0, 0, 49991, 60, 0, 0),
-("giants_cave", 1, 22674, 181903, 61920, -3991, 0, 0, 39163, 60, 0, 0),
-("giants_cave", 1, 22674, 181542, 62468, -3991, 0, 0, 51128, 60, 0, 0),
-("giants_cave", 1, 22674, 182232, 58680, -3991, 0, 0, 16784, 60, 0, 0),
-("giants_cave", 1, 22674, 178743, 54627, -3992, 0, 0, 51298, 60, 0, 0),
-("giants_cave", 1, 22674, 189972, 51776, -4368, 0, 0, 39616, 60, 0, 0),
-("giants_cave", 1, 22674, 191533, 50018, -4368, 0, 0, 44783, 60, 0, 0),
-("giants_cave", 1, 22674, 191925, 50118, -4368, 0, 0, 12171, 60, 0, 0),
-("giants_cave", 1, 22674, 190323, 52907, -4368, 0, 0, 8399, 60, 0, 0),
-("giants_cave", 1, 22674, 189655, 54197, -4368, 0, 0, 1623, 60, 0, 0),
-("giants_cave", 1, 22674, 189928, 53756, -4368, 0, 0, 37303, 60, 0, 0),
-("giants_cave", 1, 22674, 190216, 54406, -4368, 0, 0, 15818, 60, 0, 0),
-("giants_cave", 1, 22674, 175997, 61306, -4371, 0, 0, 23801, 60, 0, 0),
-("giants_cave", 1, 22674, 178742, 53996, -3968, 0, 0, 7448, 60, 0, 0),
-("giants_cave", 1, 22674, 191502, 49504, -4368, 0, 0, 4820, 60, 0, 0),
+("giants_cave", 1, 22674, 186579, 48114, -4352, 0, 0, 3355, 60, 0, 0),
+("giants_cave", 1, 22674, 190689, 52589, -4368, 0, 0, 35337, 60, 0, 0),
+("giants_cave", 1, 22674, 184753, 49327, -4344, 0, 0, 60458, 60, 0, 0),
+("giants_cave", 1, 22674, 181113, 59594, -3992, 0, 0, 50551, 60, 0, 0),
+("giants_cave", 1, 22674, 179749, 60244, -3992, 0, 0, 44622, 60, 0, 0),
+("giants_cave", 1, 22674, 174804, 54595, -4346, 0, 0, 64797, 60, 0, 0),
+("giants_cave", 1, 22674, 174321, 62809, -4368, 0, 0, 50780, 60, 0, 0),
+("giants_cave", 1, 22674, 175323, 61508, -4368, 0, 0, 9717, 60, 0, 0),
+("giants_cave", 1, 22674, 173459, 61683, -4368, 0, 0, 32412, 60, 0, 0),
+("giants_cave", 1, 22674, 174055, 61523, -4368, 0, 0, 57418, 60, 0, 0),
+("giants_cave", 1, 22674, 178263, 55416, -3976, 0, 0, 35767, 60, 0, 0),
+("giants_cave", 1, 22674, 173196, 54550, -4344, 0, 0, 9765, 60, 0, 0),
 -- Palit
-("giants_cave", 1, 22675, 178134, 55398, -3968, 0, 0, 26087, 60, 0, 0),
-("giants_cave", 1, 22675, 177663, 55022, -3969, 0, 0, 50191, 60, 0, 0),
-("giants_cave", 1, 22675, 185312, 47948, -4344, 0, 0, 37023, 60, 0, 0),
-("giants_cave", 1, 22675, 173770, 54833, -4355, 0, 0, 34538, 60, 0, 0),
-("giants_cave", 1, 22675, 178211, 54175, -3972, 0, 0, 32047, 60, 0, 0),
-("giants_cave", 1, 22675, 173442, 55055, -4344, 0, 0, 24185, 60, 0, 0),
-("giants_cave", 1, 22675, 185518, 48090, -4344, 0, 0, 14818, 60, 0, 0),
-("giants_cave", 1, 22675, 186142, 47532, -4344, 0, 0, 50157, 60, 0, 0),
-("giants_cave", 1, 22675, 179790, 53993, -3968, 0, 0, 61656, 60, 0, 0),
-("giants_cave", 1, 22675, 178936, 53720, -3968, 0, 0, 30870, 60, 0, 0),
 ("giants_cave", 1, 22675, 179810, 54503, -3976, 0, 0, 16391, 60, 0, 0),
-("giants_cave", 1, 22675, 178285, 53971, -3968, 0, 0, 2074, 60, 0, 0),
+("giants_cave", 1, 22675, 176070, 60805, -4368, 0, 0, 32972, 60, 0, 0),
+("giants_cave", 1, 22675, 174861, 54971, -4360, 0, 0, 20927, 60, 0, 0),
+("giants_cave", 1, 22675, 174148, 54697, -4346, 0, 0, 34384, 60, 0, 0),
+("giants_cave", 1, 22675, 175218, 54652, -4346, 0, 0, 5088, 60, 0, 0),
+("giants_cave", 1, 22675, 178134, 55398, -3968, 0, 0, 26087, 60, 0, 0),
 ("giants_cave", 1, 22675, 174672, 62147, -4368, 0, 0, 48758, 60, 0, 0),
 ("giants_cave", 1, 22675, 174470, 61604, -4368, 0, 0, 20715, 60, 0, 0),
 ("giants_cave", 1, 22675, 173335, 61601, -4368, 0, 0, 320, 60, 0, 0),
@@ -47130,20 +47243,18 @@ INSERT INTO `spawnlist` VALUES
 ("giants_cave", 1, 22675, 174123, 61368, -4368, 0, 0, 38662, 60, 0, 0),
 ("giants_cave", 1, 22675, 175445, 55678, -4344, 0, 0, 62306, 60, 0, 0),
 ("giants_cave", 1, 22675, 175729, 54989, -4344, 0, 0, 32384, 60, 0, 0),
+("giants_cave", 1, 22675, 178285, 53971, -3968, 0, 0, 2074, 60, 0, 0),
+("giants_cave", 1, 22675, 178936, 53720, -3968, 0, 0, 30870, 60, 0, 0),
+("giants_cave", 1, 22675, 177663, 55022, -3969, 0, 0, 50191, 60, 0, 0),
+("giants_cave", 1, 22675, 185312, 47948, -4344, 0, 0, 37023, 60, 0, 0),
+("giants_cave", 1, 22675, 173770, 54833, -4355, 0, 0, 34538, 60, 0, 0),
+("giants_cave", 1, 22675, 178211, 54175, -3972, 0, 0, 32047, 60, 0, 0),
+("giants_cave", 1, 22675, 173442, 55055, -4344, 0, 0, 24185, 60, 0, 0),
+("giants_cave", 1, 22675, 185518, 48090, -4344, 0, 0, 14818, 60, 0, 0),
+("giants_cave", 1, 22675, 186142, 47532, -4344, 0, 0, 50157, 60, 0, 0),
+("giants_cave", 1, 22675, 179790, 53993, -3968, 0, 0, 61656, 60, 0, 0),
 ("giants_cave", 1, 22675, 174484, 55084, -4368, 0, 0, 15985, 60, 0, 0),
-("giants_cave", 1, 22675, 174861, 54971, -4360, 0, 0, 20927, 60, 0, 0),
 ("giants_cave", 1, 22675, 173896, 55321, -4368, 0, 0, 53936, 60, 0, 0),
-("giants_cave", 1, 22675, 186119, 47756, -4344, 0, 0, 21857, 60, 0, 0),
-("giants_cave", 1, 22675, 185676, 49183, -4368, 0, 0, 5901, 60, 0, 0),
-("giants_cave", 1, 22675, 186337, 49631, -4344, 0, 0, 50177, 60, 0, 0),
-("giants_cave", 1, 22675, 175396, 55123, -4353, 0, 0, 53852, 60, 0, 0),
-("giants_cave", 1, 22675, 175934, 62317, -4371, 0, 0, 41611, 60, 0, 0),
-("giants_cave", 1, 22675, 176070, 60805, -4368, 0, 0, 32972, 60, 0, 0),
-("giants_cave", 1, 22675, 175139, 60738, -4368, 0, 0, 63192, 60, 0, 0),
-("giants_cave", 1, 22675, 174360, 60732, -4371, 0, 0, 33723, 60, 0, 0),
-("giants_cave", 1, 22675, 180162, 54571, -3969, 0, 0, 44399, 60, 0, 0),
-("giants_cave", 1, 22675, 179455, 54982, -3980, 0, 0, 60488, 60, 0, 0),
-("giants_cave", 1, 22675, 179354, 54637, -3991, 0, 0, 41508, 60, 0, 0),
 ("giants_cave", 1, 22675, 175239, 56154, -4346, 0, 0, 58985, 60, 0, 0),
 ("giants_cave", 1, 22675, 174884, 56033, -4351, 0, 0, 1071, 60, 0, 0),
 ("giants_cave", 1, 22675, 185774, 49909, -4352, 0, 0, 56550, 60, 0, 0),
@@ -47152,28 +47263,34 @@ INSERT INTO `spawnlist` VALUES
 ("giants_cave", 1, 22675, 185380, 49747, -4344, 0, 0, 10070, 60, 0, 0),
 ("giants_cave", 1, 22675, 185665, 47391, -4344, 0, 0, 0, 60, 0, 0),
 ("giants_cave", 1, 22675, 186997, 48351, -4344, 0, 0, 0, 60, 0, 0),
-("giants_cave", 1, 22675, 175218, 54652, -4346, 0, 0, 5088, 60, 0, 0),
-("giants_cave", 1, 22675, 174148, 54697, -4346, 0, 0, 34384, 60, 0, 0),
+("giants_cave", 1, 22675, 179354, 54637, -3991, 0, 0, 41508, 60, 0, 0),
+("giants_cave", 1, 22675, 179455, 54982, -3980, 0, 0, 60488, 60, 0, 0),
+("giants_cave", 1, 22675, 186119, 47756, -4344, 0, 0, 21857, 60, 0, 0),
+("giants_cave", 1, 22675, 185676, 49183, -4368, 0, 0, 5901, 60, 0, 0),
+("giants_cave", 1, 22675, 186337, 49631, -4344, 0, 0, 50177, 60, 0, 0),
+("giants_cave", 1, 22675, 175396, 55123, -4353, 0, 0, 53852, 60, 0, 0),
+("giants_cave", 1, 22675, 175934, 62317, -4371, 0, 0, 41611, 60, 0, 0),
+("giants_cave", 1, 22675, 175139, 60738, -4368, 0, 0, 63192, 60, 0, 0),
+("giants_cave", 1, 22675, 174360, 60732, -4371, 0, 0, 33723, 60, 0, 0),
+("giants_cave", 1, 22675, 180162, 54571, -3969, 0, 0, 44399, 60, 0, 0),
 -- Hamlet
+("giants_cave", 1, 22676, 175950, 61803, -4371, 0, 0, 643, 60, 0, 0),
+("giants_cave", 1, 22676, 192212, 52927, -4368, 0, 0, 0, 60, 0, 0),
+("giants_cave", 1, 22676, 192608, 53016, -4368, 0, 0, 0, 60, 0, 0),
+("giants_cave", 1, 22676, 192014, 51592, -4368, 0, 0, 0, 60, 0, 0),
+("giants_cave", 1, 22676, 191647, 51915, -4368, 0, 0, 9337, 60, 0, 0),
+("giants_cave", 1, 22676, 189809, 52101, -4368, 0, 0, 0, 60, 0, 0),
+("giants_cave", 1, 22676, 193045, 52539, -4368, 0, 0, 30011, 60, 0, 0),
+("giants_cave", 1, 22676, 173430, 62297, -4371, 0, 0, 53945, 60, 0, 0),
+("giants_cave", 1, 22676, 175090, 61339, -4368, 0, 0, 53988, 60, 0, 0),
+("giants_cave", 1, 22676, 174539, 61349, -4368, 0, 0, 44253, 60, 0, 0),
+("giants_cave", 1, 22676, 182674, 62490, -3991, 0, 0, 42560, 60, 0, 0),
+("giants_cave", 1, 22676, 182364, 59380, -3991, 0, 0, 21462, 60, 0, 0),
+("giants_cave", 1, 22676, 182256, 61796, -3991, 0, 0, 34211, 60, 0, 0),
+("giants_cave", 1, 22676, 191577, 51537, -4368, 0, 0, 41128, 60, 0, 0),
+("giants_cave", 1, 22676, 175732, 62826, -4368, 0, 0, 43904, 60, 0, 0),
+("giants_cave", 1, 22676, 189649, 52875, -4368, 0, 0, 0, 60, 0, 0),
 ("giants_cave", 1, 22676, 193154, 52320, -4368, 0, 0, 34295, 60, 0, 0),
-("giants_cave", 1, 22676, 192427, 52397, -4371, 0, 0, 27603, 60, 0, 0),
-("giants_cave", 1, 22676, 182790, 61563, -3991, 0, 0, 25171, 60, 0, 0),
-("giants_cave", 1, 22676, 181074, 58588, -3991, 0, 0, 64032, 60, 0, 0),
-("giants_cave", 1, 22676, 180213, 60281, -3991, 0, 0, 55285, 60, 0, 0),
-("giants_cave", 1, 22676, 180671, 60348, -3991, 0, 0, 64504, 60, 0, 0),
-("giants_cave", 1, 22676, 193750, 51993, -4368, 0, 0, 21996, 60, 0, 0),
-("giants_cave", 1, 22676, 194299, 51681, -4368, 0, 0, 23270, 60, 0, 0),
-("giants_cave", 1, 22676, 194402, 53046, -4368, 0, 0, 25488, 60, 0, 0),
-("giants_cave", 1, 22676, 193670, 52454, -4368, 0, 0, 33049, 60, 0, 0),
-("giants_cave", 1, 22676, 191705, 50839, -4368, 0, 0, 30712, 60, 0, 0),
-("giants_cave", 1, 22676, 190839, 49862, -4371, 0, 0, 17257, 60, 0, 0),
-("giants_cave", 1, 22676, 190886, 50291, -4368, 0, 0, 37145, 60, 0, 0),
-("giants_cave", 1, 22676, 191118, 50607, -4368, 0, 0, 35451, 60, 0, 0),
-("giants_cave", 1, 22676, 181917, 59772, -3997, 0, 0, 13198, 60, 0, 0),
-("giants_cave", 1, 22676, 180040, 59706, -3992, 0, 0, 51960, 60, 0, 0),
-("giants_cave", 1, 22676, 190547, 53185, -4368, 0, 0, 38049, 60, 0, 0),
-("giants_cave", 1, 22676, 190499, 52381, -4368, 0, 0, 44317, 60, 0, 0),
-("giants_cave", 1, 22676, 191660, 52867, -4368, 0, 0, 2487, 60, 0, 0),
 ("giants_cave", 1, 22676, 191968, 52257, -4368, 0, 0, 57311, 60, 0, 0),
 ("giants_cave", 1, 22676, 191578, 52059, -4368, 0, 0, 41931, 60, 0, 0),
 ("giants_cave", 1, 22676, 193738, 52242, -4368, 0, 0, 21368, 60, 0, 0),
@@ -47182,7 +47299,6 @@ INSERT INTO `spawnlist` VALUES
 ("giants_cave", 1, 22676, 191387, 50992, -4368, 0, 0, 31796, 60, 0, 0),
 ("giants_cave", 1, 22676, 192452, 49658, -4368, 0, 0, 13794, 60, 0, 0),
 ("giants_cave", 1, 22676, 191210, 49282, -4368, 0, 0, 22384, 60, 0, 0),
-("giants_cave", 1, 22676, 181932, 61459, -3992, 0, 0, 26444, 60, 0, 0),
 ("giants_cave", 1, 22676, 179729, 59315, -3992, 0, 0, 0, 60, 0, 0),
 ("giants_cave", 1, 22676, 190743, 52822, -4368, 0, 0, 40403, 60, 0, 0),
 ("giants_cave", 1, 22676, 192313, 51530, -4368, 0, 0, 52419, 60, 0, 0),
@@ -47190,6 +47306,24 @@ INSERT INTO `spawnlist` VALUES
 ("giants_cave", 1, 22676, 190676, 52710, -4368, 0, 0, 47177, 60, 0, 0),
 ("giants_cave", 1, 22676, 190588, 53195, -4368, 0, 0, 24206, 60, 0, 0),
 ("giants_cave", 1, 22676, 179340, 60373, -3992, 0, 0, 32593, 60, 0, 0),
+("giants_cave", 1, 22676, 191660, 52867, -4368, 0, 0, 2487, 60, 0, 0),
+("giants_cave", 1, 22676, 190499, 52381, -4368, 0, 0, 44317, 60, 0, 0),
+("giants_cave", 1, 22676, 190547, 53185, -4368, 0, 0, 38049, 60, 0, 0),
+("giants_cave", 1, 22676, 192427, 52397, -4371, 0, 0, 27603, 60, 0, 0),
+("giants_cave", 1, 22676, 182790, 61563, -3991, 0, 0, 25171, 60, 0, 0),
+("giants_cave", 1, 22676, 181074, 58588, -3991, 0, 0, 64032, 60, 0, 0),
+("giants_cave", 1, 22676, 180213, 60281, -3991, 0, 0, 55285, 60, 0, 0),
+("giants_cave", 1, 22676, 180671, 60348, -3991, 0, 0, 64504, 60, 0, 0),
+("giants_cave", 1, 22676, 193750, 51993, -4368, 0, 0, 21996, 60, 0, 0),
+("giants_cave", 1, 22676, 194299, 51681, -4368, 0, 0, 23270, 60, 0, 0),
+("giants_cave", 1, 22676, 194402, 53046, -4368, 0, 0, 25488, 60, 0, 0),
+("giants_cave", 1, 22676, 193670, 52454, -4368, 0, 0, 33049, 60, 0, 0),
+("giants_cave", 1, 22676, 191705, 50839, -4368, 0, 0, 30712, 60, 0, 0),
+("giants_cave", 1, 22676, 190839, 49862, -4371, 0, 0, 17257, 60, 0, 0),
+("giants_cave", 1, 22676, 190886, 50291, -4368, 0, 0, 37145, 60, 0, 0),
+("giants_cave", 1, 22676, 191118, 50607, -4368, 0, 0, 35451, 60, 0, 0),
+("giants_cave", 1, 22676, 181917, 59772, -3997, 0, 0, 13198, 60, 0, 0),
+("giants_cave", 1, 22676, 180040, 59706, -3992, 0, 0, 51960, 60, 0, 0),
 ("giants_cave", 1, 22676, 181580, 59541, -3992, 0, 0, 15602, 60, 0, 0),
 ("giants_cave", 1, 22676, 180390, 60056, -3992, 0, 0, 20431, 60, 0, 0),
 ("giants_cave", 1, 22676, 181600, 60185, -3992, 0, 0, 4439, 60, 0, 0),
@@ -47206,38 +47340,23 @@ INSERT INTO `spawnlist` VALUES
 ("giants_cave", 1, 22676, 190787, 52215, -4368, 0, 0, 41451, 60, 0, 0),
 ("giants_cave", 1, 22676, 192316, 52040, -4368, 0, 0, 40258, 60, 0, 0),
 ("giants_cave", 1, 22676, 181814, 61694, -3991, 0, 0, 32767, 60, 0, 0),
-("giants_cave", 1, 22676, 191577, 51537, -4368, 0, 0, 41128, 60, 0, 0),
-("giants_cave", 1, 22676, 189649, 52875, -4368, 0, 0, 0, 60, 0, 0),
-("giants_cave", 1, 22676, 189809, 52101, -4368, 0, 0, 0, 60, 0, 0),
-("giants_cave", 1, 22676, 191647, 51915, -4368, 0, 0, 9337, 60, 0, 0),
-("giants_cave", 1, 22676, 192014, 51592, -4368, 0, 0, 0, 60, 0, 0),
-("giants_cave", 1, 22676, 192608, 53016, -4368, 0, 0, 0, 60, 0, 0),
-("giants_cave", 1, 22676, 192212, 52927, -4368, 0, 0, 0, 60, 0, 0),
-("giants_cave", 1, 22676, 175950, 61803, -4371, 0, 0, 643, 60, 0, 0),
-("giants_cave", 1, 22676, 193045, 52539, -4368, 0, 0, 30011, 60, 0, 0),
-("giants_cave", 1, 22676, 173430, 62297, -4371, 0, 0, 53945, 60, 0, 0),
-("giants_cave", 1, 22676, 175090, 61339, -4368, 0, 0, 53988, 60, 0, 0),
-("giants_cave", 1, 22676, 174539, 61349, -4368, 0, 0, 44253, 60, 0, 0),
-("giants_cave", 1, 22676, 175732, 62826, -4368, 0, 0, 43904, 60, 0, 0),
-("giants_cave", 1, 22676, 182674, 62490, -3991, 0, 0, 42560, 60, 0, 0),
-("giants_cave", 1, 22676, 182364, 59380, -3991, 0, 0, 21462, 60, 0, 0),
-("giants_cave", 1, 22676, 182256, 61796, -3991, 0, 0, 34211, 60, 0, 0),
+("giants_cave", 1, 22676, 181932, 61459, -3992, 0, 0, 26444, 60, 0, 0),
 -- Klennot
-("giants_cave", 1, 22677, 179619, 61699, -4248, 0, 0, 34702, 60, 0, 0),
-("giants_cave", 1, 22677, 178050, 61767, -4403, 0, 0, 40430, 60, 0, 0),
-("giants_cave", 1, 22677, 178620, 61797, -4349, 0, 0, 37955, 60, 0, 0),
-("giants_cave", 1, 22677, 192005, 55266, -4571, 0, 0, 48903, 60, 0, 0),
-("giants_cave", 1, 22677, 191916, 55736, -4615, 0, 0, 13780, 60, 0, 0),
-("giants_cave", 1, 22677, 192103, 56686, -4707, 0, 0, 25171, 60, 0, 0),
 ("giants_cave", 1, 22677, 180091, 61554, -4208, 0, 0, 35584, 60, 0, 0),
-("giants_cave", 1, 22677, 192117, 55819, -4623, 0, 0, 14758, 60, 0, 0),
-("giants_cave", 1, 22677, 191932, 56783, -4716, 0, 0, 14861, 60, 0, 0),
-("giants_cave", 1, 22677, 192115, 57233, -4759, 0, 0, 18310, 60, 0, 0),
-("giants_cave", 1, 22677, 191937, 57487, -4784, 0, 0, 14433, 60, 0, 0),
-("giants_cave", 1, 22677, 180327, 61798, -4184, 0, 0, 34026, 60, 0, 0),
-("giants_cave", 1, 22677, 179255, 61780, -4287, 0, 0, 33981, 60, 0, 0),
-("giants_cave", 1, 22677, 178630, 61580, -4348, 0, 0, 24122, 60, 0, 0),
 ("giants_cave", 1, 22677, 191895, 56337, -4672, 0, 0, 62221, 60, 0, 0),
+("giants_cave", 1, 22677, 178630, 61580, -4348, 0, 0, 24122, 60, 0, 0),
+("giants_cave", 1, 22677, 179255, 61780, -4287, 0, 0, 33981, 60, 0, 0),
+("giants_cave", 1, 22677, 180327, 61798, -4184, 0, 0, 34026, 60, 0, 0),
+("giants_cave", 1, 22677, 191937, 57487, -4784, 0, 0, 14433, 60, 0, 0),
+("giants_cave", 1, 22677, 192115, 57233, -4759, 0, 0, 18310, 60, 0, 0),
+("giants_cave", 1, 22677, 191932, 56783, -4716, 0, 0, 14861, 60, 0, 0),
+("giants_cave", 1, 22677, 192103, 56686, -4707, 0, 0, 25171, 60, 0, 0),
+("giants_cave", 1, 22677, 191916, 55736, -4615, 0, 0, 13780, 60, 0, 0),
+("giants_cave", 1, 22677, 192117, 55819, -4623, 0, 0, 14758, 60, 0, 0),
+("giants_cave", 1, 22677, 178620, 61797, -4349, 0, 0, 37955, 60, 0, 0),
+("giants_cave", 1, 22677, 178050, 61767, -4403, 0, 0, 40430, 60, 0, 0),
+("giants_cave", 1, 22677, 179619, 61699, -4248, 0, 0, 34702, 60, 0, 0),
+("giants_cave", 1, 22677, 192005, 55266, -4571, 0, 0, 48903, 60, 0, 0),
 -- Fallen Chieftain Vegus
 ("Forsaken Plains", 1, 27316, 171715, 44028, -4904, 0, 0, 0, 21600, 0, 0),
 -- Sobling
@@ -47259,40 +47378,40 @@ INSERT INTO `spawnlist` VALUES
 ("giran03_tb2321_06", 1, 18276, 165285, 74451, -3013, 0, 0, 44389, 60, 0, 0),
 ("giran03_tb2321_06", 1, 18276, 165082, 69164, -3173, 0, 0, 56912, 60, 0, 0),
 -- Harit Lizardman
-("aden10_2420_18", 1, 20640, 166008, 65819, -3723, 0, 0, 770, 23, 0, 0),
-("aden10_2420_18", 1, 20640, 165474, 72040, -3146, 0, 0, 12919, 23, 0, 0),
 ("aden10_2420_18", 1, 20640, 164298, 68344, -3255, 0, 0, 51389, 23, 0, 0),
+("aden10_2420_18", 1, 20640, 165474, 72040, -3146, 0, 0, 12919, 23, 0, 0),
+("aden10_2420_18", 1, 20640, 166008, 65819, -3723, 0, 0, 770, 23, 0, 0),
 ("aden10_2420_18", 1, 20640, 164467, 66487, -3723, 0, 0, 2737, 23, 0, 0),
 -- Harit Lizardman Grunt
-("aden10_2420_18", 1, 20641, 165573, 66445, -3722, 0, 0, 32349, 23, 0, 0),
 ("aden10_2420_18", 1, 20641, 164952, 71974, -3176, 0, 0, 45630, 23, 0, 0),
+("aden10_2420_18", 1, 20641, 165573, 66445, -3722, 0, 0, 32349, 23, 0, 0),
 ("aden10_2420_18", 1, 20641, 167600, 66829, -3723, 0, 0, 5162, 23, 0, 0),
 -- Harit Lizardman Archer
-("aden10_2420_18", 1, 20642, 165009, 70853, -3142, 0, 0, 50466, 23, 0, 0),
-("aden10_2420_18", 1, 20642, 164101, 67418, -3456, 0, 0, 0, 23, 0, 0),
 ("aden10_2420_18", 1, 20642, 164644, 65659, -3671, 0, 0, 459, 23, 0, 0),
+("aden10_2420_18", 1, 20642, 164101, 67418, -3456, 0, 0, 0, 23, 0, 0),
+("aden10_2420_18", 1, 20642, 165009, 70853, -3142, 0, 0, 50466, 23, 0, 0),
 -- Harit Lizardman Warrior
-("aden10_2420_20", 1, 20643, 163879, 84827, -2370, 0, 0, 14028, 23, 0, 0),
-("aden10_2420_20", 1, 20643, 166551, 84996, -2088, 0, 0, 19354, 23, 0, 0),
+("aden10_2420_20", 1, 20643, 164350, 80632, -2370, 0, 0, 41790, 23, 0, 0),
+("aden10_2420_20", 1, 20643, 164984, 73806, -3088, 0, 0, 11287, 23, 0, 0),
+("aden10_2420_20", 1, 20643, 165850, 74798, -3164, 0, 0, 0, 23, 0, 0),
 ("aden10_2420_20", 1, 20643, 164158, 86826, -2800, 0, 0, 0, 23, 0, 0),
+("aden10_2420_20", 1, 20643, 166551, 84996, -2088, 0, 0, 19354, 23, 0, 0),
+("aden10_2420_20", 1, 20643, 163879, 84827, -2370, 0, 0, 14028, 23, 0, 0),
 ("aden10_2420_20", 1, 20643, 164290, 79580, -2370, 0, 0, 50632, 23, 0, 0),
-("aden10_2420_20", 1, 20643, 165850, 74798, -3164, 0, 0, 0, 23, 0, 0),
-("aden10_2420_20", 1, 20643, 164984, 73806, -3088, 0, 0, 11287, 23, 0, 0),
-("aden10_2420_20", 1, 20643, 164350, 80632, -2370, 0, 0, 41790, 23, 0, 0),
 -- Harit Lizardman Shaman
+("aden10_2420_20", 1, 20644, 165029, 74953, -2872, 0, 0, 46128, 23, 0, 0),
 ("aden10_2420_20", 1, 20644, 164460, 87004, -2800, 0, 0, 0, 23, 0, 0),
 ("aden10_2420_20", 1, 20644, 165213, 87702, -2472, 0, 0, 0, 23, 0, 0),
-("aden10_2420_20", 1, 20644, 166096, 83463, -2024, 0, 0, 44723, 23, 0, 0),
-("aden10_2420_20", 1, 20644, 166031, 86913, -2255, 0, 0, 49253, 23, 0, 0),
-("aden10_2420_20", 1, 20644, 165185, 80125, -2315, 0, 0, 5080, 23, 0, 0),
-("aden10_2420_20", 1, 20644, 165713, 82231, -2017, 0, 0, 2707, 23, 0, 0),
-("aden10_2420_20", 1, 20644, 165671, 72947, -3072, 0, 0, 32976, 23, 0, 0),
-("aden10_2420_20", 1, 20644, 165029, 74953, -2872, 0, 0, 46128, 23, 0, 0),
 ("aden10_2420_20", 1, 20644, 165027, 75640, -2799, 0, 0, 16864, 23, 0, 0),
+("aden10_2420_20", 1, 20644, 165671, 72947, -3072, 0, 0, 32976, 23, 0, 0),
+("aden10_2420_20", 1, 20644, 165713, 82231, -2017, 0, 0, 2707, 23, 0, 0),
+("aden10_2420_20", 1, 20644, 165185, 80125, -2315, 0, 0, 5080, 23, 0, 0),
+("aden10_2420_20", 1, 20644, 166031, 86913, -2255, 0, 0, 49253, 23, 0, 0),
+("aden10_2420_20", 1, 20644, 166096, 83463, -2024, 0, 0, 44723, 23, 0, 0),
 -- Harit Lizardman Matriarch
-("aden10_2420_20", 1, 20645, 165993, 88314, -2370, 0, 0, 12693, 23, 0, 0),
-("aden10_2420_20", 1, 20645, 165376, 87033, -2370, 0, 0, 7788, 23, 0, 0),
-("aden10_2420_20", 1, 20645, 167421, 86382, -2004, 0, 0, 56452, 23, 0, 0),
-("aden10_2420_20", 1, 20645, 165796, 81166, -2046, 0, 0, 10525, 23, 0, 0),
+("aden10_2420_20", 1, 20645, 165342, 74219, -3016, 0, 0, 0, 23, 0, 0),
 ("aden10_2420_20", 1, 20645, 164615, 73136, -3108, 0, 0, 31985, 23, 0, 0),
-("aden10_2420_20", 1, 20645, 165342, 74219, -3016, 0, 0, 0, 23, 0, 0);
\ No newline at end of file
+("aden10_2420_20", 1, 20645, 165796, 81166, -2046, 0, 0, 10525, 23, 0, 0),
+("aden10_2420_20", 1, 20645, 167421, 86382, -2004, 0, 0, 56452, 23, 0, 0),
+("aden10_2420_20", 1, 20645, 165376, 87033, -2370, 0, 0, 7788, 23, 0, 0),
+("aden10_2420_20", 1, 20645, 165993, 88314, -2370, 0, 0, 12693, 23, 0, 0);
\ No newline at end of file
diff --git a/L2J_DataPack_BETA/dist/sql/game/updates/20120906update.sql b/L2J_DataPack_BETA/dist/sql/game/updates/20120906update.sql
new file mode 100644
index 0000000000..c9411b005e
--- /dev/null
+++ b/L2J_DataPack_BETA/dist/sql/game/updates/20120906update.sql
@@ -0,0 +1 @@
+DELETE FROM `raidboss_spawnlist` WHERE `boss_id` IN (25073, 25109, 25176, 25217, 25234, 25407);
\ No newline at end of file
-- 
GitLab